File: //home/cafsindia/cafsrms.sql
-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: May 10, 2026 at 07:07 PM
-- Server version: 8.0.35
-- PHP Version: 8.3.20
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: `cafsrms`
--
DELIMITER $$
--
-- Procedures
--
CREATE PROCEDURE `sp_a_run` (`cw_action` VARCHAR(255), `cw_query` TEXT) BEGIN
SET @buffer = cw_query;
PREPARE stmt FROM @buffer;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
IF cw_action = "INSERT" THEN
SELECT LAST_INSERT_ID() as ins_id;
END IF;
END$$
CREATE PROCEDURE `sp_a_table_info` (`cw_action` VARCHAR(255)) BEGIN
SELECT table_info,search_info FROM cw_page_setting where prime_module_id = cw_action;
END$$
CREATE PROCEDURE `sp_chart_setting_search` (`cw_action` VARCHAR(10), `cw_search` VARCHAR(255), `cw_limit` INT(100), `cw_offset` INT(100), `cw_sort` VARCHAR(255), `cw_order` VARCHAR(100)) BEGIN
IF cw_action = "SEARCH" THEN
SET @buffer = CONCAT_WS('',
'SELECT * FROM cw_chart_view_line inner join cw_chart_view on cw_chart_view.prime_chart_view_id=cw_chart_view_line.chart_view_id where cw_chart_view_line.trans_status = 1'
);
PREPARE stmt FROM @buffer;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END IF;
IF cw_action = "COUNT" THEN
SELECT COUNT(*) AS data_count FROM cw_chart_view_line WHERE trans_status = 1;
END IF;
END$$
CREATE PROCEDURE `sp_cond_crud` (`cw_action` VARCHAR(255), `cw_table_data` TEXT, `cw_action_by` VARCHAR(255)) BEGIN
DECLARE cw_prime_cond_id,cw_cond_module_id,cw_condition_label_name,cw_condition_type,cw_condition_for,cw_condition_check_form,cw_condition_bind_to,
cw_condition_table,cw_is_drop_down,cw_cond_drop_down TEXT;
SET cw_prime_cond_id = json_val(cw_table_data,'prime_cond_id');
SET cw_cond_module_id = json_val(cw_table_data,'cond_module_id');
SET cw_condition_label_name = json_val(cw_table_data,'condition_label_name');
SET cw_condition_type = json_val(cw_table_data,'condition_type');
SET cw_condition_for = json_val(cw_table_data,'condition_for');
SET cw_condition_check_form = json_val(cw_table_data,'condition_check_form');
SET cw_condition_bind_to = json_val(cw_table_data,'condition_bind_to');
SET cw_condition_table = json_val(cw_table_data,'condition_table');
SET cw_is_drop_down = json_val(cw_table_data,'is_drop_down');
SET cw_cond_drop_down = json_val(cw_table_data,'cond_drop_down');
IF cw_action = "VIEW" THEN
SELECT * FROM cw_form_condition_formula WHERE cond_module_id = cw_cond_module_id AND trans_status = '1';
END IF;
IF cw_action = "EDIT" THEN
SELECT * FROM cw_form_condition_formula WHERE prime_cond_id = cw_prime_cond_id and cond_module_id = cw_cond_module_id
AND trans_status = '1';
END IF;
IF cw_action = "REMOVE" THEN
UPDATE
cw_form_condition_formula
SET
trans_status = '0',trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
prime_cond_id = cw_prime_cond_id;
UPDATE
cw_form_for_input
SET
trans_status = '0',trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
input_for_cond_id = cw_prime_cond_id;
UPDATE
cw_form_bind_input
SET
trans_status = '0',trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
input_cond_id = cw_prime_cond_id;
END IF;
IF cw_action = "SAVE" THEN
IF EXISTS(SELECT prime_cond_id FROM cw_form_condition_formula WHERE prime_cond_id = cw_prime_cond_id AND trans_status = '1') THEN
UPDATE
cw_form_condition_formula
SET
cond_module_id = cw_cond_module_id,condition_label_name = cw_condition_label_name,condition_type = cw_condition_type,
condition_for = cw_condition_for, condition_check_form = cw_condition_check_form,condition_bind_to = cw_condition_bind_to,
condition_table=cw_condition_table,is_drop_down=cw_is_drop_down,cond_drop_down=cw_cond_drop_down,trans_updated_by = cw_action_by,
trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
prime_cond_id = cw_prime_cond_id;
SELECT '1' AS result;
ELSE
INSERT INTO cw_form_condition_formula
(cond_module_id,condition_label_name,condition_type,condition_for,condition_check_form,condition_bind_to,condition_table,
is_drop_down,cond_drop_down,trans_created_by,trans_created_date)
VALUES
(cw_cond_module_id,cw_condition_label_name,cw_condition_type,cw_condition_for,cw_condition_check_form,cw_condition_bind_to,
cw_condition_table,cw_is_drop_down,cw_cond_drop_down,cw_action_by,DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S"));
SELECT LAST_INSERT_ID() AS ins_id;
END IF;
END IF;
END$$
CREATE PROCEDURE `sp_custom_form_search` (`cw_action` VARCHAR(10)) BEGIN
IF cw_action = "SEARCH" THEN
SET @buffer = 'SELECT module_id,module_name FROM cw_modules where cw_modules.trans_status = 1 and cw_modules.custom_module = 1';
PREPARE stmt FROM @buffer;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END IF;
IF cw_action = "COUNT" THEN
SELECT COUNT(*) AS data_count FROM cw_modules where cw_modules.trans_status = 1 and cw_modules.custom_module = 1;
END IF;
END$$
CREATE PROCEDURE `sp_form_setting_crud` (`cw_action` VARCHAR(255), `cw_table_data` TEXT, `cw_action_by` VARCHAR(255)) BEGIN
DECLARE cw_prime_form_id,cw_prime_module_id,cw_input_view_type,cw_input_for,cw_field_type,cw_label_name,cw_view_name,cw_short_name,cw_text_type,cw_field_length,cw_field_decimals,cw_pick_list_type,cw_pick_list,
cw_pick_table,cw_auto_prime_id,cw_auto_dispaly_value,cw_pick_list_import,cw_field_isdefault,cw_default_value,cw_mandatory_field,cw_unique_field,cw_sort_order,cw_field_show,cw_field_sort,cw_field_for,cw_file_type,cw_upload_extension,
cw_table_show,cw_search_show,cw_table_sort,cw_transaction_type,cw_gross_check,cw_taxable_check,cw_earn_month_check,cw_earn_payroll_check,cw_ded_payroll_check,cw_benefit_check,cw_increment_check,cw_arrear_pf_check,cw_fandf_check,cw_deduction_check,cw_deduction_month_check,cw_loan_check,cw_uniform_check,cw_edit_read,cw_monthly_input_sort,cw_payroll_sort,cw_picklist_data,cw_duplicate_data TEXT;
SET cw_prime_form_id = json_val(cw_table_data,'prime_form_id');
SET cw_prime_module_id = json_val(cw_table_data,'prime_module_id');
SET cw_field_type = json_val(cw_table_data,'field_type');
SET cw_input_view_type = json_val(cw_table_data,'input_view_type');
SET cw_input_for = json_val(cw_table_data,'input_for');
SET cw_label_name = json_val(cw_table_data,'label_name');
SET cw_view_name = json_val(cw_table_data,'view_name');
SET cw_short_name = json_val(cw_table_data,'short_name');
SET cw_field_length = json_val(cw_table_data,'field_length');
SET cw_field_decimals = json_val(cw_table_data,'field_decimals');
SET cw_pick_list_type = json_val(cw_table_data,'pick_list_type');
SET cw_pick_list = json_val(cw_table_data,'pick_list');
SET cw_pick_table = json_val(cw_table_data,'pick_table');
SET cw_auto_prime_id = json_val(cw_table_data,'auto_prime_id');
SET cw_auto_dispaly_value = json_val(cw_table_data,'auto_dispaly_value');
SET cw_field_isdefault = json_val(cw_table_data,'field_isdefault');
SET cw_default_value = json_val(cw_table_data,'default_value');
SET cw_mandatory_field = json_val(cw_table_data,'mandatory_field');
SET cw_unique_field = json_val(cw_table_data,'unique_field');
SET cw_field_show = json_val(cw_table_data,'field_show');
SET cw_field_sort = json_val(cw_table_data,'field_sort');
SET cw_field_for = json_val(cw_table_data,'field_for');
SET cw_file_type = json_val(cw_table_data,'file_type');
SET cw_table_show = json_val(cw_table_data,'table_show');
SET cw_search_show = json_val(cw_table_data,'search_show');
SET cw_transaction_type = json_val(cw_table_data,'transaction_type');
SET cw_gross_check = json_val(cw_table_data,'gross_check');
SET cw_taxable_check = json_val(cw_table_data,'taxable_check');
SET cw_earn_month_check = json_val(cw_table_data,'earn_month_check');
SET cw_earn_payroll_check = json_val(cw_table_data,'earn_payroll_check');
SET cw_ded_payroll_check = json_val(cw_table_data,'ded_payroll_check');
SET cw_benefit_check = json_val(cw_table_data,'benefit_check');
SET cw_increment_check = json_val(cw_table_data,'increment_check');
SET cw_arrear_pf_check = json_val(cw_table_data,'arrear_pf_check');
SET cw_fandf_check = json_val(cw_table_data,'fandf_check');
SET cw_deduction_check = json_val(cw_table_data,'deduction_check');
SET cw_deduction_month_check = json_val(cw_table_data,'deduction_month_check');
SET cw_loan_check = json_val(cw_table_data,'loan_check');
SET cw_uniform_check = json_val(cw_table_data,'uniform_check');
SET cw_edit_read = json_val(cw_table_data,'edit_read');
SET cw_monthly_input_sort = json_val(cw_table_data,'monthly_input_sort');
SET cw_payroll_sort = json_val(cw_table_data,'payroll_sort');
SET cw_picklist_data = json_val(cw_table_data,'picklist_data');
SET cw_duplicate_data = json_val(cw_table_data,'duplicate_data');
SET cw_pick_list_import = json_val(cw_table_data,'pick_list_import');
SET cw_text_type = json_val(cw_table_data,'text_type');
SET cw_upload_extension = json_val(cw_table_data,'upload_extension');
IF cw_action = "VIEW" THEN
SELECT * FROM cw_form_setting WHERE prime_module_id = cw_prime_module_id AND trans_status = '1' ORDER BY ABS(field_sort) ASC;
END IF;
IF cw_action = "VIEW_INPUT" THEN
SELECT * FROM cw_form_setting WHERE prime_module_id = cw_prime_module_id AND input_for = cw_input_for
AND trans_status = '1' ORDER BY ABS(field_sort) ASC;
END IF;
IF cw_action = "TAB_VIEW" THEN
SELECT * FROM cw_form_setting WHERE prime_module_id = cw_prime_module_id AND input_view_type IN (1,2) AND table_show = '1'
AND trans_status = '1' ORDER BY ABS(table_sort) ASC;
END IF;
IF cw_action = "MONTH_VIEW" THEN
SELECT * FROM cw_form_setting WHERE prime_module_id = cw_prime_module_id AND (earn_month_check = cw_earn_month_check OR deduction_month_check = cw_deduction_month_check) AND input_view_type IN (1,2)
AND trans_status = '1' ORDER BY ABS(monthly_input_sort) ASC;
END IF;
IF cw_action = "PAYROLL_VIEW" THEN
SELECT * FROM cw_form_setting WHERE prime_module_id = cw_prime_module_id AND (earn_payroll_check = cw_earn_payroll_check OR ded_payroll_check = cw_ded_payroll_check) AND input_view_type IN (1,2)
AND trans_status = '1' ORDER BY ABS(payroll_sort) ASC;
END IF;
IF cw_action = "QUERY_VIEW" THEN
IF cw_input_view_type = "1" THEN
SELECT * FROM cw_form_setting WHERE prime_module_id = cw_prime_module_id AND input_view_type IN (1,2)
AND trans_status = '1' ORDER BY ABS(field_sort) DESC;
END IF;
IF cw_input_view_type = "3" THEN
SELECT * FROM cw_form_setting WHERE prime_module_id = cw_prime_module_id AND input_view_type IN (3)
AND trans_status = '1' ORDER BY ABS(field_sort) DESC;
END IF;
END IF;
IF cw_action = "EDIT" THEN
SELECT * FROM cw_form_setting WHERE prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id
AND trans_status = '1' ORDER BY ABS(field_sort) ASC;
END IF;
IF cw_action = "SORT_COUNT" THEN
SELECT COUNT(*) AS sort_count FROM cw_form_setting WHERE prime_module_id = cw_prime_module_id AND input_for = cw_input_for
AND trans_status = '1';
END IF;
IF cw_action = "SAVE" THEN
IF EXISTS(SELECT prime_form_id FROM cw_form_setting WHERE prime_form_id = cw_prime_form_id OR (prime_module_id = cw_prime_module_id AND label_name = cw_label_name) AND trans_status = '1') THEN
UPDATE
cw_form_setting
SET
input_view_type = cw_input_view_type,input_for = cw_input_for,prime_module_id = cw_prime_module_id,field_type=cw_field_type,label_name=cw_label_name,
view_name=cw_view_name,short_name=cw_short_name,text_type = cw_text_type,field_length = cw_field_length,field_decimals = cw_field_decimals,pick_list = cw_pick_list,
pick_list_type = cw_pick_list_type,pick_list_import = cw_pick_list_import, pick_table = cw_pick_table,auto_prime_id = cw_auto_prime_id,
auto_dispaly_value = cw_auto_dispaly_value,field_isdefault = cw_field_isdefault,
default_value = cw_default_value,mandatory_field = cw_mandatory_field,unique_field = cw_unique_field,
field_show = cw_field_show,field_for = cw_field_for,file_type=cw_file_type,upload_extension = cw_upload_extension,table_show = cw_table_show,
search_show = cw_search_show,transaction_type = cw_transaction_type,gross_check = cw_gross_check,taxable_check = cw_taxable_check,earn_month_check = cw_earn_month_check,earn_payroll_check = cw_earn_payroll_check,ded_payroll_check = cw_ded_payroll_check,benefit_check = cw_benefit_check,increment_check = cw_increment_check, arrear_pf_check = cw_arrear_pf_check,fandf_check = cw_fandf_check,deduction_check = cw_deduction_check,deduction_month_check = cw_deduction_month_check,loan_check = cw_loan_check,uniform_check = cw_uniform_check,edit_read = cw_edit_read,picklist_data = cw_picklist_data,duplicate_data = cw_duplicate_data,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
prime_form_id = cw_prime_form_id;
SELECT '1' AS result;
ELSE
INSERT INTO cw_form_setting
(input_view_type,input_for,prime_module_id, field_type,label_name,view_name,short_name,text_type,field_length,field_decimals,pick_list,field_isdefault,default_value,mandatory_field,unique_field,field_show,field_sort,pick_list_type,pick_list_import,pick_table,auto_prime_id,auto_dispaly_value,field_for,file_type,upload_extension,table_show,search_show,transaction_type,gross_check,taxable_check,earn_month_check,earn_payroll_check,ded_payroll_check,benefit_check,increment_check,arrear_pf_check,fandf_check,deduction_check,deduction_month_check,loan_check,uniform_check,edit_read,picklist_data,duplicate_data,
trans_created_by,trans_created_date)
VALUES
(cw_input_view_type,cw_input_for,cw_prime_module_id, cw_field_type,cw_label_name,cw_view_name,cw_short_name,cw_text_type,cw_field_length,cw_field_decimals,cw_pick_list,cw_field_isdefault,cw_default_value,cw_mandatory_field,cw_unique_field,cw_field_show,cw_field_sort,cw_pick_list_type,cw_pick_list_import,cw_pick_table,cw_auto_prime_id,cw_auto_dispaly_value,cw_field_for,cw_file_type,cw_upload_extension,cw_table_show,cw_search_show,cw_transaction_type,cw_gross_check,cw_taxable_check,cw_earn_month_check,cw_earn_payroll_check,cw_ded_payroll_check,cw_benefit_check,cw_increment_check,cw_arrear_pf_check,cw_fandf_check,cw_deduction_check,cw_deduction_month_check,cw_loan_check,cw_uniform_check,cw_edit_read,cw_picklist_data,cw_duplicate_data,cw_action_by,DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S"));
SELECT '1' AS result;
END IF;
END IF;
IF cw_action = "UPD_SORT" THEN
SET cw_sort_order = json_val(cw_table_data,'sort_order');
UPDATE
cw_form_setting
SET
field_sort = cw_sort_order,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id AND input_for = cw_input_for;
SELECT '1' AS result;
END IF;
IF cw_action = "UPD_TABLE_SORT" THEN
SET cw_table_sort = json_val(cw_table_data,'table_sort');
UPDATE
cw_form_setting
SET
table_sort = cw_table_sort,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id;
SELECT '1' AS result;
END IF;
IF cw_action = "UPD_MONTHLY_SORT" THEN
SET cw_monthly_input_sort = json_val(cw_table_data,'monthly_input_sort');
UPDATE
cw_form_setting
SET
monthly_input_sort = cw_monthly_input_sort,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id;
SELECT '1' AS result;
END IF;
IF cw_action = "UPD_PAYROLL_SORT" THEN
SET cw_monthly_input_sort = json_val(cw_table_data,'payroll_sort');
UPDATE
cw_form_setting
SET
payroll_sort = cw_payroll_sort,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
prime_form_id = cw_prime_form_id AND prime_module_id = cw_prime_module_id;
SELECT '1' AS result;
END IF;
IF cw_action = "VIEW_CUSTOM" THEN
SELECT * FROM cw_form_setting WHERE prime_module_id = cw_prime_module_id AND input_for = cw_input_for
AND trans_status = '1' AND field_show = '1' ORDER BY ABS(field_sort) ASC;
END IF;
END$$
CREATE PROCEDURE `sp_form_setting_search` (`cw_action` VARCHAR(10), `cw_search` VARCHAR(255), `cw_limit` INT(100), `cw_offset` INT(100), `cw_sort` VARCHAR(255), `cw_order` VARCHAR(100)) BEGIN
IF cw_action = "SEARCH" THEN
SET @buffer = CONCAT_WS('',
'SELECT * FROM cw_modules left join cw_main_menu on cw_main_menu.prime_menu_id = cw_modules.menu_id where cw_modules.trans_status = 1 and cw_modules.menu_id not in (1,2) and cw_modules.module_name LIKE ', CONCAT("'%", cw_search , "%'") , 'or cw_modules.module_type LIKE ', CONCAT("'%", cw_search , "%'") ,' ORDER BY ', cw_sort, ' ', cw_order, ' LIMIT ' , cw_limit, ',', cw_offset
);
PREPARE stmt FROM @buffer;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END IF;
IF cw_action = "COUNT" THEN
SELECT COUNT(*) AS data_count FROM cw_modules where show_module = 1 and trans_status = 1 and menu_id not in (1,2);
END IF;
END$$
CREATE PROCEDURE `sp_form_view_setting_crud` (`cw_action` VARCHAR(255), `cw_table_data` TEXT, `cw_action_by` VARCHAR(255)) BEGIN
DECLARE cw_prime_form_view_id,cw_prime_view_module_id,cw_form_view_type,cw_form_view_type_mode,cw_form_view_label_name,cw_form_view_heading,cw_form_view_for,cw_form_view_show,cw_form_view_sort TEXT;
SET cw_prime_form_view_id = json_val(cw_table_data,'prime_form_view_id');
SET cw_prime_view_module_id = json_val(cw_table_data,'prime_view_module_id');
SET cw_form_view_type = json_val(cw_table_data,'form_view_type');
SET cw_form_view_type_mode = json_val(cw_table_data,'form_view_type_mode');
SET cw_form_view_label_name = json_val(cw_table_data,'form_view_label_name');
SET cw_form_view_heading = json_val(cw_table_data,'form_view_heading');
SET cw_form_view_for = json_val(cw_table_data,'form_view_for');
SET cw_form_view_show = json_val(cw_table_data,'form_view_show');
SET cw_form_view_sort = json_val(cw_table_data,'form_view_sort');
IF cw_action = "VIEW" THEN
SELECT * FROM cw_form_view_setting WHERE prime_view_module_id = cw_prime_view_module_id AND trans_status = '1' ORDER BY form_view_sort ASC;
END IF;
IF cw_action = "SORT_COUNT" THEN
SELECT COUNT(*) AS sort_count FROM cw_form_view_setting WHERE prime_view_module_id = cw_prime_view_module_id
AND trans_status = '1';
END IF;
IF cw_action = "EDIT" THEN
SELECT * FROM cw_form_view_setting WHERE prime_form_view_id = cw_prime_form_view_id AND prime_view_module_id = cw_prime_view_module_id
AND trans_status = '1' ORDER BY form_view_sort ASC;
END IF;
IF cw_action = "UPD_SORT" THEN
UPDATE
cw_form_view_setting
SET
form_view_sort = cw_form_view_sort,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
prime_form_view_id = cw_prime_form_view_id AND prime_view_module_id = cw_prime_view_module_id;
SELECT '1' AS result;
END IF;
IF cw_action = "SAVE" THEN
IF EXISTS(SELECT prime_form_view_id FROM cw_form_view_setting WHERE (prime_form_view_id = cw_prime_form_view_id OR
form_view_label_name = cw_form_view_label_name) AND trans_status = '1') THEN
UPDATE
cw_form_view_setting
SET
prime_view_module_id = cw_prime_view_module_id,form_view_type = cw_form_view_type,form_view_type_mode = cw_form_view_type_mode,
form_view_label_name = cw_form_view_label_name,form_view_heading =cw_form_view_heading,form_view_for = cw_form_view_for,
form_view_show = cw_form_view_show,trans_updated_by = cw_action_by,trans_updated_date = DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S")
WHERE
prime_form_view_id = cw_prime_form_view_id;
UPDATE cw_form_setting SET input_view_type = cw_form_view_type WHERE input_for = cw_prime_form_view_id;
SELECT '1' AS result;
ELSE
INSERT INTO cw_form_view_setting
(prime_view_module_id,form_view_type,form_view_type_mode,form_view_label_name,form_view_heading,form_view_for,form_view_show,form_view_sort,
trans_created_by,trans_created_date)
VALUES
(cw_prime_view_module_id,cw_form_view_type,cw_form_view_type_mode,cw_form_view_label_name,cw_form_view_heading,cw_form_view_for,cw_form_view_show,
cw_form_view_sort,cw_action_by,DATE_FORMAT(NOW(), "%Y-%m-%d %H:%i:%S"));
UPDATE cw_form_setting SET input_view_type = cw_form_view_type WHERE input_for = LAST_INSERT_ID();
SELECT '1' AS result;
END IF;
END IF;
END$$
CREATE PROCEDURE `sp_print_setting_search` (`cw_action` VARCHAR(10)) BEGIN
IF cw_action = "SEARCH" THEN
SET @buffer = 'SELECT * FROM cw_modules left join cw_main_menu on cw_main_menu.prime_menu_id = cw_modules.menu_id where cw_modules.trans_status = 1 and cw_modules.pdf_module = 1 and cw_modules.menu_id not in (1,2)';
PREPARE stmt FROM @buffer;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END IF;
IF cw_action = "COUNT" THEN
SELECT COUNT(*) AS data_count FROM cw_modules WHERE show_module = 1 AND trans_status = 1 AND pdf_module = 1 AND menu_id NOT IN (1,2);
END IF;
END$$
CREATE PROCEDURE `sp_utilities_setting_search` (`cw_action` VARCHAR(10), `cw_search` VARCHAR(255)) BEGIN
IF cw_action = "SEARCH" THEN
SET @buffer = CONCAT_WS('',
'SELECT * FROM cw_modules left join cw_main_menu on cw_main_menu.prime_menu_id = cw_modules.menu_id where cw_modules.trans_status = 1 and cw_modules.import_module = 1 and (cw_modules.module_name LIKE ', CONCAT("'%", cw_search , "%'") , 'or cw_modules.module_type LIKE ', CONCAT("'%", cw_search , "%'"),') and cw_modules.menu_id not in (2)'
);
PREPARE stmt FROM @buffer;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END IF;
IF cw_action = "COUNT" THEN
SELECT COUNT(*) AS data_count FROM cw_modules WHERE show_module = 1 AND import_module = 1 AND trans_status = 1 AND menu_id NOT IN (1,2);
END IF;
END$$
--
-- Functions
--
CREATE FUNCTION `json_val` (`details` TEXT, `required_field` VARCHAR(255)) RETURNS TEXT CHARSET latin1 BEGIN
DECLARE search_term TEXT;
SET details = SUBSTRING_INDEX(details, "{", -1);
SET details = SUBSTRING_INDEX(details, "}", 1);
SET search_term = CONCAT('"', SUBSTRING_INDEX(required_field,'$.', - 1), '"');
IF INSTR(details, search_term) > 0 THEN
RETURN TRIM(
BOTH '"' FROM SUBSTRING_INDEX(
SUBSTRING_INDEX(
SUBSTRING_INDEX(
details,
search_term,
- 1
),
',"',
1
),
':',
-1
)
);
ELSE
RETURN NULL;
END IF;
END$$
DELIMITER ;
-- --------------------------------------------------------
--
-- Table structure for table `cw_active_status`
--
CREATE TABLE `cw_active_status` (
`prime_active_status_id` int NOT NULL,
`active_status_value` varchar(100) DEFAULT NULL,
`trans_status` int NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `cw_active_status`
--
INSERT INTO `cw_active_status` (`prime_active_status_id`, `active_status_value`, `trans_status`) VALUES
(0, 'Active', 1),
(1, 'In Active', 1);
-- --------------------------------------------------------
--
-- Table structure for table `cw_app_config`
--
CREATE TABLE `cw_app_config` (
`app_id` int NOT NULL,
`key` varchar(255) NOT NULL,
`value` varchar(255) NOT NULL,
`shop_id` varchar(16) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
--
-- Dumping data for table `cw_app_config`
--
INSERT INTO `cw_app_config` (`app_id`, `key`, `value`, `shop_id`) VALUES
(7546, 'address', 'Globus, 5th Floor, B block,Sir Thyagaraya Road,T.Nagar,,Chennai,600003,India', 'SPAT1H57987783'),
(7547, 'barcode_content', 'number', 'SPAT1H57987783'),
(7548, 'barcode_first_row', 'not_show', 'SPAT1H57987783'),
(7549, 'barcode_font', '0', 'SPAT1H57987783'),
(7550, 'barcode_font_size', '10', 'SPAT1H57987783'),
(7551, 'barcode_generate_if_empty', '0', 'SPAT1H57987783'),
(7552, 'barcode_height', '50', 'SPAT1H57987783'),
(7553, 'barcode_num_in_row', '2', 'SPAT1H57987783'),
(7554, 'barcode_page_cellspacing', '20', 'SPAT1H57987783'),
(7555, 'barcode_page_width', '100', 'SPAT1H57987783'),
(7556, 'barcode_quality', '100', 'SPAT1H57987783'),
(7557, 'barcode_second_row', 'item_code', 'SPAT1H57987783'),
(7558, 'barcode_third_row', 'not_show', 'SPAT1H57987783'),
(7559, 'barcode_type', 'Code39', 'SPAT1H57987783'),
(7560, 'barcode_width', '250', 'SPAT1H57987783'),
(7561, 'city', 'Chennai', 'SPAT1H57987783'),
(7562, 'client_id', 'fa4fa19d-885c-4299-940a-4c382b5490a0', 'SPAT1H57987783'),
(7563, 'company', 'CAFS JOBS', 'SPAT1H57987783'),
(7565, 'country', 'India', 'SPAT1H57987783'),
(7566, 'country_codes', 'in', 'SPAT1H57987783'),
(7567, 'currency_decimals', '2', 'SPAT1H57987783'),
(7568, 'currency_symbol', '₹', 'SPAT1H57987783'),
(7579, 'dateformat', 'd/m/Y', 'SPAT1H57987783'),
(7586, 'email', 'hr@cafsinfotech.com', 'SPAT1H57987783'),
(7587, 'fax', '', 'SPAT1H57987783'),
(7588, 'gstin', '21ADSPU4691P1Z5', 'SPAT1H57987783'),
(7591, 'invoice_enable', '1', 'SPAT1H57987783'),
(7592, 'language', 'en', 'SPAT1H57987783'),
(7593, 'lines_per_page', '25', 'SPAT1H57987783'),
(7594, 'mailpath', '/usr/sbin/sendmail', 'SPAT1H57987783'),
(7598, 'msg_uid', '-', 'SPAT1H57987783'),
(7599, 'notify_horizontal_position', 'right', 'SPAT1H57987783'),
(7600, 'notify_vertical_position', 'bottom', 'SPAT1H57987783'),
(7601, 'number_locale', 'en_IN', 'SPAT1H57987783'),
(7602, 'pan', 'ADSPU4691P', 'SPAT1H57987783'),
(7603, 'payment_options_order', 'cashdebitcredit', 'SPAT1H57987783'),
(7604, 'phone', '9500088633', 'SPAT1H57987783'),
(7605, 'pincode', '600003', 'SPAT1H57987783'),
(7606, 'print_bottom_margin', '', 'SPAT1H57987783'),
(7607, 'print_footer', '0', 'SPAT1H57987783'),
(7608, 'print_header', '0', 'SPAT1H57987783'),
(7609, 'print_left_margin', '', 'SPAT1H57987783'),
(7610, 'print_right_margin', '', 'SPAT1H57987783'),
(7611, 'print_silently', '0', 'SPAT1H57987783'),
(7612, 'print_top_margin', '', 'SPAT1H57987783'),
(7613, 'protocol', 'mail', 'SPAT1H57987783'),
(7614, 'quantity_decimals', '0', 'SPAT1H57987783'),
(7615, 'receipt_show_description', '1', 'SPAT1H57987783'),
(7616, 'receipt_show_serialnumber', '1', 'SPAT1H57987783'),
(7617, 'receipt_show_taxes', '1', 'SPAT1H57987783'),
(7618, 'receipt_show_total_discount', '1', 'SPAT1H57987783'),
(7619, 'receipt_template', 'receipt_short', 'SPAT1H57987783'),
(7620, 'receiving_calculate_average_price', '0', 'SPAT1H57987783'),
(7621, 'recv_invoice_format', '$CO', 'SPAT1H57987783'),
(7623, 'sales_invoice_format', '$CO', 'SPAT1H57987783'),
(7624, 'smtp_crypto', 'ssl', 'SPAT1H57987783'),
(7625, 'smtp_host', '', 'SPAT1H57987783'),
(7626, 'smtp_pass', '', 'SPAT1H57987783'),
(7627, 'smtp_port', '465', 'SPAT1H57987783'),
(7628, 'smtp_timeout', '5', 'SPAT1H57987783'),
(7629, 'smtp_user', '', 'SPAT1H57987783'),
(7630, 'street', 'Globus, 5th Floor, B block,Sir Thyagaraya Road,T.Nagar,', 'SPAT1H57987783'),
(7631, 'tax_decimals', '2', 'SPAT1H57987783'),
(7632, 'tax_included', '0', 'SPAT1H57987783'),
(7633, 'thousands_separator', 'thousands_separator', 'SPAT1H57987783'),
(7634, 'timeformat', 'h:i:s a', 'SPAT1H57987783'),
(7635, 'timezone', 'Asia/Kolkata', 'SPAT1H57987783'),
(7636, 'typeofstore', '', 'SPAT1H57987783'),
(7637, 'website', 'http://cafsinfotech.com/', 'SPAT1H57987783'),
(7673, 'state', '1', 'SPAT1H57987783');
-- --------------------------------------------------------
--
-- Table structure for table `cw_assign_log`
--
CREATE TABLE `cw_assign_log` (
`prime_assign_log_id` int NOT NULL,
`prime_candidate_tracker_id` int DEFAULT NULL,
`interviewer` int DEFAULT NULL,
`interview_status` int DEFAULT NULL,
`overall_rating` int DEFAULT '0',
`remarks` text,
`trans_created_by` int DEFAULT NULL,
`trans_created_date` datetime DEFAULT NULL,
`trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `cw_assign_log`
--
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(1, 7, 8, 4, 2, 'to check-php developer', 7, '0000-00-00 00:00:00', 1),
(2, 3, 8, 5, 2, 'no job need, will not sustain.', 10, '0000-00-00 00:00:00', 1),
(3, 4, 8, 4, 3, 'Need to check whether she will suite for our process.', 1, '0000-00-00 00:00:00', 1),
(4, 5, 8, 2, 2, 'exp salary is 17K', 1, '0000-00-00 00:00:00', 1),
(5, 9, 8, 5, 0, 'Will not suite for CRM and rE', 1, '0000-00-00 00:00:00', 1),
(6, 8, 8, 5, 0, 'will not suite for cRM', 1, '0000-00-00 00:00:00', 1),
(7, 12, 16, 3, 2, 'He Is Wrongly Applied to post,He Is Eligible For RE', 1, '0000-00-00 00:00:00', 1),
(8, 18, 8, 5, 0, 'No Relevant exp. prefers non voice looking job for time being', 10, '0000-00-00 00:00:00', 1),
(9, 14, 8, 5, 0, 'Not speaking up', 10, '0000-00-00 00:00:00', 1),
(10, 15, 8, 5, 0, 'No Relevant Experience , salary Exception high ', 10, '0000-00-00 00:00:00', 1),
(11, 17, 8, 5, 0, 'will not suite for this profile', 10, '0000-00-00 00:00:00', 1),
(12, 13, 8, 5, 0, 'He is not Interested in field sales, salary Package is as a crm ', 10, '0000-00-00 00:00:00', 1),
(13, 4, 11, 2, 3, 'Travailing hours more than 2 hours need to check ', 8, '2020-09-03 11:55:50', 1),
(14, 4, 11, 2, 3, 'Travailing hours more than 2 hours need to check ', 8, '2020-09-03 11:55:50', 1),
(15, 19, 8, 5, 0, 'will not suite for cRM', 1, '0000-00-00 00:00:00', 1),
(16, 20, 11, 5, 0, 'will not suite for Mis', 1, '0000-00-00 00:00:00', 1),
(17, 23, 8, 5, 0, 'lang is not good, he is not suite for crm and rE', 1, '0000-00-00 00:00:00', 1),
(18, 6, 8, 2, 3, '.Asked time to think about the salary Exp in kalyan Matrimony. okay for portfolio. exp is 13K.', 1, '0000-00-00 00:00:00', 1),
(19, 26, 21, 5, 3, 'not suitable for sales', 1, '0000-00-00 00:00:00', 1),
(20, 30, 21, 4, 4, 'recruiter....expected package 12k', 1, '0000-00-00 00:00:00', 1),
(21, 24, 16, 5, 1, 'Not Fit For RE and calling', 1, '0000-00-00 00:00:00', 1),
(22, 22, 24, 4, 3, 'HE APPLY FOR MIS .. SO NEXT ROUND ALLOCATED.. PROFILE HAND OVER TO NIRMAL', 1, '0000-00-00 00:00:00', 1),
(23, 1, 11, 2, 0, 'salary expected high if she is ok with 12 selected', 1, '0000-00-00 00:00:00', 1),
(24, 16, 11, 4, 4, 'we can try for recruiter....expected package 10k or 10,5k', 1, '0000-00-00 00:00:00', 1),
(25, 16, 8, 5, 3, 'holded for telephonic and no Response from her. will not suite for CAFS', 11, '2020-09-03 01:10:05', 1),
(26, 22, 25, 2, 0, 'Hold for telephonic round', 24, '2020-09-03 01:14:44', 1),
(27, 30, 8, 2, 0, 'Hold for telephonic interview for cross check', 21, '2020-09-03 01:24:47', 1),
(28, 25, 17, 4, 3, 'He is a Suitable calling profile and he is willing to work calling profile. ', 1, '0000-00-00 00:00:00', 1),
(29, 27, 8, 5, 0, 'will not suite for RM /RE expected is 80K, Communication is very poor', 1, '0000-00-00 00:00:00', 1),
(30, 25, 13, 5, 0, 'will not suite for sales and calling', 17, '2020-09-03 02:37:26', 1),
(31, 7, 26, 5, 0, 'she dont know the basics of c and c++', 8, '2020-09-03 04:53:00', 1),
(32, 7, 26, 5, 0, 'she dont know the basics of c and c++', 8, '2020-09-03 04:53:00', 1),
(33, 7, 26, 5, 0, 'she dont know the basics of c and c++', 8, '2020-09-03 04:53:00', 1),
(34, 7, 26, 5, 0, 'she dont know the basics of c and c++', 8, '2020-09-03 04:53:00', 1),
(35, 40, 28, 4, 3, 'test nill', 7, '0000-00-00 00:00:00', 1),
(36, 40, 26, 2, 4, 'nill', 28, '2020-09-04 12:09:25', 1),
(37, 40, 26, 3, 0, NULL, 26, '2020-09-04 12:12:03', 1),
(38, 40, 26, 3, 0, NULL, 26, '2020-09-04 12:12:03', 1),
(39, 42, 8, 5, 1, 'looking for admin related job. will not sustain and Struggling to speak.', 1, '0000-00-00 00:00:00', 1),
(40, 44, 8, 4, 4, 'fresher, will suite for portfolio', 1, '0000-00-00 00:00:00', 1),
(41, 45, 8, 5, 1, 'Language is not good', 1, '0000-00-00 00:00:00', 1),
(42, 44, 21, 1, 0, NULL, 8, '2020-09-04 11:14:03', 1),
(43, 44, 21, 1, 0, NULL, 8, '2020-09-04 11:14:03', 1),
(44, 44, 11, 3, 4, 'salary decided 11k', 8, '2020-09-04 11:14:03', 1),
(45, 48, 8, 4, 3, 'will suite for portfolio and okay with 12K.', 1, '0000-00-00 00:00:00', 1),
(46, 48, 11, 3, 4, 'candidate ok', 8, '2020-09-04 11:35:47', 1),
(47, 48, 11, 3, 4, 'candidate ok', 8, '2020-09-04 11:35:47', 1),
(48, 49, 8, 5, 2, 'language is not good. Pronunciation is not good.', 1, '0000-00-00 00:00:00', 1),
(49, 50, 8, 5, 2, 'will not suite for CRM. Not speaking up. will not handle pressure and Sustain.', 1, '0000-00-00 00:00:00', 1),
(50, 60, 8, 5, 2, 'very childish will not suite for CRM', 1, '0000-00-00 00:00:00', 1),
(51, 46, 26, 5, 1, 'Her Years Of Experience, She Is Not Good At Technical.', 1, '0000-00-00 00:00:00', 1),
(52, 61, 18, 3, 3, 'Good candidate and has relevant experience', 1, '0000-00-00 00:00:00', 1),
(53, 53, 17, 5, 2, 'He will not sustain for sales ', 1, '0000-00-00 00:00:00', 1),
(54, 62, 14, 4, 3, 'Already 1 year experience in health insurance & need to check once in confident level', 1, '0000-00-00 00:00:00', 1),
(55, 62, 14, 4, 3, 'Already 1 year experience in health insurance & need to check once in confident level', 1, '0000-00-00 00:00:00', 1),
(56, 52, 11, 5, 3, 'not suitable for sales &telecalling', 1, '0000-00-00 00:00:00', 1),
(57, 54, 8, 5, 0, 'looking for non voice and will not sustain.', 1, '0000-00-00 00:00:00', 1),
(58, 57, 8, 4, 0, 'check with his skills', 1, '0000-00-00 00:00:00', 1),
(59, 62, 17, 3, 3, 'after 6 month based on Performance will Increase the salary \nsalary will ', 14, '2020-09-04 01:05:33', 1),
(60, 62, 17, 3, 3, 'after 6 month based on Performance will Increase the salary \nsalary will ', 14, '2020-09-04 01:05:33', 1),
(61, 56, 8, 5, 0, '2months in voice process, absconded from the company because of pressure. prefers non voice', 1, '0000-00-00 00:00:00', 1),
(62, 64, 40, 5, 3, 'Not willing to work in sales and interested in telecalling and he is asking 21k in telemarketing', 1, '0000-00-00 00:00:00', 1),
(63, 68, 8, 4, 3, 'nill', 1, '0000-00-00 00:00:00', 1),
(64, 68, 11, 2, 4, 'For Testing Purpose Updated by Sathish IT', 8, '2020-09-04 01:22:08', 1),
(65, 68, 11, 5, 0, NULL, 11, '2020-09-04 01:24:58', 1),
(66, 68, 11, 5, 0, NULL, 11, '2020-09-04 01:24:58', 1),
(67, 65, 40, 4, 4, 'Seems positive but not that much professional', 1, '0000-00-00 00:00:00', 1),
(68, 66, 8, 2, 0, 'for telephonic to cross check', 1, '0000-00-00 00:00:00', 1),
(69, 63, 8, 5, 2, 'too long, not speaking up will not suite for CRM', 1, '0000-00-00 00:00:00', 1),
(70, 67, 8, 5, 0, 'Pronunciation is not good and lack in communication ', 1, '0000-00-00 00:00:00', 1),
(71, 57, 25, 5, 0, 'technical round - rejected', 8, '2020-09-04 02:09:51', 1),
(72, 57, 25, 5, 0, 'technical round - rejected', 8, '2020-09-04 02:09:51', 1),
(73, 71, 44, 4, 3, 'He Is Having Some Experience In Life Insurance From HDFC Casa, And Ok For RM Profile But He Dont Have Bike .Please Meet Once', 1, '0000-00-00 00:00:00', 1),
(74, 65, 18, 3, 3, 'Ok Candidate Need To Call Him In This Number 9840584598\n', 40, '2020-09-04 02:37:59', 1),
(75, 74, 27, 2, 1, 'nill', 7, '0000-00-00 00:00:00', 1),
(76, 74, 27, 5, 0, NULL, 27, '2020-09-04 03:20:46', 1),
(77, 71, 29, 5, 1, 'not fit', 44, '2020-09-04 03:42:36', 1),
(78, 75, 8, 2, 3, 'for HR telephonic', 1, '0000-00-00 00:00:00', 1),
(79, 71, 29, 5, 1, 'not fit', 44, '2020-09-04 04:04:49', 1),
(80, 71, 29, 5, 1, 'not fit', 44, '2020-09-04 04:50:14', 1),
(81, 86, 40, 4, 3, 'Attitude issues but hard worker', 1, '0000-00-00 00:00:00', 1),
(82, 86, 18, 3, 3, 'Refereal candidate we can try to mould', 40, '2020-09-05 12:16:08', 1),
(83, 29, 8, 4, 3, 'Good in tech', 7, '0000-00-00 00:00:00', 1),
(84, 29, 26, 3, 4, 'good in tech and atitude', 8, '2020-09-05 01:38:50', 1),
(85, 81, 21, 4, 3, 'ok', 1, '0000-00-00 00:00:00', 1),
(86, 85, 21, 4, 3, 'selected', 1, '0000-00-00 00:00:00', 1),
(87, 94, 21, 4, 3, 'need to check ramesh', 1, '0000-00-00 00:00:00', 1),
(88, 81, 14, 4, 4, 'Selected . 9k salary ', 21, '2020-09-05 05:53:44', 1),
(89, 85, 8, 3, 0, 'for dhivya team', 21, '2020-09-05 05:56:12', 1),
(90, 94, 8, 8, 0, 'not turned up for 2nd round', 21, '2020-09-05 05:58:15', 1),
(91, 105, 8, 4, 5, 'tech, good', 1, '0000-00-00 00:00:00', 1),
(92, 105, 26, 3, 0, 'Good', 8, '2020-09-06 11:39:50', 1),
(93, 110, 19, 5, 2, 'NO COMMUNICATION IN BOTH(ENGLISH & tAMIL)', 50, '0000-00-00 00:00:00', 1),
(94, 104, 15, 5, 2, 'mBA student ,salary expectation high', 50, '0000-00-00 00:00:00', 1),
(95, 109, 8, 5, 0, 'looking for nonvoice. basics in excel. will not suite for crm.', 50, '0000-00-00 00:00:00', 1),
(96, 96, 8, 5, 0, 'no confidence and will not suite for HR and voice is very low', 50, '0000-00-00 00:00:00', 1),
(98, 112, 26, 4, 3, 'assign dynamic form creation to save and list, delete option. he is having experience MERN.', 50, '0000-00-00 00:00:00', 1),
(99, 111, 8, 4, 3, 'Layoff from reliance. will not handle Pressure. need to cross check with his product Knowledge.', 50, '0000-00-00 00:00:00', 1),
(100, 108, 16, 2, 3, 'DECIDE TO SALARY', 50, '0000-00-00 00:00:00', 1),
(101, 111, 40, 4, 4, 'Looks like long runner with neutral knowledge in insurance field', 8, '2020-09-07 11:44:47', 1),
(102, 114, 8, 5, 3, 'Last week Attended interview and rejected by suthagar and srikanth.', 50, '0000-00-00 00:00:00', 1),
(103, 115, 8, 5, 0, 'will not suite for CRM', 50, '0000-00-00 00:00:00', 1),
(104, 117, 20, 5, 3, 'no sales exp', 50, '0000-00-00 00:00:00', 1),
(105, 116, 24, 4, 5, 'SALARY 14.5k TO 15K INFORMED.. ALREADY EXP', 50, '0000-00-00 00:00:00', 1),
(106, 118, 33, 2, 0, 'Left before interview', 50, '0000-00-00 00:00:00', 1),
(107, 111, 18, 5, 3, 'Not fit for sales', 40, '2020-09-07 12:35:51', 1),
(109, 112, 27, 5, 2, '', 26, '2020-09-07 12:50:27', 1),
(110, 108, 8, 2, 0, 'Left after first round interview.', 16, '2020-09-07 12:52:13', 1),
(111, 108, 16, 4, 0, 'DECIDE TO SALARY ,HE IS EXPECT 15K TO 16K BUT PREVIOUS COMPANY TAKEN 11K', 16, '2020-09-07 12:52:13', 1),
(112, 106, 26, 5, 1, 'Fresher, No idea about basics and not interested in our terms.', 1, '0000-00-00 00:00:00', 1),
(113, 83, 8, 4, 3, 'Interested in field sales, but profile matches for CRM but salary exp is 18K.', 50, '0000-00-00 00:00:00', 1),
(114, 119, 24, 5, 1, 'Past Job.. 2month Abscond And 6month Abscond', 50, '0000-00-00 00:00:00', 1),
(115, 120, 18, 7, 3, 'GIven to GK', 50, '0000-00-00 00:00:00', 1),
(116, 123, 31, 4, 3, 'Lokesh Team reference', 50, '0000-00-00 00:00:00', 1),
(117, 121, 24, 5, 1, 'NOT SUITABLE FOR OUR PROFILE AND EXPECTING MORE SALARY.... ', 50, '0000-00-00 00:00:00', 1),
(118, 116, 20, 2, 4, 'Have To discuss salary.on final call', 24, '2020-09-07 01:39:45', 1),
(119, 122, 8, 5, 0, 'Already attend interview and rejected by suthagar and srikanth', 50, '0000-00-00 00:00:00', 1),
(120, 83, 19, 5, 2, 'no sustainability', 8, '2020-09-07 02:06:06', 1),
(121, 123, 18, 5, 3, 'Average guy', 31, '2020-09-07 03:46:35', 1),
(122, 116, 7, 1, 0, NULL, 20, '2020-09-07 04:55:41', 1),
(123, 116, 20, 4, 0, 'kindly confirm salary on call.', 20, '2020-09-07 04:55:41', 1),
(124, 128, 21, 4, 3, 'selected , 10k salary,need to confirm joining bcz exam pending ', 50, '0000-00-00 00:00:00', 1),
(125, 149, 21, 4, 3, 'selected 10 k salary,need to confirm joining date last exam pending ', 50, '0000-00-00 00:00:00', 1),
(126, 135, 11, 5, 3, 'previous salary 15k(semi voice) .currently expecting 15k above...so rejected...', 50, '0000-00-00 00:00:00', 1),
(127, 137, 21, 4, 4, 'selected , 10 k salary, need to confirm joining date last exams pending ', 50, '0000-00-00 00:00:00', 1),
(128, 131, 31, 5, 3, 'Expecting 45k . ', 50, '0000-00-00 00:00:00', 1),
(129, 129, 8, 4, 3, 'fresher, holds exp in Tommy retail. check with sustainability.', 50, '0000-00-00 00:00:00', 1),
(130, 132, 17, 4, 3, 'future plan business with brother so cross check the profile ', 50, '0000-00-00 00:00:00', 1),
(131, 134, 26, 4, 2, 'fresher but he wants to learn technology, He knows the basics of PHP s but has to assign a simple task and evaluate.', 50, '0000-00-00 00:00:00', 1),
(132, 139, 26, 5, 1, 'he dont know the basics of PHP. not sure he cant learn things quickly.', 50, '0000-00-00 00:00:00', 1),
(133, 148, 8, 4, 3, 'has knowledge in health. salary exp is 17k with inc.', 50, '0000-00-00 00:00:00', 1),
(134, 127, 17, 4, 3, 'cross check ', 50, '0000-00-00 00:00:00', 1),
(135, 142, 21, 5, 2, 'not fit for sales ,', 50, '0000-00-00 00:00:00', 1),
(136, 155, 19, 5, 1, 'not opening his mouth', 50, '0000-00-00 00:00:00', 1),
(137, 156, 24, 4, 4, 'GOOD FOR SALE', 50, '0000-00-00 00:00:00', 1),
(138, 141, 44, 5, 2, 'He is looking for Loan sales and not intrested in Insurance job', 50, '0000-00-00 00:00:00', 1),
(139, 145, 31, 4, 3, 'jobless now. forward to next round', 50, '0000-00-00 00:00:00', 1),
(140, 157, 11, 5, 3, 'expected salary is high 15 k above.so rejected ', 50, '0000-00-00 00:00:00', 1),
(141, 132, 40, 4, 3, 'Fresher,planning to work for next 2 years maximum', 17, '2020-09-08 11:55:12', 1),
(142, 156, 19, 5, 1, 'not fit for sales', 24, '2020-09-08 12:05:08', 1),
(143, 118, 33, 5, 0, 'Candidate are not fit for rm category and drops convincing skills Not worthy for expected salary 26000\n', 33, '2020-09-08 12:11:45', 1),
(144, 148, 14, 5, 3, 'previous company salary less but he expecting high . ', 8, '2020-09-08 12:28:05', 1),
(145, 134, 27, 2, 2, 'System Task Given. He will come to office on 10 Sep 2020 for System Task.', 26, '2020-09-08 12:28:40', 1),
(146, 129, 36, 3, 3, 'okay for rm. ', 8, '2020-09-08 12:34:15', 1),
(147, 145, 29, 1, 0, NULL, 31, '2020-09-08 12:36:16', 1),
(148, 127, 16, 4, 3, 'SELECTED, ONCE CONFIRM SALARY', 17, '2020-09-08 12:40:55', 1),
(149, 132, 18, 5, 3, 'Not fit for RM Profile', 40, '2020-09-08 12:52:04', 1),
(150, 127, 8, 3, 0, 'last take was 15k and he is okay with inc.', 16, '2020-09-08 01:07:40', 1),
(151, 140, 26, 4, 3, 'have to assign task and review. kindly assign simple task reminder app. she has to create a data base in firebase and api, application using Java\n', 50, '0000-00-00 00:00:00', 1),
(152, 140, 27, 2, 3, 'System Task Given. She will Complete and share the files on 09 Sep 2020 at 11 AM.', 26, '2020-09-08 02:19:37', 1),
(153, 128, 8, 3, 0, 'For dhivya team', 21, '2020-09-08 02:54:03', 1),
(154, 137, 8, 3, 0, 'for dhivya team', 21, '2020-09-08 02:58:40', 1),
(155, 149, 8, 3, 0, 'for dhivya team', 21, '2020-09-08 03:05:50', 1),
(156, 30, 8, 5, 0, 'rejected in telephonic ', 8, '2020-09-08 03:50:21', 1),
(157, 5, 8, 5, 0, 'has exp only in semi voice ane exp salary is 17K', 8, '2020-09-08 04:06:25', 1),
(158, 6, 8, 5, 0, 'asked Time To Think About The Salary Exp In Kalyan Matrimony. Exp Is 13k+', 8, '2020-09-08 04:08:58', 1),
(159, 175, 8, 4, 2, 'profile miss match, check with his previous Concerns.', 50, '0000-00-00 00:00:00', 1),
(160, 161, 8, 4, 3, 'fresher for calling. check whether he will suite for our process.', 50, '0000-00-00 00:00:00', 1),
(161, 175, 34, 5, 2, 'Not a Sustain-er and seems like a non-productive worker ', 8, '2020-09-09 10:50:24', 1),
(162, 178, 8, 5, 3, 'not speaking up. will not suite for CRM.', 50, '0000-00-00 00:00:00', 1),
(163, 179, 21, 5, 2, 'pre exp in data entry ,not suit for sales', 50, '0000-00-00 00:00:00', 1),
(164, 161, 14, 3, 4, '14.09.2020 joining ', 8, '2020-09-09 11:09:15', 1),
(165, 180, 21, 4, 4, 'ok for health process ', 50, '0000-00-00 00:00:00', 1),
(166, 182, 21, 4, 2, 'need to check recuruter pros , bec he already worked in us process', 50, '0000-00-00 00:00:00', 1),
(167, 183, 21, 4, 4, 'need to confirm joining date ', 50, '0000-00-00 00:00:00', 1),
(168, 165, 21, 4, 4, 'rE candidate , need to check sudhakar ', 50, '0000-00-00 00:00:00', 1),
(169, 170, 8, 5, 3, 'not Speaking up and will not uite for CRM', 50, '0000-00-00 00:00:00', 1),
(170, 160, 8, 2, 3, 'for telephonic', 50, '0000-00-00 00:00:00', 1),
(171, 171, 8, 5, 3, 'he wanna to do designing course so he is looking for job. will not sustain for us.', 50, '0000-00-00 00:00:00', 1),
(172, 167, 19, 4, 3, 'communication is good but sustainability ?', 50, '0000-00-00 00:00:00', 1),
(173, 187, 21, 4, 4, 'need to confirm salary ...', 50, '0000-00-00 00:00:00', 1),
(174, 81, 8, 3, 0, '9K for priyanka team', 14, '2020-09-09 11:37:21', 1),
(175, 166, 11, 3, 4, 'salary take home 11k.', 50, '0000-00-00 00:00:00', 1),
(176, 169, 11, 5, 3, 'she is looking for only non voice or semi voice process.so rejected', 50, '0000-00-00 00:00:00', 1),
(177, 181, 13, 4, 4, '11k salary', 50, '0000-00-00 00:00:00', 1),
(178, 189, 13, 3, 4, 'ok ', 50, '0000-00-00 00:00:00', 1),
(179, 188, 14, 5, 2, 'he is not fit for long term sustainability .. confident level very less .', 50, '0000-00-00 00:00:00', 1),
(180, 183, 8, 2, 0, 'yet to Complete her exams and will confirm once after her exams.(oct)', 21, '2020-09-09 02:32:23', 1),
(181, 195, 44, 4, 3, 'I Am Ok With This Candaidate And Need Your Suggestion ,', 50, '0000-00-00 00:00:00', 1),
(182, 196, 20, 2, 4, '2nd round tomorrow at 10.30', 50, '0000-00-00 00:00:00', 1),
(183, 187, 8, 3, 0, '12K for dhivya team', 21, '2020-09-09 02:35:11', 1),
(184, 180, 13, 4, 4, 'ok ', 21, '2020-09-09 02:36:37', 1),
(185, 182, 8, 5, 2, 'will not suite for CRM and RE', 21, '2020-09-09 02:44:20', 1),
(186, 165, 24, 5, 1, 'Candidate Should Not Sustain .. He Is Looking Government Job... 6 Month Period Only He Looking Job... join interview with kannan', 21, '2020-09-09 02:49:02', 1),
(187, 167, 22, 5, 2, '', 19, '2020-09-09 02:52:36', 1),
(188, 180, 8, 3, 0, 'for muthu team', 13, '2020-09-09 03:05:31', 1),
(189, 181, 8, 3, 0, '11K for muthu team', 13, '2020-09-09 03:09:42', 1),
(190, 195, 18, 3, 4, 'Experienced & good candidate', 44, '2020-09-09 04:20:52', 1),
(191, 163, 8, 2, 0, 'just assigned to check. not Attend the interview', 7, '0000-00-00 00:00:00', 1),
(192, 219, 27, 4, 3, '', 1, '0000-00-00 00:00:00', 1),
(193, 219, 26, 7, 3, '', 27, '2020-09-10 09:55:15', 1),
(194, 219, 41, 3, 3, '', 26, '2020-09-10 09:57:41', 1),
(195, 220, 26, 4, 3, '', 1, '0000-00-00 00:00:00', 1),
(196, 220, 27, 7, 4, '', 26, '2020-09-10 10:19:33', 1),
(197, 220, 41, 3, 4, '', 27, '2020-09-10 10:20:28', 1),
(198, 196, 22, 2, 0, 'candidates did not come 2nd round', 20, '2020-09-10 10:41:45', 1),
(199, 196, 20, 4, 0, '', 20, '2020-09-10 10:41:45', 1),
(200, 159, 21, 5, 3, '', 50, '0000-00-00 00:00:00', 1),
(201, 222, 21, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(202, 221, 35, 5, 0, '', 50, '0000-00-00 00:00:00', 1),
(203, 203, 21, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(204, 192, 19, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(205, 226, 11, 5, 3, '', 50, '0000-00-00 00:00:00', 1),
(206, 224, 14, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(207, 225, 14, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(208, 191, 26, 5, 1, '', 50, '0000-00-00 00:00:00', 1),
(209, 200, 24, 5, 2, '', 50, '0000-00-00 00:00:00', 1),
(210, 223, 13, 7, 4, '', 50, '0000-00-00 00:00:00', 1),
(211, 158, 31, 5, 4, 'previous experience with stores. not fit for direct sales. not convincing', 50, '0000-00-00 00:00:00', 1),
(212, 184, 8, 4, 3, '', 50, '0000-00-00 00:00:00', 1),
(213, 164, 20, 7, 0, '', 50, '0000-00-00 00:00:00', 1),
(214, 184, 17, 2, 3, '', 8, '2020-09-10 12:07:27', 1),
(215, 194, 24, 4, 4, '', 50, '0000-00-00 00:00:00', 1),
(216, 164, 44, 5, 2, '', 20, '2020-09-10 12:24:20', 1),
(217, 194, 22, 7, 3, '', 24, '2020-09-10 12:55:22', 1),
(218, 194, 8, 3, 0, 'for kannan team', 22, '2020-09-10 01:23:36', 1),
(219, 223, 8, 3, 0, 'For muthu team', 13, '2020-09-10 01:30:17', 1),
(220, 231, 21, 5, 0, 'not attended , 2 nd time entry', 50, '0000-00-00 00:00:00', 1),
(221, 134, 27, 5, 0, '', 27, '2020-09-10 02:14:12', 1),
(222, 240, 21, 5, 3, '', 50, '0000-00-00 00:00:00', 1),
(223, 250, 27, 4, 3, 'nill', 1, '0000-00-00 00:00:00', 1),
(224, 250, 26, 7, 3, 'nill test', 27, '2020-09-10 04:38:46', 1),
(225, 250, 41, 3, 5, 'nill', 26, '2020-09-10 04:41:10', 1),
(226, 249, 41, 5, 0, 'Not attended the interview.Got job offer from another company', 50, '0000-00-00 00:00:00', 1),
(227, 247, 31, 5, 3, 'unable to understand english. not wiling to make calls on regular basis', 7, '0000-00-00 00:00:00', 1),
(228, 193, 8, 4, 3, 'cross check-will handle sales pressure.', 7, '0000-00-00 00:00:00', 1),
(229, 258, 8, 4, 3, 'holds sales Experience but fresher for insurance', 50, '0000-00-00 00:00:00', 1),
(230, 177, 21, 4, 4, 'assign to raghu mf ', 50, '0000-00-00 00:00:00', 1),
(231, 193, 21, 5, 3, 'not bold ', 8, '2020-09-11 10:42:59', 1),
(232, 260, 13, 7, 4, 'she is on notice period in previous company till 23rd September. So join 24th September', 50, '0000-00-00 00:00:00', 1),
(233, 236, 19, 7, 4, 'well knowledged expecting 20k salary', 50, '0000-00-00 00:00:00', 1),
(234, 237, 21, 5, 1, 'not sustain long term', 50, '0000-00-00 00:00:00', 1),
(235, 258, 33, 2, 2, 'Candidate Very very Slow But Interested In Sales', 8, '2020-09-11 11:05:13', 1),
(236, 251, 8, 2, 3, 'for telephonid-HR-R', 50, '0000-00-00 00:00:00', 1),
(237, 248, 15, 4, 3, 'suitable for rM expecting pA 3.5', 50, '0000-00-00 00:00:00', 1),
(238, 243, 8, 2, 0, 'for am', 50, '0000-00-00 00:00:00', 1),
(239, 239, 26, 5, 1, 'He Is Looking For The Job Because He Completed CSE, Importance Of Job Zero. He Bought Final Year Project From Company And Submitted In College, Dont Know What Is The Project He Done.', 50, '0000-00-00 00:00:00', 1),
(240, 256, 8, 5, 3, 'will not suite for CRM. will not join without her friend.', 50, '0000-00-00 00:00:00', 1),
(241, 262, 8, 5, 2, 'will not Sustain and will not join Without her friend.', 50, '0000-00-00 00:00:00', 1),
(242, 255, 31, 4, 4, 'candidate okay. ', 50, '0000-00-00 00:00:00', 1),
(243, 244, 21, 7, 4, '9.5 k salary,need to confirm joining date , last exam pending ', 50, '0000-00-00 00:00:00', 1),
(244, 241, 21, 5, 2, 'expected high salary ,not sustain long term', 50, '0000-00-00 00:00:00', 1),
(245, 264, 26, 4, 0, 'He is looking for job in sales so kindly check the profile and assign to sales team', 50, '0000-00-00 00:00:00', 1),
(246, 177, 35, 7, 0, 'Communication was good and shexquots ok with Operationxquots work. ', 21, '2020-09-11 12:03:23', 1),
(247, 257, 13, 7, 4, 'Salary - 10500,Need To Go For The Exams So Joining Date October 1st Week', 50, '0000-00-00 00:00:00', 1),
(248, 236, 22, 5, 1, 'Bond Not Interested.. sustainability doubt', 19, '2020-09-11 12:22:44', 1),
(249, 258, 33, 2, 0, 'Candidate Are Smart In appearance and discipline but very slow in approaches and New To Insurance industry', 33, '2020-09-11 12:25:55', 1),
(250, 258, 40, 5, 2, 'Not fit for job', 33, '2020-09-11 12:28:25', 1),
(251, 258, 33, 4, 0, 'Candidate Are Very Slow In Approaches And New To Sales ', 33, '2020-09-11 12:28:25', 1),
(252, 265, 11, 4, 3, 'salary expectation is high 23 to 24k...last take home 18.5k', 50, '0000-00-00 00:00:00', 1),
(253, 264, 19, 5, 1, 'not fit for sales job', 26, '2020-09-11 12:43:06', 1),
(254, 244, 8, 3, 0, 'for dhivya team', 21, '2020-09-11 12:45:59', 1),
(255, 265, 8, 3, 0, 'Agreed with 18K+inc. as she is fresher for RM profile', 11, '2020-09-11 12:58:10', 1),
(256, 248, 34, 7, 0, 'he was shortlisted and next round moved to sriram sir', 15, '2020-09-11 01:01:27', 1),
(257, 266, 19, 5, 1, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(258, 271, 26, 5, 0, 'her expected salary 74 k, According to us she is not matching with our spec and Excepted salary also high.', 50, '0000-00-00 00:00:00', 1),
(259, 260, 8, 3, 0, 'for muthu team', 13, '2020-09-11 03:53:46', 1),
(260, 32, 8, 5, 2, 'will not suite for crm', 50, '0000-00-00 00:00:00', 1),
(261, 58, 8, 4, 0, 'check with MIS skill', 50, '0000-00-00 00:00:00', 1),
(262, 265, 40, 7, 3, 'Fresher, positive and long runner, Job desperately needed......Need training in sales and marketing....', 8, '2020-09-11 04:10:39', 1),
(263, 265, 8, 3, 0, 'Agreed with 18K+inc. as she is fresher for RM profile', 8, '2020-09-11 04:10:39', 1),
(264, 243, 8, 5, 0, 'No degree will not suite for Amgr.', 8, '2020-09-11 04:13:25', 1),
(265, 75, 8, 5, 0, 'not Picking Up the call hope not Interested in the profile', 8, '2020-09-11 06:14:28', 1),
(266, 177, 8, 3, 0, 'for MF operation', 35, '2020-09-11 06:43:40', 1),
(267, 257, 8, 2, 0, 'selected. 10.5K for muthu team. need to Complete her exams ', 13, '2020-09-11 06:44:09', 1),
(268, 248, 8, 3, 0, '29K. for Guru team shortlisted by sriram.', 34, '2020-09-11 07:16:46', 1),
(269, 255, 29, 7, 0, 'selected for rM profile -18k for next 3 months, if productivity is more than 1 lac for next 3 month can increase to 20k, reporting manager gk', 31, '2020-09-11 08:19:29', 1),
(270, 265, 8, 3, 0, 'Agreed with 18K+inc. as she is fresher for RM profile', 40, '2020-09-11 09:12:14', 1),
(271, 259, 8, 5, 3, 'will not suite for our profile', 50, '0000-00-00 00:00:00', 1),
(272, 269, 8, 4, 0, 'check with RM profile', 50, '0000-00-00 00:00:00', 1),
(273, 267, 16, 5, 1, 'He Is Working Past Company 2 Yrs ,Currently Close That Company ,But He Go Out Or Left Any Time Sustain Doubt', 50, '0000-00-00 00:00:00', 1),
(274, 285, 27, 7, 5, 'test employee', 1, '0000-00-00 00:00:00', 1),
(275, 285, 41, 3, 5, 'nill', 27, '2020-09-12 12:11:22', 1),
(276, 253, 35, 7, 0, 'Candidate is apt to profile what we are looking, communication also good, but she is expecting high salary if Negotiable we can hire ( she relived due to Pregnancy @ 2018 16.5k can offer 18 to 19K ) ', 50, '0000-00-00 00:00:00', 1),
(277, 253, 8, 5, 0, 'Salary exp is high. got hike in previous company 16500 and server 2 months and looking for job after covid19 and exp is 18+', 35, '2020-09-12 12:57:54', 1),
(278, 288, 21, 5, 2, 'fake details', 50, '0000-00-00 00:00:00', 1),
(279, 302, 41, 3, 0, 'nill', 1, '0000-00-00 00:00:00', 1),
(280, 312, 35, 5, 0, 'Communication Not Well, no about her Previous Company, ', 50, '0000-00-00 00:00:00', 1),
(281, 317, 21, 5, 1, 'low confidence,not bold', 50, '0000-00-00 00:00:00', 1),
(282, 299, 21, 4, 4, 'need to confirm joining date ,exam pending', 50, '0000-00-00 00:00:00', 1),
(283, 321, 21, 5, 1, 'not sustain long term', 50, '0000-00-00 00:00:00', 1),
(284, 289, 15, 4, 0, 'salary expected high need 25k', 50, '0000-00-00 00:00:00', 1),
(285, 307, 38, 5, 1, 'he dont know how to behave in office....', 50, '0000-00-00 00:00:00', 1),
(286, 305, 38, 5, 1, 'bad outlook xxamp he will not suit for our field ', 50, '0000-00-00 00:00:00', 1),
(287, 308, 38, 5, 2, 'will not sustain xxamp not good in communication', 50, '0000-00-00 00:00:00', 1),
(288, 318, 14, 5, 2, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(289, 319, 34, 4, 5, 'will check for re', 50, '0000-00-00 00:00:00', 1),
(290, 283, 14, 4, 4, '10500 salary ..17.09.2020 joining data ', 50, '0000-00-00 00:00:00', 1),
(291, 286, 13, 5, 3, 'expected salary high', 50, '0000-00-00 00:00:00', 1),
(292, 326, 11, 4, 3, 'she is ok...salary spoken 10k...', 50, '0000-00-00 00:00:00', 1),
(293, 328, 31, 5, 2, 'will not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(294, 325, 8, 4, 3, 'Check for rm profile', 50, '0000-00-00 00:00:00', 1),
(295, 323, 8, 4, 3, 'fresher for sales, previously into kyc. check with re profile. exp sal is 15K.', 50, '0000-00-00 00:00:00', 1),
(296, 324, 8, 4, 3, 'check for RM profile', 50, '0000-00-00 00:00:00', 1),
(297, 319, 15, 5, 1, 'no sustainability need 18k salary', 34, '2020-09-14 12:35:26', 1),
(298, 322, 34, 4, 4, 'selected for next round with sriram', 50, '0000-00-00 00:00:00', 1),
(299, 325, 34, 4, 4, 'selected for next round telephonic interview with sriram', 8, '2020-09-14 01:15:20', 1),
(300, 323, 24, 5, 1, 'slary expc high', 8, '2020-09-14 01:18:39', 1),
(301, 329, 15, 4, 4, 'balaji ref so kindly allocate ramesh', 50, '0000-00-00 00:00:00', 1),
(302, 324, 36, 4, 0, 'Interested in CRM category', 8, '2020-09-14 01:34:39', 1),
(303, 324, 14, 8, 0, 'Not attend the interview', 36, '2020-09-14 02:21:17', 1),
(304, 299, 8, 2, 0, 'need to confirm joining date', 21, '2020-09-14 02:29:30', 1),
(305, 326, 21, 4, 4, '10k salary ok ', 11, '2020-09-14 02:36:59', 1),
(306, 326, 8, 3, 0, 'for dhivya team', 21, '2020-09-14 02:38:33', 1),
(307, 325, 18, 5, 3, 'Not interested in sales', 34, '2020-09-14 02:38:47', 1),
(308, 322, 18, 7, 0, 'Kindly check with him given 21k salary', 34, '2020-09-14 02:40:39', 1),
(309, 283, 8, 3, 0, 'for priyanka jenit team', 14, '2020-09-14 03:10:23', 1),
(310, 332, 36, 4, 0, 'Need to check', 50, '0000-00-00 00:00:00', 1),
(311, 289, 36, 4, 0, 'Selected for RM', 15, '2020-09-14 03:18:18', 1),
(312, 329, 17, 7, 3, 'he is selected will give 13k need to confirm the joining date ', 15, '2020-09-14 04:19:24', 1),
(313, 289, 29, 7, 0, 'selected for rm 20k salary, reporting to lokesh', 36, '2020-09-14 04:26:24', 1),
(314, 332, 18, 7, 3, 'Selected for lokesh team with salary of 30K', 36, '2020-09-14 04:27:04', 1),
(315, 278, 8, 2, 0, 'testing-assigned', 7, '0000-00-00 00:00:00', 1),
(316, 333, 21, 4, 4, 'selected 11.5 k salary, need to confirm joining date ,she is in notice period (oct 11 exp joining)', 50, '0000-00-00 00:00:00', 1),
(317, 334, 14, 7, 3, 'okay for mf ..not fit for sales', 50, '0000-00-00 00:00:00', 1),
(318, 335, 21, 5, 0, 'cand gone before interview ', 50, '0000-00-00 00:00:00', 1),
(319, 293, 21, 5, 3, 'expected 18 k salary for crm', 50, '0000-00-00 00:00:00', 1),
(320, 310, 21, 5, 0, 'expecting 16 k for crm', 50, '0000-00-00 00:00:00', 1),
(321, 342, 21, 4, 4, '11k salary,need to confirm joining', 50, '0000-00-00 00:00:00', 1),
(322, 346, 29, 5, 1, 'Not fir for sales', 50, '0000-00-00 00:00:00', 1),
(323, 334, 9, 4, 0, 'change to new id', 14, '2020-09-15 11:43:41', 1),
(324, 340, 29, 5, 0, 'iS ON HIGHER CTC xxamp DOENxquotT HAVE CONVINCING SKILL, EXPERIENCE,WILL NOT BE SUITABLE FOR SALES', 50, '0000-00-00 00:00:00', 1),
(325, 343, 16, 5, 0, 'reason for Above age ', 50, '0000-00-00 00:00:00', 1),
(326, 338, 8, 5, 2, 'not speaking up will not suite for CRM.', 50, '0000-00-00 00:00:00', 1),
(327, 333, 8, 3, 0, 'for Dhivya team', 21, '2020-09-15 12:50:53', 1),
(328, 342, 8, 3, 0, 'For Dhivya team', 21, '2020-09-15 12:53:52', 1),
(329, 39, 26, 7, 4, 'nill', 1, '0000-00-00 00:00:00', 1),
(330, 39, 8, 3, 0, 'nill', 26, '2020-09-15 03:03:42', 1),
(331, 331, 24, 5, 2, 'voice of clarity is low average .. implement is poor for existing job ', 50, '0000-00-00 00:00:00', 1),
(332, 354, 21, 4, 3, 'ok selected ', 50, '0000-00-00 00:00:00', 1),
(333, 329, 8, 3, 0, 'For ramesh team', 17, '2020-09-15 05:24:30', 1),
(334, 255, 8, 3, 0, 'For GK team', 29, '2020-09-15 06:07:29', 1),
(335, 289, 8, 3, 0, 'for Gaurav team', 29, '2020-09-15 06:08:40', 1),
(336, 269, 51, 4, 4, 'i am ok with mr.SURENDHAR M and he is willing to work ', 8, '2020-09-15 06:14:14', 1),
(337, 353, 41, 8, 0, 'Quarantined for 21 days ', 50, '0000-00-00 00:00:00', 1),
(338, 108, 8, 8, 0, 'left before Interview.', 8, '2020-09-16 10:15:04', 1),
(339, 278, 8, 8, 0, 'assigned to test. ', 8, '2020-09-16 10:16:58', 1),
(340, 367, 26, 5, 1, 'He Did A 6-Month Course In PHP Spent 25,000, But He Is Not Good At Even The Basics Of PHP.', 50, '0000-00-00 00:00:00', 1),
(341, 368, 26, 5, 2, 'He Is Having One Year 6 Months Of Experience But He Dont Know Basic Jquery Ajax Syntax And Basic MySQL Queries. have sent Assessment sheet to HR to check with consultancy.', 50, '0000-00-00 00:00:00', 1),
(342, 356, 21, 5, 1, 'not bold, very low voice , expecting high salary ....', 50, '0000-00-00 00:00:00', 1),
(343, 94, 8, 8, 0, 'not turned up for 2nd round', 8, '2020-09-16 11:09:56', 1),
(344, 160, 8, 5, 0, 'absconded', 8, '2020-09-16 11:11:16', 1),
(345, 355, 8, 2, 3, 'hold for Telephonic ', 50, '0000-00-00 00:00:00', 1),
(346, 369, 21, 5, 1, 'worst attitude , no voice clarity language is not good , not sustain long term, also expecting high salary', 50, '0000-00-00 00:00:00', 1),
(347, 359, 8, 5, 2, 'language is not good and will not suite for CAFS', 50, '0000-00-00 00:00:00', 1),
(348, 361, 8, 5, 3, 'Will Not Suite For Our Process. No Fluency While Speaking.', 50, '0000-00-00 00:00:00', 1),
(349, 364, 8, 3, 0, 'for Dhivya team', 50, '0000-00-00 00:00:00', 1),
(350, 269, 29, 5, 1, 'Doesnxquott suit for any profile', 51, '2020-09-16 12:14:57', 1),
(351, 350, 26, 5, 0, 'he dont know the basic concepts in php', 50, '0000-00-00 00:00:00', 1),
(352, 351, 26, 5, 0, 'he dont know the Basics of c and c++, oops concepts ', 50, '0000-00-00 00:00:00', 1),
(353, 311, 21, 5, 1, 'not sustain long term,low voice ,', 50, '0000-00-00 00:00:00', 1),
(354, 380, 21, 4, 4, 'selected, salary (11 to 11.5 k),immediate joining .(17.9.20)', 50, '0000-00-00 00:00:00', 1),
(355, 364, 21, 4, 4, 'ok selected ,need to confirm salary, she is expected 12-13 k salary', 8, '2020-09-16 12:49:44', 1),
(356, 378, 21, 5, 0, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(357, 382, 21, 4, 4, '11k salary, immediate joining ', 50, '0000-00-00 00:00:00', 1),
(358, 383, 21, 5, 1, 'low voice ,not bold, ,low confidence, ', 50, '0000-00-00 00:00:00', 1),
(359, 371, 13, 5, 2, 'Not fit for tele filed', 50, '0000-00-00 00:00:00', 1),
(360, 381, 13, 5, 2, 'Not Suitable For Pressure Handling', 50, '0000-00-00 00:00:00', 1),
(361, 389, 27, 7, 4, 'nill', 1, '0000-00-00 00:00:00', 1),
(362, 389, 41, 3, 4, 'nill', 27, '2020-09-16 02:08:02', 1),
(363, 388, 26, 5, 2, 'She Is Having 2.5 Years but Dont Know The Basic (Array Concepts And Database Queries) . ', 50, '0000-00-00 00:00:00', 1),
(364, 366, 38, 5, 1, 'not good in communication', 50, '0000-00-00 00:00:00', 1),
(365, 372, 38, 5, 1, 'zero english communication', 50, '0000-00-00 00:00:00', 1),
(366, 365, 38, 5, 3, 'risk to hire her...why because shexquots spouse is a star health agent xxamp lawyer too', 50, '0000-00-00 00:00:00', 1),
(367, 380, 8, 3, 0, 'for dhivya team', 21, '2020-09-16 03:29:03', 1),
(368, 390, 26, 7, 4, 'he is ok 100 rs and ready to join immediately', 1, '0000-00-00 00:00:00', 1),
(369, 390, 8, 3, 3, 'Informed all terms and condition', 26, '2020-09-16 04:11:28', 1),
(370, 364, 8, 3, 0, 'for Dhivya team', 21, '2020-09-16 04:14:42', 1),
(371, 382, 8, 3, 0, 'for dhivya team', 21, '2020-09-16 04:52:58', 1),
(372, 355, 8, 5, 0, 'will not suite for this profile.', 8, '2020-09-16 07:07:45', 1),
(373, 407, 27, 2, 3, 'He knows the basics in theoretical. He Is not prepared for the System Task. He need two days to Practice. If come back we will give system Task else rejected.', 50, '0000-00-00 00:00:00', 1),
(374, 405, 11, 5, 3, 'candidate is not interested in sales.he is not willing to work in pressure ', 50, '0000-00-00 00:00:00', 1),
(375, 397, 53, 5, 0, 'Pronounciation is nt good.', 50, '0000-00-00 00:00:00', 1),
(376, 401, 21, 5, 3, 'Not Sustain Long Term , 45 Mins To 1 Hour Travel,,Expected 15 K Salary, She Not Have Voice Exp Also', 50, '0000-00-00 00:00:00', 1),
(377, 393, 24, 7, 3, 'kindly check with rm.. then check with sustainability.. epx salary 21k', 50, '0000-00-00 00:00:00', 1),
(378, 413, 53, 5, 0, 'Not much experience in MIS. expected high sal abv 15k', 50, '0000-00-00 00:00:00', 1),
(379, 398, 8, 5, 0, 'From Ambattur And Has 1yr Kid Will Not Sustain 2 Years Gap And Exp Is 20+ As Take Home.', 50, '0000-00-00 00:00:00', 1),
(380, 375, 8, 5, 2, 'will not handle pressure and not speaking up too.', 50, '0000-00-00 00:00:00', 1),
(381, 374, 8, 2, 0, 'for AMgr', 50, '0000-00-00 00:00:00', 1),
(382, 399, 8, 3, 0, '23K for veben team', 50, '0000-00-00 00:00:00', 1),
(383, 393, 8, 5, 0, 'will not suite for RM and will not Sustain. got update from GK ', 24, '2020-09-17 12:21:28', 1),
(384, 399, 40, 4, 3, 'DOESNxquotT HAVE KNOWLEDGE IN INSURANCE INDUSTRY, PREVIOUS SALES EXP AROUND 17MONTHS, BUT NEED TO MOLD HIM A BETTER INSURANCE SELLER IF HE GETS AN oPPORTUNITY IN CAFS....', 8, '2020-09-17 12:51:15', 1),
(385, 415, 24, 4, 3, 'okay for rE.. but cross check with communication.. slr 14 to 15k... 18 sep 20 arrange 2nd round', 50, '0000-00-00 00:00:00', 1),
(386, 411, 8, 3, 0, '23K by Gaurav. as sourcing BDM', 50, '0000-00-00 00:00:00', 1),
(387, 411, 18, 2, 0, 'He is well experienced but he wont do telecalling xxamp has average capability for team handling', 8, '2020-09-17 01:39:07', 1),
(388, 429, 35, 8, 0, 'Candidate Not Available We Try To Reach But Hexquots Disconnecting The Call', 50, '0000-00-00 00:00:00', 1),
(389, 399, 18, 7, 3, 'Selected for Veben team ', 40, '2020-09-17 01:46:12', 1),
(390, 419, 13, 5, 1, 'expecting high salary and not suitable for sales profile . ', 50, '0000-00-00 00:00:00', 1),
(391, 415, 22, 2, 0, 'candidate did not come for 2nd round', 24, '2020-09-17 02:07:58', 1),
(392, 426, 38, 4, 4, 'check sustainability and confirm her salary', 50, '0000-00-00 00:00:00', 1),
(393, 436, 8, 5, 2, 'not speaking up and no relevant exp. exp is 15K', 50, '0000-00-00 00:00:00', 1),
(394, 438, 21, 5, 0, 'fake resume', 50, '0000-00-00 00:00:00', 1),
(395, 437, 8, 5, 0, 'will not suit for CRM. no relevant exp. and exp is 15K', 50, '0000-00-00 00:00:00', 1),
(396, 426, 8, 3, 0, '20K as sourcing TL for Gowshick team', 38, '2020-09-17 03:00:29', 1),
(397, 422, 8, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(398, 434, 13, 5, 1, 'not fit for this telecalling profile . expected salary high ', 50, '0000-00-00 00:00:00', 1),
(399, 399, 8, 3, 0, '23K for veben team', 18, '2020-09-17 03:33:56', 1),
(400, 443, 32, 2, 0, 'Candidate hold', 7, '0000-00-00 00:00:00', 1),
(401, 444, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(402, 428, 32, 5, 0, 'Not Opted for CRM', 7, '0000-00-00 00:00:00', 1),
(403, 431, 53, 9, 0, 'she s suit for telecalling', 7, '0000-00-00 00:00:00', 1),
(404, 432, 8, 3, 0, 'for banu team', 7, '0000-00-00 00:00:00', 1),
(405, 432, 53, 7, 0, 'sal 12k, doj 21.09.20 ', 8, '2020-09-17 04:17:52', 1),
(406, 432, 8, 3, 0, 'for banu team', 53, '2020-09-17 04:29:45', 1),
(407, 431, 32, 7, 0, 'shortlisted for sales team', 1, '0000-00-00 00:00:00', 1),
(408, 431, 8, 3, 0, 'for dummy surender', 32, '2020-09-17 04:37:40', 1),
(409, 445, 53, 7, 0, 'Ok fr TC. sal 20k DOJ 18 sep 20', 7, '0000-00-00 00:00:00', 1),
(410, 445, 8, 3, 0, 'for gokul team', 53, '2020-09-17 04:47:51', 1),
(411, 427, 8, 2, 0, 'Does Not have portal knowledge and sourced through reference. she was getting 18 and exp 30% hike.', 50, '0000-00-00 00:00:00', 1),
(412, 439, 8, 4, 3, 'check for re profile. check his sustainability.', 50, '0000-00-00 00:00:00', 1),
(413, 354, 8, 3, 0, '12K for dhivya team', 21, '2020-09-18 10:40:49', 1),
(414, 460, 8, 3, 0, 'for priyanka team', 50, '0000-00-00 00:00:00', 1),
(415, 385, 8, 4, 3, 'fresher, 4 months in semi voice. check with sustainability.Family Commitments There Is Possibility To switch Easily For Salary.', 50, '0000-00-00 00:00:00', 1),
(416, 455, 21, 5, 3, 'she is not sustain long term , interested in viscom field .... no job need for family ...', 50, '0000-00-00 00:00:00', 1),
(417, 465, 31, 5, 2, 'Dont have direct sales experience and his expectation salary is high', 50, '0000-00-00 00:00:00', 1),
(418, 464, 24, 7, 4, 'OKAY FOR CRM..', 50, '0000-00-00 00:00:00', 1),
(419, 460, 21, 4, 0, 'ok for health process', 8, '2020-09-18 11:07:23', 1),
(420, 459, 41, 8, 0, 'Long distance not interested', 50, '0000-00-00 00:00:00', 1),
(421, 385, 14, 5, 1, 'not fit for voice process ', 8, '2020-09-18 11:19:15', 1),
(422, 458, 8, 2, 0, 'selected. she can join in oct. 10K salary', 50, '0000-00-00 00:00:00', 1),
(423, 406, 26, 5, 0, 'he dont know the basic of c and c++', 50, '0000-00-00 00:00:00', 1),
(424, 464, 8, 3, 0, 'for muthu team', 24, '2020-09-18 11:35:01', 1),
(425, 439, 19, 2, 3, 'hold', 8, '2020-09-18 11:37:19', 1),
(426, 470, 26, 5, 0, 'he is having more then 2 years of Experience but not good in mysql concepts.', 50, '0000-00-00 00:00:00', 1),
(427, 466, 26, 5, 0, 'she is having 10 month of Experience but she dont know the Basis of ajax ,scripts .', 50, '0000-00-00 00:00:00', 1),
(428, 463, 8, 5, 2, 'not speaking up will not suite for calling and not int in sales.', 50, '0000-00-00 00:00:00', 1),
(429, 460, 14, 7, 4, 'expecting salary 9k to 10k and suitable for telecalling profile', 21, '2020-09-18 11:53:16', 1),
(430, 471, 30, 7, 3, 'candidate okay for me kindly confirm his salary and joining', 50, '0000-00-00 00:00:00', 1),
(431, 408, 8, 5, 2, 'will not handle Pressure, and target', 50, '0000-00-00 00:00:00', 1),
(432, 421, 8, 3, 0, '10K for Priyanka team', 50, '0000-00-00 00:00:00', 1),
(433, 440, 8, 4, 3, 'exp salary is 11-13K. no relevant exp but has calling quality.', 50, '0000-00-00 00:00:00', 1),
(434, 460, 8, 3, 0, 'for priyanka team', 14, '2020-09-18 12:24:21', 1),
(435, 469, 38, 2, 3, 'Review him by your said because He Discussed With One Of Our RM, If Salary Is Not Above Than 18k Ixquotll Not Join here', 50, '0000-00-00 00:00:00', 1),
(436, 475, 14, 5, 2, 'long distance . not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(437, 458, 21, 4, 4, 'need to check salary xxamp joining date ', 8, '2020-09-18 01:13:23', 1),
(438, 440, 13, 5, 2, 'not fit for telesales', 8, '2020-09-18 01:21:34', 1),
(439, 421, 21, 4, 0, 'ok for health', 8, '2020-09-18 01:33:04', 1),
(440, 424, 8, 2, 0, 'need to think.', 50, '0000-00-00 00:00:00', 1),
(441, 417, 8, 5, 0, 'will not suite for MIS very lazy and will not suite for any profile.', 7, '0000-00-00 00:00:00', 1),
(442, 477, 27, 2, 4, 'Task Assigned. She will complete and will send us back tomorrow before 11 AM.', 50, '0000-00-00 00:00:00', 1),
(443, 481, 8, 5, 3, '1:30 mins traveling aprox. and will not suite for our process.', 50, '0000-00-00 00:00:00', 1),
(444, 480, 38, 5, 1, 'zero in communication xxamp attitude', 50, '0000-00-00 00:00:00', 1),
(445, 469, 38, 2, 0, 'Review this candidate by your side because He Discussed With One Of Our RM.... If Salary Is Not Above Than 18k Ixquotll Not Join here', 38, '2020-09-18 02:30:33', 1),
(446, 476, 8, 4, 0, 'communication and Experience wise he is okay.', 50, '0000-00-00 00:00:00', 1),
(447, 476, 53, 5, 0, 'He dont hve patience and lessoning capacity. He wont suit for HR', 8, '2020-09-18 05:09:51', 1),
(448, 421, 14, 7, 4, 'fit for this tele calling profile ..salary 10k ok for her ..', 21, '2020-09-18 06:37:04', 1),
(449, 458, 8, 2, 0, 'selected. she can join in oct. 10K salary', 21, '2020-09-18 06:40:27', 1),
(450, 486, 8, 5, 3, 'Pronunciation Is Not Good', 50, '0000-00-00 00:00:00', 1),
(451, 421, 8, 3, 0, '10K for Priyanka team', 14, '2020-09-19 10:56:46', 1),
(452, 498, 53, 5, 0, 'hvng little knowledge in MIS, he dont know Macro and spreadsheet. Wont sustain also.', 50, '0000-00-00 00:00:00', 1),
(453, 491, 8, 4, 3, 'check with product knowledge and exp 16K.', 50, '0000-00-00 00:00:00', 1),
(454, 462, 8, 5, 0, 'Will Not Sustain And She Is Looking For HR Generalist And Doesnt Have Relevant Exp. She Was Getting 13K And Exp 20 A Salary Hike.', 50, '0000-00-00 00:00:00', 1),
(455, 490, 8, 5, 2, 'will not sustain. doing his degree and looking for part time job.', 50, '0000-00-00 00:00:00', 1),
(456, 484, 8, 4, 3, 'fresher but has sales exp. check for Rm profile. ', 50, '0000-00-00 00:00:00', 1),
(457, 493, 8, 2, 0, 'no response from her', 50, '0000-00-00 00:00:00', 1),
(458, 491, 51, 5, 2, 'product knowldege is poor', 8, '2020-09-19 12:29:32', 1),
(459, 504, 8, 2, 0, 'she can join oct. selected for priyanka team', 50, '0000-00-00 00:00:00', 1),
(460, 484, 51, 5, 2, 'he cant work on leave ', 8, '2020-09-19 12:44:50', 1),
(461, 483, 21, 5, 2, 'already he worked non voice process, he is not sustain long term', 50, '0000-00-00 00:00:00', 1),
(462, 501, 8, 4, 3, 'looking for salary hike. check for crm and check with Sustainability', 50, '0000-00-00 00:00:00', 1),
(463, 493, 53, 7, 0, 'good communication, having exp in rec field, she knw to access portal, ok with 2 yrs bond. sal take home 14k. joining datae may be next week', 8, '2020-09-19 01:13:57', 1),
(464, 504, 21, 4, 4, 'ok selected ,need to confirm joining xxamp salary ', 8, '2020-09-19 01:45:14', 1),
(465, 501, 13, 5, 2, 'Sustainability less', 8, '2020-09-19 01:54:30', 1),
(466, 471, 8, 3, 0, '27K. for manivel team', 30, '2020-09-19 02:07:18', 1),
(467, 488, 16, 5, 1, 'he is expect more salary and sustain doubt', 50, '0000-00-00 00:00:00', 1),
(468, 504, 8, 2, 0, 'she can join oct. selected for priyanka team', 21, '2020-09-19 03:22:52', 1),
(469, 508, 53, 4, 0, 'Ok for Hr rec. gud communication nd hvng knowledge in naukri nd monstar portal..hvng 4 yrs experience in madurai, Exp sal 17k bt its negotiable. ', 1, '0000-00-00 00:00:00', 1),
(470, 508, 8, 2, 0, 'spoken with her waiting for her confirmation (zoom call)', 53, '2020-09-19 05:42:25', 1),
(471, 493, 8, 2, 0, 'no response from her', 53, '2020-09-21 09:53:31', 1),
(472, 474, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(473, 500, 8, 5, 2, 'will not sustain.', 52, '0000-00-00 00:00:00', 1),
(474, 526, 53, 5, 0, 'Not suit for CAFS, switching the jo frequently, she s not like to work cycling process, wants to explore her knowledge thts y switching the job countineously', 52, '0000-00-00 00:00:00', 1),
(475, 527, 53, 4, 0, 'Gud communication nd hvng exp in IT rec, selected, 23k sal negotiable', 52, '0000-00-00 00:00:00', 1),
(476, 529, 53, 5, 0, 'Exp high salary, dnt hve relevant exp in Hr. he s oly handling manifacture nd bubai candidates', 50, '0000-00-00 00:00:00', 1),
(477, 453, 53, 4, 0, 'He dont knw payroll, exp high sal, wont survive fr long term', 50, '0000-00-00 00:00:00', 1),
(478, 524, 54, 5, 0, 'she will not sustain and dont have a patince.', 50, '0000-00-00 00:00:00', 1),
(479, 511, 53, 4, 0, 'pls check sustainability', 50, '0000-00-00 00:00:00', 1),
(480, 512, 53, 5, 0, 'Well settled, there is no need for job.', 1, '0000-00-00 00:00:00', 1),
(481, 510, 27, 4, 4, 'Task Assigned on 17thSep2020. He is completed. Task and code was reviewed by Udhayakumar.', 1, '0000-00-00 00:00:00', 1),
(482, 510, 26, 7, 3, 'selected, 14 k joining as as much as possible, he can work from day one in project, he has to sign 2 years service contract. ', 27, '2020-09-21 11:42:44', 1),
(483, 521, 21, 5, 2, 'words pronuncation problem ', 50, '0000-00-00 00:00:00', 1),
(484, 538, 8, 4, 0, 'not bold and check for recruiter profile', 50, '0000-00-00 00:00:00', 1),
(485, 541, 8, 2, 0, 'check with banu', 50, '0000-00-00 00:00:00', 1),
(486, 540, 39, 4, 3, 'Selected for next round', 50, '0000-00-00 00:00:00', 1),
(487, 513, 53, 5, 0, 'exp high sal, thinking reg bond', 50, '0000-00-00 00:00:00', 1),
(488, 528, 53, 4, 0, 'selected, sal 10 to 11k, she is ok with 2 yrs bond. gud communication.', 50, '0000-00-00 00:00:00', 1),
(489, 534, 31, 4, 4, 'Candidate is okay. ', 50, '0000-00-00 00:00:00', 1),
(490, 531, 26, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(491, 539, 44, 4, 4, 'Sound is good but Expecting high salary,Need your Suggestion ', 50, '0000-00-00 00:00:00', 1),
(492, 543, 36, 4, 3, 'Expected salary high Need to check with HR team', 50, '0000-00-00 00:00:00', 1),
(493, 516, 14, 5, 1, 'not suitable for tele calling..communication not good ', 50, '0000-00-00 00:00:00', 1),
(494, 545, 14, 5, 1, 'want to continue the higher studies . so he is not able to sustain', 50, '0000-00-00 00:00:00', 1),
(495, 536, 33, 5, 1, 'candidate facing stammering problem he is not fit for sales ', 50, '0000-00-00 00:00:00', 1),
(496, 140, 27, 5, 0, 'She is not Completed. We gave more than three days time to complete the Task. Still it is Incomplete only.', 27, '2020-09-21 01:19:55', 1),
(497, 546, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(498, 539, 29, 7, 3, 'selected for rm profile, salary 22000.. after 3 months based on performance of 1.5lacs ave moM we can increase additional 2k from 4th months onwards', 44, '2020-09-21 01:34:12', 1),
(499, 510, 8, 3, 3, 'For PHP developer.', 26, '2020-09-21 01:47:09', 1),
(500, 543, 8, 5, 0, 'no sales exp. exp salary is 4L and will not suite for calling too.', 36, '2020-09-21 02:26:19', 1),
(501, 555, 14, 4, 3, 'she is okay for telecalling .. but joining date oct 1st week so need to cross check once', 7, '0000-00-00 00:00:00', 1),
(502, 554, 14, 4, 4, 'okay for tele calling need to cross check once', 7, '0000-00-00 00:00:00', 1),
(503, 535, 53, 4, 0, 'Doubt only, He wont suit for hr profile, pls check sustainability', 52, '0000-00-00 00:00:00', 1),
(504, 535, 8, 5, 0, 'will not sustain and his pronunciation and language is not good.', 53, '2020-09-21 04:27:19', 1),
(505, 453, 8, 5, 0, 'will not sustain. will move if get better offer. has exp only in sourcing and rec.', 53, '2020-09-21 04:29:07', 1),
(506, 511, 54, 5, 0, 'He will not sustain, because his brother running own consultancy. he worked few months and due to personal Reason he left the company.', 53, '2020-09-21 04:35:19', 1),
(507, 528, 54, 3, 0, 'having good attitude, but we must train sometime.', 53, '2020-09-21 04:37:35', 1),
(508, 538, 53, 5, 0, 'low voice nt suit fr hr profile', 8, '2020-09-21 04:42:14', 1),
(509, 540, 30, 7, 3, 'overall Performance nice xxamp Will sustain long time .', 39, '2020-09-21 04:51:34', 1),
(510, 58, 53, 5, 0, 'Dont have much experience in Excel nd dont know abt spreadsheet', 8, '2020-09-21 04:54:54', 1),
(511, 555, 13, 7, 4, 'salary 10k HR need to confirm joining data', 14, '2020-09-21 05:02:01', 1),
(512, 554, 13, 7, 4, 'salary 10k ...joining date 28 sep 20 need to check joining date once ', 14, '2020-09-21 05:15:42', 1),
(513, 554, 8, 3, 0, '10K for Priyanka team', 13, '2020-09-21 05:18:53', 1),
(514, 555, 8, 3, 0, '10K for priyanka team', 13, '2020-09-21 05:20:19', 1),
(515, 539, 8, 3, 0, '22K for Shanmugam Team', 29, '2020-09-21 05:20:20', 1),
(516, 424, 8, 3, 0, 'for Dhivya team', 8, '2020-09-21 06:27:20', 1),
(517, 534, 29, 7, 4, 'selected for rm, gk team, 27k salary, based on performance 1.5 lacs moM can increase 3k from 4th month onwards', 31, '2020-09-21 06:44:57', 1),
(518, 534, 8, 3, 0, '27K for GK team', 29, '2020-09-21 06:50:57', 1),
(519, 427, 8, 5, 0, 'no relevant exp. rejected in telephonic. fake information.', 8, '2020-09-21 06:57:43', 1),
(520, 540, 8, 3, 3, '25K for Manivel Team', 30, '2020-09-21 07:09:03', 1),
(521, 533, 27, 5, 2, 'This Candidate donxquott know the things what exactly we expected. He knows only wordpress development.', 50, '0000-00-00 00:00:00', 1),
(522, 565, 33, 5, 0, 'Not qualified for sales ', 50, '0000-00-00 00:00:00', 1),
(523, 566, 31, 4, 5, 'Okay candidate', 50, '0000-00-00 00:00:00', 1),
(524, 567, 17, 7, 3, 'Need confirm salary', 50, '0000-00-00 00:00:00', 1),
(525, 568, 44, 5, 1, 'Not fit for sales and He is having Lic agent code', 50, '0000-00-00 00:00:00', 1),
(526, 547, 24, 5, 0, 'he is not willing to field work. salary expectation also 20k.. so not suitable for CRM', 50, '0000-00-00 00:00:00', 1),
(527, 550, 21, 5, 3, 'long distance 1; 30 hrs travel , expected 15 k for crm', 50, '0000-00-00 00:00:00', 1),
(528, 456, 14, 5, 1, 'She said donxquott want voice process looking for non voice ..and not suitable for sales', 50, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(529, 544, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(530, 573, 26, 9, 0, 'nill', 1, '0000-00-00 00:00:00', 1),
(531, 573, 27, 5, 0, 'nil', 26, '2020-09-22 01:05:51', 1),
(532, 478, 8, 4, 3, 'check for RE, okay with 12K but exp is 13K At Least. ', 50, '0000-00-00 00:00:00', 1),
(533, 563, 8, 2, 0, 'need to check', 50, '0000-00-00 00:00:00', 1),
(534, 478, 19, 5, 1, 'sustainability doubt', 8, '2020-09-22 03:02:19', 1),
(535, 530, 33, 5, 1, 'HE IS NOT GOOD PROFILE FOR RM CATEGORY', 50, '0000-00-00 00:00:00', 1),
(536, 541, 8, 5, 0, 'Got offer ', 8, '2020-09-22 05:02:40', 1),
(537, 66, 8, 5, 0, 'no response from her end. hold for recruiter.', 8, '2020-09-22 05:12:27', 1),
(538, 163, 8, 5, 0, 'just assigned to check. for testing process.', 8, '2020-09-22 05:13:38', 1),
(539, 251, 8, 5, 0, 'rejected in telephonic.', 8, '2020-09-22 05:14:28', 1),
(540, 566, 29, 7, 3, 'Selected for RM, Manager - Sarath, Salary - 20k', 31, '2020-09-22 06:50:03', 1),
(541, 566, 8, 3, 0, '20K for sarath team', 29, '2020-09-22 06:53:11', 1),
(542, 583, 34, 7, 4, 'selected salary up to 2ok we can give spoken to sriram also he lost his parents and he have one brother he the one taking care of him', 7, '0000-00-00 00:00:00', 1),
(543, 584, 33, 9, 0, 'looking for crm profile . not fit for rm profile', 50, '0000-00-00 00:00:00', 1),
(544, 584, 8, 5, 0, 'was rejected by Kannan and srikanth. no sales pitch but good communication', 33, '2020-09-23 10:58:35', 1),
(545, 572, 35, 5, 0, 'we given a time for 2nd Round Candidate Not Responding so that am Rejecting. ', 50, '0000-00-00 00:00:00', 1),
(546, 583, 8, 3, 0, '18K for guru team.', 34, '2020-09-23 11:25:35', 1),
(547, 482, 41, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(548, 575, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(549, 569, 8, 2, 0, 'he need to think', 50, '0000-00-00 00:00:00', 1),
(550, 582, 38, 5, 2, 'he is looking high package xxamp he will not ready to go out for Appointment', 50, '0000-00-00 00:00:00', 1),
(551, 589, 38, 5, 1, 'I Ask To Wait For Next Round But Is Not Available.......Worst In Patience ', 50, '0000-00-00 00:00:00', 1),
(552, 591, 36, 7, 4, 'selected for RM', 50, '0000-00-00 00:00:00', 1),
(553, 592, 38, 7, 3, 'try to confirm salary 14k or 14.5k and confirm her joining', 50, '0000-00-00 00:00:00', 1),
(554, 596, 38, 2, 2, 'check by your end once okay means confirm salary otherwise reject her........50-50', 50, '0000-00-00 00:00:00', 1),
(555, 592, 8, 2, 0, 'RNR', 38, '2020-09-23 03:02:17', 1),
(556, 591, 8, 3, 0, '33K for lokesh team', 36, '2020-09-23 06:23:57', 1),
(557, 602, 41, 3, 0, 'nill', 1, '0000-00-00 00:00:00', 1),
(558, 603, 8, 4, 0, 'Check for PHP developer', 7, '0000-00-00 00:00:00', 1),
(559, 603, 54, 5, 0, 'she dont know the basics of c and C++', 8, '2020-09-24 11:52:33', 1),
(560, 606, 8, 3, 3, 'for Srikath team. 11K.', 7, '0000-00-00 00:00:00', 1),
(561, 604, 21, 5, 2, 'no voice exp, exp high salary , not sustain long term', 52, '0000-00-00 00:00:00', 1),
(562, 590, 21, 5, 3, 'pronouncation problem', 7, '0000-00-00 00:00:00', 1),
(563, 598, 21, 5, 3, 'double minded ', 7, '0000-00-00 00:00:00', 1),
(564, 613, 53, 5, 0, 'He is having oly co ordinating exp in HR nd also expecting high salry, and suggested for RM but he s nt intrested in field work.', 7, '0000-00-00 00:00:00', 1),
(565, 608, 31, 9, 0, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(566, 615, 14, 5, 1, 'Expecting high salary not suitable for voice process', 7, '0000-00-00 00:00:00', 1),
(567, 616, 14, 5, 1, 'not suitable for telecalling', 7, '0000-00-00 00:00:00', 1),
(568, 612, 51, 5, 2, 'she is not willing to travel long distance to meet the clients ', 7, '0000-00-00 00:00:00', 1),
(569, 527, 54, 3, 0, 'Selected, he is having good exprience in screening and calling.', 53, '2020-09-24 02:36:22', 1),
(570, 605, 8, 5, 0, 'for testing', 1, '0000-00-00 00:00:00', 1),
(571, 592, 8, 3, 0, '14K for Gowshick team.', 8, '2020-09-24 07:21:37', 1),
(572, 563, 8, 5, 0, 'will not suite for our process. already we hold 3.', 8, '2020-09-24 07:22:13', 1),
(573, 508, 8, 5, 0, 'hold for telephonic but she is not Responding.', 8, '2020-09-24 07:23:00', 1),
(574, 621, 38, 5, 2, 'will not suit for sales', 50, '0000-00-00 00:00:00', 1),
(575, 610, 8, 5, 0, 'poor communication and no HR skills, and no portal knowledge.', 50, '0000-00-00 00:00:00', 1),
(576, 614, 21, 5, 1, 'he dont know tamil.....', 50, '0000-00-00 00:00:00', 1),
(577, 617, 8, 5, 0, 'Not active, Switched company ever 3 months will not sustain.', 50, '0000-00-00 00:00:00', 1),
(578, 567, 8, 3, 0, '13.5K for Ramesh team', 17, '2020-09-25 12:03:44', 1),
(579, 619, 21, 4, 4, 'ok 10.5 k salary , monday joinin', 50, '0000-00-00 00:00:00', 1),
(580, 619, 8, 3, 0, '10.5K Fro Dhivya team', 21, '2020-09-25 01:11:44', 1),
(581, 628, 38, 5, 2, 'i trIed for RM But he is having health issue xxamp he is looking for office work', 50, '0000-00-00 00:00:00', 1),
(582, 632, 51, 2, 3, 'keep on hold till 29th sept', 50, '0000-00-00 00:00:00', 1),
(583, 623, 8, 5, 0, 'will not suite for MIS', 50, '0000-00-00 00:00:00', 1),
(584, 439, 19, 5, 0, 'no working exp nd sustanbility ', 19, '2020-09-25 01:38:32', 1),
(585, 623, 9, 4, 0, 'change to new one', 8, '2020-09-25 02:16:15', 1),
(586, 374, 8, 5, 0, 'exp CTC is 5.5L will not suite for AM.', 8, '2020-09-25 05:29:35', 1),
(587, 623, 8, 5, 0, 'will not suite for MIS', 9, '2020-09-26 10:07:42', 1),
(588, 334, 8, 8, 0, 'left before interview', 9, '2020-09-26 10:08:00', 1),
(589, 640, 13, 5, 3, 'expected salary high', 7, '0000-00-00 00:00:00', 1),
(590, 651, 53, 7, 0, 'sal 12k. doj 28 sep 20', 7, '0000-00-00 00:00:00', 1),
(591, 650, 8, 3, 0, 'For CRM 14K', 52, '0000-00-00 00:00:00', 1),
(592, 651, 8, 3, 0, '18K for TL', 53, '2020-09-26 10:35:29', 1),
(593, 629, 20, 4, 0, 'shortlisted and forwarded', 7, '0000-00-00 00:00:00', 1),
(594, 633, 21, 5, 2, 'Not Sustain Long Term , She I Il Come Only With Friends....', 7, '0000-00-00 00:00:00', 1),
(595, 644, 24, 5, 0, 'LOW VOICE .. NOT SUITABLE FOR TELECALLING JOB', 7, '0000-00-00 00:00:00', 1),
(596, 634, 14, 5, 1, 'not good in communication not suitable for voice ', 7, '0000-00-00 00:00:00', 1),
(597, 638, 21, 5, 3, 'expecting high salary 15 k above', 7, '0000-00-00 00:00:00', 1),
(598, 636, 13, 5, 2, 'not suitable for pressure handling', 7, '0000-00-00 00:00:00', 1),
(599, 648, 14, 5, 1, 'not suitable for telecalling ', 7, '0000-00-00 00:00:00', 1),
(600, 626, 24, 5, 0, 'SHE IS LOOKING FOR 6MONTH OR 1YRS JOB ONLY.. NEXT SHE WILL STUDY UPSC EXAM.. SO SUSTAINABILITY IS DOUBT', 50, '0000-00-00 00:00:00', 1),
(601, 647, 21, 5, 3, 'Not Sustain Long Term Becz She Ill Come With Friends Only', 50, '0000-00-00 00:00:00', 1),
(602, 654, 14, 5, 1, 'not suitable for sales ', 50, '0000-00-00 00:00:00', 1),
(603, 653, 8, 5, 0, 'not Interested in insurance. looking for job in health care', 50, '0000-00-00 00:00:00', 1),
(604, 652, 21, 5, 3, 'Long Distance (Perungaluthur)', 50, '0000-00-00 00:00:00', 1),
(605, 625, 14, 8, 0, 'candidate not attended the interview', 50, '0000-00-00 00:00:00', 1),
(606, 645, 14, 5, 1, 'long distance and not suitable for voice', 50, '0000-00-00 00:00:00', 1),
(607, 447, 53, 7, 0, 'sal 15k, doj 30 sep', 52, '0000-00-00 00:00:00', 1),
(608, 447, 8, 3, 0, 'for Banu team', 53, '2020-09-26 02:47:26', 1),
(609, 641, 13, 5, 2, 'Not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(610, 663, 21, 7, 4, 'selected 10 k salary , reshma ref ', 50, '0000-00-00 00:00:00', 1),
(611, 120, 0, 1, 0, NULL, 18, '2020-09-28 11:10:28', 1),
(612, 663, 8, 3, 0, '10K for dhivya team', 21, '2020-09-28 11:25:57', 1),
(613, 667, 13, 7, 4, '10.5k salary,joining date (Oct 1)', 50, '0000-00-00 00:00:00', 1),
(614, 669, 21, 5, 2, 'not sustain long term, salary exp 17 k above for crm, already have offer in 2comp', 50, '0000-00-00 00:00:00', 1),
(615, 670, 19, 5, 1, 'dress ccode not good nd lookwise also not good', 50, '0000-00-00 00:00:00', 1),
(616, 676, 21, 5, 1, 'not sustain long term xxamp also long distance 1.5 hrs travel ', 50, '0000-00-00 00:00:00', 1),
(617, 668, 21, 5, 3, 'not bold,no confidence', 50, '0000-00-00 00:00:00', 1),
(618, 666, 40, 4, 4, '13 years sales experience, sustainer for long, previous job knowledge is clear...Immediate joiner as well.', 50, '0000-00-00 00:00:00', 1),
(619, 664, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(620, 677, 21, 5, 2, 'Not Bold ,Cant Sustain Long Term', 50, '0000-00-00 00:00:00', 1),
(621, 680, 13, 7, 4, '11k salary,joining date oct 1', 50, '0000-00-00 00:00:00', 1),
(622, 673, 21, 5, 3, 'he dont have voice exp, also not sustain long term ', 50, '0000-00-00 00:00:00', 1),
(623, 672, 13, 5, 1, 'not sustain long time', 50, '0000-00-00 00:00:00', 1),
(624, 679, 13, 4, 4, 'priyanka team', 50, '0000-00-00 00:00:00', 1),
(625, 665, 11, 4, 3, 'ok for telecalling', 50, '0000-00-00 00:00:00', 1),
(626, 683, 8, 5, 2, 'will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(627, 681, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(628, 674, 19, 5, 1, 'dress code not good nd no sustainability', 50, '0000-00-00 00:00:00', 1),
(629, 685, 8, 2, 0, 'for telephonic\n', 50, '0000-00-00 00:00:00', 1),
(630, 684, 8, 5, 2, 'will not sustain', 50, '0000-00-00 00:00:00', 1),
(631, 682, 8, 5, 0, 'will not suite for CRM. ', 50, '0000-00-00 00:00:00', 1),
(632, 675, 20, 5, 2, 'communication not good and no convincing skills.', 50, '0000-00-00 00:00:00', 1),
(633, 666, 18, 7, 4, 'Selected for Veben Team Salary 31k', 40, '2020-09-28 01:06:21', 1),
(634, 686, 8, 5, 0, 'not speaking up\n', 50, '0000-00-00 00:00:00', 1),
(635, 687, 26, 5, 0, 'she dont know basics', 50, '0000-00-00 00:00:00', 1),
(636, 629, 22, 7, 0, 'canditate selected', 20, '2020-09-28 01:21:32', 1),
(637, 689, 26, 5, 0, 'She dont know basics of c and c++', 50, '0000-00-00 00:00:00', 1),
(638, 678, 8, 5, 2, 'no sales exp, gave negative feedback about insurance. will not suite for RM profile. No degree to.', 50, '0000-00-00 00:00:00', 1),
(639, 690, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(640, 691, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(641, 694, 13, 7, 4, '10.5k salary,joining date( oct 1)', 50, '0000-00-00 00:00:00', 1),
(642, 693, 35, 5, 0, 'Looking a operational job, not much Knowledge in MF , Sales Not Interested ', 50, '0000-00-00 00:00:00', 1),
(643, 695, 21, 7, 4, 'ok for health team ...', 50, '0000-00-00 00:00:00', 1),
(644, 696, 21, 5, 0, 'she is interested in hr traniee, also not sustain long term', 50, '0000-00-00 00:00:00', 1),
(645, 692, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(646, 698, 21, 5, 1, 'She Is Searching Mail Process xxamp Also Expected 14 K Above For Crm', 50, '0000-00-00 00:00:00', 1),
(647, 699, 13, 7, 4, '10.5k salary,joining date(Oct 1)', 50, '0000-00-00 00:00:00', 1),
(648, 695, 8, 3, 0, '10K for health team.', 21, '2020-09-28 05:26:52', 1),
(649, 680, 8, 3, 0, '11K for Muthu team', 13, '2020-09-28 06:11:57', 1),
(650, 694, 8, 3, 0, '10.5K for Muthu team', 13, '2020-09-28 06:15:51', 1),
(651, 196, 22, 5, 0, 'candidate did not came for second round', 22, '2020-09-28 06:23:14', 1),
(652, 629, 8, 3, 0, '11K for Srikanth Team', 22, '2020-09-28 06:24:07', 1),
(653, 415, 22, 5, 0, 'candidate did not came for second round', 22, '2020-09-28 06:25:12', 1),
(654, 667, 8, 3, 0, '10.5K for Muthu team', 13, '2020-09-28 06:36:23', 1),
(655, 699, 8, 3, 0, '10.5K for Muthu team', 13, '2020-09-28 06:38:39', 1),
(656, 572, 35, 5, 0, 'we given a time for 2nd Round Candidate Not Responding so that am Rejecting. ', 35, '2020-09-28 06:58:55', 1),
(657, 662, 41, 5, 0, 'Will not sustain,not fit for hR role,Fresher', 50, '0000-00-00 00:00:00', 1),
(658, 700, 24, 5, 1, 'Sustainability Is Doubt', 50, '0000-00-00 00:00:00', 1),
(659, 703, 21, 5, 3, 'not sustain long term xxamp also expecting high salary 18k for crm', 50, '0000-00-00 00:00:00', 1),
(660, 704, 21, 5, 3, 'not sustain long term, xxamp also expecting high salry for crm above 18k ...', 50, '0000-00-00 00:00:00', 1),
(661, 705, 27, 2, 0, 'She is not interested in Bond. she will discuss with her family and will callback today.', 50, '0000-00-00 00:00:00', 1),
(662, 707, 13, 5, 3, 'NOT SUITABLE FOR PRESSURE HANDLING', 50, '0000-00-00 00:00:00', 1),
(663, 701, 13, 9, 5, 'GOOD EXPERIENCE BUT EXPECTED SALARY HIGH', 50, '0000-00-00 00:00:00', 1),
(664, 708, 13, 5, 1, 'not fit for tele sales', 50, '0000-00-00 00:00:00', 1),
(665, 702, 13, 5, 3, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(666, 711, 13, 7, 4, '10k Salary,Oct 1st Joining', 50, '0000-00-00 00:00:00', 1),
(667, 710, 13, 7, 4, '10k salary,Oct 1st joining', 50, '0000-00-00 00:00:00', 1),
(668, 713, 13, 5, 2, 'she is not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(669, 701, 8, 3, 0, '23K, fro RM. shortlisted by sriram', 13, '2020-09-29 01:00:52', 1),
(670, 671, 13, 5, 3, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(671, 701, 18, 4, 0, 'Please check as it is doubtful. Told 21k salary', 8, '2020-09-29 01:39:39', 1),
(672, 719, 36, 7, 3, 'Selected for RM', 50, '0000-00-00 00:00:00', 1),
(673, 659, 13, 2, 4, 'ok but she is 15days notice period on previous company', 50, '0000-00-00 00:00:00', 1),
(674, 688, 13, 5, 3, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(675, 719, 8, 2, 0, 'Exp salary is high and need to cross check with Concern manager', 36, '2020-09-29 03:29:36', 1),
(676, 710, 8, 3, 0, '10K for Muthu team', 13, '2020-09-29 06:03:20', 1),
(677, 711, 8, 3, 0, '10K for Muthu team', 13, '2020-09-29 06:05:09', 1),
(678, 717, 41, 5, 0, 'Will not sustain long travel distance,dependent on her friend', 50, '0000-00-00 00:00:00', 1),
(679, 730, 41, 5, 3, '2022 graduate correspondence,will not sustain,can not handle pressure,not convincing and not a good listener', 50, '0000-00-00 00:00:00', 1),
(680, 723, 41, 5, 2, 'will not sustain,will not handle pressure,will not sustain', 50, '0000-00-00 00:00:00', 1),
(681, 745, 41, 4, 3, 'Check his profile and confidence level', 50, '0000-00-00 00:00:00', 1),
(682, 746, 41, 9, 3, 'Dep change will be suitable for RE assign to Saravanan', 50, '0000-00-00 00:00:00', 1),
(683, 745, 14, 7, 4, 'selected 10k salary need to check joining date', 41, '2020-09-30 12:02:13', 1),
(684, 746, 8, 4, 0, 'department change. check for RE', 41, '2020-09-30 12:05:10', 1),
(685, 721, 41, 5, 2, 'will not sustain', 50, '0000-00-00 00:00:00', 1),
(686, 751, 41, 9, 3, 'Check for RE/RM, need to check JN and Sustainability', 50, '0000-00-00 00:00:00', 1),
(687, 746, 15, 5, 0, 'he will not sustain', 8, '2020-09-30 12:32:02', 1),
(688, 745, 8, 3, 0, '10K for Priyanka jenit', 14, '2020-09-30 12:33:03', 1),
(689, 755, 27, 9, 0, 'Wrongly Applied', 50, '0000-00-00 00:00:00', 1),
(690, 731, 14, 5, 1, 'expecting high salary he is not even to sustain . not suitable for voice', 50, '0000-00-00 00:00:00', 1),
(691, 753, 13, 5, 1, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(692, 718, 27, 9, 0, 'Wrongly Applied. she is interested in telecalling.', 50, '0000-00-00 00:00:00', 1),
(693, 743, 14, 7, 4, 'oct 1st joining salary 10.5k need to confirm the joining date once', 50, '0000-00-00 00:00:00', 1),
(694, 718, 8, 3, 0, '10.5K for priyanka team', 27, '2020-09-30 12:57:34', 1),
(695, 718, 14, 7, 4, 'salary 10.5k need to confirm joining date', 8, '2020-09-30 12:59:43', 1),
(696, 755, 8, 4, 0, 'check for CRM.', 27, '2020-09-30 01:05:59', 1),
(697, 755, 14, 5, 1, 'not suitable for voice process', 8, '2020-09-30 01:07:38', 1),
(698, 752, 13, 5, 2, 'not suitable for tele sales', 50, '0000-00-00 00:00:00', 1),
(699, 714, 13, 5, 3, 'not suitable for tele sales', 50, '0000-00-00 00:00:00', 1),
(700, 716, 14, 5, 1, 'looking for non voice process ', 50, '0000-00-00 00:00:00', 1),
(701, 744, 14, 5, 0, 'looking for data entry ..not fit for voice process', 50, '0000-00-00 00:00:00', 1),
(702, 751, 8, 4, 0, 'check for RE, job need and Sustainability', 41, '2020-09-30 01:39:28', 1),
(703, 751, 19, 5, 1, 'sustainability zero', 8, '2020-09-30 01:42:29', 1),
(704, 726, 14, 7, 4, 'salary 10.5k need to confirm the joining date', 50, '0000-00-00 00:00:00', 1),
(705, 764, 41, 5, 2, 'Memory loss patient,We can not handle, 1985 born,But High job need', 50, '0000-00-00 00:00:00', 1),
(706, 768, 41, 5, 2, 'will not sustain,will not suite for any profile with CAFS', 50, '0000-00-00 00:00:00', 1),
(707, 743, 8, 3, 0, '10.5K for Priyanka team', 14, '2020-09-30 03:12:42', 1),
(708, 726, 8, 3, 0, '10.5K for Priyanka team', 14, '2020-09-30 03:15:25', 1),
(709, 718, 8, 3, 0, '10.5K for priyanka team', 14, '2020-09-30 03:16:49', 1),
(710, 787, 16, 7, 4, 'Good Comminication Skill And Salary Need ,Sustain No Doubt Expect Salary 13 To 13.5', 50, '0000-00-00 00:00:00', 1),
(711, 759, 13, 5, 2, 'NOT SUITABLE FOR TELESALES', 50, '0000-00-00 00:00:00', 1),
(712, 786, 14, 5, 1, 'not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(713, 790, 13, 5, 3, 'Confidence Level very low so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(714, 729, 53, 5, 0, 'He dont have experience n Hr profile, hvng experience n NV oly. Moreover he will not suit for RE nd CRM also.', 50, '0000-00-00 00:00:00', 1),
(715, 735, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(716, 734, 54, 5, 0, 'He is doing freelance,he is looking for a job because of his marriage and will not sustain.', 50, '0000-00-00 00:00:00', 1),
(717, 799, 13, 5, 3, 'Communication xxamp Observation Skills very poor so nalesot suitable for this telesales', 50, '0000-00-00 00:00:00', 1),
(718, 798, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(719, 797, 13, 5, 3, 'Communication xxamp Confidence Level Very Low So Not Suitable For This Field', 50, '0000-00-00 00:00:00', 1),
(720, 793, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(721, 773, 13, 7, 4, '4 Yrs Experience good Convincing Skills, 12k Salary (Oct 5th Joing)', 50, '0000-00-00 00:00:00', 1),
(722, 794, 13, 5, 3, 'Convincing Skills very poor so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(723, 791, 14, 5, 1, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(724, 789, 13, 5, 2, 'Communication skills ok but Sustainability is low', 50, '0000-00-00 00:00:00', 1),
(725, 276, 44, 4, 3, 'good candidate ,Once you check with him and expecting salary 27 K', 50, '0000-00-00 00:00:00', 1),
(726, 788, 33, 4, 3, 'Fit for rm but doubt in field work please check and clarify', 50, '0000-00-00 00:00:00', 1),
(727, 801, 14, 2, 4, 'Expecting high salary ', 50, '0000-00-00 00:00:00', 1),
(728, 739, 53, 5, 0, 'Long distance, nt suit fr HR rec, dnt hve portal knowledge also', 50, '0000-00-00 00:00:00', 1),
(729, 806, 14, 2, 4, 'need one month time to join ', 50, '0000-00-00 00:00:00', 1),
(730, 787, 8, 3, 0, '13K for Thiyagu team', 16, '2020-10-01 01:04:29', 1),
(731, 788, 44, 5, 2, 'She is not fit for our company', 33, '2020-10-01 01:25:59', 1),
(732, 805, 14, 5, 1, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(733, 811, 41, 5, 3, 'Will Not Sustain Looking For Job To Pay Her Govt Exam Coaching Fee', 50, '0000-00-00 00:00:00', 1),
(734, 810, 36, 4, 3, 'Salary Suggestion around 3L', 50, '0000-00-00 00:00:00', 1),
(735, 812, 41, 5, 2, 'Will not sustain,Preparing for Govt job to pay for the coaching center looking for job', 50, '0000-00-00 00:00:00', 1),
(736, 778, 53, 5, 0, 'gud communication, but hvng kid nd sick mother, she wants to go home early. ', 50, '0000-00-00 00:00:00', 1),
(737, 747, 53, 5, 0, 'Good n communication, hvng knowledge in all fields, he s suitable for hr but expected high salary around 60k', 50, '0000-00-00 00:00:00', 1),
(738, 815, 14, 7, 4, 'salary 10.5k . need to confirm the joining date', 50, '0000-00-00 00:00:00', 1),
(739, 766, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(740, 822, 36, 5, 0, 'Not fit for rM', 50, '0000-00-00 00:00:00', 1),
(741, 757, 54, 4, 0, 'Have to check sustainability and trust.', 50, '0000-00-00 00:00:00', 1),
(742, 773, 8, 3, 0, '12K fro muthu team', 13, '2020-10-01 04:16:27', 1),
(743, 810, 8, 4, 3, 'check with sustainability', 36, '2020-10-01 04:43:06', 1),
(744, 815, 8, 3, 0, '10.5K for priyanka team', 14, '2020-10-01 05:07:33', 1),
(745, 735, 8, 3, 0, '10K. for priyanka team', 14, '2020-10-01 05:09:24', 1),
(746, 766, 8, 3, 0, '10K for priyanka team', 14, '2020-10-01 05:10:58', 1),
(747, 719, 18, 1, 0, NULL, 8, '2020-10-02 10:47:50', 1),
(748, 719, 8, 4, 0, 'check for RM', 8, '2020-10-02 10:47:50', 1),
(749, 828, 44, 4, 1, 'She is not fit for field sales ,and you can check for Tele sales', 7, '0000-00-00 00:00:00', 1),
(750, 828, 8, 5, 3, 'will not suite for sales and calling to. her voice is not bold and she will not sustain and her exp sal is 18+.', 44, '2020-10-02 01:40:30', 1),
(751, 608, 8, 3, 0, '14K for kannan team', 31, '2020-10-02 02:58:09', 1),
(752, 831, 53, 5, 0, 'dnt hve relevant exp', 7, '0000-00-00 00:00:00', 1),
(753, 833, 53, 5, 0, 'dnt hve exp in ths field. exp high sal', 7, '0000-00-00 00:00:00', 1),
(754, 332, 8, 3, 0, '30K for Lokesh team', 18, '2020-10-02 05:23:45', 1),
(755, 701, 8, 3, 0, '23K, fro RM. shortlisted by sriram', 18, '2020-10-02 05:24:35', 1),
(756, 411, 8, 3, 0, '23K by Gaurav. as sourcing BDM', 18, '2020-10-02 05:25:44', 1),
(757, 411, 18, 7, 0, 'Given to gaurav for BDM profile', 18, '2020-10-02 05:25:44', 1),
(758, 322, 8, 3, 0, '21K. for Guru team ', 18, '2020-10-02 05:31:50', 1),
(759, 666, 8, 3, 0, '31K. for veben team', 18, '2020-10-02 05:33:44', 1),
(760, 781, 54, 4, 0, 'she is very confident and will sustain. have a good Communication skill. ', 50, '0000-00-00 00:00:00', 1),
(761, 814, 13, 5, 3, 'Pressure Handling low so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(762, 748, 14, 5, 0, 'Expecting high salary and long distance ', 50, '0000-00-00 00:00:00', 1),
(763, 749, 13, 5, 4, 'ok but expected salary high', 50, '0000-00-00 00:00:00', 1),
(764, 758, 14, 5, 0, 'expecting high salary 18k to 20k not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(765, 411, 8, 3, 0, '23K by Gaurav. as sourcing BDM', 8, '2020-10-03 10:41:13', 1),
(766, 608, 8, 3, 0, '14K for kannan team', 8, '2020-10-03 10:43:04', 1),
(767, 737, 54, 5, 0, 'communication not good.', 50, '0000-00-00 00:00:00', 1),
(768, 802, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(769, 796, 14, 5, 1, 'looking for data entry', 50, '0000-00-00 00:00:00', 1),
(770, 845, 31, 4, 4, 'forward to 2nd round', 50, '0000-00-00 00:00:00', 1),
(771, 843, 8, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(772, 819, 13, 5, 2, 'Sustainability low so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(773, 847, 51, 7, 4, 'candidate is ok', 50, '0000-00-00 00:00:00', 1),
(774, 738, 8, 2, 0, 'okay for inter not as recruiter.', 50, '0000-00-00 00:00:00', 1),
(775, 851, 8, 2, 0, 'for Axa AM', 50, '0000-00-00 00:00:00', 1),
(776, 844, 20, 4, 0, 'suitable for RE', 50, '0000-00-00 00:00:00', 1),
(777, 847, 8, 3, 3, '21K for Sarath team', 51, '2020-10-03 12:26:45', 1),
(778, 825, 8, 5, 0, 'will not Sustain native is AP. salary exp is high. ', 50, '0000-00-00 00:00:00', 1),
(779, 853, 13, 7, 4, 'ok good Communication skills 5yrs telecalling experience 12k salary Oct 5th joining', 50, '0000-00-00 00:00:00', 1),
(780, 800, 8, 4, 0, 'check with the profile. cross check with sustainability.', 50, '0000-00-00 00:00:00', 1),
(781, 844, 24, 2, 0, 'CANDIDATE OK BUT RE-CHECK WITH BALAJI SIR', 20, '2020-10-03 01:33:01', 1),
(782, 853, 8, 3, 0, '11K for Gowshick team.', 13, '2020-10-03 01:35:08', 1),
(783, 859, 14, 5, 0, 'expecting high salary and not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(784, 840, 13, 5, 2, 'Confidence Level very low so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(785, 722, 8, 5, 0, '20 days notice yet to put paper and will nit sustain. exp 50% hike + inc.', 50, '0000-00-00 00:00:00', 1),
(786, 776, 8, 5, 0, 'Will Not Suite For Our Process. Will Not Sustain. Exp Sal Is 25K', 50, '0000-00-00 00:00:00', 1),
(787, 858, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(788, 660, 13, 5, 2, 'Communication skills poor so not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(789, 862, 38, 7, 3, 'kindly confirm joining xxamp salary', 50, '0000-00-00 00:00:00', 1),
(790, 861, 38, 7, 3, 'confirm her salary and joining', 50, '0000-00-00 00:00:00', 1),
(791, 845, 29, 5, 1, 'not selected', 31, '2020-10-03 03:15:48', 1),
(792, 724, 8, 5, 0, 'she will not suite for us and will not suatain.', 50, '0000-00-00 00:00:00', 1),
(793, 763, 8, 5, 0, 'fresher exp is 18-20K. Avg communication, will not sustain.', 50, '0000-00-00 00:00:00', 1),
(794, 861, 8, 3, 0, '11K for gowshick team', 38, '2020-10-03 03:52:57', 1),
(795, 862, 0, 1, 0, NULL, 38, '2020-10-03 03:55:38', 1),
(796, 800, 54, 5, 0, 'He Dont know about HRMS and will not Listen. keep on telling same. will not Sustain longtime. ', 8, '2020-10-03 05:06:40', 1),
(797, 781, 53, 7, 0, 'she needs clarity in PF. but potential candidate', 54, '2020-10-03 05:19:06', 1),
(798, 724, 54, 4, 0, 'as discussed profile re-assign to Kayal', 8, '2020-10-03 05:40:07', 1),
(799, 824, 21, 5, 3, 'not sustain long , 2015 passed out he dont have exper in voice @ other field also ... not fit for sales', 50, '0000-00-00 00:00:00', 1),
(800, 879, 14, 5, 0, 'Expecting high salary and not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(801, 881, 44, 5, 2, 'He is not fit for a life sales ', 50, '0000-00-00 00:00:00', 1),
(802, 877, 13, 5, 2, 'Communication skills poor so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(803, 854, 14, 5, 0, 'not suitable for voice xxamp expecting high salary for crm', 50, '0000-00-00 00:00:00', 1),
(804, 888, 28, 5, 2, 'basic skill is not enough', 50, '0000-00-00 00:00:00', 1),
(805, 889, 13, 7, 4, '3yrs experience,12k salary,(8th oct joining)', 50, '0000-00-00 00:00:00', 1),
(806, 880, 28, 2, 3, 'He struggle in basic frontend validation jquery or javascript.', 50, '0000-00-00 00:00:00', 1),
(807, 878, 24, 5, 1, 'Not Suitable For Calling Profile.', 50, '0000-00-00 00:00:00', 1),
(808, 727, 36, 5, 0, 'Not fit for RM', 50, '0000-00-00 00:00:00', 1),
(809, 785, 53, 5, 0, 'she s not for HR rec, exp high salary', 50, '0000-00-00 00:00:00', 1),
(810, 865, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(811, 860, 13, 7, 5, 'ok,10.5k salary,8th Oct joining', 50, '0000-00-00 00:00:00', 1),
(812, 810, 33, 5, 1, 'not fit for rm and sales', 8, '2020-10-05 12:53:03', 1),
(813, 827, 53, 5, 0, 'Exp high sal, dnt knw use portal also', 50, '0000-00-00 00:00:00', 1),
(814, 458, 8, 3, 0, '10K for dhivya team', 8, '2020-10-05 12:57:35', 1),
(815, 569, 8, 5, 0, 'he asked time time to think and not turned up', 8, '2020-10-05 12:58:14', 1),
(816, 299, 8, 3, 0, '10K for dhivya team', 8, '2020-10-05 01:01:13', 1),
(817, 772, 53, 4, 0, 'hvng exp n hr filed, Ok', 50, '0000-00-00 00:00:00', 1),
(818, 869, 13, 5, 2, 'Communication skills very poor', 50, '0000-00-00 00:00:00', 1),
(819, 897, 17, 9, 0, 'check for crm ', 50, '0000-00-00 00:00:00', 1),
(820, 893, 13, 5, 2, 'no Pressure Handling xxamp Sustainability low', 50, '0000-00-00 00:00:00', 1),
(821, 894, 13, 5, 2, 'Attitude poor', 50, '0000-00-00 00:00:00', 1),
(822, 897, 13, 5, 2, 'Communication low so rejected', 17, '2020-10-05 01:38:00', 1),
(823, 863, 13, 5, 1, 'Confidence Level low', 50, '0000-00-00 00:00:00', 1),
(824, 874, 13, 5, 2, 'Communication poor but expected salary', 50, '0000-00-00 00:00:00', 1),
(825, 895, 13, 5, 2, 'Confidence Level low so not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(826, 883, 36, 4, 4, 'Asked to come second round today', 50, '0000-00-00 00:00:00', 1),
(827, 736, 41, 5, 0, 'Pursuing MBA Corres Saturday and Sunday classes', 50, '0000-00-00 00:00:00', 1),
(828, 892, 34, 7, 4, 'SHORT LISTED AND MOVED TO SHANMUGAM ', 50, '0000-00-00 00:00:00', 1),
(829, 898, 13, 5, 2, 'Sustainability less', 50, '0000-00-00 00:00:00', 1),
(830, 900, 30, 7, 3, 'Candidate okay...confirm his salary xxamp joining', 50, '0000-00-00 00:00:00', 1),
(831, 891, 38, 7, 3, 'Kindly confirm her joining xxamp salary', 50, '0000-00-00 00:00:00', 1),
(832, 901, 33, 9, 4, 'Please. Check the salary part and finalize ', 50, '0000-00-00 00:00:00', 1),
(833, 891, 8, 3, 0, '11K for Gowshick team', 38, '2020-10-05 04:21:06', 1),
(834, 860, 8, 3, 0, '10.5K for Muthu team', 13, '2020-10-05 05:55:15', 1),
(835, 900, 8, 3, 0, '27.5K for Sathish team', 30, '2020-10-05 06:00:45', 1),
(836, 889, 8, 3, 0, '12K for Muthu team', 13, '2020-10-05 06:02:44', 1),
(837, 901, 18, 7, 3, 'Selected for Raj Team Negotiate Salary\n', 33, '2020-10-05 07:53:29', 1),
(838, 909, 34, 5, 3, 'rejected not sutable for our job', 50, '0000-00-00 00:00:00', 1),
(839, 772, 54, 2, 0, 'Good candidate, she is having good experience in the end to end process of requirement. next round scheduled on 08-10-2020', 53, '2020-10-06 10:32:16', 1),
(840, 781, 8, 2, 0, 'for final feedback from Banu', 53, '2020-10-06 10:33:29', 1),
(841, 757, 8, 5, 0, 'will not suite for this profile', 54, '2020-10-06 10:38:18', 1),
(842, 724, 8, 5, 0, 'she will not suite for us and will not suatain.', 54, '2020-10-06 10:43:12', 1),
(843, 912, 33, 4, 3, 'SELECTED BUT SALARY PART NOT DISCUSSED KINDLY CHECK AND CONFIRM JOINING DATE WOULD BE 12TH OF THIS MONTH', 50, '0000-00-00 00:00:00', 1),
(844, 914, 13, 5, 2, 'Communication skills not well so rejected', 50, '0000-00-00 00:00:00', 1),
(845, 913, 21, 5, 1, 'long distance 1 hr travel,Not Sustain Long Term, She Is Intrested In Lecture Job , Tnpsc Exam', 50, '0000-00-00 00:00:00', 1),
(846, 915, 21, 5, 2, 'no need for job', 50, '0000-00-00 00:00:00', 1),
(847, 911, 13, 5, 2, 'not bold and not Sustain long term', 50, '0000-00-00 00:00:00', 1),
(848, 882, 21, 7, 4, 'ok selected , exp sal 9 to 10 k ', 50, '0000-00-00 00:00:00', 1),
(849, 883, 18, 7, 0, 'Shortlisted for Lokesh Team', 36, '2020-10-06 11:28:47', 1),
(850, 912, 18, 7, 0, 'Selected for veben Team can give salary 21k', 33, '2020-10-06 11:31:55', 1),
(851, 901, 8, 3, 3, '26K . For rajkumar team', 18, '2020-10-06 11:36:57', 1),
(852, 916, 30, 7, 3, 'manivel ref.....ixquotm okay with this candidate....already exp in sales (life).....confirm his salary and joining', 50, '0000-00-00 00:00:00', 1),
(853, 918, 21, 5, 3, 'she dont want presure job', 50, '0000-00-00 00:00:00', 1),
(854, 885, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(855, 890, 21, 5, 1, 'She Is Not Work With Pressure', 50, '0000-00-00 00:00:00', 1),
(856, 924, 51, 7, 3, 'moved for nxt round', 50, '0000-00-00 00:00:00', 1),
(857, 884, 13, 5, 3, 'Confidence Level Very Low', 50, '0000-00-00 00:00:00', 1),
(858, 886, 21, 5, 3, 'not sustain long term ... seeking alliance ..', 50, '0000-00-00 00:00:00', 1),
(859, 276, 18, 7, 0, 'Selected for Raj team', 44, '2020-10-06 02:28:39', 1),
(860, 882, 8, 3, 0, '9K for Dhivya team.', 21, '2020-10-06 02:34:20', 1),
(861, 916, 8, 3, 3, '26K for Sathish team', 30, '2020-10-06 03:25:55', 1),
(862, 679, 8, 3, 0, '10K for Priyanka team', 13, '2020-10-06 03:30:09', 1),
(863, 493, 8, 5, 0, 'selected, but not joined. and no response', 8, '2020-10-06 03:44:35', 1),
(864, 738, 8, 5, 0, 'hold for intern but not turned up', 8, '2020-10-06 03:45:07', 1),
(865, 1, 11, 5, 0, 'will not sustain', 11, '2020-10-06 03:52:41', 1),
(866, 4, 11, 5, 0, 'not suitable for sales', 11, '2020-10-06 03:54:50', 1),
(867, 665, 8, 5, 0, 'will not suite for CRM.', 11, '2020-10-06 03:57:38', 1),
(868, 939, 34, 7, 4, 'shortlisted for next round tomrw 11 am', 50, '0000-00-00 00:00:00', 1),
(869, 939, 18, 5, 0, 'Non degeree holder and an average guy', 34, '2020-10-06 06:27:42', 1),
(870, 923, 21, 5, 3, 'She Dont Have Voice Exp , Alreadyhave Exp In Email Chat Process ...', 50, '0000-00-00 00:00:00', 1),
(871, 952, 13, 7, 4, 'ok,10,5k salary need confirm to kayal', 50, '0000-00-00 00:00:00', 1),
(872, 955, 8, 5, 2, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(873, 899, 53, 4, 0, 'Fresher, gud communication, Will try fr recruiter', 50, '0000-00-00 00:00:00', 1),
(874, 920, 8, 2, 0, 'for axa', 50, '0000-00-00 00:00:00', 1),
(875, 943, 21, 5, 1, 'She Is Interested In Customer Support ', 50, '0000-00-00 00:00:00', 1),
(876, 950, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(877, 951, 21, 4, 4, 'ok selected ', 50, '0000-00-00 00:00:00', 1),
(878, 954, 13, 5, 2, 'Communication poor', 50, '0000-00-00 00:00:00', 1),
(879, 907, 21, 5, 3, 'rejected ,not sustain long term bcz expecting high salary 15 k above ', 50, '0000-00-00 00:00:00', 1),
(880, 964, 13, 5, 2, 'Sustainability less', 50, '0000-00-00 00:00:00', 1),
(881, 966, 21, 5, 2, 'Low Voice ,Not Bold ,Not Sus Long Term', 50, '0000-00-00 00:00:00', 1),
(882, 899, 8, 4, 0, 'check for HR', 53, '2020-10-07 12:23:08', 1),
(883, 948, 13, 5, 1, 'Communication skills very poor', 50, '0000-00-00 00:00:00', 1),
(884, 927, 21, 7, 4, 'ok selected 10 k salary', 50, '0000-00-00 00:00:00', 1),
(885, 960, 13, 5, 2, 'Confidence Level Skills low', 50, '0000-00-00 00:00:00', 1),
(886, 959, 21, 5, 1, 'She Wants 3 Month Only Full Time Job, After She Went To Colleage ', 50, '0000-00-00 00:00:00', 1),
(887, 957, 13, 5, 2, 'Communication skills low', 50, '0000-00-00 00:00:00', 1),
(888, 931, 21, 5, 2, 'interested only in cus support', 50, '0000-00-00 00:00:00', 1),
(889, 944, 13, 5, 2, 'intrested only for data entry so not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(890, 965, 21, 5, 2, 'Not Sustain Long term xxamp Also Double Minded ', 50, '0000-00-00 00:00:00', 1),
(891, 920, 8, 2, 0, 'for axa', 8, '2020-10-07 12:55:37', 1),
(892, 924, 29, 5, 1, 'not selected', 51, '2020-10-07 01:12:51', 1),
(893, 908, 13, 5, 2, 'Observation Skills low', 50, '0000-00-00 00:00:00', 1),
(894, 967, 39, 7, 4, 'Confirm his salary and joining', 7, '0000-00-00 00:00:00', 1),
(895, 947, 21, 7, 4, 'ok selected ', 50, '0000-00-00 00:00:00', 1),
(896, 963, 30, 7, 3, 'Am k with this candidate, confirm the salary and joining date', 7, '0000-00-00 00:00:00', 1),
(897, 970, 28, 4, 3, 'He Is Good Knowledge In Android.', 50, '0000-00-00 00:00:00', 1),
(898, 942, 28, 5, 2, 'He Is Not Strong In Php Basic . ', 50, '0000-00-00 00:00:00', 1),
(899, 970, 27, 2, 0, 'Task Given to this Candidate. He will complete and let us know tomorrow. if Task Completed we will proceed further.', 28, '2020-10-07 03:11:34', 1),
(900, 952, 8, 3, 0, '10.5K for muthu team', 13, '2020-10-07 03:17:58', 1),
(901, 951, 8, 3, 3, '10.5K for dhivya team', 21, '2020-10-07 03:18:43', 1),
(902, 947, 8, 3, 0, '11K for dhivya team', 21, '2020-10-07 03:25:11', 1),
(903, 899, 54, 5, 0, 'She will not sustain, if she got any other better offer she will switch.', 8, '2020-10-07 03:52:40', 1),
(904, 927, 8, 3, 0, '10K for dhivya team', 21, '2020-10-07 04:54:20', 1),
(905, 967, 8, 2, 0, 'called more than 3 times no response form him', 39, '2020-10-07 05:29:19', 1),
(906, 963, 8, 2, 0, 'wrong number', 30, '2020-10-07 07:35:34', 1),
(907, 936, 21, 5, 3, 'Not Sustain Long Term xxamp Also Last Salry 18k ', 50, '0000-00-00 00:00:00', 1),
(908, 985, 13, 7, 5, 'communication xxamp Confidence Level good,10k salary', 50, '0000-00-00 00:00:00', 1),
(909, 987, 53, 4, 0, 'Due to training directly forwarded to gokul', 50, '0000-00-00 00:00:00', 1),
(910, 477, 27, 5, 0, 'Task Not Completed and no reply from her.', 27, '2020-10-08 12:02:00', 1),
(911, 956, 36, 7, 3, 'Selected for RM', 1, '0000-00-00 00:00:00', 1),
(912, 976, 13, 8, 0, 'candidate not attend the interview', 1, '0000-00-00 00:00:00', 1),
(913, 985, 8, 3, 0, '10K for muthu team', 13, '2020-10-08 12:37:31', 1),
(914, 995, 24, 4, 4, 'candidate select .. next round balaji sir assigned.. CTC 1.56L TO 1.68L', 7, '0000-00-00 00:00:00', 1),
(915, 994, 53, 9, 0, 'crm', 7, '0000-00-00 00:00:00', 1),
(916, 993, 53, 9, 0, 'crm', 7, '0000-00-00 00:00:00', 1),
(917, 988, 36, 5, 0, 'na', 7, '0000-00-00 00:00:00', 1),
(918, 977, 21, 7, 4, 'ok 10 k salary ,need to check distance ...', 7, '0000-00-00 00:00:00', 1),
(919, 978, 13, 5, 3, 'Convincing level poor', 7, '0000-00-00 00:00:00', 1),
(920, 995, 22, 5, 1, 'appearance and comunication is not good', 24, '2020-10-08 01:36:00', 1),
(921, 986, 13, 5, 2, 'he is intrested only nonvoice process', 50, '0000-00-00 00:00:00', 1),
(922, 989, 51, 5, 0, 'given information by him is fake', 50, '0000-00-00 00:00:00', 1),
(923, 971, 21, 5, 1, 'Not Sustain Long Term , Bcz She Have Offer And Expecting High Salary ', 50, '0000-00-00 00:00:00', 1),
(924, 977, 8, 2, 3, 'she is from ambatur need to check.', 21, '2020-10-08 03:27:51', 1),
(925, 1004, 15, 5, 0, 'not sustain', 7, '0000-00-00 00:00:00', 1),
(926, 1013, 13, 7, 4, 'ok,10ksalary', 50, '0000-00-00 00:00:00', 1),
(927, 1015, 35, 5, 0, 'Candidate Dont Have A Knowledge About Mutual Fund. And He Looking A Operational Job, Not Okay For Sales.', 50, '0000-00-00 00:00:00', 1),
(928, 1018, 53, 4, 0, 'mis system roung pending', 50, '0000-00-00 00:00:00', 1),
(929, 1017, 53, 5, 0, 'Sustain issue. he s not ok with bonds', 50, '0000-00-00 00:00:00', 1),
(930, 1019, 21, 5, 2, 'she is interested in data entry job ', 50, '0000-00-00 00:00:00', 1),
(931, 1013, 8, 3, 0, '10K for muthu team', 13, '2020-10-09 11:17:57', 1),
(932, 987, 54, 5, 0, 'Task Incomplete', 53, '2020-10-09 11:20:00', 1),
(933, 993, 8, 5, 0, 'will not suite for CRM. not speaking up', 53, '2020-10-09 11:20:22', 1),
(934, 994, 8, 5, 0, 'will not suite for CRM, not speaking up', 53, '2020-10-09 11:20:42', 1),
(935, 1016, 53, 4, 0, 'pending for system round', 50, '0000-00-00 00:00:00', 1),
(936, 505, 13, 5, 2, 'he is intersted on only non-voice process', 50, '0000-00-00 00:00:00', 1),
(937, 1020, 53, 5, 0, 'She s looking fro mis or any non voice process, but she dont have exp in excel even she dont hve basic knowledge in excel', 50, '0000-00-00 00:00:00', 1),
(938, 276, 8, 3, 0, '21K for rajkumar team', 18, '2020-10-09 12:04:36', 1),
(939, 1028, 21, 5, 2, 'Not Bold , Not Fit For Sales..Long Distance', 50, '0000-00-00 00:00:00', 1),
(940, 1030, 13, 5, 2, 'she is not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(941, 1021, 21, 5, 2, 'She Is Not Sustain Long Term Bcz,Already In Accounts Field xxampAlso Expecting Above 12k Salary', 50, '0000-00-00 00:00:00', 1),
(942, 1006, 13, 7, 4, 'ok,10k salary joining date 12th Oct', 50, '0000-00-00 00:00:00', 1),
(943, 1027, 14, 5, 0, 'looking for data entry not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(944, 1031, 14, 7, 4, 'salary 10k need to check the joining date ', 50, '0000-00-00 00:00:00', 1),
(945, 1012, 53, 5, 0, 'he wont suit for any profile in cafs', 50, '0000-00-00 00:00:00', 1),
(946, 1023, 13, 5, 2, 'not suitable for telesales', 50, '0000-00-00 00:00:00', 1),
(947, 1032, 53, 5, 0, 'not suit for mis', 50, '0000-00-00 00:00:00', 1),
(948, 1016, 54, 5, 0, 'He left office, no information', 53, '2020-10-09 02:28:02', 1),
(949, 1031, 8, 3, 0, '10K for priyanka team', 14, '2020-10-09 02:36:22', 1),
(950, 1034, 53, 5, 0, 'dont hve exp in excel\n', 50, '0000-00-00 00:00:00', 1),
(951, 1018, 54, 5, 0, 'Task Incomplete', 53, '2020-10-09 02:55:21', 1),
(952, 1006, 8, 3, 0, '10K for muthu team', 13, '2020-10-09 03:15:37', 1),
(953, 1024, 14, 5, 1, 'not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(954, 912, 8, 3, 0, '21K for Veben team', 18, '2020-10-09 04:09:23', 1),
(955, 956, 8, 3, 0, '20K for Lokesh team', 36, '2020-10-09 04:11:23', 1),
(956, 876, 8, 3, 0, '13K for Syed team', 7, '0000-00-00 00:00:00', 1),
(957, 892, 44, 7, 3, 'He will join on 1st week of November', 34, '2020-10-09 04:44:58', 1),
(958, 1002, 38, 2, 3, 'kindly check this candidate by your side through telephonic round...confirm her joining and salary... ', 50, '0000-00-00 00:00:00', 1),
(959, 1035, 38, 2, 3, 'kindly arrange telephonic round and confirm her salary and joining by monday', 50, '0000-00-00 00:00:00', 1),
(960, 892, 0, 1, 0, NULL, 44, '2020-10-09 05:34:10', 1),
(961, 963, 8, 3, 0, '23K for manivel team', 8, '2020-10-09 06:52:23', 1),
(962, 967, 8, 3, 0, '18K for Muppudathy team', 8, '2020-10-09 06:53:18', 1),
(963, 1043, 14, 5, 1, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(964, 883, 8, 3, 0, '18K for lokesh team', 18, '2020-10-10 10:53:05', 1),
(965, 1037, 21, 5, 3, 'Not Sustain Long Term xxamp Also Joining It Course , xxampNow He Want Data Entry Job.. ', 50, '0000-00-00 00:00:00', 1),
(966, 1045, 54, 2, 0, 'task given he will send to us by monday ', 50, '0000-00-00 00:00:00', 1),
(967, 1046, 54, 2, 0, ' next interview System Round on 14-10-2020', 50, '0000-00-00 00:00:00', 1),
(968, 1047, 53, 5, 0, 'he dont hve much knowledge in excel nd powerpoint presentation. exp abv 20k ', 50, '0000-00-00 00:00:00', 1),
(969, 1039, 54, 2, 0, 'given one week time and task given has to complete and revert', 50, '0000-00-00 00:00:00', 1),
(970, 1038, 53, 5, 0, 'He dont knw basic functions nd formulas also. he ll not suit fr MIS', 50, '0000-00-00 00:00:00', 1),
(971, 1044, 51, 4, 4, 'interested in sales', 50, '0000-00-00 00:00:00', 1),
(972, 1040, 53, 5, 0, 'dont hve knowledge in excel, even he doesnt knw the functions nd basic formulas.', 50, '0000-00-00 00:00:00', 1),
(973, 1051, 13, 5, 2, 'Sustainability less', 50, '0000-00-00 00:00:00', 1),
(974, 1050, 53, 2, 0, 'Sytem round completed, hold becz of sustainability', 50, '0000-00-00 00:00:00', 1),
(975, 1049, 21, 5, 3, 'Not Sustain Bcz, He Have More 10 Yrs Experienced In Front Office Asst In Hotel xxamp Resorts ...Also Expecting 15 K Above For Crm ', 50, '0000-00-00 00:00:00', 1),
(976, 1048, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(977, 1055, 14, 5, 0, 'expecting high salary and not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(978, 1054, 21, 5, 3, 'Not Sustain Long Term Becz, She Already Worked Courier Process Related System Work..', 50, '0000-00-00 00:00:00', 1),
(979, 1057, 44, 5, 1, 'He looking for data entry Job', 50, '0000-00-00 00:00:00', 1),
(980, 1052, 53, 5, 0, 'she dont know the basic Excel also, hvng 5 yrs exp but not in this field.. ', 50, '0000-00-00 00:00:00', 1),
(981, 1067, 38, 5, 1, 'Her Voice Is Too Low and will not suit for our field', 50, '0000-00-00 00:00:00', 1),
(982, 1068, 38, 5, 1, 'She Is Looking For Non Voice Process', 50, '0000-00-00 00:00:00', 1),
(983, 1056, 54, 5, 0, 'He will not sustain, Package is high ', 50, '0000-00-00 00:00:00', 1),
(984, 1076, 15, 4, 4, '15k salary fixed', 50, '0000-00-00 00:00:00', 1),
(985, 1074, 21, 2, 4, 'Need To Check Distance,2 Hrs ', 50, '0000-00-00 00:00:00', 1),
(986, 1075, 21, 5, 3, 'long distance 2 hrs travel...', 50, '0000-00-00 00:00:00', 1),
(987, 1089, 24, 9, 0, 'rm profile', 50, '0000-00-00 00:00:00', 1),
(988, 1085, 54, 8, 0, 'Not attendend', 50, '0000-00-00 00:00:00', 1),
(989, 1079, 14, 7, 4, 'salary 10k need to confirm the joining date', 50, '0000-00-00 00:00:00', 1),
(990, 1081, 14, 5, 1, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(991, 1041, 13, 9, 0, 'he is intrested in mis', 50, '0000-00-00 00:00:00', 1),
(992, 1078, 38, 2, 3, 'Candidate okay for me...Kindly Arrange telephonic round and confirm this candidate from your side.....', 50, '0000-00-00 00:00:00', 1),
(993, 999, 13, 5, 3, 'Convincing Skills low', 50, '0000-00-00 00:00:00', 1),
(994, 1011, 21, 5, 3, 'Not Sustain Long Term Bcz Of Family Backround', 50, '0000-00-00 00:00:00', 1),
(995, 1076, 8, 2, 2, 'no sales exp too', 15, '2020-10-12 11:52:09', 1),
(996, 1084, 21, 5, 3, 'already he worked in mobile showroom , paintshop , not profiled also expecting 20 k salary ', 50, '0000-00-00 00:00:00', 1),
(997, 1080, 54, 2, 0, 'next interview on friday 16-10-2020\n', 50, '0000-00-00 00:00:00', 1),
(998, 1089, 8, 4, 0, 'Check for RM', 24, '2020-10-12 12:12:33', 1),
(999, 1082, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1000, 1083, 14, 5, 1, 'not fit for sales ', 50, '0000-00-00 00:00:00', 1),
(1001, 1086, 54, 2, 0, 'She is Completely Nervous, so we given two weeks of time to learn.', 50, '0000-00-00 00:00:00', 1),
(1002, 1073, 13, 7, 5, 'Communication xxampConvincing Skills good (ok 11k salary joining date oct 15th)', 50, '0000-00-00 00:00:00', 1),
(1003, 1097, 16, 5, 1, 'NO COMUNICATION SKLIIS, SUSTAIN DOUBT', 50, '0000-00-00 00:00:00', 1),
(1004, 1089, 40, 4, 4, '25k expected/ But doesnxquott have exp in revenue generation sales...but seems like a quick learner', 8, '2020-10-12 12:48:02', 1),
(1005, 1098, 13, 5, 2, 'Confidence Level very low', 50, '0000-00-00 00:00:00', 1),
(1006, 1088, 38, 2, 3, 'Okay for me...but expecting high package....kindly arrange telephonic round and confirm this candidate', 50, '0000-00-00 00:00:00', 1),
(1007, 1094, 54, 2, 0, 'he have a next round on 15-10-2020', 50, '0000-00-00 00:00:00', 1),
(1008, 1096, 54, 5, 0, 'he is Interested in java', 50, '0000-00-00 00:00:00', 1),
(1009, 1104, 14, 5, 1, 'not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(1010, 1100, 54, 5, 0, 'he dont Have basic idea in php and he is not active', 50, '0000-00-00 00:00:00', 1),
(1011, 1091, 16, 4, 4, 'Good Cominication Skills,Sustain No Doubt Salary Expect 13k ', 50, '0000-00-00 00:00:00', 1),
(1012, 1077, 14, 5, 1, 'not fit for this job', 50, '0000-00-00 00:00:00', 1),
(1013, 1102, 54, 2, 0, 'have a next round on 16-10-2020\n', 50, '0000-00-00 00:00:00', 1),
(1014, 1089, 18, 4, 0, 'Yet to see', 40, '2020-10-12 01:55:22', 1),
(1015, 1095, 38, 7, 3, 'Kindly Confirm Her Joining xxamp Salary', 50, '0000-00-00 00:00:00', 1),
(1016, 1041, 8, 4, 0, 'check for MIS', 13, '2020-10-12 02:08:19', 1),
(1017, 1089, 44, 5, 1, 'Not fit for life sales', 18, '2020-10-12 02:09:35', 1),
(1018, 1062, 54, 5, 0, 'he is Completely Interested in java so he will not sustain', 50, '0000-00-00 00:00:00', 1),
(1019, 1074, 8, 2, 0, 'long distance', 21, '2020-10-12 02:50:07', 1),
(1020, 1074, 21, 4, 0, 'need to check distance ,she is from kundrathur ...', 21, '2020-10-12 02:50:07', 1),
(1021, 1106, 54, 5, 0, 'He is looking job in sql. but we are looking php.\nprofile not matched', 50, '0000-00-00 00:00:00', 1),
(1022, 1105, 54, 8, 0, 'Not Attended', 50, '0000-00-00 00:00:00', 1),
(1023, 1091, 8, 3, 0, '13K for thiyagu team', 16, '2020-10-12 03:08:08', 1),
(1024, 1073, 8, 3, 0, '11K for muthu team', 13, '2020-10-12 03:31:06', 1),
(1025, 1079, 8, 3, 0, '10K for priyanka team', 14, '2020-10-12 03:31:33', 1),
(1026, 1107, 53, 2, 0, 'hvng exp n programming field cTS, but looking for hr. pls hold this profile', 50, '0000-00-00 00:00:00', 1),
(1027, 1041, 53, 5, 0, 'in excel he dont know the basic formulas also', 8, '2020-10-12 04:07:08', 1),
(1028, 1095, 8, 3, 0, '11K for gowshick team', 38, '2020-10-12 05:26:16', 1),
(1029, 1078, 8, 3, 0, '15K for gowshick team', 38, '2020-10-12 06:56:45', 1),
(1030, 1078, 38, 4, 0, 'Kindly confirm joining and salary. ', 38, '2020-10-12 06:56:45', 1),
(1031, 1111, 21, 5, 2, 'she is from kodungaiyur 1;30 hrs above travelxxamp also no maturity', 50, '0000-00-00 00:00:00', 1),
(1032, 1044, 29, 7, 4, 'selected as rM for 22k salary, sarath team doj 15th oct 2020', 51, '2020-10-13 10:02:31', 1),
(1033, 632, 51, 5, 0, 'looking for more salary', 51, '2020-10-13 10:03:37', 1),
(1034, 1110, 13, 7, 4, 'Confidence Level good (10k salary)', 7, '0000-00-00 00:00:00', 1),
(1035, 1119, 28, 5, 0, 'Not ans basic php questions', 7, '0000-00-00 00:00:00', 1),
(1036, 1118, 28, 5, 0, 'Not ans basic php questions', 7, '0000-00-00 00:00:00', 1),
(1037, 1108, 14, 5, 1, 'not fit for sales he looking for data entry ', 7, '0000-00-00 00:00:00', 1),
(1038, 1121, 53, 9, 0, 'he came for php', 7, '0000-00-00 00:00:00', 1),
(1039, 1112, 21, 5, 3, 'Not Sustain Long Term bcz he exp 15 k above sal ,dont have 2 wheeler , no reliving , payslip also', 7, '0000-00-00 00:00:00', 1),
(1040, 1090, 28, 5, 0, 'He is not strong in php basic', 7, '0000-00-00 00:00:00', 1),
(1041, 1035, 8, 3, 0, '11K for gowshick team', 38, '2020-10-13 11:51:32', 1),
(1042, 1035, 38, 7, 0, 'Confirm her joining by wednesday', 38, '2020-10-13 11:51:32', 1),
(1043, 1110, 8, 3, 2, '10K for muthu team', 13, '2020-10-13 11:55:20', 1),
(1044, 1122, 53, 5, 0, 'she s hvng oly exp in billing. she wont suit for any profile at cafs', 7, '0000-00-00 00:00:00', 1),
(1045, 1123, 15, 5, 0, 'not sustain', 7, '0000-00-00 00:00:00', 1),
(1046, 1124, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1047, 1130, 14, 5, 1, 'looking for data entry not interested in sales', 7, '0000-00-00 00:00:00', 1),
(1048, 1120, 21, 5, 3, 'Not Sustain Long Term Bcz , She Compl B.Ed , Due To Covid Schools Are Not Opened Now, Once Open She Went', 7, '0000-00-00 00:00:00', 1),
(1049, 1099, 53, 2, 0, 'he s not intrested n field, hvng exp in mis, explaind task, asked to come for next round once u prepared the task.', 7, '0000-00-00 00:00:00', 1),
(1050, 1076, 8, 3, 0, '15K for saravana team', 8, '2020-10-13 01:49:11', 1),
(1051, 1115, 13, 7, 4, 'ok,10.5k salary need to confirm joining date', 7, '0000-00-00 00:00:00', 1),
(1052, 1117, 53, 4, 0, 'gud communication. but he s npt ok with bonds, pls check sustainability', 7, '0000-00-00 00:00:00', 1),
(1053, 1152, 14, 5, 1, 'long distance and not even to handle the pressure ', 7, '0000-00-00 00:00:00', 1),
(1054, 1150, 21, 5, 2, 'Rejected Bcz, She Worked In Personal Loan At Last 6 Months , She Quit Bcz Of Target xxamp Job Pressure , Also Expecting 13 K Salary ..', 7, '0000-00-00 00:00:00', 1),
(1055, 1115, 8, 2, 0, 'she is not from chennai. she need to confirm her room and update us.then doj', 13, '2020-10-13 03:47:37', 1),
(1056, 1153, 21, 5, 2, 'Rejected Bcz, She Worked In Personal Loan At Last 6 Months , She Quit Bcz Of Target xxamp Job Pressure , Also Expecting 13 K Salary ..', 7, '0000-00-00 00:00:00', 1),
(1057, 1156, 21, 4, 4, 'ok selected ', 50, '0000-00-00 00:00:00', 1),
(1058, 1151, 13, 5, 2, ' not suitable for pressure handling so Sustainability Low', 7, '0000-00-00 00:00:00', 1),
(1059, 1170, 31, 9, 3, 'better to check with finance and accounts if possible', 7, '0000-00-00 00:00:00', 1),
(1060, 1131, 53, 5, 0, 'very low voice, not convincing', 7, '0000-00-00 00:00:00', 1),
(1061, 1171, 13, 5, 2, 'Communication very poor so not fit for telesales', 7, '0000-00-00 00:00:00', 1),
(1062, 1157, 21, 5, 3, 'He Is Doing MBA , Week End Class Have ,and also low confidence , not sustain long term also...', 7, '0000-00-00 00:00:00', 1),
(1063, 1117, 8, 4, 0, 'check with sustainability', 53, '2020-10-14 11:11:50', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(1064, 1121, 54, 5, 0, 'not good in technical', 53, '2020-10-14 11:17:51', 1),
(1065, 1132, 53, 4, 0, 'pls check, average communication, job must for family situation', 7, '0000-00-00 00:00:00', 1),
(1066, 1173, 14, 7, 4, 'salary 10k need to confirm the joining date', 7, '0000-00-00 00:00:00', 1),
(1067, 1117, 54, 5, 0, 'Not Attended', 8, '2020-10-14 11:43:40', 1),
(1068, 1126, 53, 5, 0, 'fresher, she dnt know anything abt rec, exp min 15k salary', 7, '0000-00-00 00:00:00', 1),
(1069, 1149, 28, 2, 0, 'Need To Recall 1 Week Time', 7, '0000-00-00 00:00:00', 1),
(1070, 1133, 53, 4, 0, 'gud communication. ok for hr profile, need to check sustainability', 7, '0000-00-00 00:00:00', 1),
(1071, 1143, 28, 2, 0, 'Need to recall 1 week time', 7, '0000-00-00 00:00:00', 1),
(1072, 1135, 53, 5, 0, 'not bold, not ok with bond', 7, '0000-00-00 00:00:00', 1),
(1073, 1156, 53, 7, 0, 'selected. sal 11 to 12k. immediate joing. dhivya team', 21, '2020-10-14 12:12:30', 1),
(1074, 1156, 8, 3, 0, '12K for Dhivya team', 53, '2020-10-14 12:28:53', 1),
(1075, 1133, 8, 2, 0, 'need to confirm joining and salary', 53, '2020-10-14 12:29:32', 1),
(1076, 1132, 8, 5, 0, 'no communication. no previous job analysis and not very clear about her topic.', 53, '2020-10-14 12:31:28', 1),
(1077, 1172, 13, 5, 2, 'not fit for telesales', 7, '0000-00-00 00:00:00', 1),
(1078, 1175, 53, 5, 0, 'not intrested in bond', 7, '0000-00-00 00:00:00', 1),
(1079, 1170, 8, 5, 0, 'looking for job in Accounts.', 31, '2020-10-14 12:43:16', 1),
(1080, 1146, 53, 4, 0, 'in meeting. so forwarded to kayal', 7, '0000-00-00 00:00:00', 1),
(1081, 1129, 13, 5, 2, 'not suitable for pressure handling', 7, '0000-00-00 00:00:00', 1),
(1082, 1181, 53, 8, 0, 'he left frm office', 7, '0000-00-00 00:00:00', 1),
(1083, 1183, 21, 5, 3, 'Not Sustain 2 Comp Quit In Last 1 Yr Bec Of Personal Reason , ', 7, '0000-00-00 00:00:00', 1),
(1084, 1158, 14, 8, 0, 'not attend the interview', 7, '0000-00-00 00:00:00', 1),
(1085, 1140, 53, 5, 0, 'he is not ok for HR profile, but exp sal is 30k', 7, '0000-00-00 00:00:00', 1),
(1086, 1137, 53, 7, 0, 'she s ok with pne year bond, exp sal is 12k, due to brother marriage asking joining next month, i asked to cnfrm with priyanka', 7, '0000-00-00 00:00:00', 1),
(1087, 1179, 13, 7, 4, 'OK,11K SALARY BUT EXPECTED SALARY HIGH', 7, '0000-00-00 00:00:00', 1),
(1088, 1173, 8, 3, 0, '10K for priyanka team', 14, '2020-10-14 02:49:33', 1),
(1089, 1044, 8, 3, 0, '22K for Sarath team', 29, '2020-10-14 03:32:00', 1),
(1090, 1195, 8, 3, 0, 'with Ded. 23211 as take home. for HR-G', 7, '0000-00-00 00:00:00', 1),
(1091, 1195, 53, 7, 0, 'selected sal 28k ...doj pls check with him', 8, '2020-10-14 04:28:34', 1),
(1092, 1137, 8, 2, 0, 'need to confirm her joining and salary', 53, '2020-10-14 04:36:31', 1),
(1093, 1146, 8, 5, 0, 'will not suite for HR, no understanding, no listening and avg,. comm. No job need.', 53, '2020-10-14 04:39:32', 1),
(1094, 1179, 8, 3, 0, '11K for muthu team', 13, '2020-10-14 05:02:23', 1),
(1095, 1148, 8, 4, 0, 'check for MIS', 7, '0000-00-00 00:00:00', 1),
(1096, 1148, 53, 5, 0, 'dnt have knowledge in excel', 8, '2020-10-14 05:48:48', 1),
(1097, 1177, 21, 5, 1, 'Not Sustain Bcz , He Is Interested In Customer Support Proces, Dont Want Sales Profile, Also Interested In IT Prof', 50, '0000-00-00 00:00:00', 1),
(1098, 1197, 28, 2, 0, 'Need to time for recall the php basic. Next interview on 19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1099, 1207, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(1100, 1206, 28, 2, 0, 'He need to recall the php basic next interview on 19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1101, 1210, 28, 2, 0, 'He need to time for recall basic php, next interview on 19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1102, 1209, 13, 7, 4, 'ok,10.5k salary', 50, '0000-00-00 00:00:00', 1),
(1103, 1211, 28, 4, 0, 'She have good answering php basic questions.', 50, '0000-00-00 00:00:00', 1),
(1104, 1199, 53, 7, 0, 'gud communication. hvng exp in this fiel, sal 13 to 15k', 50, '0000-00-00 00:00:00', 1),
(1105, 1212, 22, 5, 0, 'not satisfied', 50, '0000-00-00 00:00:00', 1),
(1106, 1176, 53, 4, 0, 'check sustainability, average caller', 50, '0000-00-00 00:00:00', 1),
(1107, 1217, 28, 2, 0, 'next interview on 19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1108, 1205, 53, 5, 0, 'he s thinking to take calls. he wont take 80 calls per day', 50, '0000-00-00 00:00:00', 1),
(1109, 1209, 8, 3, 0, '10.5K for muthu team', 13, '2020-10-15 11:54:38', 1),
(1110, 1215, 21, 5, 1, 'He Is Interested In Father Buisness, Current Situtation Only Need Job', 50, '0000-00-00 00:00:00', 1),
(1111, 1198, 36, 5, 0, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(1112, 1193, 53, 7, 0, 'gud communication, sal 13 to 15k.', 50, '0000-00-00 00:00:00', 1),
(1113, 1185, 53, 5, 0, 'poor communication, he dont hve exp in hr bt looking 15k minimum', 50, '0000-00-00 00:00:00', 1),
(1114, 1188, 14, 5, 1, 'looking for data entry not fit for sales', 50, '0000-00-00 00:00:00', 1),
(1115, 1201, 13, 5, 1, 'Pressure Handling very poor', 50, '0000-00-00 00:00:00', 1),
(1116, 1220, 21, 5, 1, 'Not Bold Not Sustain Bcz, 1;30 Hrs Travel', 50, '0000-00-00 00:00:00', 1),
(1117, 1219, 14, 5, 1, 'not fit for voice process', 50, '0000-00-00 00:00:00', 1),
(1118, 1213, 53, 4, 0, 'holded for system round, he knw oly excel nt macros nd spreadsheet', 50, '0000-00-00 00:00:00', 1),
(1119, 1221, 30, 7, 3, 'candidate okay....confirm her salary and joining', 50, '0000-00-00 00:00:00', 1),
(1120, 1214, 13, 5, 2, 'not suitable for tele sales', 50, '0000-00-00 00:00:00', 1),
(1121, 1208, 28, 2, 0, 'Need to recall basic php, next interview schedule on 19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1122, 1226, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(1123, 1211, 54, 7, 4, 'CTC --101,052 after Deduction 8000 Monthly take, joining 26 th oct 2020', 28, '2020-10-15 01:16:24', 1),
(1124, 1231, 28, 5, 0, 'He is not know android and Php basic', 50, '0000-00-00 00:00:00', 1),
(1125, 1227, 31, 7, 4, 'Candidate okay', 50, '0000-00-00 00:00:00', 1),
(1126, 1226, 8, 3, 0, '10K for Priyanka team', 14, '2020-10-15 02:27:14', 1),
(1127, 1207, 8, 3, 0, '10K for priyanka team', 14, '2020-10-15 02:29:37', 1),
(1128, 1213, 54, 5, 0, 'will not complete the task\n', 53, '2020-10-15 03:01:00', 1),
(1129, 1176, 8, 5, 0, 'not okay with bond and will not suite for our HR process', 53, '2020-10-15 03:01:37', 1),
(1130, 1199, 8, 3, 0, '13K as TH.', 53, '2020-10-15 03:03:13', 1),
(1131, 1193, 8, 3, 0, '13K as TH with out det. ', 53, '2020-10-15 03:03:44', 1),
(1132, 1155, 8, 5, 0, 'salary exp is high. 18K and looking for job change (salary)', 50, '0000-00-00 00:00:00', 1),
(1133, 1244, 8, 2, 0, '3yr exp but not completely into rec. last th is 20K. ', 50, '0000-00-00 00:00:00', 1),
(1134, 1133, 8, 3, 0, '13K as TH', 8, '2020-10-15 05:12:17', 1),
(1135, 1221, 8, 3, 0, '24k for RM', 30, '2020-10-15 05:59:40', 1),
(1136, 1240, 53, 4, 0, 'check sustainability', 50, '0000-00-00 00:00:00', 1),
(1137, 1243, 21, 5, 2, 'Not Sustain, Low Confidence , Not Bold, Noflow In Words ,Come With Friend Only..', 50, '0000-00-00 00:00:00', 1),
(1138, 1245, 13, 5, 2, 'NOT SUITABLE FOR TELESALES', 50, '0000-00-00 00:00:00', 1),
(1139, 1248, 28, 2, 0, 'He is fresher not Experience in Relevant filed. But he ans basic php questions. Next interview on 19/10/2020', 50, '0000-00-00 00:00:00', 1),
(1140, 1241, 53, 4, 0, 'selected fr rec', 50, '0000-00-00 00:00:00', 1),
(1141, 1252, 28, 5, 0, 'He is not Know basic php', 50, '0000-00-00 00:00:00', 1),
(1142, 1228, 13, 5, 2, 'he is intrested only non-voice process', 50, '0000-00-00 00:00:00', 1),
(1143, 1242, 14, 7, 4, 'salary 10k need to confirm the joining date ', 50, '0000-00-00 00:00:00', 1),
(1144, 1251, 14, 7, 4, 'salary 10k need to confirm joining date', 50, '0000-00-00 00:00:00', 1),
(1145, 1257, 21, 5, 2, 'Not Sustain Bez His Brother Also Work In Lic ...,Already Teeth Pain ...', 50, '0000-00-00 00:00:00', 1),
(1146, 1174, 13, 7, 5, 'ok,10.5k salary joining date Oct 19th', 50, '0000-00-00 00:00:00', 1),
(1147, 1261, 21, 5, 1, 'He Is Interested In Customer Care Base Or Cus Support', 7, '0000-00-00 00:00:00', 1),
(1148, 1256, 39, 4, 2, '50-50 we can try', 50, '0000-00-00 00:00:00', 1),
(1149, 970, 27, 5, 0, 'Task Incomplete', 27, '2020-10-16 12:58:56', 1),
(1150, 705, 27, 5, 0, 'not interested for bond.', 27, '2020-10-16 01:00:57', 1),
(1151, 1174, 8, 3, 0, '10.5K for muthu team', 13, '2020-10-16 01:08:33', 1),
(1152, 659, 13, 5, 0, 'person not attend the call ringing only ', 13, '2020-10-16 01:26:20', 1),
(1153, 1242, 8, 3, 0, '10K for priyanka team', 14, '2020-10-16 01:28:01', 1),
(1154, 1251, 8, 3, 0, '10K for priyanka team', 14, '2020-10-16 01:30:26', 1),
(1155, 1202, 53, 4, 0, 'check sustainability', 50, '0000-00-00 00:00:00', 1),
(1156, 1262, 53, 4, 0, 'asked to come monday', 50, '0000-00-00 00:00:00', 1),
(1157, 1256, 56, 5, 1, 'he will not suit for this field', 39, '2020-10-16 02:30:11', 1),
(1158, 1263, 13, 5, 2, 'communication low and expected salary High', 50, '0000-00-00 00:00:00', 1),
(1159, 1267, 8, 4, 0, 'has 5+ yr exp in MIS, check for MIS profile.', 50, '0000-00-00 00:00:00', 1),
(1160, 1267, 53, 2, 0, 'gvn task. asked to prepare', 8, '2020-10-16 05:25:46', 1),
(1161, 1137, 8, 5, 0, 'hold for HR- will not join. long distance.', 8, '2020-10-16 05:26:39', 1),
(1162, 1115, 8, 5, 0, 'will not join.', 8, '2020-10-16 05:30:18', 1),
(1163, 1074, 8, 5, 0, 'will not join', 8, '2020-10-16 05:32:50', 1),
(1164, 920, 8, 5, 0, 'told no int in insurance', 8, '2020-10-16 05:33:38', 1),
(1165, 685, 8, 5, 0, 'not selected in telephonic interview', 8, '2020-10-16 05:34:38', 1),
(1166, 851, 8, 5, 0, 'not selected in BAxa', 8, '2020-10-16 05:35:03', 1),
(1167, 1202, 8, 2, 0, 'for Bond she need to discuss with her parents.', 53, '2020-10-16 05:41:05', 1),
(1168, 1240, 8, 2, 0, 'For Bond She Need To Discuss With Her Parents.', 53, '2020-10-16 05:41:23', 1),
(1169, 1241, 8, 3, 0, '12650 as CTC', 53, '2020-10-16 05:41:52', 1),
(1170, 1262, 8, 2, 0, 'Next round on monday', 53, '2020-10-16 05:42:13', 1),
(1171, 1269, 28, 4, 0, 'He is 6 month experience in php. good ans php basic', 50, '0000-00-00 00:00:00', 1),
(1172, 1271, 28, 5, 0, 'She is not Know basic skill in php', 50, '0000-00-00 00:00:00', 1),
(1173, 1254, 28, 5, 0, 'She is not Know basic Php skills', 50, '0000-00-00 00:00:00', 1),
(1174, 1277, 53, 4, 0, 'ok for rec, gud communication', 50, '0000-00-00 00:00:00', 1),
(1175, 1275, 21, 9, 0, 'sarath reference for rm', 50, '0000-00-00 00:00:00', 1),
(1176, 1269, 27, 2, 0, 'Task Given. He is asking 1 hour time to complete. i gave 2 hours time.', 28, '2020-10-17 11:01:14', 1),
(1177, 1270, 28, 5, 0, 'He is Dont Know Basic skills, PHP, Mysql and JavaScript ', 7, '0000-00-00 00:00:00', 1),
(1178, 1253, 53, 4, 0, 'check sustainability', 7, '0000-00-00 00:00:00', 1),
(1179, 1255, 13, 5, 3, 'communication skill average but expected salary High', 7, '0000-00-00 00:00:00', 1),
(1180, 1278, 28, 5, 0, 'He is not strong basic skill set', 7, '0000-00-00 00:00:00', 1),
(1181, 1279, 28, 5, 0, 'He Is Not Strong Basic Skill Set', 7, '0000-00-00 00:00:00', 1),
(1182, 1280, 16, 5, 0, 'no comunication skills ', 7, '0000-00-00 00:00:00', 1),
(1183, 1282, 13, 7, 5, 'ok,10.5k salary monday joining', 7, '0000-00-00 00:00:00', 1),
(1184, 1284, 21, 5, 1, 'he Is Come With Friend Only xxampalso Not Bold...', 7, '0000-00-00 00:00:00', 1),
(1185, 1285, 21, 5, 1, 'Not Bold ,No Voice Clarity, She Is Come With His Friend ', 7, '0000-00-00 00:00:00', 1),
(1186, 1282, 8, 3, 0, '10.5K for Muthu team', 13, '2020-10-17 02:07:58', 1),
(1187, 1281, 14, 7, 4, 'salary 11k need to confirm joining date', 7, '0000-00-00 00:00:00', 1),
(1188, 1288, 13, 5, 1, 'she is looking for the job temporary only', 7, '0000-00-00 00:00:00', 1),
(1189, 1277, 54, 5, 0, 'Se will not Sustain because willing to join indian army.', 53, '2020-10-17 02:53:19', 1),
(1190, 1253, 8, 5, 0, 'Pronounced that she will move if she get better offer. not okay with bond. no knowledge in HR process and time being looking for job.', 53, '2020-10-17 02:54:01', 1),
(1191, 1281, 8, 3, 0, '11K for Priyanka team', 14, '2020-10-17 03:24:08', 1),
(1192, 1269, 54, 5, 0, 'He will not sustain', 27, '2020-10-17 05:22:21', 1),
(1193, 1269, 27, 4, 0, 'Task Completed.', 27, '2020-10-17 05:22:21', 1),
(1194, 1275, 8, 8, 0, 'check for rm', 21, '2020-10-17 06:24:34', 1),
(1195, 1291, 28, 5, 0, 'She is Not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1196, 1197, 28, 5, 0, 'He is not strong in basic php', 28, '2020-10-19 11:15:52', 1),
(1197, 1248, 27, 5, 0, 'Task Not Completed.', 28, '2020-10-19 11:16:33', 1),
(1198, 1248, 28, 4, 0, 'He is Know basic Php skill.', 28, '2020-10-19 11:16:33', 1),
(1199, 1286, 53, 4, 0, 'gud communication, fresher, expecting abv 15k. pls check sustainability', 50, '0000-00-00 00:00:00', 1),
(1200, 1301, 14, 7, 4, 'salary 10k need to confirm joining date ', 50, '0000-00-00 00:00:00', 1),
(1201, 1304, 28, 5, 0, 'He is not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1202, 1303, 28, 4, 0, 'First interview taken by gokul sir.', 50, '0000-00-00 00:00:00', 1),
(1203, 1302, 21, 4, 4, 'Need To Check ,Sustainability ,She Is Come With Friend ,, xxamp Also Need To Check Distance ', 50, '0000-00-00 00:00:00', 1),
(1204, 1293, 28, 5, 0, 'He is not strong in basic php and html', 50, '0000-00-00 00:00:00', 1),
(1205, 1206, 28, 5, 0, 'He is not strong in basic php', 28, '2020-10-19 12:14:31', 1),
(1206, 1294, 28, 5, 0, 'He is not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1207, 1305, 29, 7, 3, 'Selected for RM, Salary 23000, once completed 6 lacs in next 3 months with average 2 lacs month he will be eligible for 2k increment, reporting to sarath', 50, '0000-00-00 00:00:00', 1),
(1208, 1301, 8, 3, 0, '10K for priyanka team', 14, '2020-10-19 12:27:56', 1),
(1209, 1289, 28, 5, 0, 'He is not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1210, 1258, 53, 5, 0, 'having just 2 months experience. not suit for recruiter profile..', 50, '0000-00-00 00:00:00', 1),
(1211, 1308, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(1212, 1306, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1213, 1292, 28, 5, 0, 'He is not strong in php', 50, '0000-00-00 00:00:00', 1),
(1214, 1295, 21, 9, 0, 'mIS ', 50, '0000-00-00 00:00:00', 1),
(1215, 1302, 8, 3, 0, '10K for Dhivya team.', 21, '2020-10-19 01:09:35', 1),
(1216, 1310, 21, 5, 3, 'Not bold, Low Confidence ,She Is Interested In Data entry', 50, '0000-00-00 00:00:00', 1),
(1217, 1303, 27, 2, 0, 'Dynamic Task Given.', 28, '2020-10-19 02:29:17', 1),
(1218, 1164, 14, 5, 1, 'not suitable for sales looking for data entry', 50, '0000-00-00 00:00:00', 1),
(1219, 1250, 13, 5, 2, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(1220, 1295, 53, 5, 0, 'she know oly vlookup.', 21, '2020-10-19 03:00:43', 1),
(1221, 1195, 8, 3, 0, 'with Ded. 23211 as take home. for HR-G', 53, '2020-10-19 04:06:24', 1),
(1222, 1286, 8, 5, 0, 'no exp in HR and exp is 14-15K as TH. will not suite for REc.', 53, '2020-10-19 04:21:45', 1),
(1223, 1202, 8, 5, 0, 'not okay with bond. will not join.', 8, '2020-10-19 04:46:40', 1),
(1224, 1240, 8, 5, 0, 'Not Okay With Bond. Will Not Join.', 8, '2020-10-19 04:46:49', 1),
(1225, 1307, 53, 4, 0, 'check sustainability', 50, '0000-00-00 00:00:00', 1),
(1226, 1321, 8, 2, 0, 'salary exp upto 20K. has 1yr exp in rec. ', 50, '0000-00-00 00:00:00', 1),
(1227, 1317, 21, 5, 3, 'Not Sustain ,He Searched Data Entry Job ...', 7, '0000-00-00 00:00:00', 1),
(1228, 1328, 13, 5, 2, 'not suitable for pressure handling', 7, '0000-00-00 00:00:00', 1),
(1229, 1329, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1230, 1318, 21, 5, 0, 'already she went training in consultancy .. xxamp also long distance ', 7, '0000-00-00 00:00:00', 1),
(1231, 1307, 8, 2, 0, 'need to check. no job need.', 53, '2020-10-20 12:02:32', 1),
(1232, 1327, 21, 5, 0, 'he have 18 arrears xxamp also not fit for our process', 7, '0000-00-00 00:00:00', 1),
(1233, 1315, 24, 5, 1, 'voice not bold.. not convince for sale field.', 7, '0000-00-00 00:00:00', 1),
(1234, 1338, 57, 5, 1, 'he is not sales profile .. voice is not clear ', 7, '0000-00-00 00:00:00', 1),
(1235, 1340, 19, 5, 1, 'no longer sustain', 7, '0000-00-00 00:00:00', 1),
(1236, 1314, 21, 9, 0, 'try renewal calls ', 7, '0000-00-00 00:00:00', 1),
(1237, 1335, 21, 5, 3, 'not fit for our process', 7, '0000-00-00 00:00:00', 1),
(1238, 1316, 31, 5, 0, 'Candidate expecting accountant of finance department. Not interested in sales', 7, '0000-00-00 00:00:00', 1),
(1239, 1341, 21, 5, 0, 'kannan met this candidate, not ok for crm', 7, '0000-00-00 00:00:00', 1),
(1240, 1343, 28, 5, 0, 'He is not strong in technically and not sustain. Interview Taken by Gokul Sir.', 7, '0000-00-00 00:00:00', 1),
(1241, 1345, 21, 5, 0, 'she said data entry job only interest', 7, '0000-00-00 00:00:00', 1),
(1242, 1346, 21, 5, 0, 'she is come with friends only....', 7, '0000-00-00 00:00:00', 1),
(1243, 1347, 21, 5, 3, 'Not Sustain , She Is Interested In Non Voice Job xxampAlso Come With His Friend Only ', 7, '0000-00-00 00:00:00', 1),
(1244, 1331, 57, 4, 3, 'select for next round', 7, '0000-00-00 00:00:00', 1),
(1245, 1326, 8, 5, 0, 'will not suite for rec. no knowledge in portal and sal exp is 15K+', 7, '0000-00-00 00:00:00', 1),
(1246, 1322, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(1247, 1352, 29, 5, 1, 'Will not sustain for longer term', 7, '0000-00-00 00:00:00', 1),
(1248, 1331, 22, 7, 3, 'ok for Health Insurance RE profile', 57, '2020-10-20 04:01:11', 1),
(1249, 1314, 53, 5, 0, 'not suit fr telecalling', 21, '2020-10-20 04:24:23', 1),
(1250, 1305, 8, 2, 0, 'he is in notice period. he has to confirm his joining. asked him to drop a mail regarding the same.', 29, '2020-10-20 04:38:10', 1),
(1251, 1331, 8, 3, 0, '14K for Syed team', 22, '2020-10-20 07:24:18', 1),
(1252, 1350, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1253, 1299, 21, 4, 3, 'ok for health ', 7, '0000-00-00 00:00:00', 1),
(1254, 1377, 21, 9, 0, 'he is ok with RE profile', 7, '0000-00-00 00:00:00', 1),
(1255, 1351, 28, 4, 0, 'He is answer in basic php. ', 7, '0000-00-00 00:00:00', 1),
(1256, 1353, 21, 5, 2, 'Already Relived In Credit Card Sales Due To Pressure ', 7, '0000-00-00 00:00:00', 1),
(1257, 1380, 13, 9, 0, 'refer to reniwal dept', 7, '0000-00-00 00:00:00', 1),
(1258, 1348, 21, 5, 2, 'Need To Check Bcz ,She Already Worked 3 Companies In Last 4 Yrs xxamp Also Expecting High Salary For Crm 18k Above ', 7, '0000-00-00 00:00:00', 1),
(1259, 1332, 31, 5, 2, 'Expecting service based job. not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1260, 1367, 24, 4, 0, 'NOT INTREST FOR RE PROFILE.. CHECK WITH CRM PROFILE', 7, '0000-00-00 00:00:00', 1),
(1261, 1359, 13, 5, 1, 'he is intrested only non-voice process', 7, '0000-00-00 00:00:00', 1),
(1262, 1342, 19, 7, 4, 'Selected', 7, '0000-00-00 00:00:00', 1),
(1263, 1381, 21, 5, 3, 'He Already Relived Credit Card Job Bcz Not Able To Handle Pressure...', 7, '0000-00-00 00:00:00', 1),
(1264, 1383, 53, 5, 0, 'not suit fr mis', 7, '0000-00-00 00:00:00', 1),
(1265, 1372, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1266, 1355, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1267, 1356, 13, 5, 2, 'communication skill poor', 7, '0000-00-00 00:00:00', 1),
(1268, 1373, 21, 5, 2, 'she is come with her friend only ,xxamp not bold ...', 7, '0000-00-00 00:00:00', 1),
(1269, 1374, 21, 5, 0, 'not suit for our process, she is come with her friend only...', 7, '0000-00-00 00:00:00', 1),
(1270, 1382, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1271, 1367, 8, 4, 0, 'insted dep change suthagar shared profile to me. check for CRM', 24, '2020-10-21 11:43:43', 1),
(1272, 1363, 21, 7, 3, 'candidate ok for crm.. need to confirm joining xxamp salary', 7, '0000-00-00 00:00:00', 1),
(1273, 1376, 21, 4, 0, 'ok for crm , but expecting 15 k salary....', 7, '0000-00-00 00:00:00', 1),
(1274, 1358, 19, 5, 1, 'will not sustain for long term', 7, '0000-00-00 00:00:00', 1),
(1275, 1388, 28, 5, 0, 'She is not answering basic php', 7, '0000-00-00 00:00:00', 1),
(1276, 1362, 44, 5, 2, 'Not fit for life sales', 7, '0000-00-00 00:00:00', 1),
(1277, 1354, 53, 4, 0, 'Will try', 7, '0000-00-00 00:00:00', 1),
(1278, 1360, 21, 5, 0, 'not suit for our process, xxamphe is expecting 20 k for crm (fresher)', 7, '0000-00-00 00:00:00', 1),
(1279, 1351, 27, 5, 1, 'i am not sure he will sustain. He told salary problem in his company. He got a hike in current month. now he expected more from that. i asked him is it ok if we offer the same salary. he is not ready to accept. ', 28, '2020-10-21 12:25:53', 1),
(1280, 1365, 28, 5, 0, 'He is Not strong in basic php', 7, '0000-00-00 00:00:00', 1),
(1281, 1344, 53, 4, 0, 'system round', 7, '0000-00-00 00:00:00', 1),
(1282, 1391, 13, 5, 2, 'he is intrested only non-voice process so not fit for telesales', 7, '0000-00-00 00:00:00', 1),
(1283, 1395, 57, 4, 4, 'selected for next round', 7, '0000-00-00 00:00:00', 1),
(1284, 1394, 24, 5, 0, 'NOT FIT FOR OUR PROFILE', 7, '0000-00-00 00:00:00', 1),
(1285, 1390, 13, 5, 2, 'communication not well but expected salary very high', 7, '0000-00-00 00:00:00', 1),
(1286, 1398, 24, 5, 1, 'not fit for our profile', 7, '0000-00-00 00:00:00', 1),
(1287, 1380, 8, 4, 0, 'For MIS', 13, '2020-10-21 01:42:16', 1),
(1288, 1299, 13, 7, 4, '10k salary,oct 22nd joining', 21, '2020-10-21 02:31:02', 1),
(1289, 1376, 53, 4, 0, 'check fr renewals', 21, '2020-10-21 02:35:11', 1),
(1290, 1378, 28, 4, 0, 'He is good basic php', 7, '0000-00-00 00:00:00', 1),
(1291, 1377, 8, 3, 0, '13k for suthagar team', 21, '2020-10-21 02:40:47', 1),
(1292, 1404, 13, 5, 1, 'not well communication so not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1293, 1379, 21, 5, 0, 'already worked team leader in non voice process....', 7, '0000-00-00 00:00:00', 1),
(1294, 1309, 53, 5, 0, 'nt suit for rec. Asked to go for field but he s not intrested in firls allso, last job he quit due to pressure', 7, '0000-00-00 00:00:00', 1),
(1295, 1363, 8, 3, 0, '13K for Dhivya team', 21, '2020-10-21 02:47:51', 1),
(1296, 1380, 53, 5, 0, 'she s nt opening her mouth also', 8, '2020-10-21 03:07:29', 1),
(1297, 1377, 24, 7, 0, 'candidate selected 13k slry', 8, '2020-10-21 03:12:48', 1),
(1298, 1299, 8, 3, 0, '10K for Muthu team.', 13, '2020-10-21 03:17:50', 1),
(1299, 1378, 27, 5, 0, 'Task Given for this candidate. Task Incomplete. He did not complete even 50%.', 28, '2020-10-21 03:20:34', 1),
(1300, 1403, 21, 5, 2, 'He Is Expected 13 K Above For Crm.....', 7, '0000-00-00 00:00:00', 1),
(1301, 1344, 54, 5, 0, 'Slow, Task Incomplete.', 53, '2020-10-21 05:12:34', 1),
(1302, 1354, 8, 2, 0, 'she need to discuss with her parents.\n', 53, '2020-10-21 05:20:43', 1),
(1303, 1376, 8, 3, 0, '15010 as take home. for renewal', 53, '2020-10-21 05:21:09', 1),
(1304, 1367, 13, 5, 2, 'not suitable for pressure handling', 8, '2020-10-21 05:51:45', 1),
(1305, 1395, 8, 3, 0, '12.5K fotr syed team', 57, '2020-10-21 06:10:44', 1),
(1306, 1342, 8, 3, 0, '16k for kannan team', 19, '2020-10-21 06:22:22', 1),
(1307, 407, 27, 5, 0, 'Task Incomplete. Gave 3 days time and given 2 time excuses. but he could not complete.', 27, '2020-10-22 10:01:57', 1),
(1308, 1424, 28, 5, 0, 'He is not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1309, 1392, 53, 5, 0, ' she knows oly basics, exp 2ok', 50, '0000-00-00 00:00:00', 1),
(1310, 1414, 21, 5, 3, 'Non Voice Job In Cognazant, she said data entry ill be ok ', 50, '0000-00-00 00:00:00', 1),
(1311, 1421, 21, 5, 2, 'Not Bold xxamp Low Confidence Last 1 Year She Not Went for Any Job,,,', 50, '0000-00-00 00:00:00', 1),
(1312, 1415, 24, 7, 0, 'candidate ok 17k salary.. ', 50, '0000-00-00 00:00:00', 1),
(1313, 1416, 53, 5, 0, 'exp 25k, knw hve tht much knowledge', 50, '0000-00-00 00:00:00', 1),
(1314, 1427, 21, 9, 0, 'mIS', 50, '0000-00-00 00:00:00', 1),
(1315, 1410, 21, 5, 0, 'pronouncation problem, xxamp no flow in words', 50, '0000-00-00 00:00:00', 1),
(1316, 1433, 21, 5, 0, 'married she need work from xxamp data entry ill be ok with it..', 50, '0000-00-00 00:00:00', 1),
(1317, 1420, 21, 5, 1, 'not bold,also interested in data entry...', 50, '0000-00-00 00:00:00', 1),
(1318, 1412, 21, 5, 0, '18 age running ', 50, '0000-00-00 00:00:00', 1),
(1319, 1384, 53, 5, 0, 'too long he dnt knw abt PPT', 50, '0000-00-00 00:00:00', 1),
(1320, 1407, 53, 5, 0, 'too long as well as he dnt knw PPT and all', 50, '0000-00-00 00:00:00', 1),
(1321, 1422, 13, 5, 2, 'NOT SUITABLE FOR TELESALES', 50, '0000-00-00 00:00:00', 1),
(1322, 1423, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(1323, 1389, 13, 7, 4, '11K SALARY,MONDAY JOINING', 50, '0000-00-00 00:00:00', 1),
(1324, 1393, 53, 5, 0, 'he s not opening his mouth', 50, '0000-00-00 00:00:00', 1),
(1325, 1428, 53, 4, 0, 'doubt oly, pls check frm ur end also, if ur ok i ll arrange next round of interview at arumbakkam', 50, '0000-00-00 00:00:00', 1),
(1326, 1429, 16, 5, 0, 'NO COMUNICATION SKILLS,LOW PROFILE', 50, '0000-00-00 00:00:00', 1),
(1327, 1434, 13, 5, 2, 'he is intrested only non-voice process', 50, '0000-00-00 00:00:00', 1),
(1328, 1425, 13, 5, 3, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(1329, 1430, 19, 7, 4, 'Salary 14k', 50, '0000-00-00 00:00:00', 1),
(1330, 1427, 53, 5, 0, 'dnt knw basic excel also', 21, '2020-10-22 01:20:30', 1),
(1331, 1389, 8, 3, 0, '11K muthu team', 13, '2020-10-22 01:27:54', 1),
(1332, 1361, 13, 7, 4, '10 to 10.5k salary monday joining', 50, '0000-00-00 00:00:00', 1),
(1333, 1441, 21, 8, 0, 'gone', 50, '0000-00-00 00:00:00', 1),
(1334, 904, 21, 8, 0, 'candidate gone', 50, '0000-00-00 00:00:00', 1),
(1335, 1440, 19, 5, 0, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(1336, 1361, 8, 3, 0, '10.5K for Muthu team', 13, '2020-10-22 02:36:25', 1),
(1337, 1445, 21, 5, 0, 'she is come with her friend only..', 50, '0000-00-00 00:00:00', 1),
(1338, 1211, 8, 3, 0, '8421 and IT tean', 54, '2020-10-22 06:02:34', 1),
(1339, 1415, 8, 3, 0, '17K for RE suthagar team', 24, '2020-10-22 06:32:26', 1),
(1340, 1377, 8, 3, 0, '13k for suthagar team', 24, '2020-10-22 06:38:30', 1),
(1341, 1217, 27, 5, 0, 'Not Completed the system task. ', 28, '2020-10-22 06:52:05', 1),
(1342, 1217, 28, 4, 0, 'System Task', 28, '2020-10-22 06:52:05', 1),
(1343, 1428, 15, 5, 0, '...', 53, '2020-10-23 10:47:06', 1),
(1344, 1455, 13, 5, 1, 'not suitable for voice process', 7, '0000-00-00 00:00:00', 1),
(1345, 1453, 16, 9, 0, 'NOT FIT FOR RE ,ONCE TRY TO CRM', 7, '0000-00-00 00:00:00', 1),
(1346, 1452, 13, 7, 4, 'OK.10K SALARY MONDAY JOINING ', 7, '0000-00-00 00:00:00', 1),
(1347, 1435, 13, 5, 2, 'NOT SUITABLE FOR VOICE PROCESS', 7, '0000-00-00 00:00:00', 1),
(1348, 1432, 28, 5, 0, 'He is Not strong in basic Php', 7, '0000-00-00 00:00:00', 1),
(1349, 1451, 53, 4, 0, 'selected fr second round', 7, '0000-00-00 00:00:00', 1),
(1350, 1419, 8, 2, 0, 'for star', 7, '0000-00-00 00:00:00', 1),
(1351, 1449, 8, 2, 0, 'for Star', 7, '0000-00-00 00:00:00', 1),
(1352, 1452, 8, 3, 0, '10K for muthu team', 13, '2020-10-23 12:21:02', 1),
(1353, 1458, 20, 2, 2, 'candidate missing after 1st round', 7, '0000-00-00 00:00:00', 1),
(1354, 1448, 13, 7, 4, 'ok,10k salary Monday joining', 7, '0000-00-00 00:00:00', 1),
(1355, 1460, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1356, 1459, 8, 4, 2, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(1357, 1447, 8, 5, 2, 'she is Stumbling to speak and her pronunciation is not clear. will not suite for CRM', 7, '0000-00-00 00:00:00', 1),
(1358, 1462, 13, 5, 1, 'not fit for telesales', 7, '0000-00-00 00:00:00', 1),
(1359, 1461, 13, 5, 1, 'not suitable for pressure handling', 7, '0000-00-00 00:00:00', 1),
(1360, 1453, 8, 4, 0, 'check for CRM', 16, '2020-10-23 02:26:24', 1),
(1361, 1459, 16, 5, 0, 'no comunication skill local slaung', 8, '2020-10-23 02:30:20', 1),
(1362, 1453, 13, 5, 1, 'not suitable for tele sales', 8, '2020-10-23 02:31:13', 1),
(1363, 1417, 13, 5, 2, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1364, 1448, 8, 3, 0, '10K for Muthu team', 13, '2020-10-23 02:52:02', 1),
(1365, 1457, 53, 5, 0, 'exp sal 30k min, last package 20k, due to his personal reason he need tht much slary, nd more over he cannot join immediately', 50, '0000-00-00 00:00:00', 1),
(1366, 1430, 8, 3, 0, '14K for kannan team', 19, '2020-10-24 10:35:14', 1),
(1367, 1480, 44, 5, 1, 'He is not fit ', 50, '0000-00-00 00:00:00', 1),
(1368, 1476, 13, 7, 4, '10k salary,monday joining', 50, '0000-00-00 00:00:00', 1),
(1369, 1484, 53, 5, 0, 'poor communication, she is thinking for targets, she s not ok with the targets', 50, '0000-00-00 00:00:00', 1),
(1370, 1474, 24, 5, 0, 'Not Worth For any profile. not even explaining his graduation', 50, '0000-00-00 00:00:00', 1),
(1371, 1487, 13, 5, 2, 'she is intrested only non-voice process', 50, '0000-00-00 00:00:00', 1),
(1372, 1399, 13, 5, 2, 'not suitable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(1373, 1405, 13, 5, 1, 'he is looking for non-voice process', 50, '0000-00-00 00:00:00', 1),
(1374, 1475, 14, 5, 0, 'looking for data entry non voice process not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1375, 1451, 54, 5, 0, 'task not completed', 53, '2020-10-24 11:38:49', 1),
(1376, 1486, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1377, 1470, 53, 5, 0, 'stammering. he wont suit fr mis', 50, '0000-00-00 00:00:00', 1),
(1378, 1471, 53, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(1379, 1473, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1380, 1330, 28, 5, 0, 'He dont Know frame work like wordpress.', 50, '0000-00-00 00:00:00', 1),
(1381, 1488, 14, 4, 4, 'salary 10k need to confirm joining date ', 50, '0000-00-00 00:00:00', 1),
(1382, 1489, 14, 5, 1, 'expecting high salary and sustainability less ', 50, '0000-00-00 00:00:00', 1),
(1383, 1479, 28, 5, 0, 'He is not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1384, 1402, 13, 5, 2, 'not siutable for pressure handling', 50, '0000-00-00 00:00:00', 1),
(1385, 1482, 14, 5, 0, 'looking for non voice process not suitable for telecalling', 50, '0000-00-00 00:00:00', 1),
(1386, 1436, 13, 7, 5, '10k salary,monday joining', 50, '0000-00-00 00:00:00', 1),
(1387, 1469, 28, 5, 0, 'Not strong in basic php', 50, '0000-00-00 00:00:00', 1),
(1388, 1476, 8, 3, 0, '12K for Rec', 13, '2020-10-24 01:58:20', 1),
(1389, 1436, 8, 2, 0, 'to confirm joining', 13, '2020-10-24 02:02:02', 1),
(1390, 1490, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1391, 1491, 14, 5, 1, 'not fit for this profile', 50, '0000-00-00 00:00:00', 1),
(1392, 1492, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1393, 1488, 8, 3, 0, '10k for Priyanka team', 14, '2020-10-24 02:59:10', 1),
(1394, 1499, 13, 5, 2, 'NOT FIT FOR TELESALES', 50, '0000-00-00 00:00:00', 1),
(1395, 1500, 13, 5, 1, 'not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(1396, 1502, 13, 9, 5, 'refer to rE', 50, '0000-00-00 00:00:00', 1),
(1397, 1502, 8, 4, 0, 'Check for RE\n', 13, '2020-10-26 12:34:07', 1),
(1398, 1501, 14, 4, 4, 'need to confirm salary', 50, '0000-00-00 00:00:00', 1),
(1399, 1503, 14, 5, 0, 'looking for data entry not fit for voice', 50, '0000-00-00 00:00:00', 1),
(1400, 1502, 16, 5, 0, 'No communication ,sustain doubt', 8, '2020-10-26 01:03:02', 1),
(1401, 1506, 14, 9, 0, 'expecting high salary need to check rm profile', 50, '0000-00-00 00:00:00', 1),
(1402, 1507, 27, 7, 0, 'Shortlisted. we can offer 8k as a Take home. After 3 months we will give 10k as a take home per month based on the performance.', 7, '0000-00-00 00:00:00', 1),
(1403, 1509, 27, 7, 0, 'Shortlisted. we can offer 8k. ', 7, '0000-00-00 00:00:00', 1),
(1404, 1508, 14, 5, 1, 'not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1405, 1325, 28, 9, 0, 'CRM Interest', 50, '0000-00-00 00:00:00', 1),
(1406, 1513, 14, 5, 0, 'looking for data entry not suitable for sales', 50, '0000-00-00 00:00:00', 1),
(1407, 1485, 14, 5, 0, 'looking for non voice process not suitable for sales', 50, '0000-00-00 00:00:00', 1),
(1408, 1505, 8, 2, 0, 'for next round by tomorrow', 50, '0000-00-00 00:00:00', 1),
(1409, 1325, 8, 4, 0, 'Check for CRM', 28, '2020-10-26 03:35:25', 1),
(1410, 1325, 14, 5, 0, 'not fit for this profile', 8, '2020-10-26 04:18:46', 1),
(1411, 1262, 8, 5, 0, 'told him to attend interview and he not turned back', 8, '2020-10-26 04:36:17', 1),
(1412, 781, 8, 5, 0, 'she will not join bcoz of salary split up', 8, '2020-10-26 04:37:32', 1),
(1413, 257, 8, 5, 0, 'not turned back after her exams.', 8, '2020-10-26 04:38:12', 1),
(1414, 1115, 8, 5, 0, 'no response from her', 8, '2020-10-26 04:39:10', 1),
(1415, 1507, 8, 3, 0, '8K take home', 27, '2020-10-26 04:50:52', 1),
(1416, 1509, 8, 3, 0, '8K take home', 27, '2020-10-26 04:51:46', 1),
(1417, 1518, 19, 5, 1, 'no longer sustain', 7, '0000-00-00 00:00:00', 1),
(1418, 1534, 21, 5, 2, 'Not Sustain Bcz She Need Non Voice Job..xxamp also come with her friend only', 7, '0000-00-00 00:00:00', 1),
(1419, 1533, 21, 5, 3, 'She Ill Come With Her Friend Only', 7, '0000-00-00 00:00:00', 1),
(1420, 1514, 20, 5, 1, 'not suitable for any voice process.', 7, '0000-00-00 00:00:00', 1),
(1421, 1536, 53, 5, 0, 'fresher exp high package she said there is no negosiable', 7, '0000-00-00 00:00:00', 1),
(1422, 1506, 8, 3, 0, '25K for Lokesh team', 14, '2020-10-27 11:00:43', 1),
(1423, 1501, 8, 5, 0, 'will not sustain ', 14, '2020-10-27 11:03:17', 1),
(1424, 1458, 20, 5, 0, 'absconded after 1st round', 20, '2020-10-27 11:08:17', 1),
(1425, 1510, 16, 4, 3, 'Good candidate,sustain no doubt salary expected 13k', 7, '0000-00-00 00:00:00', 1),
(1426, 1538, 19, 7, 4, 'salary 14k', 7, '0000-00-00 00:00:00', 1),
(1427, 1539, 57, 5, 0, 'sustainability and sales ... not good', 7, '0000-00-00 00:00:00', 1),
(1428, 1540, 21, 5, 0, 'long distance ,she is from kundrathur,already worked accountent 3 months ...', 7, '0000-00-00 00:00:00', 1),
(1429, 1542, 57, 4, 4, 'ok for sales ... ', 7, '0000-00-00 00:00:00', 1),
(1430, 1521, 21, 7, 4, 'ok once need to check sustainability ...', 7, '0000-00-00 00:00:00', 1),
(1431, 1541, 19, 5, 1, 'ot fit for sales', 7, '0000-00-00 00:00:00', 1),
(1432, 1287, 28, 5, 0, 'She is Not Strong In basic Php', 7, '0000-00-00 00:00:00', 1),
(1433, 1465, 53, 5, 0, 'she know basics oluy', 7, '0000-00-00 00:00:00', 1),
(1434, 1511, 19, 5, 1, 'not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1435, 1516, 57, 5, 0, 'he is not ok for sales and voice process', 7, '0000-00-00 00:00:00', 1),
(1436, 1544, 19, 5, 1, 'not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1437, 1521, 8, 3, 0, '10K for Dhivya team', 21, '2020-10-27 12:31:21', 1),
(1438, 1542, 8, 3, 0, '13K for syed team', 57, '2020-10-27 01:09:12', 1),
(1439, 1538, 8, 3, 0, '14K for Kannan team', 19, '2020-10-27 01:15:34', 1),
(1440, 1546, 21, 9, 0, 'RE profile given to daniel balaji', 7, '0000-00-00 00:00:00', 1),
(1441, 1537, 38, 5, 2, 'he wil not suit for CRM profile', 50, '0000-00-00 00:00:00', 1),
(1442, 1510, 8, 5, 0, 'he got better offer will not join', 16, '2020-10-27 02:44:37', 1),
(1443, 1547, 21, 8, 0, 'canditate gone', 7, '0000-00-00 00:00:00', 1),
(1444, 1546, 8, 4, 0, 'check for RE', 21, '2020-10-27 04:36:56', 1),
(1445, 1556, 53, 5, 0, 'nt suit fr hr', 7, '0000-00-00 00:00:00', 1),
(1446, 1568, 21, 5, 3, 'not bold low confidence, no flow in words', 7, '0000-00-00 00:00:00', 1),
(1447, 1558, 21, 5, 0, 'not interested in field , ok for crm but he is expecting 18 k ', 7, '0000-00-00 00:00:00', 1),
(1448, 1574, 21, 5, 2, 'he is interested in data entry ', 7, '0000-00-00 00:00:00', 1),
(1449, 1550, 8, 2, 0, 'he need to confirm', 7, '0000-00-00 00:00:00', 1),
(1450, 1559, 8, 4, 3, 'Check for CRM', 7, '0000-00-00 00:00:00', 1),
(1451, 1582, 8, 4, 0, 'reassigned', 7, '0000-00-00 00:00:00', 1),
(1452, 1554, 8, 4, 0, 'check for HR', 7, '0000-00-00 00:00:00', 1),
(1453, 1249, 8, 4, 3, 'Check for RE', 7, '0000-00-00 00:00:00', 1),
(1454, 1566, 8, 2, 0, 'Going to get married by nov. need to discuss about bond.', 7, '0000-00-00 00:00:00', 1),
(1455, 1548, 19, 5, 1, 'not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1456, 1581, 20, 5, 1, 'not fit, doubt in sustainability', 7, '0000-00-00 00:00:00', 1),
(1457, 1523, 57, 5, 1, 'communication and sustainability level worst ', 7, '0000-00-00 00:00:00', 1),
(1458, 1580, 21, 5, 2, 'perungaluthur long distance also not suit for our process', 7, '0000-00-00 00:00:00', 1),
(1459, 1578, 21, 7, 3, 'ok selected , need to confirm joining ', 7, '0000-00-00 00:00:00', 1),
(1460, 1545, 24, 5, 1, 'Not Fit For Sales Field ', 7, '0000-00-00 00:00:00', 1),
(1461, 1517, 24, 5, 0, 'no bike and also long distance so not suitable for CRM and RE', 7, '0000-00-00 00:00:00', 1),
(1462, 1050, 53, 5, 0, 'did system round but sustainability issue.', 53, '2020-10-28 12:59:16', 1),
(1463, 1099, 53, 5, 0, 'gvn task, but not truned up.', 53, '2020-10-28 01:00:09', 1),
(1464, 1107, 53, 5, 0, 'sustainability issue', 53, '2020-10-28 01:01:27', 1),
(1465, 1577, 21, 7, 3, 'need to confirm salary ', 7, '0000-00-00 00:00:00', 1),
(1466, 1520, 21, 5, 3, 'he is interested international voice ', 7, '0000-00-00 00:00:00', 1),
(1467, 1249, 20, 5, 1, 'voice and communication not good', 8, '2020-10-28 02:37:49', 1),
(1468, 1578, 8, 3, 0, '10K for Dhivya team', 21, '2020-10-28 03:53:38', 1),
(1469, 1577, 8, 3, 0, '14K for dhivya team', 21, '2020-10-28 04:00:48', 1),
(1470, 1582, 53, 5, 0, 'exp high sal', 8, '2020-10-28 05:35:56', 1),
(1471, 1559, 21, 5, 0, 'he is interested in customer support process. not for sales ..', 8, '2020-10-28 05:38:11', 1),
(1472, 1554, 53, 5, 0, 'fresher bt exp high sal', 8, '2020-10-28 05:38:45', 1),
(1473, 1505, 8, 3, 0, '21292 as take home for MIS', 8, '2020-10-28 05:45:01', 1),
(1474, 1598, 28, 5, 0, 'He is not strong in basic skills', 7, '0000-00-00 00:00:00', 1),
(1475, 1585, 16, 5, 0, 'no communication skills ,low profile', 7, '0000-00-00 00:00:00', 1),
(1476, 1601, 20, 5, 0, 'did not attend. candidate is missing.', 7, '0000-00-00 00:00:00', 1),
(1477, 1588, 21, 5, 0, 'she is not interested in long term ,just time being only ...', 7, '0000-00-00 00:00:00', 1),
(1478, 1597, 8, 5, 0, 'will not suite for rec profile and no comm. and idea about the profile.', 7, '0000-00-00 00:00:00', 1),
(1479, 1600, 51, 5, 2, 'HE IS LOOKING FOR NON SALES JOBS', 7, '0000-00-00 00:00:00', 1),
(1480, 1603, 38, 5, 2, 'he will not suit for CRM', 7, '0000-00-00 00:00:00', 1),
(1481, 1604, 38, 5, 2, 'he will not suite for sales', 7, '0000-00-00 00:00:00', 1),
(1482, 1605, 21, 5, 3, 'long distance 2 hrs travel', 7, '0000-00-00 00:00:00', 1),
(1483, 1618, 20, 5, 2, 'sustainability.', 7, '0000-00-00 00:00:00', 1),
(1484, 1615, 24, 5, 1, 'not suitable for profile..', 7, '0000-00-00 00:00:00', 1),
(1485, 1592, 19, 7, 4, 'Salary 16k', 7, '0000-00-00 00:00:00', 1),
(1486, 1619, 8, 5, 0, '7 yrs exp as accountant exe. completely i to billing and data enter. profile will not match for MIS exe.No knowledge in Macros and Spreadsheets.', 7, '0000-00-00 00:00:00', 1),
(1487, 1596, 51, 9, 3, 'moved for nxt round', 7, '0000-00-00 00:00:00', 1),
(1488, 1583, 20, 5, 1, 'looking for job Temporarily, plans to start own business, also studying graphic designing for carrier option.', 7, '0000-00-00 00:00:00', 1),
(1489, 1620, 24, 7, 0, 'candidate selected..', 7, '0000-00-00 00:00:00', 1),
(1490, 1622, 16, 5, 0, 'no communication skills ,low profile', 7, '0000-00-00 00:00:00', 1),
(1491, 1621, 19, 5, 1, 'not fit for sales', 7, '0000-00-00 00:00:00', 1),
(1492, 1590, 20, 5, 1, 'communication not good enough and doesnxquott know to drive bikes.', 7, '0000-00-00 00:00:00', 1),
(1493, 1592, 8, 3, 0, '16K for Kannan team', 19, '2020-10-30 02:42:37', 1),
(1494, 1626, 21, 5, 0, 'he is interested in data entry xxamp not interested in pressured job', 7, '0000-00-00 00:00:00', 1),
(1495, 1620, 8, 3, 0, '13K for Suthagar team', 24, '2020-10-30 03:44:00', 1),
(1496, 1596, 29, 8, 0, 'wrongly mapped to me', 51, '2020-10-30 03:56:53', 1),
(1497, 1627, 21, 5, 0, 'he is expecting 20k for crm,also not sustain long term ..not suitable for our process', 7, '0000-00-00 00:00:00', 1),
(1498, 1640, 8, 2, 0, 'She Need To Discuss With Family And Update On Monday. exp is 15K', 7, '0000-00-00 00:00:00', 1),
(1499, 1629, 8, 2, 0, 'she need to discuss with family and update on monday', 7, '0000-00-00 00:00:00', 1),
(1500, 1642, 8, 5, 0, 'Very low voice and salary exo is 20+ ', 7, '0000-00-00 00:00:00', 1),
(1501, 1632, 8, 5, 0, 'not speaking up and will not suite for rec profile.', 7, '0000-00-00 00:00:00', 1),
(1502, 1637, 8, 5, 0, 'from hectadata, no comm and Doesnxquott have previous org analysis', 7, '0000-00-00 00:00:00', 1),
(1503, 1641, 8, 3, 0, '10K for dhivya team', 7, '0000-00-00 00:00:00', 1),
(1504, 1648, 56, 7, 3, 'confirm this candidate xxamp joining by 04-11-2020', 50, '0000-00-00 00:00:00', 1),
(1505, 1644, 16, 5, 0, 'Sustain doubt', 7, '0000-00-00 00:00:00', 1),
(1506, 1631, 8, 5, 0, 'From Hectadata, No Comm And Doesnxquott Have Previous Org Analysis. and doesnt know her rxxampR.', 7, '0000-00-00 00:00:00', 1),
(1507, 1636, 8, 5, 0, 'not speaking up and poor comm.', 7, '0000-00-00 00:00:00', 1),
(1508, 1641, 21, 7, 4, 'ok selected', 8, '2020-10-31 01:48:32', 1),
(1509, 1190, 8, 2, 0, 'She Need To Discuss With Family And Update On Monday. Exp Is 2.5L', 7, '0000-00-00 00:00:00', 1),
(1510, 1641, 8, 3, 0, '10K for dhivya team', 21, '2020-10-31 03:40:54', 1),
(1511, 1655, 53, 4, 0, 'average communication, but good calling pitch. selected for second round', 50, '0000-00-00 00:00:00', 1),
(1512, 1591, 31, 5, 0, 'dont have sales experience', 50, '0000-00-00 00:00:00', 1),
(1513, 1668, 13, 9, 0, 're-assin to divya', 50, '0000-00-00 00:00:00', 1),
(1514, 1237, 53, 4, 0, 'Reassigned', 50, '0000-00-00 00:00:00', 1),
(1515, 1659, 53, 4, 0, 'Average profile only, pls check fr HR', 50, '0000-00-00 00:00:00', 1),
(1516, 1614, 53, 4, 0, 'Reassinged', 50, '0000-00-00 00:00:00', 1),
(1517, 1665, 53, 4, 0, 'Reassigned', 50, '0000-00-00 00:00:00', 1),
(1518, 1633, 53, 4, 0, 'Reassigned', 50, '0000-00-00 00:00:00', 1),
(1519, 1671, 24, 7, 0, 'candidate selected', 50, '0000-00-00 00:00:00', 1),
(1520, 1668, 21, 7, 0, 'ok selected', 13, '2020-11-02 11:39:20', 1),
(1521, 1646, 28, 5, 0, 'She is not so much skill in php', 50, '0000-00-00 00:00:00', 1),
(1522, 1666, 8, 5, 0, 'Profile Will Not Match For \nHR, No Relevant Exp And Exp Sal Is 15K+', 50, '0000-00-00 00:00:00', 1),
(1523, 1267, 53, 5, 0, 'completed the mis task for two members comparing to him mohamed hve macros better knowledge and better communication', 53, '2020-11-02 11:51:06', 1),
(1524, 1655, 8, 2, 0, 'she need to confirm', 53, '2020-11-02 11:57:37', 1),
(1525, 1659, 8, 5, 0, 'fresher and no idea about the profile and no knowledge. ', 53, '2020-11-02 11:58:33', 1),
(1526, 1614, 8, 5, 0, 'no comm, and not speaking up, will not suite for HR', 53, '2020-11-02 11:59:33', 1),
(1527, 1633, 8, 5, 0, 'Profile Will Not Match For \nHR, avg comm. ', 53, '2020-11-02 12:00:27', 1),
(1528, 1665, 8, 5, 0, 'Profile Will Not Match For \nHR, No Relevant Exp And Exp Sal Is 15K+', 53, '2020-11-02 12:00:45', 1),
(1529, 1676, 8, 5, 0, 'profile will not match for \nHR, no relevant exp and exp sal is 15K+', 50, '0000-00-00 00:00:00', 1),
(1530, 1616, 8, 5, 0, 'not speaking up, no Relevant exp and will not suite for HR', 50, '0000-00-00 00:00:00', 1),
(1531, 1667, 21, 7, 4, 'ok selected', 50, '0000-00-00 00:00:00', 1),
(1532, 1237, 8, 2, 0, 'need to discuss with her family.', 53, '2020-11-02 12:02:39', 1),
(1533, 842, 28, 8, 0, 'He is not attend the interview.', 50, '0000-00-00 00:00:00', 1),
(1534, 1652, 28, 9, 0, 'He is interest in sales.', 50, '0000-00-00 00:00:00', 1),
(1535, 1657, 24, 5, 0, 'not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(1536, 1638, 24, 2, 0, 'not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(1537, 1677, 21, 7, 3, 'ok selected', 50, '0000-00-00 00:00:00', 1),
(1538, 1652, 8, 8, 0, 'left before interview', 28, '2020-11-02 02:26:16', 1),
(1539, 880, 28, 5, 0, 'He Struggle In Basic Frontend Validation Jquery Or Javascript. Not coming next time interview Schedule time', 28, '2020-11-02 02:30:36', 1),
(1540, 1143, 28, 5, 0, 'He Struggle In Basic Skill sets. Not Coming Next Time Interview Schedule ', 28, '2020-11-02 02:31:22', 1),
(1541, 1149, 28, 5, 0, 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', 28, '2020-11-02 02:31:35', 1),
(1542, 1208, 28, 5, 0, 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', 28, '2020-11-02 02:31:47', 1),
(1543, 1210, 28, 5, 0, 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', 28, '2020-11-02 02:31:55', 1),
(1544, 1651, 24, 4, 0, 'selected', 50, '0000-00-00 00:00:00', 1),
(1545, 1671, 8, 3, 0, '18K for Suthagar team', 24, '2020-11-02 04:56:23', 1),
(1546, 1667, 8, 3, 0, '10k for Dhivya team', 21, '2020-11-02 06:03:35', 1),
(1547, 1677, 8, 3, 0, '11k for dhivya team', 21, '2020-11-02 06:06:33', 1),
(1548, 1651, 8, 4, 0, 'check for RE', 24, '2020-11-02 06:24:07', 1),
(1549, 1651, 20, 5, 1, 'not fit,, interview by sudhakar', 8, '2020-11-02 06:25:06', 1),
(1550, 1638, 20, 7, 0, 'forwarded to HR For salary Discussion and final round', 24, '2020-11-03 10:44:40', 1),
(1551, 1638, 24, 4, 0, 'selected', 24, '2020-11-03 10:44:40', 1),
(1552, 1638, 8, 3, 0, '15K for re Srikanth team', 20, '2020-11-03 10:47:21', 1),
(1553, 1673, 53, 4, 0, 'sal 15k gud communication', 7, '0000-00-00 00:00:00', 1),
(1554, 1693, 19, 5, 1, 'looking for Crm', 7, '0000-00-00 00:00:00', 1),
(1555, 1678, 53, 2, 0, 'gud communication but thinking for 1 yr aggrement', 7, '0000-00-00 00:00:00', 1),
(1556, 1674, 28, 9, 0, 'She is interest in tellecaller. Not Strong in Basic Skill set.', 7, '0000-00-00 00:00:00', 1),
(1557, 1689, 21, 5, 0, '18k above sal exp , for crm...', 7, '0000-00-00 00:00:00', 1),
(1558, 1695, 21, 5, 0, 'pronounciation problem , no flow in words', 7, '0000-00-00 00:00:00', 1),
(1559, 1669, 53, 5, 2, 'He know basics but expecting 25k gross', 7, '0000-00-00 00:00:00', 1),
(1560, 1674, 8, 4, 0, 'Check for crm', 28, '2020-11-03 12:03:33', 1),
(1561, 1674, 21, 5, 0, 'she already have offer in tech mahindra flipcart process 16 salary..', 8, '2020-11-03 12:05:02', 1),
(1562, 1683, 53, 5, 0, 'he know oly windows but expecting high sal', 7, '0000-00-00 00:00:00', 1),
(1563, 360, 53, 5, 0, 'long distance', 7, '0000-00-00 00:00:00', 1),
(1564, 1696, 8, 5, 0, 'his pronunciation is not good and will not suite for rec.', 7, '0000-00-00 00:00:00', 1),
(1565, 1698, 8, 2, 0, 'need to discuss with family', 7, '0000-00-00 00:00:00', 1),
(1566, 1697, 8, 2, 0, 'by gokul', 7, '0000-00-00 00:00:00', 1),
(1567, 1688, 53, 4, 0, 'rescheduled', 7, '0000-00-00 00:00:00', 1),
(1568, 1694, 28, 4, 0, 'She is good Knowledge in Php.', 7, '0000-00-00 00:00:00', 1),
(1569, 1670, 21, 5, 3, 'Not Sustain Because She Already Have Offer In Tech Mahindra 16 K Salary..', 7, '0000-00-00 00:00:00', 1),
(1570, 347, 8, 4, 3, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(1571, 1694, 27, 2, 0, 'Task Incomplete due to less time. if she is ready to come again we can Reschedule again.', 28, '2020-11-03 02:45:53', 1),
(1572, 347, 24, 5, 0, 'not fit for RE', 8, '2020-11-03 02:49:41', 1),
(1573, 1697, 54, 4, 3, 'hold the candidate for next four days if suppose not found, we can process the same candidate', 8, '2020-11-03 03:12:50', 1),
(1574, 1668, 8, 2, 0, 'to confirm joining', 21, '2020-11-03 03:22:42', 1),
(1575, 1708, 19, 5, 1, 'not fit for sale', 7, '0000-00-00 00:00:00', 1),
(1576, 1673, 8, 2, 0, 'need to confirm', 53, '2020-11-04 11:44:21', 1),
(1577, 1688, 8, 2, 0, 'will not suite', 53, '2020-11-04 11:50:46', 1),
(1578, 1697, 8, 2, 0, 'by gokul', 54, '2020-11-04 12:02:24', 1),
(1579, 1303, 27, 5, 0, 'Task Incompleted and there is no response from him.', 27, '2020-11-04 12:02:42', 1),
(1580, 1715, 21, 5, 0, 'already rejected candidate', 7, '0000-00-00 00:00:00', 1),
(1581, 1714, 19, 7, 4, 'Salary 17k', 7, '0000-00-00 00:00:00', 1),
(1582, 1716, 36, 7, 3, 'Selected for RM', 7, '0000-00-00 00:00:00', 1),
(1583, 1718, 28, 5, 0, 'Not strong in Basic Php skills', 7, '0000-00-00 00:00:00', 1),
(1584, 1713, 57, 5, 0, 'he is not good for sales .. voice is not clear ', 7, '0000-00-00 00:00:00', 1),
(1585, 1688, 8, 5, 0, 'will not suite for REc, her reason for relieving is not convincing.', 8, '2020-11-04 02:00:01', 1),
(1586, 1190, 8, 5, 0, 'not okay with our terms and conditions', 8, '2020-11-04 02:01:21', 1),
(1587, 1237, 8, 5, 0, 'Not Okay With Our Terms And Conditions. ', 8, '2020-11-04 02:02:54', 1),
(1588, 1244, 8, 5, 0, 'will not suite for rec. not completely in to rec. exp sal is high', 8, '2020-11-04 02:03:49', 1),
(1589, 1307, 8, 5, 0, 'no job need and will not suite for cafs', 8, '2020-11-04 02:05:13', 1),
(1590, 1321, 8, 5, 0, 'exp sal is 20+ and with one year exp', 8, '2020-11-04 02:05:47', 1),
(1591, 1354, 8, 5, 0, 'will not sustain, left previous 2 org due to Personal issues.', 8, '2020-11-04 02:07:23', 1),
(1592, 1550, 8, 5, 0, 'no response', 8, '2020-11-04 02:08:20', 1),
(1593, 1566, 8, 5, 0, 'No response', 8, '2020-11-04 02:08:45', 1),
(1594, 1629, 8, 3, 0, '12K for REC', 8, '2020-11-04 02:10:27', 1),
(1595, 1655, 8, 5, 0, 'Not Okay With Our Terms And Conditions', 8, '2020-11-04 02:10:42', 1),
(1596, 1698, 8, 3, 0, '12K for rec', 8, '2020-11-04 02:11:19', 1),
(1597, 1687, 38, 7, 3, 'confirm her salary 22k and joining', 50, '0000-00-00 00:00:00', 1),
(1598, 1720, 39, 7, 3, 'candidate ok for me. confirm salary joining by your end', 50, '0000-00-00 00:00:00', 1),
(1599, 1721, 21, 5, 0, 'he worked at hotel industry .. he is not sui ', 50, '0000-00-00 00:00:00', 1),
(1600, 1714, 8, 3, 0, '17K for kannan team', 19, '2020-11-04 03:04:58', 1),
(1601, 469, 38, 5, 0, 'will not suit for our field', 38, '2020-11-04 03:06:04', 1),
(1602, 596, 38, 5, 0, 'will not suit for sales', 38, '2020-11-04 03:06:49', 1),
(1603, 1002, 38, 5, 0, 'she will handle pressure and will not suit for our field', 38, '2020-11-04 03:08:01', 1),
(1604, 1088, 38, 5, 0, 'kannada language problem for her and she will not suit for this kannada calling process', 38, '2020-11-04 03:08:58', 1),
(1605, 1687, 8, 3, 0, '22K for Sathish team', 38, '2020-11-04 03:21:05', 1),
(1606, 1675, 51, 5, 2, 'rejected', 50, '0000-00-00 00:00:00', 1),
(1607, 1720, 8, 2, 0, 'not picking up the call\n', 39, '2020-11-04 04:16:51', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(1608, 1648, 8, 3, 0, '17k for Manivel team', 56, '2020-11-04 05:41:08', 1),
(1609, 801, 14, 5, 0, 'not interested to this profile', 14, '2020-11-04 05:41:36', 1),
(1610, 806, 14, 5, 0, 'not interested to this profile', 14, '2020-11-04 05:42:25', 1),
(1611, 844, 24, 5, 0, 'not suitable for our profile', 24, '2020-11-04 05:58:14', 1),
(1612, 22, 25, 5, 0, 'not fit for this profile', 25, '2020-11-05 10:15:24', 1),
(1613, 1726, 53, 7, 0, 'selected. need time for bond, Sal 13700 CTC', 50, '0000-00-00 00:00:00', 1),
(1614, 1717, 27, 5, 0, 'Task Incompleted.', 50, '0000-00-00 00:00:00', 1),
(1615, 1719, 53, 7, 0, 'She s ok with bond, Sal 13k CTC, based on performnace sal hike wll be after 6 month, hold , she can join after diwali only', 50, '0000-00-00 00:00:00', 1),
(1616, 1739, 44, 8, 0, 'Please check with him', 50, '0000-00-00 00:00:00', 1),
(1617, 1725, 53, 7, 0, 'Selected. DOJ 9 nov 20. sal CTC 14k. Patroniss', 50, '0000-00-00 00:00:00', 1),
(1618, 1729, 53, 5, 0, 'No relevant experience, but expected 30k', 50, '0000-00-00 00:00:00', 1),
(1619, 1744, 20, 2, 4, 'have to conduct telephonic interview to Analyze voice clarity.', 50, '0000-00-00 00:00:00', 1),
(1620, 1748, 14, 5, 0, 'looking for non voice or data entry .not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1621, 1746, 14, 5, 1, 'not fit for voice process', 50, '0000-00-00 00:00:00', 1),
(1622, 1725, 8, 5, 0, 'not okay with bond', 53, '2020-11-05 02:26:06', 1),
(1623, 772, 54, 5, 0, 'she is not Interested\n', 54, '2020-11-05 02:29:09', 1),
(1624, 1039, 54, 8, 0, 'not Attended', 54, '2020-11-05 02:32:24', 1),
(1625, 1045, 54, 8, 0, 'not Attended\n', 54, '2020-11-05 02:33:03', 1),
(1626, 1046, 54, 8, 0, 'not attended', 54, '2020-11-05 02:33:29', 1),
(1627, 1080, 54, 8, 0, 'not attended\n', 54, '2020-11-05 02:34:16', 1),
(1628, 1086, 54, 8, 0, 'not Attended', 54, '2020-11-05 02:34:49', 1),
(1629, 1102, 54, 8, 0, 'not attented', 54, '2020-11-05 02:36:44', 1),
(1630, 1094, 54, 8, 0, 'not attended', 54, '2020-11-05 02:37:04', 1),
(1631, 1726, 8, 5, 0, 'will not join long distance.', 53, '2020-11-05 02:42:52', 1),
(1632, 1719, 8, 5, 0, 'will not join bcoz of bond', 53, '2020-11-05 02:44:55', 1),
(1633, 184, 17, 5, 0, 'He did not camed again', 17, '2020-11-05 04:16:45', 1),
(1634, 1716, 8, 3, 0, '21.5K for lokesh team', 36, '2020-11-06 12:33:08', 1),
(1635, 1743, 53, 5, 0, 'Lake of communication, no confidence on speech', 50, '0000-00-00 00:00:00', 1),
(1636, 1761, 53, 5, 0, 'not suit for our expectation', 50, '0000-00-00 00:00:00', 1),
(1637, 1751, 53, 7, 0, 'CTC 14.5k, TK 13775, DOJ 9 nov 20.. Bangalore Recruiter', 50, '0000-00-00 00:00:00', 1),
(1638, 1741, 53, 2, 0, 'Ok only. but need to think for bond', 50, '0000-00-00 00:00:00', 1),
(1639, 1765, 21, 7, 4, 'ok selected for crm (10.5 k) salary ..need to confirm salary xxamp joining', 50, '0000-00-00 00:00:00', 1),
(1640, 1766, 13, 5, 1, 'ok but long distance', 50, '0000-00-00 00:00:00', 1),
(1641, 1756, 53, 5, 0, 'Not fir for this profile', 50, '0000-00-00 00:00:00', 1),
(1642, 1755, 44, 4, 4, 'Good candidate and ok for me , need your suggestion', 50, '0000-00-00 00:00:00', 1),
(1643, 1740, 16, 9, 0, 'hold for rM,good cominication skills', 50, '0000-00-00 00:00:00', 1),
(1644, 1732, 53, 4, 0, 'Rescheduled to arun', 50, '0000-00-00 00:00:00', 1),
(1645, 1740, 41, 9, 0, 'Kindly check for CRM', 16, '2020-11-06 12:40:57', 1),
(1646, 1740, 31, 9, 0, 'check for CRM / RE', 41, '2020-11-06 12:47:42', 1),
(1647, 1770, 19, 9, 4, 'he is fit for RM', 50, '0000-00-00 00:00:00', 1),
(1648, 1734, 53, 7, 0, 'CTC 19k TH 18050, doj after diwali she wants to cnfrm her joining nd sal', 50, '0000-00-00 00:00:00', 1),
(1649, 1757, 53, 5, 0, 'sustainability issue, 4yrs gap, UG, 21k demanding', 50, '0000-00-00 00:00:00', 1),
(1650, 1776, 20, 4, 4, 'forwarded to kannan for 2nd round', 50, '0000-00-00 00:00:00', 1),
(1651, 1768, 53, 5, 0, 'gud communication, not o wit bond', 50, '0000-00-00 00:00:00', 1),
(1652, 1758, 53, 5, 0, 'no relevant experience', 50, '0000-00-00 00:00:00', 1),
(1653, 1764, 14, 5, 1, 'Already working in non voice process only and not suitable for voice process', 50, '0000-00-00 00:00:00', 1),
(1654, 1736, 53, 5, 0, 'fresher, not fir for recruiter', 50, '0000-00-00 00:00:00', 1),
(1655, 1755, 29, 8, 0, 'i have not met, dropped candidate ', 44, '2020-11-06 01:35:10', 1),
(1656, 1775, 53, 5, 0, 'sustainability issue', 50, '0000-00-00 00:00:00', 1),
(1657, 1694, 27, 5, 0, 'Interview Task Incompleted. ', 27, '2020-11-06 02:49:14', 1),
(1658, 1776, 19, 5, 1, 'not even try to convince', 20, '2020-11-06 03:47:52', 1),
(1659, 1734, 8, 2, 0, 'for next batch, and sal exp is 18K', 53, '2020-11-06 04:43:40', 1),
(1660, 1741, 53, 5, 0, 'he s thnking for bond', 53, '2020-11-06 05:09:42', 1),
(1661, 1751, 8, 3, 0, '12K for rec', 53, '2020-11-06 05:11:52', 1),
(1662, 1765, 8, 3, 0, '10.5K for dhivya team', 21, '2020-11-06 05:44:41', 1),
(1663, 1740, 41, 9, 0, 'Kindly check for CRM', 31, '2020-11-06 05:47:19', 1),
(1664, 1770, 41, 9, 0, 'Interviewed by Kannan Check for RM', 19, '2020-11-06 05:52:47', 1),
(1665, 1740, 21, 5, 0, 'expecting 18 k for crm', 41, '2020-11-06 05:55:13', 1),
(1666, 1770, 31, 7, 4, 'Candidate okay. Salary part needs to clarify with HR', 41, '2020-11-06 05:55:40', 1),
(1667, 1227, 8, 5, 0, 'wrongly updated. candidate is not selected.', 31, '2020-11-06 05:59:39', 1),
(1668, 1770, 8, 2, 0, 'not picking up the call no response from him', 31, '2020-11-06 06:26:13', 1),
(1669, 1778, 8, 5, 0, 'salary exp is high and will not sustain .', 50, '0000-00-00 00:00:00', 1),
(1670, 1774, 8, 5, 0, 'no local lang and exp salary is 28K. fresher for HR', 50, '0000-00-00 00:00:00', 1),
(1671, 1794, 8, 5, 0, 'not okay with bond.', 50, '0000-00-00 00:00:00', 1),
(1672, 1782, 8, 2, 0, 'need to confirm.', 50, '0000-00-00 00:00:00', 1),
(1673, 1790, 8, 2, 0, 'need to confirm', 50, '0000-00-00 00:00:00', 1),
(1674, 1795, 44, 5, 1, 'He is Lic Agent and His mother also LIC Agent', 50, '0000-00-00 00:00:00', 1),
(1675, 1763, 8, 5, 0, 'SAlary exp is high and already holds 2 offer.', 50, '0000-00-00 00:00:00', 1),
(1676, 1797, 8, 5, 0, 'not speaking up and said dont know for more than 3 times in interview.', 50, '0000-00-00 00:00:00', 1),
(1677, 1798, 8, 9, 2, 'Check with the profile.', 50, '0000-00-00 00:00:00', 1),
(1678, 1783, 59, 5, 0, 'Will not sustain, not ready for bond No communication', 50, '0000-00-00 00:00:00', 1),
(1679, 1800, 14, 7, 4, 'salary 10k .hold for joining ', 50, '0000-00-00 00:00:00', 1),
(1680, 1801, 14, 5, 1, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(1681, 1785, 8, 2, 0, 'Need to discuss with family.', 50, '0000-00-00 00:00:00', 1),
(1682, 1802, 28, 9, 0, 'Not Suitable Php. Sales experience try for rm/re', 50, '0000-00-00 00:00:00', 1),
(1683, 1799, 57, 5, 0, 'he is looking for part time job... just now join for college', 50, '0000-00-00 00:00:00', 1),
(1684, 1777, 8, 2, 0, 'need to confirm with her husband.', 50, '0000-00-00 00:00:00', 1),
(1685, 1792, 59, 5, 0, 'Not ok for agreement', 50, '0000-00-00 00:00:00', 1),
(1686, 1737, 8, 5, 0, 'Exp salary is high and already holds 2 offer', 50, '0000-00-00 00:00:00', 1),
(1687, 1802, 8, 3, 0, '13.5K for thiyagu team', 28, '2020-11-07 01:37:31', 1),
(1688, 1780, 20, 5, 2, 'doesnt fiit for voice process', 50, '0000-00-00 00:00:00', 1),
(1689, 1786, 59, 4, 0, 'Good profile. communication is good. Ok for agreement', 50, '0000-00-00 00:00:00', 1),
(1690, 1804, 13, 5, 1, 'Sustainability less', 50, '0000-00-00 00:00:00', 1),
(1691, 1803, 13, 5, 1, 'not suitable for this filed', 50, '0000-00-00 00:00:00', 1),
(1692, 1759, 59, 5, 0, 'Not ready for bond. High CTC exp,60 days notice', 50, '0000-00-00 00:00:00', 1),
(1693, 1800, 8, 3, 0, '10K for Priyanka team', 14, '2020-11-07 03:13:24', 1),
(1694, 1781, 59, 5, 0, 'no Communication. No knowledge on the role', 7, '0000-00-00 00:00:00', 1),
(1695, 1798, 16, 5, 0, 'sustain doubt long distance', 8, '2020-11-07 03:49:53', 1),
(1696, 1767, 59, 5, 0, 'High CTC exp. Hold 1 offer', 7, '0000-00-00 00:00:00', 1),
(1697, 1802, 16, 7, 0, 'Selected for RE salary 13.5k', 8, '2020-11-07 04:10:46', 1),
(1698, 1786, 54, 5, 0, 'She worked end to end hr cycle but incomplete skill all vertical', 59, '2020-11-07 04:22:50', 1),
(1699, 1546, 22, 5, 0, 'voice bad', 8, '2020-11-07 04:32:03', 1),
(1700, 1419, 8, 5, 0, 'hold for Star and will not suite for CAFS', 8, '2020-11-07 04:44:43', 1),
(1701, 1449, 8, 5, 0, 'for cafs hold for star', 8, '2020-11-07 04:46:42', 1),
(1702, 1672, 8, 3, 0, '12K for rec', 7, '0000-00-00 00:00:00', 1),
(1703, 1802, 8, 3, 0, '13.5K for thiyagu team', 16, '2020-11-07 06:48:51', 1),
(1704, 1678, 8, 3, 0, '12k for rec', 53, '2020-11-08 07:50:18', 1),
(1705, 1678, 53, 7, 0, 'confirm joining', 53, '2020-11-08 07:50:18', 1),
(1706, 1782, 8, 3, 0, '13K for rec', 8, '2020-11-08 08:05:18', 1),
(1707, 1811, 13, 5, 2, 'Communication poor', 50, '0000-00-00 00:00:00', 1),
(1708, 1813, 16, 5, 0, 'sustain doubt', 50, '0000-00-00 00:00:00', 1),
(1709, 1812, 57, 9, 0, 'he is not interest for field work', 50, '0000-00-00 00:00:00', 1),
(1710, 1812, 8, 4, 0, 'check for CRM\n', 57, '2020-11-09 11:50:52', 1),
(1711, 1744, 20, 5, 0, 'didnt respond for Telephonic interview', 20, '2020-11-09 12:01:22', 1),
(1712, 1807, 14, 5, 1, 'not suitable for voice process ', 50, '0000-00-00 00:00:00', 1),
(1713, 1816, 8, 5, 0, '6+ yr exp in rec. switched more than 6 company and xp is 20K. in between worked as BDM.', 50, '0000-00-00 00:00:00', 1),
(1714, 1814, 28, 5, 0, 'Not Strong In basic Php', 50, '0000-00-00 00:00:00', 1),
(1715, 1812, 21, 5, 0, 'exp 16 k above for crm', 8, '2020-11-09 01:02:00', 1),
(1716, 1305, 8, 5, 0, 'no update from his end.', 8, '2020-11-09 01:16:37', 1),
(1717, 1640, 8, 5, 0, 'no response from her end', 8, '2020-11-09 01:41:14', 1),
(1718, 1796, 14, 5, 0, 'long distance 2 hour and not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(1719, 1817, 21, 7, 0, 'ok selected need to con firm salary xxamp joining', 7, '0000-00-00 00:00:00', 1),
(1720, 1806, 8, 4, 3, 'currently freelancer, 18K and looking for 25K CTC', 50, '0000-00-00 00:00:00', 1),
(1721, 1806, 53, 2, 0, 'hold for telephonic round. discus with gokul', 8, '2020-11-09 04:38:34', 1),
(1722, 1818, 28, 4, 0, 'Technically Strong in core php.', 7, '0000-00-00 00:00:00', 1),
(1723, 1826, 20, 7, 0, 'suitable for RE', 7, '0000-00-00 00:00:00', 1),
(1724, 1825, 20, 9, 0, 'try for RM', 7, '0000-00-00 00:00:00', 1),
(1725, 1818, 54, 5, 0, 'He is not ready to sign a service contract.', 28, '2020-11-10 11:20:21', 1),
(1726, 1825, 40, 4, 4, 'SEEMS LIKE PROFESSIONAL AND LONG RUNNER', 20, '2020-11-10 11:26:27', 1),
(1727, 1720, 8, 5, 0, 'no response', 8, '2020-11-10 11:34:52', 1),
(1728, 1828, 57, 5, 0, 'voice is not good', 7, '0000-00-00 00:00:00', 1),
(1729, 1820, 24, 2, 0, 'need to discuss with manager so meet balaji sir tmrw', 7, '0000-00-00 00:00:00', 1),
(1730, 1826, 8, 3, 0, '12K For Srikanth team', 20, '2020-11-10 11:46:02', 1),
(1731, 1829, 28, 5, 0, 'technically Not strong and Sustainability Issue.', 7, '0000-00-00 00:00:00', 1),
(1732, 1821, 54, 2, 0, 'the task is given waiting for his replay ', 7, '0000-00-00 00:00:00', 1),
(1733, 1825, 18, 7, 3, 'Selected as consultant. Can give salary upto 31K', 40, '2020-11-10 12:05:46', 1),
(1734, 1822, 54, 2, 0, 'the task is given waiting for his reply.', 7, '0000-00-00 00:00:00', 1),
(1735, 1815, 53, 5, 0, 'not suit for admin', 7, '0000-00-00 00:00:00', 1),
(1736, 1827, 20, 5, 0, 'doesnxquott know tamil or english', 7, '0000-00-00 00:00:00', 1),
(1737, 1831, 16, 5, 0, 'low profile,no communication skill', 7, '0000-00-00 00:00:00', 1),
(1738, 1832, 21, 5, 0, 'expecting high salary for crm,16000', 7, '0000-00-00 00:00:00', 1),
(1739, 1830, 24, 5, 0, 'NOT QUALIFIED FOR TELECALLING', 7, '0000-00-00 00:00:00', 1),
(1740, 1819, 31, 9, 0, 'Interested in sales. interested in health ins.', 7, '0000-00-00 00:00:00', 1),
(1741, 1825, 8, 3, 0, 'for lokesh team as consultant RM', 18, '2020-11-10 01:43:33', 1),
(1742, 1835, 21, 5, 0, 'expecting 16 k above for crm', 7, '0000-00-00 00:00:00', 1),
(1743, 1817, 8, 3, 0, 'For Dhivya team', 21, '2020-11-10 06:32:08', 1),
(1744, 1819, 8, 3, 0, '14K CTC for Kannan team', 31, '2020-11-11 10:21:19', 1),
(1745, 1732, 59, 5, 0, 'Will not sustain for a long', 53, '2020-11-11 11:38:18', 1),
(1746, 1824, 28, 9, 0, 'Digital Marketing', 7, '0000-00-00 00:00:00', 1),
(1747, 1846, 21, 5, 0, 'she is interested in data entry job..', 7, '0000-00-00 00:00:00', 1),
(1748, 1839, 28, 4, 0, 'Good In basic skill set.', 7, '0000-00-00 00:00:00', 1),
(1749, 1820, 24, 5, 0, 'he organise part time coaching class. so hexquots rejected', 24, '2020-11-11 12:12:14', 1),
(1750, 1842, 57, 5, 0, 'voice is not good .. ', 7, '0000-00-00 00:00:00', 1),
(1751, 1838, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(1752, 1837, 28, 4, 0, 'Good in Basic skill set.', 7, '0000-00-00 00:00:00', 1),
(1753, 1841, 13, 5, 3, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1754, 1824, 8, 4, 0, 'For Digital Mktng.', 28, '2020-11-11 12:33:18', 1),
(1755, 1837, 54, 5, 0, 'He is having skills in Asp.net but not good in php.', 28, '2020-11-11 01:03:00', 1),
(1756, 1839, 54, 5, 0, 'System task not completed', 28, '2020-11-11 01:03:28', 1),
(1757, 1833, 28, 5, 0, 'Not Interest service bond. ', 7, '0000-00-00 00:00:00', 1),
(1758, 1824, 54, 2, 0, 'the task assigned to candidate.', 8, '2020-11-11 01:48:07', 1),
(1759, 1851, 57, 7, 0, 'candidate ok .. salary 17k ctc ', 7, '0000-00-00 00:00:00', 1),
(1760, 1854, 20, 5, 0, 'not fit for voice process', 7, '0000-00-00 00:00:00', 1),
(1761, 1853, 57, 5, 0, 'voice not good ', 7, '0000-00-00 00:00:00', 1),
(1762, 1851, 8, 3, 0, '17K for Syed team', 57, '2020-11-11 03:53:16', 1),
(1763, 1436, 8, 5, 0, 'not int to join', 8, '2020-11-11 03:53:22', 1),
(1764, 1734, 8, 5, 0, 'will not join, exp is 21 TH', 8, '2020-11-11 03:53:59', 1),
(1765, 1668, 8, 5, 0, 'no response will not join', 8, '2020-11-12 10:35:10', 1),
(1766, 1777, 8, 3, 0, '12K for rec', 8, '2020-11-12 10:37:17', 1),
(1767, 1844, 28, 4, 0, 'He is good in Php.', 50, '0000-00-00 00:00:00', 1),
(1768, 1850, 57, 7, 0, 'candidate ok .salary 14k ctc..', 50, '0000-00-00 00:00:00', 1),
(1769, 1819, 19, 7, 4, 'CTC - 17K TAKE HOME RS.16,150', 8, '2020-11-12 12:37:56', 1),
(1770, 1785, 8, 5, 0, 'no response. will not join', 8, '2020-11-12 12:38:40', 1),
(1771, 1790, 8, 5, 0, 'no response and RNR will not join', 8, '2020-11-12 12:39:06', 1),
(1772, 1850, 8, 3, 0, '14K for syed team', 57, '2020-11-12 12:42:29', 1),
(1773, 1847, 24, 5, 0, 'not fil for telecalling', 7, '0000-00-00 00:00:00', 1),
(1774, 1844, 54, 5, 2, 'He will not sustain ', 28, '2020-11-12 01:21:53', 1),
(1775, 1819, 8, 3, 0, '14K CTC for Kannan team', 19, '2020-11-12 02:43:27', 1),
(1776, 1866, 13, 5, 1, 'not suitable for telesales', 7, '0000-00-00 00:00:00', 1),
(1777, 1867, 13, 5, 1, 'not suitable for pressure handling', 7, '0000-00-00 00:00:00', 1),
(1778, 1868, 21, 5, 0, 'she is not sustain long term bcz she is with her friend only..', 7, '0000-00-00 00:00:00', 1),
(1779, 1870, 21, 7, 0, 'ok selected need to confirm salary xxamp joining date', 7, '0000-00-00 00:00:00', 1),
(1780, 1858, 20, 7, 0, 'Shortlisted, kindly discuss salary', 7, '0000-00-00 00:00:00', 1),
(1781, 1862, 57, 7, 0, 'candidate is ok. kindly negotiate the salary', 7, '0000-00-00 00:00:00', 1),
(1782, 1862, 8, 3, 0, '15K for Syed team', 57, '2020-11-12 04:42:48', 1),
(1783, 1858, 8, 3, 0, '15K for Kannan team\n', 20, '2020-11-12 05:14:07', 1),
(1784, 1870, 8, 3, 0, '10K for Dhivya team', 21, '2020-11-13 10:27:28', 1),
(1785, 1856, 57, 5, 0, 'voice is not good .. ', 7, '0000-00-00 00:00:00', 1),
(1786, 1869, 51, 7, 4, 'monday joining', 7, '0000-00-00 00:00:00', 1),
(1787, 1873, 39, 5, 2, 'he will not suit for this field', 7, '0000-00-00 00:00:00', 1),
(1788, 1878, 20, 5, 1, 'not fit.', 7, '0000-00-00 00:00:00', 1),
(1789, 1877, 40, 4, 4, 'He is having inside sales exp/ Challenges outcome seems very doubtful...Seems like a long runner..Productive yet doubtful', 7, '0000-00-00 00:00:00', 1),
(1790, 1861, 24, 5, 0, 'rE Profile Not suitable', 7, '0000-00-00 00:00:00', 1),
(1791, 1875, 31, 5, 2, 'expecting higher package and not match for that level', 7, '0000-00-00 00:00:00', 1),
(1792, 1639, 31, 5, 3, 'Not satisfied', 7, '0000-00-00 00:00:00', 1),
(1793, 1859, 28, 5, 0, 'He is strong in .net. But not Know php.', 7, '0000-00-00 00:00:00', 1),
(1794, 1877, 31, 5, 3, 'not a convinced candidate', 40, '2020-11-13 12:18:07', 1),
(1795, 1882, 16, 7, 0, 'candidate selected 14k salary fix', 7, '0000-00-00 00:00:00', 1),
(1796, 1869, 8, 3, 0, 'With ESI an PF. net is 22192 and gross is 26000', 51, '2020-11-13 01:05:51', 1),
(1797, 1871, 39, 7, 3, 'okay for RE...kindly confirm his salary and joining', 7, '0000-00-00 00:00:00', 1),
(1798, 1882, 8, 3, 0, '14K as TH. Thiyagarajan team', 16, '2020-11-13 01:43:07', 1),
(1799, 1863, 24, 5, 0, 'candidate not come for 2nd round', 52, '0000-00-00 00:00:00', 1),
(1800, 1885, 16, 5, 0, 'low profile ,no communication skills', 52, '0000-00-00 00:00:00', 1),
(1801, 1871, 8, 5, 0, 'will not join. cant arrange 2 wheeler', 39, '2020-11-13 03:25:32', 1),
(1802, 1895, 28, 5, 0, 'Not strong in basic skillset.', 50, '0000-00-00 00:00:00', 1),
(1803, 1876, 28, 5, 1, 'Not So Much Skill In Basic Php.', 50, '0000-00-00 00:00:00', 1),
(1804, 1893, 28, 5, 0, 'Not strong in basic skill.', 50, '0000-00-00 00:00:00', 1),
(1805, 1892, 28, 4, 0, 'Basic skills is Ok in php.', 50, '0000-00-00 00:00:00', 1),
(1806, 1898, 31, 4, 4, 'Referred by Raghu', 50, '0000-00-00 00:00:00', 1),
(1807, 1855, 20, 5, 0, '4 years experienced in service. not fit for sales', 50, '0000-00-00 00:00:00', 1),
(1808, 1865, 16, 9, 0, 'MOVE TO cRM,', 50, '0000-00-00 00:00:00', 1),
(1809, 1896, 57, 5, 0, 'he is looking govt job .. and voice is not good', 50, '0000-00-00 00:00:00', 1),
(1810, 1899, 57, 7, 0, 'candidate is ok ..kindly negotiate the salary', 50, '0000-00-00 00:00:00', 1),
(1811, 1865, 8, 5, 0, 'will no suite for crm', 16, '2020-11-16 01:33:23', 1),
(1812, 1888, 13, 5, 1, 'communication skill not well and expected salary high', 50, '0000-00-00 00:00:00', 1),
(1813, 1898, 18, 7, 3, 'Selected For Lokesh Team. Spoken CTC is for 25K PM xxamp Joinig on 19 nov ', 31, '2020-11-16 01:47:07', 1),
(1814, 1892, 27, 5, 0, 'Task Incomplete. He dont know how to handle the errors.', 28, '2020-11-16 02:40:03', 1),
(1815, 1899, 8, 3, 0, '13K ctc for syed team', 57, '2020-11-16 02:54:23', 1),
(1816, 1889, 59, 5, 0, 'Hearing xxamp Speaking disability. Will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(1817, 1904, 20, 4, 0, 'forwarded for salary discussion.', 50, '0000-00-00 00:00:00', 1),
(1818, 1906, 16, 5, 0, 'low profile ,no sales knowledge', 50, '0000-00-00 00:00:00', 1),
(1819, 1904, 8, 5, 0, 'holds offer in JIO, still serving in sbi cards and lic in part time. pronunciation is also not clear.', 20, '2020-11-16 04:11:50', 1),
(1820, 1898, 8, 3, 0, '21192 th and for lokesh team', 18, '2020-11-16 04:33:42', 1),
(1821, 1886, 28, 5, 0, 'Not Know basic skills.', 7, '0000-00-00 00:00:00', 1),
(1822, 1900, 28, 5, 0, 'Not Know basic skill set.', 7, '0000-00-00 00:00:00', 1),
(1823, 1909, 16, 5, 0, 'low profile ,no communication skills', 7, '0000-00-00 00:00:00', 1),
(1824, 1912, 16, 9, 0, 'move to RM', 7, '0000-00-00 00:00:00', 1),
(1825, 1912, 36, 5, 0, 'NOT FIT', 16, '2020-11-17 12:19:15', 1),
(1826, 1913, 31, 7, 4, 'selected for RM conformed by gaurav and salary part kindly refer resume', 7, '0000-00-00 00:00:00', 1),
(1827, 1921, 14, 4, 4, 'salary 10k check for second round', 7, '0000-00-00 00:00:00', 1),
(1828, 1923, 36, 5, 0, 'Not fit', 7, '0000-00-00 00:00:00', 1),
(1829, 1921, 13, 7, 4, 'ok 10k Salary 19th Nov Joining', 14, '2020-11-17 01:24:02', 1),
(1830, 1921, 8, 3, 0, '10K for Muthu team', 13, '2020-11-17 01:33:41', 1),
(1831, 1926, 57, 5, 0, 'voice and appearance very bad.. ', 7, '0000-00-00 00:00:00', 1),
(1832, 1929, 51, 7, 4, 'joining by 1dec', 7, '0000-00-00 00:00:00', 1),
(1833, 1908, 30, 5, 1, 'he will not suit for this field and he donxquott know basic english', 50, '0000-00-00 00:00:00', 1),
(1834, 1673, 8, 5, 0, 'will not join', 8, '2020-11-18 10:09:33', 1),
(1835, 1936, 29, 5, 1, 'aged and not fit for our profile', 7, '0000-00-00 00:00:00', 1),
(1836, 1942, 36, 7, 3, 'Selected for rM', 7, '0000-00-00 00:00:00', 1),
(1837, 1943, 51, 4, 4, 'fresher', 7, '0000-00-00 00:00:00', 1),
(1838, 1934, 31, 5, 4, 'Not interested in sales', 7, '0000-00-00 00:00:00', 1),
(1839, 1929, 8, 3, 0, '23k for sarath team', 51, '2020-11-18 12:06:39', 1),
(1840, 1943, 29, 7, 3, 'selected for RM, sarath team, 18k salary ', 51, '2020-11-18 12:07:43', 1),
(1841, 1944, 59, 4, 0, 'Shortlisted for next round. Worked in the areas of excel xxamp PowerPoint', 7, '0000-00-00 00:00:00', 1),
(1842, 1864, 39, 7, 3, 'Joining date on Monday. Cnfrm the salary', 7, '0000-00-00 00:00:00', 1),
(1843, 1915, 28, 4, 0, 'Technically Ok in php.', 7, '0000-00-00 00:00:00', 1),
(1844, 1915, 27, 5, 0, 'Not Good in Technical. Already attended before 6 Months.', 28, '2020-11-18 01:25:27', 1),
(1845, 1911, 30, 5, 3, 'he is looking for high package and he will not suite for our process', 7, '0000-00-00 00:00:00', 1),
(1846, 1933, 27, 8, 0, 'this candidate wrongly mapped. he is not attended', 7, '0000-00-00 00:00:00', 1),
(1847, 1944, 8, 5, 0, 'not upto the level for mis', 59, '2020-11-18 02:25:51', 1),
(1848, 1920, 57, 5, 0, 'voice is not good ..', 7, '0000-00-00 00:00:00', 1),
(1849, 1949, 57, 4, 0, 'candidate is ok .. he is selected for next round', 7, '0000-00-00 00:00:00', 1),
(1850, 1949, 22, 7, 0, 'candidate ok', 57, '2020-11-18 05:08:20', 1),
(1851, 1770, 8, 3, 0, 'with esi and pf for gk team.', 8, '2020-11-18 05:55:32', 1),
(1852, 1959, 27, 7, 3, 'Potential Candidate. Job Need. System Task Completed. Joining Date 23-11-2020. Salary 10K. 9.5 Take Home', 1, '0000-00-00 00:00:00', 1),
(1853, 1959, 8, 3, 0, '9.5K for IT team', 27, '2020-11-19 11:03:34', 1),
(1854, 1922, 27, 2, 3, 'Dynamic Task Given. ', 7, '0000-00-00 00:00:00', 1),
(1855, 1962, 57, 5, 0, 'voice bad', 7, '0000-00-00 00:00:00', 1),
(1856, 1879, 38, 7, 3, 'kindly confirm her salary 11.6k ctc per month ', 7, '0000-00-00 00:00:00', 1),
(1857, 1963, 28, 5, 3, 'She is not strong in basic php.', 7, '0000-00-00 00:00:00', 1),
(1858, 1961, 51, 4, 4, 'experinced in life insurance', 7, '0000-00-00 00:00:00', 1),
(1859, 1961, 29, 5, 1, 'rejected', 51, '2020-11-19 01:19:57', 1),
(1860, 1937, 36, 2, 3, 'Need time to buy Laptop', 7, '0000-00-00 00:00:00', 1),
(1861, 1879, 8, 3, 0, '11020 as tH.For CRM-PC', 38, '2020-11-19 02:55:10', 1),
(1862, 1966, 38, 8, 0, 'WORST BEHAVIOUR', 7, '0000-00-00 00:00:00', 1),
(1863, 1967, 57, 7, 0, 'candidate is ok ..salary 15k ctc', 7, '0000-00-00 00:00:00', 1),
(1864, 1965, 24, 4, 0, 'candidate okay', 7, '0000-00-00 00:00:00', 1),
(1865, 1949, 8, 3, 0, '13K for syed team', 22, '2020-11-19 04:51:20', 1),
(1866, 1967, 8, 3, 0, '15k ctc for syed team\n', 57, '2020-11-19 05:41:11', 1),
(1867, 1965, 57, 7, 0, 'candidate is ok .', 24, '2020-11-19 05:55:56', 1),
(1868, 1925, 27, 5, 0, 'Telephonic interview taken. She is not good in technical. ', 1, '0000-00-00 00:00:00', 1),
(1869, 1942, 8, 3, 0, '15800 CTC,15010 TH', 36, '2020-11-19 06:45:00', 1),
(1870, 1953, 27, 2, 0, 'He Will come in Next Week for System Task.', 50, '0000-00-00 00:00:00', 1),
(1871, 1946, 28, 4, 0, 'Technically Good in php.', 50, '0000-00-00 00:00:00', 1),
(1872, 1935, 28, 5, 0, 'Not strong in basic skillset.', 50, '0000-00-00 00:00:00', 1),
(1873, 1943, 8, 3, 0, 'CTC-18950/TH - 18002.50', 29, '2020-11-20 11:07:27', 1),
(1874, 1973, 19, 5, 1, 'not fit for sale', 50, '0000-00-00 00:00:00', 1),
(1875, 1907, 28, 4, 0, 'He is good in basic php skillset', 50, '0000-00-00 00:00:00', 1),
(1876, 1974, 28, 5, 0, 'He is not good in basic skillset', 50, '0000-00-00 00:00:00', 1),
(1877, 1969, 19, 9, 0, 'not fit for RE', 50, '0000-00-00 00:00:00', 1),
(1878, 1946, 27, 2, 0, 'System Task Given. he is okay for all the terms and conditions. If Task Completed we will proceed to final round.', 28, '2020-11-20 11:29:44', 1),
(1879, 1952, 13, 9, 0, 'ok but expected salary 26k refer to RM', 50, '0000-00-00 00:00:00', 1),
(1880, 1907, 27, 2, 0, 'Interview Taken. Task Given.', 28, '2020-11-20 12:05:25', 1),
(1881, 1913, 8, 3, 0, '23K CTC,PT - 208', 31, '2020-11-20 12:07:26', 1),
(1882, 1969, 51, 5, 0, 'not fit for sales', 19, '2020-11-20 12:22:56', 1),
(1883, 1952, 41, 9, 0, 'Check for RM \nExp sal - 26K\nInterviewed by Muthuraj', 13, '2020-11-20 12:53:09', 1),
(1884, 1952, 51, 7, 3, 'joining by nxt month', 41, '2020-11-20 01:15:47', 1),
(1885, 1947, 27, 5, 1, 'He is Not Good in Technical, Attitude is not good.', 50, '0000-00-00 00:00:00', 1),
(1886, 1964, 51, 5, 0, 'rejected', 50, '0000-00-00 00:00:00', 1),
(1887, 1952, 8, 2, 0, 'for salary confirmation', 51, '2020-11-20 04:49:37', 1),
(1888, 1987, 51, 5, 3, 'Convicing Skill Is Poor', 50, '0000-00-00 00:00:00', 1),
(1889, 1989, 13, 5, 1, 'Expected Salary High And Long Distance', 50, '0000-00-00 00:00:00', 1),
(1890, 1965, 8, 3, 0, '15225 CTC,14500 TH', 57, '2020-11-21 11:43:32', 1),
(1891, 1990, 57, 7, 0, 'candidate is ok . salary 13k ctc', 50, '0000-00-00 00:00:00', 1),
(1892, 1940, 36, 7, 4, 'Selected for RM\nExpected salary negotiable only kindly check ', 50, '0000-00-00 00:00:00', 1),
(1893, 1994, 31, 4, 4, 'Candidate is okay. Forward to sriram for next round', 50, '0000-00-00 00:00:00', 1),
(1894, 1990, 8, 3, 0, '13K cCTC TH-12350 - TEAM SYED BY arun', 57, '2020-11-21 01:01:01', 1),
(1895, 1979, 39, 7, 3, 'Confirm the joining date and salary', 50, '0000-00-00 00:00:00', 1),
(1896, 1976, 24, 7, 0, 'candidate selected 24th joining ', 50, '0000-00-00 00:00:00', 1),
(1897, 1980, 39, 5, 1, 'He is not suitable for our profile. Communication is too bad', 50, '0000-00-00 00:00:00', 1),
(1898, 1979, 8, 3, 0, '26k ctc no esi and pf', 39, '2020-11-21 03:34:37', 1),
(1899, 1864, 8, 3, 0, 'CTC-18K/TH - 17100', 39, '2020-11-21 03:39:47', 1),
(1900, 1994, 18, 7, 4, 'Shortlisted for Lokesh Team\n', 31, '2020-11-21 05:08:10', 1),
(1901, 2005, 51, 7, 4, 'good', 50, '0000-00-00 00:00:00', 1),
(1902, 1976, 8, 3, 0, '16k ctc 12464 TH with esixxampPf', 24, '2020-11-23 10:37:23', 1),
(1903, 1997, 28, 5, 0, 'Not strong in basic skills', 50, '0000-00-00 00:00:00', 1),
(1904, 1995, 51, 7, 4, 'good', 50, '0000-00-00 00:00:00', 1),
(1905, 1945, 29, 5, 1, 'not selected', 50, '0000-00-00 00:00:00', 1),
(1906, 2014, 21, 5, 0, 'she is not suitable for our process bcz, no flow in speaking..', 50, '0000-00-00 00:00:00', 1),
(1907, 2013, 16, 7, 0, 'selected for RE ,salary 13k fix', 50, '0000-00-00 00:00:00', 1),
(1908, 1985, 33, 9, 0, 'Convincing in sales but asking high package ', 50, '0000-00-00 00:00:00', 1),
(1909, 2002, 28, 5, 0, 'Not strong in basic skillsets.', 50, '0000-00-00 00:00:00', 1),
(1910, 2004, 29, 5, 1, 'rejected', 50, '0000-00-00 00:00:00', 1),
(1911, 1927, 18, 7, 3, 'Shortlisted for lokesh Team', 50, '0000-00-00 00:00:00', 1),
(1912, 2009, 28, 5, 0, 'Not strong in basic skill set.', 50, '0000-00-00 00:00:00', 1),
(1913, 2013, 8, 3, 0, '13K CTC FOR THIYAGU TEAM', 16, '2020-11-23 03:56:19', 1),
(1914, 1937, 36, 5, 0, 'Not fit', 36, '2020-11-23 05:50:45', 1),
(1915, 1995, 8, 3, 0, '23K ctc no esi and pf.', 51, '2020-11-24 10:40:18', 1),
(1916, 2005, 8, 3, 0, '24K ctc and no esi and pf', 51, '2020-11-24 10:41:21', 1),
(1917, 2050, 28, 4, 0, 'She is good in php. System task for 25/11/2020', 7, '0000-00-00 00:00:00', 1),
(1918, 2050, 27, 2, 0, 'System Task Given. She will completed today.', 28, '2020-11-24 12:58:53', 1),
(1919, 1982, 28, 5, 0, 'He is not strong in technically.', 7, '0000-00-00 00:00:00', 1),
(1920, 1922, 8, 5, 0, 'will not join', 27, '2020-11-26 11:02:03', 1),
(1921, 1922, 27, 7, 0, ' For The First Month same CTC which he getting in his previous company will be given. From the second month we will inform the CTC based on the performance.', 27, '2020-11-26 11:02:03', 1),
(1922, 1953, 27, 5, 0, 'System Task Not Completed.', 27, '2020-11-26 11:02:40', 1),
(1923, 2016, 27, 2, 0, 'He is a Fresher. He is confused in technology. I gave 1 week time. he will come back again for the interview.', 7, '0000-00-00 00:00:00', 1),
(1924, 1927, 8, 3, 0, '26k ctc for lokesh team', 18, '2020-11-26 12:50:04', 1),
(1925, 1994, 8, 5, 0, 'will not join. exp is 28k and current 21.5k', 18, '2020-11-26 12:51:25', 1),
(1926, 1946, 27, 5, 0, 'Task Incomplete.', 27, '2020-11-26 01:05:44', 1),
(1927, 1940, 8, 5, 0, 'will not join.', 36, '2020-11-26 01:06:20', 1),
(1928, 2015, 27, 5, 0, 'Donxquott have a Basic Knowledge. He knows only Wordpress.', 50, '0000-00-00 00:00:00', 1),
(1929, 2069, 57, 7, 0, 'candidate is ok .. kindly negotiate the salary', 50, '0000-00-00 00:00:00', 1),
(1930, 2070, 24, 7, 0, 'candidate selected 14k. 2nd round met mr.Srikanth.. joining monday', 50, '0000-00-00 00:00:00', 1),
(1931, 2073, 59, 5, 0, 'Not good in communication, High CTC expectations', 50, '0000-00-00 00:00:00', 1),
(1932, 2067, 27, 2, 0, 'Task Given. CAFS Jobs Website and Logo has to design with his own creativity.', 50, '0000-00-00 00:00:00', 1),
(1933, 2076, 19, 4, 4, 'NEED BALAJI SIR CONFIRMATION', 50, '0000-00-00 00:00:00', 1),
(1934, 1694, 8, 3, 0, '14k ctc for it', 27, '2020-11-27 01:28:54', 1),
(1935, 1694, 27, 7, 0, 'She Is Rejected In The Previous Interview Because Of Task Incomplete. She Is Come Again And Completed The Given Task. She Is Selected.', 27, '2020-11-27 01:28:54', 1),
(1936, 2070, 8, 3, 0, '14k for Suthagar team', 24, '2020-11-27 01:32:54', 1),
(1937, 2069, 8, 3, 0, '14k for syed team', 57, '2020-11-27 01:36:05', 1),
(1938, 1996, 28, 4, 0, 'She Know answer but not explain the properly. So given to system task for checking skills.', 1, '0000-00-00 00:00:00', 1),
(1939, 1996, 27, 7, 0, 'System Task is Completed. we can offer 16K as a CTC. Already i have spoke with her.', 28, '2020-11-27 02:42:36', 1),
(1940, 1996, 8, 3, 0, '16kctc for it team', 27, '2020-11-27 03:01:44', 1),
(1941, 2076, 8, 3, 0, '21K ctc for kannan team', 19, '2020-11-27 05:39:38', 1),
(1942, 2091, 20, 5, 0, 'not good in communication', 7, '0000-00-00 00:00:00', 1),
(1943, 2056, 57, 7, 0, 'candidate is ok . salary 13k ctc ', 7, '0000-00-00 00:00:00', 1),
(1944, 2088, 28, 5, 0, 'He is not strong in basic php.', 7, '0000-00-00 00:00:00', 1),
(1945, 2086, 28, 2, 0, 'She is need to recall Technical. ncd on 30/11/2020', 7, '0000-00-00 00:00:00', 1),
(1946, 2056, 8, 3, 0, '13k for syed team', 57, '2020-11-28 12:21:01', 1),
(1947, 2094, 19, 5, 0, 'not fit for sale', 7, '0000-00-00 00:00:00', 1),
(1948, 2072, 28, 5, 0, 'Not strong in basic skillset', 7, '0000-00-00 00:00:00', 1),
(1949, 2057, 59, 5, 0, 'Not much communicative, will not be fit', 7, '0000-00-00 00:00:00', 1),
(1950, 2083, 40, 4, 4, 'Not having sales experience, But seems like a dedicated candidate and long term asset.', 50, '0000-00-00 00:00:00', 1),
(1951, 2083, 18, 7, 4, 'Selected For Veben Team. Offer 2.75L per annum As a Consultant. Joining Date Is 1 Dec', 40, '2020-11-30 10:42:55', 1),
(1952, 2026, 59, 5, 0, 'Location Constraint', 50, '0000-00-00 00:00:00', 1),
(1953, 2025, 59, 4, 0, 'Not much ok, can give a try', 50, '0000-00-00 00:00:00', 1),
(1954, 2027, 59, 5, 0, 'Not Fit. Looking for Non voice', 50, '0000-00-00 00:00:00', 1),
(1955, 2007, 56, 4, 3, 'selected for next round', 52, '0000-00-00 00:00:00', 1),
(1956, 2044, 59, 4, 0, 'Not much ok, can give a try', 50, '0000-00-00 00:00:00', 1),
(1957, 2122, 59, 4, 0, 'Good in Communicating', 50, '0000-00-00 00:00:00', 1),
(1958, 2124, 59, 5, 0, 'No Bike. Will not sustain', 50, '0000-00-00 00:00:00', 1),
(1959, 2133, 24, 7, 0, 'selected 21k ctc 1 dec 20 joining', 50, '0000-00-00 00:00:00', 1),
(1960, 2112, 59, 5, 0, 'Not ok for bond, will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(1961, 2113, 59, 8, 0, 'Left without attending', 50, '0000-00-00 00:00:00', 1),
(1962, 2040, 14, 5, 0, 'not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(1963, 2075, 38, 7, 3, 'Kindly confirm his joining and salary', 50, '0000-00-00 00:00:00', 1),
(1964, 2120, 27, 2, 0, 'He Is Looking For Internship. Will Discuss With Team.', 50, '0000-00-00 00:00:00', 1),
(1965, 2128, 27, 2, 0, 'He Is Looking For Internship. Will Discuss With Team.', 50, '0000-00-00 00:00:00', 1),
(1966, 2118, 27, 2, 0, 'He is Looking for Internship. Will discuss with Team.', 50, '0000-00-00 00:00:00', 1),
(1967, 2077, 38, 5, 2, 'he Quited Previous Job Because Of Roaming Outside, So He Will Not Sustain In Our Field.....', 50, '0000-00-00 00:00:00', 1),
(1968, 2086, 27, 5, 0, 'Task Not Completed. Even she is not ready to Complete the Task.', 28, '2020-11-30 12:08:36', 1),
(1969, 2086, 28, 4, 0, 'She is good in basic skills.', 28, '2020-11-30 12:08:36', 1),
(1970, 2083, 8, 3, 0, '23k ctc for veben team 21850 as net in patroniss', 18, '2020-11-30 12:11:50', 1),
(1971, 2121, 27, 5, 0, 'Dont Know The Basics. ', 50, '0000-00-00 00:00:00', 1),
(1972, 2022, 8, 5, 0, 'pronunciation is not clear and will not suite for crm', 50, '0000-00-00 00:00:00', 1),
(1973, 2024, 59, 5, 0, 'Not fit. Location Constraint', 50, '0000-00-00 00:00:00', 1),
(1974, 2142, 27, 5, 0, 'Dont know the Basics. he is interested in Python Only.', 50, '0000-00-00 00:00:00', 1),
(1975, 2131, 59, 4, 0, 'Have sales exp, Ok can give a try', 50, '0000-00-00 00:00:00', 1),
(1976, 2037, 59, 8, 0, 'Left without attending', 50, '0000-00-00 00:00:00', 1),
(1977, 2136, 8, 5, 0, 'will not suite for sales.', 50, '0000-00-00 00:00:00', 1),
(1978, 2144, 8, 5, 0, 'will not sustain. no language and no 2 wheeler', 50, '0000-00-00 00:00:00', 1),
(1979, 2064, 8, 3, 0, '13700ctc and net 13k for syed team', 50, '0000-00-00 00:00:00', 1),
(1980, 2049, 8, 8, 0, 'left before interview\n', 50, '0000-00-00 00:00:00', 1),
(1981, 2085, 39, 9, 0, 'Check for RE', 50, '0000-00-00 00:00:00', 1),
(1982, 2104, 27, 5, 0, 'He knows only Java. He dont have an idea in PHP Basics.', 50, '0000-00-00 00:00:00', 1),
(1983, 2075, 8, 3, 0, '17900 ctc and net 17K for gowshick team', 38, '2020-11-30 01:19:34', 1),
(1984, 2140, 8, 4, 0, 'check for sys admin profile. fresher', 50, '0000-00-00 00:00:00', 1),
(1985, 2046, 59, 5, 0, 'Location Constraint', 50, '0000-00-00 00:00:00', 1),
(1986, 2065, 27, 2, 0, 'He done one application in inventory. He need two days time for recall. will give system task then check.', 50, '0000-00-00 00:00:00', 1),
(1987, 2132, 38, 5, 1, 'he will not suit for our process and not good in communication', 50, '0000-00-00 00:00:00', 1),
(1988, 2122, 8, 4, 0, 'check for crm profile\n', 59, '2020-11-30 04:45:22', 1),
(1989, 2064, 57, 7, 0, 'Candidate is ok ..kindly negotiate the salary', 8, '2020-11-30 04:56:37', 1),
(1990, 2044, 8, 5, 0, 'language is not good. will not suite for our process.', 59, '2020-11-30 04:57:13', 1),
(1991, 2140, 54, 4, 2, 'He is fresher, so kindly check he can able to learn things quickly.', 8, '2020-11-30 05:05:42', 1),
(1992, 2122, 21, 5, 1, 'Not Sustain Long Term Bcz She Is Planning Mba For Abroad...', 8, '2020-11-30 05:07:28', 1),
(1993, 2112, 54, 4, 3, 'kindly check the sustainability.', 59, '2020-11-30 05:08:05', 1),
(1994, 2025, 8, 5, 0, 'will not suite for crm', 59, '2020-11-30 06:20:18', 1),
(1995, 2064, 8, 3, 0, '13700ctc and net 13k for syed team', 57, '2020-11-30 06:26:54', 1),
(1996, 2133, 8, 3, 0, '21k ctc for suthagar team', 24, '2020-12-01 10:00:31', 1),
(1997, 2155, 27, 2, 0, 'Fresher. but he wants to learn. he will come tomorrow for system Task.', 50, '0000-00-00 00:00:00', 1),
(1998, 2098, 27, 9, 0, 'She is came for Relationship Manager', 50, '0000-00-00 00:00:00', 1),
(1999, 2131, 21, 5, 0, '25k Above Salary Expected ..', 59, '2020-12-01 10:42:09', 1),
(2000, 2007, 30, 4, 3, 'overall performance its good.Salary we discussed about 30k pre month ctc.confirm him joining and further process.', 56, '2020-12-01 11:06:27', 1),
(2001, 2117, 27, 5, 0, 'Donxquott Have A Basic Knowledge In PHP. But he is ready for 3 Years Bond.', 50, '0000-00-00 00:00:00', 1),
(2002, 2111, 27, 5, 0, 'Donxquott have a basic knowledge in PHP', 50, '0000-00-00 00:00:00', 1),
(2003, 2085, 38, 4, 2, 'check this candidate by telephonic round once okay means confirm his joining and salary 15k take home....', 39, '2020-12-01 11:30:29', 1),
(2004, 2051, 39, 5, 1, 'He will not sustain and he will not suit for our Field', 50, '0000-00-00 00:00:00', 1),
(2005, 2166, 38, 7, 0, 'CONFIRM HER FOR SATHISH SIR TEAM CRM....SALARY 14K TAKE HOME....', 50, '0000-00-00 00:00:00', 1),
(2006, 2140, 32, 5, 0, 'Not accepted for Bond', 54, '2020-12-01 12:04:49', 1),
(2007, 2127, 36, 5, 0, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(2008, 2112, 59, 5, 0, 'Not ok for bond, will not sustain for a long', 54, '2020-12-01 12:07:11', 1),
(2009, 2163, 27, 2, 0, 'tASK given. He will complete and send back to us', 50, '0000-00-00 00:00:00', 1),
(2010, 2160, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(2011, 1907, 8, 3, 0, '8k ctc for it', 27, '2020-12-01 01:09:39', 1),
(2012, 1907, 27, 7, 0, 'He is Shortlisted. Partially he done the Task. But we can consider as a fresher with 3 Years Bond. He is okay for that.', 27, '2020-12-01 01:09:39', 1),
(2013, 2098, 8, 5, 0, 'too long. from sriperambur', 27, '2020-12-01 01:14:29', 1),
(2014, 2007, 8, 3, 0, '30k ctc for mani team', 30, '2020-12-01 02:58:03', 1),
(2015, 2186, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2016, 2148, 51, 5, 0, 'fake info', 7, '0000-00-00 00:00:00', 1),
(2017, 2181, 59, 5, 0, 'Not Fit,will not sustain ', 50, '0000-00-00 00:00:00', 1),
(2018, 2176, 27, 2, 0, 'Task Given. She will Complete and send back to us.', 50, '0000-00-00 00:00:00', 1),
(2019, 2186, 24, 5, 0, 'not fit our profile', 8, '2020-12-01 03:37:44', 1),
(2020, 2023, 59, 5, 0, 'Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(2021, 2190, 36, 7, 4, 'Shortlisted. 15K confirmed with Sriram sir ', 50, '0000-00-00 00:00:00', 1),
(2022, 2194, 59, 5, 0, 'No much ok with agreement, will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(2023, 2191, 30, 4, 0, 'Over all performance its good,product knowledge and more Experience in our sales field.confirm joining and further process.6.5lac ctc', 7, '0000-00-00 00:00:00', 1),
(2024, 2050, 27, 5, 0, 'Task Not Completed.', 27, '2020-12-02 10:39:19', 1),
(2025, 2160, 27, 5, 0, 'Task not Completed.', 27, '2020-12-02 10:39:41', 1),
(2026, 2128, 8, 5, 0, 'intership', 27, '2020-12-02 10:41:51', 1),
(2027, 2128, 27, 7, 0, 'We offered an internship. He is studying now. ', 27, '2020-12-02 10:41:51', 1),
(2028, 2120, 8, 5, 0, 'internship ', 27, '2020-12-02 10:42:03', 1),
(2029, 2120, 27, 7, 0, 'We Offered An Internship. He Is Studying Now. ', 27, '2020-12-02 10:42:03', 1),
(2030, 2118, 27, 5, 0, 'He is Looking for an internship. He is not good in technical.', 27, '2020-12-02 10:42:40', 1),
(2031, 2191, 8, 3, 0, '50359 th and with esi/pf', 30, '2020-12-02 10:49:38', 1),
(2032, 1952, 8, 3, 0, '30k ctc for sarath team', 8, '2020-12-02 11:12:45', 1),
(2033, 2199, 8, 3, 0, '24k ctc and no esi/pf for logesh team', 50, '0000-00-00 00:00:00', 1),
(2034, 2149, 27, 7, 0, 'Potential Candidate. Shortlisted and offered 12.5k take home. joining tomorrow.', 50, '0000-00-00 00:00:00', 1),
(2035, 2100, 8, 5, 0, 'was hold for next round but no response', 50, '0000-00-00 00:00:00', 1),
(2036, 2198, 8, 5, 0, 'will not suite for calling and sales', 50, '0000-00-00 00:00:00', 1),
(2037, 2209, 27, 2, 0, 'Task Given(remote). He will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(2038, 2211, 44, 5, 0, 'Not fit for Sales', 50, '0000-00-00 00:00:00', 1),
(2039, 2079, 8, 3, 0, '16k th and 16850 ctc for dhivya team', 50, '0000-00-00 00:00:00', 1),
(2040, 2178, 27, 5, 0, 'Dont have an experience in UX', 50, '0000-00-00 00:00:00', 1),
(2041, 2190, 8, 3, 0, '15800 ctc and 15th for logesh team', 36, '2020-12-02 12:54:42', 1),
(2042, 2147, 27, 2, 0, 'Task has to be given tomorrow.', 50, '0000-00-00 00:00:00', 1),
(2043, 2085, 8, 3, 0, '15k th for gowshick team', 38, '2020-12-02 01:35:54', 1),
(2044, 2199, 36, 7, 0, 'Selected. 24K', 8, '2020-12-02 02:34:52', 1),
(2045, 2100, 53, 4, 0, 'pls check fr arumbakm. he said ll go by sat. bt doubt oly.', 8, '2020-12-02 02:47:36', 1),
(2046, 2149, 8, 3, 0, '12540 th and 13200 ctc for it', 27, '2020-12-02 03:41:20', 1),
(2047, 2079, 21, 7, 0, 'ok , selected , need to confirm joining', 8, '2020-12-02 04:01:48', 1),
(2048, 2199, 8, 3, 0, '24k ctc and no esi/pf for logesh team', 36, '2020-12-02 04:27:19', 1),
(2049, 2169, 27, 2, 0, 'Task Given. he will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(2050, 2205, 27, 2, 0, 'He will come tomorrow for an interview.', 50, '0000-00-00 00:00:00', 1),
(2051, 2188, 27, 5, 0, 'Not Good in Technical.', 50, '0000-00-00 00:00:00', 1),
(2052, 2218, 27, 2, 0, 'Selected for system task. i will assign the task.', 50, '0000-00-00 00:00:00', 1),
(2053, 2214, 8, 4, 0, 'fresher and done 3 month course in uixxampux', 50, '0000-00-00 00:00:00', 1),
(2054, 2195, 8, 4, 0, 'have 1.4 yr exp and exp is 18k', 50, '0000-00-00 00:00:00', 1),
(2055, 2225, 8, 4, 0, '2yr exp in ui/ux and exp is 40k', 50, '0000-00-00 00:00:00', 1),
(2056, 2171, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2057, 2214, 27, 2, 0, 'Task Given. He will complete and semd us back.', 8, '2020-12-03 12:46:29', 1),
(2058, 2195, 27, 5, 0, 'He knows only UI. donxquott have an experience in UX.', 8, '2020-12-03 12:47:27', 1),
(2059, 2171, 16, 5, 0, 'low profile', 8, '2020-12-03 12:48:20', 1),
(2060, 2225, 27, 2, 0, 'Task Given. He will complete and send back to us.', 8, '2020-12-03 12:48:56', 1),
(2061, 2196, 33, 5, 2, 'NOT FIT FOR SALES AND RM', 50, '0000-00-00 00:00:00', 1),
(2062, 2153, 8, 3, 0, '22k ctc for sarath team no esi/pf', 50, '0000-00-00 00:00:00', 1),
(2063, 2204, 8, 4, 3, 'Check for RM.', 50, '0000-00-00 00:00:00', 1),
(2064, 2153, 51, 4, 3, 'moved to sir for final round', 8, '2020-12-03 03:32:32', 1),
(2065, 2204, 51, 5, 1, 'Low In Pressure Handling', 8, '2020-12-03 03:34:16', 1),
(2066, 2221, 8, 4, 0, 'check for admin profile. fresher', 50, '0000-00-00 00:00:00', 1),
(2067, 2166, 8, 3, 0, '14k th for crm sathish team', 38, '2020-12-03 04:03:20', 1),
(2068, 2163, 27, 5, 0, 'Couldnxquott meet our expectations.', 27, '2020-12-03 04:10:55', 1),
(2069, 2221, 32, 5, 0, 'Not Accepted for Bond', 8, '2020-12-03 04:40:29', 1),
(2070, 2153, 29, 7, 3, 'SELECTED FOR RM - SARATH TEAM, SALARY DETAILS MENTION IN RESUME', 51, '2020-12-03 07:29:35', 1),
(2071, 2234, 27, 5, 0, 'He dont have a knowledge in PHP.', 50, '0000-00-00 00:00:00', 1),
(2072, 2245, 8, 4, 3, 'check for e-sale profile', 50, '0000-00-00 00:00:00', 1),
(2073, 2236, 27, 5, 0, 'Having 5 months experience. last 7 month gap. he dont have a knowledge in PHP.', 50, '0000-00-00 00:00:00', 1),
(2074, 2228, 32, 5, 0, 'Expected Salary is High', 50, '0000-00-00 00:00:00', 1),
(2075, 2245, 11, 5, 3, 'communication is poor', 8, '2020-12-04 12:31:35', 1),
(2076, 2249, 38, 5, 3, 'expecting high package but he is fresher', 50, '0000-00-00 00:00:00', 1),
(2077, 2176, 27, 5, 0, 'Task not up to our level. Even she is not did what am telling', 27, '2020-12-04 01:23:51', 1),
(2078, 2016, 27, 5, 0, 'Task not Completed.', 27, '2020-12-04 01:26:47', 1),
(2079, 2260, 8, 3, 0, '25k ctc for GK team. no esi/pf', 50, '0000-00-00 00:00:00', 1),
(2080, 2260, 29, 7, 3, 'SELECTED FOR RM, GK TEAM, SALARY DETAILS MENTIONED IN RESUME', 8, '2020-12-04 04:08:51', 1),
(2081, 2079, 8, 3, 0, '16k th and 16850 ctc for dhivya team', 21, '2020-12-04 06:26:16', 1),
(2082, 2253, 59, 4, 0, 'Ok,can try for Arumbakkam branch', 50, '0000-00-00 00:00:00', 1),
(2083, 2272, 27, 5, 0, 'He had an offer in infosys. he will not sustain with us.', 50, '0000-00-00 00:00:00', 1),
(2084, 2259, 27, 2, 0, '1st round taken by umadevi. Selected for system task. task given', 50, '0000-00-00 00:00:00', 1),
(2085, 2153, 8, 3, 0, '22k ctc for sarath team no esi/pf', 29, '2020-12-05 11:25:23', 1),
(2086, 2260, 8, 3, 0, '25k ctc for GK team. no esi/pf', 29, '2020-12-05 11:27:06', 1),
(2087, 2229, 8, 4, 3, 'fresher, exp 15k and check for RM.', 50, '0000-00-00 00:00:00', 1),
(2088, 2229, 44, 5, 3, 'She is Looking OPS or HR Job', 8, '2020-12-05 12:25:08', 1),
(2089, 2285, 8, 4, 0, 'check for RM', 50, '0000-00-00 00:00:00', 1),
(2090, 2219, 27, 2, 0, 'Task Given. He Will Complete And Send Back To Us.', 50, '0000-00-00 00:00:00', 1),
(2091, 2281, 8, 5, 0, 'will not suite for rE. no communication and not speaking up.', 50, '0000-00-00 00:00:00', 1),
(2092, 2284, 8, 4, 0, 'check for esale crm', 50, '0000-00-00 00:00:00', 1),
(2093, 2256, 8, 3, 0, '16850 ctc and th 16k.', 50, '0000-00-00 00:00:00', 1),
(2094, 2285, 51, 4, 3, 'moved to sir', 8, '2020-12-05 02:45:37', 1),
(2095, 2256, 21, 7, 4, 'need to confirm salary xxamp joining ', 8, '2020-12-05 02:46:10', 1),
(2096, 2284, 21, 5, 0, 'she have experienced in credit card collection process.. she dont have sales skill . but expecting 18k above xxamp also she is not sustain long term , bcz 6 month only she planned working...', 8, '2020-12-05 02:46:41', 1),
(2097, 2253, 53, 9, 0, 'intrested inMF', 59, '2020-12-05 03:48:38', 1),
(2098, 2259, 27, 5, 0, 'Not Completed Task.', 27, '2020-12-05 04:41:28', 1),
(2099, 2285, 29, 5, 1, 'NOT SELECTED', 51, '2020-12-05 06:10:00', 1),
(2100, 2256, 8, 3, 0, '16850 ctc and th 16k.', 21, '2020-12-05 06:13:28', 1),
(2101, 1985, 18, 5, 0, 'no response from the candidate.', 33, '2020-12-06 12:55:38', 1),
(2102, 2261, 59, 4, 0, 'Ok, can give a try for RM', 50, '0000-00-00 00:00:00', 1),
(2103, 2248, 27, 2, 0, 'Task Given. He will complete and send back to us.', 50, '0000-00-00 00:00:00', 1),
(2104, 2279, 27, 5, 0, 'Dont have a knowledge in PHP', 50, '0000-00-00 00:00:00', 1),
(2105, 2289, 59, 5, 0, 'Not much communicative', 50, '0000-00-00 00:00:00', 1),
(2106, 2304, 27, 2, 0, 'Task Given. she will come back to us', 50, '0000-00-00 00:00:00', 1),
(2107, 2226, 27, 5, 0, 'Dont know the Basics', 50, '0000-00-00 00:00:00', 1),
(2108, 2189, 27, 5, 0, 'Dont know the Basics', 50, '0000-00-00 00:00:00', 1),
(2109, 2312, 8, 5, 0, 'he is struggling to speak. will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(2110, 2288, 8, 5, 0, 'not int in field sales. as CRM she is exp 20K. ', 50, '0000-00-00 00:00:00', 1),
(2111, 2316, 8, 5, 0, 'can try for crm', 50, '0000-00-00 00:00:00', 1),
(2112, 2283, 56, 4, 3, 'selected for next round for RM', 50, '0000-00-00 00:00:00', 1),
(2113, 2309, 27, 2, 0, 'He will come for next Round.', 50, '0000-00-00 00:00:00', 1),
(2114, 2261, 33, 7, 4, 'Selected ', 59, '2020-12-07 12:27:00', 1),
(2115, 2283, 30, 4, 3, 'Overall all performance k ,take one more telephonic round from your side,whether she k with PC rm profile or e sales rm profile.confirm joining and further process.', 56, '2020-12-07 12:30:40', 1),
(2116, 2295, 8, 5, 0, 'fresher, no job need, time being she is looking for job. ', 50, '0000-00-00 00:00:00', 1),
(2117, 2302, 8, 5, 0, 'applied for RE. fresher, will not suite for calling and sales profile. no 2 wheeler and too long from paadi.', 50, '0000-00-00 00:00:00', 1),
(2118, 2305, 8, 3, 0, '19k ctc for kannan team', 50, '0000-00-00 00:00:00', 1),
(2119, 2321, 8, 3, 0, '13k for saravana team', 50, '0000-00-00 00:00:00', 1),
(2120, 1806, 53, 5, 0, 'asked to call after 10 days but he didnt call', 53, '2020-12-07 03:26:55', 1),
(2121, 2253, 8, 3, 0, '18k ctc for raghu team', 53, '2020-12-07 03:29:42', 1),
(2122, 2287, 8, 4, 3, 'check for rm profile', 50, '0000-00-00 00:00:00', 1),
(2123, 2323, 27, 5, 0, 'He knows only Java. dont have a knowledge in PHP.', 50, '0000-00-00 00:00:00', 1),
(2124, 2321, 53, 4, 0, 'Ok fr RE. Arumbnakkam pls check', 8, '2020-12-07 04:13:27', 1),
(2125, 2305, 19, 7, 4, 'ctc 19k', 8, '2020-12-07 04:14:24', 1),
(2126, 2287, 44, 5, 2, 'He is not fit for life sales', 8, '2020-12-07 04:15:21', 1),
(2127, 2316, 24, 1, 0, NULL, 8, '2020-12-07 04:18:55', 1),
(2128, 2253, 35, 7, 0, 'Selected for MF RM Transferred to HR ', 8, '2020-12-07 04:19:55', 1),
(2129, 2271, 8, 3, 0, '13k for Saravana team.', 7, '0000-00-00 00:00:00', 1),
(2130, 2261, 8, 3, 0, '24k ctc and no esi/pf, for rajkumar team', 33, '2020-12-07 05:11:55', 1),
(2131, 2271, 53, 4, 0, 'check fr RE. Aumbakkam', 8, '2020-12-07 05:50:53', 1),
(2132, 2253, 8, 3, 0, '18k ctc for raghu team', 35, '2020-12-07 06:40:21', 1),
(2133, 2283, 8, 2, 0, 'telephonic', 30, '2020-12-07 11:46:33', 1),
(2134, 2299, 27, 5, 0, 'Not good in technical', 50, '0000-00-00 00:00:00', 1),
(2135, 2292, 27, 2, 0, 'Good in technical. She will come for an interview for System task.', 50, '0000-00-00 00:00:00', 1),
(2136, 2296, 27, 5, 0, 'dont know the Basics. ', 50, '0000-00-00 00:00:00', 1),
(2137, 2329, 27, 2, 0, 'Task Given. She will complete and send back to us.', 50, '0000-00-00 00:00:00', 1),
(2138, 2321, 15, 4, 3, 'ok selected salary 13k expected', 53, '2020-12-08 10:57:55', 1),
(2139, 2271, 15, 4, 3, 'ok salary expected 13k ...', 53, '2020-12-08 11:04:44', 1),
(2140, 2325, 27, 5, 0, 'Dont Have a knowledge in PHP Mysql', 50, '0000-00-00 00:00:00', 1),
(2141, 2305, 8, 3, 0, '19k ctc for kannan team', 19, '2020-12-08 11:08:59', 1),
(2142, 2340, 8, 3, 0, '13k for esale dhivya team', 50, '0000-00-00 00:00:00', 1),
(2143, 2100, 8, 5, 0, 'was hold for next round but no response', 53, '2020-12-08 11:22:40', 1),
(2144, 2273, 27, 5, 0, 'He dont have a knowledge in which position he applied.', 50, '0000-00-00 00:00:00', 1),
(2145, 2334, 8, 4, 0, 'looks like not Genuine. Check for RM', 50, '0000-00-00 00:00:00', 1),
(2146, 2346, 8, 3, 0, '22k ctc no esi/pf for shanmugam team', 50, '0000-00-00 00:00:00', 1),
(2147, 2335, 30, 4, 3, 'Overall performance k and confirm joining. We discussed salary 3.6ctc', 50, '0000-00-00 00:00:00', 1),
(2148, 2341, 8, 3, 0, '18k ctc for suthagar team', 50, '0000-00-00 00:00:00', 1),
(2149, 2350, 8, 5, 0, 'fresher, no communication and will not suite for crm/re.', 50, '0000-00-00 00:00:00', 1),
(2150, 2313, 8, 3, 0, '18k ctc for dhivya team esale', 50, '0000-00-00 00:00:00', 1),
(2151, 2315, 8, 5, 0, 'will not suit for our process. voice is very low and not bold', 50, '0000-00-00 00:00:00', 1),
(2152, 2311, 27, 5, 0, 'Not Good in technical.', 50, '0000-00-00 00:00:00', 1),
(2153, 2310, 27, 2, 0, 'Task Given. He will Complete and Send back to us.', 50, '0000-00-00 00:00:00', 1),
(2154, 2345, 8, 3, 0, '13k for ramesh team', 50, '0000-00-00 00:00:00', 1),
(2155, 2319, 8, 3, 0, '16k ctc for kannan team', 50, '0000-00-00 00:00:00', 1),
(2156, 2346, 31, 4, 3, 'recommend for next round with shanmugam', 8, '2020-12-08 01:14:29', 1),
(2157, 2268, 8, 4, 3, 'check for esale', 50, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(2158, 2340, 21, 4, 3, 'ok selected , need to confirm salary ', 8, '2020-12-08 01:15:11', 1),
(2159, 2334, 31, 5, 3, 'conveying most irrelevant things', 8, '2020-12-08 01:16:16', 1),
(2160, 2314, 59, 4, 0, 'Ok profile, can give a try ,having exp in customer handling', 50, '0000-00-00 00:00:00', 1),
(2161, 2268, 21, 8, 0, 'candidate gone', 8, '2020-12-08 01:17:22', 1),
(2162, 2313, 21, 7, 4, 'ok selected need to confirm salary ..', 8, '2020-12-08 02:45:26', 1),
(2163, 2319, 19, 7, 4, 'ctc - 16k', 8, '2020-12-08 02:46:13', 1),
(2164, 2341, 53, 4, 0, 'Ok fr me. pls check frm ur end', 8, '2020-12-08 02:46:49', 1),
(2165, 2345, 53, 7, 0, 'Ok fr RE. Ramesh team', 8, '2020-12-08 02:48:45', 1),
(2166, 2357, 59, 4, 0, 'Good Profile, Ready for field sales ', 50, '0000-00-00 00:00:00', 1),
(2167, 2349, 8, 2, 0, 'for rejoining confirmation.', 7, '0000-00-00 00:00:00', 1),
(2168, 2344, 8, 3, 0, '13k ctc for saravana team', 7, '0000-00-00 00:00:00', 1),
(2169, 2362, 16, 5, 0, 'low profile,sustain doubt', 7, '0000-00-00 00:00:00', 1),
(2170, 2344, 53, 7, 0, 'Ok fr RE saravanan team 13k Take home', 8, '2020-12-08 04:01:13', 1),
(2171, 2319, 8, 3, 0, '16k ctc for kannan team', 19, '2020-12-08 04:23:03', 1),
(2172, 2304, 27, 5, 0, 'Design is not good.', 27, '2020-12-08 04:30:56', 1),
(2173, 2065, 27, 5, 0, 'Task Not Completed', 27, '2020-12-08 04:31:31', 1),
(2174, 2314, 21, 5, 0, 'pronounciation problem', 59, '2020-12-08 04:43:41', 1),
(2175, 2357, 44, 7, 3, 'Candidate ok ,and salary part you can discuss with her', 59, '2020-12-08 04:44:30', 1),
(2176, 2321, 8, 3, 0, '13k for saravana team', 15, '2020-12-08 05:18:12', 1),
(2177, 2271, 8, 3, 0, '13k for Saravana team.', 15, '2020-12-08 05:21:58', 1),
(2178, 2340, 8, 3, 0, '13k for esale dhivya team', 21, '2020-12-08 05:32:32', 1),
(2179, 2313, 8, 3, 0, '18k ctc for dhivya team esale', 21, '2020-12-08 05:34:57', 1),
(2180, 2346, 44, 4, 3, 'Ji Please check once', 31, '2020-12-08 07:29:38', 1),
(2181, 2335, 8, 2, 0, 'for salary confirmation', 30, '2020-12-09 09:42:09', 1),
(2182, 2346, 29, 7, 3, 'SELECTED FOR RM - SHANMUGAM TEAM - 22K SALARY', 44, '2020-12-09 10:36:18', 1),
(2183, 2357, 8, 2, 0, 'she need to confirm her joining', 44, '2020-12-09 10:43:06', 1),
(2184, 2345, 8, 3, 0, '13k for ramesh team', 53, '2020-12-09 10:46:06', 1),
(2185, 2344, 8, 3, 0, '13k ctc for saravana team', 53, '2020-12-09 10:46:44', 1),
(2186, 2341, 24, 7, 0, 'candidate selected.. 18k slry banu madam already checked candidate..', 53, '2020-12-09 10:47:51', 1),
(2187, 2257, 27, 5, 0, 'He donxquott know the Basics', 50, '0000-00-00 00:00:00', 1),
(2188, 2369, 8, 2, 0, 'will not suite for esale and he needs time to think about re profile. ', 50, '0000-00-00 00:00:00', 1),
(2189, 2366, 8, 4, 0, 'check for BDM.', 50, '0000-00-00 00:00:00', 1),
(2190, 2351, 8, 3, 0, '14k ctc for srikanth team', 50, '0000-00-00 00:00:00', 1),
(2191, 2354, 8, 4, 0, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2192, 2341, 8, 3, 0, '18k ctc for suthagar team', 24, '2020-12-09 12:26:01', 1),
(2193, 2326, 8, 5, 0, 'not speaking up. will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(2194, 2338, 8, 5, 0, 'will not suite for any profile. knows nothing.', 50, '0000-00-00 00:00:00', 1),
(2195, 2374, 8, 3, 0, '14k ctc for dhivya team', 50, '0000-00-00 00:00:00', 1),
(2196, 2381, 8, 3, 0, '30k ctc and no pf and pt alone', 50, '0000-00-00 00:00:00', 1),
(2197, 2384, 8, 4, 3, 'check with this profile.', 50, '0000-00-00 00:00:00', 1),
(2198, 2329, 27, 5, 0, 'UI Design Not Good. ', 27, '2020-12-09 02:50:48', 1),
(2199, 2248, 27, 5, 0, 'Not Upto the Level', 27, '2020-12-09 02:52:02', 1),
(2200, 2155, 27, 5, 0, 'not Complete the System Task.', 27, '2020-12-09 02:53:22', 1),
(2201, 2219, 27, 5, 0, 'System Task not Completed.', 27, '2020-12-09 02:53:58', 1),
(2202, 2351, 20, 7, 0, 'Kindly shortlist the candidate for 14k CTC', 8, '2020-12-09 02:55:01', 1),
(2203, 2209, 27, 5, 0, 'Donxquott get any response.', 27, '2020-12-09 02:55:08', 1),
(2204, 2354, 20, 8, 0, 'didnt attend', 8, '2020-12-09 02:55:44', 1),
(2205, 2366, 29, 4, 0, 'esale - BDM Profile - Good insurance Experience, lower productive business, Sustainability will be Challenge, once review and confirm sir ', 8, '2020-12-09 02:56:22', 1),
(2206, 2374, 21, 7, 3, 'ok selected internal reference ', 8, '2020-12-09 03:00:12', 1),
(2207, 1697, 8, 5, 0, 'no update for his profile ', 8, '2020-12-09 03:21:18', 1),
(2208, 2381, 33, 4, 0, 'Selected ', 8, '2020-12-09 04:30:49', 1),
(2209, 2349, 8, 3, 0, '15k ctc for ramesh team', 8, '2020-12-09 04:48:18', 1),
(2210, 2384, 33, 5, 0, 'Not fit for sales', 8, '2020-12-09 05:04:32', 1),
(2211, 2351, 8, 3, 0, '14k ctc for srikanth team', 20, '2020-12-09 06:41:18', 1),
(2212, 2374, 8, 3, 0, '14k ctc for dhivya team', 21, '2020-12-10 10:16:44', 1),
(2213, 2372, 59, 2, 0, 'He needs time to think on the role', 50, '0000-00-00 00:00:00', 1),
(2214, 2395, 27, 5, 0, 'Communication not good.', 50, '0000-00-00 00:00:00', 1),
(2215, 2371, 27, 5, 0, 'Not good in mysql queries.', 50, '0000-00-00 00:00:00', 1),
(2216, 2392, 27, 5, 0, 'He donxquott have a basic knowledge. its a first interview. He didnxquott prepared anything.', 50, '0000-00-00 00:00:00', 1),
(2217, 2346, 8, 3, 0, '22k ctc no esi/pf for shanmugam team', 29, '2020-12-10 02:58:07', 1),
(2218, 2366, 45, 8, 0, 'Not Attended', 29, '2020-12-10 03:02:55', 1),
(2219, 2405, 59, 5, 0, 'Will not fit for the role', 50, '0000-00-00 00:00:00', 1),
(2220, 2333, 41, 3, 0, 'Test \nDummy entry', 50, '0000-00-00 00:00:00', 1),
(2221, 2427, 8, 4, 3, 'fresher, need to check for RM .', 50, '0000-00-00 00:00:00', 1),
(2222, 2427, 44, 5, 1, 'He is not fit for life sales', 8, '2020-12-11 12:41:43', 1),
(2223, 2369, 8, 5, 0, 'not Interested in sales', 8, '2020-12-11 12:46:57', 1),
(2224, 2317, 30, 5, 0, 'he will sustain and bad in communication', 50, '0000-00-00 00:00:00', 1),
(2225, 2243, 8, 3, 0, '13k ctc and for kannan team', 50, '0000-00-00 00:00:00', 1),
(2226, 2415, 8, 4, 0, 'came for crm but interested in IT.', 50, '0000-00-00 00:00:00', 1),
(2227, 2336, 30, 7, 3, 'Confirm his salary and joining', 50, '0000-00-00 00:00:00', 1),
(2228, 2435, 59, 5, 0, 'No good communication', 50, '0000-00-00 00:00:00', 1),
(2229, 2243, 19, 7, 4, 'ctc 13k', 8, '2020-12-11 03:14:52', 1),
(2230, 2415, 27, 5, 0, 'He donxquott have a basic knowledge. ', 8, '2020-12-11 03:16:43', 1),
(2231, 2438, 8, 3, 0, '83333 ctc and 79525 is net. ', 7, '0000-00-00 00:00:00', 1),
(2232, 2433, 8, 4, 0, 'check for e-sale', 50, '0000-00-00 00:00:00', 1),
(2233, 2433, 21, 5, 0, 'not fit for esales', 8, '2020-12-11 05:21:34', 1),
(2234, 2243, 19, 7, 4, 'ctc 13k', 19, '2020-12-11 05:37:31', 1),
(2235, 2243, 8, 3, 0, '13k ctc and for kannan team', 19, '2020-12-11 05:49:52', 1),
(2236, 2336, 8, 3, 0, '29k for Sanjeev team with esi/pf', 30, '2020-12-11 06:53:21', 1),
(2237, 2440, 8, 5, 0, 'will not sustain and will not suite for RE', 50, '0000-00-00 00:00:00', 1),
(2238, 2457, 27, 7, 0, 'He is okay for 3 years Bond. salary confirmed 8k per month as a take home.', 50, '0000-00-00 00:00:00', 1),
(2239, 2451, 8, 5, 0, 'fresher, will not suite for our process.', 50, '0000-00-00 00:00:00', 1),
(2240, 2458, 20, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(2241, 2455, 38, 5, 1, 'bad in communication and he is expecting high salary ', 50, '0000-00-00 00:00:00', 1),
(2242, 2445, 59, 5, 0, 'No experience in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2243, 2461, 20, 4, 0, 'selected for Next round', 50, '0000-00-00 00:00:00', 1),
(2244, 2462, 8, 4, 0, 'check for RE, fresher', 50, '0000-00-00 00:00:00', 1),
(2245, 2434, 8, 4, 0, 'check for Re', 50, '0000-00-00 00:00:00', 1),
(2246, 2453, 8, 5, 0, 'not Interested to join', 50, '0000-00-00 00:00:00', 1),
(2247, 2465, 8, 5, 0, 'will not suite for any profile', 50, '0000-00-00 00:00:00', 1),
(2248, 2459, 59, 5, 0, 'No communication xxamp no experience in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2249, 2463, 8, 5, 0, 'not speaking up will not suite for CRM', 50, '0000-00-00 00:00:00', 1),
(2250, 2447, 8, 3, 0, '13k ctc for kannan team', 50, '0000-00-00 00:00:00', 1),
(2251, 2457, 8, 3, 0, '8k th for IT', 27, '2020-12-12 12:22:38', 1),
(2252, 2466, 8, 5, 0, 'fresher, will not suite for esale. ', 50, '0000-00-00 00:00:00', 1),
(2253, 2461, 53, 4, 0, 'pls check sustainability, laptop and payslip.', 20, '2020-12-12 12:53:31', 1),
(2254, 2364, 41, 5, 0, 'Dummy\nTest', 1, '0000-00-00 00:00:00', 1),
(2255, 2461, 59, 8, 0, 'Candidate left without attending the interview', 53, '2020-12-12 12:56:52', 1),
(2256, 2453, 35, 7, 0, 'Shortlisted Next Round to HR Candidate stated okay for Sales and Bond too, ', 8, '2020-12-12 02:30:51', 1),
(2257, 2434, 24, 5, 0, 'NOT FIT FOR TELECALLING AND RE', 8, '2020-12-12 02:31:41', 1),
(2258, 2447, 19, 7, 4, 'ctc 13k', 8, '2020-12-12 02:32:29', 1),
(2259, 2462, 19, 5, 1, 'not fit for sales', 8, '2020-12-12 02:34:32', 1),
(2260, 2447, 8, 3, 0, '13k ctc for kannan team', 19, '2020-12-12 02:44:15', 1),
(2261, 2442, 27, 5, 0, 'confused in his technology. applied android developer. but he donxquott have a knowledge in this.', 50, '0000-00-00 00:00:00', 1),
(2262, 2475, 20, 9, 0, 'doesnxquott have bike', 50, '0000-00-00 00:00:00', 1),
(2263, 2475, 8, 3, 0, '15k ctc for Esale', 20, '2020-12-12 04:44:24', 1),
(2264, 2475, 21, 7, 4, 'selected...', 8, '2020-12-12 04:47:55', 1),
(2265, 2475, 8, 3, 0, '15k ctc for Esale', 21, '2020-12-12 06:13:22', 1),
(2266, 2453, 8, 5, 0, 'not Interested to join', 35, '2020-12-14 10:07:01', 1),
(2267, 2372, 59, 5, 0, 'He asked for a time to think, but No Response ', 59, '2020-12-14 10:12:03', 1),
(2268, 2387, 19, 5, 1, 'not fit for sales', 50, '0000-00-00 00:00:00', 1),
(2269, 2382, 19, 5, 1, 'salary exceptation too high', 50, '0000-00-00 00:00:00', 1),
(2270, 2420, 24, 5, 0, 'NOT FIT FOR TELECALLING AND RE', 50, '0000-00-00 00:00:00', 1),
(2271, 2418, 57, 5, 0, 'not attended to second round', 50, '0000-00-00 00:00:00', 1),
(2272, 2448, 59, 5, 0, 'Content Written is not upto the standard', 50, '0000-00-00 00:00:00', 1),
(2273, 2452, 59, 5, 0, 'Much into content only no exp in SEO/SEM', 50, '0000-00-00 00:00:00', 1),
(2274, 2429, 59, 5, 0, 'Good Exp in SEO /SEM, but no content writing', 50, '0000-00-00 00:00:00', 1),
(2275, 2483, 59, 5, 0, 'Location Constraint', 50, '0000-00-00 00:00:00', 1),
(2276, 2481, 59, 5, 0, 'Stability issue', 50, '0000-00-00 00:00:00', 1),
(2277, 2143, 27, 5, 0, 'Task not Completed.', 50, '0000-00-00 00:00:00', 1),
(2278, 2444, 24, 5, 0, 'HE IS NOT INRESTED FOR SALES', 50, '0000-00-00 00:00:00', 1),
(2279, 2486, 11, 5, 3, 'she wont suitable for e sales ', 50, '0000-00-00 00:00:00', 1),
(2280, 2283, 8, 5, 0, 'no response', 8, '2020-12-14 12:20:49', 1),
(2281, 2491, 8, 2, 0, 'will join after jan 5th. esale dhivya team', 50, '0000-00-00 00:00:00', 1),
(2282, 2489, 8, 5, 0, 'will not suite for crm, fresher not int in RE.', 50, '0000-00-00 00:00:00', 1),
(2283, 2484, 59, 5, 0, 'Frequent Job Changes, no content exp', 50, '0000-00-00 00:00:00', 1),
(2284, 2493, 8, 5, 0, 'fresher, will not suite for calling, no communication.', 50, '0000-00-00 00:00:00', 1),
(2285, 2494, 8, 5, 0, 'Will Not Suite For esale. may be for health.', 50, '0000-00-00 00:00:00', 1),
(2286, 2496, 8, 5, 0, 'fresher, will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(2287, 2497, 8, 5, 0, 'not speaking up and no communication. will not suite for calling. ', 50, '0000-00-00 00:00:00', 1),
(2288, 2491, 21, 7, 0, 'ok selected candidate have note period in prevoius concern , so need to check joining ..(jan 2nd)...', 8, '2020-12-14 03:07:20', 1),
(2289, 2507, 27, 5, 0, 'He donxquott have a basic knowledge.', 50, '0000-00-00 00:00:00', 1),
(2290, 2511, 31, 5, 1, 'his priority in event management. still he is doing this business', 50, '0000-00-00 00:00:00', 1),
(2291, 2409, 8, 4, 0, 'check for RM', 50, '0000-00-00 00:00:00', 1),
(2292, 2516, 27, 8, 0, 'he is not attended.', 50, '0000-00-00 00:00:00', 1),
(2293, 2473, 8, 4, 0, 'Check for CRM esale', 50, '0000-00-00 00:00:00', 1),
(2294, 2409, 31, 5, 2, 'not a convincing candidate for sales. interested in HR', 8, '2020-12-15 04:38:12', 1),
(2295, 2473, 11, 2, 3, 'candidate more interested in accounts field ', 8, '2020-12-15 04:41:54', 1),
(2296, 2491, 8, 2, 0, 'will join after jan 5th. esale dhivya team', 21, '2020-12-15 06:19:05', 1),
(2297, 2527, 59, 5, 0, 'Not interested for Sales', 50, '0000-00-00 00:00:00', 1),
(2298, 2510, 38, 7, 3, 'confirm his salary 18k take home and joining by saturday', 50, '0000-00-00 00:00:00', 1),
(2299, 2535, 59, 5, 0, 'Only SEO Exp, No PPC xxamp Content exp', 50, '0000-00-00 00:00:00', 1),
(2300, 2513, 38, 7, 3, 'confirm his salary 20k take home and joining by saturday', 50, '0000-00-00 00:00:00', 1),
(2301, 2514, 38, 7, 0, 'selected as portfolio cRM...her salary sathish will confirm...', 50, '0000-00-00 00:00:00', 1),
(2302, 2490, 59, 5, 0, 'No Exp in PPC, content writing', 50, '0000-00-00 00:00:00', 1),
(2303, 2518, 8, 5, 3, 'looking for customer support and not interested in sales.', 50, '0000-00-00 00:00:00', 1),
(2304, 2538, 8, 4, 3, 'check for RE. ', 50, '0000-00-00 00:00:00', 1),
(2305, 2538, 24, 5, 1, 'not fit for telecalling and re profile', 8, '2020-12-16 01:12:00', 1),
(2306, 2542, 59, 5, 0, 'Good in Communication, High CTC expectation', 50, '0000-00-00 00:00:00', 1),
(2307, 2539, 8, 5, 0, 'not okay with the salary package', 50, '0000-00-00 00:00:00', 1),
(2308, 2485, 59, 4, 0, 'Have Exp in System Admin, can give a try', 50, '0000-00-00 00:00:00', 1),
(2309, 2546, 42, 7, 3, 'Check her previous agrement basis job and then Confirm her salary as we discussed', 50, '0000-00-00 00:00:00', 1),
(2310, 2539, 44, 9, 3, 'He is not fit for RM ,Check for RE', 8, '2020-12-16 03:02:00', 1),
(2311, 2510, 8, 3, 3, '18k th for RE gowshick team', 38, '2020-12-16 03:29:46', 1),
(2312, 2513, 8, 5, 0, 'Mismatch in payslip. will not join. salary exp is high', 38, '2020-12-16 03:34:15', 1),
(2313, 2514, 8, 5, 0, 'Mismatch In Payslip. Will Not Join. Salary Exp Is High', 38, '2020-12-16 03:36:02', 1),
(2314, 2543, 39, 5, 2, 'he will not suit for our filed and he donxquott have patience ', 50, '0000-00-00 00:00:00', 1),
(2315, 2485, 32, 5, 0, 'Expected Salary is High', 59, '2020-12-16 05:36:47', 1),
(2316, 2560, 8, 4, 2, 'fresher for sale. check for app fixing crm', 50, '0000-00-00 00:00:00', 1),
(2317, 2560, 21, 5, 0, 'not fit for our process', 8, '2020-12-17 12:59:35', 1),
(2318, 2316, 8, 5, 0, 'can try for crm', 20, '2020-12-17 04:08:50', 1),
(2319, 2381, 36, 7, 4, 'Selected for RM', 33, '2020-12-17 05:08:52', 1),
(2320, 2381, 8, 3, 0, '30k ctc and no pf and pt alone', 36, '2020-12-17 05:12:56', 1),
(2321, 2576, 59, 5, 0, 'No Communication, no Exp in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2322, 2522, 59, 5, 0, 'Not much exp in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2323, 2568, 11, 2, 3, 'need to check for bond sign', 50, '0000-00-00 00:00:00', 1),
(2324, 2479, 56, 4, 3, 'SELECTED FOR NEXT ROUND', 50, '0000-00-00 00:00:00', 1),
(2325, 2539, 8, 5, 0, 'not okay with the salary package', 44, '2020-12-18 11:22:55', 1),
(2326, 2564, 8, 5, 0, 'will not suite for sales and not interested too', 50, '0000-00-00 00:00:00', 1),
(2327, 2580, 8, 4, 0, 'check for esale', 50, '0000-00-00 00:00:00', 1),
(2328, 2586, 8, 5, 0, 'not speaking up and will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(2329, 2582, 8, 3, 0, '12k ctc and for keerthiga team', 50, '0000-00-00 00:00:00', 1),
(2330, 2546, 8, 5, 0, 'will not join. salary exp is high.', 42, '2020-12-18 01:06:45', 1),
(2331, 2590, 8, 4, 0, 'check for esale ', 50, '0000-00-00 00:00:00', 1),
(2332, 2580, 11, 5, 3, 'rejected due to long distance', 8, '2020-12-18 02:39:51', 1),
(2333, 2585, 59, 4, 0, 'have Exp in sales', 50, '0000-00-00 00:00:00', 1),
(2334, 2584, 59, 4, 0, 'Have exp in sales', 50, '0000-00-00 00:00:00', 1),
(2335, 2590, 21, 5, 0, 'not bold ...', 8, '2020-12-18 02:41:13', 1),
(2336, 2579, 39, 5, 1, 'HE WILL NOT SUSTAIN IN SALES FIELD', 50, '0000-00-00 00:00:00', 1),
(2337, 2479, 30, 7, 3, 'she is expecting high salary max we can offer 17k....if it is okay means confirm her joining', 56, '2020-12-18 03:39:49', 1),
(2338, 2584, 18, 5, 3, 'Not fit for our profile\n', 59, '2020-12-18 03:41:28', 1),
(2339, 2585, 18, 7, 3, 'Need to negotiate salary as he is already taking 28K. Also wishes to join as employee and need PF', 59, '2020-12-18 03:41:48', 1),
(2340, 2582, 21, 7, 0, 'ok selected , bahalf of karthika', 8, '2020-12-18 07:16:31', 1),
(2341, 2592, 59, 5, 0, 'He is in Govt employment, looking for freelance High budget exp', 50, '0000-00-00 00:00:00', 1),
(2342, 2552, 59, 5, 0, 'Stability issues,High CTC exp', 50, '0000-00-00 00:00:00', 1),
(2343, 2599, 59, 5, 0, 'Looking for Freelance only not much exp and very high Package Exp', 50, '0000-00-00 00:00:00', 1),
(2344, 2572, 27, 2, 0, 'Task Given. He will complete within 4.30', 50, '0000-00-00 00:00:00', 1),
(2345, 2585, 8, 5, 0, 'we offered 26k. no response from his end. will not join.', 18, '2020-12-19 11:57:52', 1),
(2346, 2424, 8, 5, 0, 'will not sustain, already applied job in UAE and waiting for visa.', 50, '0000-00-00 00:00:00', 1),
(2347, 2130, 8, 5, 2, 'will not sustain and will not suite for sales', 50, '0000-00-00 00:00:00', 1),
(2348, 2565, 42, 5, 1, 'she willnot suit for crm\nbad communication and she will not sustain', 50, '0000-00-00 00:00:00', 1),
(2349, 2600, 59, 5, 0, 'Not suitable,less exp high exp', 50, '0000-00-00 00:00:00', 1),
(2350, 2607, 8, 5, 0, 'not speaking up and IRDA code active in exide. zero pdt knowledge.', 50, '0000-00-00 00:00:00', 1),
(2351, 2598, 59, 5, 0, 'Good Profile, but high Exp xxamp not ok for Agreement', 50, '0000-00-00 00:00:00', 1),
(2352, 2609, 8, 5, 0, 'IRDA active in exide, wife working in aegon. zero pdt knowledge. exp 25k', 50, '0000-00-00 00:00:00', 1),
(2353, 2582, 8, 3, 0, '12k ctc and for keerthiga team', 21, '2020-12-19 03:59:35', 1),
(2354, 2479, 8, 3, 0, '17500 Ctc and sathish team.', 30, '2020-12-19 04:00:26', 1),
(2355, 2572, 27, 5, 0, 'task not Completed.', 27, '2020-12-19 05:16:12', 1),
(2356, 2310, 27, 5, 0, 'Need much experience on it.', 27, '2020-12-19 05:17:34', 1),
(2357, 2292, 27, 5, 0, 'Task Not completed', 27, '2020-12-19 05:17:49', 1),
(2358, 2214, 27, 5, 0, 'Task not completed', 27, '2020-12-19 05:18:23', 1),
(2359, 2218, 27, 5, 0, 'Task not completed.', 27, '2020-12-19 05:20:21', 1),
(2360, 2309, 27, 5, 0, 'Task not Completed.', 27, '2020-12-19 05:54:37', 1),
(2361, 2209, 27, 5, 0, 'He already got job.', 27, '2020-12-21 10:57:56', 1),
(2362, 2606, 59, 5, 0, 'Not fit for RE', 50, '0000-00-00 00:00:00', 1),
(2363, 2623, 38, 5, 1, 'HE WILL NOT SUIT FOR OUR PROFILE xxamp COMMUNICATION IS TOO WORST', 50, '0000-00-00 00:00:00', 1),
(2364, 2619, 59, 4, 0, 'Profile is Good', 50, '0000-00-00 00:00:00', 1),
(2365, 2625, 27, 2, 0, 'Task has to be given on 25th Dec 2020', 50, '0000-00-00 00:00:00', 1),
(2366, 2622, 8, 5, 2, 'will not suite for RM. no convincing skill. not active too', 50, '0000-00-00 00:00:00', 1),
(2367, 2618, 59, 5, 0, 'Sustainability Issue', 50, '0000-00-00 00:00:00', 1),
(2368, 2627, 8, 4, 3, 'check for esale ', 50, '0000-00-00 00:00:00', 1),
(2369, 2626, 8, 5, 2, 'will not suite for sales, looking for admin job. will not sustain.', 50, '0000-00-00 00:00:00', 1),
(2370, 2515, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2371, 2597, 59, 5, 0, 'Not suitable for digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2372, 2628, 8, 2, 0, 'need to check for AM', 50, '0000-00-00 00:00:00', 1),
(2373, 2602, 30, 5, 1, 'He Will Not Sustain....He Will Not Handle Sales Pressure', 60, '0000-00-00 00:00:00', 1),
(2374, 2617, 41, 5, 0, 'No fluent in english\nNot good in content', 50, '0000-00-00 00:00:00', 1),
(2375, 2627, 11, 5, 0, 'she is not interested in sales ...looking for operations ', 8, '2020-12-21 05:29:34', 1),
(2376, 2515, 34, 5, 3, 'HE IS LOOKING FOR AN SI POST IN POLICE ONCE HE CLEARS THE EXAM HE WILL MOVE OUT FROM OUR COMPANY', 8, '2020-12-21 05:34:29', 1),
(2377, 2614, 8, 5, 3, 'will not suite for RM. fresher and salary exp is high 25K. no convincing skill.', 50, '0000-00-00 00:00:00', 1),
(2378, 2635, 41, 5, 2, 'Will not sustain not interested in sales', 50, '0000-00-00 00:00:00', 1),
(2379, 2633, 8, 5, 0, 'not turned up', 50, '0000-00-00 00:00:00', 1),
(2380, 2633, 31, 2, 4, 'dont have sales experience, but having good language. hold him, will conform', 8, '2020-12-21 05:43:09', 1),
(2381, 2593, 8, 3, 0, '12k th for srikanth team', 50, '0000-00-00 00:00:00', 1),
(2382, 2604, 8, 5, 0, 'not speaking up. will not suite for sales', 50, '0000-00-00 00:00:00', 1),
(2383, 2585, 33, 7, 0, 'Candidate is okey but 28000 is very cost kindly negotiate for 26k or 27 k maximum ', 8, '2020-12-22 11:16:15', 1),
(2384, 2629, 8, 5, 0, 'will not suite for calling and sales', 50, '0000-00-00 00:00:00', 1),
(2385, 2630, 8, 5, 0, 'no response from her end. will not join.\n', 50, '0000-00-00 00:00:00', 1),
(2386, 2634, 59, 5, 0, 'High CTC xxamp Not in content Writing', 50, '0000-00-00 00:00:00', 1),
(2387, 2662, 8, 4, 3, 'check for re ', 50, '0000-00-00 00:00:00', 1),
(2388, 2662, 24, 5, 0, 'candidate not come for 2nd round so rejected my side..', 8, '2020-12-22 01:12:29', 1),
(2389, 2593, 20, 7, 0, 'shortlisted,,, kindly through with final round', 8, '2020-12-22 01:21:51', 1),
(2390, 2630, 21, 7, 4, 'ok selected ,need to confirm joining', 8, '2020-12-22 01:28:09', 1),
(2391, 2659, 38, 5, 1, 'he will not sustain xxamp he will not suit for our field', 50, '0000-00-00 00:00:00', 1),
(2392, 2656, 8, 3, 0, '24ctc for rajkumar team and no pf', 50, '0000-00-00 00:00:00', 1),
(2393, 2593, 22, 7, 0, 'Fresher yet trustable', 20, '2020-12-22 02:55:49', 1),
(2394, 2656, 44, 4, 3, 'Please check once', 8, '2020-12-22 02:58:56', 1),
(2395, 2630, 8, 5, 0, 'no response from her end. will not join.\n', 21, '2020-12-22 03:17:03', 1),
(2396, 2678, 8, 4, 3, 'check for rM', 50, '0000-00-00 00:00:00', 1),
(2397, 2628, 8, 5, 0, '37+ will not suite for sales. no sales exp. NRI', 8, '2020-12-23 10:14:13', 1),
(2398, 2686, 8, 3, 0, '25ctc with pf', 50, '0000-00-00 00:00:00', 1),
(2399, 2680, 59, 5, 0, 'Not much exp in Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2400, 2656, 18, 7, 4, 'Selected for Raj Team. Expected salary is 25 k including PF. Can negotiate and reduce it upto 24K. Ready to join immedieatly so kindly initiate the joining', 44, '2020-12-23 10:48:38', 1),
(2401, 2678, 44, 4, 3, 'Fresher and Need your Suggestion ', 8, '2020-12-23 11:03:52', 1),
(2402, 2335, 8, 3, 0, '26192 th and with pf for sanjeev team', 8, '2020-12-23 11:16:19', 1),
(2403, 2631, 38, 5, 2, 'no bike....he will not suit for our profile and ixquotm not satisfied with his communication ', 50, '0000-00-00 00:00:00', 1),
(2404, 2632, 38, 5, 2, 'No Bike....He Will Not Suit For Our Profile And Ixquotm Not Satisfied With His Communication ', 50, '0000-00-00 00:00:00', 1),
(2405, 2678, 29, 5, 1, 'not selected', 44, '2020-12-23 11:33:18', 1),
(2406, 2615, 8, 4, 3, 'check for esale', 50, '0000-00-00 00:00:00', 1),
(2407, 2682, 59, 5, 0, 'Not much exp sustainability issue', 50, '0000-00-00 00:00:00', 1),
(2408, 2683, 59, 5, 0, 'Good Profile,only in seo and Exp in more', 50, '0000-00-00 00:00:00', 1),
(2409, 2615, 11, 4, 0, 'candidate communication is ok.need to check sustainability', 8, '2020-12-23 12:26:10', 1),
(2410, 2684, 8, 5, 0, 'will not suit for calling, no convincing skill.', 50, '0000-00-00 00:00:00', 1),
(2411, 2569, 59, 5, 0, 'No Exp and not fit for digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2412, 2644, 8, 5, 0, 'exp 32k and he will not join.', 50, '0000-00-00 00:00:00', 1),
(2413, 2693, 8, 4, 3, 'check for rm profile.', 50, '0000-00-00 00:00:00', 1),
(2414, 2675, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(2415, 2673, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(2416, 2674, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(2417, 2652, 59, 5, 0, 'No Exp and Sustainability issue\n', 50, '0000-00-00 00:00:00', 1),
(2418, 2696, 53, 7, 0, 'Shortlisted for arumbakkam branch, Gud communication, hvng experience in health, He is ok fr bond also, Sal CTC 16.5k, Saravana team', 50, '0000-00-00 00:00:00', 1),
(2419, 2696, 8, 3, 3, '16500k as ctc for saravana team.', 53, '2020-12-23 05:12:19', 1),
(2420, 2693, 29, 5, 1, 'He donxquott want RM profile or sales profile, he wants BPO service', 8, '2020-12-23 05:37:48', 1),
(2421, 2691, 8, 4, 3, 'check for RM', 7, '0000-00-00 00:00:00', 1),
(2422, 2691, 36, 5, 0, 'Not fit RM\nExpected pay very high so RE also not possible', 8, '2020-12-23 06:51:41', 1),
(2423, 2644, 33, 4, 3, 'Asking high package but not suitable for high package convey maximum 25k salary to candidate with management permission', 8, '2020-12-23 06:53:49', 1),
(2424, 2615, 67, 2, 3, 'will meet her for second round and decide', 11, '2020-12-24 11:18:10', 1),
(2425, 2568, 8, 5, 0, 'will not relocate. will not join.', 11, '2020-12-24 11:19:32', 1),
(2426, 2568, 11, 7, 0, 'have to check for bond ', 11, '2020-12-24 11:19:32', 1),
(2427, 2473, 11, 5, 0, 'interested in accounts field ', 11, '2020-12-24 11:19:51', 1),
(2428, 2702, 59, 5, 0, 'Sustainability issue', 50, '0000-00-00 00:00:00', 1),
(2429, 2593, 8, 3, 0, '12k th for srikanth team', 22, '2020-12-24 12:38:51', 1),
(2430, 2624, 38, 5, 2, 'HE DONT HAVE BIKE AND HE CANT ARRANGE SO HE WILL NOT SUIT FOR OUR FIELD', 50, '0000-00-00 00:00:00', 1),
(2431, 2709, 38, 5, 2, 'he dont have bike, he cant arrange.', 50, '0000-00-00 00:00:00', 1),
(2432, 2694, 59, 5, 0, 'Not fit for digital Marketing,', 50, '0000-00-00 00:00:00', 1),
(2433, 2698, 8, 5, 3, 'No sales skill , and no relevant exp. ', 50, '0000-00-00 00:00:00', 1),
(2434, 2644, 8, 5, 0, 'exp 32k and he will not join.', 33, '2020-12-24 02:55:52', 1),
(2435, 2585, 8, 5, 0, 'we offered 26k. no response from his end. will not join.', 33, '2020-12-24 06:50:55', 1),
(2436, 2610, 53, 5, 0, 'looking non voice process', 52, '0000-00-00 00:00:00', 1),
(2437, 2711, 53, 4, 0, 'ok. average communication, gud n confidence, hvng fianl year sem, need only permoision for the sem exam in the month of jan, sal ctc 13750.', 52, '0000-00-00 00:00:00', 1),
(2438, 2718, 53, 5, 0, 'fresh nd new for chennai, no proper pronounciation nd confidence.', 52, '0000-00-00 00:00:00', 1),
(2439, 2711, 19, 4, 4, 'fit for sales', 53, '2020-12-25 12:50:08', 1),
(2440, 2711, 22, 7, 0, 'Kindly finalize the candidate 13750 as ctc. Joining by 4 th of january... joining for kannan team', 19, '2020-12-25 12:54:51', 1),
(2441, 2714, 53, 4, 0, 'Average communication, dont hve pure sales experience, but will try.', 52, '0000-00-00 00:00:00', 1),
(2442, 2714, 29, 5, 1, 'will not suit our profile', 53, '2020-12-25 01:20:20', 1),
(2443, 2660, 39, 5, 2, 'he will not suit for our field bcs not good in communication', 52, '0000-00-00 00:00:00', 1),
(2444, 2711, 8, 3, 0, '13750ctc and for kannan team', 22, '2020-12-25 04:35:18', 1),
(2445, 2091, 53, 4, 0, 'taken telephonic round, we can try for training period that 7 days even clearly informed to candidate also. we can try. ctc 12750.', 52, '0000-00-00 00:00:00', 1),
(2446, 2091, 22, 7, 0, 'Shortlisted for 12650 CTC as RE for Srikanthxquots team, Joining by monday 28th DEC', 53, '2020-12-25 04:42:06', 1),
(2447, 2091, 8, 7, 0, 'Shortlisted For 12650 CTC As RE For Srikanthxquots Team, Joining By Monday 28th DEC', 22, '2020-12-25 05:09:52', 1),
(2448, 2726, 59, 5, 0, 'Looking for Core openings,for time being looking for a job', 50, '0000-00-00 00:00:00', 1),
(2449, 2713, 59, 5, 0, 'Looking for the core openings only', 50, '0000-00-00 00:00:00', 1),
(2450, 2731, 59, 5, 0, 'Will not fit for sales', 50, '0000-00-00 00:00:00', 1),
(2451, 2719, 59, 5, 0, 'Not interested in sales. Looking for bank openings ', 50, '0000-00-00 00:00:00', 1),
(2452, 2733, 53, 5, 0, 'Student. ', 50, '0000-00-00 00:00:00', 1),
(2453, 2722, 53, 5, 0, 'Student. he ll complete the course in the month of april only', 50, '0000-00-00 00:00:00', 1),
(2454, 2732, 59, 5, 0, 'Not open for Sales', 50, '0000-00-00 00:00:00', 1),
(2455, 2735, 53, 5, 0, 'no sales experience. but will try', 50, '0000-00-00 00:00:00', 1),
(2456, 2737, 53, 4, 0, 'check fr RM', 50, '0000-00-00 00:00:00', 1),
(2457, 2736, 53, 5, 0, 'student', 50, '0000-00-00 00:00:00', 1),
(2458, 2724, 59, 5, 0, 'Not interested for sales, Looking for bank openings only\n', 50, '0000-00-00 00:00:00', 1),
(2459, 2734, 59, 5, 0, 'Not Fit for sales', 50, '0000-00-00 00:00:00', 1),
(2460, 2716, 59, 5, 0, 'Sustainability Issue,will not fit for esales', 50, '0000-00-00 00:00:00', 1),
(2461, 2741, 59, 5, 0, 'Not ready to go for field sales', 50, '0000-00-00 00:00:00', 1),
(2462, 2729, 59, 9, 0, 'shortlisted for esales ', 50, '0000-00-00 00:00:00', 1),
(2463, 2169, 27, 5, 0, 'Joined in another Company', 27, '2020-12-26 03:27:07', 1),
(2464, 2205, 27, 5, 0, 'he is not coming.', 27, '2020-12-26 03:28:00', 1),
(2465, 2091, 7, 1, 0, NULL, 8, '2020-12-26 04:13:00', 1),
(2466, 2729, 11, 4, 0, 'communication is good ', 59, '2020-12-26 04:45:48', 1),
(2467, 2743, 59, 4, 0, 'Internal Team reference,no exp in Insurance sales', 60, '0000-00-00 00:00:00', 1),
(2468, 2743, 36, 4, 0, 'Selected for RM to Veben Team', 59, '2020-12-26 06:13:47', 1),
(2469, 2738, 59, 5, 0, 'Sustainability issue, Worked into various positions', 50, '0000-00-00 00:00:00', 1),
(2470, 2744, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2471, 2715, 59, 5, 0, 'Not much exp in digital Marketing', 50, '0000-00-00 00:00:00', 1),
(2472, 2705, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2473, 2746, 59, 5, 0, 'Not suitable much into IT positions only few exp in DM ', 50, '0000-00-00 00:00:00', 1),
(2474, 2751, 8, 4, 2, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2475, 2739, 8, 5, 3, '10 years in cs, looking for inside sales. exp sal is 4L. age and salary will not match as CRM/esale', 50, '0000-00-00 00:00:00', 1),
(2476, 2699, 8, 5, 3, 'will not sustain and not interested in sales. fresher', 50, '0000-00-00 00:00:00', 1),
(2477, 2744, 24, 5, 0, 'NOT FIT FOR RE', 8, '2020-12-28 12:55:26', 1),
(2478, 2705, 24, 5, 0, 'NOT FIT FOR RE', 8, '2020-12-28 12:57:37', 1),
(2479, 2751, 24, 5, 1, 'NOT FIT FOR RE PROFILE. LOOK LIKE PULLINGO', 8, '2020-12-28 12:59:14', 1),
(2480, 2737, 33, 4, 3, 'Candidate expected salary 28000 but not suitable for that salary please negotiate maximum 25000 else please allocate other bdm thanks ', 53, '2020-12-28 01:37:24', 1),
(2481, 2737, 18, 7, 4, 'Shortlisted For Raj Team. Expected salary is 25k but not worth more than 21 and can negotiate. Also commited to increase his salary after seeing 6 months perfomance. Willing to join from 2nd Jan', 33, '2020-12-28 02:08:52', 1),
(2482, 2737, 8, 3, 0, '21500 ctc, no pf for Rajkumar team', 18, '2020-12-28 03:45:30', 1),
(2483, 2769, 8, 5, 0, 'not speaking up, will not suite for any profile', 50, '0000-00-00 00:00:00', 1),
(2484, 2767, 8, 5, 0, 'not speaking up, fresher will not suite for RE.', 7, '0000-00-00 00:00:00', 1),
(2485, 2774, 8, 4, 3, 'check for RM', 7, '0000-00-00 00:00:00', 1),
(2486, 2728, 59, 5, 0, 'Sustainability Issue and not fit for DM', 50, '0000-00-00 00:00:00', 1),
(2487, 2754, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(2488, 2765, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2489, 2763, 8, 5, 2, 'fresher, will not suite for callind, and long distance too. 2hrs', 50, '0000-00-00 00:00:00', 1),
(2490, 2729, 67, 4, 0, 'sELECTED.. DELAY IN JOINING AS SHE HAS SOME PERSONAL ISSUES- DEATH OF FAMILY MEMBER', 11, '2020-12-29 12:40:05', 1),
(2491, 2776, 59, 8, 0, 'Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(2492, 2760, 59, 5, 0, 'Not much exp in DM', 50, '0000-00-00 00:00:00', 1),
(2493, 2774, 33, 9, 2, 'candidate looking for crm or esales kindly check with particular managere thanks ', 8, '2020-12-29 01:44:23', 1),
(2494, 2765, 24, 5, 0, 'He is not willing to work weekends including saturday..', 8, '2020-12-29 01:46:50', 1),
(2495, 2768, 8, 5, 0, 'Fresher, Will Not Suite For Calling And Sales. Not Speaking Up And Language Is Not Good.', 7, '0000-00-00 00:00:00', 1),
(2496, 2755, 8, 5, 0, 'will not sustain and time being looking for job.', 7, '0000-00-00 00:00:00', 1),
(2497, 2656, 8, 3, 0, '24ctc for rajkumar team and no pf', 18, '2020-12-29 05:13:45', 1),
(2498, 2793, 8, 4, 3, 'check for rm', 7, '0000-00-00 00:00:00', 1),
(2499, 2783, 8, 2, 0, 'will join after 20th jan. gk team', 7, '0000-00-00 00:00:00', 1),
(2500, 2796, 59, 4, 0, 'Shortlisted for Esale, Dept change ', 7, '0000-00-00 00:00:00', 1),
(2501, 2752, 59, 5, 0, 'Not much exp in digital Marketing', 7, '0000-00-00 00:00:00', 1),
(2502, 2798, 59, 5, 0, 'Not much communicative, will not fit for sales', 7, '0000-00-00 00:00:00', 1),
(2503, 2774, 7, 1, 0, NULL, 33, '2020-12-30 12:22:04', 1),
(2504, 2799, 59, 5, 0, 'Not open for Field Sales', 50, '0000-00-00 00:00:00', 1),
(2505, 2743, 40, 4, 3, 'Looking for Job and zero knowledge in sales/ but seems like a long runner and interested to learn new things as well.', 36, '2020-12-30 03:21:33', 1),
(2506, 2743, 18, 8, 0, 'Please reschedule\n', 40, '2020-12-30 04:00:44', 1),
(2507, 2619, 54, 7, 0, 'Selected, CTC-306000 for first three months and after three months CTC-336000', 59, '2020-12-30 04:12:19', 1),
(2508, 2802, 36, 4, 3, 'Selected for RM', 50, '0000-00-00 00:00:00', 1),
(2509, 2783, 29, 7, 3, 'for RM profile, GK team, salary 22k,, if produ is average 1.5 lacs moM will increase 2k from 4th month, joining expected after 15th jan 21', 8, '2020-12-30 04:37:42', 1),
(2510, 2793, 29, 5, 1, 'will not suit for our profile', 8, '2020-12-30 04:39:13', 1),
(2511, 2783, 8, 2, 0, 'will join after 20th jan. gk team', 29, '2020-12-30 04:54:03', 1),
(2512, 2619, 8, 3, 0, 'for it. 25.5k', 54, '2020-12-30 05:05:37', 1),
(2513, 2802, 18, 7, 4, 'Selected for logesh team. Expected was 30 but convinced for 25K take home as a consultant. ready to join on 2nd jan 2021. kindly initiate the joining process', 36, '2020-12-30 05:33:35', 1),
(2514, 2796, 8, 5, 0, 'will not suite for esale', 59, '2020-12-30 06:40:34', 1),
(2515, 2800, 8, 5, 2, 'will not suite for sales, no sales exp too.', 50, '0000-00-00 00:00:00', 1),
(2516, 2811, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(2517, 2802, 8, 3, 0, '25k as ctc and for lokesh team.', 18, '2020-12-31 12:19:42', 1),
(2518, 2807, 53, 4, 0, 'Shortlisted for Guru Team', 50, '0000-00-00 00:00:00', 1),
(2519, 2808, 53, 4, 0, 'Shortlisted for Saravanan team', 50, '0000-00-00 00:00:00', 1),
(2520, 2794, 8, 5, 0, 'time being looking for job. will join in his father office soon.', 50, '0000-00-00 00:00:00', 1),
(2521, 2816, 59, 5, 0, 'No fit for Insurance Sales', 50, '0000-00-00 00:00:00', 1),
(2522, 2814, 59, 4, 0, 'Having knowledge on Star helath products\n', 50, '0000-00-00 00:00:00', 1),
(2523, 2815, 59, 5, 0, 'Not open for Insurance Sales\n', 50, '0000-00-00 00:00:00', 1),
(2524, 2823, 59, 5, 0, 'Will not sustain ', 50, '0000-00-00 00:00:00', 1),
(2525, 2821, 41, 5, 0, 'Not relevant at all', 50, '0000-00-00 00:00:00', 1),
(2526, 2826, 59, 5, 0, 'Sustainability issue', 50, '0000-00-00 00:00:00', 1),
(2527, 2808, 8, 7, 0, 'CTC - 176844 TH - 14000\nGross-14737', 53, '2021-01-02 04:33:10', 1),
(2528, 2807, 34, 7, 4, 'SELECTED ', 53, '2021-01-02 04:33:32', 1),
(2529, 2808, 7, 1, 0, NULL, 8, '2021-01-02 04:35:47', 1),
(2530, 2814, 16, 7, 0, 'Good Candidate ,selected', 59, '2021-01-02 06:22:58', 1),
(2531, 2814, 8, 7, 0, 'Shortlisted for Thiyagu Team CTC 146400 , Gross 12200 ,TH 11590', 16, '2021-01-02 06:34:06', 1),
(2532, 2814, 7, 1, 0, NULL, 8, '2021-01-02 06:37:14', 1),
(2533, 2837, 59, 5, 0, 'No Exp in Adobe Tools, Not much exp into UI UX, will not sustain', 50, '0000-00-00 00:00:00', 1),
(2534, 2839, 59, 4, 0, 'Internal Reference, can give a try for esales', 50, '0000-00-00 00:00:00', 1),
(2535, 2835, 59, 5, 0, 'Not much exp in UI UX, only into basics of HTML CSS,No Exp in Adobe tools', 50, '0000-00-00 00:00:00', 1),
(2536, 2840, 59, 2, 0, 'Only Exp in UI,System test has been given', 50, '0000-00-00 00:00:00', 1),
(2537, 2831, 27, 2, 0, 'Task Given. he will send back to us once completed.', 50, '0000-00-00 00:00:00', 1),
(2538, 2803, 8, 5, 2, 'No Sales Exp. . Prefers Admin Job. Will Not Sustain. quit her job bcoz of shift timing and Long distance. will not adapt easily and will not work in sales pressure. exp 15k+', 50, '0000-00-00 00:00:00', 1),
(2539, 2843, 8, 4, 3, 'check for crm for keerthika team', 50, '0000-00-00 00:00:00', 1),
(2540, 2795, 8, 5, 2, 'no sales exp. will not suite for calling. prefers admin job. will not sustain.', 50, '0000-00-00 00:00:00', 1),
(2541, 2828, 8, 5, 2, 'very slow and after his degree 4yr he was Searching job. will not sustain.', 50, '0000-00-00 00:00:00', 1),
(2542, 2848, 59, 4, 0, 'Having exp in Angular but not in React ,Can give a try', 50, '0000-00-00 00:00:00', 1),
(2543, 2843, 11, 5, 0, 'not suitable for crm profile..sustainability is doubt', 8, '2021-01-04 03:06:31', 1),
(2544, 2839, 67, 5, 0, 'aS THE CANDIDATE HAS 3 MONTHS EXPERIENCE IN SERVICE RELATED COMPANY. NOT APT FOR TELESALES.', 59, '2021-01-04 05:54:02', 1),
(2545, 2615, 67, 5, 0, 'nOT WILLING TO SIGN AGREEMENT AS HER INTENTION WAS TO STAY FOR LESSER PERIOD OF TIME.', 67, '2021-01-04 05:57:22', 1),
(2546, 2729, 8, 5, 0, 'got offer will not join.', 67, '2021-01-04 06:00:25', 1),
(2547, 2357, 8, 5, 0, 'no response from her end. not interested.', 8, '2021-01-05 11:08:29', 1),
(2548, 2491, 8, 5, 0, 'will not join. not okay with the salary package.', 8, '2021-01-05 11:08:58', 1),
(2549, 2856, 8, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(2550, 2846, 8, 3, 0, '9k ctc for keerthika team.', 50, '0000-00-00 00:00:00', 1),
(2551, 2860, 8, 5, 0, 'got offer and updated the same.', 50, '0000-00-00 00:00:00', 1),
(2552, 2844, 8, 4, 3, 'check for rm. ', 50, '0000-00-00 00:00:00', 1),
(2553, 2861, 34, 7, 4, 'SELECTED', 7, '0000-00-00 00:00:00', 1),
(2554, 2855, 27, 5, 0, 'Not Upto the Level. He is telling i am not recall the technologies.', 50, '0000-00-00 00:00:00', 1),
(2555, 2863, 27, 2, 0, 'Task Given. She will complete and call back us on 8th jan 2021', 50, '0000-00-00 00:00:00', 1),
(2556, 2860, 8, 5, 0, 'got offer and updated the same.', 8, '2021-01-05 01:46:56', 1),
(2557, 2844, 40, 4, 4, 'Zero knowledge in sales/Job requirements highly needed/Attitude matters.', 8, '2021-01-05 01:48:20', 1),
(2558, 2844, 18, 4, 3, 'Not 100% sure so gave to gaurav for double check', 40, '2021-01-05 02:16:11', 1),
(2559, 2865, 44, 4, 3, 'Candidate ok for me and need your Suggestion ', 7, '0000-00-00 00:00:00', 1),
(2560, 2846, 18, 7, 0, 'selected. 9k as take home. ', 8, '2021-01-05 04:23:38', 1),
(2561, 2865, 29, 7, 3, 'selected for rM, Shanmugam team, refer resume for salary structure', 44, '2021-01-05 05:12:36', 1),
(2562, 2840, 59, 5, 0, 'No Exp in UX ', 59, '2021-01-05 06:42:20', 1),
(2563, 2848, 54, 2, 0, 'System round pending', 59, '2021-01-05 06:43:46', 1),
(2564, 2875, 8, 3, 2, '15k ctc for suthagar team.', 7, '0000-00-00 00:00:00', 1),
(2565, 2874, 8, 3, 3, '15k ctc for Suthagar team', 7, '0000-00-00 00:00:00', 1),
(2566, 2836, 8, 5, 0, 'will not suite for our profile, will not sustain. switched company for salary', 7, '0000-00-00 00:00:00', 1),
(2567, 2845, 8, 2, 0, 'very nervous so asked to come again.', 7, '0000-00-00 00:00:00', 1),
(2568, 2879, 8, 5, 0, 'will not suite for esale.', 7, '0000-00-00 00:00:00', 1),
(2569, 2247, 8, 4, 0, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(2570, 2885, 8, 4, 3, 'check for RM', 7, '0000-00-00 00:00:00', 1),
(2571, 2886, 8, 3, 0, '22k ctc for shanmugam team. no pf.', 7, '0000-00-00 00:00:00', 1),
(2572, 2883, 8, 3, 0, '15k ctc for karthika team. esale', 7, '0000-00-00 00:00:00', 1),
(2573, 2884, 56, 5, 0, 'Not fit for sales', 7, '0000-00-00 00:00:00', 1),
(2574, 2887, 27, 2, 0, 'Interview Taken. Task Given.', 50, '0000-00-00 00:00:00', 1),
(2575, 2858, 27, 4, 0, 'having 10 Years experience. Worked in all the verticals. Gs has to check and confirm.', 50, '0000-00-00 00:00:00', 1),
(2576, 2827, 27, 2, 0, 'Interview taken. Task Given.', 50, '0000-00-00 00:00:00', 1),
(2577, 2247, 16, 5, 0, ' Sustain doubt', 8, '2021-01-06 03:18:10', 1),
(2578, 2875, 20, 4, 0, 'selected for kannan', 8, '2021-01-06 03:19:23', 1),
(2579, 2874, 20, 4, 0, 'selected for suthagar', 8, '2021-01-06 03:20:12', 1),
(2580, 2883, 67, 7, 0, 'sELECTED AND WILL JOIN ON 20TH JAN AS SHE HAS PERSONAL COMMITMENT TILL 20TH JAN. sALARY FIXED 15K WITH mR.sURESH vERBAL aPPROVAL. eX EMPLOYEE OF cAFS,\n2YEARS AGREEMENT DISCUSSED', 8, '2021-01-06 03:21:20', 1),
(2581, 2885, 44, 5, 2, 'He is not fit for Life sales', 8, '2021-01-06 03:22:31', 1),
(2582, 2886, 44, 4, 3, 'Candidate ok for me and need your Approval ', 8, '2021-01-06 03:23:50', 1),
(2583, 2886, 29, 7, 2, 'rM - Shanmugam team', 44, '2021-01-06 05:58:54', 1),
(2584, 2858, 54, 2, 0, 'task assigned.', 27, '2021-01-06 06:04:11', 1),
(2585, 2865, 8, 3, 0, '23 ctc and hike after 3 month.1.5l target. for shanmugam team', 29, '2021-01-06 06:24:09', 1),
(2586, 2886, 8, 3, 0, '22k ctc for shanmugam team. no pf.', 29, '2021-01-06 06:32:15', 1),
(2587, 2846, 8, 3, 0, '9k ctc for keerthika team.', 18, '2021-01-07 10:17:55', 1),
(2588, 2899, 59, 4, 0, 'Have relevant Exp in Insurance, Can give a try', 60, '0000-00-00 00:00:00', 1),
(2589, 2898, 59, 4, 0, 'Have exp in Sales,Can give a try', 60, '0000-00-00 00:00:00', 1),
(2590, 2830, 27, 5, 0, 'He donxquott know the basics.', 60, '0000-00-00 00:00:00', 1),
(2591, 2904, 59, 5, 0, 'Not fit into sales', 50, '0000-00-00 00:00:00', 1),
(2592, 2903, 59, 5, 0, 'Will not fit for Sales', 50, '0000-00-00 00:00:00', 1),
(2593, 2901, 59, 5, 0, 'Not much communicative, will not fir for sales', 50, '0000-00-00 00:00:00', 1),
(2594, 2902, 8, 5, 0, 'bad attitude. chewing the chewing gum while interview and very lethargic', 50, '0000-00-00 00:00:00', 1),
(2595, 2900, 8, 4, 4, 'check for re', 50, '0000-00-00 00:00:00', 1),
(2596, 2905, 8, 5, 0, 'will not suite for our process looking for admin job', 50, '0000-00-00 00:00:00', 1),
(2597, 2907, 8, 4, 0, 'check for esale', 50, '0000-00-00 00:00:00', 1),
(2598, 2906, 59, 5, 0, 'Sustainability Issue 2yrs 3 companies changed', 50, '0000-00-00 00:00:00', 1),
(2599, 2909, 59, 5, 0, 'No relevant Exp,Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(2600, 2899, 57, 4, 0, 'candidate is ok .. ', 59, '2021-01-07 02:45:02', 1),
(2601, 2875, 19, 4, 0, 'selected for next round', 20, '2021-01-07 02:46:37', 1),
(2602, 2874, 24, 4, 0, 'candidate selected for 2nd round', 20, '2021-01-07 02:46:59', 1),
(2603, 2875, 22, 7, 0, 'Selected for Kannan Team.\nfresher yet seems suitable for RE.\nKindly do the joining Procedures.', 19, '2021-01-07 02:48:02', 1),
(2604, 2898, 16, 5, 0, 'no sales skills', 59, '2021-01-07 02:48:55', 1),
(2605, 2874, 22, 7, 0, 'Shortlised for Suthagar Team.\nkindly do the joining procedures', 24, '2021-01-07 02:49:25', 1),
(2606, 2874, 8, 3, 3, '15k ctc for Suthagar team', 22, '2021-01-07 02:51:24', 1),
(2607, 2866, 27, 2, 0, 'Task Given.', 60, '0000-00-00 00:00:00', 1),
(2608, 2875, 8, 3, 2, '15k ctc for suthagar team.', 22, '2021-01-07 02:52:26', 1),
(2609, 2899, 22, 7, 0, 'Experienced Candidate Kindly allocate to syedxquots team', 57, '2021-01-07 02:52:51', 1),
(2610, 2899, 8, 3, 0, '18k ctc for syed team', 22, '2021-01-07 02:54:18', 1),
(2611, 2844, 29, 5, 1, 'will not fit for any profile, has not worked for last 1 year, expecting higher salary, however zero skill ', 18, '2021-01-07 02:59:30', 1),
(2612, 2911, 8, 3, 0, '10k th for keerthiga team.', 50, '0000-00-00 00:00:00', 1),
(2613, 2910, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(2614, 2907, 21, 4, 4, 'candidate ok ', 8, '2021-01-07 05:29:23', 1),
(2615, 2900, 19, 5, 0, 'not fit for sales', 8, '2021-01-07 05:31:06', 1),
(2616, 2907, 67, 5, 0, 'She demanded for higher salary. (18K) We offered as per esales norms. Arun HR spoke to her over phone for her willingness but she refused our offer.', 21, '2021-01-07 05:53:29', 1),
(2617, 2911, 18, 7, 3, 'Selected as CRM for keerthika team. Expected salary is 12K but can negotiate. Ready to Join on 18 Jan\n ', 8, '2021-01-07 06:52:33', 1),
(2618, 2883, 8, 3, 0, '15k ctc for karthika team. esale', 67, '2021-01-07 08:08:00', 1),
(2619, 2916, 8, 5, 0, 'will not suite for calling. not speaking up.', 50, '0000-00-00 00:00:00', 1),
(2620, 2807, 8, 5, 0, 'no response', 34, '2021-01-08 10:55:59', 1),
(2621, 2861, 8, 3, 0, '13k ctc for syed team', 34, '2021-01-08 11:06:41', 1),
(2622, 2917, 8, 4, 0, 'check for RE, fresher', 50, '0000-00-00 00:00:00', 1),
(2623, 2918, 56, 4, 3, 'selected for next round', 50, '0000-00-00 00:00:00', 1),
(2624, 2915, 8, 2, 0, 'hold', 50, '0000-00-00 00:00:00', 1),
(2625, 2914, 27, 2, 0, 'Task Given. he will complete and let us know.', 60, '0000-00-00 00:00:00', 1),
(2626, 2917, 24, 7, 0, 'Candidate selected for next round', 8, '2021-01-08 01:37:08', 1),
(2627, 2890, 27, 5, 0, 'We are Looking more Experienced. He dont have much knowledge in Photoshop.', 60, '0000-00-00 00:00:00', 1),
(2628, 2920, 59, 5, 0, 'Will not fit into sales, Not communicating', 60, '0000-00-00 00:00:00', 1),
(2629, 2924, 59, 5, 0, 'Looking only for Admin positions, not open for Sales', 60, '0000-00-00 00:00:00', 1),
(2630, 2926, 59, 5, 0, 'Not open for Sales, looking for voice process,but not for sales', 60, '0000-00-00 00:00:00', 1),
(2631, 2917, 22, 7, 4, 'good candidate and also spokened for 1 year bond', 24, '2021-01-08 04:31:54', 1),
(2632, 2917, 60, 1, 0, NULL, 22, '2021-01-08 04:34:30', 1),
(2633, 2914, 27, 2, 0, 'Task Given. he will Complete and send back tomorrow.', 27, '2021-01-08 06:34:43', 1),
(2634, 2925, 59, 5, 0, 'Will Not sustain in Sales, Focus much into IT positions', 60, '0000-00-00 00:00:00', 1),
(2635, 2862, 27, 2, 0, 'Interview Taken. task Given', 60, '0000-00-00 00:00:00', 1),
(2636, 2929, 8, 4, 3, 'check for esale. have 5yr exp in sim sales.', 60, '0000-00-00 00:00:00', 1),
(2637, 2929, 21, 5, 3, 'She Is Not Able To Sustain Long Term ,Bcz, She Have Family Problem With Husband.. Not Suit For Our Procees', 8, '2021-01-09 12:48:30', 1),
(2638, 1887, 27, 2, 0, 'Interview taken. Task Given', 7, '0000-00-00 00:00:00', 1),
(2639, 2918, 30, 7, 3, 'verify existing payslip and bank statement bcoz existing package 28k but i finalised 25k take home.16th only he will join.so confirm from your end further process.thanks', 56, '2021-01-09 03:43:42', 1),
(2640, 2918, 8, 3, 3, '25k ctc and no pf. ', 30, '2021-01-09 05:08:52', 1),
(2641, 2827, 27, 5, 0, 'Task Not Satisfied.', 27, '2021-01-11 10:30:10', 1),
(2642, 2937, 59, 5, 0, 'Will not fit into Insurance Sales', 60, '0000-00-00 00:00:00', 1),
(2643, 2933, 59, 4, 0, 'No relevant Exp , can give a try ', 60, '0000-00-00 00:00:00', 1),
(2644, 2944, 59, 4, 0, 'Profile oK. Can give a try for Sales', 7, '0000-00-00 00:00:00', 1),
(2645, 2936, 59, 4, 0, 'Have Exp in Sales,profile ok', 7, '0000-00-00 00:00:00', 1),
(2646, 2934, 68, 7, 4, 'Shortlisted', 7, '0000-00-00 00:00:00', 1),
(2647, 2943, 68, 7, 4, 'Expectig 3L CTC', 7, '0000-00-00 00:00:00', 1),
(2648, 2784, 27, 2, 0, 'Task Given', 60, '0000-00-00 00:00:00', 1),
(2649, 2944, 19, 4, 4, 'Job needed', 59, '2021-01-11 03:19:48', 1),
(2650, 2936, 19, 4, 0, 'Salary 16k', 59, '2021-01-11 03:21:15', 1),
(2651, 2933, 34, 7, 4, 'SELECTED NEXT WEDNESDAY JOING ', 59, '2021-01-11 03:21:56', 1),
(2652, 2946, 59, 4, 0, 'Good Communication,Internal Saranya Devi Ref,Can give a try for sales', 60, '0000-00-00 00:00:00', 1),
(2653, 2946, 18, 7, 4, 'Selected for Veben Team. Salary agreed is 25K take home per month and can ignore pf. Immed joining', 59, '2021-01-11 03:47:04', 1),
(2654, 2870, 59, 4, 0, 'Have Exp in ICICI Loan sales, can give a try for RE', 7, '0000-00-00 00:00:00', 1),
(2655, 2946, 8, 3, 3, '25k ctc for veben team.', 18, '2021-01-11 06:08:34', 1),
(2656, 2870, 16, 1, 0, NULL, 59, '2021-01-11 06:12:59', 1),
(2657, 2934, 0, 1, 0, NULL, 68, '2021-01-11 06:45:11', 1),
(2658, 2943, 0, 1, 0, NULL, 68, '2021-01-11 06:48:20', 1),
(2659, 2944, 22, 7, 4, 'canditate ok', 19, '2021-01-11 06:57:25', 1),
(2660, 2936, 22, 7, 4, 'canditate ok', 19, '2021-01-11 06:58:15', 1),
(2661, 2922, 56, 4, 4, 'selected for next round', 7, '0000-00-00 00:00:00', 1),
(2662, 2922, 30, 7, 3, 'Confirm her salary 21k and joining process', 56, '2021-01-11 07:07:17', 1),
(2663, 2936, 8, 3, 0, '16k ctc for kannan team', 22, '2021-01-12 11:02:27', 1),
(2664, 2944, 8, 3, 0, '15k ctc for kannan team', 22, '2021-01-12 11:03:08', 1),
(2665, 2845, 8, 5, 0, 'no response', 8, '2021-01-12 11:39:35', 1),
(2666, 2915, 8, 5, 0, 'no response', 8, '2021-01-12 11:39:48', 1),
(2667, 2933, 8, 3, 0, '15.5k ctc and for guru team.', 34, '2021-01-12 11:43:18', 1),
(2668, 2067, 27, 5, 0, 'Looking More Experienced Profile.', 27, '2021-01-12 11:47:10', 1),
(2669, 2955, 59, 5, 0, 'Will not sustain and very high CTC ', 60, '0000-00-00 00:00:00', 1),
(2670, 2147, 27, 5, 0, 'Got Another Job.', 27, '2021-01-12 11:47:30', 1),
(2671, 2225, 27, 5, 0, 'UI not Satisfied', 27, '2021-01-12 11:47:46', 1),
(2672, 2831, 27, 5, 0, 'Looking more Experienced.', 27, '2021-01-12 11:50:23', 1),
(2673, 2866, 27, 5, 0, 'UI not good. Looking Better Design.', 27, '2021-01-12 11:59:16', 1),
(2674, 1887, 27, 5, 0, 'He is not completed the Task and no response from him.', 27, '2021-01-12 12:09:29', 1),
(2675, 2625, 27, 5, 0, 'Not completed the Task', 27, '2021-01-12 12:10:05', 1),
(2676, 2945, 8, 2, 0, 'check for esale bdm.', 7, '0000-00-00 00:00:00', 1),
(2677, 2957, 8, 5, 2, 'will not suite for our process. he already Attended interview last year and rejected for the same reason', 7, '0000-00-00 00:00:00', 1),
(2678, 2959, 8, 5, 0, 'will not suite for calling and not interested in field sales', 7, '0000-00-00 00:00:00', 1),
(2679, 2960, 8, 5, 0, 'will not suite for sales and calling.', 7, '0000-00-00 00:00:00', 1),
(2680, 2863, 27, 5, 0, 'Task not Completed.', 27, '2021-01-12 04:42:07', 1),
(2681, 2911, 8, 3, 0, '10k th for keerthiga team.', 18, '2021-01-12 05:43:11', 1),
(2682, 2934, 8, 3, 0, '17k ctc. for RM', 30, '2021-01-13 01:00:23', 1),
(2683, 2922, 8, 3, 0, '18k th for rm. while Negotiation candidate is okay 18k bcoz his previous package was 15k.', 30, '2021-01-13 01:02:16', 1),
(2684, 1101, 8, 5, 0, 'Will Not Suite For Sales Calling And Not Interested In Sales. Will Not Sustain.', 7, '0000-00-00 00:00:00', 1),
(2685, 2948, 27, 2, 0, 'Task Given.', 60, '0000-00-00 00:00:00', 1),
(2686, 2964, 59, 4, 0, 'High Exp in Sales domain,High CTC,Can give a try', 7, '0000-00-00 00:00:00', 1),
(2687, 2784, 27, 5, 0, 'Task not Completed.', 27, '2021-01-13 12:13:23', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(2688, 2971, 59, 4, 0, 'Ok For sales', 7, '0000-00-00 00:00:00', 1),
(2689, 2973, 59, 5, 0, 'Not Fit for Sales, will not sustain', 7, '0000-00-00 00:00:00', 1),
(2690, 2964, 44, 8, 0, 'please Reassign to GK Ji ', 59, '2021-01-13 04:42:24', 1),
(2691, 2954, 59, 4, 0, 'No relevant Exp Insurance Exp,Can give a try', 7, '0000-00-00 00:00:00', 1),
(2692, 2954, 34, 7, 4, 'selected tuesday joining', 59, '2021-01-13 05:02:38', 1),
(2693, 2971, 24, 4, 0, 'Experienced in health. selected for my team', 59, '2021-01-13 05:05:41', 1),
(2694, 2870, 59, 8, 0, 'Selected for Next Round, but not attended ', 59, '2021-01-15 10:57:04', 1),
(2695, 2979, 59, 5, 0, 'Fresher, Not open for agreement', 60, '0000-00-00 00:00:00', 1),
(2696, 2971, 22, 7, 0, 'Candidate is already experienced in insurance field has knowledge in star and religare health insurance products. kindly through for the final round.', 24, '2021-01-15 12:02:00', 1),
(2697, 2978, 59, 5, 0, 'Sustainability Issue,Not much communicative', 60, '0000-00-00 00:00:00', 1),
(2698, 2971, 8, 3, 0, '20k th for suthagar team. 21100ctc', 22, '2021-01-15 12:12:16', 1),
(2699, 2954, 53, 7, 0, 'Shortlisted. sal ctc 13k, pls cnfrm DOJ', 34, '2021-01-15 12:20:47', 1),
(2700, 2954, 8, 3, 0, '13k ctc for guru team', 53, '2021-01-15 02:59:17', 1),
(2701, 2943, 8, 3, 0, '24.5k ctc and no pf. for sanjeev team', 30, '2021-01-16 12:52:27', 1),
(2702, 2989, 27, 5, 0, 'this candidate Selected for next round. GS seen and Rejected. Donxquott have any experience in new technologies.', 60, '0000-00-00 00:00:00', 1),
(2703, 2862, 60, 1, 0, NULL, 27, '2021-01-18 11:20:36', 1),
(2704, 2862, 27, 7, 0, 'Selected for final round.', 27, '2021-01-18 11:20:36', 1),
(2705, 2990, 8, 5, 0, 'in two months looking for job change bcoz of long distance. current 10k and exp is 15k. not confident and will not suite for our process.', 60, '0000-00-00 00:00:00', 1),
(2706, 2981, 8, 5, 0, 'looking for backend job. his pronunciation was not clear and good. will not suite for calling.', 60, '0000-00-00 00:00:00', 1),
(2707, 2991, 59, 5, 0, 'Not Ok for Sys Admin,will not sustain.', 60, '0000-00-00 00:00:00', 1),
(2708, 2961, 59, 5, 0, 'Will not Fit for Mernstack, Much interest into Aero(drone).Recently started looking for IT openings', 60, '0000-00-00 00:00:00', 1),
(2709, 2984, 59, 5, 0, 'Not ok for Sales, looking much for non voice', 60, '0000-00-00 00:00:00', 1),
(2710, 2995, 8, 3, 0, '13k ctc for kannan team', 60, '0000-00-00 00:00:00', 1),
(2711, 3001, 8, 2, 0, 'Need To Discuss About Salary', 60, '0000-00-00 00:00:00', 1),
(2712, 2999, 8, 5, 0, 'not interested in sales and will not suite for calling too.', 60, '0000-00-00 00:00:00', 1),
(2713, 2992, 8, 5, 0, 'fresher, not speaking up and will not suite for Esale/CRM.', 60, '0000-00-00 00:00:00', 1),
(2714, 2988, 27, 5, 0, 'Attitude not good. technically not good.', 60, '0000-00-00 00:00:00', 1),
(2715, 3000, 8, 2, 0, 'need to discuss about salary', 60, '0000-00-00 00:00:00', 1),
(2716, 2985, 8, 2, 0, 'she need to confirm her joining. 30 days notice.', 60, '0000-00-00 00:00:00', 1),
(2717, 2995, 19, 4, 0, 'one year experienced in voice process. selected for next round', 8, '2021-01-19 01:32:36', 1),
(2718, 2985, 44, 4, 3, 'Candidate ok for me and need your suggestion ', 8, '2021-01-19 01:35:25', 1),
(2719, 2945, 8, 5, 0, 'looking for BDM profile. but no Relevant exp. and no response too.', 8, '2021-01-19 02:29:53', 1),
(2720, 2995, 22, 7, 0, 'Shortlisted for next round. negotiate salary. he wanted 15k..i have reduced to 13K Net salary. do the needfull', 19, '2021-01-19 06:27:01', 1),
(2721, 2995, 8, 3, 0, '13k ctc for kannan team', 22, '2021-01-19 06:29:10', 1),
(2722, 1824, 54, 5, 0, 'He is not completed the given task', 54, '2021-01-19 06:34:12', 1),
(2723, 2858, 54, 5, 0, 'we picked another candidate', 54, '2021-01-19 06:34:52', 1),
(2724, 2848, 54, 5, 0, 'task incomplete.', 54, '2021-01-19 06:35:34', 1),
(2725, 1822, 54, 5, 0, 'no replay from the candidate.', 54, '2021-01-19 06:36:12', 1),
(2726, 1821, 54, 5, 0, 'No replay from the candidate.', 54, '2021-01-19 06:36:50', 1),
(2727, 3010, 8, 3, 0, '10k take home for pargavi team', 7, '0000-00-00 00:00:00', 1),
(2728, 3009, 8, 5, 0, 'will not suite for calling. not speaking up. will not handle pressure and sustain.', 7, '0000-00-00 00:00:00', 1),
(2729, 3005, 27, 2, 0, 'We can offer as a intern after that we can add as a employee. he will discuss and confirm.', 60, '0000-00-00 00:00:00', 1),
(2730, 2996, 8, 5, 0, 'no response', 60, '0000-00-00 00:00:00', 1),
(2731, 2994, 59, 5, 0, 'High Exp and High CTC expectation', 60, '0000-00-00 00:00:00', 1),
(2732, 2996, 44, 4, 3, 'Ji please check once and conform', 8, '2021-01-20 02:38:31', 1),
(2733, 3010, 44, 4, 3, 'She is Fresher but ok for CRM ,', 8, '2021-01-20 02:40:15', 1),
(2734, 3000, 8, 5, 0, 'will not join. fresher and exp sal is 12k+', 8, '2021-01-20 02:40:55', 1),
(2735, 3001, 8, 5, 0, 'Will Not Join. Fresher And Exp Sal Is 12k+', 8, '2021-01-20 02:41:05', 1),
(2736, 2948, 27, 5, 0, 'Task Not satisfied.', 27, '2021-01-20 02:50:20', 1),
(2737, 2887, 27, 5, 0, 'Task not satisfied.', 27, '2021-01-20 02:50:40', 1),
(2738, 3011, 8, 4, 0, 'Around 10yr exp and 1yr exp in insurance. check for RM profile.', 7, '0000-00-00 00:00:00', 1),
(2739, 3012, 8, 5, 0, 'will not suite for RM profile. sal exp is 4L+', 7, '0000-00-00 00:00:00', 1),
(2740, 3011, 40, 5, 0, 'Not fit for Job', 8, '2021-01-20 05:15:06', 1),
(2741, 2980, 27, 5, 0, 'She donxquott have a good knowledge in any technology.', 7, '0000-00-00 00:00:00', 1),
(2742, 3020, 8, 3, 0, '13k ctc for srikanth team', 7, '0000-00-00 00:00:00', 1),
(2743, 3021, 8, 4, 3, 'very lethargic and cross check for RE.', 7, '0000-00-00 00:00:00', 1),
(2744, 3020, 20, 4, 0, 'HAs a 6months voice experience. seems trustable.', 8, '2021-01-21 01:38:24', 1),
(2745, 3021, 20, 5, 0, 'Not sustainable', 8, '2021-01-21 01:40:25', 1),
(2746, 3019, 30, 4, 3, 'candidate k but he is expecting high 30k take home,previous company 25k + 3k petrol allowance .but we can offer maximum 25k .Candidate will think and update to jenifer.one draw back he dont have experience in our field.kindly confirm from your end.', 7, '0000-00-00 00:00:00', 1),
(2747, 3020, 22, 7, 0, ' shortlisted for srikanth team.. seems suitable and has 6 months voice calling experience.... negotiate and finalize salary to 13K and joining on monday.', 20, '2021-01-21 04:16:43', 1),
(2748, 2914, 60, 1, 0, NULL, 27, '2021-01-21 06:36:49', 1),
(2749, 2914, 27, 7, 0, 'Selected. We can offer 20K.', 27, '2021-01-21 06:36:49', 1),
(2750, 3005, 27, 5, 0, 'Not completed the task.', 27, '2021-01-21 06:37:19', 1),
(2751, 3019, 8, 2, 0, 'Need to confirm with the candidate.', 30, '2021-01-21 07:13:30', 1),
(2752, 2985, 29, 7, 2, 'selected for RM, Shanmugam Team,', 44, '2021-01-22 11:10:43', 1),
(2753, 2996, 29, 2, 0, 'hold', 44, '2021-01-22 11:13:07', 1),
(2754, 3010, 29, 7, 2, 'selected for CRM, Pargavi Team, Salary - check resume', 44, '2021-01-22 11:15:01', 1),
(2755, 3016, 27, 2, 0, 'Task Given. He will complete and update to us.', 60, '0000-00-00 00:00:00', 1),
(2756, 3023, 27, 5, 0, 'not completed the system task.', 60, '0000-00-00 00:00:00', 1),
(2757, 3006, 27, 5, 0, 'He is waiting for Wipro. He will not sustain.', 60, '0000-00-00 00:00:00', 1),
(2758, 3014, 27, 2, 0, 'Task Given. He will Complete and send back to us.', 60, '0000-00-00 00:00:00', 1),
(2759, 3020, 8, 3, 0, '13k ctc for srikanth team', 22, '2021-01-22 03:20:27', 1),
(2760, 3010, 8, 3, 0, '10k take home for pargavi team', 29, '2021-01-22 06:15:14', 1),
(2761, 2985, 8, 2, 0, 'she need to confirm her joining. 30 days notice.', 29, '2021-01-22 06:21:28', 1),
(2762, 3031, 27, 2, 0, 'Interview Taken. Task Given.', 60, '0000-00-00 00:00:00', 1),
(2763, 3032, 59, 5, 0, 'No Insurance based exp, High CTC Exp, Sustainability Issue', 60, '0000-00-00 00:00:00', 1),
(2764, 3033, 59, 5, 0, 'No Relevant Exp will not fit to CRM/Esales', 60, '0000-00-00 00:00:00', 1),
(2765, 3030, 59, 5, 0, 'Sustainability Issue, High CTC Expectation', 60, '0000-00-00 00:00:00', 1),
(2766, 3029, 27, 2, 0, 'He will confirm within one week', 60, '0000-00-00 00:00:00', 1),
(2767, 3028, 27, 2, 0, 'He is working in both Hardware and software. task given. he will complete and let us know.', 1, '0000-00-00 00:00:00', 1),
(2768, 3037, 27, 5, 0, 'Dont know the Basics.', 60, '0000-00-00 00:00:00', 1),
(2769, 3041, 59, 4, 0, 'Internal Reference, Can give a try for Sales', 60, '0000-00-00 00:00:00', 1),
(2770, 3034, 27, 2, 0, 'Task Given. He will complete and send back to us.', 1, '0000-00-00 00:00:00', 1),
(2771, 3034, 27, 5, 0, 'Task Incompleted. Getting Many Errors.', 27, '2021-01-25 12:54:49', 1),
(2772, 3041, 19, 4, 0, 'NEED TO REVIEW ', 59, '2021-01-25 03:13:20', 1),
(2773, 3031, 27, 5, 0, 'Task not fully completed. If he is ready to work with same salary we can offer.', 27, '2021-01-25 04:54:27', 1),
(2774, 3047, 27, 5, 0, 'He is Looking for an Internship.Intern for UI/UX not Required.', 60, '0000-00-00 00:00:00', 1),
(2775, 3049, 59, 4, 0, 'No Sales Experience, Internal Team Reference Profile, Give a try if suits ', 60, '0000-00-00 00:00:00', 1),
(2776, 3050, 8, 5, 0, 'not genuine lot of miss communication about her salary. absconded from last company. exp sal is 15k.', 60, '0000-00-00 00:00:00', 1),
(2777, 3052, 59, 5, 0, 'only non voice exp, Distance issue, will not fit for sales ', 60, '0000-00-00 00:00:00', 1),
(2778, 3049, 29, 5, 1, 'will not suit', 59, '2021-01-27 02:33:58', 1),
(2779, 3058, 68, 5, 2, 'Looking for Back End Jobs, ', 7, '0000-00-00 00:00:00', 1),
(2780, 3028, 27, 5, 0, 'Task Incompleted.', 27, '2021-01-27 06:09:27', 1),
(2781, 2985, 8, 5, 0, 'will not join exp 25k+ and no response from her.', 8, '2021-01-27 06:42:09', 1),
(2782, 3060, 27, 5, 0, 'Donxquott have an experience in MERN. She is a front end developer. ', 60, '0000-00-00 00:00:00', 1),
(2783, 3071, 18, 7, 4, 'Selected For Raj Team Expected salary is 28K but not worth more than 25K immed joining', 60, '0000-00-00 00:00:00', 1),
(2784, 3070, 27, 5, 0, 'She donxquott have a knowledge in PHP Mysql. ', 60, '0000-00-00 00:00:00', 1),
(2785, 3038, 27, 5, 0, 'He dont have a good knowledge in Technical', 60, '0000-00-00 00:00:00', 1),
(2786, 3046, 27, 2, 0, 'Task Given. He will complete and send us tomorrow.', 60, '0000-00-00 00:00:00', 1),
(2787, 3069, 59, 5, 0, 'No Exp in React, Focus on the salary Part, will not sustain', 60, '0000-00-00 00:00:00', 1),
(2788, 3072, 40, 4, 4, 'doubtful for longtime..expecting 40k pM....', 7, '0000-00-00 00:00:00', 1),
(2789, 3072, 18, 7, 4, 'Expected salary is 40k Need to negotiate for 32k. Selected for raj team. Kindly call and confirm', 40, '2021-01-28 12:42:09', 1),
(2790, 3066, 27, 2, 0, 'He will come tomorrow for System task.', 60, '0000-00-00 00:00:00', 1),
(2791, 3079, 27, 2, 0, 'Dynamic Task Given. He will complete and send back to us.', 60, '0000-00-00 00:00:00', 1),
(2792, 3014, 27, 2, 0, 'Still Hold only. we will update after 1st Feb.', 27, '2021-01-28 06:45:04', 1),
(2793, 3071, 8, 3, 3, '23273 gross sal. for rajkumar team. in patroniss.', 18, '2021-01-28 06:47:24', 1),
(2794, 3041, 22, 8, 0, 'kindly allocate for second round ', 19, '2021-01-28 07:37:58', 1),
(2795, 3065, 27, 2, 0, 'Selected For Task Round. Task given', 60, '0000-00-00 00:00:00', 1),
(2796, 3072, 8, 3, 0, '27400 gross and 23592 as net with pf.', 18, '2021-01-29 12:06:40', 1),
(2797, 3084, 8, 5, 0, 'CRM profile, fresher for calling, has exp in kyc. will not suite for esales. sis working in hdfc life. sal exp is too high will not handle pressure and sustain.', 60, '0000-00-00 00:00:00', 1),
(2798, 3082, 8, 5, 2, 'looking for non voice, Will Not Handle Pressure And Sustain And Will Not Suite For Re.', 60, '0000-00-00 00:00:00', 1),
(2799, 3077, 27, 2, 0, 'Selected For Task Round.', 60, '0000-00-00 00:00:00', 1),
(2800, 3053, 8, 5, 2, 'no Relevant exp, 60 days notice and not int in customer support. current th is 20k and exp 30%', 60, '0000-00-00 00:00:00', 1),
(2801, 3085, 8, 3, 0, '10k th for keerthiga team\n', 60, '0000-00-00 00:00:00', 1),
(2802, 3087, 59, 5, 0, 'No Sales Exp, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(2803, 3085, 18, 7, 3, 'Selected for CRM for keerthiga team. Please discuss the salary as per CRM Norms\n', 8, '2021-01-29 02:48:35', 1),
(2804, 3013, 27, 2, 0, 'Selected for Task Round', 60, '0000-00-00 00:00:00', 1),
(2805, 3079, 27, 5, 0, 'No response from him.', 27, '2021-01-29 06:47:41', 1),
(2806, 3077, 27, 5, 0, 'Not attend the system task.', 27, '2021-01-29 06:49:08', 1),
(2807, 3065, 27, 5, 0, 'Not completed the task.', 27, '2021-01-29 06:54:16', 1),
(2808, 1278, 27, 5, 0, 'not completed the task', 27, '2021-01-29 06:54:36', 1),
(2809, 3064, 27, 5, 0, 'He donxquott know the React. But we required MERN', 60, '0000-00-00 00:00:00', 1),
(2810, 3086, 27, 5, 0, 'Task not completed. he knows only front end.', 60, '0000-00-00 00:00:00', 1),
(2811, 3055, 27, 2, 0, 'Task Given. he is completed. I will check and update on monday.', 60, '0000-00-00 00:00:00', 1),
(2812, 3091, 27, 2, 0, 'Task Given. she will complete and send on monday.', 60, '0000-00-00 00:00:00', 1),
(2813, 3095, 8, 3, 0, '26ctc with pf Shanmugam team', 60, '0000-00-00 00:00:00', 1),
(2814, 3078, 27, 2, 0, 'Task Given.', 60, '0000-00-00 00:00:00', 1),
(2815, 3081, 27, 5, 0, 'He is a trainer. he dont know about the technologies which is required.\n', 60, '0000-00-00 00:00:00', 1),
(2816, 3096, 8, 4, 3, 'check for Esale. ', 60, '0000-00-00 00:00:00', 1),
(2817, 3095, 29, 7, 3, 'selected RM, shanmugam team.. salary details pls refer resume', 8, '2021-01-30 11:33:22', 1),
(2818, 3098, 27, 2, 0, 'Selected for task round. Task Given. ', 60, '0000-00-00 00:00:00', 1),
(2819, 3089, 27, 2, 0, 'Task Given. he will complete and send back monday', 60, '0000-00-00 00:00:00', 1),
(2820, 3096, 11, 5, 0, 'She is not suitable for sales process', 8, '2021-01-30 11:57:25', 1),
(2821, 3076, 27, 5, 0, 'Latha taken the interview. She donxquott have that much knowledge in technical.', 60, '0000-00-00 00:00:00', 1),
(2822, 3093, 27, 2, 0, 'Task Given. he will complete and send on sunday aftn.', 60, '0000-00-00 00:00:00', 1),
(2823, 3019, 8, 5, 0, 'no response from his end. not okay with salary.', 8, '2021-01-30 03:53:36', 1),
(2824, 3042, 27, 5, 0, 'Attitude is not good.', 60, '0000-00-00 00:00:00', 1),
(2825, 3085, 36, 4, 0, 'Shortlisted for caller', 18, '2021-01-30 09:49:56', 1),
(2826, 3095, 8, 3, 0, '26ctc with pf Shanmugam team', 29, '2021-02-01 10:32:06', 1),
(2827, 3085, 18, 7, 3, 'Selected for CRM for keerthiga team. Please discuss the salary as per CRM Norms\n', 36, '2021-02-01 10:48:16', 1),
(2828, 3085, 8, 3, 0, '10k th for keerthiga team\n', 18, '2021-02-01 10:58:02', 1),
(2829, 3088, 8, 5, 0, 'no response will not join', 7, '0000-00-00 00:00:00', 1),
(2830, 3105, 27, 5, 0, 'Dont have a knowledge in PHP.', 50, '0000-00-00 00:00:00', 1),
(2831, 3112, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(2832, 3113, 8, 4, 3, 'check for RM. fresher for us, 18k exp. lay off.', 50, '0000-00-00 00:00:00', 1),
(2833, 3107, 8, 5, 0, 'fresher, not interested in sales.', 50, '0000-00-00 00:00:00', 1),
(2834, 3088, 19, 4, 0, 'Sustainability', 8, '2021-02-01 12:36:30', 1),
(2835, 3113, 33, 5, 2, 'not suit for sales industry ', 8, '2021-02-01 12:38:52', 1),
(2836, 3106, 8, 4, 3, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(2837, 3106, 19, 5, 0, 'not fit for sale', 8, '2021-02-01 01:20:26', 1),
(2838, 3115, 8, 3, 0, '15k th for kannan team.', 50, '0000-00-00 00:00:00', 1),
(2839, 3108, 8, 2, 0, 'need time to discuss', 50, '0000-00-00 00:00:00', 1),
(2840, 3100, 8, 2, 0, 'need time to discuss', 50, '0000-00-00 00:00:00', 1),
(2841, 3111, 8, 2, 0, 'for salary confirmation', 50, '0000-00-00 00:00:00', 1),
(2842, 3111, 16, 4, 0, 'Good Skills Going On salary bargain', 8, '2021-02-01 03:46:33', 1),
(2843, 3115, 19, 7, 0, 'fit for sales', 8, '2021-02-01 04:54:36', 1),
(2844, 3098, 27, 5, 0, 'Not completed the task.', 27, '2021-02-01 05:14:55', 1),
(2845, 3029, 27, 5, 0, 'No Response from him.', 27, '2021-02-01 05:15:53', 1),
(2846, 3091, 27, 2, 0, 'She need another one day to complete.', 27, '2021-02-01 05:19:04', 1),
(2847, 3014, 27, 2, 0, 'He will confirm before EOD.', 27, '2021-02-01 05:19:40', 1),
(2848, 3066, 27, 2, 0, 'He will come tomorrow', 27, '2021-02-01 05:22:33', 1),
(2849, 3055, 27, 5, 0, 'Task not Completed.', 27, '2021-02-01 05:22:53', 1),
(2850, 3046, 27, 2, 0, 'Task Coimpleted. has to check tomorrow.', 27, '2021-02-01 05:23:29', 1),
(2851, 3093, 27, 2, 0, 'Task completed. has to check tomorrow', 27, '2021-02-01 05:23:50', 1),
(2852, 3089, 27, 2, 0, 'Task Completed. has to check tomorrow.', 27, '2021-02-01 05:24:21', 1),
(2853, 3115, 22, 7, 3, 'Convincing skills ok', 19, '2021-02-01 05:51:33', 1),
(2854, 3111, 8, 2, 0, 'for salary confirmation', 16, '2021-02-01 05:58:10', 1),
(2855, 3115, 8, 3, 0, '15k th for kannan team.', 22, '2021-02-02 10:28:45', 1),
(2856, 3111, 8, 5, 0, 'will not join. going to rejoin in old company.', 8, '2021-02-02 10:33:18', 1),
(2857, 3088, 16, 4, 0, 'HOLD ', 19, '2021-02-02 10:45:07', 1),
(2858, 3059, 27, 2, 0, 'He will come back for system task on friday.', 50, '0000-00-00 00:00:00', 1),
(2859, 3126, 27, 2, 0, 'Task Given. he is doing the task.', 50, '0000-00-00 00:00:00', 1),
(2860, 3120, 8, 4, 3, 'check for rE', 50, '0000-00-00 00:00:00', 1),
(2861, 3121, 8, 4, 3, 'fresher, good communication but little bit slow, check for RE profile.', 50, '0000-00-00 00:00:00', 1),
(2862, 3128, 59, 4, 0, 'Check for System Admin', 50, '0000-00-00 00:00:00', 1),
(2863, 3104, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(2864, 3091, 27, 5, 0, 'UI Design not Good.', 27, '2021-02-02 12:41:15', 1),
(2865, 3124, 59, 5, 0, 'Will not sustain, No relevant Exp', 60, '0000-00-00 00:00:00', 1),
(2866, 3127, 59, 5, 0, 'Not suitable, will not sustain ', 50, '0000-00-00 00:00:00', 1),
(2867, 3129, 59, 8, 0, 'Candidate left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(2868, 3120, 24, 4, 0, 'SELECTED FOR NEXT ROUND', 8, '2021-02-02 03:02:09', 1),
(2869, 3121, 24, 5, 0, 'NOT FIT FOR RE', 8, '2021-02-02 03:03:20', 1),
(2870, 3130, 59, 5, 0, 'No Relevant Exp, Will not sustain', 50, '0000-00-00 00:00:00', 1),
(2871, 3128, 32, 5, 0, 'Expecting High Package', 59, '2021-02-02 04:12:21', 1),
(2872, 3066, 27, 2, 0, 'He will come for the interview thursday', 27, '2021-02-02 05:56:51', 1),
(2873, 3140, 8, 3, 0, '16k ctc for srikanthteam', 50, '0000-00-00 00:00:00', 1),
(2874, 3061, 27, 5, 0, 'She donxquott have a basic knowledge.', 50, '0000-00-00 00:00:00', 1),
(2875, 3133, 8, 5, 0, 'fresher will not suite for CRM.', 50, '0000-00-00 00:00:00', 1),
(2876, 3120, 22, 5, 0, 'candidate selected but exp Salary High 15k so rejected', 24, '2021-02-03 11:18:33', 1),
(2877, 3132, 8, 2, 0, 'has to attend one more round interview', 50, '0000-00-00 00:00:00', 1),
(2878, 3140, 20, 4, 0, 'Has experience in Voice calling. Wanted 16k package... committed 16K CTC and promised for revision of salary based on 6 months performance. Kindly analyze and shortlist the candidate', 8, '2021-02-03 12:48:15', 1),
(2879, 3147, 8, 5, 0, 'very childish and will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(2880, 3140, 22, 7, 0, 'potential candidate. Immediate joining shortlisted for Srikanth Team. With 16K CTC increment after 6 months performing.', 20, '2021-02-03 04:46:22', 1),
(2881, 3140, 8, 3, 0, '16k ctc for srikanthteam', 22, '2021-02-03 04:47:57', 1),
(2882, 3156, 8, 3, 0, 'Candidate selected for Logesh Team 18kCTC ', 50, '0000-00-00 00:00:00', 1),
(2883, 3150, 8, 4, 0, 'check for RE, fresher and exp sal is 12-13k.', 50, '0000-00-00 00:00:00', 1),
(2884, 3151, 27, 5, 0, 'Task not Completed.', 50, '0000-00-00 00:00:00', 1),
(2885, 3160, 8, 4, 2, 'check for RM, in notice period. has relevant exp.', 50, '0000-00-00 00:00:00', 1),
(2886, 3149, 8, 5, 0, 'sal exp is 15k. fresher, not speaking up and will not suite for our process.', 50, '0000-00-00 00:00:00', 1),
(2887, 3163, 8, 4, 3, 'check for esale and sustainability. exp sal is 15k.', 50, '0000-00-00 00:00:00', 1),
(2888, 3051, 8, 4, 0, 'have telephonic interview', 50, '0000-00-00 00:00:00', 1),
(2889, 3161, 8, 4, 3, 'check for CRM and sustainability.', 50, '0000-00-00 00:00:00', 1),
(2890, 3156, 36, 4, 0, 'Selected for RM', 8, '2021-02-04 01:12:34', 1),
(2891, 3051, 59, 5, 0, 'Candidate didnt turned for the second round of Discussion', 8, '2021-02-04 01:36:10', 1),
(2892, 3161, 18, 5, 2, 'Not fir for CRM\n', 8, '2021-02-04 01:41:16', 1),
(2893, 3163, 21, 5, 3, 'She Is Not Sustain Long Term, and also not able to take pressure', 8, '2021-02-04 01:42:28', 1),
(2894, 3160, 44, 5, 1, 'He is not fit and Attitude issues ', 8, '2021-02-04 01:44:12', 1),
(2895, 3150, 34, 7, 3, 'selected for next round', 8, '2021-02-04 01:45:02', 1),
(2896, 3150, 53, 5, 0, 'He s nt intrested in sales, looking for accounts related job.', 34, '2021-02-04 03:30:13', 1),
(2897, 3134, 59, 4, 0, 'Having Sales Exp in Loan, Can give a try for Insurance Sales', 50, '0000-00-00 00:00:00', 1),
(2898, 3156, 18, 7, 3, 'Selected for Lokesh Team. Salary spoken by kayal. Today joining (8Feb)', 36, '2021-02-04 06:11:59', 1),
(2899, 3134, 34, 7, 4, 'SELECTED', 59, '2021-02-04 07:45:13', 1),
(2900, 3148, 8, 2, 0, 'left before second round', 50, '0000-00-00 00:00:00', 1),
(2901, 3155, 8, 2, 0, 'left before second round', 50, '0000-00-00 00:00:00', 1),
(2902, 3181, 68, 5, 1, 'Not fit for insurance sales', 50, '0000-00-00 00:00:00', 1),
(2903, 3134, 53, 3, 0, 'having 9 yrs exp in the two-wheeler loan process, even field exp in 6 yrs. CTC 17k.', 34, '2021-02-05 12:32:08', 1),
(2904, 3182, 8, 3, 0, 'TH 25K with PFxxamp PT 28808 Gross', 50, '0000-00-00 00:00:00', 1),
(2905, 3182, 40, 4, 4, 'no sales exp/zero knowledge in local language and insurance..doubtful', 8, '2021-02-05 03:09:54', 1),
(2906, 3182, 18, 7, 4, 'Selected \nfor veben team. Need to negotiate salary and told he is ready to join in 15 Feb 2020', 40, '2021-02-05 06:06:09', 1),
(2907, 3014, 27, 5, 0, 'not ready to join', 27, '2021-02-05 06:25:08', 1),
(2908, 3066, 27, 5, 0, 'Couldnot completed the task.', 27, '2021-02-05 06:25:33', 1),
(2909, 3089, 27, 5, 0, 'Not Upto our level.', 27, '2021-02-05 06:25:55', 1),
(2910, 3059, 27, 5, 0, 'Task not completed.', 27, '2021-02-05 06:26:18', 1),
(2911, 3093, 27, 5, 0, 'task Not working properly.', 27, '2021-02-05 06:26:55', 1),
(2912, 3126, 27, 5, 0, 'Task not completed and no response from him.', 27, '2021-02-05 06:27:36', 1),
(2913, 3183, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(2914, 3193, 59, 5, 0, 'Not suitable for Sales', 50, '0000-00-00 00:00:00', 1),
(2915, 3195, 39, 5, 2, 'he will not suit for our process', 50, '0000-00-00 00:00:00', 1),
(2916, 3188, 59, 4, 0, 'Have Field Sales Exp, Can give a try for Insurance Sales', 50, '0000-00-00 00:00:00', 1),
(2917, 3196, 59, 5, 0, 'Sustainability Issue', 50, '0000-00-00 00:00:00', 1),
(2918, 3199, 59, 4, 0, 'Can Give a try for CRM ', 50, '0000-00-00 00:00:00', 1),
(2919, 3184, 27, 5, 0, 'He Knows only testing. Dont have a knowledge in MERN Stack.', 50, '0000-00-00 00:00:00', 1),
(2920, 3185, 27, 5, 0, 'Potential Candidate only. but she donxquott have an experience in Node and Express Js. she will learn and come back after 3 months.', 50, '0000-00-00 00:00:00', 1),
(2921, 3191, 59, 5, 0, 'Not suitable,Not strong in React,Mongo,Node', 50, '0000-00-00 00:00:00', 1),
(2922, 3201, 59, 5, 0, 'No Relevant Exp,will not sustain', 50, '0000-00-00 00:00:00', 1),
(2923, 3188, 29, 7, 2, 'selected for rm, shanmugam team, for salary pls refer resume', 59, '2021-02-06 04:06:31', 1),
(2924, 3199, 18, 7, 0, 'Need to negotiate salary ash her expectations are high but a decent candidate\n', 59, '2021-02-06 04:11:09', 1),
(2925, 3088, 8, 5, 0, 'no response will not join', 16, '2021-02-06 05:55:57', 1),
(2926, 3190, 27, 2, 0, 'Selected for Task Round. Task Given. He will complete and send back to us.', 60, '0000-00-00 00:00:00', 1),
(2927, 3156, 8, 3, 0, 'Candidate selected for Logesh Team 18kCTC ', 18, '2021-02-08 09:55:08', 1),
(2928, 3154, 59, 5, 0, 'Came for Internship and the Expectation is High', 50, '0000-00-00 00:00:00', 1),
(2929, 3208, 8, 5, 0, 'will not work under pressure and will not suite for esale/crm', 50, '0000-00-00 00:00:00', 1),
(2930, 3211, 8, 5, 0, 'fresher, not speaking up and will not suite for RM/CRM', 50, '0000-00-00 00:00:00', 1),
(2931, 3209, 8, 5, 0, 'not speaking up, looking for acc job. will not suite for rm/crm', 50, '0000-00-00 00:00:00', 1),
(2932, 3205, 8, 4, 3, 'check for rE. check with sustainability. fresher for us.', 50, '0000-00-00 00:00:00', 1),
(2933, 3213, 8, 5, 3, 'fresher and exp is 15k. will work if we offer 15k. her attitude will not suite for us.', 50, '0000-00-00 00:00:00', 1),
(2934, 3179, 8, 2, 0, 'left before 2nd round', 50, '0000-00-00 00:00:00', 1),
(2935, 3187, 8, 5, 0, 'Candidate will not join as he got another offer', 50, '0000-00-00 00:00:00', 1),
(2936, 3063, 8, 3, 0, 'For Guru Team, CTC 15790', 50, '0000-00-00 00:00:00', 1),
(2937, 3177, 27, 5, 0, 'She is not matching with our requirements.', 50, '0000-00-00 00:00:00', 1),
(2938, 3199, 8, 5, 0, 'Not open for the agreement. She agreed for 12k TH but not for the agreement', 18, '2021-02-08 12:13:13', 1),
(2939, 3210, 54, 2, 0, 'he joined as trainee.', 50, '0000-00-00 00:00:00', 1),
(2940, 3205, 16, 5, 0, 'sustain doubt', 8, '2021-02-08 01:12:09', 1),
(2941, 3187, 29, 7, 2, 'selected for rm, gkji team, refer resume for salary', 8, '2021-02-08 01:13:07', 1),
(2942, 3215, 39, 5, 2, 'Will not suitable for our profile', 7, '0000-00-00 00:00:00', 1),
(2943, 3063, 34, 7, 4, 'selected for next round', 8, '2021-02-08 01:36:31', 1),
(2944, 3188, 8, 3, 0, '22500 ctc with pf. for shanmugam team', 29, '2021-02-08 01:40:29', 1),
(2945, 3187, 8, 5, 0, 'Candidate will not join as he got another offer', 29, '2021-02-08 01:42:07', 1),
(2946, 3155, 8, 5, 0, 'exp high sal 15k . last sal is 10k but no sales exp.', 8, '2021-02-08 03:09:54', 1),
(2947, 3219, 59, 4, 0, 'No relevant Exp in Sales, Worked as a customer Service Executive. Can give a try for sales. Internal Team Reference', 50, '0000-00-00 00:00:00', 1),
(2948, 3148, 8, 5, 0, 'fresher, exp is 15k. left before 2nd round', 8, '2021-02-08 03:10:58', 1),
(2949, 2783, 8, 5, 0, 'will not join. hold more than 1month.', 8, '2021-02-08 03:11:35', 1),
(2950, 3100, 8, 5, 0, 'no response. will not join', 8, '2021-02-08 03:17:12', 1),
(2951, 3108, 8, 5, 0, 'no response will not join', 8, '2021-02-08 03:17:29', 1),
(2952, 3132, 8, 5, 0, 'no response. will not join', 8, '2021-02-08 03:18:07', 1),
(2953, 3219, 24, 4, 0, 'OK', 59, '2021-02-08 04:55:09', 1),
(2954, 3219, 22, 7, 0, 'candidate selected .. suthagar team 15k Take home.. wednesday joining ', 24, '2021-02-08 05:12:53', 1),
(2955, 3219, 8, 1, 0, NULL, 22, '2021-02-08 05:28:56', 1),
(2956, 3183, 27, 5, 0, 'Not completed the system task.', 27, '2021-02-08 07:03:51', 1),
(2957, 3224, 59, 4, 0, 'No voice Exp, Not much suitable for sales, but internal reference, kindly check this profile', 50, '0000-00-00 00:00:00', 1),
(2958, 3202, 27, 8, 0, 'He came office. but not attended the interview.', 50, '0000-00-00 00:00:00', 1),
(2959, 3223, 27, 2, 0, 'Task has to be given.', 50, '0000-00-00 00:00:00', 1),
(2960, 3131, 27, 2, 0, 'Task Given. He will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(2961, 3231, 59, 4, 0, 'No Relevant Exp in Insurance Sales, Check for RM handling HNI customers', 50, '0000-00-00 00:00:00', 1),
(2962, 3222, 68, 7, 0, 'Shortlisted', 50, '0000-00-00 00:00:00', 1),
(2963, 3222, 30, 7, 0, 'salary suggestion 22k ctc per month....kindly confirm joining by tmrw', 68, '2021-02-09 05:13:03', 1),
(2964, 3016, 60, 1, 0, NULL, 27, '2021-02-09 05:40:12', 1),
(2965, 3016, 27, 7, 0, 'Shortlisted. We can offer 10K.', 27, '2021-02-09 05:40:12', 1),
(2966, 3222, 8, 7, 0, 'Selected for Sanjeev Team,CTC 22k with PF PT', 30, '2021-02-09 05:41:14', 1),
(2967, 3222, 7, 1, 0, NULL, 8, '2021-02-09 05:42:35', 1),
(2968, 3224, 14, 5, 1, 'looking for non voice not suitable for voice process.', 59, '2021-02-09 05:56:11', 1),
(2969, 3226, 27, 5, 0, 'technically not good. Always telling i am not prepared well.', 50, '0000-00-00 00:00:00', 1),
(2970, 3225, 27, 5, 0, 'She donxquott have a good knowledge in technically.', 50, '0000-00-00 00:00:00', 1),
(2971, 3237, 56, 5, 0, 'hes not good for sales', 50, '0000-00-00 00:00:00', 1),
(2972, 3245, 59, 4, 0, 'No Exp in Sales, Just check his suitability', 50, '0000-00-00 00:00:00', 1),
(2973, 3246, 41, 4, 3, 'Check for RE', 50, '0000-00-00 00:00:00', 1),
(2974, 3182, 8, 3, 0, 'TH 25K with PFxxamp PT 28808 Gross', 18, '2021-02-10 11:43:23', 1),
(2975, 3063, 53, 7, 0, 'Selected for rE', 34, '2021-02-10 12:03:47', 1),
(2976, 3246, 53, 4, 0, 'Ok fr RE, hvng 2 yrs exp bt not in this field, he s flexible nd gud communication. take home 15k.', 41, '2021-02-10 12:15:29', 1),
(2977, 3247, 38, 7, 2, 'he will not suit for our process', 50, '0000-00-00 00:00:00', 1),
(2978, 3197, 41, 2, 3, 'nEED TO CHECK FOR 2ND ROUND', 50, '0000-00-00 00:00:00', 1),
(2979, 3248, 41, 4, 3, 'Check for RM', 50, '0000-00-00 00:00:00', 1),
(2980, 3249, 41, 5, 3, 'stammering can not speak continuously', 50, '0000-00-00 00:00:00', 1),
(2981, 3250, 41, 4, 3, 'Check for CRM', 50, '0000-00-00 00:00:00', 1),
(2982, 3246, 34, 7, 4, 'selected', 53, '2021-02-10 12:54:52', 1),
(2983, 3063, 8, 3, 0, 'For Guru Team, CTC 15790', 53, '2021-02-10 12:57:55', 1),
(2984, 3246, 8, 3, 0, 'CTC 15790', 34, '2021-02-10 02:59:58', 1),
(2985, 2523, 59, 8, 0, 'Candidate Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(2986, 3248, 29, 7, 2, 'selected for rm, shanmugam team', 41, '2021-02-10 03:16:01', 1),
(2987, 3252, 41, 4, 2, 'CHECK TO RE\nHE WILL ARRANGE BIKE', 50, '0000-00-00 00:00:00', 1),
(2988, 3252, 34, 7, 4, 'selected', 41, '2021-02-10 03:24:08', 1),
(2989, 3247, 8, 1, 0, NULL, 38, '2021-02-10 03:42:40', 1),
(2990, 3245, 16, 5, 0, 'no sustain doubt', 59, '2021-02-10 06:17:53', 1),
(2991, 3230, 27, 2, 0, 'She is Completed the Task. Task has to be reviewed.', 50, '0000-00-00 00:00:00', 1),
(2992, 3258, 59, 5, 0, 'Will not fit into Sales.Not suitable', 50, '0000-00-00 00:00:00', 1),
(2993, 3227, 27, 2, 0, 'Task Given. She will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(2994, 3261, 56, 4, 0, 'Selected for next round', 50, '0000-00-00 00:00:00', 1),
(2995, 3240, 59, 4, 0, 'No relevant Exp, Give a try for RE', 50, '0000-00-00 00:00:00', 1),
(2996, 2967, 59, 5, 0, 'Candidate will not sustain and looking much for semivoice only', 50, '0000-00-00 00:00:00', 1),
(2997, 3248, 8, 3, 0, '18K CTC with PF PT Deductions for Shanmugam Team', 29, '2021-02-11 01:21:05', 1),
(2998, 3261, 68, 7, 0, 'Selected', 56, '2021-02-11 01:21:06', 1),
(2999, 3264, 59, 4, 0, 'Having Exp in Loan Department, Check for RM handling HNI Customers ', 50, '0000-00-00 00:00:00', 1),
(3000, 3027, 27, 2, 0, 'Task Given. He is doing the task.', 50, '0000-00-00 00:00:00', 1),
(3001, 3240, 16, 5, 0, ' sustain doubt', 59, '2021-02-11 03:49:52', 1),
(3002, 3261, 8, 5, 0, 'Candidate Expectation is very high and seems not to be genuine', 68, '2021-02-11 04:02:37', 1),
(3003, 3264, 29, 5, 1, 'not fit', 59, '2021-02-11 04:27:51', 1),
(3004, 3231, 29, 5, 1, 'will not suit our profile', 59, '2021-02-11 05:13:00', 1),
(3005, 3250, 14, 7, 4, 'salary 10k need to confirm joining date \n', 41, '2021-02-12 09:48:26', 1),
(3006, 3229, 27, 5, 0, 'He is from the Dot Net Domin. He dont have a knowledge in MERN.', 50, '0000-00-00 00:00:00', 1),
(3007, 3252, 59, 3, 0, 'Candidate Selected for Guru Team, CTC 13000', 34, '2021-02-12 10:14:33', 1),
(3008, 3250, 59, 7, 0, 'Candidate Shortlisted for Priyanka Jeni,CTC 10550 ', 14, '2021-02-12 10:42:34', 1),
(3009, 3267, 59, 5, 0, 'No communication will not sustain', 50, '0000-00-00 00:00:00', 1),
(3010, 3259, 59, 5, 0, 'Will not Fit and sustain for our sales', 50, '0000-00-00 00:00:00', 1),
(3011, 3275, 59, 5, 0, 'Communication is Good No Relevant Insurance Exp, High CTC Expectation', 50, '0000-00-00 00:00:00', 1),
(3012, 3274, 59, 4, 0, 'No Exp in sales, Check for RE', 50, '0000-00-00 00:00:00', 1),
(3013, 3276, 59, 5, 0, 'Will Not Fit for MIS', 50, '0000-00-00 00:00:00', 1),
(3014, 3273, 59, 5, 0, 'No Relevant Exp, Expectation is high ', 50, '0000-00-00 00:00:00', 1),
(3015, 3277, 59, 5, 0, 'Will not fit for MIS ', 50, '0000-00-00 00:00:00', 1),
(3016, 3279, 59, 4, 0, 'Candidate Exp in Insurance/health. High Salary Exp', 50, '0000-00-00 00:00:00', 1),
(3017, 3281, 39, 5, 2, 'he will not handle pressure and he will not sustain', 50, '0000-00-00 00:00:00', 1),
(3018, 3250, 60, 1, 0, NULL, 59, '2021-02-12 02:44:36', 1),
(3019, 3274, 16, 5, 0, 'HE IS INTREST TELECALLNG MEAN ADMIN', 59, '2021-02-12 02:49:08', 1),
(3020, 3269, 59, 5, 0, 'No Relevant Exp in Sales', 50, '0000-00-00 00:00:00', 1),
(3021, 3279, 18, 5, 0, 'He is a decent candidate but for a startup channel he is not adequate. Can keep his resume for a backup for future additon for additional manager', 59, '2021-02-12 06:20:56', 1),
(3022, 3272, 27, 2, 0, 'Task Has to be given.', 50, '0000-00-00 00:00:00', 1),
(3023, 3283, 59, 5, 0, 'Not Much communicative', 50, '0000-00-00 00:00:00', 1),
(3024, 3288, 59, 5, 0, 'Will not Fit our CRM Sales', 50, '0000-00-00 00:00:00', 1),
(3025, 3291, 59, 5, 0, 'Not Much Communicative', 50, '0000-00-00 00:00:00', 1),
(3026, 3282, 59, 5, 0, 'Rejected by Keerthika, Will not Sustain', 50, '0000-00-00 00:00:00', 1),
(3027, 3293, 59, 5, 0, 'Location Constraint', 50, '0000-00-00 00:00:00', 1),
(3028, 3294, 41, 4, 0, 'CHECK FOR RE\nBUT NO BIKE', 50, '0000-00-00 00:00:00', 1),
(3029, 3295, 41, 4, 0, 'check for CRM', 50, '0000-00-00 00:00:00', 1),
(3030, 3262, 27, 5, 0, 'Attitude not good. ', 50, '0000-00-00 00:00:00', 1),
(3031, 3296, 41, 5, 0, 'Not fir for MIS', 50, '0000-00-00 00:00:00', 1),
(3032, 3297, 41, 5, 0, 'Not fir for MIS', 50, '0000-00-00 00:00:00', 1),
(3033, 3119, 27, 2, 0, 'task has to be given.', 60, '0000-00-00 00:00:00', 1),
(3034, 3298, 41, 5, 0, 'Not fir for MIS', 50, '0000-00-00 00:00:00', 1),
(3035, 3290, 41, 2, 2, 'HE WILL INFORM THE RECRUITER', 50, '0000-00-00 00:00:00', 1),
(3036, 3300, 59, 5, 0, 'No Exp in pPT,Not much exp in MIS Activities', 50, '0000-00-00 00:00:00', 1),
(3037, 3294, 53, 4, 0, 'Ok for RE. Thiyagu team, 13k Take home, pls cnfrm Joining', 41, '2021-02-13 02:40:28', 1),
(3038, 3295, 21, 4, 3, 'candidate ok need to check once sustainability..', 41, '2021-02-13 03:16:01', 1),
(3039, 2152, 59, 5, 0, 'Will not sustain much interested into Non Voice\n', 50, '0000-00-00 00:00:00', 1),
(3040, 3270, 59, 5, 0, 'Not Much Relevant Exp,Will not fit for our expectations', 50, '0000-00-00 00:00:00', 1),
(3041, 3295, 67, 5, 0, 'Candidate was suggested contract by HR which she was not interested. We(Dhivya xxamp I) asked her to get back for a discussion, she did not get back. ', 21, '2021-02-13 04:01:29', 1),
(3042, 3197, 41, 5, 0, 'not turned up', 41, '2021-02-13 04:34:15', 1),
(3043, 3289, 27, 2, 0, 'We are reviewing the sustainability. ', 50, '0000-00-00 00:00:00', 1),
(3044, 3239, 27, 5, 0, 'He is not interested with out company policy.', 50, '0000-00-00 00:00:00', 1),
(3045, 3306, 41, 5, 0, 'No relevant exp', 50, '0000-00-00 00:00:00', 1),
(3046, 3312, 39, 7, 3, 'she is selected as rM....Salary suggestion 30k', 50, '0000-00-00 00:00:00', 1),
(3047, 3315, 27, 2, 0, 'Dont have that much knowledge. we can consider as a intern because refered by JP.', 50, '0000-00-00 00:00:00', 1),
(3048, 3314, 41, 5, 0, 'Not at all speaking', 50, '0000-00-00 00:00:00', 1),
(3049, 3313, 41, 5, 0, 'Not at all speaking', 50, '0000-00-00 00:00:00', 1),
(3050, 3234, 27, 2, 0, 'Task Given. He needs 1 week time to complete.', 50, '0000-00-00 00:00:00', 1),
(3051, 3301, 27, 2, 0, 'Task Given. He needs 3 days to complete this process.', 50, '0000-00-00 00:00:00', 1),
(3052, 3242, 27, 5, 0, 'She donxquott have a basic knowledge.', 52, '0000-00-00 00:00:00', 1),
(3053, 3311, 41, 5, 0, 'Can not handle pressure will not sustain', 50, '0000-00-00 00:00:00', 1),
(3054, 3318, 41, 4, 0, 'check for 1 yr bond and LIC code, Check for RM', 50, '0000-00-00 00:00:00', 1),
(3055, 3316, 41, 4, 0, 'Check for RE', 50, '0000-00-00 00:00:00', 1),
(3056, 3317, 41, 5, 0, 'Not bold rejected by Keerthi', 50, '0000-00-00 00:00:00', 1),
(3057, 3312, 8, 5, 0, 'Expected 4.5 LPA We offer 4 LPA,but she got an offer for 4.5 LPA', 39, '2021-02-15 03:03:26', 1),
(3058, 3308, 41, 5, 0, 'No communication and proper Pronunciation will not suite for RM', 50, '0000-00-00 00:00:00', 1),
(3059, 3216, 59, 7, 0, '15K CTC in Patroniss', 50, '0000-00-00 00:00:00', 1),
(3060, 3290, 13, 5, 2, 'confident level very low so not suitable for telesales', 41, '2021-02-15 04:18:07', 1),
(3061, 3290, 41, 4, 0, 'Check for CRM xxamp Sustainability', 41, '2021-02-15 04:18:07', 1),
(3062, 3316, 16, 7, 0, 'candidate selected', 41, '2021-02-15 04:23:27', 1),
(3063, 3318, 44, 5, 1, 'Not fit for life sales', 41, '2021-02-15 04:24:43', 1),
(3064, 3294, 16, 7, 0, 'Candidate selected', 53, '2021-02-15 05:55:05', 1),
(3065, 3294, 59, 7, 0, 'CTC 13685 TH 13000', 16, '2021-02-15 06:19:07', 1),
(3066, 3316, 59, 7, 0, 'CTC 13685 xxamp TH 13K', 16, '2021-02-15 06:20:55', 1),
(3067, 3216, 34, 7, 4, 'selected', 59, '2021-02-16 09:39:19', 1),
(3068, 2157, 27, 7, 0, 'Task Completed. Selected through telephonic interview. we can offer 8k as a take home.', 60, '0000-00-00 00:00:00', 1),
(3069, 2157, 59, 3, 0, 'CTC 8K TH ,Will be trained in Mern Stack', 27, '2021-02-16 10:00:53', 1),
(3070, 3304, 27, 2, 0, 'Task given. he will complete and send back to us.', 50, '0000-00-00 00:00:00', 1),
(3071, 3326, 59, 5, 0, 'No communication, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3072, 3327, 27, 5, 0, 'He doesxquott have a knowledge in basics. even he is not answering for a freshers questions', 50, '0000-00-00 00:00:00', 1),
(3073, 3332, 59, 4, 0, 'Internal Reference,do check for RM but Expectation is High', 50, '0000-00-00 00:00:00', 1),
(3074, 3323, 59, 2, 0, 'candidate profile on hold as she needs to check for the agreement', 50, '0000-00-00 00:00:00', 1),
(3075, 3336, 59, 5, 0, 'Attended final round of discussion with Mahadevan-Axa and got rejected', 50, '0000-00-00 00:00:00', 1),
(3076, 3268, 27, 5, 0, 'He dont have that much knowledge for what he is expected. ', 50, '0000-00-00 00:00:00', 1),
(3077, 3340, 59, 5, 0, 'Candidate holds an offer with 3.5 LPA and looks for high Pay', 50, '0000-00-00 00:00:00', 1),
(3078, 3320, 41, 5, 0, 'From collection BG not interested in sales', 50, '0000-00-00 00:00:00', 1),
(3079, 3198, 41, 5, 0, 'From collection BG not interested in sales', 50, '0000-00-00 00:00:00', 1),
(3080, 3337, 59, 5, 0, 'Shortlisted and checked for CRM Appointment Fix - Keerthika team,But rejected ', 50, '0000-00-00 00:00:00', 1),
(3081, 3216, 53, 7, 0, 'sekected for RE. pls cnfrm the salary and DOJ', 34, '2021-02-16 04:34:56', 1),
(3082, 3333, 59, 4, 0, 'No relevant Sales Exp ,can try for RM', 50, '0000-00-00 00:00:00', 1),
(3083, 3324, 27, 5, 0, 'not good in basic level. he will not sustain.', 1, '0000-00-00 00:00:00', 1),
(3084, 3216, 59, 7, 0, '15K CTC in Patroniss', 53, '2021-02-16 05:22:23', 1),
(3085, 3216, 60, 1, 0, NULL, 59, '2021-02-16 05:26:53', 1),
(3086, 3294, 60, 1, 0, NULL, 59, '2021-02-16 05:36:25', 1),
(3087, 3316, 60, 1, 0, NULL, 59, '2021-02-16 05:38:00', 1),
(3088, 3333, 44, 5, 0, 'he is not looking life sales', 59, '2021-02-16 05:42:51', 1),
(3089, 3336, 18, 4, 0, 'Expected salary is high but can stick to 4.2. She is a good and positive candidate. Suitable for new channel. But sustainability is a bit doubtful. AXA Mahadevan will see her for a final round and convey the same to the candidate.', 59, '2021-02-16 05:43:46', 1),
(3090, 3332, 33, 5, 0, 'not sustainity in our system', 59, '2021-02-16 05:46:39', 1),
(3091, 3355, 59, 5, 0, 'Communication is ok ,only excel exp', 50, '0000-00-00 00:00:00', 1),
(3092, 3356, 59, 4, 0, 'Profile ok, Give a try for MIS but no PPT knowledge', 50, '0000-00-00 00:00:00', 1),
(3093, 3357, 59, 5, 0, 'Will not fit for our MIS', 50, '0000-00-00 00:00:00', 1),
(3094, 3349, 59, 5, 0, 'He already holds agent code for LIC and Star Health.Will hold this profile for future Use', 50, '0000-00-00 00:00:00', 1),
(3095, 3328, 59, 5, 0, 'Will not fit into Sales', 50, '0000-00-00 00:00:00', 1),
(3096, 3359, 41, 5, 0, 'Will not suite for mMIS profile', 50, '0000-00-00 00:00:00', 1),
(3097, 3360, 59, 4, 0, 'Profile is Good, Holds MIS Exp can train him in other areas', 50, '0000-00-00 00:00:00', 1),
(3098, 3363, 59, 5, 0, 'Not fit for MIS', 50, '0000-00-00 00:00:00', 1),
(3099, 3325, 59, 5, 0, 'No Relevant Exp. Will not fit for our sales profile', 50, '0000-00-00 00:00:00', 1),
(3100, 3362, 41, 4, 0, 'Check for Written Communication and Excel', 50, '0000-00-00 00:00:00', 1),
(3101, 3364, 41, 5, 0, 'Not interested with agreement ', 50, '0000-00-00 00:00:00', 1),
(3102, 3368, 59, 5, 0, 'Not much exp in MIS. Will not fit for our role', 50, '0000-00-00 00:00:00', 1),
(3103, 3365, 59, 5, 0, 'Only excel knowledge', 50, '0000-00-00 00:00:00', 1),
(3104, 3346, 59, 5, 0, 'High Expectations', 50, '0000-00-00 00:00:00', 1),
(3105, 3345, 27, 5, 0, 'He donxquott have a good knowledge in tech. distance too long. he is from kelambakkam. will not suit for us.', 50, '0000-00-00 00:00:00', 1),
(3106, 3373, 59, 2, 0, 'She needs to confirm on the Agreement.', 50, '0000-00-00 00:00:00', 1),
(3107, 3371, 59, 5, 0, 'Will not fit for Field sales. Sustainability issues', 50, '0000-00-00 00:00:00', 1),
(3108, 3356, 53, 5, 0, 'not suit fr MIS', 59, '2021-02-17 04:48:45', 1),
(3109, 3360, 53, 7, 0, 'Ok for MIS. Pls cnfrm sal nd DOJ', 59, '2021-02-17 04:55:10', 1),
(3110, 3362, 53, 5, 0, 'Nt suit fr MIS', 41, '2021-02-17 05:06:33', 1),
(3111, 3354, 59, 5, 0, 'No Relevant Sales Exp. High CTC Expectation', 50, '0000-00-00 00:00:00', 1),
(3112, 3360, 8, 5, 0, 'Salary Expectation i s very high and got another offer', 53, '2021-02-17 05:32:38', 1),
(3113, 3336, 59, 5, 0, 'Attended final round of discussion with Mahadevan-Axa and got rejected', 18, '2021-02-17 06:54:36', 1),
(3114, 3361, 59, 5, 0, 'Much exp in sales. looking for MIS but not much relevant', 50, '0000-00-00 00:00:00', 1),
(3115, 3375, 27, 2, 0, 'Task Given. She will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(3116, 3344, 27, 2, 0, 'Task Given. She Will Complete And Let Us Know.', 50, '0000-00-00 00:00:00', 1),
(3117, 3370, 27, 5, 0, 'She dont know the basics. She will learn and come after 1 week may be.', 50, '0000-00-00 00:00:00', 1),
(3118, 3385, 59, 5, 0, 'High CTC expectations.Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(3119, 3350, 59, 5, 0, 'Will not fit for our MIS', 50, '0000-00-00 00:00:00', 1),
(3120, 3386, 59, 5, 0, 'No Relevant Experience. Will not fit for our BDM', 50, '0000-00-00 00:00:00', 1),
(3121, 3387, 59, 5, 0, 'Sustainability issue.No relevant Exp', 50, '0000-00-00 00:00:00', 1),
(3122, 3353, 27, 5, 0, 'Notice period too long. He had experience in JAVA only. not in react. rejected by arun hR', 50, '0000-00-00 00:00:00', 1),
(3123, 3389, 59, 5, 0, 'Full Exp in VBA,will not sustain in MIS and high CTC', 50, '0000-00-00 00:00:00', 1),
(3124, 3392, 59, 5, 0, 'Only excel knowledge, not ready for agreement', 50, '0000-00-00 00:00:00', 1),
(3125, 3390, 59, 5, 0, 'No Communication, Not fit for MIS', 50, '0000-00-00 00:00:00', 1),
(3126, 3391, 59, 5, 0, 'CMA Inter. Focus in to CA will not sustain in MIS', 50, '0000-00-00 00:00:00', 1),
(3127, 3383, 59, 5, 0, 'Location too long.will not sustain', 60, '0000-00-00 00:00:00', 1),
(3128, 3395, 59, 5, 0, 'Candidate is having health issue(related to ear).Not ready for Agreement.', 50, '0000-00-00 00:00:00', 1),
(3129, 3397, 59, 4, 0, 'Profile ok, Check for MIS.', 50, '0000-00-00 00:00:00', 1),
(3130, 3401, 59, 4, 0, 'candidate have exp in relevant sales.Check for RM\n', 50, '0000-00-00 00:00:00', 1),
(3131, 3399, 59, 5, 0, 'High CTC Exp.', 50, '0000-00-00 00:00:00', 1),
(3132, 3271, 27, 2, 0, 'need to discuss with gs and update.', 50, '0000-00-00 00:00:00', 1),
(3133, 3352, 27, 5, 0, 'could not meet our expectation.', 50, '0000-00-00 00:00:00', 1),
(3134, 3367, 27, 2, 0, 'Will discuss with gs and update.', 50, '0000-00-00 00:00:00', 1),
(3135, 3402, 59, 4, 0, 'Candidate is ok, based on CTC ready to sign the service Agreement', 50, '0000-00-00 00:00:00', 1),
(3136, 3405, 68, 5, 2, '....', 50, '0000-00-00 00:00:00', 1),
(3137, 3403, 38, 5, 0, 'she is expecting high salary....she will not sustain for long term...she is too far from our office location...', 50, '0000-00-00 00:00:00', 1),
(3138, 3406, 38, 5, 0, 'she will not suit for our process....she is expecting 20k salary and she will not handle pressure....', 50, '0000-00-00 00:00:00', 1),
(3139, 3393, 41, 5, 0, 'Will not be suitable for sales', 50, '0000-00-00 00:00:00', 1),
(3140, 3411, 41, 4, 0, 'Check for CRM', 50, '0000-00-00 00:00:00', 1),
(3141, 3409, 59, 4, 0, 'Have Sales exp, give a try for RE', 50, '0000-00-00 00:00:00', 1),
(3142, 3377, 27, 5, 0, 'Technically not good.', 50, '0000-00-00 00:00:00', 1),
(3143, 3347, 27, 5, 0, 'Not good in technical.', 50, '0000-00-00 00:00:00', 1),
(3144, 3400, 59, 4, 0, 'No Relevant Sales Exp,but we can try for RM Sales', 50, '0000-00-00 00:00:00', 1),
(3145, 3400, 36, 4, 4, 'Selected for RM', 59, '2021-02-19 04:25:05', 1),
(3146, 3409, 17, 4, 3, 'Need to check sustainability and package ', 59, '2021-02-19 04:25:29', 1),
(3147, 3397, 53, 5, 0, 'Candidate is handicapped, will not be able to handle our role', 59, '2021-02-19 04:26:18', 1),
(3148, 3393, 41, 5, 0, 'Will not be suitable for sales', 41, '2021-02-19 04:27:19', 1),
(3149, 3401, 44, 4, 3, 'Ji candidate ok and need your opinion', 59, '2021-02-19 04:28:01', 1),
(3150, 3402, 53, 5, 0, 'Not interested in agreement', 59, '2021-02-19 04:29:03', 1),
(3151, 3400, 18, 7, 4, 'Shortliste to lokesh team. Expected salary is 25k but can finish in 22k. Can Join on Monday \n', 36, '2021-02-19 04:41:31', 1),
(3152, 3400, 8, 3, 0, '23000 TH with PF xxamp PT 26808 Gross', 18, '2021-02-19 07:12:08', 1),
(3153, 3418, 69, 4, 0, 'sELECTED AS INTERN WITH STIPEND 3000 FOR CONTENT WRITTING.', 50, '0000-00-00 00:00:00', 1),
(3154, 3412, 59, 5, 0, 'No relevant Exp.Medical Billing Exp not interested in field sales', 50, '0000-00-00 00:00:00', 1),
(3155, 3409, 53, 7, 0, 'Candidate is ok,Selected for RE Ramesh Team\n', 17, '2021-02-20 11:08:47', 1),
(3156, 3424, 59, 4, 0, 'Candidate is ok will come on monday(22-feb) for next round of discussion', 50, '0000-00-00 00:00:00', 1),
(3157, 3417, 69, 5, 0, 'lESS VERBAL SKILLS', 50, '0000-00-00 00:00:00', 1),
(3158, 3422, 59, 4, 0, 'Candidate have exp in Sales. Check for RM. Expected Salary is high', 50, '0000-00-00 00:00:00', 1),
(3159, 3427, 59, 2, 0, 'Need to confirm on the agreement, No relevant field but into sales.Doubful on the sustainability', 50, '0000-00-00 00:00:00', 1),
(3160, 3426, 59, 5, 0, 'Only Excel Exp,no communication as expected. Will not fit for our role', 50, '0000-00-00 00:00:00', 1),
(3161, 3374, 41, 4, 0, 'check once before Sending for further rounds', 50, '0000-00-00 00:00:00', 1),
(3162, 3428, 41, 5, 0, 'will not sustain', 50, '0000-00-00 00:00:00', 1),
(3163, 3429, 41, 5, 0, 'will not sustain', 50, '0000-00-00 00:00:00', 1),
(3164, 3431, 59, 5, 0, 'Will not fit for our sales profile', 50, '0000-00-00 00:00:00', 1),
(3165, 3415, 27, 5, 0, 'Technically not good.', 50, '0000-00-00 00:00:00', 1),
(3166, 3369, 41, 5, 0, 'Will not suite for sales', 50, '0000-00-00 00:00:00', 1),
(3167, 3433, 41, 5, 0, 'can not handle pressure', 50, '0000-00-00 00:00:00', 1),
(3168, 3409, 8, 3, 0, '18K CTC 17100 TH in Patroniss for Ramesh Arumbakkam', 53, '2021-02-20 01:58:40', 1),
(3169, 3424, 53, 5, 0, 'No proper communication, having 10 yrs experience but he dont have tht much of knowledge', 59, '2021-02-20 03:37:19', 1),
(3170, 3422, 31, 5, 3, 'Candidates expectation is high on package', 59, '2021-02-20 03:39:04', 1),
(3171, 3418, 59, 3, 0, 'Selected as a Intern for 1 month', 69, '2021-02-20 04:21:49', 1),
(3172, 3319, 59, 5, 0, 'Not open for agreement. High CTC expectation', 60, '0000-00-00 00:00:00', 1),
(3173, 3414, 59, 2, 0, 'Task Should be given. Based on the work will decide later', 60, '0000-00-00 00:00:00', 1),
(3174, 3374, 59, 4, 0, 'Check for RM as well for BDM(HNI)', 41, '2021-02-20 04:45:01', 1),
(3175, 3411, 53, 4, 0, 'Shortlist. documents pending', 41, '2021-02-20 04:48:27', 1),
(3176, 3374, 53, 5, 0, 'Not suit for HNI client process', 59, '2021-02-20 04:51:03', 1),
(3177, 3423, 59, 4, 0, 'Candidate is ok, check for CRM Parkavi Team', 50, '0000-00-00 00:00:00', 1),
(3178, 3411, 59, 4, 0, 'Candidate is ok, Check for CRM Appointment Fixing', 53, '2021-02-22 10:05:14', 1),
(3179, 3394, 59, 5, 0, 'High CTC expectation, holding an offer', 50, '0000-00-00 00:00:00', 1),
(3180, 3439, 41, 5, 0, 'not at all a relevant profile', 50, '0000-00-00 00:00:00', 1),
(3181, 3265, 41, 5, 0, 'Will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(3182, 3447, 41, 5, 0, 'false information completely', 50, '0000-00-00 00:00:00', 1),
(3183, 3432, 41, 5, 0, 'Not at all a relevant profile', 50, '0000-00-00 00:00:00', 1),
(3184, 3445, 59, 5, 0, 'Location constraint, Fresher profile, not interested in sales. No exp in System Admin', 50, '0000-00-00 00:00:00', 1),
(3185, 3440, 59, 5, 0, 'have exp in Loan and collection, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3186, 3446, 59, 5, 0, 'Communication better, Location constraint', 50, '0000-00-00 00:00:00', 1),
(3187, 3441, 69, 4, 0, 'Good candidate, should check for 3 months internship and Onboarding the candidate.', 50, '0000-00-00 00:00:00', 1),
(3188, 3438, 59, 4, 0, 'Exp in Bank-handling Insurance sales also, check for RM', 50, '0000-00-00 00:00:00', 1),
(3189, 3450, 59, 5, 0, 'Average Communication, not much in PPT. Will not fit for our MIS positions', 50, '0000-00-00 00:00:00', 1),
(3190, 3452, 39, 5, 1, 'he will not suit for our process', 50, '0000-00-00 00:00:00', 1),
(3191, 3453, 39, 5, 1, 'he will not suit for our field\n', 50, '0000-00-00 00:00:00', 1),
(3192, 3444, 59, 5, 0, 'Not much knowledge in React, Sustainability Doubt', 50, '0000-00-00 00:00:00', 1),
(3193, 3451, 59, 5, 0, 'Will not fit for our role, looking for internship ', 50, '0000-00-00 00:00:00', 1),
(3194, 3438, 44, 5, 0, 'He is not fit for life sales', 59, '2021-02-22 05:32:26', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(3195, 3441, 59, 5, 0, 'Candidate is looking for a month Internship, His focus in on the Air Force Job. Doubtful on onboarding', 69, '2021-02-22 06:58:38', 1),
(3196, 3411, 18, 7, 0, 'Shortlisted for CRM Expected salary is high but can negotiate and told to increase after 3 months after seeing perfomance. Ready to join immedeatly', 59, '2021-02-22 07:11:36', 1),
(3197, 3423, 29, 5, 0, 'SHE IS NOT INTERESTED FOR TELECALLING', 59, '2021-02-22 07:13:47', 1),
(3198, 3401, 29, 7, 2, 'RM, shanmugam team, salary mentioned in resume', 44, '2021-02-22 07:23:32', 1),
(3199, 3421, 27, 5, 0, 'Looking forward only for Hike. He will not sustain. rejected by arun', 60, '0000-00-00 00:00:00', 1),
(3200, 3465, 59, 5, 0, 'Checked for System Admin-Rejected by surendar', 60, '0000-00-00 00:00:00', 1),
(3201, 3470, 59, 4, 0, 'check for CRM-Keerthika team', 60, '0000-00-00 00:00:00', 1),
(3202, 3436, 27, 5, 0, 'Technically not good. rejected by latha', 60, '0000-00-00 00:00:00', 1),
(3203, 3472, 59, 5, 0, 'Will not fit for our MIS Role', 60, '0000-00-00 00:00:00', 1),
(3204, 3478, 59, 4, 0, 'Good in Communication, having ability to learn. suit for our MIS role', 60, '0000-00-00 00:00:00', 1),
(3205, 3475, 59, 5, 0, 'Got selected for MIS Role,we offered 22k TH with Patroniss,but he was not ready to sign the agreement with documents submitting', 60, '0000-00-00 00:00:00', 1),
(3206, 3469, 59, 2, 0, 'Shortlisted for Telecaller,but left without attending the second level interview', 60, '0000-00-00 00:00:00', 1),
(3207, 3456, 59, 4, 0, 'No experience in Sales,Fresher profile check for RE\n', 60, '0000-00-00 00:00:00', 1),
(3208, 3455, 69, 4, 0, 'Check for digital marketing internship', 52, '0000-00-00 00:00:00', 1),
(3209, 3456, 16, 5, 0, 'IMMATURED ,AND SUSTAIN ALSO DOUBT', 59, '2021-02-23 05:32:34', 1),
(3210, 3475, 53, 7, 0, 'shortlisted for MIS. pls cnfrm sal and DOJ', 59, '2021-02-23 05:40:14', 1),
(3211, 3478, 53, 2, 0, 'hold for MIS', 59, '2021-02-23 05:41:04', 1),
(3212, 3458, 59, 5, 0, 'Communication is not upto the mark.Will not fit for our role', 60, '0000-00-00 00:00:00', 1),
(3213, 3463, 59, 4, 0, 'Check for MIS Role,Good in Communication but not much relevant in Exp', 60, '0000-00-00 00:00:00', 1),
(3214, 3455, 59, 2, 0, 'Task has been given by Reyaz,based on the task will decide on the profile', 69, '2021-02-23 05:46:30', 1),
(3215, 3463, 53, 5, 0, 'not suit for MIS', 59, '2021-02-23 05:49:01', 1),
(3216, 3470, 44, 5, 0, 'She is not fit for CRM and Expecting High salary ', 59, '2021-02-23 05:49:44', 1),
(3217, 3475, 59, 5, 0, 'Got selected for MIS Role,we offered 22k TH with Patroniss,but he was not ready to sign the agreement with documents submitting', 53, '2021-02-23 06:22:47', 1),
(3218, 3476, 27, 5, 0, 'not good in technical. rejected by gs.', 50, '0000-00-00 00:00:00', 1),
(3219, 3483, 27, 2, 0, '3 month as a intern. after internship 2.6 years service agreement. if no one is not good we can proceed him.', 50, '0000-00-00 00:00:00', 1),
(3220, 3454, 27, 5, 0, 'Looking for salary. he knows UI part alone.', 50, '0000-00-00 00:00:00', 1),
(3221, 3473, 59, 5, 0, 'have exp in front office. Will not fit for our MIS role', 50, '0000-00-00 00:00:00', 1),
(3222, 3482, 59, 5, 0, 'Not open for agreement', 50, '0000-00-00 00:00:00', 1),
(3223, 3484, 59, 5, 0, 'Worked as a professor, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3224, 3479, 69, 2, 0, 'Candidate is okay, can consider if no other Choice.', 50, '0000-00-00 00:00:00', 1),
(3225, 3477, 69, 5, 0, 'not suitable for our Organization culture.', 50, '0000-00-00 00:00:00', 1),
(3226, 3490, 69, 5, 0, 'Not Suitable For Our Organization Culture.', 50, '0000-00-00 00:00:00', 1),
(3227, 3287, 27, 2, 0, 'Task has to be given.', 50, '0000-00-00 00:00:00', 1),
(3228, 3342, 59, 5, 0, 'Will not fit for our sales,sustainability Issue', 50, '0000-00-00 00:00:00', 1),
(3229, 3491, 59, 3, 0, '17K CTC in patroniss for Thiyagu Team with Service Agreement for 1 year', 50, '0000-00-00 00:00:00', 1),
(3230, 3437, 69, 5, 0, 'Candidate not okay with service agreement.', 50, '0000-00-00 00:00:00', 1),
(3231, 3401, 8, 3, 0, 'Selected for RM - Shanmugam Team/25K TH Patroniss Gross 26316', 29, '2021-02-24 01:36:43', 1),
(3232, 3461, 69, 5, 0, 'Attitude issue, wont sustain for a long time', 50, '0000-00-00 00:00:00', 1),
(3233, 3502, 30, 4, 4, 'confirm her salary ctc and other Formalities ', 50, '0000-00-00 00:00:00', 1),
(3234, 3487, 59, 5, 0, 'High CTC Expectation.', 50, '0000-00-00 00:00:00', 1),
(3235, 3501, 59, 5, 0, 'No Sales experience', 50, '0000-00-00 00:00:00', 1),
(3236, 3411, 8, 5, 0, 'will not join. couldnt share payslip and relieving', 18, '2021-02-24 03:19:06', 1),
(3237, 3491, 16, 7, 0, 'Selected the Candidate', 59, '2021-02-24 05:25:05', 1),
(3238, 3496, 69, 5, 0, 'Candidate lacks basic knowledge on SEO.', 50, '0000-00-00 00:00:00', 1),
(3239, 3500, 59, 5, 0, 'Internal Reference for RE, Not open up.Will not fit for RE', 50, '0000-00-00 00:00:00', 1),
(3240, 3499, 59, 5, 0, 'Internal reference for RE,Not open for Field Sales will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3241, 3437, 41, 4, 0, 'Ok for Internship', 69, '2021-02-24 06:02:35', 1),
(3242, 3491, 59, 3, 0, '17K CTC in patroniss for Thiyagu Team with Service Agreement for 1 year', 16, '2021-02-24 06:05:40', 1),
(3243, 3479, 69, 2, 0, 'Candidate is okay, need to look for some more candidates', 69, '2021-02-24 06:07:45', 1),
(3244, 3506, 69, 5, 0, 'Less technical knowledge', 50, '0000-00-00 00:00:00', 1),
(3245, 3512, 59, 5, 0, 'Not much communicative, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3246, 3504, 27, 5, 0, 'she is not okay with our policy.', 50, '0000-00-00 00:00:00', 1),
(3247, 3511, 59, 5, 0, 'Not interested in sales', 50, '0000-00-00 00:00:00', 1),
(3248, 3503, 59, 2, 0, 'Candidate need time to decide on the offer. will give the confirmation on 01-Mar-2021', 50, '0000-00-00 00:00:00', 1),
(3249, 3515, 59, 5, 0, 'No communication, will not get fit for our MIS openings ', 50, '0000-00-00 00:00:00', 1),
(3250, 3503, 13, 4, 4, 'ok, but candidate joining date will be confirmed on Monday.', 59, '2021-02-25 01:33:57', 1),
(3251, 3520, 59, 4, 0, 'Check for RE,no relevant Exp.Have exp in Credit card sales\n', 50, '0000-00-00 00:00:00', 1),
(3252, 3503, 59, 2, 0, 'Candidate need time to decide on the offer. will give the confirmation on 01-Mar-2021', 13, '2021-02-25 04:01:13', 1),
(3253, 3520, 16, 5, 0, 'sustain doubt,zero sales skiils', 59, '2021-02-25 04:50:53', 1),
(3254, 3373, 59, 5, 0, 'She didnt confirm on the Agreement.Overall her profile will not get matched with our MIS Role\n', 59, '2021-02-25 04:55:51', 1),
(3255, 3469, 59, 5, 0, 'Candidate selected for CRM, but left without attending the 2nd level interview', 59, '2021-02-25 05:20:02', 1),
(3256, 3414, 59, 5, 0, 'candidate was not able to do the task', 59, '2021-02-25 05:22:26', 1),
(3257, 3527, 59, 5, 0, 'Not interested in sales', 50, '0000-00-00 00:00:00', 1),
(3258, 3529, 59, 5, 0, 'Will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3259, 3535, 69, 5, 0, 'Didnxquott have any blogs to prove Interest in Digital marketing.', 50, '0000-00-00 00:00:00', 1),
(3260, 3531, 59, 5, 0, 'Having exp in hotel industry as Captain,branch Manager. Sustainability issue and will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3261, 3524, 27, 2, 0, 'Task has to be checked by gs.', 50, '0000-00-00 00:00:00', 1),
(3262, 3523, 27, 5, 0, 'He is not okay with our policy.', 50, '0000-00-00 00:00:00', 1),
(3263, 3532, 59, 5, 0, 'Sustainability Issue, ', 50, '0000-00-00 00:00:00', 1),
(3264, 3528, 41, 5, 0, 'Not interested in field sales', 50, '0000-00-00 00:00:00', 1),
(3265, 3536, 59, 5, 0, 'Not interested for Field sales and High CTC expectation for CRM', 50, '0000-00-00 00:00:00', 1),
(3266, 2469, 41, 4, 0, 'Check sustainability ', 50, '0000-00-00 00:00:00', 1),
(3267, 3534, 41, 5, 0, 'Age-37, no exp in field sales, not a long runner', 50, '0000-00-00 00:00:00', 1),
(3268, 3538, 59, 4, 0, 'Have Exp in HDFC Loan, Check for RM.', 50, '0000-00-00 00:00:00', 1),
(3269, 3542, 59, 5, 0, 'Candidate Exp is high for CRM role,not open for field sales', 50, '0000-00-00 00:00:00', 1),
(3270, 3541, 68, 5, 1, '....', 50, '0000-00-00 00:00:00', 1),
(3271, 3539, 59, 5, 0, 'Candidate is not open for field sales,holding many offer related to insurance sales and looking for many ', 50, '0000-00-00 00:00:00', 1),
(3272, 3537, 41, 5, 0, 'Long distance,not willing for agreement', 50, '0000-00-00 00:00:00', 1),
(3273, 3519, 41, 5, 0, 'False info', 50, '0000-00-00 00:00:00', 1),
(3274, 3543, 59, 4, 0, 'No Relevant Sales Exp, Communication is good. check for BDM', 50, '0000-00-00 00:00:00', 1),
(3275, 3459, 27, 5, 0, 'He is looking only for salary. he will not sustain.', 50, '0000-00-00 00:00:00', 1),
(3276, 3538, 31, 9, 0, 'Please check for elite', 59, '2021-02-26 03:04:26', 1),
(3277, 2742, 68, 7, 4, 'Asking salary for 23k in hand. ', 50, '0000-00-00 00:00:00', 1),
(3278, 3543, 29, 5, 0, 'no Relevance experience, his preference for IT job, need higher package more than 40k', 59, '2021-02-26 03:14:59', 1),
(3279, 2742, 59, 3, 0, 'Selected for sanjeev - Bangalore team 25000 Gross with PF xxamp PT', 68, '2021-02-26 04:26:14', 1),
(3280, 3455, 59, 5, 0, 'Will not fit for our content writer position', 59, '2021-02-26 04:53:15', 1),
(3281, 3427, 59, 5, 0, 'Not open for agreement', 59, '2021-02-26 04:54:32', 1),
(3282, 2469, 59, 5, 0, 'sustainability doubt, For CRM high CTC expectation', 41, '2021-02-26 05:10:18', 1),
(3283, 3437, 69, 5, 0, 'Candidate not okay with service agreement.', 41, '2021-02-26 05:10:37', 1),
(3284, 3318, 29, 5, 1, 'not fit for any profile', 59, '2021-02-26 05:28:33', 1),
(3285, 3323, 59, 5, 0, 'Not open for Agreement, Will not sustain for our sales', 59, '2021-02-26 06:12:51', 1),
(3286, 3179, 8, 5, 0, 'Left without attending the 2nd round of interview', 8, '2021-02-26 06:48:52', 1),
(3287, 3538, 60, 1, 0, NULL, 31, '2021-02-26 06:56:21', 1),
(3288, 3549, 59, 5, 0, 'High Experienced profile.Will not get fit for our MIS role.Age around 40', 60, '0000-00-00 00:00:00', 1),
(3289, 3555, 59, 5, 0, 'Not open for service Agreement, an Attitude issue and not fit for our MIS role', 60, '0000-00-00 00:00:00', 1),
(3290, 3530, 59, 5, 0, 'No open for agreement, very high CTC Expectation and sustainability issue', 60, '0000-00-00 00:00:00', 1),
(3291, 3443, 27, 2, 0, 'He will learn and come back after 1 week.', 60, '0000-00-00 00:00:00', 1),
(3292, 3558, 59, 7, 0, 'Selected for Thiyagu Team,CTC - 2,04,000 with Gross - 17000 xxamp TH - 16150', 60, '0000-00-00 00:00:00', 1),
(3293, 3559, 59, 5, 0, 'Candidate is ok,checked for Esale by Karthika and got rejected', 60, '0000-00-00 00:00:00', 1),
(3294, 3516, 27, 5, 0, 'Will not suitable for us.', 60, '0000-00-00 00:00:00', 1),
(3295, 3554, 59, 5, 0, 'Sustainability issue, No relevant Exp', 60, '0000-00-00 00:00:00', 1),
(3296, 3545, 69, 5, 0, 'No Relevant experience.', 60, '0000-00-00 00:00:00', 1),
(3297, 3563, 27, 5, 0, 'Dont have a basic knowledge. rejected by latha', 60, '0000-00-00 00:00:00', 1),
(3298, 3564, 59, 5, 0, 'Not open for Insurance Sales.Sustainability issue', 60, '0000-00-00 00:00:00', 1),
(3299, 3558, 16, 2, 0, 'waiting for salary conformation', 59, '2021-02-27 04:29:35', 1),
(3300, 3507, 27, 2, 0, 'Task Given. he will complete and let us know.', 50, '0000-00-00 00:00:00', 1),
(3301, 3548, 59, 5, 0, 'Not much exp in customer handling.Expectation is high and will not fit for our MIS role', 50, '0000-00-00 00:00:00', 1),
(3302, 3571, 69, 5, 0, 'Candidate has less verbal skills and not good for long-term.', 50, '0000-00-00 00:00:00', 1),
(3303, 3572, 69, 5, 0, 'Candidate Has Less Verbal Skills And Not Good For Long-Term.', 50, '0000-00-00 00:00:00', 1),
(3304, 3579, 59, 5, 0, 'Will not sustain and the expectation is high for Telecaller', 50, '0000-00-00 00:00:00', 1),
(3305, 3561, 59, 5, 0, 'No Communication as we expected for MIS', 50, '0000-00-00 00:00:00', 1),
(3306, 3585, 59, 4, 0, 'Check for RE, No relevant Exp, he is much into order taking in the field', 50, '0000-00-00 00:00:00', 1),
(3307, 3565, 41, 5, 0, 'Will not suite for Co Coordinator MIS', 50, '0000-00-00 00:00:00', 1),
(3308, 3587, 59, 4, 0, 'Good in Communication, No local language, Looking for sales openings', 50, '0000-00-00 00:00:00', 1),
(3309, 3583, 59, 5, 0, 'Not open up, no communication. Will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3310, 3584, 59, 4, 0, 'Check for CRM, Communication ok, Need of Job', 50, '0000-00-00 00:00:00', 1),
(3311, 3589, 59, 5, 0, 'He was not clear in his position focussed. Just in need of money looking for a job', 50, '0000-00-00 00:00:00', 1),
(3312, 3574, 41, 4, 0, 'Communication and convincing good, check sustainability (BOND) and salary', 50, '0000-00-00 00:00:00', 1),
(3313, 3588, 59, 5, 0, 'Not much communicative, will not fit for our CRM sales', 50, '0000-00-00 00:00:00', 1),
(3314, 3046, 27, 5, 0, 'Donxquott get any response.', 27, '2021-03-01 01:00:37', 1),
(3315, 3551, 59, 5, 0, 'Have Exp only in the documentation, no Excel PPT experience. Much focus on the Documentation process', 50, '0000-00-00 00:00:00', 1),
(3316, 3568, 59, 2, 0, 'No relevant Exp in Mern, fresher, Holding Testing certificate.I Will send the Link he developed, based on that will schedule for next level ', 50, '0000-00-00 00:00:00', 1),
(3317, 3560, 59, 5, 0, 'Not much good in communication. have the only exp in Excel', 50, '0000-00-00 00:00:00', 1),
(3318, 3590, 59, 5, 0, 'Will not fit for our MIS Coordinator,Communication is not that much ok', 50, '0000-00-00 00:00:00', 1),
(3319, 3574, 59, 4, 0, 'Good in Communication, He is ok for a 1 yr bond and the expected salary is high. Do check for MIS Coordinator Role', 41, '2021-03-01 04:46:22', 1),
(3320, 3574, 53, 4, 0, 'Pls check for MIS', 59, '2021-03-01 05:23:11', 1),
(3321, 3577, 59, 5, 0, 'Not much communicative, will not fit for our sales', 50, '0000-00-00 00:00:00', 1),
(3322, 3585, 57, 5, 0, 'he is not ok for voice process .. pronunciation is not clear ', 59, '2021-03-01 05:32:24', 1),
(3323, 3584, 13, 5, 2, 'Convincing Skills very low so not fit for Telesales', 59, '2021-03-01 05:35:31', 1),
(3324, 3587, 29, 5, 1, 'will not fit', 59, '2021-03-01 05:38:57', 1),
(3325, 3013, 27, 5, 0, 'task not completed.', 27, '2021-03-01 05:53:39', 1),
(3326, 3027, 27, 5, 0, 'Task Not Completed.', 27, '2021-03-01 05:53:46', 1),
(3327, 3190, 27, 5, 0, 'Task Not Completed.', 27, '2021-03-01 05:53:58', 1),
(3328, 3304, 27, 5, 0, 'Task Not Completed.', 27, '2021-03-01 05:54:09', 1),
(3329, 3289, 27, 5, 0, 'He is not suitable for us.', 27, '2021-03-01 05:55:13', 1),
(3330, 3524, 27, 5, 0, 'Task Not Completed.', 27, '2021-03-01 05:57:20', 1),
(3331, 3595, 8, 5, 0, 'Communication is not good. dont have that much knowledge in excel and ppt.', 50, '0000-00-00 00:00:00', 1),
(3332, 3603, 8, 4, 0, 'check for MIS. avg communication and exp 3l.', 50, '0000-00-00 00:00:00', 1),
(3333, 3596, 8, 4, 0, 'check for MIS. oral comm is good and has exp in handling vendor.', 50, '0000-00-00 00:00:00', 1),
(3334, 3602, 8, 5, 0, 'communication is not good and has only 6 months exp in backend. doesnt have that much knowledge in excel and PPT', 50, '0000-00-00 00:00:00', 1),
(3335, 3604, 8, 5, 3, 'father is working in LIC and exp sal is 18k+. will not sustain.', 50, '0000-00-00 00:00:00', 1),
(3336, 3594, 59, 5, 0, 'Not much exp in MIS activities, Communication is not up to the mark as we expected. High Exp and the expectation is high.', 50, '0000-00-00 00:00:00', 1),
(3337, 3597, 8, 5, 0, 'fresher with avg communication, no clarity in speech and will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(3338, 3605, 8, 2, 0, 'need to discuss about bond.', 50, '0000-00-00 00:00:00', 1),
(3339, 3606, 59, 5, 0, 'Internal Reference, Not much active will not sustain for our sales', 50, '0000-00-00 00:00:00', 1),
(3340, 3607, 8, 4, 3, 'has around 8yr exp in salaes. sal exp is 33k+. not interested in agency. check for RM.', 50, '0000-00-00 00:00:00', 1),
(3341, 3608, 59, 5, 0, 'Not open for the agreement, Interest towards BPO', 50, '0000-00-00 00:00:00', 1),
(3342, 3607, 59, 5, 0, 'No relevant Exp, only 6 months initial exp in Shriram Insurance, Jumped another job due to pressure. Will not sustain', 8, '2021-03-02 01:18:00', 1),
(3343, 3603, 59, 2, 0, 'Communication is average,Min exp is 21KTH but not up to the mark as we expected', 8, '2021-03-02 01:30:02', 1),
(3344, 3596, 59, 5, 0, 'Sustainability doubt in this field, her focus is much into Accounts/Admin', 8, '2021-03-02 01:32:53', 1),
(3345, 3601, 8, 5, 0, 'looking for 3.5l. sal package doesnt match', 50, '0000-00-00 00:00:00', 1),
(3346, 3574, 54, 5, 0, 'He will not sustain', 53, '2021-03-03 10:30:39', 1),
(3347, 3609, 8, 5, 0, 'no language and will not suite for MIS', 50, '0000-00-00 00:00:00', 1),
(3348, 3592, 69, 2, 0, 'high salary expectation, hence holding him for 2 days.', 50, '0000-00-00 00:00:00', 1),
(3349, 3580, 59, 3, 0, '11K CTC,10450 TH for Muthu team', 50, '0000-00-00 00:00:00', 1),
(3350, 3623, 8, 3, 0, 'For Veben Team,CTC - 2,61,696 With Monthly Gross - 21808 xxamp TH - 18000 ', 50, '0000-00-00 00:00:00', 1),
(3351, 3624, 8, 5, 0, 'will not join', 50, '0000-00-00 00:00:00', 1),
(3352, 3612, 59, 5, 0, 'Location constraint.No Bike for CRM package need to check with family\n', 50, '0000-00-00 00:00:00', 1),
(3353, 3601, 8, 5, 0, 'looking for 3.5l. sal package doesnt match', 8, '2021-03-03 01:38:10', 1),
(3354, 3624, 29, 7, 2, 'selected for rm, shanmugam team', 8, '2021-03-03 01:41:38', 1),
(3355, 3623, 33, 4, 3, 'Candidate has rejected because of health issues ', 8, '2021-03-03 01:44:19', 1),
(3356, 3553, 59, 5, 0, 'No local language, the expectation is high.Not much exp in MIS\n', 50, '0000-00-00 00:00:00', 1),
(3357, 3627, 8, 4, 0, 'check for MIS. good communication and communicating. ', 50, '0000-00-00 00:00:00', 1),
(3358, 3628, 8, 5, 0, 'language is not good and salary exp is 4L+.', 50, '0000-00-00 00:00:00', 1),
(3359, 3546, 59, 5, 0, 'Communication is average, not much relevant for our MIS ', 50, '0000-00-00 00:00:00', 1),
(3360, 3627, 53, 5, 0, 'not worth fr 25k, having another offer also.', 8, '2021-03-03 04:01:31', 1),
(3361, 3580, 13, 7, 4, 'good communication and convincing skills (10.5k salary jaining date : 04-March-2021)', 59, '2021-03-03 04:17:44', 1),
(3362, 3580, 59, 3, 0, '11K CTC,10450 TH for Muthu team', 13, '2021-03-03 04:27:47', 1),
(3363, 3620, 8, 4, 0, 'check for MIS', 7, '0000-00-00 00:00:00', 1),
(3364, 3567, 59, 4, 0, 'Fresher, seems to have knowledge in Mern Stack.Check for MERN(Intern with 3 yrs Agreement OK)', 7, '0000-00-00 00:00:00', 1),
(3365, 3620, 59, 4, 0, 'Profile OK, good in communication, have exp in Sales xxamp operations,check for MIS', 8, '2021-03-04 04:10:17', 1),
(3366, 3502, 59, 3, 0, 'Gross 45833 with PF xxamp PT\nTH - 42025', 30, '2021-03-04 04:51:17', 1),
(3367, 3567, 27, 2, 0, 'Task Given. Task incomplete. he will come again for the system task.', 59, '2021-03-04 06:36:14', 1),
(3368, 3620, 8, 4, 0, 'check for MIS', 59, '2021-03-04 06:38:32', 1),
(3369, 3657, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3370, 3638, 8, 3, 0, ' CTC - 3,80,000 With Gross - 31667 xxamp TH - 27859 for shanmugam', 50, '0000-00-00 00:00:00', 1),
(3371, 3660, 8, 2, 0, 'very bold and confident. his pronunciation is not clear because of his mother Tongue. ', 50, '0000-00-00 00:00:00', 1),
(3372, 3661, 8, 4, 0, 'good in convincing and has calling Experience. okay with 10-11k.', 50, '0000-00-00 00:00:00', 1),
(3373, 3646, 8, 5, 0, 'communication below avg, no knowledge in excel and ppt.', 50, '0000-00-00 00:00:00', 1),
(3374, 3650, 59, 5, 0, 'No knowledge in digital Marketing, Her field of knowledge in Interior Design, and need time to think on the agreement', 50, '0000-00-00 00:00:00', 1),
(3375, 3410, 59, 7, 0, 'CTC Finalised for the candidate - 3,60,000 with PF xxamp PT Deductions - Gross 30,000 xxamp TH - 26192.Need to serve 15 days of notice', 50, '0000-00-00 00:00:00', 1),
(3376, 3648, 8, 4, 0, 'has good communication and convincing exp sal is 4l. check for MIS. knows basics in excel and ppt', 50, '0000-00-00 00:00:00', 1),
(3377, 3667, 59, 5, 0, 'Much into opertions, will not sustain in sales', 50, '0000-00-00 00:00:00', 1),
(3378, 3666, 8, 4, 3, 'check for CRM/RM', 50, '0000-00-00 00:00:00', 1),
(3379, 3624, 8, 5, 0, 'will not join', 29, '2021-03-05 12:40:17', 1),
(3380, 3668, 8, 5, 0, 'will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(3381, 3669, 8, 5, 0, 'gng to write IRDA exam, will not sustain here and exp is 13k.', 50, '0000-00-00 00:00:00', 1),
(3382, 3674, 8, 3, 0, '13k ctc for kannan team', 50, '0000-00-00 00:00:00', 1),
(3383, 3670, 59, 3, 0, '11K CTC for Muthu Team', 50, '0000-00-00 00:00:00', 1),
(3384, 3675, 8, 5, 0, 'will not join. not interested in voice.', 7, '0000-00-00 00:00:00', 1),
(3385, 3410, 40, 4, 4, 'Fit for Job..Expected pay 4lac PA..Good in sales and will sustain importance of job is high.', 59, '2021-03-05 05:55:25', 1),
(3386, 3670, 13, 7, 4, 'Confident level and convincing skill very good (10.5k salary joining date 8th March)', 59, '2021-03-05 06:07:41', 1),
(3387, 3670, 59, 3, 0, '11K CTC for Muthu Team', 13, '2021-03-05 06:45:17', 1),
(3388, 3638, 29, 7, 2, 'selected for srm ', 8, '2021-03-05 06:55:33', 1),
(3389, 3648, 53, 2, 0, 'Hold. will check for a better profile', 8, '2021-03-05 06:57:33', 1),
(3390, 3674, 24, 4, 0, 'selected for next round', 8, '2021-03-05 08:53:07', 1),
(3391, 3675, 13, 7, 4, 'Good Confident Level and communication skills (10.5k Salary Joining date 8th March ', 8, '2021-03-05 08:55:08', 1),
(3392, 3666, 40, 5, 2, 'Not fit for job', 8, '2021-03-05 09:04:52', 1),
(3393, 3661, 13, 5, 0, 'candidate is not intrested in voice process. he is looking for non voice process only', 8, '2021-03-05 09:11:42', 1),
(3394, 3410, 18, 7, 4, 'Selected for Veben Team. Expected salary is 4L per Annum but can give 3.6 under pantronics and commited to raise after seeeing 3 months perfomance. Once the offer is released he needs to serve 15 days notice period.', 40, '2021-03-06 08:56:03', 1),
(3395, 3659, 8, 5, 2, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3396, 3620, 53, 5, 0, 'Written communication is not good', 8, '2021-03-06 10:46:20', 1),
(3397, 3586, 59, 5, 0, 'Profile ok, Very High CTC Expectation.Focus only on the package', 50, '0000-00-00 00:00:00', 1),
(3398, 3442, 8, 4, 3, 'check for RM. exp salary 28k.', 50, '0000-00-00 00:00:00', 1),
(3399, 3442, 40, 5, 3, 'Not fit for Job', 8, '2021-03-06 12:12:00', 1),
(3400, 3680, 8, 3, 0, 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', 50, '0000-00-00 00:00:00', 1),
(3401, 3675, 8, 5, 0, 'will not join. not interested in voice.', 13, '2021-03-06 12:52:52', 1),
(3402, 3348, 59, 5, 0, 'Recently got Hike and looking for more. Will not sustain for a long, not open for agreement', 50, '0000-00-00 00:00:00', 1),
(3403, 3682, 8, 4, 3, 'check for RM, hold 2 offers. kindly check once. exp 5l', 50, '0000-00-00 00:00:00', 1),
(3404, 3683, 8, 2, 0, 'for RM. held up with some personal work. ', 50, '0000-00-00 00:00:00', 1),
(3405, 3665, 8, 5, 0, 'will not suite for sales calling.', 50, '0000-00-00 00:00:00', 1),
(3406, 3613, 8, 5, 0, 'comm is below avg. will not suite for mis', 50, '0000-00-00 00:00:00', 1),
(3407, 3684, 8, 4, 3, 'Check for RM, ', 50, '0000-00-00 00:00:00', 1),
(3408, 3677, 59, 5, 0, 'High CTC Expectation, Sustainability doubt, Have a plan to travel abroad also', 60, '0000-00-00 00:00:00', 1),
(3409, 3678, 8, 5, 0, 'avg comm, will not suite for mis.', 50, '0000-00-00 00:00:00', 1),
(3410, 3682, 40, 5, 3, 'Not fit job dataxquots which given by candidate is not relevant', 8, '2021-03-06 03:32:28', 1),
(3411, 3684, 40, 5, 3, 'Not fit for job', 8, '2021-03-06 03:34:32', 1),
(3412, 3680, 11, 4, 0, 'suitable for health process', 8, '2021-03-06 03:37:52', 1),
(3413, 3410, 59, 7, 0, 'CTC Finalised for the candidate - 3,60,000 with PF xxamp PT Deductions - Gross 30,000 xxamp TH - 26192.Need to serve 15 days of notice', 18, '2021-03-06 04:41:17', 1),
(3414, 3689, 8, 5, 0, 'profile was selected but he is not Interested. due to package', 7, '0000-00-00 00:00:00', 1),
(3415, 3690, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 TH - 10000', 7, '0000-00-00 00:00:00', 1),
(3416, 3691, 8, 5, 0, 'avg communication, no written skill. will not suite for mis', 7, '0000-00-00 00:00:00', 1),
(3417, 3688, 8, 4, 0, 'check for MIS.', 60, '0000-00-00 00:00:00', 1),
(3418, 3689, 29, 4, 2, 'moved', 8, '2021-03-08 12:25:03', 1),
(3419, 3693, 8, 3, 0, '10k th 10526 as gross for muthuteam.', 7, '0000-00-00 00:00:00', 1),
(3420, 3693, 13, 7, 4, 'Ok 10k Salary , she said that joining date will be confirmed in 4 days', 8, '2021-03-08 12:26:35', 1),
(3421, 3695, 8, 3, 0, '13th for suthagar team', 7, '0000-00-00 00:00:00', 1),
(3422, 3694, 8, 5, 0, 'looking for non voice but has exp in voice 3yr', 60, '0000-00-00 00:00:00', 1),
(3423, 3696, 8, 4, 3, 'check for rE. fresher.', 7, '0000-00-00 00:00:00', 1),
(3424, 3692, 8, 2, 0, 'for agency BDM', 7, '0000-00-00 00:00:00', 1),
(3425, 3697, 8, 5, 0, 'avg comm. going to takeover his father business. will not sustain and will not suite for mis', 60, '0000-00-00 00:00:00', 1),
(3426, 3699, 8, 5, 0, 'fresher for us. 2yrs exp in max showroom sales. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3427, 3698, 8, 5, 0, 'will not suite for us. not speaking up.', 7, '0000-00-00 00:00:00', 1),
(3428, 3701, 8, 5, 0, 'will not suite for calling, fresher', 7, '0000-00-00 00:00:00', 1),
(3429, 3703, 8, 2, 0, 'need to discuss ', 7, '0000-00-00 00:00:00', 1),
(3430, 3674, 53, 7, 0, 'selected for RE. kannan team, check-in traning period then wll decide.', 24, '2021-03-08 03:38:17', 1),
(3431, 3693, 8, 3, 0, '10k th 10526 as gross for muthuteam.', 13, '2021-03-08 04:39:35', 1),
(3432, 3696, 24, 4, 0, 'allocated for 2nd round.. ', 8, '2021-03-08 04:43:54', 1),
(3433, 3688, 59, 4, 0, 'Check for MIS Role, Communication is ok, Open for Agreement.50/50', 8, '2021-03-08 04:45:28', 1),
(3434, 3695, 24, 4, 0, 'selected for next round .. syed team', 8, '2021-03-08 04:53:43', 1),
(3435, 3693, 59, 7, 0, 'CTC 126312, Gross 10526 xxamp TH10K', 8, '2021-03-08 04:54:43', 1),
(3436, 3688, 53, 2, 0, '50 50', 59, '2021-03-08 05:49:18', 1),
(3437, 3695, 53, 4, 0, 'shortlisted for RE. syed team', 24, '2021-03-08 06:00:22', 1),
(3438, 3696, 53, 5, 0, 'rejected', 24, '2021-03-08 06:01:00', 1),
(3439, 3694, 13, 4, 2, 'she is intrested only on Non-voice process', 8, '2021-03-08 06:58:56', 1),
(3440, 3693, 8, 3, 0, '10k th 10526 as gross for muthuteam.', 59, '2021-03-08 07:13:03', 1),
(3441, 3641, 8, 4, 0, 'little bit slow. need to cross check. has sales exp.', 7, '0000-00-00 00:00:00', 1),
(3442, 3702, 8, 5, 0, 'will not suite for sales calling', 7, '0000-00-00 00:00:00', 1),
(3443, 3641, 59, 4, 0, 'Check for RM, No relevant Exp ', 8, '2021-03-08 07:33:56', 1),
(3444, 3674, 8, 3, 0, '13k ctc for kannan team', 53, '2021-03-09 10:06:16', 1),
(3445, 3715, 8, 5, 3, 'will not suite for sales. looking for HR job.', 7, '0000-00-00 00:00:00', 1),
(3446, 3714, 8, 3, 0, '13k ctc for suthagar team.', 7, '0000-00-00 00:00:00', 1),
(3447, 3714, 24, 4, 0, 'selected for next round', 8, '2021-03-09 11:11:19', 1),
(3448, 3694, 8, 5, 0, 'looking for non voice but has exp in voice 3yr', 13, '2021-03-09 11:25:31', 1),
(3449, 3716, 8, 3, 0, '15k th for syed team', 7, '0000-00-00 00:00:00', 1),
(3450, 3708, 59, 5, 0, 'No communication, will not fit for our role DM', 7, '0000-00-00 00:00:00', 1),
(3451, 3718, 8, 5, 0, 'will not suite for any profile.', 7, '0000-00-00 00:00:00', 1),
(3452, 3720, 8, 5, 0, 'will not suite for calling, fresher.', 50, '0000-00-00 00:00:00', 1),
(3453, 3719, 8, 3, 0, '13k ctc for thiyagu team', 50, '0000-00-00 00:00:00', 1),
(3454, 3723, 8, 5, 0, 'will not suite for our prosess. gaurav rejected him', 7, '0000-00-00 00:00:00', 1),
(3455, 3630, 69, 5, 0, 'The candidate wonxquott sustain for the long term', 60, '0000-00-00 00:00:00', 1),
(3456, 3641, 31, 5, 0, 'not fit for sales', 59, '2021-03-09 12:31:49', 1),
(3457, 3705, 8, 5, 0, 'no local language and lang is avg. will not suite for mis', 7, '0000-00-00 00:00:00', 1),
(3458, 3722, 8, 5, 1, 'Planing to do higher study and doing part time job too.', 7, '0000-00-00 00:00:00', 1),
(3459, 3687, 59, 4, 0, 'Not much relevant Profile for our Sales, full into operations. Check for RM 50/50', 7, '0000-00-00 00:00:00', 1),
(3460, 3717, 59, 8, 0, 'The candidate left without attending the interview', 7, '0000-00-00 00:00:00', 1),
(3461, 3723, 29, 4, 2, 'Moved', 8, '2021-03-09 02:52:47', 1),
(3462, 3719, 16, 4, 0, 'good candidate good skills', 8, '2021-03-09 03:11:55', 1),
(3463, 3716, 57, 7, 0, 'candidate is ok .. salary 15k take home .. thank you', 8, '2021-03-09 03:13:28', 1),
(3464, 3730, 27, 2, 0, 'Task Given. Task was incomplete. He will come again in this weekend. ', 7, '0000-00-00 00:00:00', 1),
(3465, 3078, 27, 5, 0, 'not meet our expectations', 27, '2021-03-09 03:25:46', 1),
(3466, 3119, 27, 5, 0, 'could Not Meet Our Expectations', 27, '2021-03-09 03:26:03', 1),
(3467, 3131, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:26:13', 1),
(3468, 3223, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:26:20', 1),
(3469, 3227, 60, 1, 0, NULL, 27, '2021-03-09 03:27:05', 1),
(3470, 3227, 27, 7, 0, 'Selected by GS. we will see 1st 7 days. after that we will decide.', 27, '2021-03-09 03:27:05', 1),
(3471, 3230, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:27:15', 1),
(3472, 3234, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:27:22', 1),
(3473, 3271, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:27:29', 1),
(3474, 3272, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:27:37', 1),
(3475, 3287, 27, 5, 0, 'Task not completed perfectly.', 27, '2021-03-09 03:27:55', 1),
(3476, 3344, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:28:04', 1),
(3477, 3375, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:28:11', 1),
(3478, 3507, 27, 5, 0, 'Task completion not satisfied.', 27, '2021-03-09 03:28:41', 1),
(3479, 3315, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:29:26', 1),
(3480, 3301, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:30:05', 1),
(3481, 3443, 27, 5, 0, 'Could Not Meet Our Expectations', 27, '2021-03-09 03:30:21', 1),
(3482, 3367, 27, 5, 0, 'Task not completed.', 27, '2021-03-09 03:30:44', 1),
(3483, 3726, 8, 5, 0, 'looking for Back end job. not interested in sales', 7, '0000-00-00 00:00:00', 1),
(3484, 3728, 8, 5, 0, 'looking for non voice. not interested in sales.', 7, '0000-00-00 00:00:00', 1),
(3485, 3729, 8, 5, 3, 'will not sustain. ', 7, '0000-00-00 00:00:00', 1),
(3486, 3727, 8, 5, 3, 'will not sustain and will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3487, 3671, 59, 5, 0, 'Will not fit for our role DM, No communication', 7, '0000-00-00 00:00:00', 1),
(3488, 3625, 59, 4, 0, 'Check for DM, open for 1 yr Service only, Sustainability doubt, Age around 37 yrs.No content writing', 7, '0000-00-00 00:00:00', 1),
(3489, 3710, 59, 5, 0, 'Not suits for DM.Content not upto the mark', 7, '0000-00-00 00:00:00', 1),
(3490, 3725, 8, 2, 0, '2months exp. oral is avg. ', 7, '0000-00-00 00:00:00', 1),
(3491, 3724, 8, 5, 0, 'left before 2nd round', 7, '0000-00-00 00:00:00', 1),
(3492, 3721, 8, 5, 3, 'appearance and slang is not up to the level. will not suite for us', 7, '0000-00-00 00:00:00', 1),
(3493, 3709, 8, 4, 0, 'good communication and has exp in SAP. exp 20k and okay with bond', 7, '0000-00-00 00:00:00', 1),
(3494, 3709, 53, 4, 0, 'Good communication, hvng 6 yrs Exp', 8, '2021-03-09 05:12:21', 1),
(3495, 3410, 8, 3, 0, '30k ctc with pf and pt', 59, '2021-03-09 05:57:54', 1),
(3496, 3687, 8, 5, 0, 'will not suite for 30k package and will not suite for RM', 59, '2021-03-09 05:59:15', 1),
(3497, 3503, 59, 5, 0, 'The candidate didnxquott turn up, Sustainability doubt', 59, '2021-03-09 06:00:50', 1),
(3498, 3568, 59, 5, 0, 'He is much into testing, will not get fit for our Mern', 59, '2021-03-09 06:08:33', 1),
(3499, 3603, 59, 5, 0, 'Candidate ok, but only 50/50 for our MIS', 59, '2021-03-09 06:09:46', 1),
(3500, 3709, 54, 5, 0, 'she worked more than 6 years of Experience but not match her skill ', 53, '2021-03-09 06:29:42', 1),
(3501, 3323, 59, 1, 0, NULL, 13, '2021-03-09 06:49:38', 1),
(3502, 3714, 53, 7, 0, 'selected for suthagar team, CTC 13k. ', 24, '2021-03-09 07:06:56', 1),
(3503, 3625, 69, 2, 0, 'Given an Assignment, Candidate has to confirm about the sustainability.', 59, '2021-03-09 07:35:51', 1),
(3504, 3714, 59, 7, 0, 'CTC 156000 Monthly Gross - 13000 xxamp TH - 12350', 53, '2021-03-10 09:58:12', 1),
(3505, 3735, 59, 4, 0, 'Profile ok check for PHP', 7, '0000-00-00 00:00:00', 1),
(3506, 3719, 53, 7, 0, 'shortlisted for RE thiyagu team, 13k ctc pls cnfrm the joining', 16, '2021-03-10 10:30:03', 1),
(3507, 3719, 59, 7, 0, 'CTC 156000 with Monthly Gross - 13000 xxamp TH - 12350', 53, '2021-03-10 10:38:17', 1),
(3508, 3695, 59, 7, 0, 'CTC 164208 Monthly Gross - 13684 xxamp TH - 13000', 53, '2021-03-10 10:43:54', 1),
(3509, 3592, 69, 5, 0, 'High salary expectation\n', 69, '2021-03-10 10:46:48', 1),
(3510, 3695, 8, 3, 0, '13th for suthagar team', 59, '2021-03-10 10:49:53', 1),
(3511, 3719, 8, 3, 0, '13k ctc for thiyagu team', 59, '2021-03-10 10:52:58', 1),
(3512, 3714, 8, 3, 0, '13k ctc for suthagar team.', 59, '2021-03-10 10:57:05', 1),
(3513, 3623, 40, 2, 3, 'ok for 2 years contract not having proper documentation for graduation xxamp work! 18k can provide. Yet to confirm', 33, '2021-03-10 10:58:28', 1),
(3514, 3736, 8, 3, 0, '12k ctc for muthu team', 7, '0000-00-00 00:00:00', 1),
(3515, 3737, 8, 5, 0, 'will not suite for our process. 6m in hathway and exp is 12k min', 7, '0000-00-00 00:00:00', 1),
(3516, 3737, 8, 5, 0, 'will not suite for our process. 6m in hathway and exp is 12k min', 50, '0000-00-00 00:00:00', 1),
(3517, 3733, 8, 4, 0, 'Check for internship. fresher okay with 2yr bond.', 50, '0000-00-00 00:00:00', 1),
(3518, 3739, 8, 4, 3, 'check for RE. need to arrange 2w.', 50, '0000-00-00 00:00:00', 1),
(3519, 3736, 24, 4, 0, 'candidate direct handle to srikanth', 8, '2021-03-10 11:15:19', 1),
(3520, 3731, 59, 2, 0, 'Profile is ok,Latha took interview and need to get the confirmations on the agreement xxamp terms', 7, '0000-00-00 00:00:00', 1),
(3521, 3739, 20, 4, 0, 'Suitable For RE, Genuine candidate,\nhas 5 months experience, bold voice, kindly Scrutinize and shortlist. Exptd CTC 13K', 8, '2021-03-10 12:12:37', 1),
(3522, 3706, 59, 5, 0, 'Fresher Profile,High CTC expectations,not much comfortable with Agreement', 7, '0000-00-00 00:00:00', 1),
(3523, 3711, 8, 5, 0, 'comm is very poor. will not suite for mis', 7, '0000-00-00 00:00:00', 1),
(3524, 3744, 59, 5, 0, 'Not open for Agreement,have a plan to travel muscat,will not sustain for a long .high CTC expectations', 7, '0000-00-00 00:00:00', 1),
(3525, 3743, 8, 5, 0, 'not interested in sales job', 7, '0000-00-00 00:00:00', 1),
(3526, 3741, 8, 5, 0, 'will not sustain. looking for Temporary joj for 3-4months', 7, '0000-00-00 00:00:00', 1),
(3527, 3736, 20, 9, 0, 'Seems Suitable for voice, \nNot Possible to arrange two wheeler, kindly try for CRM', 24, '2021-03-10 12:37:05', 1),
(3528, 3736, 8, 3, 0, '12k ctc for muthu team', 20, '2021-03-10 12:41:04', 1),
(3529, 3739, 53, 2, 0, 'Need on week, priyanka will update on 17th.', 20, '2021-03-10 12:43:31', 1),
(3530, 3733, 59, 5, 0, 'Not suits for IT requirement.', 8, '2021-03-10 12:46:18', 1),
(3531, 3742, 8, 5, 0, 'not speaking up. will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(3532, 3745, 8, 3, 0, 'Selected With CTC - 309696 With Gross - 25808 TH - 22000', 7, '0000-00-00 00:00:00', 1),
(3533, 3732, 8, 3, 0, '350000 CTC,29167-gC, 25359-TH for Rajkumar team.', 7, '0000-00-00 00:00:00', 1),
(3534, 3750, 8, 5, 2, 'will not suite for our process. no relevant exp. exp min 16K.', 7, '0000-00-00 00:00:00', 1),
(3535, 3749, 8, 3, 0, '16k th for srikanth team.', 7, '0000-00-00 00:00:00', 1),
(3536, 3746, 8, 5, 0, 'will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3537, 3747, 8, 5, 0, 'will not suite for crm.', 7, '0000-00-00 00:00:00', 1),
(3538, 3707, 8, 2, 0, 'need to check.', 7, '0000-00-00 00:00:00', 1),
(3539, 3748, 8, 5, 0, 'Very Poor Communication. Will Not Suite For Our Process.', 7, '0000-00-00 00:00:00', 1),
(3540, 3749, 20, 4, 0, 'seems suitable for RE, Has done Multiple Switches in the past few years, kindly check sustainability and shortlist. Definitely has job need. wanted 16 to 17k as cTC.', 8, '2021-03-10 05:54:38', 1),
(3541, 3745, 33, 4, 3, 'I have 50% doubt on job sustainability but having sales experience in medical representative please check the profile and select if really works in our process ', 8, '2021-03-10 06:02:49', 1),
(3542, 3749, 53, 4, 0, 'Selected, srikanth team, 16k TH, DOJ 15th march, pls cnfm with the candidate', 20, '2021-03-10 06:13:11', 1),
(3543, 3736, 13, 7, 4, 'tomorrow joining', 8, '2021-03-10 06:14:50', 1),
(3544, 3735, 27, 2, 0, 'Task Given. He is working now.', 59, '2021-03-10 06:17:00', 1),
(3545, 3732, 33, 4, 4, 'Kindly check the sustainability and pressure handling ', 8, '2021-03-10 06:34:43', 1),
(3546, 3605, 8, 5, 0, 'not turned up', 8, '2021-03-10 06:36:46', 1),
(3547, 3703, 8, 5, 0, 'not turned up', 8, '2021-03-10 06:37:26', 1),
(3548, 3692, 53, 4, 0, 'pls check for Agency chanel', 8, '2021-03-10 06:37:56', 1),
(3549, 3692, 8, 2, 0, 'for agency BDM', 8, '2021-03-10 06:37:56', 1),
(3550, 3660, 8, 5, 0, 'asking for non voice', 8, '2021-03-10 06:38:20', 1),
(3551, 3736, 59, 7, 0, 'CTC 144000 with Gross - 12000 xxamp TH - 11400', 13, '2021-03-10 06:45:03', 1),
(3552, 3736, 8, 3, 0, '12k ctc for muthu team', 59, '2021-03-10 06:54:49', 1),
(3553, 3716, 53, 4, 0, 'selected. syed team 15750 ctc 15k TH, pls cnfrm joining date ', 57, '2021-03-11 10:22:07', 1),
(3554, 3716, 59, 7, 0, 'Selected for Syed Team,DOJ - 11/Mar with CTC - 1,89,480 Monthly Gross - 15790 xxamp TH - 15000 for Patroniss', 53, '2021-03-11 10:39:32', 1),
(3555, 3752, 41, 4, 0, 'Check sustainability and pressure handling', 50, '0000-00-00 00:00:00', 1),
(3556, 3749, 59, 7, 0, 'No relevant Exp, Open for Agreement with document CTC - 2,02,104 with Gross - 16842 and TH - 16K', 53, '2021-03-11 11:34:12', 1),
(3557, 3716, 8, 3, 0, '15k th for syed team', 59, '2021-03-11 11:37:23', 1),
(3558, 3752, 8, 3, 0, 'CTC - 2,02,104 With Gross - 16842 And TH - 16000, for guru team', 41, '2021-03-11 11:45:08', 1),
(3559, 3761, 8, 3, 0, ' for muthu team With Gross - 12105 xxamp TH - 11500', 50, '0000-00-00 00:00:00', 1),
(3560, 3763, 8, 3, 0, 'Selected For Kannan Team RE,CTC - 168000 With Gross - 14000 xxamp TH - 13,300 ', 50, '0000-00-00 00:00:00', 1),
(3561, 3762, 8, 3, 0, '11k ctc for muthu team', 50, '0000-00-00 00:00:00', 1),
(3562, 3765, 8, 5, 0, 'looking for admin job. will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3563, 3766, 8, 5, 0, 'will not suite for calling. fresher 3m in semi voice.', 50, '0000-00-00 00:00:00', 1),
(3564, 3768, 8, 3, 0, '10k th for keerthiga team.', 50, '0000-00-00 00:00:00', 1),
(3565, 3692, 29, 4, 0, 'moved', 53, '2021-03-11 12:16:20', 1),
(3566, 3751, 59, 5, 0, 'Not open for Agreement, should check with family.Have a plan to do an MBA also.Sustainability doubt', 7, '0000-00-00 00:00:00', 1),
(3567, 3761, 13, 7, 4, 'Salary 11.5k( ,joining date March 15th )', 8, '2021-03-11 12:32:04', 1),
(3568, 3762, 13, 7, 4, 'Salary 10.5k( ,Joining Date March 15th )', 8, '2021-03-11 12:32:48', 1),
(3569, 3756, 8, 5, 0, 'will not suite for us.', 50, '0000-00-00 00:00:00', 1),
(3570, 3749, 8, 3, 0, '16k th for srikanth team.', 59, '2021-03-11 12:39:59', 1),
(3571, 3772, 8, 4, 3, 'check for BDM-agency channel', 50, '0000-00-00 00:00:00', 1),
(3572, 3764, 41, 4, 0, 'check for CRM ', 50, '0000-00-00 00:00:00', 1),
(3573, 3767, 8, 5, 0, 'appearance is not okay. avg communication.', 50, '0000-00-00 00:00:00', 1),
(3574, 3763, 53, 4, 0, 'he s not suit for Agency model, pls check fr RM', 8, '2021-03-11 01:10:47', 1),
(3575, 3759, 41, 4, 0, 'Not fit sor sales try for renewal', 7, '0000-00-00 00:00:00', 1),
(3576, 3771, 8, 5, 0, 'will not suite for CRM. looking for back end job.', 7, '0000-00-00 00:00:00', 1),
(3577, 3755, 59, 5, 0, 'Not open for agreement, Fresher will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(3578, 3773, 8, 5, 0, 'profile mismatch and will not suite for calling. no sustainability.', 50, '0000-00-00 00:00:00', 1),
(3579, 3759, 53, 5, 0, 'not suit for sales and renewals.', 41, '2021-03-11 04:00:57', 1),
(3580, 3764, 13, 4, 3, 'expected salary high ', 41, '2021-03-11 04:01:37', 1),
(3581, 3763, 19, 4, 0, 'Shortlisted for RE with 14K ctc. kindly do the needful', 53, '2021-03-11 04:37:38', 1),
(3582, 3772, 53, 5, 0, 'not suit for agency channel', 8, '2021-03-11 04:57:42', 1),
(3583, 3775, 8, 5, 0, 'too long. from gooduvancherry.', 7, '0000-00-00 00:00:00', 1),
(3584, 3768, 36, 4, 4, 'Selected for Keerthika team as a caller', 8, '2021-03-11 05:08:08', 1),
(3585, 3683, 8, 5, 0, 'not turnedup', 8, '2021-03-11 06:15:26', 1),
(3586, 3478, 53, 5, 0, 'HE is planning to work in dubai', 53, '2021-03-11 06:19:21', 1),
(3587, 3648, 59, 5, 0, 'Communication ok, Bit Attitude will not much suits for our role ', 53, '2021-03-11 06:20:15', 1),
(3588, 3648, 53, 4, 0, 'selcted fr next round', 53, '2021-03-11 06:20:15', 1),
(3589, 3688, 53, 5, 0, '50 50', 53, '2021-03-11 06:21:05', 1),
(3590, 3764, 59, 5, 0, 'Not suits for our role, expecting High Pay', 13, '2021-03-11 06:41:49', 1),
(3591, 3761, 59, 7, 0, 'CTC - 1,45,260 with Gross - 12105 xxamp TH - 11500', 13, '2021-03-11 06:46:37', 1),
(3592, 3762, 59, 7, 0, 'CTC - 132000 Gross - 11000 xxamp TH - 10450', 13, '2021-03-11 06:47:23', 1),
(3593, 3761, 8, 3, 0, ' for muthu team With Gross - 12105 xxamp TH - 11500', 59, '2021-03-11 07:15:45', 1),
(3594, 3762, 8, 3, 0, '11k ctc for muthu team', 59, '2021-03-11 07:16:43', 1),
(3595, 3623, 60, 1, 0, NULL, 40, '2021-03-12 08:43:26', 1),
(3596, 3623, 40, 4, 0, '18k can provide not more than that..fresher (Not Certificates having for graduation) \n2 years contract is ok for candidate.', 40, '2021-03-12 08:43:26', 1),
(3597, 3754, 59, 5, 0, 'Not Suitable(Interviewed by Latha)', 7, '0000-00-00 00:00:00', 1),
(3598, 3758, 59, 5, 0, 'Will not suits for our position(Interviewed by latha)', 7, '0000-00-00 00:00:00', 1),
(3599, 3343, 59, 2, 0, 'Will Come for System task , the profile is ok', 7, '0000-00-00 00:00:00', 1),
(3600, 3768, 18, 7, 3, 'Shortlisted For CRM In Keerthiga Team Expected Salary Is 10K And It Is Ok. Ready To Join On Monday\n', 36, '2021-03-12 11:04:35', 1),
(3601, 3734, 59, 5, 0, 'Not suitable for our Position(Interviewed by Latha)', 50, '0000-00-00 00:00:00', 1),
(3602, 3732, 18, 7, 4, 'Selected for veben Team. Kindly confirm the joining date with the candidate. Expecetd CTC is 3.5L PA but can give upto 27K take home but can negotiate', 33, '2021-03-12 11:27:30', 1),
(3603, 3745, 18, 7, 3, 'Selected for Raj Team. Last salary is 21k take home expected is 25K take home but can give 22k take home and promised to hike another 2 or 3k by giving 3 months target. ready to join on monday\n', 33, '2021-03-12 11:29:50', 1),
(3604, 3778, 8, 5, 0, 'avg communication, wrote content from google.', 50, '0000-00-00 00:00:00', 1),
(3605, 3781, 8, 4, 0, 'check for MIS', 50, '0000-00-00 00:00:00', 1),
(3606, 3783, 8, 4, 0, 'came for crm, int in DM internship. kindly cc.', 50, '0000-00-00 00:00:00', 1),
(3607, 3784, 8, 3, 0, 'CTC - 132000 With Gross - 11000 xxamp TH - 10450 for muthu team', 50, '0000-00-00 00:00:00', 1),
(3608, 3782, 8, 4, 3, 'fresher check for cRM. 10k', 50, '0000-00-00 00:00:00', 1),
(3609, 3784, 13, 7, 4, 'ok 11k ctc,joining date march 15th', 8, '2021-03-12 01:38:18', 1),
(3610, 3782, 13, 5, 2, 'not fit for telesales', 8, '2021-03-12 01:39:20', 1),
(3611, 3783, 59, 4, 0, 'Showing interest towards DM,Keen to Learn check for Digital Marketing,Content Writing is Doubt', 8, '2021-03-12 01:40:20', 1),
(3612, 3781, 59, 4, 0, 'Communication is Good, need is there, but no relevant for our Role, Age is around 41', 8, '2021-03-12 01:40:40', 1),
(3613, 3785, 8, 5, 0, 'just like that came for an interview. no job need. Planing to do business', 50, '0000-00-00 00:00:00', 1),
(3614, 3752, 34, 7, 4, 'selected for next round', 8, '2021-03-12 03:16:36', 1),
(3615, 3752, 8, 3, 0, 'CTC - 2,02,104 With Gross - 16842 And TH - 16000, for guru team', 8, '2021-03-12 03:16:36', 1),
(3616, 3707, 8, 5, 0, 'wrote written from google. comm was okay. 25k exp.', 8, '2021-03-12 03:17:34', 1),
(3617, 3768, 8, 3, 0, '10k th for keerthiga team.', 18, '2021-03-12 03:19:00', 1),
(3618, 3680, 8, 3, 0, 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', 11, '2021-03-12 03:38:37', 1),
(3619, 3789, 59, 4, 0, 'Profile ok, No Insurance Sales but can give a try for RM', 50, '0000-00-00 00:00:00', 1),
(3620, 3784, 59, 7, 0, 'CTC - 132000 with Gross - 11000 xxamp TH - 10450', 13, '2021-03-12 05:23:44', 1),
(3621, 3752, 53, 4, 0, 'Selected for RE guru team , DOJ 15 mar 21, CTC 16850', 34, '2021-03-12 05:26:14', 1),
(3622, 3781, 53, 5, 0, 'good communication but know have basic knowledge in excel and analytical.', 59, '2021-03-12 05:30:40', 1),
(3623, 3783, 69, 5, 0, 'Candidat not having basic knowledge about DM', 59, '2021-03-12 05:32:15', 1),
(3624, 3789, 8, 2, 0, 'for next round', 59, '2021-03-12 05:33:29', 1),
(3625, 3784, 8, 3, 0, 'CTC - 132000 With Gross - 11000 xxamp TH - 10450 for muthu team', 59, '2021-03-12 05:35:57', 1),
(3626, 3789, 31, 4, 0, 'hold', 8, '2021-03-12 05:50:06', 1),
(3627, 3752, 59, 7, 0, 'CTC - 2,02,104 with Gross - 16842 and TH - 16000', 53, '2021-03-12 06:03:12', 1),
(3628, 3757, 8, 5, 2, 'will not suite for sales, will not sustain, no job need, will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(3629, 3793, 59, 2, 0, 'Should check with the family on the agreement and the salary Package', 50, '0000-00-00 00:00:00', 1),
(3630, 3779, 8, 2, 0, 'has to discuss about the bond. fresher.', 50, '0000-00-00 00:00:00', 1),
(3631, 3798, 8, 4, 3, '2yr exp in AR calling. exp 20k, check for RE.', 7, '0000-00-00 00:00:00', 1),
(3632, 3803, 8, 5, 2, 'not Speaking up, will not suite for sales. doesnt have observation and listening skills', 50, '0000-00-00 00:00:00', 1),
(3633, 3788, 59, 2, 0, 'WIll come for the system task', 50, '0000-00-00 00:00:00', 1),
(3634, 3798, 16, 4, 0, 'selected ', 8, '2021-03-13 11:39:35', 1),
(3635, 3804, 8, 5, 0, 'will not suite for sales calling. exp is 18k. newly married too. will not sustain.', 7, '0000-00-00 00:00:00', 1),
(3636, 3801, 8, 5, 3, 'pursuing her final year, has to attend online class weekly twice. ask her to call after degree.', 7, '0000-00-00 00:00:00', 1),
(3637, 3807, 8, 5, 0, 'will not sustain and time being he is looking for job. language is also not good.', 7, '0000-00-00 00:00:00', 1),
(3638, 3806, 8, 5, 0, 'profile and data miss match and will not sustain. not speaking up. will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(3639, 3805, 8, 5, 0, 'no job need, will not sustain and will not suite for calling too.', 7, '0000-00-00 00:00:00', 1),
(3640, 3790, 59, 2, 0, 'Scheduled client(Nalam Healthcare)Interview on Monday 15-Mar', 7, '0000-00-00 00:00:00', 1),
(3641, 3792, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(3642, 3809, 8, 2, 0, 'has to check with client company.', 7, '0000-00-00 00:00:00', 1),
(3643, 3795, 59, 5, 0, 'Not comfortable with the agreement, left without attending the 2nd level interview', 7, '0000-00-00 00:00:00', 1),
(3644, 3797, 59, 5, 0, 'Not Comfortable With The Agreement, Left Without Attending The 2nd Level Interview', 7, '0000-00-00 00:00:00', 1),
(3645, 3808, 8, 2, 0, 'asked him to attend 2nd round interview. left b4 interview.', 7, '0000-00-00 00:00:00', 1),
(3646, 3791, 59, 2, 0, 'Scheduled Client(Nalam) Interview on 15-Mar', 60, '0000-00-00 00:00:00', 1),
(3647, 3752, 8, 3, 0, 'CTC - 2,02,104 With Gross - 16842 And TH - 16000, for guru team', 59, '2021-03-13 02:50:50', 1),
(3648, 3776, 69, 5, 0, 'Attitude issue.', 60, '0000-00-00 00:00:00', 1),
(3649, 3794, 59, 2, 0, 'Scheduled for Client Interview', 50, '0000-00-00 00:00:00', 1),
(3650, 3815, 8, 5, 0, 'too long from ennore', 7, '0000-00-00 00:00:00', 1),
(3651, 3774, 8, 2, 0, 'for bond-has to discuss with family ', 7, '0000-00-00 00:00:00', 1),
(3652, 3814, 8, 5, 0, 'no relevant exp. too long from ennore.', 7, '0000-00-00 00:00:00', 1),
(3653, 3680, 13, 7, 4, 'ok 13k ctc (joining date March 15th)', 8, '2021-03-13 05:01:27', 1),
(3654, 3680, 8, 3, 0, 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', 8, '2021-03-13 05:01:27', 1),
(3655, 3810, 41, 5, 0, 'Looking for non voice', 7, '0000-00-00 00:00:00', 1),
(3656, 3811, 41, 5, 0, 'not bold', 7, '0000-00-00 00:00:00', 1),
(3657, 3813, 41, 5, 0, 'Not at all speaking', 7, '0000-00-00 00:00:00', 1),
(3658, 3680, 59, 7, 0, 'CTC 156000 with Gross - 13000 and TH - 12350', 13, '2021-03-13 05:03:35', 1),
(3659, 3558, 60, 1, 0, NULL, 16, '2021-03-13 05:41:53', 1),
(3660, 3558, 16, 4, 0, 'Selected', 16, '2021-03-13 05:41:53', 1),
(3661, 3798, 60, 1, 0, NULL, 16, '2021-03-13 05:43:40', 1),
(3662, 3680, 8, 3, 0, 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', 59, '2021-03-13 05:56:42', 1),
(3663, 3558, 8, 3, 0, 'Selected For Thiyagu Team,CTC - 2,04,000 With Gross - 17000 xxamp TH - 16150', 59, '2021-03-13 06:03:16', 1),
(3664, 3763, 59, 7, 0, 'Selected for Kannan Team RE,CTC - 168000 with Gross - 14000 xxamp TH - 13,300 ', 19, '2021-03-13 06:36:29', 1),
(3665, 3763, 8, 3, 0, 'Selected For Kannan Team RE,CTC - 168000 With Gross - 14000 xxamp TH - 13,300 ', 59, '2021-03-13 06:41:42', 1),
(3666, 3638, 59, 7, 0, 'Selected CTC - 3,80,000 with Gross - 31667 xxamp TH - 27859 ', 29, '2021-03-13 07:29:29', 1),
(3667, 3638, 8, 3, 0, ' CTC - 3,80,000 With Gross - 31667 xxamp TH - 27859 for shanmugam', 59, '2021-03-15 09:51:55', 1),
(3668, 3826, 8, 5, 0, 'will not suite for calling. local slang.', 50, '0000-00-00 00:00:00', 1),
(3669, 3802, 59, 4, 0, 'Profile interviewed by latha,Will schedule the second round interview with Sathish\n', 50, '0000-00-00 00:00:00', 1),
(3670, 3787, 59, 7, 0, 'Selected for DM with Internship for 3 months\nInternship pay 2k employment will be discussed after internship.2.3 yrs of agreement', 50, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(3671, 3816, 59, 5, 0, 'Will not fit for our PHP Role\n', 50, '0000-00-00 00:00:00', 1),
(3672, 3676, 8, 4, 0, 'comm is okay but very slow while speaking, okay with bond and salary.', 50, '0000-00-00 00:00:00', 1),
(3673, 3827, 8, 4, 3, 'check for RE, 1yr in Credit card sales.', 50, '0000-00-00 00:00:00', 1),
(3674, 3820, 59, 5, 0, 'Not suitable for Dotnet Winforms', 50, '0000-00-00 00:00:00', 1),
(3675, 3796, 59, 2, 0, 'Fresher profile, Open for Agreement but doubtful with her sustainability,Aged around 25 ', 50, '0000-00-00 00:00:00', 1),
(3676, 3818, 8, 2, 0, 'ctc 5l, will not sustain.', 50, '0000-00-00 00:00:00', 1),
(3677, 3800, 59, 5, 0, 'Not open for the agreement, Fresher profile', 50, '0000-00-00 00:00:00', 1),
(3678, 3623, 59, 7, 0, 'Selected for Veben Team,CTC - 2,61,696 with monthly Gross - 21808 xxamp TH - 18000 ', 18, '2021-03-15 01:26:41', 1),
(3679, 3825, 8, 4, 0, 'check for RE', 50, '0000-00-00 00:00:00', 1),
(3680, 3831, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3681, 3676, 59, 5, 0, 'Communication ok, Not seems much active and will take a long to train the candidate', 8, '2021-03-15 01:36:13', 1),
(3682, 3827, 16, 5, 0, 'no skills,no experince', 8, '2021-03-15 01:42:23', 1),
(3683, 3623, 8, 3, 0, 'For Veben Team,CTC - 2,61,696 With Monthly Gross - 21808 xxamp TH - 18000 ', 59, '2021-03-15 02:35:55', 1),
(3684, 3832, 8, 5, 0, 'will not handle pressure and will not sustain. int in photography and absconded from previous company and told the company was shutdown.', 50, '0000-00-00 00:00:00', 1),
(3685, 3833, 8, 5, 0, 'last th is 14k and exp 25kth. profile matches for RE.', 50, '0000-00-00 00:00:00', 1),
(3686, 3802, 27, 5, 0, 'Task not completed.', 59, '2021-03-15 05:09:07', 1),
(3687, 3787, 69, 4, 0, 'Candidate selected for next round.', 59, '2021-03-15 05:11:32', 1),
(3688, 3825, 53, 4, 0, 'thinking abt bond. pls cnfrm with the candidate', 8, '2021-03-15 05:51:47', 1),
(3689, 3835, 8, 5, 3, 'will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3690, 1585, 19, 5, 1, 'NOT FIT FOR SALES', 8, '2021-03-15 06:10:05', 1),
(3691, 1598, 19, 5, 1, 'not fit for sale', 8, '2021-03-15 06:11:03', 1),
(3692, 3825, 59, 5, 0, 'Very High Expectation,No relevant Exp last CTC - 1,44,00 and the expected CTC - 192000 more than 30%', 53, '2021-03-15 06:23:25', 1),
(3693, 3825, 17, 4, 3, 'Need to check sustain ability ', 59, '2021-03-15 06:58:15', 1),
(3694, 3788, 59, 5, 0, 'System Task Given and not to able to do the tsk', 59, '2021-03-15 07:05:21', 1),
(3695, 3793, 59, 5, 0, 'Not open for the agreement', 59, '2021-03-15 07:06:00', 1),
(3696, 3731, 59, 5, 0, 'Not completed the task\n', 59, '2021-03-15 07:07:40', 1),
(3697, 3825, 59, 5, 0, 'Very High Expectation,No relevant Exp last CTC - 1,44,00 and the expected CTC - 192000 more than 30%', 17, '2021-03-16 10:28:51', 1),
(3698, 3567, 27, 5, 0, 'Task not completed.', 27, '2021-03-16 10:34:10', 1),
(3699, 3840, 8, 5, 2, 'will not suite for calling. not speaking up.', 7, '0000-00-00 00:00:00', 1),
(3700, 3841, 8, 5, 0, 'pronunciation is not good. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3701, 3834, 8, 5, 0, 'no observation, listening, acceptance. fresher looking for 3l ctc', 7, '0000-00-00 00:00:00', 1),
(3702, 3846, 8, 5, 0, 'will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3703, 3780, 8, 5, 0, 'no job need. written was avg. will not suite for coordination', 7, '0000-00-00 00:00:00', 1),
(3704, 3847, 59, 2, 0, 'scheduled for Client Interview', 60, '0000-00-00 00:00:00', 1),
(3705, 3787, 59, 7, 0, 'Selected for DM with Internship for 3 months\nInternship pay 2k employment will be discussed after internship.2.3 yrs of agreement', 69, '2021-03-16 12:37:52', 1),
(3706, 3848, 68, 4, 0, '..', 7, '0000-00-00 00:00:00', 1),
(3707, 3848, 30, 7, 0, 'confirm joining and further process', 68, '2021-03-16 03:31:32', 1),
(3708, 3787, 8, 3, 0, 'Selected For DM With Internship For 3 Months\nInternship Pay 2k Employment Will Be Discussed After Internship.2.3 Yrs Of Agreement', 59, '2021-03-16 04:15:03', 1),
(3709, 3845, 8, 4, 3, 'check for RM, arumbakkam team', 7, '0000-00-00 00:00:00', 1),
(3710, 3845, 53, 8, 0, 'not attended', 8, '2021-03-16 05:41:05', 1),
(3711, 3837, 8, 5, 0, 'will not sustain and looking for network engg. job or it job but not oaky with internship with infotech, not int in sales, demand 20k package.', 7, '0000-00-00 00:00:00', 1),
(3712, 3851, 59, 2, 0, 'Scheduled for the client interview', 7, '0000-00-00 00:00:00', 1),
(3713, 3838, 59, 2, 0, 'Scheduled client round of discussion ', 7, '0000-00-00 00:00:00', 1),
(3714, 3843, 59, 5, 0, 'Attitude issue,not open for Agreement', 7, '0000-00-00 00:00:00', 1),
(3715, 3853, 8, 5, 2, 'not interested in sales, will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3716, 3860, 8, 5, 2, 'will not suite for our process, not active, exp is 18th.', 7, '0000-00-00 00:00:00', 1),
(3717, 3861, 8, 5, 0, 'will not suite for sales, not interested in sales.', 7, '0000-00-00 00:00:00', 1),
(3718, 3753, 59, 2, 0, 'Should check for the service Agreement, fresher profile looking for Mern Stack', 7, '0000-00-00 00:00:00', 1),
(3719, 3859, 8, 5, 0, 'will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3720, 3850, 59, 5, 0, 'not open for the agreement', 60, '0000-00-00 00:00:00', 1),
(3721, 3857, 59, 2, 0, 'Schedule for the client round of Interview', 7, '0000-00-00 00:00:00', 1),
(3722, 3863, 8, 5, 0, 'looking for accounts job. comm is avg.', 7, '0000-00-00 00:00:00', 1),
(3723, 3864, 8, 2, 0, 'for next round.', 7, '0000-00-00 00:00:00', 1),
(3724, 3865, 8, 5, 0, 'fresher, avg communication. knows basics in excel.', 7, '0000-00-00 00:00:00', 1),
(3725, 3856, 59, 2, 0, 'Should check for the service Agreement,will come back after 2 Days', 7, '0000-00-00 00:00:00', 1),
(3726, 3866, 8, 5, 3, 'will not sustain, done her physiotheraphy and medical coding course. will move easily, not okay with the bond too. ', 7, '0000-00-00 00:00:00', 1),
(3727, 3867, 8, 5, 2, 'will not suite for any profile. attitude was very bad.', 7, '0000-00-00 00:00:00', 1),
(3728, 3868, 8, 5, 0, 'exp is 30-35k, oral is good but written is below avg.', 7, '0000-00-00 00:00:00', 1),
(3729, 3858, 59, 5, 0, 'Should check for agreement,sustainability doubt\n', 50, '0000-00-00 00:00:00', 1),
(3730, 3745, 59, 7, 0, 'Selected with CTC - 309696 with Gross - 25808 TH - 22000', 18, '2021-03-17 03:53:23', 1),
(3731, 3882, 8, 5, 3, 'will not suite for our process. has exp in showroom sales.', 7, '0000-00-00 00:00:00', 1),
(3732, 3870, 8, 4, 0, 'he is looking for internship in DM but sabeha scheduled for DA interview. check his profile will suite for any IT profile.', 7, '0000-00-00 00:00:00', 1),
(3733, 3884, 8, 3, 0, 'Selected For Srikanth Team CTC - 192000 With PF PT ESI Deductions', 7, '0000-00-00 00:00:00', 1),
(3734, 3885, 8, 3, 0, 'Selected For BDM Role,CTC - 5,49,600 Gross - 45,800 TH - 41992', 7, '0000-00-00 00:00:00', 1),
(3735, 3849, 59, 5, 0, 'Not much suits for our Mern Stack profile', 50, '0000-00-00 00:00:00', 1),
(3736, 3855, 59, 3, 0, 'Selected for the client Nalam Health care after 6 months probation - 10K Salary', 50, '0000-00-00 00:00:00', 1),
(3737, 3862, 8, 2, 0, 'hold for salary confirmation. he yet to decide', 50, '0000-00-00 00:00:00', 1),
(3738, 3886, 8, 5, 0, 'will not sustain for long term. doing his part time jobs. exp salary is also high as fresher.', 7, '0000-00-00 00:00:00', 1),
(3739, 3879, 59, 2, 0, 'Schedule for the client interview', 7, '0000-00-00 00:00:00', 1),
(3740, 3887, 8, 2, 0, 'check for agency module', 7, '0000-00-00 00:00:00', 1),
(3741, 3889, 8, 5, 0, 'communication and convincing is not good. will not suite for our process. may try as agent.', 7, '0000-00-00 00:00:00', 1),
(3742, 3894, 8, 3, 0, 'Selected For Muthu With CTC - 1,44,000 And Gross - 12000 TH - 11400', 50, '0000-00-00 00:00:00', 1),
(3743, 3890, 41, 4, 0, 'Check for CRM and Salary', 50, '0000-00-00 00:00:00', 1),
(3744, 3891, 8, 5, 0, 'will not sustain, has only 5m exp in insurance. 6yr in credit card sales. but will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3745, 3895, 8, 5, 0, 'will not suite for sales, not speaking up. fresher.', 7, '0000-00-00 00:00:00', 1),
(3746, 3896, 8, 2, 0, 'asked him to cut his hair and come back for interview.', 7, '0000-00-00 00:00:00', 1),
(3747, 3873, 69, 5, 0, 'Candidate not Interested suitable for digital marketing.', 50, '0000-00-00 00:00:00', 1),
(3748, 3897, 8, 3, 0, 'Selected For Srikanth Team With CTC 176844 Gross - 14737 xxamp TH - 14000', 7, '0000-00-00 00:00:00', 1),
(3749, 3872, 8, 8, 0, 'left before interview. will come tomorrow.', 7, '0000-00-00 00:00:00', 1),
(3750, 3885, 29, 4, 0, 'Selected for HNI', 8, '2021-03-18 03:19:13', 1),
(3751, 3890, 13, 7, 4, 'ctc-13k ,tomorrow joining', 41, '2021-03-18 03:32:45', 1),
(3752, 3903, 59, 5, 0, 'Not suitable and the expectation is very high', 7, '0000-00-00 00:00:00', 1),
(3753, 3894, 13, 7, 4, 'ctc-12k,joining date 22nd March', 8, '2021-03-18 04:01:03', 1),
(3754, 3862, 53, 4, 0, 'check fr rE, looking high package', 8, '2021-03-18 04:08:03', 1),
(3755, 3893, 8, 2, 0, 'check once', 7, '0000-00-00 00:00:00', 1),
(3756, 3875, 8, 3, 0, 'Selected For Srikanth Team With CTC - 202104 Gross - 16842 xxamp TH - 16000', 7, '0000-00-00 00:00:00', 1),
(3757, 3890, 59, 7, 0, 'Selected for Muthu Team with CTC - 1,56,000 Gross - 13000 xxamp TH - 12350', 13, '2021-03-18 04:56:56', 1),
(3758, 3894, 59, 7, 0, 'Selected for Muthu with CTC - 1,44,000 and Gross - 12000 TH - 11400', 13, '2021-03-18 04:58:13', 1),
(3759, 3893, 20, 9, 0, 'Not ready for field sales, kindly check for CRM', 8, '2021-03-18 05:29:33', 1),
(3760, 3890, 8, 3, 0, 'Selected For Muthu Team With CTC - 1,56,000 Gross - 13000 xxamp TH - 12350', 59, '2021-03-18 05:56:50', 1),
(3761, 3897, 20, 4, 0, 'Has a bold Voice, Kindly finalize CTC and shortlist. ', 8, '2021-03-18 05:58:10', 1),
(3762, 3894, 8, 3, 0, 'Selected For Muthu With CTC - 1,44,000 And Gross - 12000 TH - 11400', 59, '2021-03-18 05:58:18', 1),
(3763, 3884, 20, 5, 0, 'Not Fit For sales', 8, '2021-03-18 06:04:02', 1),
(3764, 3870, 59, 5, 0, 'Will not fit for our Roles', 8, '2021-03-18 06:09:09', 1),
(3765, 3862, 8, 2, 0, 'hold for salary confirmation. he yet to decide', 53, '2021-03-18 06:42:13', 1),
(3766, 3901, 8, 2, 0, 'check for RE', 7, '0000-00-00 00:00:00', 1),
(3767, 3913, 8, 3, 0, 'Selected For Srikanth 2 Yrs Agreement Proposed With CTC - 164208 Gross-13684 TH - 13000', 50, '0000-00-00 00:00:00', 1),
(3768, 3911, 8, 5, 3, 'too long and she is a boxing trainer as well as personal trainer. our office timing will not match. ', 7, '0000-00-00 00:00:00', 1),
(3769, 3914, 8, 3, 0, 'Selected With CTC - 198000 Gross - 16500 TH - 15675', 7, '0000-00-00 00:00:00', 1),
(3770, 3892, 59, 2, 0, 'Will schedule the candidate for the client round\n', 7, '0000-00-00 00:00:00', 1),
(3771, 3907, 8, 5, 0, 'body lang and attitude is not good. communication is okay and written is avg.exp is 28th. one year gap.', 7, '0000-00-00 00:00:00', 1),
(3772, 3916, 8, 5, 3, 'not interested in sales. will not handle pressure. will not suite for mIS eng comm. is below avg.', 7, '0000-00-00 00:00:00', 1),
(3773, 3901, 53, 4, 0, 'Pls check for RM exp sal 20k', 8, '2021-03-19 11:55:26', 1),
(3774, 3922, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(3775, 3921, 8, 3, 0, 'Selected For Guru Team With CTC - 202104 Gross - 16842 TH - 16000', 50, '0000-00-00 00:00:00', 1),
(3776, 3914, 53, 4, 0, 'Selected for RE. pls check', 8, '2021-03-19 12:16:08', 1),
(3777, 3918, 8, 5, 0, 'pronunciation is not clear will not suite for calling and sales', 7, '0000-00-00 00:00:00', 1),
(3778, 3913, 20, 4, 0, 'Seems Suitable for RE, doesnxquott have sales experience, yet seems convincing and tries to explain whatever topic given. kindly do the needful.', 8, '2021-03-19 01:02:52', 1),
(3779, 3919, 8, 5, 0, 'not speaking up and will not suite for calling and sales.', 7, '0000-00-00 00:00:00', 1),
(3780, 3901, 31, 9, 0, 'check for RE', 53, '2021-03-19 01:33:35', 1),
(3781, 3924, 8, 5, 0, 'will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(3782, 3925, 8, 5, 0, 'not speaking up, will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3783, 3914, 34, 7, 4, 'selected', 53, '2021-03-19 02:32:32', 1),
(3784, 3739, 53, 5, 0, 'he didnxquott turned up', 53, '2021-03-19 02:51:23', 1),
(3785, 3913, 53, 4, 0, 'selected for re, immediate joining.', 20, '2021-03-19 03:03:12', 1),
(3786, 3913, 59, 7, 0, 'Selected for Srikanth 2 yrs agreement proposed with CTC - 164208 Gross-13684 TH - 13000', 53, '2021-03-19 03:20:50', 1),
(3787, 3848, 59, 7, 0, 'CTC - 333036 with Gross-27753 xxamp TH - 23945', 30, '2021-03-19 03:38:50', 1),
(3788, 3927, 8, 2, 0, 'has to confirm', 7, '0000-00-00 00:00:00', 1),
(3789, 3917, 8, 5, 2, 'will not suite for sales profile. can try for Agent.', 7, '0000-00-00 00:00:00', 1),
(3790, 3912, 8, 3, 0, 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', 7, '0000-00-00 00:00:00', 1),
(3791, 3912, 29, 4, 2, 'Moved', 8, '2021-03-19 04:24:58', 1),
(3792, 3927, 13, 4, 4, 'ok but expected salary high ', 8, '2021-03-19 04:29:25', 1),
(3793, 3921, 31, 9, 0, 'check for RE', 8, '2021-03-19 04:31:55', 1),
(3794, 3836, 8, 2, 0, 'will update.', 7, '0000-00-00 00:00:00', 1),
(3795, 3836, 8, 2, 0, 'will check with his mom', 8, '2021-03-19 05:00:03', 1),
(3796, 3923, 59, 5, 0, 'Will not fit for our role', 7, '0000-00-00 00:00:00', 1),
(3797, 3896, 8, 5, 0, 'not turned up', 8, '2021-03-19 05:05:40', 1),
(3798, 3864, 18, 5, 0, 'Not fit for our profile\n', 8, '2021-03-19 05:10:00', 1),
(3799, 3864, 8, 4, 0, 'Check for BDM-HNI/Partner, has exp in retail and franchise pan india', 8, '2021-03-19 05:10:00', 1),
(3800, 3848, 8, 3, 0, 'CTC - 333036 With Gross-27753 xxamp TH - 23945', 59, '2021-03-19 05:11:43', 1),
(3801, 3745, 8, 3, 0, 'Selected With CTC - 309696 With Gross - 25808 TH - 22000', 59, '2021-03-19 05:14:32', 1),
(3802, 3921, 8, 3, 0, 'Selected For Guru Team With CTC - 202104 Gross - 16842 TH - 16000', 31, '2021-03-19 05:48:21', 1),
(3803, 3901, 8, 2, 0, 'check for RE', 31, '2021-03-19 05:48:57', 1),
(3804, 3789, 8, 2, 0, 'for next round', 31, '2021-03-19 05:49:45', 1),
(3805, 2633, 8, 5, 0, 'not turned up', 31, '2021-03-19 05:51:02', 1),
(3806, 2633, 31, 4, 0, 'check with this profile', 31, '2021-03-19 05:51:02', 1),
(3807, 3862, 8, 5, 0, 'salary will not suit. exp is high', 8, '2021-03-19 05:56:31', 1),
(3808, 3818, 8, 5, 0, 'will check for someother profile.', 8, '2021-03-19 05:57:06', 1),
(3809, 3732, 59, 2, 0, 'Discussed on the CTC,candidate will share the Salary Breakup.once received will review and confirm the CTC', 18, '2021-03-19 06:20:30', 1),
(3810, 3875, 20, 7, 0, 'Has 7 years experience in back office and general insurance sales. seems suitable for RE willing to go field kindly finalize CTC for joining.', 8, '2021-03-19 06:44:56', 1),
(3811, 3913, 8, 3, 0, 'Selected For Srikanth 2 Yrs Agreement Proposed With CTC - 164208 Gross-13684 TH - 13000', 59, '2021-03-19 07:04:56', 1),
(3812, 3921, 34, 7, 4, 'selected', 8, '2021-03-20 09:44:05', 1),
(3813, 3735, 27, 5, 0, 'He has not interested to join.', 27, '2021-03-20 10:02:01', 1),
(3814, 3934, 59, 5, 0, 'No Communication, not open for Agreement,expecting High Salary', 7, '0000-00-00 00:00:00', 1),
(3815, 3915, 59, 5, 0, 'Sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(3816, 3875, 53, 7, 0, 'shortlisted for srikanth team, doj 22 mar 21, 2yrs bond, sal 16k TH', 20, '2021-03-20 10:42:17', 1),
(3817, 3897, 53, 7, 0, 'shortlisted for srikanth team, 14k TH, depends on the performance will increase the salary after 6 Month.', 20, '2021-03-20 10:43:26', 1),
(3818, 3893, 8, 2, 0, 'check once', 20, '2021-03-20 10:53:29', 1),
(3819, 3875, 59, 7, 0, 'Selected for Srikanth Team with CTC - 202104 Gross - 16842 xxamp TH - 16000', 53, '2021-03-20 11:00:35', 1),
(3820, 3897, 59, 7, 0, 'Selected for Srikanth Team with CTC 176844 Gross - 14737 xxamp TH - 14000', 53, '2021-03-20 11:02:49', 1),
(3821, 3936, 8, 4, 3, 'has 2yr exp in calling, check for our process.', 7, '0000-00-00 00:00:00', 1),
(3822, 3935, 8, 5, 3, 'will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3823, 3927, 8, 2, 0, 'has to confirm', 13, '2021-03-20 12:01:51', 1),
(3824, 3938, 8, 4, 3, 'check for CRM. has 2yr exp in calling. check for sales process.', 7, '0000-00-00 00:00:00', 1),
(3825, 3937, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(3826, 3914, 59, 7, 0, 'Selected with CTC - 198000 Gross - 16500 TH - 15675', 34, '2021-03-20 12:36:27', 1),
(3827, 3921, 53, 7, 0, 'selected for guru team, doj 22 mar 21, pls cnfem the salary', 34, '2021-03-20 12:40:26', 1),
(3828, 3939, 8, 8, 0, 'Left Before Interview', 7, '0000-00-00 00:00:00', 1),
(3829, 3940, 8, 8, 0, 'Left Before Interview', 7, '0000-00-00 00:00:00', 1),
(3830, 3936, 53, 2, 0, 'left without attending', 8, '2021-03-20 01:38:31', 1),
(3831, 3938, 13, 5, 2, 'not suitable for telesales', 8, '2021-03-20 01:41:27', 1),
(3832, 3921, 59, 7, 0, 'Selected for Guru Team with CTC - 202104 Gross - 16842 TH - 16000', 53, '2021-03-20 02:56:16', 1),
(3833, 3926, 59, 2, 0, 'Scheduled client interview ', 60, '0000-00-00 00:00:00', 1),
(3834, 3933, 59, 2, 0, 'Scheduled client interview', 60, '0000-00-00 00:00:00', 1),
(3835, 3875, 8, 3, 0, 'Selected For Srikanth Team With CTC - 202104 Gross - 16842 xxamp TH - 16000', 59, '2021-03-20 04:59:59', 1),
(3836, 3897, 8, 3, 0, 'Selected For Srikanth Team With CTC 176844 Gross - 14737 xxamp TH - 14000', 59, '2021-03-20 05:02:31', 1),
(3837, 3943, 59, 5, 0, 'High CTC Expectation holding offer with 58K\n', 7, '0000-00-00 00:00:00', 1),
(3838, 3946, 8, 3, 0, 'Selected CTC - 1,64,208 With Gross - 13684 TH - 13000', 7, '0000-00-00 00:00:00', 1),
(3839, 3945, 8, 5, 0, 'will not suite for our process, exp is 15k will not sustain and got offer in imarqu for 12k', 7, '0000-00-00 00:00:00', 1),
(3840, 3946, 20, 4, 0, 'seems suitable for RE, is confident and bold, kindly shortlist for Suthagarxquots team', 8, '2021-03-20 05:12:14', 1),
(3841, 3901, 8, 5, 0, 'will not suite for our process', 8, '2021-03-20 05:17:24', 1),
(3842, 3836, 8, 5, 0, 'not turned up', 8, '2021-03-20 05:18:01', 1),
(3843, 3808, 8, 5, 0, 'not turned up', 8, '2021-03-20 05:18:22', 1),
(3844, 3779, 8, 5, 0, 'Not turned up', 8, '2021-03-20 05:19:22', 1),
(3845, 3774, 8, 5, 0, 'Not Turned Up', 8, '2021-03-20 05:19:35', 1),
(3846, 3942, 8, 4, 3, 'check for RM, holds 3 offer 2.8, 2.9, and 3L. exp is 3l. looking for better company and learning.', 7, '0000-00-00 00:00:00', 1),
(3847, 3942, 31, 4, 4, 'recommended for next round', 8, '2021-03-20 05:26:16', 1),
(3848, 3946, 53, 7, 0, 'selected, suthagar team, 13650 ctc, doj 22 mar 21.', 20, '2021-03-20 05:26:53', 1),
(3849, 3946, 59, 7, 0, 'Selected CTC - 1,64,208 with Gross - 13684 TH - 13000', 53, '2021-03-20 05:41:58', 1),
(3850, 3914, 8, 3, 0, 'Selected With CTC - 198000 Gross - 16500 TH - 15675', 59, '2021-03-20 05:52:33', 1),
(3851, 3946, 8, 3, 0, 'Selected CTC - 1,64,208 With Gross - 13684 TH - 13000', 59, '2021-03-20 06:26:16', 1),
(3852, 3921, 8, 3, 0, 'Selected For Guru Team With CTC - 202104 Gross - 16842 TH - 16000', 59, '2021-03-20 06:27:35', 1),
(3853, 3732, 8, 3, 0, '350000 CTC,29167-gC, 25359-TH for Rajkumar team.', 59, '2021-03-20 06:58:57', 1),
(3854, 3732, 59, 7, 0, 'Discussed On The CTC,Candidate Will Share The Offer Letter he holds.Once Received Will Review And Confirm The CTC', 59, '2021-03-20 06:58:57', 1),
(3855, 3888, 59, 5, 0, 'Sustainability issue,high CTC expectation', 7, '0000-00-00 00:00:00', 1),
(3856, 3948, 59, 5, 0, 'Scheduled client interview and got rejected', 7, '0000-00-00 00:00:00', 1),
(3857, 3777, 59, 5, 0, 'High CTC expectation,not open for agreement\n', 50, '0000-00-00 00:00:00', 1),
(3858, 3955, 41, 2, 0, 'Check for channel', 50, '0000-00-00 00:00:00', 1),
(3859, 3941, 41, 5, 0, 'will not suite for rm', 50, '0000-00-00 00:00:00', 1),
(3860, 3956, 41, 4, 0, 'Check for RE', 50, '0000-00-00 00:00:00', 1),
(3861, 3852, 59, 2, 0, 'Scheduled client round of discussionxquot\n', 50, '0000-00-00 00:00:00', 1),
(3862, 3961, 41, 4, 0, 'check Attire and Language ', 50, '0000-00-00 00:00:00', 1),
(3863, 3958, 41, 5, 0, 'Will not suite for CRM', 50, '0000-00-00 00:00:00', 1),
(3864, 3963, 8, 5, 0, 'will not suite for our process, exp is 18k. no parents and will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(3865, 3957, 8, 5, 2, 'will not suite for sales and our process, body language is not good.', 50, '0000-00-00 00:00:00', 1),
(3866, 3961, 8, 3, 0, 'Selected With CTC 1,80,000 Gross- 15000,TH - 14250', 41, '2021-03-22 01:12:34', 1),
(3867, 3956, 34, 7, 4, 'selected', 41, '2021-03-22 01:14:30', 1),
(3868, 3955, 31, 4, 0, 'Referred to next round for agency channel', 41, '2021-03-22 01:29:07', 1),
(3869, 3955, 41, 4, 0, 'Check for patner channel.', 41, '2021-03-22 01:29:07', 1),
(3870, 3931, 59, 5, 0, 'Sustainability issue,will not fit for Client position', 50, '0000-00-00 00:00:00', 1),
(3871, 3961, 20, 4, 0, 'kindly ask for bond and shortlist for my team with 15k CTC.', 8, '2021-03-22 03:50:00', 1),
(3872, 3965, 41, 5, 0, 'Searching job for time being', 50, '0000-00-00 00:00:00', 1),
(3873, 3966, 41, 2, 0, 'Check with Bond', 50, '0000-00-00 00:00:00', 1),
(3874, 3967, 41, 2, 0, 'Check for Bond', 50, '0000-00-00 00:00:00', 1),
(3875, 3936, 53, 8, 0, 'let without attending the interview', 53, '2021-03-22 05:07:59', 1),
(3876, 3961, 53, 7, 0, 'selected for srikanth team, qualification 10th but he s very confident, 15k ctc, immediate joining, 1 yr bond he ll provide 10th marksheet.', 20, '2021-03-22 06:15:16', 1),
(3877, 3928, 59, 5, 0, 'Client rejected in the interview', 7, '0000-00-00 00:00:00', 1),
(3878, 3971, 8, 3, 0, 'Selected For Ramesh Team With CTC- 176844 Gross - 14737 TH - 14000', 7, '0000-00-00 00:00:00', 1),
(3879, 3972, 8, 5, 3, 'fresher, will not suite for our process, will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(3880, 3971, 53, 4, 0, 'Ok for RE, he can arrange laptop, havng 1yr exp, 14k TH discussed, check sustainability, gvn arumbakkam address.', 8, '2021-03-23 11:06:07', 1),
(3881, 3980, 8, 5, 0, 'wearing braces. pronunciation is not clear, looking for mF. no sales skill.', 7, '0000-00-00 00:00:00', 1),
(3882, 3974, 59, 5, 0, 'Content is not up to the mark and not Much good in analytical', 7, '0000-00-00 00:00:00', 1),
(3883, 3971, 17, 4, 3, 'Need to check sustainability', 53, '2021-03-23 12:01:52', 1),
(3884, 3961, 59, 7, 0, 'Selected with CTC 1,80,000 Gross- 15000,TH - 14250', 53, '2021-03-23 12:04:06', 1),
(3885, 3979, 8, 5, 3, 'will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(3886, 3977, 8, 4, 3, 'check for renewal or crm. has 1.6yr exp in collection.', 7, '0000-00-00 00:00:00', 1),
(3887, 3976, 8, 4, 0, 'Fresher For Us, Has 8m Exp In Sbi Collection. 10k Exp.', 7, '0000-00-00 00:00:00', 1),
(3888, 3975, 8, 4, 0, 'fresher for us, has 8m exp in sbi collection. 10k exp.', 7, '0000-00-00 00:00:00', 1),
(3889, 3982, 8, 5, 0, 'will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3890, 3981, 8, 3, 0, '14737 mctc 14k th for guru team', 7, '0000-00-00 00:00:00', 1),
(3891, 3977, 53, 2, 0, 'Donxquott have sales experience, he s looking for a collection process bt ok with sales. He needs one day time for agreement, needs to check sustainability, ', 8, '2021-03-23 01:33:42', 1),
(3892, 3983, 8, 3, 0, '16k th, 16842 ctc for ramesh team', 7, '0000-00-00 00:00:00', 1),
(3893, 3973, 59, 5, 0, 'Fresher and doing freelance not open for Service Agreement', 7, '0000-00-00 00:00:00', 1),
(3894, 3949, 59, 5, 0, 'Not much active will not fit and sustain for our IT openingsxquot\n', 7, '0000-00-00 00:00:00', 1),
(3895, 3985, 8, 2, 0, 'given time to prepare', 7, '0000-00-00 00:00:00', 1),
(3896, 3906, 59, 5, 0, 'Exp in Semi voice,Not open for Sales will not fit for IT openings\n', 7, '0000-00-00 00:00:00', 1),
(3897, 3978, 8, 4, 3, 'check for RE, has retail sales exp. exp sal is 18k+', 7, '0000-00-00 00:00:00', 1),
(3898, 3978, 20, 5, 0, 'Profile Experience doesnxquott add up.', 8, '2021-03-23 03:49:50', 1),
(3899, 3983, 53, 4, 0, 'Ok for RE, Arumbakkam, 16k TH', 8, '2021-03-23 03:51:33', 1),
(3900, 3981, 20, 4, 0, 'has sales experience on field, suitable for RE. Kindly finalize CTC and shortlist for Guru Team.', 8, '2021-03-23 03:54:23', 1),
(3901, 3989, 8, 5, 0, 'gave a negative feedback insurance. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3902, 3992, 8, 5, 0, 'low voice, looking for non voice, exp about the phone was good but not satisfied with his profile, ', 7, '0000-00-00 00:00:00', 1),
(3903, 3975, 13, 5, 1, 'he is not fit for telesales voice process ', 8, '2021-03-23 05:27:12', 1),
(3904, 3976, 13, 5, 2, 'she is not fit for tele sales', 8, '2021-03-23 05:27:59', 1),
(3905, 3927, 8, 5, 0, 'no response', 8, '2021-03-23 05:46:52', 1),
(3906, 3893, 8, 5, 0, 'not interested in FE. salary will not match for cRM', 8, '2021-03-23 05:47:21', 1),
(3907, 3790, 59, 5, 0, 'Rejected in the client round', 59, '2021-03-23 07:24:33', 1),
(3908, 3791, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:24:51', 1),
(3909, 3796, 59, 5, 0, 'Not much suits will not sustain\n', 59, '2021-03-23 07:25:36', 1),
(3910, 3847, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:26:11', 1),
(3911, 3851, 59, 5, 0, 'No Show for Client interview', 59, '2021-03-23 07:26:32', 1),
(3912, 3852, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:26:45', 1),
(3913, 3879, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:27:02', 1),
(3914, 3753, 59, 5, 0, 'Not open for Agreement', 59, '2021-03-23 07:28:45', 1),
(3915, 3838, 59, 5, 0, 'Rejected In The Client Round', 59, '2021-03-23 07:30:48', 1),
(3916, 3983, 17, 4, 3, 'Need to finalize salary and sustainability ', 53, '2021-03-24 10:39:29', 1),
(3917, 4006, 59, 5, 0, 'Good in Communication and from the Training field, Reyaz from IT took 2nd Round and rejected in the 3rd round with Syed Reyaz Ahmed - AM ESales', 7, '0000-00-00 00:00:00', 1),
(3918, 3953, 8, 5, 0, 'will not suite for our process, no sales exp. will not sustain.', 7, '0000-00-00 00:00:00', 1),
(3919, 3993, 8, 5, 3, 'will not join without his friend. bcoz he Referred him. but he is okay for RE.', 7, '0000-00-00 00:00:00', 1),
(3920, 3986, 8, 5, 0, 'no fluency while speaking, will not suite for calling. no clarity too.', 7, '0000-00-00 00:00:00', 1),
(3921, 4002, 8, 5, 0, 'comm. is poor not even an avg. no knowledge as MIS in previous org.', 7, '0000-00-00 00:00:00', 1),
(3922, 3991, 59, 5, 0, 'No Communication and not suitable for the role', 7, '0000-00-00 00:00:00', 1),
(3923, 3944, 59, 5, 0, 'Will Not fit for our role', 50, '0000-00-00 00:00:00', 1),
(3924, 4011, 59, 5, 0, 'Good in Communication, Same company with Dilshad begum.Sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(3925, 4004, 8, 5, 0, 'Communication is below avg. exp sal is 30K+, not that much knowledge as MIS exc. but he has sales exp and not interested in sales.', 7, '0000-00-00 00:00:00', 1),
(3926, 4003, 8, 4, 2, 'check for RM profile.he Pronounced he will not travel more than 30 km per day,', 7, '0000-00-00 00:00:00', 1),
(3927, 3994, 8, 5, 0, 'has 90days notice. will not suite for RM/RE. has exp but no knowledge. no convincing skill too.', 7, '0000-00-00 00:00:00', 1),
(3928, 4003, 40, 5, 2, 'Not fit for Job', 8, '2021-03-24 01:31:40', 1),
(3929, 4015, 8, 5, 0, 'no clarity in voice. will not suite for sales process, looking for non sales. will not sustain.', 7, '0000-00-00 00:00:00', 1),
(3930, 4016, 8, 5, 0, 'language is not good, no clarity in speech, mother Tongue is telugu. no understanding. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3931, 4017, 8, 5, 0, 'fresher, low voice, has exp in mobile sales will not suite for our process', 7, '0000-00-00 00:00:00', 1),
(3932, 4021, 8, 5, 0, 'Pronunciation is not clear, mother tounge is sowrashtra. Attitude is not good. tapping the table while taking will not suite for sales profile. has 5yr exp in showroom sales.', 7, '0000-00-00 00:00:00', 1),
(3933, 4020, 8, 5, 0, 'not interested in field sales, will not suite for our process, expt sal is18K which will not suite for CRM', 7, '0000-00-00 00:00:00', 1),
(3934, 3961, 8, 3, 0, 'Selected With CTC 1,80,000 Gross- 15000,TH - 14250', 59, '2021-03-24 08:01:45', 1),
(3935, 3971, 59, 7, 0, 'Selected for Ramesh Team with CTC- 176844 Gross - 14737 TH - 14000', 17, '2021-03-24 08:25:04', 1),
(3936, 3971, 8, 3, 0, 'Selected For Ramesh Team With CTC- 176844 Gross - 14737 TH - 14000', 59, '2021-03-25 10:15:36', 1),
(3937, 3981, 53, 4, 0, 'Selected, 14k TH, Guru team. Pls cnfrm joining date', 20, '2021-03-25 10:19:27', 1),
(3938, 4019, 59, 5, 0, 'Not open for Agreement,Core Data Analyst Will not sustain for our role', 50, '0000-00-00 00:00:00', 1),
(3939, 4009, 59, 5, 0, 'Communication ok,Core data Analyst profile,will not sustain for our role', 50, '0000-00-00 00:00:00', 1),
(3940, 4035, 8, 4, 3, 'check for RE, fresher and for arumbakkam ', 7, '0000-00-00 00:00:00', 1),
(3941, 4031, 59, 5, 0, 'Not open for Agreement, Core DA will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(3942, 4034, 8, 5, 0, 'language is not good, has showroom exp in joy alukkas for 3yrs.', 7, '0000-00-00 00:00:00', 1),
(3943, 4033, 8, 3, 0, '17k th 17894 mtc 214728y ctc an for guru team', 7, '0000-00-00 00:00:00', 1),
(3944, 4039, 8, 5, 3, 'he has sales exp but not relevant and will not suite for our process, little bit slow.', 7, '0000-00-00 00:00:00', 1),
(3945, 4040, 8, 5, 0, 'will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(3946, 4041, 8, 5, 0, 'will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(3947, 4025, 59, 4, 0, 'Good in Communication, open for Agreement, Can Try for Coordinator Data Management position', 7, '0000-00-00 00:00:00', 1),
(3948, 4033, 20, 4, 0, 'seems not suitable for RE for the desired package, kindly check.', 8, '2021-03-25 01:38:17', 1),
(3949, 4035, 53, 1, 0, NULL, 8, '2021-03-25 01:41:45', 1),
(3950, 4026, 59, 5, 0, 'Will not suit for our role', 7, '0000-00-00 00:00:00', 1),
(3951, 4030, 59, 2, 0, 'Keen to learn Mern, should come back with the confirmation for the Agreement', 50, '0000-00-00 00:00:00', 1),
(3952, 3996, 59, 5, 0, 'No Local language, Much with Data Science and the expectation is high', 50, '0000-00-00 00:00:00', 1),
(3953, 4018, 59, 5, 0, 'Average Communication,Sustainability doubt', 50, '0000-00-00 00:00:00', 1),
(3954, 4025, 54, 2, 0, 'Okay, she will back on ist week of apirl', 59, '2021-03-25 04:51:59', 1),
(3955, 4036, 8, 3, 0, '13k ctc and for ramesh team', 7, '0000-00-00 00:00:00', 1),
(3956, 4036, 53, 4, 0, 'Selected for RE, Arumbakkam, pls cnfrm DOJ and sal', 8, '2021-03-25 05:01:53', 1),
(3957, 4028, 59, 5, 0, 'No Communication,Very Slow will not fit for our Role', 7, '0000-00-00 00:00:00', 1),
(3958, 4042, 41, 4, 0, '50-50 try', 7, '0000-00-00 00:00:00', 1),
(3959, 4043, 41, 5, 0, 'looking for non voice', 7, '0000-00-00 00:00:00', 1),
(3960, 4037, 41, 5, 0, 'Not at all speaking', 7, '0000-00-00 00:00:00', 1),
(3961, 3966, 41, 5, 0, 'No Response', 41, '2021-03-25 05:10:00', 1),
(3962, 3967, 41, 5, 0, 'No response', 41, '2021-03-25 05:10:55', 1),
(3963, 4042, 8, 5, 3, 'very slow and will not suite for our process and will not do calling.', 41, '2021-03-25 05:11:59', 1),
(3964, 3892, 59, 5, 0, 'Got rejected in the client Interview', 59, '2021-03-25 05:20:56', 1),
(3965, 3856, 59, 5, 0, 'Didnxquott Come Back After 2 Days with the confirmation for the service Agreement', 59, '2021-03-25 05:23:23', 1),
(3966, 4033, 53, 4, 0, 'selected. 17k TH. guru team', 20, '2021-03-25 06:45:31', 1),
(3967, 4013, 59, 5, 0, '50/50,Interviewed by Reyaz for the 2nd level and got rejected', 50, '0000-00-00 00:00:00', 1),
(3968, 4050, 8, 5, 0, 'very poor lang, will not suite for our process', 7, '0000-00-00 00:00:00', 1),
(3969, 4001, 59, 5, 0, 'Not open for Agreement,also not fit much for our DA Role', 7, '0000-00-00 00:00:00', 1),
(3970, 4051, 8, 5, 0, 'well prepared script for Interview alone, no practical knowledge, stammering while Speaking', 7, '0000-00-00 00:00:00', 1),
(3971, 3954, 8, 5, 0, 'well Prepared script about self intro, other than that she is not speaking.', 7, '0000-00-00 00:00:00', 1),
(3972, 4052, 8, 5, 0, 'prefer Backed process. will not suite for our process. will not sustain. worked in insurance but doesnt know any terms', 7, '0000-00-00 00:00:00', 1),
(3973, 4053, 8, 4, 3, 'fresher, has 3m exp in mobile sales, check his pronunciation and check for RE.', 7, '0000-00-00 00:00:00', 1),
(3974, 4054, 8, 5, 2, 'will not suite fro sales process, from thiruvallur. no sales skill.', 7, '0000-00-00 00:00:00', 1),
(3975, 3999, 59, 5, 0, 'not suits for our Data Analyst Role', 7, '0000-00-00 00:00:00', 1),
(3976, 4048, 8, 5, 0, 'has 6m exp but no knowledge and exp is 25k. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(3977, 4055, 8, 5, 0, 'left before 2nd round interview.', 7, '0000-00-00 00:00:00', 1),
(3978, 4057, 8, 9, 0, 'she came for CRM but interesrted in IT. Check with this profile', 7, '0000-00-00 00:00:00', 1),
(3979, 4053, 57, 5, 0, 'not interested for telecalling.. ', 8, '2021-03-26 01:22:29', 1),
(3980, 4063, 8, 5, 0, 'language is not good. will not suite for process.', 7, '0000-00-00 00:00:00', 1),
(3981, 4060, 8, 5, 0, 'too long from vgp, vettuvakani', 7, '0000-00-00 00:00:00', 1),
(3982, 4044, 59, 5, 0, 'No communication,will not fit much for our role', 7, '0000-00-00 00:00:00', 1),
(3983, 4059, 8, 5, 0, 'fresher, will not suite for this profile.', 7, '0000-00-00 00:00:00', 1),
(3984, 3956, 8, 5, 0, 'no rsponse', 34, '2021-03-26 02:50:50', 1),
(3985, 4064, 8, 3, 0, ' For Veben Team, With CTC - 3,21,696 Gross - 26808.', 7, '0000-00-00 00:00:00', 1),
(3986, 4064, 40, 4, 4, 'Fit for Job. Expected 24k/April 1st joining. Family background (Father Late) Taking care about family now. Seems professional.', 8, '2021-03-26 03:11:25', 1),
(3987, 3983, 8, 3, 0, '16k th, 16842 ctc for ramesh team', 17, '2021-03-26 03:20:03', 1),
(3988, 4064, 18, 7, 4, 'Selected for Veben Team. Joining date on 4th April. Expected salary is 25K but we can negotiate and give 23 take home Plus PF.\n', 40, '2021-03-26 04:02:20', 1),
(3989, 3981, 34, 7, 4, 'selected', 53, '2021-03-26 04:53:04', 1),
(3990, 4033, 34, 7, 4, 'selected', 53, '2021-03-26 04:54:30', 1),
(3991, 4056, 8, 5, 0, 'will not suite for calling. fresher.', 7, '0000-00-00 00:00:00', 1),
(3992, 4057, 27, 2, 0, 'Task has to be given.', 8, '2021-03-26 05:49:29', 1),
(3993, 4072, 8, 5, 0, 'will not suite for this profile, ', 50, '0000-00-00 00:00:00', 1),
(3994, 4071, 8, 5, 0, 'will not suite for calling and sales', 50, '0000-00-00 00:00:00', 1),
(3995, 4078, 8, 5, 0, 'no clarity in speech, will not suite for this profile.', 7, '0000-00-00 00:00:00', 1),
(3996, 4076, 13, 5, 2, 'not suitable for tele sales', 50, '0000-00-00 00:00:00', 1),
(3997, 4075, 13, 5, 2, 'Communication skill low', 50, '0000-00-00 00:00:00', 1),
(3998, 4073, 19, 7, 4, 'final round Banu Mam', 50, '0000-00-00 00:00:00', 1),
(3999, 3955, 29, 1, 0, NULL, 31, '2021-03-27 01:29:53', 1),
(4000, 4036, 17, 4, 4, 'Need to finalize salary and joining date ', 53, '2021-03-27 02:21:26', 1),
(4001, 4079, 8, 5, 3, 'has 2yr exp in collection exp sal is 17k ', 7, '0000-00-00 00:00:00', 1),
(4002, 4036, 8, 3, 0, '13k ctc and for ramesh team', 17, '2021-03-27 03:12:02', 1),
(4003, 4038, 69, 5, 0, 'Candidate not suitable for our preferred role.', 7, '0000-00-00 00:00:00', 1),
(4004, 3998, 69, 2, 0, 'Need to interview few more candidates to find the best out of them.', 7, '0000-00-00 00:00:00', 1),
(4005, 3981, 8, 3, 0, '14737 mctc 14k th for guru team', 34, '2021-03-27 05:04:27', 1),
(4006, 4033, 8, 3, 0, '17k th 17894 mtc 214728y ctc an for guru team', 34, '2021-03-27 05:25:32', 1),
(4007, 3625, 69, 5, 0, 'Sustainability issue', 69, '2021-03-27 05:41:07', 1),
(4008, 4067, 59, 5, 0, 'Not suits for BDM, Sustainability doubt and into different field', 7, '0000-00-00 00:00:00', 1),
(4009, 4084, 59, 5, 0, 'Task Partially Completed. He Can Learn Quickly. We Can Consider As A Intern For 1st 3 Months. After That 2.3 Months Should Be Work Here. Not open with AGreement and the Focus on the pay also', 7, '0000-00-00 00:00:00', 1),
(4010, 4086, 59, 2, 0, 'Should come again for 2nd level interview', 7, '0000-00-00 00:00:00', 1),
(4011, 4091, 8, 5, 2, 'will not suite for RM profile,', 7, '0000-00-00 00:00:00', 1),
(4012, 4081, 59, 4, 0, '3 yrs Exp check for UI UX ', 7, '0000-00-00 00:00:00', 1),
(4013, 4093, 8, 5, 0, 'will not suite for collection exe. previous package is 45k but not interested in sales.', 7, '0000-00-00 00:00:00', 1),
(4014, 4092, 8, 5, 0, 'will not suite for CRM, looking for acc job, will not sustain.expt sal is 15k.', 7, '0000-00-00 00:00:00', 1),
(4015, 4089, 59, 5, 0, 'Not open for the agreement,exp high pay', 7, '0000-00-00 00:00:00', 1),
(4016, 4095, 8, 5, 0, 'very slow and Planing to go canada asap, ', 7, '0000-00-00 00:00:00', 1),
(4017, 4096, 8, 4, 3, 'check for crm thiruvallur', 7, '0000-00-00 00:00:00', 1),
(4018, 4097, 8, 4, 3, 'check for cRM, fresher', 7, '0000-00-00 00:00:00', 1),
(4019, 4098, 8, 5, 0, 'planning to do MBA in part time. she is not very sure about it and the profile.', 7, '0000-00-00 00:00:00', 1),
(4020, 1196, 41, 5, 0, 'sALARY DEMAND AND WILL NOT SUSTAIN', 7, '0000-00-00 00:00:00', 1),
(4021, 4087, 59, 5, 0, 'No Communication will not much fit for our Digital Marketing', 60, '0000-00-00 00:00:00', 1),
(4022, 4104, 41, 5, 0, 'WILL NOT SUITE FOR HR', 7, '0000-00-00 00:00:00', 1),
(4023, 4047, 59, 2, 0, 'Should check with parents on the service Agreement,Also the CTC expectation is high', 7, '0000-00-00 00:00:00', 1),
(4024, 4082, 59, 5, 0, 'Not open for the Agreement Fresher exp 12-15K', 7, '0000-00-00 00:00:00', 1),
(4025, 4099, 8, 4, 3, 'check for RE, fresher for us, expt is 16k.', 7, '0000-00-00 00:00:00', 1),
(4026, 4108, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(4027, 4107, 8, 2, 0, 'looking for front office will not suite for sales, expt is 12k. no 2w.', 7, '0000-00-00 00:00:00', 1),
(4028, 4106, 41, 4, 0, 'Check for Sales', 7, '0000-00-00 00:00:00', 1),
(4029, 4105, 8, 5, 0, 'too long from mathuranthagam', 7, '0000-00-00 00:00:00', 1),
(4030, 4094, 8, 5, 0, 'voice and modulation is not good, will not suite for BDM, no clarity in speech.', 7, '0000-00-00 00:00:00', 1),
(4031, 4073, 53, 5, 0, 'Not intrested', 19, '2021-03-29 03:43:23', 1),
(4032, 4106, 8, 5, 0, 'will not join.', 41, '2021-03-29 03:43:31', 1),
(4033, 4099, 57, 4, 0, 'candidate is ok .. kindly negotiate the salary ', 8, '2021-03-29 04:02:24', 1),
(4034, 4096, 53, 5, 0, 'sustainability issue.', 8, '2021-03-29 04:33:36', 1),
(4035, 4106, 53, 4, 0, 'he came for MIS but he s nt suir for mis, intrested in sales. pls check for RE', 8, '2021-03-29 04:37:59', 1),
(4036, 4097, 13, 5, 0, 'two person coming for a interview but one person only selected but the selected person also not coming for joining ', 8, '2021-03-29 04:40:39', 1),
(4037, 4099, 53, 5, 0, 'NI in bond', 57, '2021-03-29 06:13:21', 1),
(4038, 4081, 27, 5, 0, 'He is not good in basic things.', 59, '2021-03-29 06:23:10', 1),
(4039, 4084, 27, 7, 0, 'task partially completed. he can learn quickly. we can consider as a intern for 1st 3 months. after that 2.3 months should be work here. ', 59, '2021-03-29 06:24:09', 1),
(4040, 4118, 8, 4, 0, 'check for crm telephonic', 7, '0000-00-00 00:00:00', 1),
(4041, 4106, 17, 4, 4, 'After 7 days will confirm the employee ', 53, '2021-03-30 11:04:21', 1),
(4042, 4115, 59, 2, 0, 'Should check for Service Agreement\n', 50, '0000-00-00 00:00:00', 1),
(4043, 4124, 8, 5, 0, 'not speaking up. will not suite for crm. from mathuravoyal long distance too.', 7, '0000-00-00 00:00:00', 1),
(4044, 4125, 8, 5, 0, 'very childish and will not suite for our process, ', 7, '0000-00-00 00:00:00', 1),
(4045, 4128, 59, 5, 0, 'Not suits for our Digital Marketing, No Communication not open for the Service Agreement\n', 7, '0000-00-00 00:00:00', 1),
(4046, 4129, 8, 2, 0, 'has to check', 7, '0000-00-00 00:00:00', 1),
(4047, 4132, 8, 5, 0, 'looking for acc xxamp fin. non voice', 7, '0000-00-00 00:00:00', 1),
(4048, 4136, 8, 5, 3, 'will not suite for crm/re. not speaking up and not convincing.', 7, '0000-00-00 00:00:00', 1),
(4049, 4133, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(4050, 4113, 8, 2, 0, 'hold for next round', 7, '0000-00-00 00:00:00', 1),
(4051, 4064, 59, 7, 0, 'Selected for Veben Team, with CTC - 3,21,696 Gross - 26808', 18, '2021-03-30 01:20:51', 1),
(4052, 4119, 59, 2, 0, 'Will come back after checking for the Service Agreement', 50, '0000-00-00 00:00:00', 1),
(4053, 4122, 8, 3, 0, ' For Collection - 151584 With Gross - 12632,TH - 12000', 7, '0000-00-00 00:00:00', 1),
(4054, 4131, 8, 5, 0, 'looking for acc @ fin,. non voice', 7, '0000-00-00 00:00:00', 1),
(4055, 4134, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4056, 4126, 8, 2, 0, 'hold, for HR/MF. exp is 4.5l for MF and 2.5l for HR', 7, '0000-00-00 00:00:00', 1),
(4057, 4123, 8, 2, 0, 'has to check', 7, '0000-00-00 00:00:00', 1),
(4058, 4062, 8, 5, 0, 'will not sustain, switched company purely for salary and completely into banking no insurance exp. ', 7, '0000-00-00 00:00:00', 1),
(4059, 4122, 53, 7, 0, 'Selected for collection, sal 12k TH.', 8, '2021-03-30 03:34:29', 1),
(4060, 3725, 8, 5, 0, 'no response', 8, '2021-03-30 03:46:16', 1),
(4061, 4130, 8, 5, 0, 'Profile Will Not Match For Data Analyst. Will Not Suite For CRM/BDM. No Understanding And Patience. ', 7, '0000-00-00 00:00:00', 1),
(4062, 4118, 35, 5, 0, 'Telephonic Round Completed, not satisfied, Poor Communication and Industry Knowledge, ', 8, '2021-03-30 06:10:48', 1),
(4063, 2996, 8, 5, 0, 'no response', 29, '2021-03-30 06:53:25', 1),
(4064, 2996, 29, 4, 0, 'Not Met', 29, '2021-03-30 06:53:25', 1),
(4065, 3885, 59, 7, 0, 'Selected for BDM role,CTC - 5,49,600 Gross - 45,800 TH - 41992', 29, '2021-03-30 06:54:19', 1),
(4066, 3689, 8, 5, 0, 'profile was selected but he is not Interested. due to package', 29, '2021-03-30 06:56:01', 1),
(4067, 3692, 8, 2, 0, 'for agency BDM', 29, '2021-03-30 06:56:17', 1),
(4068, 3723, 8, 5, 0, 'will not suite for our prosess. gaurav rejected him', 29, '2021-03-30 06:57:16', 1),
(4069, 3912, 8, 3, 0, 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', 29, '2021-03-30 06:57:41', 1),
(4070, 4150, 8, 4, 0, 'No eng. communication. has 2yr exp in amc and MF. have telephonic interview', 50, '0000-00-00 00:00:00', 1),
(4071, 4150, 35, 5, 0, 'Telephonic Round Completed, Not Satisfied, Poor Communication And Industry Knowledge, ', 8, '2021-03-31 10:20:28', 1),
(4072, 4142, 59, 5, 0, 'Not open for Agreement and the expected pay is very high', 7, '0000-00-00 00:00:00', 1),
(4073, 4088, 59, 5, 0, 'Scheduled for 2nd round of Interview, but left without attending the interview ', 7, '0000-00-00 00:00:00', 1),
(4074, 4110, 59, 4, 0, 'Good in Communication,check for Digital Marketing', 7, '0000-00-00 00:00:00', 1),
(4075, 4152, 8, 4, 3, 'fresher, check for crm, exp 10k', 7, '0000-00-00 00:00:00', 1),
(4076, 4106, 59, 7, 0, 'CTC - 168000,Gross- 14000', 17, '2021-03-31 11:06:39', 1),
(4077, 4146, 59, 4, 0, 'Fresher Profile, check for PHP only basic knowledge', 50, '0000-00-00 00:00:00', 1),
(4078, 4143, 59, 4, 0, 'Fresher basic knowledge check for PHP open for Agreeement', 50, '0000-00-00 00:00:00', 1),
(4079, 4153, 8, 5, 3, 'will not suite for our process sales. Observation is poor.', 50, '0000-00-00 00:00:00', 1),
(4080, 4147, 59, 4, 0, 'Fresher, Keen to learn in the areas of Digital Marketing. Open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4081, 4158, 8, 3, 0, 'For Syed Team CTC - 1,51,584 Gross - 12632 TH- 12000 ', 50, '0000-00-00 00:00:00', 1),
(4082, 4161, 8, 5, 0, 'poor comm. body language and manner is not good, slow learner. expt is 15k+', 50, '0000-00-00 00:00:00', 1),
(4083, 4157, 8, 5, 0, 'looking for PHP but no knowledge in PHP, with basics. told him to learn and then attend interview later.', 50, '0000-00-00 00:00:00', 1),
(4084, 4163, 8, 5, 3, 'will not suite for calling, not interested in sales, no clarity in speech.', 50, '0000-00-00 00:00:00', 1),
(4085, 4159, 8, 5, 0, 'will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4086, 4164, 8, 5, 0, 'looking for acc xxamp fin. native is thanjavur', 50, '0000-00-00 00:00:00', 1),
(4087, 4156, 8, 4, 3, 'has 2yr calling exp, fresher for us, check for RM', 50, '0000-00-00 00:00:00', 1),
(4088, 4138, 59, 3, 0, 'Selected as an intern for 3 months, after intern will continue with employment and the service agreement for 3.6 yrs. Salary will be confirmed after 3 months of internship', 50, '0000-00-00 00:00:00', 1),
(4089, 4101, 59, 5, 0, 'Not open for the agreement,have a plan to go oversees for higher education', 50, '0000-00-00 00:00:00', 1),
(4090, 4158, 57, 4, 0, 'candidate is ok .. kindly negotiate the salary', 8, '2021-03-31 01:30:22', 1),
(4091, 4152, 13, 5, 2, 'she is not fit for telesales', 8, '2021-03-31 01:31:41', 1),
(4092, 4156, 29, 1, 0, NULL, 8, '2021-03-31 01:35:07', 1),
(4093, 4158, 53, 7, 0, 'selected for ayed team, 13k ctc. pls cnfm doj', 57, '2021-03-31 03:02:06', 1),
(4094, 4167, 8, 5, 2, 'will not suite for sales, no Convincing and confidence. exp is 20k+', 50, '0000-00-00 00:00:00', 1),
(4095, 4165, 8, 5, 2, 'no knowledge in sales, will not suite for our process, 2yrs in equitas finance. ', 50, '0000-00-00 00:00:00', 1),
(4096, 4084, 59, 5, 0, 'Task Partially Completed. He Can Learn Quickly. We Can Consider As A Intern For 1st 3 Months. After That 2.3 Months Should Be Work Here. Not open with AGreement and the Focus on the pay also', 27, '2021-03-31 07:20:38', 1),
(4097, 3730, 27, 5, 0, 'Task not Completed.', 27, '2021-03-31 07:22:18', 1),
(4098, 4138, 27, 7, 0, 'Shortlisted. 1st 3 months will be consider as an intern.', 59, '2021-04-01 09:53:46', 1),
(4099, 4147, 69, 5, 0, 'The candidate wonxquott sustain the long-term', 59, '2021-04-01 09:57:18', 1),
(4100, 4110, 69, 5, 0, 'The candidate wonxquott sustain for Long-term', 59, '2021-04-01 09:58:53', 1),
(4101, 4143, 27, 2, 0, 'Will learn and come within one week.', 59, '2021-04-01 10:02:21', 1),
(4102, 4146, 27, 2, 0, 'Will Learn And Come Within One Week.', 59, '2021-04-01 10:03:12', 1),
(4103, 4120, 59, 5, 0, 'Not much suitable for UI UX Position, No exp in Javascript, No knowledge related to UX Design - Photoshop/Illustrator', 50, '0000-00-00 00:00:00', 1),
(4104, 4138, 59, 3, 0, 'Selected as an intern for 3 months, after intern will continue with employment and the service agreement for 3.6 yrs. Salary will be confirmed after 3 months of internship', 27, '2021-04-01 10:19:12', 1),
(4105, 4154, 8, 4, 2, 'already attended interview 4 months back, no sustainability and not clear about his existing exp., expt is 25k, ', 50, '0000-00-00 00:00:00', 1),
(4106, 3885, 8, 3, 0, 'Selected For BDM Role,CTC - 5,49,600 Gross - 45,800 TH - 41992', 59, '2021-04-01 11:16:10', 1),
(4107, 4176, 8, 4, 3, 'fresher for us, check with his sales skills, expt. is 12-15k', 50, '0000-00-00 00:00:00', 1),
(4108, 4172, 59, 5, 0, 'Not open for Agreement,35 yrs Age 2 yrs Exp Expecting 25K TH\n', 50, '0000-00-00 00:00:00', 1),
(4109, 4177, 8, 5, 0, 'will not suite for calling. not interested in target base job.', 50, '0000-00-00 00:00:00', 1),
(4110, 4183, 8, 5, 0, 'Preparing for govt exams for past 2yrs, time being looking for job. doing her relevant courses in chennai.', 50, '0000-00-00 00:00:00', 1),
(4111, 4176, 19, 5, 1, 'not fit for sales', 8, '2021-04-01 02:55:35', 1),
(4112, 4193, 59, 5, 0, 'Sustainability Doubt, Mail Comm not upto the mark', 60, '0000-00-00 00:00:00', 1),
(4113, 4180, 59, 4, 0, 'Fresher Profile, check for PHP only basic knowledge', 60, '0000-00-00 00:00:00', 1),
(4114, 4175, 59, 5, 0, 'Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(4115, 4179, 59, 5, 0, 'Not suits for our UI UX Position', 60, '0000-00-00 00:00:00', 1),
(4116, 4149, 59, 5, 0, 'Not suits for our Role, No Basic knowledge', 60, '0000-00-00 00:00:00', 1),
(4117, 4186, 59, 5, 0, 'Not suits for our role,Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(4118, 4145, 59, 5, 0, 'Rejected in the System Task by Sathish', 60, '0000-00-00 00:00:00', 1),
(4119, 4187, 59, 5, 0, 'Mail Communication not upto the mark', 50, '0000-00-00 00:00:00', 1),
(4120, 4154, 40, 5, 2, 'Candidate not fit for the Job', 8, '2021-04-05 10:32:39', 1),
(4121, 4154, 8, 4, 2, 'already attended interview 4 months back, no sustainability and not clear about his existing exp., expt is 25k, ', 8, '2021-04-05 10:32:39', 1),
(4122, 4191, 59, 2, 0, '50/50 on the agreement, High Pay Expectation', 7, '0000-00-00 00:00:00', 1),
(4123, 4202, 8, 2, 0, 'for next round', 7, '0000-00-00 00:00:00', 1),
(4124, 4203, 8, 4, 0, 'check for MF-coordinator. exp is 18k-20k. fresher for us,', 7, '0000-00-00 00:00:00', 1),
(4125, 4204, 8, 5, 0, 'will not suite for our profile. he was not into sales completely in training and fashion designing with qC ', 50, '0000-00-00 00:00:00', 1),
(4126, 4203, 35, 4, 0, 'Selected for Next Round, negotiate the Salary bcz she is a Fresher for Our Industry, Communication and Knowledge is Good, ', 8, '2021-04-05 12:32:00', 1),
(4127, 4208, 8, 5, 1, 'will not suite for our process. ', 7, '0000-00-00 00:00:00', 1),
(4128, 4207, 53, 2, 0, 'saravana asked one day time to decide, becz her fiancee working in star health as a TL', 7, '0000-00-00 00:00:00', 1),
(4129, 4206, 8, 2, 0, 'has to discuss about her salary with family', 7, '0000-00-00 00:00:00', 1),
(4130, 4181, 8, 4, 3, 'check for RM. has exp in insurance. exp is 20k.', 7, '0000-00-00 00:00:00', 1),
(4131, 4201, 8, 2, 0, 'LEFT BEFORE INTERVIEW', 7, '0000-00-00 00:00:00', 1),
(4132, 4210, 8, 5, 0, 'Looking For Non Voice Acc And Fin.', 7, '0000-00-00 00:00:00', 1),
(4133, 4214, 8, 5, 0, 'looking for non voice acc and Fin.', 7, '0000-00-00 00:00:00', 1),
(4134, 4218, 59, 4, 0, 'Check for Tiruvallur Location', 7, '0000-00-00 00:00:00', 1),
(4135, 4205, 59, 4, 0, 'Check for MF, have Exp in MF', 7, '0000-00-00 00:00:00', 1),
(4136, 4211, 59, 5, 0, 'Not interested for Sales', 7, '0000-00-00 00:00:00', 1),
(4137, 4215, 8, 5, 2, 'will not suite for our process, language is not convincing.', 7, '0000-00-00 00:00:00', 1),
(4138, 4216, 59, 5, 0, 'Expectation is High, Not ready to negotiate', 7, '0000-00-00 00:00:00', 1),
(4139, 4217, 59, 5, 0, 'Sustainability Doubt, High CTC Expectation', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(4140, 4212, 8, 5, 2, 'language is not good, will not suite for our process. currently working in justdail for past 2m, ', 7, '0000-00-00 00:00:00', 1),
(4141, 4219, 8, 4, 3, 'fresher for calling, no degree and high job need. for thiruvallur.', 7, '0000-00-00 00:00:00', 1),
(4142, 4181, 31, 4, 3, 'recommended for next round', 8, '2021-04-05 01:42:15', 1),
(4143, 4219, 53, 4, 0, 'pls check sustainability, ok for CRM thiruvallur branch', 8, '2021-04-05 02:59:28', 1),
(4144, 4220, 8, 5, 0, 'dont even has resume with him, Just like that came for interview with his friend.', 7, '0000-00-00 00:00:00', 1),
(4145, 3912, 59, 7, 0, 'Selected with CTC - 1,50,000 Gross - 12500 TH - 11875', 8, '2021-04-05 05:14:36', 1),
(4146, 3912, 8, 3, 0, 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', 8, '2021-04-05 05:14:36', 1),
(4147, 4122, 59, 7, 0, 'Selected for Collection - 151584 with Gross - 12632,TH - 12000', 53, '2021-04-05 05:23:26', 1),
(4148, 4158, 59, 7, 0, 'Selected with CTC - 1,51,584 Gross - 12632 TH- 12000 ', 53, '2021-04-05 05:24:26', 1),
(4149, 4219, 14, 7, 4, 'salary 11k .need to check joining date .shortlisted for thiruvallur branch', 53, '2021-04-05 05:26:19', 1),
(4150, 4217, 11, 4, 0, 'candidate communication is ok ...have to check the sustainbility and salary package ', 59, '2021-04-05 07:20:54', 1),
(4151, 4216, 14, 7, 4, 'salary 13k,she is already working on a notice period in an existing company.need to check joining date', 59, '2021-04-05 07:21:54', 1),
(4152, 4218, 53, 5, 0, 'not open her mouth also', 59, '2021-04-05 07:23:40', 1),
(4153, 4205, 35, 5, 0, 'he Donxquott have a much Knowledge in MF and Communication also Poor, even he Donxquott know what is AMC and RTA. ', 59, '2021-04-05 07:25:56', 1),
(4154, 4180, 27, 2, 0, 'We can try as a php developer fresher. he has to improve his skill in php. If interested he can come once again for the interview. ', 59, '2021-04-05 07:29:48', 1),
(4155, 4203, 59, 5, 0, 'High CTC Expectation for MF position, Fresher Profile Min TH exp is 15-16 K', 35, '2021-04-05 08:00:43', 1),
(4156, 4226, 64, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4157, 4231, 53, 5, 0, 'Not suit for HR', 50, '0000-00-00 00:00:00', 1),
(4158, 4230, 53, 5, 0, 'not suit fr HR', 50, '0000-00-00 00:00:00', 1),
(4159, 4232, 8, 5, 0, 'tamil comm. is not good. no clarity in pronunciation. body lang. is also not good.', 50, '0000-00-00 00:00:00', 1),
(4160, 4233, 8, 5, 0, 'no response will not join', 50, '0000-00-00 00:00:00', 1),
(4161, 4238, 8, 4, 3, '7+yr exp in sales, fresher for us. expt is 26 - 28k ctc.', 50, '0000-00-00 00:00:00', 1),
(4162, 4234, 8, 5, 0, 'will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4163, 4235, 8, 4, 0, 'has LI exp. kindly cross check for RM profile/BDM agency', 50, '0000-00-00 00:00:00', 1),
(4164, 4236, 8, 5, 0, 'not interested in sales. no knowledge in MF. he was into qC', 50, '0000-00-00 00:00:00', 1),
(4165, 4240, 8, 5, 0, 'planning to do her course by next week, interested in IT job, will not sustain for sales. ', 50, '0000-00-00 00:00:00', 1),
(4166, 2407, 53, 5, 0, 'ni in sales', 50, '0000-00-00 00:00:00', 1),
(4167, 4237, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(4168, 4209, 59, 5, 0, 'Fresher for UI,Health Issue Sustainability Doubt', 50, '0000-00-00 00:00:00', 1),
(4169, 4241, 53, 5, 0, 'Attitide', 50, '0000-00-00 00:00:00', 1),
(4170, 4227, 59, 5, 0, 'High Salary Expectation,Not open for Long Career', 50, '0000-00-00 00:00:00', 1),
(4171, 4243, 41, 4, 0, 'Check for CRM', 50, '0000-00-00 00:00:00', 1),
(4172, 4200, 59, 5, 0, 'No Exp Not ope n for Agreement', 50, '0000-00-00 00:00:00', 1),
(4173, 4223, 8, 5, 0, 'fresher, demanding atleast 14k th. ', 7, '0000-00-00 00:00:00', 1),
(4174, 4221, 8, 5, 0, 'will not suite for calling and he is not interested too, looking for collection job.', 7, '0000-00-00 00:00:00', 1),
(4175, 4247, 59, 5, 0, 'Will not sustain for a long,looking for Mechanical Core for time being looking for job', 50, '0000-00-00 00:00:00', 1),
(4176, 4213, 8, 5, 0, 'will not suite for calling and sales', 7, '0000-00-00 00:00:00', 1),
(4177, 4225, 8, 3, 0, '10k th Mtc10526, ctc 126312 for Muthu team', 7, '0000-00-00 00:00:00', 1),
(4178, 4224, 8, 5, 0, 'will not suite for sales process, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(4179, 3970, 8, 5, 0, 'no sales exp. exp sal is 18k. he was comfortable in dhubai job.', 7, '0000-00-00 00:00:00', 1),
(4180, 4235, 44, 1, 0, NULL, 8, '2021-04-07 04:35:43', 1),
(4181, 4238, 31, 5, 0, 'Not suitable for RM Profile', 8, '2021-04-07 04:39:37', 1),
(4182, 4233, 13, 7, 4, 'salary 10k, (joining date March 15th )', 8, '2021-04-07 04:41:09', 1),
(4183, 4250, 59, 5, 0, 'Good in Communication,Sustainability Doubt,not open for 2 yrs service Agree', 7, '0000-00-00 00:00:00', 1),
(4184, 4245, 59, 5, 0, 'Commucation Average,Mail Communication is not Good, Agreement should check with Family ', 50, '0000-00-00 00:00:00', 1),
(4185, 4257, 8, 5, 0, 'not speaking up. will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(4186, 4262, 8, 5, 0, 'will not suite for Calling and handle pressure', 7, '0000-00-00 00:00:00', 1),
(4187, 4263, 8, 5, 0, 'too long. singaperumalkovil', 7, '0000-00-00 00:00:00', 1),
(4188, 4256, 59, 5, 0, 'No Communication, Will not suit for our Role', 50, '0000-00-00 00:00:00', 1),
(4189, 4270, 8, 2, 0, 'for front office. exp is 18k', 50, '0000-00-00 00:00:00', 1),
(4190, 4265, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 xxamp TH - 10000', 50, '0000-00-00 00:00:00', 1),
(4191, 4268, 8, 5, 0, 'not speaking up keep on smiling and will not suite for calling. too long.', 7, '0000-00-00 00:00:00', 1),
(4192, 4259, 8, 5, 0, 'too long from singaperumal kovil', 7, '0000-00-00 00:00:00', 1),
(4193, 4278, 8, 4, 0, 'check for crm, fresher okay with 10k, check with sustainability. bcoz of her DMLT', 7, '0000-00-00 00:00:00', 1),
(4194, 4276, 8, 5, 0, 'will not suite for calling. ', 7, '0000-00-00 00:00:00', 1),
(4195, 4261, 8, 5, 0, 'very low voice. will not suite for calling. she is 19.', 7, '0000-00-00 00:00:00', 1),
(4196, 4275, 8, 2, 0, 'for RE', 7, '0000-00-00 00:00:00', 1),
(4197, 4272, 8, 4, 0, 'fresher good in convincing, check with crm profile.', 7, '0000-00-00 00:00:00', 1),
(4198, 4274, 8, 5, 0, 'will not suite for RM, 2.5 yr in acc. will not sustain for sales.', 7, '0000-00-00 00:00:00', 1),
(4199, 4264, 8, 5, 0, 'voice is not clear and no clarity. she is 19. will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(4200, 4279, 8, 2, 0, 'for HR rec. exp is 13k, fresher, 1yr exp in cameo', 50, '0000-00-00 00:00:00', 1),
(4201, 4280, 8, 4, 0, 'check for re, ha s6m sales exp and PPI. ', 7, '0000-00-00 00:00:00', 1),
(4202, 4233, 8, 5, 0, 'no response will not join', 13, '2021-04-08 12:53:12', 1),
(4203, 4281, 8, 5, 0, 'will not suite for calling, will not handle pressure. salary exp is high, already he was getting 18k in jk copier.', 7, '0000-00-00 00:00:00', 1),
(4204, 4273, 41, 2, 0, 'telephonic by Kayal', 7, '0000-00-00 00:00:00', 1),
(4205, 4275, 57, 4, 0, 'candidate is ok .. kindly negotiate the salary and confirm the joining date ... ', 8, '2021-04-08 01:05:38', 1),
(4206, 4282, 8, 2, 0, 'his voice is very feminie and has to check with it', 50, '0000-00-00 00:00:00', 1),
(4207, 4228, 59, 5, 0, 'Good in Communication, Interview by reyaz 2nd level , sustainability Doubt', 50, '0000-00-00 00:00:00', 1),
(4208, 4057, 27, 5, 0, 'No response from this candidate.', 27, '2021-04-08 02:40:37', 1),
(4209, 4143, 27, 5, 0, 'No Response From This Candidate.', 27, '2021-04-08 02:40:43', 1),
(4210, 4146, 27, 5, 0, 'No Response From This Candidate.', 27, '2021-04-08 02:40:52', 1),
(4211, 4277, 41, 4, 0, 'thiruvallur caller', 7, '0000-00-00 00:00:00', 1),
(4212, 4278, 14, 5, 1, 'not suitable for this profile', 8, '2021-04-08 02:59:00', 1),
(4213, 4252, 59, 5, 0, 'Communication OK, But for Agreement need to check with Family Max 1 yr Sustain', 50, '0000-00-00 00:00:00', 1),
(4214, 4244, 59, 5, 0, 'Communication Average,Not good in mail communications, Focus will be much into Banking Job will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(4215, 4286, 8, 2, 0, 'hold for BDM', 50, '0000-00-00 00:00:00', 1),
(4216, 4275, 53, 2, 0, 'need to check', 57, '2021-04-08 03:21:36', 1),
(4217, 4290, 8, 5, 0, 'native language and his pronunciation was not good. will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4218, 4289, 8, 4, 0, '6m exp in credit cars. check for crm. fresher', 50, '0000-00-00 00:00:00', 1),
(4219, 4289, 13, 5, 1, 'not suitable for telesales', 8, '2021-04-08 05:28:22', 1),
(4220, 4271, 8, 5, 0, 'will not join, not interested', 7, '0000-00-00 00:00:00', 1),
(4221, 4265, 14, 7, 4, 'salary 10k.check the joining date', 8, '2021-04-08 05:41:33', 1),
(4222, 4271, 14, 7, 3, 'salary 10k, need to check distance once.confirm the joining date', 8, '2021-04-08 05:43:56', 1),
(4223, 4287, 8, 3, 0, 'CTC - 126312, Gross-10526,TH-10000 for priyanka team', 7, '0000-00-00 00:00:00', 1),
(4224, 4287, 14, 7, 4, 'salary 10k. need to check the joining date', 8, '2021-04-08 05:45:40', 1),
(4225, 4272, 13, 5, 2, 'not suitable for telesales', 8, '2021-04-08 05:47:11', 1),
(4226, 4280, 24, 4, 0, 'CHECK WITH VOICE', 8, '2021-04-08 05:50:41', 1),
(4227, 4285, 8, 5, 0, 'will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(4228, 4106, 8, 5, 0, 'will not join.', 59, '2021-04-08 06:22:36', 1),
(4229, 4216, 59, 5, 0, 'Expectation is High, Not ready to negotiate', 14, '2021-04-08 06:24:28', 1),
(4230, 4219, 59, 5, 0, 'No response for a long, Dsicussed on the CTC earlier and her expectation is High', 14, '2021-04-08 06:25:57', 1),
(4231, 4287, 59, 7, 0, 'CTC - 126312, gross-10526,TH-10000', 14, '2021-04-08 06:40:54', 1),
(4232, 4271, 59, 7, 0, 'Selected - 126312 Gross - 10526 TH - 10000', 14, '2021-04-08 06:43:14', 1),
(4233, 3295, 8, 5, 0, 'no response', 8, '2021-04-09 10:05:25', 1),
(4234, 3690, 14, 7, 4, 'salary 10k . check joining date', 8, '2021-04-09 10:05:57', 1),
(4235, 3690, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 TH - 10000', 8, '2021-04-09 10:05:57', 1),
(4236, 3789, 8, 5, 0, 'no response.', 8, '2021-04-09 10:06:14', 1),
(4237, 4280, 53, 5, 0, 'not suit for sales', 24, '2021-04-09 10:25:44', 1),
(4238, 4196, 8, 2, 0, 'for RE', 7, '0000-00-00 00:00:00', 1),
(4239, 4295, 8, 5, 0, 'done his nism coures apart from this he knows nothind, for the past 4 yrs he was preparing for bank exams.', 7, '0000-00-00 00:00:00', 1),
(4240, 4301, 8, 5, 0, 'will not handle pressure, looking for non Target job.', 50, '0000-00-00 00:00:00', 1),
(4241, 4304, 8, 2, 0, 'mis. check and revert', 50, '0000-00-00 00:00:00', 1),
(4242, 4303, 8, 4, 3, 'check for crm, fresher 10k expt', 50, '0000-00-00 00:00:00', 1),
(4243, 4302, 8, 5, 2, 'very hyper active and he was into cine field. will not sustain for long period. ', 50, '0000-00-00 00:00:00', 1),
(4244, 4217, 59, 5, 0, 'Sustainability Doubt, High CTC Expectation', 11, '2021-04-09 11:36:29', 1),
(4245, 4265, 59, 7, 0, 'Selected with CTC - 126312 Gross - 10526 xxamp TH - 10000', 14, '2021-04-09 12:04:56', 1),
(4246, 3690, 59, 7, 0, 'Selected with CTC - 126312 Gross - 10526 TH - 10000', 14, '2021-04-09 12:13:39', 1),
(4247, 4305, 8, 2, 0, 'for collection. okay with 12k. 4yr exp in housing finance.', 50, '0000-00-00 00:00:00', 1),
(4248, 4308, 8, 5, 0, '2yr gap, looking for job bcoz she is bored at home. newly married. exp is 18k', 7, '0000-00-00 00:00:00', 1),
(4249, 4298, 8, 5, 0, 'looking for non voice. will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4250, 4225, 13, 7, 4, '10k TH,monday joining', 8, '2021-04-09 02:39:46', 1),
(4251, 4311, 8, 3, 0, 'Selected as Sourcing TL - 214740\nGross- 17895 TH - 17000', 7, '0000-00-00 00:00:00', 1),
(4252, 4255, 59, 5, 0, '2 yrs of UI Exp,but no know in detail,High Pay Expectation', 50, '0000-00-00 00:00:00', 1),
(4253, 4300, 8, 5, 0, 'not interested will not join', 7, '0000-00-00 00:00:00', 1),
(4254, 4300, 13, 7, 4, 'salary 10k TH,april 15th joining', 8, '2021-04-09 02:58:27', 1),
(4255, 4303, 14, 7, 4, 'salary 10k.confirm joining date', 8, '2021-04-09 02:59:58', 1),
(4256, 4312, 8, 4, 3, 'check for CRM, thiruvallur', 50, '0000-00-00 00:00:00', 1),
(4257, 4306, 8, 4, 3, 'check for re, expt is 15k th. ', 7, '0000-00-00 00:00:00', 1),
(4258, 4306, 57, 4, 0, 'candidate is ok ... kindly negotiate the salary ... and confirm the joining date', 8, '2021-04-09 03:04:57', 1),
(4259, 4196, 57, 4, 0, 'selected for the next round..but he is not attend the second round', 8, '2021-04-09 03:06:36', 1),
(4260, 4196, 53, 2, 0, 'need to check', 57, '2021-04-09 03:14:08', 1),
(4261, 4306, 53, 7, 0, '15k tH, selected for RE, syed team', 57, '2021-04-09 03:14:56', 1),
(4262, 4311, 53, 7, 0, 'sourcing TL, 17k TH, Elite.. Pls cnfrm the joining', 8, '2021-04-09 03:54:13', 1),
(4263, 4312, 14, 5, 2, 'not suitable for this profile', 8, '2021-04-09 03:56:17', 1),
(4264, 4064, 8, 3, 0, ' For Veben Team, With CTC - 3,21,696 Gross - 26808.', 59, '2021-04-09 04:46:46', 1),
(4265, 4311, 59, 7, 0, 'Selected for Sourcing TL - 214740\nGross- 17895 TH - 17000', 53, '2021-04-09 05:47:16', 1),
(4266, 4306, 59, 7, 0, 'Selected for Syed Team,CTC - 189468 Gross - 15789, TH - 15000', 53, '2021-04-09 05:47:51', 1),
(4267, 4207, 53, 5, 0, 'no response frm him', 53, '2021-04-09 05:53:48', 1),
(4268, 3977, 53, 5, 0, 'no response', 53, '2021-04-09 05:56:25', 1),
(4269, 4265, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 xxamp TH - 10000', 59, '2021-04-09 06:57:04', 1),
(4270, 4158, 8, 3, 0, 'For Syed Team CTC - 1,51,584 Gross - 12632 TH- 12000 ', 59, '2021-04-09 07:30:03', 1),
(4271, 4243, 14, 5, 0, 'not suitable for this profile ', 41, '2021-04-10 10:17:29', 1),
(4272, 4277, 14, 7, 4, 'salary 10k, thiruvallur branch, check the joining date', 41, '2021-04-10 10:19:14', 1),
(4273, 4253, 59, 5, 0, 'Will not sustain for a long, No focus on the particular position', 7, '0000-00-00 00:00:00', 1),
(4274, 4321, 8, 4, 3, 'check for crm has 2yr exp in karvy calling, expt is 13k. okay with 11k', 50, '0000-00-00 00:00:00', 1),
(4275, 4320, 8, 5, 0, 'will not suite for sales profile.', 50, '0000-00-00 00:00:00', 1),
(4276, 4225, 8, 3, 0, '10k th Mtc10526, ctc 126312 for Muthu team', 13, '2021-04-10 10:53:40', 1),
(4277, 4300, 8, 5, 0, 'not interested will not join', 13, '2021-04-10 10:54:53', 1),
(4278, 4324, 8, 3, 0, 'for muthu teamCTC- 1,32,636 Gross - 11053 Th - 10500', 50, '0000-00-00 00:00:00', 1),
(4279, 4326, 8, 5, 0, 'will not suite for CRM, no bile as RE. exp is14k', 50, '0000-00-00 00:00:00', 1),
(4280, 4322, 8, 5, 0, 'will not suite for this profile. knows only basics in stocks, doing his own trading and lost funds.', 50, '0000-00-00 00:00:00', 1),
(4281, 3942, 29, 1, 0, NULL, 31, '2021-04-10 11:15:32', 1),
(4282, 4181, 29, 1, 0, NULL, 31, '2021-04-10 11:17:53', 1),
(4283, 4325, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(4284, 4321, 13, 5, 2, 'Confidence Level very low \nnot suitable for telesales', 8, '2021-04-10 11:46:50', 1),
(4285, 4330, 8, 4, 3, 'check for re, fresher expt is 12k', 50, '0000-00-00 00:00:00', 1),
(4286, 4293, 8, 5, 0, 'not speaking up, will not suite for crm', 50, '0000-00-00 00:00:00', 1),
(4287, 4294, 8, 5, 0, 'not speaking up done her beautician course and looking Relevant profile, time being she is looking for job', 50, '0000-00-00 00:00:00', 1),
(4288, 4329, 8, 4, 3, 'check for crm thiruvallur, exp is 10k.', 50, '0000-00-00 00:00:00', 1),
(4289, 4331, 8, 5, 0, 'will not suite for any current , not speaking up and will not suite for calling and sales', 50, '0000-00-00 00:00:00', 1),
(4290, 4162, 8, 5, 0, 'will not suite for mis as well crm, actual salary is 10k got Reviced 3m before which is 12k, her expt is 18k. has 1.3yr in Personal loan.', 50, '0000-00-00 00:00:00', 1),
(4291, 4330, 57, 4, 0, 'candidate is ok ... kindly negatiate the salary and confirm the joining date ...', 8, '2021-04-10 01:20:39', 1),
(4292, 4329, 53, 5, 0, 'Looking for Nonvoice', 8, '2021-04-10 01:22:26', 1),
(4293, 4334, 8, 4, 3, 'check for RM, has exp in banking and finance. fresher for us.', 7, '0000-00-00 00:00:00', 1),
(4294, 4148, 59, 5, 0, 'Already attended for UI,System Task not completed,also not open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4295, 4310, 59, 5, 0, 'Fresher Little bit knowledge in HTML CSS ,No Javascript knowledge not open for Agreement too', 50, '0000-00-00 00:00:00', 1),
(4296, 3912, 8, 3, 0, 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', 59, '2021-04-10 03:40:19', 1),
(4297, 4122, 8, 3, 0, ' For Collection - 151584 With Gross - 12632,TH - 12000', 59, '2021-04-10 03:48:45', 1),
(4298, 4287, 8, 3, 0, 'CTC - 126312, Gross-10526,TH-10000 for priyanka team', 59, '2021-04-10 03:50:32', 1),
(4299, 4030, 59, 5, 0, 'Not open for Agreement, also he gpt another Offer', 59, '2021-04-10 04:42:43', 1),
(4300, 4047, 59, 5, 0, 'High CTC Exp,Sustainability Doubt', 59, '2021-04-10 04:43:59', 1),
(4301, 3794, 59, 5, 0, 'Rejected in the Client Interview', 59, '2021-04-10 04:45:50', 1),
(4302, 3857, 59, 5, 0, 'Client Round Rejected', 59, '2021-04-10 04:54:10', 1),
(4303, 3343, 59, 5, 0, 'Got Another Offer', 59, '2021-04-10 04:54:31', 1),
(4304, 3926, 60, 1, 0, NULL, 59, '2021-04-10 04:55:21', 1),
(4305, 3926, 59, 7, 0, 'Selected for Client,Nalam HCIT', 59, '2021-04-10 04:55:21', 1),
(4306, 3933, 60, 1, 0, NULL, 59, '2021-04-10 04:55:48', 1),
(4307, 3933, 59, 7, 0, 'Selected for Client - Nalam HCIT', 59, '2021-04-10 04:55:48', 1),
(4308, 4115, 59, 5, 0, 'Not open for SA,will not sustain for a long', 59, '2021-04-10 04:58:34', 1),
(4309, 4119, 59, 5, 0, 'Not open For The Service Agreement', 59, '2021-04-10 05:00:30', 1),
(4310, 3690, 8, 3, 0, 'For Priyanka team With CTC - 126312 Gross - 10526 TH - 10000', 59, '2021-04-10 05:17:49', 1),
(4311, 4271, 8, 5, 0, 'will not join, not interested', 59, '2021-04-10 05:29:29', 1),
(4312, 4311, 8, 3, 0, 'Selected as Sourcing TL - 214740\nGross- 17895 TH - 17000', 59, '2021-04-10 05:40:50', 1),
(4313, 4086, 59, 5, 0, 'He Committed to come for 2nd level interview ,but no show', 59, '2021-04-10 05:45:00', 1),
(4314, 4341, 8, 5, 0, 'will not suite for calling, very slow and gap while speaking', 7, '0000-00-00 00:00:00', 1),
(4315, 4327, 8, 5, 0, 'not int in field sales, looking for calling but expt is 15k. will not suite for this package', 7, '0000-00-00 00:00:00', 1),
(4316, 4330, 53, 7, 0, '13k ctc, syed team, pls cnfrm the joining.', 57, '2021-04-10 07:03:59', 1),
(4317, 4334, 44, 1, 0, NULL, 8, '2021-04-10 10:19:04', 1),
(4318, 4336, 41, 5, 0, 'will not suite for MF', 7, '0000-00-00 00:00:00', 1),
(4319, 4309, 59, 5, 0, 'Not suits for our role', 50, '0000-00-00 00:00:00', 1),
(4320, 4337, 41, 2, 0, 'only for ops - fresher to stcoks', 50, '0000-00-00 00:00:00', 1),
(4321, 4328, 41, 2, 0, 'can try for 1st start-vasu', 50, '0000-00-00 00:00:00', 1),
(4322, 4354, 53, 5, 0, 'very low voice and no confidence level, rejected.', 50, '0000-00-00 00:00:00', 1),
(4323, 4351, 53, 5, 0, 'not suit for telecalling, very low voice.', 50, '0000-00-00 00:00:00', 1),
(4324, 4349, 53, 4, 0, 'pls check for dealer', 50, '0000-00-00 00:00:00', 1),
(4325, 4352, 53, 7, 0, 'selected for RE, 13k TH, suthagar team, pls cnfrm the joining', 50, '0000-00-00 00:00:00', 1),
(4326, 4319, 59, 5, 0, 'No Knowledge in HTML CSS, High Pay Expectation1 yr Exp', 50, '0000-00-00 00:00:00', 1),
(4327, 4340, 59, 5, 0, 'Communication is average, only into report Analyst Not much suits for our role', 50, '0000-00-00 00:00:00', 1),
(4328, 4296, 59, 5, 0, 'Appeared for UI/UX, no relevant knowledge ,into App Development but not into Reactnative\n', 50, '0000-00-00 00:00:00', 1),
(4329, 4353, 59, 4, 0, 'Check for CRM,50/50', 50, '0000-00-00 00:00:00', 1),
(4330, 4357, 53, 4, 0, 'Ok for RE, salary 12k TH, srikanth team.', 50, '0000-00-00 00:00:00', 1),
(4331, 4358, 53, 5, 0, 'He could not speak tamil fluently, he knpw oly rajasthani language.', 50, '0000-00-00 00:00:00', 1),
(4332, 4350, 54, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4333, 4355, 8, 5, 0, 'no degree, poor communication and will not suite for this profile.', 50, '0000-00-00 00:00:00', 1),
(4334, 4359, 8, 5, 0, 'not turned after lunch.', 50, '0000-00-00 00:00:00', 1),
(4335, 4361, 8, 2, 0, 'for agent. agent in reliance GI.', 50, '0000-00-00 00:00:00', 1),
(4336, 4362, 8, 2, 0, 'hold to prepare. he was very nervous.', 50, '0000-00-00 00:00:00', 1),
(4337, 4345, 8, 5, 0, 'Not Turned After Lunch.', 50, '0000-00-00 00:00:00', 1),
(4338, 4343, 59, 5, 0, 'Appeared for Intern,Passout year to be 2022,will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(4339, 4363, 8, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4340, 4360, 8, 5, 0, 'will not suite for our process, ideal in home and looking for job.', 50, '0000-00-00 00:00:00', 1),
(4341, 4338, 59, 5, 0, 'Distance too long, Not much Relevant ', 50, '0000-00-00 00:00:00', 1),
(4342, 4352, 24, 4, 0, 'candidate selected for next round banu mam', 53, '2021-04-12 01:10:08', 1),
(4343, 4357, 20, 2, 0, 'shortlisted yet to finalize joining due to pf implementation', 53, '2021-04-12 01:21:28', 1),
(4344, 4349, 54, 1, 0, NULL, 53, '2021-04-12 01:21:47', 1),
(4345, 4365, 8, 5, 0, 'will not suite for our process, very slow and expt sal is 17k.', 50, '0000-00-00 00:00:00', 1),
(4346, 4367, 8, 4, 0, 'kindly check for MIS, avg communication and okay with 1yr bond, check with Analytical.', 50, '0000-00-00 00:00:00', 1),
(4347, 4367, 59, 5, 0, 'No communication, mail communication is not upto the mark', 8, '2021-04-12 04:08:33', 1),
(4348, 4372, 8, 5, 0, 'will not suite for our process. ', 50, '0000-00-00 00:00:00', 1),
(4349, 4330, 59, 7, 0, 'Selected for Syed Team CTC - 156000 Gross - 13000 TH - 12350', 53, '2021-04-12 05:28:05', 1),
(4350, 4353, 8, 5, 0, 'not speaking up and very slow. will not suite for calling.', 59, '2021-04-12 07:19:11', 1),
(4351, 4375, 59, 5, 0, 'Communication is just a Manageable ,Mail Communication is poor, Sustainability Doubt,Focus into SQL DBA', 7, '0000-00-00 00:00:00', 1),
(4352, 4324, 59, 4, 0, '2nd level interviewed by Muthu and processed for CTC discussion. Selected with CTC - 1,32,636 Gross - 11053 TH - 10500', 13, '2021-04-13 10:36:43', 1),
(4353, 4352, 53, 7, 0, 'selected for RE, 13k TH, suthagar team, pls cnfrm the joining', 24, '2021-04-13 10:39:26', 1),
(4354, 4384, 8, 4, 0, 'check for dealer profile. expt is 30k. his previous was 18k. has only basics in equity and trading.', 50, '0000-00-00 00:00:00', 1),
(4355, 4385, 54, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4356, 4386, 8, 5, 0, 'will not suite for crm, looking for air space design profile. expt is 20k+', 50, '0000-00-00 00:00:00', 1),
(4357, 4387, 8, 5, 0, 'will not suite for crm, not speaking up and will nit Suite for data analyst dont kniw basics in excel.', 50, '0000-00-00 00:00:00', 1),
(4358, 4368, 59, 5, 0, 'Communication is Good Agreement - 50/50 and the Exp CTC in 30K for 1.5 yrs Experience', 50, '0000-00-00 00:00:00', 1),
(4359, 4390, 8, 5, 0, 'has exp as mis exe. but communication is below avg.', 50, '0000-00-00 00:00:00', 1),
(4360, 4388, 53, 5, 0, 'Not suit for our process', 50, '0000-00-00 00:00:00', 1),
(4361, 4382, 8, 3, 0, 'For Priyanka Team With CTC - 132000,Gross - 11000 TH - 10450', 50, '0000-00-00 00:00:00', 1),
(4362, 4389, 8, 5, 0, 'looking for health care data entry job. previously into cognizant, expt is 25k for crm. will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(4363, 4384, 54, 1, 0, NULL, 8, '2021-04-13 01:24:45', 1),
(4364, 4382, 14, 7, 4, 'salary told- 10k to 12k . kindly confirm this ,need to check joining date ', 8, '2021-04-13 01:28:04', 1),
(4365, 4395, 8, 5, 0, 'will not suite for our process. will not sustain.', 50, '0000-00-00 00:00:00', 1),
(4366, 4374, 59, 2, 0, 'Communication is Average, open for any Jobs should come after check with family on the agreement', 50, '0000-00-00 00:00:00', 1),
(4367, 4382, 59, 7, 0, 'Selected for Priyanka Team With CTC - 132000,Gross - 11000 TH - 10450', 14, '2021-04-13 04:24:28', 1),
(4368, 4397, 8, 5, 0, 'will not suite fo rM profile, language is below avg. will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(4369, 4324, 8, 3, 0, 'for muthu teamCTC- 1,32,636 Gross - 11053 Th - 10500', 59, '2021-04-13 05:55:47', 1),
(4370, 4396, 54, 4, 0, 'Hold, but we will consider this profile for stocks back-end activities.', 7, '0000-00-00 00:00:00', 1),
(4371, 4306, 60, 1, 0, NULL, 59, '2021-04-13 06:04:52', 1),
(4372, 4382, 8, 3, 0, 'For Priyanka Team With CTC - 132000,Gross - 11000 TH - 10450', 59, '2021-04-13 06:07:26', 1),
(4373, 4391, 59, 5, 0, 'QC Profile, Not open for Agreement and the Expected Salary is high', 7, '0000-00-00 00:00:00', 1),
(4374, 4405, 8, 5, 0, 'will not suite for MF, fresher no idea about MF, not even prepare a single line for interview.', 50, '0000-00-00 00:00:00', 1),
(4375, 4393, 59, 4, 0, 'Communication ok, no relevant Exp but can be trained', 7, '0000-00-00 00:00:00', 1),
(4376, 4407, 59, 5, 0, 'not good in communication, will not suit much for our role', 50, '0000-00-00 00:00:00', 1),
(4377, 4409, 8, 5, 0, 'will not Sustain, will join only if his friend join and will not suite fro calling.', 50, '0000-00-00 00:00:00', 1),
(4378, 4410, 8, 5, 0, 'not speaking up, will not suite for calling.', 50, '0000-00-00 00:00:00', 1),
(4379, 4394, 59, 5, 0, 'good Communication, Little Attitude and the salary Expectation is high', 50, '0000-00-00 00:00:00', 1),
(4380, 4411, 8, 5, 0, 'no Sustainability, 3m, 4m and 7m in each company. expt 18k th. communication wise okay.', 50, '0000-00-00 00:00:00', 1),
(4381, 4412, 8, 4, 3, 'check for rM, fresher for us, expt 22k+.', 50, '0000-00-00 00:00:00', 1),
(4382, 4413, 8, 4, 0, 'check for \nMIS but has 3yr exp in MF backend. MTC is 21.5 expt is 30k.', 50, '0000-00-00 00:00:00', 1),
(4383, 4401, 59, 5, 0, 'Location Constraint, Not open for the agreement', 50, '0000-00-00 00:00:00', 1),
(4384, 4412, 31, 4, 4, 'Forward to next round. hope , candidate is okay', 8, '2021-04-15 12:52:39', 1),
(4385, 4402, 8, 4, 0, 'check for MF, fresher for MF, expt is 15k.', 50, '0000-00-00 00:00:00', 1),
(4386, 4413, 59, 5, 0, 'Will not sustain for a long and not able to handle the pressure.', 8, '2021-04-15 02:38:33', 1),
(4387, 4419, 8, 5, 0, 'will not suite for calling. very childish, will not sustain.', 50, '0000-00-00 00:00:00', 1),
(4388, 4420, 8, 5, 0, 'Will Not Suite For Calling. Very Childish, Will Not Sustain.', 50, '0000-00-00 00:00:00', 1),
(4389, 4418, 8, 4, 0, 'check for crm thiruvallur, exp is 15k th. cross check once', 50, '0000-00-00 00:00:00', 1),
(4390, 4402, 35, 4, 0, 'Reassigned to Arun, negotiate the Salary.', 8, '2021-04-15 03:29:27', 1),
(4391, 4421, 8, 4, 0, 'no Relevant exp, he was completely into B2B. will not suite for BDM, check once for RM but expected CTC is 5L+', 7, '0000-00-00 00:00:00', 1),
(4392, 4418, 53, 7, 0, 'selected for thiruvallur branch, 15k TH, immediate joining', 8, '2021-04-15 04:06:46', 1),
(4393, 4421, 18, 8, 0, 'Kindly refix after lockdown', 8, '2021-04-15 04:09:46', 1),
(4394, 4399, 59, 5, 0, 'Not suitable for the Data Analyst role, No Communication', 7, '0000-00-00 00:00:00', 1),
(4395, 4398, 59, 5, 0, 'Communication Average,Exp high Pay,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(4396, 4393, 54, 3, 0, 'He is new to this domain but we will train him.', 59, '2021-04-15 05:22:27', 1),
(4397, 4425, 8, 4, 3, 'Check with this profile, has Experience in team handling, CTC is 4.7L and expecting as per company norms from his previous package. ', 7, '0000-00-00 00:00:00', 1),
(4398, 4425, 18, 8, 0, 'Kindly refix after Lockdown\n', 8, '2021-04-15 06:40:51', 1),
(4399, 4304, 8, 5, 0, 'comm is good, very basics in excel. ', 8, '2021-04-15 06:41:34', 1),
(4400, 3809, 8, 5, 0, 'will not suite for us', 8, '2021-04-15 06:42:22', 1),
(4401, 3985, 8, 5, 0, 'not turned up', 8, '2021-04-15 06:43:34', 1),
(4402, 4107, 8, 5, 0, 'will not suite for us. ', 8, '2021-04-15 06:44:41', 1),
(4403, 4113, 8, 5, 0, 'not turned up', 8, '2021-04-15 06:44:59', 1),
(4404, 4129, 8, 5, 0, 'no response', 8, '2021-04-15 06:45:24', 1),
(4405, 4206, 8, 5, 0, 'not interested', 8, '2021-04-15 06:45:42', 1),
(4406, 4396, 41, 2, 0, 'can try for 1st start', 54, '2021-04-16 10:01:46', 1),
(4407, 4414, 59, 5, 0, 'Not suits for our position, will not sustain, No Communication', 50, '0000-00-00 00:00:00', 1),
(4408, 4402, 59, 5, 0, 'New to the MF position and the Expected 15K TH and not open for negotiating with PF PT Deductions', 35, '2021-04-16 10:37:59', 1),
(4409, 4422, 59, 5, 0, 'No Communication not suitable', 50, '0000-00-00 00:00:00', 1),
(4410, 4430, 41, 2, 0, 'can try - Vasu', 50, '0000-00-00 00:00:00', 1),
(4411, 4429, 41, 5, 0, 'Will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4412, 4427, 8, 2, 0, 'for RE', 50, '0000-00-00 00:00:00', 1),
(4413, 4381, 59, 5, 0, 'No Communication, Not suits for our role', 50, '0000-00-00 00:00:00', 1),
(4414, 4434, 8, 2, 0, 'for RE- Arumbakkam', 50, '0000-00-00 00:00:00', 1),
(4415, 4428, 8, 2, 0, 'for RE', 50, '0000-00-00 00:00:00', 1),
(4416, 4424, 59, 5, 0, 'Not suitable, Will not sustain', 50, '0000-00-00 00:00:00', 1),
(4417, 4433, 8, 5, 0, 'will not suite for calling, not int in sales. int in non voice', 50, '0000-00-00 00:00:00', 1),
(4418, 4436, 41, 5, 0, 'will not suite for CRM', 50, '0000-00-00 00:00:00', 1),
(4419, 4416, 59, 5, 0, 'Not suits for our role, will not handle the pressure, Communication Average', 50, '0000-00-00 00:00:00', 1),
(4420, 4423, 59, 5, 0, 'Not suits,not open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4421, 4437, 8, 5, 2, 'will not sustain, will not handle sales pressure. expt is 10k.', 7, '0000-00-00 00:00:00', 1),
(4422, 4432, 41, 5, 0, 'will not suite for ED Profile by Vasu', 50, '0000-00-00 00:00:00', 1),
(4423, 4431, 41, 5, 0, 'aged will not suite for our process-by gokul', 50, '0000-00-00 00:00:00', 1),
(4424, 4303, 59, 7, 0, 'Selected for Priyanka Team,CTc - 126312,Gross - 10526 TH - 10000', 14, '2021-04-16 05:46:17', 1),
(4425, 4277, 59, 5, 0, 'Tried reaching, no response for a long. In the initial discussion she Requested time to check with parents on the location, but didnt turn back ', 14, '2021-04-16 05:49:13', 1),
(4426, 4335, 59, 5, 0, 'Attitude issue, sustainability doubt, High CTC Expectation', 60, '0000-00-00 00:00:00', 1),
(4427, 4445, 59, 5, 0, 'Will not fit for our role, Stammering Issue, no sustainability', 50, '0000-00-00 00:00:00', 1),
(4428, 4446, 41, 2, 0, 'Vasu interview', 50, '0000-00-00 00:00:00', 1),
(4429, 4448, 53, 7, 0, 'Selected for thiruvallur branch, 12k ctc, immediate joining.', 50, '0000-00-00 00:00:00', 1),
(4430, 4449, 41, 5, 0, 'No knowledge in MF at all', 50, '0000-00-00 00:00:00', 1),
(4431, 4450, 41, 2, 0, 'RE need to decide (He will inform to Jennifer)', 50, '0000-00-00 00:00:00', 1),
(4432, 4451, 41, 4, 0, 'Check for CRM - T.Nagar', 50, '0000-00-00 00:00:00', 1),
(4433, 4438, 59, 5, 0, 'Good in Mern,but the expectation is very High being a fresher, sustainability doubt not open for the agreement', 50, '0000-00-00 00:00:00', 1),
(4434, 4303, 60, 1, 0, NULL, 59, '2021-04-17 02:44:53', 1),
(4435, 4377, 41, 5, 0, 'Not exp in TC, will not suite for Any other profile', 50, '0000-00-00 00:00:00', 1),
(4436, 4454, 41, 2, 0, 'Vasu Interview', 50, '0000-00-00 00:00:00', 1),
(4437, 4453, 41, 4, 0, 'Check for CRM - T.Nagar', 50, '0000-00-00 00:00:00', 1),
(4438, 4451, 53, 5, 0, 'looking for non voice process', 41, '2021-04-17 03:10:30', 1),
(4439, 4448, 59, 7, 0, 'Selected for Tiruvallur Location,initial 10 Days of training in Tnagar with CTC - 144000,Gross - 12000 TH - 11400', 53, '2021-04-17 03:27:28', 1),
(4440, 4418, 59, 7, 0, 'Selected for Tiruvallur Location CTC - 189468\nGross - 15789\nTH - 15000', 53, '2021-04-17 03:28:38', 1),
(4441, 4352, 59, 5, 0, 'We hold the candidate 4 months back for suthagar team and now there is no response from the candidate. Tried reaching him couple of time.', 53, '2021-04-17 03:29:29', 1),
(4442, 4448, 60, 1, 0, NULL, 59, '2021-04-17 03:37:51', 1),
(4443, 4418, 60, 1, 0, NULL, 59, '2021-04-17 03:43:50', 1),
(4444, 4330, 60, 1, 0, NULL, 59, '2021-04-17 04:10:17', 1),
(4445, 4453, 59, 5, 0, 'Selected for Priyanka, but didnt turn up with her confirmation', 41, '2021-04-17 04:50:12', 1),
(4446, 4453, 14, 7, 4, 'salary 11k, need to confirm joining date', 59, '2021-04-17 05:09:19', 1),
(4447, 4439, 59, 5, 0, 'Fresher Good Commuication ,open for Agreement, but the expectation is high 25K Negotiable to 20K', 50, '0000-00-00 00:00:00', 1),
(4448, 4447, 59, 4, 0, 'check for PHP, only backend experience ,give a try for PHP', 50, '0000-00-00 00:00:00', 1),
(4449, 4463, 59, 5, 0, 'Sustainability Doubt, will not fit for our role', 50, '0000-00-00 00:00:00', 1),
(4450, 4458, 59, 5, 0, 'Communication Average, Data excel knowledge Basic Will not fit for our role', 50, '0000-00-00 00:00:00', 1),
(4451, 4465, 59, 4, 0, 'Check for CRM - 50/50', 50, '0000-00-00 00:00:00', 1),
(4452, 4455, 59, 5, 0, 'Will not suit for DM, Sustainability doubt need to check with family', 50, '0000-00-00 00:00:00', 1),
(4453, 4466, 59, 4, 0, 'check for PHP, ok profile 50/50', 50, '0000-00-00 00:00:00', 1),
(4454, 4453, 59, 5, 0, 'Selected for Priyanka, but didnt turn up with her confirmation', 14, '2021-04-19 11:58:08', 1),
(4455, 4471, 59, 5, 0, 'Average Communication, only Data Entry, not open for Agreement, Exp 18K', 50, '0000-00-00 00:00:00', 1),
(4456, 4472, 59, 5, 0, 'Checked for RE,left without attending 2nd level', 50, '0000-00-00 00:00:00', 1),
(4457, 4467, 59, 7, 0, 'Selected for Tiruvallur Location, CTC - 138948 TH - 11k', 50, '0000-00-00 00:00:00', 1),
(4458, 4468, 59, 5, 0, 'Not suitable for Sales, Focus is only on the Professor Jobs\n ', 50, '0000-00-00 00:00:00', 1),
(4459, 4470, 59, 5, 0, 'Interviewed in the month of April and on hold for Guru, finally dropped this Profile with concern to the pandemic and the lockdown', 50, '0000-00-00 00:00:00', 1),
(4460, 4474, 59, 5, 0, 'Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(4461, 4476, 59, 7, 0, 'Selected for Guru Team with CTC - 1,80,000 LPA inclusive of PF/PF deductions. joining Date: 06-May-2021', 50, '0000-00-00 00:00:00', 1),
(4462, 4478, 59, 5, 0, 'No knowledge Communication poor, sustainability doubt', 50, '0000-00-00 00:00:00', 1),
(4463, 4473, 59, 5, 0, 'Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(4464, 4479, 59, 5, 0, 'Left without attending the interview', 50, '0000-00-00 00:00:00', 1),
(4465, 4481, 59, 5, 0, 'Not open for field sales, only for telecall and the exp 14+ Gross,Will not sustain ', 50, '0000-00-00 00:00:00', 1),
(4466, 4484, 53, 5, 0, 'Expected high salary', 50, '0000-00-00 00:00:00', 1),
(4467, 4475, 59, 5, 0, 'No knowledge in IT, looking for AR/AP caller positions', 50, '0000-00-00 00:00:00', 1),
(4468, 4447, 27, 5, 0, 'Task not Completed.', 59, '2021-04-19 03:58:57', 1),
(4469, 4467, 53, 7, 0, 'selected for tiruvallur, 12k TH, wednesday joining.', 59, '2021-04-19 04:02:55', 1),
(4470, 4466, 27, 5, 0, 'Task not Completed.', 59, '2021-04-19 05:03:11', 1),
(4471, 4465, 14, 5, 2, 'Not suitable for this profile', 59, '2021-04-19 05:08:38', 1),
(4472, 4470, 34, 7, 4, 'selected', 59, '2021-04-19 05:34:33', 1),
(4473, 4286, 29, 4, 0, 'on hold - for bDM profile Agency channal, ok for this profile', 8, '2021-04-19 05:34:47', 1),
(4474, 4286, 8, 2, 0, 'hold for BDM', 8, '2021-04-19 05:34:47', 1),
(4475, 4476, 34, 7, 4, 'selected', 59, '2021-04-19 05:36:08', 1),
(4476, 4490, 41, 2, 0, 'Zoom interview with Vasu', 50, '0000-00-00 00:00:00', 1),
(4477, 4492, 59, 4, 0, 'check for CRM 50/50', 50, '0000-00-00 00:00:00', 1),
(4478, 4493, 59, 4, 0, 'Check for CRM 50/50', 50, '0000-00-00 00:00:00', 1),
(4479, 4494, 59, 4, 0, 'Check for CRM 50/50', 50, '0000-00-00 00:00:00', 1),
(4480, 4496, 59, 5, 0, 'Focus on Govt Job only for Time being looking for a job', 50, '0000-00-00 00:00:00', 1),
(4481, 4501, 59, 5, 0, 'Looking for IT positions only, but not relevant for our IT positions', 50, '0000-00-00 00:00:00', 1),
(4482, 4117, 59, 5, 0, 'Not much knowledge in UI/UX ', 50, '0000-00-00 00:00:00', 1),
(4483, 4503, 59, 5, 0, 'Looking for Non Voice process only', 50, '0000-00-00 00:00:00', 1),
(4484, 4502, 59, 2, 0, 'Partially can try for RE', 50, '0000-00-00 00:00:00', 1),
(4485, 468, 59, 5, 0, 'Attitude, Just for time being looking for a job, Will not sustain ', 50, '0000-00-00 00:00:00', 1),
(4486, 4504, 41, 2, 0, 'Zoom Interview With Vasu', 50, '0000-00-00 00:00:00', 1),
(4487, 4511, 59, 5, 0, 'Looking for Non Voice process only', 7, '0000-00-00 00:00:00', 1),
(4488, 4495, 59, 5, 0, 'No Exp in Sales,Sustainability Doubt will not handle the pressure', 7, '0000-00-00 00:00:00', 1),
(4489, 4499, 59, 5, 0, 'No Sales Exp ,sustainability doubt', 7, '0000-00-00 00:00:00', 1),
(4490, 4480, 59, 5, 0, 'Not much comfortable with the agreement,sustainability Doubt fresher for Digital Marketing', 7, '0000-00-00 00:00:00', 1),
(4491, 4427, 8, 5, 0, 'will not suite for our profile. no clarity in speech.', 8, '2021-04-20 01:49:20', 1),
(4492, 4428, 16, 5, 0, 'NO SALES SKILLS ', 8, '2021-04-20 01:51:27', 1),
(4493, 4428, 8, 4, 0, 'check for RE, has 1.5yr exp in calling at reliance LI. expt 15k.', 8, '2021-04-20 01:51:27', 1),
(4494, 4362, 8, 5, 0, 'not turned up', 8, '2021-04-20 01:52:00', 1),
(4495, 4305, 8, 5, 0, 'collection exe joined and Completed training.', 8, '2021-04-20 01:52:53', 1),
(4496, 4282, 8, 5, 0, 'had a telephonic interview and feel the same.', 8, '2021-04-20 01:54:00', 1),
(4497, 4201, 8, 5, 0, 'not turned up', 8, '2021-04-20 01:56:15', 1),
(4498, 4507, 59, 5, 0, 'No Communication,looking only for Accounts positions', 50, '0000-00-00 00:00:00', 1),
(4499, 4510, 59, 5, 0, 'Frequent Job Changes, no relevant Exp not suits', 50, '0000-00-00 00:00:00', 1),
(4500, 4491, 59, 2, 0, 'will come after checking for the agreement with Family\n', 60, '0000-00-00 00:00:00', 1),
(4501, 4454, 41, 5, 0, 'not attended zoom interview no call back from the candidate also', 41, '2021-04-20 05:27:04', 1),
(4502, 4450, 41, 5, 0, 'Not interested with rE profile', 41, '2021-04-20 05:27:54', 1),
(4503, 4492, 14, 5, 0, 'not suitable for this profile', 59, '2021-04-20 07:42:00', 1),
(4504, 4493, 14, 5, 1, 'not suitable for this profile', 59, '2021-04-20 07:42:40', 1),
(4505, 4494, 14, 5, 1, 'not fit for this profile and looking for non voice', 59, '2021-04-20 07:43:07', 1),
(4506, 4505, 59, 5, 0, 'Communication Average, High Pay Expectation Sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(4507, 4518, 59, 5, 0, 'Not fit for MF positions, no basic knowledge in MF', 7, '0000-00-00 00:00:00', 1),
(4508, 4521, 59, 5, 0, 'Sales Exp in CDF, high CTC expectation', 7, '0000-00-00 00:00:00', 1),
(4509, 4513, 59, 2, 0, 'Communication Good, Should check for Agreement with parents, Will come back again on monday', 7, '0000-00-00 00:00:00', 1),
(4510, 4524, 59, 5, 0, 'Not open for Voice, will not handle the Pressure and not ready to work on target', 7, '0000-00-00 00:00:00', 1),
(4511, 4528, 59, 5, 0, 'Candidate Got Selected For Thiyagu Team,15K TH Was Committed Earlier,Now Need To Negotiate With PF Deductions/He S Corona Positive Will Take Some Time To Come Back. Attended 3months back ', 7, '0000-00-00 00:00:00', 1),
(4512, 4515, 59, 2, 0, 'Fresher, looking for Digi Mar, sustainability Doubt, need to check with parents and come back ', 7, '0000-00-00 00:00:00', 1),
(4513, 4196, 53, 2, 0, 'Hold, he is working he ll come within a week', 53, '2021-04-21 03:16:47', 1),
(4514, 4275, 53, 2, 0, 'hold', 53, '2021-04-21 03:17:05', 1),
(4515, 4532, 59, 5, 0, 'Looking for Non Voice Process only', 7, '0000-00-00 00:00:00', 1),
(4516, 4412, 29, 7, 3, 'gk team, 3 lacs CTC, Next 3 months, monthly target 1.50 lacs MOM total 4.5 lacs , if achieved we can increase salary to 3.30 lacs from 4th month onwards', 31, '2021-04-21 03:43:21', 1),
(4517, 4534, 59, 5, 0, 'Looking only for Non Voice process', 7, '0000-00-00 00:00:00', 1),
(4518, 4536, 59, 5, 0, 'Not open for Voice process', 7, '0000-00-00 00:00:00', 1),
(4519, 4537, 59, 5, 0, 'Looking only for Non Voice Process', 7, '0000-00-00 00:00:00', 1),
(4520, 4528, 16, 4, 0, 'GOOD CANDIDATE', 59, '2021-04-21 05:02:36', 1),
(4521, 4525, 59, 5, 0, 'Sustainability Doubt, Will not handle the pressure,', 60, '0000-00-00 00:00:00', 1),
(4522, 4509, 59, 5, 0, 'Have MIS Exp, Communication ok but the expectation is very high Holding an offer for 4 LPA,Exp 4.5 LPA Min', 60, '0000-00-00 00:00:00', 1),
(4523, 4541, 59, 2, 0, 'For Mern Stack,Fresher,Should come back after completing the exams\n', 7, '0000-00-00 00:00:00', 1),
(4524, 4549, 59, 5, 0, 'Only for Non Voice,will not sustain in our process', 7, '0000-00-00 00:00:00', 1),
(4525, 4552, 59, 5, 0, 'only retail store Exp, Will not fit for our Sales profile,will not handle the pressure', 7, '0000-00-00 00:00:00', 1),
(4526, 4550, 59, 5, 0, 'Sustainability Doubt, Will not fit for our MF Role, No knowledge in MF', 7, '0000-00-00 00:00:00', 1),
(4527, 4555, 59, 5, 0, 'Communication ok,Salary Expectation is high,sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(4528, 4558, 59, 5, 0, 'Not interested for Sales,No communication', 7, '0000-00-00 00:00:00', 1),
(4529, 4528, 59, 5, 0, 'Candidate Got Selected For Thiyagu Team,15K TH Was Committed Earlier,Now Need To Negotiate With PF Deductions/He S Corona Positive Will Take Some Time To Come Back. Attended 3months back ', 16, '2021-04-22 01:21:22', 1),
(4530, 3509, 59, 4, 0, 'Check for DM, Focus on Dadxquots Business', 7, '0000-00-00 00:00:00', 1),
(4531, 4564, 53, 4, 0, 'Ok, located in poonamalle, she s ready to relocate to thiruvallur, gud communication, sal 10k TH', 7, '0000-00-00 00:00:00', 1),
(4532, 4565, 53, 5, 0, 'even he s not opening his mouth', 7, '0000-00-00 00:00:00', 1),
(4533, 4566, 53, 5, 0, 'not opened her mouth', 7, '0000-00-00 00:00:00', 1),
(4534, 4567, 53, 4, 0, 'Ok bt check sustainability', 7, '0000-00-00 00:00:00', 1),
(4535, 4564, 14, 7, 4, 'salary 10k check joining date', 53, '2021-04-22 03:53:13', 1),
(4536, 4567, 14, 5, 0, 'voice not clear not suitable for this profile', 53, '2021-04-22 03:54:47', 1),
(4537, 4529, 59, 5, 0, 'For Tiruvallur Location, Expectation Min 20k,Into Credit Card Sales', 7, '0000-00-00 00:00:00', 1),
(4538, 4551, 59, 7, 0, 'Selected for Priyanka Jeni, CTC -132000 Gross- 11000 TH - 10450', 7, '0000-00-00 00:00:00', 1),
(4539, 3509, 69, 5, 0, 'Candidate holding less interest towards DM', 59, '2021-04-23 10:50:29', 1),
(4540, 4551, 14, 7, 3, 'salary 10k check distance once and confirm joining date', 59, '2021-04-23 10:51:34', 1),
(4541, 4575, 59, 5, 0, 'Communication average ,not open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4542, 4578, 59, 5, 0, 'Communication Average, College yet to complete.Sustainability 50/50', 50, '0000-00-00 00:00:00', 1),
(4543, 4579, 59, 4, 0, 'Check for CRM,50/50 Profile', 50, '0000-00-00 00:00:00', 1),
(4544, 4561, 59, 5, 0, 'Location Constraint, No Communication will not suits for our role', 50, '0000-00-00 00:00:00', 1),
(4545, 4560, 59, 5, 0, 'No communication ,College yet to complete', 50, '0000-00-00 00:00:00', 1),
(4546, 4563, 59, 5, 0, 'Average Communication, Sustainability Doubt', 50, '0000-00-00 00:00:00', 1),
(4547, 4543, 59, 4, 0, 'Profile ok, check for UI/React, candidate seems little slow', 50, '0000-00-00 00:00:00', 1),
(4548, 4520, 59, 2, 0, 'worked in RR Donnelly, sustainability Doubt Career Gap, Exp - 18K', 50, '0000-00-00 00:00:00', 1),
(4549, 4582, 59, 5, 0, 'Looking only for Nonvoice, Will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(4550, 4568, 59, 5, 0, 'Already attended for RM, we offered but didnt join now came for Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(4551, 4572, 53, 5, 0, 'not opening his mounth also', 7, '0000-00-00 00:00:00', 1),
(4552, 4580, 53, 5, 0, 'exp high salary, seems fraud', 50, '0000-00-00 00:00:00', 1),
(4553, 4581, 59, 5, 0, 'Much focus into nonvoice, location constraint', 50, '0000-00-00 00:00:00', 1),
(4554, 4564, 59, 2, 0, 'She needs to vacate the hostel, not sure where she s relocating new to chennai. Once settle down will come back ', 14, '2021-04-23 12:50:03', 1),
(4555, 4551, 59, 7, 0, 'Selected for Priyanka Jeni, CTC -132000 Gross- 11000 TH - 10450', 14, '2021-04-23 12:54:48', 1),
(4556, 4562, 59, 5, 0, 'Focus on IT positions, Need to complete the graduation, will come once done with Course', 50, '0000-00-00 00:00:00', 1),
(4557, 4584, 59, 3, 0, 'Selected for CRM - Priority Shanmuga Kutralingam Team with CTC 146496 includes 208 deduction in Client Advisory Prop', 50, '0000-00-00 00:00:00', 1),
(4558, 4583, 59, 7, 0, 'Selected for Mutual Fund Coordinator cum Sales profile CTC - 216000 included PF/PT/ESI deductions\n', 50, '0000-00-00 00:00:00', 1),
(4559, 4583, 35, 7, 0, 'Communication and Learning was Good, Convincing skill also Good. Negotiate the Salary. ', 59, '2021-04-23 04:18:23', 1),
(4560, 4584, 35, 5, 0, 'poor Communication, no Core Communication, have to Check sustainability.', 59, '2021-04-23 04:22:17', 1),
(4561, 4579, 14, 5, 0, 'not suitable for voice process', 59, '2021-04-23 04:29:14', 1),
(4562, 4543, 27, 5, 0, 'Task not Satisfied.', 59, '2021-04-23 04:32:39', 1),
(4563, 4551, 8, 1, 0, NULL, 59, '2021-04-23 04:44:00', 1),
(4564, 4553, 59, 5, 0, 'Good Communication,Profile is Good, not sure about sustainability as her marriage proposal going on', 60, '0000-00-00 00:00:00', 1),
(4565, 4556, 59, 5, 0, 'Looking only for Accounts position,Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(4566, 4569, 59, 5, 0, 'Agreement Ok Yet To Complete College, Can join only after his studies', 60, '0000-00-00 00:00:00', 1),
(4567, 4574, 59, 7, 0, 'Selected for Digital Marketing Intern cum Employment, initial Stipend will be provided then CTC will be finalised post 3 months of Internship', 60, '0000-00-00 00:00:00', 1),
(4568, 4588, 59, 5, 0, 'No knowledge in MF, not even clear for which position he came', 60, '0000-00-00 00:00:00', 1),
(4569, 4571, 59, 5, 0, 'Will come back after completing the exams,focus into IT openings\n', 60, '0000-00-00 00:00:00', 1),
(4570, 4587, 59, 5, 0, 'No basic knowledge, sustainability doubt,not much active', 60, '0000-00-00 00:00:00', 1),
(4571, 4592, 59, 4, 0, 'Good Profile,Communication ok check for DA,Interview by Reyaz 2nd level Interview', 60, '0000-00-00 00:00:00', 1),
(4572, 4577, 59, 5, 0, 'Every one year Job Change,sustainability doubt will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(4573, 4538, 59, 5, 0, 'Need to check with family for SA, Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(4574, 4596, 59, 5, 0, 'Focus into IT openings,Exp but career gap need to brush up the knowledge, age around 33 yrs', 60, '0000-00-00 00:00:00', 1),
(4575, 4530, 59, 5, 0, 'No basic knowledge, sustainability doubt, will not suits', 60, '0000-00-00 00:00:00', 1),
(4576, 4487, 59, 5, 0, 'Not open for Agreement, Exp is very High ,career Gap', 60, '0000-00-00 00:00:00', 1),
(4577, 4602, 59, 5, 0, 'Sustainability Doubt, will not suits much for our role', 60, '0000-00-00 00:00:00', 1),
(4578, 4601, 59, 5, 0, 'Not open up ,will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(4579, 4545, 59, 5, 0, 'Not open for Agreement, fresher yet to complete College', 60, '0000-00-00 00:00:00', 1),
(4580, 3880, 14, 5, 0, 'not suitable for this profile', 60, '0000-00-00 00:00:00', 1),
(4581, 4592, 60, 1, 0, NULL, 59, '2021-04-24 04:23:56', 1),
(4582, 4574, 69, 7, 0, 'The candidate is good, Need to confirm whether he adheres towards company policy', 59, '2021-04-24 04:28:42', 1),
(4583, 4574, 59, 7, 0, 'Selected for Digital Marketing Intern cum Employment, initial Stipend will be provided then CTC will be finalised post 3 months of Internship', 69, '2021-04-26 10:18:03', 1),
(4584, 4609, 59, 7, 0, 'Selected for Dhivya Team,CTC - 1,86,000 includes PF/PT/ESI Deductions Joining Date: 06-May-2021', 50, '0000-00-00 00:00:00', 1),
(4585, 4605, 59, 5, 0, 'Fresher, Yet to complete College, Will not sustain', 50, '0000-00-00 00:00:00', 1),
(4586, 4412, 59, 7, 0, 'Selected for GK Sir, CTC -3 LPA, Gross - 25000 (Includes PF PT Deductions)', 29, '2021-04-26 11:24:14', 1),
(4587, 4286, 8, 2, 0, 'hold for BDM', 29, '2021-04-26 11:25:58', 1),
(4588, 4610, 59, 5, 0, 'Communication Good, Will not sustain for a long, also not much suits', 50, '0000-00-00 00:00:00', 1),
(4589, 4606, 59, 5, 0, 'Fresher, not open for Agreement, Exp high Pay', 50, '0000-00-00 00:00:00', 1),
(4590, 4612, 59, 5, 0, 'Not Focused on the Career to choose, Sustainability doubt', 50, '0000-00-00 00:00:00', 1),
(4591, 4613, 59, 5, 0, 'Not open for Agreement,Not focused on the positions', 60, '0000-00-00 00:00:00', 1),
(4592, 4615, 59, 5, 0, 'No Communication, Not suitable for Sales', 50, '0000-00-00 00:00:00', 1),
(4593, 4593, 14, 5, 0, 'not fit for this profile', 60, '0000-00-00 00:00:00', 1),
(4594, 4599, 14, 5, 0, 'looking for non voice process not fit for this profile', 60, '0000-00-00 00:00:00', 1),
(4595, 4600, 14, 5, 0, 'not suitable for this profile', 60, '0000-00-00 00:00:00', 1),
(4596, 4597, 14, 5, 0, 'communication skill not good not suitable for this profile', 60, '0000-00-00 00:00:00', 1),
(4597, 4591, 14, 5, 0, 'not suitable for voice process', 60, '0000-00-00 00:00:00', 1),
(4598, 4616, 59, 5, 0, 'Will not sustain ,for time being looking for a job', 50, '0000-00-00 00:00:00', 1),
(4599, 4412, 60, 1, 0, NULL, 59, '2021-04-26 03:58:10', 1),
(4600, 4467, 59, 7, 0, 'Selected for Tiruvallur Location, CTC - 138948 TH - 11k', 53, '2021-04-26 04:15:39', 1),
(4601, 4467, 60, 1, 0, NULL, 59, '2021-04-26 04:20:05', 1),
(4602, 4609, 21, 4, 4, 'need to check with gaurav sir...', 59, '2021-04-26 06:51:15', 1),
(4603, 4620, 59, 5, 0, 'No knowledge in Mutual Fund, No Communication', 50, '0000-00-00 00:00:00', 1),
(4604, 4609, 29, 7, 2, 'selected for esales RM - Divya Team', 21, '2021-04-27 11:04:40', 1),
(4605, 4589, 59, 5, 0, 'Doubtful for a long run, fresher profile not open for SA', 50, '0000-00-00 00:00:00', 1),
(4606, 4539, 59, 5, 0, 'Looking only for Non Voice process, location constraint', 50, '0000-00-00 00:00:00', 1),
(4607, 4624, 53, 5, 0, 'not suit for sales process, not opening his mouth also', 50, '0000-00-00 00:00:00', 1),
(4608, 4625, 59, 5, 0, 'Will not sustain for a long, no focus on the career ', 50, '0000-00-00 00:00:00', 1),
(4609, 4622, 59, 5, 0, 'Not open for Telesales, looking only for non voice, will not sustain for a long', 50, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(4610, 4621, 59, 5, 0, 'Distance too long, not comfortable for Sales process', 50, '0000-00-00 00:00:00', 1),
(4611, 4626, 53, 5, 0, '32yrs, not bold, not suit for telesales.', 50, '0000-00-00 00:00:00', 1),
(4612, 4628, 59, 5, 0, 'Canditate Ok Better Communication Skills Well Matured,but not ready to go for Field Sales looking only for Internal and the expectation is high', 60, '0000-00-00 00:00:00', 1),
(4613, 4629, 59, 3, 0, 'Selected for Tiruvallur in cash mode', 50, '0000-00-00 00:00:00', 1),
(4614, 4630, 59, 3, 0, 'Selected for Tiruvallur Location with TH 10K', 50, '0000-00-00 00:00:00', 1),
(4615, 4629, 53, 7, 0, 'selected for thiruvallur, 10k TH, she ll join thiruvallur branch only', 59, '2021-04-27 04:19:26', 1),
(4616, 4630, 53, 7, 0, 'selected for thiruvallur branch oly, 10k TH, she ll join thiruvallur branch oly', 59, '2021-04-27 04:22:45', 1),
(4617, 4628, 13, 4, 4, 'canditate ok better communication skills well matured we speak in last dicussion 12k but expected salary high...', 59, '2021-04-27 04:24:12', 1),
(4618, 4629, 8, 4, 0, 'Confirm DOJ And Salary', 53, '2021-04-27 04:46:30', 1),
(4619, 4630, 8, 4, 0, 'Confirm DOJ And Salary', 53, '2021-04-27 04:47:24', 1),
(4620, 4619, 18, 7, 4, 'Selected for santosh team. Will confirm the offer date. Expected salary already discussed with hR', 60, '0000-00-00 00:00:00', 1),
(4621, 4564, 59, 5, 0, 'Went back to the native, once return to chennai will let us know', 59, '2021-04-27 07:16:24', 1),
(4622, 4629, 59, 3, 0, 'Selected for Tiruvallur in cash mode', 8, '2021-04-27 07:26:51', 1),
(4623, 4630, 59, 3, 0, 'Selected for Tiruvallur Location with TH 10K', 8, '2021-04-27 07:27:43', 1),
(4624, 4638, 59, 5, 0, 'will not Sustain for a long, Too long distance also', 50, '0000-00-00 00:00:00', 1),
(4625, 4633, 59, 2, 0, 'Communication average,Written also average will check if no profiles shortlisted', 50, '0000-00-00 00:00:00', 1),
(4626, 4639, 59, 5, 0, 'Good Profile Communication good, Need to check later if no profile selected for DA,High CTC Expectation too', 50, '0000-00-00 00:00:00', 1),
(4627, 4635, 59, 2, 0, 'Communication Good, Will come for 2nd level interview for Data Analyst', 50, '0000-00-00 00:00:00', 1),
(4628, 4643, 59, 5, 0, 'No knowledge in Mutual Fund, not suits for MIS role also', 50, '0000-00-00 00:00:00', 1),
(4629, 4644, 53, 7, 0, 'selected for thiruvallur branch, 10k TH, 15 days training iat tnagar, need logout at 5 clk due to distance', 50, '0000-00-00 00:00:00', 1),
(4630, 4641, 59, 4, 0, 'Check for CRM, No Relevant Exp but in Sales earlier', 50, '0000-00-00 00:00:00', 1),
(4631, 4645, 8, 5, 0, 'will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4632, 4647, 8, 5, 0, 'will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(4633, 4648, 8, 4, 3, 'fresher, 2m in icici loan process, check for crm', 50, '0000-00-00 00:00:00', 1),
(4634, 4649, 8, 3, 0, ' For Dhivya Team, Ctc - 180000 with pf, Mctc 15000.', 50, '0000-00-00 00:00:00', 1),
(4635, 4652, 8, 4, 3, 'has 1.6yr exp in customer support. 1yr gap and expt is 12k th.', 50, '0000-00-00 00:00:00', 1),
(4636, 4646, 8, 2, 0, 'for crm', 50, '0000-00-00 00:00:00', 1),
(4637, 4650, 8, 4, 3, 'check for crm, neg salary, previously he was getting variable payout.', 50, '0000-00-00 00:00:00', 1),
(4638, 4642, 8, 4, 0, 'check for CRM-thiruvallur, fresher for us.', 50, '0000-00-00 00:00:00', 1),
(4639, 4653, 8, 5, 0, 'not Interested in sales process', 50, '0000-00-00 00:00:00', 1),
(4640, 4655, 8, 3, 0, 'for thiruvallur, 10k th and ctc 126312. ', 50, '0000-00-00 00:00:00', 1),
(4641, 4654, 8, 5, 0, 'Not interested in sales process.', 50, '0000-00-00 00:00:00', 1),
(4642, 3566, 59, 5, 0, 'Already attended for IT opening,now came for Digital Marketing will not suit for the DM Role\n', 60, '0000-00-00 00:00:00', 1),
(4643, 4655, 53, 7, 0, 'selected for thiruvallur branch, pls cnfrm the joining and salary.', 8, '2021-04-28 03:19:48', 1),
(4644, 4657, 8, 5, 0, 'has 4m exp in sales and expt 15k th for RE.', 50, '0000-00-00 00:00:00', 1),
(4645, 4644, 59, 3, 0, 'Selected for Tiruvallur in Cash mode', 53, '2021-04-28 03:46:05', 1),
(4646, 4642, 53, 8, 0, 'left without attending the interview', 8, '2021-04-28 04:00:45', 1),
(4647, 3884, 8, 3, 0, 'Selected For Srikanth Team CTC - 192000 With PF PT ESI Deductions', 59, '2021-04-28 04:22:06', 1),
(4648, 4648, 21, 5, 2, 'She Is Not Sustain Long Term Because Already She Left Her Job Bec Of Pressure ', 8, '2021-04-28 04:36:46', 1),
(4649, 4649, 21, 4, 4, 'candiate ok need to check with gaurav sir ', 8, '2021-04-28 04:42:27', 1),
(4650, 4652, 11, 7, 0, 'candidate is ok...need to check with gaurav sir for salary package ', 8, '2021-04-28 04:44:16', 1),
(4651, 4650, 13, 5, 0, 'no confident not suite for voice process....', 8, '2021-04-28 04:45:40', 1),
(4652, 4661, 53, 7, 0, 'Selected. 10.5k TH, Need to increase the salary within 6Months depends on performance. pls cnfrm the joining', 50, '0000-00-00 00:00:00', 1),
(4653, 4655, 59, 7, 0, 'Selected for Tiruvallur Location,TH-10K Joining Date: 06-May-2021 Training in Tnagar Office for 15 Days and timing during Training will be 5 PM', 53, '2021-04-28 06:17:50', 1),
(4654, 4661, 59, 7, 0, 'Selected for Tiruvallur, TH - 10.5 After 6 months based on the performance Salary to be revised was the commitment given by Banu', 53, '2021-04-28 06:22:05', 1),
(4655, 4661, 8, 3, 0, 'Selected For Tiruvallur, TH - 10.5. MCTC-11053. salary Hike based on Performance', 59, '2021-04-28 07:29:45', 1),
(4656, 4631, 59, 5, 0, 'No sustainability,1.10 yrs 3 companies changes and not open for Agreement', 50, '0000-00-00 00:00:00', 1),
(4657, 4666, 59, 5, 0, 'Will not sustain for a long, Looking much for Non Voice only', 50, '0000-00-00 00:00:00', 1),
(4658, 4667, 59, 4, 0, 'Check for CRM Tiruvallur Location, ok for 10K TH, fresher yet to complete their Exams', 50, '0000-00-00 00:00:00', 1),
(4659, 4649, 59, 7, 0, 'Selected for Dhivya Team, Shortlisted by Gaurav sir CTC - 180000 includes PF / PT / ESI Deductions. Joining Date: 03-May-2021', 21, '2021-04-29 11:20:31', 1),
(4660, 4663, 8, 2, 0, 'for Mf, has to check for sales.', 50, '0000-00-00 00:00:00', 1),
(4661, 4665, 8, 5, 3, 'will not sustain and Planning to start his own biz, will not suite for calling profile.', 50, '0000-00-00 00:00:00', 1),
(4662, 4670, 8, 4, 0, 'cross check for crm, doing part time biz(gift). expt is 11-12k', 50, '0000-00-00 00:00:00', 1),
(4663, 4667, 14, 5, 0, 'Not suitable', 59, '2021-04-29 11:48:43', 1),
(4664, 4671, 8, 4, 0, 'check for MIS, okay with comm. 5yr in backend process.', 50, '0000-00-00 00:00:00', 1),
(4665, 4674, 8, 4, 3, 'check for CRM-thiruvallur, fresher. 2yr in pharma.', 50, '0000-00-00 00:00:00', 1),
(4666, 4673, 8, 4, 0, 'check for crm-thiruvallur. has 6m exp in calling and 1y in airtel fiber net.', 50, '0000-00-00 00:00:00', 1),
(4667, 4649, 8, 3, 0, ' For Dhivya Team, Ctc - 180000 with pf, Mctc 15000.', 59, '2021-04-29 12:00:51', 1),
(4668, 4641, 14, 5, 0, 'Not suitable for this profile', 59, '2021-04-29 12:02:40', 1),
(4669, 4664, 8, 5, 0, 'no comm, lang is not that much good, no knowledge in excel and ppt, lTH is 10k and ecpt is 17-18k.', 50, '0000-00-00 00:00:00', 1),
(4670, 4644, 8, 4, 0, 'confirm DOJ and salary', 59, '2021-04-29 12:41:05', 1),
(4671, 4655, 8, 3, 0, 'for thiruvallur, 10k th and ctc 126312. ', 59, '2021-04-29 12:44:50', 1),
(4672, 4583, 59, 7, 0, 'Selected for Mutual Fund Coordinator cum Sales profile CTC - 216000 included PF/PT/ESI deductions\n', 35, '2021-04-29 02:30:50', 1),
(4673, 4586, 8, 2, 0, 'to check with his patience', 50, '0000-00-00 00:00:00', 1),
(4674, 4674, 14, 7, 0, 'profile shortlisted . kindly check salary and joining date for tiruvallur', 8, '2021-04-29 02:35:21', 1),
(4675, 4673, 14, 7, 0, 'i am not discuss about salary confirm the salary and joining date . profile ok', 8, '2021-04-29 02:36:34', 1),
(4676, 4670, 13, 5, 0, 'no idea in voice process low level confident', 8, '2021-04-29 02:40:56', 1),
(4677, 4671, 59, 5, 0, 'Communication Average, Requested for time to check with parents. Its been a week time no response ', 8, '2021-04-29 02:42:39', 1),
(4678, 4679, 8, 5, 0, 'will not suite for our process, false information', 50, '0000-00-00 00:00:00', 1),
(4679, 4673, 59, 7, 0, 'selected for CRM Tiruvallur CTC - 126000', 14, '2021-04-29 03:28:06', 1),
(4680, 4674, 59, 7, 0, 'Shortlisted for Tiruvallur CRM,CTC - 126000', 14, '2021-04-29 03:29:22', 1),
(4681, 4585, 8, 5, 0, 'written was not good and expt is 3.7l. as exp only in accounts', 7, '0000-00-00 00:00:00', 1),
(4682, 4660, 8, 5, 0, 'has 2m exp in metro, in 6 months contract, doesnt what is his salary, will not sustain, comm is avg, not okay with service agreement.', 7, '0000-00-00 00:00:00', 1),
(4683, 4685, 8, 5, 0, 'no job need, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(4684, 4686, 8, 5, 0, 'not int in sales, no knowledge in MF, knows only the theory. comm is very avg.', 50, '0000-00-00 00:00:00', 1),
(4685, 4681, 8, 5, 0, 'Stammering to speak, comm is avg and no basics in excel. fresher and expt is 20k.', 50, '0000-00-00 00:00:00', 1),
(4686, 4672, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(4687, 4470, 53, 4, 0, 'pls cnfrm salary and DOJ', 34, '2021-04-30 11:07:48', 1),
(4688, 4476, 53, 7, 0, 'Pls Cnfrm Salary And DOJ', 34, '2021-04-30 11:14:11', 1),
(4689, 4680, 8, 5, 0, 'expt is high. rejected by reyaz', 50, '0000-00-00 00:00:00', 1),
(4690, 643, 8, 8, 0, 'left before interview', 50, '0000-00-00 00:00:00', 1),
(4691, 4682, 8, 5, 0, 'pronunciation is not clear, will not suite for our process. expt is 17-18k.', 50, '0000-00-00 00:00:00', 1),
(4692, 4676, 8, 2, 0, 'for next round', 50, '0000-00-00 00:00:00', 1),
(4693, 4675, 8, 5, 0, 'comm is below avg, no Basics in excel, just like that came for interview. ', 50, '0000-00-00 00:00:00', 1),
(4694, 4678, 8, 5, 0, 'not okay with service agg.', 50, '0000-00-00 00:00:00', 1),
(4695, 4689, 8, 5, 0, 'expt is high. age is 31 and rejected by reyaz', 50, '0000-00-00 00:00:00', 1),
(4696, 4687, 8, 5, 0, 'very slow and low voice, will not suite for our process.', 50, '0000-00-00 00:00:00', 1),
(4697, 4470, 59, 5, 0, 'Interviewed in the month of April and on hold for Guru, finally dropped this Profile with concern to the pandemic and the lockdown', 53, '2021-04-30 01:33:06', 1),
(4698, 4476, 59, 7, 0, 'Selected for Guru Team with CTC - 1,80,000 LPA inclusive of PF/PF deductions. joining Date: 06-May-2021', 53, '2021-04-30 01:33:26', 1),
(4699, 4652, 60, 1, 0, NULL, 11, '2021-04-30 03:20:11', 1),
(4700, 4196, 53, 2, 0, 'not attended for final round of interview', 53, '2021-04-30 03:25:46', 1),
(4701, 4196, 8, 2, 0, 'for RE', 53, '2021-04-30 03:26:20', 1),
(4702, 4196, 53, 4, 0, 'Not Attended For Final Round Of Interview', 53, '2021-04-30 03:26:20', 1),
(4703, 4275, 8, 2, 0, 'for RE', 53, '2021-04-30 03:31:06', 1),
(4704, 4275, 53, 4, 0, 'not attended for final round of interview', 53, '2021-04-30 03:31:06', 1),
(4705, 4646, 13, 7, 4, 'good confident and intrested in voice process, 1year bond also accepted expected salary 10k take home...', 8, '2021-04-30 04:11:05', 1),
(4706, 4646, 8, 4, 0, 'check for CRM. fresher', 8, '2021-04-30 04:11:05', 1),
(4707, 4628, 59, 5, 0, 'Canditate Ok Better Communication Skills Well Matured,but not ready to go for Field Sales looking only for Internal and the expectation is high', 13, '2021-04-30 04:28:16', 1),
(4708, 4646, 59, 7, 0, 'Selected for CRM Muthu Team CTC - 126312', 13, '2021-04-30 04:32:57', 1),
(4709, 4674, 60, 1, 0, NULL, 59, '2021-05-02 09:46:32', 1),
(4710, 4673, 60, 1, 0, NULL, 59, '2021-05-02 09:47:32', 1),
(4711, 4646, 60, 1, 0, NULL, 59, '2021-05-02 09:50:29', 1),
(4712, 4574, 60, 1, 0, NULL, 59, '2021-05-03 09:47:54', 1),
(4713, 4583, 8, 3, 0, 'for mF, Mctc is 18000, and ctc is 216000.', 59, '2021-05-03 10:05:11', 1),
(4714, 4695, 59, 4, 0, 'Check for CRM, Fresher not a graduate but have telecall exp for 6 months', 50, '0000-00-00 00:00:00', 1),
(4715, 4691, 59, 5, 0, 'Sustainability Doubt,Holding an offer for 25K with the Japan based company,looking for high Pay ,1.6 yrs 2 companies changed', 50, '0000-00-00 00:00:00', 1),
(4716, 4700, 8, 5, 0, 'very childish, will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4717, 4696, 8, 5, 0, 'not interested in sales calling, will not sustain. ', 50, '0000-00-00 00:00:00', 1),
(4718, 4697, 8, 5, 0, 'will not suite for our process, salary expt is 25k. ', 50, '0000-00-00 00:00:00', 1),
(4719, 4701, 8, 5, 0, 'looking for job change (salary). his sal was 10k and got revised by last month as 12k, his expt is 17k. no knowledge in mF and not interested in sales.', 50, '0000-00-00 00:00:00', 1),
(4720, 4705, 8, 5, 3, 'will not suite for calling, has exp in admin and will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(4721, 4702, 8, 3, 0, 'For Suthagar Team CTC - 162000 With Esi,PF MCTC Is 13500 And Th Is10484.', 50, '0000-00-00 00:00:00', 1),
(4722, 4703, 8, 5, 0, 'not speaking up and just like that came for interview and said no idea about it.', 50, '0000-00-00 00:00:00', 1),
(4723, 4702, 24, 7, 0, 'Candidate selected .. ', 8, '2021-05-03 03:07:58', 1),
(4724, 4702, 59, 7, 0, 'Selected for Suthagar Team CTC - 162000 inclusive of PF/PT/ESI Dedcutions. Will be a Patroniss Staff. Joining Date: 06-May-2021', 24, '2021-05-03 03:57:19', 1),
(4725, 4702, 8, 3, 0, 'For Suthagar Team CTC - 162000 With Esi,PF MCTC Is 13500 And Th Is10484.', 59, '2021-05-03 04:48:51', 1),
(4726, 4695, 13, 5, 0, 'Lockdown period hold long pending ', 59, '2021-05-03 04:49:28', 1),
(4727, 4711, 59, 4, 0, 'check for CRM Tiruvallur, No Relevant Exp but worked in Reliance Trends', 50, '0000-00-00 00:00:00', 1),
(4728, 4706, 59, 4, 0, 'Fresher Check for PHP,interest to learn Mern Also. Ok with our terms xxamp conditions', 50, '0000-00-00 00:00:00', 1),
(4729, 4712, 59, 5, 0, 'Not much open for Tamil Voice process, Just for time being looking for a job will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(4730, 4706, 27, 5, 0, 'No Response.', 59, '2021-05-04 10:43:37', 1),
(4731, 4711, 8, 5, 0, 'will not sustain, done her mA eng. lit, pursuing her net and looking for job in teaching. time being looking for job.', 59, '2021-05-04 10:45:09', 1),
(4732, 4714, 59, 7, 0, 'Selected for Syed Team, with CTC - 1,74,000 included PF/PT/ESI and comes under Patroniss Staff', 50, '0000-00-00 00:00:00', 1),
(4733, 4715, 8, 5, 2, 'will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4734, 4714, 57, 7, 0, 'candidate is ok ...kinldy negotiate the salary and confirm the joining', 59, '2021-05-04 01:22:45', 1),
(4735, 4710, 59, 5, 0, 'Very High Expectation, already he has some pipelines ,not ready for service Agreement', 50, '0000-00-00 00:00:00', 1),
(4736, 4633, 59, 5, 0, 'Communication Average, Written Also Average, but sustainability Doubt', 59, '2021-05-04 04:29:48', 1),
(4737, 4635, 59, 5, 0, 'Communication Good, didnxquott turn back for the 2nd level interview ', 59, '2021-05-04 04:31:37', 1),
(4738, 4520, 59, 5, 0, 'Worked In RR Donnelly, Sustainability Doubt Career Gap, Exp - 18K', 59, '2021-05-04 04:32:53', 1),
(4739, 4491, 59, 5, 0, 'Didnt turn back after checking with his family on the SA,', 59, '2021-05-04 04:39:01', 1),
(4740, 4502, 59, 5, 0, 'Not much open up no relevant Exp in Sales, Sustainability Doubt', 59, '2021-05-04 04:42:37', 1),
(4741, 4476, 8, 3, 0, 'For Guru Team With Ctc - 1,80,000 MCTC 15000, 11672 net', 59, '2021-05-04 05:14:26', 1),
(4742, 4719, 59, 7, 0, 'Shortlisted for DA,selected by Gokul, with CTC - 1,80,000 LPA with PF/PT/ESI Deductions will come under patroniss as Staff', 50, '0000-00-00 00:00:00', 1),
(4743, 4723, 59, 7, 0, 'Shortlisted for Suthagar Team with CTC - 1,62,000 includes PF/PT/ESI deductions will come under patroniss Staff Role', 50, '0000-00-00 00:00:00', 1),
(4744, 4707, 59, 5, 0, 'Task has been given, but didnt turn with the Task will not suits for our role', 50, '0000-00-00 00:00:00', 1),
(4745, 4721, 8, 5, 0, 'will not suite for calling, will not handle pressure. will not sustain', 50, '0000-00-00 00:00:00', 1),
(4746, 4724, 8, 5, 0, 'will not suite for our process', 50, '0000-00-00 00:00:00', 1),
(4747, 4723, 24, 7, 0, 'candidate selected', 59, '2021-05-05 12:54:40', 1),
(4748, 4719, 8, 3, 0, 'for DA, ctc is 180000 and Mctc is 15000.', 59, '2021-05-05 12:58:45', 1),
(4749, 4725, 8, 5, 0, 'not speaking up, will not suite for calling', 50, '0000-00-00 00:00:00', 1),
(4750, 4726, 14, 5, 1, 'not suitable for this profile . ', 50, '0000-00-00 00:00:00', 1),
(4751, 4727, 8, 4, 3, 'check for cRM- thiruvallur', 50, '0000-00-00 00:00:00', 1),
(4752, 4728, 14, 5, 2, 'not fit for this job', 50, '0000-00-00 00:00:00', 1),
(4753, 4723, 59, 7, 0, 'Shortlisted for Suthagar Team with CTC - 1,62,000 includes PF/PT/ESI deductions will come under patroniss Staff Role', 24, '2021-05-05 01:38:26', 1),
(4754, 4730, 8, 3, 0, 'Selected For Kannan Team,CTC - 204000 Includes PF/PT Dedcutions', 50, '0000-00-00 00:00:00', 1),
(4755, 4722, 8, 5, 2, 'has 5yr exp in showroom sales, will not suite for calling and expt sal is 25k and his previous also 25k. will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(4756, 4732, 8, 5, 0, 'will not suite for calling, 7yr into data entry, not speaking up.', 50, '0000-00-00 00:00:00', 1),
(4757, 4723, 8, 3, 0, 'for suthagar team, Mct 13500, ctc 162000', 59, '2021-05-05 03:03:06', 1),
(4758, 4734, 8, 4, 0, 'check for esale, has 3 yr exp in renewal. has basic knowledge about hdfc pdt.', 50, '0000-00-00 00:00:00', 1),
(4759, 4735, 8, 5, 2, 'Will Not Handle Pressure And Will Not Suite For Sales May Be For Renewal.', 50, '0000-00-00 00:00:00', 1),
(4760, 4736, 8, 5, 2, 'will not handle pressure and will not suite for sales may be for renewal.', 50, '0000-00-00 00:00:00', 1),
(4761, 4718, 59, 5, 0, 'Sustainability doubt and the expectation is high with high Exp Pure Data Analyst looking something with the same Skills and technologies', 50, '0000-00-00 00:00:00', 1),
(4762, 4714, 59, 7, 0, 'Selected for Syed Team, with CTC - 1,74,000 included PF/PT/ESI and comes under Patroniss Staff', 57, '2021-05-05 04:22:37', 1),
(4763, 4609, 59, 7, 0, 'Selected for Dhivya Team,CTC - 1,86,000 includes PF/PT/ESI Deductions Joining Date: 06-May-2021', 29, '2021-05-05 06:04:45', 1),
(4764, 4609, 8, 3, 0, 'for RM-esale, 1,86,000 CTC and 15500 as Mctc', 59, '2021-05-05 06:26:58', 1),
(4765, 4734, 11, 1, 0, NULL, 8, '2021-05-05 06:36:32', 1),
(4766, 4730, 57, 4, 0, 'selected ', 8, '2021-05-05 06:38:15', 1),
(4767, 4727, 14, 7, 0, 'Need to check joining date and salary 10', 8, '2021-05-05 06:42:46', 1),
(4768, 4716, 59, 5, 0, 'Not open on the Service Agreement Will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(4769, 4714, 8, 3, 0, 'for syed team 1,74,000 wit esixxamp\nPf. 14500 as Mctc', 59, '2021-05-06 11:22:00', 1),
(4770, 4733, 40, 5, 2, 'Reason for rejection:\n1. Candidate didnxquott show the positive attitude\n2. He is having problem in local language\n3.Existing working exp seems irrelevant to me as per the observation.\n4. During the interview the connection were missing completely between Interviewer and the candidate\n5. Cnadidate belongs to Odisa and he is here in HYD only for his brother occupation in future if he moved to other state he will also migrate to their\n6.Seems not flexible to work in field sales.\n7. Appearance was not good.', 50, '0000-00-00 00:00:00', 1),
(4771, 4747, 59, 4, 0, 'Selected for IT PHP Profile', 7, '0000-00-00 00:00:00', 1),
(4772, 4743, 40, 5, 1, 'Not fit for Job', 50, '0000-00-00 00:00:00', 1),
(4773, 4753, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4774, 4750, 8, 4, 3, 'check for RE, 7m exp in kvb', 7, '0000-00-00 00:00:00', 1),
(4775, 4750, 57, 4, 0, 'candidate is ok .. kindly negotiate the salary and confirm the joining date', 8, '2021-05-06 05:05:12', 1),
(4776, 4586, 8, 5, 0, 'not turned up for next round interview', 8, '2021-05-06 06:23:39', 1),
(4777, 4747, 27, 2, 0, 'He will come tomorrow for the System Task.', 59, '2021-05-06 07:31:44', 1),
(4778, 4748, 59, 4, 0, 'Communication Good, Interested towards Digital Marketing', 7, '0000-00-00 00:00:00', 1),
(4779, 4748, 69, 5, 0, 'High Package In The Previous Company. Doubtful Of Sustainability.', 59, '2021-05-07 10:53:57', 1),
(4780, 2439, 59, 4, 0, 'Check for Tiruvallur,50/50 not much open up ', 7, '0000-00-00 00:00:00', 1),
(4781, 4749, 59, 7, 0, 'Selected For Internship - 5K Stipend - Mern Stack, Joined on 2-Jun-2021 WFH Training', 7, '0000-00-00 00:00:00', 1),
(4782, 4754, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4783, 4761, 59, 5, 0, 'Communication Average, Less Exp in MIS but the expectation is very high', 7, '0000-00-00 00:00:00', 1),
(4784, 4630, 8, 4, 0, 'Confirm DOJ And Salary', 59, '2021-05-07 11:56:49', 1),
(4785, 2439, 8, 5, 0, 'will not suite for crm, no clarity in speech, not speaking up.', 59, '2021-05-07 11:58:47', 1),
(4786, 4764, 59, 5, 0, 'Will not sustain for a long,Just for time being looking for a job if he finds any relevant Core job will move for that', 7, '0000-00-00 00:00:00', 1),
(4787, 4738, 18, 7, 3, 'His old CTC is 3L pa. Need to negotiate salary and can join immed.\n', 50, '0000-00-00 00:00:00', 1),
(4788, 4765, 59, 4, 0, 'Candidate ok for RM, internal reference, Have exp in Sales', 7, '0000-00-00 00:00:00', 1),
(4789, 4690, 59, 5, 0, 'only into front end no knowledge in basic pHP and the salary Expectation in very high', 7, '0000-00-00 00:00:00', 1),
(4790, 4767, 8, 5, 0, 'will not suite for calling and our process', 7, '0000-00-00 00:00:00', 1),
(4791, 4755, 8, 5, 0, 'will not sustain and will not handle pressure. absconded from the last company.', 7, '0000-00-00 00:00:00', 1),
(4792, 4765, 71, 4, 0, 'Candidate ok for RM.', 59, '2021-05-07 03:52:04', 1),
(4793, 4765, 18, 5, 0, 'First i shorlisted but Rejected in ref check', 71, '2021-05-07 03:58:54', 1),
(4794, 4771, 8, 2, 0, 'for front office', 7, '0000-00-00 00:00:00', 1),
(4795, 4513, 59, 5, 0, 'Communication Good, Requested time to Check For Agreement With Parents and didnt turn back', 59, '2021-05-07 04:21:02', 1),
(4796, 4191, 59, 5, 0, '50/50 On The Agreement, High Pay Expectation', 59, '2021-05-07 04:21:46', 1),
(4797, 4374, 59, 5, 0, 'Communication Is Average, Open For Any Jobs,not open for the agreement\n', 59, '2021-05-07 04:22:37', 1),
(4798, 4515, 59, 5, 0, 'Fresher, Looking For Digi Mar, Sustainability Doubt,', 59, '2021-05-07 04:26:14', 1),
(4799, 4757, 21, 4, 4, 'ok ,need to confirm gaurav sir ', 50, '0000-00-00 00:00:00', 1),
(4800, 4758, 11, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4801, 4763, 27, 2, 0, 'Interview Taken. Task Given. She will complete and let us know.', 7, '0000-00-00 00:00:00', 1),
(4802, 4352, 8, 4, 0, 'Confirm DOJ And Salary', 59, '2021-05-07 06:42:04', 1),
(4803, 4768, 59, 5, 0, 'Communication Average, Not much focused towards Work, Family running their own business. Sustainability Doubt, yet to complete his exams\n', 7, '0000-00-00 00:00:00', 1),
(4804, 4782, 59, 5, 0, 'Communication ok, Full focused on pure Data Science openings, Sustainability issue 3 yrs 3 companies and high Salary Expectations', 7, '0000-00-00 00:00:00', 1),
(4805, 4783, 8, 4, 0, 'check for RM esale, knows basics in insurance and has exp in renewal and customer support.', 7, '0000-00-00 00:00:00', 1),
(4806, 4663, 8, 5, 0, 'no response', 8, '2021-05-08 11:12:11', 1),
(4807, 4784, 40, 4, 3, 'We can consider this guys as fresher and we need to train him.\nWilling to work under contract for 2 years and having bike and laptop and staying 8 km far from office willing to work on sundays and late evening if required, 7 observation also explained, Salary as per company norms.', 50, '0000-00-00 00:00:00', 1),
(4808, 4784, 18, 7, 4, 'Selected for Veben Team. His last CTC is 2.2. max donxquott go more than 2.4L while offering the job.', 40, '2021-05-08 11:29:43', 1),
(4809, 4786, 59, 5, 0, 'Exp In MIS,Not Much With Communications Need much ok with SA', 7, '0000-00-00 00:00:00', 1),
(4810, 4783, 11, 1, 0, NULL, 8, '2021-05-08 12:08:09', 1),
(4811, 4780, 59, 5, 0, 'Not much suits for UI,not much knowledge ', 7, '0000-00-00 00:00:00', 1),
(4812, 4775, 59, 5, 0, 'Experienced, Gap In Career Expecting 21k,Sustainability doubt on this profile', 7, '0000-00-00 00:00:00', 1),
(4813, 4731, 59, 5, 0, 'Will not fit for our Digital Marketing Profile, will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(4814, 4788, 8, 5, 0, 'very slow, not speaking up and will not handle Sales pressure. ', 7, '0000-00-00 00:00:00', 1),
(4815, 4751, 59, 5, 0, 'Location too long fresher,exams yet to complete\n', 7, '0000-00-00 00:00:00', 1),
(4816, 4773, 59, 5, 0, 'Much into Data Science with the Technologies of Python and more. will not sustain for our Data Analyst position', 60, '0000-00-00 00:00:00', 1),
(4817, 4781, 59, 2, 0, 'communication Average,2+ yrs into MIS with Amazon,30 Days of notice,Salary Expectation is high,Sustainability doubt', 7, '0000-00-00 00:00:00', 1),
(4818, 4790, 59, 5, 0, 'Communication ok, Work Exp into Core Subject(Biotechnology),Too long Distance up and down 52kms and the expectation is around 17K TH', 7, '0000-00-00 00:00:00', 1),
(4819, 4791, 59, 5, 0, 'Good Communication, Sustainability doubt need a month time post selection for the submission of Documents.Also he holds a offer with BYJuxquots for BDE with 7LPA ans being into Sales he was not much comfortable with BYJU. His Expectation from us is around 4 LPA. Much Focus into Financial Analyst', 7, '0000-00-00 00:00:00', 1),
(4820, 4727, 53, 7, 0, 'Shortlisted fr thiruvallur location, pls cnfrm DOJ and salary', 14, '2021-05-10 12:50:05', 1),
(4821, 4729, 27, 2, 0, 'Interview taken. Task Given', 7, '0000-00-00 00:00:00', 1),
(4822, 4792, 27, 5, 0, 'dont know the basic. she will not suit for us.', 7, '0000-00-00 00:00:00', 1),
(4823, 4629, 8, 4, 0, 'Confirm DOJ And Salary', 59, '2021-05-10 07:11:38', 1),
(4824, 4763, 27, 5, 0, 'Task Not completed and no response.', 27, '2021-05-11 09:46:15', 1),
(4825, 4798, 59, 2, 0, 'Communication Ok, If Trained Will Pick Up. Open For The Service Agreement And The Expectation Is 18-20K For 1.7 Yrs Can Give A Try For MIS', 7, '0000-00-00 00:00:00', 1),
(4826, 4800, 59, 2, 0, 'Communication Ok, Need couple of hours to give his confirmation for the Service Agreement. Open for the Same CTC 23400 Gross, Can give a try for MIS, but the location is long (Guduvanchery)', 7, '0000-00-00 00:00:00', 1),
(4827, 4799, 59, 5, 0, 'Communication Is Good, But No Local Language, Not Much Into Excel Need To Train A Lot, Open For Agreement But Not Sure Sustainability Doubts', 7, '0000-00-00 00:00:00', 1),
(4828, 4802, 59, 7, 0, 'Selected for MF, need to confirm on the joining post relations in the lockdown', 7, '0000-00-00 00:00:00', 1),
(4829, 4801, 59, 2, 0, '50/50 communication average, Long Distance around 20kms,Can train him for MIS, If no other profiles suits can give a try with this.2+ yrs with 12.5 Gross\n', 7, '0000-00-00 00:00:00', 1),
(4830, 4804, 27, 2, 0, 'Interview taken. task given.', 7, '0000-00-00 00:00:00', 1),
(4831, 4805, 27, 2, 0, 'RNR. I will call tomorrow.', 7, '0000-00-00 00:00:00', 1),
(4832, 4806, 27, 2, 0, 'RNR. will check again tomorrow.', 7, '0000-00-00 00:00:00', 1),
(4833, 4797, 40, 5, 2, 'Not fit for Job', 50, '0000-00-00 00:00:00', 1),
(4834, 4802, 35, 7, 0, 'Interested in sales, also have a exp in basic mF Process, Exp CTC Min 20% from last CTC Negotiate the Salary. ', 59, '2021-05-11 07:16:55', 1),
(4835, 4802, 59, 7, 0, 'Selected for MF, need to confirm on the joining post relations in the lockdown', 59, '2021-05-11 07:16:55', 1),
(4836, 4794, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4837, 4813, 59, 5, 0, 'Communication Ok , She Around 26 Yrs, Not Sure On The Sustainability, Currently Working 15 Days Notice As She Is In 3rd Party Payroll', 60, '0000-00-00 00:00:00', 1),
(4838, 4816, 27, 2, 0, 'Interview taken.task given.', 7, '0000-00-00 00:00:00', 1),
(4839, 4808, 27, 2, 0, 'RNR. I will try tomorrow.\n', 7, '0000-00-00 00:00:00', 1),
(4840, 4814, 40, 4, 3, 'Having exp in field sales But yet to check his Exp analyze and Salary part.', 50, '0000-00-00 00:00:00', 1),
(4841, 4814, 18, 7, 4, 'Selected for Veben team. His last CTC is 2.52... Confirm the Last CTDC\n and negotiate salary accordingly.', 40, '2021-05-12 03:40:01', 1),
(4842, 4807, 40, 5, 3, 'Not a sustainer and not fit for our profile.', 50, '0000-00-00 00:00:00', 1),
(4843, 4809, 40, 8, 0, 'Not attended', 50, '0000-00-00 00:00:00', 1),
(4844, 4810, 40, 5, 2, 'Not fit for our Profile', 50, '0000-00-00 00:00:00', 1),
(4845, 4815, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4846, 4805, 27, 2, 0, 'Interview taken. Task Given', 27, '2021-05-12 07:48:28', 1),
(4847, 4730, 19, 7, 4, 'fit for sales', 57, '2021-05-13 12:42:17', 1),
(4848, 4750, 59, 5, 0, 'Profile kept on hold during this pandemic and dropped post the completion of Lockdown', 57, '2021-05-13 12:43:43', 1),
(4849, 4823, 40, 4, 4, 'He may fit for our profile xxamp Salary part we need to discuss and We should check his Sustainability part properly once again. He is ok with company Norms and can able to join immediately.', 50, '0000-00-00 00:00:00', 1),
(4850, 4770, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4851, 4823, 18, 7, 4, 'Selected on thursday with immed joining. Expected package is 3.25l Pa', 40, '2021-05-13 01:04:26', 1),
(4852, 4824, 59, 5, 0, 'Fresher for this Role,Not much knowledge in Excel, will not sustain for a long. Max for a year only and the Expectation is High', 60, '0000-00-00 00:00:00', 1),
(4853, 4818, 64, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4854, 4827, 59, 5, 0, 'Communication ok, Sustainability Doubt not open for SA, No Excel knowledge', 60, '0000-00-00 00:00:00', 1),
(4855, 4730, 59, 7, 0, 'Selected for Kannan Team,CTC - 204000 includes PF/PT Dedcutions', 19, '2021-05-13 02:03:30', 1),
(4856, 4826, 59, 2, 0, 'Communication Ok, Career Gap Expecting 22K, She s ok for SA,but not sure on her sustainability. Hold her \nProfile,let see if there is o other profiles\n', 60, '0000-00-00 00:00:00', 1),
(4857, 4730, 8, 3, 0, 'Selected For Kannan Team,CTC - 204000 Includes PF/PT Dedcutions', 59, '2021-05-13 02:50:27', 1),
(4858, 4831, 59, 5, 0, 'Communication Good ,Will not sustain more than a year,Much focus on pure Analyst role\n', 7, '0000-00-00 00:00:00', 1),
(4859, 4834, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4860, 4832, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4861, 4822, 59, 5, 0, 'Communication Average, Pressure Handling Doubt, Need To Check With Family On SA ,but didnt turn', 60, '0000-00-00 00:00:00', 1),
(4862, 4781, 59, 5, 0, 'Communication Average,2+ Yrs Into MIS With Amazon,30 Days Of Notice, Salary Expectation Is High, Sustainability Doubt', 59, '2021-05-13 03:28:10', 1),
(4863, 4800, 59, 5, 0, 'Communication Ok, Service Agreement. Open For The Same CTC 23400 Gross, Can Give A Try For MIS, But The Location Is Long (Guduvanchery)', 59, '2021-05-13 03:29:20', 1),
(4864, 4798, 59, 5, 0, 'Communication Ok, If Trained Will Pick Up. Open For The Service Agreement And The Expectation Is 18-20K For 1.7 Yrs Can Give A Try For MIS. Interviewed over Zoom by Gokul, No knowledge in Excel,Not suits for the salary Expectation', 59, '2021-05-13 03:31:03', 1),
(4865, 4821, 64, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(4866, 4825, 59, 5, 0, 'Communication ok, will not sustain for a long.Not much comfortable with the SA', 60, '0000-00-00 00:00:00', 1),
(4867, 4842, 40, 5, 3, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4868, 4837, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4869, 4844, 40, 5, 3, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4870, 4846, 40, 4, 4, 'Good in sales. He may fit for our profile. Yet to discuss with him about 7 days Observation period and salary hold process.', 50, '0000-00-00 00:00:00', 1),
(4871, 4840, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4872, 4860, 13, 2, 2, 'THREE ROUNDS COMPLETED GOOD IN \nINTRACTION PEN SALES IN INERVIEW,GOOD \nFAMILY BACKGROUND GOOD ONLY\n\nBUT NOT SUITE FOR WFH\n', 8, '2021-05-15 10:15:12', 1),
(4873, 4853, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4874, 4854, 40, 4, 4, 'Physically not fit but having proper knowledge in sales and marketing he may fit for our profile.', 50, '0000-00-00 00:00:00', 1),
(4875, 4855, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(4876, 4858, 40, 5, 2, 'Not fit for our profile and he was waiting for govt Job for the last 4 years.', 50, '0000-00-00 00:00:00', 1),
(4877, 4804, 27, 5, 0, 'Task not good for 2.4 years experienced. This code look like a fresher.', 27, '2021-05-15 10:34:35', 1),
(4878, 4835, 59, 5, 0, 'Not responding to the calls', 7, '0000-00-00 00:00:00', 1),
(4879, 4836, 59, 5, 0, 'Communication ok, Focus much into IT Technical Skill, Sustainability Doubt', 7, '0000-00-00 00:00:00', 1),
(4880, 4856, 59, 5, 0, 'Communication OK Fresher With M.Sc Statistics, Need To Check Her Written Communication,but sustainability doubts on this profile\n', 7, '0000-00-00 00:00:00', 1),
(4881, 4845, 59, 5, 0, 'Communication Average,Looks much for Android opening,will not fit for DA/MIS Role\n', 7, '0000-00-00 00:00:00', 1),
(4882, 4864, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', 7, '0000-00-00 00:00:00', 1),
(4883, 4846, 18, 5, 0, 'Candidate not interested in insurance field\n', 40, '2021-05-15 12:06:26', 1),
(4884, 4802, 59, 7, 0, 'Selected for MF, need to confirm on the joining post relations in the lockdown', 35, '2021-05-15 12:20:05', 1),
(4885, 4850, 59, 5, 0, 'Communication No, Looking only for WFH and to not open for the location up and down 40 kms', 60, '0000-00-00 00:00:00', 1),
(4886, 4852, 59, 5, 0, 'Communication ok, Will not sustain for a long, TCS Offered 4.5 LPA and looking only for Week off Job', 60, '0000-00-00 00:00:00', 1),
(4887, 4857, 59, 5, 0, 'Communication Ok, Focused much into Data Science, and The Expected Salary is 3.2-3.5 LPA for 1+ yrs Exp', 60, '0000-00-00 00:00:00', 1),
(4888, 4854, 18, 4, 3, 'Not 100% convinced so asked gaurav to take another round', 40, '2021-05-15 02:23:40', 1),
(4889, 4873, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', 7, '0000-00-00 00:00:00', 1),
(4890, 4875, 8, 4, 0, 'fresher, expt 10-12k, she is from readhills long distance and she will get back within today EOD.', 7, '0000-00-00 00:00:00', 1),
(4891, 4865, 59, 5, 0, 'Lcoation too Long,No clear focus on the career.Will not sustain for a long', 7, '0000-00-00 00:00:00', 1),
(4892, 4874, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4893, 4880, 59, 5, 0, 'Not suits for our Role, Focus into IT Database Management,Withour clear info about the profile she applied for the opening', 7, '0000-00-00 00:00:00', 1),
(4894, 4875, 53, 7, 0, 'Selected For Thiruvallur Location 10k Ctc DOJ 10 Jun 21 Pls Cnfrm', 8, '2021-05-17 10:35:39', 1),
(4895, 4862, 13, 7, 3, 'THREE ROUNDS COMPLETED FATHER IN \nFOREIGN DRIVER INCOME 30 K MONTHLY\nANT SOLUTION HERBAL PRODUCT SALES experienced\ngood piching and conveniencing skills ', 8, '2021-05-17 10:36:29', 1),
(4896, 4861, 13, 2, 2, 'ALL THREE ROUNDS COMPLETED 6 MONTHS\nEXPERIENCE IN LAKSHMI FORD,FATHER CRC \nCONDUCTOR,2 SISTER,1 BROTHER,\nFAMILY IS VERY POOR CONDITION AND NO NETWORK FACILITY', 8, '2021-05-17 10:37:11', 1),
(4897, 4864, 13, 7, 2, 'THREE ROUNDS COMPLETED FATHER FARMER\nOWN HOUSE ,SISTER,BROTHER,EXPERIENCE IN\nDARLING TVS,PLAN TO BUY A HOUSE AND CAR\nlots of experience performing good only', 8, '2021-05-17 10:37:46', 1),
(4898, 4873, 13, 7, 2, 'THREE ROUNDS COMPLETED EXPERIENCE\nIN SUPER MARKET ACCOUNTS AND HANDLING\nFATHER JOBLESS NOW,SISTER NURSE,1 YEAR \nBOND BECAUSE OF NETWORKING FIELD INTRESTED\n', 8, '2021-05-17 10:41:13', 1),
(4899, 4868, 40, 4, 3, 'Selected. But Ixquotm not convinced 100% since he is new to this industry and having zero experience in sales. He is not having a laptop but he said he will arrange it in 10-15days', 50, '0000-00-00 00:00:00', 1),
(4900, 4867, 40, 4, 3, 'Please check his potential and give the joining date.', 50, '0000-00-00 00:00:00', 1),
(4901, 4870, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4902, 4871, 40, 5, 1, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4903, 4872, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4904, 4868, 18, 8, 0, 'Not attended', 40, '2021-05-17 01:07:21', 1),
(4905, 4866, 59, 5, 0, 'Communication ok ,SA need to check with Husband not sure about her sustainability', 60, '0000-00-00 00:00:00', 1),
(4906, 4869, 59, 5, 0, 'Communication Average,Got another offer and not open for F2F', 60, '0000-00-00 00:00:00', 1),
(4907, 4867, 18, 4, 4, 'Selected for hyderabad. Need to negotiate for minimum increment. Need 10 days notice perion and selcted for veben team\n', 40, '2021-05-17 04:09:42', 1),
(4908, 4877, 27, 5, 0, 'Attitude is not good. she doesxquott know basics.', 7, '0000-00-00 00:00:00', 1),
(4909, 4867, 59, 5, 0, 'Selected for VEben, Discussed on the Salary and shared the breakup for the confirmation from the candidate,But he didnt turn and RNR', 18, '2021-05-17 06:18:20', 1),
(4910, 4854, 29, 1, 0, NULL, 18, '2021-05-17 10:49:30', 1),
(4911, 4814, 59, 7, 0, 'Selected for Veben,CTC - 288000 includes PF/PT', 18, '2021-05-17 10:54:16', 1),
(4912, 4784, 59, 7, 0, 'Selected For Veben, CTC - 2.35 LPA Includes PF/PT ', 18, '2021-05-17 10:58:52', 1),
(4913, 4808, 27, 2, 0, 'Interview taken. task given.', 27, '2021-05-18 10:26:02', 1),
(4914, 4805, 27, 2, 0, 'task has to be given saturday.', 27, '2021-05-18 10:26:36', 1),
(4915, 4816, 27, 5, 0, 'task not completed. no response', 27, '2021-05-18 10:27:36', 1),
(4916, 4747, 27, 5, 0, 'no response.', 27, '2021-05-18 10:28:17', 1),
(4917, 4729, 27, 5, 0, 'task not completed.', 27, '2021-05-18 10:28:35', 1),
(4918, 4883, 59, 5, 0, 'Communication Ok,Sustainability Doubts and handling the pressure doubts on this profile,fresher profile', 7, '0000-00-00 00:00:00', 1),
(4919, 4890, 59, 5, 0, 'Not open for Insurance Sales', 60, '0000-00-00 00:00:00', 1),
(4920, 4889, 59, 4, 0, '50/50 no relevant Exp but into sales, sustainability doubt needs to have 1 yr Service Agreement. Bike is there, laptop also', 60, '0000-00-00 00:00:00', 1),
(4921, 4887, 18, 4, 4, 'Didnt complete fully. Veben need to cross check and I will take another round', 50, '0000-00-00 00:00:00', 1),
(4922, 4891, 59, 4, 0, 'Communication Average,50/50 for our profile. In Feb 2021 he joined a company related to bulk SMS sales but not comfortable with that. He is open for the same package(15K Gross). The bike is there, Laptop he has but not in working condition needs some time to prepare', 60, '0000-00-00 00:00:00', 1),
(4923, 4892, 59, 5, 0, 'His overall 5+ Experience in the Construction domain and attended few interviews in the same construction domain, for time being he looks for other domains. His last drawn package was 33K gross. Sustainability doubt on this profile. No Laptop Bike is there almost 17 kms from his location', 60, '0000-00-00 00:00:00', 1),
(4924, 4891, 40, 5, 2, 'Not fit for our profile', 59, '2021-05-18 12:48:11', 1),
(4925, 4889, 40, 5, 3, 'Not fit for our profile', 59, '2021-05-18 12:49:03', 1),
(4926, 4894, 59, 5, 0, 'Communication ok ,from mogappair but not sure on her sustainability', 60, '0000-00-00 00:00:00', 1),
(4927, 4882, 41, 5, 0, 'interviewed by Gokul \ncandidate not good in excel\nhaving 4 year exp and expected salary is a also high\ngood communication', 50, '0000-00-00 00:00:00', 1),
(4928, 4888, 18, 8, 0, 'Old lead need to verfiy', 50, '0000-00-00 00:00:00', 1),
(4929, 4881, 27, 2, 0, 'reschedulled 22nd MAY 2021', 7, '0000-00-00 00:00:00', 1),
(4930, 4884, 27, 5, 0, 'Profile will not suitable for us.', 7, '0000-00-00 00:00:00', 1),
(4931, 4886, 27, 2, 0, 'Reschedulled today.', 7, '0000-00-00 00:00:00', 1),
(4932, 4899, 27, 2, 0, 'Interview taken. task given. ', 7, '0000-00-00 00:00:00', 1),
(4933, 4900, 27, 2, 0, 'Interview taken. Task has to be given.', 7, '0000-00-00 00:00:00', 1),
(4934, 4902, 27, 5, 0, 'She is looking for work from home only.', 7, '0000-00-00 00:00:00', 1),
(4935, 4738, 8, 4, 0, 'Check And Revert', 18, '2021-05-18 05:12:55', 1),
(4936, 4823, 59, 7, 0, 'Selected for Veben, Hyderabad Location\nCTC - 312000 included PF/PT deductions. Post Lockdown Joining date will be confirmed', 18, '2021-05-18 05:17:29', 1),
(4937, 4887, 40, 5, 3, 'Not fit for our profile', 18, '2021-05-18 05:19:34', 1),
(4938, 4619, 59, 7, 0, 'Selected for Santhosh Team, CTC has been confirmed by Sriram Sir itself. Committed CTC is 3.96 LPA includes PF/PT', 18, '2021-05-18 05:25:48', 1),
(4939, 4906, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4940, 4916, 8, 5, 0, '6m in JD and now in native, expt is 14-15k. basically from mumbai settled in thiruvannamalai. father running a hotel, driver in Dubai. too much attitude.', 7, '0000-00-00 00:00:00', 1),
(4941, 4917, 8, 5, 0, 'will not suite for calling, very native lang. will not suite for sales profie.', 7, '0000-00-00 00:00:00', 1),
(4942, 4919, 8, 5, 0, 'has 1.5yr exp in qc, will not suite for sales, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(4943, 4918, 8, 5, 0, 'bba in airlines and 2yr training in chennai airport, not speaking up, from madurai sty in pallavaram.', 7, '0000-00-00 00:00:00', 1),
(4944, 4921, 8, 5, 0, 'done her bba ntr. worked in same fielf for past 1.5yr, planning to do her higher study and felt over pressure so reliver from the job 16k, will not sustain and expt is 15-17k.', 7, '0000-00-00 00:00:00', 1),
(4945, 4913, 59, 5, 0, 'Communication Average, Will not sustain in our domain and his focus into FMCG only', 60, '0000-00-00 00:00:00', 1),
(4946, 4912, 59, 5, 0, 'Communication Average, Not open for the SA and she is very clear on the sustainability long stay', 60, '0000-00-00 00:00:00', 1),
(4947, 4808, 27, 5, 0, 'Task not completed.', 27, '2021-05-20 09:27:04', 1),
(4948, 4806, 27, 5, 0, 'Not completed the task. rejected by dhineshraj.', 27, '2021-05-20 10:47:11', 1),
(4949, 4926, 59, 5, 0, 'No Communication, He is into Quality Check no Excel knowledge. Sustainability doubt for our role', 7, '0000-00-00 00:00:00', 1),
(4950, 4904, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4951, 4935, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4952, 4823, 72, 1, 0, NULL, 59, '2021-05-20 05:06:28', 1),
(4953, 4814, 72, 1, 0, NULL, 59, '2021-05-20 05:16:32', 1),
(4954, 4774, 40, 7, 0, 'Mapped to Sriram and already shortlisted candidate', 50, '0000-00-00 00:00:00', 1),
(4955, 4928, 18, 4, 3, 'Fresher but last 1 year did not work after completing MBA can try', 50, '0000-00-00 00:00:00', 1),
(4956, 4932, 59, 4, 0, 'Having 1 yr of Sales Experience in Club Mahindra, communication is good, Bike is there but no Laptop. Sustainability Doubt 2yrs 2 companies. Current CTC 2.5 LPA', 60, '0000-00-00 00:00:00', 1),
(4957, 4925, 59, 5, 0, 'No Communication, not much suits for our position, already he got an offer and not interested being the same into sales', 60, '0000-00-00 00:00:00', 1),
(4958, 4929, 59, 5, 0, 'No Communication Fresher Profile, will not suit our role.No idea on our domain. Already got an offer for 17Gross and looks for something more.will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(4959, 4930, 59, 5, 0, 'No response to the calls', 60, '0000-00-00 00:00:00', 1),
(4960, 4932, 40, 4, 4, 'Communication was good, having exp in inbound sales and intersted in field sales very much,Last take home was 2.4lac expectation as per company norms.', 59, '2021-05-21 10:36:45', 1),
(4961, 4801, 59, 5, 0, '50/50 Communication Average, Long Distance Around 20kms,Sustainability doubt 12.5 Gross', 59, '2021-05-21 11:13:11', 1),
(4962, 4774, 18, 7, 4, 'Spoken 2,75L CTC overall Can join Immed', 40, '2021-05-21 11:54:10', 1),
(4963, 4938, 59, 4, 0, '50/50 Fresher Profile, Focusing on the Marketing Profile, Can check for our role. The bike is there, Laptop can be arranged', 60, '0000-00-00 00:00:00', 1),
(4964, 4945, 59, 5, 0, 'Open for CRM Position only, Distance around 18Kms sustainability doubt and Expectation is high', 60, '0000-00-00 00:00:00', 1),
(4965, 4895, 27, 2, 0, 'He wants to reschedule on 26-05-2021', 7, '0000-00-00 00:00:00', 1),
(4966, 4949, 59, 5, 0, '3yrs 3 companies with a different domain. Will not handle the pressure and sustainability doubt for our role.', 60, '0000-00-00 00:00:00', 1),
(4967, 4936, 59, 5, 0, 'Communication Good, Holding an offer with Vedantu for 3.5 LPA and looking for some more.Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(4968, 4932, 18, 7, 4, 'Shortlisted foy Hyd. Salary is 2.75L pa Immed Joining', 40, '2021-05-21 01:44:31', 1),
(4969, 4938, 40, 4, 3, 'Having a bike and can able to arrange a laptop and immediately can join. Fresher and expectation is 18-20k Take home salary. Please check his Sustainability and background. ', 59, '2021-05-21 02:03:37', 1),
(4970, 4937, 59, 5, 0, 'Not open for Insurance Sales', 60, '0000-00-00 00:00:00', 1),
(4971, 4784, 59, 7, 0, 'Selected For Veben, CTC - 2.35 LPA Includes PF/PT ', 59, '2021-05-21 03:02:26', 1),
(4972, 4784, 72, 1, 0, NULL, 59, '2021-05-21 03:59:50', 1),
(4973, 4933, 27, 2, 0, 'Interview taken. task has to be given.', 7, '0000-00-00 00:00:00', 1),
(4974, 4928, 40, 7, 3, 'selected. Salary expectation is 2.5lac CTC and having a laptop and bike can join Immediately. please negotiate salary part and check his background too. ', 18, '2021-05-21 05:22:17', 1),
(4975, 4938, 18, 5, 0, 'He is having fits and also he will not sustain and average sales guy', 40, '2021-05-22 12:44:49', 1),
(4976, 4928, 59, 7, 0, 'Selected for Veben Team with CTC - 2.5 LPA includes PF/PT', 40, '2021-05-22 12:47:47', 1),
(4977, 4847, 27, 5, 0, 'He Already Got Job.', 27, '2021-05-22 04:07:24', 1),
(4978, 4774, 8, 3, 0, 'For veben team hyderabad. 2.75L ctc, 22917 MCTC and 19316.6 as net. with pf/PT\n\n', 18, '2021-05-23 08:01:51', 1),
(4979, 4932, 8, 3, 0, 'For Veben Team Hyderabad. 2.75L Ctc, 22917 MCTC And 19316.6 As Net. With Pf/PT', 18, '2021-05-23 09:15:19', 1),
(4980, 4952, 59, 7, 0, 'Selected for React Intern, - 3 months Stipend Rs3500 per month post intern will confirm the salary - 3 yrs service Agreement,will come and join once receive the original documents from College', 7, '0000-00-00 00:00:00', 1),
(4981, 4907, 27, 5, 0, 'She is not interested.', 27, '2021-05-25 06:36:01', 1),
(4982, 4805, 27, 5, 0, 'no sustainability.', 27, '2021-05-25 06:38:40', 1),
(4983, 4885, 27, 2, 0, 'RNR', 27, '2021-05-26 10:35:07', 1),
(4984, 4881, 27, 2, 0, 'He Wants To Reschedule On 26-05-2021', 27, '2021-05-26 10:36:38', 1),
(4985, 4948, 27, 2, 0, 'Interview taken. task given.', 1, '0000-00-00 00:00:00', 1),
(4986, 4967, 40, 5, 3, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4987, 4968, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(4988, 4969, 40, 7, 4, 'Candidate selected', 50, '0000-00-00 00:00:00', 1),
(4989, 4970, 41, 5, 0, 'analytical weak,Communication average, and no excel knowledge', 50, '0000-00-00 00:00:00', 1),
(4990, 4963, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4991, 4962, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4992, 4954, 59, 7, 0, 'Intern for 5 months(1 month Internship - No Payment and for remaning months 3.5 Stipend,post intern 3yrs agreement also salary wil be confirmed', 7, '0000-00-00 00:00:00', 1),
(4993, 4974, 54, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(4994, 4947, 69, 5, 0, 'Candidate having own business', 7, '0000-00-00 00:00:00', 1),
(4995, 4964, 27, 2, 0, 'Interview taken. Task Given.', 7, '0000-00-00 00:00:00', 1),
(4996, 4973, 41, 5, 0, 'Not interested in MIS role', 50, '0000-00-00 00:00:00', 1),
(4997, 4972, 41, 4, 0, 'Check this profile for MIS ', 50, '0000-00-00 00:00:00', 1),
(4998, 4972, 72, 1, 0, NULL, 41, '2021-05-26 05:51:59', 1),
(4999, 4895, 27, 2, 0, 'Intervirew taken. task given.', 27, '2021-05-26 05:55:40', 1),
(5000, 4885, 27, 2, 0, 'RNR', 27, '2021-05-26 07:03:30', 1),
(5001, 4881, 27, 2, 0, 'RNR', 27, '2021-05-26 07:03:45', 1),
(5002, 4975, 40, 5, 3, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(5003, 4977, 40, 5, 2, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(5004, 4978, 40, 4, 3, 'Selected for next round but please ensure his abilities once again ', 50, '0000-00-00 00:00:00', 1),
(5005, 4979, 40, 5, 3, 'not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5006, 4839, 27, 5, 0, 'no response. task not completed.', 27, '2021-05-27 03:16:32', 1),
(5007, 4988, 27, 2, 0, 'Interview taken. task given.', 7, '0000-00-00 00:00:00', 1),
(5008, 4990, 27, 2, 0, 'She is learning now. she will come back after 1 month.', 7, '0000-00-00 00:00:00', 1),
(5009, 4991, 27, 2, 0, 'Interivew taken. he had experience in asp.net. fresher for php. Task Given.', 7, '0000-00-00 00:00:00', 1),
(5010, 4965, 27, 5, 0, 'Task not completed', 27, '2021-05-27 06:54:13', 1),
(5011, 4993, 8, 4, 4, 'good in communication and convincing, done few courses related to IT, interested in sales and marketing but expt sal is 5L (nego). told him to share his last org. payslips to cross-check.', 50, '0000-00-00 00:00:00', 1),
(5012, 4995, 8, 2, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(5013, 4996, 8, 5, 0, 'Fresher for sales, little bit slow and no sustainability and expt is 16k. avg communication and convincing. Will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(5014, 4998, 8, 5, 3, 'Fresher, he is from Bihar and very native language and avg communication. doesnxquott have 2 wheeler and expt is 18k. will not suite for RM.', 50, '0000-00-00 00:00:00', 1),
(5015, 4999, 8, 2, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(5016, 4878, 27, 5, 0, 'could not complete the task.', 27, '2021-05-28 12:09:35', 1),
(5017, 4994, 27, 5, 0, 'not good in technical.', 7, '0000-00-00 00:00:00', 1),
(5018, 5000, 27, 2, 0, 'Interview taken. task given', 7, '0000-00-00 00:00:00', 1),
(5019, 5009, 27, 2, 0, 'RNR.', 7, '0000-00-00 00:00:00', 1),
(5020, 4881, 27, 5, 0, 'tried too many times. no response from him. ', 27, '2021-05-28 05:50:12', 1),
(5021, 4885, 27, 5, 0, 'Tried too many times. no response.', 27, '2021-05-28 06:15:26', 1),
(5022, 4896, 27, 2, 0, 'Interview taken. task has to be given 29th may evening', 27, '2021-05-28 07:20:43', 1),
(5023, 5004, 27, 2, 0, 'Interview taken. task given.', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(5024, 5005, 27, 2, 0, 'interview taken. task has to be given.', 7, '0000-00-00 00:00:00', 1),
(5025, 5008, 27, 5, 0, 'Not good in basic.', 7, '0000-00-00 00:00:00', 1),
(5026, 5015, 27, 2, 0, 'No response.', 7, '0000-00-00 00:00:00', 1),
(5027, 5019, 27, 2, 0, 'Task has to be given.', 7, '0000-00-00 00:00:00', 1),
(5028, 5022, 27, 2, 0, 'Intrerview taken. Task Given.', 7, '0000-00-00 00:00:00', 1),
(5029, 5023, 27, 2, 0, 'Interview taken. Task Given.', 7, '0000-00-00 00:00:00', 1),
(5030, 4948, 27, 5, 0, 'Someone did his task.', 27, '2021-05-31 03:57:45', 1),
(5031, 4923, 60, 1, 0, NULL, 27, '2021-05-31 03:58:50', 1),
(5032, 4923, 27, 7, 0, 'selected. we can take it as a fresher. same terms applicable.', 27, '2021-05-31 03:58:50', 1),
(5033, 5009, 27, 5, 0, 'not good in basic.', 27, '2021-05-31 04:51:13', 1),
(5034, 4988, 27, 5, 0, 'Task not completed.', 27, '2021-05-31 06:08:26', 1),
(5035, 1647, 27, 2, 0, 'Inrterview taken. task given.', 27, '2021-05-31 06:12:18', 1),
(5036, 5018, 8, 2, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(5037, 5020, 8, 2, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(5038, 5021, 8, 4, 3, 'fresher for insurance sales, avg communication and has 3.5yr exp in sales. he was plannig to do his higher study so relived from the job, now he dropped his plan and looking for a job in sales, last TH is 30k and he is expt is 35k.', 50, '0000-00-00 00:00:00', 1),
(5039, 5015, 27, 5, 0, 'No Proper Reaponse.', 27, '2021-06-01 10:56:30', 1),
(5040, 5024, 8, 2, 0, 'rescheduled', 50, '0000-00-00 00:00:00', 1),
(5041, 5027, 8, 4, 0, 'Akshitha is fresher for calling, avg communication and has 6m exp in back end job like KYC.was getting 15k and now expecting 13k as th.', 50, '0000-00-00 00:00:00', 1),
(5042, 5005, 27, 5, 0, 'Task not completed. She is download from google and shared with us.', 27, '2021-06-01 11:58:14', 1),
(5043, 5003, 27, 2, 0, 'Interview taken. task has to be given.\n', 7, '0000-00-00 00:00:00', 1),
(5044, 5029, 27, 2, 0, 'reschedulled on 01JAN2021', 7, '0000-00-00 00:00:00', 1),
(5045, 5028, 27, 5, 0, 'Not Good in basics.', 7, '0000-00-00 00:00:00', 1),
(5046, 5030, 27, 5, 0, 'Not good in basics', 7, '0000-00-00 00:00:00', 1),
(5047, 4928, 60, 1, 0, NULL, 59, '2021-06-01 03:52:29', 1),
(5048, 4969, 59, 7, 0, 'Selected for Veben Team with CTC - 3.45 includes PF/PT', 40, '2021-06-01 04:05:28', 1),
(5049, 4978, 18, 8, 0, 'He is not well and told that he will get back after 2 days', 40, '2021-06-01 04:39:50', 1),
(5050, 4969, 60, 1, 0, NULL, 59, '2021-06-01 04:46:21', 1),
(5051, 5027, 40, 4, 0, 'Selected but need to update about training period salary part!\nHaving 6 months of exp as telecaller. but sustainablity seems bit doubtful', 8, '2021-06-01 05:33:27', 1),
(5052, 5027, 18, 7, 0, 'Selected as CRM for Hyderabad. CTS 1.5L is spoken and immed joiner', 40, '2021-06-01 05:39:42', 1),
(5053, 5021, 40, 5, 2, 'Not fit for our profile', 8, '2021-06-01 05:41:45', 1),
(5054, 4933, 60, 1, 0, NULL, 27, '2021-06-01 05:44:18', 1),
(5055, 4933, 27, 7, 0, 'Task Completed. Potential Candidate. we can offer 8k take home. She need to lead his family.', 27, '2021-06-01 05:44:18', 1),
(5056, 4993, 40, 8, 0, 'Didnxquott attend the interview', 8, '2021-06-01 05:45:03', 1),
(5057, 4991, 27, 5, 0, 'Only 30% of task completed.', 27, '2021-06-01 05:47:55', 1),
(5058, 5044, 13, 7, 3, 'THREE ROUNDS COMPLETED, RM IN MUTUAL \nFUND,GOOD EXPOSURE,1 YEEAR BOND \nACCEPTED BECAUSE OF GOING TO FOREIGHN.\nALREADY EXPERIENCED IN MUTUAL FUNDS SO GOOD ONLY\n', 8, '2021-06-01 07:40:45', 1),
(5059, 4803, 59, 7, 0, 'Selected For Thanjavur With CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:44:04', 1),
(5060, 4862, 59, 7, 0, 'Selected for Thanjavur with CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:46:34', 1),
(5061, 4864, 59, 7, 0, 'Selected For Thanjavur With CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:48:50', 1),
(5062, 4873, 59, 7, 0, 'Selected For Thanjavur With CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:53:10', 1),
(5063, 5044, 59, 7, 0, 'Selected For Thanjavur With CTC - 120000 Gross - 10k TH-9.5K', 13, '2021-06-01 07:55:10', 1),
(5064, 4862, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', 59, '2021-06-01 08:47:31', 1),
(5065, 4864, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', 59, '2021-06-01 08:48:04', 1),
(5066, 4873, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', 59, '2021-06-01 08:48:50', 1),
(5067, 5044, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', 59, '2021-06-01 08:50:19', 1),
(5068, 4803, 8, 3, 0, ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', 59, '2021-06-01 08:52:41', 1),
(5069, 5025, 59, 5, 0, 'Not open for Insurance Sales Domain', 60, '0000-00-00 00:00:00', 1),
(5070, 5026, 59, 5, 0, 'Focus only on the service based opening not into sales domain', 60, '0000-00-00 00:00:00', 1),
(5071, 5033, 59, 4, 0, 'Have exp in Semi voice process, can relocate to jubilee hills.1-year career gap he has. The laptop is there.Can give a try a CRM.', 50, '0000-00-00 00:00:00', 1),
(5072, 5038, 59, 5, 0, 'Very high CTC expectation, her current CTC itself 25k TH and she attended around 15 interview.Location constraint up and down 48kms.Sustainability doubt', 50, '0000-00-00 00:00:00', 1),
(5073, 5039, 59, 5, 0, 'Have 6+ yrs experience. sustainability doubt she may get marry in-between age around 27yrs.Notice 30 Days with the current company. Communication Average. She needs time to check with parents on the agreement/Document Submission', 50, '0000-00-00 00:00:00', 1),
(5074, 5041, 59, 5, 0, 'Currently working with Byjuxquots and native of west bengal no local language.Notice Period will be around 30 days but she s not clear on the notice nd she says around 15 days. Expectation little high and sustainability with our domain is doubtful', 50, '0000-00-00 00:00:00', 1),
(5075, 4895, 27, 5, 0, 'Task not completed. His task look like fresher task. we can consider this candidate as a fresher only..', 27, '2021-06-02 10:45:36', 1),
(5076, 5034, 27, 2, 0, 'Interview taken. Task has to be given.', 7, '0000-00-00 00:00:00', 1),
(5077, 5035, 27, 5, 0, 'No Response.', 7, '0000-00-00 00:00:00', 1),
(5078, 5036, 27, 5, 0, 'Not Good in basics.', 7, '0000-00-00 00:00:00', 1),
(5079, 5037, 27, 2, 0, 'RNR.', 7, '0000-00-00 00:00:00', 1),
(5080, 5040, 27, 2, 0, 'Interview Taken. Task Given. Will Submit Tomorrow EOD', 7, '0000-00-00 00:00:00', 1),
(5081, 5042, 27, 2, 0, 'Interview taken. task given.', 7, '0000-00-00 00:00:00', 1),
(5082, 5043, 27, 5, 0, 'Not good in technical. rejected by latha.', 7, '0000-00-00 00:00:00', 1),
(5083, 5033, 40, 4, 0, 'Selected and Take home expected between 10-11k per month. Laptop having and ready to relocate to Proper hyderabad currently staying in Kaamam. Interested and also applied for Govt Job too.', 59, '2021-06-02 05:38:41', 1),
(5084, 4749, 60, 1, 0, NULL, 59, '2021-06-02 06:08:29', 1),
(5085, 5033, 18, 5, 0, 'we holded him for better option but he messaged that he joined a diffrent voice non sales procedd', 40, '2021-06-03 11:25:16', 1),
(5086, 4896, 27, 5, 0, 'task not completed.', 27, '2021-06-03 02:27:15', 1),
(5087, 5000, 27, 5, 0, 'task not completed.', 27, '2021-06-03 02:27:38', 1),
(5088, 5034, 27, 2, 0, 'Task Given.', 27, '2021-06-03 02:29:45', 1),
(5089, 5050, 27, 2, 0, 'Interview taken. task given. will submit tomorrow EOD', 7, '0000-00-00 00:00:00', 1),
(5090, 5051, 27, 2, 0, 'Interview Taken. Task Given. Will Submit Tomorrow EOD', 7, '0000-00-00 00:00:00', 1),
(5091, 5046, 59, 4, 0, 'Can check for CRM 50/50 Fresher Profile not yet completed the exams, have interest in voice process.', 60, '0000-00-00 00:00:00', 1),
(5092, 5047, 59, 4, 0, 'check for CRM, Communication ok, Having Bike and Laptop. Have Exp in voice process and open for sales voice process.', 60, '0000-00-00 00:00:00', 1),
(5093, 5046, 40, 5, 0, 'Not fit for the profile', 59, '2021-06-03 05:06:18', 1),
(5094, 5047, 40, 4, 0, 'Selected but he is not having a Laptop. Sustainability also bit doubtful, Let him have a final round and let Sriram decide.', 59, '2021-06-03 05:07:07', 1),
(5095, 5027, 59, 7, 0, 'Selected as CRM for Veben Hyderabad with CTC 1.5LPA not open for PF/PF so processed with 5% deductions', 18, '2021-06-03 05:11:48', 1),
(5096, 1647, 27, 5, 0, 'task not completed.', 27, '2021-06-04 11:48:49', 1),
(5097, 5022, 60, 1, 0, NULL, 27, '2021-06-04 12:01:17', 1),
(5098, 5022, 27, 7, 0, 'shortlisted. he is a fresher. we can offer 8k as a take home.', 27, '2021-06-04 12:01:17', 1),
(5099, 4900, 27, 5, 0, 'no response past 1 week.', 27, '2021-06-04 12:01:50', 1),
(5100, 4886, 27, 5, 0, 'task not completed.', 27, '2021-06-04 12:02:24', 1),
(5101, 4899, 27, 5, 0, 'task not completed.', 27, '2021-06-04 12:02:58', 1),
(5102, 4964, 27, 5, 0, 'task not completed.', 27, '2021-06-04 12:11:33', 1),
(5103, 5004, 60, 1, 0, NULL, 27, '2021-06-04 12:21:57', 1),
(5104, 5004, 27, 7, 0, 'Shortlisted. He Is A Fresher. We Can Offer 8k As A Take Home.\n', 27, '2021-06-04 12:21:57', 1),
(5105, 5047, 18, 5, 0, 'Does not have laptop and cannot offer under current situatation', 40, '2021-06-04 03:05:20', 1),
(5106, 4619, 60, 1, 0, NULL, 59, '2021-06-07 10:30:22', 1),
(5107, 5027, 60, 1, 0, NULL, 59, '2021-06-07 12:06:11', 1),
(5108, 5076, 71, 4, 0, 'Age-28, Fatherxxampmother no more, married with 3month baby, wife before has working now no job, candidate btech it, 7+ years, location- adambakam chennai, sales skill good, insurance knowledge -average, last ctc-313000, expectation- 350000, Ask take home 25k. ', 60, '0000-00-00 00:00:00', 1),
(5109, 5071, 59, 5, 0, 'RNR Tried Multiple Times And No Call Back Also', 60, '0000-00-00 00:00:00', 1),
(5110, 5068, 59, 5, 0, 'RNR Tried multiple times and no call back also', 60, '0000-00-00 00:00:00', 1),
(5111, 5070, 59, 5, 0, 'he is much into research,will not sustain for a long n sales.No target n previous company and he canxquott handle our pressure', 60, '0000-00-00 00:00:00', 1),
(5112, 5069, 59, 4, 0, '5050 For RM have experience in sales but not into relevant domain. Pursing his degree and he s into 2nd year.1 more year to go,but he says that can be managable. Salary expectation s around 25 but his current CTC oly 18k.', 60, '0000-00-00 00:00:00', 1),
(5113, 5067, 59, 5, 0, 'Keep on postponing the call shows not interestde for the role', 60, '0000-00-00 00:00:00', 1),
(5114, 5069, 40, 8, 0, 'Didnxquott attend the interview', 59, '2021-06-07 06:34:32', 1),
(5115, 5076, 18, 7, 4, 'Selected for santosh team. Offered 3.6L ctc. Joining date is 14th june.Please Release the offer.', 71, '2021-06-07 06:48:59', 1),
(5116, 5077, 59, 5, 0, 'will not sustain for a long, career gap and he will handle the pressure and not suits for our company', 60, '0000-00-00 00:00:00', 1),
(5117, 5048, 59, 7, 0, 'Interviewed by gokul and selected for Mern Positions,starting their training on 2nd Jun(WFH) CTC - 98496 TH - 8000 xxamp Deductions 208', 60, '0000-00-00 00:00:00', 1),
(5118, 5073, 59, 5, 0, 'High Exp Into Inside Sales,Will Be A Fresher For This Mis Position.Her Current Ctc Was 7 Lpa And Open For 3 Lpa.Recently Married And Says Ok For Sa,But We Canxquott Expect Her For A Long Stay. Communication S Good', 60, '0000-00-00 00:00:00', 1),
(5119, 5074, 59, 5, 0, 'Communication ok, no relevant Experience, have experience as a process associate.Expectation is very high. done interview with Gokul also', 60, '0000-00-00 00:00:00', 1),
(5120, 5075, 59, 5, 0, 'Rejected,Communication very average,not open for SA, Expected salary s high.Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5121, 5048, 60, 1, 0, NULL, 59, '2021-06-08 06:00:48', 1),
(5122, 5088, 8, 4, 0, 'fresher, father doing biz, little bit native lang and his pronunciation is 5050 check once. okay with 9-10k.', 7, '0000-00-00 00:00:00', 1),
(5123, 5087, 8, 4, 0, 'fresher, no father, mother ia an accountant, expt sal 10-11k, pursuing his Bsc. from Arakonam', 7, '0000-00-00 00:00:00', 1),
(5124, 5086, 8, 4, 0, 'has 1yr exp in loan collection10K, has 2wheeler also okay with collection.expt is 10-12k.father working in a pvt company. he is from Thirumullai', 7, '0000-00-00 00:00:00', 1),
(5125, 5086, 14, 4, 0, 'Thiruvallor branch salary 11k .. ok with wfh laptop ,sim, internet facilities having. Need to confirm joining date ', 8, '2021-06-09 04:07:26', 1),
(5126, 5088, 53, 7, 0, 'Selected For Thiruvallur Location , 10k Ctc DOJ 10 Jun 21 Pls Cnfrm', 8, '2021-06-09 04:07:52', 1),
(5127, 5087, 14, 4, 0, 'salary 10k thiruvallor branch ok with wfh ,sim and having Laptop with internet connections ', 8, '2021-06-09 04:08:24', 1),
(5128, 5053, 13, 7, 3, 'mother only very poor family performing good in interview running tution for month expenses and ok for PF AND ESI already have account for pf so she need to follow the same here too', 8, '2021-06-09 04:09:53', 1),
(5129, 5062, 14, 4, 4, 'Fresher .salary 10k. She is okay with wfh and having laptop with internet connectivity. Confirm joining date', 8, '2021-06-09 04:11:45', 1),
(5130, 5078, 59, 5, 0, 'For CRM roles responsibility he is not much interested and he much prefers for sales profile,but the salary expectation is very being a fresher.Exp 25k and he needs time to think.Sustainability doubt on his profile.', 60, '0000-00-00 00:00:00', 1),
(5131, 5079, 59, 4, 0, 'Communication Good,2yrs of exp as medical rep.Bike s there but no laptop.He can arrange it.Can give a try for RM.Career gap due to his higher education.', 60, '0000-00-00 00:00:00', 1),
(5132, 5079, 40, 5, 2, 'Not fit for the profile', 59, '2021-06-09 04:38:56', 1),
(5133, 5089, 14, 4, 0, 'salary 10k . Tnagar branch .ok with wfh and sim laptop with internet connection having. Need to Confirm joining date ', 8, '2021-06-09 05:27:10', 1),
(5134, 5062, 53, 7, 0, 'Selected For T nagar Location , Priyanka team, 11k Ctc DOJ 10 Jun 21 Pls Cnfrm', 14, '2021-06-09 05:48:28', 1),
(5135, 5086, 53, 7, 0, 'Selected For Thiruvallur Location 10.5k Ctc DOJ 10 Jun 21 Pls Cnfrm', 14, '2021-06-09 05:52:26', 1),
(5136, 5087, 53, 7, 0, 'Selected For Thiruvallur Location , 10k Ctc DOJ 10 Jun 21 Pls Cnfrm', 14, '2021-06-09 05:54:23', 1),
(5137, 5089, 53, 7, 0, 'Selected For T Nagar Location , Priyanka Team, 10k Ctc DOJ 10 Jun 21 Pls Cnfrm', 14, '2021-06-09 05:55:46', 1),
(5138, 5091, 8, 4, 0, 'has overall 3.8yr exp in calling and his sal is 22k, now he is okay with any package, job need it seems. okay with WFH', 7, '0000-00-00 00:00:00', 1),
(5139, 5091, 53, 7, 0, 'Selected for priyanka team, CTC 13k, DOJ 10 jun 21', 8, '2021-06-09 06:06:07', 1),
(5140, 5092, 8, 4, 0, 'no sustainability but he has a reason, expt is 13k and check with his listening attitude once.okay with 10-12k.', 7, '0000-00-00 00:00:00', 1),
(5141, 5092, 53, 7, 0, 'Selected for Priyanka team, TH 11k, DOJ 10 jun 21', 8, '2021-06-09 06:14:39', 1),
(5142, 4875, 59, 3, 0, 'Selected for Tiruvallur Location in Cash mode with CTC 120000', 53, '2021-06-09 07:10:19', 1),
(5143, 5062, 59, 3, 0, 'Selected for Tnagar with 10450 TH Cash Mode', 53, '2021-06-09 07:11:40', 1),
(5144, 5086, 59, 3, 0, 'Selected for Tiruvallur Location with 9975 TH Cash Mode', 53, '2021-06-09 07:15:51', 1),
(5145, 5089, 59, 3, 0, 'Selected for Tnagar with 9500 TH cash mode', 53, '2021-06-09 07:16:42', 1),
(5146, 5088, 59, 3, 0, 'Selected for Tiruvallur with 9500 TH cash Mode', 53, '2021-06-09 07:18:01', 1),
(5147, 5087, 59, 7, 0, 'Selected for Tiruvallur with CTC 120000 includes PF/PT/ESI Deductions', 53, '2021-06-09 07:18:54', 1),
(5148, 5091, 59, 7, 0, 'Selected for Tnagar location,CTC 156000 Gross - 13000 with PF/PT deductions', 53, '2021-06-09 07:51:13', 1),
(5149, 5092, 59, 3, 0, 'Selected for T.Nagar with 11000 TH Cash Mode', 53, '2021-06-09 07:52:03', 1),
(5150, 5091, 60, 1, 0, NULL, 59, '2021-06-09 07:53:26', 1),
(5151, 5087, 60, 1, 0, NULL, 59, '2021-06-09 07:57:26', 1),
(5152, 5080, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5153, 5082, 40, 5, 1, 'Will not sustain and very poor performance during interview', 50, '0000-00-00 00:00:00', 1),
(5154, 5083, 40, 4, 4, 'Will fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5155, 5084, 40, 5, 3, 'Will not sustain and will not suit for our profile', 50, '0000-00-00 00:00:00', 1),
(5156, 5085, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5157, 5083, 18, 7, 3, 'Selected for hyderabad. Immed joiner. Joining date is on 14th June. Spoken CTC of 2.7L per annum', 40, '2021-06-10 02:28:39', 1),
(5158, 5083, 59, 7, 0, 'Selected for Hyderabad CTC - 2.7LPA includes PF/ESI Deductions', 18, '2021-06-11 12:07:35', 1),
(5159, 5093, 40, 5, 2, 'Rejected', 50, '0000-00-00 00:00:00', 1),
(5160, 5094, 40, 5, 2, 'He is not willing to work on sundays', 50, '0000-00-00 00:00:00', 1),
(5161, 5095, 40, 5, 2, 'rejected', 50, '0000-00-00 00:00:00', 1),
(5162, 5096, 40, 5, 2, 'Will not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5163, 5076, 59, 7, 0, 'Selected for Chennai RM- Santhosh Team -With CTC 3.6 LPA includes PF/PT deductions in Patroniss', 18, '2021-06-11 02:54:22', 1),
(5164, 5098, 59, 5, 0, 'Communication is Good, Currently working in the Murugappa group and the official notice is 30 days.She is getting her increment by next month. Recently got married and she is not fine with the SA as she may take a break in between.', 60, '0000-00-00 00:00:00', 1),
(5165, 5097, 59, 5, 0, 'I spoke with this candidate in the month of March and rejected this profile. She will not sustain for a long with our domain. Career Gap in between as she traveled to Dubai with her husband and she attended many interviews past 3 months and none got selected.', 60, '0000-00-00 00:00:00', 1),
(5166, 5099, 59, 5, 0, 'Seems not much active will not handle the pressure.No knowledge on the MIS and not clear with the position. He will not sustain for long with us in their role. He is much into BGV process', 60, '0000-00-00 00:00:00', 1),
(5167, 5101, 59, 5, 0, 'Currently Working 2 months of the notice period, Not open for SA as she may get married in next 1 yr of time and this month she got increment and expects more on the package from us. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5168, 5083, 60, 1, 0, NULL, 59, '2021-06-11 06:06:53', 1),
(5169, 5076, 60, 1, 0, NULL, 59, '2021-06-12 11:33:08', 1),
(5170, 5053, 59, 7, 0, 'Selected for Thanjavur Location with CTC - 120000 included PF/ESI deductions - TH 7805', 13, '2021-06-12 12:09:58', 1),
(5171, 5053, 8, 3, 0, 'For Thanjavur CTC - 120000 Included PF/ESI Deductions - TH 7805', 59, '2021-06-12 01:21:09', 1),
(5172, 5115, 8, 4, 0, 'fresher, okay with 10k, father is a labour.', 7, '0000-00-00 00:00:00', 1),
(5173, 5114, 8, 4, 0, 'fresher, pursuing her bba, okay with 10k.', 7, '0000-00-00 00:00:00', 1),
(5174, 5115, 13, 5, 0, 'Lockdown Period Hold Long Pending ', 8, '2021-06-12 04:50:42', 1),
(5175, 5102, 59, 2, 0, 'Communication Average,50/50 can give a try for MIS but he is currently working and his notice period is 30 days. He is having backend support in the banking domain and can be trained. The only thing is notice 30 days if we offer him not sure about his joining. Letxquots hold his profile now and try later', 60, '0000-00-00 00:00:00', 1),
(5176, 5103, 59, 5, 0, 'Communication ok, Having around 2+yrs of experience with 4 companies.No Sustainability, and her profile is fully into the voice process. She felt pressure in her previous companies.Her marriage has been fixed,due to lockdown its getting delay.Will not sustain with us for a long', 60, '0000-00-00 00:00:00', 1),
(5177, 5104, 59, 4, 0, 'Communication s average, Have experience in SBI Card Sales. Left the Job in the month of Jan to look after his family Hostel Business. Started looking for a job from last month. Around 10 km from Jubilee Hills. Having his own bike and laptop. Open for same CTC.50/50 ', 60, '0000-00-00 00:00:00', 1),
(5178, 5105, 59, 4, 0, 'Communication ok, Fresher profile distance around 4 km, having bike and laptop can be arranged.Keen to work in the insurance domain.Can give a try 50/50', 60, '0000-00-00 00:00:00', 1),
(5179, 5106, 59, 5, 0, 'Communication Average,3yrs with 3 companies into Liquor Product Sales.Fresher for our role.Doubtful in handling our sales.Sustainability doubts on this profile. Since their family is not comfortable with liquor sales, he is looking for a different domain. Will not handle our pressure.', 60, '0000-00-00 00:00:00', 1),
(5180, 5107, 59, 3, 0, 'Selected for veben Team with CTC - 286000 includes PF/PT in Patroniss as a staff', 60, '0000-00-00 00:00:00', 1),
(5181, 5108, 59, 5, 0, 'No Communication. Only local Language. He is not responding to the meet cal and sending a message stating that he is not comfortable with this position.', 60, '0000-00-00 00:00:00', 1),
(5182, 5110, 59, 5, 0, 'Communication Is Ok,3.5 Yrs With 3 Companies And Much Into Finance Positions.She Says Ok With The Agreement But Not Sure About The Long Stay As She Got Married A Year Back, She May Take A Break. Her CTC Is 2.7 LPA And The Expectation Is Around 3 LPA. ', 60, '0000-00-00 00:00:00', 1),
(5183, 5107, 40, 4, 3, 'Please check the sales aspects and for me he is ok for our profile.', 59, '2021-06-12 05:12:57', 1),
(5184, 5104, 40, 5, 3, 'he is not interested in insurance profile', 59, '2021-06-12 05:13:46', 1),
(5185, 5114, 13, 7, 0, 'degree completed 10 k salary talk active girl farmer only selected but srill not not reachable mobile number', 8, '2021-06-12 05:17:46', 1),
(5186, 5120, 8, 4, 0, 'has 1yr exp in fastrack call taxi and 1m in starhealth. lang is little bit native. he is from kumbakonam and looking for job in Chennai. expt is 11k.', 7, '0000-00-00 00:00:00', 1),
(5187, 5120, 13, 7, 4, 'father is a farmer and sister brother studying so job importance is more important,salary 10 k....3 month working in fastrack ,1 month working in star health native kumbakonam', 8, '2021-06-12 07:34:38', 1),
(5188, 5120, 59, 7, 0, 'Selected for Chennai Suriya Elite Team with CTC 120000 TH-9500 Cash mode Joining Date-14-Jun-2021', 13, '2021-06-14 10:50:41', 1),
(5189, 5120, 60, 1, 0, NULL, 59, '2021-06-14 11:03:55', 1),
(5190, 5111, 40, 5, 1, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(5191, 5112, 40, 5, 2, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(5192, 5117, 40, 5, 1, 'rejected', 50, '0000-00-00 00:00:00', 1),
(5193, 5107, 18, 7, 3, 'Selected for hyderabad veben team. Ready to join on Thursday joining (17th June). Offered 2,86,000 as ctc', 40, '2021-06-14 03:52:00', 1),
(5194, 5116, 59, 5, 0, 'Communication ok.she is into reconciliation process and her interest also towards the same.For MIS fresher and not much comfortable with SA as she got married few months back.Not much very active in the call.Sustainability doubts.Rejected', 60, '0000-00-00 00:00:00', 1),
(5195, 5109, 59, 5, 0, 'Not Communicating in English he prefers to speak only in Tamil, No experience and knowledge on the MIS part, Fresher for this role. Have experience using SAP FICO. Not much comfortable with the Service Agreement, he can give his acceptance for SA only based on the salary. His current TH is 18k.Sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(5196, 5107, 59, 3, 0, 'Selected for veben Team with CTC - 286000 includes PF/PT in Patroniss as a staff', 18, '2021-06-14 07:40:22', 1),
(5197, 5121, 59, 5, 0, 'Communication Average,he donxquott have interest towards the insurance domain.Rejected', 60, '0000-00-00 00:00:00', 1),
(5198, 5123, 59, 5, 0, 'Communication Ok, Working In Hospital Handling The Coordination Part, He Is Into A Contract And Notice Period Is 30 Days. Seems Not Much Comfortable With The Insurance Domain.', 60, '0000-00-00 00:00:00', 1),
(5199, 5124, 59, 4, 0, 'Communication Average.1yr experience in Bajaj Insurance slaes.No proper reason for leaving the job in Bajaj.Around 10 kms having his own bike and laptop.Attended few interviews.Sustainabilty doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(5200, 5105, 40, 4, 4, 'Selected and expected salary between 2-2.5lac and interested in insurance profile', 59, '2021-06-15 07:09:46', 1),
(5201, 5129, 59, 5, 0, 'Communication ok,having exp in IT Sales (B2B) 1.4 yrs of exp and looking for a change only for salary hike,also he feels pressure in this job.He gave some interview relates to the same IT Sales.Will not sustain with our position', 60, '0000-00-00 00:00:00', 1),
(5202, 5133, 59, 5, 0, 'Attitude issue No documented proof of his current experience.The expectation is very high.Communication ok, Working with Indusind in third party payroll, only for 9 months and looking for a permanent position.Not much working knowledge in excel, having basic knowledge in Excel. Career Gap and he was into Amway business.', 60, '0000-00-00 00:00:00', 1),
(5203, 5105, 18, 8, 0, 'Tried reaching his but not responding', 40, '2021-06-16 02:47:57', 1),
(5204, 5130, 59, 5, 0, 'Communication Average, Seems not much active and not proper reasons for relieving from the previous organizations. Started his career with Dish sales and worked for 3 yrs with no increment,1 yr with kotak. Will not suits much wth our positions and sustainability doubts on the candidate', 60, '0000-00-00 00:00:00', 1),
(5205, 5131, 59, 5, 0, 'Communication Average.1.6 yrs with 2 companies, experience in POS xxamp QR Code B2B sales. currently working in the company with commission basis. Having a Bike and laptop. Feeling pressure in his current role. Sustainability doubts on this candidate.Pressure handling doubts', 60, '0000-00-00 00:00:00', 1),
(5206, 5132, 59, 4, 0, 'Communication ok,Fresher profile.Can relocate to Jubilee hills.Having his own bike and laptop.No knowledge in Insurance Domain.', 60, '0000-00-00 00:00:00', 1),
(5207, 5132, 40, 5, 2, 'Will not fit for our profile', 59, '2021-06-16 04:28:52', 1),
(5208, 5124, 40, 5, 2, 'Will not fit', 59, '2021-06-16 04:31:45', 1),
(5209, 5139, 40, 5, 2, 'Not fit for the profile', 50, '0000-00-00 00:00:00', 1),
(5210, 5140, 40, 5, 2, 'Not fit for the profile', 50, '0000-00-00 00:00:00', 1),
(5211, 5136, 59, 5, 0, 'Communication ok.Distance around 16 kms,recently married and not comfortable with the service Agreement.no knowledge in MIS,need to train a lot in excel.', 60, '0000-00-00 00:00:00', 1),
(5212, 5137, 59, 5, 0, 'Communication is good,Fresher and focusing on the accounts xxamp finance positions,He is preparing for CMA exams and he wants to get into that field only.He s not ok with service agreement.Just for time being he looks into other positions.', 60, '0000-00-00 00:00:00', 1),
(5213, 5138, 59, 9, 0, 'Communication Average and ok, but for the service agreement he needs to check with his parents. He attended around 10 interview and got rejected.He much focus into voice process only', 60, '0000-00-00 00:00:00', 1),
(5214, 5142, 59, 5, 0, 'No Communication, Currently working with Tech Mahindra in voice process and his notice period is 30 days.3yrs with 3 companies, no sustainability with the candidate.No MIS knowledge he mainly focuses on the salary only. He can sign the agreement but not ready to submit the documents', 60, '0000-00-00 00:00:00', 1),
(5215, 5143, 59, 5, 0, 'Communication Average and manageable. Not much experienced in excel, currently working and he is into notice with 15 days left. Given him a task to check his writing skills,But writing skill is not upto the mark', 60, '0000-00-00 00:00:00', 1),
(5216, 5144, 59, 5, 0, 'Communication Average, Fresher Profile.Will not much suits for MIS role.Not 100% ok with SA,however Given a task to check his writing skills, but the content is not up to the level', 60, '0000-00-00 00:00:00', 1),
(5217, 5138, 8, 5, 0, 'no response', 59, '2021-06-17 06:22:20', 1),
(5218, 5154, 8, 5, 3, 'very slow and no convincing, expt is 10-15k, from ramapuram, farher and mother both are cooli.', 7, '0000-00-00 00:00:00', 1),
(5219, 5148, 8, 4, 3, '5m in SBI credit card 13.5k, father working in railways, from villivakkam, expt is 10k. fresher for sales.', 7, '0000-00-00 00:00:00', 1),
(5220, 5164, 8, 5, 2, 'will not sustain, done her mpil and planning do phd, 1yr as Professor in a clg, father is a Reporter, doing her race couching for banking.', 7, '0000-00-00 00:00:00', 1),
(5221, 5162, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5222, 5165, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5223, 5148, 14, 5, 1, 'not suitable for sales and not able to handle pressure', 8, '2021-06-18 04:55:15', 1),
(5224, 5146, 59, 5, 0, 'Communication Average.No sustainability worked with various domain,No knowledge on Insurance Domain.No Higher Education, completed only 12th in open education.Will not sustain with us', 60, '0000-00-00 00:00:00', 1),
(5225, 5145, 59, 5, 0, 'candidate got another offer and he prefers to go with that offer', 60, '0000-00-00 00:00:00', 1),
(5226, 5152, 59, 5, 0, 'Communication Ok, Previously Worked In A Contract Role. Salary Expectation Is High And Not Much Comfortable With The SA,Content What She Gave Gets Plagarism', 60, '0000-00-00 00:00:00', 1),
(5227, 5153, 59, 5, 0, 'Attended Interview and System Task but not suitable for our role. Will not Sustain', 60, '0000-00-00 00:00:00', 1),
(5228, 5170, 59, 5, 0, 'Communication Ok, Fresher Profile For The MIS Role, Basic Knowledge In Excel, But Not Much Ok With The SA And Document Submission,', 60, '0000-00-00 00:00:00', 1),
(5229, 5174, 59, 5, 0, 'Communication Ok, Fresher Profile, No Idea Into Position What She Applied, Need To Train A Lot For The Role. Need Time To Check With Her Parents On The Service Agreement.She Did Certification In NISM Mutual Fund Too', 60, '0000-00-00 00:00:00', 1),
(5230, 5175, 59, 5, 0, 'Not suits for our position,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5231, 5185, 8, 4, 0, 'fresher for calling, currently working in KFC as part timer, looking for full time job with 10k.', 7, '0000-00-00 00:00:00', 1),
(5232, 5185, 13, 7, 3, 'already working in core field and from poor background job need father is a farmer ..now part time in kfc....well profiled more conviencing skill technically strong person ...lead to take speak about any topic basically strong person...pf and esi ok with it', 8, '2021-06-19 06:46:56', 1),
(5233, 5182, 8, 4, 0, 'Fresher, From Vellore Will Relocate To Chennai. Pursuing Her Mba, Okay With 10k, Check With Sustainability Once.', 7, '0000-00-00 00:00:00', 1),
(5234, 5180, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5235, 5181, 8, 5, 0, 'was selected for next round but no response from him', 7, '0000-00-00 00:00:00', 1),
(5236, 5169, 8, 5, 0, 'she already Attended interview on june 10th. jennifers', 7, '0000-00-00 00:00:00', 1),
(5237, 5168, 8, 5, 0, 'no sales and convincing and will not suite for sales and expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5238, 5166, 8, 5, 0, '29, has 3yr exp in other field 23k, from karaikudi will relocate, will not suite for our process and will not sustain for salary, expt 12k.', 7, '0000-00-00 00:00:00', 1),
(5239, 5172, 8, 5, 0, 'time being looking for job, he was into real estate and car broking biz, will not sustain. expt is 12-15k.', 7, '0000-00-00 00:00:00', 1),
(5240, 5173, 8, 5, 0, '1yr as process ass 14k, resently married from arumbakkam, will not handle pressure, worked in times of india newspaper sales, felt pressure and relived from that. expt is 10k.', 7, '0000-00-00 00:00:00', 1),
(5241, 5185, 59, 3, 0, 'Selected for Tanjore with PF/ESI/PT deductions.', 13, '2021-06-21 09:54:40', 1),
(5242, 5206, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5243, 5205, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5244, 5204, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5245, 5207, 8, 4, 0, 'Currently Doing Course, Fresher, Expt 9-10k, Okay With 1-2yr Agreement.', 7, '0000-00-00 00:00:00', 1),
(5246, 5208, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5247, 5210, 59, 7, 0, 'Selected for MIS Position,2nd Round interviewed by Gokul and shortlisted for the role MIS', 7, '0000-00-00 00:00:00', 1),
(5248, 5196, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5249, 5210, 60, 1, 0, NULL, 59, '2021-06-22 03:01:19', 1),
(5250, 537, 8, 5, 0, 'already Attended interview and rejected on 2020 oct', 7, '0000-00-00 00:00:00', 1),
(5251, 5200, 8, 2, 0, 'salary expt is high 15k, fresher', 7, '0000-00-00 00:00:00', 1),
(5252, 5201, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5253, 5202, 8, 2, 0, 'for RM', 7, '0000-00-00 00:00:00', 1),
(5254, 5203, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5255, 5217, 8, 5, 0, 'will not suite for calling, prefer non voice job, expt min 15k take home.', 7, '0000-00-00 00:00:00', 1),
(5256, 5218, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5257, 5219, 8, 4, 0, 'check for esale RM, has 2yr calling exp', 7, '0000-00-00 00:00:00', 1),
(5258, 5220, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5259, 5230, 8, 5, 0, 'will not sustain. 2yr in detective agency, 1yr as store incharge, 2yr in real estate, running own veg shop now his mother is taking care, was getting 17k-20k, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5260, 5229, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5261, 5244, 40, 4, 3, 'He is not having sales exp but salary exp is 30k but no having that much skills incase if he ok for 23k then we can else we can reject him.\nNot having bike but asked for 15 days time to get ', 50, '0000-00-00 00:00:00', 1),
(5262, 5244, 18, 7, 4, 'Selected for hyderabab. Ready to join on monday. Ypu can give 286000 as overall CTC.\n', 40, '2021-06-24 02:30:29', 1),
(5263, 5240, 8, 4, 0, 'fresher for calling, dnh event mgnt in part time, no father and mother tailor, expt is 9-10k. no laptop willing WFO.', 7, '0000-00-00 00:00:00', 1),
(5264, 5239, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5265, 5238, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5266, 5237, 8, 4, 0, 'Fresher From Chrompet, Pursuing Her Bcom,And Expt Is 10k.', 7, '0000-00-00 00:00:00', 1),
(5267, 5236, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5268, 5235, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5269, 5234, 8, 4, 0, 'fresher from aadambakkam, pursuing her bcom, father is a supervisor and expt is 10k.', 7, '0000-00-00 00:00:00', 1),
(5270, 5233, 8, 8, 0, 'not attended', 7, '0000-00-00 00:00:00', 1),
(5271, 5231, 8, 2, 0, 'she is 18 and written her 10th and waiting for results, was working in botiq as sales girl 15k and expt is 13k. no laptop and will come chennai on 27th', 7, '0000-00-00 00:00:00', 1),
(5272, 5242, 59, 5, 0, 'Not Suits for our role, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5273, 5241, 59, 7, 0, 'Selected for Priyanka Team with CTC 126000 with PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5274, 5232, 59, 5, 0, 'Communication Average,Content not upto the mark', 60, '0000-00-00 00:00:00', 1),
(5275, 5227, 59, 2, 0, 'Received Content and scheduled him for F2F,but didnt turn.Need to reschedule him for some other day 50/50 Profile\n', 60, '0000-00-00 00:00:00', 1),
(5276, 5226, 59, 5, 0, 'Selected her for the MIS Role,but she is not interested with the package what we offered and not comfortable with office timings', 60, '0000-00-00 00:00:00', 1),
(5277, 5250, 8, 4, 0, 'expt is 12k, okay with 10k and job need', 7, '0000-00-00 00:00:00', 1),
(5278, 5248, 8, 5, 0, 'from vellore, will not sustain and handle pressure', 7, '0000-00-00 00:00:00', 1),
(5279, 5247, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5280, 5246, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5281, 5244, 59, 7, 0, 'Selected for Veben Team with CTC 286000 includes PF/ESI Deductions', 18, '2021-06-25 07:43:24', 1),
(5282, 5228, 59, 2, 0, 'Selected as a intern for HR recruitment with the stipend of Rs 5000 PM with contnuation of employment. Salary will be confirmed post internship', 60, '0000-00-00 00:00:00', 1),
(5283, 5268, 59, 3, 0, 'Selected for Priyanka Team-Internal Reference with CTC - 120000 Cash mode 5% deduction - 9500 TH\n', 60, '0000-00-00 00:00:00', 1),
(5284, 5253, 59, 7, 0, 'Selected for MIS Role,2nd Round interviewed by gokul and selected ', 60, '0000-00-00 00:00:00', 1),
(5285, 5240, 14, 4, 4, 'salary 10k need to confirm joining date', 8, '2021-06-26 03:15:40', 1),
(5286, 5268, 14, 4, 4, 'salary 10k need to confirm joining date', 59, '2021-06-26 03:17:50', 1),
(5287, 5234, 13, 7, 4, 'Candidate Is Good With The Communication And Convencing Skills. 10K Salary Was Fixed. Joining Date Is On July 1st.', 8, '2021-06-26 03:18:45', 1),
(5288, 5253, 60, 1, 0, NULL, 59, '2021-06-26 03:19:14', 1),
(5289, 5243, 59, 5, 0, 'Will not sustain for a long she is focusing into UPSC exams only', 60, '0000-00-00 00:00:00', 1),
(5290, 5213, 59, 5, 0, 'Communication average,no relevant Exp.Content what he gave is not upto yhe mark\n', 60, '0000-00-00 00:00:00', 1),
(5291, 5214, 59, 5, 0, 'Communication ok, Salary Expectation is very high, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5292, 5269, 8, 4, 0, '6m in Vodafone payment collection 10k, no father and mom selling fish, from kotturpuram, expt is 10.5k.', 7, '0000-00-00 00:00:00', 1),
(5293, 5269, 13, 7, 4, 'candidate have self confidence and likes to face challenges .salarey of 10k if fixed.', 8, '2021-06-26 03:38:55', 1),
(5294, 5279, 8, 4, 0, '9m in omega PE with 12.5k, father daily wages and expt is 10-11k, from ponneri.', 7, '0000-00-00 00:00:00', 1),
(5295, 5279, 14, 4, 4, 'salary 10k need to confirm joining date', 8, '2021-06-26 04:01:50', 1),
(5296, 5244, 60, 1, 0, NULL, 59, '2021-06-26 04:17:06', 1),
(5297, 5241, 14, 4, 4, 'check the distance and confirm joining date', 59, '2021-06-26 04:24:22', 1),
(5298, 5279, 53, 7, 0, 'selected. pls cnfrm joining date and sal.', 14, '2021-06-26 04:55:32', 1),
(5299, 5268, 53, 7, 0, 'selected. pls cnfrm joining and sal.', 14, '2021-06-26 04:56:10', 1),
(5300, 5241, 53, 7, 0, 'selected. pls cnfrm sal and joining date', 14, '2021-06-26 04:57:20', 1),
(5301, 5240, 53, 7, 0, 'selected. pls cnfrm the salary and joining date', 14, '2021-06-26 04:58:25', 1),
(5302, 5240, 59, 3, 0, 'Selected for Priyanka Jeni Team with CTC 120000 includes PF/ESI/PT', 53, '2021-06-28 10:13:42', 1),
(5303, 5241, 59, 7, 0, 'Selected for Priyanka Team with CTC 126000 with PF/PT deductions', 53, '2021-06-28 10:14:20', 1),
(5304, 5268, 59, 3, 0, 'Selected for Priyanka Team-Internal Reference with CTC - 120000 Cash mode 5% deduction - 9500 TH\n', 53, '2021-06-28 10:15:14', 1),
(5305, 5279, 59, 7, 0, 'Selected for Priyanka Team with CTC 126000 - Cash Mode with 5% deduction 9975 take home Salary', 53, '2021-06-28 10:15:41', 1),
(5306, 5285, 59, 7, 0, 'Selected for Raj Kumar with CTC - 357696 includes PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5307, 5277, 39, 4, 4, 'candidate is ok. suitable for our profile', 60, '0000-00-00 00:00:00', 1),
(5308, 5277, 30, 7, 4, 'candidate is shortlisted. arun hr need to call and cnfrm the package', 39, '2021-06-28 01:37:20', 1),
(5309, 5277, 59, 3, 0, 'Selected for Muppudathy Team wiht CTC 350000 includes PF/PT Deductions', 30, '2021-06-28 01:42:00', 1),
(5310, 5288, 59, 5, 0, 'Not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(5311, 5291, 59, 5, 0, 'Communication OK, No relevant exp, also he holds an offer with Infosys and Cognizant. Will not sustain with us for the role', 60, '0000-00-00 00:00:00', 1),
(5312, 5297, 59, 5, 0, 'Will not suits for our Role, he is into real estate Sales', 60, '0000-00-00 00:00:00', 1),
(5313, 5284, 59, 4, 0, 'Check for Digital Marketing - Communication ok\n', 60, '0000-00-00 00:00:00', 1),
(5314, 5299, 59, 5, 0, 'Communication Average, Will not sustain for a long with this role. Salary Expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5315, 5290, 40, 8, 0, 'Not attended the interview', 50, '0000-00-00 00:00:00', 1),
(5316, 5292, 8, 2, 0, 'looking for RM, and expt is 20k+', 7, '0000-00-00 00:00:00', 1),
(5317, 5293, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5318, 5294, 8, 5, 0, 'will not handle pressure and sales target. ', 7, '0000-00-00 00:00:00', 1),
(5319, 5295, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5320, 5285, 71, 4, 0, 'Selected for next round. Ask take home 27k. ', 59, '2021-06-29 05:51:35', 1),
(5321, 4984, 59, 5, 0, 'Fresher, Need To Complete The Exams.Will Come For The 2nd Level Interview Post The Completion Of Exams\n', 60, '0000-00-00 00:00:00', 1),
(5322, 5303, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(5323, 5304, 8, 5, 0, 'high profie, will not suite for telecalling', 7, '0000-00-00 00:00:00', 1),
(5324, 5305, 8, 2, 0, 'for RM', 7, '0000-00-00 00:00:00', 1),
(5325, 5306, 8, 5, 0, 'will not sustain and expt is 18k', 7, '0000-00-00 00:00:00', 1),
(5326, 5285, 18, 7, 4, 'Selected for Raj team PC Chennai. Tomorrow joining (1July) CTC Spoken is 3.7L overall including pF', 71, '2021-06-30 11:44:26', 1),
(5327, 5134, 8, 4, 0, 'fresher, okay with calling and expt is 9-10k. dont have laptop, will join office directly', 7, '0000-00-00 00:00:00', 1),
(5328, 5272, 8, 4, 0, '1yr exp in HDFC life and 3m in loan 12k, expt is 12.5k, father into bag biz.', 7, '0000-00-00 00:00:00', 1),
(5329, 5285, 59, 7, 0, 'Selected for Raj Kumar with CTC - 357696 includes PF/PT deductions', 18, '2021-06-30 01:10:11', 1),
(5330, 5195, 56, 4, 0, 'Selected for next round', 60, '0000-00-00 00:00:00', 1),
(5331, 5114, 59, 5, 0, 'Switched OFF', 13, '2021-06-30 03:57:06', 1),
(5332, 5234, 59, 5, 0, 'Communicated and shared the Salary breakup for the candidate approval,but she turn back with her approval', 13, '2021-06-30 04:04:53', 1),
(5333, 5269, 59, 3, 0, 'Selected for Suriya Team with CTC 120000 includes PF/ESI - but didnt come for the joining', 13, '2021-06-30 04:09:45', 1),
(5334, 5185, 59, 3, 0, 'Selected for Tanjore with PF/ESI/PT deductions.', 59, '2021-06-30 05:09:41', 1),
(5335, 4826, 59, 5, 0, 'Communication Ok, Career Gap Expecting 22K, She S Ok For SA, But Not Sure On Her Sustainability. \n', 59, '2021-06-30 05:23:50', 1),
(5336, 5285, 60, 1, 0, NULL, 59, '2021-06-30 05:33:37', 1),
(5337, 5272, 13, 7, 4, 'candidate is already experienced with sales. sales pitch and convence are good . 12k CTC is fixed', 8, '2021-06-30 06:03:12', 1),
(5338, 5301, 59, 5, 0, ' Not Much Into Ui,Strong In Ux Only.Requested For Freelance Position,But He Is Not Much Comfortable.', 60, '0000-00-00 00:00:00', 1),
(5339, 5307, 59, 4, 0, 'Fresher Profile,5050 Internal team reference. Please do check for RE', 60, '0000-00-00 00:00:00', 1),
(5340, 5307, 34, 5, 2, 'not selected', 59, '2021-06-30 06:08:20', 1),
(5341, 4952, 60, 1, 0, NULL, 59, '2021-06-30 06:11:41', 1),
(5342, 5252, 13, 7, 4, 'candidate likes to join the voice process , and ready to face the tough jobs. 10K salarey is fixed.', 8, '2021-06-30 06:45:19', 1),
(5343, 5252, 59, 7, 0, 'Selected for Suriya Team with CTC 120000 includes PF/ESI/PT', 13, '2021-06-30 07:08:30', 1),
(5344, 5272, 59, 7, 0, 'Selected for Suriya Team with CTC - 144000 includes PF/ESI/PT', 13, '2021-06-30 07:13:55', 1),
(5345, 5252, 60, 1, 0, NULL, 59, '2021-06-30 07:20:22', 1),
(5346, 5272, 60, 1, 0, NULL, 59, '2021-06-30 07:25:31', 1),
(5347, 5279, 60, 1, 0, NULL, 59, '2021-07-01 09:50:00', 1),
(5348, 5315, 8, 4, 0, 'okay with salary and terms. check with technical skills', 7, '0000-00-00 00:00:00', 1),
(5349, 5311, 59, 5, 0, 'Candidate keen to learn, but cant communicate the basics, need some time to learn and come', 60, '0000-00-00 00:00:00', 1),
(5350, 5313, 59, 5, 0, 'Will not suits for our UI Developer position,He is much into UX Design Part only', 60, '0000-00-00 00:00:00', 1),
(5351, 5257, 59, 7, 0, 'Selected for Suriya Team with CTC 120000 includes PF ESI PT deductions', 60, '0000-00-00 00:00:00', 1),
(5352, 5314, 59, 7, 0, 'Intern for 3 months - 3500K Stipend ,continuing employment with min 8K.3yrs SA', 60, '0000-00-00 00:00:00', 1),
(5353, 5314, 59, 7, 0, 'Intern for 3 months - 3500K Stipend ,continuing employment with min 8K.3yrs SA', 60, '0000-00-00 00:00:00', 1),
(5354, 5321, 59, 5, 0, 'Not much experience into MIS, Married, will not handle our pressure and sustainability doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(5355, 5314, 60, 1, 0, NULL, 59, '2021-07-01 06:54:26', 1),
(5356, 5257, 13, 7, 4, 'this Candidate ok,10k salary,joining date : 05-july-2021', 59, '2021-07-01 07:05:21', 1),
(5357, 5327, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5358, 5333, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5359, 5325, 59, 5, 0, 'Just for the Salary Rise, he looks for an opportunity.Sustainability doubt and the salary expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5360, 5326, 59, 7, 0, 'Intern for 5 months, post intern 3yrs agreement also salary(8K) wil confirmed. ', 60, '0000-00-00 00:00:00', 1),
(5361, 5331, 59, 5, 0, 'Currently working and his Gross is around 15K in native itself. He is not comfortable with our package and he is not much open to the service agreement.', 60, '0000-00-00 00:00:00', 1),
(5362, 5334, 59, 5, 0, 'Not suits for our role, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5363, 5338, 59, 5, 0, 'Not much open up, no relevant Exp into Sales, Will not handle pressure', 60, '0000-00-00 00:00:00', 1),
(5364, 5322, 71, 4, 0, 'Selected for next round ', 60, '0000-00-00 00:00:00', 1),
(5365, 5326, 60, 1, 0, NULL, 59, '2021-07-02 05:47:02', 1),
(5366, 5257, 59, 7, 0, 'Selected for Suriya Team with CTC 120000 includes PF ESI PT deductions', 13, '2021-07-03 09:59:04', 1),
(5367, 5257, 60, 1, 0, NULL, 59, '2021-07-03 10:22:31', 1),
(5368, 5335, 64, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(5369, 5337, 59, 5, 0, 'Not suitable for MErn Stack.No knowlege in React,will not sustain for a long not comfortable with the SA', 60, '0000-00-00 00:00:00', 1),
(5370, 5329, 59, 5, 0, 'Need to check With parents on the SA, Fresher profile not much comfortable with Internship Role\n', 60, '0000-00-00 00:00:00', 1),
(5371, 5328, 59, 5, 0, 'Not much ok with SA, need some time to confirm.Not much comfortable with intern model and expectation is high', 60, '0000-00-00 00:00:00', 1),
(5372, 5341, 59, 5, 0, 'Not suits for Telecaller profile,yet to complete his graduation one more year to go', 60, '0000-00-00 00:00:00', 1),
(5373, 5284, 69, 5, 0, 'No relevant DM knowledge', 59, '2021-07-03 12:18:41', 1),
(5374, 5318, 59, 5, 0, 'not open for 3 yrs of service agreement no knowledge in ReactJS,also expectation is around 10-12K', 60, '0000-00-00 00:00:00', 1),
(5375, 5339, 59, 5, 0, '.No Knowledge In MIS, Communication Is Good. Sustainability Doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(5376, 5343, 59, 5, 0, 'Not suitable for the positions ,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5377, 5195, 30, 4, 3, 'Confirm salary and joining date', 56, '2021-07-03 05:37:47', 1),
(5378, 5195, 59, 7, 0, 'Selected for Manivel TEam with CTC - 345696 includes PF/PT', 30, '2021-07-03 06:50:37', 1),
(5379, 5195, 60, 1, 0, NULL, 59, '2021-07-03 06:53:22', 1),
(5380, 5345, 59, 5, 0, 'Not open with terms and conditions, fresher profile no basic knowledge', 60, '0000-00-00 00:00:00', 1),
(5381, 5348, 59, 5, 0, 'Fresher Profile, not open with terms and conditions will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5382, 5344, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5383, 5352, 59, 4, 0, 'Check for CRM', 60, '0000-00-00 00:00:00', 1),
(5384, 5353, 59, 5, 0, 'not suits for our Telecaller role', 60, '0000-00-00 00:00:00', 1),
(5385, 5350, 59, 5, 0, 'Not suits for UI Position, no basic knowledge in UI UX', 60, '0000-00-00 00:00:00', 1),
(5386, 5354, 59, 3, 0, 'Selected for RajKumar with CTC - 350000 includes PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5387, 5322, 18, 7, 0, 'selected for rm at 2.4L ctc overall for santosh team. we are giving 1.8 to 2.4 because he is a quality rm and also his old salary was in rural', 71, '2021-07-05 04:56:22', 1),
(5388, 5342, 59, 5, 0, 'Communication ok,Attended F2F discussion,Written communication is very average only. Recently married and not sure on the sustainability. She is much into pure data Analyst', 60, '0000-00-00 00:00:00', 1),
(5389, 4954, 60, 1, 0, NULL, 59, '2021-07-05 06:39:57', 1),
(5390, 5352, 13, 5, 0, 'Lockdown Period Hold Long Pending ', 59, '2021-07-05 06:44:50', 1),
(5391, 5354, 33, 4, 0, 'HAVING SALES EXPERIENCE PLEASE CHECK HIS SUSTAINABLITY', 59, '2021-07-05 06:51:48', 1),
(5392, 5357, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5393, 5356, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5394, 5360, 59, 4, 0, 'DM Certified, Communication Average 50/50 please check for DM', 60, '0000-00-00 00:00:00', 1),
(5395, 5346, 59, 5, 0, 'No basic knowledge in UI UX,only in to the designing part, Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5396, 5361, 59, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(5397, 5358, 59, 4, 0, 'Exp in BPO, Stamering please co check for CRM Tiruvallur Location', 60, '0000-00-00 00:00:00', 1),
(5398, 5360, 69, 5, 0, 'Profile not Up to expectation.', 59, '2021-07-06 03:24:51', 1),
(5399, 5358, 53, 5, 0, 'Not Suit For Telecalling, Low Confidence level', 59, '2021-07-06 03:26:11', 1),
(5400, 5332, 59, 5, 0, 'No basic knowledge in UI UX will not sustain for a long.No basic knowledge in CSS Javascript,photoshop', 60, '0000-00-00 00:00:00', 1),
(5401, 5241, 60, 1, 0, NULL, 59, '2021-07-06 04:33:51', 1),
(5402, 5228, 60, 1, 0, NULL, 59, '2021-07-06 04:35:22', 1),
(5403, 5228, 59, 7, 0, 'Selected As A Intern For HR Recruitment With The Stipend Of Rs 5000 PM With Contnuation Of Employment. Salary Will Be Confirmed Post Internship', 59, '2021-07-06 04:35:22', 1),
(5404, 5227, 59, 5, 0, 'Received Content And Scheduled Him For F2F,But Didnt Turn.', 59, '2021-07-06 04:36:38', 1),
(5405, 4541, 59, 5, 0, 'For Mern Stack,Fresher,Should Come Back After Completing The Exams', 59, '2021-07-06 04:43:05', 1),
(5406, 5102, 59, 5, 0, 'Communication Average,50/50 Can Give A Try For MIS But He Is Currently Working And His Notice Period Is 30 Days. He Is Having Backend Support In The Banking Domain. The Only Thing Is Notice 30 Days If We Offer Him Not Sure About His Joining.', 59, '2021-07-06 05:12:07', 1),
(5407, 5355, 8, 5, 0, 'slow and will not handle pressure. expt is 12k+, will relocate to chennai', 7, '0000-00-00 00:00:00', 1),
(5408, 4802, 60, 1, 0, NULL, 59, '2021-07-06 05:18:58', 1),
(5409, 5219, 11, 1, 0, NULL, 8, '2021-07-06 05:32:48', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(5410, 5366, 59, 5, 0, 'Communication Averaga,no basic knowledge on the recruitment. Will not sustain and handling pressure doubtful', 60, '0000-00-00 00:00:00', 1),
(5411, 5359, 40, 4, 3, 'He is a fresher and poor in communication but we can try else we can reject him', 50, '0000-00-00 00:00:00', 1),
(5412, 5362, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5413, 5364, 64, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(5414, 5280, 8, 4, 0, 'fresher from thiruthani, no father, job need expt is 10k.', 7, '0000-00-00 00:00:00', 1),
(5415, 5280, 14, 7, 4, 'Salary 10k joining date 14th july thiruvallur', 8, '2021-07-07 04:59:27', 1),
(5416, 5365, 59, 5, 0, 'Didnt turn for the F2F discussion,', 60, '0000-00-00 00:00:00', 1),
(5417, 5367, 59, 5, 0, 'Sustainability Doubts not much comfortable with the service Agreement, Need to hire her as an Intern cum employment. Only front end React Basic,her current gross is 12k PM.', 60, '0000-00-00 00:00:00', 1),
(5418, 5368, 44, 4, 4, 'candidate ok for me and need your suggestion Ji', 60, '0000-00-00 00:00:00', 1),
(5419, 5369, 59, 5, 0, 'Left Without attending the interview', 60, '0000-00-00 00:00:00', 1),
(5420, 5370, 59, 5, 0, 'Not suits for the role,', 60, '0000-00-00 00:00:00', 1),
(5421, 5372, 59, 5, 0, 'No basic knowledge in UI/UX, he is only into Design. Will not sustain with us for a long', 60, '0000-00-00 00:00:00', 1),
(5422, 5374, 59, 4, 0, 'UIUX Knowledged Experienced profile, Check for UI UX, Expectation is around 25K', 60, '0000-00-00 00:00:00', 1),
(5423, 5336, 59, 4, 0, 'Check for UI/UX having knowledge,but sustainability doubts .He is holding 2 offer for 2.16 LPA', 60, '0000-00-00 00:00:00', 1),
(5424, 5384, 59, 5, 0, 'Communication is Good, Sustainability doubts on the profile and the expectation is very high. Fresher for Recruitment profile', 60, '0000-00-00 00:00:00', 1),
(5425, 5383, 59, 4, 0, 'Check for CRM\n', 60, '0000-00-00 00:00:00', 1),
(5426, 5354, 18, 7, 4, 'Selected for Raj Team. Can give 3.5L ctc overall.ready to join immed.', 33, '2021-07-08 03:28:19', 1),
(5427, 5368, 29, 7, 3, 'selected for RM, shanmugam team, salary 261696. can increase 2k monthly, if mOM completes 1.50 lacs for next 3 months,', 44, '2021-07-08 05:48:50', 1),
(5428, 5382, 64, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(5429, 5380, 64, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(5430, 5376, 64, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(5431, 5336, 69, 5, 0, 'Not having designing knowledge, Having two offers in hand', 59, '2021-07-08 06:34:05', 1),
(5432, 5374, 69, 2, 0, 'Candidate profile is good, high expectations, need to give a task further.', 59, '2021-07-08 06:39:16', 1),
(5433, 5383, 13, 5, 0, 'Hold on Long Pending ', 59, '2021-07-08 06:49:46', 1),
(5434, 5368, 59, 7, 0, 'Selected for Shanmugam Team - Internal Team Reference - Selected with CTC - 261696 includes PF /PT', 29, '2021-07-08 07:10:30', 1),
(5435, 5368, 60, 1, 0, NULL, 59, '2021-07-08 07:19:07', 1),
(5436, 5389, 59, 5, 0, 'Exams yet to get complete,not much suits for our Mern Role', 60, '0000-00-00 00:00:00', 1),
(5437, 5359, 18, 7, 3, 'SELECTED FOR HYDERABAB. OFFERED SALARY IS 2,52,200 AS OVERALL CTC INCLUDING PF. READY TO JOIN IMMED', 40, '2021-07-09 10:13:45', 1),
(5438, 5322, 59, 7, 0, 'Selected for Santhosh Team - RM with CTC 2.4 LPA includes PF/ESI/PT deductions', 18, '2021-07-09 12:03:16', 1),
(5439, 5386, 59, 5, 0, 'Will not get fit with our requirement, Sustainability doubts, Not much open with SA', 60, '0000-00-00 00:00:00', 1),
(5440, 5388, 59, 5, 0, ' Can Check For Mern 5050 Profile ,Fresher - didnt appear for the F2F discussion', 60, '0000-00-00 00:00:00', 1),
(5441, 5393, 59, 5, 0, 'Will not sustain with us for a long. Not much suits for our role', 60, '0000-00-00 00:00:00', 1),
(5442, 5394, 59, 5, 0, 'No basic knowledge on the profile,will not suits for our role.', 60, '0000-00-00 00:00:00', 1),
(5443, 5397, 59, 5, 0, 'Not much open with the Service Agreement.Sustainability doubts on her profile', 60, '0000-00-00 00:00:00', 1),
(5444, 5322, 60, 1, 0, NULL, 59, '2021-07-09 05:36:45', 1),
(5445, 5404, 59, 5, 0, 'Need To Come Back With His Acceptance On Our Terms And Conditions. Communication Is Good Fresher - Didnt turn back for a long and his profile has been rejected on 27-Jul-2021', 60, '0000-00-00 00:00:00', 1),
(5446, 5399, 59, 5, 0, 'Fresher for Mern, He is into profile research for past 1,5 yrs. Currently working 30 Days of notice period.Salary Expecatation is high,Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5447, 5405, 8, 4, 3, 'from karaikudu currently in medavakkam, 4yr in core job as process supervisor 20k, expt is 18k', 60, '0000-00-00 00:00:00', 1),
(5448, 5405, 57, 4, 4, 'candidate is ok .. kindly negotiate the salary and confirm the joining date \n', 8, '2021-07-10 01:12:10', 1),
(5449, 5398, 59, 5, 0, '6 months Exp left due to salary Issue,not much strong in Basics of Mern, will not handle the pressure.Sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(5450, 5403, 59, 5, 0, 'No relevant Exp, Worked in various other domain, will not handle the pressure. No sustainability in this profile', 60, '0000-00-00 00:00:00', 1),
(5451, 5377, 59, 5, 0, 'No sustainability in his previous experience, focused only on the Salary, No basic knowledge on the requirement. Will not sustain with us for a long', 60, '0000-00-00 00:00:00', 1),
(5452, 5405, 59, 7, 0, 'Selected for Syed Team with CTC - 216000 includes PF/ESI/PT', 57, '2021-07-10 04:04:44', 1),
(5453, 5405, 60, 1, 0, NULL, 59, '2021-07-10 04:51:01', 1),
(5454, 5359, 59, 3, 0, 'Selected for Veben - Hyderabad Team with CTC 252200 includes PF/PT deductions', 18, '2021-07-12 12:39:51', 1),
(5455, 4357, 8, 4, 0, 'check and revert', 20, '2021-07-12 03:07:16', 1),
(5456, 4357, 20, 4, 0, 'Kindly check with the job need, and call for an interview if he is worthy.', 20, '2021-07-12 03:07:16', 1),
(5457, 5416, 8, 5, 0, 'will not sustain, Planning to do his ms in canada. looking for internship alone.', 7, '0000-00-00 00:00:00', 1),
(5458, 5387, 8, 4, 3, '1yr in royal enfield and 2m in a IT, Looking For Job Change In IT, self learning through onlineMERN And Okay With Internship Terms And Conditions, high job need.', 7, '0000-00-00 00:00:00', 1),
(5459, 5396, 8, 4, 3, 'has 4yrs exp in customer support and looking for job change in IT, done 55hr course in MERN and okay with internship terms and conditions.', 7, '0000-00-00 00:00:00', 1),
(5460, 5410, 8, 4, 0, 'has 2yr exp in digi mktng 24k, married 5m husband into QC, expt is 11k, fresher for sales calling.', 7, '0000-00-00 00:00:00', 1),
(5461, 5413, 8, 4, 0, 'fresher, looking for internship with 7k, has basic knowledge in seo, smo and blogs, check with her content.', 7, '0000-00-00 00:00:00', 1),
(5462, 5414, 8, 4, 3, 'has 1.6yr exp in calling-credit card sales, expt is 15k(nego).', 7, '0000-00-00 00:00:00', 1),
(5463, 5414, 19, 4, 4, 'Selected', 8, '2021-07-12 04:53:46', 1),
(5464, 5413, 69, 5, 0, 'Not sustainable', 8, '2021-07-12 04:55:00', 1),
(5465, 5410, 13, 5, 0, 'Hold on Long Pending ', 8, '2021-07-12 04:56:58', 1),
(5466, 5396, 54, 1, 0, NULL, 8, '2021-07-12 04:59:21', 1),
(5467, 5387, 54, 1, 0, NULL, 8, '2021-07-12 05:02:02', 1),
(5468, 5324, 8, 4, 3, 'has 2yr exp in sales and collection, 1yr in loan and credit card 15k, expt is 17-18k(nego)', 60, '0000-00-00 00:00:00', 1),
(5469, 5414, 59, 7, 0, 'Selected for Kannan Team with CTC - 156000 includes PF/ESI/PT', 19, '2021-07-13 11:22:01', 1),
(5470, 5324, 16, 4, 0, 'good candidate ', 8, '2021-07-13 11:31:58', 1),
(5471, 4960, 53, 7, 0, 'kindly confirm DOJ', 8, '2021-07-13 12:00:26', 1),
(5472, 5418, 20, 7, 3, 'selected for my team, kindly negotiate salary and finalize for joining', 8, '2021-07-13 12:21:19', 1),
(5473, 5406, 59, 5, 0, 'Candidate not sure on the Sustainability, very basic knowledge only in the excel. Not much comfortable on the Service Agreement', 60, '0000-00-00 00:00:00', 1),
(5474, 5420, 59, 5, 0, 'Will not suits for our Recruiter Role. Handling Pressure doubtful, Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(5475, 5400, 59, 5, 0, 'Fresher for Mern Stack, Not much comfortable on the service Agreement. No basic knowledge ', 60, '0000-00-00 00:00:00', 1),
(5476, 5411, 59, 5, 0, 'Communication is good, Fresher for the Recruiter Role,Salary Expectation is very high around 20K', 60, '0000-00-00 00:00:00', 1),
(5477, 5415, 59, 5, 0, 'Yet to complete her graduation, not suitable for our roel', 60, '0000-00-00 00:00:00', 1),
(5478, 5412, 59, 5, 0, 'Not suits for our Recruiter profile, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5479, 5421, 59, 2, 0, 'Candidate has been scheduled for 2nd F2F on Monday, Need to confirm, very basic knowledge in the MERN, Can be trained ', 60, '0000-00-00 00:00:00', 1),
(5480, 5324, 59, 7, 0, 'Selected for Thiyagu Team with CTC - 192000 includes PF/ESI/PT', 16, '2021-07-13 04:55:57', 1),
(5481, 5414, 60, 1, 0, NULL, 59, '2021-07-13 05:21:37', 1),
(5482, 5324, 60, 1, 0, NULL, 59, '2021-07-13 05:24:09', 1),
(5483, 5418, 59, 7, 0, 'Selected for Srikanth Team with CTC 204000 included PF/ESI/PT', 20, '2021-07-13 05:27:25', 1),
(5484, 5418, 60, 1, 0, NULL, 59, '2021-07-13 05:35:45', 1),
(5485, 5280, 59, 3, 0, 'Selected for Tiruvallur Team with cTC 120000 includes PF/ESI/PT dedcutions', 14, '2021-07-14 05:23:32', 1),
(5486, 5436, 59, 5, 0, 'No commuication, not open up will not fir for our role', 60, '0000-00-00 00:00:00', 1),
(5487, 5432, 59, 5, 0, '5050 profile,can check for CRM-Processed for 2nd level, but left without attending', 60, '0000-00-00 00:00:00', 1),
(5488, 5435, 59, 5, 0, 'Not communicating ,will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5489, 5437, 59, 5, 0, 'Not suits for the role, will not sustain for a long and handling pressure doubt\n', 60, '0000-00-00 00:00:00', 1),
(5490, 5438, 59, 5, 0, 'Can Give A Try For Health Sales, Bdm Shanmugam Had A Review On The Profile.Salary Exoectation is there', 60, '0000-00-00 00:00:00', 1),
(5491, 5422, 59, 2, 0, 'Will come for 2nd level Interview with the joining process may carry on the same day', 60, '0000-00-00 00:00:00', 1),
(5492, 5430, 59, 4, 0, '5050 profile, give a try for esale. Convincing not much comfortable, kindly check and let me know', 60, '0000-00-00 00:00:00', 1),
(5493, 5433, 59, 5, 0, 'No degree,5050 have exp in Telecaller,processed for 2nd round but left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(5494, 5434, 59, 5, 0, 'No sustainability in the profile, checked with 2nd level and got rejected. Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5495, 5441, 8, 4, 0, 'fresher, job need, okay for calling and expt is 9-10k', 7, '0000-00-00 00:00:00', 1),
(5496, 5439, 8, 4, 0, 'job need, okay for calling, fresher', 7, '0000-00-00 00:00:00', 1),
(5497, 5439, 53, 7, 0, 'selected for thiruvallur branch. pls cnfrm sal and joining date', 8, '2021-07-15 10:50:24', 1),
(5498, 5441, 53, 4, 0, 'Selected For Thiruvallur Branch. Pls Cnfrm Sal And Joining Date', 8, '2021-07-15 10:52:40', 1),
(5499, 5354, 59, 3, 0, 'Selected for RajKumar with CTC - 350000 includes PF/PT deductions', 18, '2021-07-15 12:22:55', 1),
(5500, 5430, 11, 1, 0, NULL, 59, '2021-07-15 01:15:59', 1),
(5501, 5439, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 includes PF/ESI/PT', 53, '2021-07-15 02:51:56', 1),
(5502, 5441, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 includes PF/ESI/PT deductions', 53, '2021-07-15 02:52:22', 1),
(5503, 5407, 8, 4, 0, 'has 2yr exp in calling 12k, no laptop will join directly, from arakkonam.', 7, '0000-00-00 00:00:00', 1),
(5504, 5407, 53, 7, 0, 'selected', 8, '2021-07-15 04:58:25', 1),
(5505, 5431, 59, 5, 0, 'Fresher,No knowledge on the skills,will not sustain for a long ,candidate clearly states that he is not much comfortable with this profile too', 60, '0000-00-00 00:00:00', 1),
(5506, 3322, 59, 7, 0, 'Candidate Need To Be Scheduled For F2F,2nd Round Of Discussion. Communication Average. Based On F2F Oly Can Be Decided On The Position / Candidate attended interview and got selected for Intern cum employment', 60, '0000-00-00 00:00:00', 1),
(5507, 5428, 59, 5, 0, 'Not comfortable with the terms and conditions, fresher profile', 60, '0000-00-00 00:00:00', 1),
(5508, 5426, 11, 4, 0, 'candidate ok E sales ', 60, '0000-00-00 00:00:00', 1),
(5509, 5456, 69, 4, 0, 'Candidate Couldxquotve been mapped wrongly.', 60, '0000-00-00 00:00:00', 1),
(5510, 5458, 59, 5, 0, 'Will not fit for our role, Age around 39 yrs,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5511, 5427, 59, 5, 0, 'Will not suits for our client role.', 60, '0000-00-00 00:00:00', 1),
(5512, 5448, 59, 5, 0, ' Do Not Have Much Importance Towards The Job, Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5513, 5454, 59, 5, 0, 'Not suits for Our UI/UX position, she is only into the design part,will not sustain for a long ,not much comfortable on the terms xxamp conditions', 60, '0000-00-00 00:00:00', 1),
(5514, 5460, 59, 5, 0, 'No basic knowledge,not comfortable on the terms and conditions, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5515, 5472, 59, 5, 0, 'Communication Average, no basic knowledge in the recruitment .No focus on the particular position', 60, '0000-00-00 00:00:00', 1),
(5516, 5471, 59, 5, 0, 'No Communication, will not handle the pressure. Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5517, 5466, 59, 5, 0, 'Not much ok with SA, Currently working as Technical Associate. Previous 7 months Exp in React JS. Min Salary Expectation is 16K ', 60, '0000-00-00 00:00:00', 1),
(5518, 5477, 59, 5, 0, 'No Stability,every 6 months changed the job. Seems not much clear on the previous experiences', 60, '0000-00-00 00:00:00', 1),
(5519, 5480, 53, 7, 0, 'selected', 60, '0000-00-00 00:00:00', 1),
(5520, 4727, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 - Cash mode 5%', 53, '2021-07-17 05:20:22', 1),
(5521, 5426, 29, 1, 0, NULL, 11, '2021-07-17 05:22:32', 1),
(5522, 5480, 59, 3, 0, 'Selected for Dhanalakshmi Team with CTC - 132000 - Cash mode', 53, '2021-07-19 12:27:36', 1),
(5523, 5407, 59, 3, 0, 'Selected for Tiruvallur location with CTC 132000 includes PF/ESI', 53, '2021-07-19 12:27:54', 1),
(5524, 5282, 8, 4, 0, 'Fresher, Okay With Calling And Expt Is 9-10k. Dont Have Laptop, Will Join Office Directly', 7, '0000-00-00 00:00:00', 1),
(5525, 5134, 53, 5, 0, 'Not suit for telecalling, Low Voice', 8, '2021-07-19 04:43:46', 1),
(5526, 5282, 53, 7, 0, 'selected', 8, '2021-07-19 04:44:11', 1),
(5527, 5482, 59, 5, 0, 'Communication Average, Candidate can join on the next day, scheduled for 2nd level but the candidate left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(5528, 5475, 59, 5, 0, 'Not much comfortable with the service Agreement, Attitude issue', 60, '0000-00-00 00:00:00', 1),
(5529, 5470, 59, 5, 0, 'Fresher, no basic knowledge in React,Seems not much comfortable with the service Agreement ,also not ready to submit the documents', 60, '0000-00-00 00:00:00', 1),
(5530, 5493, 59, 5, 0, 'No relevant Profile,Direct Walk in. Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5531, 5489, 59, 4, 0, 'Internal Team Reference - Not much ok with this profile.50/50 for the RE position,please do check', 60, '0000-00-00 00:00:00', 1),
(5532, 5487, 59, 4, 0, 'Internal Team Reference,50/50 please do check for RE', 60, '0000-00-00 00:00:00', 1),
(5533, 5473, 59, 5, 0, 'Ongoing Course Related To React Js, Need Time To Confirm On The Sa, Career Gap If Candidate Comes Back Lets Decide On The Profile', 60, '0000-00-00 00:00:00', 1),
(5534, 5455, 59, 5, 0, 'Candidate Scheduled Final Interview With Some Other Company. Applied For React Native, Have Experience In React Native But The Salary Expectation Is Ver High', 60, '0000-00-00 00:00:00', 1),
(5535, 5474, 59, 5, 0, 'Will not handle the pressure, only basic knowledge in HTML,CSS,JS. Sustainability doubt on this profile', 60, '0000-00-00 00:00:00', 1),
(5536, 5489, 57, 5, 0, 'not yet seen the candidate .. kindly check and update ', 59, '2021-07-19 07:05:20', 1),
(5537, 5487, 57, 5, 0, 'candidate is not for my team thank you \n', 59, '2021-07-19 07:06:48', 1),
(5538, 5421, 59, 3, 0, 'Joined as a Intern (will be in Observation for 7 Days till 25-Jul) post observation Internship starts with the stipend 0f 3500 for 5 months then as an employee starts with the pay of 8000', 59, '2021-07-19 07:21:18', 1),
(5539, 5422, 59, 3, 0, 'Joined As A Intern (Will Be In Observation For 7 Days Till 25-Jul) Post Observation Internship Starts With The Stipend 0f 3500 For 5 Months Then As An Employee Starts With The Pay Of 8000', 59, '2021-07-19 07:21:36', 1),
(5540, 5491, 59, 4, 0, 'Communication OK can give a try for CRM - Tiruvallur Location. Candidate will directly walk in for the F2F interview in Tiruvallur Location', 60, '0000-00-00 00:00:00', 1),
(5541, 5495, 59, 5, 0, 'Duplicate profile Submitted twice', 60, '0000-00-00 00:00:00', 1),
(5542, 5501, 59, 5, 0, 'Communication OK, Fresher For The Recruiter Role. Left Without Attending The 2nd Round Of Discussion. Sustainability doubt and not much comfortable with the Service Agreement', 60, '0000-00-00 00:00:00', 1),
(5543, 5500, 59, 5, 0, 'Communication Average, Fresher for the recruiter role. Left without attending the 2nd round of discussion', 60, '0000-00-00 00:00:00', 1),
(5544, 5490, 59, 5, 0, 'No Basic knowledge in HTML React, she was much comfortable with Python. Will not Comfortable for our role. Sustainability Doubt', 60, '0000-00-00 00:00:00', 1),
(5545, 5483, 59, 5, 0, 'Not much comfortable on the TxxampC, need to check with parents.No basic knowledge in React HTML CSS Javascripti, she is currently working in Telesales but looking for IT', 60, '0000-00-00 00:00:00', 1),
(5546, 2011, 59, 5, 0, 'No Relevant Exp xxamp no knowledge in .NEt C#,not suits for the client openings', 60, '0000-00-00 00:00:00', 1),
(5547, 5506, 69, 5, 0, 'High expectation of salary', 60, '0000-00-00 00:00:00', 1),
(5548, 5282, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode ', 53, '2021-07-20 04:34:05', 1),
(5549, 5491, 53, 5, 0, 'not suit fr TC', 59, '2021-07-20 06:43:51', 1),
(5550, 5442, 59, 5, 0, 'No relevant Exp, Will not Sustain for a long. not much focused on the requirement', 60, '0000-00-00 00:00:00', 1),
(5551, 5516, 59, 3, 0, 'Selected for Raj Kumar CRM Role,with CTC 146496 inlcudes PT only 208 deduction in client advisory Prop Staff', 60, '0000-00-00 00:00:00', 1),
(5552, 5513, 59, 5, 0, 'Candidate holding an offer and not much comfortable with the service Agreement. Communication is good ', 60, '0000-00-00 00:00:00', 1),
(5553, 5444, 59, 7, 0, 'Selected for Intern Cum Employment Offered 3.5 K Stipend for 5 months follow up with the Employment starts with the pay of 8000 - 22 Jul 2021 joining\n', 60, '0000-00-00 00:00:00', 1),
(5554, 5478, 59, 5, 0, 'Profile is ok, but salary expectation is very high and he will not sustain for long', 60, '0000-00-00 00:00:00', 1),
(5555, 5515, 30, 7, 0, 'Candidate shortlisted for Sourcing BDM and ctc 4.5lac Finalized. after performance of three month(based on target) he will promote nON SOURCING BDM. once target achieved promotion salary will revise in the month of november 5.5lac to 6lac . other details i forward in mail communication.', 60, '0000-00-00 00:00:00', 1),
(5556, 5512, 8, 4, 0, 'fresher, job need, okay with 9-10k,father doing box biz.', 7, '0000-00-00 00:00:00', 1),
(5557, 5514, 8, 4, 0, 'fresher, job need, okay with 10k', 7, '0000-00-00 00:00:00', 1),
(5558, 5512, 53, 7, 0, 'Kindly Confirm DOJ', 8, '2021-07-21 04:51:30', 1),
(5559, 5514, 53, 7, 0, 'kindly confirm DOJ', 8, '2021-07-21 04:52:03', 1),
(5560, 5515, 59, 7, 0, 'Selected as Sourcing BDM - 4.5 LPA includes PF/PT.3 months Target will be given and based on the target achieved, will be promoted and the salary will be revised - Commitment will be shared over the mail by Sathish Kumar - Bangalore', 30, '2021-07-21 05:05:49', 1),
(5561, 5515, 60, 1, 0, NULL, 59, '2021-07-21 05:30:36', 1),
(5562, 5516, 33, 4, 3, 'please check sustainability and candidate asking 15k salary please negotiate it ', 59, '2021-07-21 07:16:59', 1),
(5563, 5444, 60, 1, 0, NULL, 59, '2021-07-21 07:19:29', 1),
(5564, 5527, 59, 5, 0, 'Not much open with our terms and conditions, no sustainability in his profile. Will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(5565, 5517, 59, 5, 0, 'No Basic knowledge, not even clear o n the skill. Will not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(5566, 5518, 59, 5, 0, 'Yet to complete his graduation, Focusing into Java positions.1 more year to go', 60, '0000-00-00 00:00:00', 1),
(5567, 5519, 59, 5, 0, 'He is doing part time trainer in shuttle,No basics of Javascript,will not suits for our role and sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5568, 5520, 59, 5, 0, 'Focusing Positions into Java/Python. Not suits for our role.Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5569, 5526, 59, 5, 0, 'Rejected, Not suitable for Telesales Sales.Not much open up', 60, '0000-00-00 00:00:00', 1),
(5570, 5528, 59, 5, 0, 'Internal REference ,not much open up. not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5571, 5529, 59, 5, 0, 'Not suits for our sales, will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(5572, 5534, 59, 4, 0, 'No relevant Exp, Communication ok, but seems not much matured.Saalry expectation is high, Check for Esales 5050 ', 60, '0000-00-00 00:00:00', 1),
(5573, 5523, 59, 5, 0, 'Not strong in Basics, Exams yet to complete. Mostly focus only for the Intern. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5574, 5550, 59, 5, 0, '50/50 can give a try for Esale RM, but left without attending the 2nd level Interview', 60, '0000-00-00 00:00:00', 1),
(5575, 5537, 59, 5, 0, 'Can Give A Try For .NET, Focusing Much Into Gaming But Have Knowledge In .Net With C#.5050 Profile Can Give A Try - Rejected in the client round', 60, '0000-00-00 00:00:00', 1),
(5576, 5549, 59, 5, 0, 'Location Constraint, Sustainability doubts. Will not handle pressure. Not suits for our recruiter Role. He left previous company because of job pressure', 60, '0000-00-00 00:00:00', 1),
(5577, 5546, 59, 5, 0, 'No Communication, Fresher for the recruitment Role.He will not handle the pressure and will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5578, 5551, 59, 5, 0, 'No communication, No sales Experience will not suits for our role.', 60, '0000-00-00 00:00:00', 1),
(5579, 5543, 59, 5, 0, 'Not open for Terms xxamp conditions and the expectation is very high. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5580, 5542, 59, 5, 0, 'Not open for Terms and conditions,not interested much into the coding. She focus much into Java Python', 60, '0000-00-00 00:00:00', 1),
(5581, 5516, 18, 7, 4, 'CRM Profile. Expected salary is 15K but can negotiate to 12000. Ready to join Immedieatly', 33, '2021-07-23 04:49:41', 1),
(5582, 5530, 59, 2, 0, '5050 for .Net, having knowledge in ASP. Net MVC only and also in C#. Keen to learn in Window Form, can give a try for client', 60, '0000-00-00 00:00:00', 1),
(5583, 5562, 59, 4, 0, 'Communication Ok, But Not Convincible For The Sales Profile. Location Too Long For The Candidate', 60, '0000-00-00 00:00:00', 1),
(5584, 5539, 59, 5, 0, 'No communication,Having knowledge only in Aap.Net \nsalary Expectation is very high and will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5585, 5561, 59, 3, 0, 'Selected for Sarath Team with CTC-192000 includes PF/ESI. Target will given to the candidate and if he Achieved the target salary will be revised with the addition of 20k', 60, '0000-00-00 00:00:00', 1),
(5586, 5564, 59, 3, 0, 'Selected for Kannan Team - RE with CTC 186000 includes PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(5587, 5562, 13, 5, 0, 'Hold On Long Pending ', 59, '2021-07-24 02:39:56', 1),
(5588, 5561, 51, 4, 0, 'selected for final round', 59, '2021-07-24 02:50:17', 1),
(5589, 5564, 19, 7, 4, 'Shortlisted', 59, '2021-07-24 02:52:45', 1),
(5590, 5564, 59, 3, 0, 'Selected for Kannan Team - RE with CTC 186000 includes PF/ESI/PT', 19, '2021-07-24 03:38:44', 1),
(5591, 5570, 59, 5, 0, 'Will Come For The Joining On 28-Jul,Need To Collect Original Certificates Tomorrow,Selected For Mern Stack Can Be Trained / Candidate didnt turn back ', 60, '0000-00-00 00:00:00', 1),
(5592, 5574, 59, 5, 0, 'Interviewed by Gokul in the 2nd round and got rejected, Will not sustain for a long. Most focus only on the Salary', 60, '0000-00-00 00:00:00', 1),
(5593, 5559, 59, 5, 0, 'Not open with TxxampC. Having basic knowledge in HTML,CSS,JS with not much importance on the job', 60, '0000-00-00 00:00:00', 1),
(5594, 5553, 59, 5, 0, 'Not suits for our client position, she is comfortable only for ASP.Net MVC positions ', 60, '0000-00-00 00:00:00', 1),
(5595, 5581, 59, 5, 0, 'Not suitable for our Mern Stack, also not for our client positons', 60, '0000-00-00 00:00:00', 1),
(5596, 5582, 59, 5, 0, 'Not much comfort with TxxampC,no basic Knowledge. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5597, 5555, 59, 5, 0, 'Much interested towards Angular Positions only, will not handle the work pressure.', 60, '0000-00-00 00:00:00', 1),
(5598, 5547, 59, 5, 0, 'No basic knowledge. He is much into Java, C. Will not handle the work pressure', 60, '0000-00-00 00:00:00', 1),
(5599, 5516, 59, 3, 0, 'Selected for Raj Kumar CRM Role,with CTC 146496 inlcudes PT only 208 deduction in client advisory Prop Staff', 18, '2021-07-26 06:30:02', 1),
(5600, 5563, 59, 5, 0, 'Fresher ,little of basic knowledge, Much into PHP, Min Salary Expectation is 20K.Will not sustain for a long, Focusing much for Tier level companies\n', 60, '0000-00-00 00:00:00', 1),
(5601, 5531, 59, 5, 0, 'No relevant Exp in Winforms, having knowledge in ASP.Net only. age around 35 yrs. More of Career Gap', 60, '0000-00-00 00:00:00', 1),
(5602, 5535, 59, 5, 0, 'Focussing only for Internship, if she joins also will not sustain more than 2 yrs. Too long distance.Not open comfortable with txxampC', 60, '0000-00-00 00:00:00', 1),
(5603, 5573, 59, 5, 0, ' Need Some Time To Learning, No Basic Knowledge .Yet to Get The Document From College, Currently Working In Voice Process. Need Some Time To Decide ', 60, '0000-00-00 00:00:00', 1),
(5604, 5585, 59, 5, 0, 'Internal Reference, No communication and no stability in the previous experience. Will not suits for our role.', 60, '0000-00-00 00:00:00', 1),
(5605, 5576, 59, 5, 0, 'Having Exp in React Native,Little Attitude Issue,Salary expectation is very high.Not much comfortable with SA. No sustainability in previous exp.Not in smooth manner with the previous Companies\n', 60, '0000-00-00 00:00:00', 1),
(5606, 5509, 59, 5, 0, 'Client Interview Rejected', 60, '0000-00-00 00:00:00', 1),
(5607, 5597, 59, 5, 0, 'Education yet to complete.2022 Passout Students.No basic knowledge relevant to our technoloiges.Will not sustain for a long.', 60, '0000-00-00 00:00:00', 1),
(5608, 5599, 59, 5, 0, 'Education Yet To Complete.2022 Passout Students.No Basic Knowledge Relevant To Our Technoloiges.Will Not Sustain For A Long.', 60, '0000-00-00 00:00:00', 1),
(5609, 5606, 59, 5, 0, 'Currently working as an Assistant Engineer and fresher for the Recruiter Profile. Current Salary PM is 18K and the expectation is more than .Not much comfortable with the service Agreement', 60, '0000-00-00 00:00:00', 1),
(5610, 5604, 59, 5, 0, 'Looking for opportunities in cyber Security/Information security positions. Will not sustain for a long in our openings. Plan to go with CCNA/CCNP certifications', 60, '0000-00-00 00:00:00', 1),
(5611, 5601, 59, 4, 0, '50/50 Career Gap Age around 35 yrs, No relevant Experience. Need of Job in a priority, sustainability doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(5612, 5590, 59, 5, 0, 'Holding an offer with Net Access for a month training and then with 10k Salary and Hike after an year. Much comfortable and the previous exp is in PHP. Will not sustain for a long in our domain', 60, '0000-00-00 00:00:00', 1),
(5613, 5603, 8, 4, 3, 'completed his diploma and done many part time jobs, job in need. expt is 14-15k, okay with 12-13k. fresher for sales.', 60, '0000-00-00 00:00:00', 1),
(5614, 5607, 59, 5, 0, 'No Communication, no stability in the previous experiences. Will not suits for our Telecaller/sales profile', 60, '0000-00-00 00:00:00', 1),
(5615, 5601, 11, 1, 0, NULL, 59, '2021-07-27 03:16:01', 1),
(5616, 5534, 11, 1, 0, NULL, 59, '2021-07-27 03:33:08', 1),
(5617, 5530, 59, 5, 0, '5050 For .Net, Having Knowledge In ASP. Net MVC Only And Also In C#. Keen To Learn In Window Form, Can Give A Try For Client - Rejected in the client round of Interview', 59, '2021-07-27 03:33:53', 1),
(5618, 5561, 29, 7, 0, 'Selected for RM - Sarath team, Salary details refer resume, hike of 2k in 2 months biz of 1.50 lacs each month..check during training and confirm', 51, '2021-07-27 04:52:55', 1),
(5619, 5603, 24, 7, 4, 'candidate selected .. ', 8, '2021-07-27 05:55:35', 1),
(5620, 5603, 59, 3, 0, 'Selected for Suthagar team with CTC 180000 includes \nPF/ESI/PT Deduction ', 24, '2021-07-27 05:58:20', 1),
(5621, 5561, 59, 3, 0, 'Selected for Sarath Team with CTC-192000 includes PF/ESI. Target will given to the candidate and if he Achieved the target salary will be revised with the addition of 20k', 29, '2021-07-28 04:56:47', 1),
(5622, 5552, 8, 4, 3, 'has 2yr exp and okay with sales and expt is 15k, check with sustainability.', 60, '0000-00-00 00:00:00', 1),
(5623, 5552, 24, 4, 0, 'Select for next round', 8, '2021-07-28 05:43:53', 1),
(5624, 5626, 59, 5, 0, 'Communication Average, Very Slow.No sustainability in his previous exp. Left previous job due to pressure. Salary Exp is very high', 60, '0000-00-00 00:00:00', 1),
(5625, 5488, 59, 5, 0, 'CLient round Rejected', 60, '0000-00-00 00:00:00', 1),
(5626, 5621, 59, 5, 0, ' Can Schedule Him For The Second Level Of Interview, He Is Having Multiple Other Interview With Companies. If He Come Back Let See / Candidate didnt turn back ', 60, '0000-00-00 00:00:00', 1),
(5627, 5556, 59, 5, 0, 'Poor Communication, No basic knowledge, will not handle our pressure. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5628, 5572, 59, 5, 0, 'Looking for Testing Profile, Worked with RANE. Not much focused towards the career. Salary Expectation is also too high', 60, '0000-00-00 00:00:00', 1),
(5629, 5605, 59, 5, 0, 'Need to check with family on the Service Agreement, Sustainability doubts on her profile. Will not handle our pressure. No basic knowledge in Javascript. She is much into Python ', 60, '0000-00-00 00:00:00', 1),
(5630, 5567, 59, 5, 0, 'Didnxquott come back after checking with his family on TxxampC. Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5631, 5618, 59, 5, 0, 'Communication Average ,Not much comfortable with the service Agreement .Expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5632, 3960, 59, 5, 0, 'No Communication, Salary Expectation is very high. No understanding. Will not sustain with us for a long.', 60, '0000-00-00 00:00:00', 1),
(5633, 5620, 8, 4, 0, 'will come office for next round, fresher expt is 10k, job need. no father.', 60, '0000-00-00 00:00:00', 1),
(5634, 5552, 19, 7, 3, 'Next Round ', 24, '2021-07-28 08:07:50', 1),
(5635, 5552, 59, 3, 0, 'Selected for Kannan Team with CTC - 216000 includes PF/ESI/PT deductions', 19, '2021-07-29 12:29:53', 1),
(5636, 5609, 59, 5, 0, 'Focus much for Govt Exams and he is having knowledge much with Python. Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5637, 5630, 59, 5, 0, 'Fresher, high CTC Expectation, not much ok with Service Agreement.', 60, '0000-00-00 00:00:00', 1),
(5638, 5632, 59, 5, 0, 'Communication Average, Salary Expectation is high. Not much comfortable with terms xxamp conditions', 60, '0000-00-00 00:00:00', 1),
(5639, 5612, 59, 5, 0, 'Attitude Issue, will not fit for our role.', 60, '0000-00-00 00:00:00', 1),
(5640, 5623, 59, 3, 0, 'Selected for Mern Stack with Stipend initial 3,5k Stipend for 5 month post intern starts with the salary of 8000', 60, '0000-00-00 00:00:00', 1),
(5641, 5644, 59, 5, 0, 'No communication, will not sustain and handle pressure', 60, '0000-00-00 00:00:00', 1),
(5642, 5511, 59, 5, 0, 'Will Come For System Task, Having 1 Yr Of Experience In React Native - Mobile/Web Applications - Task has been given and not up to the mark as we expected. We need to train him a lot. Candidate notice is 30 Days', 60, '0000-00-00 00:00:00', 1),
(5643, 5622, 59, 5, 0, 'No Communication,not much open up no basic knowledge ,Will not handle the pressure and sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5644, 5624, 59, 5, 0, 'Looking only for Python positions', 60, '0000-00-00 00:00:00', 1),
(5645, 5648, 59, 3, 0, 'Selected for Kannan Team internal team reference with cTC 168000 includes PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(5646, 5652, 59, 3, 0, 'Selected for Suthagr TEam with CTC 156000 includes PF/ESI/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5647, 5648, 19, 4, 4, 'Referance', 59, '2021-07-31 05:57:10', 1),
(5648, 5652, 24, 4, 0, 'select for next round .. expected high package.. ', 59, '2021-07-31 05:59:19', 1),
(5649, 5654, 59, 5, 0, 'Communication ok, left without attending the second level interview', 60, '0000-00-00 00:00:00', 1),
(5650, 5651, 59, 5, 0, 'Having his own business-GYM products manufacturing. Looking for Recruiter position with the high pay. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5651, 5650, 59, 5, 0, 'Notice period 30 days,1 yr Exp and Salary expectation is High. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5652, 5634, 59, 5, 0, 'No relevant experience in DotNet, have work ep in Digital Marketing but dont have much knowledge on that .Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(5653, 5649, 59, 5, 0, 'Not open for Telesales, looking only for 2d designing jobs. Will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(5654, 5647, 59, 5, 0, 'Communication okand salary exp in high and seems not comfort with TxxampC', 60, '0000-00-00 00:00:00', 1),
(5655, 5652, 59, 3, 0, 'Selected for Suthagr TEam with CTC 156000 includes PF/ESI/PT deductions', 24, '2021-07-31 06:13:45', 1),
(5656, 5648, 59, 3, 0, 'Selected for Kannan Team internal team reference with cTC 168000 includes PF/ESI/PT', 19, '2021-08-02 10:39:44', 1),
(5657, 5679, 8, 5, 0, 'very low voice and not bold', 7, '0000-00-00 00:00:00', 1),
(5658, 5681, 8, 4, 0, 'fresher for calling and sales. has exp in core, expt is 12-15k, check with sustainability once.', 7, '0000-00-00 00:00:00', 1),
(5659, 5672, 8, 4, 0, 'has 2yr exp in AR calling, good in speaking script, expt 13-15k. check with convincing once.', 7, '0000-00-00 00:00:00', 1),
(5660, 5673, 8, 5, 0, 'has around 5yr exp, no product knowledge.', 7, '0000-00-00 00:00:00', 1),
(5661, 4483, 59, 4, 0, 'Check for Digital Marketing-Communication ok having Knowledge and freelance exp in Digital Marketing', 60, '0000-00-00 00:00:00', 1),
(5662, 5672, 24, 4, 0, 'cross check', 8, '2021-08-02 05:00:20', 1),
(5663, 5635, 59, 5, 0, 'No basic knowledge in .Net Profile few months back attended interview for RM and got rejected', 60, '0000-00-00 00:00:00', 1),
(5664, 5641, 59, 5, 0, ' Not Much Clear With TxxampC,But Showing Interest On The Profile, Udhay Will Interview And Let Us Decide / But she didnt turn back on the next day for the interview', 60, '0000-00-00 00:00:00', 1),
(5665, 5681, 24, 4, 0, 'Cross check with experience ', 8, '2021-08-02 05:02:06', 1),
(5666, 5653, 59, 3, 0, 'Selected for Suthagar Team with CTC 216000 includes PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(5667, 5671, 59, 4, 0, 'check for CRM, internal team reference but the distance -58km up and down', 60, '0000-00-00 00:00:00', 1),
(5668, 5560, 59, 4, 0, '5050 check for UI,Exp in UI but no exp in the areas of UX', 60, '0000-00-00 00:00:00', 1),
(5669, 5660, 59, 5, 0, 'Didnt trun back with the task provided', 60, '0000-00-00 00:00:00', 1),
(5670, 5677, 59, 4, 0, 'check for Elite - 5050', 60, '0000-00-00 00:00:00', 1),
(5671, 5676, 59, 5, 0, 'Looking only for non voice process', 60, '0000-00-00 00:00:00', 1),
(5672, 5674, 59, 5, 0, 'Location constraint - Up and down 76 kms, long back scheduled interview and not attende.', 60, '0000-00-00 00:00:00', 1),
(5673, 5667, 59, 5, 0, 'No Exp, fresher, sustainability doubts.Will not fit for our sales profile', 60, '0000-00-00 00:00:00', 1),
(5674, 5665, 59, 5, 0, 'Looking for Java/Python openings.Not open for our technology', 60, '0000-00-00 00:00:00', 1),
(5675, 5664, 59, 5, 0, 'Looking only for testing positions,no relevant for our roles', 60, '0000-00-00 00:00:00', 1),
(5676, 5670, 59, 5, 0, 'Not open for Voice process, focusing only for the non voice openings', 60, '0000-00-00 00:00:00', 1),
(5677, 5666, 59, 5, 0, 'Fresher,but updated her resume with Fake Exp,Will not suitable for our sales', 60, '0000-00-00 00:00:00', 1),
(5678, 4483, 69, 4, 0, 'Task Has Been Assigned', 59, '2021-08-02 05:20:17', 1),
(5679, 5660, 69, 4, 0, 'Task has been assigned.', 59, '2021-08-02 05:29:36', 1),
(5680, 5660, 59, 5, 0, 'Didnt trun back with the task provided', 69, '2021-08-02 05:30:34', 1),
(5681, 4483, 60, 1, 0, NULL, 69, '2021-08-02 05:30:53', 1),
(5682, 5560, 69, 5, 0, 'Not enough knowledge', 59, '2021-08-02 05:32:29', 1),
(5683, 5677, 14, 5, 0, 'Not suitable for this profile', 59, '2021-08-02 05:43:15', 1),
(5684, 5671, 33, 1, 0, NULL, 59, '2021-08-02 05:44:37', 1),
(5685, 5653, 24, 7, 0, 'expct 18k salary', 59, '2021-08-02 05:48:49', 1),
(5686, 5595, 59, 5, 0, 'Career Gap - 8 years,1 yr experience into ASP.Net, high Salary Expectation. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5687, 5672, 19, 7, 4, 'Sustainability', 24, '2021-08-03 10:19:31', 1),
(5688, 5681, 59, 5, 0, 'Suthagar rejected the profile.by mistake he scheduled the candidate for next level with me', 24, '2021-08-03 10:21:58', 1),
(5689, 5653, 59, 3, 0, 'Selected for Suthagar Team with CTC 216000 includes PF/ESI/PT', 24, '2021-08-03 10:23:02', 1),
(5690, 5620, 14, 5, 0, 'Not suitable for this profile', 8, '2021-08-03 11:22:30', 1),
(5691, 5633, 59, 5, 0, 'No Winform Exp she is fully into Web application.* month Exp and her salary Exp is very high', 60, '0000-00-00 00:00:00', 1),
(5692, 5611, 59, 5, 0, 'No Relevant Exp, Working in the Manufacturing Company for 3 months and looking for openings in IT company.No basic knowledge in IT skills,salary Expectation is high,will not sustain for aa long', 60, '0000-00-00 00:00:00', 1),
(5693, 5696, 8, 4, 0, 'fresher, father-daily wages and expt 12k.job need.', 7, '0000-00-00 00:00:00', 1),
(5694, 5698, 8, 4, 0, 'no calling Experience and has 2yr exp in car showroom sales, expt is 15k', 7, '0000-00-00 00:00:00', 1),
(5695, 5696, 24, 7, 0, 'Selected ', 8, '2021-08-03 05:51:17', 1),
(5696, 5698, 24, 5, 0, 'Expct highe salary but not fit for that.. and also speaking not fluent', 8, '2021-08-03 05:52:14', 1),
(5697, 5610, 59, 3, 0, 'Selected for Internship\n1st month Unpaid Internship, then 3500 Stipend for 5 months which continues with 8k salary includes 3 yrs overall Service Agreement', 60, '0000-00-00 00:00:00', 1),
(5698, 5696, 59, 3, 0, 'Selected for Suthagar team includes PF/ESI/PT', 24, '2021-08-03 06:03:56', 1),
(5699, 5207, 13, 7, 4, 'ok 10k Salary kindly confirm date of joining', 8, '2021-08-03 06:09:46', 1),
(5700, 5182, 13, 5, 0, 'Lockdown Period Hold Long Pending ', 8, '2021-08-03 06:10:11', 1),
(5701, 5237, 14, 5, 0, 'Not suitable for this profile', 8, '2021-08-03 06:10:43', 1),
(5702, 5697, 24, 4, 0, 'expect highe salary .. ', 60, '0000-00-00 00:00:00', 1),
(5703, 5705, 59, 3, 0, 'Selected for Elite RE with CTC 120000 includes PF/ESI/PT\n', 60, '0000-00-00 00:00:00', 1),
(5704, 5706, 59, 5, 0, 'yet to complete one more semester ,will not fit for our telesales profile', 60, '0000-00-00 00:00:00', 1),
(5705, 5629, 59, 5, 0, 'Not open with TxxampC,no basic knowledge in IT Skills will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5706, 5692, 59, 5, 0, 'Not open for TxxampC,CCNA certified candidate,no basic in our skills will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5707, 5701, 59, 5, 0, 'Looking only for intern, college yet to complete', 60, '0000-00-00 00:00:00', 1),
(5708, 5687, 59, 5, 0, '2 months Intern Exp .she holds an offer with net access for 15K salary and she expects for the more.Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5709, 5703, 59, 5, 0, 'No communication, internal team reference, will not handle the pressure. Sustainability doubts\n', 60, '0000-00-00 00:00:00', 1),
(5710, 5250, 53, 5, 0, 'Not Suit For Telecalling, Sustainabillity issue', 8, '2021-08-03 06:25:38', 1),
(5711, 5705, 14, 7, 4, 'Salary 10k need to confirm joining date', 59, '2021-08-03 06:36:43', 1),
(5712, 5697, 59, 5, 0, 'Discussed with the candidate and asked him to share the payslio ,but no reply and not responding to the calls too.', 24, '2021-08-04 10:07:55', 1),
(5713, 5718, 59, 5, 0, 'No relevant Exp,Focus much into Java Python\n', 60, '0000-00-00 00:00:00', 1),
(5714, 5663, 59, 5, 0, 'Holding other offers and looking for high pay\n', 60, '0000-00-00 00:00:00', 1),
(5715, 5672, 59, 3, 0, 'Selected for Kannan Team with CTC 204000 includes PF/ESI/PT', 19, '2021-08-04 10:56:02', 1),
(5716, 5695, 18, 4, 4, 'Decent candidate but not having laptop. Expected salary is 22k. Shotlisted for Veben and an immed joiner', 50, '0000-00-00 00:00:00', 1),
(5717, 5699, 18, 7, 4, 'Good Candidate. But not having laptop and Bike. Informed to Get Laptop and Join on Monday (9 Aug)', 50, '0000-00-00 00:00:00', 1),
(5718, 5712, 18, 8, 0, 'Kindly Refix', 50, '0000-00-00 00:00:00', 1),
(5719, 5714, 18, 8, 0, 'Old Resume', 50, '0000-00-00 00:00:00', 1),
(5720, 5497, 59, 5, 0, 'No relevant Exp in Dotnet Winform,will not suits for the cleint requirement\n', 50, '0000-00-00 00:00:00', 1),
(5721, 5695, 40, 8, 0, 'Not attended', 18, '2021-08-04 12:39:12', 1),
(5722, 5717, 13, 5, 0, 'Hold on long pending', 50, '0000-00-00 00:00:00', 1),
(5723, 5719, 59, 5, 0, 'No relevant Exp, Fresher, Focusing on Aviation and for the time being looking for a job', 50, '0000-00-00 00:00:00', 1),
(5724, 5724, 59, 5, 0, 'Looking for non Voice', 60, '0000-00-00 00:00:00', 1),
(5725, 5699, 8, 4, 0, 'check and revert', 18, '2021-08-04 03:41:49', 1),
(5726, 5705, 59, 3, 0, 'Selected for Elite RE with CTC 120000 includes PF/ESI/PT\n', 14, '2021-08-04 03:58:02', 1),
(5727, 5720, 59, 5, 0, 'Yet to complete College 1 more year to go,Distance toolong around 72 kms up and down', 60, '0000-00-00 00:00:00', 1),
(5728, 5669, 59, 5, 0, 'No relevant Exp in Dot net WinForms, Exp into BPO Health care domain', 60, '0000-00-00 00:00:00', 1),
(5729, 5659, 59, 5, 0, 'Started her career in recruitment and moved to the IT skills internally from past 3 months. Salary Expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5730, 5680, 59, 5, 0, 'Career Gap no individual learning,thinking a lot on the TxxampC seems not comfortable .Much comfortable with Python', 60, '0000-00-00 00:00:00', 1),
(5731, 5685, 59, 5, 0, 'Client Interview Rejected', 60, '0000-00-00 00:00:00', 1),
(5732, 5734, 18, 5, 3, 'Not fit for sales', 50, '0000-00-00 00:00:00', 1),
(5733, 5722, 40, 8, 0, 'Not attended', 50, '0000-00-00 00:00:00', 1),
(5734, 5723, 40, 4, 3, 'Selected for next round but 50/50. Fresher, salary as per company norms. He can join after 15days due to some family function. Having a Laptop and a bike. Location 18kms from our office', 50, '0000-00-00 00:00:00', 1),
(5735, 5725, 40, 5, 2, 'Not fit for the Job', 50, '0000-00-00 00:00:00', 1),
(5736, 5727, 59, 5, 0, 'no knowledge in the basics,no ideas on MERN,2020 passed out and Didnxquott show any interest in learning the technologies. Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(5737, 5700, 59, 5, 0, 'no basic knowledge in Dotnet, fresher profile having knowledge in relates to c,C++.Will not suits for client requirement', 50, '0000-00-00 00:00:00', 1),
(5738, 5728, 59, 7, 0, 'Selected for the recruiter position with salary 5000 for 3months + 15 days after that salary will be decided', 60, '0000-00-00 00:00:00', 1),
(5739, 5742, 59, 4, 0, 'Communication ok, having exp in Sales voice process, can give a try', 60, '0000-00-00 00:00:00', 1),
(5740, 5686, 59, 5, 0, 'Fresher,having knowledge in HTML CSS Javascript but not comfortable with TxxampC.Presuure handling xxamp Sustainability doubt', 60, '0000-00-00 00:00:00', 1),
(5741, 5747, 59, 5, 0, 'Poor Communication,no basic ideas in the recruitment,career gap,having his own business and will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5742, 5743, 59, 5, 0, 'No relevant Exp Fully into non voice process,will not handle our pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(5743, 5745, 8, 4, 0, 'Has Around 4yr Exp, Fresher For Insurance, Expt Is 15-17k, Due To Hike Issue He Relived From Previous Company.', 60, '0000-00-00 00:00:00', 1),
(5744, 5713, 59, 2, 0, 'can schedule him for F2F client round.have exp in Winforms but seems very slow in process', 60, '0000-00-00 00:00:00', 1),
(5745, 5739, 59, 5, 0, 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC', 60, '0000-00-00 00:00:00', 1),
(5746, 5740, 59, 5, 0, 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC', 60, '0000-00-00 00:00:00', 1),
(5747, 5735, 59, 5, 0, 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC\n', 60, '0000-00-00 00:00:00', 1),
(5748, 5741, 59, 5, 0, 'No basic skills knowledge,attended interviews and not joined due to Service Agreement with previous offer.Not comfortable with our TxxampC', 60, '0000-00-00 00:00:00', 1),
(5749, 5745, 19, 7, 4, 'Job Needed Person', 8, '2021-08-05 03:47:03', 1),
(5750, 5742, 14, 5, 0, 'Not suitable for this profile', 59, '2021-08-05 03:53:57', 1),
(5751, 5728, 60, 1, 0, NULL, 59, '2021-08-05 03:56:24', 1),
(5752, 5745, 59, 3, 0, 'Selected for Kannan Team, internal Team reference with CTC 204000 includes PF/ESI/PT', 19, '2021-08-05 04:47:22', 1),
(5753, 5726, 59, 5, 0, 'Salary Expectation is very high, In native itself he earns around 10k and left only for the package', 60, '0000-00-00 00:00:00', 1),
(5754, 5690, 59, 5, 0, 'Client Round Rejected', 60, '0000-00-00 00:00:00', 1),
(5755, 5730, 59, 5, 0, 'Profile is Good,not open with the TxxampC will not sustain for a long and the salary expectation is very high.', 60, '0000-00-00 00:00:00', 1),
(5756, 5729, 59, 5, 0, 'Having knowledge in React.JS, but not comfortable with TxxampC and the salary expectation is min 12K as a fresher', 60, '0000-00-00 00:00:00', 1),
(5757, 5661, 59, 5, 0, 'not open with the terms xxamp conditions and the salary expectation is very high, having basic knowledge in Node.JS', 60, '0000-00-00 00:00:00', 1),
(5758, 5760, 59, 5, 0, 'Not a relevant profile, just looking for any job.No Focus in the domain', 60, '0000-00-00 00:00:00', 1),
(5759, 5758, 59, 5, 0, 'Communication is Good, no experience in Digital Marketing.2 yrs career gap but the salary expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5760, 5753, 18, 7, 4, 'Selected for Veben team in hyderadba. Monday Joiner. Offered 231000 as overall CTC ', 50, '0000-00-00 00:00:00', 1),
(5761, 5694, 59, 5, 0, 'Fresher, not much strong into technical, attended 2nd level with the client and got rejected', 60, '0000-00-00 00:00:00', 1),
(5762, 5761, 59, 5, 0, 'Communication ok, fresher, career gap for an year. Need time to decide on the Terms xxamp conditions. Seems not much comfortable. Sustainability doubts ', 60, '0000-00-00 00:00:00', 1),
(5763, 5763, 59, 5, 0, 'Need to get into Digital Marketing, not much comfortable with TxxampC. having internship exp in recruitment ,but focus into digital Marketing. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5764, 5753, 59, 3, 0, 'Selected for Veben Team in Hyderabad with CTC 231000 includes PF/ESI/PT', 18, '2021-08-06 12:53:49', 1),
(5765, 5746, 59, 5, 0, 'Communication is OK, and he is not open or the sales profile. He is not ready to make calls and focus only on the salary. No sustainability in his previous experiences too.', 50, '0000-00-00 00:00:00', 1),
(5766, 5750, 18, 8, 0, 'Not Attended', 50, '0000-00-00 00:00:00', 1),
(5767, 5756, 27, 2, 0, 'Interview taken. Task Given.', 60, '0000-00-00 00:00:00', 1),
(5768, 5752, 59, 5, 0, 'Candidate seems good. basic knowledge in React.JS, Currently into internship in coimbatore and the salary expectation is very high.', 60, '0000-00-00 00:00:00', 1),
(5769, 5691, 8, 4, 0, 'fresher, job need, okay with 9-10k,', 60, '0000-00-00 00:00:00', 1),
(5770, 5693, 8, 4, 0, 'fresher, okay with 10k, father tailor job need.', 60, '0000-00-00 00:00:00', 1),
(5771, 5773, 53, 7, 0, 'Sal 10k Pls Cnfrm DOJ', 60, '0000-00-00 00:00:00', 1),
(5772, 5691, 53, 7, 0, '9585078385', 8, '2021-08-06 06:57:07', 1),
(5773, 5693, 53, 7, 0, 'kindly confirm DOJ', 8, '2021-08-06 06:57:39', 1),
(5774, 4584, 59, 3, 0, 'Selected for CRM - Priority Shanmuga Kutralingam Team with CTC 146496 includes 208 deduction in Client Advisory Prop', 44, '2021-08-06 07:29:03', 1),
(5775, 5721, 59, 5, 0, 'Client round rejected', 60, '0000-00-00 00:00:00', 1),
(5776, 5733, 59, 5, 0, '60 Days notice, Salary expectation is around 6.5 LPA. Working in CSS. Recently stepped into React.JS', 60, '0000-00-00 00:00:00', 1),
(5777, 5723, 18, 8, 0, 'Not Attended', 40, '2021-08-07 11:28:52', 1),
(5778, 5764, 40, 4, 4, 'Selected for the final round. \nFresher but having an offer with Byjus for 5lac CTC. \nCommunication is good.\nInterested in Insurance Industry. Having a laptop and a bike. With in a week he can able to join', 50, '0000-00-00 00:00:00', 1),
(5779, 5765, 40, 8, 0, 'Not interested in our profile', 50, '0000-00-00 00:00:00', 1),
(5780, 5769, 40, 8, 0, 'Not attended', 50, '0000-00-00 00:00:00', 1),
(5781, 5764, 18, 7, 4, 'Shortisted for Veben Team. Offered 299000 CTC overall. Joining date on 16th August', 40, '2021-08-07 11:42:43', 1),
(5782, 5199, 8, 5, 0, 'no laptop and will not sustain', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(5783, 5704, 59, 5, 0, 'Not much into Winform, Fresher have a knowledge in relates to webforms', 60, '0000-00-00 00:00:00', 1),
(5784, 5707, 59, 5, 0, 'Not much strong in DotNet.,will not sustain for a long ,relocation doubtsxquot\n', 60, '0000-00-00 00:00:00', 1),
(5785, 5708, 59, 5, 0, 'Not open for Winform opening, looking specifically for Web development ASP.Net. His sister is guiding him towards the ASP.Net', 60, '0000-00-00 00:00:00', 1),
(5786, 5749, 59, 5, 0, 'Having Exp in Non It domain for 1.5+ yrs and looking for opportunities in IT Mern Stack but his expectation is very high with min salary of 12K.Sustainability doubts with TxxampC', 60, '0000-00-00 00:00:00', 1),
(5787, 5751, 59, 5, 0, 'Have Exp in Dotnet but the Expectation is high and sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(5788, 3040, 59, 4, 0, 'Long back attended for RE,No relevant Experience,please do check and let me know - 50/50', 60, '0000-00-00 00:00:00', 1),
(5789, 5778, 59, 4, 0, 'Not much suits, but internal reference. Kindly check this profile and let me know', 60, '0000-00-00 00:00:00', 1),
(5790, 5711, 59, 5, 0, 'No basic knowledge in WinForms,. very slow seems not much importance with the job.Will not sustain for a long.Not suits for our client', 60, '0000-00-00 00:00:00', 1),
(5791, 5766, 59, 5, 0, 'No Communication, no basic ideas about the recruitment.Will not handle our pressure and sustainability doubts\n', 60, '0000-00-00 00:00:00', 1),
(5792, 5782, 59, 4, 0, 'Check for Elite, RE Internal Reference 5050 ', 60, '0000-00-00 00:00:00', 1),
(5793, 5782, 14, 5, 0, 'Not suitable for this profile', 59, '2021-08-07 03:29:47', 1),
(5794, 5778, 24, 5, 0, 'not suitable', 59, '2021-08-07 03:38:36', 1),
(5795, 3040, 24, 5, 0, 'rejected', 59, '2021-08-07 03:41:53', 1),
(5796, 5754, 27, 2, 0, 'Interview taken. Task has to be given.', 60, '0000-00-00 00:00:00', 1),
(5797, 5774, 53, 7, 0, 'please confirm DOJ', 60, '0000-00-00 00:00:00', 1),
(5798, 3322, 60, 1, 0, NULL, 59, '2021-08-07 06:10:15', 1),
(5799, 5748, 59, 5, 0, 'Have Basic Knowledeg In React, Requested time To Check With His Family and didnt turn back with the response', 60, '0000-00-00 00:00:00', 1),
(5800, 5781, 59, 5, 0, 'Keen To Learn But Too Long Distance From Sriperumbuthur.', 50, '0000-00-00 00:00:00', 1),
(5801, 5731, 59, 5, 0, 'Not much comfort with the TxxampC ,need to check with his family.', 50, '0000-00-00 00:00:00', 1),
(5802, 5780, 59, 5, 0, 'Communication is Good, Too long Distance up and down 50 kms.Have a focus towards his father business.Salary expectation is High', 50, '0000-00-00 00:00:00', 1),
(5803, 5774, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 144000 includes PF/ESI', 53, '2021-08-09 10:53:14', 1),
(5804, 5693, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode', 53, '2021-08-09 10:54:01', 1),
(5805, 5691, 59, 3, 0, 'Selected for Tiruvallur Location with Cash mode', 53, '2021-08-09 10:54:48', 1),
(5806, 5514, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 in cash mode', 53, '2021-08-09 10:55:22', 1),
(5807, 5512, 59, 3, 0, 'Selected for Tiruvallur Location with CTC 120000 in cash mode', 53, '2021-08-09 10:55:43', 1),
(5808, 4960, 59, 5, 0, 'Not ok with our Offer.also our rms link is incomplete', 53, '2021-08-09 10:58:23', 1),
(5809, 5790, 59, 3, 0, 'Selected for Suthagar team with CTC 180000 includes PF/ESI/PT', 50, '0000-00-00 00:00:00', 1),
(5810, 5787, 59, 5, 0, 'Career Gap not much strong into the areas of UI/UX.Not much serious towards the job focusing for Govt Jobs', 50, '0000-00-00 00:00:00', 1),
(5811, 4757, 29, 7, 3, 'selected for Esales rM, divya team, 14k salary, will increase 1k for 3rd month if logged 1 lac each for next 2 months..', 21, '2021-08-09 01:07:23', 1),
(5812, 4757, 59, 3, 0, 'Selected for Dhivya Team with CTC 170496 includes PF/ESI/PT', 29, '2021-08-09 03:42:16', 1),
(5813, 5788, 59, 5, 0, 'No Communication, by mistake she came here for the interview', 60, '0000-00-00 00:00:00', 1),
(5814, 5784, 59, 5, 0, 'Communication OK, not familiar with local language, Salary Expectation is High, Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5815, 5790, 24, 7, 0, 'selected', 59, '2021-08-09 06:55:19', 1),
(5816, 5790, 59, 3, 0, 'Selected for Suthagar team with CTC 180000 includes PF/ESI/PT', 24, '2021-08-09 07:13:00', 1),
(5817, 5793, 59, 5, 0, 'Communication Is Ok, No Relevant Exp In Insurance Sales. He Is Having A Career Gap And Long-Run Doubts On This Profile. He Is Not Having A Bike And Is Around 10kms From Jubilee Hills. 50/50 Profile.', 50, '0000-00-00 00:00:00', 1),
(5818, 5819, 59, 4, 0, 'Communication ok, No relevant Exp in Sales, worked in the BPO sector, Career Gap, can give a try for RE', 60, '0000-00-00 00:00:00', 1),
(5819, 5798, 59, 5, 0, 'Communication is Good not much comfortable with the terms and conditions and most comfortable for freelance only and the expectation is very high', 60, '0000-00-00 00:00:00', 1),
(5820, 5812, 59, 4, 0, 'Check for Elite, Seems to be good in communication ', 60, '0000-00-00 00:00:00', 1),
(5821, 5811, 59, 4, 0, 'Communication Average,50/50 please check for Elite', 60, '0000-00-00 00:00:00', 1),
(5822, 5791, 59, 5, 0, 'no basic knowledge ,,fresher for DotNet. no clear ideas about the Dotnet .Career Gap will not sustain for a long.Earlier he is into business', 60, '0000-00-00 00:00:00', 1),
(5823, 5796, 59, 5, 0, 'Long Career Gap,Much into web applications only.Will not fit for our client role', 60, '0000-00-00 00:00:00', 1),
(5824, 5809, 59, 3, 0, 'Selected for Raj Kumar with CTC 300000 includes PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(5825, 5819, 34, 5, 0, 'rejected ', 59, '2021-08-10 04:19:12', 1),
(5826, 5776, 59, 5, 0, 'No sustainability,2.5 yrs 3 companies and looking for a change. Holding an offer with another company', 60, '0000-00-00 00:00:00', 1),
(5827, 5803, 59, 5, 0, 'Fresher profile, expecting high Pay, already he received an offer for 12K and he is not comfortable with package. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5828, 5811, 8, 5, 0, 'Will Not Suite For Calling, No Flow In Speech', 59, '2021-08-10 07:04:26', 1),
(5829, 5812, 8, 5, 0, 'will not suite for calling, no flow in speech', 59, '2021-08-10 07:05:15', 1),
(5830, 5809, 33, 4, 3, 'kindly update sustainability and gothrough his sales knowledge ', 59, '2021-08-10 07:06:54', 1),
(5831, 5813, 73, 4, 0, 'check voice and sustainability.', 60, '0000-00-00 00:00:00', 1),
(5832, 5814, 73, 5, 0, 'she is looking for non-voice , because preparing for competitive exam. not suitable for this profile.', 60, '0000-00-00 00:00:00', 1),
(5833, 5805, 59, 5, 0, 'Working, not sure on the Notice to serve,not much comforrtable with TxxampC,if he comes back let see', 50, '0000-00-00 00:00:00', 1),
(5834, 5809, 18, 7, 4, 'Selected for Raj Team. Spoken CTC is 3L per annuam. Able to Join on 19th August', 33, '2021-08-11 12:05:20', 1),
(5835, 5764, 59, 3, 0, 'Selected for Hyderabad with CTC 299000 includes PF/ESI/PT', 18, '2021-08-11 12:37:45', 1),
(5836, 5830, 27, 5, 0, 'Task not completed. even she doesnxquott know how to run the application.', 50, '0000-00-00 00:00:00', 1),
(5837, 5813, 14, 4, 0, 'Salary 10k kindly check for voice or non voice once', 73, '2021-08-11 02:54:05', 1),
(5838, 5836, 59, 3, 0, 'Selected for Syed Team with CTC 192000 includes PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(5839, 5840, 59, 3, 0, 'Selected For Guru Team With CTC 192000 Includes PF/ESI Deductions.Guru Reference And Manager Round Has Been Taken By Syed Abthali', 60, '0000-00-00 00:00:00', 1),
(5840, 2352, 59, 3, 0, 'Selected for Guru Team with CTC 198000 includes PF/ESI deductions.Guru reference and manager round has been taken by Syed abthali', 60, '0000-00-00 00:00:00', 1),
(5841, 5840, 57, 4, 3, 'he is ok', 59, '2021-08-11 05:37:10', 1),
(5842, 2352, 57, 4, 3, 'candidate is ok ', 59, '2021-08-11 05:38:36', 1),
(5843, 5836, 57, 4, 2, 'candidate is ok . ', 59, '2021-08-11 05:41:16', 1),
(5844, 5809, 59, 3, 0, 'Selected for Raj Kumar with CTC 300000 includes PF/PT deductions', 18, '2021-08-11 05:55:10', 1),
(5845, 5709, 59, 5, 0, 'Experienced but no basic knowledge in UI/UX ,Salary expectation is very high. Will not sustain with us ', 60, '0000-00-00 00:00:00', 1),
(5846, 5813, 59, 5, 0, 'Communication ok,his focus is much towards the non voice process, just for time being looking for opportunities', 14, '2021-08-11 06:18:29', 1),
(5847, 5839, 59, 5, 0, 'Not much open up, will not suits for our sales profile. No relevant Exp.', 60, '0000-00-00 00:00:00', 1),
(5848, 5768, 59, 5, 0, 'No Communication ,fresher ,no basic knowledge in Digital Marketing. Not suits', 60, '0000-00-00 00:00:00', 1),
(5849, 5833, 57, 5, 0, 'not yet seen this candidate but he is assigned in my rms so kindly check \n', 60, '0000-00-00 00:00:00', 1),
(5850, 5770, 59, 5, 0, 'Location too long, need to check with his family on TxxampC.Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(5851, 5799, 59, 5, 0, 'Not much comfortable with TxxampC,need some time to check with family.If he comes back let see.Fresher', 60, '0000-00-00 00:00:00', 1),
(5852, 5836, 59, 3, 0, 'Selected for Syed Team with CTC 192000 includes PF/ESI/PT', 57, '2021-08-11 08:25:42', 1),
(5853, 2352, 59, 3, 0, 'Selected for Guru Team with CTC 198000 includes PF/ESI deductions.Guru reference and manager round has been taken by Syed abthali', 57, '2021-08-11 08:26:41', 1),
(5854, 5840, 59, 3, 0, 'Selected For Guru Team With CTC 192000 Includes PF/ESI Deductions.Guru Reference And Manager Round Has Been Taken By Syed Abthali', 57, '2021-08-11 08:27:23', 1),
(5855, 5835, 41, 5, 0, '2016-2021 - was doing farming very average in communication, can not handle pressure, ver new to sales', 50, '0000-00-00 00:00:00', 1),
(5856, 5834, 41, 5, 0, 'planning to settle in canada by 2022 sep till then looking for job, not a long term employee', 50, '0000-00-00 00:00:00', 1),
(5857, 5852, 73, 5, 0, 'voice Very low and not suitable for this profile.', 60, '0000-00-00 00:00:00', 1),
(5858, 5851, 73, 4, 0, 'move to next round', 60, '0000-00-00 00:00:00', 1),
(5859, 5854, 59, 5, 0, 'Internal REference,Looking for Logistics domain,will not sustain in our field', 60, '0000-00-00 00:00:00', 1),
(5860, 5816, 59, 5, 0, 'No Communication,No basic knowledge ano no stability', 60, '0000-00-00 00:00:00', 1),
(5861, 5847, 59, 5, 0, 'No relevant Exp,looking only for Accounts profile.Will not sustain with is for a long', 60, '0000-00-00 00:00:00', 1),
(5862, 5850, 59, 5, 0, 'Communicaiton Average,she got offer in Axis and in terms of target/presuusre she didnxquott join.Her main focus is into Non Voice only', 60, '0000-00-00 00:00:00', 1),
(5863, 5828, 59, 5, 0, 'Client round rejected', 60, '0000-00-00 00:00:00', 1),
(5864, 5875, 73, 4, 0, 'selected , check joinig date and salary details.', 60, '0000-00-00 00:00:00', 1),
(5865, 5871, 19, 5, 0, 'Sustainability', 60, '0000-00-00 00:00:00', 1),
(5866, 5870, 59, 5, 0, 'Applied for B.E regular post Diploma completion. just for time being looking for opportunities', 60, '0000-00-00 00:00:00', 1),
(5867, 5866, 59, 5, 0, 'Not open up, fresher too long will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(5868, 5823, 59, 5, 0, 'Fresher knowledge ,having basic knowledge in HTML,CSS,JS but not comfort with TxxampC.Requested time to confirm with parents but left without convey', 60, '0000-00-00 00:00:00', 1),
(5869, 5851, 53, 7, 0, 'Sal 10k Pls Cnfrm DOJ', 73, '2021-08-13 01:05:24', 1),
(5870, 5875, 59, 3, 0, 'Selected for Tiruvallur team with cTC 120000 in cash mode', 73, '2021-08-13 01:10:57', 1),
(5871, 5853, 41, 5, 0, 'Looking for accounts and Finance profile job', 50, '0000-00-00 00:00:00', 1),
(5872, 5846, 18, 7, 3, 'Selecetd for hyderabad for 3.4L ctc. Reday to join on monday', 50, '0000-00-00 00:00:00', 1),
(5873, 5849, 40, 8, 0, 'Not attend', 50, '0000-00-00 00:00:00', 1),
(5874, 5846, 59, 3, 0, 'Selected for Hyderabad team with CTC 340000 includes PF/PT', 18, '2021-08-13 04:45:08', 1),
(5875, 5783, 59, 5, 0, 'No Basic knowledge fresher,not open with terms and conditions', 60, '0000-00-00 00:00:00', 1),
(5876, 5857, 59, 5, 0, 'Need time to join post August only she can join,Documents is in the college,need time to confirm with family on txxampC.Hand injury xxamp if she comes back let see', 60, '0000-00-00 00:00:00', 1),
(5877, 5865, 59, 5, 0, 'No communication,not open up will not handle pressure,career Gap not suitable', 60, '0000-00-00 00:00:00', 1),
(5878, 5882, 59, 5, 0, 'No basic knowledge, Not comfortable with terms and conditions. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(5879, 5424, 59, 5, 0, 'She is into ASP.Net with MVC much into webforms. Not suits for our client', 60, '0000-00-00 00:00:00', 1),
(5880, 5887, 20, 4, 0, 'suitable for RE, negotiate salary and shortlist', 60, '0000-00-00 00:00:00', 1),
(5881, 5872, 40, 8, 0, 'not attended the interview', 50, '0000-00-00 00:00:00', 1),
(5882, 5838, 59, 5, 0, 'Frehser and the Salary expectation is min 18K and very stubborn towards the package', 50, '0000-00-00 00:00:00', 1),
(5883, 5807, 59, 5, 0, 'very average communication, No relevant Exp in Recruitment, worked in the manufacturing company. Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(5884, 5894, 73, 5, 0, 'very sensitive person so not suitable for this profile', 50, '0000-00-00 00:00:00', 1),
(5885, 5906, 73, 4, 0, 'profile okay, check sustainabilty ,immediate joining', 50, '0000-00-00 00:00:00', 1),
(5886, 5900, 8, 2, 0, 'till working and looking for job change, has salary issues in previous company, expt is 12k.', 50, '0000-00-00 00:00:00', 1),
(5887, 5842, 8, 2, 0, 'has 6m exp in dot net 2.5l, and 2yr in hcl sys ad 2.3l, expt is 3-3.5l, has around 4yr gap after marriage.', 50, '0000-00-00 00:00:00', 1),
(5888, 5885, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(5889, 5914, 8, 5, 0, 'came with her friend, will not join without him, expt is 12k and not speaking up, will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(5890, 5913, 8, 5, 0, 'came with his girlfriend and will not join without her, expt is 12k. no neck button and prefers backend job.', 7, '0000-00-00 00:00:00', 1),
(5891, 5911, 8, 4, 3, '1yr in railways in contract basis and his father was working in railways, 6m in collections, expt is 16k. check once', 7, '0000-00-00 00:00:00', 1),
(5892, 5909, 8, 2, 0, 'looking for internship in MEARN, fresher and 8m in allsec voice process, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5893, 5901, 8, 4, 0, 'fresher, doing his 6m internship in a company completed 2m along and looking for job. doesnt know any basics and expt is 12k Initially and 15k after 6m. okay with 3yr service agreement. ', 7, '0000-00-00 00:00:00', 1),
(5894, 5881, 8, 4, 0, 'has 8m exp in a company, due to internal politics and no Recognition he relived. was getting 13k and expt is 20-25k. said the ex company treated him as a slave.', 7, '0000-00-00 00:00:00', 1),
(5895, 5906, 53, 7, 0, 'Sal 10k pls cnfrm DOJ', 73, '2021-08-17 03:43:27', 1),
(5896, 5896, 41, 5, 0, 'not interested in life insurance sales', 50, '0000-00-00 00:00:00', 1),
(5897, 5925, 8, 5, 0, 'not speaking up, said very nervous and expt is 10-12k.', 7, '0000-00-00 00:00:00', 1),
(5898, 5924, 8, 4, 0, 'married and 2kind from bangalore after marriage settled in chennai, has 1,5yr in Hyundai in admin 11k, expt the same. due to rotational shift she resigned.', 7, '0000-00-00 00:00:00', 1),
(5899, 5923, 8, 5, 0, 'from krishnagiri, doing his PG in Correspondence so looking for job, no job need, expt is 15k not speaking up, very slow. ', 7, '0000-00-00 00:00:00', 1),
(5900, 5920, 8, 4, 0, 'has 1m in yesbank credit card and 1m in care, good at script, expt is 11k.', 7, '0000-00-00 00:00:00', 1),
(5901, 5919, 8, 5, 0, 'just came with friend for interview and attended, expt is 18k, and no Relevant exp. done her part time job in holiday package.', 7, '0000-00-00 00:00:00', 1),
(5902, 5918, 8, 5, 0, 'not speaking up, has 1m in yes bank credit card. ', 7, '0000-00-00 00:00:00', 1),
(5903, 5113, 8, 5, 0, 'has 3m exp in car showroom, Body Language and way of speaking is not good. ', 7, '0000-00-00 00:00:00', 1),
(5904, 5901, 27, 5, 0, 'No Response.', 8, '2021-08-17 05:43:40', 1),
(5905, 5881, 27, 5, 0, 'No Response.', 8, '2021-08-17 05:45:39', 1),
(5906, 5911, 57, 4, 3, 'candidate is ok kindly negotiate the salary and confirm the joining date..', 8, '2021-08-17 05:54:50', 1),
(5907, 5858, 8, 2, 0, 'Looking For Internship In MEARN, Fresher And 8m In Allsec Voice Process, Expt Is 15k.', 7, '0000-00-00 00:00:00', 1),
(5908, 5924, 53, 5, 0, 'She cant speak tamil fluently', 8, '2021-08-17 06:09:20', 1),
(5909, 5920, 14, 7, 0, 'salary 10k need to check joining date', 8, '2021-08-17 06:11:41', 1),
(5910, 5920, 59, 5, 0, 'Candidate Salary Expectation Is Very High. Being A Fresher Take Home Expectation Is Around 12-13K For Elite.Will not sustain for a long', 14, '2021-08-18 10:34:27', 1),
(5911, 5842, 8, 5, 0, 'salary expt is high', 8, '2021-08-18 11:23:57', 1),
(5912, 5926, 27, 2, 0, 'Task Given', 50, '0000-00-00 00:00:00', 1),
(5913, 5843, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5914, 5861, 8, 4, 0, 'has 6m exp as interen with 18k, holds an offer with 20% hike and expt the same.', 7, '0000-00-00 00:00:00', 1),
(5915, 5929, 8, 2, 0, 'has to discuss with parents regarding service agreement.', 7, '0000-00-00 00:00:00', 1),
(5916, 5911, 59, 5, 0, 'Salary Exp is very high and no relevant sales Exp', 57, '2021-08-18 02:44:03', 1),
(5917, 5931, 8, 5, 0, 'will not suite for calling, no flow and not speaking up and no language and expt is 15k. ', 7, '0000-00-00 00:00:00', 1),
(5918, 5930, 8, 5, 0, 'will not suite for calling, not speaking up and expt is 12k.', 7, '0000-00-00 00:00:00', 1),
(5919, 5879, 8, 2, 0, 'left before 2nd round', 7, '0000-00-00 00:00:00', 1),
(5920, 5898, 73, 4, 0, 'check Sustainability.', 60, '0000-00-00 00:00:00', 1),
(5921, 5910, 73, 4, 0, 'check joining date and salary confirmation', 60, '0000-00-00 00:00:00', 1),
(5922, 5861, 69, 5, 0, 'Task given was not completed up to our satisfaction.', 8, '2021-08-18 06:03:30', 1),
(5923, 5929, 8, 2, 0, 'has to discuss with his parents regarding service agreement.', 8, '2021-08-18 06:10:35', 1),
(5924, 5922, 8, 5, 0, 'no Focus towards his Career and no idea about it, will not sustain, ', 50, '0000-00-00 00:00:00', 1),
(5925, 5937, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5926, 5941, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5927, 5892, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(5928, 5932, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5929, 5934, 27, 2, 0, 'Task Given.', 50, '0000-00-00 00:00:00', 1),
(5930, 5906, 59, 3, 0, 'Selected for Tiruvallur with CTC 120000 in cash mode', 53, '2021-08-19 09:57:25', 1),
(5931, 5851, 59, 3, 0, 'Selected for Tiruvallur team with CTC 120000 in cash mode', 53, '2021-08-19 09:58:51', 1),
(5932, 5773, 59, 3, 0, 'Selected for Tiruvallur Team with CTC 120000 Cash mode', 53, '2021-08-19 09:59:06', 1),
(5933, 5927, 8, 5, 2, 'has 1yr exp in calling 12k, expt is 15k, done 3m online internship, has family commitment and expt is 15k, has to discuss about service agreement with parents.', 50, '0000-00-00 00:00:00', 1),
(5934, 5944, 8, 5, 0, 'Has 1yr Exp In Calling 12k, Expt Is 15k Has Family Commitment And Expt Is 13-15k, Has To Discuss About Service Agreement With Parents.', 50, '0000-00-00 00:00:00', 1),
(5935, 5898, 53, 7, 0, 'Selected. Pls cnfrm the joining', 73, '2021-08-19 03:04:39', 1),
(5936, 5910, 53, 7, 0, 'Sal 10k pls cnfrm joining', 73, '2021-08-19 03:06:18', 1),
(5937, 5890, 73, 7, 0, 'selected', 60, '0000-00-00 00:00:00', 1),
(5938, 5945, 73, 5, 0, 'expectation salary high and he is searching job for foreign .', 60, '0000-00-00 00:00:00', 1),
(5939, 5951, 8, 4, 3, 'brother of priyanka jenit, he prepared for interview,fresher and okay with calling, expt is 14-15k, has 2w and previously helping his father biz.', 7, '0000-00-00 00:00:00', 1),
(5940, 5951, 24, 7, 0, 'SELECTED', 8, '2021-08-19 04:32:35', 1),
(5941, 5879, 8, 5, 0, 'not interested in the profile.', 8, '2021-08-19 04:33:27', 1),
(5942, 5936, 40, 4, 3, 'Salary expectation is high and fresher otherwise the profile if good to consider.', 50, '0000-00-00 00:00:00', 1),
(5943, 5910, 59, 3, 0, 'selected for Tiruvallur team with CTC 120000 Cash mode', 53, '2021-08-19 04:44:27', 1),
(5944, 5898, 59, 3, 0, 'Selected for Tiruvallur - Cash Mode', 53, '2021-08-19 05:48:49', 1),
(5945, 5968, 8, 5, 0, 'will not suite for sales profile, past 2yr he was ideal and earning through rental shops, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(5946, 5967, 8, 5, 0, 'no flow in speech, will not suite for calling, from chengalpet too long', 7, '0000-00-00 00:00:00', 1),
(5947, 5965, 8, 4, 0, 'very native language, has calling and collection exp, has 2w and laptop, last ctc is 18k and expt 15k th(nego)', 7, '0000-00-00 00:00:00', 1),
(5948, 5964, 8, 2, 0, 'not speaking up, very nervous and said 1st interview, told him to come back on monday.', 7, '0000-00-00 00:00:00', 1),
(5949, 5963, 8, 5, 0, 'no clarity in speech, expt sal is also high.', 7, '0000-00-00 00:00:00', 1),
(5950, 5960, 8, 5, 0, 'has 5yr exp in ngo into teaching, will not handle pressure and expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5951, 5957, 8, 4, 0, 'in need of job, no Relevant exp, knows basics in .net, okay with 10k. stammering to speak.', 7, '0000-00-00 00:00:00', 1),
(5952, 5952, 8, 4, 0, 'check over the call, knows basics in .net but expt is 15k during training. has to relocate from sivakasi.', 7, '0000-00-00 00:00:00', 1),
(5953, 5950, 8, 4, 0, 'has 3m internship exp, looking for internship, willing to learn, okay with our terms and conditions.', 7, '0000-00-00 00:00:00', 1),
(5954, 5943, 8, 8, 0, 'applied twice ', 7, '0000-00-00 00:00:00', 1),
(5955, 5862, 8, 5, 0, 'fresher, doesnt know html and css, no working exp, done designing course and expt is 20k.', 7, '0000-00-00 00:00:00', 1),
(5956, 5965, 20, 4, 4, 'selected for kannan team', 8, '2021-08-20 01:26:17', 1),
(5957, 5957, 59, 2, 0, 'Scheduled for client round - (Candidate Have Basic Knowledge And Exp In .Net, Also He Is In Training For REact JS Can Give A Try.But The Salary Expectation Is High.Need Some Time To Give Confirmation On The Position)\n', 8, '2021-08-20 01:31:13', 1),
(5958, 5883, 8, 5, 0, 'has 3m training and 2m exp in designing, doesnt know html and css, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(5959, 5950, 54, 1, 0, NULL, 8, '2021-08-20 05:41:54', 1),
(5960, 5952, 59, 5, 0, 'Not much clear into Dotnet. already she received an offer for 8K in native and her expectation seems to very high.Sustainability doubts', 8, '2021-08-20 05:44:17', 1),
(5961, 5970, 8, 4, 0, 'has 1yr exp in real estate, high job need okay with 10k. expt is 10.5k. ', 7, '0000-00-00 00:00:00', 1),
(5962, 5971, 8, 4, 0, 'fresher, staying with friend she selected for muthu team, okay with 10k, check with sustainability once.', 7, '0000-00-00 00:00:00', 1),
(5963, 5972, 8, 4, 0, 'very confident while speaking, okay with 10k.', 7, '0000-00-00 00:00:00', 1),
(5964, 5973, 8, 4, 3, 'has exp in trading and insurance, lctc is 20k and expt the same, job need, married and 2kids, has calling pitch.', 7, '0000-00-00 00:00:00', 1),
(5965, 5969, 8, 5, 0, 'will not suite for calling, no flow in speech, fresher.', 7, '0000-00-00 00:00:00', 1),
(5966, 5959, 8, 4, 0, 'check for internship, willing to learn, already working in sony 1.5l.', 7, '0000-00-00 00:00:00', 1),
(5967, 5958, 8, 4, 0, 'check for ui/ux, he is not sure about his profile and due to long distance relived from last company, already joined here for HR and left next day due to personal issues.', 7, '0000-00-00 00:00:00', 1),
(5968, 5873, 8, 4, 0, 'fresher, no basic knowledge in coding, high job need, willing to learn, looking for internship.', 7, '0000-00-00 00:00:00', 1),
(5969, 5974, 8, 5, 0, 'looking for job in accounts, has 6m exp with acc. 15k will not suite for sales', 7, '0000-00-00 00:00:00', 1),
(5970, 5973, 31, 4, 4, 'recommended for 2nd round with gaurav', 8, '2021-08-21 06:27:22', 1),
(5971, 5972, 14, 7, 0, 'Salary 10k confirm joining date', 8, '2021-08-21 06:28:01', 1),
(5972, 5970, 13, 7, 4, 'salary 10.5k', 8, '2021-08-21 06:29:08', 1),
(5973, 5971, 14, 7, 0, 'salary 10k confirm joining date', 8, '2021-08-21 06:30:16', 1),
(5974, 5959, 54, 1, 0, NULL, 8, '2021-08-21 06:32:05', 1),
(5975, 5958, 69, 5, 0, 'Less knowledge about UI/UX', 8, '2021-08-21 06:33:53', 1),
(5976, 5873, 54, 1, 0, NULL, 8, '2021-08-21 06:35:03', 1),
(5977, 5936, 18, 8, 0, 'Not Attended', 40, '2021-08-23 11:01:24', 1),
(5978, 5965, 19, 7, 4, 'FRESHER FOR THIS FIELD', 20, '2021-08-23 04:52:52', 1),
(5979, 5982, 8, 4, 0, 'already worked in our company for 8m and looking after his mother biz for past 2 years and working as channel partner in a real Estate company. expt is 18k for rE. kindly check and revert', 7, '0000-00-00 00:00:00', 1),
(5980, 5955, 8, 5, 0, 'will not suite for our profile, not clear about his Career and has to discuss with parents regarding agreement ', 7, '0000-00-00 00:00:00', 1),
(5981, 5917, 8, 4, 0, 'no basics in designing, was working in epub company, expt is 15k, check with his skills', 7, '0000-00-00 00:00:00', 1),
(5982, 5887, 59, 5, 0, 'Requested candidate to share the previous company documents What he has, but didnt turn back and no relevant Exp in sales', 20, '2021-08-23 04:53:31', 1),
(5983, 5951, 59, 3, 0, 'Selected for Suthagar team with CTC 156000 includes PF/ESI/PT', 24, '2021-08-23 04:54:34', 1),
(5984, 5977, 8, 8, 0, 'she doesnt have whats app and i have shared the link through normal sms twice and waiting her to connect more than 15mins. no response.', 7, '0000-00-00 00:00:00', 1),
(5985, 5965, 59, 3, 0, 'Selected for Kannan Team with CTC 192000 includes PF/ESI/PT', 19, '2021-08-23 06:46:22', 1),
(5986, 5982, 17, 4, 4, 'Finalize salary and joining date', 8, '2021-08-24 09:52:23', 1),
(5987, 5917, 27, 5, 0, 'No Response.', 8, '2021-08-24 09:56:37', 1),
(5988, 5984, 8, 8, 0, 'No Response', 50, '0000-00-00 00:00:00', 1),
(5989, 5978, 8, 5, 0, 'already attened interview here for .net and Attend interview in nalm client company and got rejected. ', 50, '0000-00-00 00:00:00', 1),
(5990, 5992, 8, 5, 0, 'was in loan and multiple bank backend process, will not suite for sales, not speaking up', 7, '0000-00-00 00:00:00', 1),
(5991, 5989, 8, 5, 0, 'was doing his part time like promoting ads, no basic skills.', 7, '0000-00-00 00:00:00', 1),
(5992, 5988, 8, 4, 0, 'okay with calling and convincing, check for re and expt is 14-15k', 7, '0000-00-00 00:00:00', 1),
(5993, 5987, 8, 5, 0, 'not speaking up, will not suite for sales calling.', 7, '0000-00-00 00:00:00', 1),
(5994, 5986, 8, 4, 0, 'okay with calling, 21 and married, okay with 1yr agreement. check with sustainability. expt sal 9-11k', 7, '0000-00-00 00:00:00', 1),
(5995, 5995, 8, 5, 0, '20days as collection exe, will not sustain, can work for 6m. expt 15k', 7, '0000-00-00 00:00:00', 1),
(5996, 5983, 8, 2, 0, 'has to discuss terms with parents and get back', 7, '0000-00-00 00:00:00', 1),
(5997, 5981, 8, 2, 0, 'has to discuss the terms with parents and get back.', 7, '0000-00-00 00:00:00', 1),
(5998, 5991, 8, 5, 0, 'comm is below avg, can cut copy the blogs and worked as part timer and looking for job in DM.', 50, '0000-00-00 00:00:00', 1),
(5999, 5993, 8, 5, 0, 'Preferred job in Accounts, got a mail from naukri and just came to attend interview. as fresher expt is 15k.', 50, '0000-00-00 00:00:00', 1),
(6000, 5844, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6001, 6002, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6002, 5948, 8, 4, 0, 'check for .net skills', 7, '0000-00-00 00:00:00', 1),
(6003, 5890, 59, 3, 0, 'Selected for Tiruvallur with CTC 120000 Cash mode\n', 73, '2021-08-25 11:45:15', 1),
(6004, 5986, 14, 7, 0, 'Salary 10 to 11k confirm joining date', 8, '2021-08-25 12:05:03', 1),
(6005, 5982, 59, 3, 0, 'Selected for Arumbakkam with CTC 192000 includes PF/ESI/PT', 17, '2021-08-25 12:30:53', 1),
(6006, 6025, 8, 4, 0, 'has calling exp, job need, from nagapattinam will relocate to chennai, father is a driver.', 7, '0000-00-00 00:00:00', 1),
(6007, 5973, 29, 7, 3, 'GK team as RM', 31, '2021-08-25 03:29:17', 1),
(6008, 6031, 8, 4, 3, 'was running dance class for past 2yrs closed due to covid, was teaching primary school std., expt 15k, mom working in high court and father is a supervisor.', 7, '0000-00-00 00:00:00', 1),
(6009, 6030, 8, 5, 0, 'no clarity in speech, no degree 4times drop out, 5050', 7, '0000-00-00 00:00:00', 1),
(6010, 6027, 8, 5, 0, 'lang is not good, has 6m exp in credit card collection, will not suite for our process', 7, '0000-00-00 00:00:00', 1),
(6011, 6024, 8, 4, 0, 'has 1yr exp in calling and not into sales, job need, expt is 11k. speaking her script clearly.', 7, '0000-00-00 00:00:00', 1),
(6012, 6023, 8, 8, 0, 'not attended', 7, '0000-00-00 00:00:00', 1),
(6013, 6022, 8, 5, 0, 'planning do higher studies will not sustain.', 7, '0000-00-00 00:00:00', 1),
(6014, 6020, 8, 7, 0, 'kindly confirm doj and salary', 7, '0000-00-00 00:00:00', 1),
(6015, 6014, 8, 4, 0, 'well settled family, only daughter, expt 20k', 7, '0000-00-00 00:00:00', 1),
(6016, 6012, 8, 5, 0, 'will not handle pressure, fresher and not speaking up', 7, '0000-00-00 00:00:00', 1),
(6017, 6011, 8, 5, 0, 'has 4m exp in operation (bank), couldnt handle pressure and 28k ctc, expt is 20k.', 7, '0000-00-00 00:00:00', 1),
(6018, 6008, 8, 5, 0, 'not speaking up, will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(6019, 6031, 24, 7, 0, 'selected 13k salary', 8, '2021-08-25 10:21:02', 1),
(6020, 6024, 13, 7, 4, 'Selected (salary 10 or 10.5k ah nu mattum konjam Check pannikonga) Monday joining', 8, '2021-08-25 10:24:14', 1),
(6021, 6020, 31, 4, 4, 'Candidate okay 2nd round with gaurav', 8, '2021-08-25 10:26:24', 1),
(6022, 6006, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6023, 6018, 8, 5, 0, 'will not sustain, prefer non voice', 50, '0000-00-00 00:00:00', 1),
(6024, 6037, 8, 4, 0, 'check with skills, has 1yr and6m Internship exp. in seo/smo. willing to learn, married jan 2021 and father is a CID. ', 50, '0000-00-00 00:00:00', 1),
(6025, 5806, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6026, 6020, 29, 7, 2, 'gk team', 31, '2021-08-26 11:18:54', 1),
(6027, 5973, 59, 3, 0, 'Selected for GK Sir Team,2.7 LPA have been finalised after discussion with Gaurav sir on the Target given and salry hike post the completion of Target 2L in 2 month will be 25K in the candidate CTC from 3rd month', 29, '2021-08-26 11:19:30', 1),
(6028, 6020, 8, 7, 0, 'kindly confirm doj and salary', 29, '2021-08-26 11:27:15', 1),
(6029, 6043, 8, 4, 0, 'fresher, okay for calling we can train, interested in sales profile, will arrange 2w,', 7, '0000-00-00 00:00:00', 1),
(6030, 6043, 20, 7, 0, 'Kindly shortlist for joining and pay a salary of 14k as monthly CTC', 8, '2021-08-26 11:37:57', 1),
(6031, 6041, 8, 4, 0, 'fresher, good in communication and convincing, okay with company norms. ', 7, '0000-00-00 00:00:00', 1),
(6032, 6041, 31, 5, 0, 'not suitable for RM Profile', 8, '2021-08-26 11:41:51', 1),
(6033, 6043, 59, 3, 0, 'Selected for Srikanth team with CTC 156000 includes PF/ESI/PT', 20, '2021-08-26 11:46:34', 1),
(6034, 6047, 8, 4, 3, 'fresher for sales, has 6m calling exp 16k, expt is 16k or 16k+, from kanyakumari staying with cousin and father in UAE.', 7, '0000-00-00 00:00:00', 1),
(6035, 6047, 19, 7, 4, 'next round', 8, '2021-08-26 01:34:13', 1),
(6036, 6048, 8, 4, 0, 'check for collection exe, okay with10k and cross check sustainability', 7, '0000-00-00 00:00:00', 1),
(6037, 6052, 8, 5, 0, 'will not sustain and prefer non voice', 7, '0000-00-00 00:00:00', 1),
(6038, 6049, 8, 5, 0, 'too long, was doing part time job in dominos 6k, expt 12k and voice is very low', 7, '0000-00-00 00:00:00', 1),
(6039, 6045, 8, 5, 0, 'will not handle sales pressure, has admin exp, was asking about target and job with out target', 7, '0000-00-00 00:00:00', 1),
(6040, 6044, 8, 5, 0, 'no pronunciation, very native slang. will not suite for health calling', 7, '0000-00-00 00:00:00', 1),
(6041, 6042, 8, 5, 0, 'fresher, not speaking up, will not suite for calling, expt is 14k', 7, '0000-00-00 00:00:00', 1),
(6042, 6039, 8, 5, 0, 'fresher, expt is 3-4l. good in communication alone. planning to settle in singapore', 7, '0000-00-00 00:00:00', 1),
(6043, 6038, 8, 5, 0, 'fresher, dont know basics in .net, expt is 12k', 7, '0000-00-00 00:00:00', 1),
(6044, 6028, 8, 5, 0, 'very poor Performance, pursuing mba in annamalai and he need more training and no acceptance.but okay with all terms and conditions. ', 7, '0000-00-00 00:00:00', 1),
(6045, 6001, 8, 2, 0, 'has to check with gokul', 7, '0000-00-00 00:00:00', 1),
(6046, 5998, 8, 5, 0, 'worst Performance, will not suite for any job. attitude was too bad.', 7, '0000-00-00 00:00:00', 1),
(6047, 6047, 59, 5, 0, 'He is not open to work on Saturdays and his cTC Expectation is very high. Min Expectation is around 16K as TH', 19, '2021-08-26 01:52:32', 1),
(6048, 6037, 69, 5, 0, 'task plagarised ', 8, '2021-08-26 01:59:28', 1),
(6049, 6007, 8, 5, 0, '2m internship in IIT at admin dept with 15k, not interested in core job, communication is good but expt is 15k+ fresher for us.', 50, '0000-00-00 00:00:00', 1),
(6050, 6048, 35, 7, 0, 'he wonxquott accept 1 yr Bond, if its 6 month he will be join after discussion with Family', 8, '2021-08-26 03:42:15', 1),
(6051, 6048, 60, 1, 0, NULL, 35, '2021-08-26 05:01:37', 1),
(6052, 5948, 59, 5, 0, 'Client Round Reject', 8, '2021-08-26 06:56:02', 1),
(6053, 6025, 13, 7, 4, 'ok (10k Salary Monday Joining)', 8, '2021-08-26 06:57:22', 1),
(6054, 6014, 72, 1, 0, NULL, 8, '2021-08-26 07:01:36', 1),
(6055, 5988, 24, 7, 0, 'candiate selected but some personal reason he want joining date sep month.', 8, '2021-08-26 07:12:49', 1),
(6056, 6020, 59, 3, 0, 'Selected for GK sir Team with PF/ESI/PT', 8, '2021-08-26 07:17:41', 1),
(6057, 5964, 8, 5, 0, 'no response', 8, '2021-08-26 07:18:20', 1),
(6058, 6060, 73, 4, 0, 'selected for next round check sustainability', 50, '0000-00-00 00:00:00', 1),
(6059, 5985, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6060, 6051, 27, 5, 0, 'Task not upto the level.', 50, '0000-00-00 00:00:00', 1),
(6061, 5608, 8, 4, 0, 'check for client company, knows basics and okay with term', 50, '0000-00-00 00:00:00', 1),
(6062, 6054, 56, 4, 0, 'sELECTED for next round', 50, '0000-00-00 00:00:00', 1),
(6063, 6061, 8, 4, 0, 'done 6m course in DM and has exp in dmat, his last ctc is 29k and okay with our term.', 50, '0000-00-00 00:00:00', 1),
(6064, 5583, 8, 5, 0, 'no basic skills in lang', 50, '0000-00-00 00:00:00', 1),
(6065, 6059, 8, 4, 0, 'has 1.5yr exp in sutherland, expt 2-3l and knows basics in lang, okay with our tearms', 50, '0000-00-00 00:00:00', 1),
(6066, 6074, 8, 2, 0, 'expt 18k take home. i said 15-16th. has 4yr calling exp but not into insurance.', 50, '0000-00-00 00:00:00', 1),
(6067, 5972, 59, 5, 0, 'Last week spoke and confirmed the CTC. She requested time for joining.28/Aug Tried reaching to confirm again and received a message stating that not interested and she got selected in a Company through campus drive', 14, '2021-08-27 12:12:41', 1),
(6068, 5986, 59, 3, 0, 'selected for Priyanka Team with PF/PT/ESI', 14, '2021-08-27 12:13:26', 1),
(6069, 5971, 59, 3, 0, 'Selected for Muthu cash mode', 14, '2021-08-27 12:16:39', 1),
(6070, 6054, 30, 7, 3, 'candidate expecting 20 to 22% hike from last salary. we can give max 3.3lac . confirm xxamp update me', 56, '2021-08-27 01:21:07', 1),
(6071, 6084, 8, 4, 0, 'has 4m exp in calling, high job need, okay with 10k. clear with his script.', 50, '0000-00-00 00:00:00', 1),
(6072, 6060, 53, 7, 0, 'selected 10k salary and kindly confirm salary and DOJ on monday', 73, '2021-08-27 03:38:35', 1),
(6073, 6077, 8, 5, 0, '1m in collection, will not sustain expt 10-11k', 7, '0000-00-00 00:00:00', 1),
(6074, 6075, 8, 5, 0, 'expt 4l, no relevant exp, no sales skills and convincing.', 7, '0000-00-00 00:00:00', 1),
(6075, 6068, 8, 5, 0, 'not speaking up, prefer acc job, expr 12-15k', 7, '0000-00-00 00:00:00', 1),
(6076, 6069, 8, 5, 0, 'no local language, eng below avg.', 7, '0000-00-00 00:00:00', 1),
(6077, 6066, 8, 5, 0, 'very childish and 18. will not suit for calling', 7, '0000-00-00 00:00:00', 1),
(6078, 6010, 8, 2, 0, 'has to learn the Basics and will come for technical. ', 7, '0000-00-00 00:00:00', 1),
(6079, 6060, 59, 3, 0, 'selected for Tiruvallur in cash mode', 53, '2021-08-27 04:57:29', 1),
(6080, 5608, 59, 2, 0, 'Fresher,5050 can give a try for Dotnet winform', 8, '2021-08-27 06:32:31', 1),
(6081, 6061, 69, 5, 0, 'Plagarised task', 8, '2021-08-27 06:33:40', 1),
(6082, 6059, 54, 1, 0, NULL, 8, '2021-08-27 06:36:17', 1),
(6083, 5929, 8, 5, 0, 'no response', 8, '2021-08-28 09:55:52', 1),
(6084, 5699, 59, 5, 0, 'No Responses from the candidate for a long and we dropped', 8, '2021-08-28 09:57:50', 1),
(6085, 4738, 59, 5, 0, 'We offered him the package of 23K gross,but he didnt responds and not joinied', 8, '2021-08-28 09:58:17', 1),
(6086, 4644, 59, 3, 0, 'Selected for Tiruvallur in Cash mode', 8, '2021-08-28 09:59:07', 1),
(6087, 4630, 59, 3, 0, 'Selected for Tiruvallur Location with TH 10K', 8, '2021-08-28 09:59:25', 1),
(6088, 4629, 59, 3, 0, 'Selected for Tiruvallur in cash mode', 8, '2021-08-28 09:59:41', 1),
(6089, 4352, 59, 5, 0, 'We hold the candidate 4 months back for suthagar team and now there is no response from the candidate. Tried reaching him couple of time.', 8, '2021-08-28 09:59:59', 1),
(6090, 4357, 59, 5, 0, 'sustainability doubts dropped ', 8, '2021-08-28 10:01:23', 1),
(6091, 6031, 59, 3, 0, 'selected for Suthagar team with PF/ESI/PT', 24, '2021-08-28 10:18:30', 1),
(6092, 5988, 59, 3, 0, 'Selected for Suthagar team with PF/ESI/PT deductions', 24, '2021-08-28 10:21:54', 1),
(6093, 6092, 73, 4, 0, 'selected confirm joining date xxamp check pronounciation.', 50, '0000-00-00 00:00:00', 1),
(6094, 6092, 53, 7, 0, 'selected sal 10k, DOJ 30 aug 21', 73, '2021-08-28 10:53:17', 1),
(6095, 6025, 59, 3, 0, 'Selected for Muthu with PF/ESI/PT', 13, '2021-08-28 11:41:51', 1),
(6096, 6093, 8, 5, 0, 'not speaking up, will not suite for calling. pronunciation is not clear.', 7, '0000-00-00 00:00:00', 1),
(6097, 6091, 8, 5, 0, 'not speaking up very low voice, will not suite for calling', 7, '0000-00-00 00:00:00', 1),
(6098, 6083, 8, 4, 0, 'friend of babu, done 6m course in digi Perform and okay with out Terms and will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6099, 6065, 8, 5, 0, 'shared profile with george, no knowledge in java script.', 7, '0000-00-00 00:00:00', 1),
(6100, 6094, 8, 4, 3, 'fresher for sales, has 1yr exp in backend data entry, 4m in calling, no degree expt is 12k.', 7, '0000-00-00 00:00:00', 1),
(6101, 6024, 59, 3, 0, 'Slected for Muthu with PF/ESI/Pt', 13, '2021-08-28 11:52:56', 1),
(6102, 6080, 73, 4, 0, 'selected check joining date ', 50, '0000-00-00 00:00:00', 1),
(6103, 6080, 53, 7, 0, 'selected 10k, DOJ 30 aug 21', 73, '2021-08-28 12:31:38', 1),
(6104, 6094, 34, 7, 4, 'selected he is ready to join from monday', 8, '2021-08-28 01:25:49', 1),
(6105, 6099, 8, 5, 0, 'not speaking up, from enore and expt is 15k', 7, '0000-00-00 00:00:00', 1),
(6106, 6098, 8, 5, 0, 'high job need, avg communication and expt is 11k-12k. no father and mom daily wages.', 7, '0000-00-00 00:00:00', 1),
(6107, 6097, 8, 5, 0, 'not speaking up, will not suite for calling, job need.', 7, '0000-00-00 00:00:00', 1),
(6108, 6090, 8, 5, 0, 'not speaking up, will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(6109, 6084, 14, 7, 0, 'Salary 10k need to confirm joining date', 8, '2021-08-28 01:37:28', 1),
(6110, 6084, 59, 3, 0, 'Selected for Priyanka Team in Cash mode. No Laptop ', 14, '2021-08-28 02:23:59', 1),
(6111, 6094, 59, 5, 0, 'No Relevant Exp In Sales,This Is The First Interview In Sales Profile.Yet To Complete His 12th Std, Career Gap,Having Only BPo Healthcare Exp .Sustainability xxamp Pressure Handling Doubt For This Profile.Discussed with Sir and cross checked with the candidate for collection cum sales,but candidate was not interested towards this role', 34, '2021-08-28 03:40:36', 1),
(6112, 6080, 59, 3, 0, 'Selected for Tiruvallur in cash mode tH 9500.Candidate seems 50/50 ', 53, '2021-08-28 03:46:25', 1),
(6113, 6092, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode TH 9500', 53, '2021-08-28 03:46:51', 1),
(6114, 6083, 69, 5, 0, 'plagarised task', 8, '2021-08-28 05:00:05', 1),
(6115, 5668, 8, 5, 0, 'skill set doesnt match', 7, '0000-00-00 00:00:00', 1),
(6116, 5935, 8, 5, 0, 'he is a graphics designer, doesnt know html css, will not suite for us.', 7, '0000-00-00 00:00:00', 1),
(6117, 5315, 27, 5, 0, 'No Response.', 8, '2021-08-28 06:40:47', 1),
(6118, 6082, 8, 4, 0, 'looking for job, done 4m course in digi Perform and expt is 15k, father and brother into family biz, very Lethargic. ', 50, '0000-00-00 00:00:00', 1),
(6119, 5997, 8, 4, 0, 'looking for internship, below ag communication, cousin sis is working in DM so he got interested. okay with terms and expt is 15k.', 50, '0000-00-00 00:00:00', 1),
(6120, 3483, 27, 5, 0, 'not joined', 27, '2021-08-30 10:26:11', 1),
(6121, 5997, 69, 5, 0, 'Plagiarism in task', 8, '2021-08-30 10:30:47', 1),
(6122, 6082, 69, 5, 0, 'Candidate interned for a day and quit', 8, '2021-08-30 10:32:18', 1),
(6123, 4180, 27, 5, 0, 'Task not Completed', 27, '2021-08-30 10:33:41', 1),
(6124, 4990, 27, 5, 0, 'task not Completed', 27, '2021-08-30 10:34:36', 1),
(6125, 4951, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:35:07', 1),
(6126, 5003, 64, 1, 0, NULL, 27, '2021-08-30 10:36:37', 1),
(6127, 5003, 27, 4, 0, 'Task Was Completed', 27, '2021-08-30 10:36:37', 1),
(6128, 5019, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:39:00', 1),
(6129, 5023, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:39:13', 1),
(6130, 5029, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:47:43', 1),
(6131, 5034, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:48:03', 1),
(6132, 5037, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:49:57', 1),
(6133, 5040, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:50:52', 1),
(6134, 5042, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:51:39', 1),
(6135, 5050, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:52:29', 1),
(6136, 5051, 27, 8, 0, 'Task Not Completed', 27, '2021-08-30 10:52:55', 1),
(6137, 5754, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:53:45', 1),
(6138, 5756, 64, 1, 0, NULL, 27, '2021-08-30 10:56:18', 1),
(6139, 5756, 27, 4, 0, 'Task was Completed', 27, '2021-08-30 10:56:18', 1),
(6140, 5843, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:56:51', 1),
(6141, 5926, 27, 8, 0, 'Task Not Completed', 27, '2021-08-30 10:58:07', 1),
(6142, 5932, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:58:24', 1),
(6143, 5934, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 10:59:45', 1),
(6144, 5937, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 11:00:10', 1),
(6145, 5941, 27, 5, 0, 'Task Not Completed', 27, '2021-08-30 11:01:12', 1),
(6146, 6036, 8, 5, 0, 'no basics skills and rejected by george.', 50, '0000-00-00 00:00:00', 1),
(6147, 6109, 8, 5, 0, 'has 2yr exp in manapuram gold loan 18k, target based salary, Resigned and looking for job. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(6148, 6108, 8, 5, 0, 'not speaking up, doing her own biz reselling. job need but will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(6149, 6107, 8, 4, 0, '2m exp in calling, fresher for us, father is a driver, expt 10-11k.', 7, '0000-00-00 00:00:00', 1),
(6150, 6107, 73, 4, 0, 'check sustainability xxamp Pressure handling.', 8, '2021-08-30 02:46:32', 1),
(6151, 6032, 8, 5, 0, 'fresher and very slow, rejected in technical round', 7, '0000-00-00 00:00:00', 1),
(6152, 6116, 8, 5, 0, 'will not suite for HR profile, below avg communication, for interview she learned few topics about HR, no Acceptance.', 7, '0000-00-00 00:00:00', 1),
(6153, 6111, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6154, 6107, 14, 7, 0, 'salary 10k need to confirm joining date', 73, '2021-08-31 12:02:33', 1),
(6155, 5999, 8, 5, 0, 'still working in css corp 2l ctc, looking for career change, expt is 3-4l.has to discuss about the document submission and service agreement with parents.', 50, '0000-00-00 00:00:00', 1),
(6156, 6004, 8, 5, 0, 'will not suite for us, pursuing his degree in Journalism and interested in cine field.', 50, '0000-00-00 00:00:00', 1),
(6157, 6118, 8, 5, 0, 'known only UX, no basic knowledge in html/css, expt is 30k.', 50, '0000-00-00 00:00:00', 1),
(6158, 6055, 8, 4, 0, 'stammering to speak and seems like Mentally unstable. do check that once, okay with company terms.', 50, '0000-00-00 00:00:00', 1),
(6159, 6127, 8, 5, 0, 'from Redhills will not sustain. expt 10k', 7, '0000-00-00 00:00:00', 1),
(6160, 6126, 8, 5, 0, 'not speaking up. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(6161, 6125, 8, 2, 0, 'sal expt is 15k, fresher for us but has 3.9m exp in credit card sales. ', 7, '0000-00-00 00:00:00', 1),
(6162, 6120, 8, 5, 0, 'came along with his friend tharick, he was not selected so he is not interested.', 7, '0000-00-00 00:00:00', 1),
(6163, 6110, 8, 5, 0, 'has 2yr exp in AMC 13k, expt is 16k. no Calling and sales exp.', 7, '0000-00-00 00:00:00', 1),
(6164, 6055, 69, 5, 0, 'not good with terms', 8, '2021-08-31 03:08:10', 1),
(6165, 6104, 73, 4, 0, 'selected but check sustainability ', 50, '0000-00-00 00:00:00', 1),
(6166, 6105, 8, 4, 2, 'has 3yr exp in health and general insurance 14k. 3 yr in acc as part timer during clg, good in health script. expt 15k. married 2021 may. ', 7, '0000-00-00 00:00:00', 1),
(6167, 6105, 53, 7, 0, 'selected hvng 3yrs exp in same field. we can provide her last sal 14k TH', 8, '2021-09-01 12:22:59', 1),
(6168, 6016, 8, 4, 0, 'already shortlisted by dhanalakshmi and priyanka. due to salary issue not joined. ', 7, '0000-00-00 00:00:00', 1),
(6169, 6016, 53, 7, 0, 'sal 11k ctc selected fr thiruvallur', 8, '2021-09-01 12:32:52', 1),
(6170, 6105, 59, 5, 0, 'Not responding to the calls. Even we tried reaching her on 07-Sep-2021.Earlier we Discussed With Her The Salary, Also She Looks For PF/ESI Benefits Too. The Candidate Will Share The Offer Letter And The Other Documents Today. I Will Confirm The Same ASAP Once Received From The Candidate', 53, '2021-09-01 12:42:14', 1),
(6171, 6016, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode', 53, '2021-09-01 12:42:42', 1),
(6172, 6107, 59, 5, 0, 'Not comfortable with the salary what we offered being a fresher.Expecation is high than the 10.5 we offered. Not responding to the calls properly.Will not sustain for a long.', 14, '2021-09-01 02:57:43', 1),
(6173, 6145, 8, 5, 0, 'will not suite for our process, came with 3 friends will not sustain. 2m in Matrimoni calling ', 7, '0000-00-00 00:00:00', 1),
(6174, 6143, 8, 5, 0, 'Will Not Suite For Our Process, Came With 3 Friends Will Not Sustain. 1m In Matrimoni Calling ', 7, '0000-00-00 00:00:00', 1),
(6175, 6142, 8, 5, 0, 'Will Not Suite For Our Process, Came With 3 Friends Will Not Sustain. 2m In Matrimoni Calling and 2ys in chennai Corporation 15k.', 7, '0000-00-00 00:00:00', 1),
(6176, 6141, 8, 5, 0, 'not speaking up. native slang and lot of gap while speaking.', 7, '0000-00-00 00:00:00', 1),
(6177, 6140, 8, 4, 0, 'kindly confirm salary and DOJ', 7, '0000-00-00 00:00:00', 1),
(6178, 6138, 8, 4, 0, 'fresher for us, 2m calling exp and 1.2yr in gym as manager, was doing his own biz, check with sustainability and learning.', 7, '0000-00-00 00:00:00', 1),
(6179, 6136, 8, 5, 0, 'very childish will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6180, 6129, 8, 5, 0, 'fresher for developing, married and has 2 yr kid, expt is 20k and was asking for shift timing. will not suite for us.', 7, '0000-00-00 00:00:00', 1),
(6181, 6114, 8, 5, 0, 'was working in photo studio fir 5yrs 20k, no payslips, know only Photoshop. expt sal is 25k', 7, '0000-00-00 00:00:00', 1),
(6182, 6106, 8, 5, 0, 'no response', 7, '0000-00-00 00:00:00', 1),
(6183, 6140, 29, 7, 2, 'Esales RM - Karthika Team', 8, '2021-09-01 03:35:56', 1),
(6184, 6130, 27, 5, 0, 'No Response.', 7, '0000-00-00 00:00:00', 1),
(6185, 6106, 69, 4, 0, 'The candidate has been assigned wrongly.', 8, '2021-09-01 03:41:01', 1),
(6186, 6063, 8, 5, 0, 'not active, father is an awin milk dealer, fro karur. just like that looking for job. ', 7, '0000-00-00 00:00:00', 1),
(6187, 6112, 8, 2, 0, 'has no degree, 2nd year drop out, has 2.6yr field exe exp. , 1yr in flipkart delivery. expt is 15k.father is a travel agent.', 7, '0000-00-00 00:00:00', 1),
(6188, 6138, 71, 5, 0, 'REJECT', 8, '2021-09-01 07:03:34', 1),
(6189, 6150, 8, 5, 0, 'was working in botiq accounts 16k, will not suite for our process. changing job for salary. expt is 18+, avg communication.', 7, '0000-00-00 00:00:00', 1),
(6190, 6134, 8, 4, 0, 'has 6m exp and expt is 15k, knows UX. looking for job. okay with terms.', 50, '0000-00-00 00:00:00', 1),
(6191, 6146, 8, 4, 0, 'has exp in .net, check for client company.expt is 12k. but long distance.', 50, '0000-00-00 00:00:00', 1),
(6192, 6137, 27, 2, 0, 'task was given', 50, '0000-00-00 00:00:00', 1),
(6193, 6152, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6194, 6159, 8, 4, 3, 'fresher and job need, okay with calling and sales. expt sal is 14-15k. ', 7, '0000-00-00 00:00:00', 1),
(6195, 6159, 24, 7, 0, 'candidate selected 13.5K salary', 8, '2021-09-02 11:11:18', 1),
(6196, 6159, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 24, '2021-09-02 11:14:06', 1),
(6197, 6164, 8, 4, 3, 'has 1yr exp as machine op. 12k expt 13k. okay with calling and willing to learn.', 7, '0000-00-00 00:00:00', 1),
(6198, 6164, 24, 7, 0, '14K salary.. ', 8, '2021-09-02 12:48:31', 1),
(6199, 6164, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 24, '2021-09-02 12:53:15', 1),
(6200, 6172, 8, 5, 0, 'sal expt is high 15k but no Relevant exp in sales.', 7, '0000-00-00 00:00:00', 1),
(6201, 6171, 8, 5, 0, 'will not suite for our process, expt is 15k as fresher. ', 7, '0000-00-00 00:00:00', 1),
(6202, 6169, 8, 4, 2, 'has 1yr credit card sales 13k, has no reliving and payslip. Attire is not satisfied.', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(6203, 6168, 8, 5, 0, 'very childish, hyper active and will not handle our pressure.', 7, '0000-00-00 00:00:00', 1),
(6204, 6165, 8, 5, 0, 'will not suite for sales, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(6205, 6163, 8, 5, 0, 'Left Before Interview', 7, '0000-00-00 00:00:00', 1),
(6206, 6162, 8, 8, 0, 'left before interview', 7, '0000-00-00 00:00:00', 1),
(6207, 6161, 8, 5, 0, 'from kancheepuram, will not sustain, no idea about the job. Referred by GS Consultancy.', 7, '0000-00-00 00:00:00', 1),
(6208, 6157, 8, 5, 0, 'very childish, 18 and expt is 12-15k. native slang.', 7, '0000-00-00 00:00:00', 1),
(6209, 6153, 8, 4, 0, 'has 6m exp, expt is 15k, knows basics in ui/ux. completed 6m course in designing. ', 7, '0000-00-00 00:00:00', 1),
(6210, 4729, 60, 1, 0, NULL, 27, '2021-09-02 02:58:28', 1),
(6211, 4729, 27, 7, 0, 'Selected as a Intern. 3 Years Service Agreement. intern for 1st 6 months. 3k salary for an internship.', 27, '2021-09-02 02:58:28', 1),
(6212, 6169, 14, 1, 0, NULL, 8, '2021-09-02 03:04:48', 1),
(6213, 6140, 8, 4, 0, 'kindly confirm salary and DOJ', 29, '2021-09-02 03:18:39', 1),
(6214, 6134, 69, 5, 0, 'Task not satisfactory', 8, '2021-09-02 03:32:47', 1),
(6215, 6153, 69, 4, 0, 'need to discuss regarding salary, 3 months observation period and sustainability.', 8, '2021-09-02 03:34:14', 1),
(6216, 6146, 59, 5, 0, 'Client round rejected', 8, '2021-09-02 05:43:13', 1),
(6217, 6140, 59, 3, 0, 'Selected for Karthika Esales Team in CAFSinfotech Prop in 208 deductions', 8, '2021-09-02 05:46:44', 1),
(6218, 6156, 8, 4, 0, 'fresher, okay with terms and conditions.', 50, '0000-00-00 00:00:00', 1),
(6219, 6102, 8, 5, 0, 'will not suite for us, was asking for leaves and timings and weekoff, expt is 15k and not okay with terms and conditions.', 50, '0000-00-00 00:00:00', 1),
(6220, 6178, 8, 5, 0, 'will not suite for sales profile, no confidence in speech.', 7, '0000-00-00 00:00:00', 1),
(6221, 6153, 59, 5, 0, 'We offered with the CTC 96000 for 1st 6 months and continues with the hike upto 12K PM along with SA. Candidate seems doubtful and we have given him time to confirm, but he Didnxquott turn with his interest', 69, '2021-09-03 02:32:46', 1),
(6222, 6190, 8, 5, 0, 'very low voice and will not suite for sales and expt is 18-20k. looking for backend job', 7, '0000-00-00 00:00:00', 1),
(6223, 6189, 8, 5, 0, 'very low voice and not speaking up, expt is 12-15k. said no idea to speak, ', 7, '0000-00-00 00:00:00', 1),
(6224, 6188, 8, 5, 0, 'has 6m exp in calling, job need married and divorced has 3yr kid, very native language. will not suite for our process,', 7, '0000-00-00 00:00:00', 1),
(6225, 6186, 8, 5, 0, 'has 1m exp in calling, came with friends, her communication and convincing is okay. will not sustain.', 7, '0000-00-00 00:00:00', 1),
(6226, 6185, 8, 5, 0, 'has 6m exp in semi voice and came with friends, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(6227, 6180, 8, 5, 0, 'no job need, only son not very serious into his career. will not suite for sales.', 7, '0000-00-00 00:00:00', 1),
(6228, 6167, 8, 4, 0, 'has 1ye exp in calling, high job need expt 11k. from namakkal hs native slang.', 7, '0000-00-00 00:00:00', 1),
(6229, 6174, 41, 5, 0, 'Worked in fmcg sales and in cousin company will not suite for our profile', 50, '0000-00-00 00:00:00', 1),
(6230, 6175, 41, 5, 0, 'Will not sustain planning to do higher studies', 50, '0000-00-00 00:00:00', 1),
(6231, 6167, 14, 7, 0, 'Salary 10.5k, 07th sep joining she said so kindly confirm joining date', 8, '2021-09-03 03:46:38', 1),
(6232, 6156, 69, 5, 0, 'Candidate not good with content writing and communication ', 8, '2021-09-03 05:45:58', 1),
(6233, 6176, 8, 4, 0, 'will not suite for our process, knows only photoshop editing, last mctc 20-25k, expt 23-25k.', 50, '0000-00-00 00:00:00', 1),
(6234, 6181, 8, 4, 0, 'fresher and looking for react internship and okay with company terms', 50, '0000-00-00 00:00:00', 1),
(6235, 6176, 69, 5, 0, 'no relevant skills', 8, '2021-09-04 11:13:48', 1),
(6236, 6198, 8, 4, 0, 'fresher for calling and sales, has 1.4m exp in core, from pennadam, father working in a sugar factory. no 2w will arrange in 2-3 weeks.expt is 12-14k.', 7, '0000-00-00 00:00:00', 1),
(6237, 6198, 34, 7, 4, 'Selected he will join from 13th due to room issues and salary package is 13k take home ', 8, '2021-09-04 11:27:12', 1),
(6238, 6167, 59, 3, 0, 'Selected for Elite - Priyanka Team in Cash mode', 14, '2021-09-04 12:20:23', 1),
(6239, 6198, 59, 2, 0, 'Need to check the reporting manager to be assigned', 34, '2021-09-04 01:26:39', 1),
(6240, 6183, 8, 4, 0, 'fresher, job need, avg communication and expt is 10k, check with sustainability once.', 7, '0000-00-00 00:00:00', 1),
(6241, 6201, 8, 5, 0, 'fresher and no basic knowledge in domain.', 7, '0000-00-00 00:00:00', 1),
(6242, 6199, 8, 5, 0, 'looking for internship, pursuing his 3rd year, willing to learn', 7, '0000-00-00 00:00:00', 1),
(6243, 6149, 8, 5, 0, 'fresher, expt is 15k+ and need to discuss about the terms and conditions with parents.', 7, '0000-00-00 00:00:00', 1),
(6244, 6183, 14, 7, 0, 'salary 10k need to confirm joining date ', 8, '2021-09-04 02:38:32', 1),
(6245, 6181, 54, 1, 0, NULL, 8, '2021-09-04 04:13:26', 1),
(6246, 6183, 59, 3, 0, 'Selected for Elite RE,5050 candidate sustainability doubts a lot. Last 1.5 months she got multiple offers and declined stating multiple reasons.Let us analyse in the 7 days of training', 14, '2021-09-04 04:13:40', 1),
(6247, 6104, 14, 5, 0, 'not suitable for this profile', 73, '2021-09-04 04:38:17', 1),
(6248, 6207, 8, 5, 0, 'looking for internship alone, planning to do higher study. ', 7, '0000-00-00 00:00:00', 1),
(6249, 6210, 27, 2, 0, 'task was given', 50, '0000-00-00 00:00:00', 1),
(6250, 6211, 8, 4, 0, 'okay with terms, has to relocate from bangalore, check the tech skills. cross check with the service agreement, only son so have to discuss with parents.', 50, '0000-00-00 00:00:00', 1),
(6251, 6216, 8, 4, 3, 'was working in her father company 2yrs no salary, married and husband and father in dubai, 2yr kid, okay with 10k', 50, '0000-00-00 00:00:00', 1),
(6252, 6154, 8, 4, 0, 'check with his skills, freelancer doing projects with his friend, looking for full time job. expt is 3l. ', 50, '0000-00-00 00:00:00', 1),
(6253, 6218, 8, 4, 3, 'has 4m exp in 2w loan and 1.5yr in back end. expt is 12k TH. ', 7, '0000-00-00 00:00:00', 1),
(6254, 6217, 8, 4, 0, 'has overall 8yr exp in sales, but no relevant exp. last mtc is 14.5 and expt is same. last 1yr working in swiggi. job need.', 7, '0000-00-00 00:00:00', 1),
(6255, 6218, 20, 7, 0, 'Shortlisted For 12k Tale home', 8, '2021-09-06 01:42:48', 1),
(6256, 6217, 20, 7, 0, 'Seems Suitable For RE, Kindly Negotiate For 14k Take home', 8, '2021-09-06 01:46:52', 1),
(6257, 6216, 14, 7, 0, 'Salary 10k need to confirm joining date', 8, '2021-09-06 01:48:16', 1),
(6258, 6218, 59, 5, 0, 'Not Comfortable With Telesales, Parents Are Not Convincing With The Role.', 20, '2021-09-06 02:34:07', 1),
(6259, 6217, 59, 2, 0, 'RNR,will check again and update the status', 20, '2021-09-06 02:34:44', 1),
(6260, 6197, 8, 5, 0, 'will not suite for any profile, very Lethargic and no sustainability. expt 15k', 50, '0000-00-00 00:00:00', 1),
(6261, 6224, 8, 5, 0, 'will not suite for calling, very low voice and will not handle pressure. 2017 passed out husband late has 3yr kid.', 7, '0000-00-00 00:00:00', 1),
(6262, 6221, 8, 4, 0, 'already worked in our org. last mtc is 11.5k, high job need. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(6263, 6221, 29, 7, 3, 'Esales RM - Divya Team', 8, '2021-09-06 03:39:35', 1),
(6264, 6216, 59, 3, 0, 'Selected for Priyanka Team in cash mode. Family business have been shifted from Pallavaram to Dubai.Distance around 16kms.', 14, '2021-09-06 04:31:15', 1),
(6265, 6210, 27, 2, 0, 'Task was Given', 27, '2021-09-06 05:08:07', 1),
(6266, 6211, 54, 1, 0, NULL, 8, '2021-09-06 05:09:03', 1),
(6267, 6154, 69, 5, 0, 'Task not satisfactory, candidate not fit for team', 8, '2021-09-06 06:32:32', 1),
(6268, 6232, 8, 4, 3, 'fresher for sales, has calling exp and expt is 15k, okay with company norms, mom taking care of family biz, check with his slang.', 50, '0000-00-00 00:00:00', 1),
(6269, 6226, 8, 5, 0, 'will not suite for our process, not speaking up, will not handle pressure.', 50, '0000-00-00 00:00:00', 1),
(6270, 6214, 8, 4, 0, 'done 6m course in .net, doesnt know any basics and expt is 15k, no idea about winforms. ', 50, '0000-00-00 00:00:00', 1),
(6271, 6229, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6272, 6232, 57, 4, 0, 'candidate ok kindly confirm the salary and joining date ....', 8, '2021-09-07 11:21:38', 1),
(6273, 6232, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT deductions. Candidate have a plan to do part time education in UG. Not relevant Sales Exp, but he is into Customer care exp earlier. Let us try for Relationship Executive', 57, '2021-09-07 11:22:44', 1),
(6274, 6236, 8, 5, 0, 'has 3m exp in semi voice 8k, expt sal is 12k, will not suite for 12k.', 50, '0000-00-00 00:00:00', 1),
(6275, 6235, 8, 5, 0, 'will not sustain, will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(6276, 6234, 8, 5, 0, 'will not suite for our process, will not handle pressure and sustain', 7, '0000-00-00 00:00:00', 1),
(6277, 6233, 8, 4, 3, 'fresher and new to chennai, staying in pg with friend and his friend will not suite for us, kindly check with his sustainability. expt is 12-15k.', 7, '0000-00-00 00:00:00', 1),
(6278, 6233, 24, 7, 0, 'cross check sustainability.. . 11k salary', 8, '2021-09-07 12:38:08', 1),
(6279, 6233, 59, 2, 0, 'Fresher for RE profile, Salary Expectation is around 11K Th but sustainability doubts on this profile. Pressure handling doubts .Will confirm shortly', 24, '2021-09-07 12:42:58', 1),
(6280, 6112, 59, 3, 0, 'Selected for Kannan Team with PF/ESI/PT deductions. No previous Company payslip/offer letter. Commission based salary average 15K TH. Let us try for RE and analyse the person in 7 days of training.No Higher Graduation, ist yr BCA discontinued', 19, '2021-09-07 12:44:07', 1),
(6281, 6242, 8, 4, 0, 'has 3yr exp in acc as part time 12k, looking for career change. father rtd govt mother house keeping. expt 10-12k.', 7, '0000-00-00 00:00:00', 1),
(6282, 6239, 8, 4, 3, 'has 4m exp in calling, has to sell braces over the call, expt is 13-15k, will relocate to chennai. ', 7, '0000-00-00 00:00:00', 1),
(6283, 6237, 8, 4, 3, 'has 4yr exp in teaching 15k, 2yrs in mobile shop as sales exe. 18k. shifted to chennai last month. job need expt 20k but okay with incentives and company norms. ', 7, '0000-00-00 00:00:00', 1),
(6284, 6237, 24, 5, 0, 'i dont remember on this.. sorry', 8, '2021-09-07 03:39:50', 1),
(6285, 6239, 29, 7, 3, 'Esales RM - Karthika Team, for salary refer resume or Arun', 8, '2021-09-07 03:43:19', 1),
(6286, 6242, 13, 7, 4, '10k salary but date of joining 26th sep because notice period of previous company', 8, '2021-09-07 04:02:36', 1),
(6287, 6242, 59, 3, 0, 'Selected for Muthu team with PF/ESI/PT', 13, '2021-09-07 04:07:48', 1),
(6288, 6243, 8, 5, 0, 'will not suite for our process, communication is not upto the level and expt is 15k', 7, '0000-00-00 00:00:00', 1),
(6289, 6231, 8, 4, 0, 'no knowledge in DM, just like that came for interview. looking for internship.', 7, '0000-00-00 00:00:00', 1),
(6290, 6214, 59, 5, 0, 'No relevant knowledge and experience.Not suits for our client role', 8, '2021-09-07 04:52:02', 1),
(6291, 6231, 69, 5, 0, 'No knowledge and not fit for our team', 8, '2021-09-07 04:53:35', 1),
(6292, 6218, 59, 5, 0, 'Not Comfortable With Telesales, Parents Are Not Convincing With The Role.', 59, '2021-09-07 07:48:50', 1),
(6293, 6196, 8, 5, 0, 'Knows Only Theory And No Practical Knowledge, Fresher And Done 2m Course. Will Not Suite For Client Company.', 50, '0000-00-00 00:00:00', 1),
(6294, 5826, 8, 8, 0, 'not attended', 50, '0000-00-00 00:00:00', 1),
(6295, 6173, 8, 5, 0, 'will not suite for the profile. avg communication and expt is 12-13k.', 50, '0000-00-00 00:00:00', 1),
(6296, 6212, 8, 5, 0, 'from Neyveli, fresher knows nothing in technical, not even knows the basics.', 50, '0000-00-00 00:00:00', 1),
(6297, 6219, 8, 5, 0, 'knows only theory and no practical knowledge, fresher and done 4m course. will not suite for client company.', 50, '0000-00-00 00:00:00', 1),
(6298, 6251, 8, 5, 0, 'will not suite for any profile, very fresher and new to chennai, no idea about his career and job.', 7, '0000-00-00 00:00:00', 1),
(6299, 6253, 8, 5, 0, 'will not suite for our process, has 3yr exp in calling but no clarity in his speech. Lctc ia 10.5k and expt is 16k.', 7, '0000-00-00 00:00:00', 1),
(6300, 6254, 8, 5, 0, 'will not suite for calling, wearing braces and has 6 bL and has to complete his exam and planning to do higher study.', 7, '0000-00-00 00:00:00', 1),
(6301, 6255, 8, 5, 0, 'time being looking for job, for extra pocket money he looking for job, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(6302, 6256, 8, 5, 0, 'will not sustain, can work here for 6m, planning to do his higher study regular.', 7, '0000-00-00 00:00:00', 1),
(6303, 6249, 8, 5, 0, 'will not sustain and handle pressure.', 7, '0000-00-00 00:00:00', 1),
(6304, 6054, 59, 5, 0, 'Candidate salary Expectation is very high, holding multiple offers and demanding a lot from us. Expecting around 21% from his last drawn CTC and no relevant insurance sales exp.If we offered also not sure he joins us', 30, '2021-09-08 04:58:09', 1),
(6305, 6217, 59, 2, 0, 'RNR,Will Check Again And Update The Status. Tried Reaching Him From The Day Of Interview .But The Line Is Busy At Every Time We Reached. No Call Back Also', 59, '2021-09-08 05:28:20', 1),
(6306, 5981, 8, 5, 0, 'no update', 8, '2021-09-08 06:20:32', 1),
(6307, 5983, 8, 5, 0, 'no update', 8, '2021-09-08 06:20:55', 1),
(6308, 5909, 8, 5, 0, 'No Update', 8, '2021-09-08 06:21:20', 1),
(6309, 5858, 8, 5, 0, 'No Update', 8, '2021-09-08 06:22:20', 1),
(6310, 6257, 8, 5, 0, 'has 1yr exp in calling and 2yr exp in cams kyc, got hike in april 2021 from 13k to 16k. reason for reliving is low hike, expt is 18-20k', 7, '0000-00-00 00:00:00', 1),
(6311, 5608, 59, 5, 0, 'Client Round Reject\n', 59, '2021-09-08 07:17:01', 1),
(6312, 5713, 59, 5, 0, 'Client Round Reject', 59, '2021-09-08 07:17:16', 1),
(6313, 5957, 59, 5, 0, 'client round reject', 59, '2021-09-08 07:17:37', 1),
(6314, 5970, 59, 3, 0, 'Selected for Muthu team with TH 9975 Cash Mode', 13, '2021-09-09 10:19:00', 1),
(6315, 6263, 8, 4, 2, 'has 6m exp in health calling, good in script, expt is 12k. father farmer', 50, '0000-00-00 00:00:00', 1),
(6316, 6240, 8, 5, 0, 'looking for job, no knowledge in basics, has self learning will not suite for 15k and internship too.', 50, '0000-00-00 00:00:00', 1),
(6317, 6263, 19, 7, 0, 'shortlisted for srikanth team', 8, '2021-09-09 12:18:28', 1),
(6318, 6262, 8, 5, 0, 'has 2yr exp in calling, mahaveer electronics, expt is 18k and holds offer in bank bazar 15k and will not sustain, and suite for our process', 7, '0000-00-00 00:00:00', 1),
(6319, 6265, 8, 5, 0, 'has 1yr exp in networking, fresher for calling expt is 15k, not speaking up and will not suite for sales.', 7, '0000-00-00 00:00:00', 1),
(6320, 6074, 8, 5, 0, 'no response', 8, '2021-09-09 01:11:46', 1),
(6321, 4196, 8, 5, 0, 'no response', 8, '2021-09-09 01:14:46', 1),
(6322, 6264, 59, 2, 0, 'Fresher for IT domain, mechanical graduate, self learned the skills of IT, Can give a try for React/React Native. Need to come back with his confirmation on the Service Agreement.', 60, '0000-00-00 00:00:00', 1),
(6323, 6274, 59, 5, 0, 'Fresher, not much comfortable with Telesales. Not open for target based positions. Will not handle the pressure. Not much communicative', 50, '0000-00-00 00:00:00', 1),
(6324, 6239, 59, 3, 0, 'Selected for Karthika Esales Team with PT deductions only in CAFSinfotech Prop', 29, '2021-09-11 11:45:37', 1),
(6325, 6221, 59, 3, 0, 'Selected for Dhivya Team with PT deduction in CAFSInfotech Prop', 29, '2021-09-11 11:48:19', 1),
(6326, 6263, 59, 2, 0, 'only 6 months exp Discussed and proposed CTC with PF/ESI/PT and candidate is expecting more and he needs to give confirmation, also he is in native and can join us next thursday(16-Sep)', 19, '2021-09-11 11:59:51', 1),
(6327, 6276, 59, 4, 0, 'No relevant Exp in sales, only into voice process exp. No bike and recently met with accident and recovered.5050 profile, kindly check the profile for RE ', 60, '0000-00-00 00:00:00', 1),
(6328, 6276, 20, 5, 0, 'Candidate had an accident recently due to which he has to visit his ortho everyday from evening 6 to 9 for atleast 6 montha. Not willing for full day work', 59, '2021-09-11 01:14:25', 1),
(6329, 6198, 19, 5, 1, 'Not Fit ', 59, '2021-09-11 03:27:16', 1),
(6330, 6198, 59, 4, 0, 'Kindly check this candidate and update. As discussed please do have a telephonic Interview with the candidate and give me your feedback.', 59, '2021-09-11 03:27:16', 1),
(6331, 6280, 8, 5, 0, 'has 6m exp in networking 13k, no basic knowledge in ui/ux, expt is 10-15k,', 50, '0000-00-00 00:00:00', 1),
(6332, 6287, 8, 4, 0, 'has 3m exp Aa AR caller 15k, expt is 14k, has 2w and okay with RE, check with sustainability, last 3m working with Cousin as Contractor', 7, '0000-00-00 00:00:00', 1),
(6333, 6286, 8, 2, 0, 'selected by priyanka, will join by next month 11.5k, has 1.5yr exp in calling.', 50, '0000-00-00 00:00:00', 1),
(6334, 6272, 8, 4, 0, 'fresher for ux, no knowledge in UI, knows figma and adobe, from medavakkam wife working in TCS 45k, parents in native, okay with terms expt sal is 15k.', 7, '0000-00-00 00:00:00', 1),
(6335, 6290, 8, 5, 0, 'not speaking up, after degree 4yrs ideal at home, said very shy to search job.', 7, '0000-00-00 00:00:00', 1),
(6336, 6291, 8, 5, 0, 'will not sustain, already got offer for 9.5k, due to low salary not joined. currently from vadapalani asking for nearby location.', 7, '0000-00-00 00:00:00', 1),
(6337, 6287, 20, 7, 0, 'kindly shortlist for my team with 11k as take home salary.', 8, '2021-09-13 01:05:26', 1),
(6338, 6287, 59, 5, 0, 'Candidate Didnxquott turn for interview after lunch, also not responding to the calls. Recruiter checked with the candidate and updated that he is not interested in the profile', 20, '2021-09-13 01:11:56', 1),
(6339, 6272, 69, 5, 0, 'Task not satisfactory', 8, '2021-09-13 01:24:13', 1),
(6340, 6295, 8, 4, 0, 'No fahter she has to go for job, Check salary and office locaion. Expt Is 10k', 7, '0000-00-00 00:00:00', 1),
(6341, 6297, 8, 4, 0, 'fresher, good convincing skill, job need, 10k expt', 7, '0000-00-00 00:00:00', 1),
(6342, 6298, 8, 4, 0, 'Fresher, high job need expt 10k, has laptop, father is a cleaner in hotel. travelling distance 30mins from thanjavur.', 7, '0000-00-00 00:00:00', 1),
(6343, 6298, 74, 7, 4, 'completed be but not intrested in core field, need a system work family is in poor situtation so job need, have laptop and near to office only salary 10k ', 8, '2021-09-13 04:21:03', 1),
(6344, 6297, 74, 7, 3, 'completed bcom intrested in telesales family in a poor condition job need group 2 exam intrested and preparing.....salary 10k kindly confirm once', 8, '2021-09-13 04:21:45', 1),
(6345, 6295, 74, 7, 3, 'completed bcom father passed away intreated in telecalling, taking tution in parttime.............2 siblings ....financially week so job to much needed...10k salary kindly confirm once', 8, '2021-09-13 04:22:48', 1),
(6346, 6294, 74, 7, 3, 'completed be but intrested in telecalling and poor family job needed ....10 to 11k salary ....father electrician....kindly confirm once', 8, '2021-09-13 04:23:24', 1),
(6347, 6299, 8, 4, 0, 'fresher, father late his uncle supporting financially, job need willing to learn, will buy laptop in a week, expt is 10k, from thiruvarur.', 7, '0000-00-00 00:00:00', 1),
(6348, 6299, 74, 7, 4, 'completed bsc IT but not intrested in software field, good listener and talk active very much job need father passed away ....uncle support financially ......salary 10 k kindly confirm once', 8, '2021-09-13 04:34:16', 1),
(6349, 6298, 59, 3, 0, 'Selected for Tanjavur in cash mode', 74, '2021-09-13 04:34:50', 1),
(6350, 6299, 59, 2, 0, 'Spoke with the candidate and projected our salary breakup, he will give us the confirmation tonight', 74, '2021-09-13 04:38:46', 1),
(6351, 6297, 59, 2, 0, 'Discussed and shared the salary breakup for the candidate confirmation,will update once get the confirmation', 74, '2021-09-13 04:41:59', 1),
(6352, 6295, 59, 2, 0, 'Spoke with candidate and shared the salary breakup for her confirmation. Will update the status once done', 74, '2021-09-13 04:46:28', 1),
(6353, 6294, 59, 2, 0, 'Discussed and shared the salary breakup ,will confirm once get her confirmation', 74, '2021-09-13 04:55:46', 1),
(6354, 6279, 8, 5, 0, 'Doesnxquott know what is ui/ux, knows photoshop and cdrw, 4.5yr exp in core field 23.7k, expt is 30k, just like that came for interview.', 50, '0000-00-00 00:00:00', 1),
(6355, 6283, 8, 4, 0, 'came for ob, not okay with internship, said knows skills like php, android, html,css,jqueri. done workshops in clg. check with his technical skills.', 50, '0000-00-00 00:00:00', 1),
(6356, 6292, 8, 4, 0, '9m exp in csharp and knows basics in winforms, ctc is 2.7l and expt is 3.2l, will relocate to chennai. reason for reliving-contract till sep30th, no idea to continue there.', 50, '0000-00-00 00:00:00', 1),
(6357, 6301, 8, 8, 0, 'no response', 50, '0000-00-00 00:00:00', 1),
(6358, 6293, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6359, 6303, 8, 4, 3, 'has 2yr exp in direct sales but fresher for us 13-14k in hand, from madurai residing at triplicane, father auto driver. expt is 16-18k.', 7, '0000-00-00 00:00:00', 1),
(6360, 6302, 8, 2, 0, 'no idea about dM, looking for internship. and okay with the Norms.', 7, '0000-00-00 00:00:00', 1),
(6361, 6303, 20, 7, 0, '2 years field sales experience, shortlist for 12.5K as take home salary. ', 8, '2021-09-14 12:08:03', 1),
(6362, 5207, 59, 2, 0, 'Discussed and yet to get candidate confirmation.Shared the salary breakup for his reference\n', 13, '2021-09-14 12:15:43', 1),
(6363, 6303, 59, 2, 0, 'Discussed and projected our salary breakup with PF/ESI/PT. But he is expecting more. No relevant Insurance sales, but into Construction.07th sept attended interview with ICICI and they are ready to offer around 18-19 for field sales. Candidate will give his confirmation on 16th Sep only', 20, '2021-09-14 12:27:18', 1),
(6364, 6306, 8, 5, 0, 'will not suite for our process, not speaking up and expt is 12k, father and mother govt emp.', 7, '0000-00-00 00:00:00', 1),
(6365, 6308, 8, 5, 0, '1yr exp in tcs 2.5l ctc and expt is 15k. not okay with her convincing. ', 7, '0000-00-00 00:00:00', 1),
(6366, 6294, 59, 3, 0, 'Selected for Tanjore Location in cash mode', 59, '2021-09-14 04:28:38', 1),
(6367, 6295, 59, 3, 0, 'Selected for Tanjore in Cash mode', 59, '2021-09-14 04:29:29', 1),
(6368, 6292, 59, 5, 0, 'Discussed, he is only into debugging no development Exp.9 months of Exp into debug only 30 days of the notice period. Attended around 30+ virtual interviews and the salary expectation is very high . Sustainability doubts.', 8, '2021-09-14 05:03:49', 1),
(6369, 6283, 27, 5, 0, 'No Response.', 8, '2021-09-14 05:30:41', 1),
(6370, 6297, 59, 3, 0, 'Selected for Tanjore location in cash mode', 59, '2021-09-14 05:57:22', 1),
(6371, 6299, 59, 3, 0, 'Selected for Tanjore in cash mode\n', 59, '2021-09-14 05:57:50', 1),
(6372, 6316, 40, 8, 0, 'Not attended', 50, '0000-00-00 00:00:00', 1),
(6373, 6281, 8, 5, 0, 'has 11m exp in s/w testing 10k, 6m course in multiple domin, married and 3yr kid, father and mother both govt emp, husband is a project manager in a pvt company.', 50, '0000-00-00 00:00:00', 1),
(6374, 6271, 8, 5, 0, 'has 10yr exp and 5yrs in society general. his ctc is 16.5L and expt is 24L. wife working in tcs and from virugambakkam.', 50, '0000-00-00 00:00:00', 1),
(6375, 6289, 8, 5, 0, 'has 2yr exp in mern in tcs and 3.2l ctc, before that he was running his own biz in 3d printing, looking for react internship and for job expt is 4l.', 50, '0000-00-00 00:00:00', 1),
(6376, 6310, 8, 5, 0, 'done 6m course, no working exp in .net and expt 20k in hand. has 3.5yr exp in backend 24k.', 50, '0000-00-00 00:00:00', 1),
(6377, 6318, 8, 4, 3, 'has 9m exp in backend 9.5k, expt 10k and from 1000lights, father is a gold merchant and only son. okay for calling.', 7, '0000-00-00 00:00:00', 1),
(6378, 6318, 14, 7, 0, 'salary 10k.need to confirm joining date', 8, '2021-09-15 12:55:55', 1),
(6379, 6318, 59, 3, 0, 'Selected for Priyanka Elite Team in Cash Consultant mode', 14, '2021-09-15 01:04:33', 1),
(6380, 6323, 8, 4, 0, 'fresher, father daily wages, we can train him, job need, planning to do higher study after 2yrs, expt 10-12k', 7, '0000-00-00 00:00:00', 1),
(6381, 6323, 13, 7, 4, 'ok 10k salary Monday joining', 8, '2021-09-15 02:56:31', 1),
(6382, 6322, 8, 4, 0, 'fresher, high job need, no father and brother was working now unemployed and mom house wife. 2km from thanjavur and no laptop. okay with 10k salary. Can join tomorrow.', 7, '0000-00-00 00:00:00', 1),
(6383, 6322, 74, 7, 3, 'Completed BE and interested in bpo only salary 10k good in Convincing,father passed away, high job need ', 8, '2021-09-15 04:14:49', 1),
(6384, 6322, 59, 3, 0, 'Selected for Thanjavur in Cash Mode\n', 74, '2021-09-15 04:21:54', 1),
(6385, 6303, 59, 3, 0, 'Selected for Srikanth Team with PF/ESI/PT', 59, '2021-09-15 05:32:49', 1),
(6386, 5207, 59, 3, 0, 'Selected for Tanjore location in cash mode\n', 59, '2021-09-15 06:23:17', 1),
(6387, 6217, 59, 5, 0, ' Rnr Tried Reaching Him From The Day Of Interview .But The Line Is Busy At Every Time We Reached. No Call Back Also', 59, '2021-09-15 06:46:38', 1),
(6388, 6327, 8, 4, 3, 'has 2yr part time exp in pharma, fresher for calling, job need and expt 10k,', 7, '0000-00-00 00:00:00', 1),
(6389, 6327, 19, 7, 0, 'selected suthagar team', 8, '2021-09-16 11:51:17', 1),
(6390, 6326, 8, 4, 0, 'check for calling and sales', 7, '0000-00-00 00:00:00', 1),
(6391, 6326, 73, 7, 0, 'selected confirm joining date and salary package', 8, '2021-09-16 12:13:27', 1),
(6392, 6331, 8, 4, 2, 'fresher for us, 5yr in cub as sr. associate. 30k and expt 25k. was asking for transfer then resigned. wife working in logistics into sales.', 7, '0000-00-00 00:00:00', 1),
(6393, 6329, 8, 4, 0, 'looking for accounts job, check once.', 7, '0000-00-00 00:00:00', 1),
(6394, 6319, 8, 4, 0, 'knows ux and no idea about ui, has 10+ yrs exp and expt 3l. wife working in wipro and has 1 kind.', 7, '0000-00-00 00:00:00', 1),
(6395, 6331, 44, 1, 0, NULL, 8, '2021-09-16 12:19:20', 1),
(6396, 6319, 69, 5, 0, 'Task not satisfactory', 8, '2021-09-16 12:45:15', 1),
(6397, 6327, 59, 3, 0, 'Selected for Suthagar team with Pf/ESI/PT', 19, '2021-09-16 12:52:32', 1),
(6398, 6305, 8, 4, 0, 'fresher, willing to learn okay with company norms, expt is 12k,', 7, '0000-00-00 00:00:00', 1),
(6399, 6305, 54, 1, 0, NULL, 8, '2021-09-16 01:25:05', 1),
(6400, 6336, 8, 5, 0, 'very childish and Stammering to speak. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6401, 6335, 8, 2, 0, 'for telephonic', 7, '0000-00-00 00:00:00', 1),
(6402, 6334, 8, 5, 0, 'planning to join it course and search it job, expt is 15k from sri perambathur.', 7, '0000-00-00 00:00:00', 1),
(6403, 6333, 8, 5, 0, 'Planning To Join It Course And Search It Job, Expt Is 15k From Sri Perambathur.', 7, '0000-00-00 00:00:00', 1),
(6404, 6332, 8, 5, 0, 'fresher, has to learn', 7, '0000-00-00 00:00:00', 1),
(6405, 6337, 8, 4, 3, 'has 3yr exp in car showroom sales 18k and expt is 23k, check with his calling skill and fresher for life insurance. in notice-7more days, will join on 27th sep.', 7, '0000-00-00 00:00:00', 1),
(6406, 6337, 33, 4, 3, 'PLEASE CHECK SUSTAINABILITY AND SALARY SIR ', 8, '2021-09-16 04:34:08', 1),
(6407, 6337, 18, 7, 4, 'Selected for Raj Team. Ready to Join on 27th of this months. Package discussed is 2.6L CTC overall. Can release the offer', 33, '2021-09-16 05:27:41', 1),
(6408, 4154, 33, 4, 2, 'kindly check sustainability candidate didnt get job for one year so long gap please check sustainabiliity and gaurav sir suggested to give salary 20k take home for per month maximum and sharath taken interview he told good in telecalling skills ', 8, '2021-09-16 05:46:10', 1),
(6409, 6337, 59, 3, 0, 'Selected for Raj Team with PF/ESI/Deductions.3+ yrs in showroom sales exp but no documents for the proof.Has initiated his resignation in the company', 18, '2021-09-16 06:17:01', 1),
(6410, 6329, 53, 2, 0, 'Need to check once', 8, '2021-09-16 06:29:22', 1),
(6411, 6339, 8, 4, 3, 'Has 7m exp in Construction field, okay With his pro and expt as per Company and we can Train for RE. No father ans mom is a seri Actress.', 7, '0000-00-00 00:00:00', 1),
(6412, 6339, 19, 7, 4, 'Sustainability', 8, '2021-09-17 11:28:33', 1),
(6413, 6342, 8, 4, 3, 'has 11m exp in core 14k, relived due to covid, parents farmer, expt 16k but okay with 13-14k ctc, fresher for us we need to train.', 7, '0000-00-00 00:00:00', 1),
(6414, 6341, 8, 5, 0, 'has 1yr part time job in hsbc bank back end, salary not satisfied so looking for job change, expt 18k, will not suite for our company. ', 7, '0000-00-00 00:00:00', 1),
(6415, 6339, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT deductions', 19, '2021-09-17 11:39:52', 1),
(6416, 6342, 24, 5, 0, 'Expected High salary', 8, '2021-09-17 12:00:22', 1),
(6417, 6340, 8, 5, 0, 'no degree, holds offer and his language is not good, will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6418, 6349, 8, 5, 0, 'fresher, looking for calling and not interested in field sales, expt is 15k take home.', 7, '0000-00-00 00:00:00', 1),
(6419, 6343, 8, 4, 0, 'fresher for calling and has 2yr exp in backend 13k, okay with 10k, no father and mother daily wages.', 7, '0000-00-00 00:00:00', 1),
(6420, 6326, 59, 2, 0, 'Not reachable', 73, '2021-09-17 05:42:26', 1),
(6421, 6330, 53, 7, 0, 'Salary 10k need to confirm joining date', 7, '0000-00-00 00:00:00', 1),
(6422, 6355, 8, 4, 0, 'check and do the needful', 7, '0000-00-00 00:00:00', 1),
(6423, 6343, 14, 7, 0, 'Salary 11k kindly confirm joining date for thiruvallur', 8, '2021-09-17 06:15:39', 1),
(6424, 6343, 59, 2, 0, 'need to come back with her confirmation', 14, '2021-09-17 06:20:26', 1),
(6425, 6355, 18, 7, 4, 'Selected for raj team. Spokent 252100 as overall ctc Able to join around 27th', 8, '2021-09-17 06:21:35', 1),
(6426, 6330, 59, 2, 0, 'Doubtful on sustainability, He much prefers for the non-voice process. He tried to avoid voice as there will be a lot of pressure on the targets.Pressure handling very doubtfull', 53, '2021-09-17 06:34:52', 1),
(6427, 6309, 8, 4, 0, 'has to check his tech skills, very fresher and self learning in it, completed bsc physics, father and mother dialy wages, okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(6428, 6309, 59, 5, 0, 'Fresher,Self learned but not much comfortable with terms and conditions on the SA', 8, '2021-09-17 06:46:42', 1),
(6429, 6338, 8, 4, 0, 'has 5m and 5m exp in designing, knows ux 12kand expt is 17k. holds offer in a company for 15k.', 50, '0000-00-00 00:00:00', 1),
(6430, 6350, 27, 5, 0, 'No Response.', 50, '0000-00-00 00:00:00', 1),
(6431, 6323, 59, 3, 0, 'Selected for Muthu Team in Cash mode', 13, '2021-09-18 11:54:03', 1),
(6432, 6361, 8, 5, 0, 'fresher, not speaking up and first interview ', 7, '0000-00-00 00:00:00', 1),
(6433, 6356, 8, 5, 0, 'has 5yr in ar calling 15k and no sales exp. 4m in a pest company and Expt Is 25k, company 18.5k. ', 7, '0000-00-00 00:00:00', 1),
(6434, 6311, 8, 4, 0, '4m back attened interview, has internship exp, exp is 12-15k, avg communication. father rtd emp.', 50, '0000-00-00 00:00:00', 1),
(6435, 4154, 18, 7, 4, 'Selected for Raj Team. Expected package is 23K in hand but we can check and negotiate. Immed Joiner', 33, '2021-09-18 12:56:16', 1),
(6436, 6326, 59, 3, 0, 'Selected for Tiruvallur Location in Cash mode', 59, '2021-09-18 04:29:59', 1),
(6437, 6343, 59, 3, 0, 'Selected for Tiruvallur Location in Cash mode', 59, '2021-09-18 04:30:39', 1),
(6438, 6311, 69, 5, 0, 'Candidate having own business. ', 8, '2021-09-18 06:09:19', 1),
(6439, 6338, 69, 5, 0, 'Not fit for team', 8, '2021-09-18 06:11:36', 1),
(6440, 6379, 8, 5, 0, 'no basic tech skills, expt 15k, not okay with service agreement. ', 50, '0000-00-00 00:00:00', 1),
(6441, 6296, 8, 5, 0, 'fresher, no basic tech skill, expt is 15k.', 50, '0000-00-00 00:00:00', 1),
(6442, 6357, 8, 5, 0, 'fresher and self learner, have not done any courses. expt is 3l.', 50, '0000-00-00 00:00:00', 1),
(6443, 6374, 8, 5, 0, 'will not sustain, avg convincing. ', 7, '0000-00-00 00:00:00', 1),
(6444, 6385, 8, 4, 0, 'lang below avg. learnt basic about dM and attitude is not satisfied. expt is 15k, terms not shared with him.', 50, '0000-00-00 00:00:00', 1),
(6445, 6313, 8, 4, 0, 'fresher from tnagar, father in to biz, knows basics in tech. expt is 10-15k, okay with company norms.\n', 50, '0000-00-00 00:00:00', 1),
(6446, 5789, 8, 5, 0, 'Fresher, No Basic Tech Skill, Expt Is 15k.', 50, '0000-00-00 00:00:00', 1),
(6447, 6387, 8, 5, 0, 'will not suite for our process, 1yr exp in press in data entry. will not suite for sales aswell. ', 7, '0000-00-00 00:00:00', 1),
(6448, 6386, 8, 5, 0, 'very fresher, no tech skills, has to learn. no course ', 7, '0000-00-00 00:00:00', 1),
(6449, 6382, 8, 5, 0, 'will not suite for sales, has core exp expt is 15, not speaking up, no flow.', 7, '0000-00-00 00:00:00', 1),
(6450, 6385, 69, 5, 0, 'No knowledge about DM, doubtful in terms of sustainability. Attitude issues.\n\n\n\n\n ', 8, '2021-09-20 01:07:07', 1),
(6451, 6330, 59, 3, 0, 'Selected for tiruvallur Location in cash mode', 59, '2021-09-20 01:18:36', 1),
(6452, 3479, 69, 5, 0, 'Not sustainable', 69, '2021-09-20 01:19:30', 1),
(6453, 5374, 69, 5, 0, 'Task not satisfactory', 69, '2021-09-20 01:23:42', 1),
(6454, 6313, 54, 1, 0, NULL, 8, '2021-09-20 02:30:36', 1),
(6455, 6383, 8, 4, 0, 'fresher for calling, has exp in core job, expt is 12k and okay with 10k in native, good in convincing. we can train him.', 7, '0000-00-00 00:00:00', 1),
(6456, 6383, 74, 7, 3, 'completed BE and not intrested in core job well exposure and good explaining capacity salary 10.5 k wednesday joining kindly conform once', 8, '2021-09-20 02:42:13', 1),
(6457, 6123, 8, 4, 0, 'freelancer, video editor for a youtube channel and has knowledge in UX, expt is 25k.will relocate to chennai.', 7, '0000-00-00 00:00:00', 1),
(6458, 6383, 59, 2, 0, 'He is in travel,will call back later', 74, '2021-09-20 04:36:32', 1),
(6459, 6393, 8, 5, 0, 'Fresher 5050, Avg In Convincing.', 7, '0000-00-00 00:00:00', 1),
(6460, 6380, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(6461, 6123, 69, 5, 0, 'No relevant skills', 8, '2021-09-20 06:36:36', 1),
(6462, 6401, 8, 5, 0, 'will not suite for our process, no flow in speech, has 5yrs gap expt is 13k.', 7, '0000-00-00 00:00:00', 1),
(6463, 6402, 8, 5, 0, 'fresher, not speaking up, prefers accounts job, will not handle pressure and sustain.', 7, '0000-00-00 00:00:00', 1),
(6464, 6403, 8, 4, 3, 'fresher, expt 10k, has 2w no laptop, good in convincing and lang is good. ', 7, '0000-00-00 00:00:00', 1),
(6465, 6353, 8, 4, 0, 'fresher for ui, expt is 12k, has basics in ui, check with this tech skills. attitude wise good.', 7, '0000-00-00 00:00:00', 1),
(6466, 6403, 20, 7, 5, 'kindly shortlist for my team with 13k cTC', 8, '2021-09-21 11:49:17', 1),
(6467, 6403, 59, 3, 0, 'Fresher for our Sales Profile,Selected for Srikanth team with PF/ESI/PT Deductions', 20, '2021-09-21 11:54:41', 1),
(6468, 6407, 8, 4, 3, 'has 3yr exp in calling and currently working in murugappa 1yr contract. resently married looking for salary hike and day shift. no laptop. expt is 15k. wife is looking for job.', 7, '0000-00-00 00:00:00', 1),
(6469, 6407, 53, 7, 0, 'selected for srikanth team, having 3 yrs telecalling exp, married, job need, pls cnfrm DOJ nd salary', 8, '2021-09-21 01:16:10', 1),
(6470, 6412, 8, 4, 3, 'fresher, okay for calling profile, will train. expt 10-12k', 7, '0000-00-00 00:00:00', 1),
(6471, 6411, 8, 4, 3, 'fresher, little bit slow, we can train. expt 10k, came with her Friend so check sustainability once. job need.', 7, '0000-00-00 00:00:00', 1),
(6472, 6409, 8, 5, 0, 'fresher, no basics knowledge, bcom but looking for IT profile and no course and expt 10k. job need, mom Separated.', 7, '0000-00-00 00:00:00', 1),
(6473, 6412, 14, 7, 0, 'salary 10k. need to confirm joining date', 8, '2021-09-21 02:42:25', 1),
(6474, 6406, 8, 5, 0, 'no Sustainability, his last ctc is 16k and holds offer for 22k and expt 24-28k. will not suite for our process. was doing his catering biz and will continue the biz as well.', 7, '0000-00-00 00:00:00', 1),
(6475, 6412, 59, 3, 0, 'Selected for Elite RE - Priyanka Team - Cash mode\n', 14, '2021-09-21 02:51:46', 1),
(6476, 6355, 8, 4, 0, 'check and do the needful', 18, '2021-09-21 04:23:35', 1),
(6477, 6353, 69, 5, 0, 'lack of experience.', 8, '2021-09-21 05:18:07', 1),
(6478, 6383, 59, 2, 0, 'Discussed With The Candidate And Shared The Salary Breakup.Once Get The Candidate Confirmation Will Update The Same', 59, '2021-09-21 05:36:43', 1),
(6479, 6383, 59, 3, 0, 'Selected for Elite RE Thanjavur Location in Cash mode and able to join on Thursday only due to some personal work\n', 59, '2021-09-21 06:28:06', 1),
(6480, 6411, 14, 5, 0, 'Not suitable for voice process', 8, '2021-09-22 10:21:08', 1),
(6481, 6355, 59, 3, 0, 'Selected for RM - Raj Team with PF/ESI/PT deductions. Having Sales Exp in Automobile Industry.', 8, '2021-09-22 10:24:19', 1),
(6482, 6302, 8, 5, 0, 'will not suite for us, has to learn and come', 8, '2021-09-22 10:27:11', 1),
(6483, 6286, 8, 5, 0, 'no response sal expt high', 8, '2021-09-22 10:27:35', 1),
(6484, 6425, 8, 5, 0, 'have seen post in naukri and came directly, looking for accounts job.', 7, '0000-00-00 00:00:00', 1),
(6485, 6424, 8, 5, 0, 'fresher, not speaking up and will not suite for our process, will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(6486, 6421, 8, 5, 0, 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship Has To Discuss With Family.', 7, '0000-00-00 00:00:00', 1),
(6487, 6420, 8, 4, 0, 'fresher, has done 3m course in designing but applied for php (as hr said), no idea about php and pgmng lang. knows basic in html and css. check with his tech skills.', 7, '0000-00-00 00:00:00', 1),
(6488, 6419, 8, 5, 0, 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship Has To Discuss With Family.', 7, '0000-00-00 00:00:00', 1),
(6489, 6418, 8, 5, 0, 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship has to discuss with family.', 7, '0000-00-00 00:00:00', 1),
(6490, 6416, 8, 5, 0, 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Not Interested In Internship Too.', 7, '0000-00-00 00:00:00', 1),
(6491, 6415, 8, 5, 0, 'pursuing mca, yet to complete final year project. expt 15k, doesnt know the basics in php and other programming lang. not interested in internship too.', 7, '0000-00-00 00:00:00', 1),
(6492, 6378, 8, 4, 0, 'has 3.6m exp in UI-20k, expt 30k, from nagarkovil will relocate to chennai. knows basics in ux. check with his tech skills.', 7, '0000-00-00 00:00:00', 1),
(6493, 6233, 59, 5, 0, 'Tried couple of times and no response from the candidate', 59, '2021-09-22 02:40:11', 1),
(6494, 6263, 59, 5, 0, 'have given time to confirm the CTC offered,but his expectation is very high and not comfortable to join us', 59, '2021-09-22 02:42:28', 1),
(6495, 6264, 59, 5, 0, 'Seems not much comfortable with TxxampC, asked time to confirm on the same but he Didnxquott turn back with his confirmation.', 59, '2021-09-22 02:43:40', 1),
(6496, 6407, 59, 3, 0, 'Selected for Srikanth Team with PF/ESI/PT deductions.2+ yrs voice experience but not in Insurance domain.', 53, '2021-09-22 02:51:27', 1),
(6497, 6329, 53, 5, 0, 'he s not intrested in telecalling. looking for Accounts related job', 53, '2021-09-22 02:52:00', 1),
(6498, 6378, 69, 5, 0, 'Task was okay but Couldnxquott match with our requirements. Checked with udhay bro too.', 8, '2021-09-22 06:07:06', 1),
(6499, 6420, 69, 5, 0, 'candidate actually interested in UI and we only require experienced for the same.', 8, '2021-09-22 06:15:56', 1),
(6500, 6434, 8, 5, 0, 'has 3yr exp in calling but will not suite for sales.', 7, '0000-00-00 00:00:00', 1),
(6501, 6433, 8, 2, 0, 'fresher, 8yr delivering news papers in morning 1.5k, lang is very native. has to check once.', 7, '0000-00-00 00:00:00', 1),
(6502, 6432, 8, 2, 0, 'has to complete telephonic interview. ', 7, '0000-00-00 00:00:00', 1),
(6503, 6414, 8, 4, 0, 'fresher, have done 2m online class in DM, expt 12k. has no idea about the profile. has 21k follower in instagram. communication is below avg.', 7, '0000-00-00 00:00:00', 1),
(6504, 6414, 69, 5, 0, 'Candidate having Oscillation. ', 8, '2021-09-23 12:34:51', 1),
(6505, 6439, 8, 2, 0, 'fresher, father is a revenue dept inspt, okay wit his skills, job need is doubt. need to check once, fnd of krishna-yet to join.', 7, '0000-00-00 00:00:00', 1),
(6506, 6410, 8, 4, 0, 'fresher, check with his tech skills, term and sal not shared with candidate', 7, '0000-00-00 00:00:00', 1),
(6507, 6304, 8, 5, 0, 'very fresher, doesnt know basics, not okay with terms and conditions. expt 14-15k.', 7, '0000-00-00 00:00:00', 1),
(6508, 6410, 69, 2, 0, 'Task yet to be shared properly', 8, '2021-09-23 05:46:27', 1),
(6509, 6449, 8, 4, 3, 'fresher for us no sales exp. good in communication and convincing, Recently married can work 1-1.5yr. expt 20k. ', 7, '0000-00-00 00:00:00', 1),
(6510, 6448, 8, 4, 3, 'fresher for sales, has core exp 1.5yr 14k and okay with calling profile and expt is 13k. no 2w and laptop will arrange asap.', 7, '0000-00-00 00:00:00', 1),
(6511, 6447, 8, 4, 0, 'fresher, came by simply jpr youtube. from rameshwaram willing to learn and need to discuss with family regarding internship. check with his tech skills.', 7, '0000-00-00 00:00:00', 1),
(6512, 6446, 8, 4, 0, 'Fresher, Came By Simply Jpr Youtube. From Rameshwaram Willing To Learn and okay with internship. Check With His Tech Skills.', 7, '0000-00-00 00:00:00', 1),
(6513, 6445, 8, 5, 0, 'very slow, will ot suite for voice process.', 7, '0000-00-00 00:00:00', 1),
(6514, 6441, 8, 4, 0, '1yr trainee in tvs tech 15k, no relevant exp and expt is 16-18k. ', 7, '0000-00-00 00:00:00', 1),
(6515, 6435, 8, 5, 0, 'was working in printer service like filling ink and installation for past 6yrs. will not suite for designing. learning fullstalk and expt 12-15k', 7, '0000-00-00 00:00:00', 1),
(6516, 6429, 8, 5, 0, 'has 1yr exp in testing, learning php doesnt know basics. expt is 3l, sal and terms not shared with him.', 7, '0000-00-00 00:00:00', 1),
(6517, 6413, 8, 4, 0, 'fresher, sid knows basics in designing. check with his tech skills. ', 7, '0000-00-00 00:00:00', 1),
(6518, 6443, 8, 5, 0, 'Fresher, Doesnt Know Basics In Php. From alapakkam Too Long. Expt Is 13-15k, Terms Not Shared With Her.', 7, '0000-00-00 00:00:00', 1),
(6519, 6426, 8, 5, 0, 'fresher, doesnt know basics in php. from kundrathur too long. expt is 13-15k, terms not shared with her.', 7, '0000-00-00 00:00:00', 1),
(6520, 6449, 71, 4, 0, 'Profile- Good\nFamily Background-Good \nage-29, Newly married \nInsurance knowledge - Average \nSales skill - Average\nLast salary in chennai - 15k take home\nExpectation salary - Above 20k take home. ', 8, '2021-09-24 01:09:30', 1),
(6521, 6449, 18, 7, 4, 'Selected for Santosh Team. Ready to Join on Monday. Expected salary is 20K net+ PF. Please check and close', 71, '2021-09-24 01:20:15', 1),
(6522, 6448, 53, 7, 0, 'Selected for RE, First 2 months he is ok with telecalling becz of bike issue, after two month he ll go for appt, sal 10k, once he promoted as RE need to increase his takehome salary 2k to 3 k already discussed wioth the candidate', 8, '2021-09-24 02:32:15', 1),
(6523, 6447, 27, 5, 0, 'No Response.', 8, '2021-09-24 05:16:11', 1),
(6524, 6446, 54, 1, 0, NULL, 8, '2021-09-24 05:25:10', 1),
(6525, 6441, 69, 5, 0, 'Candidate only exposure in Auto CAD xxamp High salary expectation ', 8, '2021-09-24 05:40:07', 1),
(6526, 6404, 8, 4, 0, 'has 1yr exp in iob backend, learning designing and father x-service and expt 15k. terms and conditions not shared with him.', 7, '0000-00-00 00:00:00', 1),
(6527, 6404, 69, 4, 0, 'candidate task is good', 8, '2021-09-24 05:42:16', 1),
(6528, 6430, 8, 5, 0, ' Was Working In Printer Service Like Filling Ink And Installation For Past 6yrs. Will Not Suite For Designing. Learning Fullstalk And Expt 12-15k', 7, '0000-00-00 00:00:00', 1),
(6529, 6413, 69, 2, 0, 'Has to complete task', 8, '2021-09-24 06:05:10', 1),
(6530, 6410, 69, 5, 0, 'Candidate wont suit our team. Task too was not good', 69, '2021-09-24 06:40:25', 1),
(6531, 6448, 59, 3, 0, 'Selected for elite - Priyanka Team in Consultant Cash mode. He will arrange bike in next 2-3 months, if arranged will be handling RE role and his salary will be revised with the increment of 2-3K(Overall CTC, should try him with PF/ESI)', 53, '2021-09-25 10:25:35', 1),
(6532, 6453, 58, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(6533, 6125, 29, 7, 2, 'esales RM, karthika team, salary refer resume, hike of 1k-2k in 2 months biz Performance ', 8, '2021-09-25 03:55:54', 1),
(6534, 6125, 8, 4, 0, 'Check fir RM esale ', 8, '2021-09-25 03:55:54', 1),
(6535, 6317, 59, 5, 0, 'No C# Exp,2.5 yrs in VB.Net only .Notice Period is 60 Days', 60, '0000-00-00 00:00:00', 1),
(6536, 6125, 59, 3, 0, 'Selected for Esales KArthika Team in CAFSInfotech Prop.Salary will be revised based on the target of 1.5L for a month overall 3 L in 2 months achieved - 2K increase', 29, '2021-09-27 10:00:24', 1),
(6537, 6455, 8, 4, 3, 'has 8m exp in loan renewal calling 13k, due to sal issues he relived. expt 12-13k. apart from script he is not speaking up. check once', 7, '0000-00-00 00:00:00', 1),
(6538, 6440, 8, 5, 0, 'has around 7yr exp in core job, still as machine operator 12k and expt 12-15k. done 6m course in designing and no portfolio with him. ', 7, '0000-00-00 00:00:00', 1),
(6539, 6438, 8, 5, 0, 'frehsr, 6m course in designing, doesnt know basics. expt 15k, from thindivanam and will come office from there if required will stay in thambaram. terms and conditions not shared with him.', 7, '0000-00-00 00:00:00', 1),
(6540, 6455, 14, 7, 0, 'salary 10.5k need to confirm joining date', 8, '2021-09-27 12:01:49', 1),
(6541, 6417, 8, 4, 0, 'fresher, learnt through udemy expt 3l after training. from salem and will stay with his friend in guindy, father xservice man and mother in SBI.', 7, '0000-00-00 00:00:00', 1),
(6542, 6417, 54, 1, 0, NULL, 8, '2021-09-27 12:30:29', 1),
(6543, 6455, 59, 3, 0, 'Selected for Priyanka Jenit Team in Cash mode - 5% deductions', 14, '2021-09-27 03:53:35', 1),
(6544, 5024, 8, 5, 0, 'no response', 8, '2021-09-27 05:35:43', 1),
(6545, 5020, 8, 5, 0, 'no response', 8, '2021-09-27 05:36:12', 1),
(6546, 4999, 8, 5, 0, 'no response', 8, '2021-09-27 05:36:29', 1),
(6547, 5018, 8, 5, 0, 'no response', 8, '2021-09-27 05:36:50', 1),
(6548, 4995, 8, 5, 0, 'no response', 8, '2021-09-27 05:37:09', 1),
(6549, 6462, 8, 4, 0, 'fresher for calling, was doing his part time job, job need expt is 12k but okay with 10k.', 7, '0000-00-00 00:00:00', 1),
(6550, 6462, 53, 7, 0, 'Selected for CRM thiruvallur. Sal 10k take home , pls cnfrm DOJ', 8, '2021-09-28 11:38:00', 1),
(6551, 6459, 8, 5, 0, 'we are looking for fresher, has 1yr in ui and 1yr in fullstack 17k, expt is 25k, knows the concept but right. terms and conditions and salary details not shared.', 7, '0000-00-00 00:00:00', 1),
(6552, 6458, 18, 7, 0, 'Selected as BDM with 8.5L CTC', 60, '0000-00-00 00:00:00', 1),
(6553, 6458, 59, 3, 0, 'Selected as Cluster Head - CTC committed by Suresh includes all deductions as per company policy', 18, '2021-09-28 12:54:57', 1),
(6554, 6432, 8, 5, 0, 'okay with priyanka and banu was rejected in telephonic by dhanalakshim. ', 8, '2021-09-28 01:01:38', 1),
(6555, 6439, 8, 5, 0, 'will not join. his friend krishna left', 8, '2021-09-28 01:02:19', 1),
(6556, 6335, 8, 5, 0, 'no response.', 8, '2021-09-28 01:02:40', 1),
(6557, 6462, 59, 2, 0, 'Discussed with the candidate and shared the salary breakup, candidate need to get the confirmation from his family, Based on his update will approve the same', 53, '2021-09-28 02:16:28', 1),
(6558, 6467, 8, 5, 0, 'has 3yr exp in sales-credit card, expt 17-18k, will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(6559, 6465, 8, 5, 0, 'fresher, married 2yrs b4, 10-12k, husband in tvs as boff. avg profile, willing to work.', 7, '0000-00-00 00:00:00', 1),
(6560, 6390, 8, 5, 0, 'fresher, all his 3 bro working in it, he is gng class in race for ssc and banking, can work for 6m. will not sustain. interested to study cryptography. ', 7, '0000-00-00 00:00:00', 1),
(6561, 6437, 8, 5, 0, '1m internship in front end, very dull and father is SI in 1000 lights. expt 2.5l ', 7, '0000-00-00 00:00:00', 1),
(6562, 6463, 8, 5, 0, 'Fresher, Doesnt Knows Basics In Ui/Ux, From Pondy Will Not Suite For our process.', 7, '0000-00-00 00:00:00', 1),
(6563, 6464, 8, 5, 0, '6m course and doesnt knows bsics and very dull, terms and conditions not shared with candidate. ', 7, '0000-00-00 00:00:00', 1),
(6564, 6469, 8, 5, 0, 'fresher, doesnt knows basics in ui/ux, from pondy will not suite for our process. ', 7, '0000-00-00 00:00:00', 1),
(6565, 6470, 8, 5, 0, 'from pollachi, fresher expt is 16k, no convincing and sales skill. ', 7, '0000-00-00 00:00:00', 1),
(6566, 6471, 8, 2, 0, 'has 2m exp in field sales-book selling, expt 13k and okay with 10k.', 7, '0000-00-00 00:00:00', 1),
(6567, 6462, 59, 3, 0, 'Selected for Tiruvallur Location in cash mode. Candidate seems to be Doubtful, he looks for travel allowances and all.', 59, '2021-09-29 01:10:45', 1),
(6568, 6413, 69, 5, 0, 'No response from candidate\n', 69, '2021-09-29 04:01:48', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(6569, 6466, 8, 5, 0, 'fresher, done 6m online course and knows basics in ux, expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(6570, 6457, 8, 4, 0, 'fresher, knows basics in php, willing to learn, okay with company norms and expt is 10k. okay for internship.', 7, '0000-00-00 00:00:00', 1),
(6571, 6457, 27, 7, 0, 'Fresher. okay for an internship. 3 years service agrement. 1st 3 months intern and the pay is 3.5K. after three months will be 8K.', 8, '2021-09-30 06:18:55', 1),
(6572, 6482, 8, 4, 3, 'no degree, was doing events in part time and 8m exp in hdfc loan 10k relived due to sal issue, okay with calling, expt 13k and okay with 10-10.5k.', 7, '0000-00-00 00:00:00', 1),
(6573, 6482, 13, 7, 4, 'ctc - 10.5k ,joining Date - 5th October', 8, '2021-10-04 12:16:00', 1),
(6574, 6482, 59, 3, 0, 'Selected for Muthu Team in Cash mode, no graduation, only 12th long experiences in Event Management.only 8 months exp in telecall, let us try but 5050', 13, '2021-10-04 12:41:49', 1),
(6575, 6475, 8, 5, 0, 'fresher, portfolio is below avg, expt 15k, okay with company norms, interested in uI and very basic knowledge in ux and ui too.', 7, '0000-00-00 00:00:00', 1),
(6576, 6485, 73, 7, 0, 'salary 10k, voice clarity average ,job need . confirm joining date.', 7, '0000-00-00 00:00:00', 1),
(6577, 6486, 73, 7, 0, 'salary 10k , immediate joining laptop ok, voice clarity better. confirm joining date', 7, '0000-00-00 00:00:00', 1),
(6578, 6488, 73, 7, 0, 'immediate joining , laptop ok, salary 10k , confirm joining date', 7, '0000-00-00 00:00:00', 1),
(6579, 6492, 8, 5, 0, 'fresher, will learn and come.', 7, '0000-00-00 00:00:00', 1),
(6580, 6422, 8, 4, 0, 'communication below avg, fresher for dm and knows only basics. expt is 20k+.', 7, '0000-00-00 00:00:00', 1),
(6581, 6485, 59, 2, 0, 'candidate is outside, will give a call back', 73, '2021-10-04 04:13:58', 1),
(6582, 6486, 59, 2, 0, 'RNR', 73, '2021-10-04 04:16:20', 1),
(6583, 6488, 59, 2, 0, 'Voice not audible ,candidate was outside', 73, '2021-10-04 04:17:58', 1),
(6584, 6422, 69, 5, 0, 'No knowledge with respect to learning experience', 8, '2021-10-04 06:14:51', 1),
(6585, 6486, 59, 3, 0, 'Selected for Tiruvallur location, Communication is Good. but long stay from the candidate is doubtful. He is from EEE background but he focus much into the IT openings. Selected in Cash mode', 59, '2021-10-04 06:29:46', 1),
(6586, 6485, 59, 2, 0, 'Discussed with the candidate, sustainability doubts as the Reporting Manager suggested. Need some time to give us the confirmation', 59, '2021-10-04 06:39:20', 1),
(6587, 6498, 59, 4, 0, 'Communication ok, no relevant Expr in Sales. Internal Team Reference. Check for RM/E sales', 60, '0000-00-00 00:00:00', 1),
(6588, 6499, 59, 4, 0, '5050 profile, fresher need to open up a lot ,check for Elite RE', 60, '0000-00-00 00:00:00', 1),
(6589, 6500, 59, 4, 0, 'Having telesales Exp,but not open for Field Sales RE, Salary is high for Elite RE, please do check and give your suggestions', 60, '0000-00-00 00:00:00', 1),
(6590, 6497, 59, 2, 0, 'Discussed and shared the salary projection for her confirmation. Once confirmed will update the same', 60, '0000-00-00 00:00:00', 1),
(6591, 6488, 59, 2, 0, 'RNR', 59, '2021-10-05 03:30:03', 1),
(6592, 6497, 13, 7, 4, '11.5k ctc,kindly confirm joining Date', 59, '2021-10-05 03:33:15', 1),
(6593, 6498, 29, 1, 0, NULL, 59, '2021-10-05 03:35:41', 1),
(6594, 6499, 13, 8, 0, 'not attend the interview', 59, '2021-10-05 03:40:06', 1),
(6595, 6500, 13, 5, 2, 'not fit for telesales', 59, '2021-10-05 03:41:37', 1),
(6596, 4154, 59, 2, 0, 'Discussed,candidate will share the payslip and the other documents,once received will confirm the CTC and update', 18, '2021-10-05 07:17:38', 1),
(6597, 6404, 59, 3, 0, '3 months unpaid intern,3 months paid intern and 3 yrs employment', 69, '2021-10-06 09:54:04', 1),
(6598, 6501, 59, 5, 0, 'Fresher, Not much comfortable with TxxampC. Need time to check with Family', 50, '0000-00-00 00:00:00', 1),
(6599, 6503, 59, 5, 0, 'Fresher, Not Much Comfortable With TxxampC. Need Time To Check With Family', 50, '0000-00-00 00:00:00', 1),
(6600, 6395, 59, 2, 0, 'Fresher candidate,Self Learned, will give his confirmation on the TxxampC.', 50, '0000-00-00 00:00:00', 1),
(6601, 6507, 74, 5, 0, 'wrongly updated , by mistake rejected not performing well and not suite for telesales ,,,n voice clarity', 50, '0000-00-00 00:00:00', 1),
(6602, 6508, 73, 7, 0, 'selected , confirm joining date. discuss with salary 12k so salary also confirm to this candidate. having laptop ', 50, '0000-00-00 00:00:00', 1),
(6603, 6509, 59, 4, 0, 'Experience in Credit Card/Vodafone /Kotak Health Insurance Sales. Seems to have an attitude, Holding multiple offers and look for some more. Sustainability Doubts. please do check your suitability', 50, '0000-00-00 00:00:00', 1),
(6604, 6490, 59, 4, 0, 'Fresher, basic knowledge in PHP, ok with terms and conditions.Seems to get developed if trained. Kndly check and confirm', 60, '0000-00-00 00:00:00', 1),
(6605, 6473, 59, 4, 0, 'Having Freelance exp, Career Gap, kindly check and confirm ', 50, '0000-00-00 00:00:00', 1),
(6606, 6510, 74, 7, 3, 'well profiled highly job need , salary 10k, try to prepare govt job,, but now financial crisis so job need ,having laptop, 7/10/21 joining kindly check once..', 50, '0000-00-00 00:00:00', 1),
(6607, 6507, 74, 5, 0, 'wrongly updated , by mistake rejected not performing well and not suite for telesales ,,,n voice clarity', 74, '2021-10-06 12:58:33', 1),
(6608, 6510, 59, 3, 0, 'Selected for Tanjore Location in cash Mode', 74, '2021-10-06 01:11:36', 1),
(6609, 6508, 59, 3, 0, 'Selected for Tiruvallur Location in Cash mode. Candidate Communication is good and have store Sales exp along with Telesales Exp.', 73, '2021-10-06 01:13:21', 1),
(6610, 6509, 11, 1, 0, NULL, 59, '2021-10-06 01:13:35', 1),
(6611, 6473, 27, 5, 0, 'No Response.', 59, '2021-10-06 01:18:40', 1),
(6612, 6490, 27, 5, 0, 'No Response.', 59, '2021-10-06 01:19:47', 1),
(6613, 4154, 59, 3, 0, 'Selected for Raj Team, candidate shared his previous company documents. We offered the same cost what he was getting earlier', 59, '2021-10-06 03:57:34', 1),
(6614, 6497, 59, 2, 0, 'Discussed and shared the salary projection for her confirmation. Once confirmed will update the same', 13, '2021-10-06 06:36:05', 1),
(6615, 6515, 59, 5, 0, 'Fresher, Career Gap, No basic knowledge will not sustain with us for a long', 60, '0000-00-00 00:00:00', 1),
(6616, 6520, 8, 4, 3, 'fresher from thiruvarur, will relocate to Thanjavur. parents farmer, job need and expt is 10k. has a laptop.', 7, '0000-00-00 00:00:00', 1),
(6617, 6520, 74, 7, 3, 'he is talk active and highly job need, salary 10 k , relocate to thanjavur brother house native tiruvarur, bike and laptop available, monday 11-10-21 joining kindly check and confirm ', 8, '2021-10-07 06:32:03', 1),
(6618, 6520, 59, 3, 0, 'Selected for Tanjore Location in cAsh Mode\n', 74, '2021-10-07 07:51:49', 1),
(6619, 6513, 73, 7, 0, 'move to next round \ncheck sustainability xxamp pressure handling ', 50, '0000-00-00 00:00:00', 1),
(6620, 6513, 14, 7, 0, 'Salary 10k . confirm joining date', 73, '2021-10-08 10:49:26', 1),
(6621, 6513, 59, 2, 0, 'Discussed and shared the salary break up for candidate confirmation. Once done will update', 14, '2021-10-08 11:25:14', 1),
(6622, 6506, 8, 5, 0, 'fresher, already doing his internship and 5k . 6m internship and completed 2m. small company and not willing to join there. no basic knowledge in tech skills. expt 2L. not okay with agreement. ', 50, '0000-00-00 00:00:00', 1),
(6623, 6527, 8, 5, 0, 'has 1 ye exp in calling and 3yr exp in backend. will not suite for sales profile and handle pressure. expt is 13k.', 7, '0000-00-00 00:00:00', 1),
(6624, 6526, 8, 5, 0, 'Was Working In Hdb Fin For 3m With 10k And Expt 13-15k. will not handle sales pressure.', 7, '0000-00-00 00:00:00', 1),
(6625, 6525, 8, 5, 0, 'done mcom and prefers non voice and acc and fin job. time being looking for job in voice process. will not sustain. was working in hdb fin for 3m with 10k and expt 12-13k.', 7, '0000-00-00 00:00:00', 1),
(6626, 6485, 59, 5, 0, 'Candidate Didnxquott turn with his response, Even tried reaching him to get his confirmation but no response', 59, '2021-10-08 02:20:05', 1),
(6627, 6488, 59, 5, 0, 'discussed and projected the salary,. need to get his confirmation. Tried couple of times but there is no response from the candidate', 59, '2021-10-08 02:21:22', 1),
(6628, 6471, 8, 5, 0, 'not turned up', 8, '2021-10-08 02:46:48', 1),
(6629, 6433, 8, 5, 0, 'no response and update', 8, '2021-10-08 02:47:22', 1),
(6630, 6010, 8, 5, 0, 'not turned up', 8, '2021-10-08 02:47:58', 1),
(6631, 5900, 8, 5, 0, 'Not Turned Up', 8, '2021-10-08 02:48:19', 1),
(6632, 5880, 8, 5, 0, 'Not Turned Up', 8, '2021-10-08 02:50:46', 1),
(6633, 6449, 59, 3, 0, 'Selected for Santhosh Team with PF/PT Deductions.', 18, '2021-10-08 02:53:03', 1),
(6634, 5305, 8, 5, 0, 'no response', 8, '2021-10-08 02:57:54', 1),
(6635, 5292, 8, 5, 0, 'no response', 8, '2021-10-08 02:58:32', 1),
(6636, 5231, 8, 5, 0, 'will not suite for our process, age doesnt match. expt is high', 8, '2021-10-08 02:59:28', 1),
(6637, 6533, 40, 4, 0, 'Fresher, communication above average, expectation is 22k take home location Khammam can migrate from their to Hyderabad on immediate basis and can able to join our company on 18th Oct. Having a Laptop and Bike.', 50, '0000-00-00 00:00:00', 1),
(6638, 6533, 18, 7, 0, 'Selected for Veben team with 2.6L CTC. Candidate wished to discusss with his mother and will confirm his joining by Saturday and ready to join on monday 25th Oct', 40, '2021-10-08 04:26:53', 1),
(6639, 6513, 59, 3, 0, 'Selected for Tiruvallur Location in Cash Mode-Fresher for telesales-Communication is Good,She much focus into Medical Lab field(long Stay 5050)', 59, '2021-10-08 05:25:54', 1),
(6640, 6524, 59, 5, 0, 'Only knowledge in Adobe XD, Figma. Not open to learn new skills of UI, Salary Expectation is very high. Will not sustain with us for a long', 60, '0000-00-00 00:00:00', 1),
(6641, 6511, 59, 2, 0, 'Selected for Mern Stack Profile with 1 month unpaid then 5 months paid intern and 8k Salary starts post completion of intern 3.6 SA - Inetrviewed by Arun, George, Kavya xxamp Final round with Gokul', 60, '0000-00-00 00:00:00', 1),
(6642, 6537, 8, 4, 0, '2017 batch, fresher for us and check for crm. check with sustainability once. expt 10k. has laptop.', 7, '0000-00-00 00:00:00', 1),
(6643, 6537, 74, 7, 3, 'she already worked in sales field 6 month....father crc conductor..she is intrested in govt job and completed special coaching also...salary 10 k have laptop...completed bE in anna university,,,,mech department,,monday joining kindly check once', 8, '2021-10-09 01:24:01', 1),
(6644, 6537, 59, 3, 0, 'Selected for Thanjavur Location in Cash mode', 74, '2021-10-09 04:42:34', 1),
(6645, 6542, 8, 4, 0, '6m collection in ICICI and 1yr in jubiliant insurance back end 12.5k (chennai), father into construction(worker), sis working in icici collection chennai. will arrange laptop. expt 10-11k. immediate joiner.', 60, '0000-00-00 00:00:00', 1),
(6646, 6542, 74, 7, 3, 'she is experienced 1 year in insurance collection and icici bank accounts chennai 6 months...due to hostel food health issue....near by office to home 1 km only....fit for telesales have laptop need to take home 10k salary but check once and confirm sister also working in chennai telesales field job need only and brother studing in college kindly check once and confirm joining monday 11/10/21', 8, '2021-10-10 12:23:15', 1),
(6647, 6542, 59, 3, 0, 'Selected for Thanjavur Location in Cash mode.Not much relevant Exp,she has experiences working in chennai,due to health condition. she focus in her native location', 74, '2021-10-10 12:39:11', 1),
(6648, 6536, 59, 5, 0, 'Candidate communciation is Good have Exp in Matrimony Telecall. He is having health issue(Taking treatment for TB. We are dropping this candidate because of the health issue', 60, '0000-00-00 00:00:00', 1),
(6649, 6502, 59, 5, 0, 'Fresher, too long around 62 kms up and down. Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(6650, 6517, 59, 4, 0, 'Fresher, Seems ok in UX design skills,can check for UX designer profile.ok with TxxampC, but she needs to confirm the same with her family', 50, '0000-00-00 00:00:00', 1),
(6651, 6514, 59, 4, 0, 'Fresher,seems good in Designing but the salary expectation is very high. Can check for UX Design', 60, '0000-00-00 00:00:00', 1),
(6652, 6521, 59, 5, 0, '1 yr exp in UX designing but not much skilled,not open for the txxampC, not ready to submit the documents. Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(6653, 6530, 59, 5, 0, 'Around 1.9 yrs exp in UX designing,frequent Job changer changed 2 companies and the salary expectation is very high.Not much comfortable with TxxampC,Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(6654, 6543, 59, 4, 0, 'Fresher for DM,\nCommunication is ok,Having basic knowledge in DM. Can check for Digital marketing. required time to give confirmation on the TxxampC', 60, '0000-00-00 00:00:00', 1),
(6655, 6517, 69, 2, 0, 'Task has been assigned to recreate cafsmoney.com', 59, '2021-10-11 03:49:40', 1),
(6656, 6514, 69, 2, 0, 'Task assigned to recreate cafsMoney.com website', 59, '2021-10-11 03:51:26', 1),
(6657, 6543, 69, 2, 0, 'Task given for meme marketing template and content Writing.', 59, '2021-10-11 04:06:36', 1),
(6658, 6457, 59, 3, 0, 'Fresher. Okay For An Internship. 3 Years Service Agrement. 1st 3 Months Intern And The Pay Is 3.5k. After Three Months Will Be 8k.', 27, '2021-10-12 10:05:13', 1),
(6659, 6531, 59, 3, 0, 'Selected for digital Marketing Profile with 6 months intern then 2.6 yrs service overall 3 yrs SA.', 60, '0000-00-00 00:00:00', 1),
(6660, 6548, 59, 5, 0, 'Communication ok but the candidate much prefer for non voice only, will not suits for our sakes.', 60, '0000-00-00 00:00:00', 1),
(6661, 6531, 69, 4, 0, 'Gokul sir has interviewed the candidate and shortlisted. Task been given and completed.', 59, '2021-10-12 01:43:35', 1),
(6662, 6531, 59, 3, 0, 'Selected for digital Marketing Profile with 6 months intern then 2.6 yrs service overall 3 yrs SA.', 69, '2021-10-12 01:45:04', 1),
(6663, 6517, 69, 5, 0, 'Not okay with Package and Bond', 69, '2021-10-13 10:25:32', 1),
(6664, 6514, 69, 5, 0, 'Not okay with package and bond', 69, '2021-10-13 10:27:41', 1),
(6665, 6106, 8, 5, 0, 'no response', 69, '2021-10-13 10:30:21', 1),
(6666, 6543, 69, 5, 0, 'No response from candidate', 69, '2021-10-13 10:52:05', 1),
(6667, 6550, 8, 4, 0, 'fresher, job need we need to train him, okay with field sales and no laptop, check once with pressure handling. ', 50, '0000-00-00 00:00:00', 1),
(6668, 6556, 8, 5, 0, 'during interview was looking in to mobile and using it. will not suite for us and age is 19 and not completed 12th, no sustainability.', 7, '0000-00-00 00:00:00', 1),
(6669, 6555, 8, 5, 0, 'attitude is not upto the level, no sustainability, 3m in spa and 3m in hdfs absconded due to over pressure. she will not handle sales pressure.', 7, '0000-00-00 00:00:00', 1),
(6670, 6554, 8, 5, 0, 'completed her LLb waiting for her placement, doing her online process and will not sustain bcoz expt is 13k min. has 1yr exp in acc opening 15k.', 7, '0000-00-00 00:00:00', 1),
(6671, 6553, 8, 5, 0, 'completed his bsw, no listening and understanding, will not suite for our process, expt is 15k', 7, '0000-00-00 00:00:00', 1),
(6672, 6550, 19, 5, 1, 'Not Fit', 8, '2021-10-13 12:46:27', 1),
(6673, 6497, 59, 3, 0, 'Selected for Thanjavur Location in Cash mode, Will get relieve from her current company this week only', 59, '2021-10-13 02:43:29', 1),
(6674, 6562, 59, 4, 0, 'Fresher,No Sales Knowledge,Job Need Is High, Sustainability Doubts -5050 Profle, Please Do Check For Elite RE', 60, '0000-00-00 00:00:00', 1),
(6675, 6562, 13, 5, 0, 'Salary Not Satisfied\n', 59, '2021-10-13 04:59:33', 1),
(6676, 6565, 59, 2, 0, '1 year exp in Stock from Arakonnam location, Second round interviewed by Gokul and the profile is on Hold', 60, '0000-00-00 00:00:00', 1),
(6677, 6564, 69, 2, 0, 'Below average candidate, Both in Communication and knowledge.', 50, '0000-00-00 00:00:00', 1),
(6678, 6511, 59, 5, 0, 'candidate didnt turn on the day of joining as we commit with him', 59, '2021-10-16 10:16:37', 1),
(6679, 5456, 8, 5, 0, 'no response', 69, '2021-10-16 11:48:31', 1),
(6680, 6573, 59, 3, 0, 'Selected for Muthu team in cash mode', 60, '0000-00-00 00:00:00', 1),
(6681, 6577, 59, 5, 0, 'Fresher, Attitude is not good,Will not sustain and handling pressure doubtful', 60, '0000-00-00 00:00:00', 1),
(6682, 6574, 59, 3, 0, 'Selected for Muthu Team in Cash mode', 60, '0000-00-00 00:00:00', 1),
(6683, 6579, 59, 4, 0, 'Have Sales Exp in Star Health,communication is Average ,5050 profile kindly check for elite', 60, '0000-00-00 00:00:00', 1),
(6684, 6575, 59, 4, 0, 'Have sales Exp in Star health products, Communication is ok, check for Elite RE', 60, '0000-00-00 00:00:00', 1),
(6685, 6573, 13, 7, 4, 'OK,10K SALARY MONDAY JOINING', 59, '2021-10-16 04:02:54', 1),
(6686, 6574, 13, 7, 4, 'OK,10.5K SALARY MONDAY JOINING', 59, '2021-10-16 04:04:44', 1),
(6687, 6575, 13, 5, 0, 'Hold on long pending', 59, '2021-10-16 04:09:45', 1),
(6688, 6579, 13, 5, 0, 'NOT FIT FOR TELESALES', 59, '2021-10-16 04:12:22', 1),
(6689, 6573, 59, 3, 0, 'Selected for Muthu team in cash mode', 13, '2021-10-16 04:57:58', 1),
(6690, 6574, 59, 3, 0, 'Selected for Muthu Team in Cash mode', 13, '2021-10-16 05:00:29', 1),
(6691, 6580, 41, 5, 0, 'Communication is not good. will not suite for hr profile', 50, '0000-00-00 00:00:00', 1),
(6692, 6495, 27, 5, 0, 'If rejected because donxquott answering a basic php and mysql questions,', 50, '0000-00-00 00:00:00', 1),
(6693, 6564, 69, 2, 0, 'Will finalise if no other candidates suit.', 69, '2021-10-18 02:58:12', 1),
(6694, 6590, 41, 5, 0, 'coming from pond. will not suite for our Profile. no communication', 50, '0000-00-00 00:00:00', 1),
(6695, 6589, 41, 5, 0, 'coming from cuddalore. No english communication will not syuite for our profile', 50, '0000-00-00 00:00:00', 1),
(6696, 6592, 8, 5, 0, 'looking for job in IT-android, expt is 18k. not interested in calling.', 7, '0000-00-00 00:00:00', 1),
(6697, 6593, 8, 5, 0, 'looking for job in collection and not interested in calling.', 7, '0000-00-00 00:00:00', 1),
(6698, 6591, 8, 5, 0, 'looking for job in chat support, not interested in calling.', 7, '0000-00-00 00:00:00', 1),
(6699, 6586, 8, 2, 0, 'for telephonic.', 7, '0000-00-00 00:00:00', 1),
(6700, 6595, 41, 4, 0, 'interviewed by jennifer. check sustainability and salary', 50, '0000-00-00 00:00:00', 1),
(6701, 6587, 41, 4, 3, 'for thiruvallur location. need to check salary and sustainability', 50, '0000-00-00 00:00:00', 1),
(6702, 6588, 41, 4, 3, 'for thiruvallur location need to check salasry and sustainability ', 50, '0000-00-00 00:00:00', 1),
(6703, 6587, 14, 7, 0, 'Salary 10.5k kindly confirm joining date', 41, '2021-10-18 03:27:07', 1),
(6704, 6588, 14, 5, 0, 'Selected for thiruvallur location but she not joined yet her friend only joined so profile rejected', 41, '2021-10-18 03:28:48', 1),
(6705, 6595, 13, 5, 0, 'Hold On Long Pending', 41, '2021-10-18 03:30:55', 1),
(6706, 6395, 59, 5, 0, 'didnt turn back with his confirmation on the TxxampC', 59, '2021-10-18 06:53:30', 1),
(6707, 6583, 59, 2, 0, 'Communication Is Ok, Fresher, Open For The TxxampC, 5050 profile,came along with his friend, Gokul need to analyse the profile and decide', 60, '0000-00-00 00:00:00', 1),
(6708, 6585, 59, 2, 0, 'Communication is Good, fresher, open for the TxxampC, but the location is almost 30 KMS up and down.', 60, '0000-00-00 00:00:00', 1),
(6709, 6603, 59, 2, 0, 'Fresher for HR, Communication ok,being fresher her salary exp min 15k can come down to 13K.Max 2 yrs ok with TxxampC. No Parents ,Grandparents insisting her to take care of their business.5050 profile. From Porur she needs to travel', 60, '0000-00-00 00:00:00', 1),
(6710, 6607, 59, 5, 0, 'Not Suits for our Sales profile. candidate focusing towards his own business. Will not sustain and handle the pressure.', 60, '0000-00-00 00:00:00', 1),
(6711, 5504, 59, 5, 0, 'Freelancer,have a plan to continue his freelance options,Salary Exp is very Hgih,open only for 1 year SA.Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(6712, 5155, 59, 5, 0, 'Have CRM exp, No Voice Clarity, Frequent Job changer. Too long distance around 60KMS up and down .Even for Tiruvallur too long.. will not handle pressure', 60, '0000-00-00 00:00:00', 1),
(6713, 6479, 59, 5, 0, 'Credit Card Sales Exp.Frequent Job Changer,not open for Field Sales,looking only for the CRM level and his exp salary is min 15K.Will not sustain and handling pressure doubtful', 60, '0000-00-00 00:00:00', 1),
(6714, 6603, 59, 2, 0, 'Fresher For HR, Communication Ok,Being Fresher Her Salary Exp Min 15k Can Come Down To 13K.Max 2 Yrs Ok With TxxampC. No Parents ,Grandparents Insisting Her To Take Care Of Their Business.5050 Profile. From Porur She Needs To Travel.Gokul Needs To Analyse The Profile And Decide', 59, '2021-10-19 03:43:06', 1),
(6715, 6552, 59, 5, 0, 'Fresher for Mern stack, not open for our TxxampC, he is comfortable only for 2 yrs of SA.will not suits for our role', 50, '0000-00-00 00:00:00', 1),
(6716, 6611, 59, 5, 0, 'Fresher, Candidate seems not much active, will not sustain and handling pressure doubtful.', 50, '0000-00-00 00:00:00', 1),
(6717, 6612, 59, 5, 0, 'Fresher, Besant Tech Candidate, Not much open for TxxampC. Cousins are working in IT companies and have some reference too in their companies. Sustainability doubts with us on this profile', 50, '0000-00-00 00:00:00', 1),
(6718, 6613, 59, 5, 0, 'Fresher, Not open with TxxampC, Need time to check with family, if he comes back will make changes', 50, '0000-00-00 00:00:00', 1),
(6719, 6617, 59, 5, 0, 'Career Gap 2019 Passed out Focusing much for Angular JS Profile. Not much comfort with TxxampC', 50, '0000-00-00 00:00:00', 1),
(6720, 6568, 59, 5, 0, 'From Besant Technologies, Fresher Profile, Not much comfortable with TxxampC. Need to check with his parents', 50, '0000-00-00 00:00:00', 1),
(6721, 6623, 59, 5, 0, 'Fresher, not clear on the profile he applied, No basic knowledge in React. AWS/Java Certified. Looking for AWS Cloud based openings in the future, Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(6722, 6616, 59, 5, 0, 'Fresher,Bad Attitude,No patience,will not fit for our position - Gokul Interviewed him in the 2nd level', 50, '0000-00-00 00:00:00', 1),
(6723, 6563, 74, 5, 1, 'already completed two years experience in mutual fund ....insurance related course also completed...not suit for team', 60, '0000-00-00 00:00:00', 1),
(6724, 6584, 59, 3, 0, 'Selected for Thanjavur, joining date may change. Candidate yet to confirm', 60, '0000-00-00 00:00:00', 1),
(6725, 6584, 74, 7, 3, 'she is active and talkactive...highly intrested in telecalling father passed away one siblings...already selected in tcs but due to family situation not suit to go out of town, ...no laptop....salary 10 k native kumbakonam now relocate to thanjavur relative house...kindly check once sustainability..', 59, '2021-10-20 05:48:16', 1),
(6726, 6615, 73, 7, 0, 'Selected, Already experienced for marketing field,confirm joining date ', 60, '0000-00-00 00:00:00', 1),
(6727, 6564, 69, 5, 0, 'Candidate got a job somewhere else', 69, '2021-10-20 06:09:04', 1),
(6728, 6587, 59, 2, 0, 'Call Waiting', 14, '2021-10-21 11:50:32', 1),
(6729, 6600, 59, 4, 0, 'Fresher,Family need is there,Seems have lot a personal issue,have web development exp(Projects),5050,Not much familiar with UI/UX, Kindly Check for the same', 50, '0000-00-00 00:00:00', 1),
(6730, 6582, 59, 5, 0, 'Fresher,2015 passed out, Worked in different domain, Not much comfortable with TxxampC,Will not sustain for a long', 50, '0000-00-00 00:00:00', 1),
(6731, 6599, 59, 4, 0, 'Fresher,5050 ,only UX design knowledge,seems not much comforts with TxxampC,please do check this profile', 50, '0000-00-00 00:00:00', 1),
(6732, 6614, 59, 5, 0, 'No basic knowledge in UI/UX will not sustain and not suitable for our position. Pressure handling no', 50, '0000-00-00 00:00:00', 1),
(6733, 6631, 59, 5, 0, 'Discussed and shared the salary breakup for candidate confirmation, Not yet received any confirmation from candidate, Tried reaching him couple of times and no responses. Dropped the candidate from selection', 50, '0000-00-00 00:00:00', 1),
(6734, 6615, 59, 2, 0, 'RNR', 73, '2021-10-21 12:11:55', 1),
(6735, 6632, 59, 5, 0, 'Not much comfortable with Tele sales(Voice Process) Salary Exp is high', 50, '0000-00-00 00:00:00', 1),
(6736, 6633, 59, 5, 0, 'communication ok, much prefers for non voice and the salary Exp in high', 50, '0000-00-00 00:00:00', 1),
(6737, 6634, 73, 7, 0, 'Shortlisted, salary package 10k , Confirm joining date', 50, '0000-00-00 00:00:00', 1),
(6738, 6635, 59, 2, 0, 'Have Sales Exp but seems not much confident,Pressure handling Doubtful,Candidate left without attending the 2nd level interview,if he comes back let us check', 50, '0000-00-00 00:00:00', 1),
(6739, 6604, 59, 5, 0, 'Fresher no basic design skill knowledge, he needs time to learn a lot in UI/UX,If candidate comes back we can check and decide', 60, '0000-00-00 00:00:00', 1),
(6740, 6599, 69, 5, 0, 'Not Interested in learning coding.', 59, '2021-10-21 04:22:00', 1),
(6741, 6600, 69, 2, 0, 'The candidate has to share his project, we will review it decide on the next round', 59, '2021-10-21 04:24:16', 1),
(6742, 6631, 57, 4, 4, 'Candidate is ok ..kindly confirm the joining date and salary thanks ', 59, '2021-10-21 04:36:44', 1),
(6743, 6631, 59, 5, 0, 'Discussed and shared the salary breakup for candidate confirmation, Not yet received any confirmation from candidate, Tried reaching him couple of times and no responses. Dropped the candidate from selection', 57, '2021-10-21 05:16:45', 1),
(6744, 6600, 69, 5, 0, 'candidate task not satisfactory.', 69, '2021-10-21 05:38:22', 1),
(6745, 6533, 59, 2, 0, 'Discussed and shared the salary Breakup, Candidate yet to give his confirmation on the Joining Date and the Salary', 18, '2021-10-21 05:45:11', 1),
(6746, 6634, 59, 2, 0, 'RNR', 73, '2021-10-21 07:06:55', 1),
(6747, 6597, 59, 5, 0, 'Exp In Recruitment, Career Gap, Not Much Comfortable With TxxampC ,Seems Little Attitude,Min Exp Is 15K,Not much comfortable with Terms and conditions. Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(6748, 6618, 59, 4, 0, 'Fresher no basic knowledge in Digital Marketing, keen to learn ,check for Digital Marketing', 50, '0000-00-00 00:00:00', 1),
(6749, 6620, 59, 2, 0, '5050 profile,fresher seems interest to learn open with TxxampC, can check for Recruitment', 50, '0000-00-00 00:00:00', 1),
(6750, 6584, 59, 3, 0, 'Selected for Thanjavur, joining date may change. Candidate yet to confirm', 74, '2021-10-22 09:56:05', 1),
(6751, 6645, 59, 5, 0, 'No Communication, no importance for the job, career Gap.Not having any clear ideas whether to step in voice/non voice. Will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(6752, 6622, 59, 2, 0, 'Fresher for Recruitment, have few month exp in HR Activities,can check for recruitment, 5050 sustainability need to see', 60, '0000-00-00 00:00:00', 1),
(6753, 6642, 59, 5, 0, 'Not open for Target oriented positions, will not sustain with us', 60, '0000-00-00 00:00:00', 1),
(6754, 6624, 59, 5, 0, 'Fresher,no basic skills knowledge will not handle our pressure and sustainability doubts wiht us', 50, '0000-00-00 00:00:00', 1),
(6755, 6625, 59, 2, 0, 'Little exp in Recruitment,Not much comfortable with TxxampC need to check with Family,Sustainability Doubts,Location s from Padi', 50, '0000-00-00 00:00:00', 1),
(6756, 6650, 59, 3, 0, 'Selected for Santhosh Team with CTC 375000 includes PF/ESI/PT - No relevant Insurance Sales Exp', 60, '0000-00-00 00:00:00', 1),
(6757, 6618, 69, 8, 0, 'no response from candidate', 59, '2021-10-22 05:06:12', 1),
(6758, 6650, 71, 4, 0, 'He is ok for sales. ', 59, '2021-10-22 05:26:46', 1),
(6759, 6615, 59, 3, 0, 'Selected for Tiruvallur Location,joining date may change as the candidate requesting for joining post Diwali', 59, '2021-10-22 05:37:37', 1),
(6760, 6649, 59, 5, 0, 'No communication,No Sustainability with the previous companies, will not handle pressure and sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(6761, 6654, 17, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(6762, 6587, 59, 2, 0, '126312 - Selected for Tiruvallur Location will come back with her confirmation on Salary', 59, '2021-10-22 06:59:01', 1),
(6763, 6635, 59, 5, 0, ' Have Sales Exp But Seems Not Much Confident,Pressure Handling Doubtful,Candidate Left Without Attending The 2nd Level Interview,If He Comes Back Let Us Check', 59, '2021-10-23 10:40:12', 1),
(6764, 6628, 59, 2, 0, 'Communication ok,keen to learn in HR,Need to comeback with her confirmation,Gokul interviewed her in the 2nd Round', 60, '0000-00-00 00:00:00', 1),
(6765, 6533, 59, 2, 0, 'Discussed with the candidate on 23 Oct yet to get confirmation from his mother,Will update once confirmed', 59, '2021-10-23 06:26:51', 1),
(6766, 6634, 59, 3, 0, 'Selected for Tiruvallur Location,Train travel around 1 hour,not open for SA as Manager requested. Need to analyse her in 7 Days', 59, '2021-10-23 06:33:04', 1),
(6767, 6587, 59, 5, 0, 'Salary Breakup shared and the candidate messaged as not interested after discussing with her grandparents', 59, '2021-10-23 06:40:13', 1),
(6768, 6653, 59, 5, 0, 'Communication OK,Little Stamerring,Sal Exp is very High', 60, '0000-00-00 00:00:00', 1),
(6769, 6655, 59, 5, 0, 'No communication,will not suits for our Digital Marketing,No basic Ideas about DM', 60, '0000-00-00 00:00:00', 1),
(6770, 6652, 59, 5, 0, 'Fresher ,Communication Very Average, Not open with TxxampC Sustainability doubts,', 50, '0000-00-00 00:00:00', 1),
(6771, 6626, 59, 5, 0, 'Fresher,Not much comfortable with TxxampC,Much open for Angular Openings.If he come back need to check and decide', 50, '0000-00-00 00:00:00', 1),
(6772, 6662, 59, 3, 0, 'Selected for Muthu Team Elite RE in CAsh mode - 10K TH', 50, '0000-00-00 00:00:00', 1),
(6773, 6641, 59, 2, 0, 'Fresher Keen to Learn ,have a plan to go abroad for Higher studies after3 yrs, Need time to give his confirmation,If he comes back let us check and consider', 50, '0000-00-00 00:00:00', 1),
(6774, 6662, 13, 7, 4, 'ok10.5k salary,kindly confirm joining date', 59, '2021-10-25 12:25:54', 1),
(6775, 6650, 18, 7, 4, 'Selected for Santosh Team CTC spoken is 3.75L overall. Ready to Join on 1st Nov', 71, '2021-10-25 01:17:10', 1),
(6776, 6662, 59, 3, 0, 'Selected for Muthu Team Elite RE in CAsh mode - 10K TH', 13, '2021-10-25 01:34:51', 1),
(6777, 6637, 59, 5, 0, 'Communication Good, have Exp in US IT Recruitment, Native of Andhra, Much focus on HR Executive and not much comfortable with Terms Conditions, Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(6778, 6644, 59, 5, 0, 'Communication Average, Working for 6 months official notice 30 Days. Focusing on the UPSC exams,Salary Exp is very high,Attended interview around 20 Interviews and not comfortable with the pay they offered. Focus much on the salary. Will not sustain with us for a long', 50, '0000-00-00 00:00:00', 1),
(6779, 6533, 59, 5, 0, 'Candidate need another 2 months to start his career, His mother is not comfortable to allow him to go for work now.Dropped his profile', 59, '2021-10-25 02:53:12', 1),
(6780, 6628, 59, 2, 0, 'Yet to give her confirmation on the offer, need some time, Seems she may back out from the position ', 59, '2021-10-25 04:33:46', 1),
(6781, 6658, 59, 5, 0, 'Communication very Average,No basic knowledge in Digital Marketing,Too Long,Sustainability doubts as he requires time to check with his family on 2 yrs SA', 50, '0000-00-00 00:00:00', 1),
(6782, 6667, 73, 7, 0, 'selected , salary 11k fixed, confirm joining date.', 50, '0000-00-00 00:00:00', 1),
(6783, 6670, 53, 4, 0, 'ok for Renewals department, he is thinking for 2 yrs bond', 50, '0000-00-00 00:00:00', 1),
(6784, 6671, 53, 5, 0, 'not suit for telecalling', 50, '0000-00-00 00:00:00', 1),
(6785, 6650, 59, 3, 0, 'Selected for Santhosh Team with CTC 375000 includes PF/ESI/PT - No relevant Insurance Sales Exp', 18, '2021-10-26 12:47:46', 1),
(6786, 6668, 59, 5, 0, 'Communication Sounds very average,have a retail sales exp.Pressure handling doubts in our domain..Will not sustain for our role', 60, '0000-00-00 00:00:00', 1),
(6787, 6667, 59, 2, 0, 'Have Exp in Star health Sales,attended interview along with her sister,she needs time to check with the family as her elder sister suggested this opening and got rejected in the interview.She will give her confirmation tomorrow\n', 73, '2021-10-26 02:59:13', 1),
(6788, 6651, 59, 5, 0, 'Communication ok,Fresher career Gap ,Need to discuss with family on TxxampC,Sustainability doubts as she may get married in next 1 yr of time', 50, '0000-00-00 00:00:00', 1),
(6789, 6670, 59, 2, 0, 'Candidate need to come back with his confirmation after discussing with his parents', 53, '2021-10-26 03:39:54', 1),
(6790, 6672, 59, 4, 0, '5050 profile,communication very average,check for Elite Muthu team', 60, '0000-00-00 00:00:00', 1),
(6791, 6672, 53, 5, 0, 'Wont suit for sales', 59, '2021-10-26 06:52:20', 1),
(6792, 6620, 59, 5, 0, 'Candidate not interstetd with the TxxampC,Didnt turn back for the 2nd round', 59, '2021-10-26 07:09:26', 1),
(6793, 6622, 59, 5, 0, 'Not responding to the calls,requested her to come for 2nd round but didnt turn for the interview', 59, '2021-10-26 07:10:14', 1),
(6794, 6628, 59, 5, 0, 'Discussed with the candidate and she is continuing with the same position in NTT (current Package 21K)', 59, '2021-10-26 07:11:15', 1),
(6795, 6675, 59, 5, 0, 'Candidate have bancassurance exp and he much prefers for Sr Level position,not open for Agency positons,looking only for Sales but the salary exp is very high and the candidate sustainability doubts in our company', 60, '0000-00-00 00:00:00', 1),
(6796, 6676, 59, 5, 0, 'Internal reference, from ennore location have data entry exp and looking for non voice opportunities', 60, '0000-00-00 00:00:00', 1),
(6797, 6656, 59, 5, 0, 'Communication Average,, Fresher MBA, No basic knowledge in Recruitment, Need time to check with her family on Txxampc. From Gerugambakkam she needs to travel, Sustainability Doubts', 50, '0000-00-00 00:00:00', 1),
(6798, 6679, 59, 5, 0, 'Candidate have exp in backend process in GRT and looking for Non Voice opportunities.', 50, '0000-00-00 00:00:00', 1),
(6799, 6674, 59, 5, 0, 'very average communication, Much focus into Nonvoice process, Location is Guduvancherry, Will not handle pressure', 50, '0000-00-00 00:00:00', 1),
(6800, 6647, 59, 2, 0, 'Communication ok,Candidate 5050 on the txxampC,No much comfort in Internship Stipend, Fresher for the recruitment Role.Need time to give his confirmation', 60, '0000-00-00 00:00:00', 1),
(6801, 6678, 59, 5, 0, 'No Communication candidate gives preference for the Non voice positions only.', 60, '0000-00-00 00:00:00', 1),
(6802, 6641, 59, 5, 0, 'Fresher Keen To Learn ,Have A Plan To Go Abroad For Higher Studies After3 Yrs, Need Time To Give His Confirmation,If He Comes Back Let Us Check And Consider. Candidate didnt turn back for the interview', 59, '2021-10-28 05:21:21', 1),
(6803, 6667, 59, 5, 0, 'Candidate not interested to accept the offer as her sister who attended the interview in Tiruvallur branch got rejected in the Interview', 59, '2021-10-28 05:23:03', 1),
(6804, 6583, 59, 5, 0, 'Communication Is Ok, Fresher, Open For The TxxampC, 5050 Profile,Came Along With His Friend.Seems doubtful on the joining ,sustainability doubts ', 59, '2021-10-28 07:10:41', 1),
(6805, 6585, 59, 5, 0, 'Communication Is Good, Fresher, Open For The TxxampC, But The Location Is Almost 30 KMS Up And Down.Seems candidate will join mostly if his friend joins too', 59, '2021-10-28 07:11:21', 1),
(6806, 6689, 59, 4, 0, 'Internal Reference,Candidate distance is too long,No relevant Sales Exp ,sustainability Doubt - 5050 profile please do check for RE', 60, '0000-00-00 00:00:00', 1),
(6807, 6677, 59, 5, 0, 'Fresher,Candidate is focusing for the Core Designing(Mechanical Domain),also look for IT openings, Will not suit for Sales and our IT openings too.Will not sustain with us \n', 50, '0000-00-00 00:00:00', 1),
(6808, 6682, 59, 5, 0, 'Experienced much in Non Voice process,father is running his own business and he too have idea to ave the same.Not open for Field Sales and high Sal Exp for CRM profile,Not familiar in Tamil language', 50, '0000-00-00 00:00:00', 1),
(6809, 6687, 59, 4, 0, 'Communication ok,No Relevant Exp but can give a try for RM.Year back we have shortlisted him for the RE profile,but missed due to some reasons,Check for RM and let me know\n', 60, '0000-00-00 00:00:00', 1),
(6810, 6690, 59, 4, 0, 'Internal Team Reference, No Relevant sales,6 months work in Credit card Collection, Too long distance, Left previous company due to location constraint only, kindly check and suggest', 60, '0000-00-00 00:00:00', 1),
(6811, 6687, 51, 5, 3, 'because he as many agents in his own family', 59, '2021-10-29 04:11:07', 1),
(6812, 6689, 16, 5, 0, 'no cominnication skills', 59, '2021-10-29 04:13:00', 1),
(6813, 6690, 11, 1, 0, NULL, 59, '2021-10-29 04:18:56', 1),
(6814, 6603, 59, 5, 0, 'Fresher For HR, Communication Ok, Being Fresher Her Salary Exp Min 15k Can Come Down To 13K.Max 2 Yrs Ok With TxxampC. No Parents ,Grandparents Insisting Her To Take Care Of Their Business.5050 Profile. From Porur She Needs To Travel.Sustainability doubts as she may get marry before 2 years', 59, '2021-10-29 04:23:23', 1),
(6815, 6625, 59, 5, 0, 'Little Exp In Recruitment, Not Much Comfortable With TxxampC Need To Check With Family, Sustainability Doubts, Location S From Padi', 59, '2021-10-29 04:24:17', 1),
(6816, 6684, 59, 5, 0, 'Fresher, have exp in Non Voice Data Entry process. Too long distance from urappakam,Sustainability doubts in Voice process,5050 profile, Marriage has been fixed to happen in next 6 months', 60, '0000-00-00 00:00:00', 1),
(6817, 6697, 59, 5, 0, 'Frequent Job Changer, most prefer to go in Admin openings, Not open for Field sales and the salary Expectation is very high. Not Suitable for CRM', 60, '0000-00-00 00:00:00', 1),
(6818, 6696, 59, 5, 0, 'Communication Average, have exp in non voice/voice process. Presurre handling and sustainability doubts on this profile.Will not fit for our role', 60, '0000-00-00 00:00:00', 1),
(6819, 6664, 59, 5, 0, 'fresher, working as Data Entry operator in Navy (Contract Role). Distance around 44KMS up xxamp down, Not much comfortable with TxxampC,, Thinking a lot on Agreement, Sustainability Doubts If candidate comes back need to review and finalise.', 60, '0000-00-00 00:00:00', 1),
(6820, 6694, 59, 5, 0, 'have 6 months exp in back end operations and much focus on the Non Voice Positions,Will not sustain with us and pressure handling doubt', 60, '0000-00-00 00:00:00', 1),
(6821, 6695, 59, 5, 0, 'Presurre handling and sustainability doubts.Came along her friend only much comforts for non voice ', 60, '0000-00-00 00:00:00', 1),
(6822, 6701, 59, 5, 0, 'Not ready to work in Targets,no voice process Exp,will not sustain with us\n', 60, '0000-00-00 00:00:00', 1),
(6823, 6691, 59, 5, 0, 'Communication ok,have exp in Digital Marketing and HR activities,Not much comfortable with the document submission, Salary Exp is around 20K.If she comes back with her confirmation lets try, Pressure handling doubts a lot', 60, '0000-00-00 00:00:00', 1),
(6824, 6706, 59, 5, 0, 'Fresher for Recruitment,have 2 yrs of Exp in Govt,Looking for the recruitment,but not ready to work for Non It Sales profile. Sustainability Doubts for our role', 60, '0000-00-00 00:00:00', 1),
(6825, 6708, 59, 5, 0, 'Communication Average,Focus on the IT profile Recruitment only.Not much comfort with TxxampC.,Will not sustain for a long,also will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(6826, 6720, 59, 3, 0, 'Selected for ESales Profile with CTC 170496 for Karthika Team - Prop ', 60, '0000-00-00 00:00:00', 1),
(6827, 6721, 59, 5, 0, 'Communication Average, sustainability doubts on this profile,2 companies in 1year,also location constraint', 60, '0000-00-00 00:00:00', 1),
(6828, 6726, 59, 5, 0, 'Holding 3-4 Offers 17K max, Communication is Good,3 months exp in Buzzworks.Salary Expectation is very high. Sustainability Doubts\n', 60, '0000-00-00 00:00:00', 1),
(6829, 6724, 59, 5, 0, '4 months In Office in star health f electrician M HM,correspondance MCA,ccna course completed,Looking only for the salary,will not sustain with us.next month only she can join \n', 60, '0000-00-00 00:00:00', 1),
(6830, 6665, 59, 2, 0, 'candidate is outside need to schedule tomorrow', 60, '0000-00-00 00:00:00', 1),
(6831, 6722, 59, 2, 0, 'need 15 days time to Join, Communication ok 5050 profile, have 5 yrs of Exp in Loan sales Exp 18K TH, No Bike and he cant arrange now\n', 60, '0000-00-00 00:00:00', 1),
(6832, 6686, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6833, 6723, 59, 2, 0, 'In travel need to call later', 60, '0000-00-00 00:00:00', 1),
(6834, 6713, 59, 5, 0, 'need time to check with parents on TxxampC,5050 profile,not seems to very active.sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(6835, 6715, 59, 5, 0, '2 month in byju for 4 LPA, Exp 20-25K as salary, Have a plan to move abraod after few years,5050 profile, very close to bangalore looking for opportunities over there too\n', 60, '0000-00-00 00:00:00', 1),
(6836, 6705, 59, 2, 0, 'Now she is outside,will give a call once back to home\n', 60, '0000-00-00 00:00:00', 1),
(6837, 6703, 59, 5, 0, 'He is in internship till dec 2021,College yet to complete. Communication ok 5050 profile, handling pressure doubtful and sustainability doubts\n', 60, '0000-00-00 00:00:00', 1),
(6838, 6714, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6839, 6730, 74, 5, 0, 'unfit', 50, '0000-00-00 00:00:00', 1),
(6840, 6720, 11, 4, 0, 'candidate ok for E sales .', 59, '2021-11-08 05:40:46', 1),
(6841, 6647, 59, 5, 0, 'Communication Ok,Candidate 5050 On The TxxampC,No Much Comfort In Internship Stipend, Fresher For The Recruitment Role.Need Time To Give His Confirmation', 59, '2021-11-08 05:41:11', 1),
(6842, 6742, 59, 4, 0, 'profiles has been scehduled for Esales. Communication ok, candidate is not much active. not Comfortable for your ESales process. Checked with Gaurav Sir also. Please Check for Tele caller profile and do let me know', 50, '0000-00-00 00:00:00', 1),
(6843, 6729, 59, 4, 0, 'Fresher, No Insurance Sales Exp, Have tried for some Govt Exams Earlier, kindly check for RM and let me know', 60, '0000-00-00 00:00:00', 1),
(6844, 6739, 59, 5, 0, 'Fresher, will not sustain for a long ,communication average. Pressure handling also doubts and the salary exp is high\n', 60, '0000-00-00 00:00:00', 1),
(6845, 6737, 59, 5, 0, 'Candidate Communication Is Good, But We Prefer To Have A Good Local Communication For This Insurance Sales. Having Exp In Multiple Domains And Understood From The Discussion Had With The Candidate That He Comforts To Work In Other Domain Areas. For our Insurance Sales seems not to be much comfortable with handling the pressure.', 60, '0000-00-00 00:00:00', 1),
(6846, 6742, 13, 5, 3, 'not suitable for tele sales', 59, '2021-11-09 04:02:10', 1),
(6847, 6727, 59, 2, 0, 'Can Give a try for Mern, give a task and we can Analyze based on that. \n', 60, '0000-00-00 00:00:00', 1),
(6848, 6733, 59, 5, 0, 'Communciation ok, Not much comfort with the TxxampC, Fresher, Sustainability Doubts, Father is doing business in Singapore, Brother did his studies in Singapore, Mother Govt Health Dept Staff. Salary Exp also High being a fresher\n\n', 60, '0000-00-00 00:00:00', 1),
(6849, 6734, 59, 2, 0, 'in Hospital due to some emergency ', 60, '0000-00-00 00:00:00', 1),
(6850, 6735, 59, 5, 0, 'Communication Average, need time to check with parents on the TxxampC, Pressure handling seems to doubt on the profile\n', 60, '0000-00-00 00:00:00', 1),
(6851, 6709, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6852, 6732, 59, 5, 0, 'No Local communication, candidate is from andhra he prefers much for Telugu xxamp Hindi communications.Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(6853, 6736, 59, 2, 0, 'Fresher, can schedule her for the F2F interview, based on that only we can decide. Communication ok', 60, '0000-00-00 00:00:00', 1),
(6854, 6729, 51, 5, 2, 'Fresher, No Insurance Sales Exp, Have tried for some Govt Exams Earlier, ', 59, '2021-11-10 11:39:52', 1),
(6855, 6745, 59, 5, 0, 'Communication Average,candidate much comfort to work in non voice process only. Will not sustain in our sales process', 60, '0000-00-00 00:00:00', 1),
(6856, 6710, 59, 5, 0, 'Having knowledge in the basics of PHP,6 months Exp in PHP,Seems comfort with the TxxampC but the salary Exp is very High 6 months - 18K Exp ,She is from Porur Location', 60, '0000-00-00 00:00:00', 1),
(6857, 6711, 59, 5, 0, 'No basic Knowledge in ReactNative,2021 BCA,Fresher, Need time to check on the TxxampC,Brother is working in the Altencalsoft .If he coesback with his confirmation,can analyse based on the system task', 60, '0000-00-00 00:00:00', 1),
(6858, 6747, 59, 4, 0, 'Fresher,communication Average,Family need is there,5050 profile. Check for RE. also we can analyse him in 7 days of training', 60, '0000-00-00 00:00:00', 1),
(6859, 6738, 59, 2, 0, 'Fresher, looking only for the internship and not open up to learn addtional skills.much comfortable to work only in Designing. Candidate yet to share his portfolio, based on that only we can consider', 60, '0000-00-00 00:00:00', 1),
(6860, 6748, 59, 4, 0, 'Internal Reference, have exp in Insurance Sales and the Salary Expectation is very High.Holding an offer for 18K.If hired sustainability doubts, please do check for RE', 60, '0000-00-00 00:00:00', 1),
(6861, 6712, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6862, 6747, 16, 5, 0, 'not fit for sales', 59, '2021-11-10 05:21:16', 1),
(6863, 6748, 57, 1, 0, NULL, 59, '2021-11-10 05:23:29', 1),
(6864, 6744, 59, 2, 0, 'Candidate can be Analyzed by giving a task. Open for the TxxampC.', 60, '0000-00-00 00:00:00', 1),
(6865, 6750, 59, 5, 0, 'Communication Average, need to open up will not handle our pressure. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(6866, 6751, 59, 5, 0, 'Fresher ,Communication Average, will not sustain xxamp pressure handling doubts.', 60, '0000-00-00 00:00:00', 1),
(6867, 6754, 59, 5, 0, 'Communication ok,have backend exp ,not much open with Target,not open for collections.looking only for Sr Level positions and the salary exp is very high ', 60, '0000-00-00 00:00:00', 1),
(6868, 6755, 59, 4, 0, '5050 Profile, Have Exp In Telecaller, Kindly Check For E Sales RM And Let Me Know', 60, '0000-00-00 00:00:00', 1),
(6869, 6755, 11, 1, 0, NULL, 59, '2021-11-12 07:04:39', 1),
(6870, 6709, 59, 2, 0, 'Communication Ok,fresher for REcruitment,have exp in AR Caller,plan to do MBA in correspondance,Need to check with his parents on TxxampC,if comes back can have a F2F interview', 59, '2021-11-13 12:11:00', 1),
(6871, 6757, 73, 5, 0, 'not suitable this profile looking for non- voice ', 60, '0000-00-00 00:00:00', 1),
(6872, 6714, 59, 2, 0, 'Cadidate will come for a direct F2F,5050 Profile fresher for Insurance Sales.have Exp in Core xxamp School of sports.Let have a f2F and decide', 59, '2021-11-13 01:05:54', 1),
(6873, 6756, 59, 5, 0, 'Fresher,No basic skills knowledge,Not much open with internship cum employment,sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(6874, 6749, 59, 5, 0, 'Communication Average,Sustainability Doubts he is aving a plan to start business.Handling pressure also doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(6875, 6759, 59, 5, 0, 'Interviewed by Gokul and profile has been rejected', 60, '0000-00-00 00:00:00', 1),
(6876, 6738, 59, 5, 0, 'Fresher, Looking Only For The Internship And Not Open Up To Learn Addtional Skills.Much Comfortable To Work Only In Designing. Candidate commited to share the porfolio but didnt turned', 59, '2021-11-13 03:56:13', 1),
(6877, 6712, 59, 5, 0, 'Discussed with her for the Zoom Interview,but after that the candidate not responding to the calls,tried couple of times in multiple days.Finally dropped the profile', 59, '2021-11-13 04:16:41', 1),
(6878, 6768, 59, 2, 0, 'Have interest to learn, having basic knowledge in UI/UX .Selected for Internship', 60, '0000-00-00 00:00:00', 1),
(6879, 6770, 59, 5, 0, 'Very poor communication, no basic knowledge, Poor understanding, not suitable.', 60, '0000-00-00 00:00:00', 1),
(6880, 6774, 59, 5, 0, 'Average Communication,no sustainability in his previous exp. Worked in various domain. Not suitable for our sales ,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(6881, 6758, 59, 5, 0, 'Offered him for the internship cum employment, candidate expects very high pay of 20K Gross, Suggested him for the Internship alone too, but not interested for this', 64, '0000-00-00 00:00:00', 1),
(6882, 6777, 59, 3, 0, 'Selected for Arumbakkam - Saravanan Team with PF/ESI/PT\n', 64, '0000-00-00 00:00:00', 1),
(6883, 6779, 59, 5, 0, 'Not much open up, have exp in accounts - super market.Much comforts to work in Non voice process only', 50, '0000-00-00 00:00:00', 1),
(6884, 6761, 59, 5, 0, 'No communication, little attitude, currently working in ICICI prudential and looking for HR Recruitment. Not open for TxxampC, will not sustain', 64, '0000-00-00 00:00:00', 1),
(6885, 6762, 59, 5, 0, 'Not open for Sales, he worked as a coordinator in his previous exp, looking for non voice opening only/backend operations like KYC verification', 64, '0000-00-00 00:00:00', 1),
(6886, 6773, 59, 5, 0, 'Communication very average, no basic knowledge about digital marketing, salary Exp is very high. worked in Accounts/Admin no stability in her experience', 64, '0000-00-00 00:00:00', 1),
(6887, 6772, 59, 5, 0, 'Communication no, no sustainability in his previous exp. not clear on the position he looks. Comforts to work in Non voice. Not suitable for our role ', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(6888, 6392, 59, 5, 0, 'Much looks for intern only, need to relocate from native, sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(6889, 6758, 69, 4, 0, 'Candidate is Good, need to talk for salary discussion', 59, '2021-11-15 06:14:29', 1),
(6890, 6758, 59, 5, 0, 'Offered him for the internship cum employment, candidate expects very high pay of 20K Gross, Suggested him for the Internship alone too, but not interested for this', 69, '2021-11-15 06:46:53', 1),
(6891, 6565, 59, 5, 0, '1 Year Exp In Stock From Arakonnam Location, Second Round Interviewed By Gokul And The Profile Is Reject', 59, '2021-11-15 06:48:45', 1),
(6892, 6714, 51, 5, 3, 'no idea in insurance', 59, '2021-11-15 06:53:31', 1),
(6893, 6714, 59, 4, 0, 'No relevant Exp,have a yera exp in sales,5050 profile for our insurance sales, Kindly check and give your inputs', 59, '2021-11-15 06:53:31', 1),
(6894, 6722, 59, 5, 0, '5050 profile, communication ok, but not much comforts for our sales, no bike ,sustainability doubts on this profile', 59, '2021-11-15 06:56:21', 1),
(6895, 6723, 59, 2, 0, 'discussed with the candidate, Communication ok, have exp in field sales for 6 months, seems not much to comfort to take calls.Sustainability doubts,need to analyse once candidate come for the F2F', 59, '2021-11-15 07:08:47', 1),
(6896, 6764, 59, 4, 0, 'Communication ok,5050 profile, just have few ideas on Digital Marketing. No ideas on content writing, kindly check and let you know your interest', 64, '0000-00-00 00:00:00', 1),
(6897, 6769, 59, 5, 0, 'Communication Average, Not much comfortable with TxxampC, Not ready to work in target if we have for the recruitment,In 10 months 2 companies and working in FMCG company with 15K TH and Expecting more ', 64, '0000-00-00 00:00:00', 1),
(6898, 6771, 59, 3, 0, 'Selected for PHP - Intern for 3 months then employement overall 3 yrs SA', 64, '0000-00-00 00:00:00', 1),
(6899, 6782, 59, 5, 0, 'Communication ok, Attitude is there, Have Exp in US IT Recruitment.10 months 2 companies worked Last drawn Salary is 20100 and not ready to negotiate less than this. Sustainability doubts on this profile', 64, '0000-00-00 00:00:00', 1),
(6900, 6784, 59, 5, 0, 'Not Active, No basic knowledge in HTML,CSS,JS, will not sustain. Not suitable for our role', 64, '0000-00-00 00:00:00', 1),
(6901, 6763, 59, 5, 0, 'Communication Average, Have Interest towards robotics and automation, Not much comfort to work in Target', 64, '0000-00-00 00:00:00', 1),
(6902, 6794, 59, 5, 0, 'Communication Average not open for Target based position. Looking for the Core Mechanical position. For time being looking for other positions', 64, '0000-00-00 00:00:00', 1),
(6903, 6780, 59, 5, 0, 'Communication average, In 1.10 yrs 2 companies and the salary expectation is very high. Candidate location is from Chengalpet', 64, '0000-00-00 00:00:00', 1),
(6904, 6785, 59, 4, 0, 'Communication Ok, No relevant Exp in Sales. He is into business for a long. Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(6905, 6766, 59, 5, 0, 'No basic knowledge in Javascript,,Handling pressure and sustainability doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(6906, 6790, 59, 5, 0, 'Communication is Good, Career Gap, Holding offer with CTS for 3 LPA, and looking for some more offers. Will not sustain with us ', 60, '0000-00-00 00:00:00', 1),
(6907, 6789, 59, 5, 0, 'Communication Average, Worked in Voice xxamp Non Voice 3 yrs 4 companies handling pressure and sustainability doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(6908, 6788, 59, 5, 0, 'Not much open up, too long distance from Ennore.', 60, '0000-00-00 00:00:00', 1),
(6909, 6791, 59, 5, 0, 'Communication Average,working in share trading company,just as a coordinator.In 1.2 yrs changed 2 companies .Pressure handling doubts and salary expectation is very high as he was getting around 19.5 TH', 60, '0000-00-00 00:00:00', 1),
(6910, 6764, 69, 5, 0, 'Candidate not suitable for the profile', 59, '2021-11-16 06:43:17', 1),
(6911, 6785, 44, 1, 0, NULL, 59, '2021-11-16 07:00:32', 1),
(6912, 6771, 27, 7, 0, 'Have Basic Knowledge in PHP. But hope he will pickup. 3 months intern. Then Based on the performance will promote as an employee and give 8k. ', 59, '2021-11-16 07:05:45', 1),
(6913, 6802, 59, 5, 0, 'Have 2 months exp in voice process, left the company due to work pressure and looking for Admin openings, also plan to do Course related to IT. Will not handle our pressure, Not suits for our role', 50, '0000-00-00 00:00:00', 1),
(6914, 6803, 59, 5, 0, 'Have Exp in Collections and looking for non voice openings(data Entry/Documentation),not comfortable for voice process', 50, '0000-00-00 00:00:00', 1),
(6915, 6786, 59, 5, 0, 'Communication Ok,have 1 yr of exp but frequent permission/leaves during the work. Will not sustain and not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(6916, 6804, 59, 5, 0, 'Frequent Job changer,have exp in both voice xxamp non voice but much comfort for non voice.Long career Gap.Will not sustain with us', 60, '0000-00-00 00:00:00', 1),
(6917, 6807, 59, 5, 0, 'Fresher ,Career Gap and he is interest to go with the agriculture, but his parents push him to get into Job, No communication, will not sustain for our pressure', 60, '0000-00-00 00:00:00', 1),
(6918, 6805, 59, 4, 0, 'Have exp in Inbound / Outbound but not relevant Sales Exp, Communication ok, can give a try for voice process. Kindly check for Elite and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(6919, 6805, 13, 5, 0, 'Hold On Long Pending', 59, '2021-11-17 06:03:17', 1),
(6920, 6686, 59, 5, 0, 'Not responding to the calls, tried couple of days .Dropped the profile', 59, '2021-11-17 06:59:21', 1),
(6921, 6768, 60, 1, 0, NULL, 59, '2021-11-17 07:03:48', 1),
(6922, 6768, 59, 7, 0, 'Selected the candidate for the internship', 59, '2021-11-17 07:03:48', 1),
(6923, 6720, 59, 3, 0, 'Selected for ESales Profile with CTC 170496 for Karthika Team - Prop ', 11, '2021-11-18 06:37:27', 1),
(6924, 6720, 29, 7, 2, 'ok for Esales RM - Karthika Team', 59, '2021-11-18 06:47:03', 1),
(6925, 6809, 59, 2, 0, 'communication ok, pursuing MBA in evening college - final Year. Have 2 yrs of Sales Exp. Looking for HR openings, but not comfort with the TxxampC, Need some time to check with family. If he comes back let us review and consider', 64, '0000-00-00 00:00:00', 1),
(6926, 6811, 59, 5, 0, 'Candidate have basic exp in Core PHP, have 1 year exp in PHP and his Salary Exp is High not ready to come down from his exp, also not much comfort with TxxampC', 60, '0000-00-00 00:00:00', 1),
(6927, 6819, 59, 5, 0, '1yr Exp in HR,Last drawn salary is 21K from manufacturing company and his exp is more. Not much comfort to sign the Service Agreement', 60, '0000-00-00 00:00:00', 1),
(6928, 6818, 59, 5, 0, 'Communication ok, career gap and the salary exp is very high, stating that he looks for HR openings but hold an offer with ICICI for 26K.Sustainability doubts ', 60, '0000-00-00 00:00:00', 1),
(6929, 6822, 59, 5, 0, 'candidate not interested with TxxampC', 60, '0000-00-00 00:00:00', 1),
(6930, 6822, 53, 4, 0, 'Ok for Operations, kindly check with gokul', 59, '2021-11-19 03:01:30', 1),
(6931, 6793, 40, 5, 1, 'Rejected - Will not sustain, Poor communication, Previous working experience is unapt, not having a laptop.\n', 64, '0000-00-00 00:00:00', 1),
(6932, 6829, 80, 4, 0, 'He knew from Icici prudential. Kindly check for next round and give your valid feedback', 60, '0000-00-00 00:00:00', 1),
(6933, 6829, 18, 5, 0, 'Expected saalry is 4.5L Not fit for that salary', 80, '2021-11-19 06:06:50', 1),
(6934, 6709, 59, 5, 0, 'Communication Ok,Fresher For REcruitment, Have Exp In AR Caller, Plan To Do MBA In Correspondance, Requested time to check With His Parents On TxxampC, Candidate didnt came back with his confirmation.Dropped', 59, '2021-11-20 10:16:25', 1),
(6935, 6813, 59, 5, 0, 'Have only designing knowledge. Looking for high pay, holding multiple offers with 12K and not much open for UI development Skills learning. Not much comfort with TxxampC too.', 64, '0000-00-00 00:00:00', 1),
(6936, 6718, 59, 5, 0, 'No basic skills knowledge, having his own business and he prefers to continue the same. Will not sustain for a long', 64, '0000-00-00 00:00:00', 1),
(6937, 6797, 40, 4, 0, 'Having sales experience in general insurance and agriculture insurance, Un married, Immediate joiner, Expectation on salary is quit High, but we keep this profile as self sourcing BDM for 6 months after that we can move to team handling.', 64, '0000-00-00 00:00:00', 1),
(6938, 6797, 18, 7, 0, 'Shortlisted for Sourcing BDM Profile. Current CTC is 5.75L and he recently got Hike and expeced 30% hike. Need to negotiate the same. Also need 1 month notice period time and willing to join from Jan 1', 40, '2021-11-20 01:23:54', 1),
(6939, 6821, 59, 5, 0, 'Communication Average,Have Exp in Core field,fresher for the recruitment,no much knowledge in the recruitment, Sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(6940, 6720, 59, 3, 0, 'Selected for ESales Profile with CTC 170496 for Karthika Team - Prop ', 29, '2021-11-20 06:39:19', 1),
(6941, 6823, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(6942, 6824, 40, 5, 2, 'Not interested in sales profile', 64, '0000-00-00 00:00:00', 1),
(6943, 6835, 59, 3, 0, 'Selected for RM - Shanmuga Kutralinigam Team with PF/PT Deductions', 60, '0000-00-00 00:00:00', 1),
(6944, 6839, 59, 5, 0, 'Fresher,currently pursuing his graduation in correspondance,have exp in Finance company,much comfort to work in non voice process.Will not suits for our role', 60, '0000-00-00 00:00:00', 1),
(6945, 6840, 59, 5, 0, 'have collection call Exp, not much open up, will not handle the pressure. Sustainability dooubts', 60, '0000-00-00 00:00:00', 1),
(6946, 6835, 44, 7, 0, 'Candidate ok for me do the Further process ASAP ', 59, '2021-11-22 01:44:33', 1),
(6947, 6836, 73, 5, 0, 'not suitable for this profile,highly doubt for pressure handling. ', 60, '0000-00-00 00:00:00', 1),
(6948, 6797, 59, 2, 0, 'Discussed with the candidate, he will share the required payslips and the documents of the previous exp. Once received will review and discuss on the CTC.', 18, '2021-11-22 04:04:45', 1),
(6949, 6835, 59, 3, 0, 'Selected for RM - Shanmuga Kutralinigam Team with PF/PT Deductions', 44, '2021-11-22 06:07:49', 1),
(6950, 6842, 59, 5, 0, 'Poor Communication, In 6 months 2 companies changed. Will not handle our pressure and sustainability doubts.', 60, '0000-00-00 00:00:00', 1),
(6951, 6841, 59, 2, 0, 'communication Ok, Fresher career Gap is there, have basic knowledge in the Skills, Need time to give his confirmation on the TxxampC.', 60, '0000-00-00 00:00:00', 1),
(6952, 6823, 59, 2, 0, 'RNR', 59, '2021-11-23 04:49:43', 1),
(6953, 6850, 59, 5, 0, 'Fresher for Sales, No sustainability in the previous experience. Not comfortable to take calls, much comfort to go for field only. Salary Exp is very high. Will not sustain and handle our pressure. Candidate Need time to think on the CTC what we suggested.', 60, '0000-00-00 00:00:00', 1),
(6954, 6837, 40, 4, 4, 'Looking for a Job and requirement is there and Salary part we need to Negotiate, 15 days notice period is there and Not having a Laptop ', 64, '0000-00-00 00:00:00', 1),
(6955, 6845, 40, 5, 1, 'Will doesnxquott suit for our profile', 64, '0000-00-00 00:00:00', 1),
(6956, 6846, 40, 2, 0, 'Not having a proper knowledge in our profile and Poor communication. Kindly hold it for 3 days will update', 64, '0000-00-00 00:00:00', 1),
(6957, 6837, 18, 7, 4, 'Selected for Hyderabad. Dont have laptop we need to arrange so need to discuss on the same. Current ctc is 2.75 and expected 4L but can give 15% or max 20% hike but before 6 months only he got 2.75L CTC. But good candidate.', 40, '2021-11-24 11:14:30', 1),
(6958, 6823, 59, 5, 0, 'Dropped ,not responding to the calls. Tried couple of Days', 59, '2021-11-24 11:29:00', 1),
(6959, 6853, 59, 3, 0, 'Selected for Muthu Team - Elite RE in cash mode', 60, '0000-00-00 00:00:00', 1),
(6960, 6853, 13, 7, 4, 'ok 10k salary tomorrow joining', 59, '2021-11-24 01:09:17', 1),
(6961, 6853, 59, 3, 0, 'Selected for Muthu Team - Elite RE in cash mode', 13, '2021-11-24 01:28:51', 1),
(6962, 6849, 40, 5, 3, 'Selected but he does not have a laptop and he couldnxquott able to arrange it also, in that case, we canxquott do anything if he can arrange it means proceed with next level. Else drop it. \nHe said he informed the same thing to HR who schedule it. ', 64, '0000-00-00 00:00:00', 1),
(6963, 6858, 59, 5, 0, 'Fresher for Telecaller profile, Focus on the Non Voice process,6 months 2 companies changed and career gap for 2.5 yrs. Will not sustain and handling pressure no with our profile', 60, '0000-00-00 00:00:00', 1),
(6964, 6847, 59, 5, 0, 'Candidate was busy with some bank purpose. Finally had a call with the candidate in evening and understood that he holds an offer and planning to go with the same.', 60, '0000-00-00 00:00:00', 1),
(6965, 6843, 40, 5, 2, 'Not looking for field sales xxamp will not suit for our profile', 64, '0000-00-00 00:00:00', 1),
(6966, 6857, 40, 4, 3, 'Tarun - Itxquots a 50-50 profile, He is ok with salary as per company norms and can able to join immediately, Having a Laptop and a Bike as well. Average Communication, Not having a proper sales industry exposure before. But during the training period we should understand his capabilities xxamp we need to decide.\nSo, I am moving this profile to next level, let Sriram decide once.', 64, '0000-00-00 00:00:00', 1),
(6967, 6859, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(6968, 6864, 59, 5, 0, 'Looking for Java openings only. not suitable for our positions', 60, '0000-00-00 00:00:00', 1),
(6969, 6861, 59, 5, 0, 'Looking for Non Voice process, not comfort to work in IT Domain', 60, '0000-00-00 00:00:00', 1),
(6970, 6863, 59, 5, 0, 'Fresher and no basic skills, Seems not much ok with TxxampC ,sustainability doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(6971, 6837, 59, 2, 0, 'Discussed with the candidate.Yet to receive his payslip/Offer letter of the current company, Once received will speak to him and update the same ', 18, '2021-11-25 12:45:42', 1),
(6972, 6869, 59, 3, 0, 'Selected for Muthu Team,No PF.ESI/PT deductions', 60, '0000-00-00 00:00:00', 1),
(6973, 6870, 59, 3, 0, 'Selected for Muthu Team ,no PF/ESI/Deductions.', 60, '0000-00-00 00:00:00', 1),
(6974, 6871, 59, 5, 0, 'Fresher, Not much familiar with the skills, need time to give his confirmation on the TxxampC.If he comes back let us see', 60, '0000-00-00 00:00:00', 1),
(6975, 6867, 59, 5, 0, 'Not open for Voice - Stock/Equity positions, Looking for non voice process only', 60, '0000-00-00 00:00:00', 1),
(6976, 6862, 59, 5, 0, 'Need to open up, Looking for Java openings. Will not sustain and pressure handling doubts. Not much comfort with TxxampC', 60, '0000-00-00 00:00:00', 1),
(6977, 6868, 59, 5, 0, 'Not interested for Stocks/Share market positions. Looking for Finance based accounting profile.', 60, '0000-00-00 00:00:00', 1),
(6978, 6865, 59, 5, 0, 'No Clear communication, No basic knowledge in Digital Marketing. Will not sustain with us. Not suitable for DM', 60, '0000-00-00 00:00:00', 1),
(6979, 6870, 13, 7, 4, 'ok,10k salary,monday joining', 59, '2021-11-25 04:11:27', 1),
(6980, 6869, 13, 7, 4, 'ok 10k salary,monday joining', 59, '2021-11-25 04:11:47', 1),
(6981, 6869, 59, 3, 0, 'Selected for Muthu Team,No PF.ESI/PT deductions', 13, '2021-11-25 04:34:00', 1),
(6982, 6870, 59, 3, 0, 'Selected for Muthu Team ,no PF/ESI/Deductions.', 13, '2021-11-25 04:35:45', 1),
(6983, 6857, 18, 7, 4, 'Selected for Hyderabad. Need 10 days time to join Current salary is 13500 in rural area. Expected salary is 30 k but can negotoate. Can give 20+ becasuse of urban migration and he is a good candidate', 40, '2021-11-25 04:37:13', 1),
(6984, 6881, 40, 5, 0, 'Rejected over the call - He is not interested in the sales profile and he is not proficient in Telugu as well.', 64, '0000-00-00 00:00:00', 1),
(6985, 6883, 59, 5, 0, 'Communication Ok,11th Std discontinued, Handling Pressure Doubt, Will not sustain for a long ', 64, '0000-00-00 00:00:00', 1),
(6986, 6878, 59, 2, 0, 'Selected for Dealer Stocks profile,need to discuss and close.Gokul shortlisted in the second round', 64, '0000-00-00 00:00:00', 1),
(6987, 6882, 40, 5, 1, 'Will not sustain', 64, '0000-00-00 00:00:00', 1),
(6988, 6895, 59, 5, 0, 'Need to open up on communication, will not handle our pressure .Not suitable', 60, '0000-00-00 00:00:00', 1),
(6989, 6889, 59, 4, 0, '5050 profile,communication Average,have 3 months of Exp in Voice,Family need is there. Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(6990, 6896, 59, 5, 0, 'No communication, Looking for Non Voice Process, Will not handle our pressure .', 60, '0000-00-00 00:00:00', 1),
(6991, 6887, 59, 5, 0, 'Looking for Non voice process only\n', 60, '0000-00-00 00:00:00', 1),
(6992, 6874, 59, 5, 0, 'Have Exp in AR caller,Looking for any finance opportunities.Will not sustain for a Stocks /Dealer profiel - Salary Exp is very high', 64, '0000-00-00 00:00:00', 1),
(6993, 6885, 59, 4, 0, 'Candidate Communication Is Good. Seems Little Attitude.Had His Own Business.Can Check For RM.', 60, '0000-00-00 00:00:00', 1),
(6994, 6890, 59, 5, 0, 'communication ok, but much prefers for non voice process only. too long Will not sustain in our role. Have much non voice exp only ', 60, '0000-00-00 00:00:00', 1),
(6995, 6891, 59, 2, 0, 'Selected for Priyanka Team - ex employee need to finalise the pay', 60, '0000-00-00 00:00:00', 1),
(6996, 6892, 59, 5, 0, 'Fresher for Employment, Long career gap,Not serious on his career earlier, Communication ok but will not sustain in our process. ', 60, '0000-00-00 00:00:00', 1),
(6997, 6886, 59, 5, 0, 'Not interested for Voice Process, Looking for Core Micro Biology openings only. Not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(6998, 6893, 59, 5, 0, 'Currently pursuing graduation,1 more year to go. Looking for intern no basic skills', 60, '0000-00-00 00:00:00', 1),
(6999, 6888, 59, 3, 0, 'Selected for Esales RM - Karthika Team - PT - Prop', 60, '0000-00-00 00:00:00', 1),
(7000, 6888, 11, 4, 0, 'candidate ok for E sales', 59, '2021-11-26 05:33:18', 1),
(7001, 6885, 31, 5, 0, 'not picking up calls', 59, '2021-11-26 05:45:28', 1),
(7002, 6889, 11, 1, 0, NULL, 59, '2021-11-26 05:48:30', 1),
(7003, 6891, 59, 3, 0, 'Selected for Priyanka Jeni Team Elite RE - ex employee of CAFS', 59, '2021-11-26 08:05:15', 1),
(7004, 6877, 59, 5, 0, 'Communication ok,candidate preferes for Pythin and interest to learn additional skills. Not much comfort with terms and conditions. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(7005, 6878, 59, 3, 0, 'Selected for Stocks/Dealer profile. will be in training for 15 days in Motilal.3 months intern cum employment.SA for 2.3 yrs', 59, '2021-11-26 08:48:38', 1),
(7006, 1682, 44, 7, 4, 'Arun please do the Further process ', 60, '0000-00-00 00:00:00', 1),
(7007, 6852, 59, 5, 0, 'communciation Averege, No basic ideas on the Skills, Handling Pressure no and sustainability doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(7008, 4378, 59, 2, 0, 'Communication Ok, Have Exp In Recruitment, Worked With Hexaware In Contract Through Live Ceonnections, Salary Exp In High, But Can Be Negotiated, Can Check For HR Recruitment, Try Schedule The Candidate For F2F,Also Ask Him To Come Chennai With Some More Schedules.', 60, '0000-00-00 00:00:00', 1),
(7009, 6880, 59, 5, 0, 'Communication ok, Not much importance towards the work, Last few months he was doing trading, Salary Exp is high being fresher, Not comfort to go with Internship', 60, '0000-00-00 00:00:00', 1),
(7010, 6902, 59, 2, 0, 'No relevant Outbound call sales,he is purely into inbound calls,not handled with targets,bu thaving interest to develop in other areas too,can schedule him for the F2F and let us decide the profile.Candidate is available on Wednesday/Thursday for the F2F interview.Salary Exp is ok and can be negotiated', 60, '0000-00-00 00:00:00', 1),
(7011, 6884, 59, 2, 0, 'No Reevant Exp in outbound call sales,have exp in retail store sales,Communication ok can check for RM profile.Candidate is ready to come for F2F interview on Wednesday/Thursday.Currently working and his notice is 30 Days', 60, '0000-00-00 00:00:00', 1),
(7012, 6898, 59, 2, 0, 'Seem not much comfort with the insurance sales,however asked the candidate to come for the F2F,need to analyse the candidate in person.Have exp in institutional sales for sketchers shoes brand B2B', 60, '0000-00-00 00:00:00', 1),
(7013, 6879, 59, 5, 0, 'Communication Average, Will not handle our pressure .Not much comfort with terms xxamp conditions. Sustainability Doubts. Seems not much to work under targets', 60, '0000-00-00 00:00:00', 1),
(7014, 6904, 59, 5, 0, 'Have Exp in Non Voice only,Attitude issue,Not open for Field Sales,Exp is very high for our CRM role.Will not sustain in our position.Highest graudation is 12th only.Not much importance on the work', 60, '0000-00-00 00:00:00', 1),
(7015, 6809, 59, 5, 0, 'Communication Ok, Pursuing MBA In Evening College - Final Year. Have 2 Yrs Of Sales Exp. Looking For HR Openings, But Not Comfort With The TxxampC, Need Some Time To Check With Family. If He Comes Back Let Us Review And Consider - didnt Turn back with his opinion', 59, '2021-11-27 04:43:37', 1),
(7016, 6846, 40, 5, 0, 'Will not fit for our profile', 40, '2021-11-27 05:59:05', 1),
(7017, 6905, 40, 5, 0, 'Will not suit for our profile', 50, '0000-00-00 00:00:00', 1),
(7018, 1682, 59, 3, 0, 'Selected for RM Profile - Shanmugam Team with PF/PT', 44, '2021-11-29 10:55:53', 1),
(7019, 6913, 59, 3, 0, 'Selected for GK sir Team with PF/PT Deductions', 60, '0000-00-00 00:00:00', 1),
(7020, 6914, 59, 3, 0, 'Selected for Pandiarajan Team - RM with PF/PT\n', 60, '0000-00-00 00:00:00', 1),
(7021, 6915, 59, 5, 0, 'Not open for insurance Sales, Looking for the same domain sales\n', 60, '0000-00-00 00:00:00', 1),
(7022, 6856, 74, 7, 3, 'candidate shorlisted highly job need due to financial crisis, good exposure and convencing skill,expreience in instrumention field due to some personal issue and quit the previous company job now looking job in thanjavur. laptop available need to join 1 dec.', 60, '0000-00-00 00:00:00', 1),
(7023, 6913, 31, 4, 4, 'Candidate okay forwarded to next round with gaurav', 59, '2021-11-29 02:21:07', 1),
(7024, 6914, 80, 4, 0, 'Good Communication skill. Fresher 2021 passout batch. HE HAVE MAX LIFE TRAINING. HE KNOWING MAX LIFE ENDOWMENT PLAN. GOOD GUY', 59, '2021-11-29 02:40:26', 1),
(7025, 6918, 59, 3, 0, 'Selected for Sarath Team with PF/ PT', 60, '0000-00-00 00:00:00', 1),
(7026, 6918, 44, 4, 4, 'sent to gaurav for 2nd round', 59, '2021-11-29 03:17:46', 1),
(7027, 6856, 59, 3, 0, 'Selected for Elite - Thanjavur - CASH Mode\n', 74, '2021-11-29 03:51:00', 1),
(7028, 6913, 29, 7, 3, 'GK Team as RM', 31, '2021-11-29 03:53:42', 1),
(7029, 6857, 59, 2, 0, 'Discussed ,will share the payslips ASAP\n', 18, '2021-11-29 05:11:53', 1),
(7030, 6918, 29, 7, 3, 'sarath team as rM, can hike 10% if does 1.50 lac in next 2 months (3 Lac)', 44, '2021-11-29 06:06:03', 1),
(7031, 6920, 59, 5, 0, 'Candidate is not clear on the position he applied. No Ideas on this insurance Sales, He just open for any sales openings in Chennai,Have Exp in Jio Retail B2B sales Sustainability doubts in our sales profile. Reviewed in the telephonic Discussion', 60, '0000-00-00 00:00:00', 1),
(7032, 6924, 59, 5, 0, 'Not interresetd to take Calls and the sales ,looking only for the collections', 60, '0000-00-00 00:00:00', 1),
(7033, 6900, 59, 5, 0, 'Have 3 months Recruiter Exp,not comforrtable with TxxampC Sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(7034, 6876, 59, 4, 0, 'Communication ok,interest to learn in the areas of stocks/share market, check for Equity dealer and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7035, 6899, 59, 2, 0, '5050 profile,have exp in Byju as BDA,Fresher for IT Profile,Long stay not sure on this profile.Let us hold if candidate comes back let us see\n', 60, '0000-00-00 00:00:00', 1),
(7036, 6907, 59, 2, 0, 'Communication Average,Fresher for Recruitment,learning some course related to IT,Sustainability 5050,let candidate come for F2F\n', 60, '0000-00-00 00:00:00', 1),
(7037, 6930, 73, 5, 0, ' no important for job this profile , xxamp looking for non - voice also.', 50, '0000-00-00 00:00:00', 1),
(7038, 6932, 59, 5, 0, 'Interviewed by Sabeha - very High Exp with 4 yrs of Experience', 64, '0000-00-00 00:00:00', 1),
(7039, 6933, 59, 4, 0, 'Interviewed by Jeniffer - Have Exp in Telecaller, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7040, 6934, 59, 5, 0, 'Interviewed by Jennifer - Not interested in Telesales', 64, '0000-00-00 00:00:00', 1),
(7041, 6935, 59, 5, 0, 'Interviewed by Jennifer - Sustainability Doubt xxamp Attitude ', 64, '0000-00-00 00:00:00', 1),
(7042, 6936, 59, 5, 0, 'Interviewed by Jennifer - Will not suit for Calling', 64, '0000-00-00 00:00:00', 1),
(7043, 6937, 80, 4, 0, 'He having Marketing experience. He was in Tyre retailer Company sales person. He knowing many places in chennai. Every day he fix some areas and he went for sales. Calling skill ok but not good. Direct meet he will be good communication ', 64, '0000-00-00 00:00:00', 1),
(7044, 6925, 59, 5, 0, 'no basic ideas in the skills,not comfort with TxxampC', 64, '0000-00-00 00:00:00', 1),
(7045, 6926, 59, 5, 0, 'Interviewed by Reyaz,Not suitable no basic ideas ,will not sustain', 64, '0000-00-00 00:00:00', 1),
(7046, 6931, 59, 2, 0, 'can check him with the task,5050 profile,not sure will he join as his friends not selected for other roles', 64, '0000-00-00 00:00:00', 1),
(7047, 6929, 59, 5, 0, 'No basic ideas on the digital Marketing,will not sustain on our role', 64, '0000-00-00 00:00:00', 1),
(7048, 6888, 59, 3, 0, 'Selected for Esales RM - Karthika Team - PT - Prop', 11, '2021-11-30 05:48:17', 1),
(7049, 6888, 29, 7, 2, 'karthika team, salary 14k, need to review for 7 days and confirm for longer term', 59, '2021-11-30 06:04:47', 1),
(7050, 1793, 59, 4, 0, 'Have Ep in Credit Card Sales, fresh for Insurance Sales,Graduation not completed 5050 profile kindly check and let me know', 60, '0000-00-00 00:00:00', 1),
(7051, 6888, 59, 3, 0, 'Selected for Esales RM - Karthika Team - PT - Prop', 29, '2021-11-30 07:31:54', 1),
(7052, 6918, 59, 3, 0, 'Selected for Sarath Team with PF/ PT', 29, '2021-11-30 07:34:25', 1),
(7053, 1793, 51, 5, 0, 'rejected', 59, '2021-11-30 07:48:38', 1),
(7054, 6933, 11, 1, 0, NULL, 59, '2021-11-30 07:51:47', 1),
(7055, 6898, 59, 5, 0, 'Interviewed by Jennifer - Will not sustain in our role', 59, '2021-11-30 07:53:34', 1),
(7056, 6907, 59, 5, 0, 'Not clear with his passion towards the work,Pressure handling doubt, and the salary exp is also high in terms of Internship', 59, '2021-11-30 07:56:47', 1),
(7057, 6876, 35, 1, 0, NULL, 59, '2021-11-30 08:03:35', 1),
(7058, 6927, 59, 5, 0, 'Not open up, not ready to do sales calls much. Will not sustain in our positions', 60, '0000-00-00 00:00:00', 1),
(7059, 6771, 59, 3, 0, 'Selected for PHP - Intern for 3 months then employement overall 3 yrs SA', 27, '2021-12-01 11:38:48', 1),
(7060, 6947, 59, 5, 0, 'Not open up,Too long distance, Will not sustain in our role.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7061, 6948, 59, 4, 0, '5050 profile,fresher for telecaller,too long distance,Sustainability Doubts,kindly check and give your opinion for Tiruvallur', 60, '0000-00-00 00:00:00', 1),
(7062, 6953, 59, 5, 0, '4 months Exp in recruitment an looking for Telecaller position, No communication too. Will not handle our pressure .Not suitable ', 60, '0000-00-00 00:00:00', 1),
(7063, 6952, 59, 5, 0, 'have much only in inbound calls,Will not handle our sales.Salary Exp is also high\n', 60, '0000-00-00 00:00:00', 1),
(7064, 6946, 73, 7, 0, 'selected, confirm joining date ', 50, '0000-00-00 00:00:00', 1),
(7065, 6943, 59, 5, 0, 'Communication Poor,No clear ideas on the Recruitment, Will not handle our pressure and sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(7066, 6954, 74, 2, 0, 'good in profile voice clear suitable for telesalees , but highly expected in salary upto 13k need and sustainability issue...he is highly expected in salary and more than two years unemployed,already releived from two companies bajaj and icici company didnt gave proper explanantion for releiving he convenient for work in chennai to so try to took interview in chennai is better option.', 50, '0000-00-00 00:00:00', 1),
(7067, 6960, 73, 7, 0, 'selected , already worked in LIC 2 yrs exp. expected salary 15k , confirm joining date and salary.', 50, '0000-00-00 00:00:00', 1),
(7068, 6913, 59, 3, 0, 'Selected for GK sir Team with PF/PT Deductions', 29, '2021-12-01 05:44:33', 1),
(7069, 6946, 59, 3, 0, 'Selected for Tiruvallur Team in Cash mode - Patroniss', 73, '2021-12-01 05:58:43', 1),
(7070, 6960, 59, 5, 0, 'Candidate is not interested for the Telecaller, looking for opportunities in Admin. Earlier worked with Bluechip - Same Domain Insurance Sales,but no interest to continue in telecalling. For time being she s looking for the telecaller. Will not sustain ', 73, '2021-12-01 06:00:14', 1),
(7071, 5459, 59, 5, 0, 'No basic knowledge in the skills, If he comes back let us try, Need time to learn', 60, '0000-00-00 00:00:00', 1),
(7072, 6948, 14, 5, 0, 'not suitable for this profile', 59, '2021-12-01 06:07:24', 1),
(7073, 6950, 59, 5, 0, 'No Relevant Exp in Sales, have worked in multiple domain.Will not handle our sales pressure. Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(7074, 6944, 59, 2, 0, 'Profile is good, Have little exp in Recruitment, Can be trained, but she is currently pursuing her graduation. If she comes back will consider her profile', 64, '0000-00-00 00:00:00', 1),
(7075, 6955, 59, 2, 0, 'Communication is Good, have basic ideas of digital marketing, Can be trained, Need to come back on his confirmation for Internship only/Intern cum employment', 64, '0000-00-00 00:00:00', 1),
(7076, 6963, 73, 7, 0, 'selected, Expected salary 12k , confirmed for joining date xxamp salary.', 60, '0000-00-00 00:00:00', 1),
(7077, 6938, 18, 4, 4, 'No Laptop and interested in Office sales and does not wish to go for field. Analytical skill is average but she is a sales girl. Just check', 64, '0000-00-00 00:00:00', 1),
(7078, 6938, 40, 5, 0, 'Not fit for the profile', 18, '2021-12-02 12:01:51', 1),
(7079, 6965, 59, 2, 0, 'Candidate have basic knowledge in the Skills, have interest to learn .Can be trained, need to come back with his confirmation on TxxampC', 64, '0000-00-00 00:00:00', 1),
(7080, 6963, 59, 3, 0, 'Selected for Tiruvallur location in Patroniss No PF/ESI/PT', 73, '2021-12-02 12:11:48', 1),
(7081, 6942, 80, 4, 0, '50 - 50 profile\nHe was a good guy in terms of professional guy. He having attitude in that kindly check ji. ', 60, '0000-00-00 00:00:00', 1),
(7082, 6914, 18, 7, 4, 'Selected for Pandiarajan. Offeer 2.6L ctc. Ready to join on monday', 80, '2021-12-02 01:45:03', 1),
(7083, 6937, 18, 8, 0, 'Unable to reach him', 80, '2021-12-02 01:47:23', 1),
(7084, 6942, 18, 5, 0, 'Not fit for sales', 80, '2021-12-02 01:49:06', 1),
(7085, 6961, 40, 4, 3, 'Selected we can take a try', 64, '0000-00-00 00:00:00', 1),
(7086, 6959, 40, 5, 0, 'WIll not suit for our profile', 64, '0000-00-00 00:00:00', 1),
(7087, 6966, 59, 5, 0, 'Have Exp in Semivoice process and looking for Nonvoice/IT.In IT no basic knowledge will not sustain in our role', 60, '0000-00-00 00:00:00', 1),
(7088, 6967, 59, 2, 0, 'Not much relevant Exp,5050 profile.Have around 1+ yrs exp in sales/Service .Can schedule the candidate for F2F.30 Days notice period, shifting his job only for Hike', 60, '0000-00-00 00:00:00', 1),
(7089, 6964, 73, 5, 0, 'pronoun to disease very poor. qualification 12th std only . married . near to location. but drop.', 60, '0000-00-00 00:00:00', 1),
(7090, 6970, 40, 4, 0, 'Selected but need to check his sales skills and flexibilities', 64, '0000-00-00 00:00:00', 1),
(7091, 6973, 59, 4, 0, 'Have Exp in same Domain - Life insurance Sales, No proper relieving from the previous company. Internal Team Reference, can check for ESales. Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7092, 6961, 18, 5, 0, 'intersted in Opertions Job. Not Intersted in the sales', 40, '2021-12-03 12:20:06', 1),
(7093, 6976, 59, 4, 0, '5050 Profile, Have Exp in Telecalling - Collections/Recovery. Not much interested to do the Sales Call. Kindly check and let me know your inputs', 50, '0000-00-00 00:00:00', 1),
(7094, 6914, 59, 3, 0, 'Selected for Pandiarajan Team - RM with PF/PT\n', 18, '2021-12-03 01:10:42', 1),
(7095, 6973, 11, 1, 0, NULL, 59, '2021-12-03 02:56:05', 1),
(7096, 6978, 59, 5, 0, 'Communication ok have sales Exp but into sales of multiple domain .Not comfortable to take call. Will not suitable for our role .Sustainability doubts in our profiles', 50, '0000-00-00 00:00:00', 1),
(7097, 6976, 53, 5, 0, 'Not intrested in telecalling', 59, '2021-12-03 02:57:32', 1),
(7098, 6986, 58, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7099, 6987, 58, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7100, 6951, 59, 5, 0, 'Interviewed by Sabeha,only 3 months exp and looking for a change. Will not sustain with us and the salary Exp is high', 64, '0000-00-00 00:00:00', 1),
(7101, 6962, 59, 5, 0, 'Interviewed By Sabeha,Only 3 Months Exp And Looking For A Change. Will Not Sustain With Us And The Salary Exp Is High', 64, '0000-00-00 00:00:00', 1),
(7102, 6970, 18, 8, 0, 'connected twice\n but he did not attend', 40, '2021-12-04 02:10:51', 1),
(7103, 6969, 40, 4, 4, '50 - 50 profile but we can try, \nSalary expectation and Sustainability issue is there', 64, '0000-00-00 00:00:00', 1),
(7104, 6981, 59, 5, 0, 'Fresher for Recruitment, Communication ok, but not much comfort with txxampC. Salary Exp is very high being fresher. Will not sustain for a long', 64, '0000-00-00 00:00:00', 1),
(7105, 6980, 59, 5, 0, 'Fresher for Recruitment, seems not much comfort on the SA. Much comfortable for yr of SA, Need time to give us the confirmation, if he comes back let us see', 60, '0000-00-00 00:00:00', 1),
(7106, 6984, 59, 5, 0, 'Fresher for Recruitment, have exp as trainee HR executive from Kerela, looking for Recruitment with high salary Exp. Sustainability Doubts,', 60, '0000-00-00 00:00:00', 1),
(7107, 6777, 15, 4, 3, 'fresher so eaduthu train pananum but ok', 59, '2021-12-06 10:01:47', 1),
(7108, 6977, 59, 2, 0, 'Candidate communication ok,Not much comfort with 2.3 yrs of Service Agreement,planning to negotiate on the SA,But the initial internship and the salary pay of 12-13K max to be finallised with the candidate', 64, '0000-00-00 00:00:00', 1),
(7109, 6990, 59, 5, 0, 'Not suitable for our roles,will not sustain\n', 50, '0000-00-00 00:00:00', 1),
(7110, 6991, 59, 5, 0, 'Candidate communication is not clear - Stammering - Not comfortable to take the Call, Will not sustain in our role', 50, '0000-00-00 00:00:00', 1),
(7111, 6992, 59, 4, 0, 'Candidate Communication is ok,Fresher for Telecaller,Ready to relocate Bangalore,kindly check for ESales RM', 50, '0000-00-00 00:00:00', 1),
(7112, 6994, 59, 4, 0, 'Communication ok, Fresher for Sales, Can be Trained for Sales .Kindly check for ESales RM and let me know your inputs', 50, '0000-00-00 00:00:00', 1),
(7113, 6777, 59, 3, 0, 'Selected for Arumbakkam - Saravanan Team with PF/ESI/PT\n', 15, '2021-12-06 10:55:53', 1),
(7114, 6992, 56, 4, 0, 'selected for next round', 59, '2021-12-06 11:41:27', 1),
(7115, 6985, 59, 2, 0, 'Fresher Profile for Equity,Communication is Good,have interest to learn ,Can be trained in the areas of Stocks/Share.2nd Round interviewed by Raghu and forwarded for the final round. Interviewed by Gokul and the profile on Hold', 64, '0000-00-00 00:00:00', 1),
(7116, 6995, 59, 5, 0, 'Fresher for Insurance Sales,have worked with Reliance for 2 months,in 10 months 2 companies,not comfort to spend additional time in the work. Not suitable for our role', 50, '0000-00-00 00:00:00', 1),
(7117, 6969, 18, 7, 4, 'Selected for Hyderabad. Can give 288000 package. Last drawn take home was 20K and giving 20% Increament. Ready to join Next monday', 40, '2021-12-06 01:35:40', 1),
(7118, 7002, 59, 3, 0, 'Selected for Syed Team - RE with PF/ESI/PT Dedcutions', 60, '0000-00-00 00:00:00', 1),
(7119, 7000, 59, 5, 0, 'Communication ok, Fresher for Telecaller Sales Profile,Looking for IT Domain only and for the time being he is looking for the telecaller positions.Will not sustain and not suits for our role', 60, '0000-00-00 00:00:00', 1),
(7120, 7002, 57, 4, 0, 'candidate is ok kindly negotiate the salary and confirm the joining date', 59, '2021-12-06 04:42:47', 1),
(7121, 7001, 59, 5, 0, 'no Communication,no sustainability in his previous exp,will not handle our pressure on sales.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7122, 6999, 59, 5, 0, 'Fresher for Telecaller, Have Exp in Core only,Also seems to much comfort in the non voice/Core only. Not suitable for our role', 60, '0000-00-00 00:00:00', 1),
(7123, 6939, 59, 5, 0, 'Have Exp in Non Voice ,candidate communication sounds good,Not suits for CRM,RE Profile - No Bike 5050 handling the field Sales. Will not sustain in our role', 60, '0000-00-00 00:00:00', 1),
(7124, 7002, 59, 3, 0, 'Selected for Syed Team - RE with PF/ESI/PT Dedcutions', 57, '2021-12-06 05:34:44', 1),
(7125, 6969, 59, 2, 0, 'Candidate Didnt Respond to the calls', 18, '2021-12-06 05:50:08', 1),
(7126, 6994, 39, 1, 0, NULL, 59, '2021-12-07 09:57:04', 1),
(7127, 6955, 69, 5, 0, 'Candidate not suitable, he is not okay with job role', 59, '2021-12-07 09:58:09', 1),
(7128, 6955, 59, 4, 0, 'Communication Is Good, Have Basic Ideas Of Digital Marketing, Can Be Trained, Need To Come Back On His Confirmation For Internship Only/Intern Cum Employment', 59, '2021-12-07 09:58:09', 1),
(7129, 6944, 59, 5, 0, 'Profile Is Good, Have Little Exp In Recruitment, Can Be Trained, But She Is Currently Pursuing Her Graduation. If She Comes Back Will Consider Her Profile. As she is in her graduation final year full time, will not be comfortable to work in our profile.Sustainability Doubts she didnt turn back with her confirmation', 59, '2021-12-07 10:02:27', 1),
(7130, 6857, 59, 5, 0, 'Candidate is expecting min 80-90% Hike on the pay. Already we suggested him with the good percentage. But candidate is not ok with the pay.', 59, '2021-12-07 10:11:59', 1),
(7131, 6837, 59, 5, 0, 'Candidate is in dilemma to continue with his current company for another 6months to complete his 1 yr with ICICI, Even we projected him the salary offered. Candidate dropped', 59, '2021-12-07 10:12:29', 1),
(7132, 6998, 40, 5, 0, 'Will not suit for our profile', 64, '0000-00-00 00:00:00', 1),
(7133, 7003, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(7134, 7009, 59, 5, 0, 'Have Exp in multiple domain, not interested for Sales calls. Not suitable', 64, '0000-00-00 00:00:00', 1),
(7135, 7010, 59, 5, 0, 'have Exp as a receptionist, not clear for which position she applied. Will not handle the Telecaller Sales. Not Suitable', 64, '0000-00-00 00:00:00', 1),
(7136, 7011, 59, 3, 0, 'Selected for Pandiarajan Team - RM Candidate - With PF/PT Deductions', 64, '0000-00-00 00:00:00', 1),
(7137, 7013, 59, 5, 0, 'communication ok, seems not showing much importance to the job.Earlier 2 months worked as call coordinator then career gap,No Graduation, Will not sustain in our role', 64, '0000-00-00 00:00:00', 1),
(7138, 6983, 59, 5, 0, 'Have 3 months Exp in HR operations fresher for Recruitment, Communication ok, Married,Not comfort with TxxampC, need time to check with family, Pressure handling doubts. Long Stay doubts on the profile', 50, '0000-00-00 00:00:00', 1),
(7139, 7012, 59, 5, 0, 'Have 8 months exp in loan collections, Not interested to take the outbound calls. Not suitable and will not sustain. No Sustainability in her previous exp too.', 64, '0000-00-00 00:00:00', 1),
(7140, 7011, 80, 4, 4, 'Sales Experience he have. We trained indepth definitely we will get good employee', 59, '2021-12-07 01:21:59', 1),
(7141, 7011, 18, 7, 3, 'Selected for Pandiarajan team. Can give 23K Gross monthly... Immediate Joiner', 80, '2021-12-07 01:37:22', 1),
(7142, 7020, 56, 4, 0, 'selected for next round', 50, '0000-00-00 00:00:00', 1),
(7143, 7022, 56, 4, 0, 'Selceted for next round', 50, '0000-00-00 00:00:00', 1),
(7144, 7022, 11, 4, 0, 'candidate ok ', 56, '2021-12-07 03:17:14', 1),
(7145, 7020, 11, 4, 0, 'candidate is ok ', 56, '2021-12-07 03:17:44', 1),
(7146, 7021, 59, 5, 0, 'Not ready for ESales and for the CRM profile Exp is very high', 64, '0000-00-00 00:00:00', 1),
(7147, 7023, 59, 5, 0, 'Communication ok,Long Distance around 20 kms and the candidate is not ready to relocate ,also the salary exp is around min 18K PM. No Relevant Exp in Telecaller Sales Will not sustain in our role', 50, '0000-00-00 00:00:00', 1),
(7148, 7015, 59, 2, 0, 'Communication is Good,Currently pursuing CA,No regular graduation.At present working with Bank Bazaar ,in notice period. Holding an offer for 28K from a real estate Company. His current Cost in 15K PM, Candidate is doubtful on the sustainability in terms of salary,Check with the candidate and schedule him for the 2nd level interview and then we will finalise\n', 60, '0000-00-00 00:00:00', 1),
(7149, 7017, 59, 5, 0, 'Communication ok, Recently joined reliance and looking for change in terms of salary, also he is not comfort to take the calls and generating the leads.Will not sustain,not suitable', 60, '0000-00-00 00:00:00', 1),
(7150, 6969, 59, 2, 0, 'Candidate is in dilemma as he received another offer on 06Dec from Sykes for 3.5 LPA also he holds an offer from 24 mantra for the same we offered. Need to confirm the candidate tomorrow', 59, '2021-12-07 07:26:14', 1),
(7151, 7011, 59, 3, 0, 'Selected for Pandiarajan Team - RM Candidate - With PF/PT Deductions', 18, '2021-12-07 07:35:37', 1),
(7152, 7026, 40, 4, 3, 'Selected - Can give him a chance, Fresher to our industry, Salary expectation also reasonable and Having a Laptop and a bike, can able to join on 15th dec. ', 50, '0000-00-00 00:00:00', 1),
(7153, 7024, 59, 5, 0, 'Fresher ,No basic skills knowledge,not comfirt with the terms and conditions,need time to confirm on the TxxampC,if comes back let us check\n', 64, '0000-00-00 00:00:00', 1),
(7154, 7031, 59, 4, 0, 'Communication ok, sounds to be silent, have Sales Exp in Automobile Sales,5050 profile,can be trained in our Sales, kindly check and let me know your inputs', 50, '0000-00-00 00:00:00', 1),
(7155, 7027, 59, 5, 0, 'Fresher for IT he has exp in Core Civil Domian,Looking for IT openings.Not Strong with the basic skills.2nd LEvel Interviewed by Latha and the profile has been rejected', 64, '0000-00-00 00:00:00', 1),
(7156, 7026, 18, 5, 0, 'Not fit for our profile', 40, '2021-12-08 12:58:48', 1),
(7157, 7033, 59, 5, 0, 'Fresher for Telecaller, have Exp in Data Entry, Comfort to work in Non Voice Process, .He is a Dancer Too, Will not sustain with our role for a long', 64, '0000-00-00 00:00:00', 1),
(7158, 7034, 59, 5, 0, 'Not ready to work under Targets. Not suitable ', 64, '0000-00-00 00:00:00', 1),
(7159, 7037, 59, 5, 0, 'Not much suitable for the RM role, no relevant Sales Exp too, have worked in B2B earlier. no clarity on the previous job changes.Sustainability Doubts on this position', 60, '0000-00-00 00:00:00', 1),
(7160, 7031, 80, 5, 0, 'He went lunch after that he doesnxquott come to office', 59, '2021-12-08 02:54:12', 1),
(7161, 7039, 40, 4, 4, 'Fresher, immediate joiner, salary expectation is reasonable, having bike and Laptop, staying near to our office.', 64, '0000-00-00 00:00:00', 1),
(7162, 7041, 59, 5, 0, 'Have Exp in Customer Support and looking for IT openings but not relevant to our skill sets.Currently pursuing AWS course.Will not sustain in our Telecaller\n', 50, '0000-00-00 00:00:00', 1),
(7163, 7039, 18, 7, 4, 'Selected for Veben Team. Can give 3.25L CTC. Immed Joiner. quality Candidate by reference', 40, '2021-12-08 03:55:56', 1),
(7164, 7042, 59, 5, 0, 'No Relevant Exp in Sales,Will not handle our telecaller pressure.Looking for AWs openings', 50, '0000-00-00 00:00:00', 1),
(7165, 6941, 59, 5, 0, 'No clarity on the job he looks, profile shows he much prefers to be in Mechanical Design .Will not sustain in our recruitment Role\n', 64, '0000-00-00 00:00:00', 1),
(7166, 7020, 59, 3, 0, 'Selected for ESales Bangalore Reporting to Sathish Kumar in Prop - 208 Deductions', 11, '2021-12-08 05:42:56', 1),
(7167, 7022, 59, 3, 0, 'Selected For ESales Bangalore Reporting To Sathish Kumar In Prop - 208 Deductions', 11, '2021-12-08 05:44:22', 1),
(7168, 6969, 59, 5, 0, 'Candidate decided to go with the offer he holds for 3.5 LPA. Not interested', 59, '2021-12-09 10:10:29', 1),
(7169, 6899, 59, 5, 0, '5050 Profile, Have Exp In Byju As BDA, Fresher For IT Profile, Long Stay Not Sure On This Profile. Not suitable', 59, '2021-12-09 10:12:22', 1),
(7170, 7029, 40, 5, 1, 'Not fit', 50, '0000-00-00 00:00:00', 1),
(7171, 7048, 59, 5, 0, 'No Relevant Exp,have worked in multiple domain,in 2yrs worked with 4 companies. salary Exp is very high.Will not sustain in our position.Not suitable', 50, '0000-00-00 00:00:00', 1),
(7172, 7049, 59, 5, 0, 'Fresher ,not a Graduate,Have worked in non voice process only,Not comfort to work in Voice Process.Will not sustain in our role', 64, '0000-00-00 00:00:00', 1),
(7173, 7045, 59, 4, 0, 'Communication Average,5050 profile, Fresher for Telecaller,,Kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7174, 7039, 59, 3, 0, 'selected for Veben Team with PF/PT. Commitment has been given to the candidate on the revision of the salary after 6 months', 18, '2021-12-09 01:58:56', 1),
(7175, 7045, 14, 5, 0, 'Not suitable for this voice process', 59, '2021-12-09 03:16:03', 1),
(7176, 7040, 59, 5, 0, 'Communication Average, 3 yrs 3 companies, seems not much good profile for our recruitment, Sustainability also doubts, handling pressure Doubts, Father is Govt Chief Health Inspector', 64, '0000-00-00 00:00:00', 1),
(7177, 7056, 59, 5, 0, 'No Relevant Exp ,Earlier he was a Field Service Engineer .Candidate not open for Field Sales, looking for office based Telecaller work and his last drawn monthly 18K .Will not sustain in our roles.', 60, '0000-00-00 00:00:00', 1),
(7178, 7054, 59, 5, 0, 'Communication ok, no strong knowledge in React, Having knowledge only in HTML,CSS. Too long distance around60kms up and down.', 64, '0000-00-00 00:00:00', 1),
(7179, 7006, 40, 5, 2, 'Not fit for our profile', 50, '0000-00-00 00:00:00', 1),
(7180, 7060, 40, 5, 0, 'Raj BDM took the Interview, sustainability issue and not having relavant experienvce so rejected', 50, '0000-00-00 00:00:00', 1),
(7181, 7057, 40, 4, 3, 'Candidate is ok but he is expecting high package we need to negotiate that part alone otherwise profile is ok.', 64, '0000-00-00 00:00:00', 1),
(7182, 7066, 30, 4, 0, 'candidate selected ,confirm salary part and joining date', 50, '0000-00-00 00:00:00', 1),
(7183, 7065, 56, 4, 0, 'selected for next round', 50, '0000-00-00 00:00:00', 1),
(7184, 7068, 27, 2, 0, 'Fresher. Having Learning Capability. He knows UX Design stuffs and need to learn UI Stuffs. Okay for an Internship. He will confirm with his parents for our terms.', 64, '0000-00-00 00:00:00', 1),
(7185, 7072, 56, 5, 0, 'Not selected', 50, '0000-00-00 00:00:00', 1),
(7186, 7073, 59, 4, 0, '5050 profile, no relevant Exp,Every 1 year changed the job, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7187, 7066, 59, 3, 0, 'Selected for Bangalore ESales - PF/ESI/PT Deductions', 30, '2021-12-10 11:50:50', 1),
(7188, 7075, 56, 4, 0, 'selected for next round', 50, '0000-00-00 00:00:00', 1),
(7189, 7074, 56, 5, 0, 'not selected', 50, '0000-00-00 00:00:00', 1),
(7190, 7076, 59, 5, 0, 'No basic knowledge in the required skills,much comfort to work in the non voice process', 50, '0000-00-00 00:00:00', 1),
(7191, 7077, 59, 5, 0, 'Not interested for Insurance Sales', 64, '0000-00-00 00:00:00', 1),
(7192, 7053, 59, 5, 0, 'Communication ok, Fresher for Stocks, Much into finance/Accounting. Recently married and sustainability doubts on this profile.', 64, '0000-00-00 00:00:00', 1),
(7193, 7052, 59, 5, 0, 'Communication ok, have 1 yr exp as HR Trainee in TVS, Recently Married, Salary Exp is very high Min 17K.No relevant Exp in Recruitment, can be trained, but sustainability doubts', 64, '0000-00-00 00:00:00', 1),
(7194, 7064, 59, 5, 0, 'Communication Average, much focus on the salary only. Pressure handling doubt, will not sustain', 50, '0000-00-00 00:00:00', 1),
(7195, 7057, 18, 7, 4, 'Selected for Hyderabad. Ready to Join next thursday(23 Dec 2021) Salary ecpectation is high and need to negotiate.', 40, '2021-12-10 03:13:55', 1),
(7196, 7043, 59, 5, 0, 'Candidate communication is ok,No basic knowledge in the Recruitment.Worked in the core for almost 2 yrs, have a plan to go with Master degree. Preparing Civil Service Exam too. Will not sustain for a long', 64, '0000-00-00 00:00:00', 1),
(7197, 7073, 44, 1, 0, NULL, 59, '2021-12-10 05:19:37', 1),
(7198, 7065, 30, 4, 0, 'About candidate i have one doubt \nfor job sustainity bcoz she wrote exam for police, waiting for result after that physical test its there. once again confirm from your end , if its ok then move for further process', 56, '2021-12-10 05:52:53', 1),
(7199, 7083, 59, 5, 0, 'Communication Average ,Frequent Job Changes,Exp as a service Engineer,Not suitable for Telecaller/RE/RM', 64, '0000-00-00 00:00:00', 1),
(7200, 7075, 30, 4, 0, 'Candidate selected , Cofirm salary package , expectation 15k but she is fresher ,as per company norms base salary we can provide. Probably monday she will join', 56, '2021-12-10 05:58:09', 1),
(7201, 7075, 59, 2, 0, 'Candidate is a fresher and No highest graduation- not completed,also too long distance almost 2.5 hours travel, Need to check with family for the confirmation on the job', 30, '2021-12-10 06:30:42', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(7202, 7065, 59, 3, 0, 'Selected for Esales - Madiwalla with PT only in CAFS Infotech Prop', 30, '2021-12-10 06:33:27', 1),
(7203, 7016, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(7204, 7084, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(7205, 7088, 59, 5, 0, 'Not much comfortable for Field Sales, looking for Inventory and Stocks maintenance Roles much', 64, '0000-00-00 00:00:00', 1),
(7206, 7089, 59, 4, 0, '5050 profile, have exp in Telecaller xxamp Non Voice, Kindly check for CRM role in your team and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7207, 7087, 59, 5, 0, 'Communication ok, Fresher profile, Salary Exp is very high,Already he holds offer multiple offers and awaiting for the final discussion with byjuxquots. Will not sustain ', 50, '0000-00-00 00:00:00', 1),
(7208, 7089, 51, 5, 0, 'rejected', 59, '2021-12-11 01:26:48', 1),
(7209, 7090, 59, 4, 0, 'Discussed with the candidate, Fresher for our Sales, Have exp in CRM roles only.In 1.5 yrs 2 companies changed and looking for the third. We can try this profile,5050 Schedule the candidate for F2F interview by monday', 60, '0000-00-00 00:00:00', 1),
(7210, 7090, 56, 5, 0, 'did not come for interview', 59, '2021-12-11 05:29:36', 1),
(7211, 7080, 59, 2, 0, 'Communciation ok,fresher for Recruitment, Need to analyse the candidate in depth on F2F.Once she is back to chennai schedule her for F2F', 60, '0000-00-00 00:00:00', 1),
(7212, 7019, 40, 5, 2, 'Will not fit for the profile', 60, '0000-00-00 00:00:00', 1),
(7213, 7097, 59, 5, 0, 'Candidate is interested towards the non voice process only', 60, '0000-00-00 00:00:00', 1),
(7214, 7047, 59, 3, 0, 'Selected for Elite RE- Muthu Team in Patroniss Cash', 60, '0000-00-00 00:00:00', 1),
(7215, 7047, 13, 7, 4, 'ok 10k salary thursday joining', 59, '2021-12-14 10:06:34', 1),
(7216, 7047, 59, 3, 0, 'Selected for Elite RE- Muthu Team in Patroniss Cash', 13, '2021-12-14 12:59:10', 1),
(7217, 7093, 59, 5, 0, 'Communication ok, fresher for recruitment, Salary Exp is high, Need to confirm with her family on SA, if she comes back let us see', 60, '0000-00-00 00:00:00', 1),
(7218, 7107, 59, 4, 0, 'No Relevant Exp In Sales Fresher, Having Attitude Issue, Sustainability Doubts,5050 Profile, Kindly Check And Let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7219, 7085, 59, 5, 0, 'Candidate Communication is Good, Fresher for Recruitment, Currently pursuing MBA and she will be having saturday xxamp sunday class. Salary expectation seems high .Not much comfort with the submission of documents. Doubts to stay not more than a year. If she comes back let us see', 60, '0000-00-00 00:00:00', 1),
(7220, 7102, 57, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(7221, 7108, 59, 5, 0, 'Just 3 months Exp in Telecaller and much prefer to work in Non Voice process,Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7222, 7111, 59, 4, 0, 'communication ok, have 6 month exp in health insurance, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7223, 7111, 24, 5, 0, 'i dont remember on this .. old candidate', 59, '2021-12-14 05:30:37', 1),
(7224, 7107, 51, 5, 0, 'rejected', 59, '2021-12-14 05:35:00', 1),
(7225, 7117, 59, 5, 0, 'Candidate Not Comfortable With The Positions .Will Not Sustain In Our Roles.', 64, '0000-00-00 00:00:00', 1),
(7226, 7118, 59, 5, 0, 'Communication Average,No basic knowledge relates to the telecaller skills, Will not sustain in our positions.Not suitable', 64, '0000-00-00 00:00:00', 1),
(7227, 7119, 59, 5, 0, 'candidate is comfort to work in nonvoice process only, Too long Distance. Not suitable for our roles, will not sustain', 64, '0000-00-00 00:00:00', 1),
(7228, 7079, 40, 5, 0, 'Rejected will not fit', 64, '0000-00-00 00:00:00', 1),
(7229, 7082, 40, 5, 0, 'Rejected will not fit for our profile', 64, '0000-00-00 00:00:00', 1),
(7230, 7046, 40, 5, 0, 'Not fit', 64, '0000-00-00 00:00:00', 1),
(7231, 7110, 59, 3, 0, 'Selected for RE - Syed Team with PF/ESI/PT\n\n', 64, '0000-00-00 00:00:00', 1),
(7232, 7125, 59, 5, 0, 'Not clear in his job preference, looking for Sales, IT openings. Pressure handling doubt on this profile.', 64, '0000-00-00 00:00:00', 1),
(7233, 7120, 30, 4, 0, 'Expected salary 15k , candidate selected, finalize ctc and confirm joining', 50, '0000-00-00 00:00:00', 1),
(7234, 7103, 40, 5, 0, 'Not fit for our profile', 64, '0000-00-00 00:00:00', 1),
(7235, 7126, 59, 5, 0, 'She is a fresher profile and not comfortable for the Chennai location, looking for opportunities in and around Kerala. Prefer to work only in the IT openings only', 64, '0000-00-00 00:00:00', 1),
(7236, 7114, 40, 5, 0, 'Salary Expectation is high and not having proper exp in sales and sustainability issue is there, and not having laptop as well.', 64, '0000-00-00 00:00:00', 1),
(7237, 6992, 30, 5, 0, 'communication Skill', 56, '2021-12-15 01:53:20', 1),
(7238, 6370, 59, 5, 0, 'Not open to work on targets, Already joined justdial and left the company due to work pressure,Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7239, 7110, 57, 4, 0, 'Candidate is ok.. kindly negotiate the salary', 59, '2021-12-15 03:28:33', 1),
(7240, 7117, 16, 7, 0, 'SELECTED', 59, '2021-12-15 03:42:51', 1),
(7241, 7128, 30, 4, 0, 'Candidate selected she will join on monday confirm the salary part and further formalities', 50, '0000-00-00 00:00:00', 1),
(7242, 7117, 59, 5, 0, 'Candidate Not Comfortable With The Positions .Will Not Sustain In Our Roles.', 16, '2021-12-15 06:01:43', 1),
(7243, 7120, 59, 2, 0, 'RNR\n', 30, '2021-12-15 06:07:42', 1),
(7244, 7128, 59, 3, 0, 'Selected for ESales RM - Bangalore Location ', 30, '2021-12-15 06:08:27', 1),
(7245, 7141, 59, 3, 0, 'Selected for Digital Marketing - PT only\n', 60, '0000-00-00 00:00:00', 1),
(7246, 7141, 69, 4, 0, 'Candidate Okay, Please Check For Bond And Salary.', 59, '2021-12-15 07:08:02', 1),
(7247, 7141, 59, 3, 0, 'Selected for Digital Marketing - PT only\n', 69, '2021-12-15 07:52:51', 1),
(7248, 7140, 59, 5, 0, 'Frequent Job changer and the salary exp 25K TH in very high. Will not sustain', 64, '0000-00-00 00:00:00', 1),
(7249, 7147, 59, 5, 0, 'Attitude Issue,Frequent Job changes,Looking only for the Salary Growth.Will not handle our sales pressure.Not suitable', 64, '0000-00-00 00:00:00', 1),
(7250, 7122, 40, 5, 0, 'Not fit for the profile', 64, '0000-00-00 00:00:00', 1),
(7251, 7134, 40, 5, 0, 'Not fit for the profilw', 64, '0000-00-00 00:00:00', 1),
(7252, 7135, 40, 5, 0, 'Rejected Over the call', 64, '0000-00-00 00:00:00', 1),
(7253, 7148, 59, 5, 0, 'Not much comfortable with the Targets, Will not sustain ', 64, '0000-00-00 00:00:00', 1),
(7254, 7139, 59, 5, 0, 'Communication is Good,Looking only for MIS Activities,but not comfortable in handling the calls for a long as she is having some ear problem.The profile can be considered later for any immeidate circumstances', 64, '0000-00-00 00:00:00', 1),
(7255, 7149, 40, 5, 0, 'Not suitable for our profile', 64, '0000-00-00 00:00:00', 1),
(7256, 7127, 59, 5, 0, 'communication average, not comfort with the Terms and the salary also, will not sustain in our roles', 64, '0000-00-00 00:00:00', 1),
(7257, 7035, 59, 2, 0, 'Fresher for Telecaller-Esales,Sustainability Doubts,she recently married,Not comfort to travel from her location to madiwalla, requested time to confirm her interest', 64, '0000-00-00 00:00:00', 1),
(7258, 7130, 59, 5, 0, 'Communication Average,Not much comfort on the Document Submission, Seems to be slow and pressure handling doubt', 64, '0000-00-00 00:00:00', 1),
(7259, 7124, 59, 5, 0, 'Communication ok,Not much comfort with TxxampC,Document submission need to check with family,if he comes back let us decide', 64, '0000-00-00 00:00:00', 1),
(7260, 7152, 24, 7, 0, 'candidates selected.', 60, '0000-00-00 00:00:00', 1),
(7261, 7110, 59, 3, 0, 'Selected for RE - Syed Team with PF/ESI/PT\n\n', 57, '2021-12-16 03:36:36', 1),
(7262, 7155, 59, 4, 0, 'Check for Digital Marketing,No Exp in Digital Marketing,Fresher,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7263, 7129, 59, 5, 0, 'Working With HCL In Non Voice, Looking For Both Voice/Nonvoice, But The Salary Exp Is High.Candidate is in Dilemma.If she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(7264, 7152, 59, 3, 0, 'Selected for Suthagar - PF/ESI/PT\n', 24, '2021-12-16 05:52:27', 1),
(7265, 7155, 69, 5, 0, 'CSE degree holder but cant reply more than 3 HTML tags', 59, '2021-12-16 06:33:21', 1),
(7266, 7145, 59, 5, 0, 'Candidate 5050 profile,fresher for Sales,Scheduled the candidate for 2nd level,but left without attending the 2nd round', 60, '0000-00-00 00:00:00', 1),
(7267, 7146, 59, 2, 0, 'Have Exp in Collections only, not open for Field Sales RM profile, Discussed with Gokul on the profile.', 60, '0000-00-00 00:00:00', 1),
(7268, 7159, 59, 5, 0, 'Communication Average, Prefers to work much in Non voice only, Seems not much comfort with the targets, Preparing for the Bank Exams, Will not sustain and pressure handling doubt', 64, '0000-00-00 00:00:00', 1),
(7269, 7154, 59, 5, 0, 'No communication Understanding poor, Not suitable ', 64, '0000-00-00 00:00:00', 1),
(7270, 7150, 40, 4, 0, 'Spoke to her Over the call, She may suits for E-sales RM profile, Salary Expectation is 15-18k, Immediate Joiner. Let her have a discussion with Sriram once, Let him decide.', 64, '0000-00-00 00:00:00', 1),
(7271, 7142, 59, 5, 0, 'Attitude, Fresher for the recruitment age around 27 yrs,Career Gap,No sustainability in the previous companies.Will not suits to our role', 64, '0000-00-00 00:00:00', 1),
(7272, 7153, 59, 4, 0, 'Communication is Good, Have interest to learn,Can be trained in HR Recruitment.Need to schedule for a virtual interview\n', 64, '0000-00-00 00:00:00', 1),
(7273, 7057, 59, 2, 0, 'Discussed with the candidate, yet to get his documents. Salary Exp is High', 18, '2021-12-17 12:08:22', 1),
(7274, 7161, 59, 2, 0, 'Candidate Communication is Good,Can be trained in the Recruitment,need to check and give his confirmation on the TxxampC\n', 64, '0000-00-00 00:00:00', 1),
(7275, 7137, 59, 5, 0, 'Communication Average, Career Gap,No Relevant Exp ,Sustainability Doubt.Will not handle the pressure\n', 64, '0000-00-00 00:00:00', 1),
(7276, 7150, 18, 7, 4, 'Selected for E Sale RM in hyderabad. Expected salary is 18K Take home and immed joiner', 40, '2021-12-17 01:53:10', 1),
(7277, 7165, 59, 4, 0, 'Communication ok, Have Exp in Sales not exactly in insurance, can be trained. Kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7278, 7153, 72, 1, 0, NULL, 59, '2021-12-17 03:05:55', 1),
(7279, 7075, 59, 3, 0, 'Selected for ESales - Bangalore Location with PT only', 59, '2021-12-17 03:37:12', 1),
(7280, 7120, 59, 3, 0, 'Selected for ESales Rm - Bangalore - PT deduction only', 59, '2021-12-17 03:41:23', 1),
(7281, 7169, 59, 5, 0, 'Communicaiton ok,5050 profile,no relevant Exp,Age around 36 yrs,Sustainability Doubts,2nd round interviewed by Shanmuga K and Rejected', 64, '0000-00-00 00:00:00', 1),
(7282, 7170, 59, 2, 0, 'Candidate is in outside, Need to call tomorrow', 64, '0000-00-00 00:00:00', 1),
(7283, 7165, 80, 4, 3, 'Ji kindly check for for value or not. Myself he Will be work based on financial situation but quality wise he is not ok', 59, '2021-12-17 05:50:09', 1),
(7284, 6736, 59, 5, 0, 'Fresher, Scheduled for a F2F ,but candidate didnt turn', 59, '2021-12-17 05:57:33', 1),
(7285, 7156, 59, 4, 0, 'Not suitable for ESales, have Much Exp in Non Voice and Voice process Too, Pressure handling doubts, also have a thought on candidate learning, Kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7286, 3212, 59, 5, 0, 'have 4 months of Sales Exp, Career Gap, Can be trained for Relationship manager. Scheduled with GK sir for the 2nd level, but the candidate left without attending the interview', 64, '0000-00-00 00:00:00', 1),
(7287, 7183, 59, 3, 0, 'Selected for RM - with PF/PT Deductions', 64, '0000-00-00 00:00:00', 1),
(7288, 7160, 59, 5, 0, 'Communication Ok, Candidate seems to be slow, sustainability and pressure holding Doubt ', 64, '0000-00-00 00:00:00', 1),
(7289, 7184, 59, 5, 0, 'No Clarity on her interest towards the profile. Have a thought of doing B.L.Much preferes to go in Non voice, Will not sustain and handle the pressure Doubts', 64, '0000-00-00 00:00:00', 1),
(7290, 7185, 59, 4, 0, 'Communication is Good, Fresher for Digital Marketing, Can be trained, Currently Serving Notice, Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7291, 7181, 59, 2, 0, 'Communication ok, Open for Elite position, need to schedule the candidate for F2F and then we can decide the profile', 60, '0000-00-00 00:00:00', 1),
(7292, 7186, 59, 5, 0, 'Have Exp in Loan Collections, Not Comfortable to travel due to his health conditions, Will not Sustain for a long', 64, '0000-00-00 00:00:00', 1),
(7293, 7185, 69, 5, 0, 'Candidate did not turn up for the final round\n', 59, '2021-12-18 04:06:14', 1),
(7294, 7183, 31, 4, 4, 'candidate okay forwarded to gaurav for finalise', 59, '2021-12-18 04:12:21', 1),
(7295, 7156, 53, 5, 0, 'She is looking non voice process', 59, '2021-12-18 04:17:27', 1),
(7296, 7158, 59, 5, 0, 'Fresher,No native language,candidate is from Andaman,Salary Exp is high.Not suitable ', 64, '0000-00-00 00:00:00', 1),
(7297, 7188, 40, 5, 0, 'Not fit for the profile', 64, '0000-00-00 00:00:00', 1),
(7298, 7138, 59, 4, 0, 'Fresher for PHP,Can be trained ,kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7299, 7200, 59, 5, 0, 'Communication ok, no relevant Exp, Will not sustain in Insurance Sales.', 64, '0000-00-00 00:00:00', 1),
(7300, 7199, 59, 5, 0, 'Preferred to work in Non Voice process', 64, '0000-00-00 00:00:00', 1),
(7301, 7131, 59, 5, 0, 'Fresher for React, have Exp in graphic Designing not in depth. Looking for opportunities in IT, But no basic skill knowledge. If he come back let us decide ', 64, '0000-00-00 00:00:00', 1),
(7302, 7201, 59, 2, 0, 'Communication ok, Have Exp in Telecalling but not in Sales. She need time to give her confirmation ', 64, '0000-00-00 00:00:00', 1),
(7303, 7187, 59, 5, 0, 'Attitude,Too long distance,Communication,Sustainability Doubts.In internship with the company and his expectation is also high.', 64, '0000-00-00 00:00:00', 1),
(7304, 7172, 59, 2, 0, 'Communication ok,can be trained in HR,Will come back with her confirmation on the TxxampC', 64, '0000-00-00 00:00:00', 1),
(7305, 7092, 59, 2, 0, 'Communication ok,can be trained in HR Recruitment,Will come back with his confirmation on the TxxampC', 64, '0000-00-00 00:00:00', 1),
(7306, 7183, 29, 7, 2, 'Selected for RM, GK team', 31, '2021-12-20 03:47:54', 1),
(7307, 7105, 59, 5, 0, 'Looking for Retail Sales only.Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7308, 7206, 59, 5, 0, 'No Sustainability in the previous Exp,Attitude,will not sustain,handling pressure No.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7309, 7202, 59, 4, 0, 'Have Agency Manager Exp in Bharati Axa,Communication ok,Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7310, 7202, 31, 5, 0, 'not fit for sales profile', 59, '2021-12-20 05:17:51', 1),
(7311, 7138, 27, 5, 0, 'No Response.', 59, '2021-12-20 05:24:23', 1),
(7312, 7181, 59, 5, 0, 'Received a message from candidate that she got another offer', 59, '2021-12-20 05:27:02', 1),
(7313, 6797, 59, 5, 0, ' the candidate is expecting the high Pay than we suggested. Dropped', 59, '2021-12-20 05:32:21', 1),
(7314, 6985, 59, 5, 0, 'Exp and Not much Comfort on TxxampC,Dropped ', 59, '2021-12-20 05:33:31', 1),
(7315, 7203, 59, 4, 0, '5050 Profile,No Exp Fresher for Sales,Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7316, 7203, 56, 5, 0, 'did not come for interview', 59, '2021-12-20 05:36:47', 1),
(7317, 7183, 59, 3, 0, 'Selected for RM - with PF/PT Deductions', 29, '2021-12-20 06:28:13', 1),
(7318, 7150, 59, 3, 0, 'Selected for ESales Hyderabad with PT Only\n', 18, '2021-12-20 07:05:54', 1),
(7319, 7198, 39, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7320, 7204, 59, 5, 0, 'Communication Average, Few months Exp in Recruitment, Handling pressure Doubts.Sustainability Doubts in our role', 64, '0000-00-00 00:00:00', 1),
(7321, 7214, 59, 3, 0, 'Selected for Sarath Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7322, 7208, 59, 5, 0, 'Communication Average, Will not handle the pressure, Sustainability Doubts .Not suitable', 64, '0000-00-00 00:00:00', 1),
(7323, 7166, 59, 2, 0, 'Communication ok,Have Few months Exp in Recruitment,But sustainability douobts with respect to her age,but can give a try for recruitment', 64, '0000-00-00 00:00:00', 1),
(7324, 7216, 59, 3, 0, 'Selected for Raj Kumar Team - Relationship Manager with PF/PT', 64, '0000-00-00 00:00:00', 1),
(7325, 7218, 59, 5, 0, 'No sustainability in the previous Exp, Attitude, Looking only on the monetory growth .Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7326, 7212, 59, 3, 0, 'Selected for Pandian Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(7327, 7211, 59, 5, 0, 'Looking for Non voice process only', 60, '0000-00-00 00:00:00', 1),
(7328, 7193, 59, 5, 0, 'No Communication no basic knowledge,Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7329, 7212, 80, 7, 4, 'Good Guy will be continue atleast 2 years', 59, '2021-12-21 04:27:00', 1),
(7330, 7214, 51, 7, 0, 'selected', 59, '2021-12-21 04:28:24', 1),
(7331, 7216, 33, 4, 0, 'Candidate has no telecalling experience having cold call experience and field work please cross check his sustainability and fix salary upto 22 k per Month take home', 59, '2021-12-21 04:43:21', 1),
(7332, 7205, 59, 5, 0, 'No Communication, have exp as coordinator in the recruitment process.Will not sustain in our roles', 64, '0000-00-00 00:00:00', 1),
(7333, 7215, 59, 5, 0, 'Fresher for Recruitment,Focus much in Aviation,for time being looking for other opportunities', 64, '0000-00-00 00:00:00', 1),
(7334, 7221, 59, 2, 0, 'Fresher for HR Recruitment, communication ok can be trained currently working and the LWD is Jan 31st', 64, '0000-00-00 00:00:00', 1),
(7335, 7223, 59, 5, 0, 'Looking for Logistics opportunites,Travelling to UK in the month of Aug 2022..Will not sustain and not interested for Insurance Sales', 64, '0000-00-00 00:00:00', 1),
(7336, 7224, 59, 4, 0, '5050 profile no relevant Insurance Sales but have Exp in Sales. Check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7337, 7219, 59, 5, 0, 'Sounds very low and too long distance around 60 kms,will not sustain', 64, '0000-00-00 00:00:00', 1),
(7338, 7227, 59, 4, 0, 'Communication ok no Exp in Insurance Sales,can be trained 5050 profile, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7339, 7226, 59, 5, 0, 'Not much comfortable with taking calls, will not sustain in the field', 64, '0000-00-00 00:00:00', 1),
(7340, 7230, 59, 5, 0, 'Looking for positions without target,much focus on the office timings.Will not handle the pressure .Not suitable', 64, '0000-00-00 00:00:00', 1),
(7341, 7228, 59, 5, 0, 'no communication,Not open for Voice process,looking for Accounting positions only.No clarity in the speech', 64, '0000-00-00 00:00:00', 1),
(7342, 7233, 59, 5, 0, 'Have Internshi[ Exp in Muthoot,No bike ,Too long Distance up and down 40 kms and the Salary Expectation is high', 64, '0000-00-00 00:00:00', 1),
(7343, 7212, 18, 7, 4, 'Selected for Pandi Team. Informed arun to discuss the Package', 80, '2021-12-22 03:45:44', 1),
(7344, 7165, 18, 8, 0, 'Need to Reschedule', 80, '2021-12-22 03:49:12', 1),
(7345, 7235, 59, 5, 0, 'Communication ok have exp as ESales RM in ICICI bank,Looking for opportunities in CRM/Esales but the salary Exp is very High.Around 23-25K she expects.Need time to confirm her interest', 64, '0000-00-00 00:00:00', 1),
(7346, 7224, 80, 5, 0, 'Candidate didnt came for the final round', 59, '2021-12-22 05:12:20', 1),
(7347, 7227, 31, 5, 0, 'not fit for this profile\n', 59, '2021-12-22 05:14:58', 1),
(7348, 7035, 59, 5, 0, 'Fresher For Telecaller-Esales,Sustainability Doubts,She Recently Married,Not Comfort To Travel From Her Location To Madiwalla, Didnt come back with her interest', 59, '2021-12-22 05:18:30', 1),
(7349, 7225, 59, 2, 0, 'Discussed with the candidate,need to come for F2F\n', 60, '0000-00-00 00:00:00', 1),
(7350, 7238, 59, 5, 0, 'Looking much for non Voice process only,will not sustain', 64, '0000-00-00 00:00:00', 1),
(7351, 7241, 59, 5, 0, 'Looking for Non Voice Process only ', 64, '0000-00-00 00:00:00', 1),
(7352, 7213, 59, 5, 0, 'He is open for the Non Voice Process only', 64, '0000-00-00 00:00:00', 1),
(7353, 7244, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 64, '0000-00-00 00:00:00', 1),
(7354, 7245, 59, 5, 0, 'Looking much for Non Voice Process, Not open up will not handle the pressure', 64, '0000-00-00 00:00:00', 1),
(7355, 7246, 59, 4, 0, 'High Exp profile age around 31 yrs, internal reference, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7356, 7243, 59, 4, 0, '5050 profile have Exp in Telecaller for ! yr postpaid Collection,kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7357, 7104, 59, 3, 0, 'Selected for CRm Role - Banu Team in consultant Role', 64, '0000-00-00 00:00:00', 1),
(7358, 7237, 59, 5, 0, 'Candidate is very slow,No Communication ,looking only for the salary,Will not sustain', 64, '0000-00-00 00:00:00', 1),
(7359, 7236, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7360, 7247, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 64, '0000-00-00 00:00:00', 1),
(7361, 7229, 59, 5, 0, 'Prefer to work in logistics,since no opportunities joined HR Recruitment before 20 days and looking for another as there is issue inthe management,SAlary Exp is very high being a fresher', 64, '0000-00-00 00:00:00', 1),
(7362, 7248, 59, 5, 0, 'Very slow,Will not handle the pressure,Sustainability Doubts', 64, '0000-00-00 00:00:00', 1),
(7363, 7240, 73, 5, 0, 'rejected', 50, '0000-00-00 00:00:00', 1),
(7364, 7249, 59, 2, 0, 'Will come tomorrow with the task for Voice Process - Banu\n', 64, '0000-00-00 00:00:00', 1),
(7365, 7104, 53, 7, 0, 'Selected for portfolio, DOJ 27th dec, sal 10.5k , She is ok with 1yr Agreement', 59, '2021-12-23 05:50:27', 1),
(7366, 7243, 11, 1, 0, NULL, 59, '2021-12-23 05:57:11', 1),
(7367, 7244, 57, 4, 3, 'Candidate is ok kindly confirm the salary and joining date ', 59, '2021-12-23 05:58:02', 1),
(7368, 7246, 80, 5, 0, 'Age criteria not met', 59, '2021-12-23 05:59:04', 1),
(7369, 7239, 59, 5, 0, 'Looking for non voice process only', 60, '0000-00-00 00:00:00', 1),
(7370, 7247, 82, 7, 0, 'shortlisted kindly finalise the salary package.', 59, '2021-12-23 06:12:13', 1),
(7371, 7225, 59, 5, 0, 'Will not sustain,Salary Exp is Very High', 59, '2021-12-23 06:12:44', 1),
(7372, 7244, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2021-12-23 06:19:38', 1),
(7373, 7214, 29, 7, 2, 'Selected for RM, Sarath Team', 51, '2021-12-23 06:20:29', 1),
(7374, 7216, 18, 7, 0, 'Selected for Raj Team Sopken 3L package Ready to Join on 27th', 33, '2021-12-23 06:29:57', 1),
(7375, 7251, 59, 5, 0, 'No Communication,Sustainability Doubts ,not suitable for our recruitment Roles', 64, '0000-00-00 00:00:00', 1),
(7376, 7252, 59, 5, 0, 'No communication Career Gap,Will not handle the pressure and sustainability Doubts', 64, '0000-00-00 00:00:00', 1),
(7377, 7104, 59, 3, 0, 'Selected for CRm Role - Banu Team in consultant Role', 53, '2021-12-24 12:00:27', 1),
(7378, 7247, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 82, '2021-12-24 12:45:57', 1),
(7379, 7178, 59, 5, 0, 'Left without attending the interview', 64, '0000-00-00 00:00:00', 1),
(7380, 7264, 59, 5, 0, 'No Local Communication, have Exp in Sales Worked in UAE for a long, Will not sustain if he gets opportunity may leave ', 64, '0000-00-00 00:00:00', 1),
(7381, 7262, 59, 3, 0, 'Selected for Banu CRM Role - 5% TDS', 60, '0000-00-00 00:00:00', 1),
(7382, 7262, 53, 7, 0, 'Selected for Portfolio team, 10.5k sal. ', 59, '2021-12-24 01:39:51', 1),
(7383, 7221, 59, 3, 0, 'Will come and join after pongal - IJOBS', 59, '2021-12-24 02:23:22', 1),
(7384, 7257, 59, 5, 0, 'Have Exp in Loan Sales,Handling Pressure Doubt,Sustainability doubts,Salary Exp is also high', 60, '0000-00-00 00:00:00', 1),
(7385, 7258, 59, 5, 0, 'Candidate Didnxquott come back with her confirmation in the time she requested', 60, '0000-00-00 00:00:00', 1),
(7386, 7258, 53, 7, 0, 'Selected 12k, she need to discus sal with his family then she ll cnfrm', 59, '2021-12-24 02:44:36', 1),
(7387, 7262, 59, 3, 0, 'Selected for Banu CRM Role - 5% TDS', 53, '2021-12-24 03:38:25', 1),
(7388, 7258, 59, 5, 0, 'Candidate Didnxquott come back with her confirmation in the time she requested', 53, '2021-12-24 03:39:47', 1),
(7389, 7214, 59, 3, 0, 'Selected for Sarath Team with PF/ESI/PT', 29, '2021-12-24 04:05:22', 1),
(7390, 7263, 59, 5, 0, 'Not open Up Will not suits in our role', 60, '0000-00-00 00:00:00', 1),
(7391, 7255, 30, 4, 0, 'Candidate selected and confirm the package and joining date', 50, '0000-00-00 00:00:00', 1),
(7392, 7253, 30, 5, 0, 'Due to high package, not experience related our profile', 50, '0000-00-00 00:00:00', 1),
(7393, 7255, 59, 3, 0, 'Selected for esales bangalore - PF/ESI/PT - Patroniss Staff', 30, '2021-12-25 01:10:55', 1),
(7394, 7266, 59, 5, 0, 'Average communication,not interested in telesales looking for opportunities in finance accounts background only.Understanding capacity s poor will not sustain in our roles', 50, '0000-00-00 00:00:00', 1),
(7395, 7268, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7396, 7267, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7397, 7271, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 64, '0000-00-00 00:00:00', 1),
(7398, 7275, 59, 5, 0, 'Communication ok,no ideas in the recruitment,have interest towards the business onlyalso too long distance,will not sustain for a long', 64, '0000-00-00 00:00:00', 1),
(7399, 7274, 59, 4, 0, '5050 Profile no relevant Exp can be trained,kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7400, 7273, 59, 3, 0, 'Selected for Banu Team - B2B - 5% TDS Deduction 12K TH', 60, '0000-00-00 00:00:00', 1),
(7401, 7283, 59, 4, 0, 'No Relevant Exp, need is there, kindly check and let me know your inputs,5050 Profile', 64, '0000-00-00 00:00:00', 1),
(7402, 7254, 59, 7, 0, 'Selected for Recruiter Role with TH 12K xxamp208 PT', 64, '0000-00-00 00:00:00', 1),
(7403, 7271, 82, 4, 0, 'shortlisted, Kindly discuss salary package.', 59, '2021-12-27 03:44:42', 1),
(7404, 7271, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 82, '2021-12-27 03:49:00', 1),
(7405, 7212, 59, 3, 0, 'Selected for Pandian Team with PF/PT', 18, '2021-12-27 05:12:06', 1),
(7406, 7216, 59, 3, 0, 'Selected for Raj Kumar Team - Relationship Manager with PF/PT', 18, '2021-12-27 05:13:47', 1),
(7407, 7287, 59, 4, 0, 'Selected for MF long back and the profile on hold, now he appears for the RM profile, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7408, 7015, 59, 5, 0, 'Appeared for an Interview and the salary Exp is very High,Not open for Field Sales looking only for Telecaller roles', 59, '2021-12-27 05:46:01', 1),
(7409, 7280, 59, 5, 0, 'Distance up and Down 42 kms,have Exp in Loan Sales for 3 months and the Exp is High not open for Field Sales too\n', 60, '0000-00-00 00:00:00', 1),
(7410, 7279, 59, 5, 0, 'Preparing for the Exams, have Exp in Loan Collections for 3 months, Exp is around 13,but not open for Field Sales. Sustaianability Doubts', 60, '0000-00-00 00:00:00', 1),
(7411, 7272, 59, 5, 0, 'He is preparing for the NET/PHD exams, just for the time to learn he is looking for the opportunities, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7412, 7281, 59, 5, 0, 'Fresher much comfort to work in Non Voice Process Only, Came for the interview as a group, Sustainability Doubts on the profile', 60, '0000-00-00 00:00:00', 1),
(7413, 7254, 72, 1, 0, NULL, 59, '2021-12-27 07:28:01', 1),
(7414, 7273, 53, 7, 0, 'selected for B2B. 12k take home', 59, '2021-12-27 07:43:07', 1),
(7415, 7274, 80, 5, 0, 'We discussed Package but person not accept ', 59, '2021-12-27 07:43:47', 1),
(7416, 7283, 14, 5, 0, 'not suitable for this profile', 59, '2021-12-27 07:46:30', 1),
(7417, 7287, 44, 1, 0, NULL, 59, '2021-12-27 07:48:41', 1),
(7418, 7273, 59, 3, 0, 'Selected for Banu Team - B2B - 5% TDS Deduction 12K TH', 53, '2021-12-28 10:19:58', 1),
(7419, 7265, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7420, 7276, 73, 5, 0, 'Already experienced with other field. exp salary 15k . not need for job highly doubt for sustainability. drop the candidate.', 50, '0000-00-00 00:00:00', 1),
(7421, 7277, 73, 5, 0, 'looking for non voice , not handle to pressure handling. so drop.', 50, '0000-00-00 00:00:00', 1),
(7422, 7295, 59, 5, 0, 'Dropped, She got another offer. Will not join us ', 50, '0000-00-00 00:00:00', 1),
(7423, 7290, 59, 5, 0, 'Fresher No Basic knowledge in Recruitment,Handling Pressure and Sustainability Doubts not much comfort on the distance\n', 64, '0000-00-00 00:00:00', 1),
(7424, 7298, 59, 5, 0, 'Fresher,having interest in Non Voice process,location distance around 36 up and down no bike will not sustain ', 60, '0000-00-00 00:00:00', 1),
(7425, 7299, 59, 5, 0, 'Fresher fir Sales,Career Gap,Came along with his friend.Looking for opportunites in the non voice process only.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7426, 7291, 59, 5, 0, 'Attitude,High CTC Expectation,Not open for Field Sales too,Pressure handling doubt', 60, '0000-00-00 00:00:00', 1),
(7427, 7297, 59, 5, 0, 'Have Exp in AR Caller not open for fieldsales,Salary Exp is more than 17K,Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7428, 7303, 59, 5, 0, 'Worked in different domain,but no sustainability in the previous exp,Pressure handling Doubt and will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7429, 7301, 59, 5, 0, 'Looking for Chat process only not much open up ,pressure handling no,Not suitable', 60, '0000-00-00 00:00:00', 1),
(7430, 7302, 59, 5, 0, 'Career Gap Fresher for Sales, Looking for opportunities in Testing Profiles for time being looking for other opportunities. Will not Sustain', 60, '0000-00-00 00:00:00', 1),
(7431, 7295, 53, 7, 0, 'shortlisted. she ll cnfrm before 5.30 12k salary', 59, '2021-12-28 02:36:24', 1),
(7432, 7293, 59, 2, 0, 'Discussed with the candidate, she is ready to relocate, Fresher for Telecaller Sales Career Gap can be trained, schedule her for a F2F on Monday(03-Jan-2022)', 60, '0000-00-00 00:00:00', 1),
(7433, 7057, 59, 3, 0, 'Selected for Veben, Discussed with Sriram Sir and Finalized the pay for 3.6LPA', 59, '2021-12-28 04:34:40', 1),
(7434, 7295, 59, 5, 0, 'Dropped, She got another offer. Will not join us ', 53, '2021-12-28 04:53:31', 1),
(7435, 7282, 59, 5, 0, 'Candidate is looking for Core production opportunities only. Not interested in Telecaller/RE/RM Sales positions', 60, '0000-00-00 00:00:00', 1),
(7436, 7318, 59, 4, 0, 'Communication is Good,Not yet completed his graduation,can be trained in our sales,have a year Exp in Telecaller, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7437, 7318, 16, 5, 0, 'document fake', 59, '2021-12-28 07:02:43', 1),
(7438, 7304, 40, 4, 0, 'Selected, Communication is good, immediate joiner but sustainability is doubtful,\nlet Sriram take a call', 64, '0000-00-00 00:00:00', 1),
(7439, 7304, 18, 8, 0, 'Not Attended', 40, '2021-12-29 11:40:39', 1),
(7440, 7320, 74, 5, 0, 'due to lag of self confident fully pampering girl damn sure not fit for telesales no mobile and laptop no exposure salary expectation is high', 50, '0000-00-00 00:00:00', 1),
(7441, 7327, 59, 4, 0, '5050 profile,internal team reference,5 months in 2 companies,kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7442, 7294, 59, 5, 0, 'Sounds Low will not handle the job pressure and sustainability Doubts.Not suitable', 64, '0000-00-00 00:00:00', 1),
(7443, 7308, 59, 5, 0, 'Communication was good ,No relevant Sales Exp much into Non Voice,Scheduled for 2nd Round with Karthika for ESales post lunch but she left without attending', 64, '0000-00-00 00:00:00', 1),
(7444, 7325, 59, 5, 0, 'Not interested in Voice process looking for Opportunities Networking IT profile, For time being looking for Job', 60, '0000-00-00 00:00:00', 1),
(7445, 7319, 59, 5, 0, 'Candidate prefers to work in Networking profile,looking for time being opportunites attended few networking interview,Will not sustain in our role.If he get any networking profile will move.If he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(7446, 7322, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT deductions - Arumbakkam Location', 60, '0000-00-00 00:00:00', 1),
(7447, 7328, 59, 5, 0, 'Interested to work in nonvoice process only. Not open for Field Sales too if we try him based on the salary Expectation', 60, '0000-00-00 00:00:00', 1),
(7448, 7329, 59, 5, 0, 'Not open to work in Targets and pressure handling no will not sustain', 60, '0000-00-00 00:00:00', 1),
(7449, 7288, 40, 5, 0, 'Candidate will not sustain for long and not fit for the profile', 64, '0000-00-00 00:00:00', 1),
(7450, 7313, 40, 8, 0, 'Interview not attended', 64, '0000-00-00 00:00:00', 1),
(7451, 7270, 59, 5, 0, 'Have 6 months Exp in Recruitment, Career Gap due to marriage.Handling pressure Doubt,will not handle our pressure.She requested to confirm on the TxxampC If she comes back let us see', 64, '0000-00-00 00:00:00', 1),
(7452, 7317, 59, 5, 0, 'Fresher for Recruitment, Salary Exp is very high, will not sustain with us. Not suitable', 64, '0000-00-00 00:00:00', 1),
(7453, 7322, 24, 7, 0, 'candidate selected', 59, '2021-12-29 02:38:17', 1),
(7454, 7327, 53, 5, 0, 'Looking Non voice process', 59, '2021-12-29 02:41:42', 1),
(7455, 7296, 59, 5, 0, 'No Communication ,no basic understandings on the positions.Not suitable', 64, '0000-00-00 00:00:00', 1),
(7456, 7322, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT deductions - Arumbakkam Location', 24, '2021-12-29 04:46:43', 1),
(7457, 7323, 40, 7, 0, 'Fit for our profile but salary part need negotiate can give upto 22k per month take home', 64, '0000-00-00 00:00:00', 1),
(7458, 7338, 73, 7, 0, 'selected but need to check sustainability only. ', 60, '0000-00-00 00:00:00', 1),
(7459, 7339, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7460, 7337, 73, 7, 0, 'Selected, salary 10.5k fixed. confirm joinnig date . Parents Passed away. he only take care of self .', 50, '0000-00-00 00:00:00', 1),
(7461, 7335, 74, 5, 0, 'not fit for telesales financial crisis but he is not attend the interview that much better and not answering any question vioice is not fluence', 50, '0000-00-00 00:00:00', 1),
(7462, 7336, 74, 7, 3, 'completed to major degree voice clarity anf fluency is very good and suite for telesales expected salary 10k kindly confirm once have laptop two brother first brother age 30 so he is the first person for marriage.....father and another brother unemployed....rental house only so highly job need fresher', 50, '0000-00-00 00:00:00', 1),
(7463, 7342, 59, 5, 0, 'Fresher for Telecaller Field Sales have Exp in Store Sales and looking only for opportunities inside the office. Salary Exp is also high,Time being only he is looking for openings,He specifically trying for opportunites in Anchor roles ,he already attended some interview related to anchor openings,Will not sustain for a long. Not Suitable', 60, '0000-00-00 00:00:00', 1),
(7464, 7339, 53, 7, 0, 'selected for priyanka team sal 10k pls cnfrm DOJ', 59, '2021-12-30 02:29:11', 1),
(7465, 7311, 40, 1, 0, NULL, 64, '0000-00-00 00:00:00', 1),
(7466, 7315, 40, 8, 0, 'Not attended the interview', 64, '0000-00-00 00:00:00', 1),
(7467, 7332, 40, 8, 0, 'Not attended', 64, '0000-00-00 00:00:00', 1),
(7468, 7338, 59, 5, 0, 'Candidate prefer much towards the Non Voice process,for time being she looks for this.Looking for the opportunities near to her home only.Will not sustain for a long.will not handle the pressure', 73, '2021-12-30 02:59:05', 1),
(7469, 7337, 59, 2, 0, 'discussed with the candidate, yet to get his confirmation on the salary proposed', 73, '2021-12-30 03:03:00', 1),
(7470, 7336, 59, 2, 0, 'RNR', 74, '2021-12-30 03:13:21', 1),
(7471, 7346, 73, 4, 0, 'ok but fully intrested for cini field. so check sustainability. sal 10k ', 60, '0000-00-00 00:00:00', 1),
(7472, 7346, 59, 2, 0, 'Discussed with the candidate,sustainability doubts a lot on this profile, no proper communication. need to check again with the candidate tomorrow and update the status', 73, '2021-12-30 03:36:00', 1),
(7473, 4861, 13, 5, 0, 'already joined Thanjavur Team', 13, '2021-12-30 04:39:12', 1),
(7474, 4860, 13, 5, 0, 'Lockdown Period Hold Long Pending ', 13, '2021-12-30 04:41:55', 1),
(7475, 7348, 59, 4, 0, '5050 Profile,Frequent job Changer,4 months 4 companies,Sustaianability Doubts on this profile,but speaking, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7476, 7345, 59, 4, 0, 'Only 3 months Exp in Telecaller,Career Gap Sports Player and coach 5050 profile sustainability Doubts, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7477, 7345, 53, 5, 0, 'Sports player not suit for telecalling', 59, '2021-12-30 05:25:50', 1),
(7478, 7348, 14, 5, 1, 'Not suitable for this profile', 59, '2021-12-30 05:27:35', 1),
(7479, 7339, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant 5%', 53, '2021-12-30 06:45:31', 1),
(7480, 7333, 59, 5, 0, 'Communication Ok, Fresher Have a Month Internship Exp, Salary Exp Is negotable, Sustainability Doubts as he is already running his own online business.', 64, '0000-00-00 00:00:00', 1),
(7481, 7330, 59, 5, 0, 'Communication ok,fresher have 2 months internship exp,Salary Exp is very high,Sustainability Doubts', 64, '0000-00-00 00:00:00', 1),
(7482, 7343, 59, 2, 0, 'Communication is Good,have interest towards Recruitment,can be trained,will schedule for final round with Gokul', 64, '0000-00-00 00:00:00', 1),
(7483, 7350, 59, 5, 0, 'Fresher for Sales,Have interest towards Non Voice xxamp IT Testinf positions,not open on saturdays to work,will not sustain in our roles', 64, '0000-00-00 00:00:00', 1),
(7484, 7349, 59, 2, 0, 'Communication is Good,Fresher for Recruitment,can be trained,Will schedule the candidate for final round with Gokul and decide', 64, '0000-00-00 00:00:00', 1),
(7485, 7352, 59, 5, 0, 'No relevant Exp looking much for opportunites in Non Voice,will not sustain in our role', 64, '0000-00-00 00:00:00', 1),
(7486, 7355, 59, 5, 0, 'Not interested in Voice process,Looking for design oriented positions,too long distance', 64, '0000-00-00 00:00:00', 1),
(7487, 7353, 59, 3, 0, 'selected for Muthu Team in Consultant 5% TDS role', 64, '0000-00-00 00:00:00', 1),
(7488, 7356, 59, 5, 0, 'Too long distance not ready to relocate, Much prefer to work in non voice process', 64, '0000-00-00 00:00:00', 1),
(7489, 7357, 74, 5, 0, 'highly job need 6 months experience but high salary expectation and attitude is very poor not fit for team over attitude person', 50, '0000-00-00 00:00:00', 1),
(7490, 7354, 74, 5, 0, 'family financial crisis but very lazy not a talk active person and poor performance in interview..not fit for telesales', 50, '0000-00-00 00:00:00', 1),
(7491, 7344, 59, 5, 0, 'Communication Average,no convincing,Much comfort to work in Non Voice,already her sister is working in non voice only.For time being looking for Voice process.Will not sustain', 50, '0000-00-00 00:00:00', 1),
(7492, 7353, 13, 7, 5, 'ok 12k salary,Monday Joining', 59, '2021-12-31 02:35:42', 1),
(7493, 7353, 59, 3, 0, 'selected for Muthu Team in Consultant 5% TDS role', 13, '2021-12-31 02:39:16', 1),
(7494, 7249, 59, 5, 0, 'Dropped - Candidate didnt turn with his response', 59, '2021-12-31 03:20:08', 1),
(7495, 7146, 59, 5, 0, 'Dropped.Candidate got another offer', 59, '2021-12-31 03:21:14', 1),
(7496, 7361, 74, 7, 0, 'she is very talk active voice fluency is good fresher but sales course completed ....so very talk active and fit for sales ....salary 10 k have laptop joining on 3 jan....father passed away and mother only financial crises very poor family kindly confirm once', 50, '0000-00-00 00:00:00', 1),
(7497, 7234, 59, 2, 0, 'Frequent Job changes,ready to sign the SA,also sustainability Doubts,Will come for final round by monday', 64, '0000-00-00 00:00:00', 1),
(7498, 7362, 74, 5, 0, 'fresher in field not talk active and not fit for telesales....salary highly expected need a job like part time ', 50, '0000-00-00 00:00:00', 1),
(7499, 7361, 59, 3, 0, 'Selected for Sithy Team - Elite RE - Thanjavur location', 74, '2021-12-31 06:14:19', 1),
(7500, 7220, 59, 2, 0, 'Communication Is Good,Have Internship Exp In Recruitment,Can Be Trained - 2nd Round Interviewed By Gokul And The Candidate Will Give Her Confirmation After Internship Get Completed', 64, '0000-00-00 00:00:00', 1),
(7501, 7351, 59, 5, 0, 'Seems to be clow and too long distance around 72kms up and down, will not sustain and handling pressure doubtful', 64, '0000-00-00 00:00:00', 1),
(7502, 7363, 59, 4, 0, '5050 Profile,very Average profile,need to train a lot, kindly check and let me know your inputs', 64, '0000-00-00 00:00:00', 1),
(7503, 7360, 59, 5, 0, 'Communication is Good ,Have Exp in Internship ,but the salary exp is very high,min exp is 25K will not come down', 64, '0000-00-00 00:00:00', 1),
(7504, 7365, 59, 3, 0, 'Selected for Pandian Team with PF/PT Deductions', 50, '0000-00-00 00:00:00', 1),
(7505, 7364, 59, 5, 0, 'No communication,sustainability Doubts,Not suitable', 64, '0000-00-00 00:00:00', 1),
(7506, 7368, 59, 5, 0, 'No communication,will not handle the pressure and sustainability doubts', 64, '0000-00-00 00:00:00', 1),
(7507, 7366, 73, 4, 0, 'Highly need to job, but pronounce very low. need to check pronounce . no laptop exp salary 10k. immediate joining.', 60, '0000-00-00 00:00:00', 1),
(7508, 7366, 59, 2, 0, 'Dhanalakshmi have given some task, candidate should come back with the task tomorrow', 73, '2022-01-03 03:05:25', 1),
(7509, 7323, 59, 2, 0, 'Discussed, candidate will share the documents once received will review and finalise', 40, '2022-01-03 04:15:37', 1),
(7510, 7369, 39, 1, 0, NULL, 50, '0000-00-00 00:00:00', 1),
(7511, 7363, 13, 5, 2, 'not fit for telesales', 59, '2022-01-03 05:16:55', 1),
(7512, 7365, 80, 7, 4, 'Good Guy. He will join Tomorrow ', 59, '2022-01-03 05:18:51', 1),
(7513, 7349, 59, 3, 0, 'Selected for Recruitment Role with Stipend 7500 PM for 3 months post internship salary will be confirmed min 12K TH', 59, '2022-01-03 05:24:45', 1),
(7514, 7337, 59, 3, 0, 'Selected for Tiruvallur Location in Consultant 5% TDS\n', 59, '2022-01-03 05:28:03', 1),
(7515, 7365, 59, 3, 0, 'Selected for Pandian Team with PF/PT Deductions', 80, '2022-01-04 11:59:33', 1),
(7516, 7367, 59, 5, 0, 'Communication No,REcently married,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7517, 7381, 59, 5, 0, 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', 60, '0000-00-00 00:00:00', 1),
(7518, 7382, 73, 5, 0, 'Job no need, Parents not accept to job so rejected. ', 60, '0000-00-00 00:00:00', 1),
(7519, 7385, 73, 5, 0, 'He is looking for non Voice xxamp trying job IT field. Sustainability is highly doubt. So Rejected. ', 60, '0000-00-00 00:00:00', 1),
(7520, 7386, 59, 3, 0, 'Selected for Sarath Team,Gaurav have given a commitment on salary revisal based on the Target achievement of 2L each for 2 months with 15%', 60, '0000-00-00 00:00:00', 1),
(7521, 7388, 59, 5, 0, 'Dropped she didnt turn as her friend got rejected in the interview', 60, '0000-00-00 00:00:00', 1),
(7522, 7389, 59, 4, 0, 'Have Telecaller Exp in Starhealth,can give a try, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7523, 7387, 59, 5, 0, 'no communication, have B2B sales only, will not sustain for a long.', 60, '0000-00-00 00:00:00', 1),
(7524, 7377, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7525, 7380, 59, 5, 0, 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', 60, '0000-00-00 00:00:00', 1),
(7526, 7378, 59, 5, 0, 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', 60, '0000-00-00 00:00:00', 1),
(7527, 7375, 59, 5, 0, 'No communication will not sustain not suitable ', 60, '0000-00-00 00:00:00', 1),
(7528, 7379, 59, 5, 0, 'Have a part time job as karate Coach,Salary Exp is very high,not suitable for CRM', 60, '0000-00-00 00:00:00', 1),
(7529, 7384, 59, 5, 0, 'Have Non Voice Exp ,no communication, looking only for non voice process', 60, '0000-00-00 00:00:00', 1),
(7530, 7377, 57, 4, 0, 'candidate ok confirm the joining date and salary', 59, '2022-01-04 06:25:46', 1),
(7531, 7386, 51, 4, 0, 'OK', 59, '2022-01-04 06:30:10', 1),
(7532, 7389, 13, 5, 2, 'not fit for telesales', 59, '2022-01-04 06:46:34', 1),
(7533, 7388, 13, 7, 4, 'ok ,11k salary but not joined', 59, '2022-01-04 06:46:49', 1),
(7534, 7323, 59, 3, 0, 'Selected for Veben Team in PF/PT deductions', 59, '2022-01-05 01:42:05', 1),
(7535, 7376, 59, 5, 0, 'Communication Average,No confidence,handling Pressure Doubts will not sustain', 60, '0000-00-00 00:00:00', 1),
(7536, 7397, 59, 5, 0, 'Too Long Distance Not Ready To Relocate,Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(7537, 7396, 59, 5, 0, 'Too long Distance not ready to relocate,will not sustain', 60, '0000-00-00 00:00:00', 1),
(7538, 7398, 59, 5, 0, 'Communication Average,Too long Distance around 64kms up and down,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7539, 7395, 59, 5, 0, 'Looking for Non voice Process only', 60, '0000-00-00 00:00:00', 1),
(7540, 7394, 59, 5, 0, 'Looking for Non Voice or networking profile only\n', 60, '0000-00-00 00:00:00', 1),
(7541, 7393, 59, 5, 0, 'Looking only for Non Voice Process,not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(7542, 7400, 59, 5, 0, 'Have Exp in Non Voice only,Speaking but sustainability Doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(7543, 7402, 59, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(7544, 7392, 73, 7, 0, 'Selected but studying mba in corres need for monthly once leave. Salary 10k , Immediate joining. ', 60, '0000-00-00 00:00:00', 1),
(7545, 7392, 59, 3, 0, 'Selected for Tiruvallur Team in Consultant 5% TDS,can give a try 5050 profile', 73, '2022-01-05 05:22:24', 1),
(7546, 7377, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-01-06 10:42:20', 1),
(7547, 7407, 59, 4, 0, 'Communication is Good,have Exp in Sales but not a relevant one,Can give a try,Kindly check and give your inout', 60, '0000-00-00 00:00:00', 1),
(7548, 7405, 73, 7, 0, 'selected, already exp in star 8 month only. confirm joining date and sal 10k ', 60, '0000-00-00 00:00:00', 1),
(7549, 7404, 59, 5, 0, 'Salary Exp is High,not open for Field Sales,Will not Sustain', 60, '0000-00-00 00:00:00', 1),
(7550, 7407, 31, 5, 0, 'Not fit for this profile\n', 59, '2022-01-06 08:25:57', 1),
(7551, 7408, 59, 5, 0, 'Communication is average, looking for system admin roles, will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7552, 7409, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7553, 7410, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant Role - 5% TDS', 60, '0000-00-00 00:00:00', 1),
(7554, 7411, 59, 5, 0, 'No Sales/Telecaller Exp,Low BP,will not handle our pressure,not open to take the targets xxamp pressure', 60, '0000-00-00 00:00:00', 1),
(7555, 7405, 59, 3, 0, 'Selected for Tiruvallur Location in consultant role ', 73, '2022-01-07 04:20:33', 1),
(7556, 7414, 59, 3, 0, 'Selected for Pandian Team,Candidate Exp is high,Team manager should give a mail commitment with the target based increment', 60, '0000-00-00 00:00:00', 1),
(7557, 7413, 59, 5, 0, 'Too long Distance no Telecaller Exp only retail store Exp,Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7558, 7409, 57, 4, 0, 'Candidate is ok kindly negotiate the salary and joining date ', 59, '2022-01-07 04:47:51', 1),
(7559, 7410, 14, 7, 0, 'Selected . Salary 11k . Joining date 10th jan ', 59, '2022-01-07 04:49:04', 1),
(7560, 7414, 80, 4, 4, 'Ok with his experience. Please check he is ok or not', 59, '2022-01-07 04:55:27', 1),
(7561, 7410, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant Role - 5% TDS', 14, '2022-01-07 05:32:23', 1),
(7562, 7416, 74, 5, 0, 'not fit', 58, '0000-00-00 00:00:00', 1),
(7563, 7414, 18, 7, 3, 'Selected for Pandi Team. Expected salary is 3.25L ctc butyou can negotiable. Immedieate joinee', 80, '2022-01-07 06:59:32', 1),
(7564, 7409, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-01-07 07:41:46', 1),
(7565, 7415, 59, 3, 0, 'selected for muthu team in consultant role for 5% TDS ', 60, '0000-00-00 00:00:00', 1),
(7566, 7415, 13, 7, 4, 'ok salary 11k,monday joining', 59, '2022-01-08 01:33:07', 1),
(7567, 7346, 59, 5, 0, 'Dropped,candidate will not sustain ', 59, '2022-01-08 01:34:10', 1),
(7568, 7422, 59, 5, 0, 'have exp in both voice and non voice, sustaianability doubt as she is getting married in the month of march,also much prefers to work in non voice', 60, '0000-00-00 00:00:00', 1),
(7569, 7423, 59, 3, 0, 'Selected for Priyanka Jenit Elite PRofile in Consultant Role TDS 5%', 60, '0000-00-00 00:00:00', 1),
(7570, 7419, 59, 5, 0, 'Communication Average,Completed his graduation in 2019 and have exp in different domains, looking for HR position and the salary Exp is very high.We should consider this candidate as a fresher only with Internship,Will not sustain,not much comfort with TxxampC.. Had a telephoinic discussion. Sustainability doubts a lot', 60, '0000-00-00 00:00:00', 1),
(7571, 7423, 14, 7, 0, 'Selected 10.5k salary 10th jan joining please confirm the joining date once', 59, '2022-01-08 03:11:35', 1),
(7572, 7423, 59, 3, 0, 'Selected for Priyanka Jenit Elite PRofile in Consultant Role TDS 5%', 14, '2022-01-08 04:43:16', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(7573, 7415, 59, 3, 0, 'selected for muthu team in consultant role for 5% TDS ', 13, '2022-01-08 05:01:24', 1),
(7574, 7421, 59, 4, 0, 'Candidate communication is good, degree incomplete and there is no sustainability in the previous exp. Have worked in retail store B2C/B2B.Salary Exp is ok, but there is no set of salary proof for previous experiences. Can be trained 50/50 profile. Have a bike but no laptop and he canxquott arrange it. He is available for F2F next week by Tuesday. Let Veben have a round of interview and decide on the profile.', 60, '0000-00-00 00:00:00', 1),
(7575, 7421, 40, 1, 0, NULL, 59, '2022-01-08 05:21:26', 1),
(7576, 7433, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT deductions', 60, '0000-00-00 00:00:00', 1),
(7577, 7433, 57, 4, 0, 'Candidate ok confirm the Joining date', 59, '2022-01-10 01:44:43', 1),
(7578, 7431, 74, 7, 3, 'she is already working in two three company due to traveling issues not suit for him so she need to work in native no laptop kindly check once salary not confirmed mba and speaking is good only joining from after pongal so kindly confirm once joining ', 60, '0000-00-00 00:00:00', 1),
(7579, 7433, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT deductions', 57, '2022-01-10 05:08:12', 1),
(7580, 7431, 59, 2, 0, 'RNR\n', 74, '2022-01-10 06:20:41', 1),
(7581, 7435, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(7582, 7444, 59, 4, 0, '5050 profile,came along with her friend,Family need is there,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7583, 7443, 59, 5, 0, 'Have Exp in Nonvoice and much prefers to work in the same domain,for time being open for Voice Process,Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7584, 7436, 59, 5, 0, 'Average Communication no ideas in the recruitment,Not comfort on TxxampC,Will not Sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7585, 7449, 59, 2, 0, 'Have Exp in General Insurance ,health insurance,2nd interviewed by GK Sir,Will come for Interview again by tomorrow', 60, '0000-00-00 00:00:00', 1),
(7586, 7455, 59, 5, 0, 'She was into teaching and now open for voice/Non voice process,Interested to work much in the non pressure areas will not sustain for along', 60, '0000-00-00 00:00:00', 1),
(7587, 7454, 59, 5, 0, 'Too long distance from chengalpet,,Preparing for the bank exams,focus is on the govt jobs only,time being looking for openings,will not sustain in a long run,fresher\n', 60, '0000-00-00 00:00:00', 1),
(7588, 7446, 59, 5, 0, 'Not open up,handling pressure no, Came along with her sister, if she didnt join he wont.Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7589, 7447, 59, 5, 0, 'Handling Pressure No,No basic knowledge in terms of skills,not suitable ', 60, '0000-00-00 00:00:00', 1),
(7590, 7442, 59, 5, 0, 'Attitude,no sustainability with the previous Exp,fresher for our sales,not ready to relocate distance around 40kms up and down', 60, '0000-00-00 00:00:00', 1),
(7591, 7452, 59, 5, 0, 'Too long distance ,no exp Fresher for telecaller,need to open up a lot,much comfort in non voice ', 60, '0000-00-00 00:00:00', 1),
(7592, 7453, 59, 5, 0, 'Looking for Non Voice process,will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(7593, 7388, 59, 5, 0, 'Dropped she didnt turn as her friend got rejected in the interview', 13, '2022-01-11 04:27:43', 1),
(7594, 7444, 13, 5, 2, 'not fit for telesales and expected salary also high', 59, '2022-01-11 04:59:33', 1),
(7595, 7386, 29, 7, 0, 'Sarath Team,need to check in 7 days', 51, '2022-01-11 05:11:08', 1),
(7596, 7386, 59, 3, 0, 'Selected for Sarath Team,Gaurav have given a commitment on salary revisal based on the Target achievement of 2L each for 2 months with 15%', 29, '2022-01-11 05:13:39', 1),
(7597, 7451, 59, 2, 0, 'Have Exp in Sales but not in Calling Activities,fresher for telecalling,5050 profile,need to schedule him for next level and check', 60, '0000-00-00 00:00:00', 1),
(7598, 7463, 73, 5, 0, 'expected salary very high and try to job for IT company. rejected.', 58, '0000-00-00 00:00:00', 1),
(7599, 7466, 59, 5, 0, 'Left without attending the interview', 58, '0000-00-00 00:00:00', 1),
(7600, 7470, 59, 4, 0, '5050 Profile have 2 months Exp in Credit Card Sales,Salary Exp is high,need to negotiate and finalise kindly check the candidate and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7601, 7458, 59, 2, 0, 'Communication ok have exp in Recruitment ,not much comfort on TxxampC,Salary Exp is Also high,need to come back with his confirmation\n', 60, '0000-00-00 00:00:00', 1),
(7602, 7425, 59, 5, 0, 'Communication Average,Pressure handling doubts on this profile,timing she was not comfortable', 60, '0000-00-00 00:00:00', 1),
(7603, 7440, 59, 5, 0, 'Scheduled for 2nd round with Karthika,but left without attending as her friend got rejected in the final round', 60, '0000-00-00 00:00:00', 1),
(7604, 7457, 59, 5, 0, 'No basic knowledge in the recruitment,Pressure handling Doubt,Will not sustain', 60, '0000-00-00 00:00:00', 1),
(7605, 7464, 59, 5, 0, 'College yet to complete, Will not sustain for a long,need to open up a lot\n', 60, '0000-00-00 00:00:00', 1),
(7606, 7432, 59, 5, 0, 'Looking for Non Voice only,but no Exp in Excel ', 60, '0000-00-00 00:00:00', 1),
(7607, 7470, 14, 5, 0, 'not suitable for this profile', 59, '2022-01-12 06:05:33', 1),
(7608, 7465, 74, 7, 0, 'completed marine and he is working in thirupur after that he releived the job and he did not get foreign oportunity too so need to work in local in bpo good language and convenience skill salary expected 11k have laptop and bike refered by priyanka jenit joining after pongal monday kindly confirm once', 60, '0000-00-00 00:00:00', 1),
(7609, 7469, 74, 7, 0, 'completed mA and she very talk active and profiled completely suite to our team good only expected take home 10k have laptop, home is very near to office have teaching experience and need now studying b.ed in part time good only kindly confirm once sustainability....my self reference ', 60, '0000-00-00 00:00:00', 1),
(7610, 7465, 59, 3, 0, 'Selected for Sithyvinayagam Team in consultant mode - 5% TDS', 74, '2022-01-12 07:08:56', 1),
(7611, 7469, 59, 3, 0, 'Selected for Sithy Thanjavur Team in Consultant 5%\n', 74, '2022-01-12 07:11:15', 1),
(7612, 7472, 83, 5, 0, 'candidate will not sustain', 58, '0000-00-00 00:00:00', 1),
(7613, 7473, 83, 4, 0, 'okay with the profile,, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(7614, 7481, 83, 5, 0, 'looking for non voice process', 58, '0000-00-00 00:00:00', 1),
(7615, 7476, 83, 4, 0, 'okay with sales pitch but 50-50 due to sustainability issue, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(7616, 7477, 83, 5, 0, 'candidate not willing to work for insurance sales', 58, '0000-00-00 00:00:00', 1),
(7617, 7478, 83, 5, 0, 'candidate expecting high salary xxamp will not be suitable', 58, '0000-00-00 00:00:00', 1),
(7618, 7473, 67, 1, 0, NULL, 83, '2022-01-15 10:42:56', 1),
(7619, 7476, 80, 5, 0, 'Person not come for an final round', 83, '2022-01-15 10:45:58', 1),
(7620, 7474, 83, 4, 0, 'Okay with profile, 7 months of experience As Customer Care Exective in hathway banglore', 60, '0000-00-00 00:00:00', 1),
(7621, 7473, 57, 4, 0, 'Candidate ok Confirm the Joining date', 57, '2022-01-15 10:56:54', 1),
(7622, 7474, 7, 1, 0, NULL, 83, '2022-01-15 11:17:06', 1),
(7623, 7431, 59, 5, 0, 'Dropped,she already holds IRDA,currently workin in tata AIA,not interested', 59, '2022-01-15 11:27:49', 1),
(7624, 7475, 74, 7, 0, 'Good Only Completed Visual Communication...Good Exposure With English Knowledge ,,,,Family Not Support To Work In Chennai...So She Need A Perfect Exposure And Working Environ Ment.... Have Laptop An Home Near By Only Event Mangement Working .....Refered By My Friend Kindly Check Once And Confirm', 60, '0000-00-00 00:00:00', 1),
(7625, 7475, 59, 3, 0, 'Selected for Thanjavur Team in Consultant 5%\n', 74, '2022-01-15 11:36:40', 1),
(7626, 7482, 59, 2, 0, 'Candidate Communication is Good, Currently pursuing MBA full time, Need leave on Saturdays,Will come for F2F on tuesday we should finalise the profile', 60, '0000-00-00 00:00:00', 1),
(7627, 7474, 59, 3, 0, 'Selected for Thiyagu Team - PF/ESI/PT,5050 Profile,sustainability Doubts', 16, '2022-01-15 12:06:06', 1),
(7628, 7473, 59, 3, 0, 'Selected for Syed Team with PF/ESI.But candidate seems to be doubtful,need to analyse in 7 Days,', 57, '2022-01-15 12:30:57', 1),
(7629, 7343, 59, 5, 0, 'Dropped by Gokul in the final round,', 59, '2022-01-15 05:55:48', 1),
(7630, 7438, 59, 3, 0, 'Selected for Partner Channel-Hyderabad direct reporting to Suresh Sir Level 1 xxamp2', 60, '0000-00-00 00:00:00', 1),
(7631, 7449, 59, 5, 0, 'Final Round interviewed by Gaurav Sir and the Profile has been rejected. Will not sustain and not fit in our company roles. Seems to have much false communications.', 59, '2022-01-17 12:18:11', 1),
(7632, 7166, 59, 5, 0, 'Dropped ,we offered her for the Recruiter Role,but candidate didnt join\n', 59, '2022-01-17 12:19:01', 1),
(7633, 7201, 59, 5, 0, 'Candidate didnt come back with her confirmation\n', 59, '2022-01-17 12:23:02', 1),
(7634, 6931, 59, 5, 0, 'Dropped, seems not much comfort with the position as his friend didnt get selected\n', 59, '2022-01-17 12:24:55', 1),
(7635, 7414, 59, 3, 0, 'Selected for Pandian Team,Candidate Exp is high,Team manager should give a mail commitment with the target based increment', 18, '2022-01-17 05:06:02', 1),
(7636, 7484, 59, 5, 0, 'no relevant Exp,he is much into Backend process,but not much into Excels,Currently working and his notice is 30 Days ,Salary Exp is high, not open for Sales', 60, '0000-00-00 00:00:00', 1),
(7637, 7485, 59, 5, 0, 'No Relevant Exp, He Is Into Backend Process and looking for the same, But Not Much Into Excels, Currently Working And His Notice Is 30 Days ,Salary Exp Is High, ', 60, '0000-00-00 00:00:00', 1),
(7638, 7428, 74, 5, 0, 'not suite', 58, '0000-00-00 00:00:00', 1),
(7639, 7492, 59, 3, 0, 'Selected for Muthu Team in Consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7640, 7489, 59, 5, 0, 'Communication ok but not much suit towards the sales, not comfortable with previous Exp as there was much pressure, sustainability Doubts on this profile', 60, '0000-00-00 00:00:00', 1),
(7641, 7490, 59, 5, 0, 'Average Commuication,Too long Distance around 40kms up and down,Will not sustain and handling pressure no\n', 60, '0000-00-00 00:00:00', 1),
(7642, 7491, 59, 4, 0, 'Have a month Exp in Telecaller,5050 profile, not much convinced ,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7643, 7494, 59, 2, 0, 'Communication is Good,need to check the position to be placed,2nd by Banu xxamp 3rd Round by Gokul,candidate yet to give her confirmation.We commited 17K TH for 3months then 21600', 60, '0000-00-00 00:00:00', 1),
(7644, 7495, 59, 5, 0, 'Communication no,will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(7645, 7492, 13, 7, 4, 'ok 11k salary,joining today evening kulla confirm panrenu sollirukkan', 59, '2022-01-18 02:44:48', 1),
(7646, 7496, 59, 4, 0, 'He is into sales, which is not relevant experience, but we can try in our position. Available for F2F in Bangalore on Friday', 58, '0000-00-00 00:00:00', 1),
(7647, 7492, 59, 3, 0, 'Selected for Muthu Team in Consultant 5%', 13, '2022-01-18 02:49:59', 1),
(7648, 7497, 59, 3, 0, 'Ok for Ravi,need to analyse in 7 days of training', 60, '0000-00-00 00:00:00', 1),
(7649, 7497, 82, 4, 0, 'Kindly negotiate the salary package.', 59, '2022-01-18 04:06:41', 1),
(7650, 7497, 59, 3, 0, 'Ok for Ravi,need to analyse in 7 days of training', 82, '2022-01-18 04:11:00', 1),
(7651, 7498, 59, 3, 0, 'Selected for B2B in 5% consultant', 60, '0000-00-00 00:00:00', 1),
(7652, 7491, 13, 5, 2, 'not fit for telesales', 59, '2022-01-18 06:27:41', 1),
(7653, 7498, 53, 7, 0, 'selected sal 10k b2b', 59, '2022-01-18 07:54:45', 1),
(7654, 7496, 56, 5, 0, 'did not come for interview', 59, '2022-01-18 07:55:39', 1),
(7655, 7500, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7656, 7502, 59, 5, 0, 'Have Exp in Non Voice pressure only, need to open a lot, Will not sustain and handle our pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7657, 7505, 59, 5, 0, 'Communication Average ,No Stability in the previous Exp, every Six months shifted and there are multiple reason. Doing a part time family business too. No ideas in the recruitment, earlier he worked just as a coordinator. Will not sustain and the Salary Exp is Very High.', 60, '0000-00-00 00:00:00', 1),
(7658, 7499, 59, 5, 0, 'Communication is Average, Fresher for Recruitment, no sustainability, Will not handle the pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7659, 7500, 14, 7, 0, 'Selected 10k salary need to confirm joining date', 59, '2022-01-19 02:53:20', 1),
(7660, 7500, 59, 3, 0, 'Selected for Priyanka Jenit Team in Consultant 5%', 14, '2022-01-19 04:15:15', 1),
(7661, 7507, 59, 5, 0, 'Communication ok, not comfortable with the timings and the salary Exp is very high, will not sustain for a long, not comfort to take much calls.', 60, '0000-00-00 00:00:00', 1),
(7662, 7516, 73, 7, 0, 'Selected, need to confirm salary 13k , Already experience in yes bank credit card 9 month , immediate joining , confirm DOJ.', 58, '0000-00-00 00:00:00', 1),
(7663, 7510, 73, 7, 0, 'selected, need to confirm joining date. salary 10k. ', 58, '0000-00-00 00:00:00', 1),
(7664, 7516, 59, 5, 0, 'Dropped,final Interview by banu priya and rejected as her salary Exp is too high', 73, '2022-01-20 01:25:48', 1),
(7665, 7510, 59, 3, 0, 'Candidate seems to be slow,kindly analyse in 7 days of training,Proceed with the Joining Formalities.', 73, '2022-01-20 01:26:50', 1),
(7666, 7525, 59, 5, 0, 'no basic ideas in the IT domain,came along with the his freind for telecaller role,Need to open a lot,will not sustain in our roles,Salary Exp is very high,not suits', 60, '0000-00-00 00:00:00', 1),
(7667, 7523, 59, 3, 0, ' Communication Ok, Have Exp In Paytm Sales, Can Be Trained As Rm, Kindly Check And Let Me Know Your Inputs\n\nselected for GK SIr team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(7668, 7511, 59, 5, 0, 'Communication Average,Fresher for Recruitment,no clear ideas in the recruitment,not much comfort on the timings,will not handle the pressure,not suitable', 60, '0000-00-00 00:00:00', 1),
(7669, 7521, 59, 5, 0, 'communication Average,need to open up,Looking much for core Automobile domain, Will not sustain, comfortable to work much in the non voice ', 60, '0000-00-00 00:00:00', 1),
(7670, 7520, 59, 5, 0, 'Have Exp in Store Sales only ,pressure handling no,sustainability Doubts.Need to speak,Degree incomplete,not suitable', 60, '0000-00-00 00:00:00', 1),
(7671, 7514, 59, 4, 0, 'Have Exp in Star Health for 3 months,left due to pressure/continuous calls.Not ok for our roles,will not sustain.Handling Pressure no.Due to the releavnt Exp kinldy check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7672, 7517, 59, 4, 0, 'not much ok profile,5050 Have Exp only in Non Voice,Pressure handling Doubt,Will not sustain for a long,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7673, 7522, 59, 5, 0, 'Too long Distance no bike no laptop, fresher, need to open a lot ,will not handle our pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(7674, 7518, 59, 2, 0, 'Candidate Should Come Back With Her Confirmation', 60, '0000-00-00 00:00:00', 1),
(7675, 7512, 59, 2, 0, 'Candidate should come back with her confirmation', 60, '0000-00-00 00:00:00', 1),
(7676, 7514, 57, 1, 0, NULL, 59, '2022-01-20 03:21:21', 1),
(7677, 7517, 13, 5, 2, 'already marrieed 2 kids irukku but maturity level low and timing not suitable', 59, '2022-01-20 03:23:03', 1),
(7678, 7518, 53, 7, 0, 'Ok But Changed Too Many Jobs In Short Period. Pls Check For 1 Yr Aggrement', 59, '2022-01-20 03:29:11', 1),
(7679, 7523, 31, 4, 4, 'candidate okay sent for next round', 59, '2022-01-20 03:53:13', 1),
(7680, 7512, 53, 7, 0, 'Ok but changed too many jobs in short period. pls check for 1 yr aggrement', 59, '2022-01-20 04:11:10', 1),
(7681, 7512, 59, 2, 0, 'Candidate should come back with her confirmation', 53, '2022-01-20 04:49:57', 1),
(7682, 7518, 59, 2, 0, 'Candidate Should Come Back With Her Confirmation', 53, '2022-01-20 04:50:13', 1),
(7683, 7498, 59, 3, 0, 'Selected for B2B in 5% consultant', 53, '2022-01-20 04:51:51', 1),
(7684, 7523, 29, 7, 3, 'Selected for RM, GK team', 31, '2022-01-21 12:19:38', 1),
(7685, 7528, 59, 2, 0, 'Communication is Good, Distance too long but can travel,Salary Exp is also high. Have Exp in BPO Process ,Last earning was around 25K ,Should come back with her confirmation on the TxxampC.', 60, '0000-00-00 00:00:00', 1),
(7686, 7537, 74, 4, 0, 'very poor family salary 12 k confirmed have laptop already experienced in hdfc telecalling 1 year ,,,,,,,,father passed away....2 sisters marriaged.....not she is married after 2 years kindly confirm once', 58, '0000-00-00 00:00:00', 1),
(7687, 7539, 59, 5, 0, 'Very Poor Candidate,no communication,Will not sustain,not suitable for our telecaller roles', 60, '0000-00-00 00:00:00', 1),
(7688, 7538, 59, 2, 0, 'Communication Ok,have Exp in Recruitment,currently serviing notice,20 more dyas to go, Min Sal Exp is 19K TH,Little Attitude seems to have,Need to finalise on the Salary Part and to schedule her for 2nd level interview', 60, '0000-00-00 00:00:00', 1),
(7689, 7536, 59, 5, 0, 'Communication ok,no relevant Exp,open for any positions for time being.he much prefers to work as Arabic Tutor/Looking for international vaccanicies too.He needs time to give his confirmation but sustainability doubts.If candidate comes back let us see.He much focus in the Salary part', 60, '0000-00-00 00:00:00', 1),
(7690, 7535, 59, 4, 0, 'have exp as telecaller in Collections,communication souonds to be good,having health issue(Sugar Diabetic).Candidate Appearance not upto the mark,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7691, 7533, 59, 5, 0, 'No sustainabilty,3 months 2 companies changed,Career Gap.Graduation discontinued,not opne up, need to speak,will not sustain and handling pressure no', 60, '0000-00-00 00:00:00', 1),
(7692, 7532, 59, 5, 0, 'Looking for Non voice Process , not fit for our operations and HR roles, will not sustain', 60, '0000-00-00 00:00:00', 1),
(7693, 7532, 59, 5, 0, 'Looking for Non voice Process , not fit for our operations and HR roles, will not sustain', 60, '0000-00-00 00:00:00', 1),
(7694, 7529, 59, 5, 0, 'Communication Average,Looking for recruitment Roles not for CRM,No basic ideas in the recruitment,will not sustain and handling pressure doubt', 60, '0000-00-00 00:00:00', 1),
(7695, 7531, 59, 4, 0, 'communication ok,have Exp in Voice Process for 6 months,can be trained in Elite RE Roles, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7696, 7531, 59, 4, 0, 'communication ok,have Exp in Voice Process for 6 months,can be trained in Elite RE Roles, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7697, 7535, 14, 5, 0, 'He already having health issues so not suitable for this profile', 59, '2022-01-21 03:00:48', 1),
(7698, 7531, 53, 5, 0, 'Not intrested in voice process', 59, '2022-01-21 03:06:27', 1),
(7699, 7518, 59, 5, 0, 'As Sales team requested for the SA, Candidate not interested with the same and she will not sustain for a long .Dropped', 59, '2022-01-21 03:39:28', 1),
(7700, 7519, 74, 4, 0, 'already experienced in sales 2 and half year.....salary 11k confirmed have laptop....need to join monday good only', 58, '0000-00-00 00:00:00', 1),
(7701, 7527, 59, 4, 0, 'Communication ok and soft,no telecaller Exp but have worked in different domain for almost 3 yrs,5050 profile, family need is there, can be trained.Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7702, 7537, 53, 7, 0, 'selected for B2B 12k. pls cnfrm DOJ', 74, '2022-01-21 06:11:49', 1),
(7703, 7519, 53, 7, 0, 'selected B2B. 11k sal. pls cnfrm doj', 74, '2022-01-21 06:12:54', 1),
(7704, 7527, 14, 5, 0, 'not suitable for this profile', 59, '2022-01-21 06:19:30', 1),
(7705, 7542, 59, 5, 0, 'No graduation,not showing any interest on the job,will not handle the pressure and sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(7706, 7541, 59, 5, 0, 'No Graduation,no importance on the job,College terminated due to attendance,Will not sustain for a long,not suitable', 60, '0000-00-00 00:00:00', 1),
(7707, 7544, 59, 4, 0, 'Communication okay. 3yrs in sales, but no document proof for the exp. Can be trained in RE level, Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7708, 7544, 57, 1, 0, NULL, 59, '2022-01-21 06:57:24', 1),
(7709, 7537, 59, 3, 0, 'Selected for B2B Thanjavur Consultant 5%', 53, '2022-01-22 12:19:45', 1),
(7710, 7519, 59, 3, 0, 'Selected for B2B thanjavur Location, Consultant Role - 5% TDS', 53, '2022-01-22 12:25:36', 1),
(7711, 7548, 59, 3, 0, 'Selected as an employee 8k for 3 months then the salary will be revised after 3 moths - 1.6 yrs SA,no document submission', 60, '0000-00-00 00:00:00', 1),
(7712, 7534, 59, 5, 0, 'Communication Ok, have 6 months exp in Recruitment, little attitude, but seems ok for the profile, scheduled her for the 2nd round but left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(7713, 7530, 59, 5, 0, 'Communication ok but very soft and slow,fresher for recruiter,need time to give confirmation on the SA also the Stipend pay,She was working in Healthcare night shift 15K TH. If she comes back let us decide', 60, '0000-00-00 00:00:00', 1),
(7714, 7546, 59, 5, 0, 'Fresher for TElecaller,communication ok but slow,and much to prefer to work in Non voice process only', 60, '0000-00-00 00:00:00', 1),
(7715, 7526, 59, 2, 0, 'Communication ok, fresher for the recruitment, can be trained, candidate need to give her confirmation on the TxxampC and the stipend pay', 60, '0000-00-00 00:00:00', 1),
(7716, 7547, 59, 5, 0, 'Aged profile, worked in multiple non voice domain, not suitable', 60, '0000-00-00 00:00:00', 1),
(7717, 7523, 59, 3, 0, ' Communication Ok, Have Exp In Paytm Sales, Can Be Trained As Rm, Kindly Check And Let Me Know Your Inputs\n\nselected for GK SIr team with PF/PT', 29, '2022-01-22 03:01:01', 1),
(7718, 7550, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7719, 7550, 57, 4, 0, 'candidate is ok ', 59, '2022-01-22 05:54:27', 1),
(7720, 7550, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-01-22 06:21:45', 1),
(7721, 7551, 59, 5, 0, 'Need to open up a lot will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(7722, 7553, 59, 5, 0, 'Not suitable age around 35 will not handle our pressure will not sustain too', 60, '0000-00-00 00:00:00', 1),
(7723, 7549, 59, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(7724, 7556, 59, 3, 0, 'Selected for B2B in consultant 5% TDS', 60, '0000-00-00 00:00:00', 1),
(7725, 7555, 59, 5, 0, 'Looking for non voice process ,will not handle the pressure Not suitable', 60, '0000-00-00 00:00:00', 1),
(7726, 7557, 59, 4, 0, 'Fresher, for Tiruvallur Location, but too long distance, need to train a lot, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7727, 7558, 59, 5, 0, 'No sustainability in the previous positions,Will not handle the pressure,personal marriage issue,will not focus much in work,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7728, 7554, 59, 2, 0, 'communication Average, fresher for recruitment, need to give her confirmation on the TxxampC, if she comes back will check again', 60, '0000-00-00 00:00:00', 1),
(7729, 7561, 59, 5, 0, 'Age 19yrs 12th passed, comfort to work in non voice process,too long distance too,Not Suitable', 60, '0000-00-00 00:00:00', 1),
(7730, 7559, 59, 5, 0, 'Fresher for Telecaller, need to speak, much comfort to work in non voice,will not sustain for long', 60, '0000-00-00 00:00:00', 1),
(7731, 7556, 53, 7, 0, 'selected for B2B. 13k TH having 2 yrs experience, Feb 1st joining', 59, '2022-01-24 02:43:56', 1),
(7732, 7557, 14, 2, 0, 'number canxquott able to reach', 59, '2022-01-24 03:56:29', 1),
(7733, 7556, 59, 3, 0, 'Selected for B2B in consultant 5% TDS', 53, '2022-01-25 11:09:05', 1),
(7734, 7569, 74, 7, 0, 'he intrested in telecalling need to speak more highly intrested candidate....ready to join immedietly salary need take home 10k..have laptop and bike ......very talkactive and job need .', 58, '0000-00-00 00:00:00', 1),
(7735, 7578, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(7736, 7568, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(7737, 7573, 59, 3, 0, 'Selected for Syed team with PF/ESI/PT ', 60, '0000-00-00 00:00:00', 1),
(7738, 7560, 59, 3, 0, 'Selected as an intern for 5 months with 5K Stipend and 10K Salary thereafter,2 yrs SA 10/12 Submission- Selected by Gokul in the 2nd round', 60, '0000-00-00 00:00:00', 1),
(7739, 7579, 59, 3, 0, 'Selected for B2B in consultant Role', 60, '0000-00-00 00:00:00', 1),
(7740, 7568, 57, 4, 0, 'candidate is ok kindly negotiate the salary ', 59, '2022-01-25 04:34:28', 1),
(7741, 7573, 57, 4, 0, 'candidate is ok confirm the joining date and negotiate the salary', 59, '2022-01-25 04:35:05', 1),
(7742, 7579, 53, 7, 0, 'selected for B2B. pls cnfrm doj and sal', 59, '2022-01-25 04:35:50', 1),
(7743, 7578, 13, 7, 4, 'Candidate is well profiled and talk active suitable for telecalling so fixed 12.5k salary but he is little double minded about the salary, so i commit for the salary hike after 6 months to prove by the performance is good.', 59, '2022-01-25 04:41:44', 1),
(7744, 7571, 59, 5, 0, 'Communication Average,not much strong in the areas of excel, but worked in the operations/MIS roles. long distance,will not sustain in our roles\n', 60, '0000-00-00 00:00:00', 1),
(7745, 7570, 59, 4, 0, 'Communication ok,not interested much to the calling activities,have knowledge in the MIS part,comfort to work in Renewals too kindly check for Renewals', 60, '0000-00-00 00:00:00', 1),
(7746, 7573, 59, 3, 0, 'Selected for Syed team with PF/ESI/PT ', 57, '2022-01-25 04:48:15', 1),
(7747, 7572, 59, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(7748, 7568, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-01-25 04:49:12', 1),
(7749, 7524, 59, 5, 0, 'Communication is good,have multiple intern Exp and the current is ready to pay her 4 LPA in 3 months time,Salary Exp is around 3.5 LPA,Will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7750, 7580, 59, 5, 0, 'Communication no,need to open a lot, will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7751, 7581, 59, 5, 0, 'Communication ok,have exp in renewals,but no sustainability,holding an offer for 18K TH,will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(7752, 7570, 53, 5, 0, 'Not intrested in teleclling', 59, '2022-01-25 05:08:30', 1),
(7753, 7569, 59, 5, 0, 'discussed and shared the salary breakup,requestde time to gove his confirmation,but after that he is not responding to the calls.Dropped', 74, '2022-01-25 06:17:19', 1),
(7754, 7578, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2022-01-25 06:28:10', 1),
(7755, 7579, 59, 3, 0, 'Selected for B2B in consultant Role', 53, '2022-01-27 10:22:22', 1),
(7756, 7590, 73, 5, 0, 'Job not mandatory working for calm place . She will not handle in pressure . So drop.', 58, '0000-00-00 00:00:00', 1),
(7757, 7606, 59, 5, 0, 'No communication,Career Gap and looking for accounts positions,not good in MIS Activities,no ideas on Excel,will not sustain and the exp is also high', 60, '0000-00-00 00:00:00', 1),
(7758, 7596, 14, 5, 0, 'not suitable for voice process he is looking for non voice process', 60, '0000-00-00 00:00:00', 1),
(7759, 7599, 14, 4, 0, 'salary 11k need to check joining date', 60, '0000-00-00 00:00:00', 1),
(7760, 7598, 14, 4, 0, 'need to check sustainability', 60, '0000-00-00 00:00:00', 1),
(7761, 7602, 59, 4, 0, 'fresher for Sales,need to open a lot,internal reference,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7762, 7604, 59, 5, 0, 'Not open,no communication,Looking for non voice only', 60, '0000-00-00 00:00:00', 1),
(7763, 7597, 59, 2, 0, 'no basic knowledge related to PHP,have ideas in HTML ,CSS only but interested to learn, Age around 31 yrs,fresher for IT Domain,Need to check by giving a task\n', 60, '0000-00-00 00:00:00', 1),
(7764, 7593, 59, 5, 0, 'Communication is Good,not interested in operations,not open for Esales looking for norml CRM but the salary Exp is 20K min and recently married sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(7765, 7592, 59, 5, 0, 'Average communication, Recently married and not open for targets and pressure, will not sustain', 60, '0000-00-00 00:00:00', 1),
(7766, 7587, 59, 5, 0, 'have Exp in Starhealth but looking for the opportunities without tsrget and the pressure,will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(7767, 7583, 59, 5, 0, 'no sustainability ,5yrs 4 companies in different domain,salary Exp is too high,fresher for Recruitment,need to train but will not sustain and even the communication also Average', 60, '0000-00-00 00:00:00', 1),
(7768, 7594, 14, 4, 0, 'Profiled moved to rm need to check', 60, '0000-00-00 00:00:00', 1),
(7769, 7595, 14, 5, 0, 'looking for non voice process not suitable for this profile', 60, '0000-00-00 00:00:00', 1),
(7770, 7591, 14, 5, 0, 'Not suitable for this profile she donxquott know tamil ', 60, '0000-00-00 00:00:00', 1),
(7771, 7600, 59, 5, 0, 'communication is Good,have exp in recruitment for 3 months and her current pay 30K,Salary Exp is very high and will not sustain for a long as she is getting married in few months', 60, '0000-00-00 00:00:00', 1),
(7772, 7601, 59, 5, 0, 'No Communication,no basic knowledge in terms of MF,Have Exp as a document verifier only,will not handle our pressure and sustain ', 60, '0000-00-00 00:00:00', 1),
(7773, 7601, 59, 5, 0, 'No Communication,no basic knowledge in terms of MF,Have Exp as a document verifier only,will not handle our pressure and sustain ', 60, '0000-00-00 00:00:00', 1),
(7774, 7584, 14, 4, 0, 'doubt for one year bond need to check', 60, '0000-00-00 00:00:00', 1),
(7775, 7586, 59, 3, 0, 'Selected for Esale KArthika in PTonly 13K TH', 60, '0000-00-00 00:00:00', 1),
(7776, 7585, 53, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(7777, 7603, 59, 5, 0, 'No communication looking for the core, for time being looking for opportunities,Will not sustain.Need to open up a lot', 60, '0000-00-00 00:00:00', 1),
(7778, 7586, 11, 4, 0, 'selected', 59, '2022-01-27 04:00:28', 1),
(7779, 7584, 59, 5, 0, 'In the second round with Banu/Priyanka he said ok for RE Field for Elite,but in the final round he said not ok for the Field and looking only for the Telecaller but the Salary Exp is around 13K with 1 yr SA,Requestd him to wait for the confirmation on the Salary,but left without attending', 14, '2022-01-27 04:09:28', 1),
(7780, 7594, 59, 5, 0, 'Communication ok,have 3 yrs of Exp as Delivery and operation but not interested in MIS Roles,tried for sales but the salary exp is min 25K,recenlt married and sustainabiity in the long run doubts', 14, '2022-01-27 04:10:30', 1),
(7781, 7599, 59, 2, 0, 'Shared the salary breakup, candidate yet to give his confirmation ', 14, '2022-01-27 04:11:08', 1),
(7782, 7598, 59, 2, 0, 'mentioned exp in the resume but not seems be a genuine,Focus only on the Salary and not open for field sales,for telecaller Salary Exp in around 15K,if he comes back need to finalise for 12K\n', 14, '2022-01-27 04:11:46', 1),
(7783, 7602, 19, 5, 1, 'No fit', 59, '2022-01-27 04:32:42', 1),
(7784, 7589, 73, 5, 0, 'Expected salary 16k to 17k . So drop 1 yrs experience but digital marketing field other platform. He will not sustain this job.\n', 60, '0000-00-00 00:00:00', 1),
(7785, 7588, 73, 5, 0, 'Looking for non voice he will c\nHandle pressure . So drop\n', 60, '0000-00-00 00:00:00', 1),
(7786, 7614, 59, 5, 0, 'Looking for Non Voice,no communication,5 months 2 companies', 60, '0000-00-00 00:00:00', 1),
(7787, 7613, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(7788, 7607, 59, 3, 0, 'Selected for Muthu Team in consultant role 5%', 60, '0000-00-00 00:00:00', 1),
(7789, 7611, 59, 3, 0, 'Selected for Muthu team in Consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7790, 7612, 59, 5, 0, 'Communication Average,have exp in telecalling,Salary Exp is very High,Not open for Field will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(7791, 7608, 73, 7, 0, 'Selected, highly need job, immediate joiner 10k salary fixed. ', 60, '0000-00-00 00:00:00', 1),
(7792, 7607, 13, 7, 4, 'candidate is well profiled and talk active suitable for telecalling so fixed 12.5k salary but he is little double minded about the salary, so i commit for the salary hike after 6 months to prove by the performance is good.', 59, '2022-01-28 03:41:30', 1),
(7793, 7611, 13, 7, 4, 'candidate is well profiled and talk active suitable for telecalling so fixed 12k salary but he is little double minded about the salary, so i commit for the salary hike after 6 months to prove by the performance is good.', 59, '2022-01-28 03:47:32', 1),
(7794, 7613, 57, 4, 0, 'Candidate is ok .. Kindly confirm the joining Date And negotiate the salary thanks', 59, '2022-01-28 03:52:48', 1),
(7795, 7613, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2022-01-28 04:14:53', 1),
(7796, 7608, 59, 3, 0, 'Selected for Dhanalakshmi in consultant 5%', 73, '2022-01-28 05:53:37', 1),
(7797, 7615, 59, 3, 0, 'Selected for Muthu team in consultant 5%\n', 60, '0000-00-00 00:00:00', 1),
(7798, 7607, 59, 3, 0, 'Selected for Muthu Team in consultant role 5%', 13, '2022-01-28 06:46:46', 1),
(7799, 7615, 13, 7, 4, 'candidate is well profiled and talk active suitable for telecalling so fixed 13k salary but he is little double minded about the salary, so i commit for the salary hike after 6 months (Minimum average 80k) to prove by the performance is good.', 59, '2022-01-28 06:47:40', 1),
(7800, 7611, 59, 3, 0, 'Selected for Muthu team in Consultant 5%', 13, '2022-01-28 06:48:08', 1),
(7801, 7615, 59, 3, 0, 'Selected for Muthu team in consultant 5%\n', 13, '2022-01-28 06:51:08', 1),
(7802, 7616, 73, 7, 0, 'SELECTED, NEXT ROUND HANLE TO PRIYANKA VOICE ONLY LOW OTHERWISE THIS CANDIDATE OK . POOR FAMILY HIGHLY JOB NEED. SALARY 10K . CONFIRM JOINING DATE.', 60, '0000-00-00 00:00:00', 1),
(7803, 7586, 59, 3, 0, 'Selected for Esale KArthika in PTonly 13K TH', 11, '2022-01-29 03:01:47', 1),
(7804, 7617, 59, 5, 0, 'No communication,every 6 month shofter jobs,will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7805, 7619, 59, 3, 0, 'Selected for Syed Team in PF/ESI/PT\n', 60, '0000-00-00 00:00:00', 1),
(7806, 7616, 59, 3, 0, 'Selected for Tiruvallur Consultant 5%', 73, '2022-01-29 05:09:43', 1),
(7807, 7619, 57, 4, 0, 'candidate is just ok .. ', 59, '2022-01-29 06:29:40', 1),
(7808, 7619, 59, 3, 0, 'Selected for Syed Team in PF/ESI/PT\n', 57, '2022-01-29 06:35:08', 1),
(7809, 7586, 8, 1, 0, NULL, 29, '2022-01-31 11:24:33', 1),
(7810, 7626, 59, 3, 0, 'Selected for B2B Staff Role', 60, '0000-00-00 00:00:00', 1),
(7811, 7632, 59, 3, 0, 'Selected for Banu B2B 5% TDS', 60, '0000-00-00 00:00:00', 1),
(7812, 7625, 59, 5, 0, 'Looking for hassle free job ,no pressure handling will not sustain', 60, '0000-00-00 00:00:00', 1),
(7813, 7635, 59, 5, 0, 'Communication ok but much comfort to work in non voice ,Yet to complete his graduation and the statement seems to be wrong in most of the places', 60, '0000-00-00 00:00:00', 1),
(7814, 7637, 59, 5, 0, 'Looking only for the team lead role,very high Exp ut not much capable as per expectation.Can give a try for RM,but Salary Exceeds the more', 60, '0000-00-00 00:00:00', 1),
(7815, 7636, 59, 5, 0, 'No communication long career Gap,will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(7816, 7627, 59, 5, 0, 'Need to open a lot,much suits for non voice ,will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(7817, 7633, 59, 5, 0, 'Looking Only For The Team Lead Role,Very High Exp Ut Not Much Capable As Per Expectation.Can Give A Try For RM,But Salary Exceeds The More', 60, '0000-00-00 00:00:00', 1),
(7818, 7631, 59, 5, 0, 'No communication,not much comfort in the Exel areas,will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(7819, 7629, 59, 5, 0, 'Moved for 2nd Round,but left in between as her parents are not ok with TxxampC', 60, '0000-00-00 00:00:00', 1),
(7820, 7626, 53, 7, 0, '13TH, Shortlisted for B2B, Pls cnfrm DOJ', 59, '2022-01-31 05:30:20', 1),
(7821, 7632, 53, 7, 0, '13k TH, Selected for B2B, Pls cnfrm DOJ', 59, '2022-01-31 05:31:34', 1),
(7822, 7626, 59, 3, 0, 'Selected for B2B Staff Role', 53, '2022-01-31 05:49:43', 1),
(7823, 7632, 59, 3, 0, 'Selected for Banu B2B 5% TDS', 53, '2022-01-31 05:50:22', 1),
(7824, 7639, 73, 5, 0, 'SHE IS LOOKING FOR NON VOICE xxamp NOT HANDLE TO PRESSURE HANDLING. SO REJECTED.', 58, '0000-00-00 00:00:00', 1),
(7825, 7642, 59, 3, 0, 'Selected for Syed Team in PF/ESI /PT\n', 60, '0000-00-00 00:00:00', 1),
(7826, 7649, 59, 5, 0, 'communiation average,will not sustain in our role', 60, '0000-00-00 00:00:00', 1),
(7827, 7643, 59, 5, 0, 'Not suitable', 60, '0000-00-00 00:00:00', 1),
(7828, 7641, 59, 3, 0, 'Selected as regional head Direct Marketing with PF/PT', 60, '0000-00-00 00:00:00', 1),
(7829, 7644, 59, 3, 0, 'Selected for HR Recruitment in Internship Employment model', 60, '0000-00-00 00:00:00', 1),
(7830, 7650, 59, 5, 0, 'Not suitable\n', 60, '0000-00-00 00:00:00', 1),
(7831, 7651, 59, 5, 0, 'Shortlisted but dropped as the candidate was not turned back with his confirmation,also seems to have large expectation on the Pay', 60, '0000-00-00 00:00:00', 1),
(7832, 7645, 74, 7, 0, 'already working in arthi scans head office chennai to sell a package of full checkup and due to covid issues releived and after that joining as a telecaller and work in thanjavur as a client based telecalling company ...after that mothers health issue she releived one month back now family in poor condition job need ....office to home 45 mins travel so cross check once about the time managemnt good only fit for team salary expected 11 to 12 but confirm once ', 60, '0000-00-00 00:00:00', 1),
(7833, 7648, 74, 7, 0, 'speaked frankly voice audiable...already have experience in online marketing 10k salary coimbatore...prepared for goverment exam also but not regularly.....father welder brother in singapore but not intrested to go abroad....no laptop..have bike ...home from office 15 mins only...work in aavin milk factory also......very open minded attitude but in nature only hope is adapt to my team kindly cross check once and confirm joining ...salary expected 11 k ', 60, '0000-00-00 00:00:00', 1),
(7834, 7648, 59, 3, 0, 'selected for Thanjavur Location in Consultant 5%', 74, '2022-02-01 04:53:09', 1),
(7835, 7645, 59, 3, 0, 'Seleceted for Thanjavur Location in consultant 5%\n', 74, '2022-02-01 04:56:08', 1),
(7836, 7642, 57, 4, 0, 'candidate is ok ', 59, '2022-02-01 06:06:41', 1),
(7837, 7642, 59, 3, 0, 'Selected for Syed Team in PF/ESI /PT\n', 57, '2022-02-01 06:07:16', 1),
(7838, 7664, 73, 4, 0, 'Already experience for voice process once check sustainability. ', 58, '0000-00-00 00:00:00', 1),
(7839, 7662, 73, 4, 0, 'Check sustainability xxamp Pressure handling. ', 58, '0000-00-00 00:00:00', 1),
(7840, 7663, 83, 4, 0, 'need of job, already have exp in sales, will sustain, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(7841, 7623, 83, 5, 0, 'no flow in speech, will not be suitable', 58, '0000-00-00 00:00:00', 1),
(7842, 7662, 14, 5, 0, 'Doubt for Sustainability and 2 times called him for this he said will confirm will call like that so not suitable for this profile', 73, '2022-02-03 12:02:38', 1),
(7843, 7664, 14, 2, 0, 'Salary expectation high but not worth for that much salary', 73, '2022-02-03 12:03:22', 1),
(7844, 7660, 73, 4, 0, 'need job but check sustainability xxamp salary 12k ', 58, '0000-00-00 00:00:00', 1),
(7845, 7673, 73, 5, 0, 'voice very low not suitable for this profile.', 58, '0000-00-00 00:00:00', 1),
(7846, 7674, 73, 4, 0, 'check sustainability, salary 10k , immediate joining.', 58, '0000-00-00 00:00:00', 1),
(7847, 7660, 53, 7, 0, 'Selected. 12kTH. Immediate joining', 73, '2022-02-03 02:40:55', 1),
(7848, 7674, 53, 7, 0, 'Selected 10k TH immediate joining', 73, '2022-02-03 02:45:04', 1),
(7849, 7663, 53, 7, 0, 'selected. B2B pls cnfrm doj and salary', 83, '2022-02-03 04:13:32', 1),
(7850, 7660, 59, 3, 0, 'Selected for Tiruvallur Location in Consltant 5%', 53, '2022-02-03 04:29:02', 1),
(7851, 7674, 59, 3, 0, 'selected for Tiruvallur in consultant 5%', 53, '2022-02-03 04:32:42', 1),
(7852, 7670, 59, 5, 0, 'Candidate didnt turn with his confirmation on the salary,No responses to the call,we requestd himto share the previous documents butno responses after that', 60, '0000-00-00 00:00:00', 1),
(7853, 7672, 59, 4, 0, 'Communication ok have exp in Store Sales, can be trained, Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7854, 7676, 59, 5, 0, 'Not open for Telecalling Activities,much focus on her core profession only,will not sustain for a long\n', 60, '0000-00-00 00:00:00', 1),
(7855, 7655, 59, 5, 0, 'Have Working Exp in Telecalling, currently looking for WFH,need some time to come out of his sudden demise of their parents\n', 60, '0000-00-00 00:00:00', 1),
(7856, 7658, 18, 5, 0, 'Ok candidate but not suitable for our profile', 60, '0000-00-00 00:00:00', 1),
(7857, 6683, 59, 2, 0, 'Communication ok,need tim to give her confirmation,but too long distance up and down almost 66 kms.sustainability Doubts ,can sign the SA,but doubts a lot', 60, '0000-00-00 00:00:00', 1),
(7858, 7670, 57, 4, 0, 'candidate is ok. kindly confirm the joining date and salary', 59, '2022-02-03 07:21:11', 1),
(7859, 7672, 13, 5, 0, 'Not response (continues RNR)', 59, '2022-02-03 07:27:30', 1),
(7860, 7678, 8, 5, 0, 'will not suite for telecalling his slang is not good and will not sustain and will not handle pressure. expt is 12k as fresher.', 7, '0000-00-00 00:00:00', 1),
(7861, 7670, 59, 5, 0, 'Candidate didnt turn with his confirmation on the salary,No responses to the call,we requestd himto share the previous documents butno responses after that', 57, '2022-02-04 12:23:36', 1),
(7862, 7677, 59, 5, 0, 'Communication no,looking for non voice only,but not much interest on the job openings,no basic excel knowledge will not sustain', 60, '0000-00-00 00:00:00', 1),
(7863, 7554, 59, 3, 0, 'Selected for 3 months intern with 7.5 K,then 12K TH with 208 Deductions - iJobs', 59, '2022-02-04 01:14:08', 1),
(7864, 7092, 59, 5, 0, 'Dropped not responding to the calls properly\n', 59, '2022-02-04 03:04:27', 1),
(7865, 7680, 8, 5, 2, 'his slang is too native and will not suite and sustain for telecalling. looking for IT related jobs but no idea about it. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(7866, 7681, 8, 5, 2, 'not looking for telecalling job and will not suite for calling to. married and then shifted to chennai. expt 15k. looking for office assistance job.', 7, '0000-00-00 00:00:00', 1),
(7867, 7682, 8, 5, 0, 'high job need but no communication and avg skills. need lot of training, has 9m exp in complete MIS, 13.5k tH and has proper doc. okay with 2yr service agreement.', 7, '0000-00-00 00:00:00', 1),
(7868, 7683, 8, 5, 0, 'Avg communication and she dont speak regional lang, no basic idea about the profile and expt 15k, married 3m back and settled in chennai. husband- biz asso. ', 7, '0000-00-00 00:00:00', 1),
(7869, 7687, 8, 4, 0, ' knows basics in lang. , high job need and okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(7870, 7685, 8, 4, 3, '6m in semi voice and 1m in voice looking for fixed salary kind of job, expt 11k and her mom is taking care of family. good in previous companyxquots script.', 7, '0000-00-00 00:00:00', 1),
(7871, 7566, 8, 5, 0, 'expt16k since her last th sal is 15k. no Relevant exp in recruitment and no basic idea about the profile. she was handling 6ppl in previous org. will not sustain for us. not clear about her current Position. but okay with service agmt.', 7, '0000-00-00 00:00:00', 1),
(7872, 7685, 53, 7, 0, 'selected B2B. pls cnfrm DOJ and salary', 8, '2022-02-05 12:19:17', 1),
(7873, 7687, 59, 5, 0, 'Fresher no basic knowledge need to train a lot,thinking a lot on the SA,TxxampC,Will not sustain in our role', 8, '2022-02-05 12:24:17', 1),
(7874, 7685, 59, 3, 0, 'Selected for B2B in consultant 5%', 53, '2022-02-05 04:52:07', 1),
(7875, 7663, 59, 3, 0, 'Selected for B2B Staff Role', 53, '2022-02-05 04:53:03', 1),
(7876, 7701, 8, 2, 0, 'no response after call for zoom', 7, '0000-00-00 00:00:00', 1),
(7877, 7700, 8, 4, 3, 'has 4+yrs of calling exp and okay with RM profile(cold calling and field sales), expt is 20K and above. from 16k he moved to 20k and worked for 6m, job need looking for Descent salary or else will not join. has laptop and 2w.', 7, '0000-00-00 00:00:00', 1),
(7878, 7695, 8, 4, 0, 'has 5m exp with sriram life, okay with 10k, check once', 7, '0000-00-00 00:00:00', 1),
(7879, 7693, 8, 5, 0, 'has 5m exp in rbl credit card renewal 10k, expt is 15k and will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(7880, 7691, 8, 4, 3, 'good communication, 41 and single, in need of job, has 2yrs general insurance exp, okay with RM profile. expt 20k and okay wit cmpy norms.', 7, '0000-00-00 00:00:00', 1),
(7881, 7697, 8, 5, 0, 'has 1yr exp in holidays Package 14k and expt 18k, will not join without her fnd madavi', 7, '0000-00-00 00:00:00', 1),
(7882, 7698, 8, 5, 0, 'will not suite for our process, very slow and will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(7883, 7694, 8, 4, 3, 'has 6m exp in dmat and in lockdown worked as ambulance driver, expt 13k+ but okay with our company norms. check with sustainability once. father and bro is a driver.', 7, '0000-00-00 00:00:00', 1),
(7884, 7692, 8, 5, 0, 'his pronunciation is not clear and stammering to speak, will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(7885, 7696, 8, 5, 0, 'will not sustain, doesnt have Relevant exp expt is 25k, was getting 16k in next company he got 20k and served only 6m and now expt 25k, relived due to work pressure.', 7, '0000-00-00 00:00:00', 1),
(7886, 7691, 80, 5, 0, 'He came Final round inbetween the interview he gone away', 8, '2022-02-07 03:18:08', 1),
(7887, 7695, 53, 5, 0, 'Not suit for telecalling', 8, '2022-02-07 03:42:47', 1),
(7888, 7694, 57, 4, 0, 'Candidate is ok . kindly confirm the salary and joining date thanks ', 8, '2022-02-07 03:47:00', 1),
(7889, 7700, 31, 5, 3, 'No direct sales experience, ', 8, '2022-02-07 03:51:44', 1),
(7890, 7694, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-02-07 06:12:01', 1),
(7891, 7699, 8, 4, 3, 'has exp in Different Domine and currently into sales and mktnd from on role she is working as freelancer 20k. still serving and exptng same or more than that, married and 2kids 9th and 7th. husband trainer in cricket council. she is okay with our RM profile (cold calling and field sales)', 7, '0000-00-00 00:00:00', 1),
(7892, 7699, 71, 5, 0, 'REJECTED ', 8, '2022-02-07 06:36:36', 1),
(7893, 7704, 8, 5, 0, 'will not Suit for recruiter profile and too long padi, very childish.', 7, '0000-00-00 00:00:00', 1),
(7894, 7707, 8, 5, 0, 'zero communication, will not suite for recruiter profile.', 7, '0000-00-00 00:00:00', 1),
(7895, 3887, 8, 5, 0, 'will not suite for BDM', 8, '2022-02-08 11:22:03', 1),
(7896, 6586, 8, 5, 0, 'will not suite for crm', 8, '2022-02-08 11:23:34', 1),
(7897, 6001, 8, 5, 0, 'no response', 8, '2022-02-08 11:24:36', 1),
(7898, 5202, 8, 5, 0, 'No Response', 8, '2022-02-08 11:25:47', 1),
(7899, 5200, 8, 5, 0, 'No Response', 8, '2022-02-08 11:26:06', 1),
(7900, 4771, 8, 5, 0, 'No Response', 8, '2022-02-08 11:26:23', 1),
(7901, 4676, 8, 5, 0, 'No Response', 8, '2022-02-08 11:27:00', 1),
(7902, 4434, 8, 5, 0, 'sal expt is high', 8, '2022-02-08 11:27:33', 1),
(7903, 4279, 8, 5, 0, 'No Response', 8, '2022-02-08 11:28:16', 1),
(7904, 4275, 8, 5, 0, 'No Response', 8, '2022-02-08 11:28:42', 1),
(7905, 4202, 8, 5, 0, 'No Response', 8, '2022-02-08 11:29:10', 1),
(7906, 4123, 8, 5, 0, 'expt is 25k but our Budget was 15k', 8, '2022-02-08 11:30:03', 1),
(7907, 7709, 73, 5, 0, 'salary expectation is high 14200/. previous exp furniture sales.\ndoubt for sustainability.', 58, '0000-00-00 00:00:00', 1),
(7908, 4126, 8, 5, 0, 'sal expt high', 8, '2022-02-08 11:35:45', 1),
(7909, 7689, 8, 4, 3, 'has 6m exp in calling, job need and okay with 10k. ', 7, '0000-00-00 00:00:00', 1),
(7910, 7689, 53, 7, 0, 'selected for b2b. 11k CTC, pls cnfrm DOJ', 8, '2022-02-08 11:49:58', 1),
(7911, 7664, 59, 2, 0, 'No Response - 1 num no incoming accepted/1 number RNR\n', 14, '2022-02-08 11:57:25', 1),
(7912, 7664, 14, 7, 0, 'salary 11k need to confirm joining date (according to performance 6months after increment spoken with candidate)', 14, '2022-02-08 11:57:25', 1),
(7913, 7689, 59, 3, 0, 'Selected for B2B in Consultant5%', 53, '2022-02-08 12:10:21', 1),
(7914, 7702, 8, 5, 0, 'no sustainability, has Carrier gap due to his personal reason and accident. no payslips and expt is 15k+. overall 2yrs exp in calling but not into sales. ', 7, '0000-00-00 00:00:00', 1),
(7915, 7710, 8, 5, 0, 'will not suite for our process, fresher and slow learner and need lot of training. expt 15k. as he Pronounce will move to next company if sal is not satisfied.', 7, '0000-00-00 00:00:00', 1),
(7916, 7712, 8, 4, 0, 'confirm salary', 7, '0000-00-00 00:00:00', 1),
(7917, 7712, 11, 4, 0, 'have to check the sustainability', 8, '2022-02-08 02:41:04', 1),
(7918, 7714, 8, 4, 0, 'has 1yr exp in credit card sales 14k and lay off, expt 13k okay with RM profile. already Attended interview with babu-arumbakkam.', 7, '0000-00-00 00:00:00', 1),
(7919, 7718, 8, 2, 0, 'has 3m exp in hdb fin, 1yr as sales rep in pharma, okay with sales profile but will not handle sales target. expt 15k. will relocate imm. ', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(7920, 7706, 8, 5, 0, 'married 6m back, Recently shifted to chennai with her. husband. she knows basics only in sql, she dont even knows php basics.', 7, '0000-00-00 00:00:00', 1),
(7921, 7714, 59, 3, 0, 'Selected for Arumbakkam with Pf/ESI /PT', 8, '2022-02-08 05:19:07', 1),
(7922, 7717, 74, 7, 0, 'already working in a private consern as it recruiter for uS basis night shift salary 12k......night shift is not suite and health issues....from office to home direct bus half hour travel.....job need father tailore only .......complete bcom computer.....expected salary 13k....and have laptop...immediate joining...', 58, '0000-00-00 00:00:00', 1),
(7923, 7720, 74, 7, 0, 'Age 25 She Is From Boodhalur Mid To Trichy And Thanjavur Travel Time 1 Hour But Direct Bus To Office Is There .....Age Bit High Parents Looking For Alliance...But She Is Well Matured And Highly Job Need After Marriage Also Worked Properly....Salary 15k I Am Not Confirmed About Salary.....10 Months In Kotak Life Insurance And 2 And Half Years For Hdfc Mobile Banking Process....Completed His Mba In Sastra University....So Highly Professional Candidate And Much Need For Our Team........Father Working In Private Consern 15k Salary....And Mother Home Maker....Have Laptop....Immediate Joining...Already Know About Health Insurance', 58, '0000-00-00 00:00:00', 1),
(7924, 7725, 74, 2, 0, 'fresher only kavibharathi and durga both are friends speak voice loudly fit to team ........but bit childish bcoz of friends .....salary 11k..have laptop....monday joining but i hold this profile to 22 feb', 58, '0000-00-00 00:00:00', 1),
(7925, 7729, 8, 5, 0, 'will not suite for our process, sal expt is also high, not that much bold ', 7, '0000-00-00 00:00:00', 1),
(7926, 7726, 8, 5, 0, 'not profiled, has exp in qc, maintenance, currently working in manpower company no fixed pay. will not suite for RM profile, expt is 20k, his wife is working in justdial. ', 7, '0000-00-00 00:00:00', 1),
(7927, 7724, 8, 4, 3, 'has overall 2.5yr exp in calling MCTC 18k and expt the same or above, married 1yr back has lot of commitments as he disclose. from thiruvyirkadu no 2w but okay with field sales. ', 7, '0000-00-00 00:00:00', 1),
(7928, 7723, 8, 4, 0, 'knows basics and expt is 23k and for service agmnt he need to check with his parents. eager to do sys task.', 7, '0000-00-00 00:00:00', 1),
(7929, 7728, 8, 4, 0, 'has 7m exp in IDFC-12.5k, 1m in alsec 10k. due to low sal looking for job change. good in current script. can join after 22nd feb. ', 7, '0000-00-00 00:00:00', 1),
(7930, 7724, 57, 4, 0, 'candidate is ok .. he already have 2 years experience for tele calling pls confirm the joining date and salary thanks..', 8, '2022-02-09 03:43:11', 1),
(7931, 7724, 59, 3, 0, 'Selected for Syed Team ,hired as a consultant last drwan package around 21637 TH-18K,we mapped the same .After 3-6 months based on the performance we can revise the pay and bring him in the Staff', 57, '2022-02-09 04:12:41', 1),
(7932, 7720, 59, 2, 0, 'Requested candidate to share the payslip, once received will confirm the package\n', 74, '2022-02-09 04:32:58', 1),
(7933, 7717, 59, 2, 0, 'Candidate was outside and her sister only responded,will ask her to call once reached', 74, '2022-02-09 04:36:40', 1),
(7934, 7728, 13, 7, 4, 'okay salary confirm pannanum 22nd joining', 8, '2022-02-09 04:38:22', 1),
(7935, 7732, 8, 4, 0, 'fresher for IT has 2yr exp in acc., 1yr courses related to IT, from thirunelveli okay with company norms 2yrs, training with placement. father-farmer and mom- daily wages. ', 7, '0000-00-00 00:00:00', 1),
(7936, 7733, 8, 4, 0, 'fresher, 1yr courses related to IT, from thirunelveli okay with company norms 2yrs, training with placement. father-farmer. ', 7, '0000-00-00 00:00:00', 1),
(7937, 7723, 27, 5, 0, 'No Response.', 8, '2022-02-09 04:40:20', 1),
(7938, 7733, 27, 7, 0, 'Shortlisted. Fresher. Donxquott have an experience in php. Need to build from the basic.', 8, '2022-02-09 04:42:36', 1),
(7939, 7732, 27, 5, 0, 'No Response.', 8, '2022-02-09 04:43:27', 1),
(7940, 7730, 8, 5, 0, 'fresher for IT, interest towards web front end, has 2yr exp in QC due to his sal issues he relived from previous org. 12k. expt 12k and for service agmnt he need to discuss with his parents.', 7, '0000-00-00 00:00:00', 1),
(7941, 7664, 59, 2, 0, 'No response,tried couple of times', 59, '2022-02-09 08:36:37', 1),
(7942, 7738, 8, 4, 0, 'Has 6m Exp In Bharat Matrimony And 10.5k Sal, Due To Timing Issues Relived. Job Need,good with her script. Expt 15k Okay With Upto 12k. Came With Her Fnd. Check Once.', 7, '0000-00-00 00:00:00', 1),
(7943, 7737, 8, 4, 3, 'has 6m exp in bharat matrimony and 10.5k sal, due to timing issues relived. job need, she is bold and confident. expt 15k okay with upto 12k. came with her fnd. check once.', 7, '0000-00-00 00:00:00', 1),
(7944, 7722, 8, 5, 0, 'he is 30 and was working in medical shop for 1.8yrs and 12K take home . he is from maraimalainagar his train travelling time itself more than 1hr. talkative but no convincing skill will not suite for our process. expt sal 12k+ ', 7, '0000-00-00 00:00:00', 1),
(7945, 7736, 59, 3, 0, 'Selected for Priyanka Jenit Team as consultant 5%', 60, '0000-00-00 00:00:00', 1),
(7946, 7736, 14, 7, 0, 'salary 10.5k need to confirm joining date', 59, '2022-02-10 11:23:03', 1),
(7947, 7664, 59, 2, 0, 'Tried reaching again on 10Feb Not responding /disconnecting the call', 59, '2022-02-10 11:29:02', 1),
(7948, 7737, 13, 7, 4, 'Salary 11k Monday Joining, will committed salary hike Based on Performance Next 6 month.', 8, '2022-02-10 12:06:15', 1),
(7949, 7738, 53, 7, 0, 'Selected. pls cnfrm DOJ and salary', 8, '2022-02-10 12:07:04', 1),
(7950, 7739, 8, 4, 0, 'done 6m course and 3w training in fullstack, okay with company norms. expt 8-10k since. willing to learn, time being staying with relative house. job need. parents farmer.', 7, '0000-00-00 00:00:00', 1),
(7951, 7739, 27, 5, 0, 'No Response.', 8, '2022-02-10 12:09:34', 1),
(7952, 7740, 8, 4, 2, 'she has 1.4 yr exp in matrimony 12.5k and 6m in hdfc load 15k mctc, expt upto 20k, she is not confident and speaking like a fresher, not interested in field sales and got selected in icici. check with her sustainability.', 7, '0000-00-00 00:00:00', 1),
(7953, 7740, 16, 7, 0, 'SELECTED ', 8, '2022-02-10 01:06:08', 1),
(7954, 7711, 8, 5, 0, 'will not sustain, expt package is high, her self pronounced she will not sustain if got better offer.', 7, '0000-00-00 00:00:00', 1),
(7955, 7736, 59, 3, 0, 'Selected for Priyanka Jenit Team as consultant 5%', 14, '2022-02-10 03:23:05', 1),
(7956, 7712, 8, 4, 0, 'confirm salary', 11, '2022-02-10 05:17:59', 1),
(7957, 7748, 83, 5, 0, 'candidate will not sustain xxamp not willing to work for target job', 58, '0000-00-00 00:00:00', 1),
(7958, 7749, 83, 4, 0, 'okay with the profile, need of job', 58, '0000-00-00 00:00:00', 1),
(7959, 7749, 16, 7, 0, 'SELECTED', 83, '2022-02-11 03:47:58', 1),
(7960, 7751, 59, 4, 0, 'Candidate Average Communication,Statements seems to be fake,no sustainability,Internal Reference so kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(7961, 7752, 59, 5, 0, 'Left without attending the interview,came alog with the friend and she got rejected\n', 60, '0000-00-00 00:00:00', 1),
(7962, 7752, 59, 5, 0, 'Left without attending the interview,came alog with the friend and she got rejected\n', 60, '0000-00-00 00:00:00', 1),
(7963, 7754, 59, 3, 0, 'Selected for Manikandan with Pf/ESI/PT\n', 60, '0000-00-00 00:00:00', 1),
(7964, 7751, 13, 5, 0, 'not suitable for tele sales', 59, '2022-02-11 05:40:03', 1),
(7965, 7752, 13, 7, 4, 'ok,12k salary', 59, '2022-02-11 05:42:27', 1),
(7966, 7754, 86, 4, 0, 'i am okay with the person and moved for next Round for conformation.', 59, '2022-02-11 05:49:28', 1),
(7967, 7717, 59, 3, 0, 'Selected for Thanjavur Team in Consultant 5%', 59, '2022-02-11 05:53:22', 1),
(7968, 7720, 59, 3, 0, 'Selected for Thanjavur in consultant 5%\n', 59, '2022-02-11 06:11:53', 1),
(7969, 7754, 18, 7, 4, 'Selected For mani Team. Offered 3L CTC Overall. Monday Joining', 86, '2022-02-11 06:40:56', 1),
(7970, 7754, 60, 1, 0, NULL, 18, '2022-02-12 11:31:17', 1),
(7971, 7760, 24, 7, 0, 'candidate selected for next round with Arun', 60, '0000-00-00 00:00:00', 1),
(7972, 7759, 59, 5, 0, 'Too long distance,looking only for the receptionist role,no basic knowledge in the Excel Data,will not sustain ,matured butwill not run for a long\n', 60, '0000-00-00 00:00:00', 1),
(7973, 7758, 59, 5, 0, 'Communication average,handling Pressure No.No relevant Exp will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(7974, 7760, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI', 24, '2022-02-12 01:34:54', 1),
(7975, 7740, 59, 3, 0, 'selected for Thiyagarajan Team in consultant 5%', 16, '2022-02-12 02:36:18', 1),
(7976, 7749, 59, 3, 0, 'Selected for Thiyagu Team RE in Consultant 5%', 16, '2022-02-12 02:36:44', 1),
(7977, 7737, 59, 3, 0, 'Selected for Muthu TEam in Consultant 5%', 13, '2022-02-12 03:45:04', 1),
(7978, 7738, 59, 3, 0, 'Selected for Muthu Team Consultant 5%', 53, '2022-02-12 03:49:01', 1),
(7979, 7752, 59, 5, 0, 'Left without attending the interview,came alog with the friend and she got rejected\n', 13, '2022-02-12 03:52:37', 1),
(7980, 7770, 8, 4, 2, 'has 1.9 yr exp in apollo as front office receptionist, handling inbound calls regarding services 17.5k TH, expt 18k and job need, holds offer since our office is nearby she choose here. ', 7, '0000-00-00 00:00:00', 1),
(7981, 7764, 8, 4, 0, 'ece-2018 batch, no basic knowledge and said i read in google. for career gap she blames her parents. expt 3L, since her bro is working in IT she chosen IT, for terms and conditions she has to check with her family, will relocate to tnagar. ', 7, '0000-00-00 00:00:00', 1),
(7982, 7771, 8, 5, 0, 'not interested in telecalling, since she is not interested in calling she dont wanna to attend interview and her way of talking and attitude will not suite for us, still serving in accenture(contract based) 22days notice. expt 18-20k. and looking for similar kind of job and no excel knowledge, no idea about gsheets. ', 7, '0000-00-00 00:00:00', 1),
(7983, 7755, 8, 5, 0, 'fresher, currently doing his basics course in igenuine till march. dont know any basics and expt is 15k, need time to think about the company norms.', 7, '0000-00-00 00:00:00', 1),
(7984, 7766, 8, 5, 0, 'looking for WFH. from ponneri too long and sal expt is 16-17k TH, currently working in amazon seller, came with friends.', 7, '0000-00-00 00:00:00', 1),
(7985, 7772, 8, 5, 0, 'no sustainability, 6m as part time in pizza maker, 6m in sriram li, 3m as game designer, no basic knowledge in lang like php. not clear about his previous jobs, not interested in calling, expt 10-12k. need time to think about the company norms.', 7, '0000-00-00 00:00:00', 1),
(7986, 7774, 8, 5, 0, 'not interested in calling, from ponneri too long, okay with collection profile but sal expt is 15k TH, currently working in amazon seller, came with friends.', 7, '0000-00-00 00:00:00', 1),
(7987, 7775, 8, 5, 0, 'not speaking up, will not suite for telecalling, from ponneri too long, okay with collection profile but sal expt is 15k TH, currently working in amazon seller, came with friends.', 7, '0000-00-00 00:00:00', 1),
(7988, 7764, 63, 1, 0, NULL, 8, '2022-02-14 01:20:28', 1),
(7989, 7770, 16, 7, 0, 'HOLD ON FOR SALARY DISCUSSION', 8, '2022-02-14 01:25:10', 1),
(7990, 7769, 74, 5, 0, 'He is not that much profile have no vision to where he is going to work.doing his msc in regular last sem due to covid attendingonline classes xxamp intrested in it field so will not suit for crm', 58, '0000-00-00 00:00:00', 1),
(7991, 7769, 74, 5, 0, 'He is not that much profile have no vision to where he is going to work.doing his msc in regular last sem due to covid attendingonline classes xxamp intrested in it field so will not suit for crm', 58, '0000-00-00 00:00:00', 1),
(7992, 7768, 8, 4, 0, 'currently working in Travels handling end to end admin and booking, she dont have esi and pf there and that is the only reason for job change. has 3+ yrs exp in calling. she is from chengalpet but 2yrs she worked in imarqu, Mctc is 16k and expt is 17k. father-late and her mom was working in clg. ', 7, '0000-00-00 00:00:00', 1),
(7993, 7768, 11, 1, 0, NULL, 8, '2022-02-14 04:31:12', 1),
(7994, 7776, 8, 5, 0, 'Communication below average, has recruitment exp but am not convinced with her existing profile analysis . has only basic knowledge in sourcing. 1yr in finance company as recruiter-10k and past 2yrs in house recruitment as WFH module with 15k take home, expt 20k as take home. not an immediate joiner 2m notice period. reason for job change- since she in recruitment for past 3yrs looking for career growth. she doesnt prefer recruiter profile.', 7, '0000-00-00 00:00:00', 1),
(7995, 7718, 8, 5, 0, 'no response.', 8, '2022-02-15 10:17:53', 1),
(7996, 7770, 59, 3, 0, 'Selected for Thiyagu Team in Staff Role Prop Company,have exp in Telecalling but not a relevant one,let us analyse the candidate in 7 Days training', 16, '2022-02-15 11:55:04', 1),
(7997, 7783, 8, 5, 0, '2yrs in credit card and fresher for us. will not suite for our process, Mctc is 13.5k and expt 20k. ', 7, '0000-00-00 00:00:00', 1),
(7998, 7777, 8, 5, 0, 'not okay with company norms, has 3m exp in php 7k and expt 12k, will not sustain.', 7, '0000-00-00 00:00:00', 1),
(7999, 7756, 8, 5, 0, 'Fresher completed 4m course in besant tech but no basic skills and slow learner, he need to check with his brother regarding company norms and he is working in cognizant. parents into catering.', 7, '0000-00-00 00:00:00', 1),
(8000, 7757, 8, 4, 0, 'Fresher completed 4m course in besant tech willing to learn and job need, he is okay with company norms, expt 10k.', 7, '0000-00-00 00:00:00', 1),
(8001, 7779, 8, 4, 3, 'has 6m exp in calling credit card collection 17k, okay for renewal and he can learn, expt 15-17k and other company norms. moved his profile to herash and gokul. they shortlisted, just confirm his salary and DOJ.', 7, '0000-00-00 00:00:00', 1),
(8002, 7779, 59, 3, 0, 'Selected for Renewal with CTC 180000 includes PF/ESI/PT', 8, '2022-02-15 12:45:44', 1),
(8003, 7784, 8, 5, 0, 'not speaking up and will not suite for calling and she is not interested in calling too', 7, '0000-00-00 00:00:00', 1),
(8004, 7785, 8, 4, 3, 'has 7m calling exp in matrimony and 4+yrs in 2wheeler loan and finance in different org. last mctc 18k and expt 19-20k, he is from katankulathur check it once. has 2w and laptop.', 7, '0000-00-00 00:00:00', 1),
(8005, 7757, 63, 1, 0, NULL, 8, '2022-02-15 01:32:38', 1),
(8006, 7728, 59, 2, 0, 'RNR', 13, '2022-02-15 02:57:24', 1),
(8007, 7785, 80, 7, 4, 'Good Guy. But long distance onlybthe ', 8, '2022-02-15 03:52:35', 1),
(8008, 7788, 8, 2, 0, 'has 2.6yrs exp in hindi calling and 5yrs in hotel mgnt. has no sales exp. he is comfortable with hindi. he need to discuss with his mom and get back. expt is 18k. he is from maharastra and settled in tamil nadu.', 7, '0000-00-00 00:00:00', 1),
(8009, 7787, 8, 5, 0, 'Fresher for digital marketing, completed 4m internship with 15k and expt is 20k. he is not strong in basics and he is not active. shared profile with reyaz and received the same feedback.', 7, '0000-00-00 00:00:00', 1),
(8010, 7781, 8, 5, 0, 'he was an agent in exide LI (commission based) for 2yrs, 4yrs as sales incharge like maintanance, 2yrs in real estate as freelancer (commission based) selling plots and house, for past 2m he is working in a real estate company as BDM with 20k. his expt is 25k take home. he is from telugana and relocated to hyderabad with his wife and kid. father into hotel biz. his communication is not good and expt is high will not suite for RM profile.', 7, '0000-00-00 00:00:00', 1),
(8011, 7773, 8, 4, 3, 'has 1yr exp in alsec credit card sales and 7m in star health, he is from chennai and working in vellore. his family relocating to hyderabad so he is looking for job there. his father in to constructions, has 2w (will buy with in a month) and laptop. 30 days notice.mctc is 17k and expt is 21k.', 7, '0000-00-00 00:00:00', 1),
(8012, 7773, 18, 7, 4, 'Selected for Hyderabad. Quality candidate. Asked 2.25CTC but can give upto 2.4 CTC. Please spesk and confirm. Post offer he will put paper and join within a month.', 8, '2022-02-15 06:17:48', 1),
(8013, 7789, 8, 2, 0, 'from kanchipuran more than 2hr travel, mctc 14.5k and expt 18k.', 7, '0000-00-00 00:00:00', 1),
(8014, 7791, 8, 5, 0, 'has 2.5yr exp in consultancy and loan process. no existing analysis his expt is 15k th and his mctc is 13k and 11.5k th, 6m gap and got married 15days back. will not sustain for our process and salary.', 7, '0000-00-00 00:00:00', 1),
(8015, 7792, 8, 5, 0, 'fresher, not interested in sales and will not handle pressure and sustain. expt 11-12k she is from theni and currently residing in velacherry.', 7, '0000-00-00 00:00:00', 1),
(8016, 7794, 8, 5, 0, 'No degree 10th, married 2kids, husband auto mechanic, 1.6yr in child life trust as caller 9K, reason for reliving work pressure, will not handle sales pressure and no convincing skill will not suite for us. expt 11k.', 7, '0000-00-00 00:00:00', 1),
(8017, 7795, 8, 5, 0, 'bsc maths due to BL he completed in 2021, no basic knowledge in development. will learn and come. father late, mom aeo in govt. ', 7, '0000-00-00 00:00:00', 1),
(8018, 7796, 8, 4, 3, 'has 1yr in AE- creditcard and 8m in IDBI-saving and current acc opening, 1yr in biz and personal loan, last mctc 21k and expt 24k. has 2wheeler and will arrange lap, he is from perambur.', 7, '0000-00-00 00:00:00', 1),
(8019, 7796, 86, 4, 0, 'Ok for next round', 8, '2022-02-16 02:59:22', 1),
(8020, 7796, 18, 7, 4, 'Selected for Mani Team. Ready to Join next monday. Clearly check his last CTC and can give max 10% hike.', 86, '2022-02-16 03:15:41', 1),
(8021, 7793, 8, 4, 3, 'he is from Villupuram, has 1yr core exp and 2yrs in IDFC acc opening, loan and cards, due to accident he relived and has all his papers 21k and expt 22-25k, will relocate to chennai with wife and kid. immediate joiner. has 2w and laptop he need to arrange. ', 7, '0000-00-00 00:00:00', 1),
(8022, 7793, 80, 5, 0, 'Rejected ', 8, '2022-02-16 05:02:37', 1),
(8023, 7785, 18, 7, 0, 'Shortlisted for Pandi Team. Discussed the pay structure with HR. Joining on Monday', 80, '2022-02-16 05:32:46', 1),
(8024, 7798, 8, 5, 0, 'Avg communication, has 2w and no laptop and cant arrange. father runs a grocery shop, mom house wife, 15days notice. he is From Bhainsa 10km to mathapur, currently working in HDB fin credit card sales for the pastr 10m and ctc is 1.5L expt is 3L, due to work pressure and low salary he is looking for job change, will not sustain for us,', 60, '0000-00-00 00:00:00', 1),
(8025, 7728, 59, 2, 0, 'Discussed with the candidate need to confirm the salary', 59, '2022-02-16 08:06:52', 1),
(8026, 7800, 59, 4, 0, 'communication is good,looking for any opportunities,can be trained in RM matured candidate,ready to relocate to chennai,kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8027, 7800, 80, 7, 4, 'Good Guy. Lot of commitment ', 59, '2022-02-17 10:37:06', 1),
(8028, 7799, 8, 5, 0, 'has 2yr exp in semi voice with 12.5K, was taking care of his father tailoring biz for the past 1 yr. not bold and not speaking up will not suite for our process. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8029, 7801, 8, 4, 0, 'already attended interview by last September. bcoz of agreement he didnt joined here. he joined in a org as trainee but no stipend and salary and learning, now he is okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(8030, 7801, 59, 3, 0, 'Selected for PHP - 6 months Intern - 3.5K Stipend plus 2.6 yrs of Employment', 8, '2022-02-17 12:38:11', 1),
(8031, 7802, 8, 5, 0, 'Fresher for calling, was working in chennai corparation for past 2yrs timing 7:00am to 12:00pm with 15K, looking for similar kind of job with 15K+ salary. very lethargic he dont prefer target based job, will not suite for our process and his father and brother-driver, mom-hw.', 7, '0000-00-00 00:00:00', 1),
(8032, 7803, 8, 5, 0, 'attened technical and got same feedback from all, no practical knowledge. she memorized all interview questions. expt 10K+ and initially she was not okay with 3m internship and norms later on she is okay with it. ', 7, '0000-00-00 00:00:00', 1),
(8033, 7804, 8, 4, 0, 'fresher for calling, 5050 since its internal reference we can try, job need and expt is 10-11k.', 7, '0000-00-00 00:00:00', 1),
(8034, 7803, 8, 5, 0, 'attened technical and got same feedback from all, no practical knowledge. she memorized all interview questions. expt 10K+ and initially she was not okay with 3m internship and norms later on she is okay with it. ', 8, '2022-02-17 02:25:49', 1),
(8035, 7804, 13, 7, 4, 'ok,10k salary Monday joining', 8, '2022-02-17 04:09:39', 1),
(8036, 7712, 29, 4, 2, 'Esale RM, Karthika Team', 8, '2022-02-17 04:14:21', 1),
(8037, 7701, 8, 5, 0, 'no response', 8, '2022-02-17 04:14:37', 1),
(8038, 6496, 8, 2, 0, 'last nov he applied interview by sabeha, from thirunelveli and fresher okay with company norms now, done 3m course in front end, looking for react js, got offer in core but not joined due to 3.5yr agreement. has to check with sustainability once. 3 bros working in uae since he is last one he stays with his mom. not strong in basics he will get back on monday. lets see.', 7, '0000-00-00 00:00:00', 1),
(8039, 7807, 8, 4, 3, 'Has sales exp but fresher for us, i couldnt see sustainability 7m armon switches,7m in electrical field and 4m in sanitizer agency but we can try with his profile, he has avg communication and sales exp and his ctc is 3.2L and expt is 3-3.2L. His father and sister are advocates and he has 2w but no laptop he will arrange within a month.', 7, '0000-00-00 00:00:00', 1),
(8040, 7808, 8, 5, 0, 'He is from maharastra and if got offer he will relocate to hyderabad, his english comm is not convincing he is looking for team lead category since he is handling 15 ppl in current org. and he is not interested in target based and field sales job, his existing analysis is not convincing. no notice period and expt 25k take home, no relavant sales exp. he need a time to think about it too.', 7, '0000-00-00 00:00:00', 1),
(8041, 7807, 18, 8, 0, 'Kindly Refix', 8, '2022-02-17 05:48:34', 1),
(8042, 7806, 8, 4, 0, 'fresher, immature and all his dissensions are taken by his sister, got offer for 12.5k and not joined there. has basic calling skills. check once.', 7, '0000-00-00 00:00:00', 1),
(8043, 7813, 8, 5, 0, 'his pronunciation is not clear, will not suite for our process , 2m in calling 9k he is not okay sal, expt 11-12k.', 7, '0000-00-00 00:00:00', 1),
(8044, 7815, 8, 4, 0, 'has 6m exp in matrimony 10.4k, only son due to his father health he is looking for job in nearby. expt as per company.', 7, '0000-00-00 00:00:00', 1),
(8045, 7817, 8, 5, 0, 'no basic skills, father traffic police, since he is not interested in training he is looking for job. expt 15k', 7, '0000-00-00 00:00:00', 1),
(8046, 7816, 8, 5, 0, 'oral and writing is below avg, has around 10yr exp with 19k ctc and expt 30%, he is very slow and couldnt see his exp in terms of skills.', 7, '0000-00-00 00:00:00', 1),
(8047, 7806, 14, 1, 0, NULL, 8, '2022-02-18 11:41:49', 1),
(8048, 7815, 13, 7, 4, 'ok,11k salary monday joining\n(after 6M performance based Hike)', 8, '2022-02-18 11:48:31', 1),
(8049, 7712, 8, 4, 0, 'confirm salary', 29, '2022-02-18 12:13:47', 1),
(8050, 7785, 60, 1, 0, NULL, 18, '2022-02-18 12:33:44', 1),
(8051, 7800, 18, 8, 0, 'Kindly Refix', 80, '2022-02-18 12:36:43', 1),
(8052, 7821, 8, 4, 0, 'has exp in direct collection with 14k, expt 14k and no calling exp and we can try his profile, residing in porur.', 7, '0000-00-00 00:00:00', 1),
(8053, 7819, 8, 5, 0, 'her communication is below avg, not interested in calling profile and target based. she will not suit for both CRM and recruiter profile. she is separated with her parents and kid.', 7, '0000-00-00 00:00:00', 1),
(8054, 7814, 8, 4, 0, 'ha 1yr exp in logistics and 1.8yr in SMO. 2L and hold offer for 3L and expt 3L+. ', 7, '0000-00-00 00:00:00', 1),
(8055, 7825, 8, 5, 0, 'his pronunciation is not good, will not suite for health, has sales exp and expt 15k tH.ref suthagar.', 7, '0000-00-00 00:00:00', 1),
(8056, 7815, 59, 3, 0, 'Selected for Elite RE in consultant 5%', 13, '2022-02-18 03:13:57', 1),
(8057, 7804, 59, 3, 0, 'Selected for Elite Consultant Role 5%', 13, '2022-02-18 03:27:23', 1),
(8058, 7821, 24, 4, 0, 'selected for next round', 8, '2022-02-18 06:23:11', 1),
(8059, 7824, 8, 4, 0, 'has 1ye exp in credit card and 2yrs in vivo showroom, stays 17km away from our office, has 2w and laptop, father driver and only son. mctc is 14.5k and expt 17-18k. Avg communication.', 7, '0000-00-00 00:00:00', 1),
(8060, 7822, 8, 5, 0, 'has 5yrs exp in credit card but not convinced with his analysis. comm. below avg. last mctc is 23k and expt 28K +, holds an offer for 28k. 6m worked in HDB and no doc for that. parents farmer and only son.', 7, '0000-00-00 00:00:00', 1),
(8061, 7818, 8, 8, 0, 'was waiting to connect. no response', 7, '0000-00-00 00:00:00', 1),
(8062, 7812, 8, 5, 0, 'has 9m exp in content writing in 2014 has 8yr gap in between, no basic idea about DM, expt 17k.', 7, '0000-00-00 00:00:00', 1),
(8063, 7814, 69, 5, 0, 'HIgh salary expectations', 8, '2022-02-18 07:05:34', 1),
(8064, 7827, 8, 4, 0, 'has 2yrs exp in loan and credit card, from siddipet and okay with calling and field sales bcoz previously doing similar kind of profile, but sal expt is high. ctc 1.7l and expt 2.8l. parents farmers. english comm. avg and not convincing, has 2w and will arrange laptop. okay with direct walkin on monday or virtual on saturday.', 7, '0000-00-00 00:00:00', 1),
(8065, 7827, 18, 8, 0, 'Kindly Reschedule', 8, '2022-02-19 09:57:10', 1),
(8066, 7824, 18, 8, 0, 'Kindly Reschedule', 8, '2022-02-19 09:57:38', 1),
(8067, 7712, 59, 3, 0, 'Selected for ESales Chennai with PT Deductions only,5050 candidate ,11 months 2 companies travelled, 1st company started with 12K,in the month of relieving only she was revised as 15K', 8, '2022-02-19 09:59:46', 1),
(8068, 7821, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 24, '2022-02-19 10:34:18', 1),
(8069, 7832, 8, 5, 0, 'has 5m exp in loan with 12k no proper reliving, not good in script and expt 13-14k, will not handle sales pressure.', 7, '0000-00-00 00:00:00', 1),
(8070, 7834, 8, 4, 3, 'she has a basic calling skills and convincing. okay wit calling and fresher, check with sustainability alone.', 7, '0000-00-00 00:00:00', 1),
(8071, 7834, 34, 7, 0, 'monday joining', 8, '2022-02-19 02:40:01', 1),
(8072, 7834, 59, 3, 0, 'Selected for Guru Team in consultant role 5%', 34, '2022-02-19 05:27:30', 1),
(8073, 7835, 8, 4, 0, 'has 9m exp in starhealth, 3m and 4m in other sales with 15k take home. she is from vijayawada and residing in kukapalli PG. father into car selling and real estate. only daughter and expt is 18k (negotiable). need to check her sustainability once.', 7, '0000-00-00 00:00:00', 1),
(8074, 7830, 8, 5, 0, 'will not suite for our process, expt is high and no relevant exp. previously he was working in retail. no sales and convincing skills.', 7, '0000-00-00 00:00:00', 1),
(8075, 7823, 8, 5, 0, 'no english comm. he is learning and completed 3m internship and he is doing freelance projects. expt 15-20k, reyaz checked his website and rejected. ', 7, '0000-00-00 00:00:00', 1),
(8076, 7838, 8, 5, 0, 'working as data entry operator, no basic knowledge, she is learning but no skills, expt 12k.', 7, '0000-00-00 00:00:00', 1),
(8077, 7843, 8, 4, 3, 'was working in phrma 2ys with 18k, was taking care of his own pharmacy now his bro handling it. check with sustainability once, okay wit calling and our process. has 2w and will arrange laptop. expt 15k ', 7, '0000-00-00 00:00:00', 1),
(8078, 7846, 8, 5, 0, 'looking for IT jobs, will not suite for voice and sales profile, not speaking up, told him to learn and come.', 7, '0000-00-00 00:00:00', 1),
(8079, 7842, 8, 5, 0, 'will not suite for RM profile, English comm bellow avg, father and brother into farming, he is fresher will not suite for calling and sales. ', 7, '0000-00-00 00:00:00', 1),
(8080, 7843, 24, 4, 0, '15k salary .. next round Arun', 8, '2022-02-21 02:36:02', 1),
(8081, 7843, 59, 3, 0, 'Selected for Suthagar Team,No relevant Exp,candidate need to open a lot,can be trained,need to analyse him in the training period', 24, '2022-02-21 03:13:07', 1),
(8082, 7840, 8, 5, 0, 'her comm is avg, no idea in blogs and has exp in ecom content writing. will not suite for us.', 7, '0000-00-00 00:00:00', 1),
(8083, 7837, 8, 4, 0, 'Fresher for ReactJS, currently working with his bro (WFH) in html and css with 22k. not answered for the very basic questions but says he is not good in oral and strong in practical. i suggest team to give him any system task. . expt 25k-30k. from salem will relocate to chennai.', 7, '0000-00-00 00:00:00', 1),
(8084, 7826, 8, 5, 0, 'will not suite for our process and expt high', 7, '0000-00-00 00:00:00', 1),
(8085, 7841, 73, 4, 0, 'selected , confirm doJ.', 60, '0000-00-00 00:00:00', 1),
(8086, 7849, 8, 4, 0, 'as he said has 2yr exp in real estate but he couldnxquott deliver that clearly. expt 15k and min 12k in hand. will not handle our sales pressure. not completed his degree.', 7, '0000-00-00 00:00:00', 1),
(8087, 7849, 53, 5, 0, 'Hving 2 yrs experience, but he s not opening his mouth abt his previous calling script.', 8, '2022-02-22 02:42:46', 1),
(8088, 7852, 73, 5, 0, 'he looking for non-voice process. couldnxquott handled pressure so dropped.', 60, '0000-00-00 00:00:00', 1),
(8089, 7853, 73, 7, 0, 'need to confirm DOJ. looking for voice process. salary 10k ', 60, '0000-00-00 00:00:00', 1),
(8090, 7853, 59, 2, 0, 'Discussed with the candidate,Distance around 40 kms up and down,he prefers to have opening in sriperumbuthur itself,Have exp in non voice process only,fresher for Voice,he said 10K ok for Salary during interview,but after travelling today for interview his min is 13K,sustainability doubts,He needs time to give his confirmation', 73, '2022-02-22 04:07:07', 1),
(8091, 7796, 60, 1, 0, NULL, 18, '2022-02-22 04:25:28', 1),
(8092, 7833, 59, 5, 0, 'Dropped not suitable - Feedback from Interviewer', 73, '2022-02-22 05:49:35', 1),
(8093, 7841, 59, 3, 0, 'Selected for Tiruvallur Location - Consultant 5%', 73, '2022-02-22 05:50:19', 1),
(8094, 7847, 8, 4, 0, 'ignore the previous feedback. Fresher, not strong in basics, but okay with 3m as trainee. willing to learn he is from rajapalayam, will relocate and immediate joiner. parents- daily wages, expt 10k.', 7, '0000-00-00 00:00:00', 1),
(8095, 7847, 8, 4, 0, 'ignore the previous feedback. Fresher, not strong in basics, but okay with 3m as trainee. willing to learn he is from rajapalayam, will relocate and immediate joiner. parents- daily wages, expt 10k.', 8, '2022-02-22 06:01:51', 1),
(8096, 7837, 54, 1, 0, NULL, 8, '2022-02-22 06:02:41', 1),
(8097, 7847, 54, 1, 0, NULL, 8, '2022-02-22 06:05:30', 1),
(8098, 7868, 8, 5, 0, 'poor comm. from guduvancherry too long, has5m exp in seo and expt 15k, need time to check with company norms', 7, '0000-00-00 00:00:00', 1),
(8099, 7870, 73, 5, 0, 'dropped , looking for accounts department ', 58, '0000-00-00 00:00:00', 1),
(8100, 7871, 73, 5, 0, 'looking for non voice because already worked in voice process now not interest to this field. so dropped', 58, '0000-00-00 00:00:00', 1),
(8101, 7879, 8, 4, 0, '5050 profile, internal reference. has 6m exp in matrimony 10k, expt 13-14k. check sustainability once.', 7, '0000-00-00 00:00:00', 1),
(8102, 7872, 8, 4, 3, 'has 1yr exp in loan HDB, okay with RE and has 2w and need to arrange laptop, mTH-13.5k and expt 15-16k. immediate joiner for babu team.', 7, '0000-00-00 00:00:00', 1),
(8103, 7861, 8, 4, 0, 'has exp in customer support and 3m in star health, his script was good. expt 13-15k. has 2w but not okay wit field sales. ', 7, '0000-00-00 00:00:00', 1),
(8104, 7872, 24, 4, 0, 'selected for next round,. Mr.Ramesh', 8, '2022-02-23 01:03:06', 1),
(8105, 7879, 13, 7, 4, 'ok.11k salary tomorrow joining', 8, '2022-02-23 01:04:09', 1),
(8106, 7861, 53, 7, 0, 'Selected for muthu team. kindly cnfrm salary and DOJ', 8, '2022-02-23 01:05:45', 1),
(8107, 7858, 8, 5, 0, 'Has 1yr exp in customer support. not interested in calling, looking for chat support and backend. no knowledge in Excel. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8108, 7859, 8, 4, 0, 'good in oral, knows basics in DM and blogs. we can train him and he is okay with our norms. has 1yr exp in amazon with 2.5L.', 7, '0000-00-00 00:00:00', 1),
(8109, 7865, 8, 5, 0, 'has 6m exp in airtel inbound process as customer support with 15k mctc, he prefer non voice. will not sustain and he dont have proper reliving and payslip for 15k. expt 14-16k take home. in non voice he dont have excel knowledge.', 7, '0000-00-00 00:00:00', 1),
(8110, 7869, 8, 5, 0, 'From bihar, language issues, he couldnt speak and understand english easily, no basic knowledge in react js. need lot of learning. but he is okay with our norms.', 7, '0000-00-00 00:00:00', 1),
(8111, 7880, 8, 4, 3, 'has 6m exp in starhealth 12k and 6m in icici 2w insurance 13k. expt 14k and no father job need mom is working in coffee shop. ', 7, '0000-00-00 00:00:00', 1),
(8112, 7880, 53, 7, 0, 'Selected for priyanka team. kindly cnfrm the salary and DOJ', 8, '2022-02-23 01:30:12', 1),
(8113, 7879, 59, 3, 0, 'Selected for Muthu Team - consultant 5%', 13, '2022-02-23 01:43:06', 1),
(8114, 7877, 8, 5, 0, 'fresher, came with kavi nilavu, she knows nothing and not speaking up, will not suite for any of our openings. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8115, 7867, 8, 5, 0, 'has 7m exp 2.4l ctc and expt 3.5l.', 7, '0000-00-00 00:00:00', 1),
(8116, 7890, 8, 4, 3, 'has 8m exp in semi voice and 1yr in axis bank and 2 yr in other sales, okay with re skills, has 2w and laptop, expt 18k min 15k as th, ', 7, '0000-00-00 00:00:00', 1),
(8117, 7886, 74, 5, 0, 'highly salary expected not fit to team high age', 60, '0000-00-00 00:00:00', 1),
(8118, 7863, 73, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8119, 5447, 74, 7, 0, 'candidate already shortlisted past 6 months back but have no transportation so she is not joined right now have bike but maturity is bit low kindly check one bcoz it makes a attrition to find which one best to his life....no laptop have bike....salary 10 to 11k.....confirm once', 58, '0000-00-00 00:00:00', 1),
(8120, 7891, 8, 4, 0, 'has 10m exp in sbi cards and 1m in star health, husband driver and 2yr kid, job need and expt 15k. good in scripts. ', 7, '0000-00-00 00:00:00', 1),
(8121, 7892, 8, 5, 0, 'fresher, as 3m exp in sbi cards 12.5k th and expt 15k. no job need and time being looking for job. will not handle pressure and very childish. ', 7, '0000-00-00 00:00:00', 1),
(8122, 7893, 8, 5, 0, 'has 3m exp in sbi cards 14k th and expt 18k, she is a beautician and no job need, settled family. time being looking for job and she will take leave during booking dates.', 7, '0000-00-00 00:00:00', 1),
(8123, 7887, 8, 5, 0, 'Fresher for us, has 7m exp in bijus with 7L. expt 25k, he is not comfortable with RM profile, for crm he need time to think about it. his passion into modeling and thats the only reason he came chennai. will not sustain here.', 7, '0000-00-00 00:00:00', 1),
(8124, 7878, 8, 5, 0, 'will not suite for calling and not active, very slow. expt 10k.', 7, '0000-00-00 00:00:00', 1),
(8125, 7876, 8, 5, 0, 'He is a fireman and has 4yr exp in fire and safty, last 6m he was working with his bro as front end developer with 16k, expt 17-18k, for trainee he need to check with his family it seems. his father is also a fireman.', 7, '0000-00-00 00:00:00', 1),
(8126, 7856, 8, 4, 0, 'Fresher for sales, he is preparing for gate exams, wrote exams and waiting for results has to check sustainability once. expt 12-13k. will relocate immediately father working in NLC, 2bros abd both are working.', 7, '0000-00-00 00:00:00', 1),
(8127, 7857, 8, 4, 0, 'Fresher, from vedaranyam will relocate to chennai, no basic skills, willing to learn in PHP. told him to learn and get back to you. parents farmers, expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8128, 7872, 88, 4, 0, 'ok', 24, '2022-02-23 06:42:27', 1),
(8129, 7889, 8, 5, 0, 'Comm. is not as we expect. overall 7m exp and 4m in DM with 18k, expt the same. has 3more days of notice and will relocate to chennai. parents farmers. he knows basics in DM.', 7, '0000-00-00 00:00:00', 1),
(8130, 5447, 59, 2, 0, 'Candidate is not available ,her mother is attending the call, need to discuss and finalise with the candidate', 74, '2022-02-23 06:53:57', 1),
(8131, 7856, 24, 5, 0, 'he wrote GATE exam and also he attend coaching classes.. so he not suitable for us.. ', 8, '2022-02-23 06:55:13', 1),
(8132, 7857, 27, 1, 0, NULL, 8, '2022-02-23 06:55:51', 1),
(8133, 7859, 69, 4, 0, 'Candidate selected for final round', 8, '2022-02-23 06:59:18', 1),
(8134, 7882, 8, 5, 0, 'Has 4yr exp in moothut gold loan as asst manager and handling 6 members am not convinced with his existing analysis. looking for similar kind of profile, english comm. is poor. will not suite for team handling and our process, mctc is 20k and expt 25k.', 7, '0000-00-00 00:00:00', 1),
(8135, 7891, 57, 5, 0, 'salary issue ', 8, '2022-02-24 10:08:52', 1),
(8136, 7890, 57, 4, 0, 'candidate was ok kindly confirm the salary and joining date', 8, '2022-02-24 10:11:43', 1),
(8137, 6496, 8, 5, 0, 'fresher, no basic knowledge in terms of technical, job need so told him to learn and get back.', 8, '2022-02-24 10:12:17', 1),
(8138, 7904, 74, 5, 0, 'not that much profile and no voive clarity not fit for teloe sales', 58, '0000-00-00 00:00:00', 1),
(8139, 7898, 74, 7, 0, 'sbi credit card experience 2 years and bajaj ventutres 3 years experience....marriage fixed by june only...salary expected 13k take home....well profiled and fit to telecalling good voice clarity fit to team march joining no laptop..need to confirm once', 60, '0000-00-00 00:00:00', 1),
(8140, 7907, 74, 2, 0, 'need to hold this candidate good voice clarity but bit sustainabilioty issue and looking for marriage also will check', 60, '0000-00-00 00:00:00', 1),
(8141, 7898, 59, 3, 0, 'Selected for Sithyvinayagam team in consultant role\n', 74, '2022-02-24 03:11:42', 1),
(8142, 7906, 8, 5, 0, 'comm below avg, has 2yr mis exp. basic xl knowledge and mctc 15k and expt 20k. already worked for 2yr contract now he need time to think about our company norms. ', 7, '0000-00-00 00:00:00', 1),
(8143, 7901, 8, 4, 0, '7m in ui/ux, okay with all the company norms, has 28days notice. gokul told to come on last day of notice. trainee then placement. ', 7, '0000-00-00 00:00:00', 1),
(8144, 7835, 18, 7, 4, 'Selected for Hyderabad. Can give 20K CTC Overall', 8, '2022-02-24 04:00:52', 1),
(8145, 7810, 8, 5, 0, 'has stammering issues, will not suite for voice, no xl skills will not suite for backend too. ', 7, '0000-00-00 00:00:00', 1),
(8146, 7901, 54, 1, 0, NULL, 8, '2022-02-24 04:28:51', 1),
(8147, 7880, 59, 3, 0, 'Selected for Priyanka Jenit Team in consultant 5%', 53, '2022-02-24 05:26:53', 1),
(8148, 7890, 88, 4, 0, 'Candidate is ok ,', 57, '2022-02-24 05:28:37', 1),
(8149, 7861, 59, 5, 0, 'Discussed and proposed the salary breakup for his approval,finally the candidate messaged that he is not interested in the profile.REquested for the reasons but no response after that', 53, '2022-02-24 05:43:57', 1),
(8150, 6822, 59, 5, 0, 'candidate not interested with TxxampC', 53, '2022-02-24 05:50:39', 1),
(8151, 7873, 8, 4, 0, 'She has 1.8yrs exp in axis gold loan. has avg communication. she is staying in PG and her parents are in native. Was getting 12k ctc and expt 16-17k. reason for reliving is low salary.', 7, '0000-00-00 00:00:00', 1),
(8152, 7896, 8, 5, 0, 'has 1yr exp in core and 2yrs gap. her communication is not good. will not suite for esale. expt is 15-16k. staying in pg, her parents farmers.', 7, '0000-00-00 00:00:00', 1),
(8153, 7873, 18, 7, 4, 'Selected for Hyderabad. Joining on 18th Mar 2022. Salary as discussed', 8, '2022-02-25 10:37:18', 1),
(8154, 7835, 60, 1, 0, NULL, 18, '2022-02-25 11:04:33', 1),
(8155, 7890, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 88, '2022-02-25 11:44:00', 1),
(8156, 7920, 8, 4, 0, 'has 2yrs mis exp with 15k and expt 18k, has basic xl skills, father asst for vao, from kovur. okay with calling but comm is not as expected.', 7, '0000-00-00 00:00:00', 1),
(8157, 7914, 8, 5, 0, '6m exp in php 11.5k expt 15k, looking for job not okay with internship, not okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(8158, 7926, 8, 5, 0, 'has 3yr exp in credit card sales. came with her friend madhavi. both from same clg worked in same company previously and relived in current company together. 18k th and expt 20k th. sal expt is high for crm, will not suite for rm since not interested in field sales. job need.her husband working in moothut fin.', 7, '0000-00-00 00:00:00', 1),
(8159, 7925, 8, 5, 0, 'will not suite for RM profile, he is looking for team handling profile. not interested in field sales. ', 7, '0000-00-00 00:00:00', 1),
(8160, 7923, 8, 5, 0, 'has 3yr exp in retail 13k. will not suite for our process and will not sustain, expt 15k', 7, '0000-00-00 00:00:00', 1),
(8161, 7903, 8, 5, 0, 'has 3yr exp in credit card sales. came with her friend. both from same clg worked in same company previously and relived in current company together. 18k th and expt 20k th. sal expt is high for crm, will not suite for rm since not interested in field sales. job need.', 7, '0000-00-00 00:00:00', 1),
(8162, 7920, 72, 1, 0, NULL, 8, '2022-02-25 03:10:13', 1),
(8163, 7773, 60, 1, 0, NULL, 18, '2022-02-25 04:26:29', 1),
(8164, 7929, 8, 4, 3, 'has2yrs sales exp in hdb with 13.5k, expt 15k, okay with sales skills. ', 7, '0000-00-00 00:00:00', 1),
(8165, 7854, 8, 2, 0, 'no vacency in php, so check with other like react and mern. she is willing to relocate and join.', 7, '0000-00-00 00:00:00', 1),
(8166, 7918, 8, 4, 0, 'okay with his comm and convincing, expt 15k take home, from vellore will relocate to chennai. herash completed next level interview. check for renewal. okay with service agreement.', 7, '0000-00-00 00:00:00', 1),
(8167, 7919, 8, 4, 0, '25/02/2022 jennifer Bhimashankar RM Bangalore SNR 2yr exp in sales, was working in bounce with 16k and currently working in reliance retail backend sales with 23k. parents in gulbarka and he staying in pg. if required he will relocate nearby. has 2w and lap. expt 3.5-4L. 15days notice.', 7, '0000-00-00 00:00:00', 1),
(8168, 7538, 59, 5, 0, 'Didnt turn back with her confirmation', 59, '2022-02-26 11:28:45', 1),
(8169, 7528, 59, 5, 0, 'Not interestde with txxampC', 59, '2022-02-26 11:29:14', 1),
(8170, 7526, 59, 5, 0, 'Not comfortable with TxxampC', 59, '2022-02-26 11:29:40', 1),
(8171, 7664, 59, 5, 0, 'Tried Reaching Again On 10Feb Not Responding /Disconnecting The Call', 59, '2022-02-26 11:30:18', 1),
(8172, 7728, 59, 5, 0, 'Dropped - Not interested got another offer\n', 59, '2022-02-26 11:31:46', 1),
(8173, 7853, 59, 5, 0, 'asked for a time to confirm - too long distance- much prefers for Non Voice- Didnt turn back -Tried calling him No response', 59, '2022-02-26 11:32:43', 1),
(8174, 6683, 59, 5, 0, 'Didnt Turn Back - Too Long Distance Up And Down Almost 66 Kms.Sustainability Doubts ,Can Sign The SA,But Doubts A Lot', 59, '2022-02-26 11:52:44', 1),
(8175, 7941, 74, 7, 0, 'having experience in field sales ...highly job need ...have laptop and bike expected 12k and immeditate joining .....fit for team kindly confirm once', 58, '0000-00-00 00:00:00', 1),
(8176, 7938, 74, 5, 0, 'sustainability looking for IT but well profiled not fit for team and tele sales', 58, '0000-00-00 00:00:00', 1),
(8177, 7929, 24, 4, 0, 'selected for next round .. check with experience ', 8, '2022-02-26 03:10:07', 1),
(8178, 7927, 8, 5, 0, 'fresher expt 15k and she prefers non voice. pursuing her Mba. from mailaduthurai she will relocate to thanjavur so she is not okay with 9-10k.', 7, '0000-00-00 00:00:00', 1),
(8179, 7936, 8, 4, 0, 'fresher for calling, okay with convincing we can train, if got offer she will relocate to thambaram. expt 10-12k. she was looking for IT jobs but no basic skills. check with her sustainability once. parents farmers having laptop.', 7, '0000-00-00 00:00:00', 1),
(8180, 7940, 8, 5, 0, 'Has 1yr exp as dealer in aurkya milk with 10k from dharmaburi will relocate to Chennai and stay in chrompet with friends. No convincing and expt is 15k+, not interested in field sales. As crm expt is high and will not suite for RE.', 7, '0000-00-00 00:00:00', 1),
(8181, 7939, 8, 4, 0, 'has 5yr exp in cams. 11.5k expt 15-18k. married 15days notice. father into construction.', 7, '0000-00-00 00:00:00', 1),
(8182, 7929, 17, 1, 0, NULL, 24, '2022-02-26 03:53:47', 1),
(8183, 7935, 8, 4, 0, 'says 6+ exp in php, check with tech skills. holds offer for 40k', 7, '0000-00-00 00:00:00', 1),
(8184, 7934, 8, 5, 0, 'done 3m course in react, no basic tech. skills, has 1yr exp in construction. he need time to think about company norms. looking for job not internship. min 1 yr he can sign agreement. ', 7, '0000-00-00 00:00:00', 1),
(8185, 7933, 8, 4, 0, 'fresher, expt 15k, avg comm and she is pursuing her Msc in regular, his father rtd. and now taking care of farming. she is from karimnagar will relocate to kukutpalli and stay with sis. she is very nerves and said this is her first time in virtual not speaking up. kindly ask arun to check once.', 7, '0000-00-00 00:00:00', 1),
(8186, 7931, 8, 5, 0, 'Fresher,Her communication is below avg and she couldn’t understand me and deliver exactly. Will not suite for our process and expect is 15k. Parents are farmers and she is staying in PG at amirpet.', 7, '0000-00-00 00:00:00', 1),
(8187, 7930, 8, 5, 0, 'has overall 10m exp 14k and expt 16-17k take home, okay with her scripts but her salary expt is high. she will not sustain and not okay with service agreement incase we hire for renewal.', 7, '0000-00-00 00:00:00', 1),
(8188, 7936, 13, 5, 2, 'not suitable for telesales', 8, '2022-02-26 04:02:32', 1),
(8189, 7941, 59, 3, 0, 'Selected for Thanjavur location in consultant Role', 74, '2022-02-26 04:35:22', 1),
(8190, 7929, 59, 3, 0, 'Selected for Suthagar Team in Staff Role Prop company only PT Deductions', 88, '2022-02-26 04:51:19', 1),
(8191, 7872, 59, 5, 0, 'Dropped she didnt provide the payslips and not responding to the calls too', 88, '2022-02-26 04:51:52', 1),
(8192, 7884, 74, 5, 0, 'not fit', 58, '0000-00-00 00:00:00', 1),
(8193, 7951, 59, 5, 0, 'Average Communication ,no basic knowledge in Exccel,Will not handle our pressure and sustainability doubts\n', 60, '0000-00-00 00:00:00', 1),
(8194, 7944, 59, 4, 0, '5050 Profile,fresher for Telecaller, Sustainability kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8195, 7957, 8, 5, 0, 'no idea about HR rec profile, done MA history and her passion towards teaching for time being she looking for job, expt 15k as fresher. her attitude is not good during interview. ', 7, '0000-00-00 00:00:00', 1),
(8196, 7949, 8, 5, 0, 'has 4yrs exp in construction. doing 6m course in fullstack, no basic practical knowledge. prepared few interview ques. need time to think about company norms.', 7, '0000-00-00 00:00:00', 1),
(8197, 7937, 8, 4, 0, 'has 1.9m exp in icici loan collection with 13.5k th. expt 16k, has 2w and lap, okay with Re profile, good in script. check with distance. ', 7, '0000-00-00 00:00:00', 1),
(8198, 7937, 82, 7, 0, 'Shortliosted', 8, '2022-02-28 12:32:45', 1),
(8199, 7942, 8, 4, 0, 'From kadappa now residing in amirpet. has 1yr exp in other sales, 1yr in karvy as customer support and 6m6m in insurance. has basic skills in insurance and sales. worked in similar kind of profile in india first. lctc is 2.58L and expt the same or okay with company norms. has 2w and no laptop. resently brought bike so not possible for laptop. no father and he is taking care of his mother. job need.', 7, '0000-00-00 00:00:00', 1),
(8200, 7942, 18, 7, 3, 'Selected for Hyd. Can give joining date on 16th Mar', 8, '2022-02-28 01:33:16', 1),
(8201, 7960, 8, 5, 0, 'int-ref, was working in poorvika has to convert walkin customer for EMI working wor hdb fin, no convincing has 3yr exp. lctc 15k and expt 16-18k. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(8202, 7959, 8, 5, 0, 'int-ref, was working in poorvika mobile sales, not okay with her lang, will not suite for our process, job need.', 7, '0000-00-00 00:00:00', 1),
(8203, 7944, 14, 1, 0, NULL, 59, '2022-02-28 06:34:23', 1),
(8204, 7948, 8, 2, 0, '5050, has 2m exp in production ans 2m in hotel reception, father into farming and 2bros working. will relocate to chennai and expt is 15k, no 2w and has laptop. expt is high and sustainability issues. due to his network issues disconnected the call. \nArun check this candidate once and let me know the feedback to move next level.', 7, '0000-00-00 00:00:00', 1),
(8205, 7933, 59, 4, 0, 'Fresher, no basic ideas in insurance domain, candidate is pursuing her masters degree regular college, also she commits that the college belongs to her family relative, hence she can appear only for the exams. Her interest is to have her own business, communication sounds good, father retired and she is the 4th child, her all3 sisters got married. Ready to relocate, and she is very clear with her ongoing studies. 5050 profile Sustainability doubts, let try to schedule her for the next level with Sriram sir and decide.', 8, '2022-03-01 10:09:09', 1),
(8206, 7961, 59, 3, 0, 'Selected for Tiruvallur Location - Consultant Role/Interviewed by Dhanalakshmi', 58, '0000-00-00 00:00:00', 1),
(8207, 7969, 8, 5, 0, 'will not handle pressure, has 2m exp in credit card. due to work pressure she relived from job. she prefers job with out target.', 7, '0000-00-00 00:00:00', 1),
(8208, 7970, 8, 4, 0, 'was working as collection exe for 2yrs. have calling and convincing skills, expt 16k. jon need.', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(8209, 4356, 8, 5, 0, 'has 5m exp in MF looking for salary and carrier growth. will not sustain her sal expt is 20k. ', 7, '0000-00-00 00:00:00', 1),
(8210, 7933, 18, 8, 0, 'Kindly Reschedule', 59, '2022-03-01 11:55:35', 1),
(8211, 7919, 30, 1, 0, NULL, 8, '2022-03-01 12:12:41', 1),
(8212, 7962, 8, 5, 0, 'will not suite for sales calling, also checked for front office. will not suite for that. expt 15k, married, sustainability issues.', 7, '0000-00-00 00:00:00', 1),
(8213, 7935, 63, 1, 0, NULL, 8, '2022-03-01 12:25:02', 1),
(8214, 7939, 72, 1, 0, NULL, 8, '2022-03-01 12:27:47', 1),
(8215, 7789, 8, 5, 0, 'has 2.9m exp as mis but her skill set are avg. we need lot of time to train her.', 8, '2022-03-01 12:50:27', 1),
(8216, 7788, 8, 5, 0, 'very poor English communication and speaks telugu, not profiled, has 2yr exp in reliance retail as TL 20k and expt the same, his father got transfer to Hyderabad, his father accountant and mother teacher and he is only son. not interested in field sales will not suite for RM profile.', 8, '2022-03-01 12:56:23', 1),
(8217, 7970, 24, 4, 0, 'Candidate ok selected for next round', 8, '2022-03-01 04:30:28', 1),
(8218, 7965, 8, 5, 0, 'fresher from uurapakkam more than 1hr travel.too long and will not sustain. expt 10-12k. job need.', 7, '0000-00-00 00:00:00', 1),
(8219, 7966, 8, 8, 0, 'not attended', 7, '0000-00-00 00:00:00', 1),
(8220, 7967, 8, 2, 0, 'fresher, done 6m course in fullstack. married and 1yr kid. expt 20k. has to check with team regarding technical.', 7, '0000-00-00 00:00:00', 1),
(8221, 7977, 8, 5, 0, 'not speaking up, will not suite for calling, has 6m exp in collection.', 7, '0000-00-00 00:00:00', 1),
(8222, 7968, 8, 8, 0, 'not attended', 7, '0000-00-00 00:00:00', 1),
(8223, 7964, 8, 2, 0, 'has 1yr exp in php, avg in tech skills, while interview he answered by referring some notes. expt 15k. check with the team regarding technical.', 7, '0000-00-00 00:00:00', 1),
(8224, 7918, 72, 1, 0, NULL, 8, '2022-03-01 06:42:31', 1),
(8225, 7970, 88, 7, 0, 'Selected for RE role', 24, '2022-03-02 07:50:22', 1),
(8226, 7970, 59, 3, 0, 'Selected for Suthagar team in PF/ESI/PT', 88, '2022-03-02 10:38:04', 1),
(8227, 7985, 8, 5, 0, 'has 4yr exp in mis, last working in oman. expt is high will not suite for us, wife-accountant and expt 30-35k.', 7, '0000-00-00 00:00:00', 1),
(8228, 7971, 8, 5, 0, 'has 2yr exp in grt jewelry as sales person. mctc 16k and expt 20k+, reason for reliving is low salary will not sustain for us, no calling and convincing skills. will not suite for RM. ', 7, '0000-00-00 00:00:00', 1),
(8229, 7973, 8, 5, 0, 'Fresher, not speaking up and will not suite for calling,from cuddalore expt 15-20k.', 7, '0000-00-00 00:00:00', 1),
(8230, 7979, 8, 5, 0, 'fresher, completed course in besent tech-3m. married will relocate to chennai, expt 3-3.5l', 7, '0000-00-00 00:00:00', 1),
(8231, 7981, 8, 5, 0, '2min credit card and 2m in collection 14k and expt 16-18k th. will not suite for voice process and will not sustain.', 7, '0000-00-00 00:00:00', 1),
(8232, 7987, 8, 2, 0, 'has sales exp but not in insurance. 7m in hdb loan process and 2yr in collection. from dharmapuri will relocate to chennai. little bit slow and we can check for RM. lmct is 16k and expt 20k. ', 7, '0000-00-00 00:00:00', 1),
(8233, 7989, 8, 5, 0, 'irda has not approved her profile. will not suite for other profile too bcoz her expt is 5L above.', 7, '0000-00-00 00:00:00', 1),
(8234, 7988, 8, 8, 0, 'na', 7, '0000-00-00 00:00:00', 1),
(8235, 7996, 8, 4, 0, 'has 2yr exp in other sales 25k. 2m in byjus, good in comm and convincing, expt min 20k. from saidhapet has 2w and lap.', 7, '0000-00-00 00:00:00', 1),
(8236, 7997, 8, 5, 0, 'will not suite for calling and not speaking up. ', 7, '0000-00-00 00:00:00', 1),
(8237, 7998, 8, 5, 0, 'not speaking up, will not suite for calling. ', 7, '0000-00-00 00:00:00', 1),
(8238, 7996, 57, 1, 0, NULL, 8, '2022-03-03 03:12:48', 1),
(8239, 8001, 59, 2, 0, 'Good Candidate,need to confirm the Terms xxampconditions', 60, '0000-00-00 00:00:00', 1),
(8240, 7974, 59, 5, 0, 'No clarity on the previous exp related to React was not clear,also the salary exp is very high,will not sustain', 60, '0000-00-00 00:00:00', 1),
(8241, 8000, 59, 5, 0, 'Fresher for content writing,His focus is fully towards the film making only,for time being to continue the practice of writing he is looking for opportunities.Will not sustain', 60, '0000-00-00 00:00:00', 1),
(8242, 8009, 59, 5, 0, 'Looking for non voice process,not open up will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(8243, 8005, 59, 5, 0, 'Age around 40 yrs,will not comfort in taking calls,sustainability doubts,not suitable', 60, '0000-00-00 00:00:00', 1),
(8244, 7999, 59, 5, 0, 'Have Exp in Insurance, but no sustainability in previous, Telecalling activities doubtful,will not handle our pressure and will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(8245, 8008, 59, 2, 0, 'Interviewed for B2B Lead profile,finally projected her for ESales with Salary ,candidate will give her confirmation on monday (7-Mar-2022)\n', 60, '0000-00-00 00:00:00', 1),
(8246, 8002, 59, 5, 0, 'Have Exp in Finance Sales, no field Sales Exp,2nd round interviewed by gaurav and got rejected.Will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8247, 8010, 59, 3, 0, 'Selected for Ravi Team in PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8248, 8006, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8249, 8007, 59, 2, 0, 'Fresher,can be trained coming for a direct F2F interview, will check and decide', 60, '0000-00-00 00:00:00', 1),
(8250, 8010, 88, 7, 0, 'selected for RE', 82, '2022-03-04 04:43:48', 1),
(8251, 8006, 24, 4, 0, 'Candidate okay and selected for next round', 59, '2022-03-04 04:55:55', 1),
(8252, 8010, 59, 3, 0, 'Selected for Ravi Team in PF/ESI/PT', 88, '2022-03-04 05:02:43', 1),
(8253, 8012, 83, 4, 0, 'okay with the profile, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(8254, 7762, 83, 4, 0, 'okay with the profile, good in communication but expected salary is high, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(8255, 8016, 83, 5, 1, 'Will not be suitable due to salary xxamp sustainability issue', 58, '0000-00-00 00:00:00', 1),
(8256, 7762, 80, 7, 4, 'Shortlisted but he will join after 30 working days', 83, '2022-03-05 03:47:45', 1),
(8257, 7762, 18, 7, 0, 'Selected for Pandi Team. Can give good Package and please negotiate', 80, '2022-03-05 04:19:40', 1),
(8258, 8012, 56, 4, 0, 'Sathish sir also seen this candidate', 83, '2022-03-05 04:30:33', 1),
(8259, 8014, 83, 4, 0, 'okay with the profile, candidate is in need of job, check with the sustainability.', 58, '0000-00-00 00:00:00', 1),
(8260, 7937, 88, 7, 0, 'Selected for RE', 82, '2022-03-07 10:53:32', 1),
(8261, 8012, 59, 3, 0, 'Selected for Manivel team with PF/ESI/PT', 56, '2022-03-07 12:01:55', 1),
(8262, 7937, 59, 3, 0, 'Selected for Ravi Team in PF/ESI/PT\n', 88, '2022-03-07 02:01:02', 1),
(8263, 8021, 8, 4, 3, 'has 1yr exp in cigna and 2yrs in matrimony and other exp related to construction. lctc 3l and expt 30%. ', 7, '0000-00-00 00:00:00', 1),
(8264, 8024, 8, 5, 0, 'no sustainability, each 1yr job change, over all 10yr esp, las t 4m in gomechanic with 4.5l and looking for better offer 5.5l. will not suite for rm since he had team handling exp and looking for the same', 7, '0000-00-00 00:00:00', 1),
(8265, 8025, 8, 5, 0, 'will not suite for this profile', 7, '0000-00-00 00:00:00', 1),
(8266, 8027, 8, 2, 0, 'for arumbakkam, expt is 12k, fresher if he okay with 10k we can proceed.', 7, '0000-00-00 00:00:00', 1),
(8267, 8029, 8, 4, 0, 'has 4yrs calling and sales exp. lctc 21k and 18k th. expt the same. fresher for insurance sales, from vandalur long distance but her previous working loc is little mount. good in convincing and job need.', 7, '0000-00-00 00:00:00', 1),
(8268, 8034, 8, 5, 0, 'has baking exp, then legal asst. with a advocate, then agency manager as 9m in hdfc, 2yrs in bhratiaxa, 4m in tataaig. 4.5l ctc and expt upto 6l. will not suite for rm, no GI exp so will not suit for that too.', 7, '0000-00-00 00:00:00', 1),
(8269, 8036, 8, 5, 0, 'has 2.5yrs exp in hdb and looking for better offer. not speaking up and couldnt deliver her script clearly. ctc 2k and expr 22k th. married will not suite for any process, her attire and body lang was not good.', 7, '0000-00-00 00:00:00', 1),
(8270, 8021, 86, 5, 0, 'He interested in collection type of job.', 8, '2022-03-07 05:42:45', 1),
(8271, 8029, 34, 7, 0, 'SELECTED SHE WILL JOIN ON 10TH 18.5K SALARY', 8, '2022-03-07 05:44:29', 1),
(8272, 8014, 80, 7, 4, 'Job needed very much', 83, '2022-03-08 11:15:44', 1),
(8273, 7991, 8, 4, 0, 'Fresher, knows basics in react. Completed 6m course. Check with team and schedule tech round. Father xarmy and he is only son. Expt 10-12k and okay with 3m internship.', 7, '0000-00-00 00:00:00', 1),
(8274, 7991, 59, 5, 0, 'Dropped,need amonth time to decide', 8, '2022-03-08 12:34:10', 1),
(8275, 8029, 59, 3, 0, 'Selected for Guru Team with PT only - Prop Staff', 34, '2022-03-08 03:43:28', 1),
(8276, 8037, 8, 4, 0, 'fresher, good at basics, will learn react js, okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(8277, 8042, 8, 5, 0, 'will not suite for our process, he drunk and came for interview yesterday so we sent him out. again he came today for interview. has overall exp in telecom and 2yrs in religer broking. expt 3.8L. 6m in pondicherry axa.', 7, '0000-00-00 00:00:00', 1),
(8278, 8037, 59, 3, 0, 'Selected for React Profile 1st month - 3.5K 2-4 months - 5K 3yrs SA', 8, '2022-03-08 06:57:40', 1),
(8279, 8050, 8, 4, 0, 'okay with eng comm. has 3yr exp in calling. expt is 13k. okay with company norms. learning digi mktng.', 7, '0000-00-00 00:00:00', 1),
(8280, 8051, 8, 4, 0, 'has 1yr exp in calling was doing 2w and health ins. 2yrs in amazon as qc. married and husband is a driver. expt 11-12k. little bit childish kindly check once.', 7, '0000-00-00 00:00:00', 1),
(8281, 8039, 8, 8, 0, 'na', 7, '0000-00-00 00:00:00', 1),
(8282, 8054, 8, 5, 0, 'will not sustain, planning to start hotel in next 6m. expt 15k and has 1yr exp in calling', 7, '0000-00-00 00:00:00', 1),
(8283, 8052, 8, 5, 0, 'will not suite for our process, has 1yr exp in designing and has 2yrs gap, in between 10th and dip 10yrs gap, last ctc 20k and expt 22k for calling. will not suite for calling. no clarity in speech.', 7, '0000-00-00 00:00:00', 1),
(8284, 8047, 8, 5, 0, 'will not suite for calling, his slang is not good and expt is 20k since he need to relocate. from dharmaphuri and parents farmers, has 1yr exp in masala company and 4m in tractor company with 12k.', 7, '0000-00-00 00:00:00', 1),
(8285, 8050, 69, 4, 0, 'candidate good with basic skills, has family needs', 8, '2022-03-09 06:43:36', 1),
(8286, 8051, 53, 5, 0, 'Looking childish, not suit for Telecalling', 8, '2022-03-09 06:45:58', 1),
(8287, 8069, 8, 4, 0, 'job need, has 2yrs exp in qc, no father and she is the one taking care of family, bro 11th expt 11k. avg calling and convincing skills. check once.', 7, '0000-00-00 00:00:00', 1),
(8288, 8071, 8, 5, 0, 'dont know any developing lang. completed many courses but no knowledge about it. will not suite for calling as well IT.', 7, '0000-00-00 00:00:00', 1),
(8289, 8066, 8, 5, 0, 'was a teacher for 2yrs now pursuing montessori training, no idea about DM, okay with communication. expt 20k as fresher.', 7, '0000-00-00 00:00:00', 1),
(8290, 8067, 8, 4, 0, 'ignore the above cmnt.\nshe has 2.5yrs exp in service and sales and previously in qc. job need and mctc 15k and expt 18k. she is okay with field sales as well. check once. for salary hike she is looking for job change.', 7, '0000-00-00 00:00:00', 1),
(8291, 8069, 53, 7, 0, 'Selected for arumbakkam branch. pls cnfrm Sal and DOJ', 8, '2022-03-10 12:01:47', 1),
(8292, 8032, 8, 5, 0, 'sale expt is 3.5-4l, 7m in internship and 6m as trainee. he is not okay with the company norms, not even a year. but okay with his technical skills. he knows the basics.', 7, '0000-00-00 00:00:00', 1),
(8293, 8014, 18, 7, 4, 'Selected for Pandi Team. Please negotiate the package. Dont have Laptop', 80, '2022-03-10 01:10:57', 1),
(8294, 8067, 8, 4, 0, 'ignore the above cmnt.\nshe has 2.5yrs exp in service and sales and previously in qc. job need and mctc 15k and expt 18k. she is okay with field sales as well. check once. for salary hike she is looking for job change.', 8, '2022-03-10 02:33:47', 1),
(8295, 8077, 8, 4, 0, 'fresher for us, has other sales exp in japan based company. okay with his communication and convincing. after 2020 he was supporting his fathers small biz. lctc is 22k and expt per company norms. has 2w and will arrange laptop and immediate joiner.', 7, '0000-00-00 00:00:00', 1),
(8296, 8073, 8, 4, 2, 'has 2yrs exp in qc, 1yr in matrimony and then done her bed due to personal reason then 2.5yrs in collection. then she had gap, okay with her skills but doubt in sustainability. she is not okay with agreement. expt 15k.', 7, '0000-00-00 00:00:00', 1),
(8297, 8067, 67, 1, 0, NULL, 8, '2022-03-10 04:58:40', 1),
(8298, 8077, 31, 5, 4, 'interested in data entry comparing with sales', 8, '2022-03-10 05:03:16', 1),
(8299, 8063, 8, 4, 0, 'her oral comm is good, she dont know tamil she is from nagaland. expt 25K, was working in ajuba medical billing 20k. ', 7, '0000-00-00 00:00:00', 1),
(8300, 8062, 8, 5, 0, 'has 4yrs exp in content developing with 27k take home in 2019 then had maternity gap. expt 20k+, husband wise president in miot hospital. she dont have any idea about writing and not okay with backend or sales.', 7, '0000-00-00 00:00:00', 1),
(8301, 8073, 53, 5, 0, 'She is intrested in Non voice only', 8, '2022-03-10 05:12:33', 1),
(8302, 7762, 59, 2, 0, 'Discussed and following up with the candidate,yet to get the previous payslips xxamp documents,official 60 Days notice,can negotiate upto 30-45 Days', 18, '2022-03-10 05:14:31', 1),
(8303, 8063, 69, 5, 0, 'high salary expectations', 8, '2022-03-10 05:15:02', 1),
(8304, 8014, 59, 2, 0, 'Projected the Salary Breakup, Expectation is very high', 18, '2022-03-10 05:15:49', 1),
(8305, 7942, 60, 1, 0, NULL, 18, '2022-03-10 05:18:02', 1),
(8306, 8080, 8, 5, 0, 'no 12th, was working in pharmacy 13k, will not suite for calling, expt 15k', 7, '0000-00-00 00:00:00', 1),
(8307, 8082, 8, 5, 0, '12th, was working in pharmacy 10k, lang is not good will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8308, 8086, 8, 4, 0, 'has 11m exp in flutter with 12k and expt 25k.', 7, '0000-00-00 00:00:00', 1),
(8309, 8084, 8, 4, 0, 'fresher for us, 7m exp in loan process like kyc with 13k, expt 15k, from cetpet, check with sustainability once. has 2w and laptop.', 7, '0000-00-00 00:00:00', 1),
(8310, 8086, 54, 1, 0, NULL, 8, '2022-03-11 12:28:37', 1),
(8311, 8084, 82, 1, 0, NULL, 8, '2022-03-11 01:18:54', 1),
(8312, 7942, 59, 3, 0, 'Selected for Hyderabad with PF/ESI/PT', 59, '2022-03-11 01:25:11', 1),
(8313, 8088, 8, 2, 0, 'fresher for calling, her expt is 15k, she is okay with renewal but she is not ready to sign agreement bcoz of her marriage. she need time to think.', 7, '0000-00-00 00:00:00', 1),
(8314, 8006, 88, 7, 0, 'Selected for RE', 24, '2022-03-11 02:45:45', 1),
(8315, 8014, 59, 3, 0, 'Selected for Pandian Team with PF/PT Deductions', 59, '2022-03-12 11:22:48', 1),
(8316, 8098, 8, 5, 0, 'he is hyperactive will not suite for our process, his pronunciation are not clear. expt 14-16k. 6m exp in billing with 12k, looking for job change.', 7, '0000-00-00 00:00:00', 1),
(8317, 8058, 8, 5, 0, 'very childish will not suite for sales process, expt is 15k. from vellore she has to relocate to chennai.', 7, '0000-00-00 00:00:00', 1),
(8318, 8076, 8, 5, 0, 'from thiruvannamalai will relocate to chennai arumbakkam and stay with her friends, has 3m calling exp in credit card with 12k and expt 15k as take home. avg convincing and will not sustain for us. no father and mom house wife, her brothers taking care of family.', 7, '0000-00-00 00:00:00', 1),
(8319, 8069, 59, 3, 0, 'Selected for Arumbakkam team in Consultant Role\n', 53, '2022-03-12 11:59:43', 1),
(8320, 8085, 8, 5, 0, 'her communication is not good will not suite for writing. ', 7, '0000-00-00 00:00:00', 1),
(8321, 8006, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 88, '2022-03-12 01:37:16', 1),
(8322, 8104, 8, 2, 0, 'has to check with sriram', 7, '0000-00-00 00:00:00', 1),
(8323, 8102, 8, 5, 0, 'will not suite for calling, not convinced with her lang, expt is 15k will not sustain. ', 7, '0000-00-00 00:00:00', 1),
(8324, 8103, 8, 2, 0, 'check with his tech skills. not strong in basics, expt is 20k, has 5m exp in react js', 7, '0000-00-00 00:00:00', 1),
(8325, 8101, 8, 5, 0, 'not okay with his lang and attitude, will not sustain and handle sales pressure. has 4m and 3m exp. was handling father biz in b/w. expt 15-16k.', 7, '0000-00-00 00:00:00', 1),
(8326, 8100, 8, 4, 0, 'has 1yr calling exp but not in sales, okay with his convincing and all. kindly check whether he will suite for our process. ', 7, '0000-00-00 00:00:00', 1),
(8327, 8099, 8, 5, 0, 'will not suite for calling, no convincing and he is from chengalpattu too long distance. he cant relocate too.', 7, '0000-00-00 00:00:00', 1),
(8328, 7859, 54, 1, 0, NULL, 69, '2022-03-12 04:08:08', 1),
(8329, 8050, 54, 1, 0, NULL, 69, '2022-03-12 04:09:57', 1),
(8330, 8008, 59, 5, 0, 'Dropped,she is looking for Non Voice Process(Husband insisted her to look for Non Voice)', 59, '2022-03-12 04:11:39', 1),
(8331, 8060, 8, 5, 0, 'doing freelance projects with his brother know very basics. expt 2.5-3L min. from thirunelveli will relocate to chennai.', 7, '0000-00-00 00:00:00', 1),
(8332, 8018, 8, 5, 0, 'fresher, told him to learn and come, no basic skills.', 7, '0000-00-00 00:00:00', 1),
(8333, 8030, 8, 2, 0, 'hold for technical. has 1yr exp in sales but looking for it job expt 15k. check with team.', 7, '0000-00-00 00:00:00', 1),
(8334, 8100, 13, 5, 2, 'not suitable for telesales', 8, '2022-03-12 05:56:50', 1),
(8335, 8118, 8, 5, 0, 'has 2yrs exp in customer support, avg in convincing, expt 16+, looking for backend and op. no knowledge in excel and sheets. ', 7, '0000-00-00 00:00:00', 1),
(8337, 8038, 8, 5, 0, 'has 3yrs exp in kyc, no sales exp. ctc 2.5l and expt 4-4.5l. no calling and convincing skills. ', 7, '0000-00-00 00:00:00', 1),
(8338, 8115, 8, 5, 0, 'fresher for sales, has 3yrs exp in production and qc, no convincing and no calling skills, will not suite for us, expt 22k.', 7, '0000-00-00 00:00:00', 1),
(8339, 8119, 59, 4, 0, 'Have Exp in Telecalling,no Field Exp but can be trained,Interest to learn and perform,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8340, 8119, 80, 7, 4, 'Good Guy', 59, '2022-03-15 01:04:22', 1),
(8341, 8130, 59, 5, 0, 'Have Exp in Voice Process,relevant Star Health only but no sustainability, and will not sustain in our Roles xxamp Pressure\n', 60, '0000-00-00 00:00:00', 1),
(8342, 8007, 59, 5, 0, 'Dropped didnt appear for the F2F Interview', 59, '2022-03-15 02:43:42', 1),
(8343, 8001, 59, 5, 0, 'Not comfortable with terms xxampconditions\n', 59, '2022-03-15 02:44:01', 1),
(8344, 8119, 18, 8, 0, 'Kindly Reschedule', 80, '2022-03-15 02:55:38', 1),
(8345, 8132, 59, 5, 0, 'Communication Average,no sustainability in previous company stating mothexquots health issue,Handling Pressure,also she mention that she is ok with SA,but doubtful', 60, '0000-00-00 00:00:00', 1),
(8346, 8133, 8, 2, 0, 'has 4m in gobumper customer support, 7m in rec with 10k, expt 15k, holds offer for 13k, she is from poonamallee long distance too. shared renewal profile with her, she need time to think about it. ', 7, '0000-00-00 00:00:00', 1),
(8347, 8105, 8, 5, 0, 'will not suite for our process. has 7m exp in airtel sim sales, not clear with his existing analysis, no 2w and lap, expt 16-17k. talkative but no convincing skill.', 7, '0000-00-00 00:00:00', 1),
(8348, 8110, 8, 5, 0, 'from tutukudi, fresher and no convincing skill will not suite for calling, expt 15k min. ', 7, '0000-00-00 00:00:00', 1),
(8349, 8117, 8, 5, 0, 'after her degree 2018 she was serching job in chenni and got offer but didnt joined due to health issues, 1m in native due to health issues she relived from that job too, will not sustain and expt is 15k.', 7, '0000-00-00 00:00:00', 1),
(8350, 8112, 72, 1, 0, NULL, 8, '2022-03-16 11:28:43', 1),
(8351, 8104, 8, 2, 0, 'has to check with sriram, no sales exp but good in lang and convincing. expt 18k. ', 8, '2022-03-16 11:36:36', 1),
(8352, 8126, 8, 2, 0, 'has 4yrs in sriram renewal with 14k. due to low salary she relived. now working in manappuram for past 4m not okay with feild sales so looking for job change with 18k, expt 20k. 15days notice. married and husband working in hcl. got married in 2015 and no kid. she need time to think about the service agreement and salary. her comm is below avg so cant push for esale.', 7, '0000-00-00 00:00:00', 1),
(8353, 8134, 8, 5, 0, 'fresher, done literature then fashion designing, worked 1m in consultancy for 10k absconded due to low salary. no job need. she is not clear with her carrier. expt 13-15k.', 7, '0000-00-00 00:00:00', 1),
(8354, 8142, 8, 4, 0, 'has 1 yr exp in visa-starhealth 11k, 4m in another company with 14k. looking for job change and came with her friend both worked and relived in both company. expt 14k. check with the sustainability. job need.', 7, '0000-00-00 00:00:00', 1),
(8355, 8143, 8, 4, 0, 'has 1 yr exp in visa-starhealth 11k, 4m in another company with 14k. looking for job change and came with her friend both worked and relived in both company. expt 14k. check with the sustainability. job need.', 7, '0000-00-00 00:00:00', 1),
(8356, 8145, 8, 5, 0, 'will not suite for our process, has 1yr exp in cash collection. 4m in real estate. lang is not good and expt is 15k and no 2w and laptop will not suite for re too. ', 7, '0000-00-00 00:00:00', 1),
(8357, 8135, 8, 5, 0, 'will not suite for our process. he is not interested in insurance. he has 6m exp in mf and insurance. he has no idea about amc and funds. known nothing about insurance too. was getting 12k and expt 15k min.', 7, '0000-00-00 00:00:00', 1),
(8358, 8142, 24, 4, 0, 'Selected for next round', 8, '2022-03-16 05:36:25', 1),
(8359, 8143, 24, 4, 0, 'selected for next round', 8, '2022-03-16 05:36:36', 1),
(8360, 8146, 8, 4, 0, 'has overall 6yrs exp in diff area. good in comm and convincing. last mctc is 35k and okay with company norms. 5yrs in mumbai and 1yr in chennai. parents settled in mumbai. ', 7, '0000-00-00 00:00:00', 1),
(8361, 8137, 8, 5, 0, 'was completely in teaching, currently working in bijus with 30-40k variable salary based on classes. married and willing to relocate to chennai. expt in between 30-40k, fresher and knows only the basic in react. not answered few ques. ', 7, '0000-00-00 00:00:00', 1),
(8362, 8146, 80, 7, 4, 'Good guy but package only higher side', 8, '2022-03-16 05:51:28', 1),
(8363, 8155, 8, 5, 0, 'has 2yrs exp in data analyst but she was doing data entry there. no knowledge in basic excel. not interested in calling.', 7, '0000-00-00 00:00:00', 1),
(8364, 8152, 8, 5, 0, 'has 7m exp in calling but now looking for non voice, due to pressure she relived so will not sustain here. expt 14-15k.', 7, '0000-00-00 00:00:00', 1),
(8365, 8150, 8, 5, 0, 'has 6m exp in a consultancy, no basic skills in calling and will not suite for our company. given negative feedback about the present org. expt 15k. ', 7, '0000-00-00 00:00:00', 1),
(8366, 8114, 59, 5, 0, 'Not Suitable,much prefer for non voice,will not sustain and handlle the pressure\n', 60, '0000-00-00 00:00:00', 1),
(8367, 8074, 8, 2, 0, 'has 1.5yrs exp with 12k and serving her notice expt 25k. gokul told her to come after her notice.', 60, '0000-00-00 00:00:00', 1),
(8368, 8089, 8, 5, 0, 'has 3yrs exp in care. looking for TL and no relevant exp and expt is 30k.', 60, '0000-00-00 00:00:00', 1),
(8369, 8109, 8, 5, 0, 'has 1yr exp in data entry, 1.5yrs in go fashion as backend support with 15k, 3m in sbi gi with 20k, expt 25k. poor communication and will not sustain. knows only basics in excel. will not suite for calling.', 60, '0000-00-00 00:00:00', 1),
(8370, 8107, 8, 5, 0, 'fresher, hold for next round but over the call banu rejected her. will not sustain here.', 60, '0000-00-00 00:00:00', 1),
(8371, 8163, 74, 7, 0, 'she fit to team good only..have no laptop...have bike..talkactive...and need to improve his voice skill bcoz of he is completed mba hr immediate joining....mother working father carpenter...sister married only one girl no no sustainability issue', 60, '0000-00-00 00:00:00', 1),
(8372, 8156, 8, 5, 0, 'she has stammering issues, not interested in calling as well. will not for any process.', 60, '0000-00-00 00:00:00', 1),
(8373, 8151, 8, 5, 0, '5050 profile. need to check with him again due to his network issues couldnt continue the call too.\nrejected over the call', 60, '0000-00-00 00:00:00', 1),
(8374, 8169, 8, 5, 0, '2016 batch, worked 4m in operations in dm company in b/w aug 21 to nov 21. no basci knowledge in recruitment. will not suite for our process no job need.', 7, '0000-00-00 00:00:00', 1),
(8375, 8161, 8, 4, 0, 'has 1yr exp in new india gi with 13k, high job need and expt 16k. looking for job change for sal. below avg comm. okay with 1yr terms for renewal.', 7, '0000-00-00 00:00:00', 1),
(8376, 8142, 88, 7, 0, 'Selected for RE role', 24, '2022-03-18 12:41:16', 1),
(8377, 8143, 88, 7, 0, 'Selected for RE role', 24, '2022-03-18 12:41:43', 1),
(8378, 7873, 60, 1, 0, NULL, 18, '2022-03-18 03:31:52', 1),
(8379, 8146, 18, 7, 4, 'Selected but he is in High package. Ask him Join on 7th April. Negotiate the salary and give target to salary hike in 6 months.', 80, '2022-03-18 05:13:45', 1),
(8380, 8163, 59, 2, 0, 'Discussed and proposed the salary break up ,candidate yet to give her confirmation', 74, '2022-03-18 05:45:58', 1),
(8381, 8174, 8, 5, 0, 'was working in merto ticket counter for past 1yr and not interested in sales and calling. not speaking up will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(8382, 8172, 8, 5, 0, 'fresher, not speaking up and no convincing. will not suite for our process and sales.', 7, '0000-00-00 00:00:00', 1),
(8383, 8171, 8, 5, 0, 'fresher, will not suite for our process and sales.', 7, '0000-00-00 00:00:00', 1),
(8384, 8168, 8, 5, 0, 'fresher, will not suite for calling and sales, not speaking at all, will not sustain too. ', 7, '0000-00-00 00:00:00', 1),
(8385, 8149, 8, 5, 0, 'not speaking up will not suite for calling and sales. was working n dhubai and will not sustain here.', 7, '0000-00-00 00:00:00', 1),
(8386, 8161, 72, 1, 0, NULL, 8, '2022-03-19 10:20:10', 1),
(8387, 8141, 8, 5, 0, 'she is not interested in calling. was asking for non voice. she dont know any basics in excel. then she is okay with calling but expt 12-14k. will not sustain for calling. ', 7, '0000-00-00 00:00:00', 1),
(8388, 8140, 8, 5, 0, 'will not suit for mis, expt 4.2l. was doing freelancing for content. has to check with it.', 7, '0000-00-00 00:00:00', 1),
(8389, 8126, 8, 2, 0, 'was working in sriram life- collection 14k, 4m in manappuram with 18k. husband working in hcl for past 1m. 2018 married and they planning for child. she need time for service agmt.', 8, '2022-03-19 10:39:22', 1),
(8390, 8126, 8, 5, 0, 'she is not okay with agmt', 8, '2022-03-19 10:40:17', 1),
(8391, 8133, 8, 5, 0, 'no response', 8, '2022-03-19 10:53:36', 1),
(8392, 8088, 8, 5, 0, 'expt 14k for calling, for fresher we cant offer 14k', 8, '2022-03-19 10:55:03', 1),
(8393, 8103, 8, 5, 0, 'drop him', 8, '2022-03-19 10:55:33', 1),
(8394, 8027, 8, 5, 0, 'no response', 8, '2022-03-19 10:55:45', 1),
(8395, 8176, 8, 5, 0, 'will not suite for our process, not convinced with his profile and his pitch. expt 15k. has 1yr exp in diploma technical ppl.', 7, '0000-00-00 00:00:00', 1),
(8396, 8180, 8, 5, 0, 'has 1yr exp in hr admin. 15k expt 30%. has basic idea about sourcing. he is not okay to work with ijobs consultancy. he is not okay with service agmt.', 7, '0000-00-00 00:00:00', 1),
(8397, 8178, 8, 5, 0, 'completed online dm course. comm. is below avg and knows only basics in dm. will not suite for us.', 7, '0000-00-00 00:00:00', 1),
(8398, 3692, 8, 5, 0, 'no response', 8, '2022-03-19 12:29:56', 1),
(8399, 4270, 8, 5, 0, 'no response', 8, '2022-03-19 12:30:04', 1),
(8400, 4286, 8, 5, 0, 'no response', 8, '2022-03-19 12:30:23', 1),
(8401, 4361, 8, 5, 0, 'no response', 8, '2022-03-19 12:30:32', 1),
(8402, 8142, 59, 5, 0, 'We proposed our Salary and turned before joining as not interested', 88, '2022-03-19 12:54:00', 1),
(8403, 8143, 59, 5, 0, 'We Proposed Our Salary And Turned Before Joining As Not Interested', 88, '2022-03-19 12:54:29', 1),
(8404, 8177, 8, 5, 0, 'will not suite for calling and our process. as per his profile he is 33 and he said 43 during interview. has exp as service engg. expt 13-14k. no convincing.', 7, '0000-00-00 00:00:00', 1),
(8405, 8175, 8, 2, 0, 'fresher, completed 6m course in php, didnt answered any basic ques, said he can do the task. i told him to call back after learning. if he calls check with tech team., ', 7, '0000-00-00 00:00:00', 1),
(8406, 8190, 8, 4, 0, '5050 for me. fresher for us, has 2yrs site exp in b/w was taking care of his fathers biz, sustainability and pressure handling doubt. expt 18k. little bit slow too.', 7, '0000-00-00 00:00:00', 1),
(8407, 8189, 8, 4, 0, 'fresher for us but has sales exp. due to low sal looking for change. expt 17-18k check with the sustainability once. job need.', 7, '0000-00-00 00:00:00', 1),
(8408, 8189, 89, 1, 0, NULL, 8, '2022-03-21 12:22:11', 1),
(8409, 8190, 89, 1, 0, NULL, 8, '2022-03-21 12:23:40', 1),
(8410, 7336, 59, 5, 0, 'Continuous RNR Dropped\n', 59, '2022-03-21 03:35:03', 1),
(8411, 7762, 59, 2, 0, 'Discussed And Following Up With The Candidate,Yet To Get The Previous Payslips xxamp Documents,Official 60 Days Notice,Can Negotiate Upto 30-45 Days - His expectation is very as he will be getting increment in next few days\n', 59, '2022-03-21 03:36:03', 1),
(8412, 5447, 59, 5, 0, ' Whenever we reach her number. Candidate Is Not Available ,Her Mother Is Attending The Call.', 59, '2022-03-21 03:37:56', 1),
(8413, 8198, 8, 5, 0, 'has 1.5yr exp in hdb fin as caller with 9k, 7n in indus bank 16k. looking for team lead but no relevant exp. in insurance. will not suite for tl and sal expt is 20k. ', 7, '0000-00-00 00:00:00', 1),
(8414, 8165, 8, 2, 0, 'need to check with gokul. no eng comm. he is okay wit all terms.', 7, '0000-00-00 00:00:00', 1),
(8415, 7948, 8, 5, 0, 'no response', 8, '2022-03-21 06:27:19', 1),
(8416, 7967, 8, 5, 0, 'gokul droped', 8, '2022-03-21 06:27:59', 1),
(8417, 8163, 59, 3, 0, 'Selected for Thanjavur Location in Consultant Role\n', 59, '2022-03-21 06:33:45', 1),
(8418, 7597, 59, 5, 0, ' No Basic Knowledge Related To Php,Have Ideas In Html ,Css Only But Interested To Learn, Age Around 31 Yrs,Pressure handling doubt and will not sustain\n', 59, '2022-03-22 10:10:11', 1),
(8419, 7773, 59, 5, 0, 'Candidate didnt share the required data, informed him multiple times over the call.Even today(22 Mar) tried reaching him ,but no Response', 59, '2022-03-22 10:33:39', 1),
(8420, 8203, 8, 5, 0, 'will not suite for calling, no sustainability. has complete core exp but 2m ,1m,6m and 3m. ', 7, '0000-00-00 00:00:00', 1),
(8421, 8199, 8, 5, 0, 'no basic knowledge in php, was doing xml epub in freelancing 10k, okay with training and placement but no basic idea.', 7, '0000-00-00 00:00:00', 1),
(8422, 8186, 8, 5, 0, 'poor comm. will not suite for this profile. expt 20-22k with esi and pf. ', 7, '0000-00-00 00:00:00', 1),
(8423, 6670, 59, 5, 0, 'Candidate got another opportunity\n', 59, '2022-03-22 10:42:14', 1),
(8424, 7366, 59, 5, 0, 'Dropped - Candidate didnt turn back', 59, '2022-03-22 10:42:43', 1),
(8425, 7512, 59, 5, 0, 'Candidate didnt turn back and will not sustain', 59, '2022-03-22 10:43:28', 1),
(8426, 7598, 59, 5, 0, 'Candidate didnt come back with his confirmation', 59, '2022-03-22 10:45:23', 1),
(8427, 7599, 59, 5, 0, 'Shared the SAlary breakup,candidate didnt cmoe back with his confirmation', 59, '2022-03-22 10:46:58', 1),
(8428, 6884, 59, 5, 0, 'Candidate didnt come back and no responses', 59, '2022-03-22 10:48:42', 1),
(8429, 6967, 59, 5, 0, 'Not suitable will not sustain', 59, '2022-03-22 10:49:33', 1),
(8430, 6902, 59, 5, 0, 'Holded the candidate for 2nd round try ,but he didnt come back and finally dropped', 59, '2022-03-22 10:53:01', 1),
(8431, 7293, 59, 5, 0, 'Candidate didnt turn back and not looking for a change\n', 59, '2022-03-22 11:02:10', 1),
(8432, 7170, 59, 5, 0, 'Candidate no response', 59, '2022-03-22 11:02:44', 1),
(8433, 7435, 59, 5, 0, 'Continuous RNR Dropped', 59, '2022-03-22 11:03:28', 1),
(8434, 7451, 59, 5, 0, 'Candidate no Response', 59, '2022-03-22 11:04:41', 1),
(8435, 6665, 59, 5, 0, 'Seems Not interested,whenever calling he says outside', 59, '2022-03-22 11:05:22', 1),
(8436, 6723, 59, 5, 0, 'Not open to take calls,will not sustain', 59, '2022-03-22 11:06:06', 1),
(8437, 6965, 59, 5, 0, 'Not suitable REjected', 59, '2022-03-22 11:10:09', 1),
(8438, 6705, 59, 5, 0, 'Got another offer', 59, '2022-03-22 11:11:17', 1),
(8439, 6727, 59, 5, 0, 'Got another Offer', 59, '2022-03-22 11:12:45', 1),
(8440, 6841, 59, 5, 0, 'didnt come back and RNR\n', 59, '2022-03-22 11:13:22', 1),
(8441, 6744, 59, 5, 0, 'RNR Dropped', 59, '2022-03-22 11:14:03', 1),
(8442, 8202, 8, 5, 0, 'everything is okay but long distance. she is from paalavakkam too long more than 1.30 hrs travel. ', 7, '0000-00-00 00:00:00', 1),
(8443, 8204, 8, 5, 0, 'will not suite for our process, not active and he is not okay with sales profile. need time to think about it. comm is okay. ', 7, '0000-00-00 00:00:00', 1),
(8444, 6977, 59, 5, 0, 'Got another offer\n', 59, '2022-03-22 11:33:19', 1),
(8445, 7234, 59, 5, 0, 'Got another Offer', 59, '2022-03-22 11:33:44', 1),
(8446, 7458, 59, 5, 0, 'Candidate didnt come back and got another offer too', 59, '2022-03-22 11:34:28', 1),
(8447, 7482, 59, 5, 0, 'Not interested ', 59, '2022-03-22 11:35:14', 1),
(8448, 7080, 59, 5, 0, 'Now the number is not reachable', 59, '2022-03-22 11:35:57', 1),
(8449, 7494, 59, 5, 0, 'Candidate not comfortable with the Pay', 59, '2022-03-22 11:37:21', 1),
(8450, 4378, 59, 5, 0, 'Dropped - RNR', 59, '2022-03-22 11:38:05', 1),
(8451, 8187, 8, 5, 0, 'has 2.5yrs in teleperfomance kyc. 3min yes bank due to over pressure looking for job change. she is not okay with calling and renewal. will not suite for mis. will not handle pressure.', 7, '0000-00-00 00:00:00', 1),
(8452, 8041, 30, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8453, 6734, 59, 5, 0, 'Dropped - RNR', 59, '2022-03-22 11:46:41', 1),
(8454, 7161, 59, 5, 0, 'Dropped - RNR,even he didnt come back with his confirmation', 59, '2022-03-22 11:48:01', 1),
(8455, 7220, 59, 5, 0, 'Candidate didnt come back with her confirmation for joining - not responding the calls too\n', 59, '2022-03-22 11:48:56', 1),
(8456, 7172, 59, 5, 0, 'Not interested with Terms xxamp Conditions,will not sustain', 59, '2022-03-22 11:49:33', 1),
(8457, 7992, 8, 5, 0, 'fresher for calling, was working in bakery with 13k, will not suite for our process expt 15k since he has to stay in chennai', 7, '0000-00-00 00:00:00', 1),
(8458, 8107, 59, 2, 0, 'Candidate yet to give her confirmation', 14, '2022-03-22 03:39:44', 1),
(8459, 8206, 8, 4, 0, 'has 1yr exp in calling and 1yr in admin. expt is 14k. in need of job but check with her attitude as we discussed. ', 7, '0000-00-00 00:00:00', 1),
(8460, 8131, 8, 4, 0, 'has 3+yrs exp in health ins. with 15k and expt 18k. recently married and her husband owns travel agency. in previous company no proper reliving due to her personal reasons. ', 7, '0000-00-00 00:00:00', 1),
(8461, 8192, 8, 5, 0, 'pursuing her mca. okay with any job but in bangalore. expt 15k, poor communication and convincing too. referred by her friend pavithra.', 7, '0000-00-00 00:00:00', 1),
(8462, 8194, 8, 2, 0, 'has 6m exp in credit card, she prefer bangalore since she worked there already and has relative in bng. comm is below avg. expt is 15k th. ', 7, '0000-00-00 00:00:00', 1),
(8463, 8206, 53, 1, 0, NULL, 8, '2022-03-22 06:24:39', 1),
(8464, 8131, 53, 4, 0, 'Ok for elite team. she s ready to relocate. ', 8, '2022-03-22 06:36:55', 1),
(8465, 8131, 14, 7, 0, 'Salary 14k need to confirm joining date', 53, '2022-03-23 11:06:21', 1),
(8466, 8218, 8, 4, 0, 'has 6m exp in axis healthcare with 20k in bangalore. she expt 20-25k, from vellor and her father is a teacher and mom professional singer. no job need. check with her sustainability. no proper reliving too.', 7, '0000-00-00 00:00:00', 1),
(8467, 8146, 60, 1, 0, NULL, 18, '2022-03-23 11:43:54', 1),
(8468, 8223, 8, 5, 0, 'not speaking up, will not suite for calling and backend too. was a promoter in avt part time.', 7, '0000-00-00 00:00:00', 1),
(8469, 8215, 8, 4, 0, 'fresher form theni will relocate to chennai. expt 10-12k. was selected in sriram but not joined. check with her sustainability once.', 7, '0000-00-00 00:00:00', 1),
(8470, 8209, 8, 4, 0, 'has 6m exp in calling real estate with 15k expt 17-18k, okay for re profile and field sales. has 2w and will arrange laptop.', 7, '0000-00-00 00:00:00', 1),
(8471, 8218, 89, 4, 0, 'Select this candidate ', 8, '2022-03-23 06:10:17', 1),
(8472, 8209, 89, 4, 0, 'Select this candidate ', 8, '2022-03-23 06:12:41', 1),
(8473, 8215, 53, 1, 0, NULL, 8, '2022-03-23 06:17:19', 1),
(8474, 8131, 59, 3, 0, 'Selected for Arumbakkam Location with PT only,TH-15K', 14, '2022-03-24 10:25:39', 1),
(8475, 8209, 88, 7, 0, 'selected for RE', 89, '2022-03-24 11:02:26', 1),
(8476, 8218, 88, 7, 0, 'Selected for RE', 89, '2022-03-24 11:02:58', 1),
(8477, 8209, 59, 3, 0, 'Selected for Babu Team in PT only ', 88, '2022-03-24 11:46:50', 1),
(8478, 8218, 59, 3, 0, 'Selected for RE Babu Team in Consultant 5 %\n', 88, '2022-03-24 11:47:39', 1),
(8479, 8022, 8, 5, 0, 'has 6yr exp into construction with 25k and expt 30k. will not suite for our process.', 7, '0000-00-00 00:00:00', 1),
(8480, 8170, 8, 5, 0, 'has exp in hdfc loan with 14k, expt 18-20k. due to pressure he relived and not comfortable with calling.', 7, '0000-00-00 00:00:00', 1),
(8481, 8128, 8, 5, 0, 'will not suite for calling and backend. very childish and no understanding. only son and training him is also tough. ', 7, '0000-00-00 00:00:00', 1),
(8482, 8227, 8, 5, 0, 'will not work for long term and long distance too.', 7, '0000-00-00 00:00:00', 1),
(8483, 7733, 59, 3, 0, '1 month unpaid,then 5 months 5K,then 2.6 yrs Employment - Overall 3 yrs Document Sub', 27, '2022-03-24 01:06:19', 1),
(8484, 7068, 27, 5, 0, 'No Response.', 27, '2022-03-24 01:10:02', 1),
(8485, 6137, 27, 5, 0, 'No Response.', 27, '2022-03-24 01:13:24', 1),
(8486, 6137, 27, 5, 0, 'No Response.', 27, '2022-03-24 01:13:25', 1),
(8487, 6210, 27, 5, 0, 'No Response.', 27, '2022-03-24 01:14:20', 1),
(8488, 8221, 74, 7, 0, 'he well matured and age bit high.....but fit for telesales ....4 month experience in karvi technology in trichy and releived due to covid...and doing farming bcoz of father health issue now father fit so he looking for job...but purely teaching field so sustainability issue salary need 11k to 15k expected....no laptop and bike .............kindly crocess check and approve ', 60, '0000-00-00 00:00:00', 1),
(8489, 8222, 8, 4, 0, 'has sales exp but not in insurance. he is looking for field sales and interested towords it. expt 25k. resently married and check with his sustainability once bcoz not served more than 7m in all 3 companies. ', 7, '0000-00-00 00:00:00', 1),
(8490, 8222, 8, 4, 0, 'has sales exp but not in insurance. he is looking for field sales and interested towords it. expt 25k. resently married and check with his sustainability once bcoz not served more than 7m in all 3 companies. ', 7, '0000-00-00 00:00:00', 1),
(8491, 8201, 8, 4, 0, 'has 3yrs exp in same company and complete 1yr in core php. ctc 20k and expt 35k. current company is ready to offer 25k but he is looking for better offer. ', 7, '0000-00-00 00:00:00', 1),
(8492, 8193, 8, 4, 0, 'check for tech. 3yrs in same company and has 1.5yrs gap in between. looking for better offer. ctc 2.4l and expt 4L. only daughter and right now in wfh.', 7, '0000-00-00 00:00:00', 1),
(8493, 8184, 8, 4, 0, 'good in oral check with his content. was working in a company for 20days. he terminated his contact and chedk with this once. has basic idea about DM. willing to learn and expt 10k', 7, '0000-00-00 00:00:00', 1),
(8494, 8222, 80, 7, 4, 'Good person relevant experience not there but much needed job', 8, '2022-03-24 06:38:08', 1),
(8495, 8201, 27, 1, 0, NULL, 8, '2022-03-24 06:39:56', 1),
(8496, 8193, 27, 1, 0, NULL, 8, '2022-03-24 06:41:21', 1),
(8497, 8184, 69, 1, 0, NULL, 8, '2022-03-24 06:43:19', 1),
(8498, 8116, 8, 5, 0, 'will not suite for content writing. poor comm and no exp in writing. expt 25k.', 7, '0000-00-00 00:00:00', 1),
(8499, 8220, 8, 2, 0, 'has to check with his payslip. 10m exp in react and expt 4L. looking job in mern.', 7, '0000-00-00 00:00:00', 1),
(8500, 8225, 8, 4, 0, 'fresher, no father and taking care of mother. expt 10-15k, 10km from eroad. he prefers IT jobs and no opportunity in local so he is looking for telecalling job.', 7, '0000-00-00 00:00:00', 1),
(8501, 8230, 8, 5, 0, 'comm and convincing is fine but no sales exp. 60days notice and getting 40k expt 30%. wife is also working.', 7, '0000-00-00 00:00:00', 1),
(8502, 8225, 13, 7, 3, 'Average than but job need so direct interview vara sollirukku', 8, '2022-03-24 06:50:01', 1),
(8503, 8238, 8, 5, 0, 'will not suite for MIS and op. no excel knowledge and knows only kyc and data entry will not suite. was getting 12k and expt 17k. reason for reliving is no hike. ', 7, '0000-00-00 00:00:00', 1),
(8504, 8240, 8, 5, 0, 'will not suite for our process. has complete exp as site engg in singapore and planning to settle in canada. came along with his wife for interview. expt 25k. comm is manageable. ', 7, '0000-00-00 00:00:00', 1),
(8505, 8239, 8, 2, 0, 'has around 5yrs exp in admin and op. expt 15k th will not handle sales pressure. okay with renewal. she need to discuss with ppl and get back. planning to settle in canada and that in process.', 7, '0000-00-00 00:00:00', 1),
(8506, 8222, 60, 1, 0, NULL, 80, '2022-03-25 12:04:29', 1),
(8507, 8243, 8, 5, 0, 'will not suite for mis, poor comm and no skills, expt is 20k. was doing biz with his uncle so will not sustain for us.', 7, '0000-00-00 00:00:00', 1),
(8508, 8221, 59, 2, 0, 'Discussed with candidate,seems to be 5050 profile,pressure handling and sustinability doubt,most prefer to work in Teaching field,need time to give his confirmation', 74, '2022-03-25 12:37:11', 1),
(8509, 8182, 8, 5, 0, 'will not suite for rm profile. 8m in manapuram with 2.4l and expt 3.5l', 7, '0000-00-00 00:00:00', 1),
(8510, 8182, 8, 5, 0, 'will not suite for rm profile. 8m in manapuram with 2.4l and expt 3.5l', 7, '0000-00-00 00:00:00', 1),
(8511, 8246, 59, 5, 0, 'Long Distance and not comfortable with the timings\n', 60, '0000-00-00 00:00:00', 1),
(8512, 8185, 8, 5, 0, 'he is working in Accenture with 11.5k and expt 18k. salary is his only concern he okay with any profile. ', 7, '0000-00-00 00:00:00', 1),
(8513, 8017, 8, 5, 0, 'fresher from ooty, currently staying with brother in namakkal, will relocate to chennai. parents working in estate. his expt is 12k, he will discuses with family and get back. if he is okay with 10k we can proceed with next round interview.', 7, '0000-00-00 00:00:00', 1),
(8514, 8228, 8, 4, 0, 'has core exp and fresher for calling. expt 12k. check with his sustainability and pressure handling once', 7, '0000-00-00 00:00:00', 1),
(8515, 8228, 8, 4, 0, 'has core exp and fresher for calling. expt 12k. check with his sustainability and pressure handling once', 7, '0000-00-00 00:00:00', 1),
(8516, 8242, 8, 4, 0, 'has 1.5yrs exp in calling was working in agri related with 15k. fresher for us. expt 15k. will relocated to erode. native selam.', 7, '0000-00-00 00:00:00', 1),
(8517, 8225, 8, 1, 0, NULL, 13, '2022-03-26 11:42:46', 1),
(8518, 8234, 8, 2, 0, 'hold for technical. check with team.', 7, '0000-00-00 00:00:00', 1),
(8519, 8064, 8, 5, 0, '2yrs in hdb kyc process, 7m in indusbank calling. due to calling work pressure she is looking for change. no basic skills like excel and convincing. expt 20k.', 7, '0000-00-00 00:00:00', 1),
(8520, 8232, 8, 4, 0, 'fresher, was supporting his father biz, okay with calling and looking for good job with carreir growth. expt 10-15k. ', 7, '0000-00-00 00:00:00', 1),
(8521, 8233, 8, 5, 0, ' pursuing degree has exam in june and yet to complete projects. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8522, 8236, 8, 5, 0, ' pursuing degree has exam in june and yet to complete projects. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8523, 8237, 8, 5, 0, ' pursuing degree has exam in june and yet to complete projects. will not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8524, 8245, 8, 4, 0, 'has 1yr exp in calling and friend of jothika she prefers erode. but 1.30 mis travel. has to check once. expt 15k', 7, '0000-00-00 00:00:00', 1),
(8525, 8248, 8, 5, 0, ' pursuing degree has exam in june and yet to complete projects okay with her calling skills.', 7, '0000-00-00 00:00:00', 1),
(8526, 8252, 8, 5, 0, 'will not suite for calling, not speaking up. father dept. collector, mom hw, sis working in amazon.', 7, '0000-00-00 00:00:00', 1),
(8527, 8256, 8, 5, 0, 'pursuing degree has exam in june and yet to complete projects.', 7, '0000-00-00 00:00:00', 1),
(8528, 8257, 8, 5, 0, 'pursuing degree has exam in june and yet to complete projects.\nwill not suite for calling.', 7, '0000-00-00 00:00:00', 1),
(8529, 8258, 8, 5, 0, 'pursuing degree has exam in june and yet to complete projects.', 7, '0000-00-00 00:00:00', 1),
(8530, 8260, 8, 5, 0, 'was into cini field. runs grocery shop. will not suite for rm. expt 25-30k.', 7, '0000-00-00 00:00:00', 1),
(8531, 8262, 8, 2, 0, '5050 has 1yr exp in realestate with 18k, expt 20k. has to recheck', 7, '0000-00-00 00:00:00', 1),
(8532, 8263, 8, 4, 0, 'was working in cafs 2yrs and relived due to personal reasons. will suite for b2b. check with her sustainability once.', 7, '0000-00-00 00:00:00', 1),
(8533, 8264, 8, 4, 0, 'has 4yrs exp in sbi cards, okay with his comm, ctc 25k and expt 30k. no insurance knowledge. check with his skills once.', 7, '0000-00-00 00:00:00', 1),
(8534, 8264, 86, 4, 0, 'for next round', 8, '2022-03-26 04:11:11', 1),
(8535, 8254, 8, 5, 0, 'was working in ecg lab 6m, then 1yr in hdb collection, 15k th and expt 20k, not negotiable, avg communication and has 30 days notice. ', 7, '0000-00-00 00:00:00', 1),
(8536, 8221, 59, 5, 0, 'Dropeed.Received a call on Sunday(28-Mar) candidate informed that he is not going to join due to the location constraint and not much comfort with target based work', 59, '2022-03-28 10:14:03', 1),
(8537, 8228, 13, 7, 4, '10k salary kindly confirm Joining Date', 8, '2022-03-28 10:28:52', 1),
(8538, 8242, 13, 7, 4, 'ok 13k salary Good communication skills and 1.5yrs experience of tele sales kindly confirm joining date', 8, '2022-03-28 10:30:14', 1),
(8539, 8107, 59, 3, 0, 'Selected for Arumbakkam Elite Team in consultant Role', 59, '2022-03-28 10:34:34', 1),
(8540, 8263, 53, 1, 0, NULL, 8, '2022-03-28 10:35:21', 1),
(8541, 8264, 18, 7, 4, 'Selected for mani team. Ask him to Join on 18th April. Negotiate the salary. He is in notice period', 86, '2022-03-28 11:00:08', 1),
(8542, 8228, 8, 1, 0, NULL, 13, '2022-03-28 11:35:03', 1),
(8543, 8242, 8, 1, 0, NULL, 13, '2022-03-28 11:44:35', 1),
(8544, 8273, 74, 7, 0, 'she is already experienced two years in thanga maligai...as sales and cashier....salary 10k and completed mphil....willing to join immediately....father running a small hotel with monthly 10k income only....one sister doing CA in a trust basis.....having lapptop.....refernce by vengadesh......talk active and clear voice suite for telessales....expected 10 to `12 k kindly confirm once', 60, '0000-00-00 00:00:00', 1),
(8545, 8273, 59, 3, 0, 'Selected for Consultant role in Thanjavur location', 74, '2022-03-28 01:15:14', 1),
(8546, 8275, 8, 4, 0, 'has sales exp but not in insurance. ctc 17.5k and expt 23k. okay with his comm and convincing. has 2w and will arrange laptop.', 7, '0000-00-00 00:00:00', 1),
(8547, 8275, 31, 7, 4, 'candidate okay sent for next round', 8, '2022-03-28 06:45:30', 1),
(8548, 8281, 59, 5, 0, 'Bad Attitude, Focus only on the salary, Seems very Arrogant, will not sustain for a long in sales,No proper relieving from previous organizations. Not comfortable to come back after sales calls. Not Suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(8549, 8284, 8, 2, 0, 'has off roll exp in GI not int o sales. has 6m and 7m exp in life ins. into agency channel. will not suite for RM profile. bcoz he is not comfortable with cold calling and looking for same agency channel. expt 5l.', 7, '0000-00-00 00:00:00', 1),
(8550, 8284, 8, 2, 0, 'has off roll exp in GI not int o sales. has 6m and 7m exp in life ins. into agency channel. will not suite for RM profile. bcoz he is not comfortable with cold calling and looking for same agency channel. expt 5l.', 7, '0000-00-00 00:00:00', 1),
(8551, 8287, 8, 5, 0, 'will not suite for this process. poor comm. and no clarity in his speech. will not suite for calling and sales. not interested in current process. ctc 11.5k and expt 20k and he is requesting in interview to give him job. dont even knows basics in excel.', 7, '0000-00-00 00:00:00', 1),
(8552, 8288, 8, 5, 0, 'has 2yrs exp in data entry. 1+ yrs in sbi credit card back end. she was doing data entry there too with 13.5k. her company revised her salary as 16k. since she completed hdca course and 16k increment she is looking for better offer. expt min 20k take home. she in need of job but she dont have patience and understanding. i couldnt see adaptability. ', 7, '0000-00-00 00:00:00', 1),
(8553, 8289, 8, 5, 0, 'planning for higher study. will not suite for calling and long distance too. changalpattu', 7, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(8554, 8290, 8, 5, 0, 'will not suite for calling, 6m in harbor as acc with 18k. expt 15k th. no convincing.', 7, '0000-00-00 00:00:00', 1),
(8555, 8245, 13, 7, 4, '13k salary kindly confirm joining date', 8, '2022-03-29 05:05:21', 1),
(8556, 8232, 13, 7, 4, '10.5k salary kindly confirm joining date', 8, '2022-03-29 05:06:11', 1),
(8557, 8239, 8, 5, 0, 'no response', 8, '2022-03-29 05:19:17', 1),
(8558, 8194, 8, 5, 0, 'no response from her', 8, '2022-03-29 06:08:45', 1),
(8559, 8232, 59, 2, 0, 'Discussed and candidate confirmed for consultant role, joining date yet to confirm', 13, '2022-03-29 06:58:47', 1),
(8560, 8245, 59, 2, 0, 'Discussed and shared the salary breakup,candidate yet to give her confirmation', 13, '2022-03-29 07:00:29', 1),
(8561, 8299, 8, 4, 0, 'has 7m exp in matrimony with 10k. expt 12k and due to timing issues she relived. good in her scripts. check with her distance once again.', 7, '0000-00-00 00:00:00', 1),
(8562, 8298, 8, 5, 0, 'will not suite for our process, he runs a event mgnt and professional photographer he is. will not sustain more than 6m. expt 15k. ', 7, '0000-00-00 00:00:00', 1),
(8563, 8259, 8, 4, 0, 'for tech. fresher and he is okay with company norms.', 7, '0000-00-00 00:00:00', 1),
(8564, 8261, 8, 5, 0, 'he is not interested in li. for GI no expt exp. sal expt is high so will not suite for re', 7, '0000-00-00 00:00:00', 1),
(8565, 8247, 8, 5, 0, 'overall 3yrs exp 1yr in core php 2yrs in laravel, worked in 3 companies, ctc 3L and expt 5.5L, 60 days notice. check with sathish once', 7, '0000-00-00 00:00:00', 1),
(8566, 8302, 8, 5, 0, 'Pursuing his final year, yet to complete his projects and exams. expt 15k. okay with company norms. let him complete his exam.', 7, '0000-00-00 00:00:00', 1),
(8567, 8299, 53, 7, 0, 'Selected for elite team, pls cnfrm Salary and DOJ.', 8, '2022-03-30 06:20:24', 1),
(8568, 7994, 8, 5, 0, 'Fresher for us. Don’t have sales exp. has 1.5yr exp in qc and production. Due to work pressure he relieved he will not handle sales pressure. Not speaking up and no convincing. Expt 20k take home. Parents into agriculture.', 7, '0000-00-00 00:00:00', 1),
(8569, 8295, 8, 4, 0, 'hold for tech. has 1yr exp in php with 14k in mailaduthurai. will relocate to chennai expt 16-17k. ', 7, '0000-00-00 00:00:00', 1),
(8570, 8235, 8, 5, 0, 'fresher, after degree she got married and has 1m baby. will not sustain and asking for wfh.', 7, '0000-00-00 00:00:00', 1),
(8571, 8266, 8, 2, 0, 'fresher, if he is okay with 10k we can check next level', 7, '0000-00-00 00:00:00', 1),
(8572, 8295, 27, 1, 0, NULL, 8, '2022-03-31 10:33:50', 1),
(8573, 8262, 8, 5, 0, 'will not come chennai for next round.', 8, '2022-03-31 10:34:37', 1),
(8574, 8259, 27, 1, 0, NULL, 8, '2022-03-31 10:36:20', 1),
(8575, 8234, 8, 5, 0, 'couldnt do sys task', 8, '2022-03-31 10:37:07', 1),
(8576, 8250, 13, 7, 0, 'ok,11k salary but ipo notise period la work pannitu irukkan saturday mudiyuthu so Monday joining', 7, '0000-00-00 00:00:00', 1),
(8577, 8292, 8, 5, 0, 'will not suite for our process, no sustainability. was worked in home credit, vodafone, paytm, realestate and airtel and so on. expt 25k.', 7, '0000-00-00 00:00:00', 1),
(8578, 8285, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8579, 8278, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8580, 8276, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8581, 8269, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8582, 8268, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8583, 8265, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8584, 8301, 8, 5, 0, 'will not suite for calling, not speaking up, time being looking for job.', 7, '0000-00-00 00:00:00', 1),
(8585, 8303, 8, 5, 0, 'dosent know basics. told him to learn and come back.', 7, '0000-00-00 00:00:00', 1),
(8586, 8308, 8, 2, 0, 'has to check with banu ahs 1yr calling exp. high job need and ctc 14k and ecpt 15-16k. ', 7, '0000-00-00 00:00:00', 1),
(8587, 8309, 8, 5, 0, 'looking for tL, has only 6m exp in calling-new india. in 3m she got promoted as asst. tl with 17.5k. due to late logout she is looking for job change. will not sustain here and long distance too. expt 20k. she will think and get back to vishal.', 7, '0000-00-00 00:00:00', 1),
(8588, 8310, 8, 5, 0, 'will not suite for our process, has 4yr in hdfs and 2 yes in max, the reason for reliving is not acceptable and his performance was not convincing. has avg convincing skills. expt 6.8l', 7, '0000-00-00 00:00:00', 1),
(8589, 8311, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8590, 8312, 8, 1, 0, NULL, 7, '0000-00-00 00:00:00', 1),
(8591, 8313, 8, 4, 0, 'has 6m exp in sbi cards. good in her scripts and talkative. expt 12k take home. check with her distance once', 7, '0000-00-00 00:00:00', 1),
(8592, 8314, 8, 5, 0, 'was working in blue dart doing cut copy paste in sys and says system admin. 20 and got married. will not suite for calling and sales. language is not good. expt 22k', 7, '0000-00-00 00:00:00', 1),
(8593, 8316, 8, 2, 0, 'has to check with banu. age-40, has 4yrs exp in pl calling exp with 15k, expt the same. no husband and has 2 son.', 7, '0000-00-00 00:00:00', 1),
(8594, 8318, 8, 5, 0, 'will not sustain. past 2yrs as doing fashion design and doing it. expt 17-18k. avg convincing and sales skills.', 7, '0000-00-00 00:00:00', 1),
(8595, 8319, 8, 2, 0, 'has to check for renewal and whether coming without her friend for interview.was working in apollo clg as admin with 15k. expt the same.', 7, '0000-00-00 00:00:00', 1),
(8596, 8313, 53, 1, 0, NULL, 8, '2022-03-31 03:39:16', 1),
(8597, 8300, 8, 5, 0, 'no basics so told her to learn and come back', 7, '0000-00-00 00:00:00', 1),
(8598, 8275, 29, 1, 0, NULL, 31, '2022-03-31 08:15:39', 1),
(8599, 8228, 59, 3, 0, 'Selected for Erode - Consultant Role', 59, '2022-04-01 05:24:45', 1),
(8600, 8232, 59, 3, 0, 'Selected for Erode - Consultant Role', 59, '2022-04-01 05:25:31', 1),
(8601, 8242, 59, 3, 0, 'Selected for Erode - Consultant Role', 59, '2022-04-01 05:26:14', 1),
(8602, 8245, 59, 3, 0, 'Selected for Consultant Role - Erode', 59, '2022-04-01 05:26:45', 1),
(8603, 8299, 59, 3, 0, 'Selected for Arumbakkam location in consultant role', 53, '2022-04-04 12:45:51', 1),
(8604, 8346, 59, 5, 0, 'Frequent Job Changes,Lot of health issue and leave issues a lot with previous companies,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(8605, 8345, 59, 2, 0, 'Need to schedule for 2nd round RE profile', 60, '0000-00-00 00:00:00', 1),
(8606, 8342, 59, 2, 0, 'Fresher,No basic knowledge in telecalling,if she comes back lets try', 60, '0000-00-00 00:00:00', 1),
(8607, 8340, 59, 5, 0, 'Around 55kms from Erode,Married have Kid,Difficult in travel for a long will not sustain', 60, '0000-00-00 00:00:00', 1),
(8608, 8278, 59, 5, 0, 'Candidate much focus for non voice process, also he is dragging his joining', 24, '2022-04-04 08:11:35', 1),
(8609, 8347, 59, 5, 0, 'Distance around 48 kms, married have a kid, daily travel doubtful, need time to discuss with her husband,Also she may relocate to Chennai,Long Run with CAFS doubtful,Seems dilemma in Voice/Non voice process too,if she comes back arrange her for a F2F in Erode', 60, '0000-00-00 00:00:00', 1),
(8610, 8349, 83, 4, 0, ' Okay With The Profile, have previous exp in sales, salary exp is high, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(8611, 8350, 83, 5, 0, 'will not be suitable', 58, '0000-00-00 00:00:00', 1),
(8612, 8349, 53, 7, 0, 'Selected. Pls cnfrm Salary and DOJ', 83, '2022-04-05 01:31:12', 1),
(8613, 8352, 59, 5, 0, 'Much focusing on Accounts xxamp Non voice process only\n', 60, '0000-00-00 00:00:00', 1),
(8614, 8354, 59, 5, 0, 'no communication,career Gap,not much serious with the job,will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8615, 8327, 57, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8616, 8332, 19, 4, 4, 'Fit for Sales', 60, '0000-00-00 00:00:00', 1),
(8617, 8332, 88, 7, 0, 'ok for rE level', 19, '2022-04-06 10:12:13', 1),
(8618, 8332, 59, 3, 0, 'Selected for Kannan Team - PF/PT', 88, '2022-04-06 10:17:33', 1),
(8619, 8362, 59, 5, 0, 'No Communication ,will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8620, 8360, 59, 4, 0, '5050 Profile,fresher for Insurance Sales,have Career Gap kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8621, 8363, 59, 4, 0, 'Have Exp in Sales,but no sustainability in her previous Exp,kindly check and let me know you inputs', 60, '0000-00-00 00:00:00', 1),
(8622, 8349, 59, 3, 0, 'Selected for B2B - Staff role', 53, '2022-04-06 03:12:29', 1),
(8623, 8356, 13, 7, 0, 'Ok 10k Salary,Today Joining', 60, '0000-00-00 00:00:00', 1),
(8624, 8365, 13, 7, 0, 'Ok 10k Salary,Today Joining', 60, '0000-00-00 00:00:00', 1),
(8625, 8356, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-04-06 04:59:15', 1),
(8626, 8365, 59, 3, 0, 'Selected for Erode - Consultant Role\n', 13, '2022-04-06 04:59:41', 1),
(8627, 8360, 82, 1, 0, NULL, 59, '2022-04-06 06:30:43', 1),
(8628, 8363, 57, 4, 0, 'candidate is ok , kindly confirm the joining date ... ', 59, '2022-04-06 06:32:11', 1),
(8629, 8370, 59, 5, 0, 'Candidate communication is good. working in Amazon with 30 days notice. she is a fresher for recruitment. Her current salary is 3.25 lPA and her min expectation is 4.5 lpa being a fresher for recruitment. will focus much on the salary, sustainability doubts based on her expectations', 60, '0000-00-00 00:00:00', 1),
(8630, 8371, 59, 5, 0, 'Not open up, Prefer to go in non voice only, not comfort in Target/Pressure', 60, '0000-00-00 00:00:00', 1),
(8631, 8363, 88, 1, 0, NULL, 57, '2022-04-07 01:12:08', 1),
(8632, 8372, 59, 5, 0, 'Need to open a lot,Will not handle the pressure,much prefer for Non Voice only', 60, '0000-00-00 00:00:00', 1),
(8633, 8375, 59, 4, 0, '5050 Profile,have 5 months Exp in Telecalling,Sustainability Doubt,but can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8634, 8326, 53, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8635, 8376, 13, 7, 0, '10k salary today evening confirm the joining date', 60, '0000-00-00 00:00:00', 1),
(8636, 8375, 57, 1, 0, NULL, 59, '2022-04-07 05:25:26', 1),
(8637, 8377, 13, 5, 0, 'he is not suitable for tele sales', 60, '0000-00-00 00:00:00', 1),
(8638, 8351, 13, 5, 0, 'he is not suitable for pressure handling he is like non-voice process only', 60, '0000-00-00 00:00:00', 1),
(8639, 8376, 59, 5, 0, 'we shared the offer proposal,but He is going with another offer', 13, '2022-04-07 06:25:05', 1),
(8640, 8388, 59, 4, 0, 'Internal REference,Seems to be Nervous,handling pressur edoubts,give a try and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8641, 8387, 59, 4, 0, 'Have Exp in SalesCommunication ok,Can give a try for RM profile,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8642, 8384, 59, 5, 0, 'Need to open up a lot, will not handle the pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(8643, 8382, 59, 5, 0, 'Looking much for backend operations,Tried for our operation by giving him written task but not upto the mark as we expected.Will not sustain in Telecalling Sales', 60, '0000-00-00 00:00:00', 1),
(8644, 8266, 24, 4, 0, 'candidate selected for 12k', 8, '2022-04-08 01:41:46', 1),
(8645, 8266, 8, 4, 0, 'Kindly check and let me know your inputs', 8, '2022-04-08 01:41:46', 1),
(8646, 8390, 59, 4, 0, '5050 Profile,fresher for our profile,communication Slang need to see,can give a try,kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8647, 8391, 24, 4, 0, 'candidate okay for RE . expect salary 13k.. virual interview tomorrow morning for AM', 60, '0000-00-00 00:00:00', 1),
(8648, 8392, 59, 4, 0, 'Check for General Insurance Sir,have Exp in GI/Life', 60, '0000-00-00 00:00:00', 1),
(8649, 8394, 24, 4, 0, 'candidate selected for telecalling .. expt salary 10- 12k.. ', 60, '0000-00-00 00:00:00', 1),
(8650, 8394, 88, 8, 0, 'Have to validate again by suthagar', 24, '2022-04-08 03:43:33', 1),
(8651, 8391, 88, 8, 0, 'Have to validate again by Suthagar', 24, '2022-04-08 03:45:14', 1),
(8652, 8266, 88, 7, 0, 'ok for RE', 24, '2022-04-08 04:00:15', 1),
(8653, 8398, 80, 7, 4, 'Good person', 60, '0000-00-00 00:00:00', 1),
(8654, 8386, 59, 5, 0, 'communication ok,already holds offer near to her home,much focus towards the accounts profile,will not sustain and handle pressure doubtful - Not Suitable', 60, '0000-00-00 00:00:00', 1),
(8655, 8390, 19, 5, 0, 'Not Intrest', 59, '2022-04-08 05:41:43', 1),
(8656, 8388, 71, 5, 0, 'REJECTED ', 59, '2022-04-08 05:47:37', 1),
(8657, 8387, 31, 5, 3, 'Attitude issue. ', 59, '2022-04-08 05:49:12', 1),
(8658, 8397, 59, 5, 0, 'Looking for non voice process, will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8659, 8398, 18, 7, 4, 'Selected for Pandi Team. Once offer released He will Update paper from Reliance Life. Current CTC is 3.6 Can Negotite', 80, '2022-04-08 07:34:33', 1),
(8660, 8392, 18, 5, 0, 'Not fit for us', 59, '2022-04-08 07:35:51', 1),
(8661, 8339, 83, 4, 0, 'okay with the profile, salary exoectation is high, check with sustainability, kindly check xxamp update', 58, '0000-00-00 00:00:00', 1),
(8662, 8286, 83, 4, 0, 'okay with profile, check with sustainability, kindly update', 58, '0000-00-00 00:00:00', 1),
(8663, 8407, 83, 4, 0, 'okay with profile, check with sustainability xxamp kindly update', 58, '0000-00-00 00:00:00', 1),
(8664, 8339, 13, 7, 0, 'ok 11k salary,monday joining', 83, '2022-04-09 11:17:40', 1),
(8665, 8286, 34, 7, 0, '18th joining 12k take home spoken ', 83, '2022-04-09 11:18:55', 1),
(8666, 8407, 34, 7, 0, '18th joining spoken 12k take home', 83, '2022-04-09 11:20:00', 1),
(8667, 8398, 60, 1, 0, NULL, 18, '2022-04-09 11:35:13', 1),
(8668, 8286, 59, 3, 0, 'Selected for Guru Team in consultant role ,but candidate seems to be doubtful,if joins let see', 34, '2022-04-09 11:44:47', 1),
(8669, 8407, 59, 5, 0, 'Dropped - Candidate is not interested to join, plan to go with the same business,also not comfortable with the Take home 12K\n', 34, '2022-04-09 11:46:16', 1),
(8670, 8406, 24, 4, 0, 'candidate selected exp salary net 14.5K', 60, '0000-00-00 00:00:00', 1),
(8671, 8406, 88, 7, 0, 'Ok for RE', 24, '2022-04-09 02:38:12', 1),
(8672, 8406, 59, 3, 0, 'Selected for Erode Suthagar Team with PF/ESI/PT', 88, '2022-04-09 04:00:21', 1),
(8673, 8266, 59, 3, 0, 'Selected for Suthagar Team Erode Location', 88, '2022-04-09 04:40:34', 1),
(8674, 8264, 60, 1, 0, NULL, 18, '2022-04-09 05:26:56', 1),
(8675, 8401, 59, 5, 0, 'Communication Average, not open for the Terms xxamp conditions,will not sustain for a long,no basic knowledge in the Position', 60, '0000-00-00 00:00:00', 1),
(8676, 8395, 59, 5, 0, 'Need to train alot in MIS,Location constraint,long run doubtful in our company', 60, '0000-00-00 00:00:00', 1),
(8677, 8389, 59, 5, 0, 'No Communication just a manageble, not much strong in the areas of Excel,Will not handle our pressure,will not sustain in our roless\n', 60, '0000-00-00 00:00:00', 1),
(8678, 8408, 59, 4, 0, 'Fresher for Telecaller,can give a try,5050 profile kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8679, 8403, 24, 5, 0, 'Sustainabilty doubt so rejected.. existing company working 3 mnth and 6mnth only ', 60, '0000-00-00 00:00:00', 1),
(8680, 8404, 24, 5, 0, 'sustainability doubt so rejected.. ', 60, '0000-00-00 00:00:00', 1),
(8681, 8413, 59, 5, 0, 'Communication is Good, Fresher for HR Recruitment, need time to give her confirmation,Sustainability doubts,5050 if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(8682, 8410, 59, 5, 0, 'Too long Distance,recently married,have exp in sales telecaller,but a career gap she has.will not sustain for a long,much she looks for work from home \n', 60, '0000-00-00 00:00:00', 1),
(8683, 8418, 59, 5, 0, 'need to open a lot, Seems not to be much interested towards the career.Not suitable', 60, '0000-00-00 00:00:00', 1),
(8684, 8415, 59, 4, 0, '5050 profile, having only inbound call \nExp, for our profile, can give a try ,but sustainability doubts,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8685, 8415, 19, 5, 0, 'Not Intrest', 59, '2022-04-11 04:44:08', 1),
(8686, 8409, 59, 4, 0, 'Need to open a lot,5050 profile kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8687, 8408, 89, 1, 0, NULL, 59, '2022-04-11 04:52:34', 1),
(8688, 8409, 89, 1, 0, NULL, 59, '2022-04-11 04:53:17', 1),
(8689, 8417, 59, 5, 0, 'not open up,not suitable', 60, '0000-00-00 00:00:00', 1),
(8690, 8432, 7, 1, 0, NULL, 90, '0000-00-00 00:00:00', 1),
(8691, 8424, 59, 2, 0, 'Average Communication, have exp in MIS activities, Married and have 3 months kid, Salary Exp is 20K with 5 yrs Exp,Sustainability Doubts,Lets hold her profile.Need some time to confirm her for the position', 60, '0000-00-00 00:00:00', 1),
(8692, 8428, 59, 5, 0, 'Camdidate need to open up a lot and not interested towards the telecaller,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(8693, 8429, 59, 4, 0, 'Fresher,not a graduate,19 yrs old family need is there,no parents,Can give a try for Elite Will come for Interview tomorrow, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8694, 8436, 59, 4, 0, 'Need to open a lot,not much aggressive,5050 profile,do check and let me know ', 60, '0000-00-00 00:00:00', 1),
(8695, 8437, 59, 5, 0, 'have basic knowledge in recruitment, have internship Exp but the communication is not upto the mark as we expected.', 60, '0000-00-00 00:00:00', 1),
(8696, 8438, 59, 4, 0, 'only 6 months Exp,no relevant Exp Long Career Gap,Age around 35yrs,5050 profile,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8697, 8434, 59, 5, 0, 'too lon distance up and down 50 kms,and not much comfortable with the timings,no much knowledge in the excel, Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(8698, 8440, 13, 7, 0, 'ok ,10k salary tmrw joining', 60, '0000-00-00 00:00:00', 1),
(8699, 8380, 13, 7, 0, 'ok 10k salary tmrw joining', 60, '0000-00-00 00:00:00', 1),
(8700, 8405, 13, 7, 0, 'ok 10k salary tmrw joining', 60, '0000-00-00 00:00:00', 1),
(8701, 8439, 13, 7, 0, 'average than but job need athikama irukku so Training la chance kuduthu pakkalam (Salary 10k tmrw joining)', 60, '0000-00-00 00:00:00', 1),
(8702, 8440, 59, 2, 0, 'Candidate Can Join Only After Completing Their College Studies', 13, '2022-04-12 03:29:57', 1),
(8703, 8441, 13, 5, 0, 'not fit for telesales', 60, '0000-00-00 00:00:00', 1),
(8704, 8439, 59, 2, 0, 'Candidate can join only after completing their College Studies', 13, '2022-04-12 03:32:40', 1),
(8705, 8405, 59, 3, 0, 'Selected for Erode Location in Consultant 5%\n', 13, '2022-04-12 03:34:41', 1),
(8706, 8380, 59, 3, 0, 'Selected for Erode Consultant Role - 5% TDS', 13, '2022-04-12 03:35:31', 1),
(8707, 8438, 11, 4, 0, 'selected for e sales', 59, '2022-04-12 04:08:57', 1),
(8708, 8429, 14, 1, 0, NULL, 59, '2022-04-12 04:10:33', 1),
(8709, 8427, 59, 5, 0, 'Communication is Good,have basic knowledge in Recruitment,Have around 1 yr exp including the internship exp too and her current CTC is 20K and her expectation is more, She needs to travel from tambaram', 60, '0000-00-00 00:00:00', 1),
(8710, 8430, 59, 2, 0, 'RNR', 60, '0000-00-00 00:00:00', 1),
(8711, 8443, 31, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8712, 8436, 57, 1, 0, NULL, 59, '2022-04-12 07:43:01', 1),
(8713, 8430, 59, 2, 0, 'Have Exp in Recruitment(Much into Sourcing only)1.8 yrs 2 companies and her current CTC is 3LPA,Looking for Min 4 LPA.Interested for HR Executive Roles(Not Focusing only into Recruitment).Lets Hold a try later', 59, '2022-04-12 07:44:45', 1),
(8714, 8447, 59, 5, 0, 'No Graduation,poor communication,will not handle the sales pressure,not suitable', 60, '0000-00-00 00:00:00', 1),
(8715, 8444, 59, 2, 0, 'Candidate need to come back with her confirmation, if she comes back let us decide', 60, '0000-00-00 00:00:00', 1),
(8716, 8453, 24, 5, 0, 'he want and suitable for part time job only.. because he is working agency in bajaj loan. and shawarma shop. so not suitable for our profile', 60, '0000-00-00 00:00:00', 1),
(8717, 8456, 24, 4, 0, 'marriage women.. but not sure to do this job .. kindly cross check', 60, '0000-00-00 00:00:00', 1),
(8718, 8455, 24, 5, 0, 'not fit our profile..', 60, '0000-00-00 00:00:00', 1),
(8719, 8452, 59, 5, 0, 'not suitable have exp in non voice process,no convincing skills,nont comfortable for Arumbakkam location,will not sustain for a long in our roles', 60, '0000-00-00 00:00:00', 1),
(8720, 8442, 59, 5, 0, 'No communication, not much strong in Excel, Focusing only on the salary, last company only 6 months and looking for salary growth, Will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(8721, 8457, 59, 2, 0, 'Communication is Good, Fresher for Recruitment, have 3 months Internship exp in SAP profiles only. Looking much for IT Recruitment positions only, not sure to handle the other domains. Salary Exp in very high min 15K being a fresher. Sustainability doubts a lot, Let us hold and decide later.', 60, '0000-00-00 00:00:00', 1),
(8722, 8416, 59, 2, 0, 'Will come for a direct F2F interview', 60, '0000-00-00 00:00:00', 1),
(8723, 8448, 13, 7, 0, 'ok good candidate salary 11k sollirukken but candidate location madurai so location shift pannanum so expected salary high maximum 12 to 13k pesi pakkalam', 60, '0000-00-00 00:00:00', 1),
(8724, 8449, 13, 7, 0, 'expected salary is high but he is not worth for high salary', 60, '0000-00-00 00:00:00', 1),
(8725, 8461, 13, 5, 0, 'she is not suitable for tele sales she is like only non-voice process', 60, '0000-00-00 00:00:00', 1),
(8726, 8448, 59, 5, 0, 'Dropped - High Salary Min 18K TH ,need to relocate from madurai,much prefer for Madurai only,will not join as he holds multiple offer and looking for additional offers', 13, '2022-04-15 12:14:42', 1),
(8727, 8449, 59, 5, 0, '2nd Interview Reject by Muthu-by mistake he mentioned as selected', 13, '2022-04-15 12:18:03', 1),
(8728, 8462, 59, 4, 0, 'Fresher for this profile,can give a try kindly check for RE', 60, '0000-00-00 00:00:00', 1),
(8729, 8462, 57, 5, 0, 'shortlist not joining\n', 59, '2022-04-15 03:49:36', 1),
(8730, 8458, 59, 5, 0, 'Fresher for Recruitment, Looking for WFH only also she is pregnant now, will not sustain for a long ,not suitable', 60, '0000-00-00 00:00:00', 1),
(8731, 8466, 24, 5, 0, 'no degree and no interview basic skills.. ', 60, '0000-00-00 00:00:00', 1),
(8732, 8464, 74, 7, 0, 'candidate is good and suite for the team voice clarity and flow is good came from poor family background and need for job is must ...10 to 12 expectd salary father farmer intrested in IT but not suite for work apart from thanjavur so no sustainability issues kindly check once.....have laptop and bike immediate joining', 60, '0000-00-00 00:00:00', 1),
(8733, 8473, 59, 3, 0, 'Selected for B2B in Staff Role - Patroniss Employee', 60, '0000-00-00 00:00:00', 1),
(8734, 8475, 13, 7, 0, 'ok,10.5k salary,tmrw joining', 60, '0000-00-00 00:00:00', 1),
(8735, 8474, 59, 5, 0, 'Not open up ,will not sustain in our sales', 60, '0000-00-00 00:00:00', 1),
(8736, 8465, 59, 5, 0, 'Not interested in Insurance Sales', 60, '0000-00-00 00:00:00', 1),
(8737, 8473, 53, 7, 0, 'selected for b2b, pls cnfrm the salary and DOJ.', 59, '2022-04-18 12:48:38', 1),
(8738, 8475, 59, 3, 0, 'Selected for Tanjore Lcoation in consultant Role', 13, '2022-04-18 01:08:01', 1),
(8739, 8464, 59, 2, 0, 'RNR', 74, '2022-04-18 01:18:37', 1),
(8740, 8473, 59, 3, 0, 'Selected for B2B in Staff Role - Patroniss Employee', 53, '2022-04-18 05:19:05', 1),
(8741, 8487, 34, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8742, 8486, 24, 5, 0, 'she is 50 50 only.. she is discuss with family and informed so we will rejected', 60, '0000-00-00 00:00:00', 1),
(8743, 8490, 24, 2, 0, 'confirm with 2nd round', 60, '0000-00-00 00:00:00', 1),
(8744, 8492, 24, 4, 0, 'Selected expc salary 15k to 16k', 60, '0000-00-00 00:00:00', 1),
(8745, 8491, 89, 7, 0, 'Shortlisted', 60, '0000-00-00 00:00:00', 1),
(8746, 8494, 59, 4, 0, 'Internal Team(Esales Kanmani Reference),Suitability for ESales doubt,check for B2B and let me know', 60, '0000-00-00 00:00:00', 1),
(8747, 8493, 59, 4, 0, 'Fresher and have internship Exp, can be trained, only location distance need to be considered, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8748, 8497, 59, 4, 0, 'Good in communication,have 6 months Exp in Recruitment,travelling from so long,kinldy check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8749, 8495, 59, 5, 0, 'Much prefer for non voice,also no basic ideas using Excel,Will not sustain and handle our work pressure', 60, '0000-00-00 00:00:00', 1),
(8750, 8499, 59, 5, 0, 'Fresher,he is focus only for IT positions particularly python and just for time being 6 months he will be in telecalling also need to open a lot,not suitable.In python not that much strong', 60, '0000-00-00 00:00:00', 1),
(8751, 8498, 24, 4, 0, 'selected..', 60, '0000-00-00 00:00:00', 1),
(8752, 8469, 59, 2, 0, 'Sounds Good Looking for Opportunites in Chennai,Salary Exp is Hgh,we suggested the max what we can offer,she needs time to give her confirmation', 60, '0000-00-00 00:00:00', 1),
(8753, 8492, 88, 7, 0, 'selected for RE', 24, '2022-04-20 07:09:21', 1),
(8754, 8498, 88, 1, 0, NULL, 24, '2022-04-20 07:09:40', 1),
(8755, 8456, 88, 1, 0, NULL, 24, '2022-04-20 07:12:57', 1),
(8756, 8493, 53, 1, 0, NULL, 59, '2022-04-20 07:14:22', 1),
(8757, 8494, 53, 1, 0, NULL, 59, '2022-04-20 07:18:21', 1),
(8758, 8497, 53, 1, 0, NULL, 59, '2022-04-20 07:22:54', 1),
(8759, 8483, 24, 5, 0, 'He is not fit for our profile.. not fit in sales', 60, '0000-00-00 00:00:00', 1),
(8760, 8501, 24, 5, 0, 'He is not fit for sales .. he is interested in data entry job only', 60, '0000-00-00 00:00:00', 1),
(8761, 8490, 24, 5, 0, 'She is not interested in sales ', 24, '2022-04-21 01:36:11', 1),
(8762, 8505, 59, 2, 0, 'communication ok,have exp in recruitment,can be trained,only thing is location she is from chengalpet,2nd Round interviewed by gokul and the profile is on hold', 60, '0000-00-00 00:00:00', 1),
(8763, 8484, 13, 5, 0, 'she is not suitable for telesales', 60, '0000-00-00 00:00:00', 1),
(8764, 8491, 88, 7, 0, 'Selected for RE', 89, '2022-04-21 05:23:17', 1),
(8765, 8492, 59, 3, 0, 'Selected for Suthagar Erode Team in consultant role', 88, '2022-04-21 05:45:49', 1),
(8766, 8491, 59, 5, 0, 'Dropped ,candidate is not interested in the position, messaged us stating not interested,Not responding the calls', 88, '2022-04-21 05:51:11', 1),
(8767, 8231, 13, 5, 0, 'he is not active person so not suitable for tele sales', 60, '0000-00-00 00:00:00', 1),
(8768, 8503, 24, 5, 0, 'rejected', 60, '0000-00-00 00:00:00', 1),
(8769, 8513, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8770, 8516, 74, 7, 0, 'She is fit for team voice also good fit for telesales.....6 months experience in tele calling.....but got married in 10 months so need to cross check once have laptop immediate joining...highly job need....kindly check once and cross check sustainability', 60, '0000-00-00 00:00:00', 1),
(8771, 8504, 59, 5, 0, 'NOt suitable,will not sustain in our pressure', 60, '0000-00-00 00:00:00', 1),
(8772, 8507, 13, 7, 0, 'ok,11k salary Monday joining', 60, '0000-00-00 00:00:00', 1),
(8773, 8311, 18, 7, 4, 'Selceted for Santosh Team. Ready to Join on 9th Asking 25K package but can negotiate and give a target for May June July xxamp August and take him in. Good Canditate. Candidate Referred by Vijayaraghavan.', 71, '2022-04-22 02:35:50', 1),
(8774, 8507, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-04-22 02:37:41', 1),
(8775, 8515, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8776, 8516, 59, 5, 0, 'Dropped Candidate didnt come back with her Confirmation and not responding to the calls\n', 74, '2022-04-22 05:02:29', 1),
(8777, 8522, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8778, 8444, 59, 5, 0, 'Candidate is not suitable for our roles,will not handle our pressure\n', 59, '2022-04-23 10:50:48', 1),
(8779, 8430, 59, 5, 0, 'Very high CTC exp,Will not sustain in our roles,not suitable', 59, '2022-04-23 10:51:33', 1),
(8780, 8424, 59, 5, 0, 'Communication need to focus ,handling pressure in MIS doubtful,will not sustain,not suitable', 59, '2022-04-23 10:52:51', 1),
(8781, 8464, 59, 5, 0, 'Dropped as the candidate is not interested to take forward this position', 59, '2022-04-23 11:01:57', 1),
(8782, 8509, 59, 2, 0, 'Have few months Exp in Recruitment,career gap is there,Long run doubt with this profile,can hold this profile and let us try later', 60, '0000-00-00 00:00:00', 1),
(8783, 8525, 59, 5, 0, 'Looking opportunities in Remote, not comfortable with the timings', 60, '0000-00-00 00:00:00', 1),
(8784, 8518, 59, 2, 0, 'Selected for HR recruiter,Discussed the salary,candidate yet to give her confirmation on the joining date, once confirmed will proceed further', 60, '0000-00-00 00:00:00', 1),
(8785, 8523, 14, 7, 0, 'Salary 11k. need to confirm joining date', 60, '0000-00-00 00:00:00', 1),
(8786, 8523, 59, 3, 0, 'Selected for Elite Arumbakkam,After 3 months will promote him as a RE Arumbakam along with the salary revision based on the performance\n', 14, '2022-04-23 02:50:50', 1),
(8787, 8519, 59, 4, 0, 'Communication ok have Exp in telecalling Bajaj Finance, can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8788, 8530, 59, 5, 0, 'No Communication,not able to understand,Sustainability Doubt,not suitable', 60, '0000-00-00 00:00:00', 1),
(8789, 8526, 59, 5, 0, 'No Communication,not open up,will not handle the pressure,not suitable', 60, '0000-00-00 00:00:00', 1),
(8790, 8534, 24, 5, 0, 'he is not suitable for our profile.. because Convincing skill 0 ', 60, '0000-00-00 00:00:00', 1),
(8791, 8535, 24, 5, 0, 'rejected', 60, '0000-00-00 00:00:00', 1),
(8792, 8537, 59, 3, 0, 'Selected for Banu Team in Staff Role, PF/ESI/PT ', 60, '0000-00-00 00:00:00', 1),
(8793, 8537, 53, 7, 0, 'selected for b2B. Pls cnfrm the salary and doj. she s looking for immediate joining ', 59, '2022-04-25 02:33:20', 1),
(8794, 8537, 59, 3, 0, 'Selected for Banu Team in Staff Role, PF/ESI/PT ', 53, '2022-04-25 02:44:04', 1),
(8795, 8541, 59, 4, 0, '5050 Profile,Fresher for Sales,Sustainability Doubts,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8796, 8502, 59, 5, 0, 'Communication No,Have 7 months but no basic knowledge in the recruitment,Not suitable for our postiion,will not sustain', 60, '0000-00-00 00:00:00', 1),
(8797, 8519, 53, 1, 0, NULL, 59, '2022-04-25 04:43:12', 1),
(8798, 8539, 59, 3, 0, 'Selected for Santhosh Team - PF/PT deductions', 60, '0000-00-00 00:00:00', 1),
(8799, 8539, 71, 4, 0, 'Select to next round ', 59, '2022-04-25 08:08:13', 1),
(8800, 8541, 57, 5, 0, 'Shortlist but not joinined', 59, '2022-04-25 08:11:30', 1),
(8801, 8539, 18, 7, 4, 'Selecetd For Santosh Team. Negotiate The Salary And Take', 71, '2022-04-26 10:46:31', 1),
(8802, 8538, 59, 3, 0, 'selected for Arumbakkam in Consultant Role\n', 60, '0000-00-00 00:00:00', 1),
(8803, 8538, 53, 7, 0, 'Selected for Arumbakkam', 59, '2022-04-26 04:58:18', 1),
(8804, 8538, 59, 3, 0, 'selected for Arumbakkam in Consultant Role\n', 53, '2022-04-26 06:10:21', 1),
(8805, 8543, 59, 2, 0, 'Communication Average,Fresher for MIS and not much strong in Excel,not much suits for MIS and tried for Sales,need time to confirm his interest,if he comes back lets see\n', 60, '0000-00-00 00:00:00', 1),
(8806, 8545, 59, 2, 0, 'communication ok,no Tamil communication,handle recruitment for locations except hyderabad wil be difficult.Fresher for Recruitment,need some time to give her the feedback', 60, '0000-00-00 00:00:00', 1),
(8807, 8550, 59, 4, 0, 'Fresher,Seems to be slow,5050 Profile,kindly check for PHP/React', 60, '0000-00-00 00:00:00', 1),
(8808, 8549, 59, 5, 0, 'fresher for React,Not comfort with SA,High salary Expectation,sustainability dooubts', 60, '0000-00-00 00:00:00', 1),
(8809, 8548, 59, 5, 0, 'Fresher,not comfortable to relocate,Not much strong in React,Not comfortable with SA too', 60, '0000-00-00 00:00:00', 1),
(8810, 8550, 27, 1, 0, NULL, 59, '2022-04-26 06:31:49', 1),
(8811, 8529, 59, 5, 0, 'Communication Average,Will not handle the pressure,not suitable for our Roles,understanding capacity is poor,will not sustain', 60, '0000-00-00 00:00:00', 1),
(8812, 8555, 30, 7, 0, 'Selected Can give upto 17.5K TH', 60, '0000-00-00 00:00:00', 1),
(8813, 8311, 59, 3, 0, 'Selected for Santhosh Team with PF/PT ,will give a target for 4-5 months based on that revision will be provided on achieving', 18, '2022-04-27 12:20:49', 1),
(8814, 8564, 59, 5, 0, 'No sustainability in his profile,have exp in agency handling only,not suitable for GI profile,Will not sustain', 60, '0000-00-00 00:00:00', 1),
(8815, 8558, 59, 5, 0, 'Fresher, Communication Average, month back married and right now in Avadi and ready to relocate but her husband is working in Srioerumbuthur,much comfort to work in nonvoice only as she hold a few months exp in non voice,In our Position,will not sustain and handle the pressure', 60, '0000-00-00 00:00:00', 1),
(8816, 8570, 59, 2, 0, 'Communication Average,have exp for a year but need to check clearly,not much exposure to the recruitment,Long Run doubts need to analyse later let us hold and decide later', 60, '0000-00-00 00:00:00', 1),
(8817, 8569, 59, 5, 0, 'No Communication Prefer To Speak In Tamil Only, 6 Months Exp In Recruitment But Not A Profiled Resume,Will Not Sustain In Our Positions', 60, '0000-00-00 00:00:00', 1),
(8818, 8304, 24, 5, 0, 'CANDIDATE EXPECT HIGH SALARY FRESHERS.. ', 60, '0000-00-00 00:00:00', 1),
(8819, 8563, 24, 5, 0, 'sALES NOT INTERESTED', 60, '0000-00-00 00:00:00', 1),
(8820, 8568, 24, 5, 0, 'CANDIDATE TIMING WAS NOT SUITABLE.. SHES EXPCT LOGUT TIME 6PM. SO REJECTED', 60, '0000-00-00 00:00:00', 1),
(8821, 8571, 24, 5, 0, 'NO SKILLS.. SO REJECTED', 60, '0000-00-00 00:00:00', 1),
(8822, 8565, 24, 5, 0, 'she is not intersted in sales', 60, '0000-00-00 00:00:00', 1),
(8823, 8536, 24, 4, 0, 'CANDIDATE OKAY,, CHECK SUSTAINABILITY.. AND EXPECT PREVIOUSE SALARY', 60, '0000-00-00 00:00:00', 1),
(8824, 8555, 59, 3, 0, 'Selected for PF/PT - Bangalore Location\n', 30, '2022-04-27 05:04:17', 1),
(8825, 8536, 88, 7, 0, 'Selected for RE role', 24, '2022-04-27 05:14:57', 1),
(8826, 8560, 59, 5, 0, 'No communication prefer to speak in tamil only, 6 months Exp in Recruitment but not a profiled resume,will not sustain in our positions', 60, '0000-00-00 00:00:00', 1),
(8827, 8556, 74, 7, 0, 'she is ok with the team suits for telecalling ......she is married and have baby also now in thanjavur planned to settle in thanjavur ............husband worked in chennai weekend only came for to thanjavur....she is with his parents and brothers.....so convenient to work with our team without any permission have no laptop.....have experience in accenture....salary 10 to 12 k expected', 60, '0000-00-00 00:00:00', 1),
(8828, 8556, 59, 2, 0, 'Need time to confirm with her husband\n', 74, '2022-04-27 05:59:24', 1),
(8829, 8588, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(8830, 8587, 59, 3, 0, 'Selected for Syed Team in consultant role', 60, '0000-00-00 00:00:00', 1),
(8831, 8574, 59, 2, 0, 'Communication is Good, have basic exp in HR, but not in Recruitment, Her current Pay is very high also her expectation is also high, No exp in Sourcing Screening, need to train a lot, We have suggested our best pay, she requested time to give her confirmation', 60, '0000-00-00 00:00:00', 1),
(8832, 8586, 59, 5, 0, 'Communication Ok, Have Exp In Collection But Not In Telecaller Sales, Age Around 31 Yrs And Not Suitable For Our Sales RM, He Has 6 Yrs Exp In Core Field, Attitude Issue, Not Suitable For Us', 60, '0000-00-00 00:00:00', 1),
(8833, 8576, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8834, 8583, 59, 5, 0, 'frequent Job Changes,will not sustain for a long in Telecaller,also sounds low for for this profile,need to open a lot', 60, '0000-00-00 00:00:00', 1),
(8835, 5974, 86, 4, 0, 'Selected for Next Round', 59, '2022-04-28 04:36:37', 1),
(8836, 5974, 18, 7, 0, 'Can give 2.4 CTC. Ready to join on 9th Selected for Mani Team', 86, '2022-04-28 04:43:48', 1),
(8837, 8576, 57, 4, 0, 'candidate is ok , negotiate the salary and confirm the joining', 59, '2022-04-28 04:55:15', 1),
(8838, 8588, 60, 1, 0, NULL, 56, '2022-04-28 06:12:06', 1),
(8839, 8587, 57, 4, 0, '1yr experience for sbi life insurance, candidate is ok , kindly confirm the joining date', 59, '2022-04-28 06:56:03', 1),
(8840, 8567, 59, 5, 0, 'Dropped.She got aoother offer\n', 60, '0000-00-00 00:00:00', 1),
(8841, 8593, 59, 5, 0, 'No clarity in his previous exp,not ready to telecalling and the field sales, Looking for Non voice, but will not sustain in our backend process', 60, '0000-00-00 00:00:00', 1),
(8842, 8594, 59, 4, 0, 'No relevant Exp ,5 yrs in Backend only,Have a career gap,salary exp is high around 23K,5050 profile,do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8843, 1733, 59, 5, 0, 'Communication ok, Too long Distance she is from urapakkam around 56 KMS up and down, she left the previous exp due to the long distance(Teynampet),will not sustain for a long,have a plan to go with PHD in abroad', 60, '0000-00-00 00:00:00', 1),
(8844, 8584, 59, 5, 0, 'have exp in voice process,but as a male candidate we prefer to for field,but he is not ready to go as he is having a plate in the side and comfort to travel,Treid of operations but he is not suitable as there is no communication,no basic ideas using excel', 60, '0000-00-00 00:00:00', 1),
(8845, 8594, 34, 1, 0, NULL, 59, '2022-04-29 01:38:17', 1),
(8846, 8576, 88, 7, 0, 'selected for RE role', 57, '2022-04-29 03:11:59', 1),
(8847, 8587, 88, 7, 0, 'Selected for RE role', 57, '2022-04-29 03:13:14', 1),
(8848, 8599, 59, 4, 0, '5050Profile,Communication sounds Bold ,can be trained,fresher and sustainability doubts,kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8849, 8599, 11, 1, 0, NULL, 59, '2022-04-29 04:29:17', 1),
(8850, 8576, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 88, '2022-04-29 04:40:09', 1),
(8851, 8587, 59, 3, 0, 'Selected for Syed Team in consultant role', 88, '2022-04-29 04:40:42', 1),
(8852, 8536, 59, 3, 0, 'Selectd for Suthagar Team - Consultant 16K TH\n', 88, '2022-04-29 04:41:06', 1),
(8853, 8477, 59, 2, 0, 'Tried couple of times,RNR', 60, '0000-00-00 00:00:00', 1),
(8854, 8616, 13, 7, 0, 'ok 10k salary Today joined kaviya reference', 60, '0000-00-00 00:00:00', 1),
(8855, 7708, 74, 7, 0, 'she is 2 years experienced in exceloron technologies and speaked well good comunication skills ...suite for our team married and settled with his parents home near to office and husband have one child live in a rental house have laptop and bike joning on wednesday...salary 11 to 12k expected kindly confirm once', 60, '0000-00-00 00:00:00', 1),
(8856, 8617, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(8857, 7708, 59, 3, 0, 'Selected for Thanjavur Location - Elite - Consultant', 74, '2022-05-02 03:12:56', 1),
(8858, 8615, 59, 5, 0, 'Selected and we offered,but candidate dropped as he is not comfortable in Package', 60, '0000-00-00 00:00:00', 1),
(8859, 8603, 59, 5, 0, 'Communication ok,having multiple offers and focus much on CMMI level companies only, not comfort with the salary,Holding offes and lookin for additionalxquot\n', 60, '0000-00-00 00:00:00', 1),
(8860, 8616, 59, 3, 0, 'Consultant Role - Erode - Muthu Elite Team', 13, '2022-05-02 04:30:04', 1),
(8861, 8602, 59, 5, 0, 'Communication ok, no basic knowledge in the recruitment, Fresher for the recruitment profile, salary exp in min 14-15K being a fresher,long run as recruiter doubts', 60, '0000-00-00 00:00:00', 1),
(8862, 8626, 59, 4, 0, 'Communication Average,No Relevant sales Exp.no sustainability too,Internal Reference,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8863, 8619, 59, 5, 0, 'Fresher for Recruitment,No basic knowledge in Protal,have a career gap,Sustainability doubts,We tried checking for Back End,but the candidate left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(8864, 8622, 59, 5, 0, 'No Communication and looking for non voice only', 60, '0000-00-00 00:00:00', 1),
(8865, 8624, 59, 5, 0, 'much prefer to work in non voice will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(8866, 8632, 74, 7, 0, 'she is speaked well and ok with the team,,,,completed bE......but she is married and have one child ............now stay with parents and husband so kindly check with the puncuality......have no laptop salary 10k........kindly confirm for the laptop', 60, '0000-00-00 00:00:00', 1),
(8867, 8631, 74, 7, 0, 'she is speaked well and better for the team completed bcom and mcom ready to join immediately have laptop ..........................................marraige arrnged after one year so need to work now so kindly cross check about sustainability...', 60, '0000-00-00 00:00:00', 1),
(8868, 8629, 24, 4, 0, 'Candidate okay, expect 12k salary', 60, '0000-00-00 00:00:00', 1),
(8869, 8626, 89, 1, 0, NULL, 59, '2022-05-03 01:30:44', 1),
(8870, 8637, 59, 5, 0, '1,8 yrs 3 companies recently 2 months back joined a company and looking for a change only for the salary part,no communication,will not sustain in our roles,not comfortable intaking many calls', 60, '0000-00-00 00:00:00', 1),
(8871, 8635, 59, 5, 0, 'He is looking for opportunities in Logistics,long back he attended interview for RE sales and now he appeared for Recruitment.Career Gap and continuously looking for opportunities in Logistics,Will not sustain and not suitable for REcruitment,also his communication is poor', 60, '0000-00-00 00:00:00', 1),
(8872, 8630, 59, 5, 0, 'Communication ok,have 8 months Exp in recruitment,salary exp is high and his official notice is 30 days and it cant be negotiable.But sustainability doubts,discussed with Gokul too and he is not interested in this profile too', 60, '0000-00-00 00:00:00', 1),
(8873, 8632, 59, 3, 0, 'Selected for Thanjavur - Elite - Consultant Role', 74, '2022-05-03 03:56:21', 1),
(8874, 8631, 59, 3, 0, 'Selected for Thanjavur - Erode - Consultant', 74, '2022-05-03 03:58:33', 1),
(8875, 8633, 24, 5, 0, 'He is not fit for sales', 60, '0000-00-00 00:00:00', 1),
(8876, 8612, 59, 5, 0, 'Not suits for our roles\n', 60, '0000-00-00 00:00:00', 1),
(8877, 8636, 24, 5, 0, 'Not fit for telecalling', 60, '0000-00-00 00:00:00', 1),
(8878, 8629, 88, 7, 0, 'joining date 06-Mayxquot22', 24, '2022-05-04 07:38:29', 1),
(8879, 8647, 74, 7, 0, 'she had 3 years above experience in sales field.....sri ram finance 1 year working with 8 k salary....due to mother health issue she releived and 1 year ecperience in small finance with 12.5k salary due to covid releived and last hdfc franchise life 1 year with 12.5 k salary and no files moved so she releived now expected 13 to 14k salary...have laptop and travel 1 hour and ready to join immediately,,', 60, '0000-00-00 00:00:00', 1),
(8880, 8648, 74, 7, 0, 'She Is Experienced Around 3 Years In A Sales Field And Worked In A Loan Bhazaar With 12k Salary And Moved To Hdfc Franchise Life With Payout Basis....Earned 13 To 14 K Above....Now Files Did Not Move So Moved On Fit To Team Have Laptop And Ready To Jon Immediately Father Passed Away...And Looking For A Alliance So Cross Check Once', 60, '0000-00-00 00:00:00', 1),
(8881, 8642, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(8882, 8647, 59, 3, 0, 'Selected for Elite - Thanjavur - Consultant', 74, '2022-05-04 12:36:15', 1),
(8883, 8650, 24, 4, 0, 'cANDIDATE OKAY BUT EXPECT SALARY HIGH.. KINDLY CHECK SIR 18K TO 20K', 60, '0000-00-00 00:00:00', 1),
(8884, 8648, 59, 3, 0, 'Selected for Thanjavur location- Consultant', 74, '2022-05-04 02:58:29', 1),
(8885, 8539, 60, 1, 0, NULL, 18, '2022-05-04 03:04:22', 1),
(8886, 8650, 88, 7, 0, 'Joining date 09th Mayxquot22', 24, '2022-05-04 03:04:37', 1),
(8887, 5974, 60, 1, 0, NULL, 18, '2022-05-04 03:05:07', 1),
(8888, 8629, 59, 3, 0, 'Selected for Suthagar Team - Consultant Role', 88, '2022-05-04 03:24:40', 1),
(8889, 8650, 59, 3, 0, 'Selected for Erode - PT only - Prop Company', 88, '2022-05-04 03:25:21', 1),
(8890, 8654, 13, 7, 0, 'ok,13k Salary ,joining date May 10th', 60, '0000-00-00 00:00:00', 1),
(8891, 8653, 74, 7, 0, 'she is ok with the team good voice skill and bold speech.....refered by vinitha......study for banking exam only for past 4 years and ambition tooo but time takes too long so need a job now expected salary 10 to 12k..........have laptop but not suite to take to office........father and mother doing cattering business and brother working in wipro............and ready to join immeditaely............kindly cross check once and confirm ', 60, '0000-00-00 00:00:00', 1),
(8892, 8655, 59, 4, 0, '5050 profile,fresher,not sustained in the previous company more than 20 days,Sustainability doubts in our roles,kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(8893, 8649, 59, 3, 0, 'Staff Role - Kannan - Balaji Reference - DM RE', 60, '0000-00-00 00:00:00', 1),
(8894, 8638, 59, 5, 0, 'Fresher ,no basic skills ,have 1 yr exp in textiles sales,but not open up for our Roles,will not handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(8895, 8645, 59, 5, 0, 'Communication No,have exp but not in recruitment,just a coordination,Salary Exp is high comparing the exp,not suitable\n', 60, '0000-00-00 00:00:00', 1),
(8896, 8651, 59, 5, 0, 'Full testing profile,no basic skills of HTML CSS JS,Much focus in Testing profile,not comfort in TxxampC,Not suitable', 60, '0000-00-00 00:00:00', 1),
(8897, 8652, 59, 4, 0, 'have exp in PHP,Exp is almost ok but need to negotiate,can give a try ,check for PHP and let us know', 60, '0000-00-00 00:00:00', 1),
(8898, 8655, 53, 1, 0, NULL, 59, '2022-05-05 01:26:35', 1),
(8899, 8649, 88, 7, 0, 'Selected for RE', 59, '2022-05-05 01:31:24', 1),
(8900, 8652, 27, 1, 0, NULL, 59, '2022-05-05 01:33:26', 1),
(8901, 8653, 59, 3, 0, 'Selected for Elite - Thanjavur - Consultant', 74, '2022-05-05 02:20:31', 1),
(8902, 8654, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-05-05 05:15:29', 1),
(8903, 8660, 31, 4, 4, 'Candidate is okay need to conform the salary', 60, '0000-00-00 00:00:00', 1),
(8904, 8659, 59, 5, 0, 'Communication is Good,but seems much attentive seeker,will not run for a long in our positions,Pressure handling doubts ', 60, '0000-00-00 00:00:00', 1),
(8905, 8639, 59, 5, 0, 'No basic skills , yet to complete her graduation,will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(8906, 8641, 59, 5, 0, 'Communication is Good,fresher for Recruitment,Min exp is 20 and not ready to come down,Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(8907, 8673, 24, 5, 0, 'nO RELAVAND EXPERIENCE.. ALREADY HAVING 20K SALARY SO EXPECT SALARY WE NOT PROVIDE', 60, '0000-00-00 00:00:00', 1),
(8908, 8668, 59, 2, 0, 'Fresher For MIS,Can Give A Try, Gokul Interviewed,Yet To Complete Their Exams,If They Come Back Lets See', 60, '0000-00-00 00:00:00', 1),
(8909, 8666, 59, 2, 0, 'Fresher for MIS,can give a try,Gokul Interviewed,Yet to complete their exams,if they come back lets see', 60, '0000-00-00 00:00:00', 1),
(8910, 8671, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8911, 8669, 59, 5, 0, 'Fresher,Need To Open Alot,Will Not Handle Our Pressure Not Suitable', 60, '0000-00-00 00:00:00', 1),
(8912, 8667, 59, 5, 0, 'Fresher,need to open alot,will not handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(8913, 8664, 59, 5, 0, 'Aged,9yrs gap,Fresher for Recruitment,Not comfort to work on saturdays,will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(8914, 8663, 59, 5, 0, 'Fresher,no basic in recruitment,even in excel,will not handle the work pressure,will not run in a long', 60, '0000-00-00 00:00:00', 1),
(8915, 8661, 59, 5, 0, 'Communication very Average,married sustainability doubts,1.5 yrs but seems not a good profile,will no sustain', 60, '0000-00-00 00:00:00', 1),
(8916, 8676, 59, 5, 0, 'Not open up,will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(8917, 8677, 59, 3, 0, 'Selected for Pandian Team - PF/PT', 60, '0000-00-00 00:00:00', 1),
(8918, 8675, 59, 4, 0, 'Have Exp in Sales,but not sure on the calling activities,age around 32 years,,taking calls doubts a lot,5050 profile do check and let me know\n', 60, '0000-00-00 00:00:00', 1),
(8919, 8665, 24, 4, 0, 'Selected .. expect salary 14k ..', 60, '0000-00-00 00:00:00', 1),
(8920, 8670, 24, 4, 0, 'SELECTED.. EXPCT 12K SALARY', 60, '0000-00-00 00:00:00', 1),
(8921, 8660, 29, 1, 0, NULL, 31, '2022-05-06 03:46:26', 1),
(8922, 8665, 88, 7, 0, 'Selected for RE Role', 24, '2022-05-06 03:56:19', 1),
(8923, 8670, 88, 7, 0, 'Selected for rE role', 24, '2022-05-06 03:57:53', 1),
(8924, 8670, 59, 3, 0, '\nSelected for Suthagar Erode - Consultant', 88, '2022-05-06 06:14:00', 1),
(8925, 8649, 59, 3, 0, 'Staff Role - Kannan - Balaji Reference - DM RE', 88, '2022-05-06 06:14:37', 1),
(8926, 8665, 59, 3, 0, 'Selected for Suthagar Team - Consultant Role', 88, '2022-05-06 06:15:22', 1),
(8927, 8671, 88, 7, 0, 'Selected for RE', 59, '2022-05-06 07:29:25', 1),
(8928, 8675, 34, 1, 0, NULL, 59, '2022-05-06 07:39:04', 1),
(8929, 8677, 80, 7, 4, 'Shortlisted ', 59, '2022-05-06 07:40:23', 1),
(8930, 8674, 59, 5, 0, 'Looking much focus on the core,will not run for a long in our roles,will not sustain', 60, '0000-00-00 00:00:00', 1),
(8931, 8681, 59, 5, 0, 'Fresher for Recruiter,but his exp is very high concern the previous exp,not ready to come down on the salary and being a fresher exp very high', 60, '0000-00-00 00:00:00', 1),
(8932, 8678, 59, 5, 0, 'No communication,not suits for recruitment,not interested to go in telesales too , not suitable', 60, '0000-00-00 00:00:00', 1),
(8933, 8684, 30, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(8934, 8691, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(8935, 8693, 59, 3, 0, 'Selected for Mern - 5K stipend for 5 month then 10-12K Salary 3yrs SA', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(8936, 8690, 59, 2, 0, 'Communication Average,need to open a lot,can give a try for Erode,Once done with next round lets see', 60, '0000-00-00 00:00:00', 1),
(8937, 8691, 16, 7, 0, 'Good Candidate', 59, '2022-05-09 07:09:58', 1),
(8938, 8557, 91, 4, 0, 'Sounds good in comunication \npast experience is only into lead generation\nsalary expecting 25K but only 1 month experience \ncommitment wise not sounding clear for long time\n\nCan proceed with India first salary with 10% hike if she gives commitment for next 1 year\n\nPerformance wise she had done only 1L business that to only for 3 months others 50K-70K with 2 nopxquots\n', 60, '0000-00-00 00:00:00', 1),
(8939, 8557, 18, 7, 0, 'Selected for Hyderabad. Immed Joining. Negotiate the Salary. Immed Joiner Give Joining date next monday', 91, '2022-05-10 04:11:05', 1),
(8940, 8677, 18, 7, 0, 'Selected for Pandi Team. Negotiated salary for 3.75 salary. Experienced guy. Joining tomorrow.', 80, '2022-05-10 04:20:33', 1),
(8941, 8706, 59, 3, 0, 'Selected for Syed Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(8942, 8703, 24, 5, 0, 'candidate okay.. but candidate need to discuss with family because here target job so', 60, '0000-00-00 00:00:00', 1),
(8943, 8701, 24, 5, 0, '19yrs Old .. Not Suitable For Our Profile.. ', 60, '0000-00-00 00:00:00', 1),
(8944, 8700, 24, 5, 0, '19yrs old .. not suitable for our profile.. ', 60, '0000-00-00 00:00:00', 1),
(8945, 8677, 59, 3, 0, 'Selected for Pandian Team - PF/PT', 18, '2022-05-10 05:06:12', 1),
(8946, 8557, 60, 1, 0, NULL, 18, '2022-05-10 05:07:13', 1),
(8947, 8706, 57, 4, 4, 'candidate is ok , he already working Decathlon night shift, he is interest in sales ', 59, '2022-05-10 07:07:03', 1),
(8948, 8671, 59, 3, 0, 'Selected for Ravi Team with PF/ESI/PT', 88, '2022-05-11 09:53:07', 1),
(8949, 8250, 59, 3, 0, 'Selected for Muthu Team - Consultant Role', 13, '2022-05-11 10:11:31', 1),
(8950, 8709, 74, 7, 0, 'he is well profiled and fit for team and telesales.....salary expected 10 to 12 k and already selected in first source and hgs global solution .........in chennai due to fathers health issue looking for job in home town father driver and one brother studing btech it and travel to office time 45 min he is confirmed to ready laptop so cross check once and kindly confirm joining once ', 60, '0000-00-00 00:00:00', 1),
(8951, 8708, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(8952, 8714, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(8953, 8713, 74, 7, 0, 'he is speaking good and potential candidate...father is a driver..and one brother studying be in kumbakonam.....already selected in chennai first source hgs companies but he is not joined due to father health issue so kindly confirm once expected 10 to 12k and have laptop....travel time 1 hour but ready to join immediately', 60, '0000-00-00 00:00:00', 1),
(8954, 8711, 59, 4, 0, 'Internal Reference,not suitable for our roles,will not sustain,Need to open a lot,as it is a internal reference kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8955, 8712, 59, 4, 0, '5050 profile,focus much in accounts profile,Fresher for Telecalling ,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8956, 8715, 59, 5, 0, 'Internal REference,not interested in telesales,not interested in Insurance domain too.not suitable ', 60, '0000-00-00 00:00:00', 1),
(8957, 8710, 59, 5, 0, 'Communication Average,For recruiter she need to open a lot no basic ideas in the recritment,have exp in telecalling sales,but no sustainability in the previous exp.not comfort on the TxxampC.Will not sustain and not suitable for sales too ', 60, '0000-00-00 00:00:00', 1),
(8958, 8711, 51, 5, 0, 'not ok with calling', 59, '2022-05-11 02:54:19', 1),
(8959, 8712, 53, 1, 0, NULL, 59, '2022-05-11 02:56:56', 1),
(8960, 8713, 59, 5, 0, 'Sithyvinayagam rejected the profile\n', 74, '2022-05-11 04:03:58', 1),
(8961, 8706, 88, 7, 0, 'Selected for RE', 57, '2022-05-11 04:14:43', 1),
(8962, 8706, 59, 3, 0, 'Selected for Syed Team - Staff Role', 88, '2022-05-11 06:05:20', 1),
(8963, 8339, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-05-11 07:34:50', 1),
(8964, 8725, 59, 5, 0, 'No Communicaiton,will not suits for our roles,up and down 50 kms', 60, '0000-00-00 00:00:00', 1),
(8965, 8717, 91, 4, 0, 'Candidate Is Shortlisted For Second Round.\nCommunication Skills In English Are Above Average And In Telugu, She Is Presenting In A Good Way. We Are Looking For Ap/Ts She Can Communicate Betterley. \n\nwork experience is into sales done as front line sales and services, best thing I observed is consistency for 3 years. commitment to their job she is transparent. hope she will stay with us for a long time. \n\nin proper training she will show the better results. \n\nreason of job break :- break in job cycle due to father health condition she left the job. ', 60, '0000-00-00 00:00:00', 1),
(8966, 8727, 14, 7, 0, 'candidate ok experience less max salary 10.5k and need to confirm joining date', 60, '0000-00-00 00:00:00', 1),
(8967, 8726, 14, 7, 0, 'Candidate ok but salary expectation high 15k one year experience only need to confirm joining date salary max 11.5k ', 60, '0000-00-00 00:00:00', 1),
(8968, 8709, 59, 5, 0, 'Dropped No response', 74, '2022-05-12 12:53:21', 1),
(8969, 8729, 74, 7, 0, 'he well profiled and fit for telesales and voice skill is too and fit for team....3 month experience in first sourse trichy ....but expected 15 k will do 11 to 13k is worth so kindly confirm once.......have laptop and immediate joining ......poor family only and intrested in programming so cross check once', 60, '0000-00-00 00:00:00', 1),
(8970, 8730, 59, 4, 0, 'No Relevant Exp in Sales,have only B2B,Internal REference kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8971, 8729, 59, 5, 0, 'Dropped very high cTC,fresher for Telecalling not ready to come down than 13K', 74, '2022-05-12 01:25:24', 1),
(8972, 8726, 59, 5, 0, 'Dropped ,kept the call on hold for a long and not responding later', 14, '2022-05-12 01:29:33', 1),
(8973, 8727, 59, 5, 0, 'Dropped RNR\n', 14, '2022-05-12 01:31:35', 1),
(8974, 8717, 18, 8, 0, 'This is Hyd Candidate and we have freezed recruitment there', 91, '2022-05-12 05:11:33', 1),
(8975, 8720, 59, 5, 0, 'Communicaiton Average,no basic ideas in the recruitment and understanding poor.will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(8976, 8731, 59, 4, 0, 'Communication Ok Have Exp in Showroom and filed sales,5050 for Telecalling kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8977, 8733, 59, 5, 0, 'No Communicaiton not open up have 3 yrs in non voice,even not suitable for our MIS Roles', 60, '0000-00-00 00:00:00', 1),
(8978, 8730, 16, 5, 0, 'Not Quality', 59, '2022-05-12 07:21:03', 1),
(8979, 8731, 53, 1, 0, NULL, 59, '2022-05-12 07:22:23', 1),
(8980, 8739, 59, 3, 0, 'Selected for ESales - PF/PT.ESI Deductions', 60, '0000-00-00 00:00:00', 1),
(8981, 8740, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(8982, 8742, 59, 4, 0, 'No Exp in Sales,fresher family need is there,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8983, 8738, 59, 4, 0, '5050 profile,have 1 yr exp but need to open a lot,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(8984, 8741, 24, 2, 0, 'candidate okay but he want discuss with family for bike so want to confim monday', 60, '0000-00-00 00:00:00', 1),
(8985, 8745, 24, 4, 0, 'candidate okay.. expect salary 13k to 15k', 60, '0000-00-00 00:00:00', 1),
(8986, 8738, 53, 1, 0, NULL, 59, '2022-05-13 06:47:40', 1),
(8987, 8739, 11, 4, 0, 'she is ok for E sales', 59, '2022-05-13 06:49:03', 1),
(8988, 8742, 57, 1, 0, NULL, 59, '2022-05-13 07:01:47', 1),
(8989, 8751, 24, 5, 0, 'Not speaking well.. Family women timing also not suitable for her', 60, '0000-00-00 00:00:00', 1),
(8990, 8752, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(8991, 8745, 88, 7, 0, 'selected for RE role', 24, '2022-05-14 01:17:55', 1),
(8992, 8740, 59, 3, 0, 'Selected for Manivel - Staff Role', 56, '2022-05-14 01:28:12', 1),
(8993, 8756, 59, 5, 0, 'Only into UX designing,candidate is clear that he is just looking for initial learning will not sustain in our roles,no basic knowledge in UI Development', 60, '0000-00-00 00:00:00', 1),
(8994, 8743, 59, 5, 0, 'NOt open up not suitable for Telesales,Attitude issue', 60, '0000-00-00 00:00:00', 1),
(8995, 8752, 59, 2, 0, 'Discussed with the candidate fresher for our sales Bangalore Location Exp 20K TH need time to give his confirmation', 56, '2022-05-14 01:29:47', 1),
(8996, 8750, 59, 5, 0, 'Voice Low,very high salary Expectation,not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(8997, 8753, 59, 4, 0, 'communication very average,have 8 months in telesales,career Gap ,5050 profile internal reference kindly check and let me know your inputs\n', 60, '0000-00-00 00:00:00', 1),
(8998, 8754, 24, 4, 0, 'candidate okay .. expect salary 13k to 14k', 60, '0000-00-00 00:00:00', 1),
(8999, 8749, 59, 5, 0, 'Communication Poor,no basic knowledge in recruitment areas,he was a kind of executive handled admin activities,will not handle our work pressure,also sustainability issues will be,Salary exp is very high', 60, '0000-00-00 00:00:00', 1),
(9000, 8758, 59, 5, 0, 'No Sales Exp,No Communication not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(9001, 8755, 59, 5, 0, 'Not Suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(9002, 8746, 59, 3, 0, 'Selected for Arumbakkam team consultant Role', 60, '0000-00-00 00:00:00', 1),
(9003, 8696, 59, 2, 0, 'Communication ok,have exp in telecalling and 3 months in Recruitment,need to be trained,5050 profile,not comfirtable with TxxampC,if she comes back let us See', 60, '0000-00-00 00:00:00', 1),
(9004, 8748, 59, 5, 0, 'No Communication,will not sustain and not suitabe for the position', 60, '0000-00-00 00:00:00', 1),
(9005, 8746, 53, 7, 0, 'selected for elite. pls cnfrm the sal and DOJ', 59, '2022-05-14 05:24:20', 1),
(9006, 8691, 60, 1, 0, NULL, 16, '2022-05-14 05:30:15', 1),
(9007, 8753, 11, 1, 0, NULL, 59, '2022-05-14 05:33:12', 1),
(9008, 8745, 59, 3, 0, 'Selected for Suthagar Team,Fresher Suthagar Team PF/ESI/PT', 88, '2022-05-16 10:49:46', 1),
(9009, 8754, 88, 7, 0, 'Selected for RE', 24, '2022-05-16 12:17:32', 1),
(9010, 8741, 24, 5, 0, 'hexquots Thinking over and take time also long time so we rejected.. ', 24, '2022-05-16 12:27:12', 1),
(9011, 8754, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT\n', 88, '2022-05-16 01:00:05', 1),
(9012, 8761, 72, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9013, 8763, 59, 5, 0, 'no communication no basic knowledge in Figma,Designing Skills,need to open a lot,will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(9014, 8757, 59, 5, 0, 'Not open up fresher not suitable', 60, '0000-00-00 00:00:00', 1),
(9015, 8759, 59, 5, 0, 'Communication Average,No Exp in recruitment,hr executive and min 30K Exp on Salary,also not much comfort on TxxampC,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(9016, 8760, 59, 5, 0, 'no communication,not much strong in the excel work,will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(9017, 8769, 59, 3, 0, 'Selected for Manikandan - RM profile with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9018, 8765, 59, 4, 0, 'Have 2.3 yrs exp in telecalling,but ni collections,can give atry for ESales kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9019, 8737, 59, 5, 0, 'Not interested in Telesales,will not handle ourSales pressure,not suitable', 60, '0000-00-00 00:00:00', 1),
(9020, 8769, 86, 4, 0, 'Selected For Next Round', 59, '2022-05-17 03:38:41', 1),
(9021, 8765, 11, 1, 0, NULL, 59, '2022-05-17 03:39:47', 1),
(9022, 8279, 24, 4, 0, 'Candidate okay but need to check job important and sustainability ', 60, '0000-00-00 00:00:00', 1),
(9023, 8768, 24, 4, 0, 'Selected .. expt 15k .. but told 10k to 13k', 60, '0000-00-00 00:00:00', 1),
(9024, 8769, 18, 7, 3, 'Shortlisted for mani team. Expected current take home is 27K expected 10% hike. Try to negotiate . Ready to join on Monday', 86, '2022-05-17 03:49:14', 1),
(9025, 8766, 24, 5, 0, 'Not fit for us', 60, '0000-00-00 00:00:00', 1),
(9026, 8768, 88, 7, 0, 'selected for RE role', 24, '2022-05-17 03:53:46', 1),
(9027, 8279, 88, 1, 0, NULL, 24, '2022-05-17 03:55:31', 1),
(9028, 8768, 59, 3, 0, 'Selected for RE - Consultant Role - Erode Suthagar Team\n', 88, '2022-05-17 06:52:26', 1),
(9029, 8762, 59, 4, 0, 'Check with the task and let us decide\n', 60, '0000-00-00 00:00:00', 1),
(9030, 8769, 60, 1, 0, NULL, 18, '2022-05-18 01:46:54', 1),
(9031, 8780, 93, 7, 0, 'candidate is ok you can process further', 60, '0000-00-00 00:00:00', 1),
(9032, 8646, 59, 2, 0, 'communication is Good, has exp in IT recruitment, her current salary is 2.5 LPA, earlier when she joins the company it was 2.3 LPA. Now she is expecting 3 LPA finally ready to come down to 2.6 LPA but only 6 months strong in IT profiles. In our sales profile, she was ok but seems not much comfortable with TxxampC.Ask her to come for F2F and lets decide', 60, '0000-00-00 00:00:00', 1),
(9033, 8646, 59, 2, 0, 'Communication ok, Have only 6 months Exp in Recruitment, need to relocate from Madurai but her salary expect is around 18K.His current Salary is 10K.Her sustainability doubts in the long run comparing her salary expectation.Hold this profile,we can decide later on this profile,She has career gap to', 59, '2022-05-18 02:58:51', 1),
(9034, 8698, 59, 5, 0, 'communication is Good, has exp in IT recruitment, her current salary is 2.5 LPA, earlier when she joins the company it was 2.3 LPA. Now she is expecting 3 LPA finally ready to come down to 2.6 LPA but only 6 months strong in IT profiles. In our sales profile, she was ok but seems not much comfortable with TxxampC.Ask her to come for F2F and lets decide', 60, '0000-00-00 00:00:00', 1),
(9035, 8601, 59, 5, 0, 'Communication ok, Overall 1.5 yrs she traveled with 3 companies and this is her 4th company. In that, last 8 months, only she been in recruitment and looking for min exp of 17K.Long run sustainability doubts in this profile.Letshold this profile and decide later', 60, '0000-00-00 00:00:00', 1),
(9036, 8762, 69, 1, 0, NULL, 59, '2022-05-18 03:04:25', 1),
(9037, 8780, 60, 1, 0, NULL, 93, '2022-05-18 03:09:17', 1),
(9038, 8777, 59, 2, 0, 'No Sustainability,Not inrerested in Telecalling,Checked for Bakend,Also not comfortable in TxxampC,If she come back lets try', 60, '0000-00-00 00:00:00', 1),
(9039, 8752, 59, 5, 0, 'Dorpped as the candidate is not ready to join us\n', 59, '2022-05-18 05:39:34', 1),
(9040, 8588, 59, 5, 0, 'Candidate not reponding to the calls\n', 59, '2022-05-18 05:42:56', 1),
(9041, 8774, 88, 7, 0, 'Selected for RE', 57, '2022-05-18 06:15:57', 1),
(9042, 8774, 59, 3, 0, 'Selected for RE Syed Team with PF/ESI/PT\n', 88, '2022-05-18 06:42:51', 1),
(9043, 8785, 59, 2, 0, '5050 Profile,fresher for our domain,need to come for final round,can be trained ', 60, '0000-00-00 00:00:00', 1),
(9044, 8793, 74, 7, 0, 'he studied in thanjavur bba and working in a automobile company in chennai for 1 year and move to tellicalling for 3 months due to some health issue releived from the job father passed away from office to native too far soo choose to came from uncle house half hour travel or else clg friends room in thanjavur...no laptop and speak good and fit for team ............salary expected 15k but ok with 11 to 12 k....have bike and monday joining kindly check once', 60, '0000-00-00 00:00:00', 1),
(9045, 8789, 59, 5, 0, 'Not interested in telesales and not comforts with the TxxampC for Backend and no basic skills in the operations.Will not sustain', 60, '0000-00-00 00:00:00', 1),
(9046, 8791, 59, 5, 0, 'Internal Team Reference for operations,no communicaiton,no basic skills in Excel will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(9047, 8790, 24, 4, 0, 'candidate selected.. exp 12 to 13k .. joining monday', 60, '0000-00-00 00:00:00', 1),
(9048, 8795, 59, 5, 0, 'Communication Average,No Sales Exp he is into collections only,not suits for our sales process', 60, '0000-00-00 00:00:00', 1),
(9049, 8793, 59, 3, 0, 'Selected for Thanjavur Elite - Consultant Role', 74, '2022-05-19 04:07:02', 1),
(9050, 8790, 88, 7, 0, 'Selected for RE', 24, '2022-05-19 04:18:28', 1),
(9051, 8788, 93, 7, 0, 'Selected ', 60, '0000-00-00 00:00:00', 1),
(9052, 8776, 93, 5, 0, 'No response ', 60, '0000-00-00 00:00:00', 1),
(9053, 8798, 59, 5, 0, 'Communication ok,not comfort in TxxampC,Will not handle our Pressure\n', 60, '0000-00-00 00:00:00', 1),
(9054, 8802, 24, 5, 0, 'not fit for sales', 60, '0000-00-00 00:00:00', 1),
(9055, 8801, 24, 5, 0, 'not fit for sales', 60, '0000-00-00 00:00:00', 1),
(9056, 8796, 24, 4, 0, 'Candidate Selected Monday Joining expct 14k to 15k', 60, '0000-00-00 00:00:00', 1),
(9057, 8799, 59, 5, 0, 'Communication no,not comfortable in taking calls and field,not suits for the backend positions too,not suitable', 60, '0000-00-00 00:00:00', 1),
(9058, 8792, 59, 5, 0, 'Communication Average,no convincing,handling pressure doubts,will not sustain', 60, '0000-00-00 00:00:00', 1),
(9059, 8806, 59, 2, 0, 'Communication Ok,age around 32 yrs,need to train a lot in our roles,9yrs in backend but not in Excel works,Thinking a lot on the service agreements,if she comes back lets try', 60, '0000-00-00 00:00:00', 1),
(9060, 8805, 59, 5, 0, 'Communication Average, need to open a lot, not much comfort in Field Sales, not suits for CRM too, will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(9061, 8803, 74, 7, 0, 'she is already working in lic 6 month and joined in a excela technologies in thanjavur parttime basis.........speaking good and fit for team......father post master mother cashier in panjayathu board .....only child ......have bike and desktop but salary expectation high bcoz of no vision in job ........kindly confirm the salary once 11 to 12k.....', 60, '0000-00-00 00:00:00', 1),
(9062, 8804, 59, 4, 0, 'Fresher for our sales,Internal team reference, need to train a lot, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9063, 8804, 53, 1, 0, NULL, 59, '2022-05-20 05:02:50', 1),
(9064, 8800, 59, 2, 0, 'Communication is good, she has exp in the backend, but not much in excel works needs to train a lot. She is currently in Hexaware and looking for opportunities only for the 2 days of weekend leaves required. Need to serve 30 days of notice. She will not handle our Pressure and Sustain with us. Every year she jumps to a different company stating health conditions. she needs to travel from Tambaram.', 60, '0000-00-00 00:00:00', 1),
(9065, 8790, 59, 3, 0, 'Selected for RE Profile - Suthagar - Consultant Role\n', 88, '2022-05-20 07:19:05', 1),
(9066, 8796, 88, 7, 0, 'Selected for RE', 24, '2022-05-21 10:56:17', 1),
(9067, 8803, 59, 5, 0, 'Candidate not interested to join\n', 74, '2022-05-21 11:02:10', 1),
(9068, 8796, 59, 5, 0, 'Dropped not interested in Sales Target will not join\n', 88, '2022-05-21 12:39:19', 1),
(9069, 8810, 59, 5, 0, 'Communication Average, no basic skills in Excel, Frequent Job changes, Distance to long,have worked in same domain but not interested,Not suitable', 60, '0000-00-00 00:00:00', 1),
(9070, 8811, 59, 5, 0, 'Have Exp in other domain,fresher for MIS,only basic in Excel Need to trian a lot,Too long distance,not comfort in SA,Will not sustain', 60, '0000-00-00 00:00:00', 1),
(9071, 8812, 59, 5, 0, 'For MIS No communication and no basic knowledge in the Excel, also not interested in Sales Telecaling ,not suitable ', 60, '0000-00-00 00:00:00', 1),
(9072, 8809, 59, 4, 0, 'Communication is Good have exp in Telesales,Star Health - Can give a try for our roles,sounds good kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9073, 8809, 60, 1, 0, NULL, 59, '2022-05-21 05:36:25', 1),
(9074, 8779, 59, 5, 0, 'No communcition,not interested in Sales profile,also looking for admin roles only,Checked for our backend positions too,but not suitable and not interested towards the profile will not sustain', 60, '0000-00-00 00:00:00', 1),
(9075, 8813, 74, 7, 0, 'she well profiled and suite for telecalling have laptop and nearby home only 3 km salary expected 11 to 12k ....1 year experience in tellecalling kindly check once and confirm', 60, '0000-00-00 00:00:00', 1),
(9076, 8825, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(9077, 8817, 59, 5, 0, 'Age around 38 yrs,Worked in Various Sectors,Foreign Return,Have Exp in HR but not strong in our recruitment areas,will not handle our pressuce, Will not sustain ', 60, '0000-00-00 00:00:00', 1),
(9078, 8818, 59, 3, 0, 'Selected for B2B - consultant Role', 60, '0000-00-00 00:00:00', 1),
(9079, 8819, 59, 5, 0, 'No communication,PRevious Exp seems to be false,sustainability doubts,will not handle our pressure Target', 60, '0000-00-00 00:00:00', 1),
(9080, 8820, 59, 2, 0, 'Communiation Ok,Can give a try for Recruiter Role,6 months Accoutns Exp in one Plus,Ok with TxxampC max 1.5 yrs SA Doc Sub,Notice 15 Days,Can appear for final round F2F next week', 60, '0000-00-00 00:00:00', 1),
(9081, 8814, 59, 5, 0, 'Not open up not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(9082, 8813, 59, 3, 0, 'Selected for Elite Thanjavur Location - Consultant Role', 74, '2022-05-23 01:28:07', 1),
(9083, 8818, 53, 7, 0, 'Selected for b2b. Kindly cnfrm the salary and DOJ. sal 14k i commintted increment after 6Month depends upon her performance.', 59, '2022-05-23 01:39:45', 1),
(9084, 8826, 24, 5, 0, 'Not suitable', 60, '0000-00-00 00:00:00', 1),
(9085, 8824, 24, 5, 0, 'not suitable for us', 60, '0000-00-00 00:00:00', 1),
(9086, 8815, 59, 2, 0, 'Communication is good, have internship Exp, earning stipend around 15K, currently in an internship with saint Gobain, also he is in the final semester, have exams between 15June-25 June, Can join post completion of exams only and his expectation is Min 17-18KTH.He need some time to decide on the terms xxamp conditions,if he comes back lets see', 60, '0000-00-00 00:00:00', 1),
(9087, 8831, 24, 5, 0, 'Rejected.. he is not interested..', 60, '0000-00-00 00:00:00', 1),
(9088, 8832, 24, 5, 0, 'Voice not bold and also very low.. not confident', 60, '0000-00-00 00:00:00', 1),
(9089, 8828, 59, 3, 0, 'Selected for GK Sir Team PF/PT', 60, '0000-00-00 00:00:00', 1),
(9090, 8834, 59, 5, 0, 'Communication ok,not yet completed his graduation,Exams are there,Not much comfort in field sales,Need to change his dressings ', 60, '0000-00-00 00:00:00', 1),
(9091, 8836, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9092, 8836, 59, 3, 0, 'Selected for Muppudathy team with PF/PT', 56, '2022-05-24 05:50:12', 1),
(9093, 8830, 59, 2, 0, 'Candidate is not available,should give a call tomorrow\n', 60, '0000-00-00 00:00:00', 1),
(9094, 8828, 31, 4, 4, 'candidate okay. ', 59, '2022-05-24 06:30:16', 1),
(9095, 8788, 60, 1, 0, NULL, 93, '2022-05-24 06:43:30', 1),
(9096, 8827, 59, 2, 0, 'Communication is good, have exp as a research executive in native, ready to relocate and can give a try for the MIS role, Need some time to confirm this profile, will check again for the sustainability and let you know.Lets hold this profile', 60, '0000-00-00 00:00:00', 1),
(9097, 8835, 59, 2, 0, 'Communication is good, Fresher for Telecalling Sales, Currently working as a lecturer, sounds good in communicating, can be trained, sustainability needs to check,5050 profile, Kindly schedule him for a virtual with the DM team. Let them review and come back with the inputs.', 60, '0000-00-00 00:00:00', 1),
(9098, 8828, 29, 7, 3, 'Gk team ', 31, '2022-05-25 11:06:28', 1),
(9099, 8835, 57, 4, 0, 'Candiate ok pls confirm joining date and salary ', 59, '2022-05-25 01:23:38', 1),
(9100, 8835, 59, 4, 0, 'Communication is good, Fresher for Telecalling Sales, Currently working as a lecturer, sounds good in communicating, can be trained, sustainability needs to check,5050 profile, Kindly check and let me know your inputs', 59, '2022-05-25 01:23:38', 1),
(9101, 8833, 59, 4, 0, 'Communciation ok ,have 6 months field sales Exp can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9102, 8833, 89, 5, 0, 'No skill', 59, '2022-05-25 04:53:59', 1),
(9103, 8739, 60, 1, 0, NULL, 11, '2022-05-25 06:26:12', 1),
(9104, 8828, 60, 1, 0, NULL, 29, '2022-05-25 06:56:50', 1),
(9105, 8739, 60, 1, 0, NULL, 29, '2022-05-25 06:59:06', 1),
(9106, 8837, 59, 4, 0, 'Communication ok,have exp in sales but not a relevant one,can give a try check and let me know\n', 60, '0000-00-00 00:00:00', 1),
(9107, 8842, 59, 3, 0, 'Selected for Babu Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9108, 8844, 59, 5, 0, 'Fresher for Sales,backend exp but not in Excel works,no basic ideas too,will not handle the pressure and not suitable', 60, '0000-00-00 00:00:00', 1),
(9109, 8837, 82, 1, 0, NULL, 59, '2022-05-26 06:42:21', 1),
(9110, 8842, 89, 7, 0, 'Shortlisted \n', 59, '2022-05-26 06:43:32', 1),
(9111, 8818, 59, 3, 0, 'Selected for B2B - consultant Role', 53, '2022-05-27 11:15:19', 1),
(9112, 8847, 59, 5, 0, 'not interested in telesales will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9113, 8845, 59, 5, 0, 'Looking for System Admin and high Exp, no positions in system admin', 60, '0000-00-00 00:00:00', 1),
(9114, 8852, 59, 5, 0, 'No Communication not suitable for our other roles too', 60, '0000-00-00 00:00:00', 1),
(9115, 8851, 30, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9116, 8842, 88, 7, 0, 'Selected for RE', 89, '2022-05-27 05:42:28', 1),
(9117, 8853, 59, 3, 0, 'Selected for Recruiter with 12.5K,after 5 months can be increased if her performance is good', 60, '0000-00-00 00:00:00', 1),
(9118, 8835, 88, 1, 0, NULL, 57, '2022-05-27 08:14:35', 1),
(9119, 8841, 59, 3, 0, 'Selected for REcrutier Intern cum employment', 60, '0000-00-00 00:00:00', 1),
(9120, 8854, 59, 5, 0, 'High Exp on Salary,not comfort in TxxampC', 60, '0000-00-00 00:00:00', 1),
(9121, 8849, 59, 3, 0, 'selected for Renewal with PT only', 60, '0000-00-00 00:00:00', 1),
(9122, 8856, 59, 3, 0, 'Selected for Recruiter Intern cum employee', 60, '0000-00-00 00:00:00', 1),
(9123, 8842, 59, 3, 0, 'Selected for Babu Team with PF/ESI/PT', 88, '2022-05-28 04:27:57', 1),
(9124, 8848, 59, 3, 0, 'Selected for ESales RM in the consultant Role', 60, '0000-00-00 00:00:00', 1),
(9125, 8848, 60, 1, 0, NULL, 93, '2022-05-30 10:07:23', 1),
(9126, 8868, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9127, 8868, 59, 2, 0, 'Candidate will give a call back', 56, '2022-05-30 12:39:45', 1),
(9128, 8865, 24, 2, 0, 'Candidate having last semester exam.. so she want joining after exam only.. so cb 20th', 60, '0000-00-00 00:00:00', 1),
(9129, 8861, 59, 3, 0, 'Selected for Operation team with PT', 60, '0000-00-00 00:00:00', 1),
(9130, 8866, 59, 5, 0, 'Looking for networking Profile only', 60, '0000-00-00 00:00:00', 1),
(9131, 8867, 59, 5, 0, 'comfort to work in nonvoice only ', 60, '0000-00-00 00:00:00', 1),
(9132, 8863, 31, 4, 4, 'candidate okay forwarded to next round ', 60, '0000-00-00 00:00:00', 1),
(9133, 8863, 29, 7, 3, 'gk', 31, '2022-05-31 10:10:42', 1),
(9134, 8871, 59, 3, 0, 'Selected for ESales - 2nd Round by Gajalakshmi,3rd round by GK Sir Selected - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(9135, 8872, 59, 2, 0, 'Communication is Good ,fresher for Recruitment need time to give confirmation', 60, '0000-00-00 00:00:00', 1),
(9136, 8874, 59, 5, 0, 'Communication ok not a relevant Exp ,salary Exp is high', 60, '0000-00-00 00:00:00', 1),
(9137, 8883, 59, 2, 0, 'Communication Is Good ,Fresher For Recruitment Need Time To Give Confirmation', 60, '0000-00-00 00:00:00', 1),
(9138, 8876, 59, 5, 0, 'Communication not clear no pronunciation,will not handle our sales', 60, '0000-00-00 00:00:00', 1),
(9139, 8877, 59, 5, 0, 'Need to open a lot,much comfort in non voice process only', 60, '0000-00-00 00:00:00', 1),
(9140, 8880, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9141, 8881, 93, 7, 0, 'Shortlisted ', 60, '0000-00-00 00:00:00', 1),
(9142, 8882, 74, 7, 0, 'she is experience as a team lead for 5 years 2014 to 19....college completed 2013....and joined in a automobile telesales senior crm .........timing issue releived ................married 10years completed one child............................my wish she is dedicated and job need husband plumber only.....exposure is good and experience in insurance filed expected 13 to 14 good only have no laptop kindly cross check once and confirm ready to go for a collection also...', 60, '0000-00-00 00:00:00', 1),
(9143, 8880, 59, 3, 0, 'Selected for Manivel Team with PF/PT', 56, '2022-05-31 03:06:02', 1),
(9144, 8882, 59, 5, 0, 'Dropped - We have offered her 156000 but she didnt turn with her confirmation', 74, '2022-05-31 04:49:35', 1),
(9145, 8881, 59, 2, 0, 'Communication Is Good 1 yr exp too long distance Need Time To Give Confirmation', 93, '2022-05-31 05:21:14', 1),
(9146, 8862, 59, 5, 0, 'Fresher Communication ok,not comfort in Terms and conditions', 60, '0000-00-00 00:00:00', 1),
(9147, 8863, 60, 1, 0, NULL, 29, '2022-05-31 08:42:17', 1),
(9148, 8923, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9149, 8923, 57, 4, 0, 'Candidate is ok , pls confirm ', 59, '2022-06-07 09:44:06', 1),
(9150, 8923, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 57, '2022-06-07 09:50:35', 1),
(9151, 8893, 74, 7, 0, 'he is fit for team well profiled and good communicaton skills...2 years experience in digital india transcation and releived have laptop and bike family background is good and near by only home salary ok with 12k', 60, '0000-00-00 00:00:00', 1),
(9152, 8898, 60, 1, 0, NULL, 19, '2022-06-07 11:01:09', 1),
(9153, 8912, 59, 4, 0, 'have 8 months Exp in Insurance Sales,but not seems much confident,5050 Profile,can give a try kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(9154, 8944, 59, 4, 0, '5050 profile have exp in telecalling but need to open a lot.Check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9155, 8947, 59, 5, 0, 'Not yet completed her graduation,23 days to complete her exams ,frehser,sustainability doubts on this profile,after exams if she comes back lets try', 60, '0000-00-00 00:00:00', 1),
(9156, 8946, 24, 7, 0, 'selected.. sustainability doubt lets check training period.. sal exp 15k', 60, '0000-00-00 00:00:00', 1),
(9157, 8945, 24, 5, 0, 'Voice low..', 60, '0000-00-00 00:00:00', 1),
(9158, 8940, 24, 7, 0, 'Tomorrow joining .. salary exp 13k to 14k', 60, '0000-00-00 00:00:00', 1),
(9159, 8943, 59, 5, 0, 'Not comfortable with the package', 60, '0000-00-00 00:00:00', 1),
(9160, 8931, 59, 5, 0, 'Salary Exp is veru high,will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(9161, 8930, 59, 5, 0, 'No communication,veru high Exp,not much comfort in TxxampC,will not sustain', 60, '0000-00-00 00:00:00', 1),
(9162, 8919, 59, 5, 0, 'Fresher for Recruitment,have a month internship Exp Salary Exp is high,also not comfort in TxxampC.will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9163, 8924, 59, 5, 0, 'Very Slow,will not sustain and suits for our roles', 60, '0000-00-00 00:00:00', 1),
(9164, 8928, 59, 5, 0, 'Too high Exp,long distance,will not run in long not suitable', 60, '0000-00-00 00:00:00', 1),
(9165, 8925, 59, 4, 0, 'have Exp in Sales ,Can give a try for our Insurance Sales,Kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(9166, 8912, 57, 1, 0, NULL, 59, '2022-06-07 04:11:43', 1),
(9167, 8944, 44, 5, 0, 'she is not fit for Rm role', 59, '2022-06-07 04:13:03', 1),
(9168, 8925, 71, 5, 0, 'reject', 59, '2022-06-07 04:27:14', 1),
(9169, 8940, 59, 3, 0, 'Selected for RE - PF/ESI/PT - Erode Location\n', 24, '2022-06-07 05:42:24', 1),
(9170, 8946, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 24, '2022-06-07 05:43:47', 1),
(9171, 8865, 24, 2, 0, 'Exam so hold', 24, '2022-06-07 05:45:29', 1),
(9172, 8910, 74, 7, 0, 'he is well active and good communication skills and fit to the team already workied in a suzuki showoom as relationship manager and good only completed automobile filed courses and doing msc as partime after 7ck via online courses have sustainability issue but good communication skills kindly check and confirm once 12.5 k salary expected', 60, '0000-00-00 00:00:00', 1),
(9173, 8893, 59, 3, 0, 'Selected for Thanjavur in Consultant Role', 74, '2022-06-08 03:37:42', 1),
(9174, 8910, 59, 3, 0, 'Selected for Thanjavur in Consultant Role', 74, '2022-06-08 03:41:20', 1),
(9175, 8934, 59, 2, 0, 'Communication ok,fresher for Recruitment,can give a try but her min is very high and not ready to come down, Given her time if she comes back lets see', 60, '0000-00-00 00:00:00', 1),
(9176, 8958, 59, 5, 0, 'Communication ok,60 days notice,written communication no,High CTC exp sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(9177, 8957, 59, 4, 0, 'Communication ok,no relevant Exp,but in B2B Sales 5050 profile can give a try and analyse in 7 days,ready to take calls,but exp seems somewhat high', 60, '0000-00-00 00:00:00', 1),
(9178, 8951, 59, 5, 0, 'No Communication,not able to understand what we communicate will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9179, 8952, 59, 5, 0, 'communication Average, not ready to handle the pressure,will not sustain', 60, '0000-00-00 00:00:00', 1),
(9180, 8953, 59, 4, 0, 'Communication ok have showroom car sales Exp,5050 profiles sustainability doubts on this profile,internal reference do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9181, 8807, 13, 7, 0, 'ok 13k salary comming monday joining', 60, '0000-00-00 00:00:00', 1),
(9182, 8807, 59, 3, 0, 'Selected for Muthu Team - Consultant Role', 13, '2022-06-08 04:44:42', 1),
(9183, 8950, 93, 7, 0, 'Shortlisted ', 60, '0000-00-00 00:00:00', 1),
(9184, 8950, 60, 1, 0, NULL, 93, '2022-06-08 05:06:47', 1),
(9185, 8948, 59, 5, 0, 'Communication Average, Career Gap, No Relevant Exp, Age around 25yrs, while communicating with her seems not much confident. The candidate says that she will be able to sign the SA but does not seems to be. Also, her expectation is high(18-20K) being a fresher', 60, '0000-00-00 00:00:00', 1),
(9186, 8949, 59, 5, 0, 'Fresher for our Sales and the candidate is looking for team lead profiles only, also he is not comfortable in taking calls. Not suitable', 60, '0000-00-00 00:00:00', 1),
(9187, 8957, 44, 1, 0, NULL, 59, '2022-06-08 07:30:04', 1),
(9188, 8953, 16, 5, 0, 'Sustain doubt', 59, '2022-06-08 07:32:22', 1),
(9189, 8960, 24, 7, 0, 'candidate okay.. .. exp 12k to 13k ... ', 60, '0000-00-00 00:00:00', 1),
(9190, 8967, 80, 5, 0, 'She is not speak out ', 60, '0000-00-00 00:00:00', 1),
(9191, 8959, 59, 5, 0, 'Communication ok,have exp in US IT recruitement 2 yrs back and she was into different domain.now again she is looking for Recruitment. not much comfort with the txxampC, also her expectation is very high compare to her experience.IF she comes back Let us try', 60, '0000-00-00 00:00:00', 1),
(9192, 8941, 59, 5, 0, 'No Communication,no basic skills in the MIS,also not comfortable for Sales .Too Long distance will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9193, 8938, 59, 5, 0, 'Communication ok,Fresher for Recruitment have internship Exp She is from Psychology background.Almost ok with the TxxampC but her expectation as fresher is minimum 20K.Not ready to come down on the salary', 60, '0000-00-00 00:00:00', 1),
(9194, 8970, 59, 5, 0, 'Have Exp in Sales Collections, but not comfortable to go in sales again, appeared for MIS role, but no basic ideas.Too long Distance he is from tiruvallur and not ready to relocate,not suitable', 60, '0000-00-00 00:00:00', 1),
(9195, 8964, 59, 5, 0, 'Communication Average, not clear in his speech, not ok with TxxampC, Very slow and will not handle the pressure.Not suitable', 60, '0000-00-00 00:00:00', 1),
(9196, 8969, 59, 3, 0, 'Selected for Pandiarajan Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9197, 8963, 59, 5, 0, 'Communication ok,have exp in telecalling sales,not suits for our MIS,Processed her for second round ESales,but got rejected in the final round with Gaurav sir.Rejected', 60, '0000-00-00 00:00:00', 1),
(9198, 8936, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(9199, 8962, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(9200, 8969, 80, 7, 4, 'Needed job ', 59, '2022-06-09 05:41:47', 1),
(9201, 8960, 59, 3, 0, 'Selected for Suthagar - PF/ESI/PT', 24, '2022-06-09 06:20:07', 1),
(9202, 8969, 18, 7, 3, 'Selected for Mani Team. Immed Joiner. Package as directly discussed', 80, '2022-06-09 06:58:25', 1),
(9203, 8969, 60, 1, 0, NULL, 18, '2022-06-10 01:21:37', 1),
(9204, 8984, 59, 4, 0, 'Communication ok 5050 profile fresher for Sales do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9205, 8986, 59, 4, 0, 'Communication Average,very low profile 5050 check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9206, 8989, 59, 4, 0, 'Have Exp in Credit card sales,communication ok can check for RM,do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9207, 8983, 59, 4, 0, '5050 Profile 6 months in Inbound calls,2nd round interviewed by karthika in your absence do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9208, 8987, 59, 5, 0, 'Ned to open a lot,no sustainability 2yrs 3 companies,Fresher will not hanlde our pressure', 60, '0000-00-00 00:00:00', 1),
(9209, 8988, 59, 5, 0, 'Communication ok,12th highest graduation,Have Exp in Collection Calls,5050 Profile left without attending the 2nd Round minimum 15-16K TH', 60, '0000-00-00 00:00:00', 1),
(9210, 8990, 59, 3, 0, 'Selected for Pandian Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9211, 8973, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9212, 8974, 59, 5, 0, 'Huge career gap, no basic knowledge in recruitment ,need to train from the scratch, too long distance 36kms up and down married 2 kids not comfort with the timings too', 60, '0000-00-00 00:00:00', 1),
(9213, 8991, 59, 5, 0, 'Have 4 months Exp in Recruitment,Distance up and down 36 kms,Not much comfort with TxxampC,Salary Exp min 15K TH ,if she come back let us try', 60, '0000-00-00 00:00:00', 1),
(9214, 8990, 80, 4, 0, 'He is Fresher in our industry. Basically he have B2B marketing experience. ', 59, '2022-06-10 06:31:10', 1),
(9215, 8984, 89, 1, 0, NULL, 59, '2022-06-10 06:38:34', 1),
(9216, 8986, 89, 1, 0, NULL, 59, '2022-06-10 06:39:27', 1),
(9217, 8983, 53, 1, 0, NULL, 59, '2022-06-10 06:40:43', 1),
(9218, 8989, 86, 4, 0, 'Selected for next Round', 59, '2022-06-10 06:44:34', 1),
(9219, 8965, 59, 5, 0, 'Communication Average, not comfortable with the TxxampC,Will not run in a long,not suitable', 60, '0000-00-00 00:00:00', 1),
(9220, 8966, 59, 5, 0, 'Communication ok, Diploma graduate in 2014, had his own business then worked on different bank projects. Currently, he is in Bangalore working in Wintronics and looking for an opportunity, Min 18K Exp and not much with TxxampC, will not sustain in our roles.', 60, '0000-00-00 00:00:00', 1),
(9221, 8968, 59, 5, 0, 'Not Suitable For Our Roles', 60, '0000-00-00 00:00:00', 1),
(9222, 8990, 18, 7, 4, 'Selected for Pandian Team. Ready to Join on Monday. Package as discussed earlier', 80, '2022-06-11 12:46:33', 1),
(9223, 8989, 18, 7, 4, 'Asked one week time to Join for arranging laptop. Expected salary is 16+ take home+PF. Selected from Mani Team', 86, '2022-06-11 12:48:28', 1),
(9224, 8992, 59, 3, 0, 'Selected for RM Pandia Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9225, 8995, 59, 5, 0, 'Communication Average,Fresher,no basic ideas about recrruitment,will not sustain in our Role for a long not suitable', 60, '0000-00-00 00:00:00', 1),
(9226, 8998, 59, 5, 0, 'very high Exp in Sales and looking only for the lead level positions,', 60, '0000-00-00 00:00:00', 1),
(9227, 8994, 59, 4, 0, 'Sounds low,have exp in calling,internal reference from Gajalakshmi,check and let me know your inputsxquot\n', 60, '0000-00-00 00:00:00', 1),
(9228, 8997, 74, 5, 0, 'not fit', 60, '0000-00-00 00:00:00', 1),
(9229, 9000, 59, 2, 0, 'Have Exp as generalist applied for recruiter,Min Salary Exp is 18K,30 days notice', 60, '0000-00-00 00:00:00', 1),
(9230, 8996, 14, 7, 0, 'Please assign for second round little doubt for sustainability ', 60, '0000-00-00 00:00:00', 1),
(9231, 8992, 80, 7, 0, 'In our industry he is a Fresher. Good Sales guy', 59, '2022-06-11 06:11:27', 1),
(9232, 8994, 53, 1, 0, NULL, 59, '2022-06-11 06:13:00', 1),
(9233, 8990, 60, 1, 0, NULL, 18, '2022-06-12 09:39:41', 1),
(9234, 8971, 59, 2, 0, 'Looking for WFH,Having a long career gap,6 months Exp in IT recruitment,Married,need some time to finalise the Profile', 60, '0000-00-00 00:00:00', 1),
(9235, 9003, 59, 2, 0, 'Communication is Good, Can give a try for HR Recruiter Profile, candidatexquots exp is high, need to finalise ', 60, '0000-00-00 00:00:00', 1),
(9236, 9002, 59, 5, 0, 'Will not Sustain and handle our pressure, too long distance and having health issue too', 60, '0000-00-00 00:00:00', 1),
(9237, 9009, 59, 5, 0, 'Looking for Non Voice PRocess,no Communication,not suitabe', 60, '0000-00-00 00:00:00', 1),
(9238, 9005, 59, 4, 0, 'Communication Ok,No Relevant Sales,but in Retail Sales,can give a try for RM,Bike he has,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9239, 9005, 51, 5, 0, 'not selcted', 59, '2022-06-13 07:06:30', 1),
(9240, 9016, 59, 3, 0, 'Selected for B2B in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(9241, 9023, 39, 7, 4, 'Candidate is Ok for our profile', 60, '0000-00-00 00:00:00', 1),
(9242, 9023, 30, 7, 4, 'Shortlisted profile.. need to confirm salary and joining date', 39, '2022-06-14 02:57:32', 1),
(9243, 9023, 60, 1, 0, NULL, 30, '2022-06-14 02:59:42', 1),
(9244, 9013, 59, 5, 0, 'Communication is ok, have exp in recruitment for 9 months. Currently working and looking for salary growth, Min exp is 23K and not comfortable to work less than.', 60, '0000-00-00 00:00:00', 1),
(9245, 9026, 59, 5, 0, 'Too lon distance from Tiruvallur, not ready to relocate, Fresher for Recruitment, Not ok with TxxampC, Not suitable', 60, '0000-00-00 00:00:00', 1),
(9246, 9022, 59, 3, 0, 'Selected for B2B in PT only, Given high pay for B2B,should utilise the candidate for Sales Appointment too', 60, '0000-00-00 00:00:00', 1),
(9247, 9015, 59, 4, 0, 'Communication Average,seems slow 5050 profile,need to open a lot kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9248, 9024, 59, 5, 0, 'Communication ok, no sustainability 1yr 2 companies, not in a stable position worked as HR for 6 months, Sales 7 months now appears for the backend positions, not comfortable much with TxxampC, also his expectation is high min 18K focusing on the relocation.Will not sustain and run for a long.', 60, '0000-00-00 00:00:00', 1),
(9249, 9014, 59, 5, 0, 'Communication ok, candidate looking for IT recruitment, also not comfortable with TxxampC being a fresher, he is also clear with the thoughts that will look for other opportunities in a short span.will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9250, 9025, 59, 2, 0, 'Fresher have interest to learn,2nd round interviewed by Kaviya, Candidate no basics in Skills if he comes back after a week lets try', 60, '0000-00-00 00:00:00', 1),
(9251, 9016, 53, 7, 0, 'selected for b2b. pls cnfrm the salary and DOJ', 59, '2022-06-14 05:48:22', 1),
(9252, 9029, 86, 4, 0, 'selected for next round', 60, '0000-00-00 00:00:00', 1),
(9253, 9022, 53, 7, 0, 'selected for b2b. pls cnfrm the doj and salary', 59, '2022-06-14 06:13:54', 1),
(9254, 9015, 53, 1, 0, NULL, 59, '2022-06-14 06:17:38', 1),
(9255, 8979, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9256, 9006, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9257, 9022, 59, 3, 0, 'Selected for B2B in PT only, Given high pay for B2B,should utilise the candidate for Sales Appointment too', 53, '2022-06-15 11:10:33', 1),
(9258, 8746, 59, 3, 0, 'Selected for Arumbakkam team consultant Role', 53, '2022-06-15 11:13:35', 1),
(9259, 9039, 74, 7, 0, 'he is ok with the team knowing two three languages and well profiled 3 years experience in karvy technology icici process and rbi company life insurance.....................and 1 years in abroad mothers health issues and married have no baby so he planned to stay in thanjavur 45mins travel for home to office but salary expected high 16k but ok with 14k kindly confirm once and sustainability also...no bike and laptop ', 60, '0000-00-00 00:00:00', 1),
(9260, 9008, 74, 7, 0, 'age around 28 but poor family background have lotsof exerience in sales and collection sales skills and pitching is good have no laptop father passed and need to update the job for carrier security so highly job need and 1 year once 3 or 4 company shifted in thanjavur so sustainability issue is there kindly confirm once expected 12k take home have bike and know about insurance', 60, '0000-00-00 00:00:00', 1),
(9261, 9028, 24, 5, 0, 'he is only interested in non voice process only.. and not suitable for our profile..', 60, '0000-00-00 00:00:00', 1),
(9262, 9043, 39, 7, 3, 'CANDIDATE IS OK. JOINING NEED TO CONFIRM', 60, '0000-00-00 00:00:00', 1),
(9263, 9043, 60, 1, 0, NULL, 39, '2022-06-15 03:37:13', 1),
(9264, 9041, 39, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9265, 9042, 39, 5, 1, '12th only completed he is planing eve college in future.he will not sustain', 60, '0000-00-00 00:00:00', 1),
(9266, 9039, 59, 3, 0, 'Selected fr Thanjavur Consultant Role', 74, '2022-06-15 03:46:40', 1),
(9267, 9008, 59, 5, 0, 'Not reposding the calls properly seems not interested in the position\n', 74, '2022-06-15 03:49:27', 1),
(9268, 8992, 18, 7, 3, 'Selected for Panid Team. Ready to join on mondy. Can give 12 to 15% hike from current package. Carefully check his PF Calculations and give package.', 80, '2022-06-15 04:23:20', 1),
(9269, 9037, 59, 5, 0, 'Not Suitable For Our Roles, Will not sustain ', 60, '0000-00-00 00:00:00', 1),
(9270, 9040, 59, 5, 0, 'not ready to take calls ,not comfortable in targets,not suitable', 60, '0000-00-00 00:00:00', 1),
(9271, 8992, 60, 1, 0, NULL, 18, '2022-06-16 11:56:58', 1),
(9272, 9046, 56, 4, 0, 'selected ', 60, '0000-00-00 00:00:00', 1),
(9273, 9052, 74, 7, 0, 'she is ok with the team voice is clear and fit for telesales ......already worked in bluechip 3 month with 13k salary package and releived now have salary slip also no laptop but need to arange and monday joining is ok 11 k salary expected ......45mins travel from home.......father farmer and poor background only kindly check and confirm', 60, '0000-00-00 00:00:00', 1),
(9274, 9051, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9275, 9046, 59, 3, 0, 'Selected for Manivel Team with PF/PT', 56, '2022-06-16 03:24:06', 1),
(9276, 9016, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2022-06-16 04:32:42', 1),
(9277, 9052, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-06-16 04:49:25', 1),
(9278, 9055, 59, 4, 0, 'Have Designing Exp kindly check and give your inputs', 60, '0000-00-00 00:00:00', 1),
(9279, 9057, 59, 5, 0, 'Frequent job changes no stable with the positions,will not sustain and handle the sales pressure', 60, '0000-00-00 00:00:00', 1),
(9280, 9049, 59, 2, 0, 'Have knowledge in Mern,but in dilemma for the joining,interviewed by Arun Kaviya Tamilmani Gokul', 60, '0000-00-00 00:00:00', 1),
(9281, 9050, 59, 4, 0, 'Communication ok have exp in Telecalling Can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9282, 9054, 59, 5, 0, 'Prefers to work in non voice but no communication as we expected', 60, '0000-00-00 00:00:00', 1),
(9283, 9050, 11, 1, 0, NULL, 59, '2022-06-16 06:54:08', 1),
(9284, 9055, 69, 5, 0, 'Candidate did not turn up after giving task\n', 59, '2022-06-16 06:57:01', 1),
(9285, 9062, 74, 7, 0, 'he is well profiled and ok with the process suit for telesales and team,,,,,,,,,,already working in global health care as AR caller US shift and releived .....ags health care due to health issue he is releived ............and now looking job in thanjavur.......poor family background only.......have laptop and bike ........expected 15k kindly confirm once', 60, '0000-00-00 00:00:00', 1),
(9286, 9062, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-06-17 03:44:24', 1),
(9287, 9065, 24, 4, 0, 'candidate okay .. expt salary 15k', 60, '0000-00-00 00:00:00', 1),
(9288, 9064, 24, 5, 0, 'Candidate 2hrs travel time.. so she will be discuss with family and update so we rejected..', 60, '0000-00-00 00:00:00', 1),
(9289, 9063, 24, 5, 0, 'Candidate Rejected.. sustainability doubt so we reject also Interviewed Ramesh sir ', 60, '0000-00-00 00:00:00', 1),
(9290, 9061, 59, 5, 0, 'Communication no preferred speaking only in tamil,have exp using excel but not much strong,2nd round interviewed by herash and rejected\n', 60, '0000-00-00 00:00:00', 1),
(9291, 9065, 88, 7, 0, 'selected for RE role', 24, '2022-06-17 08:17:36', 1),
(9292, 9065, 59, 3, 0, 'Selected for Erode - Suthagar Team Consultant Role\n', 88, '2022-06-18 12:36:00', 1),
(9293, 9068, 24, 5, 0, 'Candidate Observations skills is low.... Ramesh sir also Interviewed ', 60, '0000-00-00 00:00:00', 1),
(9294, 9074, 24, 4, 0, 'Candidate Selected.. expt Salary 10k to 12k ', 60, '0000-00-00 00:00:00', 1),
(9295, 9073, 24, 4, 0, 'Selected 10k to 12k.. Monday joining', 60, '0000-00-00 00:00:00', 1),
(9296, 9074, 88, 7, 0, 'Selected for RE', 24, '2022-06-18 03:45:33', 1),
(9297, 9073, 88, 7, 0, 'Selected for RE', 24, '2022-06-18 03:47:05', 1),
(9298, 9075, 59, 2, 0, 'Fresher Applied for REactNative,we checked for Flutter Long run doubts she is comfortable for 1.5 yrs post that may get marry and move on,if she come back with TxxampC let us try', 60, '0000-00-00 00:00:00', 1),
(9299, 9072, 59, 5, 0, 'Not comfort with timings have exp in telecalling but particularly looking for Timings also not ready to handle the pressure Target', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(9300, 9069, 59, 4, 0, 'Fresher for our Sales,sustainability and Pressure handling doubts,internal reference from Thiyagarajan, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9301, 9070, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9302, 9070, 57, 4, 0, 'candidate is ok , kindly confirm the joining date and salary. \nfresher', 59, '2022-06-18 06:20:16', 1),
(9303, 9069, 88, 5, 0, 'Not suitable for role', 59, '2022-06-18 06:24:18', 1),
(9304, 9071, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9305, 9073, 59, 3, 0, 'Selected fr consultant Role - Suthagar Team', 88, '2022-06-18 06:59:20', 1),
(9306, 9074, 59, 3, 0, 'Selected Fr Consultant Role - Suthagar Team', 88, '2022-06-18 06:59:51', 1),
(9307, 9047, 59, 3, 0, 'Selected for Arumbakkam Elite Team in Staff Role PF/ESI/PT\n', 14, '2022-06-20 04:17:47', 1),
(9308, 9081, 59, 5, 0, 'Dropped- too long distance, also she is prefers to work close to poonamalle.Not ready to join', 14, '2022-06-20 04:18:52', 1),
(9309, 8996, 59, 3, 0, 'Selected for Staff Role Patroniss', 14, '2022-06-20 04:20:23', 1),
(9310, 9029, 18, 5, 0, 'Know this Candidate Not suitable', 86, '2022-06-20 05:50:36', 1),
(9311, 9076, 59, 4, 0, 'Communicaiton Ok have exp in life insurance Sales can give a try for our RM roles check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9312, 9085, 59, 5, 0, 'Have Knowledge in MERN,Spent around 47K and doing course not comfortable in TxxampC,Need some time to confirm his position,if he comes back let us see\n', 60, '0000-00-00 00:00:00', 1),
(9313, 9083, 59, 5, 0, 'Appeared for Telecaller process,also not clear with the profile to go,will not sustain and not suitable left without completing the round', 60, '0000-00-00 00:00:00', 1),
(9314, 9084, 59, 2, 0, 'Communicaiton ooooooook,no clear with the passion towards the job,if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(9315, 9079, 59, 5, 0, 'no communication need to open a lot will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(9316, 9078, 59, 5, 0, 'Communicatino Average from cAMS,repeated work much into nonvoice only,not suitable', 60, '0000-00-00 00:00:00', 1),
(9317, 9080, 59, 5, 0, 'Communicaiton Ok,Fresher for MIS,Need to train a lot not comfort in TxxampC checked her written skill also not upto the mark as we expected', 60, '0000-00-00 00:00:00', 1),
(9318, 9076, 86, 4, 0, 'Selected for Next Round', 59, '2022-06-20 07:55:46', 1),
(9319, 9059, 93, 7, 0, 'Shortlisted ', 60, '0000-00-00 00:00:00', 1),
(9320, 9077, 24, 4, 0, 'Candidate okay.. Expct Salary 13k to 15k ', 60, '0000-00-00 00:00:00', 1),
(9321, 9070, 88, 7, 0, 'Selected for RE', 57, '2022-06-21 11:31:19', 1),
(9322, 9077, 88, 7, 0, 'Selected for RE', 24, '2022-06-21 11:53:01', 1),
(9323, 9077, 59, 3, 0, 'Selected for RE Suthagar Erode - Consultant Role', 88, '2022-06-21 12:26:02', 1),
(9324, 9059, 59, 5, 0, 'Not interested in the position\n', 93, '2022-06-21 12:30:24', 1),
(9325, 9088, 59, 2, 0, 'Candidate have basic knowledge in HTML,CSS,JS,Can give a try ok with TxxampC,but not sure.2nd Round interviewed by Dinesh', 60, '0000-00-00 00:00:00', 1),
(9326, 9092, 59, 3, 0, 'Selected for Babu Team in PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9327, 9070, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 88, '2022-06-21 05:10:11', 1),
(9328, 9092, 89, 7, 0, 'Selected ', 59, '2022-06-21 07:57:46', 1),
(9329, 9098, 39, 7, 4, 'Candidate is shortlisted. Pls confirm joining date and salary process', 60, '0000-00-00 00:00:00', 1),
(9330, 9098, 60, 1, 0, NULL, 39, '2022-06-22 11:08:41', 1),
(9331, 9076, 18, 7, 0, 'Selected For Mani team. need one Month time for Notice. Current CTC is 4L. Negotiate and do the needful', 86, '2022-06-22 02:42:57', 1),
(9332, 9106, 59, 5, 0, 'Fresher for Digital,have 6 months in sms campaign current 27.5K,expected too high and rejected in the 2nd round by Reyaz', 60, '0000-00-00 00:00:00', 1),
(9333, 9103, 59, 2, 0, '2nd round selected by Gokul Can give her 12K TH candidate yet to give her confirmation', 60, '0000-00-00 00:00:00', 1),
(9334, 9104, 59, 5, 0, 'Have Exp in Recruitment,Salary Exp is high,Will ot sustain and not comffort in TxxampC', 60, '0000-00-00 00:00:00', 1),
(9335, 9102, 59, 5, 0, 'Have knowledge in IT skills,Rejected in the 2nd rount by LAtha not suitable', 60, '0000-00-00 00:00:00', 1),
(9336, 9099, 59, 5, 0, 'Syed abthali Reference,Not much interested to take Calls looking for non Voice no communication not suitable and will not sustain', 60, '0000-00-00 00:00:00', 1),
(9337, 9095, 59, 4, 0, 'Seems not much suits for the Role,5050 profile can give a try and analyse in 7 days', 60, '0000-00-00 00:00:00', 1),
(9338, 9095, 89, 1, 0, NULL, 59, '2022-06-22 07:30:02', 1),
(9339, 9116, 39, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9340, 9117, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9341, 9094, 59, 3, 0, 'Selected for GK Sir Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9342, 9127, 59, 3, 0, 'Selected for Babu Team,5050 Profile Sustainability Doubts a lot with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9343, 9126, 59, 3, 0, 'Selected for Kannan Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9344, 9124, 59, 5, 0, 'Communication no,no ideas in the recruitment,not open with TxxampC,will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(9345, 9125, 59, 5, 0, 'Need to open a lot will not handle our pressure', 60, '0000-00-00 00:00:00', 1),
(9346, 9118, 59, 4, 0, '5050 profile ,fresher for Sales sounding good but not sure with sustainability kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9347, 9119, 59, 5, 0, '8 months 2 companies no communication,confidence level poor,looking much on the distance,will not sustain', 60, '0000-00-00 00:00:00', 1),
(9348, 9129, 59, 5, 0, 'Have Exp in Star Health Insurance but not ready to go with same Telecalling,scheduled for Mutual Fund Coordinator,but no communication and not suitable .Internal reference - Raghu', 60, '0000-00-00 00:00:00', 1),
(9349, 9117, 51, 4, 0, 'moved to nxt set of interview with Sir', 59, '2022-06-24 04:01:09', 1),
(9350, 9094, 31, 4, 4, 'candidate is okay, 45 days notice period ', 59, '2022-06-24 04:09:58', 1),
(9351, 9127, 89, 7, 0, 'Selected ', 59, '2022-06-24 04:11:20', 1),
(9352, 9126, 88, 7, 0, 'Selected for RE', 59, '2022-06-24 04:12:38', 1),
(9353, 9118, 51, 5, 0, 'not ok', 59, '2022-06-24 04:29:44', 1),
(9354, 9112, 59, 2, 0, '5050 profile have sales exp but not an insurance one,Pressure and Target handling doubts,can check for RM Profile do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9355, 9113, 59, 5, 0, 'Not ready to take calls,communicaiton Average,not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(9356, 9114, 59, 5, 0, 'Have Exp in Backend,but not much strong in excel as we expected,writting skills is not upto the mark,long run doubts,not ready to take calls', 60, '0000-00-00 00:00:00', 1),
(9357, 9126, 59, 3, 0, 'Selected for Kannan Team with PF/ESI/PT', 88, '2022-06-24 05:41:28', 1),
(9358, 9092, 88, 7, 0, 'Selected for RE', 89, '2022-06-24 05:58:42', 1),
(9359, 9127, 88, 7, 0, 'Selected for RE', 89, '2022-06-24 05:59:08', 1),
(9360, 9127, 59, 3, 0, 'Selected for Babu Team,5050 Profile Sustainability Doubts a lot with PF/ESI/PT', 88, '2022-06-24 07:31:34', 1),
(9361, 9092, 59, 3, 0, 'Selected for Babu Team in PF/ESI/PT', 88, '2022-06-24 07:31:58', 1),
(9362, 9134, 59, 5, 0, 'Too long distance currently working in Kodambakkam and looking for change due to the distance only will not sustain', 60, '0000-00-00 00:00:00', 1),
(9363, 9135, 59, 5, 0, 'Too Long Distance Currently Working In Kodambakkam And Looking For Change Due To The Distance Only Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(9364, 8937, 59, 2, 0, 'Dsiscussed 15K for 3 months if achieved 12 profiles per month then 2K incentive PM and the salary will be revised to 2.4LPA after 3 months...Candidate yet to give her confirmation', 60, '0000-00-00 00:00:00', 1),
(9365, 9139, 59, 4, 0, 'schedule her for F2F in Thanjavur not suits for ESales also high CTC expectation', 60, '0000-00-00 00:00:00', 1),
(9366, 9122, 59, 4, 0, 'Communication ok have exp in sales, but need to check with his sustainability, Salary exp is high but can give a try for RM profile.I have scheduled him for the 2nd round virtual, will let you know once done with the interview.', 60, '0000-00-00 00:00:00', 1),
(9367, 9141, 59, 5, 0, 'Fresher,Yet to complete her graduation,Said not interested in technical but attended almost 10-15 interview in the core technical only,Not much ok with fluency communication,Sustainability doubts a lot', 60, '0000-00-00 00:00:00', 1),
(9368, 9142, 59, 5, 0, 'Have Exp in Logistics domain,need to check her writting Skills,5050 profile,ask her to come for 2nd round post lunch but didnt appear', 60, '0000-00-00 00:00:00', 1),
(9369, 9139, 60, 1, 0, NULL, 59, '2022-06-25 06:18:55', 1),
(9370, 9122, 44, 1, 0, NULL, 59, '2022-06-25 06:23:40', 1),
(9371, 9094, 29, 7, 3, 'selected for RM, refer resume for details', 31, '2022-06-26 12:04:53', 1),
(9372, 9076, 60, 1, 0, NULL, 18, '2022-06-26 04:33:35', 1),
(9373, 9149, 24, 4, 0, 'Candidate Selected Freshers Expect 15k But We Provide Our Company Nomxquots..', 60, '0000-00-00 00:00:00', 1),
(9374, 9148, 24, 4, 0, 'Candidate selected fresher expect 15k but we provide our company nomxquots', 60, '0000-00-00 00:00:00', 1),
(9375, 9128, 59, 5, 0, 'Communication Average,not much comfort in TxxampC Too long Distance around 50kms up and down will not sustain', 60, '0000-00-00 00:00:00', 1),
(9376, 9130, 59, 4, 0, 'Have 6 months Exp in Calling but not a relevant one can give a try for ESales Profile kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9377, 9151, 59, 4, 0, 'Have 6 Months Exp In Calling But Not A Relevant One Can Give A Try For ESales Profile Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9378, 9152, 59, 5, 0, 'Not comfort in Field Sales,Looking only for Collection Calls will not run inour profile for a long', 60, '0000-00-00 00:00:00', 1),
(9379, 9153, 59, 5, 0, 'Communication No,Prefers to work in non voice positions too,not suitable for Reccruiter Have a long career Gap will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(9380, 9148, 88, 7, 0, 'Selected for RE', 24, '2022-06-27 03:22:33', 1),
(9381, 9149, 88, 7, 0, 'Selected for RE', 24, '2022-06-27 03:23:46', 1),
(9382, 9148, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT', 88, '2022-06-27 03:43:16', 1),
(9383, 9149, 59, 3, 0, 'Selected for Suthagar Team with PF/ESI/PT Staff Role', 88, '2022-06-27 03:43:46', 1),
(9384, 9130, 11, 1, 0, NULL, 59, '2022-06-27 07:10:33', 1),
(9385, 9151, 11, 1, 0, NULL, 59, '2022-06-27 07:10:56', 1),
(9386, 9111, 91, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9387, 9168, 59, 3, 0, 'Selected for Thanjavur in consultant Role', 74, '2022-06-28 04:32:19', 1),
(9388, 9163, 59, 5, 0, 'Dropped Salary Exp is high also having attitude issue.For CRM role Exp take home 15 after PF/ESI/PT', 74, '2022-06-28 04:36:12', 1),
(9389, 9171, 93, 7, 0, 'Shortlisted', 60, '0000-00-00 00:00:00', 1),
(9390, 9171, 60, 1, 0, NULL, 93, '2022-06-28 06:35:45', 1),
(9391, 9165, 59, 5, 0, 'Scheduled with the 2ndd round with kavya IT and got rejected not much strong in the basics of Javascript', 60, '0000-00-00 00:00:00', 1),
(9392, 9159, 59, 5, 0, 'Very 5050 profile,fresher for Sales,sustainability doubts kindly check and let me know your inpputs', 60, '0000-00-00 00:00:00', 1),
(9393, 9158, 59, 5, 0, 'Communication Average,Fresher for Sales no basic ideas in Insurance Domain,left his previous work due to pressure will not sustain and not suitable\n', 60, '0000-00-00 00:00:00', 1),
(9394, 9164, 59, 5, 0, 'Not interested in telesales,not showing importance towards the job,will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9395, 9161, 39, 7, 4, 'candidate is ok for me. kindly cnfrm from your side', 60, '0000-00-00 00:00:00', 1),
(9396, 9162, 59, 4, 0, '5050 Profile no relevant Exp,Sounding Good can give atry kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9397, 9169, 59, 4, 0, 'Communication ok have exp in showroom Sales new to telecalling sales,5050 profile sustainability in long run doubts ,can give a try for RE check and let me know your interest\n', 60, '0000-00-00 00:00:00', 1),
(9398, 9162, 89, 1, 0, NULL, 59, '2022-06-28 07:04:31', 1),
(9399, 9169, 57, 1, 0, NULL, 59, '2022-06-28 07:05:51', 1),
(9400, 9170, 59, 2, 0, 'Fresher for Telesales,can give a try for Arumbakkam,candidate will come back with her confirmation,based on that willl schedule her for 2nd round in arumbakkam', 60, '0000-00-00 00:00:00', 1),
(9401, 9182, 59, 2, 0, 'Have Knowledge in Mern Skills need to check with family on the TxxampC,if he comes back let us try\n', 60, '0000-00-00 00:00:00', 1),
(9402, 9180, 59, 5, 0, 'Not opening ,not suitable for our roles,will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(9403, 9181, 59, 5, 0, 'Fresher ,have a plan to go with B.Ed,need to open a lot,Being fresher pressure handling and sustainability doubt on this candidate', 60, '0000-00-00 00:00:00', 1),
(9404, 9175, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9405, 9174, 74, 7, 0, 'he is ok with the team and fit for telesales.......mechanical oriented core company he is working for two years and releived due to no growth in the industry so move on to telesales and 6 months working in just dial.........but due to mother health he is moved to thanjavur near needamangalam 25km 45 mins travel.............father fish market wholesale business and brother going to abroad next month one sister studying higher study................rental house only very poor background and not intrested in going to abroad need a job right now suits for telesales ......expected 12 to 13 k takehome kindly cross check once have laptop immediate joining', 60, '0000-00-00 00:00:00', 1),
(9406, 9176, 59, 3, 0, 'Selected for GK Sir Team .Gaurav Sir Commited 1.5L Business per month will lead to 20K additional', 60, '0000-00-00 00:00:00', 1),
(9407, 9123, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9408, 9123, 57, 4, 0, 'candidate is ok , kindly confirm the joining date', 59, '2022-06-29 03:58:56', 1),
(9409, 9175, 16, 7, 0, 'Selected', 59, '2022-06-29 04:07:00', 1),
(9410, 9176, 31, 4, 0, 'candidate is okay ', 59, '2022-06-29 04:09:19', 1),
(9411, 9176, 29, 7, 0, 'ok rM, need to check for 7 days and confirm', 31, '2022-06-29 04:16:31', 1),
(9412, 9117, 29, 7, 2, 'RM, check resume for details', 51, '2022-06-29 05:21:22', 1),
(9413, 9161, 60, 1, 0, NULL, 39, '2022-06-29 05:48:40', 1),
(9414, 9174, 59, 3, 0, 'Selected for Thanjavur Sithy Team in Consultant ', 74, '2022-06-29 05:58:54', 1),
(9415, 9123, 88, 7, 0, 'Selected for RE', 57, '2022-06-29 06:10:19', 1),
(9416, 9175, 60, 1, 0, NULL, 16, '2022-06-29 06:13:50', 1),
(9417, 9123, 59, 3, 0, 'Selected for Syed Team with PF/ESI/PT', 88, '2022-06-29 06:23:20', 1),
(9418, 9094, 59, 3, 0, 'Selected for GK Sir Team with PF/PT', 29, '2022-06-30 11:48:28', 1),
(9419, 9117, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 29, '2022-06-30 11:50:17', 1),
(9420, 9176, 59, 3, 0, 'Selected for GK Sir Team .Gaurav Sir Commited 1.5L Business per month will lead to 20K additional', 29, '2022-06-30 11:50:59', 1),
(9421, 9184, 59, 5, 0, 'No basic knowledge in the skills ,will not sustain in our roles for long technical reject by Latha', 60, '0000-00-00 00:00:00', 1),
(9422, 9185, 59, 3, 0, 'Selected for Thiyagu Team in consultant Role', 60, '0000-00-00 00:00:00', 1),
(9423, 9186, 59, 3, 0, 'Selected for Shanmuga Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9424, 9191, 59, 3, 0, 'Selected for RE Babu Team in consultant Role', 60, '0000-00-00 00:00:00', 1),
(9425, 9144, 59, 3, 0, 'Selected for Karthika ESales Team in Consultant Role 5%', 60, '0000-00-00 00:00:00', 1),
(9426, 9196, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9427, 9189, 59, 3, 0, 'Selected for Thiyagarajan Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(9428, 9197, 74, 7, 0, 'she is fit for team very poor back ground and having 3 sibling so highly job need salary expected take home 10k only kindly check and confirm once have laptop 45mins travel from home', 85, '0000-00-00 00:00:00', 1),
(9429, 9198, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9430, 9193, 74, 7, 0, 'she is ok with the team very talk active and job needed looking 10k take home and fit for team 45 min travel from home to office have laptop kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(9431, 9194, 74, 7, 0, 'she is ok with the team .........talk active and office near by only very poor background father doing ironing business only immediate joining and salary expected 10k take home only have laptop kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(9432, 9195, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9433, 9188, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9434, 9187, 74, 7, 0, 'she is talk active and have experience in jewellery shop for 5 years and married also no baby husband move to abroad next week so need a job expected 10k ...have laptop and immediate joining kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(9435, 9155, 14, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9436, 9190, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9437, 9144, 11, 7, 0, 'Candidate ok for E sales ', 59, '2022-06-30 04:42:08', 1),
(9438, 9191, 89, 7, 0, 'Selected ', 59, '2022-06-30 04:43:39', 1),
(9439, 9186, 44, 4, 3, 'Ji candidate ok for me need your Suggestion ', 59, '2022-06-30 04:45:08', 1),
(9440, 9189, 16, 7, 0, 'Selected', 59, '2022-06-30 04:45:56', 1),
(9441, 9185, 16, 7, 0, 'Selected', 59, '2022-06-30 04:47:12', 1),
(9442, 9144, 60, 1, 0, NULL, 11, '2022-06-30 05:14:56', 1),
(9443, 9190, 59, 3, 0, 'Selected for Manivel Team with Pf/Pt', 56, '2022-06-30 05:27:52', 1),
(9444, 9185, 60, 1, 0, NULL, 16, '2022-06-30 06:39:36', 1),
(9445, 9189, 60, 1, 0, NULL, 16, '2022-06-30 06:40:07', 1),
(9446, 9147, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2022-06-30 07:09:33', 1),
(9447, 9204, 56, 4, 0, 'Shortlisted', 60, '0000-00-00 00:00:00', 1),
(9448, 9191, 88, 7, 0, 'selected for RE', 89, '2022-07-01 12:48:06', 1),
(9449, 9191, 59, 3, 0, 'Selected for RE Babu Team in consultant Role', 88, '2022-07-01 01:27:23', 1),
(9450, 9204, 59, 3, 0, 'Selected for Manivel Team with PF/PT', 56, '2022-07-01 02:38:45', 1),
(9451, 9200, 14, 5, 0, 'Not suitable for this profile', 85, '0000-00-00 00:00:00', 1),
(9452, 9203, 59, 5, 0, 'Salary Discussed and confirmed but candidate didnt show interest in the profile later', 60, '0000-00-00 00:00:00', 1),
(9453, 9186, 29, 7, 2, 'RM sanmugam team', 44, '2022-07-01 02:57:42', 1),
(9454, 9206, 14, 5, 0, 'Not suitable for this profile', 85, '0000-00-00 00:00:00', 1),
(9455, 9194, 59, 5, 0, 'Discussed and finalised the package but now the candidate is not interested much as she is not comfortable to take calls continuously', 74, '2022-07-01 04:31:51', 1),
(9456, 9193, 59, 5, 0, 'Dropped.Candidate is not clear with her interest,just like that blocking the numbers,Will not join and conveyed the same to recruiter/Sales Manager', 74, '2022-07-01 04:33:35', 1),
(9457, 9197, 59, 5, 0, 'Dropped.Candidate Is Not Clear With Her Interest,Now she is committing that she doesnt have laptop and ,Will Not Join Conveyed The Same To Recruiter/Sales Manager', 74, '2022-07-01 04:37:01', 1),
(9458, 9187, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-01 04:51:07', 1),
(9459, 9209, 59, 4, 0, 'have Exp for Few months but not a relevant one,5050Profile need to train a lot kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9460, 9210, 59, 4, 0, 'Have Exp For Few Months But Not A Relevant One,5050Profile Need To Train A Lot Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9461, 9207, 59, 5, 0, 'Communication Average,Too long Distance from Tiruvallur,Not much suits for Digittal Marketng', 60, '0000-00-00 00:00:00', 1),
(9462, 9203, 57, 4, 0, 'candidate is ok kindly confirm the salary ', 59, '2022-07-01 05:04:57', 1),
(9463, 9209, 16, 5, 0, 'Low Profile', 59, '2022-07-01 05:06:59', 1),
(9464, 9210, 16, 1, 0, NULL, 59, '2022-07-01 05:07:34', 1),
(9465, 9202, 39, 7, 3, 'im ok with the candidate. pls check from your side', 60, '0000-00-00 00:00:00', 1),
(9466, 9202, 60, 1, 0, NULL, 39, '2022-07-02 10:46:02', 1),
(9467, 9203, 88, 7, 0, 'Selected for RE', 57, '2022-07-02 10:54:35', 1),
(9468, 9177, 74, 7, 0, 'she is well profiled and talk active good communication skill..............telecalling is a major passion.............she ia experienced in telecalling ecom private limited shared partner of brother process...complete aqua culture in chennai so very intrested in telesales willing to ready laptop tooo expected 11 to 12k.............from home 30 min travel now she want to vacate thing from andhra so need time for joning', 85, '0000-00-00 00:00:00', 1),
(9469, 9216, 74, 7, 0, 'she is matured and talkactive but she is married but have preferance for job first priority .....2 year child having but motherinlaw take care of child husband in foreign so no issues butdoubt only for she is married .we will check once need to ready laptop immediate joining 10k salary', 85, '0000-00-00 00:00:00', 1),
(9470, 9215, 59, 3, 0, 'Selected for Thiyagu Team - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(9471, 9215, 16, 7, 0, 'SELECTED', 59, '2022-07-02 12:09:45', 1),
(9472, 9183, 59, 2, 0, 'Communication ok seems not much confident 5050 profile can give a try,Need to confirm again and schedule her for the another round', 60, '0000-00-00 00:00:00', 1),
(9473, 9177, 59, 3, 0, 'Selected for Thanjavur in Consultant Role', 74, '2022-07-02 04:07:11', 1),
(9474, 9216, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-02 04:11:15', 1),
(9475, 9223, 59, 5, 0, 'Not suitable every 6 months job changes not showing importance to the job will not sustain', 60, '0000-00-00 00:00:00', 1),
(9476, 9222, 59, 3, 0, 'Selected for ESales in Staff Role - Final Round interviewed by gaurav', 60, '0000-00-00 00:00:00', 1),
(9477, 9218, 14, 7, 0, 'Selected need to confirm salary and joining date', 85, '0000-00-00 00:00:00', 1),
(9478, 9219, 14, 5, 0, 'Salary expectation high ', 85, '0000-00-00 00:00:00', 1),
(9479, 9220, 14, 5, 0, 'Expected salary high', 92, '0000-00-00 00:00:00', 1),
(9480, 9221, 14, 5, 0, 'Childish behavior and not suitable for this profile ', 85, '0000-00-00 00:00:00', 1),
(9481, 9224, 14, 5, 0, 'Not suitable for tele calling profile', 85, '0000-00-00 00:00:00', 1),
(9482, 9229, 74, 7, 0, 'he is ok with telecalling profile......1year experience in bajaj sales exective......expected 13k and 14k kindly confirm once........have laptop already completed degree in thanjavur only so travelling no issue ready to joining immediately kindly confirm once', 92, '0000-00-00 00:00:00', 1),
(9483, 9186, 59, 3, 0, 'Selected for Shanmuga Team with PF/ESI/PT', 29, '2022-07-04 12:57:49', 1),
(9484, 9229, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-07-04 03:14:02', 1),
(9485, 9237, 74, 7, 0, 'he is ok with the team good comunication and job need immediate joining and already work in mechanical company 6 months and releived ............pursuing engg in a reputed college so good and profesional expected 10 to 11k kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(9486, 9249, 74, 7, 0, 'he is well profiled and talk active...full cattered accounts studying but not continue still now so very poor background so job need and good profile currently worked as a accountant in agencies for 12k and agencies closed within a week so need to join a job within two days expected 12k but suitable candidate only have laptop but bit issues in laptop kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(9487, 8839, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(9488, 9245, 59, 4, 0, 'Fresher Can be trained for RE profile,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9489, 9251, 74, 7, 0, 'she is ok with the profile very talk activve and have laptop need to servise the laptop...highly job need and expected 10k take home only,,,,,father farmer ready to join kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9490, 9246, 59, 4, 0, 'Fresher Can Be Trained For RE Profile,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9491, 9248, 59, 4, 0, 'Having 4 months telecalling Exp Family need is there,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9492, 9232, 59, 3, 0, 'need to serve notice Salary TH 13K plus 208', 60, '0000-00-00 00:00:00', 1),
(9493, 9237, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-04 04:40:45', 1),
(9494, 9241, 59, 5, 0, 'Fresher sounding low 5050 profile checked with banu for 2nd round and rejected', 60, '0000-00-00 00:00:00', 1),
(9495, 9235, 59, 5, 0, 'Not much exp in Recruitment but Salary Exp is high,no sustainability in the previous exp,will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9496, 9247, 59, 5, 0, 'Fresher,Already holding an offer for 12K and looking for more being a fresher will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(9497, 9243, 59, 5, 0, 'Communication average and much prefers for Non Voice will not sustain', 60, '0000-00-00 00:00:00', 1),
(9498, 9231, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 60, '0000-00-00 00:00:00', 1),
(9499, 8839, 57, 4, 0, 'confirm the joining date', 59, '2022-07-04 05:00:14', 1),
(9500, 9245, 57, 4, 0, 'kindly confirm the joining date', 59, '2022-07-04 05:12:22', 1),
(9501, 9246, 57, 4, 0, 'fresher, candidate is ok .\nkindly confirm the joining date', 59, '2022-07-04 05:12:52', 1),
(9502, 9248, 53, 1, 0, NULL, 59, '2022-07-04 05:14:23', 1),
(9503, 9251, 59, 3, 0, 'selected for Thanjavur - Consultant Role', 74, '2022-07-04 05:39:59', 1),
(9504, 9249, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-04 05:47:16', 1),
(9505, 9215, 60, 1, 0, NULL, 16, '2022-07-05 09:56:19', 1),
(9506, 9255, 39, 7, 3, 'candidate is shortlisted. cnfrm package and joining from your side', 60, '0000-00-00 00:00:00', 1),
(9507, 9268, 74, 7, 0, 'she ok with the team talk active and family background is good have own laptop also currently working as a admin in maruthi suzuki pillai and sons franchise showroom ....completed mba finance....ready to join but expected 15k we will convince to 12k alteady getting take home 8 500......so check and confirm once', 85, '0000-00-00 00:00:00', 1),
(9508, 9267, 74, 7, 0, 'she is ok with the team need to ready laptop........family in poor situation.........need to expect 10 to 13k ..............already working in pillai and sons for 1 year due to salary issue she releived and highly job need...kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9509, 9253, 24, 5, 0, 'time not suitable and not speaking well in skills', 85, '0000-00-00 00:00:00', 1),
(9510, 9245, 88, 1, 0, NULL, 57, '2022-07-05 03:11:17', 1),
(9511, 9246, 88, 1, 0, NULL, 57, '2022-07-05 03:11:46', 1),
(9512, 9271, 59, 5, 0, 'Too lon distance came along with his friends,will not sustain and run for a long', 60, '0000-00-00 00:00:00', 1),
(9513, 9272, 59, 5, 0, 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', 60, '0000-00-00 00:00:00', 1),
(9514, 9244, 59, 5, 0, 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', 60, '0000-00-00 00:00:00', 1),
(9515, 9233, 59, 5, 0, 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', 60, '0000-00-00 00:00:00', 1),
(9516, 9133, 59, 5, 0, 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', 60, '0000-00-00 00:00:00', 1),
(9517, 9266, 59, 3, 0, 'Selected for Babu Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(9518, 9265, 59, 4, 0, 'Communication ok Fresher can be trained but need to focus on her distance kindly check and let me know your inputs\n', 60, '0000-00-00 00:00:00', 1),
(9519, 9261, 59, 5, 0, 'Too long Distance Have Exp in Recruitment but into sourcing skills,No sustainability in her previous exp,Longrun doubts', 60, '0000-00-00 00:00:00', 1),
(9520, 9256, 59, 5, 0, 'Communication Average,No basic ideas in the recruitment,no clarity in job will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9521, 9257, 59, 5, 0, 'Fresher no idea on the job Preferred looking for any opportunities as of now ,but much focused in Accounts opening only', 60, '0000-00-00 00:00:00', 1),
(9522, 9274, 59, 3, 0, 'Staff Role - Babu Team', 60, '0000-00-00 00:00:00', 1),
(9523, 9273, 59, 4, 0, 'Communication ok Fresher can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9524, 9254, 59, 5, 0, 'Salary Exp is high and not ready to come down', 60, '0000-00-00 00:00:00', 1),
(9525, 9218, 59, 3, 0, 'Selected for Arumbakkam in Consultant Role\n', 14, '2022-07-05 04:55:02', 1),
(9526, 9266, 89, 7, 0, 'selected', 59, '2022-07-05 05:15:30', 1),
(9527, 9265, 16, 5, 0, 'Sustain Doubt', 59, '2022-07-05 05:17:10', 1),
(9528, 9254, 18, 7, 4, 'Selected for Mani Team. Expecting salary is 4.5 but cannot give as last CTC is 3L. Kindly neotiate and can give target for Instant apprisal. Ready to join next week.', 59, '2022-07-05 05:20:07', 1),
(9529, 9273, 57, 4, 0, 'CONFIRM THE JOINING DATE', 59, '2022-07-05 05:21:23', 1),
(9530, 9274, 89, 7, 0, 'selected', 59, '2022-07-05 05:22:32', 1),
(9531, 9250, 56, 4, 0, 'Selected', 60, '0000-00-00 00:00:00', 1),
(9532, 9222, 11, 7, 0, 'candidate ok for E sales ', 59, '2022-07-05 06:32:56', 1),
(9533, 9222, 59, 3, 0, 'Selected for ESales in Staff Role - Final Round interviewed by gaurav', 59, '2022-07-05 06:32:56', 1),
(9534, 9255, 60, 1, 0, NULL, 39, '2022-07-05 06:47:05', 1),
(9535, 9260, 74, 7, 0, 'she is ok with the team and highly job need and expected 10k and have laptop and display problem joining monday....already work in pondicherry relative house is there and getting 8.5 k salary now she is ok with the profile', 60, '0000-00-00 00:00:00', 1),
(9536, 9268, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-07-05 07:04:02', 1),
(9537, 9260, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-05 07:06:07', 1),
(9538, 8839, 88, 7, 0, 'Selected for RE', 57, '2022-07-06 10:28:28', 1),
(9539, 9273, 88, 1, 0, NULL, 57, '2022-07-06 10:28:58', 1),
(9540, 9266, 88, 7, 0, 'selected for RE', 89, '2022-07-06 10:59:04', 1),
(9541, 9274, 88, 7, 0, 'Selected for RE', 89, '2022-07-06 10:59:38', 1),
(9542, 9266, 59, 3, 0, 'Selected for Babu Team in Staff Role', 88, '2022-07-06 11:03:12', 1),
(9543, 9274, 59, 3, 0, 'Staff Role - Babu Team', 88, '2022-07-06 11:03:36', 1),
(9544, 9250, 59, 5, 0, 'Dropped Holding an offer with Byjuxquots and expecting high Salary not ready to come down ', 56, '2022-07-06 11:52:25', 1),
(9545, 9281, 39, 7, 3, 'candidate isok. from your side check candidate communication and package', 60, '0000-00-00 00:00:00', 1),
(9546, 9281, 60, 1, 0, NULL, 39, '2022-07-06 02:44:05', 1),
(9547, 9275, 59, 2, 0, 'Have Basic knowledge in skills,need time to confirm the TxxampC with his family if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(9548, 9276, 59, 5, 0, 'No basic ideas with Skills,not much comfort with TxxampC,Will not sustain for a long not suitable', 85, '0000-00-00 00:00:00', 1),
(9549, 9277, 59, 5, 0, 'No Basic Ideas With Skills, Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable,need to check with brother for every things ', 85, '0000-00-00 00:00:00', 1),
(9550, 9278, 59, 5, 0, 'No Much ideas with skills not comfort in TxxampC Will not Join', 85, '0000-00-00 00:00:00', 1),
(9551, 9279, 59, 2, 0, 'Fresher have basic ideas need to check with family for TxxampC ', 85, '0000-00-00 00:00:00', 1),
(9552, 9280, 59, 5, 0, 'Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable,Bit Attitude Salary Exp is high', 85, '0000-00-00 00:00:00', 1),
(9553, 9283, 59, 5, 0, 'Course in Besant tech,Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable', 85, '0000-00-00 00:00:00', 1),
(9554, 9284, 59, 5, 0, 'Course In Besant Tech,Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable Too long Distance\n', 85, '0000-00-00 00:00:00', 1),
(9555, 9285, 59, 2, 0, 'Course In Besant Tech,Ok with TxxampC but need to give his confirmation after check with his family', 85, '0000-00-00 00:00:00', 1),
(9556, 9286, 59, 3, 0, 'Selectde for Syed Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(9557, 9287, 59, 5, 0, 'Not Much Comfort With TxxampC, Will Not Sustain For A Long Not Suitable Fresher no basic ideas second Round Reject', 85, '0000-00-00 00:00:00', 1),
(9558, 9286, 57, 4, 0, 'candidate is ok, pls confirm the joining ', 59, '2022-07-06 07:43:02', 1),
(9559, 8865, 24, 5, 0, 'Long Distance and scared about sales', 24, '2022-07-07 11:11:52', 1),
(9560, 9286, 88, 7, 0, 'Selected for RE', 57, '2022-07-07 11:34:32', 1),
(9561, 9299, 74, 7, 0, 'she is talkactive and very intrested in job candidate is good and highly job need .....salary expected 10k take home and completed fashion designing ........from home 15 mins only travel to office ...........need to arrange laptop she is ok with the profile father health issues so brothers and sisters take care of the family .....................kindly check once and confirm friday 8 7 22 joining ', 85, '0000-00-00 00:00:00', 1),
(9562, 9299, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-07 04:02:36', 1),
(9563, 9289, 59, 5, 0, 'Communication ok,have exp in sales Part time but no documents with him,Salary exp in Very high,Will not sustain and the distance also too long,Attended 2nd round and the feedback was same', 60, '0000-00-00 00:00:00', 1),
(9564, 9293, 59, 2, 0, 'Have basic knowledge in the skills can be trained,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9565, 9290, 59, 5, 0, 'Communication Average,Looking much for Non Voice Data Entry only,She also preferred to work in Telecalling - But got rejected in 2nd round Sales Manager', 60, '0000-00-00 00:00:00', 1),
(9566, 9295, 59, 5, 0, 'Communication ok,No sustainability in his previous Exp,also the reasons were not seems to genuine,however ask the candidate to wait for the 2nd round but he left without attending - Rejected', 60, '0000-00-00 00:00:00', 1),
(9567, 9288, 59, 5, 0, 'She in into testing and no basic ideas in PHP/React Skills will not Sustain and not much comfort with TxxampC', 60, '0000-00-00 00:00:00', 1),
(9568, 9291, 59, 5, 0, 'Communication Average, No basic ideas in the Skills, will not sustain for a long not suitable', 60, '0000-00-00 00:00:00', 1),
(9569, 9294, 59, 5, 0, 'No communication,no basic ideas fresher Will not run in a long,Will not sustain\n', 60, '0000-00-00 00:00:00', 1),
(9570, 9292, 59, 5, 0, 'Communication No, No Basic Ideas In The Skills, Will Not Sustain For A Long Not Suitab', 60, '0000-00-00 00:00:00', 1),
(9571, 9282, 59, 5, 0, 'Fresher only basic ideas in HTML/CSS need to learn a lot Not much comfort in TxxampC', 60, '0000-00-00 00:00:00', 1),
(9572, 9298, 59, 4, 0, 'Communication Good,Have Exp in Recruitment,she appeared fro RM role,Can give a try for our RM Roles,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9573, 9298, 80, 7, 0, 'Good Communication Skill. Explained very well for sales products ', 59, '2022-07-07 05:26:00', 1),
(9574, 8839, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 88, '2022-07-07 06:07:02', 1),
(9575, 9286, 59, 3, 0, 'Selectde for Syed Team in Staff Role', 88, '2022-07-07 06:08:41', 1),
(9576, 9203, 59, 5, 0, 'Salary Discussed and confirmed but candidate didnt show interest in the profile later', 88, '2022-07-07 06:28:03', 1),
(9577, 9254, 60, 1, 0, NULL, 18, '2022-07-08 09:56:01', 1),
(9578, 9298, 18, 9, 0, 'Wrongly shared to Me', 80, '2022-07-08 10:52:50', 1),
(9579, 9267, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-08 12:51:43', 1),
(9580, 9308, 74, 7, 0, 'she is ok with the team and telecalling .....highly job need and fresher only have laptop .............travelling distance is high so need to cheeck once .immeditae joining.......salary expected 10k...........completed bA and m.lib in central university...', 85, '0000-00-00 00:00:00', 1),
(9581, 9308, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-07-08 04:21:39', 1),
(9582, 9311, 74, 7, 0, 'she is talk active and fit for tele sales highly job need and immeditae joining.salary expected 10k..... father passes mother only ....no laptop need to arrange kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9583, 9311, 59, 3, 0, 'Selected For Thanjavur Consultant Role', 74, '2022-07-08 04:31:04', 1),
(9584, 9222, 60, 1, 0, NULL, 11, '2022-07-08 06:19:43', 1),
(9585, 9297, 59, 2, 0, 'Freelancer and Exp is some what high,Have project Exp but sustainability doubts as her sister is in TCS in same React Skills', 85, '0000-00-00 00:00:00', 1),
(9586, 9301, 59, 5, 0, 'No understanding,will not handle our work,not suitable', 85, '0000-00-00 00:00:00', 1),
(9587, 9304, 59, 5, 0, 'Too long Distance ,not much strong in the skills not suitable\n', 85, '0000-00-00 00:00:00', 1),
(9588, 9305, 59, 3, 0, 'Selected for Content Writing - 12K TH 2yrs SA', 85, '0000-00-00 00:00:00', 1),
(9589, 9310, 74, 5, 0, 'voice not clear not suit for team and telesales.......', 60, '0000-00-00 00:00:00', 1),
(9590, 9313, 74, 5, 0, 'voice not clear speaking problem not fit for telesales', 60, '0000-00-00 00:00:00', 1),
(9591, 9312, 74, 5, 0, 'age too high technically week and not fit for team', 60, '0000-00-00 00:00:00', 1),
(9592, 9307, 74, 5, 0, 'not suite for team voice not clear', 60, '0000-00-00 00:00:00', 1),
(9593, 9316, 59, 2, 0, 'Have done with 2nd round technical need to be trained in internship candidate should come backwith his confirmation', 85, '0000-00-00 00:00:00', 1),
(9594, 9319, 59, 5, 0, 'Not much importance towards the job,he is very clear if he gets an opportunity he will move for that positions.Will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(9595, 9321, 59, 5, 0, 'Communication average need to open a lot,Will not run in a long not suitable', 60, '0000-00-00 00:00:00', 1),
(9596, 9326, 93, 7, 0, 'Positive Attitude, interacting more experienced spoken for 16k salary take-home if possible we can provide 17k also \nlast 2 Companies releaving reason the process got shout down ', 60, '0000-00-00 00:00:00', 1),
(9597, 9326, 59, 3, 0, 'Selected for ESales Bangalore Consultant Role', 93, '2022-07-09 03:50:43', 1),
(9598, 9317, 59, 2, 0, 'Need to check the writing content,currently in Full time graduation,Communication ok,Salary Exp is also high.', 60, '0000-00-00 00:00:00', 1),
(9599, 9314, 59, 2, 0, 'Fresher have basic knowledge in HTML, CSS JS, and learnt React on his own, Seems not much convinced with the TxxampC, need time to check with family. If he comes back let us try for the technical round', 60, '0000-00-00 00:00:00', 1),
(9600, 9320, 59, 2, 0, 'Communication ok, fresher for MERN, Ongoing course with NXTwave, Already given interviews with 2 companies and waiting for the result, expecting positive. Have done some projects using HTML, CSS and Javascript. Min Salary exp is 15K being fresher.After the results from interview,he will confirm.', 60, '0000-00-00 00:00:00', 1),
(9601, 9329, 59, 5, 0, 'Looking for IT openings but not comfortable inTxxampC No basic ideas in Skills', 85, '0000-00-00 00:00:00', 1),
(9602, 9330, 59, 5, 0, 'Looking For IT Openings But Not Comfortable InTxxampC No Basic Ideas In Skills', 85, '0000-00-00 00:00:00', 1),
(9603, 9331, 59, 5, 0, 'Looking For IT Openings But Not Comfortable InTxxampC No Basic Ideas In Skills', 85, '0000-00-00 00:00:00', 1),
(9604, 9333, 59, 2, 0, 'Fresher have some basic skills knowledge in PHP,completed training in besant tech,2nd interviewed by latha and on hold candidate need to come back with her confirmation', 85, '0000-00-00 00:00:00', 1),
(9605, 9334, 59, 2, 0, 'Need time to confirm with her sister on the position and the txxampC She hold another final round interview ,if she comes back need to check', 85, '0000-00-00 00:00:00', 1),
(9606, 9339, 74, 2, 0, 'he is ok with the process and purely adament not controlled under the management and sustainability issue also kindly hold the candidate', 85, '0000-00-00 00:00:00', 1),
(9607, 9340, 31, 5, 4, 'Expecting higher salary and team handling', 85, '0000-00-00 00:00:00', 1),
(9608, 9337, 59, 4, 0, 'Communication Average,need to open a lot 5050 profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9609, 9338, 59, 5, 0, 'Candidate not showing interest as her friend not got selected', 85, '0000-00-00 00:00:00', 1),
(9610, 9335, 59, 4, 0, 'Candidate communication 4 months exp in Vissa Insurance but no proper relieving,Seems 5050 kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9611, 9332, 59, 4, 0, '5050 Profile not showing importance much with the job,Career Gap,Need to train a lot,Sustainability Doubts kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9612, 9346, 39, 7, 3, 'Candidate is ok for me.. cnfrm from your side joining and package', 60, '0000-00-00 00:00:00', 1),
(9613, 9338, 16, 7, 0, 'selected ', 59, '2022-07-11 06:21:02', 1),
(9614, 9332, 57, 1, 0, NULL, 59, '2022-07-11 06:26:41', 1),
(9615, 9343, 39, 5, 2, 'Candidate is not suit for this profile ', 60, '0000-00-00 00:00:00', 1),
(9616, 9335, 16, 1, 0, NULL, 59, '2022-07-11 06:35:23', 1),
(9617, 9337, 16, 1, 0, NULL, 59, '2022-07-11 06:41:57', 1),
(9618, 9353, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(9619, 9356, 74, 7, 0, 'she is ok with the team and suit for telecalling .........father shop keeper and very poor situation tavelling half hour only.....have laptop expected 10 to 12k salary..........already worked in a manufacturing comapany in chennai and releived so have good exposer kindly check and confirm once', 92, '0000-00-00 00:00:00', 1),
(9620, 9357, 74, 7, 0, 'he is ok with the team and very responsible person job need father doing real estate but in a poor condition.........2km from home to office .........and highly job need ...........have own laptop 11 to 12k expected salary ........immediate joining.kindly check once and confirm', 92, '0000-00-00 00:00:00', 1),
(9621, 9354, 59, 5, 0, 'No basic ideas need to open a lot will not sustain in a long run', 85, '0000-00-00 00:00:00', 1),
(9622, 9338, 60, 1, 0, NULL, 16, '2022-07-12 12:24:39', 1),
(9623, 9352, 59, 3, 0, 'Selected for Intern with 5K and salary will be fixed later based on the performance', 92, '0000-00-00 00:00:00', 1),
(9624, 9359, 59, 3, 0, 'Selected for Syed team in Consultant Role', 92, '0000-00-00 00:00:00', 1),
(9625, 9360, 59, 4, 0, 'Communication ok have Exp in Calling but not a relevant one,, can give a try for our sales profile kindly check and let me know your inputs', 92, '0000-00-00 00:00:00', 1),
(9626, 9362, 59, 5, 0, 'Nobasic Ideas Not Much Open With TxxampC Will Not Sustain', 92, '0000-00-00 00:00:00', 1),
(9627, 9361, 59, 5, 0, 'Nobasic ideas not much open with TxxampC Will not sustain', 92, '0000-00-00 00:00:00', 1),
(9628, 9359, 57, 4, 0, 'candidate is ok ,kindly confirm the joining date', 59, '2022-07-12 02:50:08', 1),
(9629, 9359, 88, 7, 0, 'selected for RE', 57, '2022-07-12 02:52:33', 1),
(9630, 9359, 59, 3, 0, 'Selected for Syed team in Consultant Role', 88, '2022-07-12 02:55:44', 1),
(9631, 9360, 71, 4, 0, 'Move to second round', 59, '2022-07-12 03:03:02', 1),
(9632, 9360, 18, 8, 0, 'Hyd Candidate and we have freezed recruitment there', 71, '2022-07-12 03:04:10', 1),
(9633, 9346, 60, 1, 0, NULL, 39, '2022-07-12 04:16:48', 1),
(9634, 9356, 59, 3, 0, 'Selected for Thanjavur Location in Consultant Role', 74, '2022-07-12 05:06:44', 1),
(9635, 9357, 59, 3, 0, 'Selected for Thanjavur Location in Consultant role', 74, '2022-07-12 05:08:53', 1),
(9636, 9326, 60, 1, 0, NULL, 30, '2022-07-12 06:30:49', 1),
(9637, 9346, 60, 1, 0, NULL, 30, '2022-07-12 06:43:53', 1),
(9638, 9380, 59, 2, 0, 'Candidate should come back with his confirmation,having basic knowledge in Skills,can be trained but sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(9639, 9378, 59, 4, 0, 'Communication Good No relevant Exp in Sales ,Fresher for this domain Salary Exp is high, Internal reference from Pamesh Prasanna', 60, '0000-00-00 00:00:00', 1),
(9640, 9379, 59, 5, 0, 'No basic ideas in MIS too Long Distance around 66KMS,will not sustain and communication Average', 60, '0000-00-00 00:00:00', 1),
(9641, 9367, 59, 5, 0, 'No Basic Ideas In MIS Too Long Distance Around 66KMS,Will Not Sustain And Communication Average', 60, '0000-00-00 00:00:00', 1),
(9642, 9372, 59, 5, 0, 'Have Basic Ideas In PHP Skills Too Long Distance,Looking for the timings,Will Not Sustain And not ready to relocate', 60, '0000-00-00 00:00:00', 1),
(9643, 9370, 59, 2, 0, 'Candidate was interviewed and was on hold after 2nd round of interview need to give his confirmation', 60, '0000-00-00 00:00:00', 1),
(9644, 9365, 59, 5, 0, 'have basic ideas in HTML,CSS, JS Too Long Distance up and down86KMS,Not ready to relocate And Communication Average', 60, '0000-00-00 00:00:00', 1),
(9645, 9368, 59, 5, 0, 'Have Basic Ideas In HTML,CSS, JS Too Long Distance Up And Down86KMS,Not Ready To Relocate And Communication Average', 60, '0000-00-00 00:00:00', 1),
(9646, 9377, 59, 5, 0, 'Have ideas in HTML,CSS,not in CRUD Doing ME in Correspondence have a plan to travel abroad in 1-2 yrs will not sustain', 60, '0000-00-00 00:00:00', 1),
(9647, 9376, 59, 5, 0, 'Need to open a lot have ideas only in HTML, CSS, not other ideas in Crud, PHP, Will not handle the pressure', 60, '0000-00-00 00:00:00', 1),
(9648, 9373, 59, 5, 0, 'Not suitable for our role need to open a lot will not sustain', 60, '0000-00-00 00:00:00', 1),
(9649, 9378, 44, 1, 0, NULL, 59, '2022-07-13 01:07:26', 1),
(9650, 9385, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9651, 9383, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9652, 9382, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9653, 9386, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9654, 9381, 56, 4, 0, 'selected for Next round', 60, '0000-00-00 00:00:00', 1),
(9655, 9381, 30, 4, 4, 'confirm the joining date suggested ctc 23k+pf', 56, '2022-07-14 09:53:48', 1),
(9656, 9381, 60, 1, 0, NULL, 30, '2022-07-14 11:16:23', 1),
(9657, 9375, 13, 7, 0, 'ok salary 10k takehome immediate joining call panni confirm pannanum', 60, '0000-00-00 00:00:00', 1),
(9658, 9375, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-07-14 03:56:27', 1),
(9659, 9406, 31, 4, 0, 'Fresher, did part time job. ', 60, '0000-00-00 00:00:00', 1),
(9660, 9339, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-07-14 05:13:12', 1),
(9661, 9339, 74, 7, 0, 'He is ok with the team and high potential...........already worked as a team leader and 3 years experience in sales .........expected 15k salary kindly confirm once .............have laptop imeediate joning and have bike also..................indhu priya reference.........', 74, '2022-07-14 05:13:12', 1),
(9662, 9406, 29, 7, 0, 'selected for rM', 31, '2022-07-14 05:13:45', 1),
(9663, 9347, 93, 4, 0, 'Fresher,going to relocate for this Job', 60, '0000-00-00 00:00:00', 1),
(9664, 9344, 93, 4, 0, 'Fresher, going to relocate for this job ', 60, '0000-00-00 00:00:00', 1),
(9665, 9344, 60, 1, 0, NULL, 93, '2022-07-14 06:36:23', 1),
(9666, 9347, 60, 1, 0, NULL, 93, '2022-07-14 06:37:11', 1),
(9667, 9406, 59, 3, 0, 'Selected for GK sir in Staff Role\n', 29, '2022-07-14 07:18:02', 1),
(9668, 9389, 59, 3, 0, 'Selected by Gokul 7 days training based on that only will get confirm', 60, '0000-00-00 00:00:00', 1),
(9669, 9393, 59, 5, 0, 'Final Round Reject by Kavya not suitable', 60, '0000-00-00 00:00:00', 1),
(9670, 9396, 59, 5, 0, 'Very Slow No basic ideas not suitable will not sustainxquot', 60, '0000-00-00 00:00:00', 1),
(9671, 9395, 59, 5, 0, 'No ideas in the skills and sustainability doubts not much active', 60, '0000-00-00 00:00:00', 1),
(9672, 9399, 59, 5, 0, 'No ideas in JS focus in Java openings Too long distance will not sustain', 60, '0000-00-00 00:00:00', 1),
(9673, 9392, 59, 5, 0, 'Bit Attitude,Already holding offers with good Pay will not join for less not suitable', 60, '0000-00-00 00:00:00', 1),
(9674, 9390, 59, 5, 0, 'No basic ideas not suitable for our Roles will not sustain', 60, '0000-00-00 00:00:00', 1),
(9675, 9394, 59, 5, 0, 'No ideas in Skills have exp in non voice no communication not suitable for other Roles', 60, '0000-00-00 00:00:00', 1),
(9676, 9400, 59, 2, 0, 'Average Skills but her sister in IT Domain already referred for some roles sustainability Doubt if he coems back let us see', 60, '0000-00-00 00:00:00', 1),
(9677, 9391, 59, 5, 0, 'Much prefer to work in Java Language not suits for our Roles', 60, '0000-00-00 00:00:00', 1),
(9678, 9408, 59, 5, 0, 'Technical Round Rejected - Have basic knowledge and the distance too long will not sustain', 85, '0000-00-00 00:00:00', 1),
(9679, 9409, 59, 5, 0, 'need to open a lot not much with basic ideas given time to learn if she come bank let us try\n', 85, '0000-00-00 00:00:00', 1),
(9680, 9410, 59, 5, 0, 'No basic ideas in Skills, need to learn If he come back after learning let us try', 85, '0000-00-00 00:00:00', 1),
(9681, 9411, 59, 2, 0, 'Communication OK,Applied for HR Fresher Profile Checked for Mutual Fund too Asked her to wait for final round but the candidate Left', 85, '0000-00-00 00:00:00', 1),
(9682, 9412, 59, 5, 0, 'No basic ideas and looking for Java Openings much', 85, '0000-00-00 00:00:00', 1),
(9683, 9413, 59, 3, 0, 'Selected for Shanmugam Team Staff Role', 85, '0000-00-00 00:00:00', 1),
(9684, 9414, 59, 3, 0, 'Selected for GK Sir Team Staff Role', 85, '0000-00-00 00:00:00', 1),
(9685, 9424, 59, 5, 0, 'Have a month intern exp and the salary Exp is high,not familiar with the Skills,Need to train a lot not ok with TxxampC', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(9686, 9418, 59, 5, 0, 'Have mentioned about flutter asked the candidate come for final disussion after lunch but no response after', 85, '0000-00-00 00:00:00', 1),
(9687, 9422, 59, 5, 0, 'Have Exp inTelecalling but communication Average and also she looks for Compounder Role(Previous One)', 85, '0000-00-00 00:00:00', 1),
(9688, 9415, 59, 5, 0, 'Completed Course in Accord,Looking for Java xxamp Web Designing but not much storing in skills need to learn', 85, '0000-00-00 00:00:00', 1),
(9689, 9417, 59, 5, 0, 'no basic ideas not suitable', 85, '0000-00-00 00:00:00', 1),
(9690, 9416, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9691, 9425, 59, 5, 0, 'Fresher no ideas in CRUD operations,Not open for Timings Too', 85, '0000-00-00 00:00:00', 1),
(9692, 9423, 59, 5, 0, 'Holding an offer with Netaccess for 15K 25th joining in the mean time he is looking for more', 85, '0000-00-00 00:00:00', 1),
(9693, 9426, 59, 5, 0, 'Fresher for MERN,Career Gap no basic ideas in the Skills given time to learn if he come back let us try', 85, '0000-00-00 00:00:00', 1),
(9694, 9421, 59, 5, 0, 'Not suitable will not sustain have a plan to in Java Profile', 85, '0000-00-00 00:00:00', 1),
(9695, 9421, 59, 5, 0, 'Not suitable will not sustain have a plan to in Java Profile', 85, '0000-00-00 00:00:00', 1),
(9696, 9419, 59, 5, 0, 'Not Suitable Will Not Sustain Have A Plan To In Java Profile', 85, '0000-00-00 00:00:00', 1),
(9697, 9420, 59, 3, 0, 'staff role Kannan Team', 85, '0000-00-00 00:00:00', 1),
(9698, 9397, 59, 4, 0, 'Have Basic ideas in the PHP can be trained kindly check and let me know\n', 60, '0000-00-00 00:00:00', 1),
(9699, 9420, 19, 7, 5, 'Selected', 59, '2022-07-15 06:53:01', 1),
(9700, 9413, 44, 4, 4, 'Ji candidate ok for me need your Suggestion', 59, '2022-07-15 06:54:40', 1),
(9701, 9414, 31, 4, 4, 'Candidate okay forwarded for next round', 59, '2022-07-15 06:54:57', 1),
(9702, 9397, 63, 1, 0, NULL, 59, '2022-07-15 07:16:51', 1),
(9703, 9420, 59, 3, 0, 'staff role Kannan Team', 19, '2022-07-16 02:53:30', 1),
(9704, 9441, 59, 3, 0, 'Selected for RE,As finalised by Ramesh We processed with this package', 60, '0000-00-00 00:00:00', 1),
(9705, 9440, 59, 5, 0, 'Not suitable no skills knowledge and will not handle our pressure and sustainability Doubts', 60, '0000-00-00 00:00:00', 1),
(9706, 9437, 59, 5, 0, 'No basic Skills need time to learn,if she come back after learning let us try', 60, '0000-00-00 00:00:00', 1),
(9707, 9435, 59, 5, 0, 'No Basic ideas she was into different Domain need to learn a lot,Already she holds an offer and look for some more distance also need to focus', 60, '0000-00-00 00:00:00', 1),
(9708, 9431, 59, 4, 0, 'Fresher for IT have Exp in Core Field Can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9709, 9428, 59, 4, 0, 'Fresher 5050 profile,kindly check for PHP and let me know your inputs ji\n', 60, '0000-00-00 00:00:00', 1),
(9710, 9441, 88, 7, 0, 'Selected for RE', 59, '2022-07-16 04:16:20', 1),
(9711, 9428, 27, 1, 0, NULL, 59, '2022-07-16 04:25:32', 1),
(9712, 9431, 27, 1, 0, NULL, 59, '2022-07-16 04:27:14', 1),
(9713, 9441, 59, 3, 0, 'Selected for RE,As finalised by Ramesh We processed with this package', 88, '2022-07-16 05:02:50', 1),
(9714, 9420, 59, 3, 0, 'staff role Kannan Team', 88, '2022-07-16 05:03:17', 1),
(9715, 9320, 59, 5, 0, 'Not interested with TxxampC,Salary Exp is high', 59, '2022-07-16 05:03:43', 1),
(9716, 9432, 14, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9717, 9413, 29, 7, 3, 'RM ', 44, '2022-07-16 06:42:41', 1),
(9718, 9318, 59, 5, 0, 'Have basic skills but not comfortable with the TxxampC being a fresher,also high CTC Exp', 92, '0000-00-00 00:00:00', 1),
(9719, 9447, 59, 5, 0, 'Too long Distance communication Average,Not ready to relocate will not sustain\n', 92, '0000-00-00 00:00:00', 1),
(9720, 9450, 59, 5, 0, 'Too long distance need to relocate sustainability doubt,requested for a time to confirm with parents but left without attending the 2nd level', 92, '0000-00-00 00:00:00', 1),
(9721, 9451, 59, 4, 0, 'Have Exp in native - PHP position,have basic knowledge sustainability doubts thinking a lot on TxxampC ', 92, '0000-00-00 00:00:00', 1),
(9722, 9452, 59, 5, 0, 'Looking for Python opening xxamp Machine Learning Seems to little attitude,will not sustain,also not much comfort with TxxampC', 92, '0000-00-00 00:00:00', 1),
(9723, 9456, 59, 5, 0, 'Not ok with TxxampC being fresher his brother is into same PHP Distance around 50Kms up and down,Will not sustain', 92, '0000-00-00 00:00:00', 1),
(9724, 9427, 59, 2, 0, 'Fresher not much strong with the skills ,need to come back with his confirmation.', 85, '0000-00-00 00:00:00', 1),
(9725, 9458, 59, 5, 0, 'Fresher no basic knowledge but checked for 2nd level and rejected by Kaaviya', 85, '0000-00-00 00:00:00', 1),
(9726, 9454, 59, 3, 0, 'Selected for GK Sir with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9727, 9455, 59, 4, 0, 'Have telecaller Exp in Personal Loan,Getting married shortly sustainability doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9728, 9449, 59, 5, 0, 'Fresher not much strong with the skills,seems to be very slow 2nd round rejected by manikandan', 60, '0000-00-00 00:00:00', 1),
(9729, 9448, 59, 5, 0, 'He prefer to work in Java openings not suitable\n', 60, '0000-00-00 00:00:00', 1),
(9730, 9451, 27, 1, 0, NULL, 59, '2022-07-18 07:21:30', 1),
(9731, 9454, 29, 7, 3, 'RM Gk team', 59, '2022-07-18 07:22:42', 1),
(9732, 9455, 29, 1, 0, NULL, 59, '2022-07-18 07:24:03', 1),
(9733, 9035, 24, 5, 0, 'Sustainability doubt.. 5yrs gap in last job.. married also so not suit', 85, '0000-00-00 00:00:00', 1),
(9734, 8396, 59, 5, 0, 'No communication,Sustainability with the previous exp no not open with TxxampC not open with telecalling Activities', 85, '0000-00-00 00:00:00', 1),
(9735, 9474, 59, 5, 0, 'Age Around 2=34 yrs no sustainability with the previous Exp have only field Exp will not sustain with Telecalling RM profiles monot Suitable', 60, '0000-00-00 00:00:00', 1),
(9736, 9468, 59, 2, 0, 'Good Communication have a theoritical knowledge,2nd interviewed by kavya and the same opinion he need time to give his confirmation on TxxampC', 60, '0000-00-00 00:00:00', 1),
(9737, 9465, 59, 5, 0, 'Fresher Average communication need to learn a lot 2nd interviewed and the same opinion after learning if he come let us try', 60, '0000-00-00 00:00:00', 1),
(9738, 9466, 59, 5, 0, 'No communication not open up will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9739, 9463, 59, 2, 0, 'Communication ok,have basic skills but not familiar with React,Open for UI UXdesign too need time to confirm on the TxxampC,if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(9740, 9469, 59, 4, 0, 'Have basic skills knowledge did some freelance project in UI UX ,Distance a lot and sustainability Doubt,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9741, 9469, 27, 1, 0, NULL, 59, '2022-07-20 10:13:27', 1),
(9742, 9489, 59, 5, 0, 'Fresher no basic ideas in PHP,Need time to give his confirmation on the TxxampC If he come back let us try', 92, '0000-00-00 00:00:00', 1),
(9743, 9490, 59, 5, 0, 'Have a good knowledge in java only,no PHP,Looking for earnings much,Sustainability Doubt if she come back let us try', 92, '0000-00-00 00:00:00', 1),
(9744, 9488, 74, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(9745, 9471, 59, 2, 0, 'Have basic knowledge in flutter 2nd round interviewed by Gokul and on hold', 85, '0000-00-00 00:00:00', 1),
(9746, 9472, 59, 3, 0, 'Selected for Flutter Need to analyse 2nd round interviewed by Gokul ', 85, '0000-00-00 00:00:00', 1),
(9747, 9477, 59, 4, 0, 'Have Exp in PHP Can give a try for PHP Profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9748, 9478, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT Deductions', 85, '0000-00-00 00:00:00', 1),
(9749, 9484, 59, 4, 0, '5050 Profile Career Gap no Teleslaes Exp Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9750, 9487, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9751, 9491, 59, 5, 0, 'Communication ok Have Exp in Recovery Scheduled for the 2nd level but left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(9752, 9492, 59, 5, 0, 'Communication Ok Have Exp In Recovery Scheduled For The 2nd Level But Left Without Attending The Interview', 85, '0000-00-00 00:00:00', 1),
(9753, 9478, 29, 7, 3, 'for RM, shanmugam team', 59, '2022-07-20 04:52:09', 1),
(9754, 9477, 27, 1, 0, NULL, 59, '2022-07-20 06:11:17', 1),
(9755, 9484, 89, 1, 0, NULL, 59, '2022-07-20 06:16:13', 1),
(9756, 9495, 59, 5, 0, 'Fresher ,Min Exp is 10K in intern,not open for TxxampC,His sis too in the same domain,will not join in TC', 85, '0000-00-00 00:00:00', 1),
(9757, 9473, 59, 3, 0, 'Selected for Shanmugam Team - Staff Role', 85, '0000-00-00 00:00:00', 1),
(9758, 9475, 57, 4, 0, 'candidate is ok ,already exp 3yrs \nmarried.salary comt around 13.5k to 14k in hand like net . pls confirm the joining date ', 60, '0000-00-00 00:00:00', 1),
(9759, 9503, 39, 4, 4, 'candidate is ok for the profile . i moved this for second round to mr.sathishkumar', 60, '0000-00-00 00:00:00', 1),
(9760, 9434, 59, 5, 0, 'No ideas in Javascript,will not run in a long not suitable', 92, '0000-00-00 00:00:00', 1),
(9761, 9436, 59, 2, 0, 'Fresher for React Can give a try Thinking a lot with TxxampC,if he come back let us try', 92, '0000-00-00 00:00:00', 1),
(9762, 9499, 59, 2, 0, 'Have 5 months Exp in the Front end Working on React Project and his current salary is 12.5K(1.5LPA) and his exp min 15-16K TH. Need to be analyzed by giving the task, Also thinking about the TxxampC.If he come back let us give a try', 92, '0000-00-00 00:00:00', 1),
(9763, 9501, 59, 5, 0, 'Fresher,Already got some offers and not joined as the salary was around 15K His min Exp is 20-25K ', 92, '0000-00-00 00:00:00', 1),
(9764, 9504, 59, 4, 0, 'Fresher just learning the skills kindly check and let me know your inputs,He is ok with TxxampC', 92, '0000-00-00 00:00:00', 1),
(9765, 9505, 59, 5, 0, 'Not open for Flutter position', 92, '0000-00-00 00:00:00', 1),
(9766, 9506, 59, 5, 0, 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', 92, '0000-00-00 00:00:00', 1),
(9767, 9508, 59, 5, 0, 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', 92, '0000-00-00 00:00:00', 1),
(9768, 9509, 59, 5, 0, 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', 92, '0000-00-00 00:00:00', 1),
(9769, 9511, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(9770, 9507, 59, 5, 0, 'Not open with TxxampC fresher did some course in Beeja Technologies ,Came along with friends,no basic ideas in NodeJS will not sustain not suitable have a plan to travel abroad', 60, '0000-00-00 00:00:00', 1),
(9771, 9510, 59, 5, 0, 'Have basic knowledge in HTMl,CSS,JS not much with React Need time to give his confirmation for TxxampC if he come back let us give a try', 60, '0000-00-00 00:00:00', 1),
(9772, 9497, 59, 4, 0, 'Have basic knowledge in PHP Skills can be trained but salary Exp is high,kindly check his technical skills and can decide based on the output', 60, '0000-00-00 00:00:00', 1),
(9773, 9371, 59, 4, 0, 'Fresher have a basic knowledge in Skills interest to learn,ready to relocate kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9774, 9511, 44, 4, 4, 'Ji candidate ok for me need your Suggestion ', 59, '2022-07-21 06:46:21', 1),
(9775, 9473, 44, 4, 4, 'Ji candidate ok for me need your Suggestion ', 59, '2022-07-21 06:48:17', 1),
(9776, 9497, 27, 1, 0, NULL, 59, '2022-07-21 07:05:30', 1),
(9777, 9504, 27, 1, 0, NULL, 59, '2022-07-21 07:08:03', 1),
(9778, 9371, 27, 1, 0, NULL, 59, '2022-07-21 07:19:29', 1),
(9779, 9475, 88, 7, 0, 'Selected for RE', 57, '2022-07-22 10:32:59', 1),
(9780, 9511, 29, 7, 2, 'RM, shanmugam team, he worked for 3 months in 2018 for health channel at royapetta office in sarvanan team', 44, '2022-07-22 03:10:33', 1),
(9781, 9478, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT Deductions', 29, '2022-07-22 03:30:19', 1),
(9782, 9511, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT', 29, '2022-07-22 03:35:10', 1),
(9783, 9498, 59, 4, 0, 'Have basic knowledge in PHP SKills Open for TxxampC,Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9784, 9500, 59, 2, 0, 'Have Basic Knowledge In React SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9785, 9516, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9786, 9503, 30, 4, 3, 'She is ready to join on monday and salary suggested 16k take home', 39, '2022-07-22 04:11:56', 1),
(9787, 9503, 60, 1, 0, NULL, 30, '2022-07-22 04:14:54', 1),
(9788, 9525, 24, 5, 0, 'Not Interested in sales', 60, '0000-00-00 00:00:00', 1),
(9789, 9526, 24, 5, 0, 'Not interested in sales', 60, '0000-00-00 00:00:00', 1),
(9790, 9524, 24, 5, 0, 'Not interested in sales', 60, '0000-00-00 00:00:00', 1),
(9791, 9523, 24, 5, 0, 'Not interested in sales', 60, '0000-00-00 00:00:00', 1),
(9792, 9522, 24, 5, 0, 'not Interested in sales', 60, '0000-00-00 00:00:00', 1),
(9793, 9521, 59, 5, 0, 'Last week attended and rejected,again appeared today will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9794, 9517, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9795, 9515, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9796, 9513, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Currently learning Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9797, 9520, 59, 4, 0, 'Fresher,Seems not comfort with Target Sustainability doubts Internal Team reference kindly check and let me know your inouts', 60, '0000-00-00 00:00:00', 1),
(9798, 9518, 59, 5, 0, 'No basic skills knowledge not suitable\n', 60, '0000-00-00 00:00:00', 1),
(9799, 9519, 59, 5, 0, 'No basic skills knowledge ,not suitable will not sustain', 60, '0000-00-00 00:00:00', 1),
(9800, 9529, 59, 4, 0, 'Have Basic Knowledge In PHP SKills 6 months Exp in PHP Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9801, 9532, 59, 4, 0, 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(9802, 9514, 59, 3, 0, 'Selected for Santhosh Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(9803, 9527, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9804, 9498, 27, 1, 0, NULL, 59, '2022-07-22 05:04:42', 1),
(9805, 9516, 27, 1, 0, NULL, 59, '2022-07-22 05:06:51', 1),
(9806, 9528, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 92, '0000-00-00 00:00:00', 1),
(9807, 9515, 27, 1, 0, NULL, 59, '2022-07-22 05:07:31', 1),
(9808, 9517, 27, 1, 0, NULL, 59, '2022-07-22 05:07:45', 1),
(9809, 9513, 27, 1, 0, NULL, 59, '2022-07-22 05:08:22', 1),
(9810, 9532, 27, 1, 0, NULL, 59, '2022-07-22 05:09:19', 1),
(9811, 9529, 27, 1, 0, NULL, 59, '2022-07-22 05:09:49', 1),
(9812, 9514, 71, 4, 0, 'Selected for next round', 59, '2022-07-22 05:12:08', 1),
(9813, 9520, 57, 1, 0, NULL, 59, '2022-07-22 05:13:18', 1),
(9814, 9475, 59, 3, 0, 'Selected for Staff Role - Syed Team', 88, '2022-07-22 05:31:36', 1),
(9815, 8800, 59, 5, 0, 'Communication Is Good, She Has Exp In The Backend, But Not Much In Excel Works Needs To Train A Lot. She Is Currently In Hexaware And Looking For Opportunities Only For The 2 Days Of Weekend Leaves Required. Need To Serve 30 Days Of Notice. She Will Not Handle Our Pressure And Sustain With Us. Every Year She Jumps To A Different Company Stating Health Conditions. She Needs To Travel From Tambaram.', 59, '2022-07-22 05:48:43', 1),
(9816, 8806, 59, 5, 0, 'Communication Ok,Age Around 32 Yrs,Need To Train A Lot In Our Roles,9yrs In Backend But Not In Excel Works,Thinking A Lot On The Service Agreements,If She Comes Back Lets Try', 59, '2022-07-22 05:49:39', 1),
(9817, 9512, 24, 5, 0, 'Rejected not suitable for telecalling job.. ', 60, '0000-00-00 00:00:00', 1),
(9818, 9540, 24, 4, 0, 'candidate okay .. Expect 15k but joining only 1st Aug.. because previous company in last working day 31s july', 60, '0000-00-00 00:00:00', 1),
(9819, 9540, 88, 7, 0, 'Selected for RE', 24, '2022-07-23 01:30:25', 1),
(9820, 2670, 59, 5, 0, 'Have Multiple offers with night shift,Good in communication,Salary Exp is high,1,5 yrs 2 companies travelled,Will not sustain in a long', 85, '0000-00-00 00:00:00', 1),
(9821, 9538, 59, 5, 0, 'not open for Internship Fresher no basic ideas in Javascript,not answering the questions not suitable', 85, '0000-00-00 00:00:00', 1),
(9822, 9542, 59, 4, 0, 'Fresher Need to open a lot Sustainability doubts kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9823, 9534, 13, 7, 0, 'ok ,11k salary ,joining date aug 1st', 60, '0000-00-00 00:00:00', 1),
(9824, 9534, 59, 5, 0, 'Not responding the calls continuous RNR', 13, '2022-07-23 04:25:22', 1),
(9825, 9414, 29, 7, 3, 'RM', 31, '2022-07-23 04:48:03', 1),
(9826, 9544, 59, 5, 0, 'Age 28 yrs career gap 2015 passed out will not handle our pressure and fast learning doubts not suitable', 92, '0000-00-00 00:00:00', 1),
(9827, 9543, 59, 5, 0, 'Not answering much,Have a plan to go again with Police Exams,Looking for more stipend in Intern Fresher 2yrs GAP Thinking a lot with TxxampC Will not sustain', 92, '0000-00-00 00:00:00', 1),
(9828, 9539, 59, 5, 0, 'up and down 40 kms,not open with TxxampC hold for 2nd level but later he mentioned that was not comfortable with TxxampC', 92, '0000-00-00 00:00:00', 1),
(9829, 9541, 59, 3, 0, 'Selected for Mern - Internship Employment', 92, '0000-00-00 00:00:00', 1),
(9830, 9454, 59, 3, 0, 'Selected for GK Sir with PF/PT', 29, '2022-07-23 04:56:12', 1),
(9831, 9413, 59, 3, 0, 'Selected for Shanmugam Team Staff Role', 29, '2022-07-23 04:58:09', 1),
(9832, 9414, 59, 3, 0, 'Selected for GK Sir Team Staff Role', 29, '2022-07-23 04:58:45', 1),
(9833, 9535, 59, 5, 0, 'Not Much Good in Skills not answering will not sustain thinking a lot with TxxampC\n', 60, '0000-00-00 00:00:00', 1),
(9834, 9536, 59, 5, 0, 'Nt much good in skills No sustainability in his previous exp will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(9835, 9542, 69, 5, 0, 'candidate wont suit our team', 59, '2022-07-23 06:52:19', 1),
(9836, 9514, 18, 7, 4, 'Reference Candidate Selected for santosh team. Need to check on sustainability and joining this week. Kindly negotiate the package.', 71, '2022-07-25 10:09:35', 1),
(9837, 9558, 24, 5, 0, 'Father doing star health and Lic agent so we dont required ', 85, '0000-00-00 00:00:00', 1),
(9838, 9557, 24, 5, 0, 'he is experience in account jobs so he will not work here confidently and he is also told discuss with family', 85, '0000-00-00 00:00:00', 1),
(9839, 9531, 59, 5, 0, 'Need time to learn and think on TxxampC,if he come back let us try', 85, '0000-00-00 00:00:00', 1),
(9840, 9548, 59, 3, 0, 'Selected for Mern if she join lets see', 85, '0000-00-00 00:00:00', 1),
(9841, 9550, 59, 5, 0, 'not suitable need to open a lot,will not sustain', 85, '0000-00-00 00:00:00', 1),
(9842, 9551, 59, 5, 0, 'No basic ideas in JS,Not answering the basic requirement not suitable', 85, '0000-00-00 00:00:00', 1),
(9843, 9559, 59, 5, 0, 'Long run doubts will not sustain in our environment His sister already working in infosys he may swift ', 85, '0000-00-00 00:00:00', 1),
(9844, 9562, 59, 5, 0, 'Currently Working In Avasoft With 4 LPA,6 Months In React Internship And The Min Exp Is 25K(3LPA)', 92, '0000-00-00 00:00:00', 1),
(9845, 9563, 59, 5, 0, 'Currently working in Avasoft with 4 LPA,6 months in React Internship and the min Exp is 25K(3LPA)', 92, '0000-00-00 00:00:00', 1),
(9846, 9556, 59, 3, 0, 'Selected for React JS developer Profile', 92, '0000-00-00 00:00:00', 1),
(9847, 9554, 59, 5, 0, 'Not much with TxxampC Need time to confirm,Need to learn a lot will not sustain', 92, '0000-00-00 00:00:00', 1),
(9848, 9565, 59, 5, 0, 'Dropped Her parents are not allowing for the T.Nagar Location not joining', 85, '0000-00-00 00:00:00', 1),
(9849, 9566, 59, 4, 0, '5050 Profile Internal Team Reference,Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9850, 9567, 59, 4, 0, '5050 Profile Internal Team Reference,Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9851, 9568, 59, 5, 0, 'Up and down 60kms,min stipend exp is 8-10K,currently working in core field,sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(9852, 9569, 59, 3, 0, 'Selected fr Syed Team ', 85, '0000-00-00 00:00:00', 1),
(9853, 9555, 59, 3, 0, 'Selected for Babu Team with PF', 85, '0000-00-00 00:00:00', 1),
(9854, 9552, 59, 5, 0, 'Looking for testing profile only ', 85, '0000-00-00 00:00:00', 1),
(9855, 9555, 89, 7, 0, 'shortlisted', 59, '2022-07-25 07:17:53', 1),
(9856, 9569, 57, 4, 0, 'candidate is ok , pls confirm the salary and joining date', 59, '2022-07-25 07:18:50', 1),
(9857, 9494, 59, 5, 0, 'thinking on TxxampC,Fresher not ready to sustain for a long may get marriage next year', 60, '0000-00-00 00:00:00', 1),
(9858, 9565, 16, 7, 0, 'Selected', 59, '2022-07-25 07:37:02', 1),
(9859, 9566, 16, 1, 0, NULL, 59, '2022-07-25 07:37:15', 1),
(9860, 9567, 16, 5, 0, '50 50 no idea', 59, '2022-07-25 07:37:26', 1),
(9861, 9569, 88, 7, 0, 'Selected for RE', 57, '2022-07-26 10:34:01', 1),
(9862, 9565, 88, 7, 0, 'Selected for RE', 16, '2022-07-26 10:37:37', 1),
(9863, 9565, 59, 5, 0, 'Dropped Her parents are not allowing for the T.Nagar Location not joining', 88, '2022-07-26 10:53:41', 1),
(9864, 9569, 59, 3, 0, 'Selected fr Syed Team ', 88, '2022-07-26 10:54:12', 1),
(9865, 9540, 59, 2, 0, 'Candidate not yet relieved from the company will take another 20 days time', 88, '2022-07-26 10:54:36', 1),
(9866, 9502, 13, 7, 0, 'ok 10k salary joining date confirm pannanum', 60, '0000-00-00 00:00:00', 1),
(9867, 9502, 59, 3, 0, 'Selected for Erode in Consultant role', 13, '2022-07-26 03:25:20', 1),
(9868, 9555, 88, 7, 0, 'Selected for RE', 89, '2022-07-26 04:05:13', 1),
(9869, 9587, 59, 5, 0, 'Communication Average too long distance not suitable will not sustain in a long run fresher ', 85, '0000-00-00 00:00:00', 1),
(9870, 9585, 59, 2, 0, 'Ready to relocate,Seems to be ok Candidate need time to give his confirmation on TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(9871, 9584, 59, 5, 0, 'Not Much good in skills not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(9872, 9575, 59, 5, 0, 'Not clear with the basics of Recruitment,Freaher Exp is some what more being a freaher will not sustin in a long run', 85, '0000-00-00 00:00:00', 1),
(9873, 9576, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(9874, 9572, 59, 5, 0, 'Candidate thinking on the Distance around 40Km sup and down will not sustain', 85, '0000-00-00 00:00:00', 1),
(9875, 9577, 59, 5, 0, 'Not open with TxxampC,Min Exp is 18K bring a fresher if he comes back with his confirmation let us try', 85, '0000-00-00 00:00:00', 1),
(9876, 9578, 59, 5, 0, 'Not ready to work in multiple roles not ready to take targets focusing only in the earnings,will not sustain', 85, '0000-00-00 00:00:00', 1),
(9877, 9545, 59, 4, 0, '5050 Profile need to open a lot kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9878, 9555, 59, 3, 0, 'Selected for Babu Team with PF', 88, '2022-07-26 06:03:52', 1),
(9879, 9545, 57, 1, 0, NULL, 59, '2022-07-26 07:28:01', 1),
(9880, 9574, 59, 5, 0, 'thinking on TxxampC Long run doubts on this profile not much strong with the skills\n', 60, '0000-00-00 00:00:00', 1),
(9881, 9581, 59, 2, 0, 'Need time to give his confirmation on the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(9882, 9582, 59, 4, 0, 'have basic skills knowledge sustainability doubts as he may travel abroad Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9883, 9583, 59, 2, 0, 'Have Skills knowledge Parents are in Mumbai Need time to give his confirmation on TxxampC', 60, '0000-00-00 00:00:00', 1),
(9884, 9582, 27, 1, 0, NULL, 59, '2022-07-26 07:32:18', 1),
(9885, 9600, 59, 4, 0, 'Have Basic Skills Knowledge Can Be Trained Kindly Check And Let Me Know Your Interest', 85, '0000-00-00 00:00:00', 1),
(9886, 9599, 59, 4, 0, 'Have basic skills knowledge can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(9887, 9597, 59, 3, 0, 'Selected for Node Js Profile final round interviewed by Gokul', 85, '0000-00-00 00:00:00', 1),
(9888, 9596, 59, 2, 0, 'have basic skills in Node JS,Sustainability doubts if he come back with TxxampC will check into it .Settled family long run doubts a lot', 85, '0000-00-00 00:00:00', 1),
(9889, 9592, 59, 5, 0, 'Fresher need to learn a lot 2nd round reject by Manikandan', 85, '0000-00-00 00:00:00', 1),
(9890, 9586, 59, 5, 0, 'Not much good in skills need time to confirm on TxxampC ', 85, '0000-00-00 00:00:00', 1),
(9891, 9594, 59, 5, 0, 'Being fresher Exp is high,already he received a offer for 10K but didnt join as he is expecting more', 85, '0000-00-00 00:00:00', 1),
(9892, 9598, 59, 4, 0, 'Fresher need to be trained from the start kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9893, 9514, 60, 1, 0, NULL, 18, '2022-07-27 03:27:13', 1),
(9894, 9599, 27, 1, 0, NULL, 59, '2022-07-27 05:46:26', 1),
(9895, 9600, 27, 1, 0, NULL, 59, '2022-07-27 05:46:46', 1),
(9896, 9598, 27, 1, 0, NULL, 59, '2022-07-27 05:52:53', 1),
(9897, 9605, 59, 5, 0, 'Final round reject by Gokul Will not pick up', 85, '0000-00-00 00:00:00', 1),
(9898, 9604, 59, 4, 0, 'have basic skills seems can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9899, 9590, 59, 5, 0, 'Not much good wiht the Skills not suitable ', 85, '0000-00-00 00:00:00', 1),
(9900, 9405, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain not much comfort with TxxampC', 85, '0000-00-00 00:00:00', 1),
(9901, 9608, 59, 5, 0, 'Too long distance not much strong in basic skills will not run in a long ', 92, '0000-00-00 00:00:00', 1),
(9902, 9609, 59, 5, 0, 'Not open for Telesales not suitable', 92, '0000-00-00 00:00:00', 1),
(9903, 9611, 59, 5, 0, 'have internship Exp but no basic skills need to come back with his confirmation,if he comes back need to analyse and confirm again', 92, '0000-00-00 00:00:00', 1),
(9904, 9607, 59, 4, 0, 'Have Few months Exp but not in telecalling, Need to be trained 5050 on the long run kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9905, 9615, 59, 5, 0, 'Not much comfort with TxxampC no family need is there ,will not sustain ina long run', 85, '0000-00-00 00:00:00', 1),
(9906, 9606, 27, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9907, 9619, 24, 4, 0, 'candidate selected for next round fresher', 85, '0000-00-00 00:00:00', 1),
(9908, 9618, 24, 4, 0, 'candidate okay for next round', 85, '0000-00-00 00:00:00', 1),
(9909, 9620, 59, 4, 0, 'Fresher bit attitude,Focus much on the Salary,Sustainability Doubts in a long run Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9910, 9601, 30, 4, 3, 'confirm the joining date and suggested ctc 16k for Esales profile mohan team', 60, '0000-00-00 00:00:00', 1),
(9911, 9618, 88, 7, 0, 'Selected for RE', 24, '2022-07-28 05:09:27', 1),
(9912, 9619, 88, 7, 0, 'Selected for RE', 24, '2022-07-28 05:09:51', 1),
(9913, 9618, 59, 3, 0, 'Selected for Suthagar Team in PF/ESI/PT,Fresher Need to be trained,Check and approve in 7 days ', 88, '2022-07-28 05:16:38', 1),
(9914, 9619, 59, 3, 0, 'Selected for RE Suthagar Team with PF/ESI/PT Fresher Need to analyse in 7 Days Training', 88, '2022-07-28 05:17:13', 1),
(9915, 9620, 31, 5, 1, 'not sustained in any job more than a year', 59, '2022-07-28 06:31:34', 1),
(9916, 9607, 57, 4, 0, 'candidate is ok , kindly confirm the joining date ', 59, '2022-07-28 06:34:46', 1),
(9917, 9622, 59, 5, 0, 'Very Worst Candidate no basic ideas not showing interest on the profile keep on using mobile in the interview', 60, '0000-00-00 00:00:00', 1),
(9918, 9601, 60, 1, 0, NULL, 30, '2022-07-28 07:06:02', 1),
(9919, 9610, 59, 5, 0, 'Thinking a lot on TxxampC requested time to give his confirmation,if he comes back need to have a technical round and check', 92, '0000-00-00 00:00:00', 1),
(9920, 9629, 59, 5, 0, 'Looking for Accounts profile,he is very clear with the job change if he get any accounts postion', 85, '0000-00-00 00:00:00', 1),
(9921, 9623, 59, 5, 0, 'No ideas in the JS not clear with his studies not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(9922, 9631, 59, 5, 0, 'Not ideas with the skills,need to open a lot will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(9923, 9630, 59, 5, 0, 'not open with TxxampC Earlier he received 4 offers and didnt join due to SA only will not joinus and Sustain', 85, '0000-00-00 00:00:00', 1),
(9924, 9632, 59, 2, 0, 'Need to come for the Task 2nd level', 85, '0000-00-00 00:00:00', 1),
(9925, 9633, 59, 5, 0, 'Need to leasrn a lot Career Gap sustinability doubts in long run', 85, '0000-00-00 00:00:00', 1),
(9926, 9634, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(9927, 9635, 59, 2, 0, 'Have basic Skills Can be trained asked candidate to wait for final round but left without attending if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(9928, 9636, 59, 5, 0, 'No basic skills not suitable', 85, '0000-00-00 00:00:00', 1),
(9929, 9626, 59, 4, 0, 'Have some basic knowledge Can give a try kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(9930, 9621, 59, 5, 0, 'Not Ideas With The Skills, Not answering Need To Open A Lot Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(9931, 9628, 59, 4, 0, 'Have Parttime Calling Exp can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9932, 9637, 59, 4, 0, 'Have Exp in Field Sales no sustainability in his previous Exp Long run doubts kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(9933, 9638, 59, 3, 0, 'Selected for Syed Team - Staff Role\n', 60, '0000-00-00 00:00:00', 1),
(9934, 9638, 57, 4, 0, 'candidate is ok ,kindly confirm the joining date , thanks', 59, '2022-07-29 04:48:35', 1),
(9935, 9628, 89, 1, 0, NULL, 59, '2022-07-29 04:51:40', 1),
(9936, 9637, 86, 4, 0, 'Selected For Next Round', 59, '2022-07-29 04:59:37', 1),
(9937, 9626, 27, 1, 0, NULL, 59, '2022-07-29 05:05:33', 1),
(9938, 9604, 27, 1, 0, NULL, 59, '2022-07-29 05:20:27', 1),
(9939, 9638, 88, 7, 0, 'Selected for RE', 57, '2022-07-29 05:36:14', 1),
(9940, 9644, 56, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(9941, 9643, 59, 5, 0, 'Not open with the TxxampC, No basic ideas in the Skills', 60, '0000-00-00 00:00:00', 1),
(9942, 9647, 59, 2, 0, 'Fresher Need to be trained, need time to confirm on the TxxampC', 60, '0000-00-00 00:00:00', 1),
(9943, 9645, 59, 3, 0, 'Selected for Staff Role - Manikandan Team', 60, '0000-00-00 00:00:00', 1),
(9944, 9640, 59, 4, 0, 'Internal Reference Fresher Communication Sounds,5050 profiles, sustainability doubts ina long run Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(9945, 9641, 59, 4, 0, 'Fresher have completed course in Designing, have basic skills in Designing can be trained ', 60, '0000-00-00 00:00:00', 1),
(9946, 9640, 88, 1, 0, NULL, 59, '2022-07-30 05:45:26', 1),
(9947, 9641, 27, 1, 0, NULL, 59, '2022-07-30 05:47:29', 1),
(9948, 9645, 86, 4, 0, 'Selected For Next Round', 59, '2022-07-30 06:13:08', 1),
(9949, 8908, 59, 5, 0, 'Holding multiple offers,will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(9950, 9580, 59, 5, 0, 'Left without attending the final round with gaurav sir,Have Exp in telecalling but no sustainability in the prevous Exp ,Eventhough tried but left without attending', 85, '0000-00-00 00:00:00', 1),
(9951, 9650, 59, 5, 0, 'Not open up no ideas in the basic skills not suitable', 85, '0000-00-00 00:00:00', 1),
(9952, 9651, 59, 5, 0, 'No basic skills Focusing much in Dot net not suitable', 85, '0000-00-00 00:00:00', 1),
(9953, 9656, 59, 5, 0, 'No ideas in Javascript,Long Run doubts 2nd round reject by Tamilmani', 85, '0000-00-00 00:00:00', 1),
(9954, 9657, 59, 5, 0, 'Worst Profile, no basic skills knowledge not open for the timings', 85, '0000-00-00 00:00:00', 1),
(9955, 9658, 59, 5, 0, 'Too Long Distance ,Not Ready To Relocate Looking For CAB Facilities', 85, '0000-00-00 00:00:00', 1),
(9956, 9659, 59, 5, 0, 'too Long Distance ,not ready to relocate looking for CAB facilities', 85, '0000-00-00 00:00:00', 1),
(9957, 9660, 59, 5, 0, 'No ideas in Javascript,just started learning Notice 30-40 days if he come back let us try for our Roles', 85, '0000-00-00 00:00:00', 1),
(9958, 9662, 59, 5, 0, 'No Communication Writing skills poor not suitable for our role', 85, '0000-00-00 00:00:00', 1),
(9959, 9645, 18, 7, 3, 'Selected for Mani Team. Fresher. Negotiate the salary. Shall join next monday', 86, '2022-08-01 03:27:45', 1),
(9960, 9637, 18, 5, 0, 'Not fit for sales', 86, '2022-08-01 03:28:48', 1),
(9961, 9661, 59, 5, 0, 'Not open up no basic ideas on the skills not suitable', 85, '0000-00-00 00:00:00', 1),
(9962, 9638, 59, 3, 0, 'Selected for Syed Team - Staff Role\n', 88, '2022-08-01 06:13:52', 1),
(9963, 9645, 60, 1, 0, NULL, 18, '2022-08-01 06:15:38', 1),
(9964, 9677, 14, 4, 0, 'Salary 10.5k need to check 2nd round', 85, '0000-00-00 00:00:00', 1),
(9965, 9666, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9966, 9670, 59, 2, 0, 'Communication Tamil only she preferred,Can be trained need to come back with her confirmation on the TxxampC, kindly check and update', 85, '0000-00-00 00:00:00', 1),
(9967, 9671, 59, 5, 0, 'Too long Distance no basic ideas in PHP Skills will not sustain for a long not suitable', 85, '0000-00-00 00:00:00', 1),
(9968, 9669, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(9969, 9667, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(9970, 9668, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(9971, 9673, 74, 7, 0, 'she is ok with the team fit for telesales....highly job need and fresher .............expected 10k ............immediate joining kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9972, 9676, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9973, 9680, 13, 7, 0, 'Ok 10k Salary Joining Date Confirm Pannanum', 85, '0000-00-00 00:00:00', 1),
(9974, 9677, 59, 2, 0, 'RNR', 14, '2022-08-02 03:07:52', 1),
(9975, 9683, 14, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9976, 9682, 59, 5, 0, 'Not Strong With The Basic Skills Too Long Distance Will Not Sustain In A Along Run', 85, '0000-00-00 00:00:00', 1),
(9977, 9681, 59, 5, 0, 'Not strong with the basic skills too long distance will not sustain in a along run', 85, '0000-00-00 00:00:00', 1),
(9978, 9679, 59, 4, 0, 'Fresher Have interest to learn can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(9979, 9675, 44, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(9980, 9685, 59, 3, 0, 'Selected for Santhosh Team, - Team will give a task and based on completion may get the increment', 85, '0000-00-00 00:00:00', 1),
(9981, 9667, 14, 7, 0, 'Selected kindly confirm joining date', 59, '2022-08-02 03:58:55', 1),
(9982, 9669, 14, 7, 0, 'Selected confirm joining date', 59, '2022-08-02 03:59:16', 1),
(9983, 9668, 57, 4, 0, 'Candidate is ok, kindly confirm the joining date and salary , ', 59, '2022-08-02 04:00:26', 1),
(9984, 9679, 27, 1, 0, NULL, 59, '2022-08-02 04:15:32', 1),
(9985, 9680, 59, 3, 0, 'Selected for Erode - Muthu Team - Consultant Role\n', 13, '2022-08-02 04:21:26', 1),
(9986, 9678, 74, 7, 0, 'she is ok with the team very talk active and fresher have laptop immediate joining expected 10k take home .......adaptive girl and highl job need kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(9987, 9654, 74, 7, 0, 'she is ok with the team ......salary expected 10k have laptop...........having tailoring class......so joining once chceck and confirm', 85, '0000-00-00 00:00:00', 1),
(9988, 9685, 71, 4, 0, 'Move to next round ', 59, '2022-08-02 04:56:07', 1),
(9989, 9685, 18, 7, 4, 'Selected for Santosh Team. Need one month notice to Join post offer. Salary package as discussed with you', 71, '2022-08-02 04:57:29', 1),
(9990, 9674, 13, 7, 0, 'ok 10k salary joining date confirm pannanum', 85, '0000-00-00 00:00:00', 1),
(9991, 9667, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-08-02 06:24:13', 1),
(9992, 9669, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-08-02 06:24:39', 1),
(9993, 9678, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-08-02 07:02:20', 1),
(9994, 9673, 59, 3, 0, 'Selected for Thanjavur- Consultant Role', 74, '2022-08-02 07:03:26', 1),
(9995, 9654, 59, 5, 0, 'Dropped not interested much with telecalling and not interested in Target ', 74, '2022-08-02 07:15:08', 1),
(9996, 9693, 59, 5, 0, '5050 Profile Fresher Came Along With Friend Can Be Trained Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(9997, 9692, 59, 5, 0, 'Communication Average, No basic ideas in the recruitment ,will not sustain in a long run', 85, '0000-00-00 00:00:00', 1),
(9998, 9694, 59, 4, 0, '5050 Profile Fresher Came along with friend can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(9999, 9696, 59, 5, 0, 'Not much good with the Skills fresher already attended and waiting for the final update from some other company,Sustainability doubts a lot ', 85, '0000-00-00 00:00:00', 1),
(10000, 9697, 59, 5, 0, 'Career Gap not shown interest towards the career inn between not much strong with the skills not suitable', 85, '0000-00-00 00:00:00', 1),
(10001, 9695, 59, 5, 0, 'Very Slow No basic Skills knowledge Not suitable', 85, '0000-00-00 00:00:00', 1),
(10002, 9688, 24, 5, 0, 'she no need for target related job. ', 85, '0000-00-00 00:00:00', 1),
(10003, 9685, 60, 1, 0, NULL, 18, '2022-08-03 12:51:51', 1),
(10004, 9668, 88, 7, 0, 'Selected for RE', 57, '2022-08-03 12:56:01', 1),
(10005, 9699, 59, 4, 0, 'Have basic knowledge can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10006, 9674, 59, 3, 0, 'Selected for erode - Muthu Team - Consultant Role\n', 13, '2022-08-03 02:49:17', 1),
(10007, 9701, 59, 5, 0, 'Candidate was not showing interest didnt share the required documents and not responding the calls\n', 85, '0000-00-00 00:00:00', 1),
(10008, 9699, 27, 1, 0, NULL, 59, '2022-08-03 06:09:03', 1),
(10009, 9694, 57, 1, 0, NULL, 59, '2022-08-03 06:11:02', 1),
(10010, 9701, 18, 7, 4, 'Selected for Santosh Team. Ravikumar Reference. Shall Join on Monday (15th) Kidnly negoitate the salary and discuss', 59, '2022-08-03 06:26:37', 1),
(10011, 9668, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 88, '2022-08-03 06:53:39', 1),
(10012, 9607, 88, 1, 0, NULL, 57, '2022-08-03 07:04:45', 1),
(10013, 9702, 59, 2, 0, 'Need to be trained Sustainability Doubt in a long run Need to come back with his confirmation if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10014, 9704, 59, 3, 0, 'Selected for Staff Role - Syed Team', 60, '0000-00-00 00:00:00', 1),
(10015, 9705, 59, 3, 0, 'Selected for Manikandan - Staff Role Document has been verified based on that we offered him 14%', 60, '0000-00-00 00:00:00', 1),
(10016, 9691, 86, 4, 0, 'Selected For Next Round', 60, '0000-00-00 00:00:00', 1),
(10017, 9691, 18, 7, 0, 'Selcected For Mani team. Offer 2.4 Package. Shall join around 15th', 86, '2022-08-04 01:17:42', 1),
(10018, 9705, 86, 4, 0, 'Selected For Next Round', 59, '2022-08-04 01:48:58', 1),
(10019, 9705, 18, 7, 0, 'Good Candiate. Can offer upto 4L after verifying his last package. Kindly negotiate', 86, '2022-08-04 02:31:02', 1),
(10020, 9704, 57, 4, 0, 'candidate is ok, joining date monday', 59, '2022-08-04 02:31:28', 1),
(10021, 9704, 88, 7, 0, 'Selected for RE', 57, '2022-08-04 03:01:00', 1),
(10022, 9703, 59, 2, 0, 'Communication ok can be trained but not open with Docu Submission,need to confirm with his father', 85, '0000-00-00 00:00:00', 1),
(10023, 9706, 59, 5, 0, 'Candidate was not interested dropped ', 85, '0000-00-00 00:00:00', 1),
(10024, 9707, 59, 4, 0, 'Fresher can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10025, 9709, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10026, 9710, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10027, 9691, 60, 1, 0, NULL, 18, '2022-08-08 10:18:30', 1),
(10028, 9705, 60, 1, 0, NULL, 18, '2022-08-08 10:19:34', 1),
(10029, 9704, 59, 3, 0, 'Selected for Staff Role - Syed Team', 88, '2022-08-08 11:24:30', 1),
(10030, 9737, 14, 7, 0, 'Salary 10k fresher need to confirm once and confirm joining date', 92, '0000-00-00 00:00:00', 1),
(10031, 9738, 14, 7, 0, 'Salary 10k Fresher Need To Confirm Once And Confirm Joining Date', 92, '0000-00-00 00:00:00', 1),
(10032, 9700, 74, 7, 0, 'She is well profiled and highly suite for telesales and very professional.... completed MBA finance and married one baby 10month child....have bike and laptop also .... husband working in foreign and now she is in inlaw house so baby caring is from inlaw so she need to improve herself in carrier.....salary expected 12.5k......kindly check once and confirm immediately joining...', 85, '0000-00-00 00:00:00', 1),
(10033, 9717, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10034, 9718, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10035, 9740, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10036, 9720, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10037, 9570, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10038, 9719, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10039, 9724, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10040, 9721, 13, 5, 0, 'not suitable for tele sales', 92, '0000-00-00 00:00:00', 1),
(10041, 9722, 24, 5, 0, 'Candidate okay but she told discuss with family for this job.. so we want to rejected', 85, '0000-00-00 00:00:00', 1),
(10042, 9725, 59, 3, 0, 'Shanmugam team', 60, '0000-00-00 00:00:00', 1),
(10043, 9727, 74, 7, 0, 'She is ok with the team adaptive and job need also 1 sister married and brother doing 12th ......home to office 5mins travel only ....have laptop and expected 10k salary kindly check once and confirm ', 85, '0000-00-00 00:00:00', 1),
(10044, 9728, 74, 7, 0, 'She is ok with the profile and highly job need father working in aavin labour only have laptop and near by only office immediately joining kindly check once and confirm expected 10k only', 85, '0000-00-00 00:00:00', 1),
(10045, 9729, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10046, 9735, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10047, 9730, 59, 5, 0, 'Not much comfort with TxxampC Will not sustain', 92, '0000-00-00 00:00:00', 1),
(10048, 9731, 59, 5, 0, 'Will not sustain for a long may get marry next year,also not comfort much with the TxxampC Salary', 92, '0000-00-00 00:00:00', 1),
(10049, 9737, 59, 3, 0, 'Selected for Consultant Role - Arumbakkam', 14, '2022-08-08 03:18:50', 1),
(10050, 9732, 59, 5, 0, 'Wil not sustain for a long not open much with TxxampC not suitable', 92, '0000-00-00 00:00:00', 1),
(10051, 9739, 59, 5, 0, 'Need to Relocate Fresher no basic skills family need is there if he come back let us try', 92, '0000-00-00 00:00:00', 1),
(10052, 9738, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-08-08 03:19:14', 1),
(10053, 9725, 44, 4, 1, 'Ji candidate ok for me need your Suggestion ', 59, '2022-08-08 03:19:42', 1),
(10054, 9706, 14, 7, 0, 'Salary 10k candidate ok need to confirm joining date', 59, '2022-08-08 03:21:01', 1),
(10055, 9707, 14, 1, 0, NULL, 59, '2022-08-08 03:21:28', 1),
(10056, 9706, 59, 5, 0, 'Candidate was not interested dropped ', 14, '2022-08-08 03:45:52', 1),
(10057, 9743, 59, 5, 0, 'Will not sustain in our domain fresher he was into core for 5 yrs not suitable ', 85, '0000-00-00 00:00:00', 1),
(10058, 9733, 74, 7, 0, 'She is ok with telesales highly voice active and job need ....father farmer have laptop and highly family financial issue...have laptop expected 10k kindly check once and confirm ', 85, '0000-00-00 00:00:00', 1),
(10059, 9708, 13, 7, 0, 'ok salary 10k joining date confirm pannanum', 60, '0000-00-00 00:00:00', 1),
(10060, 9708, 59, 2, 0, 'Salary Exp is high being a fresher ave his own family business Sustainability Doubts min Exp is 12K\n', 13, '2022-08-08 06:17:19', 1),
(10061, 9700, 59, 3, 0, 'Selected for Consultant Role - Thanjavur Locaiton', 74, '2022-08-08 06:27:42', 1),
(10062, 9728, 59, 5, 0, 'Not going to join she is relocating back to native', 74, '2022-08-08 06:34:30', 1),
(10063, 9727, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-08-08 06:40:05', 1),
(10064, 9733, 59, 3, 0, 'Consultant role Thanjavur Loca ', 74, '2022-08-08 06:45:24', 1),
(10065, 9677, 59, 2, 0, 'Continuous RNR', 59, '2022-08-08 07:30:40', 1),
(10066, 9725, 29, 7, 3, 'RM, shanmugam team', 44, '2022-08-09 09:35:33', 1),
(10067, 9748, 59, 5, 0, 'Too long Distance almost 54kms up and down will not run in a long show', 85, '0000-00-00 00:00:00', 1),
(10068, 9759, 14, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10069, 9751, 14, 2, 0, 'Expecting high salary and asking one month time to join need to try this month last week', 85, '0000-00-00 00:00:00', 1),
(10070, 9752, 59, 4, 0, 'Fresher kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10071, 9757, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10072, 9758, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10073, 9756, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10074, 9753, 74, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10075, 9754, 74, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10076, 9755, 74, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10077, 9712, 59, 5, 0, 'Too long distance will not sustain and not much suitable for this Role\n', 85, '0000-00-00 00:00:00', 1),
(10078, 9713, 59, 5, 0, 'Communication Managable but long distance sustainability doubts a lot not suitable', 85, '0000-00-00 00:00:00', 1),
(10079, 9716, 59, 5, 0, 'Long Distancenot open with telecalling looking for MIS but not much clear with the skills and will not sustian', 85, '0000-00-00 00:00:00', 1),
(10080, 9744, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10081, 9746, 59, 5, 0, 'Much focussed on Accounts position,will not handle our pressure', 85, '0000-00-00 00:00:00', 1),
(10082, 9747, 59, 5, 0, 'Too long Distance will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(10083, 9749, 59, 5, 0, 'Exp is high not much stable with his previous exp not much comfort with TxxampC', 85, '0000-00-00 00:00:00', 1),
(10084, 9750, 59, 5, 0, 'Long Career Gap Fresher to this domain age around 32 wil not run in a long show', 85, '0000-00-00 00:00:00', 1),
(10085, 9725, 59, 3, 0, 'Shanmugam team', 29, '2022-08-09 08:56:55', 1),
(10086, 9701, 60, 1, 0, NULL, 18, '2022-08-10 10:13:30', 1),
(10087, 9763, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10088, 9764, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10089, 9762, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10090, 9760, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10091, 9766, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10092, 9770, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10093, 9770, 88, 7, 0, 'Selected for RE ...Ok for 16.5K to 17K net', 57, '2022-08-10 03:16:50', 1),
(10094, 9767, 85, 1, 0, NULL, 92, '0000-00-00 00:00:00', 1),
(10095, 9781, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10096, 9780, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10097, 9774, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10098, 9775, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10099, 9778, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10100, 9770, 59, 3, 0, 'Selected for Syed Team ', 88, '2022-08-11 02:55:56', 1),
(10101, 9776, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10102, 9777, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10103, 9783, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10104, 9784, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10105, 9785, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10106, 9786, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10107, 9787, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10108, 9788, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10109, 9789, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10110, 9797, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10111, 9794, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10112, 9795, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10113, 9782, 88, 7, 0, 'Selected for RE', 89, '2022-08-13 01:09:17', 1),
(10114, 9799, 13, 5, 0, 'not suitable for tele sales', 85, '0000-00-00 00:00:00', 1),
(10115, 9752, 27, 1, 0, NULL, 59, '2022-08-16 10:13:32', 1),
(10116, 9782, 59, 5, 0, 'Candidate didnt turn back with his confirmation not responding the calls\n', 88, '2022-08-16 11:43:03', 1),
(10117, 9807, 24, 5, 0, 'expecting high sal', 85, '0000-00-00 00:00:00', 1),
(10118, 9806, 59, 5, 0, 'Communication Average,have exp in non voice Much Focus on the salary Will not run in a long show', 85, '0000-00-00 00:00:00', 1),
(10119, 9805, 74, 7, 0, 'she is ok with the sales and team high job and expected 10k have laptop immediate joining kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(10120, 9804, 74, 7, 0, 'she is ok with the profile and fit for team travel time 45mins and high job need expected 10k and have laptop immediate joinig and kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(10121, 9810, 59, 3, 0, 'Have 3 Months Exp 5050 Can Be Trained Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(10122, 9803, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(10123, 9809, 93, 4, 0, 'Shortlisted communication is good already worked in bpo real estate sales and receptionist in hotel \nPrevious salary 18k \nAsking for the same we can negotiate with her i told hr will call you regarding same ', 60, '0000-00-00 00:00:00', 1),
(10124, 9809, 60, 1, 0, NULL, 93, '2022-08-16 03:53:16', 1),
(10125, 9810, 57, 4, 0, 'candidate ok , pls confirm joinig date , fresher', 59, '2022-08-16 08:38:53', 1),
(10126, 9827, 14, 7, 0, 'Salary 11k, please confirm the joining date', 85, '0000-00-00 00:00:00', 1),
(10127, 9827, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-08-17 12:43:48', 1),
(10128, 9835, 14, 7, 0, 'Fresher , salary 10k, need to confirm joining date', 85, '0000-00-00 00:00:00', 1),
(10129, 9823, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10130, 9824, 97, 4, 0, 'has 1yr exp in telecalling.. good convincing skill.. e-saleS-RM', 85, '0000-00-00 00:00:00', 1),
(10131, 9815, 97, 2, 0, 'has some Theoretical knowledge in php....so SNR ..wants to complete the task ..', 85, '0000-00-00 00:00:00', 1),
(10132, 9832, 74, 5, 0, 'not fit for team and not suite for telesales high attitude', 85, '0000-00-00 00:00:00', 1),
(10133, 9835, 59, 2, 0, 'Need to give his confirmation', 14, '2022-08-17 02:26:25', 1),
(10134, 9810, 88, 7, 0, 'Selected for RE', 57, '2022-08-17 04:15:42', 1),
(10135, 9810, 59, 3, 0, 'Have 3 Months Exp 5050 Can Be Trained Kindly Check And Let Me Know Your Inputs', 88, '2022-08-17 04:17:29', 1),
(10136, 9822, 97, 5, 0, 'Average communication..... fresher to ui/ux designer but sal expt high ... long distance too', 85, '0000-00-00 00:00:00', 1),
(10137, 9839, 13, 7, 0, 'ok 10k salary immediate joining', 85, '0000-00-00 00:00:00', 1),
(10138, 9839, 59, 3, 0, 'Selected for Erode - Consultant Role', 13, '2022-08-17 05:42:43', 1),
(10139, 9836, 59, 4, 0, 'Fresher for our Sales,Need to be trained Got terminated from his previous Exp Sustainability doubts kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10140, 9813, 59, 5, 0, 'Have a plan to go with full time masters just for an exp he is looking for job will not sustainxquot', 85, '0000-00-00 00:00:00', 1),
(10141, 9816, 59, 3, 0, 'Internship + Employment', 85, '0000-00-00 00:00:00', 1),
(10142, 9820, 59, 4, 0, 'Fresher can be trained 2nd round interviewed by Latha kindly check and let me know your inputs\n', 85, '0000-00-00 00:00:00', 1),
(10143, 9826, 59, 2, 0, 'Candidate need to get trained 2nd round interviewed by Kaviya,if candidate comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10144, 9831, 59, 2, 0, 'Final round interviewed by gokul profile on Hold candidate not seems to be much active', 85, '0000-00-00 00:00:00', 1),
(10145, 9811, 97, 5, 0, 'has 3m intern exp ... no job need... Sustainability doubts..', 85, '0000-00-00 00:00:00', 1),
(10146, 9834, 97, 5, 0, 'Have Interested in python ... no stability mind.. ', 85, '0000-00-00 00:00:00', 1),
(10147, 9817, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10148, 9818, 97, 5, 0, 'has some Theoretical knowledge in reactjs... so sNR but not much good technical round so rejected by kaviya..', 85, '0000-00-00 00:00:00', 1),
(10149, 9825, 59, 5, 0, 'Not much comfort with TxxampC need time to confirm if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10150, 9824, 29, 7, 0, 'For Esales RM', 97, '2022-08-17 07:11:33', 1),
(10151, 9836, 86, 5, 0, 'Not Satisfied', 59, '2022-08-17 07:17:30', 1),
(10152, 9820, 27, 1, 0, NULL, 59, '2022-08-17 07:18:20', 1),
(10153, 9849, 74, 7, 0, 'She is very talk active and well profile ......clear mindset for the job.......have laptop travel time one hour but very intresting candidate bcoz of she attent the interview is very well.....immediate joining 10 to 11 k expected kindly check once and confirm', 92, '0000-00-00 00:00:00', 1),
(10154, 9850, 74, 7, 0, 'she is ok and well profiled and very strong in process.........have laptop and expected 10k salary ......immediate joining kindly ceck and confirm once', 92, '0000-00-00 00:00:00', 1),
(10155, 9854, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10156, 9855, 74, 5, 0, 'unfit', 85, '0000-00-00 00:00:00', 1),
(10157, 9837, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10158, 9840, 59, 5, 0, 'Communication no,poor writing skills will not sustain and not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(10159, 9842, 59, 5, 0, 'No basic knowledge in skills,Need to get trained a lot ongoing with the class need time to get learn with technnologies if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10160, 9843, 59, 5, 0, 'No Basic Knowledge In Skills,Need To Get Trained A Lot Ongoing With The Class Need Time To Get Learn With Technnologies If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(10161, 9844, 59, 5, 0, 'No Basic Knowledge In Skills,Need To Get Trained A Lot Ongoing With The Class Need Time To Get Learn With Technnologies If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(10162, 9848, 59, 3, 0, 'Selected for Babu Team - staff Role', 85, '0000-00-00 00:00:00', 1),
(10163, 9847, 59, 5, 0, 'not open up much Family need is there need time to check with his brother and confirm, if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10164, 9841, 24, 5, 0, 'not suitable for telecalling sales', 85, '0000-00-00 00:00:00', 1),
(10165, 9856, 59, 5, 0, 'Need to open a lot not open with TxxampC Salary Exp is high not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(10166, 9852, 59, 5, 0, 'Not showing much interest on the jobs due to family pressure on the job he is looking for a job not much active', 85, '0000-00-00 00:00:00', 1),
(10167, 9857, 74, 5, 0, 'unfit', 85, '0000-00-00 00:00:00', 1),
(10168, 9853, 13, 7, 0, 'ok 10k salary joining date confirm pannanum immediate ah ok nu than sonnanga', 85, '0000-00-00 00:00:00', 1),
(10169, 9821, 13, 7, 0, 'ok,10k salary immediate joining call panni confirm pannanum', 60, '0000-00-00 00:00:00', 1),
(10170, 9821, 59, 5, 0, 'Manager rejected - Wrongly updated\n', 13, '2022-08-18 03:43:19', 1),
(10171, 9853, 59, 3, 0, 'Selected for Elite - Erode Location', 13, '2022-08-18 03:44:58', 1),
(10172, 9793, 59, 3, 0, 'Selected for React Internship cum employment', 85, '0000-00-00 00:00:00', 1),
(10173, 9851, 24, 5, 0, 'not suitable for sales', 85, '0000-00-00 00:00:00', 1),
(10174, 9848, 89, 7, 0, 'Shortlist candidate ', 59, '2022-08-18 06:13:31', 1),
(10175, 9867, 14, 7, 0, 'Salary 10 to 10.5k need to check once and confirm joining date', 85, '0000-00-00 00:00:00', 1),
(10176, 9867, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-08-19 11:12:36', 1),
(10177, 9864, 74, 7, 0, 'she is ok with the team very tal active and suite for team...........very poor family having 3 sibling ........mother working as a accounts 6k salary .............father passed.....already 6 months working in telesales .......have laptop.....travel time 45 min but highly job need......expected 11.5k kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(10178, 9861, 74, 7, 0, 'she is ok with the team very talk active and suite for team also arrange the laptop.....father in foreign and 2 brothers doing own business...........have no financial crises but social staus and independance for came to job...........well profile and english literature........expected 11.5k........already work in a telesales...good exposure and 9k previous salary kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(10179, 9860, 59, 5, 0, 'No communicaiton not open for Sales not suits for MIS roles will not sustain and handle our pressure\n', 85, '0000-00-00 00:00:00', 1),
(10180, 9865, 59, 5, 0, 'No Communication no basic ideas in Digital not suitable \n', 85, '0000-00-00 00:00:00', 1),
(10181, 9872, 24, 5, 0, 'not interested in sales.. discuss with family', 85, '0000-00-00 00:00:00', 1),
(10182, 9873, 24, 5, 0, 'he is not interested in sales', 85, '0000-00-00 00:00:00', 1),
(10183, 9877, 13, 7, 0, 'ok 10k salary,monday joining confirm pannanum', 85, '0000-00-00 00:00:00', 1),
(10184, 9876, 59, 2, 0, 'Will come for the final round Sarath Team', 92, '0000-00-00 00:00:00', 1),
(10185, 9875, 59, 2, 0, 'Will Come For The Final Round Sarath Team', 92, '0000-00-00 00:00:00', 1),
(10186, 9866, 59, 5, 0, 'Not much strong with thbasics in hiring,will not run in a long show Family need is not much Sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(10187, 9871, 59, 5, 0, 'Final Round reject by Gokul Will not sustain not much active', 92, '0000-00-00 00:00:00', 1),
(10188, 9869, 59, 5, 0, 'up and down 34kms need time to confirm if he comes back let us try for React', 92, '0000-00-00 00:00:00', 1),
(10189, 9868, 13, 5, 0, 'not suitable for telesales', 92, '0000-00-00 00:00:00', 1),
(10190, 9870, 59, 5, 0, 'Not much open up even though asked her to wait for 2nd round but she left', 85, '0000-00-00 00:00:00', 1),
(10191, 8078, 59, 2, 0, 'Schedule the candidate for F2f', 92, '0000-00-00 00:00:00', 1),
(10192, 9861, 59, 3, 0, 'Selected for Thanjavur Location - Consultant Role,thinking a lot on the target ', 74, '2022-08-19 05:43:51', 1),
(10193, 9864, 59, 3, 0, 'Selected for Thanjavur Elite - Consultant Role', 74, '2022-08-19 05:49:49', 1),
(10194, 9874, 31, 4, 4, 'forwarded for 2nd round interview . candidated expecting little higher package', 85, '0000-00-00 00:00:00', 1),
(10195, 9849, 59, 3, 0, 'Selected for Thanjavur - Consultant Role - 1 hr travel need to check her sustainability', 74, '2022-08-19 06:04:32', 1),
(10196, 9850, 59, 3, 0, 'Selected for thanjavur Location - Consultant Role', 74, '2022-08-19 06:07:59', 1),
(10197, 9815, 97, 5, 0, 'not ok with our terms', 97, '2022-08-19 06:16:11', 1),
(10198, 9804, 59, 5, 0, 'Dropped - Parents are not ok with the profile', 74, '2022-08-19 06:17:26', 1),
(10199, 9805, 59, 5, 0, 'Dropped - Plan to go in the core domain', 74, '2022-08-19 06:19:27', 1),
(10200, 9848, 88, 7, 0, 'ok for RE', 89, '2022-08-19 06:34:26', 1),
(10201, 9877, 59, 3, 0, 'Selected for Erode - Muthu Team Consultant. Seems not much active need to check with her sustainability', 13, '2022-08-20 10:20:40', 1),
(10202, 9881, 59, 4, 0, 'have exp in MIS,Can give a try Familly commitment is there kindly check and give your inputs', 85, '0000-00-00 00:00:00', 1),
(10203, 9885, 59, 5, 0, '1 yr exp in uiux and his current salary is 20KTH,Distance need to focus he is from Tambaram not open with TxxampC Will not sustain in a long run', 85, '0000-00-00 00:00:00', 1),
(10204, 9884, 59, 4, 0, 'No Communication can be trained kindly check and let me know your inputs', 92, '0000-00-00 00:00:00', 1),
(10205, 9892, 59, 5, 0, 'Communication ok Salary expectation is high being a fresher,holding 2 offers with Ramsol and six sigma,will not join and sustain with us focus much on the salary\n', 92, '0000-00-00 00:00:00', 1),
(10206, 9879, 59, 5, 0, 'No understanding capacity will not handle our pressure not openfor taking calls', 85, '0000-00-00 00:00:00', 1),
(10207, 9886, 59, 4, 0, 'Ready tp learn,family need is there communication very average kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10208, 9889, 13, 7, 0, 'Candidate have 4 years experience but in other field and his previous salary is 18000, And hear in CAFS we fixed 12000 salary. Next 6 months if performance is Best means salary hike will be provide, comming Tuesday joining.', 60, '0000-00-00 00:00:00', 1),
(10209, 9889, 59, 3, 0, 'Selected for Erode- Muthu Team Consultant Role Focus on the salary much family need is there', 13, '2022-08-20 03:31:17', 1),
(10210, 9887, 59, 4, 0, 'Fresher can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10211, 9888, 59, 5, 0, 'No communication,have exp in Justdial Sales but not interested to go again,checked for other roles in operations but not open with TxxampC,will not handle the work pressure', 85, '0000-00-00 00:00:00', 1),
(10212, 9890, 59, 3, 0, ' Have Exp But No Sustainability In His Previous Exp,Bit Attitude Issue Internal Team Reference Salary Exp Is High Kindly Check And Let Me Know Your Inputs , Candidate submitted the fake document ,also he accepted the same.Need to analyse his performance and decide the candidate in 7 days training', 85, '0000-00-00 00:00:00', 1),
(10213, 9890, 89, 7, 0, 'Shortlist candidate ', 59, '2022-08-20 04:28:16', 1),
(10214, 9890, 88, 7, 0, 'Selected for RE at Rs 14300/- take home', 89, '2022-08-20 04:55:51', 1),
(10215, 9890, 88, 7, 0, 'Selected for RE at Rs 14300/- take home', 88, '2022-08-20 05:28:54', 1),
(10216, 9848, 59, 3, 0, 'Selected for Babu Team - staff Role', 88, '2022-08-20 05:29:18', 1),
(10217, 9884, 98, 5, 0, 'very poor communication . has knowledge in Excel !', 59, '2022-08-20 06:42:34', 1),
(10218, 9887, 51, 5, 0, 'ok', 59, '2022-08-20 06:43:36', 1),
(10219, 9886, 98, 4, 0, 'Fresher - Interested to learn, good self confident ,', 59, '2022-08-20 06:45:15', 1),
(10220, 9881, 98, 4, 0, 'checked his knowledge in MIS.\n50% ok with his communication .', 59, '2022-08-20 06:46:03', 1),
(10221, 9881, 60, 1, 0, NULL, 98, '2022-08-20 06:48:27', 1),
(10222, 9886, 60, 1, 0, NULL, 98, '2022-08-20 06:53:45', 1),
(10223, 9875, 51, 5, 0, 'ok', 59, '2022-08-20 07:03:13', 1),
(10224, 9875, 59, 4, 0, 'Fresher for our Sales can be trained kindly check and let me know your inputs', 59, '2022-08-20 07:03:13', 1),
(10225, 9876, 51, 5, 0, 'no', 59, '2022-08-20 07:03:59', 1),
(10226, 9876, 59, 4, 0, 'Fresher for our sales can be trained kindly check and let me know your inputs', 59, '2022-08-20 07:03:59', 1),
(10227, 9899, 59, 3, 0, 'Selected for Mutual fund Coordinator final round interviewed by Gokul', 60, '0000-00-00 00:00:00', 1),
(10228, 9894, 59, 5, 0, 'Need to open a lot not much good in skills theoritically says only practical but not seems to be ok.Given him time to learn if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10229, 9898, 59, 5, 0, 'Looking only for Team lead profile 90 days notice ', 60, '0000-00-00 00:00:00', 1),
(10230, 9896, 59, 5, 0, 'no Communication not comfort with TxxampC Pushed him for sales but not much comfort will not sustain and handle our sales pressure', 60, '0000-00-00 00:00:00', 1),
(10231, 9897, 59, 5, 0, 'Not much active need time to confirm on txxampC Will not sustain in a long run', 60, '0000-00-00 00:00:00', 1),
(10232, 9895, 31, 4, 4, 'already have relevant experience in cold calling and selling insurance products', 60, '0000-00-00 00:00:00', 1),
(10233, 9901, 97, 5, 0, 'long distance ... Sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(10234, 9906, 14, 7, 0, 'Salary 10.5k, need to confirm joining date', 85, '0000-00-00 00:00:00', 1),
(10235, 9906, 59, 3, 0, 'Selected for Arumbakkam - consultant role', 14, '2022-08-23 02:58:55', 1),
(10236, 9895, 29, 5, 0, 'Shortlisted, but he Didnxquott respond to any calls and sms, Donxquott hire him in future also ', 31, '2022-08-23 05:06:58', 1),
(10237, 9902, 59, 4, 0, 'Fresher can be trained kindly check and let me knwo your inputs', 60, '0000-00-00 00:00:00', 1),
(10238, 9904, 59, 5, 0, 'No Communication not suitable for MIS not open for Sales', 60, '0000-00-00 00:00:00', 1),
(10239, 9905, 59, 2, 0, 'Communication is Good Fresher can be trained final round interviewed by gokul if he comes back let us confirm with his joinig', 60, '0000-00-00 00:00:00', 1),
(10240, 9902, 63, 1, 0, NULL, 59, '2022-08-23 08:16:00', 1),
(10241, 9874, 29, 7, 3, 'with experience and higher package, need to check in 1 month if Potential to work for long term, else need to remove in 45 days', 31, '2022-08-24 09:48:02', 1),
(10242, 9912, 59, 5, 0, 'No basic ideas need to open a lot will not sustain in our Roles', 85, '0000-00-00 00:00:00', 1),
(10243, 9913, 97, 5, 0, 'From trichy ...no job need and he will not sustain..', 85, '0000-00-00 00:00:00', 1),
(10244, 9914, 59, 5, 0, 'Looking much for the inbound calls,Focus towards the media roles will not run in a long no bike and no laptop', 85, '0000-00-00 00:00:00', 1),
(10245, 9915, 97, 5, 0, 'From trichy....will not suit for our process... sal expt also high...', 85, '0000-00-00 00:00:00', 1),
(10246, 9916, 59, 5, 0, 'Seems not much to be active Pronunciation no seems to experienced pressure in his previous ,sustainability doubts ', 85, '0000-00-00 00:00:00', 1),
(10247, 9919, 59, 5, 0, 'Fresher Need to be trained but sustainability doubts he may get some reference and move out Long run doubts on this profile', 85, '0000-00-00 00:00:00', 1),
(10248, 9920, 59, 5, 0, 'Fresher Distance to be focused Need time to confirm on TxxampC Thinking a lot on TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10249, 9921, 59, 5, 0, 'Fresher 5050 profile processed for 2nd round but left without attending the interview ', 85, '0000-00-00 00:00:00', 1),
(10250, 9921, 59, 5, 0, 'Fresher 5050 profile processed for 2nd round but left without attending the interview ', 85, '0000-00-00 00:00:00', 1),
(10251, 9922, 59, 5, 0, 'fresher no basic ideas in the skills too long distance no JS/PHP Skills not suitable', 85, '0000-00-00 00:00:00', 1),
(10252, 9923, 59, 5, 0, 'Fresher No Basic Ideas In The Skills No JS/PHP Skills Not Suitable Not Open For TxxampC', 85, '0000-00-00 00:00:00', 1),
(10253, 9924, 59, 5, 0, 'Fresher No Basic Ideas In The Skills No JS/PHP Skills Not Suitable not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(10254, 9926, 59, 4, 0, 'fresher 5050 profile sustainability doubts,kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10255, 9925, 59, 5, 0, 'Fresher no basic ideas in the skills she is clear that will focus on high pay positions ,EB in Amazon and looking for references too will not run in a long', 85, '0000-00-00 00:00:00', 1),
(10256, 9927, 59, 3, 0, 'Selected for Renewals - Health Insurance 5 yrs Exp', 85, '0000-00-00 00:00:00', 1),
(10257, 9917, 59, 3, 0, 'Selected for Manikandan Team - PF/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(10258, 9926, 63, 1, 0, NULL, 59, '2022-08-24 07:31:47', 1),
(10259, 9917, 86, 4, 0, 'Selected For Next Round', 59, '2022-08-24 07:37:27', 1),
(10260, 9824, 59, 3, 0, 'Selected for ESales Karthika Team Consultant Role', 29, '2022-08-25 12:11:41', 1),
(10261, 9874, 59, 3, 0, 'Gaurav sir got appproval for the candidate from Suresh sir with the condition of giving 20K hike round of 6 LPA if he achieve the target of 3.5L within Sept 2022', 29, '2022-08-25 12:14:45', 1),
(10262, 9909, 59, 5, 0, 'Fresher need to be trained almost 1 hr travel 5050 on TxxampC If he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10263, 9929, 59, 5, 0, 'No understanding ,Pronunciation not good No local Language Writing skills also not upto the mark as we expected not suitable will not handle our pressure\n', 85, '0000-00-00 00:00:00', 1),
(10264, 9932, 24, 5, 0, 'not suitable for Profile ', 85, '0000-00-00 00:00:00', 1),
(10265, 9933, 59, 5, 0, 'Communication is Good,Checked for MF but the salary exp is very high his last drawn MCTC 35K,Not open for Sales Calls not suitable', 85, '0000-00-00 00:00:00', 1),
(10266, 9934, 59, 5, 0, '30 days notice 1.10 months 2 companies and looking for 3rd one .Focusing only on the salary much,Will not sustain in a long run,also felt pressure with the previous Exp not suitable', 85, '0000-00-00 00:00:00', 1),
(10267, 9935, 59, 4, 0, '5050 profile no communication for recruitment,for Telecaller little doubtful on sustainability kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10268, 9936, 59, 4, 0, '5050 profile need to be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10269, 9937, 59, 4, 0, 'Fresher need to be trained no bike Laptop Yes 5050 Profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10270, 9931, 59, 5, 0, 'No stability in her previous Exp, Currently working and looking for opportunities just for salary growth will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(10271, 9937, 89, 1, 0, NULL, 59, '2022-08-25 06:36:50', 1),
(10272, 9935, 14, 1, 0, NULL, 59, '2022-08-25 06:52:09', 1),
(10273, 9936, 57, 1, 0, NULL, 59, '2022-08-25 07:00:11', 1),
(10274, 9938, 59, 5, 0, 'Communication ok fresher not open for TxxampC not even for an year will not sustain', 85, '0000-00-00 00:00:00', 1),
(10275, 9939, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(10276, 9941, 59, 2, 0, 'Need to come back with his confirmation,5050 if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10277, 9940, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(10278, 9947, 59, 5, 0, 'not open for TxxampC,Fresher,Not much strong in the Skills', 85, '0000-00-00 00:00:00', 1),
(10279, 9948, 59, 5, 0, 'Looking for Java Openings he was into media earlier not suitable', 85, '0000-00-00 00:00:00', 1),
(10280, 9949, 59, 5, 0, 'Not open for outbound calls need to get in the networking profile not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(10281, 9951, 59, 5, 0, 'No Convincing Not showing interest towards the job,Focus only for collections will not sustain ina long run', 85, '0000-00-00 00:00:00', 1),
(10282, 9952, 59, 5, 0, 'Fresher not open for Internship and SA,Focus only on the salary will not sustain', 85, '0000-00-00 00:00:00', 1),
(10283, 9944, 97, 5, 0, 'will not suit for our process not open up..', 85, '0000-00-00 00:00:00', 1),
(10284, 9945, 97, 5, 0, 'NO Sustainabilites in previous companies.. he will not suit for telesales also.. ', 85, '0000-00-00 00:00:00', 1),
(10285, 9907, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10286, 9953, 59, 4, 0, 'Fresher need to open a lot 5050 kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10287, 8989, 60, 1, 0, NULL, 18, '2022-08-26 04:30:12', 1),
(10288, 9955, 59, 4, 0, 'Have basic knowledge in the UI UX skills can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10289, 9946, 59, 3, 0, 'Selected for Syed Team - RE - Stsff role no previous Exp Documents, should check in 7 days', 85, '0000-00-00 00:00:00', 1),
(10290, 9953, 53, 1, 0, NULL, 59, '2022-08-26 07:34:38', 1),
(10291, 9946, 57, 4, 0, 'Candidate is ok , confirm the salary and joining date , ', 59, '2022-08-26 07:40:04', 1),
(10292, 9955, 69, 1, 0, NULL, 59, '2022-08-26 07:44:13', 1),
(10293, 9966, 24, 4, 0, 'Candidate selected 10k -15k expct.. monday joining', 85, '0000-00-00 00:00:00', 1),
(10294, 9969, 59, 5, 0, 'Fresher no basic ideas in the skills not much comfort in TxxampC Will not sustain', 85, '0000-00-00 00:00:00', 1),
(10295, 9968, 59, 5, 0, 'Too long distance will not run in a long 2nd reject by manikandan', 85, '0000-00-00 00:00:00', 1),
(10296, 9967, 59, 5, 0, 'Fresher his EB in IT Pune he is looking for positions through reference too long distance will not sustina', 85, '0000-00-00 00:00:00', 1),
(10297, 9965, 59, 5, 0, 'Fresher No Basic Ideas In The Skills Not Much Comfort In TxxampC Will Not Sustain need time to confirm', 85, '0000-00-00 00:00:00', 1),
(10298, 9964, 59, 5, 0, 'Looking only for the Salary growth no basic ideas he is from Core filed', 85, '0000-00-00 00:00:00', 1),
(10299, 9963, 59, 5, 0, 'No basic skills and need time to give his confirmation if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10300, 9962, 59, 4, 0, 'Fresher 5050 discussed for noth Arumbakam xxamp Tnagar do check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10301, 9961, 59, 5, 0, 'Looking for Java Profile and not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(10302, 9960, 59, 3, 0, '15 Days Free Intern then 5K for 5 month 8-12 for Employment', 85, '0000-00-00 00:00:00', 1),
(10303, 9959, 59, 4, 0, 'fresher have basic knowledge in UI UX kindly check and let me know your interest\n', 85, '0000-00-00 00:00:00', 1),
(10304, 9958, 59, 5, 0, 'Fresher Preparing for UPSCxxamp police jobs will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(10305, 9956, 59, 5, 0, 'Too long Distance ready to relocate but not much comfort in TxxampC Will not sustain and handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(10306, 9966, 88, 7, 0, 'Selected for RE', 24, '2022-08-27 01:01:11', 1),
(10307, 9973, 59, 5, 0, 'Too long Distance not open with TxxampC Looking for Time being preparing UPSC', 85, '0000-00-00 00:00:00', 1),
(10308, 9971, 59, 5, 0, 'No basic skills in Flutter not much importance on job will not run in a long show', 85, '0000-00-00 00:00:00', 1),
(10309, 9972, 59, 5, 0, 'No ideas in the Mobile App Skills nust came along with his friend', 85, '0000-00-00 00:00:00', 1),
(10310, 9966, 59, 3, 0, 'Selected for Erode - Suthagar - Staff Role', 88, '2022-08-27 01:47:00', 1),
(10311, 9946, 88, 7, 0, 'Shortlisted for RE', 57, '2022-08-27 02:58:00', 1),
(10312, 9974, 59, 4, 0, 'Fresher 5050Profile Open for TxxampC already attended lot of interviews and finally come down for TxxampC', 85, '0000-00-00 00:00:00', 1),
(10313, 9959, 69, 5, 0, 'Task output is terrible', 59, '2022-08-27 07:12:24', 1),
(10314, 9962, 53, 1, 0, NULL, 59, '2022-08-27 07:16:47', 1),
(10315, 9974, 27, 1, 0, NULL, 59, '2022-08-27 07:32:22', 1),
(10316, 9917, 18, 7, 0, 'Selected for Mani Team. Asked 16K+ as take home . Ready to Join on 5th. He has not completed degeree. Kinldy release offer.', 86, '2022-08-29 12:51:57', 1),
(10317, 9917, 60, 1, 0, NULL, 18, '2022-08-29 01:18:28', 1),
(10318, 9890, 59, 3, 0, ' Have Exp But No Sustainability In His Previous Exp,Bit Attitude Issue Internal Team Reference Salary Exp Is High Kindly Check And Let Me Know Your Inputs , Candidate submitted the fake document ,also he accepted the same.Need to analyse his performance and decide the candidate in 7 days training', 88, '2022-08-29 04:36:20', 1),
(10319, 9990, 59, 3, 0, 'Selected for Banu Team - B2B role', 60, '0000-00-00 00:00:00', 1),
(10320, 9978, 59, 5, 0, 'Fresher need to be trained a lot left without attending the 2nd round 5050 ', 60, '0000-00-00 00:00:00', 1),
(10321, 9988, 59, 5, 0, '9 months to complete the graduation looking for Internship', 60, '0000-00-00 00:00:00', 1),
(10322, 9989, 59, 5, 0, '9 Months To Complete The Graduation Looking For Internship', 60, '0000-00-00 00:00:00', 1),
(10323, 9984, 59, 4, 0, 'Communication ok can be trained do check and let me know your inpputs', 60, '0000-00-00 00:00:00', 1),
(10324, 9982, 59, 4, 0, 'Fresher for UIUX Can be trained have skills knowledge kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10325, 9979, 59, 5, 0, 'Communication average,No basic Ideas in the recruitment,will not run in a long,sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(10326, 9983, 59, 5, 0, 'No Communication not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(10327, 9986, 59, 2, 0, 'Communication Ok Can be trained but long run doubts professional Cricket player if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10328, 9981, 59, 3, 0, 'Selected for Babu Team - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10329, 9980, 59, 5, 0, '6 months Exp but not much good in Skills wil not sustain for a long not much suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(10330, 9985, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(10331, 9987, 59, 5, 0, 'Communication Average Left without completing the task not suitable Drop', 60, '0000-00-00 00:00:00', 1),
(10332, 9990, 53, 7, 0, 'selected for b2B. Sal 15k CTC, pls cnfrm the DOJ', 59, '2022-08-29 07:27:26', 1),
(10333, 9984, 69, 4, 0, 'candidate Didnxquott turn up', 59, '2022-08-29 07:35:22', 1),
(10334, 9982, 69, 1, 0, NULL, 59, '2022-08-29 07:36:08', 1),
(10335, 9981, 89, 7, 0, 'Selected ', 59, '2022-08-29 07:40:34', 1),
(10336, 9985, 86, 4, 0, 'Selected For Next Round', 59, '2022-08-29 07:42:21', 1),
(10337, 9946, 59, 3, 0, 'Selected for Syed Team - RE - Stsff role no previous Exp Documents, should check in 7 days', 88, '2022-08-29 08:27:35', 1),
(10338, 9981, 88, 7, 0, 'Selected for RE', 89, '2022-08-30 09:40:00', 1),
(10339, 9990, 59, 3, 0, 'Selected for Banu Team - B2B role', 53, '2022-08-30 10:43:26', 1),
(10340, 10002, 13, 5, 0, 'not suitable for telesales', 85, '0000-00-00 00:00:00', 1),
(10341, 10003, 57, 4, 0, 'candidate is ok . kindly confirm the joining date , ', 85, '0000-00-00 00:00:00', 1),
(10342, 9984, 54, 1, 0, NULL, 69, '2022-08-30 05:52:38', 1),
(10343, 10015, 59, 4, 0, 'Fresher have Designing Skills Can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10344, 10016, 59, 5, 0, 'Too long Distance(Maraimalainagar) No basic ideas in Javascript looking for Bank openings Not suitable', 60, '0000-00-00 00:00:00', 1),
(10345, 10014, 59, 5, 0, 'yet to complete her graduation not suitable', 60, '0000-00-00 00:00:00', 1),
(10346, 10013, 59, 5, 0, 'Seems not much active,no basic JS skills,will not run in long not suitable', 60, '0000-00-00 00:00:00', 1),
(10347, 9992, 59, 5, 0, 'Preparing for CMA, Focus much on CMA positions only in next 3 months exams Will not handle our Pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10348, 9993, 59, 5, 0, 'no basic ideas in MIS, will not handle our pressure not suitable ', 60, '0000-00-00 00:00:00', 1),
(10349, 9996, 59, 5, 0, 'Fresher Stipend Exp is more, Just started learning JS,Preferred to work in Java Profile Will not sustain she may get reference ,sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(10350, 9998, 59, 2, 0, 'Fresher can be trained no bike no laptop Sustainability doubts Need to check later', 60, '0000-00-00 00:00:00', 1),
(10351, 9999, 59, 4, 0, 'Fresher ,5050 profile have 1 month exp in Data Entry, Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10352, 9977, 59, 4, 0, 'Fresher, Salary Exp is high,Communication is Good,Family need is not there kindly check and give your inputs', 85, '0000-00-00 00:00:00', 1),
(10353, 9994, 59, 5, 0, 'Fresh for Recruiter role,Have Exp in Collections/Retentions tried for Renewals Calling but candidate is not interested, need time to give his confirmation on TxxampC', 85, '0000-00-00 00:00:00', 1),
(10354, 9995, 97, 5, 0, 'has Non-Voice exp ..no idea about Recruiting...long distance too...no communication', 85, '0000-00-00 00:00:00', 1),
(10355, 9997, 97, 5, 0, 'from chengalpattu....not ready to relocate.. no basic skills in ui/ux', 85, '0000-00-00 00:00:00', 1),
(10356, 10000, 97, 5, 0, 'no communication ..prefer to talk in tamil.. no idea about mIS .. will not suit for our process', 85, '0000-00-00 00:00:00', 1),
(10357, 10001, 97, 5, 0, '3m of intern exp .. not much good in ui/ux.... will not sustain ..', 85, '0000-00-00 00:00:00', 1),
(10358, 10004, 97, 5, 0, 'has some Knowledge in html, and CSS. moved to sNR. but he left middle of the interview.', 85, '0000-00-00 00:00:00', 1),
(10359, 10006, 97, 5, 0, 'no idea about ui/ux ... will not suit for our role', 85, '0000-00-00 00:00:00', 1),
(10360, 10011, 97, 5, 0, 'fresher sal expt too high long distance too..', 85, '0000-00-00 00:00:00', 1),
(10361, 10012, 59, 5, 0, 'Not Open with TxxampC,No local language will not suits in our work environment Salary exp is high,not suitable', 85, '0000-00-00 00:00:00', 1),
(10362, 10008, 59, 2, 0, 'Fresher have basic skills knowledge in backend also but prefer to work in Front End Can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10363, 10009, 59, 5, 0, 'Fresher Distance Need to see,No basic ideas in the skills not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(10364, 10010, 59, 5, 0, 'Fresher,have basic exp in Skills need to be trained a lot,2nd round reject by Kavya', 85, '0000-00-00 00:00:00', 1),
(10365, 10007, 74, 5, 0, 'unfit', 85, '0000-00-00 00:00:00', 1),
(10366, 10015, 69, 1, 0, NULL, 59, '2022-08-30 06:54:02', 1),
(10367, 9999, 57, 1, 0, NULL, 59, '2022-08-30 07:20:43', 1),
(10368, 9977, 69, 1, 0, NULL, 59, '2022-08-30 07:25:08', 1),
(10369, 10028, 59, 2, 0, 'Will come for a final round - Product Support,Can be trained ', 85, '0000-00-00 00:00:00', 1),
(10370, 10027, 97, 5, 0, 'not suit for telecalling ... no convincing skill...', 85, '0000-00-00 00:00:00', 1),
(10371, 10026, 59, 5, 0, 'Communication is Good, have a plan to travel abroad for the studies,willnot sustain more than 7 months', 85, '0000-00-00 00:00:00', 1),
(10372, 10025, 97, 5, 0, '1hr travel ...will not sustain in our role ', 85, '0000-00-00 00:00:00', 1),
(10373, 10024, 97, 5, 0, 'From ponneri 2hrs travel not ready to shifting.. not much good in html xxampcss', 85, '0000-00-00 00:00:00', 1),
(10374, 10023, 59, 5, 0, 'Fresher for IT,Career Gap Not much good in skills,not open with TxxampC Will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(10375, 10022, 59, 5, 0, 'have 3 months exp in Recruitment,no proper reasons for relieving,not open with TxxampC will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(10376, 10021, 97, 5, 0, 'from villupuram .. average in Convincing skills... will not sustain in our process', 85, '0000-00-00 00:00:00', 1),
(10377, 10020, 97, 5, 0, 'From villupuram .no idea about telecalling, not ok with sales..', 85, '0000-00-00 00:00:00', 1),
(10378, 10019, 59, 5, 0, 'Fresher 36kms up and down not open for TxxampC not much good in skills not suitable salary exp is high', 85, '0000-00-00 00:00:00', 1),
(10379, 10018, 59, 3, 0, 'Selected for Babu Team - Staff Role', 85, '0000-00-00 00:00:00', 1),
(10380, 10018, 89, 7, 0, 'Selected ', 59, '2022-09-01 06:35:07', 1),
(10381, 10003, 88, 7, 0, 'Selected for RE', 57, '2022-09-01 06:47:31', 1),
(10382, 10018, 88, 7, 0, 'Selected for RE', 89, '2022-09-01 06:49:44', 1),
(10383, 9981, 59, 3, 0, 'Selected for Babu Team - Consultant Role', 88, '2022-09-01 07:42:37', 1),
(10384, 10018, 59, 3, 0, 'Selected for Babu Team - Staff Role', 88, '2022-09-01 07:43:35', 1),
(10385, 10003, 59, 3, 0, 'Selected for Syed Team - Staff Role', 88, '2022-09-02 12:48:28', 1),
(10386, 10035, 14, 7, 0, 'Fresher , salary 10.5k , need to confirm joining date ', 60, '0000-00-00 00:00:00', 1),
(10387, 10035, 59, 3, 0, 'Selected for Elite - Arumbakkam - Consultant role Need to analyse in 7 days of training', 14, '2022-09-03 10:08:54', 1),
(10388, 10037, 24, 2, 0, 'Sustainabilty doubt long distance and also not speaking well so Ramesh sir decide to hold this profile', 85, '0000-00-00 00:00:00', 1),
(10389, 10036, 59, 4, 0, 'Communication Ok,5050 on sustainability can be trained in the Renewals/MIS kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10390, 10039, 24, 5, 0, 'not suitable for us..', 60, '0000-00-00 00:00:00', 1),
(10391, 10047, 14, 7, 0, 'Fresher , 10.5k to 11k salary please confirm joining date', 60, '0000-00-00 00:00:00', 1),
(10392, 10040, 59, 2, 0, 'Fresher for our domain can be trained should come for final round this Monday(03/Sep/2022)', 85, '0000-00-00 00:00:00', 1),
(10393, 10042, 59, 5, 0, 'no basic skills not suitable long career gap will not sustain\n', 85, '0000-00-00 00:00:00', 1),
(10394, 10047, 59, 3, 0, 'selected for Arumbakkam - Consultant Role', 14, '2022-09-03 03:28:46', 1),
(10395, 10033, 24, 5, 0, 'rejected not fit for us', 60, '0000-00-00 00:00:00', 1),
(10396, 10034, 24, 5, 0, 'not suitable..', 60, '0000-00-00 00:00:00', 1),
(10397, 10044, 97, 5, 0, 'not suit for our process .. no idea about mIS .. not open up', 85, '0000-00-00 00:00:00', 1),
(10398, 10045, 97, 5, 0, 'no communication, not open up. Career gap too', 85, '0000-00-00 00:00:00', 1),
(10399, 10043, 97, 5, 0, 'Good at html , css xxamp JS.. sustainbility doubts..\nso.. SNR To kavya then 3rd round by tamilmani .. finally rejected by gokul..', 85, '0000-00-00 00:00:00', 1),
(10400, 10036, 98, 1, 0, NULL, 59, '2022-09-03 05:28:34', 1),
(10401, 10049, 59, 5, 0, 'Too Long Distance Fresher Will not sustain in our Roles', 85, '0000-00-00 00:00:00', 1),
(10402, 10064, 97, 4, 0, 'has one yr of exp in hathway bB sales... okay with process check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(10403, 10057, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(10404, 10051, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(10405, 10052, 59, 5, 0, 'Aged Had his higher studies in Abroad,also his salary Exp is high', 85, '0000-00-00 00:00:00', 1),
(10406, 10068, 59, 5, 0, 'Communication ok Fresh to our domain,5050 profilebut she was not interested much in the profile', 85, '0000-00-00 00:00:00', 1),
(10407, 10048, 59, 5, 0, 'Not open for TxxampC also not comfort in timings not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(10408, 10065, 59, 5, 0, 'Fresher in UIUX Salary exp is Very high also not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(10409, 10063, 59, 5, 0, 'No basic skills not suitable for our roles will not sustain\n', 85, '0000-00-00 00:00:00', 1),
(10410, 10062, 59, 5, 0, 'No basic ideas not suitable will not work it out for our Roles', 85, '0000-00-00 00:00:00', 1),
(10411, 10055, 59, 3, 0, 'Fresher Can be Trained have basic skills Final round interviewed by Gokul and selected', 85, '0000-00-00 00:00:00', 1),
(10412, 10054, 59, 4, 0, 'Fresher for UIUX Can be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10413, 10053, 59, 2, 0, 'Fresher Seems not much ok with TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10414, 10050, 59, 2, 0, 'Fresher Can be trained need some time to give his confirmation', 85, '0000-00-00 00:00:00', 1),
(10415, 10058, 59, 5, 0, 'Working in Byjuxquots Salary Ex p is 6 LPA Not suitable for our Roles Will not sustain\n', 85, '0000-00-00 00:00:00', 1),
(10416, 9985, 18, 7, 0, 'Selected for Mani Team. Kindly negotiate the package for the current salary. Ready to join in a week', 86, '2022-09-05 03:12:44', 1),
(10417, 10064, 89, 1, 0, NULL, 97, '2022-09-05 05:40:13', 1),
(10418, 10054, 69, 1, 0, NULL, 59, '2022-09-05 07:48:05', 1),
(10419, 10051, 14, 7, 0, 'Salary 11k, please confirm joining date', 59, '2022-09-05 07:49:16', 1),
(10420, 9473, 29, 7, 3, 'shanmugam team', 44, '2022-09-06 10:55:54', 1),
(10421, 9985, 60, 1, 0, NULL, 18, '2022-09-06 11:48:11', 1),
(10422, 10087, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10423, 10086, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10424, 10088, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10425, 10084, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10426, 10061, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10427, 10060, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10428, 10069, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(10429, 10089, 59, 2, 0, '5050 Profile Distance need to check sustainability doubts if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10430, 10092, 59, 5, 0, 'Will not sustain have skills knowledge in designningleft her previous due to salary Exp ', 85, '0000-00-00 00:00:00', 1),
(10431, 10094, 59, 4, 0, '5050 Profile have exp in Inbound Calls much Looking for Senior Lead Roles kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10432, 10085, 59, 5, 0, 'No basic Skills,not suits for our Sales Got terminated in the last company not suitable', 85, '0000-00-00 00:00:00', 1),
(10433, 10081, 59, 5, 0, 'Looking for Java Profile', 85, '0000-00-00 00:00:00', 1),
(10434, 10080, 59, 5, 0, 'Looking for Java Profile', 85, '0000-00-00 00:00:00', 1),
(10435, 10079, 59, 2, 0, 'Need time to give her confirmation,Have Exp in Renewal Calls but no English communication if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10436, 10075, 59, 5, 0, 'No basic skills knowledge seems to be very slow not suitable', 85, '0000-00-00 00:00:00', 1),
(10437, 10074, 59, 5, 0, 'Have Exp for 10 months with 18K only HTML CSS non knowledge in JS Not suitable Salary exp is high\n', 85, '0000-00-00 00:00:00', 1),
(10438, 10073, 59, 5, 0, 'Not open for Sales Calls and the customer Visit For CRM Role age and the Exp not getting mapped', 85, '0000-00-00 00:00:00', 1),
(10439, 10072, 59, 5, 0, 'Fresher Sal Exp is high Nt much comfort in TxxampC Will not sustain', 85, '0000-00-00 00:00:00', 1),
(10440, 10093, 59, 2, 0, 'Need to come back woht his confirmation Gokul Interviewed in the final Round', 85, '0000-00-00 00:00:00', 1),
(10441, 10090, 59, 5, 0, 'Looking for Java Openings', 85, '0000-00-00 00:00:00', 1),
(10442, 10078, 59, 5, 0, 'Looking for JAva Profile', 85, '0000-00-00 00:00:00', 1),
(10443, 10076, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(10444, 10091, 86, 4, 0, 'Selected For Next Round', 85, '0000-00-00 00:00:00', 1),
(10445, 10094, 31, 5, 0, 'not fit for our industry', 59, '2022-09-06 07:43:46', 1),
(10446, 9473, 59, 3, 0, 'Selected for Shanmugam Team - Staff Role', 29, '2022-09-07 10:37:30', 1),
(10447, 10037, 24, 5, 0, 'Rejected for sustainibilty doubt', 24, '2022-09-07 11:03:13', 1),
(10448, 10032, 59, 5, 0, 'Looking for Database Management No Communication not suitable', 85, '0000-00-00 00:00:00', 1),
(10449, 10071, 59, 4, 0, '5050 Profile have 10 months Exp in Telecalling Salary Exp is somewhat high kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(10450, 10096, 59, 5, 0, 'Fresher for UI UX Not much open with TxxampC,Waiting for the Inteview results with other 4 companies will not sustain', 85, '0000-00-00 00:00:00', 1),
(10451, 10097, 59, 3, 0, 'Selected for Manikandan Team - Staff Role Commitment will be give by the manager on the day of joining\n', 85, '0000-00-00 00:00:00', 1),
(10452, 10098, 59, 2, 0, 'Fresher 5050 Can give a try for React Need time to confirm', 85, '0000-00-00 00:00:00', 1),
(10453, 10100, 59, 4, 0, 'Fresher have a career Gap 5050 profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10454, 10101, 59, 5, 0, 'Came Along with her sister Self Learning thinking a lot on TxxampC Need Time to check with her brother if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10455, 10102, 59, 5, 0, 'No basic skills in JS Not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(10456, 10103, 59, 5, 0, 'No basic skills not open for a long term not suitable', 85, '0000-00-00 00:00:00', 1),
(10457, 10104, 59, 5, 0, 'No Skills in JS only HTML CSS Will not sustain for a long in our roles', 85, '0000-00-00 00:00:00', 1),
(10458, 10105, 59, 5, 0, 'Fresher looking for Exp only will have some reference in the future will not run with us for a long', 85, '0000-00-00 00:00:00', 1),
(10459, 10106, 59, 5, 0, 'Came Along With Her Sister Self Learning Thinking A Lot On TxxampC Need Time To Check With Her Brother If She Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(10460, 10107, 59, 5, 0, 'too long Distance friends are working in React to get exp looking for Job he has reference too will not run in a long not suitable', 85, '0000-00-00 00:00:00', 1),
(10461, 10108, 59, 5, 0, 'No Communication for our MIS Role not interested in Sales', 85, '0000-00-00 00:00:00', 1),
(10462, 10109, 59, 5, 0, 'Communication Average,Checked his writing skills not upto the mark,Will not sustain in our roles came along with his friend', 85, '0000-00-00 00:00:00', 1),
(10463, 10097, 86, 4, 0, 'Selected For Next Round', 59, '2022-09-07 07:18:40', 1),
(10464, 10071, 53, 1, 0, NULL, 59, '2022-09-07 07:20:16', 1),
(10465, 10100, 63, 1, 0, NULL, 59, '2022-09-07 07:24:29', 1),
(10466, 10091, 18, 7, 3, 'Selected for Mani Team. Negotiate for the same package and ready to join after notice period', 86, '2022-09-08 10:23:39', 1),
(10467, 10097, 18, 7, 0, 'Selected for Mani Team. Good Candidate. Can give 10% hike from current package but he expects 20% but give a target while negotiation it he demads more and can he shall join next week', 86, '2022-09-08 10:24:08', 1),
(10468, 10110, 59, 3, 0, 'Selected for Babu Team - consultant Role', 60, '0000-00-00 00:00:00', 1),
(10469, 10111, 59, 5, 0, 'Fresher not open for TxxampC ok with 1 yrs not more than ', 60, '0000-00-00 00:00:00', 1),
(10470, 10112, 59, 5, 0, 'Fresher not open for TxxampC,No basic skills too will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10471, 10117, 59, 3, 0, 'Selected for Santhosh Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10472, 10116, 59, 3, 0, 'Selected for Babu Team inStaff Role', 60, '0000-00-00 00:00:00', 1),
(10473, 10124, 59, 4, 0, '5050 Profile sustainability doubts a lot in this profile Do check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10474, 10121, 59, 5, 0, 'Comfortable to work inJava Need time to confirm will not join and run in our roles for a long', 60, '0000-00-00 00:00:00', 1),
(10475, 10119, 59, 5, 0, 'No Communication no basic knowledge in the skills not suitable for our roles', 60, '0000-00-00 00:00:00', 1),
(10476, 10118, 59, 5, 0, 'Have Exp in CAMS,No Communication not suitable for our roles ', 60, '0000-00-00 00:00:00', 1),
(10477, 10120, 59, 5, 0, 'Fresher have Offers with Wipro Mindtree,since joining date is not yet confirmed looking for opportunities will not join and sustain with us\n', 60, '0000-00-00 00:00:00', 1),
(10478, 10122, 59, 5, 0, 'Fresher just started learning JS EB in infosys need time to confirm on the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10479, 10123, 59, 5, 0, 'Too long distance 64kms up and down also not much strong in the basic skills Feels 3yrs too long and comfort to sign max 1.5 yrs not suitable\n', 60, '0000-00-00 00:00:00', 1),
(10480, 10051, 59, 3, 0, 'Selected for Arumbakkam - Consultant Role', 14, '2022-09-08 03:53:14', 1),
(10481, 10126, 59, 5, 0, 'No basic skills very long careerGap Will not sustain and handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10482, 10125, 59, 2, 0, 'Given him the Task for UIUX Fresher can be trained once done with task will confirm ', 60, '0000-00-00 00:00:00', 1),
(10483, 10110, 89, 7, 0, 'Selected ', 59, '2022-09-08 04:07:22', 1),
(10484, 10116, 89, 7, 0, 'Selected ', 59, '2022-09-08 04:08:12', 1),
(10485, 10117, 71, 7, 0, 'Candidate ok ', 59, '2022-09-08 04:08:54', 1),
(10486, 10124, 86, 5, 0, 'Not Satisfied.', 59, '2022-09-08 04:10:01', 1),
(10487, 10117, 60, 1, 0, NULL, 71, '2022-09-08 04:18:37', 1),
(10488, 10091, 60, 1, 0, NULL, 18, '2022-09-08 04:53:56', 1),
(10489, 10097, 60, 1, 0, NULL, 18, '2022-09-08 04:55:41', 1),
(10490, 10110, 88, 7, 0, 'Selected for RE', 89, '2022-09-09 09:52:31', 1),
(10491, 10116, 88, 7, 0, 'Selected for RE at 17K take home', 89, '2022-09-09 09:52:53', 1),
(10492, 10116, 59, 3, 0, 'Selected for Babu Team inStaff Role', 88, '2022-09-09 10:39:32', 1),
(10493, 10110, 59, 3, 0, 'Selected for Babu Team - consultant Role', 88, '2022-09-09 10:39:59', 1),
(10494, 10139, 59, 5, 0, 'working in Java for 7 months good PAckage and looking for change only for Salary growth not suitable', 60, '0000-00-00 00:00:00', 1),
(10495, 10138, 59, 5, 0, 'Have Basic Skills Sustainability Doubts too long distance up and down 60kms will not sustain', 60, '0000-00-00 00:00:00', 1),
(10496, 10133, 59, 3, 0, 'selected for Babu Team Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10497, 10130, 59, 5, 0, 'Fresher Sal Exp is high need to be trained having Dog Kennel and focusing much on the same will not sustain in our roles\n', 60, '0000-00-00 00:00:00', 1),
(10498, 10134, 59, 3, 0, 'Selected for Kannan Team - consultant Role Need to analyse in the 7 days training', 60, '0000-00-00 00:00:00', 1),
(10499, 10136, 59, 2, 0, 'Fresher 5050 Need to check his sustainability need time to check with his father Family need is there if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10500, 10129, 59, 5, 0, 'Fresher Can be trained but her sister in react for 3 yrs Doubtful on the sustainability ', 85, '0000-00-00 00:00:00', 1),
(10501, 10135, 59, 5, 0, 'Internal Reference GK Sir,Too Long Distance Fresher 5050 sustainability left without attending the 2nd round', 85, '0000-00-00 00:00:00', 1),
(10502, 10142, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(10503, 10137, 59, 2, 0, 'Fresher 5050 Need Time to check with his family if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10504, 10143, 59, 5, 0, 'Not much strong in the skills 30 days Notice Currently in Sutherland too long distance Not suitable', 85, '0000-00-00 00:00:00', 1),
(10505, 10144, 59, 5, 0, 'Not Much Strong In The Skills 30 Days Notice Currently In Sutherland Salary Exp min 16 K being Fresher will not sustain', 85, '0000-00-00 00:00:00', 1),
(10506, 10140, 59, 4, 0, '5050 Profile Family need is there Can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10507, 10141, 59, 4, 0, 'Fresher 5050 Can be trained Family need is there kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10508, 10142, 57, 4, 0, 'candidate is ok , she is have 3 years experience , kindly confirm the joining and salary ', 59, '2022-09-09 03:31:40', 1),
(10509, 10133, 89, 7, 0, 'Selected ', 59, '2022-09-09 03:33:05', 1),
(10510, 10142, 88, 7, 0, 'Selected for RE ', 57, '2022-09-09 03:35:34', 1),
(10511, 10133, 88, 7, 0, 'Selected for RE', 89, '2022-09-09 03:38:20', 1),
(10512, 10142, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 88, '2022-09-09 03:39:10', 1),
(10513, 10133, 59, 3, 0, 'selected for Babu Team Consultant Role', 88, '2022-09-09 03:40:27', 1),
(10514, 10140, 14, 1, 0, NULL, 59, '2022-09-09 05:01:10', 1),
(10515, 10141, 14, 1, 0, NULL, 59, '2022-09-09 05:03:44', 1),
(10516, 10147, 97, 4, 0, 'has more intersted in uiux .. average communication.. some knowledge in web designs.. check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(10517, 10147, 69, 1, 0, NULL, 97, '2022-09-10 11:35:40', 1),
(10518, 10149, 97, 5, 0, 'has one yr of exp in react as a trainee because of sal changing his job sal expt too high .. sustainbility doubts..', 85, '0000-00-00 00:00:00', 1),
(10519, 10150, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10520, 10151, 97, 5, 0, 'no understanding.. sal expt too high .long distance too', 85, '0000-00-00 00:00:00', 1),
(10521, 10152, 97, 5, 0, 'has 1m of intern exp because of his training performance they rejected..', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(10522, 10153, 97, 5, 0, 'recently joined one org as ui/ux ..coz of sal releving ,, has freelancer exp in graphic des.. no idea about ui/ux.. not suit for our role', 85, '0000-00-00 00:00:00', 1),
(10523, 10154, 97, 5, 0, 'fresher .. has knowledege in html xxamp css .. recently got offer .. coz of sal .. not joined', 85, '0000-00-00 00:00:00', 1),
(10524, 10155, 97, 5, 0, 'beginer level in technical skills no idea about framewroks have to learn more..', 85, '0000-00-00 00:00:00', 1),
(10525, 10156, 97, 5, 0, 'no understanding ..beginer level in technical skills..will not suit for process ', 85, '0000-00-00 00:00:00', 1),
(10526, 10157, 97, 5, 0, 'has 6m exp in us it recruiter..because of health xxamp commitments looking for job change ..sal expt high will not sustain with us long run', 85, '0000-00-00 00:00:00', 1),
(10527, 10158, 97, 5, 0, 'long distance. his brother working 6yrs in react.. so he has some knowledege.. no understanding .. only know hindi average in tamil.. xxamp looking job in core role also', 85, '0000-00-00 00:00:00', 1),
(10528, 10165, 59, 4, 0, '5050 Profile fresher Need to be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10529, 10165, 86, 5, 0, 'Not Satisfied', 59, '2022-09-12 12:30:31', 1),
(10530, 10163, 59, 5, 0, 'Dropped Candidate didnt respond the call got an update from Thinkfinity that the candidate was not interested in the profile\n', 60, '0000-00-00 00:00:00', 1),
(10531, 10163, 51, 1, 0, NULL, 59, '2022-09-12 12:45:31', 1),
(10532, 10164, 59, 2, 0, 'Fresher Need to be trained a lot ,Much Focus in Accounts Profiles Need time to confirm on this profile', 60, '0000-00-00 00:00:00', 1),
(10533, 10160, 59, 4, 0, 'Communication is Good, Open for Content Writing Need to analyse the contient writing skills kindly check and let me know your interest ', 60, '0000-00-00 00:00:00', 1),
(10534, 10169, 59, 5, 0, 'Fresher for IT Have Exp in Sales Not open for Sales again Looking for IT only Wife working in IT Need time to confirm on the TxxampC with 3yrs SA, if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10535, 10166, 59, 5, 0, 'Not suitable Need to open a lot ,will not handle our sales Pressure Very clear that if ssiter refer any IT openings will move for that', 60, '0000-00-00 00:00:00', 1),
(10536, 10161, 59, 5, 0, 'Looking for Pressure Free Profile, Fresher Sustainability Doubts a lot', 60, '0000-00-00 00:00:00', 1),
(10537, 10159, 59, 5, 0, 'No Communication. Not ready to taking Calls Looking for MF,NISM certified but no basics knowledge about SIP/AMCxquots Backend roles only she preferred,Not ready totake renewal calls again', 60, '0000-00-00 00:00:00', 1),
(10538, 10170, 59, 4, 0, 'Have Exp in Retails Sales nut not much aggressive in Sales very 5050 Profile ,Sustainability doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10539, 10160, 69, 1, 0, NULL, 59, '2022-09-12 01:39:20', 1),
(10540, 10171, 59, 5, 0, 'From Chengalpet married looking for Admin Role Non Voice have exp in CSE,but not open for Sales Calls and not ready to handle the pressure', 60, '0000-00-00 00:00:00', 1),
(10541, 10172, 59, 5, 0, 'Need to open a lot not speaking will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10542, 10170, 86, 5, 0, 'Not Satisfied', 59, '2022-09-12 03:01:21', 1),
(10543, 10173, 59, 4, 0, 'Fresher for Digital Marketing,have a career gap Seems 5050 for the profile Sustainability Doubts in the profile kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10544, 10173, 69, 1, 0, NULL, 59, '2022-09-12 03:03:11', 1),
(10545, 10176, 59, 5, 0, 'Not open for Target based profiles,her brother wont allow to work in Target based jobs also her brothers are there in singapore and looking for opportunities in their company she is very clear that will travel to singapore once every process is done will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(10546, 10175, 59, 4, 0, 'Fresher Communication is good Can be trained Kindly check and let me kbow your inputs for B2B', 60, '0000-00-00 00:00:00', 1),
(10547, 10175, 53, 1, 0, NULL, 59, '2022-09-13 11:08:40', 1),
(10548, 10179, 59, 5, 0, 'Communication ok,Freshernot much comfort to go for the appointments and beyond the official timings too,Need time to confirm with his parents Will not sustain and distance around 34 kms up and down', 60, '0000-00-00 00:00:00', 1),
(10549, 10178, 59, 5, 0, 'Communication is Good Have 1yrs 2 months Exp in recruitment and her salary exp is very high,current is 31K and Exp is 35K', 60, '0000-00-00 00:00:00', 1),
(10550, 10177, 59, 5, 0, 'Have 8 months Exp in IT recruitment,Current Salary is 2.6LPA and her exp is min 18K - 20K TH Will not sustain in our roles ', 60, '0000-00-00 00:00:00', 1),
(10551, 10181, 59, 5, 0, 'No Communication have exp in non voice process No ideas in the Digital marketing will not sustain and not open for SAles profiles too', 60, '0000-00-00 00:00:00', 1),
(10552, 10180, 59, 5, 0, 'Age around 40 yrs toally into media field worked earlier in Sales during 2000-2006 Looking for Film Industry as a director will not sustain and handle our Roles', 60, '0000-00-00 00:00:00', 1),
(10553, 10182, 59, 5, 0, '10th Completed no proper sustainability in the positons,fresher to our roles will not handle our sales long run doubts 5050 if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10554, 10185, 59, 3, 0, 'selected for GK Sir Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(10555, 10183, 59, 4, 0, 'Internal REference,Fresher for our sales sustainability doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10556, 10184, 59, 4, 0, 'Internal REference,Fresher For Our Sales Sustainability Doubts Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(10557, 10185, 31, 7, 4, 'candidate okay forwarded for 2nd round', 59, '2022-09-13 01:32:51', 1),
(10558, 10183, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-09-13 01:35:14', 1),
(10559, 10184, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-09-13 01:35:24', 1),
(10560, 10167, 24, 4, 0, 'Selected .. wednesday joining.. expect salary 15k', 60, '0000-00-00 00:00:00', 1),
(10561, 10167, 88, 7, 0, 'Selected for RE', 24, '2022-09-13 02:51:53', 1),
(10562, 10186, 59, 4, 0, 'Fresher Have a plan to in LLB Family need Can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10563, 10186, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-09-13 03:03:18', 1),
(10564, 10185, 29, 7, 3, 'PC', 31, '2022-09-13 05:36:26', 1),
(10565, 10167, 59, 3, 0, 'Selected for Suthagar Team Staff Role ', 88, '2022-09-13 05:48:53', 1),
(10566, 10134, 59, 3, 0, 'Selected for Kannan Team - consultant Role Need to analyse in the 7 days training', 88, '2022-09-13 05:49:14', 1),
(10567, 10193, 59, 5, 0, 'Selected and offered him 192000 LPA being a fresher but the candidate is not comfortable with the pay and expects more long distance too', 60, '0000-00-00 00:00:00', 1),
(10568, 10194, 59, 3, 0, 'Selected for Shanmugam Team in Staff Role need to analyze in 7 days of training', 60, '0000-00-00 00:00:00', 1),
(10569, 10193, 89, 7, 0, 'Selected ', 59, '2022-09-14 11:55:40', 1),
(10570, 10194, 44, 7, 4, 'Candidate ok and discussed with gaurav also he said will check in first 7 days', 59, '2022-09-14 11:58:55', 1),
(10571, 10196, 59, 3, 0, 'Selected for Staff Role', 60, '0000-00-00 00:00:00', 1),
(10572, 10187, 59, 4, 0, 'Communication Good Have Exp in Sales Telecall biut not interested to go in the same,Discussed for MIS/Technical Support Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10573, 10187, 98, 1, 0, NULL, 59, '2022-09-14 12:39:06', 1),
(10574, 10197, 59, 4, 0, 'Fresher 5050 Can be trained in our roles open for Field Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10575, 10199, 59, 2, 0, '5050 profile much focus for Java openings For time being looking for other openings need to clear 2 arrear papers if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10576, 10196, 11, 7, 0, 'candidate ok for E sales .', 59, '2022-09-14 01:31:52', 1),
(10577, 10195, 59, 3, 0, 'Selected for ESales - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10578, 10198, 59, 4, 0, 'Fresher 5050 Can Be Trained In Our Roles Open For Field Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(10579, 10195, 11, 7, 0, 'candidate selected for e SALES ', 59, '2022-09-14 01:45:05', 1),
(10580, 10194, 60, 1, 0, NULL, 44, '2022-09-14 02:42:28', 1),
(10581, 10193, 88, 7, 0, 'Selected for RE', 89, '2022-09-14 03:11:36', 1),
(10582, 10197, 57, 1, 0, NULL, 59, '2022-09-14 03:14:01', 1),
(10583, 10198, 57, 1, 0, NULL, 59, '2022-09-14 03:14:13', 1),
(10584, 10193, 59, 5, 0, 'Selected and offered him 192000 LPA being a fresher but the candidate is not comfortable with the pay and expects more long distance too', 88, '2022-09-14 04:08:54', 1),
(10585, 10196, 59, 3, 0, 'Selected for Staff Role', 11, '2022-09-14 04:39:41', 1),
(10586, 10195, 59, 3, 0, 'Selected for ESales - Staff Role', 11, '2022-09-14 04:40:40', 1),
(10587, 10195, 29, 7, 3, 'for esales, need to check in 7 days and approve, 13k salary gross, can increase if oct and nov done 1 lac each, from dec 22 - 14k Gross salary ', 59, '2022-09-14 04:54:16', 1),
(10588, 10196, 29, 7, 2, 'For Esales, Need To Check In 7 Days And Approve, 13k Salary Gross, Can Increase If Oct And Nov Done 1 Lac Each, From Dec 22 - 14k Gross Salary ', 59, '2022-09-14 04:54:58', 1),
(10589, 10195, 59, 3, 0, 'Selected for ESales - Staff Role', 29, '2022-09-14 05:46:03', 1),
(10590, 10196, 59, 3, 0, 'Selected for Staff Role', 29, '2022-09-14 05:46:39', 1),
(10591, 10205, 59, 4, 0, 'Fresher profile need to be trained 5050 kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10592, 10205, 16, 5, 0, 'Not Fit For Sale', 59, '2022-09-15 11:04:53', 1),
(10593, 10206, 59, 3, 0, 'Selected for Arumbakkam Location in consultant Role', 60, '0000-00-00 00:00:00', 1),
(10594, 10209, 59, 5, 0, 'Fresher for UI UX Have Exp in Ar Caller for 7 yrs Salary Exp is high Need time to confirm this profile', 60, '0000-00-00 00:00:00', 1),
(10595, 10204, 59, 5, 0, 'Much prefer to work in non voice process but no communication have 6 yrs in NGO based Govt project not suitable', 60, '0000-00-00 00:00:00', 1),
(10596, 10206, 14, 7, 0, 'Candidate ok for this profile need to check telephonic interview ', 59, '2022-09-15 12:17:42', 1),
(10597, 10203, 59, 3, 0, 'Selected for esales karthika team Consultant role', 60, '0000-00-00 00:00:00', 1),
(10598, 10203, 11, 7, 0, 'candidate ok for E sales ', 59, '2022-09-15 12:33:54', 1),
(10599, 10207, 59, 5, 0, 'final Round reject by gaurav sir she came along with her friend only 1 selected and her friend joined us on 19Sep Dhakshayinin\n\n', 60, '0000-00-00 00:00:00', 1),
(10600, 10207, 11, 7, 0, 'rejected .', 59, '2022-09-15 12:49:58', 1),
(10601, 10208, 59, 5, 0, 'Fresher 1 month he need to travel from Arakonnam only,Having Health issue plus vison sight problem sustainability in our role doubts not suitable', 60, '0000-00-00 00:00:00', 1),
(10602, 10210, 59, 5, 0, 'Candidate dropped Being a fresher Saalry Exp is very high and not ready to come down got another offer too', 60, '0000-00-00 00:00:00', 1),
(10603, 10210, 53, 7, 0, 'selected for b2b. 13k sal pls cnfrm doj\n', 59, '2022-09-15 01:11:25', 1),
(10604, 10211, 59, 3, 0, 'Selected for Thiyagu team with PF/eSI/PT', 60, '0000-00-00 00:00:00', 1),
(10605, 10211, 16, 7, 0, 'Selected', 59, '2022-09-15 01:19:59', 1),
(10606, 10202, 59, 2, 0, 'Much Focused to work in non voice nit stability in the previous Exp,will hold this profile need time to confirm', 60, '0000-00-00 00:00:00', 1),
(10607, 10212, 59, 4, 0, 'Not much suits for our role 5050 Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10608, 10212, 16, 5, 0, 'Not Fit For Sale', 59, '2022-09-15 01:45:15', 1),
(10609, 10214, 59, 3, 0, 'Selected for Santhosh Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(10610, 10214, 18, 7, 0, 'Selected for Santosh Team. Kindly negotialte the package and can give decent package as she is having experince on Insurnace', 59, '2022-09-15 04:35:15', 1),
(10611, 10163, 59, 5, 0, 'Dropped Candidate didnt respond the call got an update from Thinkfinity that the candidate was not interested in the profile\n', 14, '2022-09-15 04:57:48', 1),
(10612, 10211, 88, 7, 0, 'Selected for RE', 16, '2022-09-15 06:53:40', 1),
(10613, 10215, 59, 5, 0, 'no communication Poor understanding not suitable for out Telecaller roles also very clear he will move out if he get a suitable opportunity in his design interest.We also checked for our UX design,Portfolio design not upto the mark as we expected will not sustain in our IT tole not suitable', 60, '0000-00-00 00:00:00', 1),
(10614, 10201, 59, 2, 0, 'Communication have exp in retail medical Sales bit worried with the Telesales Candidate need time to confirm on the position, if she \ncomes back let us try', 60, '0000-00-00 00:00:00', 1),
(10615, 10218, 59, 5, 0, 'Fresher not open for Sales No Communication Need time to think and confirm Looking for flexibility in timings and the salary', 60, '0000-00-00 00:00:00', 1),
(10616, 10219, 59, 5, 0, 'Fresher for our roles have exp as AR caller Married and have a 1yr kid not open for Voice process looking for Non voice and pressure free will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10617, 10211, 59, 3, 0, 'Selected for Thiyagu team with PF/eSI/PT', 88, '2022-09-16 01:11:37', 1),
(10618, 10221, 59, 5, 0, 'Communication Average not much comfort to work in Pressure Too long Distance and not ready to relocate,not suitable Need to open a lot', 60, '0000-00-00 00:00:00', 1),
(10619, 10222, 59, 4, 0, '5050 Profile Communication Average,Sustainability Doubt Came along with Friend Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10620, 10223, 59, 4, 0, 'Communication ok Fresher Can be trained in our role kindly check and let me know your interest\n', 60, '0000-00-00 00:00:00', 1),
(10621, 10223, 14, 1, 0, NULL, 59, '2022-09-16 03:11:56', 1),
(10622, 10222, 14, 1, 0, NULL, 59, '2022-09-16 03:12:59', 1),
(10623, 10220, 59, 3, 0, 'Selected for Technical Support - 15K TH post 3 months based onperformance 18K Need to check for the SA', 60, '0000-00-00 00:00:00', 1),
(10624, 10203, 59, 3, 0, 'Selected for esales karthika team Consultant role', 11, '2022-09-16 06:44:56', 1),
(10625, 10207, 59, 5, 0, 'final Round reject by gaurav sir she came along with her friend only 1 selected and her friend joined us on 19Sep Dhakshayinin\n\n', 11, '2022-09-16 06:46:56', 1),
(10626, 10206, 53, 7, 0, 'selected for arumbakkam team, sal 11k take home. Monday joining', 14, '2022-09-17 10:08:01', 1),
(10627, 10227, 59, 4, 0, 'Communication is Good have exp in insurance sales not open for sales again comfort in renewals can be trained kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10628, 10229, 59, 3, 0, 'Selected for Shanmugam sir Team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(10629, 10230, 59, 3, 0, 'Selected for GK Sir Team Staff Role', 60, '0000-00-00 00:00:00', 1),
(10630, 10227, 98, 1, 0, NULL, 59, '2022-09-17 01:02:04', 1),
(10631, 10230, 31, 4, 4, 'candidate okay ', 59, '2022-09-17 01:04:19', 1),
(10632, 10225, 59, 5, 0, 'Not much strong in the basics skills also not comfort with the TxxampC Need time to check with her family if she comes back let us try\n', 60, '0000-00-00 00:00:00', 1),
(10633, 10228, 24, 5, 0, 'distance 22km... so not suitable for our timing.. so rejected', 60, '0000-00-00 00:00:00', 1),
(10634, 10226, 59, 2, 0, 'Communication No Have exp as DA,Focusing on the salary growth,not much confident to speak in english,hold and let us try later', 60, '0000-00-00 00:00:00', 1),
(10635, 10231, 59, 2, 0, 'Fresher for Recruitment Need to be trained Family need in not much required Father is in the Govt Highways,Need to check with Gokul and decide', 60, '0000-00-00 00:00:00', 1),
(10636, 10206, 59, 3, 0, 'Selected for Arumbakkam Location in consultant Role', 53, '2022-09-17 05:49:29', 1),
(10637, 10203, 59, 3, 0, 'Selected for esales karthika team Consultant role', 29, '2022-09-18 07:04:05', 1),
(10638, 10207, 59, 5, 0, 'final Round reject by gaurav sir she came along with her friend only 1 selected and her friend joined us on 19Sep Dhakshayinin\n\n', 29, '2022-09-18 07:06:54', 1),
(10639, 10185, 59, 3, 0, 'selected for GK Sir Team with PF/PT', 29, '2022-09-18 07:07:59', 1),
(10640, 10230, 29, 7, 3, 'RM - GK team, check in 7 days and approve', 31, '2022-09-19 10:36:15', 1),
(10641, 10216, 93, 4, 0, 'Shortlisted need to assign to Sathish sir fresher looking salary around 15k ', 60, '0000-00-00 00:00:00', 1),
(10642, 10217, 93, 7, 0, 'Shortlisted need to assign to Sathish Sir looking salary around 15k ', 60, '0000-00-00 00:00:00', 1),
(10643, 10216, 60, 1, 0, NULL, 93, '2022-09-19 11:25:54', 1),
(10644, 10217, 60, 1, 0, NULL, 93, '2022-09-19 11:26:34', 1),
(10645, 10238, 59, 3, 0, 'Selected for Recruiter Role Have 8 months Exp in IT,Can give a try,Final round interviewed by Gokul and got selected 15K TH 2yrs SA No document Submission', 60, '0000-00-00 00:00:00', 1),
(10646, 10235, 59, 5, 0, 'communication no not open up to speak in english no ideas in the profession to go sustainability doubts in our role,declined several offers based onthe salary,High Exp on Salary', 60, '0000-00-00 00:00:00', 1),
(10647, 10234, 59, 5, 0, 'No basic skills Need to learn a lot not comfortable with the pay need time to check and confirm', 60, '0000-00-00 00:00:00', 1),
(10648, 10230, 59, 3, 0, 'Selected for GK Sir Team Staff Role', 29, '2022-09-19 04:33:25', 1),
(10649, 10217, 60, 1, 0, NULL, 30, '2022-09-19 04:35:35', 1),
(10650, 10216, 60, 1, 0, NULL, 30, '2022-09-19 04:36:58', 1),
(10651, 10240, 59, 5, 0, 'No basic skills communication Average will not sustain in our roles not suitable ', 60, '0000-00-00 00:00:00', 1),
(10652, 10242, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10653, 10242, 57, 4, 0, 'candidate is ok , pls confirm the salary and joining date , she is already 3yrs experience same domain , sound is good ,', 59, '2022-09-20 11:46:16', 1),
(10654, 10244, 59, 4, 0, 'Have xp but no sustainability in the previous exp Can give a try Too long Distance Up and down 50kms kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10655, 10244, 88, 1, 0, NULL, 59, '2022-09-20 12:03:10', 1),
(10656, 10210, 59, 5, 0, 'Candidate dropped Being a fresher Saalry Exp is very high and not ready to come down got another offer too', 53, '2022-09-20 12:03:48', 1),
(10657, 10245, 59, 5, 0, '19 yrs no Graduation 12 passed 1.2yrs 3 companies this is the 4th one looking only for the salary growth Have 3 months exp in telecaller wiht 15K salary looking for a change just for the salary hike', 60, '0000-00-00 00:00:00', 1),
(10658, 10243, 59, 5, 0, 'Fresher cAreer Gap Need to train a lot Candidate need to speak focusing much with the non voice process', 60, '0000-00-00 00:00:00', 1),
(10659, 10247, 24, 5, 0, 'Not fit for sales..', 60, '0000-00-00 00:00:00', 1),
(10660, 10241, 59, 5, 0, 'Too long Distance up and down 70kms not ready to relocate Long Career Gap No sustainability in the previous exp will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(10661, 10248, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 60, '0000-00-00 00:00:00', 1),
(10662, 10214, 60, 1, 0, NULL, 18, '2022-09-20 01:59:55', 1),
(10663, 10242, 88, 7, 0, 'Selected for RE', 57, '2022-09-20 06:24:48', 1),
(10664, 10254, 59, 4, 0, 'Fresher 12th Discontinued Need To Open A Lot Internal Team Referene Do Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(10665, 10253, 59, 4, 0, 'Fresher 12th discontinued Need to open a lot internal team referene do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10666, 10253, 88, 1, 0, NULL, 59, '2022-09-21 11:33:49', 1),
(10667, 10254, 88, 1, 0, NULL, 59, '2022-09-21 11:34:07', 1),
(10668, 10249, 59, 5, 0, 'Need to speak a lot have exp in core Electrical for 3yrs fresher for Telecaller handling pressure doubt will not sustain', 60, '0000-00-00 00:00:00', 1),
(10669, 10251, 59, 5, 0, 'Not much in outbound calls have exp in non voice process not ok much with sales calls will not sustain', 60, '0000-00-00 00:00:00', 1),
(10670, 10250, 59, 5, 0, 'Looking much for inbound calls ave exp in non voice process Frequent Job Changes will not sustain and handle our pressure\n', 60, '0000-00-00 00:00:00', 1),
(10671, 10257, 59, 2, 0, 'Fresher Have 4 months Exp in Networking,Looking for HR Recruitment Pursuing MBA Correspondance Not much ok wiht TxxampC candidate\nNeed time to confirm', 60, '0000-00-00 00:00:00', 1),
(10672, 10255, 59, 2, 0, 'Having Exp in PF/ESI/PT compliance only 4.2 yrs Exp in same company Mandatory 30 days notice Salary Exp is min 23-24K TH\n', 60, '0000-00-00 00:00:00', 1),
(10673, 10256, 59, 5, 0, 'Very Slow open for non voice only will not handle and sustain our pressure lot of personal issue will not sustain for a long not suitable', 60, '0000-00-00 00:00:00', 1),
(10674, 10260, 59, 4, 0, 'Communication Good Fresher for our Roles can give a try 6-0 days notice, waiting for accenture interview sustainability Doubts kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10675, 10260, 98, 1, 0, NULL, 59, '2022-09-22 12:04:04', 1),
(10676, 10262, 59, 5, 0, 'Fresher for IT, No basics skills in JS understanding is poor will not sustain in our roles and long run doubts .focus to work in Angular openings much', 60, '0000-00-00 00:00:00', 1),
(10677, 10259, 59, 5, 0, 'Counds Good Have basic skills knowledge candidate ok with TxxampC but his parents are not ok,If he comes back can give a try', 60, '0000-00-00 00:00:00', 1),
(10678, 10263, 59, 5, 0, 'Looking for Testing Profile no ideas in development fresher for IT Sounding very low will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(10679, 6643, 59, 5, 0, '3rd time he appear for the same position,no improvement not strong inthe basic skills Javascript will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(10680, 10264, 59, 2, 0, 'Communication Good Can give a try for POS,Have Exp in BDE in recruitment firm will schedule with Bharathi Axa Gajendra 2nd round interviewed by Gokul and move forwarded', 60, '0000-00-00 00:00:00', 1),
(10681, 10265, 59, 5, 0, 'Attitude issue Holding several offers and looking for more most preferred location to work is bangalore not ready to learn additional Skills on UI Development and not ready to stay more than an year', 60, '0000-00-00 00:00:00', 1),
(10682, 10266, 59, 2, 0, 'Fresher for Telecaller Sales 5050 Profile Came along with friend Sustainability Doubts Need to analyse in 7 days training will confirm once again the interest of the candidate and schedule her for the telephonic', 60, '0000-00-00 00:00:00', 1),
(10683, 10267, 59, 5, 0, 'Fresher no basic knowledge in Javascript Scheduled them for 2nd level but left without attending ', 60, '0000-00-00 00:00:00', 1),
(10684, 10268, 59, 5, 0, 'Fresher No Basic Knowledge In Javascript Scheduled Them For 2nd Level But Left Without Attending ', 60, '0000-00-00 00:00:00', 1),
(10685, 10269, 59, 5, 0, 'Fresher for IT, Not much strong in basic JS Skills,Looking for Direct Employment not much comfort in Internship Role,Need time to check with family on the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10686, 10277, 59, 2, 0, 'Fresher need time to confirm with the parents if she comes back let us try can be trained', 60, '0000-00-00 00:00:00', 1),
(10687, 10278, 59, 5, 0, 'Too long distance around 40 kms up and down Looking much on the salary growth He was into civil earlier will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10688, 10279, 59, 5, 0, 'Looking for Dot Net Profile,Have reference in multiple companies and looking for some more', 60, '0000-00-00 00:00:00', 1),
(10689, 10285, 59, 2, 0, 'theoritcally ok Need to be trained a lot Need time to check with his brother on sustainability if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10690, 10287, 59, 5, 0, 'Fresher Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', 60, '0000-00-00 00:00:00', 1),
(10691, 10289, 89, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(10692, 10292, 89, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(10693, 10284, 59, 5, 0, 'Fresher Have Project Exp In HTML CSS No Javascript In Depth Theoritically ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', 60, '0000-00-00 00:00:00', 1),
(10694, 10286, 59, 5, 0, 'Fresher Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', 60, '0000-00-00 00:00:00', 1),
(10695, 10283, 59, 5, 0, 'Fresher Have Project Exp in HTML CSS No Javascript in depth Need to be trained a lot ,they need time to confirm on the TxxampC if they come back let us try', 60, '0000-00-00 00:00:00', 1),
(10696, 10290, 59, 5, 0, 'Left without attending', 60, '0000-00-00 00:00:00', 1),
(10697, 10294, 53, 7, 0, 'selected fir b2b, exp 15k as Take home, Having multiple company experience.', 60, '0000-00-00 00:00:00', 1),
(10698, 10285, 59, 5, 0, 'Fresher Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', 59, '2022-09-23 01:41:40', 1),
(10699, 10294, 59, 3, 0, 'Selected for B2b in consultant Role', 53, '2022-09-23 03:16:36', 1),
(10700, 10291, 59, 5, 0, 'Looking for Andriod /Java positions no ideas in the Flutter also need time to confirm on the positions he id interested', 60, '0000-00-00 00:00:00', 1),
(10701, 10242, 59, 3, 0, 'Selected for Syed Team - Consultant Role', 88, '2022-09-23 03:35:33', 1),
(10702, 10271, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10703, 10280, 59, 4, 0, 'Fresher need to be trained a lot thinking a lot on TxxampC May travel to native,5050 Profile do check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10704, 10298, 59, 3, 0, 'Communication Is Good Not Sure On Making The Calls Currently As Asst Manager 5050 Profile Ctc Ok Can Give A Try Kindly Check And Let Me Know Your Inputs - - - -Selected for BDM Role - Sriram Sir Reporting', 60, '0000-00-00 00:00:00', 1),
(10705, 10298, 71, 4, 0, 'Candidate Selected ', 59, '2022-09-24 12:05:31', 1),
(10706, 10321, 59, 5, 0, 'Distance Neeed to see stating along with his brother should check with brother on TxxampC,Basics in React.He need time to confirm his interest on the profile ,also looking for some more stipend ', 60, '0000-00-00 00:00:00', 1),
(10707, 10323, 59, 2, 0, 'Communication is Good Fresher for our domain have exp in calling activity can be trained candudate need time to think on his expectations 4.5 LPA Current due to night shift we suggested 3.5 LPA', 60, '0000-00-00 00:00:00', 1),
(10708, 10322, 59, 5, 0, 'No basic skills in PHP,have only Java Python Will not handle our pressure and sustain Given time to learn', 60, '0000-00-00 00:00:00', 1),
(10709, 10327, 59, 2, 0, 'Fresher Need to be trained not open for 2 yrs convicnced on 1 yrs but need to check with her family on TxxampC if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10710, 10328, 59, 5, 0, 'Comfort to work in non voice not ready to handle the pressure communication Average', 60, '0000-00-00 00:00:00', 1),
(10711, 10281, 74, 7, 0, 'she is well profiled talk active and fit for team also.........expected 10k take home and have laptop..immediate joining ..............but have some sustainability issue for looking for groom for marriage but not confirm looking only so cross check once.........but intrested candidate', 85, '0000-00-00 00:00:00', 1),
(10712, 10282, 74, 7, 0, 'she is ok with the team very attendive and talk active highly job need father farmer and expected 10k salary ......from orathanadu 45 mins travel....have laptop immediate joining.......kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(10713, 10288, 74, 5, 0, 'not fit for team and not that much professional', 85, '0000-00-00 00:00:00', 1),
(10714, 10293, 74, 5, 0, 'no voice clarity and high expectation', 85, '0000-00-00 00:00:00', 1),
(10715, 10281, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-09-24 01:12:24', 1),
(10716, 10325, 59, 5, 0, 'Need to speak out looking for Non Voice Process will not handle the sales pressure', 60, '0000-00-00 00:00:00', 1),
(10717, 10282, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-09-24 01:13:56', 1),
(10718, 10324, 59, 3, 0, 'Selected for Kannan Team - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10719, 10280, 98, 1, 0, NULL, 59, '2022-09-24 01:32:39', 1),
(10720, 10324, 88, 7, 0, 'Selected for RE', 59, '2022-09-24 01:35:14', 1),
(10721, 10326, 59, 5, 0, 'Left without attending', 60, '0000-00-00 00:00:00', 1),
(10722, 10330, 59, 5, 0, 'Fresher For Our Sales,Have Real Estate Exp,But No Proof And No Clarity From The Candidate On Her Employment. she is performing part time beautician Focusing Only On The Salary And Not Ready To Negotiate ,Family Need Is There But Need To Open A Lot ,Will Not Handle Our Pressure', 60, '0000-00-00 00:00:00', 1),
(10723, 10331, 59, 5, 0, 'Fresher for our Sales,Have Real Estate Exp,but no proof and no clarity from the candidate on her employment.Focusing only on the salary and not ready to negotiate ,Family need is there but need to open a lot ,will not handle our pressue', 60, '0000-00-00 00:00:00', 1),
(10724, 10334, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(10725, 10333, 56, 4, 0, 'Selected for next round', 85, '0000-00-00 00:00:00', 1),
(10726, 10332, 56, 4, 0, 'Selected for next round', 85, '0000-00-00 00:00:00', 1),
(10727, 10319, 56, 5, 0, 'Looking for inside sales job', 85, '0000-00-00 00:00:00', 1),
(10728, 10310, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10729, 10311, 56, 5, 0, 'he doesnxquott have same field experience but expecting 5lac ctc', 85, '0000-00-00 00:00:00', 1),
(10730, 10231, 59, 3, 0, '5 months Intern 7.5K then 2yrs SA 12-14K need to finalise', 59, '2022-09-26 10:50:12', 1),
(10731, 10341, 59, 3, 0, ' Have Exp In Sales,Can Be Trained Ready To Negotaite On The Salary Only Thing Is Distance Need To See Do Check And Let Me Know Your Interest - -Selected for Shanmugam Team ,final round interviewed by gaurav and got selected', 60, '0000-00-00 00:00:00', 1),
(10732, 10341, 44, 7, 4, 'Candidate Ok For Me And Gaurav Also Please Do The Further Process', 59, '2022-09-26 11:40:29', 1),
(10733, 10346, 59, 4, 0, '5050 Much comfort to work in non voice family need is there and open to go with any profile sustainability doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10734, 10346, 53, 5, 0, 'low voice , We suggested for arumbakkam branch but she s willing to join tnagar oly', 59, '2022-09-26 12:10:06', 1),
(10735, 8510, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10736, 10350, 59, 5, 0, 'No communication need to open a lot will not handle our Pressure and not clear with the opportunities she want to get in', 60, '0000-00-00 00:00:00', 1),
(10737, 10351, 59, 2, 0, 'Communication Average Can be trained fresher for recruitment 5050 Can give a try if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10738, 10352, 59, 5, 0, 'Dropped - Have Exp in B2B Sales and not looking for high Salary focusing only on the salary, processed him for Bharathi Axa but didnt turn for interview not interested to get into sales', 60, '0000-00-00 00:00:00', 1),
(10739, 10353, 59, 3, 0, 'Selected for B2B consultant Role', 60, '0000-00-00 00:00:00', 1),
(10740, 10353, 53, 7, 0, 'selected pls cnfrm the salary nd DOJ', 59, '2022-09-26 01:28:28', 1),
(10741, 10354, 59, 5, 0, 'Fresher for our Sales Have Exp in B2B Medical Equipment Sales 33 yrs Too long Distance up and down 60kms sustainability doubts if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10742, 10348, 59, 3, 0, '5050 Have Exp In Collection Too Long Distance Can Check For Arumbakkam Sustainanbility Doubts Kindly Check And Let Me Know Your Inputs - - Selected for arumbakkam consultant Role', 60, '0000-00-00 00:00:00', 1),
(10743, 10347, 59, 4, 0, '5050 Have Exp in Collection too long distance can check for Arumbakkam sustainanbility doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10744, 10347, 53, 5, 0, 'having 1yr experience but she doesnt suit for telecalling. exp 15k', 59, '2022-09-26 03:33:16', 1),
(10745, 10348, 53, 7, 0, 'selected for arumbakkam branch. pls cnfrm sal and DOJ', 59, '2022-09-26 03:33:30', 1),
(10746, 10353, 59, 3, 0, 'Selected for B2B consultant Role', 53, '2022-09-26 05:46:00', 1),
(10747, 10348, 59, 3, 0, '5050 Have Exp In Collection Too Long Distance Can Check For Arumbakkam Sustainanbility Doubts Kindly Check And Let Me Know Your Inputs - - Selected for arumbakkam consultant Role', 53, '2022-09-26 05:47:52', 1),
(10748, 10333, 30, 4, 3, 'Expected 28k and Previous salary 23k take home . As per company norms you finalize the ctc . Suggested 27k in hand', 56, '2022-09-26 05:48:01', 1),
(10749, 10332, 30, 4, 3, 'Confirm ctc and joining date', 56, '2022-09-26 05:48:28', 1),
(10750, 10355, 59, 3, 0, 'Selected for Internship cum Employment - 3months 7.5 K then 12-14K salary based on Performance 1yr employment SA', 60, '0000-00-00 00:00:00', 1),
(10751, 10356, 59, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(10752, 10341, 59, 3, 0, ' Have Exp In Sales,Can Be Trained Ready To Negotaite On The Salary Only Thing Is Distance Need To See Do Check And Let Me Know Your Interest - -Selected for Shanmugam Team ,final round interviewed by gaurav and got selected', 44, '2022-09-26 07:21:23', 1),
(10753, 10345, 59, 3, 0, 'Selected For Internship Cum Employment - 5months 5K Then 8-12K Salary Based On Performance 3yr Employment SA', 60, '0000-00-00 00:00:00', 1),
(10754, 10342, 59, 5, 0, 'Have 1yr Exp and his current CTC 3LPA Exp 3.5-4 LPA and much looking for IT Domain need to learn additional skills will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10755, 10366, 59, 5, 0, 'Looking for Non Voice No Communicaiton Will not sustain and handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10756, 10369, 59, 4, 0, '5050 Have Exp in App Sales for 3 months can give a try and analyse in 7 days Bike can arrange Laptop he has kinldy check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10757, 10369, 86, 5, 0, 'Not Satisfied. ', 59, '2022-09-27 11:57:06', 1),
(10758, 10340, 59, 4, 0, 'Have Exp in Field Sales Can give a try have a career gap kinldy check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10759, 10340, 51, 5, 0, 'p', 59, '2022-09-27 12:33:56', 1),
(10760, 10370, 24, 5, 0, 'Voice not suitable for our profile', 85, '0000-00-00 00:00:00', 1),
(10761, 10368, 24, 4, 0, 'selected for next round expt 15k .. but told 10k to 13k', 85, '0000-00-00 00:00:00', 1),
(10762, 10372, 59, 5, 0, 'Fresher Ok with the caller profile,but need to confirm with the family on the position if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10763, 10375, 59, 4, 0, '5050 Profile have exp in jio mart Pressure handling doubts kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10764, 10375, 51, 5, 0, 'ol', 59, '2022-09-27 01:25:13', 1),
(10765, 10376, 59, 2, 0, 'Fresher Looking for Accounts Profile,Need to train a lot have knowledge in tally,will check and confirm ', 60, '0000-00-00 00:00:00', 1),
(10766, 10357, 59, 5, 0, 'Too long distance not ready to relocate around 68kms up and down Fresher will not sustain due to distance', 60, '0000-00-00 00:00:00', 1),
(10767, 10371, 59, 4, 0, 'Fresher only basic knowledge 5050 can give a try kindly check and let me know your interest\n', 60, '0000-00-00 00:00:00', 1),
(10768, 10371, 27, 1, 0, NULL, 59, '2022-09-27 03:47:48', 1),
(10769, 10381, 59, 2, 0, 'Communication ok can give a try for POS caller profile,need to check with gajendra ,once done will let the candidate know the status\n', 60, '0000-00-00 00:00:00', 1),
(10770, 10333, 60, 1, 0, NULL, 30, '2022-09-27 04:04:12', 1),
(10771, 10368, 88, 7, 0, 'selected for RE', 24, '2022-09-27 04:06:26', 1),
(10772, 10332, 60, 1, 0, NULL, 30, '2022-09-27 04:30:41', 1),
(10773, 10298, 18, 7, 4, 'Selected for BDM Profile. Can Give 4.5L CTC. Ready to Join on 1st Oct', 71, '2022-09-27 04:50:53', 1),
(10774, 10298, 60, 1, 0, NULL, 18, '2022-09-27 04:54:06', 1),
(10775, 10368, 59, 5, 0, 'Not interested to join She Dragged a lot for giving her confirmation to our roles', 88, '2022-09-27 05:11:14', 1),
(10776, 10324, 59, 3, 0, 'Selected for Kannan Team - Consultant Role', 88, '2022-09-27 05:11:34', 1),
(10777, 10379, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10778, 10380, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10779, 10380, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(10780, 10358, 59, 3, 0, 'Selected for Sarath Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10781, 10358, 51, 4, 0, 'ok', 59, '2022-09-28 11:08:00', 1),
(10782, 10390, 59, 5, 0, 'Not open for Insurance domain not suitable', 60, '0000-00-00 00:00:00', 1),
(10783, 10382, 59, 3, 0, 'Selected for Manikandan Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(10784, 10382, 86, 4, 0, 'Selected For Next Round', 59, '2022-09-28 11:50:40', 1),
(10785, 10391, 59, 3, 0, 'Communication sounds good can be trained fresher 2nd round interviewed by gokul and shortlisted for the recruiter role - Internship cum employment 2yrs SA 3 months Intern', 60, '0000-00-00 00:00:00', 1),
(10786, 10393, 59, 5, 0, 'Looking for Non Voice Process Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10787, 10397, 59, 3, 0, 'Selected for Shanmugam Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10788, 10397, 44, 4, 4, 'Ji candidate ok for me but he will join on nov month ', 59, '2022-09-28 01:15:01', 1),
(10789, 10384, 59, 5, 0, 'Dropped Candidate is not interested with the profile', 60, '0000-00-00 00:00:00', 1),
(10790, 10384, 53, 7, 0, 'having 8months experience in data entry field. will try, pls cnfrm the salary and DOJ.', 59, '2022-09-28 02:40:34', 1),
(10791, 10399, 59, 4, 0, '5050 Profile have only 6 months Exp Career Gap due to marriage proposals looking for the oportunites sustainability doubts in the long run kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10792, 10396, 59, 4, 0, 'Fresher for our Sales internal team reference frequent Job Changes Sustainability doubts on this profile kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10793, 10401, 59, 5, 0, 'communication sound s good but have an attitude issue will not sustain in our roles and long run doubts 2nd Round Rejected', 60, '0000-00-00 00:00:00', 1),
(10794, 10402, 59, 3, 0, 'Communication Sounds Good Can Be Trained Fresher 2nd Round Interviewed By Gokul And Shortlisted For The Recruiter Role - Internship Cum Employment 2yrs Sa 3 Months Intern', 60, '0000-00-00 00:00:00', 1),
(10795, 10403, 59, 3, 0, 'Communication Sounds Good Can Be Trained Fresher 2nd Round Interviewed By Gokul And Shortlisted For The Recruiter Role - Internship Cum Employment 2yrs Sa 3 Months Intern', 60, '0000-00-00 00:00:00', 1),
(10796, 10406, 59, 5, 0, 'Communication Average,Being Frehser Salary Exp is very high will not sustain in our roles not suitable', 60, '0000-00-00 00:00:00', 1),
(10797, 10395, 59, 2, 0, 'Communication is Good Have frequent Job Changes Sustainability Doubts on this profile Need to check with Bharati Axa', 60, '0000-00-00 00:00:00', 1),
(10798, 10394, 59, 3, 0, 'Selected for GK Sir Team with the commitment - Commitment - 1L Target in Oct,completes then 20K Net from Nov', 60, '0000-00-00 00:00:00', 1),
(10799, 10400, 59, 5, 0, 'No confidence to speak and much preferred to be in nonvoice and pressure Free Career Gap Will not sustain', 60, '0000-00-00 00:00:00', 1),
(10800, 10398, 59, 4, 0, 'Communication Average Have 7 yrs of Exp in Financial Pre/Post Dispersal can be trained kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10801, 10384, 59, 5, 0, 'Dropped Candidate is not interested with the profile', 53, '2022-09-28 05:34:39', 1),
(10802, 10399, 31, 5, 0, 'not interested in insurance selling', 59, '2022-09-28 05:51:54', 1),
(10803, 10398, 98, 1, 0, NULL, 59, '2022-09-28 06:25:26', 1),
(10804, 10394, 31, 4, 4, 'candidate okay', 59, '2022-09-28 06:27:51', 1),
(10805, 10396, 71, 5, 0, 'Not satisfied', 59, '2022-09-28 06:35:04', 1),
(10806, 10414, 59, 5, 0, 'very fresh candidate need to train a lot not open for TxxampC No basic skills knowledge', 60, '0000-00-00 00:00:00', 1),
(10807, 10382, 18, 7, 4, 'Selected for Mani Team Ready to Join on 11th. Can Give 16K Package as overall ctc', 86, '2022-09-29 11:26:20', 1),
(10808, 10408, 24, 5, 0, 'shexquots take own time for interview so sustainability doubt', 85, '0000-00-00 00:00:00', 1),
(10809, 10415, 97, 5, 0, 'no idea about telecalling, will not suit for our process', 85, '0000-00-00 00:00:00', 1),
(10810, 10417, 97, 5, 0, 'has some Knowledge in php. not Open up... Sustainability doubts. not ok with txxampc too', 85, '0000-00-00 00:00:00', 1),
(10811, 10421, 97, 5, 0, 'good at skills but no stability ... her brother already working in IT., fresher sal expt high xxamp not ok with terms too. ', 85, '0000-00-00 00:00:00', 1),
(10812, 10392, 97, 4, 0, 'Sounds good .. married and have 9m baby. have exp in Non-Voice process .... ok with sales has some Knowledge in insurance. let you check and update your feedback...', 85, '0000-00-00 00:00:00', 1),
(10813, 10426, 97, 5, 0, 'doing course. one week more but already got offer for 15k. focusing on salary. will not suit for our company', 60, '0000-00-00 00:00:00', 1),
(10814, 10423, 97, 5, 0, 'Hv Basic Skills, no stability mind .. focusing on sal. ', 85, '0000-00-00 00:00:00', 1),
(10815, 10430, 97, 5, 0, 'no understanding, has 8m exp as a graphic designer ..sal exp high .. Sustainability doubts..', 85, '0000-00-00 00:00:00', 1),
(10816, 10392, 14, 7, 0, 'Salary 10.5k need to confirm joining date', 97, '2022-09-29 02:48:33', 1),
(10817, 10424, 59, 5, 0, 'Fresher SCheduled him for 2nd round basic skills have knowledge not open with TxxampC and left without attending the 2nd round', 85, '0000-00-00 00:00:00', 1),
(10818, 10392, 59, 5, 0, 'Dropped Not responding the calls and got an update from consultancy that she is not interested', 14, '2022-09-29 03:01:59', 1),
(10819, 10428, 59, 5, 0, 'Fresher SCheduled Him For 2nd Round Basic Skills Have Knowledge high CTC Exp 2nd round reject by gokul', 60, '0000-00-00 00:00:00', 1),
(10820, 10420, 59, 5, 0, 'No Communication no basic ideas in the skills will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10821, 10427, 59, 5, 0, 'Fresher for our roles no basic skills will not sustain and not suitable ', 60, '0000-00-00 00:00:00', 1),
(10822, 10413, 59, 5, 0, 'No Stability and no Sales Exp frequent job changes not suitable and will not sustain', 60, '0000-00-00 00:00:00', 1),
(10823, 10373, 59, 4, 0, 'Communication Average fresher for our Domain,5050 kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10824, 10419, 97, 5, 0, 'Left without attending the interview', 60, '0000-00-00 00:00:00', 1),
(10825, 10422, 97, 5, 0, 'Left Without Attending The Interview', 60, '0000-00-00 00:00:00', 1),
(10826, 10373, 44, 1, 0, NULL, 59, '2022-09-29 05:45:15', 1),
(10827, 10394, 29, 7, 0, 'ok', 31, '2022-09-29 08:32:41', 1),
(10828, 10431, 59, 3, 0, 'Selected for RM Role,SAnthosh Team - STAFF ROLE - Have Exp In Sales But Not A Relevant One Can Be Trained ', 60, '0000-00-00 00:00:00', 1),
(10829, 10431, 71, 4, 0, 'Candidate selected ', 59, '2022-09-30 10:44:45', 1),
(10830, 10435, 59, 5, 0, '5050 Profile,seems to be slow have basic skills knowledge,long rund doubts 2nd round interviewed by kaviiya,Candidate need time to learn if she comes back after 2 months can be considered based on her learnings', 60, '0000-00-00 00:00:00', 1),
(10831, 10436, 59, 5, 0, 'Not strong with the skills she learnt, need to speak out, not much comfort with TxxampC Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(10832, 10388, 59, 5, 0, 'Fresher Pressure handling no have knowledge in UIUX but want to get into Sales,too long distance up and down 78 kms sustainability doubts', 60, '0000-00-00 00:00:00', 1),
(10833, 10437, 59, 5, 0, 'No basic Skllls,not much open with TxxampC,Need time to confirm also need to learn a lot', 60, '0000-00-00 00:00:00', 1),
(10834, 10441, 59, 3, 0, 'selected for PHP 3-5 months 10K Salary then 13K based on performance 2yrs SA', 60, '0000-00-00 00:00:00', 1),
(10835, 10440, 59, 5, 0, 'Fresher for IT Roles have Exp in Non voice Looking only for the salary growth will not sustain ', 60, '0000-00-00 00:00:00', 1),
(10836, 10438, 59, 5, 0, 'Fresher no basic skills will not sustain and handle our Roles not suitable', 60, '0000-00-00 00:00:00', 1),
(10837, 10439, 59, 5, 0, 'Fresher No Basic Skills Will Not Sustain And Handle Our Roles Not Suitable', 60, '0000-00-00 00:00:00', 1),
(10838, 10397, 29, 7, 2, 'RM for shanmugam team, mid oct or nov joining', 44, '2022-09-30 04:33:33', 1),
(10839, 10358, 29, 7, 2, 'ok for RM, sarath team', 51, '2022-09-30 04:45:09', 1),
(10840, 10397, 59, 3, 0, 'Selected for Shanmugam Team - Staff Role', 29, '2022-09-30 05:47:44', 1),
(10841, 10394, 59, 3, 0, 'Selected for GK Sir Team with the commitment - Commitment - 1L Target in Oct,completes then 20K Net from Nov', 29, '2022-09-30 05:50:04', 1),
(10842, 10358, 59, 3, 0, 'Selected for Sarath Team - Staff Role', 29, '2022-09-30 05:51:04', 1),
(10843, 10448, 59, 4, 0, 'Have Exp in Calling Career Gap is there can give a try Bike he has no laptop 5050 check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10844, 10448, 86, 5, 0, 'Not Satisfied', 59, '2022-10-01 12:14:40', 1),
(10845, 10382, 60, 1, 0, NULL, 18, '2022-10-01 05:12:31', 1),
(10846, 9298, 60, 1, 0, NULL, 18, '2022-10-01 05:15:27', 1),
(10847, 10445, 59, 3, 0, '3-5 months 5K then 2.7 yrs Emp 10-12K Salary after intern - Fresher have basic skills and interested to learn final round by Gokul', 60, '0000-00-00 00:00:00', 1),
(10848, 10449, 59, 5, 0, 'Fresher for PHP no basic skills need to train a lot but salary exp is high and not open for T7C', 60, '0000-00-00 00:00:00', 1),
(10849, 10446, 59, 5, 0, 'Fresher not much strong in basic skills not open for TxxampC will not sustain', 60, '0000-00-00 00:00:00', 1),
(10850, 10447, 59, 5, 0, 'No basic ideas in PHP looking for Java C++', 60, '0000-00-00 00:00:00', 1),
(10851, 10451, 59, 5, 0, 'Too long Distance communication average and writing skills not upto the mark as we expected', 60, '0000-00-00 00:00:00', 1),
(10852, 10362, 59, 2, 0, 'Have basic knowledge and 6 months internship Exp but need to be trained a lot,2nd round interviewed by gokul and given time to confirm his interest if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10853, 10455, 59, 5, 0, 'Fresher Handling work pressure doubtful will not sustain in long run not suitable', 60, '0000-00-00 00:00:00', 1),
(10854, 10456, 59, 5, 0, 'Too long Distance ,not much comfort in TxxampC Need time to give his confirmation ,sustainability doubts a lot ', 60, '0000-00-00 00:00:00', 1),
(10855, 10457, 59, 5, 0, 'Too Long Distance ,Not Much Comfort In TxxampC Need Time To Give His Confirmation ,Sustainability Doubts A Lot If He Comes Back Can Give A Try', 60, '0000-00-00 00:00:00', 1),
(10856, 10458, 59, 2, 0, 'Have Basic knowledge in Skills need time to confirm his position in TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10857, 10459, 59, 5, 0, 'No basic skills not comfort in TxxampC need to learn a lot will not sustain for a long', 60, '0000-00-00 00:00:00', 1),
(10858, 10431, 18, 7, 3, 'Selected For Santosh Team. Immideate Joiner. Negotiate The Salary', 71, '2022-10-04 04:53:58', 1),
(10859, 10466, 59, 5, 0, 'Looking for Java openings', 60, '0000-00-00 00:00:00', 1),
(10860, 10465, 59, 5, 0, 'Have basic skills knowledge Fresher SAlary exp is high and not open with TxxampC also not comfort with 8-10K Salary', 60, '0000-00-00 00:00:00', 1),
(10861, 10463, 59, 4, 0, 'Fresher Have interest to learn can be trained have basic skills kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10862, 10467, 59, 5, 0, 'No sustainability in his previous Exp much focused with non voice Career Gap need to open a lot for our sales and Salary Exp is high', 60, '0000-00-00 00:00:00', 1),
(10863, 10464, 59, 5, 0, 'No basic skills too long distance will not sustain in our roles for a long', 60, '0000-00-00 00:00:00', 1),
(10864, 10463, 27, 7, 0, 'Selected as a trainee with 8k salary per month and 3 years service agreement.', 59, '2022-10-05 04:26:14', 1),
(10865, 10431, 60, 1, 0, NULL, 18, '2022-10-06 02:55:44', 1),
(10866, 10469, 59, 3, 0, 'Selected for B2B - Consultant Role\nCommunication Ok Have Exp In Calling But Not A Relevant One Can Give A Try ', 60, '0000-00-00 00:00:00', 1),
(10867, 10484, 59, 5, 0, 'Fresher no basic skills knowledge relocation not sure he is from kanchipuram sustainability doubts in this profile need to learn a lot', 60, '0000-00-00 00:00:00', 1),
(10868, 10461, 59, 5, 0, 'Communication Average, Writing skills not up to the mark as we expected fresher for our roles personal family issue are there will not sustain in long run', 60, '0000-00-00 00:00:00', 1),
(10869, 10482, 59, 2, 0, 'Fresher,5050 profile can give a try sustainability doubts have basic knowledge in recruitment,father is chief chef in china', 60, '0000-00-00 00:00:00', 1),
(10870, 10478, 59, 5, 0, 'Looking for JAVA openings only\n', 60, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(10871, 10474, 59, 2, 0, 'Not much active too long Distance ,he says that can relocate but not sure on that,will not handle our work pressure and sustainability doubts,5050 if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10872, 10471, 59, 5, 0, 'Looking for ASP.Net profile', 60, '0000-00-00 00:00:00', 1),
(10873, 10476, 59, 2, 0, 'Communication Average but sounding good have Exp in policy bazaar for 9 months looking for MF roles only not open for Sales 5050 Can give a try,writing skills Average need to check with gokul and confirm', 85, '0000-00-00 00:00:00', 1),
(10874, 10476, 59, 2, 0, 'Communication Average but sounding good have Exp in policy bazaar for 9 months looking for MF roles only not open for Sales 5050 Can give a try,writing skills Average need to check with gokul and confirm', 60, '0000-00-00 00:00:00', 1),
(10875, 10480, 59, 5, 0, 'Not much active,will not handle our work pressure will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(10876, 10477, 59, 2, 0, 'Have Basic skills in PHP have Exp for Few months Recently married and husband in singapore,need to check and confirm us for the TxxampC is she comes back let us try\n', 60, '0000-00-00 00:00:00', 1),
(10877, 10470, 59, 4, 0, 'Have a months exp in PHP,can be trained open for TxxampC need to be trained can give a try kindly check and let me know your inpts', 85, '0000-00-00 00:00:00', 1),
(10878, 10473, 59, 5, 0, 'Fresher have basic knowledge in JS ,5050 not much comfort with TxxampC 2nd round reject by manikandan', 85, '0000-00-00 00:00:00', 1),
(10879, 10472, 59, 4, 0, '5050 Profile Can give a try for PHP kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10880, 10481, 59, 4, 0, 'Have Exp in PHP,5050 for us can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10881, 10481, 59, 4, 0, 'Have Exp in PHP,5050 for us can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10882, 10469, 53, 7, 0, 'selected for b2b. pls cnfrm the salary and DOJ', 59, '2022-10-06 03:56:18', 1),
(10883, 10470, 27, 1, 0, NULL, 59, '2022-10-06 04:04:18', 1),
(10884, 10472, 27, 1, 0, NULL, 59, '2022-10-06 04:17:26', 1),
(10885, 10481, 27, 1, 0, NULL, 59, '2022-10-06 04:18:09', 1),
(10886, 10469, 59, 3, 0, 'Selected for B2B - Consultant Role\nCommunication Ok Have Exp In Calling But Not A Relevant One Can Give A Try ', 53, '2022-10-06 04:20:35', 1),
(10887, 10487, 59, 5, 0, 'No basic knowledge in skills from perambur need to train a lot no ideas in PHP/CRUD Will not sustain ', 60, '0000-00-00 00:00:00', 1),
(10888, 10485, 59, 4, 0, 'Communication ok fresher, can be trained kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10889, 10485, 11, 1, 0, NULL, 59, '2022-10-07 10:53:49', 1),
(10890, 10489, 59, 3, 0, 'Selected for B2B in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10891, 10489, 53, 7, 0, 'selected for B2B. pls cnfrm the salary and DOJ', 59, '2022-10-07 11:06:27', 1),
(10892, 10493, 59, 5, 0, 'Communication ok fresher for recruitment Salary Exp is very high not open for TxxampC will not sustain ', 60, '0000-00-00 00:00:00', 1),
(10893, 10495, 59, 5, 0, 'Need to open Seems to be slow in learning No basic Skills knowledge have Internship Exp in Ingenuine but not answering not suitable', 60, '0000-00-00 00:00:00', 1),
(10894, 10496, 59, 5, 0, 'No basic ideas in skills,will not sustain in our roles and not suitable', 60, '0000-00-00 00:00:00', 1),
(10895, 10497, 14, 7, 0, 'Salary 10-10.5k . Need to confirm joining date', 85, '0000-00-00 00:00:00', 1),
(10896, 10497, 59, 3, 0, 'Selected for Arumbakkam,Fresher Can give a try Consultant Role', 14, '2022-10-07 12:09:29', 1),
(10897, 10502, 59, 5, 0, 'Not open for Stipend fresher for React,have internship in Sales force min Exp being a fresher is 15K not ready to come down Will not sustain', 60, '0000-00-00 00:00:00', 1),
(10898, 10500, 59, 5, 0, 'Not open for Sales Calling and looking for support roles checked for Technical support but left without attending the 2nd level Current Salary is 30K\n', 60, '0000-00-00 00:00:00', 1),
(10899, 10499, 59, 5, 0, 'Looking for Non Voice No Communication', 60, '0000-00-00 00:00:00', 1),
(10900, 10475, 59, 5, 0, 'Fresher 5050 not much ok with the Skills Can give a try Discussed with Gokul on the same and dropped the profile,if he comes back after few more interviews let us decide this profile', 60, '0000-00-00 00:00:00', 1),
(10901, 10486, 59, 5, 0, 'Fresher have learnt skills from ingenuine,need to travel from tambaram,not much comfort with the TxxampC Need time to check with her family and confirm if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(10902, 10498, 59, 5, 0, 'Very fresher just learn basics in ingenuine,not much comfort with the fresher salary need time to check and confirm with her parents if she comes back let us try\n', 60, '0000-00-00 00:00:00', 1),
(10903, 10494, 59, 5, 0, 'Too long distance 1.30 min travel,no basic ideas in the skills not open for TxxampC not suitable', 60, '0000-00-00 00:00:00', 1),
(10904, 10489, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2022-10-07 02:48:16', 1),
(10905, 10504, 59, 4, 0, 'Have 3 months Agent Exp in Insurance, no fixed pay only commission based,Holds an IRDA Code,Need to inactive the same,kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10906, 10504, 57, 1, 0, NULL, 59, '2022-10-07 03:05:10', 1),
(10907, 10501, 24, 5, 0, 'She is scared for Target so rejected', 85, '0000-00-00 00:00:00', 1),
(10908, 10521, 59, 2, 0, 'Only basic knowledge in the Designing skills need to train in Development, Given task if he completes and get back let us try,Long run with txxampC doubts a lot ', 60, '0000-00-00 00:00:00', 1),
(10909, 10523, 59, 5, 0, 'Preferred to go in Java Openings since getting delay in getting ready to go for PHP,not much open with TxxampC,long run doubts he has plan to go with own business too,will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(10910, 10533, 59, 5, 0, 'Looking for Non Voice Process no Communication', 60, '0000-00-00 00:00:00', 1),
(10911, 10526, 59, 5, 0, 'Have internship Exp in Java,his sister is also in Frontend earning around 45K in 1.5 yrs He need time to check with his family and confirm, but sustainability doubts a lot', 60, '0000-00-00 00:00:00', 1),
(10912, 10527, 59, 5, 0, 'Fresher did some projects in React,Had a course from GUVI spent around 60K and the salary Exp is min 20-25K not much comfort with TxxampC based on the salary if he comes back can give a try with our TxxampC', 60, '0000-00-00 00:00:00', 1),
(10913, 10531, 59, 5, 0, 'Not open for Sales Calls just looking for inbound and non voice Process,will not sustain and handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10914, 10468, 59, 5, 0, 'Fresher not much strong in the basic skills,Not answering much checked for technical round with Manikandan and got rejected ', 85, '0000-00-00 00:00:00', 1),
(10915, 10535, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(10916, 10536, 59, 3, 0, ' Have Calling Exp In Sales Need To Check His Previous Exp Documents,5050 Profile Sustainability Doubts On This Profile,Need To Groom Them A Lot Staff Role', 60, '0000-00-00 00:00:00', 1),
(10917, 10537, 59, 3, 0, 'selected for Thiyagu,internal reference,lond back candidate attended here and hot rejected by banu,we have processed again need to analyse and confirm in 7 days training alos the re was no proper documents of his previous Exp holds an IRDA certificate need to provide NOC or should close the certificate', 60, '0000-00-00 00:00:00', 1),
(10918, 10536, 16, 7, 0, 'Shortlisted for joining ', 59, '2022-10-08 01:33:33', 1),
(10919, 10537, 16, 4, 0, 'Shortlisted For Joining', 59, '2022-10-08 01:34:17', 1),
(10920, 10539, 59, 4, 0, 'Fresher, Too long Distance,Need to be trained a lot,internal reference do check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10921, 10539, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-10-08 03:13:04', 1),
(10922, 10553, 59, 4, 0, 'Have Exp in Telecalling Worked in Justdial for 7 months,reasons for relieving was not clear,can give a try 5050 kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10923, 10552, 59, 4, 0, 'Communication ok have exp in Justdial for 7 months Can be trained in our domain, kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10924, 10452, 59, 3, 0, '8K Stipend,based on performance will get revised 3yrs SA,Need to analyse the candidate in 7 Days,Final round interviewed by Gokul and Selected', 60, '0000-00-00 00:00:00', 1),
(10925, 10550, 59, 3, 0, '5K Stipend,3yrs SA,10-12K post internship,2nd round interviewed by Gokul, Need to be finalised for React or Node', 60, '0000-00-00 00:00:00', 1),
(10926, 9589, 59, 5, 0, 'Left without attending the interview\n', 60, '0000-00-00 00:00:00', 1),
(10927, 10559, 59, 5, 0, 'Fresher for IT have exp as process Associate in HP his current salary is 25K Need time to give his confirmation on the TxxampC and the stipend if he comes back let us try.', 60, '0000-00-00 00:00:00', 1),
(10928, 10557, 59, 2, 0, 'Fresher have 3 months Exp in PHP,Need to be trained a lot Need time to confirm his opportunity in our PHP,will check with Sathish and confirm his employment later', 60, '0000-00-00 00:00:00', 1),
(10929, 10558, 14, 7, 0, 'salary 10k freasher kindly confirmed joining date', 60, '0000-00-00 00:00:00', 1),
(10930, 10488, 24, 4, 0, 'Candidate selected for next round.. Exp sal 10k to 12k', 60, '0000-00-00 00:00:00', 1),
(10931, 10552, 31, 4, 4, 'worked 7 months with Justdial', 59, '2022-10-10 03:29:03', 1),
(10932, 10553, 53, 1, 0, NULL, 59, '2022-10-10 03:38:17', 1),
(10933, 10488, 88, 7, 0, 'Selected for RE', 24, '2022-10-10 06:15:40', 1),
(10934, 10488, 59, 3, 0, 'Selected for Suthagar Team - Staff Role', 88, '2022-10-10 09:24:54', 1),
(10935, 10574, 59, 3, 0, ' Have Exp In B2b Sales Communication Is Ok Fresh For Our Sales Can Be Trained Kindly Check And Let Me Know Your Inputs Sir - Selected for GK sir Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10936, 10552, 29, 1, 0, NULL, 31, '2022-10-11 02:51:39', 1),
(10937, 10580, 59, 4, 0, 'have Exp in Calling Can be trained ,open for B2B kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10938, 10578, 59, 3, 0, ' Have Exp In Calling Fresher For Our Domain,Can Give A Try Kindly Check And Let Me Know Your Inputs - selected for Syed Team in Staff ROle', 85, '0000-00-00 00:00:00', 1),
(10939, 10577, 59, 2, 0, 'Have Exp In Telecalling Asked Them To Wait For 2nd Round With Banu But Left Without Attending ', 85, '0000-00-00 00:00:00', 1),
(10940, 10576, 59, 2, 0, 'Have Exp in Telecalling Asked them to wait for 2nd round with banu but left without attending ', 85, '0000-00-00 00:00:00', 1),
(10941, 10575, 59, 4, 0, 'Have 1 yr Exp in PHP Can be analysed by giving a task open for 2 yrs SA kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(10942, 10573, 59, 5, 0, 'Have 1 yrs Exp in React Exp Min 25K Not open to work on Saturday have other commitments Will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(10943, 10567, 59, 5, 0, 'Fresher ,Looking for High Salary and tier level companies have a plan to go abroad,got opportunity with high salary but not joined as he felt that as a less pay will not sustain', 85, '0000-00-00 00:00:00', 1),
(10944, 10570, 59, 5, 0, 'No basic Skills not open for txxampC will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(10945, 10572, 59, 2, 0, 'Fresher have exp in Credit Card Sales now looking for opportunites in IT Need to be trained if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(10946, 10580, 53, 1, 0, NULL, 59, '2022-10-11 04:13:47', 1),
(10947, 10575, 27, 5, 0, 'Using the existing code to do the task.', 59, '2022-10-11 04:15:00', 1),
(10948, 10566, 59, 2, 0, 'Have Exp as PC Builder,not much comfort in TxxampC need to learn a lot in basics of JS,if he comes back we can give a try ', 60, '0000-00-00 00:00:00', 1),
(10949, 10574, 29, 7, 3, 'gk team as RM', 59, '2022-10-11 04:20:07', 1),
(10950, 10549, 56, 5, 0, 'He is looking inside sales job salary expectaion 30k in hand he looking cab specility also', 85, '0000-00-00 00:00:00', 1),
(10951, 10578, 57, 4, 0, 'candidate is ok , already he have 1year Experience for voice process,So kinldy Confirm the joining date ', 59, '2022-10-11 04:48:33', 1),
(10952, 10536, 88, 7, 0, 'Selected for RE', 16, '2022-10-11 05:10:26', 1),
(10953, 10537, 88, 7, 0, 'Selected for RE', 16, '2022-10-11 05:11:18', 1),
(10954, 10578, 88, 7, 0, 'Selected for RE', 57, '2022-10-11 05:53:18', 1),
(10955, 10558, 59, 5, 0, 'Discussed with the candidate not ok with salary also not open for Field calls but salary Exp is high and pressure handling doubts', 14, '2022-10-11 06:37:52', 1),
(10956, 10578, 59, 3, 0, ' Have Exp In Calling Fresher For Our Domain,Can Give A Try Kindly Check And Let Me Know Your Inputs - selected for Syed Team in Staff ROle', 88, '2022-10-12 08:41:44', 1),
(10957, 10594, 59, 5, 0, 'up and down 40 kms,,Fresher have only Internship but in different skills not open for SA,Not suitable will not sustain in our role for a long', 85, '0000-00-00 00:00:00', 1),
(10958, 10592, 59, 5, 0, 'Have Exp In React Support Exp 6 Months Left Due To Overtime Work Not Open For SA, Not Open For Our Salary Too', 85, '0000-00-00 00:00:00', 1),
(10959, 10591, 59, 5, 0, 'Have Exp in react support Exp 6 months left due to overtime work not open for SA, Not open for our Salary too,got another opportunity but didnt join due to SA', 85, '0000-00-00 00:00:00', 1),
(10960, 10588, 59, 5, 0, 'No communication ,Average only,Focus only on the salary growth,will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(10961, 10590, 59, 2, 0, 'Fresher for IT have Exp in Sales,have a basic knowledge in JS,Need to train a lot if available can have a final round on saturday with gokul and check', 85, '0000-00-00 00:00:00', 1),
(10962, 10586, 59, 5, 0, 'No basic skills in Javascript,Looking much for Java openings not open for TxxampC will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(10963, 10585, 59, 5, 0, 'fresher ,Need to train a lot only basic knowledge in Figma,XD.Not much comfort in TxxampC need to travel for along not able to relocate', 85, '0000-00-00 00:00:00', 1),
(10964, 10574, 59, 3, 0, ' Have Exp In B2b Sales Communication Is Ok Fresh For Our Sales Can Be Trained Kindly Check And Let Me Know Your Inputs Sir - Selected for GK sir Team - Staff Role', 29, '2022-10-12 02:48:35', 1),
(10965, 10597, 59, 3, 0, 'Selected for B2B Consultant Role', 60, '0000-00-00 00:00:00', 1),
(10966, 10545, 59, 5, 0, 'No communication, Notice Period is 90 days,no sustainability in his previous exp looking for change only for the salary growth will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(10967, 10597, 53, 7, 0, 'selected for b2b. kindly cnfrm the salary and DOJ', 59, '2022-10-12 03:30:42', 1),
(10968, 10503, 14, 7, 0, 'Fresher, Salary 10k, Kindly confirm joining date', 60, '0000-00-00 00:00:00', 1),
(10969, 10503, 59, 3, 0, 'Selected for Arumbakkam - Consultant role', 14, '2022-10-12 04:39:16', 1),
(10970, 10598, 59, 3, 0, 'Selected for B2B staff Role', 60, '0000-00-00 00:00:00', 1),
(10971, 10598, 53, 7, 0, 'Selected for B2B. pls cnfrm the salary and DOJ', 59, '2022-10-13 11:45:08', 1),
(10972, 10602, 59, 5, 0, 'Fresher for our Sales,Salary exp is very high and the distance is too long will not sustain in our roles not suitable', 60, '0000-00-00 00:00:00', 1),
(10973, 10603, 59, 4, 0, 'communication is Good Have Exp in Telecalling But too long Distance open to travel kindly check for ESalea and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10974, 10536, 59, 3, 0, ' Have Calling Exp In Sales Need To Check His Previous Exp Documents,5050 Profile Sustainability Doubts On This Profile,Need To Groom Them A Lot Staff Role', 88, '2022-10-13 01:18:47', 1),
(10975, 10537, 59, 3, 0, 'selected for Thiyagu,internal reference,lond back candidate attended here and hot rejected by banu,we have processed again need to analyse and confirm in 7 days training alos the re was no proper documents of his previous Exp holds an IRDA certificate need to provide NOC or should close the certificate', 88, '2022-10-13 01:19:09', 1),
(10976, 7557, 14, 5, 0, 'Not suitable for this profile', 14, '2022-10-13 03:17:26', 1),
(10977, 10598, 59, 3, 0, 'Selected for B2B staff Role', 53, '2022-10-13 05:16:08', 1),
(10978, 10603, 29, 1, 0, NULL, 59, '2022-10-13 05:48:12', 1),
(10979, 10604, 14, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(10980, 10607, 59, 5, 0, 'Need to open a lot Career Gap too long and need to relocate husband in HDB financial,will not handle the pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10981, 10605, 59, 5, 0, 'No basic skills too long distance not much active will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(10982, 10608, 59, 4, 0, '5050 Profile Have only retail sales Exp too long distance ready to relocate somewhere near by,no exp in calling kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10983, 10609, 59, 4, 0, 'Have Exp in HDB Recovery, Need to see the distance but she worked somewhere near our location ready to travel 5050 sustainability kindly check and let me know your interest', 60, '0000-00-00 00:00:00', 1),
(10984, 10610, 59, 4, 0, 'Have Exp In HDB Recovery, Need To See The Distance But She Worked Somewhere Near Our Location Ready To Travel 5050 Sustainability Kindly Check And Let Me Know Your Interest', 60, '0000-00-00 00:00:00', 1),
(10985, 10608, 86, 5, 0, 'Not Satisfied', 59, '2022-10-14 04:49:20', 1),
(10986, 10609, 53, 1, 0, NULL, 59, '2022-10-14 04:51:16', 1),
(10987, 10610, 53, 1, 0, NULL, 59, '2022-10-14 04:52:24', 1),
(10988, 10611, 59, 3, 0, 'Selected for Karthika Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10989, 10601, 59, 5, 0, 'Not ready to speak need to open a lot will not sustain and handle the work pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(10990, 10613, 59, 5, 0, 'Fresher for IT ,no strong in the skills not much comfort in TxxampC will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(10991, 10615, 59, 5, 0, 'Earlier attended and not joined due to salary,now again looking for the salary hike in an year not much comfort in TxxampC not suitable', 60, '0000-00-00 00:00:00', 1),
(10992, 10614, 59, 5, 0, 'No basic ideas in PHP,only into support and earning 15K Now ,looking for more salary and not open for TxxampC will not sustain', 60, '0000-00-00 00:00:00', 1),
(10993, 10616, 59, 5, 0, 'Have Exp in React for 6 months Intern Stipend is 15K she may get the offer in the same company for 3.5 LPA,Just Looking fr a change,no much strong in skills married will not sustain and not open for TxxampC', 60, '0000-00-00 00:00:00', 1),
(10994, 10617, 59, 4, 0, '5050 Have exp in B2B Retail seems to be talkative kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(10995, 10611, 29, 7, 2, 'Esales RM', 59, '2022-10-15 01:25:50', 1),
(10996, 10617, 51, 4, 0, 'ok', 59, '2022-10-15 01:27:34', 1),
(10997, 10621, 59, 3, 0, 'Selected for Sarath Team - Staff Role', 60, '0000-00-00 00:00:00', 1),
(10998, 10625, 59, 4, 0, 'Communicaiton is Good Fresher for MIS,Sustainability doubts in our role kindly check and let me know your interest,i have spoken for both MIS xxamp Technical Support', 60, '0000-00-00 00:00:00', 1),
(10999, 10624, 59, 5, 0, 'No Communication no sustainability in the previous exp not open for TxxampC Not suitable ', 60, '0000-00-00 00:00:00', 1),
(11000, 10622, 59, 5, 0, 'No Communication too long distance not open for Sales profile no ideas in MIS not suitable', 60, '0000-00-00 00:00:00', 1),
(11001, 10621, 51, 4, 0, 'selected', 59, '2022-10-17 05:15:05', 1),
(11002, 10625, 98, 1, 0, NULL, 59, '2022-10-17 05:16:18', 1),
(11003, 10611, 59, 3, 0, 'Selected for Karthika Team - Staff Role', 29, '2022-10-18 10:52:12', 1),
(11004, 10627, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 60, '0000-00-00 00:00:00', 1),
(11005, 10632, 59, 5, 0, 'No Communication Working in HDB Sales but not interested towards the same, not suitable', 60, '0000-00-00 00:00:00', 1),
(11006, 10633, 59, 5, 0, 'Not interested in Sales and Recovery process too already he has exp in receovery but not open to go in the same will not sustain', 60, '0000-00-00 00:00:00', 1),
(11007, 10634, 59, 2, 0, 'have 11 yrs exp in ERP Sales new to our domain,need to check with gokul and decide the profile', 60, '0000-00-00 00:00:00', 1),
(11008, 10623, 59, 2, 0, 'Having basic skills not much ok with Stipend pay exp some thing more 2nd Interviewed by manikandan xxamp 3rd round by Kavya,given time to her if she is ok with the TxxampC will come for final round on Saturday', 60, '0000-00-00 00:00:00', 1),
(11009, 10631, 59, 3, 0, 'Selected for Syed Team in staff Role', 60, '0000-00-00 00:00:00', 1),
(11010, 10631, 57, 4, 0, 'kindly confirm the joining date and salary thank u ', 59, '2022-10-18 12:40:59', 1),
(11011, 10635, 59, 5, 0, 'Candidate didnt come back with his confirmation', 60, '0000-00-00 00:00:00', 1),
(11012, 10635, 53, 7, 0, 'shortlisted for arumbakkam team, have little doubt ask to take another round of interview in arumbakkam branch', 59, '2022-10-18 01:01:01', 1),
(11013, 10630, 59, 3, 0, 'Selected for MAnikandan team with PF/PT', 60, '0000-00-00 00:00:00', 1),
(11014, 10630, 86, 4, 0, 'Selected For Next Round', 59, '2022-10-18 03:44:36', 1),
(11015, 10636, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 60, '0000-00-00 00:00:00', 1),
(11016, 10463, 60, 1, 0, NULL, 27, '2022-10-19 10:01:02', 1),
(11017, 10630, 18, 7, 3, 'Selected for mani team. Expected 15k In hand. Ready to Join next monday', 86, '2022-10-19 11:05:26', 1),
(11018, 10643, 59, 5, 0, '12th Dropout long career gap last month attended and got rejected,she got opportunity in Mount road and left due to timing and distance not suitable will not sustain', 60, '0000-00-00 00:00:00', 1),
(11019, 10637, 59, 4, 0, 'Have Exp in Telecalling and retail sales in GRT 5050 profile Salary exp was high, kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11020, 10641, 59, 5, 0, 'too long Distance 74kms up and down will not sustain and not suitable ', 60, '0000-00-00 00:00:00', 1),
(11021, 10642, 59, 5, 0, 'Not comfort to get back into sales calls,looking much for non voice for time being looking for Voice will not sustian and she is very clear that she will move to non voice if she get any', 60, '0000-00-00 00:00:00', 1),
(11022, 10637, 53, 1, 0, NULL, 59, '2022-10-19 01:19:56', 1),
(11023, 10644, 24, 5, 0, 'not fit for us', 85, '0000-00-00 00:00:00', 1),
(11024, 10646, 24, 5, 0, 'not suitable for us', 85, '0000-00-00 00:00:00', 1),
(11025, 10631, 88, 7, 0, 'Selected for RE', 57, '2022-10-19 05:20:25', 1),
(11026, 10652, 74, 5, 0, 'not profiled and not fit for telesales', 85, '0000-00-00 00:00:00', 1),
(11027, 10653, 74, 5, 0, 'sustainability issue and 10years not working out of the field not fit for team', 85, '0000-00-00 00:00:00', 1),
(11028, 10654, 74, 7, 0, 'good voice flow and fresher also fit for team and poor background .......adaptive and talk active highly job need ......expected 10k and have laptop....kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(11029, 10655, 74, 5, 0, 'candidate have some speaking issue voice not that much flow and not fit', 85, '0000-00-00 00:00:00', 1),
(11030, 10656, 74, 5, 0, 'candidate not fit for tele sales and not profiled', 85, '0000-00-00 00:00:00', 1),
(11031, 10654, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-10-20 02:45:37', 1),
(11032, 10651, 97, 2, 0, 'good communication.. have 3m of intern exp in sales non it.. txxampc want to confirm with his parents if he come back let us try ...', 85, '0000-00-00 00:00:00', 1),
(11033, 10597, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2022-10-21 02:29:24', 1),
(11034, 10661, 59, 3, 0, 'Selected for Syed Team in staff Role,based on the managers Suggestions we proceed with the high salary', 60, '0000-00-00 00:00:00', 1),
(11035, 10659, 59, 5, 0, 'Have a basic skills knowledge holding an offer for 15K,Fresher not much comfort in TxxampC Will not sustain ', 60, '0000-00-00 00:00:00', 1),
(11036, 10660, 59, 5, 0, 'Have 6 months intern Exp distance too long and he is not much comfort in this distance and his min exp is 15K already holds an offer for 10K', 60, '0000-00-00 00:00:00', 1),
(11037, 10666, 59, 5, 0, 'No Communication have exp in collections,age around 26 yrs and sustainability doubts as she will get marry in 1yr,not much convincing will not sustain and handle our pressure', 60, '0000-00-00 00:00:00', 1),
(11038, 10661, 57, 7, 0, 'Candidate is ok , he already have a 3yr Experience for sales , direct sale, salary exp 20k take home , Skill wise good ', 59, '2022-10-21 02:51:39', 1),
(11039, 10662, 74, 5, 0, 'rejected not fit for telesales voice not clear', 85, '0000-00-00 00:00:00', 1),
(11040, 10663, 74, 5, 0, 'not fit for team and telesales ', 85, '0000-00-00 00:00:00', 1),
(11041, 10664, 74, 7, 0, 'completed bca and fit for telesales voice is clear and active candidate highly job need father farmer expected salary take home 10k and have laptop kindly confirm once for joining', 85, '0000-00-00 00:00:00', 1),
(11042, 10665, 74, 5, 0, 'not profiled and not fit for team', 85, '0000-00-00 00:00:00', 1),
(11043, 10664, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2022-10-21 03:55:48', 1),
(11044, 10648, 97, 5, 0, 'not suit for mIS', 85, '0000-00-00 00:00:00', 1),
(11045, 10667, 97, 4, 0, 'good communication..Has 9m of exp as A app promoter sustainbility doubts...salary exp is high.. check and confirm your feedback\n', 85, '0000-00-00 00:00:00', 1),
(11046, 10669, 97, 5, 0, 'married ..sal expt high .. average in convincing.. not suit for our role', 85, '0000-00-00 00:00:00', 1),
(11047, 10667, 86, 5, 0, 'Not Willing to Out side source.', 97, '2022-10-21 06:39:44', 1),
(11048, 10631, 59, 3, 0, 'Selected for Syed Team in staff Role', 88, '2022-10-22 11:14:18', 1),
(11049, 10661, 88, 7, 0, 'Selected for RE 19K if proper docs are provided to us ', 57, '2022-10-22 11:16:53', 1),
(11050, 10661, 59, 3, 0, 'Selected for Syed Team in staff Role,based on the managers Suggestions we proceed with the high salary', 88, '2022-10-22 12:14:25', 1),
(11051, 10670, 24, 5, 0, 'Not fit for us', 85, '0000-00-00 00:00:00', 1),
(11052, 10673, 59, 5, 0, 'Have basic skills but not much strong,Saalry Exp is very high holding several offers will not sustain ,explained him about the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11053, 10675, 59, 5, 0, 'Fresher for Telesales,have 3 months showroom sales Salary Exp is min 25K not ready to negotiate will not sustain', 60, '0000-00-00 00:00:00', 1),
(11054, 10621, 29, 7, 3, 'selected for PM profile - Sarath team', 51, '2022-10-26 10:25:02', 1),
(11055, 10617, 29, 1, 0, NULL, 51, '2022-10-26 10:25:35', 1),
(11056, 10680, 74, 7, 0, 'she is well active and voice is very clear ...fit for telesales....and have own laptop...good exposure and talk active girl ....completed pg also and immediate joining ...expected 12 k will speak and finalise.', 85, '0000-00-00 00:00:00', 1),
(11057, 10681, 74, 7, 0, 'voice is very clear and from poor background highly job need and have laptop and immediate joining and expected 12k...experienced in help desk and telecalling also...highly job need kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(11058, 10682, 74, 7, 0, 'fit for telesales and job need expected 10k and job need also .....sister work in appolo hospital chennai......kindly check once about pressure handling have laptop ad high job need ....and immediate joining', 85, '0000-00-00 00:00:00', 1),
(11059, 10683, 74, 5, 0, 'voice not that much clear andnot fit for team', 85, '0000-00-00 00:00:00', 1),
(11060, 10684, 74, 5, 0, 'voice clarity is not good and not fit for team', 85, '0000-00-00 00:00:00', 1),
(11061, 10621, 59, 3, 0, 'Selected for Sarath Team - Staff Role', 29, '2022-10-26 03:17:35', 1),
(11062, 10680, 59, 3, 0, 'Selected for Consultant - Thanjavur\n', 74, '2022-10-26 03:37:20', 1),
(11063, 10681, 59, 5, 0, 'Candidate not interested in the profile', 74, '2022-10-26 03:39:31', 1),
(11064, 10682, 59, 3, 0, 'Selected for Consultant Thanjavur ', 74, '2022-10-26 03:42:56', 1),
(11065, 10677, 59, 2, 0, 'Communication Ok Can give a try for MIS/Renewals Sustainability Doubts as he has plan to move IT after an year,2nd round interviewed by gokul and on hold candidate need to give his confirmation if he comes back let us try,15K TH plus TDS', 60, '0000-00-00 00:00:00', 1),
(11066, 10676, 59, 5, 0, 'Attitude, Left his previous job due to work pressure,2yrs in Muthoot finance, No Communication,will not sustain not suitable ', 60, '0000-00-00 00:00:00', 1),
(11067, 10679, 59, 2, 0, 'Communication Average Have Exp but no sustaianability 2nd interviewed by gokul and shortlisted for 13K TH plus TDS Candidate need time to give his confirmation on the joining\n', 60, '0000-00-00 00:00:00', 1),
(11068, 10679, 59, 2, 0, 'Communication Average Have Exp but no sustaianability 2nd interviewed by gokul and shortlisted for 13K TH plus TDS Candidate need time to give his confirmation on the joining\n', 60, '0000-00-00 00:00:00', 1),
(11069, 10685, 59, 4, 0, '5050 Profile have exp in backend can give a try he is open much for appointment fixing seems not much ok with Sales kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11070, 10685, 53, 1, 0, NULL, 59, '2022-10-26 07:56:15', 1),
(11071, 10691, 74, 2, 0, 'due to candidate not confirmed joining will try next month', 85, '0000-00-00 00:00:00', 1),
(11072, 10692, 74, 7, 0, 'fit for team and tele sales also highly job need also expected 11k......qualified candidate have laptop father doing business and poor background only..immediate joining kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(11073, 10693, 74, 5, 0, 'voice is not clear and not fit for team', 85, '0000-00-00 00:00:00', 1),
(11074, 10694, 74, 5, 0, 'not fit for team and no exposure no voice fluency', 85, '0000-00-00 00:00:00', 1),
(11075, 10695, 74, 5, 0, 'over attitude and expected high and not fit for telesales', 85, '0000-00-00 00:00:00', 1),
(11076, 10696, 74, 5, 0, 'not fit for team and telesales also', 85, '0000-00-00 00:00:00', 1),
(11077, 10692, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-10-27 03:23:15', 1),
(11078, 10686, 97, 5, 0, 'good communication .. no sustainbility.. attitude issue.. not suit for our role.. sal expt high..', 85, '0000-00-00 00:00:00', 1),
(11079, 10688, 59, 3, 0, 'Selected for Renewals/MIS Role 2nd round interviewed by Gokul have exp in Renewal for 1 yr in Vizza Insurance Can give a try 2yrs SA', 85, '0000-00-00 00:00:00', 1),
(11080, 10689, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11081, 10690, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11082, 10697, 59, 5, 0, 'No basic skills he was into core for 3 yrs and looking much on the salary explained on the TxxampC he needs time to give his confirmation', 60, '0000-00-00 00:00:00', 1),
(11083, 10703, 59, 5, 0, 'Fresher for our MIS roles,Career Gap have exp as a quality analyst,married and 2yrs kid,Travelling is bit difficult will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(11084, 10715, 59, 5, 0, 'Have Exp in telecalling ,understandin poor will not sustain and handle our pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(11085, 10714, 59, 5, 0, 'No basic skills age around 29 have 6 months exp in front end, need to learn a lot will not sustain for a long married sustainability doubts in a long run', 60, '0000-00-00 00:00:00', 1),
(11086, 10706, 59, 5, 0, 'Have Retail sales exp but no sustainability,Clarity on communication is poor will not sustain also not comfort to go into insurance domain', 60, '0000-00-00 00:00:00', 1),
(11087, 10717, 59, 4, 0, 'Communication ok sounding low in voice,Family need is there can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11088, 10716, 59, 3, 0, 'Selected for Santhosh Team with PF/ESI/PT', 60, '0000-00-00 00:00:00', 1),
(11089, 10718, 59, 4, 0, 'Communication Good,Have Exp in different domain,but into sales,Salary Exp is high,can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11090, 10717, 53, 1, 0, NULL, 59, '2022-10-28 03:56:06', 1),
(11091, 10718, 31, 5, 0, 'high salary expectation', 59, '2022-10-28 03:57:38', 1),
(11092, 10716, 18, 7, 0, 'Old Employee. Can Give 4.2L CTC ready to Join on 1st', 59, '2022-10-28 04:00:44', 1),
(11093, 10716, 60, 1, 0, NULL, 18, '2022-10-29 12:21:34', 1),
(11094, 10731, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(11095, 10732, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(11096, 10721, 59, 2, 0, 'Fita Academy Profile interviewed by Gokul Kaviya Need to finalise the Profile ', 60, '0000-00-00 00:00:00', 1),
(11097, 10722, 59, 5, 0, 'Fita Profile Seems to be very SLow Group Interview done by Gokul ', 60, '0000-00-00 00:00:00', 1),
(11098, 10723, 59, 5, 0, 'Fita Profile Group Interview done by Gokul Not much strong with the skills ', 60, '0000-00-00 00:00:00', 1),
(11099, 10724, 59, 5, 0, 'FITA Profile Seems to be slow Group interviewed by Gokul ', 60, '0000-00-00 00:00:00', 1),
(11100, 10725, 59, 5, 0, 'No Communication no understanding Very Poor in the Skills not suitable will not sustain', 60, '0000-00-00 00:00:00', 1),
(11101, 10726, 59, 5, 0, 'Basic Skills Holding an offer for 25K have 1 yr exp in UX Focus on the salary much,Asked him to wait for the task but he left without attending', 60, '0000-00-00 00:00:00', 1),
(11102, 10727, 59, 2, 0, 'Interviewed by Viswa Candidate is having 1 month course pending asked him to come back after the completion of course', 60, '0000-00-00 00:00:00', 1),
(11103, 10728, 59, 5, 0, 'no Communication travel distance is high will not handle our work pressure not suitable', 60, '0000-00-00 00:00:00', 1),
(11104, 10730, 59, 2, 0, 'Fita Profile have basic skills,need to give her confirmation on the txxampC if she comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11105, 10735, 59, 4, 0, 'Fresher for our Domain have Exp in Sales Can be trained kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11106, 10735, 31, 7, 4, 'candidate okay. sent for salary negotiation and verify his prevous payslip', 59, '2022-10-29 07:15:37', 1),
(11107, 10736, 59, 3, 0, 'Selected for Manikandan Team with Pf/PT', 60, '0000-00-00 00:00:00', 1),
(11108, 10736, 86, 4, 0, 'Selected For Next Round', 59, '2022-10-29 07:22:17', 1),
(11109, 10736, 18, 7, 3, 'Selected for Money team. Spoken his Last company CTC aroung 23K in Hand- Kindly confrirm the amount and pay the same. Ready to join around 15th Nov.', 86, '2022-10-31 10:12:53', 1),
(11110, 10635, 59, 5, 0, 'Candidate didnt come back with his confirmation', 53, '2022-10-31 10:55:28', 1),
(11111, 10757, 59, 4, 0, 'Syed Team Reference,No Communication Need to open a lot not suitable much being internal reference kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(11112, 10719, 59, 5, 0, 'very Basic Skills Not Much Comfort With The TxxampC Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11113, 10720, 59, 5, 0, 'Basic Skills Sustainability Doubts Need time to confirm with her parents if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11114, 10733, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(11115, 10739, 59, 5, 0, 'Communication Average Not much Good in the Skills Will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11116, 10741, 59, 5, 0, 'Basic Skills Need to learn a lot not much ok with TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11117, 10742, 59, 5, 0, 'Not open for Taking Sales alls', 85, '0000-00-00 00:00:00', 1),
(11118, 10743, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(11119, 10744, 59, 3, 0, 'Selected for Renewals With PF/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(11120, 10745, 59, 5, 0, 'Basic Skills Sustainability Doubts Need Time To Confirm With Her Parents If She Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11121, 10746, 59, 5, 0, 'Looking For Java Openings', 85, '0000-00-00 00:00:00', 1),
(11122, 10747, 59, 5, 0, 'Looking for Java Openings', 85, '0000-00-00 00:00:00', 1),
(11123, 10748, 59, 5, 0, 'Only Basic Skills Not Much Comfort With The TxxampC Will Not Sustain ,If he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11124, 10749, 59, 5, 0, 'No Basic Skills not much comfort with the TxxampC Will not sustain ', 85, '0000-00-00 00:00:00', 1),
(11125, 10751, 59, 5, 0, 'Looking much for Java openings Poor Understanding will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11126, 10752, 59, 5, 0, 'Have Exp but Many job changes not open for Field but Exp min 23K', 85, '0000-00-00 00:00:00', 1),
(11127, 10754, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(11128, 10755, 59, 3, 0, 'Selected for Technical Support with Insurance SAles Communication is Good Can be trained Final round interviewed by Gokul', 85, '0000-00-00 00:00:00', 1),
(11129, 10756, 59, 5, 0, 'Very High CTC Expectation Will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(11130, 10754, 29, 7, 3, 'sarath team', 59, '2022-10-31 07:40:05', 1),
(11131, 10733, 51, 4, 0, 'ok', 59, '2022-10-31 07:44:02', 1),
(11132, 10757, 88, 1, 0, NULL, 59, '2022-10-31 07:50:04', 1),
(11133, 10763, 24, 5, 0, 'Sal expect high 20k and field work not interested', 85, '0000-00-00 00:00:00', 1),
(11134, 10761, 97, 5, 0, 'not suit for our roles.. long distance too', 85, '0000-00-00 00:00:00', 1),
(11135, 10772, 97, 5, 0, 'has 7m of exp in MIS .. Sal expt High...', 85, '0000-00-00 00:00:00', 1),
(11136, 10773, 59, 5, 0, ' Will Not Sustain Not Much Comfort With TxxampC if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11137, 10774, 97, 5, 0, 'Has 3mexp in sales ... simultaneously changing job ..sustainbility doubts.. newly married .. sal exp high', 85, '0000-00-00 00:00:00', 1),
(11138, 10734, 59, 5, 0, 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(11139, 10736, 60, 1, 0, NULL, 18, '2022-11-01 06:32:24', 1),
(11140, 10787, 59, 5, 0, 'Communication Average, have Exp in MIS for 4+ yrs ,Recently married and sustainability Doubts a lot Exp min 20K TH,Handling Work Pressure and Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(11141, 10783, 59, 5, 0, 'No basic skills no ideas in JS, Not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(11142, 10782, 59, 3, 0, '3 months intern with 7.5K Need to train from basic ,after intern 1.8 LPA if he join let us proceed', 85, '0000-00-00 00:00:00', 1),
(11143, 10780, 59, 3, 0, 'Selected for Elite Arumbakkam,Should analyse in 7 days,Communication Ok ,Fresher For Telecaller Not A Graduate Have 6 Yrs Exp In Mobile Showroom Sales Can Be Trained', 85, '0000-00-00 00:00:00', 1),
(11144, 10762, 59, 2, 0, 'Communication ok Have internship Exp in DM,given her task to analyse the writing skills need to give her feedback,should go for Internship cum employment', 85, '0000-00-00 00:00:00', 1),
(11145, 10788, 59, 5, 0, 'communication Ok Need to open up in sales a lot also she is very clear that will not join if her friend who came along for the interview isrejected', 85, '0000-00-00 00:00:00', 1),
(11146, 10789, 59, 5, 0, 'Communication No Need To Open Up In Sales A Lot Also She Is Very Clear That Will Not Join If Her Friend Who Came Along For The Interview Is rejected will not sustain and handle our sales pressure', 85, '0000-00-00 00:00:00', 1),
(11147, 10780, 100, 7, 0, 'candidate okay to join tomorrow, salary 12000, fresher, kindly confirm to join tomorrow', 59, '2022-11-02 03:44:44', 1),
(11148, 10733, 29, 7, 3, 'sarath team RM', 51, '2022-11-02 05:00:25', 1),
(11149, 10780, 59, 3, 0, 'Selected for Elite Arumbakkam,Should analyse in 7 days,Communication Ok ,Fresher For Telecaller Not A Graduate Have 6 Yrs Exp In Mobile Showroom Sales Can Be Trained', 100, '2022-11-02 05:04:01', 1),
(11150, 10754, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 29, '2022-11-02 05:45:32', 1),
(11151, 10826, 74, 7, 0, 'she is ok with the profile talk active and fit for team ....father passsed highly job need and dont have laptop .......expected 10k and ready to join imeediately............ready to arrange laptop..........check once and confirm', 85, '0000-00-00 00:00:00', 1),
(11152, 10824, 74, 7, 0, 'she is ok with the profile matured and good skills in language ready to join immediately.................have no laptop need to ready in training period ........father passed expected 10k kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(11153, 10800, 24, 4, 0, 'candidate okay, expect salary 15k take home.', 85, '0000-00-00 00:00:00', 1),
(11154, 10804, 59, 3, 0, 'Selected for Front End Fresher need to be trained ,final round interviewed by Gokul an dgot selected Internship for 5 months 5K then 10-12K 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(11155, 10786, 59, 5, 0, 'Communication Average, will not handle our work pressure no ideas in Excel not suitable', 85, '0000-00-00 00:00:00', 1),
(11156, 10832, 59, 5, 0, 'Not open for Sales and looking for IT but inJava', 85, '0000-00-00 00:00:00', 1),
(11157, 10822, 59, 4, 0, 'Internal Reference,Fresher need to open up a lot,kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11158, 10820, 59, 4, 0, 'Communication Ok Can be trained fresher need to open up can give a try he is from vadapalani,kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11159, 10778, 59, 5, 0, 'Have Exp in Collections can be trained but her salary Exp is high long run doubts if she come back for same salary we can', 85, '0000-00-00 00:00:00', 1),
(11160, 10834, 59, 5, 0, 'No basic skills need to learn a lot not much enthu will not sustain ', 85, '0000-00-00 00:00:00', 1),
(11161, 10809, 59, 3, 0, 'Selected for PHP, need to be trained a lot final round interviewed by gokul 7 days analysis then 5 months intern 5K,then 10-12K 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(11162, 10831, 59, 5, 0, 'Not open for Sales Calling not interested\n', 85, '0000-00-00 00:00:00', 1),
(11163, 10827, 59, 3, 0, 'Selected for GK sir Team with PF/ESI', 85, '0000-00-00 00:00:00', 1),
(11164, 10820, 53, 1, 0, NULL, 59, '2022-11-03 06:03:30', 1),
(11165, 10827, 31, 4, 4, 'candidate okay send for 2nd round', 59, '2022-11-03 06:06:39', 1),
(11166, 10822, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-11-03 06:11:01', 1),
(11167, 10733, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 29, '2022-11-03 06:50:14', 1),
(11168, 10800, 88, 7, 0, 'Selected for RE for 14.5K Net per month', 24, '2022-11-04 12:40:34', 1),
(11169, 10800, 59, 3, 0, 'Selected for Erode Location,Consultant Role,Husband looking for opportunities if he get any in chennai may relocate sustainability need to check and analyse in 7 days training have a 9 month old baby', 88, '2022-11-04 12:52:00', 1),
(11170, 10824, 59, 3, 0, 'Selected for Sithy - Thanjavur Team - consultant Role', 74, '2022-11-04 03:03:33', 1),
(11171, 10826, 59, 3, 0, 'Selected for Consultant Role - Thanjavur', 74, '2022-11-04 03:51:42', 1),
(11172, 10796, 59, 5, 0, 'No basic skills much open for Java only', 85, '0000-00-00 00:00:00', 1),
(11173, 10839, 59, 5, 0, 'Fresher Salary Exp is high Will not sustain for a long not much strong in basics', 85, '0000-00-00 00:00:00', 1),
(11174, 10842, 59, 5, 0, 'Very High CTC exp Crampete Student Not open for Term Will not sustain', 85, '0000-00-00 00:00:00', 1),
(11175, 10846, 59, 2, 0, 'Experienced HR profile,Interviewed by Gokul and on hold', 85, '0000-00-00 00:00:00', 1),
(11176, 10843, 59, 5, 0, 'Not open for TxxampC Crampete Student Exp around 20-25 not ready to come down', 60, '0000-00-00 00:00:00', 1),
(11177, 10844, 59, 5, 0, 'Crampete No basic Skills not suitable will not sustain interviewed by Bharath', 60, '0000-00-00 00:00:00', 1),
(11178, 10827, 29, 7, 2, 'GK team', 31, '2022-11-04 09:07:18', 1),
(11179, 10735, 60, 1, 0, NULL, 31, '2022-11-04 09:13:22', 1),
(11180, 10849, 24, 5, 0, 'sales not interested', 99, '0000-00-00 00:00:00', 1),
(11181, 10827, 59, 3, 0, 'Selected for GK sir Team with PF/ESI', 29, '2022-11-05 11:55:45', 1),
(11182, 10795, 59, 2, 0, 'Fresher Need to be trained a lot he need time to confirm with his family on the Terms and conditons if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11183, 10837, 59, 5, 0, 'No basic skills Career Gap Will not sustain in our roles not suitable', 99, '0000-00-00 00:00:00', 1),
(11184, 10853, 59, 5, 0, 'No Basic Skills Not open for TxxampC Will Not Sustain In Our Roles Not Suitable', 99, '0000-00-00 00:00:00', 1),
(11185, 10848, 24, 4, 0, 'next round selected, but ramesh sir told low confident so we hold this profile.', 99, '0000-00-00 00:00:00', 1),
(11186, 10850, 24, 7, 0, 'candidate selected, expext salary 13k,', 99, '0000-00-00 00:00:00', 1),
(11187, 10856, 59, 4, 0, 'Communication Ok Have Exp in NOn Voice Data Entry not much comfort in Target Internal Reference Kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11188, 10855, 59, 2, 0, 'Very High CTC Min Exp is 5.4 LPA Jagadeesh REference\n', 60, '0000-00-00 00:00:00', 1),
(11189, 10852, 59, 4, 0, 'Have Exp in Collections No Exp in Calling Internal ReferenceKindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11190, 10852, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-11-05 07:50:05', 1),
(11191, 10856, 53, 1, 0, NULL, 59, '2022-11-05 07:50:55', 1),
(11192, 10870, 59, 4, 0, '5050 Profile he is having Exp in IT and for time being looking for opportunities in other domain Sustainability Doubts,Internal Reference kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11193, 10864, 59, 5, 0, 'Fresher basic skills all 3 sisters are in IT and have a lot of reference not much open with TxxampC will not sustain in a long run not suitable', 85, '0000-00-00 00:00:00', 1),
(11194, 10858, 59, 4, 0, '5050 Profile need to open a lot Have Exp in Telecalling sustainability and handle our pressure is doubt,kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11195, 10859, 59, 5, 0, 'Not much active Few months as telecaller nght shift will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(11196, 10862, 24, 5, 0, 'Not suitable for this role', 85, '0000-00-00 00:00:00', 1),
(11197, 10867, 59, 5, 0, 'Looking for Java openings not suitable', 85, '0000-00-00 00:00:00', 1),
(11198, 10850, 88, 7, 0, 'Selected for RE', 24, '2022-11-07 04:16:11', 1),
(11199, 10848, 88, 1, 0, NULL, 24, '2022-11-07 04:17:24', 1),
(11200, 10858, 89, 1, 0, NULL, 59, '2022-11-07 04:45:33', 1),
(11201, 10850, 59, 3, 0, 'Selected for Suthagar Team with TDS 5% ', 88, '2022-11-07 04:46:47', 1),
(11202, 10870, 16, 7, 0, 'Selected for next round', 59, '2022-11-07 04:48:19', 1),
(11203, 10891, 59, 5, 0, 'Communication No,Have 8+ yrs Exp Writting Skills not upto the mark not suitable will not sustain Have 7 month old baby', 99, '0000-00-00 00:00:00', 1),
(11204, 10894, 59, 5, 0, 'No Communication not suitable for our Sales /operation Roles', 99, '0000-00-00 00:00:00', 1),
(11205, 10897, 59, 4, 0, 'Fresher for Sales need to train a lot Can give a try Kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11206, 10907, 59, 2, 0, 'Communication ok Have Exp in MIS ,can be trained 2nd round interviewed by Gokul need to go with the same pay if she is ok for 19K includes PF/ESI/PT we can proceed', 99, '0000-00-00 00:00:00', 1),
(11207, 10630, 60, 1, 0, NULL, 18, '2022-11-08 03:06:56', 1),
(11208, 10886, 59, 5, 0, 'Not suitable he is focusing on CMA preparing for that.Time being he is looking for Accounts will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(11209, 10896, 59, 5, 0, 'Not suitable no communication no basic ideas in the accounts will not sustain', 85, '0000-00-00 00:00:00', 1),
(11210, 10898, 59, 3, 0, 'Selected for MIS Role,Communication ok can be trained Gokul interviewed the final round', 85, '0000-00-00 00:00:00', 1),
(11211, 10913, 59, 2, 0, 'Communication Ok Have Exp 2nd round interiewed by GK sir as Shanmugam is not available in office will come for final round tomorrow', 85, '0000-00-00 00:00:00', 1),
(11212, 10914, 59, 5, 0, 'No Communication not open for Sales', 85, '0000-00-00 00:00:00', 1),
(11213, 10915, 59, 2, 0, 'Have Exp in Telecalling 5050 Profile Can give a try Will come for 2nd round tomorrow', 85, '0000-00-00 00:00:00', 1),
(11214, 10882, 59, 5, 0, 'Looking for Java openings not suitable', 85, '0000-00-00 00:00:00', 1),
(11215, 10897, 51, 5, 0, 'rejected', 59, '2022-11-08 07:22:09', 1),
(11216, 10902, 59, 2, 0, 'Have Exp in Calling Communication Ok ,but sustainability doubts 2.5 yrs 4 companies changed and even gap is there initiated SA need to check with her family and confirm', 85, '0000-00-00 00:00:00', 1),
(11217, 10920, 59, 2, 0, 'he is in internship till Nov end can give a try if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11218, 10933, 59, 4, 0, 'Fresher for our Sales not much open for Sales calls your own direct reference do check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11219, 10940, 59, 3, 0, 'Selected for Manikandan Team with PF/ESI', 85, '0000-00-00 00:00:00', 1),
(11220, 10922, 59, 3, 0, 'Seleted for Manikandan Team with Pf/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(11221, 10923, 24, 5, 0, 'not suitable for this profile', 85, '0000-00-00 00:00:00', 1),
(11222, 10924, 59, 5, 0, 'Communication ok need to travel from ambattur ,have a trainee exp,checked for other profiles but not open for those', 85, '0000-00-00 00:00:00', 1),
(11223, 10931, 24, 5, 0, 'not suitable for our job', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(11224, 10932, 59, 5, 0, 'No basic ideas in Account Skills too long distance will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(11225, 10937, 74, 7, 0, 'she talkactive and very active girl ,..............but bit attitude behavior but good knowledge and fit for sales and completed mba finance and have laptop expected 12k but ok with 10k.....and join after 18 th course completed kindly chek once and confirm.....father govt employeee TNSC SERVICE ............................', 85, '0000-00-00 00:00:00', 1),
(11226, 10936, 74, 5, 0, 'she not fit for telesales and voice is not clear and not much profile', 85, '0000-00-00 00:00:00', 1),
(11227, 10935, 74, 7, 0, 'she is ok with the profile have learning capasity and adaptive highly job need .......completed bba...father farmer have laptop and ready to join immediately expected 10k kindly confirm once', 85, '0000-00-00 00:00:00', 1),
(11228, 10938, 74, 7, 0, 'she is fit for telesales and team also voice very clear adaptive to sales field......father ongc laber expected 10k and have laptop...ready to join immediated kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(11229, 10939, 74, 7, 0, 'she is ok with profile voice very clear and professional too have laptop and expected 10k.........father is a painter but course completed nov 18 after only join kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(11230, 10935, 59, 3, 0, 'selected for Thanjavur Consultant Role', 74, '2022-11-09 05:44:00', 1),
(11231, 10938, 59, 3, 0, 'Selected for Thanjavur - 5050 Communication Need to open a lot ', 74, '2022-11-09 05:46:41', 1),
(11232, 10939, 59, 3, 0, 'selected for consultant role thanjavur', 74, '2022-11-09 05:48:22', 1),
(11233, 10937, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2022-11-09 05:50:52', 1),
(11234, 10940, 86, 4, 0, 'Selected For Next Round', 59, '2022-11-09 07:56:33', 1),
(11235, 10933, 88, 1, 0, NULL, 59, '2022-11-09 07:58:31', 1),
(11236, 10929, 59, 5, 0, 'NO ideas in Accounts too long distance will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(11237, 10922, 86, 4, 0, 'Selected For Next Round', 59, '2022-11-09 08:11:43', 1),
(11238, 10870, 60, 1, 0, NULL, 16, '2022-11-10 11:33:04', 1),
(11239, 10951, 74, 5, 0, 'not fit for telesales and voice not clear and not fit for telesales', 85, '0000-00-00 00:00:00', 1),
(11240, 10950, 74, 7, 0, 'she is ok with the profile good voice and talkactive girl and fit for our team ...have laptop expected 10k and joining after 18 kindly confirm once ', 85, '0000-00-00 00:00:00', 1),
(11241, 10952, 74, 5, 0, 'very poor and less knownedlege not fit for team and tele sales', 85, '0000-00-00 00:00:00', 1),
(11242, 10953, 74, 5, 0, 'no exposure and dont have clear voice clarity for telesales not suite for team', 85, '0000-00-00 00:00:00', 1),
(11243, 10949, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11244, 10948, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11245, 10927, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11246, 10942, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11247, 10926, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11248, 10950, 59, 3, 0, 'Selected for Thanjavur Consultant Role 5050 Profile sustainability doubts', 74, '2022-11-10 03:19:16', 1),
(11249, 10940, 18, 7, 0, 'Selected for Mani team. Today Joining... Salary as discussed..', 86, '2022-11-10 03:30:54', 1),
(11250, 10922, 18, 7, 4, 'Fresher and ready to Join Immed. Can give 15 or 16 in Hand +PF. For Mani Team', 86, '2022-11-10 03:31:32', 1),
(11251, 10954, 59, 5, 0, 'Not Suitable For Our Roles, Will Not Sustain ', 85, '0000-00-00 00:00:00', 1),
(11252, 10973, 97, 4, 0, 'from hotel industry .. fresher to our process.. have some customer queries exp.. average in convincing.. can be trained .. let you check and update ..', 85, '0000-00-00 00:00:00', 1),
(11253, 10973, 16, 5, 0, 'Sales Sustainability Doubts', 97, '2022-11-12 03:05:28', 1),
(11254, 10965, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11255, 10958, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11256, 10940, 60, 1, 0, NULL, 18, '2022-11-14 10:06:17', 1),
(11257, 11042, 59, 5, 0, ' Will Not Sustain Not Much Comfort With TxxampC Not open for freelance for full time salary Exp is high', 85, '0000-00-00 00:00:00', 1),
(11258, 10872, 59, 5, 0, 'Communication for Sales is not ok Attitude, Not suitable for our insurance Sales ', 85, '0000-00-00 00:00:00', 1),
(11259, 10978, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(11260, 10978, 16, 7, 0, 'Selected', 59, '2022-11-14 03:43:43', 1),
(11261, 10968, 42, 4, 4, 'Selected for next round ', 60, '0000-00-00 00:00:00', 1),
(11262, 10968, 30, 4, 3, 'HE WILL JOIN WIYHIN THREE DAYS SO CONFIRM CTC AND JOINING DATE , SUGGESTED SALARY IN HAND 17.5 TO 18K', 42, '2022-11-14 06:27:57', 1),
(11263, 10970, 59, 5, 0, '1 round Question task completed and technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11264, 10976, 59, 2, 0, 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 20 Days', 85, '0000-00-00 00:00:00', 1),
(11265, 10977, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11266, 10980, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11267, 10982, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11268, 10985, 59, 2, 0, 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 2 days', 85, '0000-00-00 00:00:00', 1),
(11269, 10987, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11270, 11009, 59, 2, 0, 'Based On The Task Interviewed By Gokul, Candidate Need To Come Back With The Confirmation after 20 days', 85, '0000-00-00 00:00:00', 1),
(11271, 11011, 59, 2, 0, 'Based on the task interviewed by Gokul,Candidate need to come back with the confirmation', 85, '0000-00-00 00:00:00', 1),
(11272, 11019, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11273, 11030, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11274, 11031, 59, 2, 0, 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation', 85, '0000-00-00 00:00:00', 1),
(11275, 11032, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11276, 11033, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11277, 11034, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11278, 11035, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11279, 11036, 59, 2, 0, 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 2 days', 85, '0000-00-00 00:00:00', 1),
(11280, 11039, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11281, 11040, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11282, 11048, 59, 4, 0, 'Have Exp in Sales but a long career Gap Due to family situation he is into Zomato,Internal Team GK Sir reference,kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11283, 10978, 88, 7, 0, 'selected for RE', 16, '2022-11-14 08:29:55', 1),
(11284, 10968, 60, 1, 0, NULL, 30, '2022-11-15 10:43:55', 1),
(11285, 11074, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT, Communication Ok Fresher Need To Train A Lot Can Give A Try Kindly Check And Let Me Know Your Inputs Have 3 Months Tecalling Exp With 9k Th', 60, '0000-00-00 00:00:00', 1),
(11286, 11074, 16, 7, 0, 'selected', 59, '2022-11-15 02:53:57', 1),
(11287, 11048, 29, 1, 0, NULL, 59, '2022-11-15 03:06:10', 1),
(11288, 10967, 59, 5, 0, '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', 60, '0000-00-00 00:00:00', 1),
(11289, 11007, 59, 2, 0, 'Candidate need to come back with his confirmation on TxxampC Besant Technology Profile', 85, '0000-00-00 00:00:00', 1),
(11290, 11078, 59, 5, 0, 'Technical Round Reject(Written Test) - Besant ', 85, '0000-00-00 00:00:00', 1),
(11291, 11079, 59, 5, 0, 'Technical Round Reject(written Test) - Besant ', 85, '0000-00-00 00:00:00', 1),
(11292, 11072, 59, 5, 0, 'Technical Round Reject(written Test)', 85, '0000-00-00 00:00:00', 1),
(11293, 11054, 59, 5, 0, 'Technical Round Reject(Written Test) - Besant Not ok with TxxampC', 85, '0000-00-00 00:00:00', 1),
(11294, 11068, 59, 5, 0, 'Technical Round Reject(Written Test) - Besant ', 85, '0000-00-00 00:00:00', 1),
(11295, 11069, 59, 2, 0, 'Communication is Good,Sustainability Doubts frequent job changes and giving lot of reasons Exp around 20K if she comes back let us try\n', 85, '0000-00-00 00:00:00', 1),
(11296, 11081, 59, 5, 0, 'Communication Average no basic knowledge in Recruitment Not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11297, 11082, 59, 5, 0, 'Communication is Good High CTC Exp Min 5 LPA,4 yrs of Exp in Recruitment will not sustain ', 85, '0000-00-00 00:00:00', 1),
(11298, 11074, 88, 7, 0, 'Selected for RE', 16, '2022-11-15 06:01:41', 1),
(11299, 9480, 59, 5, 0, 'Technical Round Reject(Written Test) - Besant ', 85, '0000-00-00 00:00:00', 1),
(11300, 10771, 59, 5, 0, 'Have Exp in CAMS Communication ok just 10 months in cAMS looking for Salary growth also she is in checkup recently married will not sustain for a long she is clear with that', 85, '0000-00-00 00:00:00', 1),
(11301, 10990, 59, 2, 0, 'Fresher need to train a lot candidate need time to give his conformation on TxxampC if he comes back let us try\n', 85, '0000-00-00 00:00:00', 1),
(11302, 11074, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT, Communication Ok Fresher Need To Train A Lot Can Give A Try Kindly Check And Let Me Know Your Inputs Have 3 Months Tecalling Exp With 9k Th', 88, '2022-11-15 06:21:06', 1),
(11303, 10978, 59, 3, 0, 'Selected for Thiyagu Team with PF/ESI/PT', 88, '2022-11-15 06:22:30', 1),
(11304, 11100, 59, 3, 0, 'Selected for GK Sir with PF/ESI/PT', 85, '0000-00-00 00:00:00', 1),
(11305, 11098, 59, 5, 0, 'Fresher for our Sales Long Career Have some Psychological Problems he was into treatment earlier he will not be able to handle the pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11306, 10916, 59, 2, 0, 'Too long Distance Fresher need to train a lot,ready to relocate need time to confirm the TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11307, 11095, 59, 5, 0, 'Fresher for Accounts Preparing for CA inter,time being he is looking for job will not sustain in a long', 85, '0000-00-00 00:00:00', 1),
(11308, 11100, 29, 7, 3, 'ok for RM, Gkji team, need to increase if ach 2.5 lac in 2 months - 1 lac nov 22, 1.5 lac dec 22', 59, '2022-11-16 06:18:29', 1),
(11309, 10944, 59, 5, 0, 'Attitude issue,will not sustain and handle our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(11310, 11028, 59, 5, 0, 'Technical Round Reject - Written Task - Besant ', 85, '0000-00-00 00:00:00', 1),
(11311, 11056, 59, 5, 0, 'Technical Round Reject - Besant Technologies', 85, '0000-00-00 00:00:00', 1),
(11312, 11086, 59, 5, 0, 'Technical Round Reject - Besant Profile', 85, '0000-00-00 00:00:00', 1),
(11313, 11093, 24, 5, 0, '29yrs old.. not speaking well.. ', 85, '0000-00-00 00:00:00', 1),
(11314, 11089, 59, 5, 0, 'Technical Round Reject - Written Task - Besant ', 85, '0000-00-00 00:00:00', 1),
(11315, 11094, 59, 2, 0, 'Technical task cleared,Candiddate need to give his confirmation for the TxxampC,if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11316, 11096, 59, 5, 0, 'Technical Round Reject - Written Task - Besant ', 85, '0000-00-00 00:00:00', 1),
(11317, 10922, 60, 1, 0, NULL, 18, '2022-11-17 09:55:27', 1),
(11318, 11076, 74, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(11319, 11100, 59, 3, 0, 'Selected for GK Sir with PF/ESI/PT', 29, '2022-11-17 05:27:27', 1),
(11320, 11110, 59, 5, 0, 'Technical Round Reject', 85, '0000-00-00 00:00:00', 1),
(11321, 11059, 59, 2, 0, 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11322, 11052, 59, 2, 0, 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11323, 11050, 59, 2, 0, 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11324, 11105, 24, 2, 0, 'candidate okay for 2nd round.. but she need time 15days.. she is already taken star policy', 85, '0000-00-00 00:00:00', 1),
(11325, 11109, 59, 2, 0, 'Good in Communication have Exp in Recruitment,looking for Same but we tried for Tech Support Mutual fund he needs to come back with his confirmation', 85, '0000-00-00 00:00:00', 1),
(11326, 11115, 59, 2, 0, 'Have Basic Skills Exp Need to come back with his confirmation on TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11327, 11116, 59, 2, 0, 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(11328, 11114, 59, 3, 0, 'Selected for Thiyagu Team Staff Role', 60, '0000-00-00 00:00:00', 1),
(11329, 11113, 59, 3, 0, 'Selected for thiyagarajan Staff Role', 60, '0000-00-00 00:00:00', 1),
(11330, 11117, 59, 3, 0, 'Selected for Thiyagu Team - Staff role', 60, '0000-00-00 00:00:00', 1),
(11331, 11114, 16, 7, 0, 'Good Candidate She Is Fit For This Profile Exp Also', 59, '2022-11-17 05:41:27', 1),
(11332, 11113, 16, 7, 0, 'Good Candidate She Is Fit For This Profile', 59, '2022-11-17 05:42:12', 1),
(11333, 11117, 16, 7, 0, 'Good Candidate She Is Fit For This Profile Exp Also', 59, '2022-11-17 05:42:31', 1),
(11334, 11113, 88, 7, 0, 'Selected for RE', 16, '2022-11-17 06:27:51', 1),
(11335, 11114, 88, 7, 0, 'Selected for RE', 16, '2022-11-17 06:28:30', 1),
(11336, 11117, 88, 7, 0, 'Selected for RE', 16, '2022-11-17 06:28:59', 1),
(11337, 11113, 59, 3, 0, 'Selected for thiyagarajan Staff Role', 88, '2022-11-17 08:12:04', 1),
(11338, 11114, 59, 3, 0, 'Selected for Thiyagu Team Staff Role', 88, '2022-11-17 08:12:42', 1),
(11339, 11117, 59, 3, 0, 'Selected for Thiyagu Team - Staff role', 88, '2022-11-17 08:13:10', 1),
(11340, 11137, 97, 4, 0, 'fresher can be trained.... kindly check and update your feedback..', 85, '0000-00-00 00:00:00', 1),
(11341, 11129, 59, 2, 0, 'Have Exp in CAMS need to train a lot Communication Average,she will come for final round', 85, '0000-00-00 00:00:00', 1),
(11342, 11137, 53, 7, 0, 'selected for b2b. Fresher, pls cnfrm the salary and DOJ', 97, '2022-11-18 02:49:48', 1),
(11343, 11118, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11344, 11137, 59, 3, 0, 'Selected for B2B - T.Nagar Staff Role however will confirm again the role', 53, '2022-11-18 05:33:58', 1),
(11345, 11119, 97, 5, 0, 'has basic knowledege in php... sustainbility doubts .. sal exp too high..', 85, '0000-00-00 00:00:00', 1),
(11346, 11107, 42, 4, 4, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(11347, 11141, 97, 5, 0, 'sustainbility doubts.... not ok with txxampc ', 99, '0000-00-00 00:00:00', 1),
(11348, 11140, 97, 5, 0, 'have basic knowledge ..sustainbility doubts.. he want to check his family..if he come back.. let us try', 99, '0000-00-00 00:00:00', 1),
(11349, 11142, 24, 5, 0, 'rejected - logout time not comfortable', 99, '0000-00-00 00:00:00', 1),
(11350, 11139, 24, 5, 0, 'logout time not comfortable so rejectedd', 99, '0000-00-00 00:00:00', 1),
(11351, 10877, 97, 5, 0, 'looking for multiple profile ... seems like no job need .. not suit for our roles..', 99, '0000-00-00 00:00:00', 1),
(11352, 11108, 97, 5, 0, 'rejected in aptitude round', 99, '0000-00-00 00:00:00', 1),
(11353, 11123, 97, 5, 0, 'no idea about digital marketing .. communication ok.. but dont have idea about content ,sEOxxamp SEM.. SAL Ext high expt min.. ', 99, '0000-00-00 00:00:00', 1),
(11354, 11126, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11355, 11130, 97, 5, 0, 'long distance.. dont have idea about excel .. no communication... not suit our process', 99, '0000-00-00 00:00:00', 1),
(11356, 11149, 97, 5, 0, 'from avadi not ready to relocate... no idea about ui/ux .. sal expt high', 99, '0000-00-00 00:00:00', 1),
(11357, 11152, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11358, 11153, 97, 5, 0, 'Long distance.. need to learn lot... ongoing classes..and thinking about txxampc too ..once he complete the course will check again..', 99, '0000-00-00 00:00:00', 1),
(11359, 11156, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11360, 11158, 97, 5, 0, 'attitude issue .. sal expt too high.. long distance too..', 99, '0000-00-00 00:00:00', 1),
(11361, 11163, 97, 5, 0, '2yrs of exp as a acc ass..but not relavant to our role... sal exp high ', 99, '0000-00-00 00:00:00', 1),
(11362, 11166, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11363, 11167, 97, 5, 0, 'Rejected In Aptitude Round', 99, '0000-00-00 00:00:00', 1),
(11364, 11168, 97, 5, 0, 'not much active.. has exp in acc from cAMS.. Not much good in acc ...', 99, '0000-00-00 00:00:00', 1),
(11365, 11169, 97, 5, 0, 'no communication .. prefer to talk in tamil.. no idea about recruitment', 99, '0000-00-00 00:00:00', 1),
(11366, 11165, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11367, 11154, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11368, 11053, 97, 5, 0, 'has basic knowledege in html,xxampcss.. sustainbility doubts.. and trying govt job..sal expt high', 85, '0000-00-00 00:00:00', 1),
(11369, 11111, 59, 5, 0, '5050 Profile Fresher For Sales Can Train And Give A Try For Our Role Kindly Check And Let Me Know Your Inputs - Dropped Candidate Salary Expectation is very high being fresher also he is in need of Leave on Saturday sunday will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(11370, 11111, 86, 4, 0, 'Selected For Next Round', 59, '2022-11-22 09:54:31', 1),
(11371, 11148, 97, 2, 0, 'From chengalpatu ready to relocate near by..has idea about ui/ux designer.... sustainbility doubts.. if he come back let us try ', 99, '0000-00-00 00:00:00', 1),
(11372, 11111, 18, 7, 0, 'Selected for Mani Team. Can negotiate and give decent Package. Immed Joiner.', 86, '2022-11-22 11:43:59', 1),
(11373, 11111, 60, 1, 0, NULL, 18, '2022-11-22 11:48:54', 1),
(11374, 11150, 59, 5, 0, 'No basic ideas inMF No communication not open for Sales positions too not suitable', 99, '0000-00-00 00:00:00', 1),
(11375, 11171, 59, 5, 0, 'Bit Attitude,not much open for TxxampC Long run doubts have some references too not suitable', 99, '0000-00-00 00:00:00', 1),
(11376, 11173, 59, 5, 0, 'Fresher have basic knowledge long run doubts candidate need time to give his confirmation', 99, '0000-00-00 00:00:00', 1),
(11377, 11174, 59, 3, 0, '5 month intern with 5K stipend then 10-12K 3 yrs SA Initially Dropped due to TxxampC as he confirmed we processed', 99, '0000-00-00 00:00:00', 1),
(11378, 11175, 59, 5, 0, 'Too long Distance Looking much for non voice no communication no suitable', 99, '0000-00-00 00:00:00', 1),
(11379, 11107, 30, 4, 3, 'Confirm joining date and CTC suggested ctc 2.4lac', 42, '2022-11-22 03:39:09', 1),
(11380, 11107, 60, 1, 0, NULL, 30, '2022-11-22 03:44:15', 1),
(11381, 9761, 59, 4, 0, 'Communication ok have exp in backend but can give a try for B2B,only thing she is not much ok with Spencer kindly check and let us know your inputs', 99, '0000-00-00 00:00:00', 1),
(11382, 9761, 53, 1, 0, NULL, 59, '2022-11-22 08:07:04', 1),
(11383, 11145, 97, 5, 0, 'has 6yrs of sales exp .. sal exp high .. not much good in convincing..', 85, '0000-00-00 00:00:00', 1),
(11384, 11146, 97, 5, 0, 'from electrical background.. fresher to our domain.. no convincing skill.. ', 85, '0000-00-00 00:00:00', 1),
(11385, 11177, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11386, 11182, 59, 3, 0, 'Selected for Banu team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11387, 11151, 59, 5, 0, 'No basic Skills Not much comfort in TxxampC Need to train a lot if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11388, 11176, 59, 5, 0, 'No Communication Understanding is Poor Will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(11389, 11181, 59, 2, 0, 'Candidate need to learn a lot if he comes back let us try after 10-15 days', 60, '0000-00-00 00:00:00', 1),
(11390, 11184, 59, 2, 0, 'Appeared for IT but too long distance he is open for sales but need time to give his confirmation if he comes back for sales we can give a try', 60, '0000-00-00 00:00:00', 1),
(11391, 11182, 53, 7, 0, 'selected for b2B. Pls cnfrm the salary and DOJ. Will increase her salary in next 6 months depends on her performance. ', 59, '2022-11-23 07:06:16', 1),
(11392, 11195, 59, 5, 0, 'No Communication Have Exp in Sales but not open for that,Need to open up a lot will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(11393, 11196, 59, 5, 0, 'Communication Average,Having plan to travel abroad and plan to do safety engineer Course will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(11394, 11197, 59, 5, 0, 'No basic skills knowledge worked and left the company in 3 months due to less pay of 5K not much comfort in TxxampC ', 85, '0000-00-00 00:00:00', 1),
(11395, 11198, 59, 2, 0, 'Selected For Tech Support Need To Be Trained Final Round With Gokul Selected For 132000 With PT Deduction', 85, '0000-00-00 00:00:00', 1),
(11396, 11199, 59, 2, 0, 'Selected for Tech Support Need to be trained Final round with Gokul selected for 132000 with PT deduction', 85, '0000-00-00 00:00:00', 1),
(11397, 11201, 59, 5, 0, 'Communication Average have few months exp in recruitment will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(11398, 11202, 59, 5, 0, 'No Communication,not open for Telesales too,not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11399, 11203, 59, 5, 0, 'No Communication have Exp in Accounts and much prefer for the same, Long back attended and got rejected for the same.Not suitable', 85, '0000-00-00 00:00:00', 1),
(11400, 11190, 59, 5, 0, 'No Communication Frequent Job Changes Not much strong with the skills not suitable', 85, '0000-00-00 00:00:00', 1),
(11401, 11193, 59, 2, 0, 'Given task for UI UX need to analyse and based on the output will check\n', 85, '0000-00-00 00:00:00', 1),
(11402, 11187, 42, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11403, 11182, 59, 3, 0, 'Selected for Banu team in Consultant Role', 53, '2022-11-25 05:30:56', 1),
(11404, 11214, 53, 7, 0, 'selected for b2b. pls cnfrm the salary and DOJ', 85, '0000-00-00 00:00:00', 1),
(11405, 11215, 53, 7, 0, 'Selected for b2B. Pls cnfrm the salary and DOJ', 85, '0000-00-00 00:00:00', 1),
(11406, 11214, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2022-11-25 05:56:45', 1),
(11407, 11215, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2022-11-25 05:57:20', 1),
(11408, 11206, 97, 5, 0, 'low confidence..not fit for our process', 85, '0000-00-00 00:00:00', 1),
(11409, 11212, 97, 5, 0, 'zero understanding.. not suit for our roles..', 85, '0000-00-00 00:00:00', 1),
(11410, 11208, 24, 5, 0, 'rejected', 85, '0000-00-00 00:00:00', 1),
(11411, 11209, 97, 5, 0, 'from aynavaram but from candiadate side not ok with our location.. in 1yr worked 2compaines.. focusing on sal .. ', 85, '0000-00-00 00:00:00', 1),
(11412, 11210, 97, 2, 0, 'from guvi ins.. has basic knowledege in front end.. he need to check TxxampC with his family .. If he come back will check again', 85, '0000-00-00 00:00:00', 1),
(11413, 11222, 74, 7, 0, 'she is ok with the profile and fit for team also ...completed mba and first working in quality process chennai and mobile manufacturing company also ....expected 12k ......highly job need voice active and ready to adapt in the process have no laptop she is ok to ready also....2 rounds completed second round by ramesh sir also kindly check once and confirm.', 85, '0000-00-00 00:00:00', 1),
(11414, 11227, 59, 5, 0, 'No Communication not suitable for MIS and not open for telecaller ', 85, '0000-00-00 00:00:00', 1),
(11415, 11240, 59, 5, 0, 'No Flow of Communication Much comfort in non voice he is not much open with target not suitable', 85, '0000-00-00 00:00:00', 1),
(11416, 11241, 59, 5, 0, 'Not suit for MIS checked for Telecaller and asked her to come for 2nd round but she didnt appear', 85, '0000-00-00 00:00:00', 1),
(11417, 11243, 59, 2, 0, 'Fresher for Product No Local Communication 2nd round with Gokul need to confirm the candidate later', 85, '0000-00-00 00:00:00', 1),
(11418, 11239, 59, 5, 0, 'Not suitable for Voice Process will not handle pressure', 85, '0000-00-00 00:00:00', 1),
(11419, 11238, 59, 5, 0, 'No Communication Not suitable for our MF Roles not open for telesales', 85, '0000-00-00 00:00:00', 1),
(11420, 11237, 59, 5, 0, 'Looking for Non Voice no communication not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11421, 11231, 59, 5, 0, 'Communication ok very high exp will take several leaves and will not sustain in a long on our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(11422, 11232, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11423, 11224, 59, 5, 0, 'Communication no Checked for Sales Not open for that too', 85, '0000-00-00 00:00:00', 1),
(11424, 11229, 59, 4, 0, 'Communication ok Have 6 months Exp but seems to be slow kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11425, 11226, 59, 2, 0, 'Have basic knowledge can be trained need time to check with parents and confirm the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11426, 11225, 59, 3, 0, 'Selected for Thiyagu Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(11427, 11225, 16, 7, 0, 'Selected', 59, '2022-11-28 06:45:35', 1),
(11428, 11233, 59, 5, 0, 'Looking for non voice no communication', 60, '0000-00-00 00:00:00', 1),
(11429, 11223, 59, 2, 0, 'Have Internship Exp Certificate is on hold with Agaram infotech,He need time to confirm the TxxampC if he comes back with his confirmation let us try', 60, '0000-00-00 00:00:00', 1),
(11430, 11242, 59, 5, 0, 'Communication Average and not much comfort in written communication Exp is min 25-20K Will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(11431, 11232, 53, 7, 0, 'Selected for B2B. Pls cnfrm the DOJ', 59, '2022-11-28 07:02:30', 1),
(11432, 11229, 53, 1, 0, NULL, 59, '2022-11-28 07:03:49', 1),
(11433, 11232, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2022-11-29 10:28:19', 1),
(11434, 11253, 59, 5, 0, 'Not suitable need to open a lot will not sustain in our roles', 60, '0000-00-00 00:00:00', 1),
(11435, 11251, 59, 5, 0, 'Very fresher no basic knowledge in skills need time to confirm his interest,long run need to check if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(11436, 11259, 59, 3, 0, 'Selected for Consultant Role B2B', 85, '0000-00-00 00:00:00', 1),
(11437, 11257, 59, 2, 0, 'Communication ok have exp in recruitment but no sustainability need to check ', 85, '0000-00-00 00:00:00', 1),
(11438, 11256, 59, 3, 0, 'Selected for Consultant Role B2B', 85, '0000-00-00 00:00:00', 1),
(11439, 11255, 59, 5, 0, 'No basic skills need to learn a lot let him learn and come', 85, '0000-00-00 00:00:00', 1),
(11440, 11234, 24, 5, 0, 'sustainability doubt and also she is not hold the pressure', 85, '0000-00-00 00:00:00', 1),
(11441, 11245, 24, 4, 0, 'Selected for 2nd round .. Salary 16k', 85, '0000-00-00 00:00:00', 1),
(11442, 11247, 24, 5, 0, 'rejected with ramesh sir, he told not suitable for sales', 85, '0000-00-00 00:00:00', 1),
(11443, 11252, 59, 3, 0, 'Selected for Banu Team need to confirm the Role', 85, '0000-00-00 00:00:00', 1),
(11444, 11254, 59, 5, 0, 'Need to open a lot Communication not upto the mark for Telecaller will not sustain and handle our Pressure', 85, '0000-00-00 00:00:00', 1),
(11445, 11261, 59, 2, 0, 'Came forJob Fair no basic ideas in Javascript,need to learn only SQL knowledge if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11446, 11252, 53, 7, 0, 'Selected for b2B. pls cnfrm the salary and DOJ', 59, '2022-11-29 05:39:31', 1),
(11447, 11259, 53, 7, 0, 'Selected For B2B. Pls Cnfrm The Salary And DOJ', 59, '2022-11-29 05:40:23', 1),
(11448, 11256, 53, 7, 0, 'Selected For B2B. Pls Cnfrm The Salary And DOJ', 59, '2022-11-29 05:41:02', 1),
(11449, 11252, 59, 3, 0, 'Selected for Banu Team need to confirm the Role', 53, '2022-11-29 05:46:13', 1),
(11450, 11256, 59, 3, 0, 'Selected for Consultant Role B2B', 53, '2022-11-29 05:46:30', 1),
(11451, 11259, 59, 3, 0, 'Selected for Consultant Role B2B', 53, '2022-11-29 05:46:46', 1),
(11452, 11245, 88, 7, 0, 'Selected for RE at 16k pM ', 24, '2022-11-29 07:43:55', 1),
(11453, 11225, 88, 7, 0, 'Selected for RE', 16, '2022-11-30 10:03:22', 1),
(11454, 11245, 59, 3, 0, 'Selected for Suthagar Team in Consultant Role', 88, '2022-11-30 10:29:18', 1),
(11455, 11225, 59, 3, 0, 'Selected for Thiyagu Team in Staff Role', 88, '2022-11-30 10:29:49', 1),
(11456, 11258, 59, 5, 0, 'Communicaiton Average no written skills not open for telecaller profile too', 85, '0000-00-00 00:00:00', 1),
(11457, 11263, 59, 5, 0, 'Looking for non voice not suitable', 85, '0000-00-00 00:00:00', 1),
(11458, 11272, 59, 5, 0, 'Not open for Calling Will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11459, 11277, 59, 4, 0, 'Have Exp in calling but not much comfort in distance Sustainability doubts check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11460, 11281, 59, 3, 0, 'Selected for Banu in Staff Role', 85, '0000-00-00 00:00:00', 1),
(11461, 11280, 59, 4, 0, 'Internal reference from Bhavani Arumbakkam Fresher need to open a lot 5050 Check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11462, 11282, 59, 4, 0, '5050 Profile have Exp in calling but much preferred for Non Voice Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11463, 11269, 59, 5, 0, 'No Communication not suitable for MIS not open for telecaller profile too', 85, '0000-00-00 00:00:00', 1),
(11464, 11205, 24, 5, 0, 'not suitable for telecalling sales', 85, '0000-00-00 00:00:00', 1),
(11465, 11278, 24, 5, 0, 'not suitable for telecalling', 85, '0000-00-00 00:00:00', 1),
(11466, 11273, 59, 5, 0, 'Need to open up a lot not suitable', 85, '0000-00-00 00:00:00', 1),
(11467, 11271, 59, 3, 0, 'Selected for MF 3 months intern 8K Stipend then 12-14K 1.5-2yrs SA', 60, '0000-00-00 00:00:00', 1),
(11468, 11280, 88, 5, 0, 'Rejected', 59, '2022-11-30 08:34:24', 1),
(11469, 11277, 53, 1, 0, NULL, 59, '2022-11-30 08:35:32', 1),
(11470, 11281, 53, 7, 0, 'selected for b2b, cnfrm the salary and DOJ', 59, '2022-11-30 08:39:28', 1),
(11471, 11282, 53, 1, 0, NULL, 59, '2022-11-30 08:40:13', 1),
(11472, 11295, 59, 5, 0, 'He is looking for finance and also very clear that he will not sustain in Telecaller for a long not suitable', 85, '0000-00-00 00:00:00', 1),
(11473, 11294, 59, 5, 0, 'Need to open a lot will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11474, 11292, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11475, 11291, 59, 4, 0, '5050 much prefered for nonvoice have exp in calling kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11476, 11290, 59, 5, 0, 'No Communicaiton not suitable', 85, '0000-00-00 00:00:00', 1),
(11477, 11288, 59, 5, 0, 'Much focused in nonvoice will not sustain and not suitable for telecaller', 85, '0000-00-00 00:00:00', 1),
(11478, 11262, 59, 5, 0, 'Very fresher no basic skills need time to learn later after a month if he come let us try', 85, '0000-00-00 00:00:00', 1),
(11479, 11283, 59, 3, 0, 'Seleceyd for Banu in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11480, 11297, 59, 5, 0, 'Career Gap have exp in Post office no sustainability in the previous roles no telecalling Exp will not sustain', 85, '0000-00-00 00:00:00', 1),
(11481, 11298, 97, 5, 0, 'From guduvanchery...\nprefer to talk in tamil.. not suit for our MF .. Not Ok with sales process.. ', 85, '0000-00-00 00:00:00', 1),
(11482, 11283, 53, 7, 0, 'selected for b2b, kindly cnfrm the salary and DOJ', 59, '2022-12-01 08:05:47', 1),
(11483, 11292, 53, 7, 0, 'selected for B2B. kindly cnfrm the salary and DOJ', 59, '2022-12-01 08:07:30', 1),
(11484, 11291, 53, 5, 0, 'looking non voice, she cant handle pressure', 59, '2022-12-01 08:10:47', 1),
(11485, 11292, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2022-12-02 11:01:45', 1),
(11486, 11279, 74, 5, 0, 'due to low confidence in job ready to move any time native karur', 85, '0000-00-00 00:00:00', 1),
(11487, 11283, 59, 3, 0, 'Seleceyd for Banu in Consultant Role', 53, '2022-12-02 11:02:26', 1),
(11488, 11275, 74, 5, 0, 'not intrested in job sustainablity issue', 85, '0000-00-00 00:00:00', 1),
(11489, 11276, 74, 5, 0, 'he is not talkactive and not fit for team also ', 85, '0000-00-00 00:00:00', 1),
(11490, 11281, 59, 3, 0, 'Selected for Banu in Staff Role', 53, '2022-12-02 11:03:12', 1),
(11491, 11270, 74, 5, 0, 'looking for non voice process only', 85, '0000-00-00 00:00:00', 1),
(11492, 11222, 59, 3, 0, 'Selected for Sithyvinayagam team in Consultant Role', 74, '2022-12-02 02:45:56', 1),
(11493, 11318, 59, 4, 0, 'Communication Ok have 3 months exp in Byjuxquots 5050 Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11494, 11317, 59, 5, 0, 'No sustainability Looking only for salary increase will not sustain', 85, '0000-00-00 00:00:00', 1),
(11495, 11316, 59, 5, 0, 'No Communication not suitable will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(11496, 11312, 59, 5, 0, 'Communication just Managable No written Skills will not sustain notice 45 days not suitable', 85, '0000-00-00 00:00:00', 1),
(11497, 11309, 59, 5, 0, 'Yet to complete his graduation Average Communication Will not sustain for a long not suitable', 85, '0000-00-00 00:00:00', 1),
(11498, 11308, 59, 5, 0, 'Communication Good,Pressure Handling Doubt,Fresher Looking for CTC growth Will not run in a long', 85, '0000-00-00 00:00:00', 1),
(11499, 11300, 59, 5, 0, 'Have teaching exp and much focus for Java Django Career Gap will not sustain and not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(11500, 11296, 59, 5, 0, 'No basic Skills 2nd round interviewed by manikandan and rejected', 85, '0000-00-00 00:00:00', 1),
(11501, 11303, 59, 3, 0, 'Selected for GK sir Team ', 60, '0000-00-00 00:00:00', 1),
(11502, 11303, 31, 4, 4, 'candidate okay. ', 59, '2022-12-02 03:41:53', 1),
(11503, 11313, 59, 5, 0, 'No Communication Looking only for Salary increase Fresher for Telecaller will not sustain not suitable', 60, '0000-00-00 00:00:00', 1),
(11504, 11286, 59, 5, 0, 'Looking for nonvoice no communication not suitable', 60, '0000-00-00 00:00:00', 1),
(11505, 11314, 59, 4, 0, 'Internal Reference No relevant Exp 5050 Kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11506, 11303, 29, 7, 3, 'Gk team, 2.98 lacs ctc', 31, '2022-12-02 04:01:55', 1),
(11507, 11274, 93, 4, 0, 'Shortlisted need to move to branch manager good candidate communication also good ', 60, '0000-00-00 00:00:00', 1),
(11508, 11318, 31, 5, 0, 'not suitable candidate', 59, '2022-12-02 07:38:46', 1),
(11509, 11314, 31, 5, 0, 'Not suitable candidate', 59, '2022-12-02 07:46:15', 1),
(11510, 11274, 60, 1, 0, NULL, 93, '2022-12-03 10:05:57', 1),
(11511, 11326, 59, 3, 0, 'Have basic knowledge in JS and React Can be trained no local Language only english and hindi 3-5 months Intern with Stipend 5K then Employment overall 3yrs SA salary start 10-12K', 85, '0000-00-00 00:00:00', 1),
(11512, 11325, 59, 5, 0, 'Have 8 months Exp in Just Dial Calling Too long distance ,of Career Gap Wil not sustain he is into bike racing will not run in a long', 85, '0000-00-00 00:00:00', 1),
(11513, 11319, 59, 5, 0, 'Communication Average,have 6 month internship exp in backend no basics in Accounts too long distance will not sustain and handle our pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11514, 11320, 59, 5, 0, 'Communication Average,will travel to singapore in 1 yr will not sustain in a long lot of personal issues going on will take lot of leaves not suitable', 85, '0000-00-00 00:00:00', 1),
(11515, 11323, 59, 4, 0, 'Communication ok Have Telecalling Exp but in different domain can give a try for our sales kindly check and confirm', 85, '0000-00-00 00:00:00', 1),
(11516, 11324, 59, 5, 0, 'Not suitable for Sales Calls will not sustain', 85, '0000-00-00 00:00:00', 1),
(11517, 11301, 59, 4, 0, 'Communication ok,Have Exp in Content Writing But sustainability doubt in our role kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11518, 7916, 59, 5, 0, 'No basic skills just looking for Salary growth will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11519, 11274, 60, 1, 0, NULL, 30, '2022-12-03 04:25:27', 1),
(11520, 11301, 69, 1, 0, NULL, 59, '2022-12-03 05:47:20', 1),
(11521, 11323, 53, 1, 0, NULL, 59, '2022-12-03 05:48:38', 1),
(11522, 11303, 59, 3, 0, 'Selected for GK sir Team ', 29, '2022-12-03 09:11:59', 1),
(11523, 11334, 59, 4, 0, 'Long Career Gap No highest Graduation fresher for Telecalling need to train a lot kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11524, 11337, 59, 5, 0, 'Fresher Career Gap Seems much preferred with non voice process not suitable for calling will not sustain', 85, '0000-00-00 00:00:00', 1),
(11525, 11339, 59, 5, 0, 'No Clear Communication not suitable for our customer communication will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11526, 11340, 59, 5, 0, 'No Communication not open for Target based positions not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11527, 11341, 59, 5, 0, 'No communication no written skills not suitable for MIS roles will not sustain', 85, '0000-00-00 00:00:00', 1),
(11528, 11343, 74, 7, 0, 'he is fit for telesales and good for team....father chicken sales sister working in medical shop one brother .....poor family only one year experience in honda sales and accounts and 8 months experience in reliance CSA sales .....have laptop and 2 km to office sales pitching and job also highly need...expected 12 k and he is ok for 12k.....ramesh sir conducted second round and gave positive review kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(11529, 11322, 74, 5, 0, 'not intrested in sales field and telecalling', 85, '0000-00-00 00:00:00', 1),
(11530, 11192, 59, 4, 0, 'Communication Ok have exp in core Mechanical domain fresher for our roles 5050 kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11531, 11342, 59, 2, 0, 'Fresher no basic knowledge in IT Skills Given a month time to learn if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11532, 11338, 59, 4, 0, '5050 Too long Distance Fresher for roles Have interest to work in voice process kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11533, 11344, 59, 3, 0, 'Selected for B2B in staff Role', 85, '0000-00-00 00:00:00', 1),
(11534, 11344, 53, 7, 0, 'Selected for b2b. pls cnfrm the salary and DOJ', 59, '2022-12-05 04:39:05', 1),
(11535, 11338, 53, 1, 0, NULL, 59, '2022-12-05 04:40:10', 1),
(11536, 11192, 53, 1, 0, NULL, 59, '2022-12-05 04:47:44', 1),
(11537, 11334, 53, 1, 0, NULL, 59, '2022-12-05 04:48:43', 1),
(11538, 11335, 59, 5, 0, 'Fresher for IT domain,Currently working as Document specialist 45 days notice not much strong in basics given him time to learn sustainabilty doubts', 60, '0000-00-00 00:00:00', 1),
(11539, 11343, 59, 5, 0, 'Asked for a time to join due to exams but not responding the calls later\n', 74, '2022-12-05 05:04:51', 1),
(11540, 11352, 74, 5, 0, 'he is not ok with the profile and have sustainability issue', 85, '0000-00-00 00:00:00', 1),
(11541, 11307, 59, 5, 0, 'Technical Round reject by Manikandan not much comfort in TxxampC will not sustain, need to learn a lot', 60, '0000-00-00 00:00:00', 1),
(11542, 11356, 59, 5, 0, 'His preferred skill is dotnet Give him time for Learning if he comes back after a month can check', 60, '0000-00-00 00:00:00', 1),
(11543, 11355, 59, 2, 0, 'Have basic knowledge in Node, Seems to be playful technical round with Viswa Should schedule the next round with Gokul based on his availability ', 60, '0000-00-00 00:00:00', 1),
(11544, 11350, 59, 5, 0, 'Need to open a lot will not handle our Sales calls not suitable', 60, '0000-00-00 00:00:00', 1),
(11545, 11351, 59, 5, 0, 'Have Exp in Recruitment but not much strong with that lot of job changes also did some certification in bridal make up her focus is towards that sustainability doubts in our profile', 60, '0000-00-00 00:00:00', 1),
(11546, 11357, 59, 5, 0, 'Not Much active will not sustain and handle our pressure Not suitable', 99, '0000-00-00 00:00:00', 1),
(11547, 11358, 59, 5, 0, 'too long distance up and down 54kms not open for relocation will not sustain', 99, '0000-00-00 00:00:00', 1),
(11548, 11359, 59, 5, 0, 'Fresher for our sales no sustainability in his previous exp,Pressure handling doubt,asked him to wait for the 2nd round but left without attending', 99, '0000-00-00 00:00:00', 1),
(11549, 11361, 74, 5, 0, 'he not fit for telesales tounge slip problem ', 99, '0000-00-00 00:00:00', 1),
(11550, 11360, 59, 5, 0, 'Just 7 months exp in recruitment with the high Pay and looking for more and the same, location need to check,Long run doubts in our roles', 99, '0000-00-00 00:00:00', 1),
(11551, 11362, 59, 5, 0, 'Have a solid exp in backend but no communication not much suitable for sales will not sustain in our Sales ', 99, '0000-00-00 00:00:00', 1),
(11552, 11365, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 99, '0000-00-00 00:00:00', 1),
(11553, 11366, 59, 5, 0, 'Not open for Sales,', 99, '0000-00-00 00:00:00', 1),
(11554, 11368, 59, 5, 0, 'Technical Round reject by Manikandan,Fresher for Javascript have exp in dotnet Sustainability doubts as he was around 8K earlier and looking for more', 99, '0000-00-00 00:00:00', 1),
(11555, 11369, 59, 5, 0, 'Fresher for IT ,Have 1,5 yrs desktop Support exp not much strong with the basic skills need to train a lot he need time to confirm the TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11556, 11370, 59, 5, 0, 'Have Exp in IT Recruitment and 7 months exp with 2.6 LPA Communicaiton Average Handling our sales hiring pressure doubts not suitable', 99, '0000-00-00 00:00:00', 1),
(11557, 11330, 59, 4, 0, '5050 profile Fresher for our Sales ,Need to train a lot kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11558, 11363, 59, 5, 0, 'Internal team Reference,Long Career Gap he is into sports No sustainability in the previous exp checked with sales Manager sarath and rejecetd the profile', 99, '0000-00-00 00:00:00', 1),
(11559, 11367, 59, 5, 0, 'Final Round reject, Only 3 months exp in Byjuxquots No Sales Exp rejected in the final round', 99, '0000-00-00 00:00:00', 1),
(11560, 11365, 53, 7, 0, 'selected for b2B. pls cnfrm the DOJ and salary.', 59, '2022-12-07 03:47:54', 1),
(11561, 11330, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-12-07 03:49:42', 1),
(11562, 11365, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2022-12-07 04:00:39', 1),
(11563, 11377, 59, 3, 0, 'Selected for B2B in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(11564, 11344, 59, 3, 0, 'Selected for B2B in staff Role', 53, '2022-12-08 03:48:54', 1),
(11565, 11377, 53, 7, 0, 'selected for b2b, pls cnfrm the salary and DOJ', 59, '2022-12-08 03:49:29', 1),
(11566, 11376, 59, 5, 0, 'Fresher no basics in JS,Need time to confirm on the TxxampC Sustainability doubts with us if he comes back let us try for technical', 99, '0000-00-00 00:00:00', 1),
(11567, 11374, 59, 5, 0, 'Too long Distance around 54kms up and down not much comfort in taking 150 Calls will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11568, 11375, 59, 5, 0, 'No basics in accounts No Communication will not sustain', 99, '0000-00-00 00:00:00', 1),
(11569, 11378, 59, 2, 0, 'Appeared for IT but no skills in Javascript Have Exp in Mutual funds backend for 2.5 yrs,open for MF role but communication Average can give a try for MF Coordinator need to check with Gokul and confirm', 99, '0000-00-00 00:00:00', 1),
(11570, 11379, 59, 5, 0, 'Looking for non voice not suitable no communication', 99, '0000-00-00 00:00:00', 1),
(11571, 11380, 59, 4, 0, '5050 profile have 4 months exp in collection calling ,sounds to be low kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11572, 11377, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2022-12-08 03:58:06', 1),
(11573, 11380, 53, 1, 0, NULL, 59, '2022-12-08 04:47:53', 1),
(11574, 11381, 59, 2, 0, 'communication Ok Have exp in B2B,not open for Sales again he is looking for Recruitment but will not sustain much in that will schedule him for MIS Need to check and final with Gokul', 85, '0000-00-00 00:00:00', 1),
(11575, 11387, 74, 5, 0, 'profile not fit for sales have no exposure and knowledge for telesales', 85, '0000-00-00 00:00:00', 1),
(11576, 11388, 59, 5, 0, 'Too long distance looking for non voice\n', 85, '0000-00-00 00:00:00', 1),
(11577, 11390, 59, 3, 0, 'Selected for Babu Team for staff Role', 85, '0000-00-00 00:00:00', 1),
(11578, 11390, 89, 7, 0, 'Selected ', 59, '2022-12-09 06:03:32', 1),
(11579, 11395, 59, 5, 0, 'Comfort to work in non voice process,not open for targets will not sustain', 85, '0000-00-00 00:00:00', 1),
(11580, 11397, 59, 5, 0, 'Looking for non voice not suitable no Communication', 85, '0000-00-00 00:00:00', 1),
(11581, 11398, 59, 5, 0, 'No sustainability Career Gap not showing self interest on the job,Not much open with TxxampC too not suitable', 85, '0000-00-00 00:00:00', 1),
(11582, 11329, 59, 5, 0, 'Have 6 months in React have a huge expectation with the salary will not sustain in a long Final round reject by Gokul', 60, '0000-00-00 00:00:00', 1),
(11583, 11393, 59, 4, 0, 'Fresher for Sales he was into core for 2.5 yrs 5050 can give a try kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(11584, 11394, 59, 5, 0, 'Too long Distance no Graduation Long Career Gap Not much suitable for Sales Calls will not sustain ', 60, '0000-00-00 00:00:00', 1),
(11585, 11396, 24, 5, 0, 'he is looking non voice', 99, '0000-00-00 00:00:00', 1),
(11586, 11393, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-12-10 03:10:20', 1),
(11587, 11390, 88, 7, 0, 'Selected for RE', 89, '2022-12-10 04:16:03', 1),
(11588, 11401, 59, 4, 0, '1st level interview by thiyagu in job fair and asked him to come for a direct interview,Fresher need to train him from the scratch ,kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11589, 11399, 59, 5, 0, 'Have Exp in Telecalling but not open for Telecalling agaiin and for MIS No Communication not suitable', 99, '0000-00-00 00:00:00', 1),
(11590, 11390, 59, 3, 0, 'Selected for Babu Team for staff Role', 88, '2022-12-10 06:20:03', 1),
(11591, 11406, 59, 5, 0, 'No basic skills in JS Have lookin for testing and Java profile', 99, '0000-00-00 00:00:00', 1),
(11592, 11407, 59, 5, 0, 'No Basic Skills In JS Have Looking For Testing And Java Profile.If he is coming back after learning will give a try', 99, '0000-00-00 00:00:00', 1),
(11593, 11400, 59, 5, 0, 'Looking for Testing Profile', 99, '0000-00-00 00:00:00', 1),
(11594, 11412, 59, 5, 0, 'No Communication for MIS not open for sales Calls too not suitable', 99, '0000-00-00 00:00:00', 1),
(11595, 11415, 59, 5, 0, 'Too long Distance Will not sustain in our roles fresher not ssuitale', 99, '0000-00-00 00:00:00', 1),
(11596, 11402, 59, 2, 0, 'Communication Good both orally and written,Distane need to see 40kms up and down he need time to confirm ', 85, '0000-00-00 00:00:00', 1),
(11597, 11410, 59, 3, 0, 'Selected for B2B - Banu Team in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(11598, 11411, 59, 4, 0, 'Profile not much good internal reference need to open a lot kindly check and let me know inout', 60, '0000-00-00 00:00:00', 1),
(11599, 11410, 53, 7, 0, 'Selected for b2B. Pls cnfrm the salary and DOJ.', 59, '2022-12-12 06:17:36', 1),
(11600, 11411, 16, 5, 0, 'Sales Sustainability Doubts', 59, '2022-12-12 06:33:08', 1),
(11601, 11413, 59, 4, 0, 'Have few months exp in Star Health Career Gap is there he is focusing much on the distance to be travelled', 60, '0000-00-00 00:00:00', 1),
(11602, 11413, 53, 1, 0, NULL, 59, '2022-12-12 06:34:57', 1),
(11603, 11401, 88, 5, 0, 'rejected', 59, '2022-12-12 06:39:24', 1),
(11604, 11410, 59, 3, 0, 'Selected for B2B - Banu Team in Consultant Role', 53, '2022-12-13 10:48:11', 1),
(11605, 11429, 59, 5, 0, 'No Communication Seems to be very slow not active will not sustain in our roles and handle our pressure', 99, '0000-00-00 00:00:00', 1),
(11606, 11424, 59, 5, 0, 'Looking for core Data scientist profile,will not sustain in our roles', 99, '0000-00-00 00:00:00', 1),
(11607, 11428, 59, 4, 0, 'Have Exp in Insurance Domain but focusing much in Renewals Collections,Have exp in sales calling too Salary is high than our budget Multi Language Kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11608, 11385, 59, 5, 0, 'Have Exp in other domain and looking for Javascript Salary Exp is high too long distance will not sustain in our roles not suitable', 99, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(11609, 11419, 59, 5, 0, 'Not open for Target based roles will not sustain in other roles too not suitable', 85, '0000-00-00 00:00:00', 1),
(11610, 11414, 59, 5, 0, '5050 Profile,fresher career gap need to be trained a lot kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(11611, 11409, 59, 5, 0, 'Looking for Testing or Java openings\n', 60, '0000-00-00 00:00:00', 1),
(11612, 11423, 59, 5, 0, 'No Communication too long distance too not suitable', 60, '0000-00-00 00:00:00', 1),
(11613, 11426, 59, 5, 0, 'No Communication looking for Salary growth only have exp in MIS long run doubts', 60, '0000-00-00 00:00:00', 1),
(11614, 11425, 59, 5, 0, 'No Communication Looking For Salary Growth Only Have Exp In MIS Long Run Doubts', 60, '0000-00-00 00:00:00', 1),
(11615, 11428, 53, 1, 0, NULL, 59, '2022-12-13 07:04:25', 1),
(11616, 11437, 59, 5, 0, 'Location constraint Processed for CRM but she is looking for Sales ,scheduled her for 2nd round but left without attending the next round and later understood that she is not ok with Target', 99, '0000-00-00 00:00:00', 1),
(11617, 11438, 59, 5, 0, 'Location Constraint Processed For CRM But She Is Looking For Sales ,Scheduled Her For 2nd Round But Left Without Attending The Next Round And Later Understood That She Is Not Ok With Target', 99, '0000-00-00 00:00:00', 1),
(11618, 11436, 59, 5, 0, 'Already attended and got rejected in Technical written task,Not open for TxxampC Need time to confirm need to train a lot if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11619, 11435, 59, 5, 0, 'Not open for telecaller Sales profile looking much for non voice and inbound callings\n', 99, '0000-00-00 00:00:00', 1),
(11620, 11432, 59, 2, 0, 'Communication is Good Have 8 months Exp in Recruitment but only IT exp Need to train a lot in non IT,long run doubts will confirm the profile later', 99, '0000-00-00 00:00:00', 1),
(11621, 11408, 59, 4, 0, '5050 Long career Gap seems to be over confident need to train a lot kindly check and let me know your inputs\n', 85, '0000-00-00 00:00:00', 1),
(11622, 11408, 53, 1, 0, NULL, 59, '2022-12-14 05:26:05', 1),
(11623, 11456, 59, 4, 0, '5050 Profile Sustainability Doubts family need is there,No highest graduation only 10th have 8 months exp in telecalling kindly check and let me jknow your inputs', 99, '0000-00-00 00:00:00', 1),
(11624, 11420, 59, 5, 0, 'Too long Distance ,no communication,not suitable for our roles', 99, '0000-00-00 00:00:00', 1),
(11625, 11457, 59, 4, 0, 'Fresher communication Ok Need to train a lot can give a try kindly check and let me know your interest.', 99, '0000-00-00 00:00:00', 1),
(11626, 11328, 59, 5, 0, 'Very Slow,Long Career Gap not much strong in basics of JS will not adapt to our working conditions not suitable', 99, '0000-00-00 00:00:00', 1),
(11627, 11459, 59, 5, 0, 'Looking for non voice process, have a long career gap not open for Sales Calls will not run in a long\n', 99, '0000-00-00 00:00:00', 1),
(11628, 11452, 59, 5, 0, 'Fresher Looking for Java as a prior position,not much comfort with Stipend her expectation is minimum 2.5LPA will not sustain in a long run', 99, '0000-00-00 00:00:00', 1),
(11629, 11460, 59, 5, 0, 'Not open up not suitable for telesales will not handle our Sales pressure', 60, '0000-00-00 00:00:00', 1),
(11630, 11456, 53, 1, 0, NULL, 59, '2022-12-15 04:48:59', 1),
(11631, 11457, 53, 1, 0, NULL, 59, '2022-12-15 04:49:56', 1),
(11632, 11453, 59, 5, 0, 'No basics in Javascript Ned to train a lot asked the candidate to wait for 2nd level to check with Gokul but he left without informing', 99, '0000-00-00 00:00:00', 1),
(11633, 11458, 59, 5, 0, 'No Communication no basics in the acounts not suitable for our roles', 99, '0000-00-00 00:00:00', 1),
(11634, 11463, 59, 4, 0, '5050 profile fresher for Telesales have Exp in backend kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11635, 11468, 59, 4, 0, 'Fresher Can give a try for B2B Calling need to be trained kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(11636, 11469, 59, 5, 0, 'His Focus is into Non voice process and not much ideas into voice process Long distance and asked him to wait for 2nd level but left without attending the round', 99, '0000-00-00 00:00:00', 1),
(11637, 11466, 59, 4, 0, 'Had a telephonic discussion with the candidate fresher can be trained Ready to relocate chennai can give a try kindly have a virtual round and let me know your inputs\n', 60, '0000-00-00 00:00:00', 1),
(11638, 11475, 59, 3, 0, 'Selected for Mani Team Staff Role \n Communication Ok Have Exp As Medical Rep For An Year,Need To Be Trained In Our Domain Kindly Check And Let Me Know Your Inputs', 60, '0000-00-00 00:00:00', 1),
(11639, 11466, 53, 1, 0, NULL, 59, '2022-12-16 06:00:42', 1),
(11640, 11465, 59, 2, 0, '5050 1 yr gap 3 months exp in IT with 16K had some certification course in Front end have basics in javascript open for internship and employment but need some time to confirm his next schedule will check once and confirm ', 99, '0000-00-00 00:00:00', 1),
(11641, 11467, 59, 2, 0, 'He was outside should call later\n', 99, '0000-00-00 00:00:00', 1),
(11642, 11467, 59, 2, 0, 'He was outside should call later\n', 99, '0000-00-00 00:00:00', 1),
(11643, 11475, 86, 4, 0, 'Selected For Next Round', 59, '2022-12-16 06:18:47', 1),
(11644, 11463, 89, 1, 0, NULL, 59, '2022-12-16 06:20:02', 1),
(11645, 11468, 53, 1, 0, NULL, 59, '2022-12-16 06:25:04', 1),
(11646, 11475, 18, 7, 3, 'Selected for Mani Team Immed Joiner. Negotiate the salary', 86, '2022-12-17 10:58:15', 1),
(11647, 11480, 59, 5, 0, 'Having medical issue a lot will not suit in telecalling voice not clear not suitable', 99, '0000-00-00 00:00:00', 1),
(11648, 11479, 59, 5, 0, 'Fresher no basics in Javascript too long distance but can relocate and stay in aunt home near by need to learn a lot let him come back after learning', 99, '0000-00-00 00:00:00', 1),
(11649, 11473, 59, 5, 0, 'Communication orally managable no relevant Exp have exp in sales but not interested towards that.she is into medical treatment will not sustain in a long ', 99, '0000-00-00 00:00:00', 1),
(11650, 11384, 59, 5, 0, 'Looking for Java openings no basic knowledge in Javascript', 99, '0000-00-00 00:00:00', 1),
(11651, 11481, 59, 5, 0, 'Need to open a lot will not sustain and handle the sales pressure not suitable', 99, '0000-00-00 00:00:00', 1),
(11652, 11486, 74, 1, 0, NULL, 99, '0000-00-00 00:00:00', 1),
(11653, 11491, 59, 5, 0, 'Just 3 months Exp in IT recrutiment(2018) 2 yrs in Bank Clerical Profile 2 yrs gap due to marriage now looking for recruitment very high Salary Exp not ready to come down.Communication Average no basics in the recruitment Need to train from Scratch Will not handle our work pressure', 99, '0000-00-00 00:00:00', 1),
(11654, 11478, 59, 2, 0, 'Not much strong in Basic Skills can be trained a lot not much open with TxxampC if he comes back let us try ', 99, '0000-00-00 00:00:00', 1),
(11655, 11493, 59, 5, 0, 'No basic ideas in the accounts average communicaiton no Bike Looking only for salary hike in 6 months looking for opportunity only for salary not suitable', 99, '0000-00-00 00:00:00', 1),
(11656, 10760, 59, 5, 0, 'Preparing for Govt Exams full focus into exams and for time being looking for opportunities, he is very clear that he will sustain in a long in IT', 99, '0000-00-00 00:00:00', 1),
(11657, 11482, 59, 5, 0, 'Have a long Exp in Customer Support mostly inbound Fresh to insurance Domain Local Language Just Manageable Current Salary is very high 4.84 LPA,Will not sustain and handle our Sales not suitable', 99, '0000-00-00 00:00:00', 1),
(11658, 11447, 59, 5, 0, 'too long Distance up and down 46kms also holding an offer for 20K in Testing Role will not join us not suitable', 99, '0000-00-00 00:00:00', 1),
(11659, 11501, 59, 5, 0, 'Fresher for IT Need time to confirm the TxxampC no basics Family settled willl not sustain in our roles not suitable', 99, '0000-00-00 00:00:00', 1),
(11660, 11461, 59, 5, 0, 'No communication, but speaking sounds good,too long distance up and down 50 kms,No Wrtten Skills have exp in telecalling but not open for the same again and looking for recruiter role.Will not sustain in our Roles not suitable', 99, '0000-00-00 00:00:00', 1),
(11661, 11483, 59, 5, 0, 'Too long Distance up and down 60 kms a month back he joined a company and looking for change with the salary hike', 99, '0000-00-00 00:00:00', 1),
(11662, 11515, 59, 5, 0, 'Too long Distance up and down 50kms Have Exp in Sales but not open for same and looking for MIS Average Communication will not sustain', 99, '0000-00-00 00:00:00', 1),
(11663, 11522, 59, 5, 0, 'Too Long Distance not much comfortable with the distance will not sustain ', 99, '0000-00-00 00:00:00', 1),
(11664, 11520, 59, 5, 0, 'Have 6 months Exp in Collection Calls but not much flow with the communication will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(11665, 11516, 59, 4, 0, 'Have 6 months Exp in Telecalling Collection Can be trained for our role,Can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11666, 11525, 59, 5, 0, '6 months back we offered and she didnt respond the calls later now she appeared for the role and asking for huge salary hike earlier we offered 2.04 LPA', 99, '0000-00-00 00:00:00', 1),
(11667, 11505, 59, 2, 0, 'Have Exp in Sales but not a longer one.Worked in 3 companies 3 different domain and have a health issue he is into treatment for Rheumatoid arthritis. He left bajaj due to work pressure. Kindly hold this profile, will confirm the status. Salary Exp is more than his expeirence', 99, '0000-00-00 00:00:00', 1),
(11668, 11511, 59, 2, 0, 'Fresher have a knowledge in React Can be trained 2nd round interviewed by manikandan,he was ok with TxxampC but need to confirm once, Need to schedule him for final round with Gokul', 99, '0000-00-00 00:00:00', 1),
(11669, 11514, 59, 2, 0, 'Have Basic Skills in React Can be trained but he need time to confirm on the TxxampC if he comes back let us try\n', 99, '0000-00-00 00:00:00', 1),
(11670, 11518, 59, 3, 0, 'Selected for Syed Team in Staff Role \n Have Exp In Insurance Sales Can Be Trained For Our Profile Kindly Check And Let Me Know Your Inputs', 99, '0000-00-00 00:00:00', 1),
(11671, 11523, 74, 5, 0, 'She is not ok with the profile and not fit for team', 99, '0000-00-00 00:00:00', 1),
(11672, 11517, 24, 5, 0, '1st round selected but 2nd round abscond , number RNR', 85, '0000-00-00 00:00:00', 1),
(11673, 11498, 24, 5, 0, 'not suitable for sales', 85, '0000-00-00 00:00:00', 1),
(11674, 11504, 59, 2, 0, 'Fresher Have basic skills in JS,Need to check for his sustainability his sister is in Accenture Need time to confirm on the TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11675, 11518, 57, 4, 0, 'Candiate is ok, already he have Experience with Same process,Communication also good ', 59, '2022-12-20 04:18:26', 1),
(11676, 11516, 53, 1, 0, NULL, 59, '2022-12-20 04:40:45', 1),
(11677, 8457, 59, 5, 0, 'Communication Is Good, Fresher For Recruitment, Have 3 Months Internship Exp In SAP Profiles Only. Looking Much For IT Recruitment Positions Only, Not Sure To Handle The Other Domains. Salary Exp In Very High Min 15K Being A Fresher. Sustainability Doubts A Lot, Let Us Hold And Decide Later.', 59, '2022-12-20 06:49:10', 1),
(11678, 8509, 59, 5, 0, 'Have Few Months Exp In Recruitment,Career Gap Is There,Long Run Doubt With This Profile,Can Hold This Profile And Let Us Try Later', 59, '2022-12-20 06:49:28', 1),
(11679, 8518, 59, 5, 0, 'Candidate Didnt Turn with her confirmation', 59, '2022-12-20 06:50:31', 1),
(11680, 8545, 59, 5, 0, 'Not suitable', 59, '2022-12-20 06:50:54', 1),
(11681, 8570, 59, 5, 0, 'Communication Average,Have Exp For A Year But Need To Check Clearly,Not Much Exposure To The Recruitment,Long Run DoubtsCommunication Average,Have Exp For A Year But Need To Check Clearly,Not Much Exposure To The Recruitment,Long Run Doubts', 59, '2022-12-20 06:51:16', 1),
(11682, 8574, 59, 5, 0, 'Communication Is Good, Have Basic Exp In HR, But Not In Recruitment, Her Current Pay Is Very High Also Her Expectation Is Also High, No Exp In Sourcing Screening,', 59, '2022-12-20 06:51:55', 1),
(11683, 8646, 59, 5, 0, 'Communication Ok, Have Only 6 Months Exp In Recruitment, Need To Relocate From Madurai But Her Salary Expect Is Around 18K.His Current Salary Is 10K.Her Sustainability Doubts In The Long Run Comparing Her Salary Expectation.', 59, '2022-12-20 06:52:18', 1),
(11684, 8696, 59, 5, 0, 'Communication Ok,Have Exp In Telecalling And 3 Months In Recruitment,Need To Be Trained,5050 Profile,Not Comfirtable With TxxampC', 59, '2022-12-20 06:52:40', 1),
(11685, 8815, 59, 5, 0, 'Not suitable', 59, '2022-12-20 06:53:08', 1),
(11686, 8820, 59, 5, 0, 'Didnt Turn with her confirmation', 59, '2022-12-20 06:53:35', 1),
(11687, 8827, 59, 5, 0, 'Communication Is Good, Have Exp As A Research Executive In Native, Ready To Relocate And Can Give A Try For The MIS Role, Need Some Time To Confirm This Profile, Will Check Again For The Sustainability And Let You Know.Lets Hold This Profile', 59, '2022-12-20 06:54:09', 1),
(11688, 8872, 59, 5, 0, 'didnt Turn back with her confirmation\n', 59, '2022-12-20 06:54:34', 1),
(11689, 8883, 59, 5, 0, 'will not sustain not suitable', 59, '2022-12-20 06:55:49', 1),
(11690, 8934, 59, 5, 0, 'Communication Ok,Fresher For Recruitment,Can Give A Try But Her Min Is Very High And Not Ready To Come Down, Given Her Time If She Comes Back Lets See', 59, '2022-12-20 06:56:56', 1),
(11691, 11502, 59, 5, 0, 'Will not sustain holding 3 offers in hand with min 2.2 LPA to 4.5 LPA Looking for CMMI Level companies will not join and sustain', 99, '0000-00-00 00:00:00', 1),
(11692, 11513, 59, 5, 0, 'Need to open a lot no basics in skills will not handle our work pressure and not suitable for our position', 99, '0000-00-00 00:00:00', 1),
(11693, 11532, 59, 3, 0, 'Selected for B2B Consultant Role', 60, '0000-00-00 00:00:00', 1),
(11694, 11503, 59, 5, 0, 'Fresher No basics in JS,Stammering a lot will not sustain and handle our work not suitable not much comfort in TxxampC', 60, '0000-00-00 00:00:00', 1),
(11695, 11532, 53, 7, 0, 'selected for b2 . pls cnfrm the salary and DOJ', 59, '2022-12-21 04:19:00', 1),
(11696, 11518, 88, 7, 0, 'Candidate is experience xxamp we can provided him a take home 15.5per month', 57, '2022-12-22 12:06:18', 1),
(11697, 11475, 60, 1, 0, NULL, 18, '2022-12-22 11:19:50', 1),
(11698, 11518, 59, 3, 0, 'Selected for Syed Team in Staff Role \n Have Exp In Insurance Sales Can Be Trained For Our Profile Kindly Check And Let Me Know Your Inputs', 88, '2022-12-22 12:01:13', 1),
(11699, 11495, 59, 4, 0, 'Have Calling Exp with several companies can be trained in our roles,Distance need to focus,kindly check and let me know you interest', 85, '0000-00-00 00:00:00', 1),
(11700, 11543, 59, 5, 0, 'Preferably looking for non voice Process no communication as per the expectation for the sales not suitable', 85, '0000-00-00 00:00:00', 1),
(11701, 11547, 59, 4, 0, 'Have Calling Exp With Several Companies Can Be Trained In Our Roles,Distance Need To Focus,Kindly Check And Let Me Know You Interest', 85, '0000-00-00 00:00:00', 1),
(11702, 11548, 59, 2, 0, 'Gppd Communication having multi language skills Have exp in Collections Renewals Calling and open for Sales Calling too but his current salary is too high for Renewals 25K and Exp is min 4.2 LPA 30 days notice period Left without attending the 2nd level due to emergency if he comes back let us try in our roles', 85, '0000-00-00 00:00:00', 1),
(11703, 11538, 97, 5, 0, 'he already Attends interview 2m back. has exp in react js. Sustainability doubts. ', 85, '0000-00-00 00:00:00', 1),
(11704, 11550, 97, 5, 0, 'Continuously change his job yearly once. no Sustainability. has some career gap...', 85, '0000-00-00 00:00:00', 1),
(11705, 11528, 59, 5, 0, 'Not open for Sales Calling,holding 2 offers in hand no sustainability in the previous Exp Salary Exp is high than his experience', 60, '0000-00-00 00:00:00', 1),
(11706, 11545, 59, 5, 0, 'Have Basic knowledge,having a plan to go for higher studies full time and looking for opportunities in time being not open for TxxampC ,his siblings both in CTS amazon will not run in a long not suitable', 60, '0000-00-00 00:00:00', 1),
(11707, 11544, 59, 5, 0, 'Not clear with th skills he want to work, not much active no focus Long career Gap he got terminated during the training period due to poor performance not suitable for us will not sustain ', 60, '0000-00-00 00:00:00', 1),
(11708, 11495, 53, 1, 0, NULL, 59, '2022-12-22 04:52:13', 1),
(11709, 11547, 53, 1, 0, NULL, 59, '2022-12-22 04:52:42', 1),
(11710, 11556, 59, 3, 0, 'Selected for Sarath Team in staff Role', 99, '0000-00-00 00:00:00', 1),
(11711, 11559, 59, 3, 0, 'Selecetd for Node in internship for 5 months with 5K with 3yrs SA 10-12K', 99, '0000-00-00 00:00:00', 1),
(11712, 11560, 59, 5, 0, 'No basic skills in JS not much active will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11713, 11532, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2022-12-23 04:18:03', 1),
(11714, 11484, 97, 5, 0, 'married xxamp have 1yr kid not much strong in html xxamp CSS.', 99, '0000-00-00 00:00:00', 1),
(11715, 11571, 59, 2, 0, 'Fresher Self learn in MERN can give a try for NodeJs Candidate need to come back with his confirmation on TxxampC if he comes let us try', 99, '0000-00-00 00:00:00', 1),
(11716, 11565, 24, 5, 0, 'he is not interested in sales', 85, '0000-00-00 00:00:00', 1),
(11717, 11577, 59, 4, 0, 'Communication Ok Bit Attitude No relevant Exp in Sales 5050 Can give a try kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11718, 11577, 11, 1, 0, NULL, 59, '2022-12-26 06:41:29', 1),
(11719, 11556, 51, 7, 0, 'ok and also informed Sir about this candidate ', 59, '2022-12-27 09:58:18', 1),
(11720, 11580, 59, 5, 0, 'No basics in Javascript holding an offer for 12.5K but not yet released looking for some more and open for learning if he comes back later will check his profile for next level', 99, '0000-00-00 00:00:00', 1),
(11721, 11570, 59, 5, 0, 'Will not sustain have exp in MIS in TCS current Pay is 2.8 LPA looking for change due to the need in salary hike Service notice 14 Feb 2023 is LWD will not sustain and not suitable in our roles', 99, '0000-00-00 00:00:00', 1),
(11722, 11590, 24, 5, 0, 'expext salary high 25k, so rejecte with ramesh sir', 99, '0000-00-00 00:00:00', 1),
(11723, 11551, 59, 5, 0, 'not much strong with basics,Need to learn have some basics is Figma Need time to confirm the TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11724, 11558, 59, 5, 0, 'No basics in JS,Need to open a lot not much comfort in TxxampC Need to train him from scratch if he comes back let us try\n', 99, '0000-00-00 00:00:00', 1),
(11725, 11587, 59, 3, 0, 'Selected for Thiyagarajan Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(11726, 11589, 59, 5, 0, 'Average Communication not open for sales calls checked her for Operations written skills not upto the mark she has some interest in Tailoring and doing a part time work too will not sustain and not suitable in our roles', 60, '0000-00-00 00:00:00', 1),
(11727, 11572, 59, 2, 0, 'Have basics skills in JS know basics in PHP Python too have 8 months internship Exp Min exp is 10K in the beginning can give a try for our roles need to schedule him for the virtual based on Gokulxquots Availability', 60, '0000-00-00 00:00:00', 1),
(11728, 11587, 16, 4, 0, 'Shortlisted', 59, '2022-12-27 05:26:24', 1),
(11729, 11587, 88, 7, 0, 'Selected for RE', 16, '2022-12-27 05:32:30', 1),
(11730, 11592, 59, 2, 0, 'Fresher have basic knowledge in JS Can be trained 2nd interview by Kavya final round pending with Gokul open for TxxampC', 99, '0000-00-00 00:00:00', 1),
(11731, 11597, 59, 2, 0, 'already attended a month back 5050 gave him a joining but he didnxquott not he is looking again and seems doubtful Lets hold and try need to check with Gokul', 99, '0000-00-00 00:00:00', 1),
(11732, 11575, 59, 5, 0, 'Communication Very Average Too long distance just a month back joined a company and looking for Salary Growthif he relocate and open for the same CTC we can try', 99, '0000-00-00 00:00:00', 1),
(11733, 11608, 59, 2, 0, 'Having basis knowledge in JS Can be trained candidate need time to give his confirmation on the TxxampC if he comes back let us try ', 99, '0000-00-00 00:00:00', 1),
(11734, 11605, 59, 5, 0, 'Fresher Career Gap Having Medical Issue Spinal Problem preparing for bank exams will not sustain in a long for Sales Even she got some offer in telecalling and not joined due to health scenario', 99, '0000-00-00 00:00:00', 1),
(11735, 11610, 59, 5, 0, 'No Communication only back end Exp will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11736, 11611, 59, 2, 0, 'Looking for internship cum Employment or Project in Java Python They are in final semester yet to complete the graduation Need to confirm the profile', 99, '0000-00-00 00:00:00', 1),
(11737, 11612, 59, 2, 0, 'Looking For Internship Cum Employment Or Project In Java Python They Are In Final Semester Yet To Complete The Graduation Need To Confirm The Profile', 99, '0000-00-00 00:00:00', 1),
(11738, 11614, 59, 2, 0, 'Looking For Internship Cum Employment Or Project In Java Python They Are In Final Semester Yet To Complete The Graduation Need To Confirm The Profile', 99, '0000-00-00 00:00:00', 1),
(11739, 11615, 59, 2, 0, 'Looking For Internship Cum Employment Or Project In Java Python They Are In Final Semester Yet To Complete The Graduation Need To Confirm The Profile', 99, '0000-00-00 00:00:00', 1),
(11740, 11615, 59, 2, 0, 'Looking For Internship Cum Employment Or Project In Node They Are In Final Semester Yet To Complete The Graduation Need To Confirm The Profile', 59, '2022-12-29 07:20:42', 1),
(11741, 11614, 59, 2, 0, 'Looking For Internship Cum Employment Or Project In MERN They Are In Final Semester Yet To Complete The Graduation Need To Confirm The Profile', 59, '2022-12-29 07:21:06', 1),
(11742, 11598, 74, 7, 0, 'she is ok with the profile professionality, highly job need talk active and fit for team, sister working in govt oriented job,,,father in foreign and she is intrested in job also have laptop expected 10 to 11k kindly check once and confirm. immediate joining', 85, '0000-00-00 00:00:00', 1),
(11743, 11584, 59, 5, 0, 'Have basic knowledge in React their expectations are very high they have commitment of 3L payment to the institute post joining the job will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11744, 11609, 59, 5, 0, 'Have Basic Knowledge In React Their Expectations Are Very High They Have Commitment Of 3L Payment To The Institute Post Joining The Job Will Not Sustain And Not Suitable', 99, '0000-00-00 00:00:00', 1),
(11745, 11617, 59, 5, 0, 'Not open for TxxampC Sustainabilty Doubts on the profile', 99, '0000-00-00 00:00:00', 1),
(11746, 11619, 59, 2, 0, 'Having basic skills knowledge need to train a lot 36kms up and down need time to confirm with his parents if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11747, 11105, 24, 5, 0, 'rejected', 24, '2022-12-30 10:51:58', 1),
(11748, 11618, 59, 5, 0, 'Fresher just started learning python and the distance is too long need time to confirm on the TxxampC if he comes back let us check', 99, '0000-00-00 00:00:00', 1),
(11749, 11598, 59, 5, 0, 'Area Manager Round Reject', 74, '2022-12-30 05:20:34', 1),
(11750, 11626, 97, 5, 0, 'Has exp in direct sales .. no calling exp .. no understanding skills. and 1hr travel to our place', 99, '0000-00-00 00:00:00', 1),
(11751, 11620, 97, 5, 0, 'has yr of exp in mern. not much good xxamp sal expt too high... Sustainability doubts..', 99, '0000-00-00 00:00:00', 1),
(11752, 11633, 97, 5, 0, 'long distance 1hr travel .... no communication not suit for MIS ', 99, '0000-00-00 00:00:00', 1),
(11753, 11635, 59, 5, 0, 'Not much strong with basics too long distance and ready to relocate but his exp is high and will not sustain in our roles.long run doubts ', 99, '0000-00-00 00:00:00', 1),
(11754, 11639, 59, 5, 0, 'Looking for MIS Fresher Too long Distance Attitude issues salary exp is min 3.5 LPA not suitable ', 99, '0000-00-00 00:00:00', 1),
(11755, 11637, 59, 4, 0, 'Communication Ok 5050 Profile Have Field Sales Exp in Airtel Need to be trained a lot kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11756, 11632, 59, 3, 0, 'Selected for Sarath Team in Staff Role', 99, '0000-00-00 00:00:00', 1),
(11757, 11636, 59, 5, 0, 'Fresher MSc graduate and his min Exp is 25K and not ready to come down will not sustain in our roles', 99, '0000-00-00 00:00:00', 1),
(11758, 11604, 59, 5, 0, 'Fresher for IT Domain and his last drawn MCTC was 38K He is not ok with the pay like internship and Employment Salary also he will not sustain and will not join', 99, '0000-00-00 00:00:00', 1),
(11759, 11632, 51, 4, 0, 'ok with him', 59, '2023-01-02 03:18:00', 1),
(11760, 11646, 59, 5, 0, 'Not much strong with Basics Sustainability doubts in this profile not suitable', 99, '0000-00-00 00:00:00', 1),
(11761, 11587, 59, 3, 0, 'Selected for Thiyagarajan Team in Staff Role', 88, '2023-01-02 07:00:08', 1),
(11762, 11637, 44, 5, 0, 'NOt fit for sales', 59, '2023-01-02 07:29:14', 1),
(11763, 11581, 59, 2, 0, 'Have basic knowledge in the skills can be trained need to give his confirmation on the TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11764, 11632, 29, 7, 2, 'sarath team, sal 17k net, after 3 months 5 lac biz increase to 21k net salary', 51, '2023-01-03 11:14:49', 1),
(11765, 11651, 59, 5, 0, 'No Communication not open for telesales too appeared for MF but no basic ideas will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11766, 11650, 59, 5, 0, 'No communication need to open a lot no basic ideas in MIS and not suitable for other openings too ', 99, '0000-00-00 00:00:00', 1),
(11767, 11648, 59, 5, 0, 'No basic ideas in the skills will not sustain and handle our work not suitable', 99, '0000-00-00 00:00:00', 1),
(11768, 11647, 59, 5, 0, 'No basic ideas in Skills too long Distance not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11769, 11652, 59, 5, 0, 'Not much strong with the basics in python Came along with the Friends sustainability doubts on the profile Not much comfort with TxxampC', 85, '0000-00-00 00:00:00', 1),
(11770, 11653, 59, 5, 0, 'Not Much Strong With The Basics In Python Came Along With The Friends Sustainability Doubts On The Profile Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(11771, 11654, 59, 5, 0, 'Not Much Strong With The Basics In Python Came Along With The Friends Sustainability Doubts On The Profile Not Much Comfort With TxxampC', 85, '0000-00-00 00:00:00', 1),
(11772, 11632, 59, 3, 0, 'Selected for Sarath Team in Staff Role', 29, '2023-01-04 10:20:03', 1),
(11773, 11660, 59, 5, 0, 'Not open up No basic Skills also will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11774, 11642, 59, 5, 0, 'Fresher for IT Long Career Gap had his own business for 1.5 yrs not much strong with the basics Salary Exp is very high not suitable', 99, '0000-00-00 00:00:00', 1),
(11775, 11661, 59, 5, 0, 'Handicapped and Frequent Job Changes Handling our work and long run will not be. not suitable', 99, '0000-00-00 00:00:00', 1),
(11776, 11613, 59, 5, 0, 'Fresher for IT, Family need is there but not much comfortable in TxxampC sustainability Doubts on this Profile', 99, '0000-00-00 00:00:00', 1),
(11777, 11658, 59, 5, 0, 'Very high Salary Exp Fresher for our Sales Calls will not sustain in our roles and handle our pressure Communication is Good checked for operations too but Salary Exp is very high', 99, '0000-00-00 00:00:00', 1),
(11778, 11666, 59, 3, 0, 'Selected for Bhavani Team - Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11779, 11664, 59, 4, 0, 'Have 1 yr exp in Angular have basic knowledge in PHP Last drwan salary was 15K Need to negotiate and confirm before that need to analyse by giving him a task', 85, '0000-00-00 00:00:00', 1),
(11780, 11663, 59, 5, 0, 'Long Career Gap No Relevant Exp Will not sustain and handle Calls not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(11781, 11662, 59, 5, 0, 'Fresher no relevant Exp he was into QC Have a lot of personal Family issue will not have a focus into work will not sustain in long not suitable', 85, '0000-00-00 00:00:00', 1),
(11782, 11556, 29, 1, 0, NULL, 51, '2023-01-04 03:54:45', 1),
(11783, 11666, 100, 7, 0, 'communication ok, having sales experience also, candidate ok for our role. kindly check .', 59, '2023-01-04 05:09:02', 1),
(11784, 11664, 27, 5, 0, 'Not Complete the task', 59, '2023-01-04 05:35:06', 1),
(11785, 11627, 59, 5, 0, 'Very high Salary Package with 50K and not open to come down', 99, '0000-00-00 00:00:00', 1),
(11786, 11665, 59, 5, 0, 'Have Exp in Operations Calling Bit of Attitude final round reject by gokul.Doubtful Profile', 99, '0000-00-00 00:00:00', 1),
(11787, 11670, 59, 5, 0, 'Fresher not much strong in basics need to be trained a lot not much comfort in TxxampC Need time to confirm from his side if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11788, 11674, 59, 2, 0, 'Fresher for our sales not suitable for B2B can give a try in PC need to be trained salart exp is high candidate need time to give his confirmation on the profile if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11789, 11668, 74, 7, 0, 'she is ok with the profile completed BE civil and prepared for 2 years tnpsc and clared priliminary also and joined in ifb as a front desk after one year she releived due to tnpsc exam and not cleared ...6 month experience in byjuss as a telecaller in aakash institute 6 month bond basis completed bond on sep 2022 getting 10k last salary......voice claealy profiled set for my team expected 12.5k ---12k ok with the profile have laptop and joining monday is possible.....father department store shop in thanjavur and sister completed bE average family and good exposure have laptop kindly check and confirm once. completed 2 nd round and AM confirmed for on board', 85, '0000-00-00 00:00:00', 1),
(11790, 11600, 59, 3, 0, 'Selected for Manikandan team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(11791, 11676, 59, 5, 0, 'No basics will not sustain in our roles for a long not suitable', 99, '0000-00-00 00:00:00', 1),
(11792, 11668, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2023-01-05 12:48:31', 1),
(11793, 11675, 59, 3, 0, 'Selected for Sarath Team - PF PT', 85, '0000-00-00 00:00:00', 1),
(11794, 11666, 60, 1, 0, NULL, 100, '2023-01-05 05:15:23', 1),
(11795, 11600, 86, 4, 0, 'Selected for next Round', 59, '2023-01-05 05:56:13', 1),
(11796, 11675, 51, 4, 0, 'ok', 59, '2023-01-05 05:58:04', 1),
(11797, 11600, 18, 7, 4, 'Selected For Mani Team. Ready To Join On Monday Or Post Pongal. Salary Is 20k Net Take Home+ PF. ', 86, '2023-01-05 07:19:57', 1),
(11798, 11677, 59, 2, 0, 'Have a basic Python skills can be trained open for TxxampC need to schedule for final round with Gokul based on his availability', 99, '0000-00-00 00:00:00', 1),
(11799, 11678, 59, 5, 0, 'Have a knowledge in Oracle and focusing much in that for time being he is looking in react and no basic skills will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11800, 11692, 59, 5, 0, 'Not much open for Telecaller Sales looking for inbound calls will not handle the work pressure', 99, '0000-00-00 00:00:00', 1),
(11801, 11691, 59, 2, 0, 'appeared for React have exp in sales checked with 2nd round in IT manikandan but not suitable pushed him for sales too.he needs to come back with his confirmation', 99, '0000-00-00 00:00:00', 1),
(11802, 11600, 60, 1, 0, NULL, 18, '2023-01-06 10:59:37', 1),
(11803, 11693, 59, 5, 0, 'Fresher ,Preferred Java and salary Exp is very high not ready to come down not open for TxxampC not suitable', 99, '0000-00-00 00:00:00', 1),
(11804, 11695, 59, 5, 0, 'Not much good with the basics will not run in a long not suitable', 99, '0000-00-00 00:00:00', 1),
(11805, 11696, 59, 5, 0, 'Not suitable not open up will not sustain in our roles ', 99, '0000-00-00 00:00:00', 1),
(11806, 11697, 59, 5, 0, 'No Communication Career Gap not open up will not sustain and not suitable', 99, '0000-00-00 00:00:00', 1),
(11807, 11694, 59, 5, 0, 'Not much strong with the basics getting married in a year 2 EB are working in IT sustainability doubts in this profile not suitable', 99, '0000-00-00 00:00:00', 1),
(11808, 11606, 59, 2, 0, 'Fresher have 6 months internship Exp Having basic knowledge can give a try for our React open for TxxampC Based on Gokulxquots availability need to schedule him for the interview', 99, '0000-00-00 00:00:00', 1),
(11809, 11688, 97, 5, 0, 'Has Exp in sales ..1yr two companines .. no stability .. will not sustain in our roles\n', 99, '0000-00-00 00:00:00', 1),
(11810, 11690, 59, 5, 0, 'no basics in the skills will not get adapt with our work and not suitable', 85, '0000-00-00 00:00:00', 1),
(11811, 11698, 97, 5, 0, 'no communication .. for renewals .. she ok with sales again has exp too.. average convincing skills.. not suit for roles..', 85, '0000-00-00 00:00:00', 1),
(11812, 11701, 59, 4, 0, 'have a 3months internship know basics can analyse the candidate in Task kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11813, 11704, 59, 2, 0, 'Have basic skills in React having freelance exp open for TxxampC need to check with Gokul based on his availability', 60, '0000-00-00 00:00:00', 1),
(11814, 11701, 27, 1, 0, NULL, 59, '2023-01-06 04:59:02', 1),
(11815, 11675, 29, 7, 2, 'sarath team, ref resume for salary and increment', 51, '2023-01-06 06:11:13', 1),
(11816, 11706, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11817, 11709, 59, 5, 0, 'Fresher not strong with the basics, not much comfort with the TxxampC Long run doubts if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11818, 11710, 59, 5, 0, 'Not open for TxxampC No basic skills nothing learnt in the lst 2 months gap not suitable', 85, '0000-00-00 00:00:00', 1),
(11819, 11683, 59, 5, 0, 'Not answering any thing no basics skills too not suitable will not handle our work pressure', 99, '0000-00-00 00:00:00', 1),
(11820, 11593, 24, 4, 0, 'Select for next round 15k expected.. but fresher only.. worth for 13k..', 99, '0000-00-00 00:00:00', 1),
(11821, 11708, 59, 5, 0, 'Fresher Need to train a lot he was interested in several domain earlier worked in Cine Field Sustainability doubts Need time to confirm his profile,Bit Attitude not ready to accept seems to have a head weight', 99, '0000-00-00 00:00:00', 1),
(11822, 11593, 88, 7, 0, 'Selected for RE', 24, '2023-01-07 01:00:31', 1),
(11823, 11711, 59, 5, 0, 'Fresher have a basic knowledge in Java only,Tried for training but technical round reject by Gokul', 85, '0000-00-00 00:00:00', 1),
(11824, 11712, 59, 5, 0, 'Discussed and suggested the salary breakup and they were not ready alos looking for high salary', 85, '0000-00-00 00:00:00', 1),
(11825, 11713, 59, 4, 0, 'Fresher Communication Average Internal Team reference 5050 Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11826, 11714, 59, 3, 0, 'HRMS Issue Testing', 85, '0000-00-00 00:00:00', 1),
(11827, 11715, 59, 3, 0, 'Selected for Shanmugam Team in PF PT', 99, '0000-00-00 00:00:00', 1),
(11828, 11705, 59, 2, 0, 'Fresher need to train alot too long distance ready to relocate but not much comfort in TxxampC if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11829, 11688, 88, 7, 0, 'Selected for RE(16K take home)', 89, '2023-01-07 03:47:15', 1),
(11830, 11593, 59, 3, 0, 'Selected for Suthagar Team in Staff Role', 88, '2023-01-07 03:48:54', 1),
(11831, 11688, 59, 3, 0, 'Selected for Babu Team in PF/ESI/PT', 88, '2023-01-07 03:50:55', 1),
(11832, 11712, 57, 4, 1, 'candidate is ok he have 1yr experience bajaj finz , language and sales skills ok ,pls negotiate the salary and joining date', 59, '2023-01-07 04:06:21', 1),
(11833, 11714, 57, 4, 0, 'candidate is ok , kindly confirm the joining data and salary', 59, '2023-01-07 04:07:26', 1),
(11834, 11713, 57, 5, 0, 'fresher language and skills problem', 59, '2023-01-07 04:08:05', 1),
(11835, 11715, 29, 7, 3, 'shanmugam team, ref resume for salary and increment', 59, '2023-01-07 04:09:44', 1),
(11836, 11718, 59, 2, 0, 'Final Round Completed with Gokul Have Exp but not a relevant one Salary Exp is very high we have commited her 17K if she comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11837, 11719, 59, 5, 0, 'Fresher for IT not much strong with the basics in Python salary exp is high and not open for TxxampC', 99, '0000-00-00 00:00:00', 1),
(11838, 11684, 59, 5, 0, 'Not Active Seems to be slow in the pace have basic knowledge in python but suitability doubts on the profile', 99, '0000-00-00 00:00:00', 1),
(11839, 11722, 59, 5, 0, 'Fresher need to open a lot will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11840, 11723, 59, 5, 0, 'Too Long Distance looking for Core Java she is from Manali Married will not sustain', 85, '0000-00-00 00:00:00', 1),
(11841, 11724, 59, 5, 0, 'looking for Java and no basics in Javascript will not sustain not much comfort in TxxampC Family well settled Govt staff vAO', 85, '0000-00-00 00:00:00', 1),
(11842, 11726, 59, 5, 0, 'Have Telecalling Exp but in different domain and his current pay is 4 LPA for just 4 months exp not ready to come down will not join us', 85, '0000-00-00 00:00:00', 1),
(11843, 11720, 59, 5, 0, 'Attitude Not suitable for sales Telesales will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(11844, 11725, 59, 5, 0, 'Left without attending the interview\n', 85, '0000-00-00 00:00:00', 1),
(11845, 11454, 59, 5, 0, 'Not open up no communication will not handle our sales calls', 99, '0000-00-00 00:00:00', 1),
(11846, 11675, 59, 3, 0, 'Selected for Sarath Team - PF PT', 29, '2023-01-09 06:11:24', 1),
(11847, 11715, 59, 3, 0, 'Selected for Shanmugam Team in PF PT', 29, '2023-01-09 06:13:26', 1),
(11848, 11592, 59, 3, 0, '5M Intern 5 K then overall 3 yr SA 10 12K', 59, '2023-01-09 06:37:09', 1),
(11849, 11728, 59, 5, 0, 'Not Much comfort in TxxampC,sustaianability doubts not much strong with the basics too', 99, '0000-00-00 00:00:00', 1),
(11850, 11731, 59, 4, 0, 'Have Exp in Telecalling,5050 Can give a try in our RM Roles kindly check and let me know your interst', 99, '0000-00-00 00:00:00', 1),
(11851, 11735, 59, 5, 0, 'have exp xxamp interest in non voice process,will not sustain in Telecaller roles', 99, '0000-00-00 00:00:00', 1),
(11852, 11732, 59, 5, 0, 'have Solid Exp in sales but no open again looking for IT React JS ,sustainability doubts and his last drawn also high. Technical Round reject by Kaviya', 99, '0000-00-00 00:00:00', 1),
(11853, 11736, 59, 5, 0, 'No Sustainability in the previous Exp, not open up will not sustain and handle our work pressure', 99, '0000-00-00 00:00:00', 1),
(11854, 11737, 59, 2, 0, 'Candidate no basic skills knowledge but interested to learn can give a try Need time to confirm on the TxxampC if he comes bacnk let is try', 85, '0000-00-00 00:00:00', 1),
(11855, 11734, 24, 4, 0, 'Candidate selected for next round 13k salary..', 60, '0000-00-00 00:00:00', 1),
(11856, 11730, 59, 4, 0, 'Fresher not strong with PHP but have a 3 months internship earlier Ready to learn kindly check and let me know your inputs', 99, '0000-00-00 00:00:00', 1),
(11857, 11734, 88, 7, 0, 'Selected for RE', 24, '2023-01-10 02:37:01', 1),
(11858, 11738, 59, 5, 0, 'Have Exp in Telesales but in different Domain and also looking much for Non voice Process, Not suitablle for other openings\n', 60, '0000-00-00 00:00:00', 1),
(11859, 11730, 27, 1, 0, NULL, 59, '2023-01-10 03:14:24', 1),
(11860, 11731, 31, 5, 0, 'not suitable candidate', 59, '2023-01-10 03:55:36', 1),
(11861, 11739, 24, 4, 0, 'selected for next round, expect salary 13k', 85, '0000-00-00 00:00:00', 1),
(11862, 11741, 24, 2, 0, 'she is okay but she will discuss with family and update tomorrow', 99, '0000-00-00 00:00:00', 1),
(11863, 11739, 88, 7, 0, 'Selected for RE', 24, '2023-01-11 12:00:23', 1),
(11864, 11739, 59, 3, 0, 'Selected for Staff RoleErode Laocation RE', 88, '2023-01-11 12:11:36', 1),
(11865, 11734, 59, 3, 0, 'Selected fir Staff Role - Erode', 88, '2023-01-11 12:11:57', 1),
(11866, 11748, 59, 4, 0, 'Have telecalling Exp but will not sustain more than a year Engaged,Can give a try for your roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11867, 11747, 59, 5, 0, 'Too long distance huge career Gap Married and family commitments will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(11868, 11746, 59, 5, 0, 'Fresher For IT No Basic Skills Knowledge Not Much Comfort In TxxampC Will Not Sustain too long Distance ', 85, '0000-00-00 00:00:00', 1),
(11869, 11745, 59, 5, 0, 'Fresher For IT having Basic Skills Knowledge Not Much Comfort In TxxampC Will Not Sustain Too Long Distance ', 85, '0000-00-00 00:00:00', 1),
(11870, 11744, 59, 5, 0, 'Fresher for IT have Exp in Production no basic skills knowledge not much comfort in TxxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(11871, 11743, 59, 5, 0, 'Fresher For IT No Basic Skills Knowledge Not Much Comfort In TxxampC Will Not Sustain', 85, '0000-00-00 00:00:00', 1),
(11872, 11716, 59, 2, 0, 'Have Exp in Telecalling Can give a try for our sales but candidate need a time to confirm family need is there', 85, '0000-00-00 00:00:00', 1),
(11873, 11748, 11, 1, 0, NULL, 59, '2023-01-11 06:48:35', 1),
(11874, 11756, 59, 5, 0, 'Not open for Voice Process looking for non voice Process not suitable and no communication for non voice ', 99, '0000-00-00 00:00:00', 1),
(11875, 11750, 59, 5, 0, 'Fresher have basic knowledge in skills but the salary exp is very high need time to check with his family and confirm the terms if he comes back let us try', 99, '0000-00-00 00:00:00', 1),
(11876, 11754, 59, 5, 0, 'Family need is there he is currently earning 18K in home tution career Gap not much strong with the basics he will not able to join on our TxxampC ', 99, '0000-00-00 00:00:00', 1),
(11877, 11749, 59, 5, 0, 'Fresher need to train a lot not open for TxxampC will not sustain and not open for our roles', 99, '0000-00-00 00:00:00', 1),
(11878, 11755, 59, 5, 0, 'Have 6 months Exp in React But not much strong based on the 2nd round interview his focus is only on the salary and he is looking for change only for the salary growth will not sustain', 99, '0000-00-00 00:00:00', 1),
(11879, 11751, 59, 5, 0, 'Fresher no basics however we tried by giving for 2nd round on analysing the training required but got rejected in 2nd round with kavya', 85, '0000-00-00 00:00:00', 1),
(11880, 11758, 59, 5, 0, 'No Communication Need time to give her confirmation for the voice process if she comes should give a try', 60, '0000-00-00 00:00:00', 1),
(11881, 11759, 59, 4, 0, 'Having basic knowledge in PHP skills Sustainability need to check open for TxxampC but seems to be doubtful with his futuristic plans', 60, '0000-00-00 00:00:00', 1),
(11882, 11759, 27, 1, 0, NULL, 59, '2023-01-12 05:09:02', 1),
(11883, 11763, 97, 5, 0, 'No Communicaton... not suit for our role', 99, '0000-00-00 00:00:00', 1),
(11884, 11764, 97, 5, 0, 'fresher to or role .. too much attitude.. sal exp high .. not suitable for our profile...', 99, '0000-00-00 00:00:00', 1),
(11885, 11760, 97, 2, 0, '50-50 profile Has 3m of calling exp ..fresher to our role... communication ok.. have to give some training.. ', 99, '0000-00-00 00:00:00', 1),
(11886, 11765, 59, 5, 0, 'Left without attending the next level and i have given him a task to check his writing skills but left without any information\n', 99, '0000-00-00 00:00:00', 1),
(11887, 11714, 88, 7, 0, 'Selected for RE', 57, '2023-01-14 12:48:16', 1),
(11888, 11767, 59, 5, 0, 'Having internship Exp but not much strong with the basics not open for TxxampC will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(11889, 11769, 59, 5, 0, 'Almost7.8 yrs Exp in different domian totally fresher to the IT,Need to train a lot ,will not sustain due to lot of commitments Married and joining in the role of internship Employment for 3yrs will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11890, 11712, 88, 7, 0, 'Selected for RE', 57, '2023-01-16 01:06:36', 1),
(11891, 11714, 59, 3, 0, 'HRMS Issue Testing', 88, '2023-01-16 04:28:50', 1),
(11892, 11773, 59, 5, 0, 'Too long Distance Fresher for Python have Exp in PHP but not open for the same,Attitude Salary exp is high 60 Days notice not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(11893, 11712, 59, 5, 0, 'Discussed and suggested the salary breakup and they were not ready alos looking for high salary', 88, '2023-01-17 11:09:44', 1),
(11894, 11774, 59, 5, 0, 'Fresher for IT have Exp in teaching field long Career Gap due to marriage,no basics need to train from the beginning,Husband is into IT and high earnings will not sustain and not suitable\n', 85, '0000-00-00 00:00:00', 1),
(11895, 11775, 59, 2, 0, 'Fresher for IT have Exp in core Not much open for TxxampC if he comes back let us try ', 85, '0000-00-00 00:00:00', 1),
(11896, 11780, 59, 5, 0, 'No Sustainability 4 months 2 companies travelled this is the 3rd one salary Exp is very high than her exp will not sustain and not suitable\n', 85, '0000-00-00 00:00:00', 1),
(11897, 11777, 97, 4, 0, '50-50 Profile ...internal ref.. has some exp in collection .. long distance.. can be trained.. have sustainability doubts.. let you check and update your inputs..', 85, '0000-00-00 00:00:00', 1),
(11898, 11717, 59, 5, 0, 'No Communication Long Career Gap not suitable for Digital Marketing Checked for Telecalling but not open for that', 85, '0000-00-00 00:00:00', 1),
(11899, 11781, 59, 5, 0, 'Fresher for our Domain have 6 months Exp as ground staff,looking for IT but no basic skill knowledge checked for Telecalling but not open for that Salary Exp is very high for all the profiles will not sustain', 85, '0000-00-00 00:00:00', 1),
(11900, 11777, 57, 1, 0, NULL, 97, '2023-01-18 04:59:28', 1),
(11901, 11783, 59, 5, 0, 'Not open for TxxampC,Fresher for IT Min Salary Exp is very high as his freinds are into same React with pay around 20K will not sustain in our roles\n', 60, '0000-00-00 00:00:00', 1),
(11902, 11784, 59, 5, 0, 'Communication Average Have Exp in Calling for Loan Collections 5050 Can give a try for our sales but left without Attending the interview 2nd round\n', 60, '0000-00-00 00:00:00', 1),
(11903, 11786, 74, 5, 0, 'not fit for team non profile domin also not suite mechanical field only expected field', 60, '0000-00-00 00:00:00', 1),
(11904, 11788, 59, 3, 0, '7 days analysis then 5 month 5K and 3yrs 10-12K SA final round interviewed by Gokul', 85, '0000-00-00 00:00:00', 1),
(11905, 11800, 57, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11906, 11798, 57, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11907, 11802, 59, 4, 0, '5050 Profile have a very few months Calling Exp Sustainability doubts a lot kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11908, 11797, 59, 5, 0, 'Have 6 months Exp in Angular not much comfort in TxxampC seems to be slow Sustainability doubts not suitable \n', 85, '0000-00-00 00:00:00', 1),
(11909, 11802, 44, 5, 0, 'Not fit for sales', 59, '2023-01-23 07:01:41', 1),
(11910, 11806, 59, 5, 0, 'No ideas in the recruitment but worked for 6 months in recruitment,not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(11911, 11803, 59, 5, 0, 'no basics looking only for the salary growth will not sustain in a long run not much comfort in TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(11912, 11805, 59, 5, 0, 'No communication Sustainability and pressure handling doubts in our roles Not suitable\n', 85, '0000-00-00 00:00:00', 1),
(11913, 10409, 59, 5, 0, 'Fresher for our Domain looking for Recruiter role and not much comfort in sales and Salary Exp is very high already holds an offer for 40K', 85, '0000-00-00 00:00:00', 1),
(11914, 11813, 59, 5, 0, 'No Basic Skills Seems to be slow and will handle our work pressure not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(11915, 11814, 59, 5, 0, 'Fresher not open for TxxampC No basics Focusing only on the salary not suitable', 85, '0000-00-00 00:00:00', 1),
(11916, 11815, 59, 5, 0, 'No Communication Frequent job changes aged not suitable for our roles will not sustain and handle our work roles', 85, '0000-00-00 00:00:00', 1),
(11917, 11808, 24, 5, 0, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(11918, 11809, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 85, '0000-00-00 00:00:00', 1),
(11919, 11809, 74, 7, 0, 'she is suite for team and telecallng completing bca and father doing business have laptop and ready to join bit expected salary only expected 12k....fresher only kindly confirm once', 59, '2023-01-27 10:26:59', 1),
(11920, 11817, 59, 3, 0, 'Selected for Thanjavur Consultant role', 85, '0000-00-00 00:00:00', 1),
(11921, 11818, 59, 2, 0, 'Have Exp in Customer Support Backend Can be trained for our roles,need to conduct the final round with Gokul ', 85, '0000-00-00 00:00:00', 1),
(11922, 11819, 57, 5, 0, 'FIELD NOT INTERESTED', 85, '0000-00-00 00:00:00', 1),
(11923, 11820, 57, 5, 0, 'already have offer another company , fresher exp 16k', 85, '0000-00-00 00:00:00', 1),
(11924, 11817, 74, 7, 0, 'he is ok with the profile suite for telecalling and team also...completing bcom and part time 2 years experience in marketing....have laptop expected 11 to 12 k kindly confirm once from your side ', 59, '2023-01-27 05:05:25', 1),
(11925, 11817, 88, 7, 0, 'Selected For RE', 74, '2023-01-27 05:26:16', 1),
(11926, 11809, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2023-01-27 05:27:55', 1),
(11927, 11809, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 88, '2023-01-27 06:17:44', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(11928, 11817, 59, 3, 0, 'Selected for Thanjavur Consultant role', 88, '2023-01-27 06:18:14', 1),
(11929, 11823, 59, 4, 0, 'Fresher for our roles sustainability doubts in a long Communication ok 5050 Kindly check and let me know your ijnputs', 85, '0000-00-00 00:00:00', 1),
(11930, 11824, 59, 5, 0, 'Fresher for IT,Lot of Previous Exp in Calling but no sustainability,Looking out for bangalore will not sustain for a long in Chennai Not suitable', 85, '0000-00-00 00:00:00', 1),
(11931, 11822, 59, 5, 0, 'Discussed And Suggested The Salary Breakup And he Not Ready and Looking For High Salary', 85, '0000-00-00 00:00:00', 1),
(11932, 11828, 59, 5, 0, 'Need to complete her graduation final semester Holding several offers with good pay will not sustain and not suitable for our positions', 85, '0000-00-00 00:00:00', 1),
(11933, 11829, 59, 4, 0, 'Have a few months exp in calling sustainability doubts on the profile family need is there Can give a try kindly check and let me know your inputs\n', 85, '0000-00-00 00:00:00', 1),
(11934, 11829, 53, 1, 0, NULL, 59, '2023-01-30 03:09:32', 1),
(11935, 11822, 89, 7, 0, 'Selected ', 59, '2023-01-30 03:10:55', 1),
(11936, 11830, 51, 4, 0, 'completed', 85, '0000-00-00 00:00:00', 1),
(11937, 11823, 74, 1, 0, NULL, 59, '2023-01-30 03:45:30', 1),
(11938, 11833, 59, 3, 0, 'Selected for MIS Role by Gokul final round have 8 months exp in customer support then career Gap Salary Exp is min 15-16K TH,candidate didnt give his confirmation for joining', 85, '0000-00-00 00:00:00', 1),
(11939, 11834, 59, 2, 0, 'Have a long career Gap 5050 Interviewed by Banu in 2nd round Need to check for MF B2B too\n', 85, '0000-00-00 00:00:00', 1),
(11940, 11832, 59, 5, 0, 'Technical Round Rejected by Kaviya Fresher seems to be slow not suitable\n', 85, '0000-00-00 00:00:00', 1),
(11941, 11830, 29, 7, 3, 'sarath team, Refer salary detail in resume currently 25k net, from april 27k net if completed 2 lac in Feb and 2 lac in march.', 51, '2023-01-31 02:48:23', 1),
(11942, 11830, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 29, '2023-01-31 03:44:06', 1),
(11943, 10229, 59, 3, 0, 'Selected for Shanmugam sir Team with PF/PT', 29, '2023-01-31 04:40:20', 1),
(11944, 11822, 88, 7, 0, 'Selected for RE', 89, '2023-01-31 05:06:39', 1),
(11945, 11831, 59, 5, 0, 'Have 10 months Exp in IT Recruitment and looking for 23K CTC holding an offer for 20K,looking for a salary hike will not join and not suitable', 85, '0000-00-00 00:00:00', 1),
(11946, 11607, 59, 5, 0, 'Preparing for Polica exams and time being looking for a job will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11947, 11835, 24, 5, 0, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(11948, 11836, 74, 7, 0, 'she is ok with the profile have 1 and half year experience in tellecalling field hdfc loan process and stocks in good well marketing ...so fit for team and job also...father passed away brother working in marketing field ......have laptop and travel time half hour...expected salary 12 to 13k...kindly confirm once immediate joining...', 85, '0000-00-00 00:00:00', 1),
(11949, 11837, 59, 5, 0, 'Preparing For Polica Exams And Time Being Looking For A Job Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(11950, 11838, 59, 5, 0, 'Preparing For Polica Exams And Time Being Looking For A Job Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(11951, 11840, 59, 2, 0, 'Selected for MIS interviewed by Arun Herash and based onthe approval from Gokul Processed for joining Candidate yet to give his confirmation on the salary', 85, '0000-00-00 00:00:00', 1),
(11952, 11841, 59, 5, 0, 'Average Communication Lack of interest towards the work Long Career gap focus only on the salary will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(11953, 11842, 59, 5, 0, 'Communication was not clear Long Career Gap not much active will not sustain and handle our pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11954, 11843, 59, 5, 0, 'Have 6 months Exp in PHP but not much comfort in TxxampC Asked for a time to confirm but left without informing will not sustain', 85, '0000-00-00 00:00:00', 1),
(11955, 11844, 59, 2, 0, 'Have Exp in Star Health but too long distance need to have a background verification Caniddate need to come back wiht her confirmation', 85, '0000-00-00 00:00:00', 1),
(11956, 11845, 59, 2, 0, 'Have Exp in Calling Too long Distance need to check her previous exp Candidate need to come back with her confirmation', 85, '0000-00-00 00:00:00', 1),
(11957, 11846, 74, 5, 0, 'she is not ok with the profile not suit for team and sustainability issue also', 85, '0000-00-00 00:00:00', 1),
(11958, 11848, 59, 2, 0, 'Have Telecalling Exp In Collection Process Scheduled Them For F2F In Tnagar But They Didnt Turn Need To Check And Confirm Once.', 85, '0000-00-00 00:00:00', 1),
(11959, 11847, 59, 2, 0, 'Have telecalling Exp in Collection process Scheduled them for F2F in Tnagar but they didnt turn Need to check and confirm once.', 85, '0000-00-00 00:00:00', 1),
(11960, 11822, 59, 5, 0, 'Discussed And Suggested The Salary Breakup And he Not Ready and Looking For High Salary', 88, '2023-02-01 06:07:54', 1),
(11961, 11836, 59, 3, 0, 'Selected for Thanjavur - Consultant Role', 74, '2023-02-01 06:46:48', 1),
(11962, 11850, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11963, 11851, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11964, 11852, 59, 5, 0, 'have 1 yr exp in telecalling but nor open for Targets much thinking a lot on the same will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11965, 11857, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11966, 11858, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11967, 11859, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11968, 11860, 59, 4, 0, 'Fresher need to train a lot can give a try for our Roles 5050 kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11969, 11853, 59, 5, 0, 'Have basic knowledge in skills bu not much open for TxxampC Career Gap his BIL is into IT sustainability doubts a lot', 85, '0000-00-00 00:00:00', 1),
(11970, 11854, 59, 5, 0, 'Have Basic knowledge not much open with TxxampC Need time to give his confirmation if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11971, 11855, 59, 5, 0, 'Distance he feels to be long not much strong with the skills will not sustain in a long ', 85, '0000-00-00 00:00:00', 1),
(11972, 11856, 59, 2, 0, 'Need to check with gokul 2nd round interviewed by Manikandan not much strong in basics can be analysed in 7 days', 85, '0000-00-00 00:00:00', 1),
(11973, 11860, 57, 1, 0, NULL, 59, '2023-02-03 07:31:36', 1),
(11974, 11862, 59, 4, 0, '5050Profile have Exp in Insurance Domain age around 34 years no bike and laptop Kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(11975, 11861, 24, 5, 0, 'She was too scared for the target', 85, '0000-00-00 00:00:00', 1),
(11976, 11839, 59, 2, 0, 'Need to schedule for a virtual round have exp in telecalling credit card Sales Need to check with Karthika for ESales 30 days notice', 85, '0000-00-00 00:00:00', 1),
(11977, 11863, 59, 5, 0, 'Discussed And Suggested The Salary Breakup And They Were Not Ready Alos Looking For High Salary', 85, '0000-00-00 00:00:00', 1),
(11978, 11864, 59, 5, 0, 'Fresher for IT have 1 yr in Digital Marketing but the role played was not exactly into that lookin for IT but not open for Terms Need time to confirm with Parents if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(11979, 11865, 88, 7, 0, 'Selected for RE ', 85, '0000-00-00 00:00:00', 1),
(11980, 11863, 88, 7, 0, 'Selected for RE', 59, '2023-02-04 07:05:59', 1),
(11981, 11862, 71, 5, 0, 'rejected', 59, '2023-02-04 07:08:10', 1),
(11982, 11865, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 88, '2023-02-04 07:15:06', 1),
(11983, 11863, 59, 5, 0, 'Discussed And Suggested The Salary Breakup And They Were Not Ready Alos Looking For High Salary', 88, '2023-02-04 07:17:26', 1),
(11984, 11868, 89, 7, 0, 'Selected ', 85, '0000-00-00 00:00:00', 1),
(11985, 11869, 59, 5, 0, 'No understanding no communication not open at all will not handle our pressure', 85, '0000-00-00 00:00:00', 1),
(11986, 11871, 89, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(11987, 11872, 59, 5, 0, 'Too long Distance have communication but no sustainability in her prebvious Exp will not sustain not able to relocate', 85, '0000-00-00 00:00:00', 1),
(11988, 11873, 59, 5, 0, 'No sustainability Local Language Average Not open for Terms and conditions will not sustain in a long', 85, '0000-00-00 00:00:00', 1),
(11989, 11874, 59, 5, 0, 'No basic ideas in recruitment, no understanding and not open for terms will not sustain in our roles already we offered and he declined the same', 85, '0000-00-00 00:00:00', 1),
(11990, 11868, 88, 7, 0, 'Selected for RE ,Pancard details will be provided before salary credit', 89, '2023-02-07 05:47:36', 1),
(11991, 11840, 59, 3, 0, 'Selected for MIS Life Renewal in Staff Role', 59, '2023-02-08 12:38:07', 1),
(11992, 11870, 24, 4, 0, 'selected for next round expt salary 15k but not worth for 15k, 13k is okay for him and also need of analysis in 7 days', 85, '0000-00-00 00:00:00', 1),
(11993, 11878, 59, 2, 0, '5050 Need to groom a lot not sure with his sustainability but can give a try If candidate come back let us try', 85, '0000-00-00 00:00:00', 1),
(11994, 11879, 59, 5, 0, 'Focusing much on Data science will not sustain in a long in our roles will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(11995, 11870, 88, 1, 0, NULL, 24, '2023-02-08 04:52:01', 1),
(11996, 11741, 24, 5, 0, 'Not fit for our role', 24, '2023-02-08 04:52:28', 1),
(11997, 11868, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 88, '2023-02-09 11:40:51', 1),
(11998, 11883, 24, 5, 0, 'Rejected ', 85, '0000-00-00 00:00:00', 1),
(11999, 11885, 59, 4, 0, 'Have Exp in credit card sales 5050 for our roles can give a try kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12000, 11886, 59, 3, 0, 'We Offered Him In The Month Of November But Candidate Not Joined. Later In The Month Of Feb 2023 He Saw Our Job Post And Messaged Us .He Appeared Again And Got Selected For The Same Team - GK Sir', 60, '0000-00-00 00:00:00', 1),
(12001, 11885, 11, 1, 0, NULL, 59, '2023-02-10 11:07:04', 1),
(12002, 11890, 59, 4, 0, '5050 Profile Have basic calling exp seems to be doubtful kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12003, 11889, 59, 5, 0, 'No basic ideas in recruitment no communication will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12004, 11891, 59, 5, 0, 'No Communication not open for Telecalling looking for non voice process only', 85, '0000-00-00 00:00:00', 1),
(12005, 11899, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(12006, 11898, 59, 5, 0, 'No basic skills looking for salary growth Long Career Gap will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(12007, 11897, 59, 2, 0, 'Need to check for telephonic again no graduation long career gap 7yrs sustainability doubts ', 85, '0000-00-00 00:00:00', 1),
(12008, 11893, 59, 5, 0, 'No Communication no basic ideas in recruitment not open for Terms will not handle and sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(12009, 11899, 29, 7, 3, 'shanmugam team, sal 20k TH, can increase if 1.5 lac done in Feb, from march can increase 1500', 59, '2023-02-10 05:57:57', 1),
(12010, 11890, 57, 1, 0, NULL, 59, '2023-02-10 06:20:59', 1),
(12011, 11899, 59, 3, 0, 'Selected for Shanmugam Team with PF/PT', 29, '2023-02-11 12:01:48', 1),
(12012, 11906, 59, 3, 0, 'Communication Is Good Having Good Exp In Sales Souding Good For Our Profile But Fresher For Insurance Can Give A Try Looking For Lead Role Kindly Check And Let Me Know Your Interest Sir\n\nSelected for Manikandan Team with PF PT', 85, '0000-00-00 00:00:00', 1),
(12013, 11906, 18, 7, 0, 'Selected For Mani Team. 5L CTC and Immed Joiner', 59, '2023-02-15 10:44:04', 1),
(12014, 11906, 60, 1, 0, NULL, 18, '2023-02-15 10:46:39', 1),
(12015, 11910, 74, 7, 0, 'candidate suite for telecalling and job need also good comunicative skills....and ready to join immediately....have no laptop and ready arrange in future...expected 11 to 12 k kindly check and confirm once....already worked as a communicative teacher due to covid situation releived the job and two years unemplyoed only.....willing to work as a RJ but no opportunity in thanjavur not ready to go other cities...so kindly check once', 85, '0000-00-00 00:00:00', 1),
(12016, 11905, 59, 4, 0, 'Have Exp in Sales but not a relevant one Can be trained in our position kindly check and give your confirmation', 85, '0000-00-00 00:00:00', 1),
(12017, 11768, 59, 5, 0, 'Not much strong with the basics need time to give his confirmation on the TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12018, 11907, 59, 5, 0, 'Have Good Exp in Insurance but frequent job changes and now he is looking for loan or credit sales not much comfort to go again in insurance domain', 85, '0000-00-00 00:00:00', 1),
(12019, 11905, 71, 4, 0, 'selected', 59, '2023-02-15 05:22:34', 1),
(12020, 11260, 59, 5, 0, 'No Communication Have Non voice Exp Will not handle our work pressure and sustainability doubts not suitable', 85, '0000-00-00 00:00:00', 1),
(12021, 11912, 59, 5, 0, 'Have Basic Skills Family need is no Sustainability doubts not open for TxxampC Need time to check with family and confirm if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12022, 11913, 59, 3, 0, 'Selected for Santhosh Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(12023, 11914, 59, 5, 0, 'Have 3 months Exp in recruitment and his salary exp is very high.Not much strong with the recruitment Skills SustainabilityDoubts and he need time to confirm on the txxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12024, 11913, 71, 4, 0, 'selected', 59, '2023-02-16 05:24:13', 1),
(12025, 11915, 59, 5, 0, 'Not ready to join post selection for the profile ', 85, '0000-00-00 00:00:00', 1),
(12026, 11915, 53, 7, 0, 'having experience but looking childish, self reference only so need to check in training period. 50 50', 59, '2023-02-16 06:34:40', 1),
(12027, 11911, 59, 5, 0, 'Fresher for Python Not open for TxxampC Looking for Salary only already got offered with 18K 3yrs SA but not joined he is not open in Internship role also', 85, '0000-00-00 00:00:00', 1),
(12028, 11916, 59, 5, 0, 'Communication ok witten skills ok but not open for 2yrs SA and the timing also prefer 10 in the morning and 6 in the evening from porur Sustainability doubts if she come back let us try', 85, '0000-00-00 00:00:00', 1),
(12029, 11913, 18, 7, 0, 'Selected for Santosh Team. 3.5CTC. Immediate joiner. Vijayaraghavan Reference.', 71, '2023-02-17 05:44:25', 1),
(12030, 11905, 18, 8, 0, 'Saw his Resume and Rejected with arun', 71, '2023-02-17 05:46:47', 1),
(12031, 11910, 88, 7, 0, 'Selected for RE', 74, '2023-02-17 05:58:08', 1),
(12032, 11917, 97, 2, 0, 'Basic Knowledge In Html ,Css xxamp Js .. He Want To Discuss With His Parents about txxampc .. If He Come Let Us Try ', 85, '0000-00-00 00:00:00', 1),
(12033, 11921, 97, 4, 0, ' has 4m of exp in apartment sales. Fresher To Our Process. He can be trained. kindly update your feedback.', 85, '0000-00-00 00:00:00', 1),
(12034, 11922, 97, 5, 0, 'no commuication .. not suit for our role.', 85, '0000-00-00 00:00:00', 1),
(12035, 11923, 97, 5, 0, 'Has Various Job Experience .. Not Suit For Our Process.', 85, '0000-00-00 00:00:00', 1),
(12036, 11924, 11, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12037, 11921, 88, 7, 0, 'Select for RE. Have to validate during training period. ', 97, '2023-02-18 03:03:13', 1),
(12038, 11910, 59, 3, 0, 'Selected fr Thanjavur Consultant Role', 88, '2023-02-18 03:12:05', 1),
(12039, 11913, 60, 1, 0, NULL, 18, '2023-02-20 10:40:16', 1),
(12040, 11918, 59, 5, 0, 'Not Comfortable with the distance average Communication will not sustain and handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12041, 11926, 74, 5, 0, 'she is not fit for team and not suite for telecalling choosing only data entry like that job', 85, '0000-00-00 00:00:00', 1),
(12042, 11925, 74, 7, 0, 'she is ok with the profile and fit for team also...ready to join immediately..have laptop and expected 11 to 12 k......father passed away one elder brother unemployed ...have 2 rental house for the montly expenses.......4 month work in a data entry...and releived......have no pan card but ready apply immediately...kindly check once and confirm sir', 85, '0000-00-00 00:00:00', 1),
(12043, 11927, 74, 5, 0, 'she is not fit for team not active and ready to move any city any time so sustainability issue also', 85, '0000-00-00 00:00:00', 1),
(12044, 11929, 59, 3, 0, 'Selected for B2B Need to analyse in 7 days in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12045, 11930, 59, 5, 0, 'Not showing interest in the job will not sustain and handle the pressure', 85, '0000-00-00 00:00:00', 1),
(12046, 11925, 88, 7, 0, 'Selected For RE, Doesnxquott Have Aspiration For Money Earning More.Have To Check On Training Session.', 74, '2023-02-20 04:07:13', 1),
(12047, 11932, 59, 2, 0, 'Final round interviewed by gokul and the profile is on hold Pressure handling and not seems to be fast will check after a week her friend got seleceted ', 85, '0000-00-00 00:00:00', 1),
(12048, 11931, 59, 3, 0, 'Selected for Recruiter role final round interviewed by gokul communication is good can be trained for Recruitment 3months intern 7.5K stipend then 13-15 overall 2yrs SA No certificate', 85, '0000-00-00 00:00:00', 1),
(12049, 11929, 53, 7, 0, 'having experience will suit for b2b, but coming from long distance 50 50, will check and decide n training period.', 59, '2023-02-20 07:15:36', 1),
(12050, 11925, 59, 3, 0, 'Selected for Thanjavur Role - Consultant ', 88, '2023-02-20 07:24:20', 1),
(12051, 11901, 59, 3, 0, 'Selected for Backend Health Renewal need to analyse in 7 days', 85, '0000-00-00 00:00:00', 1),
(12052, 11921, 59, 3, 0, 'Selected for Suthagar Team Spencer in Consultant Role', 88, '2023-02-20 07:32:58', 1),
(12053, 11933, 59, 5, 0, 'No Communication no basics will not handle the pressure', 85, '0000-00-00 00:00:00', 1),
(12054, 11935, 59, 4, 0, 'Long Career Gap Team Apna Data reference sustainability and pressure handling doubts kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(12055, 11936, 59, 5, 0, 'No proper response discussed on the salary and she requested time to confirm with parents but didnt turn and not responding the calls too', 85, '0000-00-00 00:00:00', 1),
(12056, 11937, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12057, 11938, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12058, 11939, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12059, 11940, 59, 5, 0, 'Not suitable will not travel will not handle the pressure ', 85, '0000-00-00 00:00:00', 1),
(12060, 11942, 59, 3, 0, 'Selected for B2B in Consultant Role Need to Analyse in 7 days training', 85, '0000-00-00 00:00:00', 1),
(12061, 11943, 59, 4, 0, 'have exp in inbound for an year but no sure with outbound sustainability doubts kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12062, 11944, 59, 5, 0, 'not open for our sales, 10yrs exp in other domain not suitable', 85, '0000-00-00 00:00:00', 1),
(12063, 11942, 53, 7, 0, 'selected for b2b. pls cnfrm the sal and DOJ', 59, '2023-02-21 06:42:00', 1),
(12064, 11943, 53, 1, 0, NULL, 59, '2023-02-21 06:42:52', 1),
(12065, 11936, 88, 7, 0, 'Need to check on Pressure handling, Selected for RE', 59, '2023-02-21 06:48:17', 1),
(12066, 11935, 88, 1, 0, NULL, 59, '2023-02-21 06:49:25', 1),
(12067, 11936, 59, 5, 0, 'No proper response discussed on the salary and she requested time to confirm with parents but didnt turn and not responding the calls too', 88, '2023-02-22 01:39:43', 1),
(12068, 11902, 59, 5, 0, 'Not open for Field Visit,have exp in KYC verification will not sustain and handle our sales pressure not suitabl', 60, '0000-00-00 00:00:00', 1),
(12069, 11946, 59, 3, 0, 'Selected for Babu Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(12070, 11948, 59, 5, 0, 'Looking for IT recruitment only and the current Salary is 3.5 LPA not suitable', 60, '0000-00-00 00:00:00', 1),
(12071, 11947, 59, 5, 0, 'Not open for Field Sales Telecalling will not sustain no sustainability in the previous exp Not suitable', 60, '0000-00-00 00:00:00', 1),
(12072, 11949, 59, 5, 0, 'No Communication Not open for Sales Calling Not suitable for our MIS operations roles', 60, '0000-00-00 00:00:00', 1),
(12073, 11946, 89, 7, 0, 'Selected ', 59, '2023-02-22 03:15:19', 1),
(12074, 11942, 59, 3, 0, 'Selected for B2B in Consultant Role Need to Analyse in 7 days training', 53, '2023-02-22 03:25:04', 1),
(12075, 11929, 59, 3, 0, 'Selected for B2B Need to analyse in 7 days in Consultant Role', 53, '2023-02-22 03:26:37', 1),
(12076, 11915, 59, 5, 0, 'Not ready to join post selection for the profile ', 53, '2023-02-22 03:29:05', 1),
(12077, 11953, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(12078, 11953, 57, 4, 0, 'Candidate is ok , already she is have 3years exp for telecalling, ', 59, '2023-02-22 07:09:40', 1),
(12079, 11951, 59, 2, 0, 'Not much knowledge in Recruitment need to be trained a lot distance need to focus need confirmation from candidate on TxxampC 2nd round interviewed by gokul', 85, '0000-00-00 00:00:00', 1),
(12080, 11952, 59, 2, 0, 'Came for Voice Process suthagar reference but not open for sales voice have exp in non voice and much focus on that Salary need to think and bit attitude Gokul need to have the final round', 85, '0000-00-00 00:00:00', 1),
(12081, 11955, 59, 5, 0, '8 yrs admin exp communication not clear having health issue will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12082, 11956, 59, 3, 0, 'Selected for Suthagar Team', 85, '0000-00-00 00:00:00', 1),
(12083, 11956, 88, 7, 0, 'Selected for RE based on the experience', 59, '2023-02-23 07:09:30', 1),
(12084, 11946, 88, 7, 0, 'Based on Core Experience , Selected for RE...', 89, '2023-02-24 11:13:44', 1),
(12085, 11957, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12086, 11958, 59, 5, 0, 'Yet To Complete Their Graduation Still 4 Months To Go', 85, '0000-00-00 00:00:00', 1),
(12087, 11959, 59, 5, 0, 'Yet To Complete Their Graduation Still 4 Months To Go', 85, '0000-00-00 00:00:00', 1),
(12088, 11960, 59, 3, 0, 'Selected for GK sir Tem with Commtment 2L in 1 month', 85, '0000-00-00 00:00:00', 1),
(12089, 11961, 59, 5, 0, 'Too long Distance no basic skills will not sustain', 85, '0000-00-00 00:00:00', 1),
(12090, 11953, 88, 7, 0, 'Selected for RE based on Communication xxamp obeservation Skill', 57, '2023-02-24 02:55:06', 1),
(12091, 11962, 42, 4, 0, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12092, 11962, 30, 4, 0, 'Cross check previous company CTC and he is ok with previous CTC and confirm the joining', 42, '2023-02-24 03:21:21', 1),
(12093, 11962, 59, 5, 0, 'HR Round Reject Had a initial discussion but there is no response later ', 30, '2023-02-24 03:27:27', 1),
(12094, 11956, 59, 3, 0, 'Selected for Suthagar Team', 88, '2023-02-24 03:44:06', 1),
(12095, 11957, 53, 7, 0, 'shortlisted for B2B', 59, '2023-02-24 07:48:48', 1),
(12096, 11960, 31, 7, 4, 'candidate okay ', 59, '2023-02-24 07:55:52', 1),
(12097, 11964, 59, 5, 0, 'Long back 1 yr Exp career Gp in between looking for IT openings but will not sustain not more than a year', 85, '0000-00-00 00:00:00', 1),
(12098, 11960, 29, 7, 2, 'gk team', 31, '2023-02-25 07:01:20', 1),
(12099, 11963, 74, 7, 0, 'HAVE PAN CARD - he is ok with the profile.....speaked well...and need a job in high priority...father passed ....now in mid of thanjavur 30 mins travel....and mother work in school as sathunavu amaipalar.....recover critical ilness ...now she in home only.......so candidate job need and permorming good also..fresher....expected 11 to 12k...and have laptop immediate joining...', 85, '0000-00-00 00:00:00', 1),
(12100, 11965, 74, 5, 0, 'not fit for team voice not have the flow .....struggle to speak fluently...', 85, '0000-00-00 00:00:00', 1),
(12101, 11968, 59, 4, 0, 'Communicaiton Ok have Exp in Tracttor Sales can give a try for our roles kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12102, 11976, 59, 3, 0, 'Selected for Suthagar Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12103, 11975, 59, 5, 0, 'Too long Distance no basics in Web development not suitable looking for Testing only', 85, '0000-00-00 00:00:00', 1),
(12104, 11974, 59, 5, 0, 'Too Long Distance No Basics In Web Development Not Suitable Looking For Testing Only', 85, '0000-00-00 00:00:00', 1),
(12105, 11963, 88, 7, 0, 'Candidate seems to be confident,Selected for RE', 74, '2023-02-27 12:33:52', 1),
(12106, 11977, 59, 2, 0, 'Need to come back with her confrmation 2nd round interviewed by sathish IT and was on hold candidate looking for Telesales Profile too', 85, '0000-00-00 00:00:00', 1),
(12107, 11980, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12108, 11973, 59, 4, 0, '5050 Profile have exp in pharma sales kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12109, 11978, 59, 3, 0, 'Selected for Santhosh Team with PF/PT', 85, '0000-00-00 00:00:00', 1),
(12110, 11972, 59, 5, 0, 'Not open for Target not suitable', 85, '0000-00-00 00:00:00', 1),
(12111, 11957, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-02-27 04:24:07', 1),
(12112, 11979, 59, 2, 0, 'Have basic knowledge in NodeJS need time to confirm the TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12113, 11969, 59, 5, 0, 'Too long Distance 11 yrs in manufacturing sales not suitable will not take calls', 85, '0000-00-00 00:00:00', 1),
(12114, 11960, 59, 3, 0, 'Selected for GK sir Tem with Commtment 2L in 1 month', 29, '2023-02-27 06:15:15', 1),
(12115, 11968, 44, 1, 0, NULL, 59, '2023-02-27 07:08:22', 1),
(12116, 11978, 71, 4, 0, 'selected for next round ', 59, '2023-02-27 07:33:34', 1),
(12117, 11976, 88, 7, 0, 'Based on Core Exp, Selected for RE level', 59, '2023-02-27 07:34:11', 1),
(12118, 11973, 51, 5, 0, 'not ok with sales', 59, '2023-02-27 07:35:14', 1),
(12119, 11963, 59, 3, 0, 'Selected for Thanjavur - Consultant ', 88, '2023-02-27 07:36:31', 1),
(12120, 11976, 59, 3, 0, 'Selected for Suthagar Team in Consultant Role', 88, '2023-02-27 07:37:45', 1),
(12121, 11983, 59, 3, 0, 'Selected for ESales in Consultant ROle', 85, '0000-00-00 00:00:00', 1),
(12122, 11990, 59, 5, 0, 'Fresher having lot of reference outside will not run in a long self learned not much comfort with TxxampC', 85, '0000-00-00 00:00:00', 1),
(12123, 11989, 59, 4, 0, 'Have Exp in Calling 5050 Profile seems to be attitude kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12124, 11988, 59, 4, 0, 'Fresher for IT, Need to be trained 5050 kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12125, 11987, 59, 5, 0, 'Attitude will not sustain in our roles and handle not suitable', 85, '0000-00-00 00:00:00', 1),
(12126, 11985, 59, 4, 0, 'Fresher for Telecalling Sales interested to Learn but sustainability Pressure handling doubts kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12127, 11986, 59, 5, 0, 'Communicaiton Ok fresher for our roles left with out attending the 2nd level interview', 85, '0000-00-00 00:00:00', 1),
(12128, 11984, 59, 5, 0, 'Already attended and not open for TxxampC No basic knowledge too', 85, '0000-00-00 00:00:00', 1),
(12129, 11945, 59, 5, 0, 'Left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(12130, 11992, 59, 4, 0, 'Have Exp in Non voice Open for Telecalling sALES 5050 profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12131, 11953, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 88, '2023-02-28 04:22:42', 1),
(12132, 11978, 18, 7, 3, 'Selected for Santosh Team. Give 10% Hike from Current Salary. Joining date on 9th April', 71, '2023-02-28 05:25:32', 1),
(12133, 11983, 11, 7, 0, 'she is ok for E sales \njoining date 1st april', 59, '2023-02-28 07:18:44', 1),
(12134, 11988, 27, 1, 0, NULL, 59, '2023-02-28 07:22:58', 1),
(12135, 11989, 24, 5, 0, 'rejected, not suitable for our role', 59, '2023-02-28 07:25:05', 1),
(12136, 11992, 11, 1, 0, NULL, 59, '2023-02-28 07:28:16', 1),
(12137, 11985, 24, 5, 0, 'Rejected', 59, '2023-02-28 07:29:44', 1),
(12138, 11995, 74, 7, 0, 'she is ok with the profile flunecy in telecalling is good because of 1 year experience in royal enfiend queries handling ....and 2 years she is unemployed and past 3 month work in honda.....due to timing issue late night logout she releived the job...father farmer...4 girl child in home very poor family...and have laptop and ready to join immediately.....expected 12k...kindly check and confirm once....complted b tech in anna university and not intrested in IT field.....', 85, '0000-00-00 00:00:00', 1),
(12139, 11993, 59, 3, 0, 'Selected for Sarath Team PF/PT with Commitment 2L in march then 2K increment in April 2023', 85, '0000-00-00 00:00:00', 1),
(12140, 11966, 52, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12141, 11997, 59, 4, 0, 'Fresher Yet to complete her graduation have basic knowledge kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12142, 11995, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2023-03-01 05:57:35', 1),
(12143, 11997, 27, 1, 0, NULL, 59, '2023-03-02 12:15:57', 1),
(12144, 11993, 51, 4, 0, 'ok', 59, '2023-03-02 12:17:11', 1),
(12145, 11996, 59, 5, 0, 'No basics in Accounts looking only for the salary growth will not sustain and handle pressure if he comes back let us try later', 85, '0000-00-00 00:00:00', 1),
(12146, 11998, 59, 5, 0, 'Communication Average,no basics in reruitment will not handle our profiles not suitable', 85, '0000-00-00 00:00:00', 1),
(12147, 12000, 59, 4, 0, 'Fresher for IT have other Exp interested to learn open for TxxampC can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12148, 11946, 59, 3, 0, 'Selected for Babu Team in Staff Role', 88, '2023-03-02 02:56:25', 1),
(12149, 11995, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 88, '2023-03-02 02:57:48', 1),
(12150, 12001, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12151, 12002, 59, 3, 0, 'Selected for Banu Team yet to confirm the role Staff or Consultant', 85, '0000-00-00 00:00:00', 1),
(12152, 12003, 59, 5, 0, 'Fresher for IT Long career gap No basic skills knowledge her sister in IT not open for TxxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(12153, 11993, 29, 7, 3, 'Sarath Team, Ref resume for sal xxamp changes in april', 51, '2023-03-02 06:33:30', 1),
(12154, 11993, 59, 3, 0, 'Selected for Sarath Team PF/PT with Commitment 2L in march then 2K increment in April 2023', 29, '2023-03-02 07:05:11', 1),
(12155, 12000, 27, 1, 0, NULL, 59, '2023-03-02 07:07:14', 1),
(12156, 12001, 53, 7, 0, 'Fresher but good communication and confidence speech. but she compelted IT course and searching it related job, due to her family situation she s joining telecalling. Will try 50 50. we can give 12k as TH', 59, '2023-03-02 07:08:48', 1),
(12157, 12002, 53, 7, 0, 'having 1.5yrs experience, ok for b2b, last salary 15k TH, we can provide 16k as TH', 59, '2023-03-02 07:09:41', 1),
(12158, 12002, 59, 3, 0, 'Selected for Banu Team yet to confirm the role Staff or Consultant', 53, '2023-03-03 12:33:24', 1),
(12159, 12001, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-03-03 12:36:24', 1),
(12160, 12004, 59, 5, 0, 'Holding an offer for 4LPA with Mphasis,since its taking time to join looking for someother opportunities with 3-3.5 LPA Fresher candidate too', 85, '0000-00-00 00:00:00', 1),
(12161, 12009, 59, 4, 0, 'Communication Average not seems to be suitable no sustainability in his previous exp own reference do check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12162, 12008, 59, 3, 0, 'Selected for Consultant Role in B2B', 85, '0000-00-00 00:00:00', 1),
(12163, 12005, 59, 5, 0, 'fresher need to train a lot Not open for TxxampC already rejected other offer due to SA', 85, '0000-00-00 00:00:00', 1),
(12164, 11983, 29, 7, 3, 'esales RM karthika team, joining april 1st week', 11, '2023-03-04 06:46:59', 1),
(12165, 12008, 53, 7, 0, 'Selected for b2b', 59, '2023-03-04 06:55:15', 1),
(12166, 12009, 53, 1, 0, NULL, 59, '2023-03-04 06:56:24', 1),
(12167, 12008, 59, 3, 0, 'Selected for Consultant Role in B2B', 53, '2023-03-06 03:12:02', 1),
(12168, 12007, 59, 5, 0, 'Fresher no basics in PHP need to train a lot not open for TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12169, 12013, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12170, 12013, 53, 7, 0, 'selected for b2b.', 59, '2023-03-06 07:05:24', 1),
(12171, 12014, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12172, 12011, 59, 5, 0, 'have 6 months exp in recruitment already holds an offer with several companies min exp 20K will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12173, 12015, 59, 2, 0, 'Fresher for Recruitment need to train alot can give a try for recruitment if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12174, 12012, 59, 5, 0, 'Have 6 Months Exp In Recruitment Already Holds An Offer With Several Companies Min Exp 20K Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12175, 12016, 59, 2, 0, 'Fresher not much strong with the basics need to train a lot if he come back with the confirmation for TxxampC let us try', 85, '0000-00-00 00:00:00', 1),
(12176, 12017, 59, 2, 0, 'Fresher education yet to complete he is into final sem open for TxxampC but seems doubtful cam e along with friends sustaianability doubts if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12177, 12018, 59, 5, 0, 'have exp HDB looking for IT positions too not open for TxxampC Left without attending the 2nd level B2B interview', 85, '0000-00-00 00:00:00', 1),
(12178, 12019, 59, 5, 0, 'Attitude No graduation have Content writing Exp checked with Reyaz 2nd round and got rejected will not sustain in our other roles', 85, '0000-00-00 00:00:00', 1),
(12179, 12020, 59, 5, 0, 'No Basics skills just 3 months with 20K seems to be doubtful and will not sustain in our roles not suitable ', 85, '0000-00-00 00:00:00', 1),
(12180, 12021, 59, 2, 0, 'Fresher No basic skills ideas Can be trained candidate need time to check with his family and confirm Father in Egmore Head Constable Family in Chengalpet need to confirm if he comes back let us try\n', 85, '0000-00-00 00:00:00', 1),
(12181, 12022, 59, 4, 0, 'Communication Ok fresher for Digital marketing Content Writing having exposure is customer support inside sales but not interested to get back into the same,Can give a try for our Content Writer Profile kindly check and let me know your inputs ', 85, '0000-00-00 00:00:00', 1),
(12182, 12023, 97, 2, 0, 'average communication.. fresher to our role can be trained ..let us try ..', 85, '0000-00-00 00:00:00', 1),
(12183, 12024, 97, 5, 0, 'no clarity while talking ...not suit for our process..', 85, '0000-00-00 00:00:00', 1),
(12184, 12025, 97, 5, 0, 'married xxamp not much comfortable with our txxampc.. ', 85, '0000-00-00 00:00:00', 1),
(12185, 12022, 69, 1, 0, NULL, 59, '2023-03-09 06:50:42', 1),
(12186, 11983, 59, 3, 0, 'Selected for ESales in Consultant ROle', 29, '2023-03-09 06:51:34', 1),
(12187, 12023, 98, 1, 0, NULL, 97, '2023-03-09 07:49:40', 1),
(12188, 12023, 97, 4, 0, 'Average Communication.. Fresher To Our Role Can Be Trained ..Let Us Try ..', 97, '2023-03-09 07:49:40', 1),
(12189, 12027, 59, 5, 0, 'Fresher for IT have worked in Bahrain in different domain min exp in IT 10-15K and not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(12190, 12028, 59, 5, 0, 'Not suitable and no communication ', 85, '0000-00-00 00:00:00', 1),
(12191, 12029, 59, 5, 0, 'Fresher for IT have exposure in other domain not much comfirt in TxxampC if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12192, 12030, 59, 4, 0, 'Have PHP skills 6 yrs exp kindly give a task and check ', 85, '0000-00-00 00:00:00', 1),
(12193, 12031, 59, 2, 0, 'Communication is so good have few months expin recruitment non IT can be trained for our roles and his exp is min16K attended lot of interview and waiting for the feedback if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12194, 12030, 27, 1, 0, NULL, 59, '2023-03-10 06:57:10', 1),
(12195, 12026, 59, 5, 0, 'Fresher not much strong in basics he himself telling that he is good in practical knowledge 2nd round interviewed by Manikandan and was not comfortable in our profile will not sustain and not suitable', 60, '0000-00-00 00:00:00', 1),
(12196, 12033, 59, 4, 0, 'Fresher have exp in his core domain have basic knowledge in SQL can give a try for PHP kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(12197, 12034, 59, 2, 0, 'Fresher have exp in his core domain have a basic knowledge in Javascript an keen to learn both father and mum is govt teacher family need is not much sustainability in long run doubts manikandan interviewed and gave a positive feedback on the same', 60, '0000-00-00 00:00:00', 1),
(12198, 12035, 59, 2, 0, 'Fresher have knowledge in SQl Java and open for PHP learning but need time to check and confirm the TxxampC if he comes back let us try', 60, '0000-00-00 00:00:00', 1),
(12199, 12013, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-03-11 04:52:37', 1),
(12200, 12033, 27, 1, 0, NULL, 59, '2023-03-11 05:30:53', 1),
(12201, 12036, 59, 4, 0, 'Communication ok fresher for Digital MArketing can be trained kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12202, 12037, 59, 5, 0, 'Not open for TxxampC Not suitable', 85, '0000-00-00 00:00:00', 1),
(12203, 12038, 59, 2, 0, 'Selected for MIS Gokul final round age around 44 yrs but seems to good to handle the position Need to negotiate on the salary and to proceed with th final move', 85, '0000-00-00 00:00:00', 1),
(12204, 12040, 59, 5, 0, 'Too Long Distance he is in final year college will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12205, 12041, 59, 5, 0, 'Too Long distance not interested to go in the Javascript not much comfort in TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12206, 12042, 59, 5, 0, 'long career Gap not showing much interest on the job long back attended and got rejected on the same will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(12207, 11978, 60, 1, 0, NULL, 18, '2023-03-13 06:54:28', 1),
(12208, 12036, 69, 1, 0, NULL, 59, '2023-03-13 07:13:45', 1),
(12209, 12043, 59, 3, 0, 'Selected for GK Sir team in consultant Role', 85, '0000-00-00 00:00:00', 1),
(12210, 12044, 59, 5, 0, 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Asked him to submit the previous exp documents but nothing he has and also he is our exp employee Earlier feedback was not much good This is Banu reference', 85, '0000-00-00 00:00:00', 1),
(12211, 12045, 59, 5, 0, 'We offered him the package but candidate didnt turn with his confirmation not responded the calls too Banu Reference through Ex employee who appeared again', 85, '0000-00-00 00:00:00', 1),
(12212, 12051, 97, 4, 0, 'internal ref..50-50 Profile ..has 2yrs of exp in poorvika as a sales executive.. fresher to our process .kindly check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12213, 12048, 97, 5, 0, 'has 5m of exp in sales average in convincing .. ', 85, '0000-00-00 00:00:00', 1),
(12214, 12046, 59, 4, 0, '5050 Profile just 6 months calling Exp but not seems to be ok for our position reference profile kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12215, 12047, 59, 5, 0, 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Not Responded The Calls Too Banu Reference Through Ex Employee Who Appeared Again', 85, '0000-00-00 00:00:00', 1),
(12216, 12049, 59, 2, 0, 'Fresher looking for recruitment can be trained in our roles Need time to give her confirmation on TxxampC if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12217, 12051, 71, 5, 0, 'rejected', 97, '2023-03-14 06:52:23', 1),
(12218, 12043, 31, 4, 4, 'candidate okay forwarded for next round', 59, '2023-03-14 07:07:41', 1),
(12219, 12044, 53, 7, 0, 'selected for b2b', 59, '2023-03-14 07:13:35', 1),
(12220, 12045, 53, 7, 0, 'selected for b2b', 59, '2023-03-14 07:17:17', 1),
(12221, 12047, 53, 7, 0, 'selected for b2b', 59, '2023-03-14 07:19:01', 1),
(12222, 12046, 53, 5, 0, 'HAving 6 months experience, pronounciation problem', 59, '2023-03-14 07:20:08', 1),
(12223, 11877, 59, 3, 0, '3 months 6K then 3 months 8K then 10-15K 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(12224, 12052, 59, 5, 0, 'Fresher Long Career Gap Salary Exp is high looking much for banking exams will not sustain and handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12225, 12053, 59, 4, 0, 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12226, 12054, 59, 4, 0, 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12227, 12055, 59, 4, 0, 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12228, 12056, 59, 4, 0, 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12229, 12044, 59, 5, 0, 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Asked him to submit the previous exp documents but nothing he has and also he is our exp employee Earlier feedback was not much good This is Banu reference', 53, '2023-03-15 02:38:59', 1),
(12230, 12045, 59, 5, 0, 'We offered him the package but candidate didnt turn with his confirmation not responded the calls too Banu Reference through Ex employee who appeared again', 53, '2023-03-15 02:39:23', 1),
(12231, 12047, 59, 5, 0, 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Not Responded The Calls Too Banu Reference Through Ex Employee Who Appeared Again', 53, '2023-03-15 02:39:43', 1),
(12232, 12057, 59, 5, 0, 'No Communication seems not much active will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12233, 12058, 59, 5, 0, 'Too Long Distance Fresher for Telesales only field exp will not sustain', 85, '0000-00-00 00:00:00', 1),
(12234, 12059, 59, 5, 0, ' Too Long Distance Fresher For Telesales Only Field Exp Will Not Sustain', 85, '0000-00-00 00:00:00', 1),
(12235, 12060, 59, 4, 0, 'Communication too long distance salary pack is high no calling Exp kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12236, 11877, 27, 7, 0, 'Selected For HRMS Team. 6k For First 3 Months And 8k For 4 To 6 Months. 3 Years Service Agreement.', 59, '2023-03-15 08:43:58', 1),
(12237, 12053, 27, 1, 0, NULL, 59, '2023-03-15 08:44:37', 1),
(12238, 12055, 27, 1, 0, NULL, 59, '2023-03-15 08:44:52', 1),
(12239, 12054, 27, 1, 0, NULL, 59, '2023-03-15 08:45:11', 1),
(12240, 12056, 27, 1, 0, NULL, 59, '2023-03-15 08:45:25', 1),
(12241, 12060, 31, 5, 0, 'okay candidate. But dont have relevant industry experience and also expecting higher package.', 59, '2023-03-15 08:56:17', 1),
(12242, 12031, 59, 3, 0, 'Selected for Recruitment with PT only', 59, '2023-03-16 05:23:23', 1),
(12243, 12043, 29, 7, 2, 'PC - Gkji Team RM', 31, '2023-03-16 06:28:27', 1),
(12244, 12061, 59, 5, 0, 'Yet to complete her graduation no basics in PHP need to train if she come back with TxxampC will check India First Veeramani reference\n', 60, '0000-00-00 00:00:00', 1),
(12245, 12062, 59, 4, 0, 'Have Exp in Calling CARE Health insurance but seems to be slow pressure handling doubts a lot kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(12246, 12062, 53, 1, 0, NULL, 59, '2023-03-16 06:56:01', 1),
(12247, 12064, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12248, 12065, 59, 5, 0, 'Fresher no t much strong with the basics not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12249, 12066, 59, 5, 0, 'Fresher Not Much Strong With The Basics Not Open For TxxampC Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12250, 12068, 59, 5, 0, 'No Communication will not sustain and handle our work pressure not suitable ', 85, '0000-00-00 00:00:00', 1),
(12251, 12071, 59, 5, 0, 'Looking for Recruiter role no local language and the salary exp is very high will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(12252, 12079, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12253, 12078, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12254, 12069, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12255, 12067, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12256, 12072, 27, 7, 0, 'Selected for HRMS team. 6k for first 3 months and 8k for 4 to 6 months. 3 Years service agreement.', 85, '0000-00-00 00:00:00', 1),
(12257, 12074, 59, 3, 0, 'Selected for Reruitment interviewed by Gokul with the commitment for 6 months 1.2 LPA then based on performance 1.8 to 2 LPA', 85, '0000-00-00 00:00:00', 1),
(12258, 12043, 59, 3, 0, 'Selected for GK Sir team in consultant Role', 29, '2023-03-20 11:41:52', 1),
(12259, 12082, 59, 5, 0, 'Communication Average looking for recruitment but not much suits for the role will not handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12260, 12095, 97, 5, 0, 'fresher to our role sal expt high', 85, '0000-00-00 00:00:00', 1),
(12261, 12098, 59, 4, 0, '5050 Profile muh focused for non voice internal team reference open for Calling too kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12262, 12084, 59, 3, 0, 'Selected for B2B Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12263, 12085, 59, 3, 0, 'Selected for B2B Consultant Role ', 85, '0000-00-00 00:00:00', 1),
(12264, 12086, 97, 5, 0, 'has 8m of exp in Recruitment..communication good.. sustainbility doubts.. holding one offer and sal expt high.', 85, '0000-00-00 00:00:00', 1),
(12265, 12087, 97, 5, 0, 'has 1y3m of exp as a hR Executive . fresher to our role..sal expt high and he not ok with our txxampc... ', 85, '0000-00-00 00:00:00', 1),
(12266, 12089, 59, 5, 0, 'Not open for Calling not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(12267, 12083, 97, 4, 0, 'fresher .. average in convincing skills, need to be trained .. 50-50profile.. sustainbillity xxamp Pressure handling doubts..', 85, '0000-00-00 00:00:00', 1),
(12268, 12097, 97, 4, 0, 'has 3m of exp in renewals.. good in convincing skills.. sustainbility doubts .. need to check .. kindly review and update your inputs.', 85, '0000-00-00 00:00:00', 1),
(12269, 12093, 59, 5, 0, 'Need to open a lot sounding low for the profile will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12270, 12088, 59, 5, 0, 'Looking for backend but no communication will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12271, 12096, 59, 4, 0, '5050 profile sounding low for our roles internal reference kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12272, 12083, 53, 7, 0, 'selected fr b2b', 97, '2023-03-20 05:56:17', 1),
(12273, 12097, 88, 1, 0, NULL, 97, '2023-03-20 06:00:36', 1),
(12274, 12099, 59, 5, 0, 'Attended Job Fair and much focused with Teaching domain will not sustain more than a month just for office exposure he is looking but a good and neat candidate', 85, '0000-00-00 00:00:00', 1),
(12275, 12100, 59, 5, 0, 'Fresher Career Gap not much strong with the basics will not sustain and not open for Terms and conditions', 85, '0000-00-00 00:00:00', 1),
(12276, 12101, 59, 3, 0, '3 months 6K then 3 months 8K then 10-15K 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(12277, 12102, 59, 4, 0, 'Fresher 5050 profile have basic knowledge can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12278, 12103, 59, 4, 0, 'Fresher have basic knowledge in MySQL 5050 profile for us kindly check and let me know your inputs on the same ', 85, '0000-00-00 00:00:00', 1),
(12279, 12104, 59, 5, 0, 'Fresher Not Much Strong With The Basics Not Open For TxxampC Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12280, 12105, 59, 5, 0, 'Communication very average not much good with MIS but the salary Pack and expectation is high will not sustain and not suitable ', 85, '0000-00-00 00:00:00', 1),
(12281, 12106, 53, 5, 0, 'not suit for telecalling', 85, '0000-00-00 00:00:00', 1),
(12282, 12107, 59, 5, 0, 'Fresher for IT Career Gap have a reference in Tier level companies will not sustain in a long family is looking for marriage proposals have intern exposure in Python for 8 months 8K stipend', 85, '0000-00-00 00:00:00', 1),
(12283, 12108, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12284, 12109, 59, 5, 0, 'Fresher not much strong with the basics not open for TxxampC will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12285, 12110, 59, 5, 0, 'Have Basic Skills not much active seems to be slow will not handle our work pressure not suitable\n', 85, '0000-00-00 00:00:00', 1),
(12286, 12111, 59, 5, 0, 'Not Strong with Basics already attended ang got rejected not open for TxxampC Not suitable', 85, '0000-00-00 00:00:00', 1),
(12287, 12112, 59, 3, 0, 'Selected for Mern need to confirm for React orNode after 7 days 2nd round with Kavya and final round with Gokul Min Stipend 8K ', 85, '0000-00-00 00:00:00', 1),
(12288, 12113, 59, 2, 0, 'Interestedto learn Python open for TxxampC will check with gokul and confirm', 85, '0000-00-00 00:00:00', 1),
(12289, 12101, 27, 7, 0, 'Selected For HRMS Team. 6k For First 3 Months And 8k For 4 To 6 Months. 3 Years Service Agreement.', 59, '2023-03-21 02:51:12', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(12290, 12103, 27, 1, 0, NULL, 59, '2023-03-21 03:55:24', 1),
(12291, 12102, 27, 1, 0, NULL, 59, '2023-03-21 03:59:17', 1),
(12292, 12085, 53, 7, 0, 'selected fr b2b', 59, '2023-03-21 04:04:22', 1),
(12293, 12084, 53, 7, 0, 'selected fr b2b', 59, '2023-03-21 04:05:39', 1),
(12294, 12096, 88, 1, 0, NULL, 59, '2023-03-21 04:36:30', 1),
(12295, 12098, 88, 1, 0, NULL, 59, '2023-03-21 04:37:40', 1),
(12296, 12083, 59, 3, 0, 'Selected for Banu Team', 53, '2023-03-21 05:29:30', 1),
(12297, 12084, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2023-03-21 05:29:54', 1),
(12298, 12085, 59, 3, 0, 'Selected for B2B Consultant Role ', 53, '2023-03-21 05:30:42', 1),
(12299, 12114, 59, 5, 0, 'Long Career Gap Father is Sub Inspector and not much comfort with TxxampC if she come back let us try and sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(12300, 12116, 59, 5, 0, 'Not open for TxxampC Fresher Not Much strong with the basics much comfort to work in Java', 85, '0000-00-00 00:00:00', 1),
(12301, 12122, 59, 5, 0, 'No Skills Career Gap No local language difficult to understand will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12302, 12126, 59, 5, 0, 'Have Exp but not a relevant Too long Distance will not handle our pressure left without attending the 2nd level inteview', 85, '0000-00-00 00:00:00', 1),
(12303, 12123, 59, 5, 0, 'No Skills Career Gap No Local Language Difficult To Understand Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12304, 12125, 59, 5, 0, 'Too long distance for sales sounding low wil not run in along pressure handling doubts', 85, '0000-00-00 00:00:00', 1),
(12305, 11971, 97, 5, 0, 'not suit for our process ... long run doubts', 85, '0000-00-00 00:00:00', 1),
(12306, 12115, 97, 4, 0, 'From tambaram ready to relocate..has 6m of direct sales exp.. good in convicing skills .. long run doubts..can give a try ..check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12307, 12140, 59, 5, 0, 'Fresher not open for TxxampC Min Salary Exp is 25K have a reference in Zoho and continously looking for Zoho will not sustain', 85, '0000-00-00 00:00:00', 1),
(12308, 12138, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12309, 12137, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12310, 12136, 97, 5, 0, 'have basic skills html ,cssxxamp js..not ok with our txxampc.. ', 85, '0000-00-00 00:00:00', 1),
(12311, 12133, 97, 5, 0, 'he is intersted in buss. sustainbility doubts.', 85, '0000-00-00 00:00:00', 1),
(12312, 12132, 59, 5, 0, 'Not Strong with the basic skills have exp in UI for 10 months not much comfort in TxxampC Will not sustain and handle work pressure no not suitable', 85, '0000-00-00 00:00:00', 1),
(12313, 12131, 59, 5, 0, 'No basic skills knowledge will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12314, 12130, 97, 5, 0, 'have basic skills in prog.lau .. he want to discuss with his family .. if he come back.. let us try', 85, '0000-00-00 00:00:00', 1),
(12315, 12119, 59, 5, 0, 'Fresher Need to train alot Not much strong in the basics Came as a group not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12316, 12120, 59, 5, 0, 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', 85, '0000-00-00 00:00:00', 1),
(12317, 12121, 59, 5, 0, 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', 85, '0000-00-00 00:00:00', 1),
(12318, 12124, 59, 5, 0, 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', 85, '0000-00-00 00:00:00', 1),
(12319, 12134, 97, 5, 0, 'intersted in Front- end dev .. but not ok with our txxampc ..focusing on sal..', 85, '0000-00-00 00:00:00', 1),
(12320, 12115, 24, 5, 0, 'select for next round to Ramesh sir, but candidate absent for interview', 97, '2023-03-23 06:23:54', 1),
(12321, 12141, 59, 5, 0, 'no Basic skills looking for Devops and not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(12322, 12142, 59, 5, 0, 'Holding an offer for PHP with 15K after 3months intern just looking for some more opportunities will not join anf not suitable', 85, '0000-00-00 00:00:00', 1),
(12323, 12143, 59, 5, 0, '2nd round reject by manikandan no skills knowledge not suitable ', 85, '0000-00-00 00:00:00', 1),
(12324, 12144, 59, 5, 0, 'No Basic skills but the salary exp is high and not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12325, 12146, 59, 5, 0, '2nd time appearing for the interview remains the same no basic skills knowledge not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12326, 12148, 59, 5, 0, 'No basic ideas in JS will not sustain with us and not suitable ', 85, '0000-00-00 00:00:00', 1),
(12327, 12149, 59, 5, 0, 'Communication Average too long distance yet to complete his graduation not suitable\n', 85, '0000-00-00 00:00:00', 1),
(12328, 12151, 59, 2, 0, 'Eager to learn requested time to learn and come back in JS,if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12329, 12145, 59, 5, 0, 'Not open for TxxampC no basic knowledge will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12330, 12157, 59, 2, 0, 'Communicaiton Average Have Exp for 2yrs Final Sala Exp is 20K Need to come back with her confirmation', 85, '0000-00-00 00:00:00', 1),
(12331, 12158, 59, 5, 0, 'Communication Good Have Several Offers In Hand Sustainability Doubts With Us', 85, '0000-00-00 00:00:00', 1),
(12332, 12154, 59, 4, 0, 'Have Exp in teaching family need is there but 5050 internal reference kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12333, 12155, 59, 5, 0, 'Too long Distance no basic skills will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12334, 12156, 59, 5, 0, 'Fresher need to train a lot souding low if come back with confirmation on TxxampC let us check', 85, '0000-00-00 00:00:00', 1),
(12335, 12159, 59, 2, 0, 'Communication Good Salary Exp is min 20K just 3 months Exp if he comes back let us try Sustainability Doubts With Us', 85, '0000-00-00 00:00:00', 1),
(12336, 12117, 59, 3, 0, 'Selected for Suthagar Team 5050profile need to confirm Staff or consultant', 85, '0000-00-00 00:00:00', 1),
(12337, 12117, 24, 4, 0, 'select for next round.. 13k expected', 59, '2023-03-25 06:46:02', 1),
(12338, 12117, 88, 7, 0, 'Based on Candidate economic profile , selected for RE', 24, '2023-03-25 06:55:06', 1),
(12339, 12117, 59, 3, 0, 'Selected for Suthagar Team 5050profile need to confirm Staff or consultant', 88, '2023-03-25 07:02:14', 1),
(12340, 12154, 11, 1, 0, NULL, 59, '2023-03-25 07:03:09', 1),
(12341, 12147, 59, 2, 0, 'Selected for MIS Candidate yet to give his confirmation appeared fr HR then converted to MIS final round with Gokul', 85, '0000-00-00 00:00:00', 1),
(12342, 12152, 97, 5, 0, 'Not much strong in prog.skills ok with txxampc .sNR Rejected by kaviya ', 85, '0000-00-00 00:00:00', 1),
(12343, 12160, 97, 4, 0, 'has 4yrs 6m of exp in ins. sector.\nsal expt high .. kindly check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12344, 12161, 97, 5, 0, 'long distance .. 1yr exp as a full stack developer with 2.9lpa .. because of sal ..looking for job change expt min 6lpa.', 85, '0000-00-00 00:00:00', 1),
(12345, 12162, 59, 3, 0, 'Fresher interviewed by Gokul in the final round Career Gap can be trained in our roles', 85, '0000-00-00 00:00:00', 1),
(12346, 12163, 97, 5, 0, 'he much intersted in buss ... Not Ok With TxxampC ..not suit for role', 85, '0000-00-00 00:00:00', 1),
(12347, 12164, 97, 5, 0, 'long distance.. she not ok with our txxampc ..', 85, '0000-00-00 00:00:00', 1),
(12348, 12165, 97, 5, 0, 'attitude issue .. not suit for role', 85, '0000-00-00 00:00:00', 1),
(12349, 12166, 59, 3, 0, 'Selected for Flutter with 2 months 5K then 8K then overll 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(12350, 12167, 59, 5, 0, 'Final Round hold by Gokul not strong with the basic ideas pressure handling doubts in our role', 85, '0000-00-00 00:00:00', 1),
(12351, 12168, 59, 5, 0, 'No Basic Skills too long career Gap not suitableb Will Not Sustain In Our Roles', 85, '0000-00-00 00:00:00', 1),
(12352, 12169, 59, 5, 0, 'Long Career Gap 29yrs will get marry next year will not sustain', 85, '0000-00-00 00:00:00', 1),
(12353, 12170, 97, 5, 0, 'long distance .. not much good in skills and yet not complete his cls ..Not Ok With TxxampC ..', 85, '0000-00-00 00:00:00', 1),
(12354, 12171, 59, 5, 0, 'Not open for TxxampC have a basic skills but not much comfort', 85, '0000-00-00 00:00:00', 1),
(12355, 12172, 59, 3, 0, '3M 5K then 8K then overall 3yrs SA 2nd round interviewed by Tamilmani', 85, '0000-00-00 00:00:00', 1),
(12356, 12173, 59, 5, 0, 'No basic Skills will not sustain not suitable long run doubts with us', 85, '0000-00-00 00:00:00', 1),
(12357, 12174, 59, 5, 0, 'Have Basic skilss not much comfort in TxxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(12358, 12175, 59, 5, 0, 'Yet to complete his graduation will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(12359, 12176, 59, 5, 0, 'Yet To Complete His Graduation Will Not Sustain In Our Roles', 85, '0000-00-00 00:00:00', 1),
(12360, 12177, 59, 5, 0, 'Yet To Complete His Graduation Will Not Sustain In Our Roles', 85, '0000-00-00 00:00:00', 1),
(12361, 12178, 97, 5, 0, 'Long Distance..looking for backend ..no communication... not suit our roles.. ', 85, '0000-00-00 00:00:00', 1),
(12362, 12180, 97, 5, 0, 'long distance.. focusing on sal.. long run doubts. ', 85, '0000-00-00 00:00:00', 1),
(12363, 12181, 97, 2, 0, 'good in skills ..from erode ready to relocate.. snr interviewed by vishwa have to confirm with gokul for final round', 85, '0000-00-00 00:00:00', 1),
(12364, 12182, 97, 5, 0, 'looking for java developer....', 85, '0000-00-00 00:00:00', 1),
(12365, 12183, 59, 5, 0, 'Fresher have exp in core not much comfort in TxxampC need tme to confirm his interest if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12366, 12184, 59, 5, 0, 'Preferred to work in Java only not suitable', 85, '0000-00-00 00:00:00', 1),
(12367, 12185, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12368, 12186, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12369, 12187, 59, 3, 0, '1 month unpaid intern then 5months 6+8K Stipend then overall 3yrs SA Fresher no basic skills but can be trained', 85, '0000-00-00 00:00:00', 1),
(12370, 12188, 59, 5, 0, 'No basic skills need time to give his confirmation on TxxampC\n', 85, '0000-00-00 00:00:00', 1),
(12371, 12189, 59, 5, 0, 'Looking for Testing Profiles only ', 85, '0000-00-00 00:00:00', 1),
(12372, 12190, 59, 5, 0, 'Came for Job Fair and 2nd round interviewed by Manikandan not much skilled will not sustain need to get trained a lot ', 85, '0000-00-00 00:00:00', 1),
(12373, 12191, 59, 5, 0, 'Have Basic knowledge in the skills not much comfort with the TxxampC Sustainability Doubts on the profile', 85, '0000-00-00 00:00:00', 1),
(12374, 12192, 59, 5, 0, 'He is into treatment no Basic skills wil not sustain for a long with us not suitable', 85, '0000-00-00 00:00:00', 1),
(12375, 12193, 59, 5, 0, 'Have exp in different domain fresher for IT Have basic knowledge in Node but the expectations is high and not open for TxxampC and Internship', 85, '0000-00-00 00:00:00', 1),
(12376, 12160, 29, 1, 0, NULL, 97, '2023-03-28 06:58:14', 1),
(12377, 12201, 97, 5, 0, 'not suit for our roles xxamp long distance..', 85, '0000-00-00 00:00:00', 1),
(12378, 12206, 97, 5, 0, 'no communication xxamp long distance', 85, '0000-00-00 00:00:00', 1),
(12379, 12196, 59, 5, 0, 'Too long distance not comfort with the timing not suitable', 85, '0000-00-00 00:00:00', 1),
(12380, 12202, 97, 5, 0, 'long distance... focusing on sal ... long run doubts', 85, '0000-00-00 00:00:00', 1),
(12381, 12204, 97, 5, 0, 'not much good in prog.lau .. not ok with our txxampc', 85, '0000-00-00 00:00:00', 1),
(12382, 12205, 97, 5, 0, 'have to learn more .. long distance ', 85, '0000-00-00 00:00:00', 1),
(12383, 12199, 97, 5, 0, 'doing his course in accord one month more.. hv basic knowledge .. not ok with our txxampc..', 85, '0000-00-00 00:00:00', 1),
(12384, 12197, 97, 5, 0, 'Not Suit For Our Roles xxamp Long Distance..', 85, '0000-00-00 00:00:00', 1),
(12385, 12198, 59, 5, 0, 'Fresher not much strong with the basic skills need to train a lot if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12386, 12195, 59, 5, 0, 'Attended Job Fair looking much for Java Positions and no basic in Javascript candidate need to come back with his confirmation', 85, '0000-00-00 00:00:00', 1),
(12387, 12127, 59, 5, 0, 'communication Average no basic knowledge in MIS Preferred to be in non voice not suitable in our roles', 85, '0000-00-00 00:00:00', 1),
(12388, 12207, 74, 7, 0, 'suite for team already working in a telecalling field expected around 13k have laptop....due to father health issue cant move to outside and not intrested.....completed bE and ready to join immediately .......brother studies schooling only ....completed second round also kindly check once', 85, '0000-00-00 00:00:00', 1),
(12389, 12208, 97, 5, 0, 'long distance no communication\nnot suit for our roles', 85, '0000-00-00 00:00:00', 1),
(12390, 12209, 59, 5, 0, 'Not Strong with the basics poor understanding sustainability doubts in our role not suitable', 85, '0000-00-00 00:00:00', 1),
(12391, 12216, 97, 5, 0, 'looking for java dev.. ', 85, '0000-00-00 00:00:00', 1),
(12392, 12217, 97, 5, 0, 'not much good in skills xxamp not ok with our txxampc .. ', 85, '0000-00-00 00:00:00', 1),
(12393, 12218, 97, 2, 0, 'have knowledge in reactjs xxamp nodejs.. he want to confirm with his parents txxampc.. ', 85, '0000-00-00 00:00:00', 1),
(12394, 12213, 97, 4, 0, 'has health care exp ... tamil pronunciation is not gd. focusing on sal .. long run doubts...', 85, '0000-00-00 00:00:00', 1),
(12395, 12211, 59, 5, 0, 'Fresher for our domain SAlary exp is high will not sustain', 85, '0000-00-00 00:00:00', 1),
(12396, 12210, 59, 5, 0, 'too long Distance Not much comfort in TxxampC No basic skills not suitable', 85, '0000-00-00 00:00:00', 1),
(12397, 12212, 59, 5, 0, 'No Basic Skill Will not handle our work Pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12398, 12214, 59, 5, 0, 'Too long Distance not much comfrt in TxxampC ', 85, '0000-00-00 00:00:00', 1),
(12399, 12215, 59, 5, 0, 'Not much comfrt in TxxampC previous exp Terminated for continous leaves', 85, '0000-00-00 00:00:00', 1),
(12400, 12219, 59, 5, 0, 'Communication No Not strong witg Accounts 5050 if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(12401, 12221, 59, 3, 0, 'Selected for Mutual fund candidate communication is good final round interviewed by gokul candidate need to give her confirmation on Salary', 85, '0000-00-00 00:00:00', 1),
(12402, 12222, 59, 5, 0, 'Need time to check with family and confirm on TxxampC Sustainability doubts Salary exp high', 85, '0000-00-00 00:00:00', 1),
(12403, 12220, 59, 5, 0, 'Too long Distance Not open for TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12404, 12207, 88, 7, 0, 'Based on Telecalling Experiences, selected for RE role', 74, '2023-03-30 06:25:31', 1),
(12405, 12072, 60, 1, 0, NULL, 27, '2023-03-31 12:17:01', 1),
(12406, 12101, 60, 1, 0, NULL, 27, '2023-03-31 12:17:23', 1),
(12407, 11877, 60, 1, 0, NULL, 27, '2023-03-31 12:18:33', 1),
(12408, 12213, 24, 5, 0, 'Expection highe no experience is sales', 97, '2023-03-31 06:46:55', 1),
(12409, 9060, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12410, 12229, 59, 3, 0, 'Selected for Node/React,final round interviewed by gokuland selected Family need is there 3months 5K then 8K then Overall SA Node', 85, '0000-00-00 00:00:00', 1),
(12411, 12231, 59, 3, 0, 'Selected For FLutter,Final Round Interviewed By Gokul and Selected Need Is There 3months 5K Then 8K Then Overall SA ', 85, '0000-00-00 00:00:00', 1),
(12412, 12238, 59, 5, 0, 'No basic skills knowledge not suitable for our roles ', 85, '0000-00-00 00:00:00', 1),
(12413, 12224, 97, 5, 0, 'has 9m of exp in recruitment..sal expt too high', 85, '0000-00-00 00:00:00', 1),
(12414, 12228, 97, 5, 0, 'no job need ...sal expt high', 85, '0000-00-00 00:00:00', 1),
(12415, 12230, 97, 5, 0, 'long distance...has 3m of exp.. long run doubts', 85, '0000-00-00 00:00:00', 1),
(12416, 12232, 97, 5, 0, '. fresher to our role.. no communication.. sal expt high', 85, '0000-00-00 00:00:00', 1),
(12417, 12233, 97, 5, 0, 'looking for java', 85, '0000-00-00 00:00:00', 1),
(12418, 12234, 97, 5, 0, 'no job need ... intersted in java...', 85, '0000-00-00 00:00:00', 1),
(12419, 12235, 97, 5, 0, 'not much good in skills.. ', 85, '0000-00-00 00:00:00', 1),
(12420, 12236, 97, 5, 0, 'no communication ... not suit for our process', 85, '0000-00-00 00:00:00', 1),
(12421, 12207, 59, 3, 0, 'Selected for Thanjavur Team in Consultant Role', 88, '2023-04-01 02:53:40', 1),
(12422, 12243, 97, 5, 0, 'not much good in prog . lau... not comfort with our txxampc', 85, '0000-00-00 00:00:00', 1),
(12423, 12244, 97, 5, 0, 'no communication .. not suit for our roles', 85, '0000-00-00 00:00:00', 1),
(12424, 12245, 59, 3, 0, 'Selectd for MIS Renewals joining doubts as the candidate exp is very high have 1 yr exp in Non voice process but not a relevant one', 85, '0000-00-00 00:00:00', 1),
(12425, 12246, 59, 3, 0, 'Selected for Recruiter Role final round with Gokul candidate need to confirm her role Staff Consultant', 85, '0000-00-00 00:00:00', 1),
(12426, 12255, 59, 5, 0, 'Fresher Saalry Exp is very high Settled will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12427, 12240, 59, 5, 0, 'Communication Average sustainability doubts in our role Salary exp is very high being a fresher', 85, '0000-00-00 00:00:00', 1),
(12428, 12275, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12429, 12267, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12430, 12266, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12431, 12268, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12432, 12270, 59, 5, 0, 'No Communication not open for our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12433, 12263, 59, 5, 0, 'Need to come back with his confirmation too long distance need to relocate will not sustain and handle our pressure', 85, '0000-00-00 00:00:00', 1),
(12434, 12269, 97, 5, 0, '1yr3m of exp good communication sal expt high', 85, '0000-00-00 00:00:00', 1),
(12435, 12277, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12436, 12227, 59, 5, 0, 'Too long Distance not much strong in the basics not suitable', 85, '0000-00-00 00:00:00', 1),
(12437, 12251, 59, 5, 0, 'Long Career Gap Married and lot of personal issue will not sustain and handle our work roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12438, 12253, 59, 5, 0, 'Not open for TxxampC Need to learn a lot will not sustain and handle our workroles not suitable', 85, '0000-00-00 00:00:00', 1),
(12439, 12262, 59, 5, 0, 'not strong wiht the basics not suitable will not sustain in our roles', 85, '0000-00-00 00:00:00', 1),
(12440, 12259, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12441, 12256, 59, 5, 0, 'Need To Learn A Lot Will Not Sustain And Handle Our Work roles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12442, 12258, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Will Not Sustain And Handle Our Workroles Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12443, 12248, 97, 5, 0, 'not suit for our role.. ', 85, '0000-00-00 00:00:00', 1),
(12444, 12252, 59, 3, 0, 'Seleted for HR recruiter Fresher too long distance ready to relocate can give a try for our role final round interviewed by gokul', 85, '0000-00-00 00:00:00', 1),
(12445, 12278, 59, 4, 0, 'Have 3 months Exp in IT with high Salary 5L but layoff from the company and now looking for oppourtnities and ready to come down with the stipend kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12446, 12272, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12447, 12279, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12448, 12280, 97, 4, 0, 'Fresher for our role... can be trained Check and update your inputs..', 85, '0000-00-00 00:00:00', 1),
(12449, 12281, 97, 5, 0, 'Not Much Strong in HTMLxxampCSS, JS... ', 85, '0000-00-00 00:00:00', 1),
(12450, 12282, 97, 5, 0, 'not much good in prog lau. snr rejected by manikandan frontend', 85, '0000-00-00 00:00:00', 1),
(12451, 12283, 97, 5, 0, 'focusing on salary ...long run doubts', 85, '0000-00-00 00:00:00', 1),
(12452, 12284, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12453, 12290, 97, 5, 0, 'no communication not suit for roles', 85, '0000-00-00 00:00:00', 1),
(12454, 12289, 97, 5, 0, 'No Communication Not Suit For Roles', 85, '0000-00-00 00:00:00', 1),
(12455, 12288, 97, 5, 0, 'have financial problems... he is not ok with our txxampc', 85, '0000-00-00 00:00:00', 1),
(12456, 12278, 27, 1, 0, NULL, 59, '2023-04-05 07:20:26', 1),
(12457, 12280, 86, 5, 0, 'Not Satisfied', 97, '2023-04-05 07:44:33', 1),
(12458, 12292, 97, 5, 0, 'not suit for our role....', 85, '0000-00-00 00:00:00', 1),
(12459, 12293, 97, 5, 0, 'from guvi ..have basic knowledge...sal expt high long run doubts', 85, '0000-00-00 00:00:00', 1),
(12460, 12294, 97, 5, 0, 'have basic knowledge.. focusing on sal not ok with our txxampc', 85, '0000-00-00 00:00:00', 1),
(12461, 12295, 97, 5, 0, 'not much good in lau... not ok with txxampc', 85, '0000-00-00 00:00:00', 1),
(12462, 12297, 97, 4, 0, 'Fresher ... good Convincing skills.. job need .. have to check sustainability ...kindly check and update your feedback..', 85, '0000-00-00 00:00:00', 1),
(12463, 12298, 97, 4, 0, 'not open up ... have to train a lot... check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12464, 12301, 97, 4, 0, 'Has 2yrs.5m of exp in ins.Sales Good In Convincing.. Kindly Check And Update Your Feedback..', 85, '0000-00-00 00:00:00', 1),
(12465, 12299, 97, 5, 0, 'holding offer for 15k but not joined because of sal .. long run doubts..', 85, '0000-00-00 00:00:00', 1),
(12466, 12300, 97, 4, 0, 'has exp in sales good in convincing.. kindly check and update your inputs..', 85, '0000-00-00 00:00:00', 1),
(12467, 12300, 89, 7, 0, 'Selected ', 97, '2023-04-08 10:17:02', 1),
(12468, 12301, 24, 4, 0, 'selected expct salary 20k', 97, '2023-04-08 10:18:26', 1),
(12469, 12298, 16, 5, 0, 'not fit for sales', 97, '2023-04-08 10:20:27', 1),
(12470, 12297, 16, 7, 0, 'Good candidate ', 97, '2023-04-08 10:28:42', 1),
(12471, 12286, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12472, 12287, 42, 5, 0, 'Non performing in interview ', 85, '0000-00-00 00:00:00', 1),
(12473, 12301, 88, 7, 0, 'Based on the core Experience , selected for RE ', 24, '2023-04-08 01:29:45', 1),
(12474, 12309, 59, 5, 0, 'Not open for Sales no Communication not open for other Profiles too', 85, '0000-00-00 00:00:00', 1),
(12475, 12296, 59, 5, 0, '2nd round technical reject not suitable manikandan interviewed', 85, '0000-00-00 00:00:00', 1),
(12476, 12319, 59, 5, 0, 'Too long Distance not open fr TxxampC', 85, '0000-00-00 00:00:00', 1),
(12477, 12318, 59, 2, 0, 'should come for F2f if ok with TxxampC ', 85, '0000-00-00 00:00:00', 1),
(12478, 12317, 59, 4, 0, '5050 Profile have exp in sales but in credit card kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12479, 12305, 59, 5, 0, 'Not suitable for Recruitment Checked for MIS too but not much suitable', 85, '0000-00-00 00:00:00', 1),
(12480, 12312, 59, 5, 0, 'came along with his brother fresher need to learn a lot not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(12481, 12313, 59, 5, 0, 'Not open for TxxampC looking much in bangalore location will not sustain in our roeles', 85, '0000-00-00 00:00:00', 1),
(12482, 12303, 59, 5, 0, 'Not open for TxxampC Not ready to relocate will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(12483, 12311, 59, 5, 0, 'Need to learn a lot need to check with family on TxxampC ', 85, '0000-00-00 00:00:00', 1),
(12484, 12316, 59, 5, 0, 'Technical Round reject by herash not suitable', 85, '0000-00-00 00:00:00', 1),
(12485, 12310, 59, 5, 0, 'No basic ideas in recruitment No Communicaiton not suitable\n', 85, '0000-00-00 00:00:00', 1),
(12486, 12307, 59, 3, 0, 'selected for HR profile need to come back wiht her confirmation 15 days notice', 85, '0000-00-00 00:00:00', 1),
(12487, 12315, 97, 5, 0, 'interviewed by priyatharisini..\nfeedback: sal expt 5lpa .. long run doubts', 85, '0000-00-00 00:00:00', 1),
(12488, 12302, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12489, 12314, 59, 2, 0, 'Fresher need to come back with the confirmation on TxxampC can be trained in our MIS Herash 2nd interview done', 85, '0000-00-00 00:00:00', 1),
(12490, 12324, 59, 5, 0, 'Fresher have basic skills in UIUX not open for TxxampC if he comes back let us try his brother in flutter working', 85, '0000-00-00 00:00:00', 1),
(12491, 12325, 59, 5, 0, 'Yet to complete her graduation looking for Python will not sustain and she is an athlete', 85, '0000-00-00 00:00:00', 1),
(12492, 12326, 59, 3, 0, 'Selected for Santhosh Team in Staff Role, Not interviewed by Sriram as he was on a long leave but discussed and given him joining', 85, '0000-00-00 00:00:00', 1),
(12493, 12327, 59, 5, 0, 'No Communication not suitable for our other roles too', 85, '0000-00-00 00:00:00', 1),
(12494, 12328, 59, 4, 0, '5050 Profile have 3 months exp in calling but have sales exp in other domain kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12495, 12300, 88, 7, 0, 'Selected for RE', 89, '2023-04-08 04:16:01', 1),
(12496, 12300, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 88, '2023-04-08 05:20:11', 1),
(12497, 12301, 59, 3, 0, 'Selected for Suthagar Team in Consultant Role', 88, '2023-04-08 05:20:52', 1),
(12498, 12326, 71, 4, 0, 'selected', 59, '2023-04-08 05:31:55', 1),
(12499, 12328, 51, 5, 0, 'rejected', 59, '2023-04-08 06:24:58', 1),
(12500, 12317, 44, 1, 0, NULL, 59, '2023-04-08 06:36:45', 1),
(12501, 12326, 59, 3, 0, 'Selected for Santhosh Team in Staff Role, Not interviewed by Sriram as he was on a long leave but discussed and given him joining', 71, '2023-04-10 04:01:01', 1),
(12502, 12331, 59, 5, 0, 'Not open for Sales Callings looking much for inbound calling process no Pronunciation not suitable', 85, '0000-00-00 00:00:00', 1),
(12503, 12334, 59, 5, 0, 'Looking for Non Voice Process No Communication long career gap he was without work for 3+ yrs will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12504, 12332, 59, 5, 0, 'Yet to complete her graduation candidate is in final semester Pressure handling doubts will not sustain for long not suitable', 85, '0000-00-00 00:00:00', 1),
(12505, 12339, 59, 3, 0, 'Selected for Node Tamilmani Team with Stipend 3 months 6K then 2months 8K then overall 3yrs SA ', 85, '0000-00-00 00:00:00', 1),
(12506, 12341, 59, 3, 0, 'Selected for GK sir Team', 85, '0000-00-00 00:00:00', 1),
(12507, 12343, 59, 4, 0, '5050 Profile Have Exp In Byjus Communication Ok Internal Reference Salary Exp Is High Kindly Check And Let Me Know Your Inputs', 85, '0000-00-00 00:00:00', 1),
(12508, 12336, 59, 5, 0, 'Fresher Too long Distance Already referred in HP and the process is going on No ideas in JS will not sustain and not suitable\n', 85, '0000-00-00 00:00:00', 1),
(12509, 12341, 31, 4, 4, 'candidate okay forwarded to next level ', 59, '2023-04-10 05:37:17', 1),
(12510, 12343, 31, 5, 0, 'not interest to sell insurance ', 59, '2023-04-10 05:37:31', 1),
(12511, 12297, 88, 7, 0, 'Need to train xxamp selected for RE', 16, '2023-04-11 10:37:08', 1),
(12512, 12297, 59, 3, 0, 'Selected for Charles Team in Staff Role', 88, '2023-04-11 11:33:57', 1),
(12513, 12357, 59, 3, 0, 'Selected for GK sir team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(12514, 12356, 59, 5, 0, 'Not much with the Skills not much comfort inTxxampC will not sustain and handle our work Pressure', 85, '0000-00-00 00:00:00', 1),
(12515, 12355, 59, 2, 0, 'Need time to check with her family and confirm not much strong with the basics interested to learn can give a try', 85, '0000-00-00 00:00:00', 1),
(12516, 12329, 59, 5, 0, 'Not open for Saturday no basic ideas in the recruitment high Salary Exp', 85, '0000-00-00 00:00:00', 1),
(12517, 12350, 59, 5, 0, 'Not open for Sales Looking for Recruitment but no skills in recruitment long career Gap will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(12518, 12349, 59, 2, 0, '5050 Profile Interviewed by Gokul in the Final round not much suits but if he is ok for 1.8 LPA may try need to check for other Profiles later we can decide', 85, '0000-00-00 00:00:00', 1),
(12519, 12341, 29, 7, 2, 'Gkji team, i have given target / task for increase in salary after 2 months, once completing target, refer resume ', 31, '2023-04-11 05:53:31', 1),
(12520, 12363, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(12521, 12354, 59, 5, 0, 'No Basics Will not handle our work Pressure not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(12522, 12353, 59, 5, 0, 'Have Designing Skills seems to be settled family not much importance he too having a business mindset will not sustain in a long with us not suitable', 85, '0000-00-00 00:00:00', 1),
(12523, 12352, 59, 5, 0, 'Not much family need Salary Exp is high Will not sustain ', 85, '0000-00-00 00:00:00', 1),
(12524, 12344, 59, 5, 0, 'No ideas in JS Not much comfort in TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12525, 12337, 59, 5, 0, '4+yrs Exp in Client Coordination with tier level companies not sure on sustainability in our roles salary exp is very high should have a hold min Exp is 4.2 LPA', 85, '0000-00-00 00:00:00', 1),
(12526, 12357, 31, 4, 4, 'candidate okay ', 59, '2023-04-11 06:26:58', 1),
(12527, 12363, 86, 7, 0, 'Sriram sir interviewed via Google meet. He said Ok For Rm profile.', 59, '2023-04-11 06:50:45', 1),
(12528, 12365, 59, 4, 0, 'Have Basic knowledge in PHP ready to learn kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12529, 12340, 59, 5, 0, 'No basic knowledge in MF,Too long distance will not handle our roles 30 days notice', 101, '0000-00-00 00:00:00', 1),
(12530, 12347, 97, 5, 0, 'no communication xxamp understanding ..long distance', 101, '0000-00-00 00:00:00', 1),
(12531, 12362, 97, 4, 0, 'Has calling exp. 50 - 50profile. can be trained. kindly check and update your inputs', 101, '0000-00-00 00:00:00', 1),
(12532, 12374, 97, 4, 0, 'fresher to our role.. have to train a lot.. kindly check and update your inputs.', 85, '0000-00-00 00:00:00', 1),
(12533, 12372, 59, 5, 0, 'Too long Distance not ready to relocate too long career Gap will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12534, 12361, 59, 5, 0, 'Not suitable for HR profile have exp in sales and haing an final round interview with Skilllync tomorrow mostly he preferred to go for that.will not sustain', 85, '0000-00-00 00:00:00', 1),
(12535, 12358, 59, 3, 0, 'Selected for Karthika Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12536, 12348, 97, 5, 0, 'not suit for roles..', 85, '0000-00-00 00:00:00', 1),
(12537, 12364, 97, 4, 0, 'Fresher job need. can give a try.\nhave to train ..kindly check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12538, 12367, 59, 4, 0, '5050 Profile have Exp in credit card sales kindly check andlet me know your inputs for DM team', 85, '0000-00-00 00:00:00', 1),
(12539, 12368, 59, 2, 0, 'Have Exp in Backend Colections asked her to wait for 2nd llevel but left without attending need to check and schedule again', 85, '0000-00-00 00:00:00', 1),
(12540, 12369, 59, 5, 0, 'Need to open a lot will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(12541, 12370, 59, 4, 0, 'Communication Ok have exp in Accounts fresher for telecalling can give a try kindly check and let me lknow your inputs', 85, '0000-00-00 00:00:00', 1),
(12542, 12371, 59, 3, 0, 'Seleted for Node JS Viswa Team internship stpnd 6K 3months then 8K 2 months then overall 3yrs SA', 85, '0000-00-00 00:00:00', 1),
(12543, 12373, 59, 2, 0, 'Selected for Support/MIS interviewed by gokul candidate need to come back wiht his confirmation on the salary ', 85, '0000-00-00 00:00:00', 1),
(12544, 12358, 11, 4, 0, 'selected for E sales ', 59, '2023-04-12 06:33:11', 1),
(12545, 12370, 53, 1, 0, NULL, 59, '2023-04-12 06:34:12', 1),
(12546, 12367, 88, 1, 0, NULL, 59, '2023-04-12 06:35:48', 1),
(12547, 12362, 88, 1, 0, NULL, 97, '2023-04-12 07:18:06', 1),
(12548, 12374, 53, 1, 0, NULL, 97, '2023-04-12 07:19:34', 1),
(12549, 12364, 53, 1, 0, NULL, 97, '2023-04-12 07:23:44', 1),
(12550, 12363, 60, 1, 0, NULL, 86, '2023-04-13 11:06:58', 1),
(12551, 12341, 59, 3, 0, 'Selected for GK sir Team', 29, '2023-04-13 12:01:03', 1),
(12552, 12365, 27, 1, 0, NULL, 59, '2023-04-13 03:06:16', 1),
(12553, 12375, 97, 4, 0, 'fresher need to open a lot...can be trained... let me know your inputs.', 85, '0000-00-00 00:00:00', 1),
(12554, 12376, 97, 4, 0, 'Fresher can give a try. kindly check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12555, 12381, 59, 5, 0, 'He holds several offers and looking for some more he can join only based on the other offer conslusions not suitable', 85, '0000-00-00 00:00:00', 1),
(12556, 12379, 59, 5, 0, 'Need to complete his graduation Salary exp is high being a fresher and not much comfort in travel\n', 85, '0000-00-00 00:00:00', 1),
(12557, 12383, 59, 5, 0, 'Not open for Field travel no Communication Pressure handling no not suitable', 85, '0000-00-00 00:00:00', 1),
(12558, 12385, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12559, 12386, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12560, 12386, 97, 5, 0, 'not much good in prog. lau. SNR rejected by kavya', 85, '0000-00-00 00:00:00', 1),
(12561, 12387, 97, 4, 0, 'not open up ...need to train a lot,', 85, '0000-00-00 00:00:00', 1),
(12562, 12388, 59, 3, 0, 'Selected for GK Sir Team', 85, '0000-00-00 00:00:00', 1),
(12563, 12385, 53, 7, 0, 'Selectd for B2B Candidate Exp is min 19K TH Need to analyse in 7 days', 59, '2023-04-13 05:43:08', 1),
(12564, 12376, 53, 7, 0, 'Selected for B2B 11K TH', 97, '2023-04-13 05:48:51', 1),
(12565, 12388, 31, 4, 4, 'candidate okay. but he need time till next month', 59, '2023-04-13 05:49:51', 1),
(12566, 12375, 53, 1, 0, NULL, 97, '2023-04-13 05:52:08', 1),
(12567, 12387, 86, 5, 0, 'Not Satisfied', 97, '2023-04-13 06:01:24', 1),
(12568, 12395, 59, 5, 0, 'No basic knowledge and understanding skills is poor will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12569, 12396, 59, 5, 0, '6 months Ep in flutter and the curent Salary and the exp is very high will not sustain and much focus in the salary only not suitable', 85, '0000-00-00 00:00:00', 1),
(12570, 12397, 59, 5, 0, 'Not much strong in the skills Sustainability and work pressure handling doubtful Salary Exp is high not suitable', 85, '0000-00-00 00:00:00', 1),
(12571, 12398, 59, 4, 0, '5050 Profile have Exp in Showroom Sales and Home Loan Sales Sustainability doubts kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12572, 12389, 59, 2, 0, 'communication average have internship Exp in Recruitment 5050 can give a try Need to check in the final round ', 101, '0000-00-00 00:00:00', 1),
(12573, 12399, 59, 2, 0, 'Need to come for Technical Round interested to learn PHP Have basic knowledge in SQL open for TxxampC will come for final round and we need decide\n', 85, '0000-00-00 00:00:00', 1),
(12574, 12392, 97, 2, 0, 'communication ok... need to check sustainbility..have to come final round on monday..', 101, '0000-00-00 00:00:00', 1),
(12575, 12376, 59, 3, 0, 'Sleected for B2b In consultant role', 53, '2023-04-15 03:15:14', 1),
(12576, 12385, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-04-15 03:16:07', 1),
(12577, 12398, 44, 1, 0, NULL, 59, '2023-04-15 03:52:43', 1),
(12578, 12357, 29, 7, 3, 'Gkji team, check resume for salary details\n', 31, '2023-04-15 06:05:54', 1),
(12579, 12388, 29, 7, 3, 'RM Gkji team, refer Resume for salary', 31, '2023-04-15 06:09:13', 1),
(12580, 12388, 59, 3, 0, 'Selected for GK Sir Team', 29, '2023-04-15 06:13:17', 1),
(12581, 12357, 59, 3, 0, 'Selected for GK sir team in Staff Role', 29, '2023-04-15 06:39:24', 1),
(12582, 12390, 97, 4, 0, 'fresher communication good .good in convincing kindly check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12583, 12417, 97, 5, 0, 'not suit for roles', 85, '0000-00-00 00:00:00', 1),
(12584, 12419, 59, 5, 0, 'Not open for Sales sustainability doubts will not handle our pressure', 85, '0000-00-00 00:00:00', 1),
(12585, 12405, 97, 5, 0, 'fresher to our role.. sal expt high ... ', 101, '0000-00-00 00:00:00', 1),
(12586, 12423, 97, 5, 0, 'has exp in Customer queries...looking for same..long distance too', 85, '0000-00-00 00:00:00', 1),
(12587, 12416, 97, 5, 0, 'has exp in dm..with 4lpa..now looking for developer.. ', 85, '0000-00-00 00:00:00', 1),
(12588, 12420, 59, 5, 0, 'Much focused for Java Openings only', 85, '0000-00-00 00:00:00', 1),
(12589, 12421, 59, 5, 0, 'final round reject interviewed by gokul for Digital Marketing sustainability doubts and salary exp is high', 85, '0000-00-00 00:00:00', 1),
(12590, 12414, 97, 5, 0, 'trying for govt exam..not much good in prog.lau. long run doubts', 85, '0000-00-00 00:00:00', 1),
(12591, 12390, 11, 4, 0, 'selected', 97, '2023-04-17 08:08:35', 1),
(12592, 12402, 59, 5, 0, 'No Communication seems to be slow will not sustain adn not suitable', 85, '0000-00-00 00:00:00', 1),
(12593, 12428, 97, 4, 0, 'has calling exp..good convincing skill.. can give a try..kindly check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12594, 12435, 59, 5, 0, 'Looking for Salary only will not sustain and handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12595, 12406, 59, 2, 0, 'Have Exp in Recruitment Can be trained in our roles will come back for the final round', 85, '0000-00-00 00:00:00', 1),
(12596, 12430, 97, 5, 0, 'not much Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 85, '0000-00-00 00:00:00', 1),
(12597, 12429, 97, 5, 0, 'Have basic knowledge in prog.lau... not ok with txxampc', 85, '0000-00-00 00:00:00', 1),
(12598, 12411, 59, 5, 0, 'Need to come back with his confirmation on txxampC Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(12599, 12436, 59, 5, 0, 'Too Long Distance not much strong with the basics having some references too', 85, '0000-00-00 00:00:00', 1),
(12600, 12437, 59, 5, 0, 'No Communication not open for Work Pressure will not sustain', 85, '0000-00-00 00:00:00', 1),
(12601, 12409, 59, 4, 0, '5050 Interested to learn have basic but not able to explain kindly check and let me know your interest', 85, '0000-00-00 00:00:00', 1),
(12602, 12438, 42, 4, 5, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12603, 12432, 42, 4, 5, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12604, 12440, 97, 5, 0, 'not suit for roles', 85, '0000-00-00 00:00:00', 1),
(12605, 12441, 97, 5, 0, 'Not Suit For our Roles', 85, '0000-00-00 00:00:00', 1),
(12606, 12442, 97, 5, 0, 'Not Suit For Role', 85, '0000-00-00 00:00:00', 1),
(12607, 12433, 97, 5, 0, 'married fresher ..long run doubts', 85, '0000-00-00 00:00:00', 1),
(12608, 12425, 97, 5, 0, 'has exp as a process ass. sal expt high ..', 85, '0000-00-00 00:00:00', 1),
(12609, 12426, 97, 5, 0, 'currently doi her masterxquots final yr... holding 3 offer but not joined .. because of sal ... expt high', 85, '0000-00-00 00:00:00', 1),
(12610, 12427, 97, 5, 0, '3 mon of exp in rec..long distance sustainbility doubts..sal expt high', 85, '0000-00-00 00:00:00', 1),
(12611, 12424, 97, 5, 0, 'no communication... not suit for our role. ', 85, '0000-00-00 00:00:00', 1),
(12612, 12358, 59, 3, 0, 'Selected for Karthika Team in Consultant Role', 11, '2023-04-19 11:39:20', 1),
(12613, 8438, 60, 1, 0, NULL, 11, '2023-04-19 11:39:54', 1),
(12614, 12432, 30, 7, 3, 'CTC suggested 30k take home.confirm joining date cross verify the previous company details\n', 42, '2023-04-19 12:20:19', 1),
(12615, 12438, 30, 7, 4, 'CTC suggested 15k take home. Confirm the joining date', 42, '2023-04-19 12:22:39', 1),
(12616, 12431, 42, 4, 5, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12617, 12432, 60, 1, 0, NULL, 30, '2023-04-19 12:29:17', 1),
(12618, 12438, 60, 1, 0, NULL, 30, '2023-04-19 12:32:10', 1),
(12619, 12431, 30, 7, 4, 'Suggested CTC 40k per month. Cross check previous salary and confirm the joining date ', 42, '2023-04-19 02:50:15', 1),
(12620, 12449, 97, 5, 0, 'good in prog.lau... he need to check with his parents about txxampc', 85, '0000-00-00 00:00:00', 1),
(12621, 12448, 97, 5, 0, 'not much good in skills..he want to check with his parents abt txxampc', 85, '0000-00-00 00:00:00', 1),
(12622, 12447, 97, 5, 0, ' Good In Skills..He Want To Check With His Parents Abt TxxampC', 85, '0000-00-00 00:00:00', 1),
(12623, 12446, 97, 5, 0, ' Good In Skills..long run doubts...He Want To Check With His Parents Abt TxxampC', 85, '0000-00-00 00:00:00', 1),
(12624, 12443, 97, 5, 0, 'no communication .. long run doubts sal expt high..', 85, '0000-00-00 00:00:00', 1),
(12625, 12391, 97, 5, 0, '3 Mon Of Exp In Rec..Long Distance Sustainbility Doubts..Sal Expt High', 85, '0000-00-00 00:00:00', 1),
(12626, 12345, 59, 5, 0, 'Not open for Sales Calling and Cant handle the work pressure will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12627, 12428, 53, 1, 0, NULL, 97, '2023-04-19 07:16:56', 1),
(12628, 12409, 27, 1, 0, NULL, 59, '2023-04-20 06:54:12', 1),
(12629, 12450, 97, 5, 0, 'not much Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12630, 12413, 59, 3, 0, 'Selected for HR Team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(12631, 12451, 59, 5, 0, 'Not much suitable for our roles Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12632, 12452, 97, 5, 0, ' fresher to our role... not much good in prog lau xxamp Not Ok With Our TxxampC', 101, '0000-00-00 00:00:00', 1),
(12633, 12453, 97, 5, 0, ' Fresher To Our Role... Not Much Good In Prog Lau xxamp Not Ok With Our TxxampC', 101, '0000-00-00 00:00:00', 1),
(12634, 12454, 97, 5, 0, 'not yet complete his clg xxamp not suit for our role .. focusing on sal', 101, '0000-00-00 00:00:00', 1),
(12635, 12456, 59, 5, 0, 'Rejected not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(12636, 12457, 97, 5, 0, 'fresher to our role... not ok with our txxampc', 101, '0000-00-00 00:00:00', 1),
(12637, 12458, 97, 5, 0, 'pursuing her Guvi online course balance 3m more..she not ok with our txxampc', 101, '0000-00-00 00:00:00', 1),
(12638, 12431, 60, 1, 0, NULL, 30, '2023-04-21 10:37:13', 1),
(12639, 12467, 97, 5, 0, 'not much Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12640, 12466, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12641, 12465, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12642, 12461, 97, 5, 0, 'average communication long run doubts.. looking for it recruitment', 101, '0000-00-00 00:00:00', 1),
(12643, 12462, 97, 5, 0, 'pursuing his final yr...focusing on sal long run doubts', 101, '0000-00-00 00:00:00', 1),
(12644, 12463, 97, 5, 0, 'Good In Prog.Lau... She Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12645, 12390, 60, 1, 0, NULL, 11, '2023-04-21 05:10:27', 1),
(12646, 12358, 59, 3, 0, 'Selected for Karthika Team in Consultant Role', 29, '2023-04-21 05:19:56', 1),
(12647, 12390, 59, 3, 0, 'Selected for Karthika Team in Consultant role', 29, '2023-04-21 05:26:32', 1),
(12648, 12468, 97, 5, 0, 'Good In Prog.Lau... she Need Time To Check With His Parents..About TxxampC', 85, '0000-00-00 00:00:00', 1),
(12649, 12470, 59, 3, 0, 'Selectd for Recruitment in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(12650, 12471, 59, 3, 0, 'Selectde for HR Recruiter', 101, '0000-00-00 00:00:00', 1),
(12651, 12473, 97, 4, 0, 'Has exp in sales .. kindly check and update your feedback', 101, '0000-00-00 00:00:00', 1),
(12652, 12473, 53, 7, 0, 'selected for b2b', 97, '2023-04-22 07:26:56', 1),
(12653, 12242, 59, 2, 0, 'Need to complete her exams salary exp is high if she comes back will negotiate and try ', 101, '0000-00-00 00:00:00', 1),
(12654, 12479, 59, 2, 0, 'Need to open a lot Prsssure handling doubts Final Round interviewed by Gokul 5050 can be hired as intern then employment if she agrees with document submission', 101, '0000-00-00 00:00:00', 1),
(12655, 12480, 59, 3, 0, 'Selected for Digital Marketing with 1.8LPA but for 3 months will pay 10K and based on performance she will get the rest of salary for 3 months along with the pay in 4th month salary', 101, '0000-00-00 00:00:00', 1),
(12656, 12482, 59, 5, 0, 'No Basics skills need to learn a lot not open for TxxampC if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(12657, 12483, 59, 5, 0, 'Fresher Need to open a lot Pressure handling doubt will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(12658, 12484, 59, 5, 0, 'Not open with TxxampC Need time to confirm with family Will not sustain and handle our pressure', 101, '0000-00-00 00:00:00', 1),
(12659, 12485, 59, 5, 0, 'Left without attending the interview', 101, '0000-00-00 00:00:00', 1),
(12660, 12489, 59, 5, 0, 'Not open for TxxampC N basics Skills will not sustain', 101, '0000-00-00 00:00:00', 1),
(12661, 12486, 59, 5, 0, 'Came for UI UX 42yrs Current CTC 85K onlydesigning skills Exp monthly 1L', 101, '0000-00-00 00:00:00', 1),
(12662, 12490, 59, 4, 0, '5050 Profile internal reference for Charles team Frequent Job Changes Kindly check for Charles team and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12663, 12493, 59, 4, 0, '5050 Profile have exp in Field sales and installation internal reference sustainability doubts kindly check and let me know', 101, '0000-00-00 00:00:00', 1),
(12664, 12491, 59, 4, 0, '5050 Profile Internal Reference For Charles Team Frequent Job Changes Kindly Check For Charles Team And Let Me Know Your Inputs', 101, '0000-00-00 00:00:00', 1),
(12665, 12490, 24, 5, 0, 'sustainability doubt so rejected', 59, '2023-04-24 07:49:26', 1),
(12666, 12491, 24, 5, 0, 'charles team, sustainability doubt', 59, '2023-04-24 07:49:46', 1),
(12667, 12493, 88, 1, 0, NULL, 59, '2023-04-24 08:04:35', 1),
(12668, 12487, 59, 5, 0, 'SAlary high Exp30 days notice Will not sustain in a long', 101, '0000-00-00 00:00:00', 1),
(12669, 12494, 59, 5, 0, 'Left without attending the inteerview', 101, '0000-00-00 00:00:00', 1),
(12670, 12499, 59, 5, 0, 'No Communication not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(12671, 12504, 59, 5, 0, 'Not Much Comfort With TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12672, 12505, 59, 5, 0, 'Not Much Comfort With TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12673, 12507, 59, 4, 0, 'Fresher Not much importance on the job can give a try kindly check andlet me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12674, 12506, 59, 5, 0, 'Not Much Comfort With TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12675, 12500, 59, 5, 0, 'Not much comfort with TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12676, 12501, 59, 5, 0, 'Not Much Comfort With TxxampC Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(12677, 11991, 97, 5, 0, 'few months ago attend the interview in our company for sales.. now came for mis no communication xxamp not suit for our role', 101, '0000-00-00 00:00:00', 1),
(12678, 12495, 97, 2, 0, 'good communication..has intern exp in recruitment. sal expt high. let us try.', 101, '0000-00-00 00:00:00', 1),
(12679, 12496, 97, 5, 0, 'good communication has intern exp , sal expt too high ..min 4.5lpa.. seems like no job need', 101, '0000-00-00 00:00:00', 1),
(12680, 12512, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(12681, 12513, 97, 5, 0, 'good in prog. lau.. He Wants To Check His Parents About TxxampC ..', 101, '0000-00-00 00:00:00', 1),
(12682, 12514, 97, 5, 0, 'pursuing his course...he wants to check his parents about txxampc ..', 101, '0000-00-00 00:00:00', 1),
(12683, 12515, 97, 5, 0, 'came for developer seems like intersted in testing ..', 101, '0000-00-00 00:00:00', 1),
(12684, 12516, 97, 5, 0, 'has exp in 4.2yrs ui/ux.. simultaneously changing his job every yr because of hike.. long run doubts', 101, '0000-00-00 00:00:00', 1),
(12685, 12518, 97, 4, 0, 'has exp in ins.sales has some career gap ..can be try .kindly check and update your inputs', 101, '0000-00-00 00:00:00', 1),
(12686, 12519, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(12687, 12520, 97, 5, 0, 'has 3m exp as a developer with 5k beause of package he left the job..sustainbility doubts ...he wants to check with his parents', 101, '0000-00-00 00:00:00', 1),
(12688, 12517, 59, 2, 0, 'Yet to confirm the Profile for Joining', 101, '0000-00-00 00:00:00', 1),
(12689, 12522, 97, 5, 0, 'average communication... long run doubts..seems like no job need..', 85, '0000-00-00 00:00:00', 1),
(12690, 12518, 51, 7, 0, 'Shortlisted by guarav sir ', 97, '2023-04-26 07:36:14', 1),
(12691, 12537, 97, 5, 0, 'good in skills planning for higher studies in canada in next 2yrs.. long run doubts', 101, '0000-00-00 00:00:00', 1),
(12692, 12544, 97, 4, 0, 'has sales exp... good communication.let us try. kindly check and update your feedback', 101, '0000-00-00 00:00:00', 1),
(12693, 12551, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(12694, 12546, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(12695, 12545, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12696, 12552, 97, 5, 0, 'Good In Prog.Lau... she Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12697, 12544, 31, 4, 4, 'Candidate okay and ready for immediate joining forwarded to next round ', 97, '2023-04-28 06:57:48', 1),
(12698, 12534, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12699, 12539, 97, 5, 0, 'seems like not intersted in IT ... ', 101, '0000-00-00 00:00:00', 1),
(12700, 12532, 97, 5, 0, 'Good In Prog.Lau... sHe Need Time To Check With His Parent ....About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12701, 12521, 97, 5, 0, 'Good In Prog.Lau (fita)... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12702, 12533, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12703, 12525, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 101, '0000-00-00 00:00:00', 1),
(12704, 12529, 59, 3, 0, 'Selected for Operations team in consultant Role', 60, '0000-00-00 00:00:00', 1),
(12705, 12577, 59, 5, 0, 'Selected for Suthagar Team but later he didnt respond the calls ', 85, '0000-00-00 00:00:00', 1),
(12706, 12576, 97, 4, 0, 'has calling exp ..fresher to our role ...can be trained kindly check and update your inputs..', 85, '0000-00-00 00:00:00', 1),
(12707, 12575, 97, 5, 0, 'good in prog.lau... he need time to check with his parents..about txxampc', 85, '0000-00-00 00:00:00', 1),
(12708, 12574, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 85, '0000-00-00 00:00:00', 1),
(12709, 12573, 97, 4, 0, 'has calling exp need to open a lot can be trained...kindly check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(12710, 12572, 97, 4, 0, 'not open up ..kindly check and update your feedback', 85, '0000-00-00 00:00:00', 1),
(12711, 12567, 59, 5, 0, 'Communication Ok But Final Round Reject Gokul Salary High Exp ', 85, '0000-00-00 00:00:00', 1),
(12712, 12541, 97, 5, 0, 'Has sales exp sal exp high sustainbility doubts', 85, '0000-00-00 00:00:00', 1),
(12713, 12550, 97, 5, 0, 'has 6m internship exp in bang..now currently doi his internship with 15k ..sal exp 3.5lpa above..long run doubts', 85, '0000-00-00 00:00:00', 1),
(12714, 12565, 97, 5, 0, 'Good In Prog.Lau... He Need Time To Check With His Parents..About TxxampC', 85, '0000-00-00 00:00:00', 1),
(12715, 12572, 24, 5, 1, 'Rejected, not suitable for our role', 97, '2023-04-29 05:33:33', 1),
(12716, 12573, 102, 4, 0, 'candidate shortlist expect salary 18k he is already take home 14.5k ', 97, '2023-04-29 06:02:24', 1),
(12717, 12576, 24, 4, 0, 'selected for RE, expect salary 25k..', 97, '2023-04-29 06:11:16', 1),
(12718, 12577, 24, 4, 0, 'Selected, expected salary 18k', 59, '2023-04-29 06:35:51', 1),
(12719, 12518, 60, 1, 0, NULL, 51, '2023-04-29 06:36:42', 1),
(12720, 12507, 57, 1, 0, NULL, 59, '2023-04-29 06:38:20', 1),
(12721, 12544, 29, 7, 2, 'Gk team', 31, '2023-05-01 11:35:39', 1),
(12722, 12576, 88, 7, 0, 'Communication skill is better,Based on working exposure, shortlisted for 18k take home', 24, '2023-05-02 10:08:12', 1),
(12723, 12577, 88, 7, 0, 'Determination xxamp energy level, shortlisted for 15k take home', 24, '2023-05-02 10:09:35', 1),
(12724, 12523, 59, 5, 0, 'Fresher Not ,much comfort with the TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12725, 12576, 59, 3, 0, 'Selected for Consultant Role Suthagar Team', 88, '2023-05-02 01:33:01', 1),
(12726, 12577, 59, 5, 0, 'Selected for Suthagar Team but later he didnt respond the calls ', 88, '2023-05-02 01:35:17', 1),
(12727, 12464, 59, 3, 0, 'Selected for Recruitment team in consultant Role', 60, '0000-00-00 00:00:00', 1),
(12728, 12600, 59, 5, 0, 'No Communication not suitable for Sales calling and not suits for backend operations role too', 101, '0000-00-00 00:00:00', 1),
(12729, 12531, 59, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(12730, 12581, 59, 5, 0, 'Yet to complete his graduation 5 more months to go will not handle our work pressure', 85, '0000-00-00 00:00:00', 1),
(12731, 12595, 59, 5, 0, 'Have Networking and system admin exp will not handle the work pressure will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(12732, 12601, 59, 5, 0, 'No Local language have exp in calling but no sustainability in the previous exp Pressure handling doubts not suitable', 85, '0000-00-00 00:00:00', 1),
(12733, 12585, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12734, 12596, 59, 5, 0, 'Fresher not much strong with basics need to learn a lot not open for TxxampC will not sustain if comes back with comfort on TxxampC let us try', 85, '0000-00-00 00:00:00', 1),
(12735, 12598, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12736, 12592, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12737, 12591, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12738, 12586, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12739, 12587, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12740, 12590, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12741, 12589, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain not open for timings', 85, '0000-00-00 00:00:00', 1),
(12742, 12588, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain Not interested', 85, '0000-00-00 00:00:00', 1),
(12743, 12588, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain Not interested', 85, '0000-00-00 00:00:00', 1),
(12744, 12582, 59, 5, 0, 'Left Without Attending', 85, '0000-00-00 00:00:00', 1),
(12745, 12583, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12746, 12597, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(12747, 12584, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12748, 12594, 59, 5, 0, 'Fresher Not Much Strong With Basics Need To Learn A Lot Not Open For TxxampC Will Not Sustain If Comes Back With Comfort On TxxampC Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12749, 12593, 59, 2, 0, 'Have basic knowledge can be trained need to come with his confirmation on TxxampC if he comes back let us try\n', 85, '0000-00-00 00:00:00', 1),
(12750, 12555, 59, 5, 0, 'Fresher have basic knowledge but not much family need is there settled focusing much on the salary only will not sustain and not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(12751, 12569, 97, 4, 0, 'fresher to our role..can be trained kindly check and update your feedback..', 85, '0000-00-00 00:00:00', 1),
(12752, 12569, 24, 4, 0, 'selected for next round.. salary expected 15k.', 97, '2023-05-03 10:06:20', 1),
(12753, 12569, 88, 7, 0, 'Selected for RE for 13k take home', 24, '2023-05-03 10:26:08', 1),
(12754, 12544, 59, 3, 0, 'Selected for GK sir Team with commitment min 1.5L business in May 2023 then 4.2 L from June2023 onwards\n', 29, '2023-05-03 11:12:14', 1),
(12755, 12569, 59, 3, 0, 'Selected for Suthagar Team in Staff Role ', 88, '2023-05-03 12:50:06', 1),
(12756, 12605, 74, 7, 0, 'She is completed msc and fresher ony, father auto driver brother completing msc and sister doing bsc...so income source is very poor so highly job need.......have laptop....completed two rounds and shortlisted by ramesh sir also, expected 12 to 15k ......kindly check and confirm once with AM for salary negotiation....immediate joining..', 101, '0000-00-00 00:00:00', 1),
(12757, 12605, 59, 3, 0, 'Selected for Thanjavur Team in Consultant role', 74, '2023-05-03 01:10:59', 1),
(12758, 12606, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her ConfirmationNo understanding', 85, '0000-00-00 00:00:00', 1),
(12759, 12619, 59, 5, 0, 'Fresher No basics in Javascript Need to train a lot Not much comfort in TxxampC Need to come back with her confirmation', 85, '0000-00-00 00:00:00', 1),
(12760, 12616, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12761, 12615, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation', 85, '0000-00-00 00:00:00', 1),
(12762, 12613, 59, 5, 0, 'Fresher Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation Salary exp is high and looking for Campus opportunities', 85, '0000-00-00 00:00:00', 1),
(12763, 12612, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(12764, 12610, 59, 5, 0, 'Fresher have 6 months Fluter Not Much Comfort In TxxampC Need To Come Back With Her Confirmation Left with out attending the next round', 85, '0000-00-00 00:00:00', 1),
(12765, 12609, 59, 5, 0, 'Aged Canddiate Very High CTC 13.85 LPA', 85, '0000-00-00 00:00:00', 1),
(12766, 12608, 59, 5, 0, 'Fresher No Basics In PHP Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation', 85, '0000-00-00 00:00:00', 1),
(12767, 12607, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort In TxxampC Need To Come Back With Her Confirmation', 85, '0000-00-00 00:00:00', 1),
(12768, 12605, 59, 3, 0, 'Selected for Thanjavur Team in Consultant role', 88, '2023-05-03 05:09:51', 1),
(12769, 12580, 59, 4, 0, 'Communication Ok Fresher have basics in Digital Marketing can be trained kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(12770, 12580, 69, 1, 0, NULL, 59, '2023-05-03 07:52:52', 1),
(12771, 12616, 53, 7, 0, 'selected for b2b.', 59, '2023-05-03 07:54:54', 1),
(12772, 12635, 59, 5, 0, 'Dropped Final HR Round not responding the calls sent her message and there was no revert till date', 60, '0000-00-00 00:00:00', 1),
(12773, 12635, 53, 7, 0, '50 / 50. Will try for b2b', 59, '2023-05-04 04:12:08', 1),
(12774, 12579, 59, 4, 0, 'Communicaiton Average Have basic knowledge kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12775, 12617, 59, 5, 0, 'Communciaiton Average Not much comfort in Semivoice need to come back with his confiormaiton', 85, '0000-00-00 00:00:00', 1),
(12776, 12620, 59, 5, 0, 'Very High CTC Exp Holding Several Offers Have 2 yrs Exp sustainability Doubts need to check via task', 85, '0000-00-00 00:00:00', 1),
(12777, 12624, 59, 5, 0, 'Looking for Non Voice No Communication willl not sustain and not suitable for our roles', 85, '0000-00-00 00:00:00', 1),
(12778, 12639, 59, 5, 0, 'Fresher Need to learn a lot in basics not much comfort in TxxampC need time to check and confirm if coming back let us try', 85, '0000-00-00 00:00:00', 1),
(12779, 12637, 59, 5, 0, 'Fresher Need To Learn A Lot In Basics Not Much Comfort In TxxampC Need Time To Check And Confirm Will not sustain ', 85, '0000-00-00 00:00:00', 1),
(12780, 12636, 59, 5, 0, 'Fresher Need To Learn A Lot In Basics Not Much Comfort In TxxampC Need Time To Check And Confirm If Coming Back Let Us Try', 85, '0000-00-00 00:00:00', 1),
(12781, 12634, 59, 5, 0, 'Fresher Need To Learn A Lot In Basics Not Much Comfort In TxxampC Need Time To Check And Confirm If Coming Back Let Us Try Manikandan 2nd round interviewed\n', 85, '0000-00-00 00:00:00', 1),
(12782, 12631, 59, 5, 0, 'Looking For Java Profile Not Open For TxxampC Will Not Sustaina', 85, '0000-00-00 00:00:00', 1),
(12783, 12628, 59, 5, 0, 'Looking for Java Profile not open for TxxampC will not sustaina', 85, '0000-00-00 00:00:00', 1),
(12784, 12629, 59, 5, 0, 'Looking For Java Profile Not Open For TxxampC Will Not Sustaina', 85, '0000-00-00 00:00:00', 1),
(12785, 12627, 59, 5, 0, 'Looking For Java Profile Not Open For TxxampC Will Not Sustaina', 85, '0000-00-00 00:00:00', 1),
(12786, 12626, 59, 2, 0, 'Fresher not much strong with basics need to come bac with his confirmation', 85, '0000-00-00 00:00:00', 1),
(12787, 12635, 59, 5, 0, 'Dropped Final HR Round not responding the calls sent her message and there was no revert till date', 53, '2023-05-04 05:53:00', 1),
(12788, 12616, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-04 05:56:38', 1),
(12789, 12579, 69, 1, 0, NULL, 59, '2023-05-04 07:46:11', 1),
(12790, 12645, 59, 5, 0, 'Processeed for 2nd level Operation but left without attending the interview', 101, '0000-00-00 00:00:00', 1),
(12791, 12573, 88, 1, 0, NULL, 102, '2023-05-05 03:54:55', 1),
(12792, 12638, 59, 5, 0, 'Communication will not sustain with us no sustainability', 85, '0000-00-00 00:00:00', 1),
(12793, 12625, 59, 5, 0, 'No Communication not suitable for Operations not open for Sales too', 85, '0000-00-00 00:00:00', 1),
(12794, 12646, 59, 5, 0, 'Fresher Not ,Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12795, 12648, 59, 5, 0, 'Fresher Not ,Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12796, 12657, 59, 4, 0, 'Communication is good have exp in Digital Can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12797, 12653, 59, 3, 0, 'Selected for Charles Team DM in Staff Role', 85, '0000-00-00 00:00:00', 1),
(12798, 12651, 59, 5, 0, 'Have Long EXp Holding several IRDA certi Holding an offer with Bajaj for 5.5 will not sustain not suitable', 85, '0000-00-00 00:00:00', 1),
(12799, 12649, 59, 5, 0, 'No Communication no open for Sales too will not sustain', 85, '0000-00-00 00:00:00', 1),
(12800, 12652, 59, 5, 0, 'Fresher Not ,Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12801, 12655, 59, 3, 0, 'Selected for B2B in consultant Role', 101, '0000-00-00 00:00:00', 1),
(12802, 12663, 59, 4, 0, 'bit nervous fresher can be trained kindly check and confirm the profile', 101, '0000-00-00 00:00:00', 1),
(12803, 12664, 59, 5, 0, 'Fresher will not sustain need to checj with familt and confirm', 101, '0000-00-00 00:00:00', 1),
(12804, 12660, 59, 5, 0, 'Sal exp is high not much strong with the basics', 60, '0000-00-00 00:00:00', 1),
(12805, 12665, 59, 4, 0, '5050 Profile can be trained kindly check and let meknow your interest', 60, '0000-00-00 00:00:00', 1),
(12806, 12656, 59, 3, 0, 'Selected for backend operations have 10+ yrs exp worked in Satr heakth can be trained', 60, '0000-00-00 00:00:00', 1),
(12807, 12642, 59, 3, 0, 'Selected for Karthika Team in ESales', 60, '0000-00-00 00:00:00', 1),
(12808, 12675, 59, 3, 0, 'Selected for Backend node with stipend Viswa', 60, '0000-00-00 00:00:00', 1),
(12809, 12672, 59, 5, 0, 'Left without attending', 60, '0000-00-00 00:00:00', 1),
(12810, 12667, 59, 5, 0, 'Not Opend For TxxampC Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(12811, 12670, 59, 5, 0, 'Not Opend For TxxampC Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(12812, 12669, 59, 5, 0, 'Not Opend For TxxampC Will Not Sustain', 60, '0000-00-00 00:00:00', 1),
(12813, 12668, 59, 5, 0, 'Too long Distance Looking for non voice will not sustain', 60, '0000-00-00 00:00:00', 1),
(12814, 12676, 59, 5, 0, 'Not opend for TxxampC will not sustain', 60, '0000-00-00 00:00:00', 1),
(12815, 12642, 29, 7, 3, 'esales', 59, '2023-05-06 09:01:11', 1),
(12816, 12655, 53, 7, 0, 'selected for b2b', 59, '2023-05-06 09:01:45', 1),
(12817, 12663, 53, 1, 0, NULL, 59, '2023-05-06 09:03:32', 1),
(12818, 12665, 102, 5, 0, 'Not suitable sale ', 59, '2023-05-06 09:07:26', 1),
(12819, 12541, 59, 3, 0, 'Selected for Sarath Team with PF/PT', 51, '2023-05-08 09:42:33', 1),
(12820, 12680, 59, 4, 0, 'Have Exp in Sales but not much in telecalling can give a try kindly check andlet me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12821, 12688, 59, 4, 0, '5050 Profile have Exp in Telecalling but seems to be slow not much active kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12822, 12653, 102, 4, 0, 'candidate selected nxt round and he already take home 14.5k expected 18k ', 59, '2023-05-08 03:12:46', 1),
(12823, 12653, 88, 7, 0, 'Selected for RE for 15k take home .', 102, '2023-05-08 03:29:34', 1),
(12824, 12691, 59, 4, 0, '5050 Profile have exp in telecalling but no sustainability kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12825, 12653, 59, 3, 0, 'Selected for Charles Team DM in Staff Role', 88, '2023-05-08 06:43:53', 1),
(12826, 12682, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12827, 12690, 59, 5, 0, 'Have 1 yr Exp but fresher for react and not ope for TxxampC open only for 1-2 yrs', 101, '0000-00-00 00:00:00', 1),
(12828, 12695, 59, 5, 0, 'Fresher Not Open For TxxampC Will Not Sustain Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12829, 12696, 59, 5, 0, 'Fresher not open for TxxampC will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(12830, 12694, 59, 5, 0, 'Not open for TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(12831, 12692, 59, 5, 0, 'Yet to complete the graduation not open for TxxampC will not sustain\n', 101, '0000-00-00 00:00:00', 1),
(12832, 12683, 59, 3, 0, 'Selected for B2B in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(12833, 12686, 59, 5, 0, 'Not open for TxxampxxampC', 101, '0000-00-00 00:00:00', 1),
(12834, 12685, 59, 5, 0, 'No Communication no local language only hindi and marathi', 101, '0000-00-00 00:00:00', 1),
(12835, 12693, 59, 3, 0, 'Selected for GK Sir Team with Gaurav Sir Commitment 2L biz in May June will increse the pay', 101, '0000-00-00 00:00:00', 1),
(12836, 12688, 31, 5, 2, 'earlier profile also not in proper sales ', 59, '2023-05-08 08:46:12', 1),
(12837, 12680, 24, 8, 0, '2nd round Abscond', 59, '2023-05-08 09:18:45', 1),
(12838, 12691, 51, 5, 0, 'Rejected', 59, '2023-05-08 09:19:33', 1),
(12839, 12693, 31, 4, 4, 'candidate okay and forwarded for next round', 59, '2023-05-08 09:20:29', 1),
(12840, 12683, 53, 7, 0, 'selected for b2b', 59, '2023-05-08 09:21:16', 1),
(12841, 12682, 53, 7, 0, 'selected for b2b', 59, '2023-05-08 09:21:26', 1),
(12842, 12657, 69, 1, 0, NULL, 59, '2023-05-08 09:23:33', 1),
(12843, 12699, 59, 3, 0, 'Selected for B2B in consultant Role', 103, '0000-00-00 00:00:00', 1),
(12844, 12702, 59, 4, 0, 'Very talkative sustainability no 5050 can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12845, 12714, 59, 5, 0, 'Looking for Flutter fresher interviewed by bharath and checked for node for training but candidate not interested', 101, '0000-00-00 00:00:00', 1),
(12846, 12704, 59, 5, 0, 'Average Communication No sustainability too long career gap not suitble', 101, '0000-00-00 00:00:00', 1),
(12847, 12705, 59, 5, 0, 'No Communication not open for Sales calls veryhigh CTC Exp Not suitable will not sustain', 101, '0000-00-00 00:00:00', 1),
(12848, 12712, 59, 5, 0, 'Will not handle the work pressure long career gap will not sustain an not suitable\n', 101, '0000-00-00 00:00:00', 1),
(12849, 12719, 59, 4, 0, 'Have Exp in DM Communication Good Kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12850, 12717, 59, 5, 0, 'Average Communicaiton no basic ideas in Digital and not open for Sales too', 101, '0000-00-00 00:00:00', 1),
(12851, 12709, 59, 5, 0, 'Open For TxxampC Fresher Much Focused On Java Need To Check Via Task', 101, '0000-00-00 00:00:00', 1),
(12852, 12710, 59, 5, 0, 'Not open for TxxampC will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(12853, 12720, 59, 5, 0, 'fresher comunicaiton Ok Not open for Sales Calls open for Operations but the salary exp is very high', 103, '0000-00-00 00:00:00', 1),
(12854, 12711, 59, 5, 0, 'open for TxxampC Fresher much focused on Java need to check via task', 101, '0000-00-00 00:00:00', 1),
(12855, 12716, 59, 5, 0, 'Looking for non voice process no Communication will not sustain', 101, '0000-00-00 00:00:00', 1),
(12856, 12715, 59, 5, 0, 'Too long Distance not open for TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(12857, 12722, 59, 4, 0, 'Fresher for our domain can be trained kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12858, 12706, 59, 4, 0, 'Fresher for Our sales have exp in store Sales interested to learn can be trained kindly check andlet me know your interest', 101, '0000-00-00 00:00:00', 1),
(12859, 12713, 59, 5, 0, 'No Local communication 12th will not handle our work pressure not suitable', 103, '0000-00-00 00:00:00', 1),
(12860, 12723, 59, 4, 0, 'No relevant Exp in Sales can be trained in our roles 5050 profile kindly check and let meknow your inputs', 103, '0000-00-00 00:00:00', 1),
(12861, 12642, 59, 3, 0, 'Selected for Karthika Team in ESales', 29, '2023-05-09 07:02:50', 1),
(12862, 12693, 29, 7, 3, 'gk team', 31, '2023-05-09 07:26:29', 1),
(12863, 12693, 59, 3, 0, 'Selected for GK Sir Team with Gaurav Sir Commitment 2L biz in May June will increse the pay', 29, '2023-05-09 08:08:17', 1),
(12864, 12699, 53, 7, 0, 'fresher. shortlisted for b2b', 59, '2023-05-09 08:15:32', 1),
(12865, 12723, 31, 5, 0, 'Expecting higher package\n', 59, '2023-05-09 08:16:56', 1),
(12866, 12719, 69, 1, 0, NULL, 59, '2023-05-09 08:18:00', 1),
(12867, 12706, 86, 4, 0, 'Selected for next Round', 59, '2023-05-09 08:56:59', 1),
(12868, 12722, 51, 5, 0, 'Rejected', 59, '2023-05-09 09:00:58', 1),
(12869, 12702, 86, 5, 0, 'Not Satisfied', 59, '2023-05-09 09:07:50', 1),
(12870, 12681, 59, 5, 0, 'Looking for non voice only Communication will not be proper stamerring\n', 101, '0000-00-00 00:00:00', 1),
(12871, 12707, 59, 4, 0, '5050 Profile have exp for 2 months kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12872, 12727, 59, 5, 0, 'Disability cant communicate bit difficult to work not suitable', 101, '0000-00-00 00:00:00', 1),
(12873, 12733, 59, 3, 0, 'Selected For B2B In Consultant Role', 101, '0000-00-00 00:00:00', 1),
(12874, 12726, 59, 5, 0, 'Too long Distance Will not sustain communication Average will not handle the work pressure', 101, '0000-00-00 00:00:00', 1),
(12875, 12699, 59, 3, 0, 'Selected for B2B in consultant Role', 53, '2023-05-10 01:30:45', 1),
(12876, 12682, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-10 01:31:27', 1),
(12877, 12683, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-10 01:32:02', 1),
(12878, 12655, 59, 3, 0, 'Selected for B2B in consultant Role', 53, '2023-05-10 03:12:43', 1),
(12879, 12729, 59, 4, 0, '5050 just 1 month Sales Exp Sustainability doubt kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12880, 12738, 59, 5, 0, 'Fresher not open for TxxampC much preferred for Java only will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(12881, 12732, 59, 5, 0, 'Fresher Not Open For TxxampC Much Too long Distance not suitable', 101, '0000-00-00 00:00:00', 1),
(12882, 12730, 59, 2, 0, 'Need to come back with her confirmation if she comes let us try', 101, '0000-00-00 00:00:00', 1),
(12883, 12731, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For Java Only Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12884, 12734, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For flutter Only Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12885, 12736, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For Java Only Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12886, 12735, 59, 2, 0, 'Have Exp in PHP but no sustainability need to check via task and check', 101, '0000-00-00 00:00:00', 1),
(12887, 12739, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For Java Only Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(12888, 12741, 59, 5, 0, 'Fresher Not Open For TxxampC Much Preferred For Node Only Will Not Sustain father is in HCL US citizen Have a plan to travel abroad', 101, '0000-00-00 00:00:00', 1),
(12889, 12733, 53, 7, 0, 'selected for b2b. ', 59, '2023-05-10 08:48:34', 1),
(12890, 12729, 19, 5, 1, 'NOT FIT', 59, '2023-05-10 09:01:18', 1),
(12891, 12707, 53, 1, 0, NULL, 59, '2023-05-10 09:02:04', 1),
(12892, 12761, 24, 5, 0, 'He is looking for non voice . not suitable for our profile', 85, '0000-00-00 00:00:00', 1),
(12893, 12760, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12894, 12757, 59, 2, 0, 'Need to come back with his confirmation on the TxxampC interviewed by Gokul', 85, '0000-00-00 00:00:00', 1),
(12895, 12759, 59, 5, 0, 'Fresher not open for TxxampC have basic knowledge will not sustain not more than a year', 85, '0000-00-00 00:00:00', 1),
(12896, 12755, 59, 2, 0, 'Need To Come Back With His Confirmation On The TxxampC Interviewed By Gokul', 85, '0000-00-00 00:00:00', 1),
(12897, 12754, 59, 5, 0, 'No Technical not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(12898, 12753, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12899, 12751, 59, 3, 0, 'Selected for B2B in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(12900, 12744, 59, 4, 0, 'Have Exp in Calling can be trained in our roles kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12901, 12747, 59, 5, 0, 'Exams yet to complete not much comfort in Telecalling not suitable', 85, '0000-00-00 00:00:00', 1),
(12902, 12749, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12903, 12750, 59, 3, 0, 'Selected for Babu Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(12904, 12745, 59, 4, 0, 'Fresher can be trained in our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12905, 12753, 53, 7, 0, 'selected for b2b', 59, '2023-05-11 08:15:53', 1),
(12906, 12751, 53, 7, 0, 'selected for b2b', 59, '2023-05-11 08:16:07', 1),
(12907, 12752, 59, 5, 0, 'Have 6 months Exp but not into projevct in Bench not open for TxxampC ', 85, '0000-00-00 00:00:00', 1),
(12908, 12750, 89, 7, 0, 'Selected', 59, '2023-05-11 08:19:26', 1),
(12909, 12744, 24, 8, 0, '2nd Round Abscond', 59, '2023-05-11 08:21:50', 1),
(12910, 12745, 24, 8, 0, '2nd Round Abscond', 59, '2023-05-11 08:22:24', 1),
(12911, 12733, 59, 3, 0, 'Selected For B2B In Consultant Role', 53, '2023-05-12 10:17:21', 1),
(12912, 12753, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-12 10:18:44', 1),
(12913, 12751, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-05-12 10:19:44', 1),
(12914, 12706, 18, 4, 0, 'Tried Couple of times not able to reach him. Please refix', 86, '2023-05-12 11:11:02', 1),
(12915, 12768, 42, 4, 4, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12916, 12776, 59, 3, 0, 'Selected for Suthagar Team in staff Role', 85, '0000-00-00 00:00:00', 1),
(12917, 12750, 88, 7, 0, 'Selected for RE based on observation skills ', 89, '2023-05-12 03:29:32', 1),
(12918, 12750, 59, 3, 0, 'Selected for Babu Team in Staff Role', 88, '2023-05-12 03:48:14', 1),
(12919, 12473, 59, 3, 0, 'Selecetd for B2B Staff Role', 53, '2023-05-12 05:02:57', 1),
(12920, 12781, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12921, 12780, 59, 7, 0, 'Fresher Open For TxxampC Need To Join On Monday 15May Can Be Trained In Node', 85, '0000-00-00 00:00:00', 1),
(12922, 12779, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12923, 12778, 59, 7, 0, 'Fresher Open For TxxampC Need To Join On Monday 15May Can Be Trained In Node', 85, '0000-00-00 00:00:00', 1),
(12924, 12777, 59, 7, 0, 'Fresher open for TxxampC need to join on monday 15May Can be trained in Node', 85, '0000-00-00 00:00:00', 1),
(12925, 12775, 59, 5, 0, 'Too long Distance need to open a lot will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(12926, 12774, 59, 5, 0, 'Have Exp in React 1yr and the min Exo in25K not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(12927, 12773, 59, 5, 0, 'Fresher not much comfort with the TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(12928, 12772, 59, 2, 0, 'Selected for operations backend if she come back should give a try for it salary yet to finalise', 85, '0000-00-00 00:00:00', 1),
(12929, 12771, 42, 4, 4, 'Selected for next round ', 85, '0000-00-00 00:00:00', 1),
(12930, 12762, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12931, 12766, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12932, 12767, 59, 5, 0, 'Fresher Not Much Comfort With The TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(12933, 12769, 59, 7, 0, 'Selected for React Profile Should join on Monday 15 May long career Gap 4yrs tnpsc ', 85, '0000-00-00 00:00:00', 1),
(12934, 12770, 59, 5, 0, 'Fresher and the Exp is high need to come back with the confirmation on TxxampC Good Candidate if he comes back can give a try', 85, '0000-00-00 00:00:00', 1),
(12935, 12769, 60, 1, 0, NULL, 59, '2023-05-12 08:37:31', 1),
(12936, 12776, 24, 7, 0, 'Selected, ramesh sir also interviewed ', 59, '2023-05-12 08:38:05', 1),
(12937, 12777, 60, 1, 0, NULL, 59, '2023-05-12 08:38:44', 1),
(12938, 12778, 60, 1, 0, NULL, 59, '2023-05-12 08:38:57', 1),
(12939, 12780, 60, 1, 0, NULL, 59, '2023-05-12 08:39:11', 1),
(12940, 12768, 30, 7, 4, 'CONFIRM CTC AND JOINING DATE', 42, '2023-05-13 02:23:03', 1),
(12941, 12771, 30, 7, 4, 'CONFIRM JOINING AND CTC', 42, '2023-05-13 02:24:27', 1),
(12942, 12768, 60, 1, 0, NULL, 30, '2023-05-13 05:41:08', 1),
(12943, 12771, 60, 1, 0, NULL, 30, '2023-05-13 05:42:29', 1),
(12944, 12776, 59, 3, 0, 'Selected for Suthagar Team in staff Role', 24, '2023-05-13 06:14:19', 1),
(12945, 12764, 59, 5, 0, 'Have exp in sales but not open for the same for non voice no communication', 101, '0000-00-00 00:00:00', 1),
(12946, 12787, 59, 3, 0, 'Selected for Santhosh Team Staff Role', 101, '0000-00-00 00:00:00', 1),
(12947, 12784, 59, 5, 0, 'Not open for Field will not sustain in our roles focusin in boxing will not run in along', 101, '0000-00-00 00:00:00', 1),
(12948, 12763, 59, 4, 0, '5050 Profile Have 6 months Exp can give a try kindly checj and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12949, 12786, 59, 4, 0, '5050 Profile Have 6 Months Exp Can Give A Try Kindly Checj And Let Me Know Your Inputs', 101, '0000-00-00 00:00:00', 1),
(12950, 12783, 59, 5, 0, 'not open for txxampC min Exp is 15K fresher in IT', 101, '0000-00-00 00:00:00', 1),
(12951, 12763, 53, 1, 0, NULL, 59, '2023-05-13 08:55:25', 1),
(12952, 12786, 53, 1, 0, NULL, 59, '2023-05-13 08:57:29', 1),
(12953, 12787, 71, 4, 0, 'Selected for next round', 59, '2023-05-13 08:58:49', 1),
(12954, 12803, 74, 7, 0, 'he is fit for profile ...completed bca and worked as a office assistant in a sastra university...and releived during covid...and preparing for PC two times but failed in exam so due to family situation searching for job.father worked in a barber shop and mother doing tailoring...have laptop and expected 13k salary kindly check and confirm once ready to join on 22nd may monday due to grandma ill health ....kindly check and confirm once...', 101, '0000-00-00 00:00:00', 1),
(12955, 12803, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 74, '2023-05-15 02:38:02', 1),
(12956, 12789, 59, 4, 0, '5050 Profile Fresher for our sales can give atry kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(12957, 12792, 59, 5, 0, 'Fresher for our sales not open up will not sustain and handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(12958, 12795, 59, 5, 0, 'Not Active will not handle our work Not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(12959, 12803, 59, 3, 0, 'Selected for Thanjavur Consultant Role', 88, '2023-05-15 02:51:13', 1),
(12960, 12793, 59, 4, 0, 'Have Exp in Telecalling But not a relevant one can be trained in our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12961, 12797, 59, 4, 0, 'Fresher 5050 profile can give a try in our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(12962, 12802, 59, 5, 0, 'Have Exp in Sales can be trained but left without attending the interview 2nd level', 85, '0000-00-00 00:00:00', 1),
(12963, 12804, 59, 5, 0, 'Communication No Will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(12964, 12799, 59, 5, 0, 'Fresher for IT Not much strong with the basics need to come back with his confirmation on TxxampC', 85, '0000-00-00 00:00:00', 1),
(12965, 12796, 59, 5, 0, 'Fresher not much strong in the skills final round reject by Gokul', 85, '0000-00-00 00:00:00', 1),
(12966, 12794, 42, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(12967, 12782, 59, 3, 0, 'Selected for Shanmugam Team with Gaurav Final round Commitment May 50K June 1.5 Then 35K Net But the candidate is joining on 02 June only', 85, '0000-00-00 00:00:00', 1),
(12968, 12787, 18, 7, 4, 'Selected for Santosh Team. Ready to join next Wed. Expected salary is 25k Take home. can give 3.5L CTC xxamp candidate reffered by jagadeesh', 71, '2023-05-16 10:11:49', 1),
(12969, 12782, 44, 7, 4, 'Candidate selected by Gaurav ,please complete the further process', 59, '2023-05-16 10:15:20', 1),
(12970, 12793, 29, 1, 0, NULL, 59, '2023-05-16 10:17:09', 1),
(12971, 12801, 59, 2, 0, 'Have Exp in flutter can be trained gave her a task need to come back with that based on that we can decide', 60, '0000-00-00 00:00:00', 1),
(12972, 12789, 19, 5, 1, 'NO', 59, '2023-05-16 10:41:00', 1),
(12973, 12797, 19, 5, 1, 'NOT FIT', 59, '2023-05-16 10:45:51', 1),
(12974, 12810, 42, 4, 5, 'Selected for next round ', 104, '0000-00-00 00:00:00', 1),
(12975, 12798, 59, 5, 0, 'No basics skills will not sustain in a long and not showing much interest in the Profile', 85, '0000-00-00 00:00:00', 1),
(12976, 12815, 42, 5, 3, 'Not suit for our profile ', 104, '0000-00-00 00:00:00', 1),
(12977, 12816, 42, 4, 4, 'Selected for next round ', 104, '0000-00-00 00:00:00', 1),
(12978, 12807, 59, 5, 0, 'Aged candidate long career gap not suitable will not sustain and need to travel a long', 101, '0000-00-00 00:00:00', 1),
(12979, 12813, 59, 5, 0, 'No basic skills technical round reject by tamilmani', 101, '0000-00-00 00:00:00', 1),
(12980, 12818, 59, 5, 0, 'Not much open to handle the target long back she sttended and got rejected', 101, '0000-00-00 00:00:00', 1),
(12981, 12811, 74, 5, 0, 'not fit for team ...very lazy and not that much profile he not fit for sales', 101, '0000-00-00 00:00:00', 1),
(12982, 12817, 42, 4, 4, 'Selected for next round ', 104, '0000-00-00 00:00:00', 1),
(12983, 12810, 30, 7, 4, 'candidate expectation on ctc 5lac but suggested 4lac immediate joining', 42, '2023-05-16 03:36:31', 1),
(12984, 12816, 30, 7, 4, 'discuss salary part and he will join nxt week middle', 42, '2023-05-16 03:40:49', 1),
(12985, 12817, 30, 7, 4, 'immediate joining discuss salary part suggested 30 k', 42, '2023-05-16 03:42:13', 1),
(12986, 12810, 60, 1, 0, NULL, 30, '2023-05-16 03:49:44', 1),
(12987, 12816, 60, 1, 0, NULL, 30, '2023-05-16 03:52:14', 1),
(12988, 12817, 60, 1, 0, NULL, 30, '2023-05-16 03:53:43', 1),
(12989, 12819, 59, 4, 0, 'Have Exp in Credit card Sales can be trained in our roles but the salary exp is very high kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(12990, 12819, 71, 5, 0, 'Not fit for sales ', 59, '2023-05-16 07:32:17', 1),
(12991, 12822, 42, 5, 3, 'He is lying that he worked in icici', 104, '0000-00-00 00:00:00', 1),
(12992, 12821, 42, 5, 3, 'Not good in English ', 104, '0000-00-00 00:00:00', 1),
(12993, 12787, 60, 1, 0, NULL, 18, '2023-05-17 01:54:52', 1),
(12994, 12825, 59, 5, 0, 'Not open for TxxampC not ready to relocate will not sustain and too long distance\n', 101, '0000-00-00 00:00:00', 1),
(12995, 12830, 59, 3, 0, 'Selected for Syed Team in staff Role', 101, '0000-00-00 00:00:00', 1),
(12996, 12827, 59, 3, 0, 'Selected for Mutual Fund Role Fresher need to be trained have exp in different domain final round interviewed by Gokul ', 101, '0000-00-00 00:00:00', 1),
(12997, 12824, 59, 5, 0, 'Have 3 months Exp but min exp is 20K and not less than that but a good candidate ', 101, '0000-00-00 00:00:00', 1),
(12998, 12820, 59, 5, 0, 'Too long Distance Have Exp in Life insurance Sales looking for change only because of his distance he is currently working in TNagar also very high CTC exp will not sustain', 101, '0000-00-00 00:00:00', 1),
(12999, 12823, 59, 3, 0, 'Selected for GK sir team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13000, 12673, 59, 5, 0, 'Fresher no JS basics came as a group and will not join if others are not joining Sustainability doubts not suitable', 101, '0000-00-00 00:00:00', 1),
(13001, 12830, 57, 4, 0, 'Candidate is ok', 59, '2023-05-17 05:42:35', 1),
(13002, 12823, 29, 7, 2, 'gk team, rm profile, 18k net salary, refer resume for incremental hike based on performance in may xxamp june 2 lac then 22k', 59, '2023-05-17 05:45:00', 1),
(13003, 12830, 59, 3, 0, 'Selected for Syed Team in staff Role', 57, '2023-05-18 11:27:46', 1),
(13004, 12832, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13005, 12836, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13006, 12837, 59, 4, 0, 'Communication Have Exp in calling career gap can give a try for our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13007, 12840, 59, 5, 0, 'Not much comfort with TxxampC fresher salary exp is more kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13008, 12834, 59, 3, 0, 'Selected for Charles Team in consultant ROle', 101, '0000-00-00 00:00:00', 1),
(13009, 12833, 59, 3, 0, 'Selected for Node Profile with stipend 6-8 then 3yrs overall 3.5 yrs SA', 101, '0000-00-00 00:00:00', 1),
(13010, 12837, 53, 1, 0, NULL, 59, '2023-05-18 08:29:32', 1),
(13011, 12835, 59, 4, 0, 'Not open up Not much suits for the role internal reference kindly check and let me know your inputs', 60, '0000-00-00 00:00:00', 1),
(13012, 12834, 102, 7, 0, 'shortlist for team jun 1st joining ', 59, '2023-05-18 08:33:00', 1),
(13013, 12835, 102, 5, 0, 'Not suitable sales', 59, '2023-05-18 08:33:38', 1),
(13014, 12823, 59, 3, 0, 'Selected for GK sir team in Staff Role', 29, '2023-05-19 09:53:32', 1),
(13015, 12843, 74, 7, 0, 'he is already experience in jio direct marketing and airtel direct marketing for 10 month and salary getting 15k .....fit for team and good exposure in sales field so he is ok with the team .....expected 16k salary kindly check once and confirm with the salary but he is good in sales....father plumbbing worker....no laptop ....expected to join monday kindly check and confirm once..', 85, '0000-00-00 00:00:00', 1),
(13016, 12846, 74, 5, 0, 'she is not fit for sales....expected HR profile due to family situation she is choosing as a tellecaller so sustainability issue.....newly married, love marriage so regularity issues also there.......no laptop, expected salary high as a fresher15k ...very long gap she came for a job', 85, '0000-00-00 00:00:00', 1),
(13017, 12841, 59, 5, 0, 'Not suitable for our sales calling will not sustain and handle our pressure', 101, '0000-00-00 00:00:00', 1),
(13018, 12842, 59, 4, 0, '5050 Profile have exp in calling byjus need to be trained a lot kindly check and let me know yourinpuyts', 101, '0000-00-00 00:00:00', 1),
(13019, 12847, 59, 4, 0, '5050 Profiles have exp in housing finance sustainability doubts kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13020, 12848, 59, 5, 0, 'Fresher salary exp is very high will not run in a long not suitable', 101, '0000-00-00 00:00:00', 1),
(13021, 12844, 59, 5, 0, 'Have exp in Dot net not open for TxxampC will not sustain for a lonfg', 101, '0000-00-00 00:00:00', 1),
(13022, 12843, 59, 3, 0, 'Selected for Thanjavur Consultant ROle', 74, '2023-05-19 04:40:35', 1),
(13023, 12842, 44, 1, 0, NULL, 59, '2023-05-19 07:17:04', 1),
(13024, 12847, 29, 1, 0, NULL, 59, '2023-05-19 07:19:54', 1),
(13025, 12850, 59, 2, 0, '5050 Profile fresher need to check his sustainability salary exp is high being a fresher\n', 101, '0000-00-00 00:00:00', 1),
(13026, 12849, 59, 5, 0, 'Poor Communication and understanding is poor will not sustain and handle our roles', 101, '0000-00-00 00:00:00', 1),
(13027, 12853, 59, 5, 0, 'Fresher no basics need time to confirm the TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(13028, 12856, 59, 3, 0, 'Selected for ESales Karthika Team', 101, '0000-00-00 00:00:00', 1),
(13029, 12854, 59, 5, 0, 'Fresher No Basics Need Time To Confirm The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13030, 12852, 59, 3, 0, 'Selected for Consultant role ESales Team ', 101, '0000-00-00 00:00:00', 1),
(13031, 12855, 59, 5, 0, 'No Communication not suitable for our roles will not sustain', 101, '0000-00-00 00:00:00', 1),
(13032, 12852, 29, 7, 3, 'esales karthika team', 59, '2023-05-20 08:17:28', 1),
(13033, 12856, 29, 7, 3, 'esales ', 59, '2023-05-20 08:18:10', 1),
(13034, 12877, 59, 5, 0, 'No basics and not open with the txxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(13035, 12875, 59, 5, 0, 'Too long Distance Looking much for non voice process not open for sales callings', 85, '0000-00-00 00:00:00', 1),
(13036, 12873, 59, 4, 0, '5050 Profile no sustainability in the previous exp kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13037, 12874, 59, 5, 0, 'Looking for Testing profile only', 85, '0000-00-00 00:00:00', 1),
(13038, 12868, 59, 5, 0, 'Not comfort in the target based profile will not sustain and handle the work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(13039, 12870, 59, 5, 0, 'Fresher not much comfort in TxxampC not much strong with the basics', 85, '0000-00-00 00:00:00', 1),
(13040, 12871, 59, 5, 0, 'Fresher not open for TxxampC not much god with the basic skills too', 85, '0000-00-00 00:00:00', 1),
(13041, 12865, 59, 3, 0, 'Selected for PHP Have a good skills knowledge in PHP Can be trained open for TxxampC ', 85, '0000-00-00 00:00:00', 1),
(13042, 12706, 60, 1, 0, NULL, 18, '2023-05-23 09:49:22', 1),
(13043, 12867, 59, 5, 0, 'No Basic Skills Have Exp In Different Domain Will Not Sustain And Not Open For TxxampC', 60, '0000-00-00 00:00:00', 1),
(13044, 12894, 59, 5, 0, 'Not open for sales and appointment calling will not sustain', 85, '0000-00-00 00:00:00', 1),
(13045, 12895, 59, 5, 0, 'No Basics In JS/PHP Not Much Comfort In TxxampC Will Not Sustain In A Long Run have exp in Desktop Support', 85, '0000-00-00 00:00:00', 1),
(13046, 12896, 59, 5, 0, 'No basics in JS/PHP not much comfort in TxxampC will not sustain in a long run', 85, '0000-00-00 00:00:00', 1),
(13047, 12873, 102, 5, 0, 'Not suitable sales ', 59, '2023-05-23 07:13:05', 1),
(13048, 12886, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13049, 12889, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13050, 12878, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13051, 12880, 59, 5, 0, 'Not open for target based profile and too long distance ', 85, '0000-00-00 00:00:00', 1),
(13052, 12869, 59, 5, 0, 'Not open up Will not handle the work pressure not suitable ', 85, '0000-00-00 00:00:00', 1),
(13053, 12891, 59, 5, 0, 'No basics long Career Gap will not sustain in our roles not much comfrt in TxxampC', 85, '0000-00-00 00:00:00', 1),
(13054, 12890, 59, 5, 0, 'No basics looking for Govt Exams parents into govt will not sustain in a long not much comfort in TxxampC', 85, '0000-00-00 00:00:00', 1),
(13055, 12893, 59, 5, 0, 'Left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(13056, 12892, 59, 5, 0, 'Left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(13057, 12852, 59, 3, 0, 'Selected for Consultant role ESales Team ', 29, '2023-05-23 08:08:25', 1),
(13058, 12856, 59, 3, 0, 'Selected for ESales Karthika Team', 29, '2023-05-23 08:10:38', 1),
(13059, 12904, 59, 3, 0, 'Selected for Intern with 3.5yrs SA MERN', 101, '0000-00-00 00:00:00', 1),
(13060, 12903, 59, 5, 0, 'Salary Exp is high 1yr Exp but not good with the skills 2nd round reject Tamilmani', 101, '0000-00-00 00:00:00', 1),
(13061, 12907, 59, 2, 0, 'Task has been assigned for UI UX based on the task we can decide', 101, '0000-00-00 00:00:00', 1),
(13062, 12906, 59, 5, 0, 'No basics in Javascript Not much comfort in TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(13063, 12905, 59, 5, 0, 'No Basics In Javascript Not Much Comfort In TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13064, 12883, 59, 5, 0, 'Left with out attending the 2nd level interview Fresher for our sales can give atry', 101, '0000-00-00 00:00:00', 1),
(13065, 12902, 59, 5, 0, 'Have 1 yr Exp in Calling Salary high Exp much preferred is non voice will not sustain', 101, '0000-00-00 00:00:00', 1),
(13066, 12908, 59, 2, 0, 'Wealthy Family will not handle the role for a long will not sustain', 101, '0000-00-00 00:00:00', 1),
(13067, 12910, 59, 5, 0, 'No basics inJS came as a group and looking for job as a group will not run in a long not suitable', 101, '0000-00-00 00:00:00', 1),
(13068, 12912, 59, 5, 0, 'No Basics InJS Came As A Group And Looking For Job As A Group Will Not Run In A Long Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13069, 12911, 59, 5, 0, 'No Basics InJS Came As A Group And Looking For Job As A Group Will Not Run In A Long Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13070, 12909, 59, 5, 0, 'No Basics InJS Came As A Group And Looking For Job As A Group Will Not Run In A Long Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13071, 12914, 59, 5, 0, 'No basics will not handle our work pressure not much comfort in TxxampC not suitable', 101, '0000-00-00 00:00:00', 1),
(13072, 12913, 59, 5, 0, 'No Basics Will Not Handle Our Work Pressure Not Much Comfort In TxxampC Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13073, 12915, 59, 5, 0, 'No Basics Will Not Handle Our Work Pressure Not Much Comfort In TxxampC Not Suitable married ', 101, '0000-00-00 00:00:00', 1),
(13074, 12916, 59, 5, 0, 'No Basics Will Not Handle Our Work Pressure Not Much Comfort In TxxampC Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13075, 12901, 59, 4, 0, 'have exp in calling but sal exp seems to be high 5050 profile can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13076, 12901, 53, 1, 0, NULL, 59, '2023-05-24 07:29:51', 1),
(13077, 12897, 59, 5, 0, 'Long Career Gap not much comfort in taking calls and handling the work pressure', 101, '0000-00-00 00:00:00', 1),
(13078, 12920, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC Need To Train A Lot', 101, '0000-00-00 00:00:00', 1),
(13079, 12921, 59, 5, 0, 'Fresher for our role not much comfort with the TxxampC need to train a lot', 101, '0000-00-00 00:00:00', 1),
(13080, 12922, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC Looking for Java', 101, '0000-00-00 00:00:00', 1),
(13081, 12925, 59, 5, 0, 'Too long distance Fresher For Our Role Not Much Comfort With The TxxampC Need To Train A Lot', 101, '0000-00-00 00:00:00', 1),
(13082, 12924, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC ', 101, '0000-00-00 00:00:00', 1),
(13083, 12935, 59, 5, 0, 'Looking for Java profile only', 101, '0000-00-00 00:00:00', 1),
(13084, 12930, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC No basics will not sustain', 101, '0000-00-00 00:00:00', 1),
(13085, 12923, 59, 5, 0, 'Fresher For Our Role Not Much Comfort With The TxxampC Looking fir Java Profile', 101, '0000-00-00 00:00:00', 1),
(13086, 12928, 59, 5, 0, 'Looking for High Salary fresher have an offer for 3.5 LPA in testing role fresher for Development looking for high pay', 101, '0000-00-00 00:00:00', 1),
(13087, 12940, 74, 7, 0, 'she is ok with the profile....already worked in yamaha showroom tele calling for 1 year salary 12k, due to very long disance 3hours of travel quit the job .......father farmer and 4 siblings highly job need and expected 14k....ready to join..have no laptop kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(13088, 12919, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13089, 12941, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13090, 12926, 59, 5, 0, 'Not open up will not sustain in our roles not suitable', 101, '0000-00-00 00:00:00', 1),
(13091, 12940, 59, 5, 0, 'Going to proceed with the higher studies as her E.Sister got opportuity in core', 74, '2023-05-26 04:28:33', 1),
(13092, 12948, 74, 7, 0, 'he is ok with the profile,,,, expected to learn and easyily adaptive and talk active person....intrested in sales and ready to join in cafs due to exam time he is not sufficient to join so candidate came office today and discuss about joining....next month 4t after ready to join and have laptop expected 11 to 12k kindly check and confirm once', 101, '0000-00-00 00:00:00', 1),
(13093, 12952, 97, 5, 0, 'average in js can be trained ..she needs to confirm with her parents if she come back let us try', 85, '0000-00-00 00:00:00', 1),
(13094, 12953, 97, 5, 0, 'Not much good lau.. ', 85, '0000-00-00 00:00:00', 1),
(13095, 12934, 93, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13096, 12927, 59, 5, 0, 'Not Open Up Will Not Sustain In Our Roles Not Suitable', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(13097, 12931, 59, 4, 0, '5050 Profile fresher need to open up a lot but canbe trained in our roles kindly check and let me know you r inputs', 85, '0000-00-00 00:00:00', 1),
(13098, 12932, 59, 4, 0, '5050 Profile Nepali but Tamil managable Fresher Need To Open Up A Lot But Canbe Trained In Our Roles Kindly Check And Let Me Know You R Inputs', 85, '0000-00-00 00:00:00', 1),
(13099, 12946, 97, 5, 0, 'good in prog. lau.. he need to confirm with his parents about txxampc... ', 101, '0000-00-00 00:00:00', 1),
(13100, 12947, 97, 5, 0, 'only knowledge in html .. need to learn a lot..', 101, '0000-00-00 00:00:00', 1),
(13101, 12945, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts long Career Gap Salary Exp is high', 101, '0000-00-00 00:00:00', 1),
(13102, 12944, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13103, 12942, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13104, 12950, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13105, 12949, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13106, 12956, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13107, 12955, 97, 4, 0, 'Fresher 50-50 Profile... average in convincing skill ..need to train a lot.. kindly check and update your feed back', 101, '0000-00-00 00:00:00', 1),
(13108, 12959, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13109, 12958, 59, 3, 0, 'Selected for B2B team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13110, 12969, 74, 7, 0, 'he is ok with the profile completed mba and looking for finance related job due to opening of hr in very less in thanjavur....already working in muthoot finance 3 months and releived due to health issue .....and expected 13k take home and father is farmer and have laptop and expected to join immediately....kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(13111, 12970, 59, 4, 0, 'Have Exp in sales but different domain 5050 profile can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13112, 12983, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13113, 12984, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts too long Distane\n', 101, '0000-00-00 00:00:00', 1),
(13114, 12989, 59, 2, 0, 'Have Basic skills sustainability doubts if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13115, 12969, 59, 1, 0, NULL, 74, '2023-05-29 04:42:27', 1),
(13116, 12972, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13117, 12971, 59, 5, 0, 'Fresher No Basic Skills knowledge need to train a lot but not open for TxxampC Need time to think and confirm from the candidate end Sustainability doubts', 101, '0000-00-00 00:00:00', 1),
(13118, 12968, 59, 5, 0, 'Not open up will not suit our roles ', 101, '0000-00-00 00:00:00', 1),
(13119, 12973, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts she appeared for IT openings', 101, '0000-00-00 00:00:00', 1),
(13120, 12975, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts Salary High Exp', 101, '0000-00-00 00:00:00', 1),
(13121, 12974, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13122, 12978, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13123, 12966, 59, 4, 0, 'Too long Distance Can relocate Career gap shewas into her own business now lookin for a job can give atry\n', 101, '0000-00-00 00:00:00', 1),
(13124, 12976, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13125, 12977, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13126, 12980, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts too long Distance\n', 101, '0000-00-00 00:00:00', 1),
(13127, 12982, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts too long distance', 101, '0000-00-00 00:00:00', 1),
(13128, 12981, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13129, 12986, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13130, 12990, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13131, 12985, 59, 5, 0, 'Fresher for REact No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13132, 12992, 59, 5, 0, 'Fresher No Basic Skills Knowledge Need To Train A Lot But Not Open For TxxampC Need Time To Think And Confirm From The Candidate End Sustainability Doubts', 101, '0000-00-00 00:00:00', 1),
(13133, 12966, 53, 1, 0, NULL, 59, '2023-05-30 09:57:12', 1),
(13134, 12970, 71, 5, 0, 'Not fit for sales', 59, '2023-05-30 10:07:07', 1),
(13135, 12958, 53, 7, 0, 'Selected for b2b. Shortlisted from presidency colleage job fair, gud in communication, fresher, very bold. she will suit for b2b.', 59, '2023-05-30 10:11:14', 1),
(13136, 12959, 53, 7, 0, 'selected from presidency college job fair, gud communication, very bold, will suit for b2b', 59, '2023-05-30 10:11:25', 1),
(13137, 12931, 53, 1, 0, NULL, 59, '2023-05-30 10:13:12', 1),
(13138, 12932, 53, 1, 0, NULL, 59, '2023-05-30 10:13:38', 1),
(13139, 12941, 19, 7, 4, 'sELECTED', 59, '2023-05-30 10:16:08', 1),
(13140, 12954, 59, 5, 0, 'Not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(13141, 13016, 59, 5, 0, 'Not suitable for our sales roles will not handle the work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13142, 13015, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC Will Not Sustain rejected in 2nd round Gokul', 101, '0000-00-00 00:00:00', 1),
(13143, 13012, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13144, 13002, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13145, 13008, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13146, 13004, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13147, 12999, 59, 3, 0, 'Selecetd for Kannan team in consutlant Role', 101, '0000-00-00 00:00:00', 1),
(13148, 13003, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13149, 12967, 59, 5, 0, 'Not suitable for our sales profile will not handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13150, 12998, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13151, 13001, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13152, 13000, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13153, 13010, 59, 2, 0, 'Fresher for UI/UX he has exp in Graphic Design and looking for UI UX Salary Exp min 30K 2nd Hold need to give him the confirmation based on other profiles\n', 101, '0000-00-00 00:00:00', 1),
(13154, 12997, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13155, 2446, 97, 4, 0, 'Fresher...Good in convincing Skills... Can be trained..Kindly check and update your inputs', 85, '0000-00-00 00:00:00', 1),
(13156, 12858, 59, 3, 0, 'Selected for Consultant Role for Kannan Team', 101, '0000-00-00 00:00:00', 1),
(13157, 13013, 59, 5, 0, 'Not open for calling activities no sustainability will not work in a company more than 6 months', 101, '0000-00-00 00:00:00', 1),
(13158, 13018, 59, 4, 0, 'Have Exp in Credit Card SalesCan be trained in our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13159, 2446, 105, 5, 0, 'NOT RESPONSE, ALSO LOOKING HIGN SALARY PACKAGE', 97, '2023-05-31 04:10:48', 1),
(13160, 12941, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 19, '2023-05-31 05:00:34', 1),
(13161, 13030, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13162, 13031, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13163, 13025, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13164, 13024, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13165, 13023, 59, 5, 0, 'Fresher No basic skills in JS Not much comfort with the TxxampC if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13166, 13022, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will not sustain', 101, '0000-00-00 00:00:00', 1),
(13167, 13034, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13168, 13035, 59, 5, 0, 'Fresher No Basic Skills In JS Not Comfort With The TxxampC If He Comes Back Let Us Try Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13169, 13033, 59, 2, 0, 'Need to schedule the cndidate for the final round with Gokul have basic knowledge 2nd round interviewed by Tamilmani\n', 101, '0000-00-00 00:00:00', 1),
(13170, 13019, 59, 3, 0, 'Selected for Banu in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13171, 12782, 60, 1, 0, NULL, 44, '2023-05-31 06:38:07', 1),
(13172, 12834, 59, 3, 0, 'Selected for Charles Team in consultant ROle', 102, '2023-05-31 07:00:04', 1),
(13173, 13018, 18, 8, 0, 'Not Attended', 59, '2023-05-31 07:01:40', 1),
(13174, 13019, 53, 7, 0, 'gud communication, convincing tone, having clarity in speech. Selected for b2b', 59, '2023-06-01 09:53:48', 1),
(13175, 12858, 19, 7, 4, 'Slected', 59, '2023-06-01 09:55:17', 1),
(13176, 12999, 19, 7, 5, 'Selected', 59, '2023-06-01 09:56:38', 1),
(13177, 12788, 60, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13178, 12958, 59, 3, 0, 'Selected for B2B team in Consultant Role', 53, '2023-06-01 12:39:14', 1),
(13179, 12959, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-06-01 12:42:19', 1),
(13180, 13019, 59, 3, 0, 'Selected for Banu in Consultant Role', 53, '2023-06-01 12:44:42', 1),
(13181, 13038, 59, 5, 0, 'No basic Skills not open for TxxampC will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13182, 13037, 59, 5, 0, 'No Basic Skills Not Open For TxxampC Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13183, 13039, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13184, 13042, 97, 2, 0, 'not much good in prog lau... SNR interviewd By kaviya ...candidate need to learn 1week.. if he come back let us try.', 101, '0000-00-00 00:00:00', 1),
(13185, 13046, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13186, 13041, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13187, 13040, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13188, 13043, 97, 4, 0, 'has exp in loan sales... good in convincing let us try..check and update your inputs..', 101, '0000-00-00 00:00:00', 1),
(13189, 13047, 59, 5, 0, 'Looking for Collection kyc document colection roles not open for sales call not suitable', 101, '0000-00-00 00:00:00', 1),
(13190, 13048, 59, 4, 0, 'CommunicationOk can be trained but sustainability doubts as he is looking for core opportunities too Job fair follow up kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13191, 12858, 59, 3, 0, 'Selected for Consultant Role for Kannan Team', 19, '2023-06-02 01:18:24', 1),
(13192, 12999, 59, 3, 0, 'Selecetd for Kannan team in consutlant Role', 19, '2023-06-02 01:19:05', 1),
(13193, 13036, 97, 4, 0, '6m of exp in byjus.. good communication skill.. sustainbility doubts.. kindly check xxamp update your inputs', 101, '0000-00-00 00:00:00', 1),
(13194, 13050, 97, 5, 0, 'fresher 5yrs gap.. not suit for our process', 101, '0000-00-00 00:00:00', 1),
(13195, 13055, 97, 4, 0, 'Fresher...pressure handling doubts.good in convincing skill...let us try...', 101, '0000-00-00 00:00:00', 1),
(13196, 13053, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13197, 13054, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13198, 13059, 59, 4, 0, 'Internal Reference not much suits to our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13199, 13074, 74, 7, 0, 'he is already worked in field sales executive in just dial and rbl...for 2 years and due to shift over thanjavur releive tha job notice period 30 days in rbl credit card....expected salary 17k take home.........good comunication in sales and fit for team....need to confirm the joining date completed bsc.....from poor background kindly check and confirm once for joining', 85, '0000-00-00 00:00:00', 1),
(13200, 13074, 59, 3, 0, 'Selected for Sithy Team in Consultant Role\n', 74, '2023-06-05 03:14:35', 1),
(13201, 13080, 74, 7, 0, 'she is ok with the team and sales already worked in sim card sales for 2 years ...expected salary 15k and ready to join imeeditaely.....due to field exective tranfer in airtel so releived the job....travel time 1 hour but she is ok with the profile...kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(13202, 13080, 59, 5, 0, '60kms 1 hr travel,Previous Exp in Vodafone in native itself,For 1 day interview travel itself she got tired and she need time to give her confirmation\n\nParents are not ok with the distance', 74, '2023-06-05 03:21:14', 1),
(13203, 13055, 53, 1, 0, NULL, 97, '2023-06-05 04:38:45', 1),
(13204, 13036, 29, 1, 0, NULL, 97, '2023-06-05 04:41:39', 1),
(13205, 12955, 53, 1, 0, NULL, 97, '2023-06-05 04:43:55', 1),
(13206, 13043, 19, 7, 4, 'Selected', 97, '2023-06-05 05:08:51', 1),
(13207, 13051, 59, 5, 0, 'Left Without Attending The Interview', 85, '0000-00-00 00:00:00', 1),
(13208, 13066, 59, 5, 0, 'Have exp in Store Sales will not take calls and handle our workpressure not suitable', 85, '0000-00-00 00:00:00', 1),
(13209, 13068, 59, 5, 0, 'He is a NISM certified being a fresher salary exp is very high holding several offers and looking for additional will not sustain', 85, '0000-00-00 00:00:00', 1),
(13210, 13069, 59, 5, 0, 'Fresher for Sales Not ready to go with Target will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(13211, 13070, 59, 5, 0, 'Fresher 2nd round rejected by syed not much good candidate 5050 will not sustain', 85, '0000-00-00 00:00:00', 1),
(13212, 13071, 59, 5, 0, 'Left Without Attending The Interview', 85, '0000-00-00 00:00:00', 1),
(13213, 13076, 59, 5, 0, 'Left Without attending the interview', 85, '0000-00-00 00:00:00', 1),
(13214, 13077, 59, 8, 0, 'Left without attending the interview', 85, '0000-00-00 00:00:00', 1),
(13215, 13094, 59, 4, 0, '5050 Profile fresher Commmunication Ok Can give a try kindly check and let meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(13216, 13087, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13217, 13088, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13218, 13082, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13219, 13078, 102, 7, 0, 'Shortlist for team', 85, '0000-00-00 00:00:00', 1),
(13220, 13079, 102, 5, 0, 'Not Suitable Sales ', 85, '0000-00-00 00:00:00', 1),
(13221, 13083, 59, 3, 0, 'Communication Ok can be trained in our HR profile and also can be trained in accounts need to come back with her confirmation on the DOJ', 85, '0000-00-00 00:00:00', 1),
(13222, 13043, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 19, '2023-06-05 07:21:36', 1),
(13223, 13072, 59, 5, 0, 'Looking for non voice process no communication not suitable', 104, '0000-00-00 00:00:00', 1),
(13224, 13090, 59, 5, 0, 'Too long Distance not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(13225, 13075, 59, 3, 0, 'Selected for Node Js Tamilmani in internship employment conditions ', 104, '0000-00-00 00:00:00', 1),
(13226, 13081, 102, 7, 0, 'Shortlist for team ', 104, '0000-00-00 00:00:00', 1),
(13227, 13086, 59, 3, 0, 'Selected for PHP Role with Stipend and employment', 104, '0000-00-00 00:00:00', 1),
(13228, 13085, 57, 4, 0, 'Candidate is ok pls confirm the salary and joining date thanks ', 104, '0000-00-00 00:00:00', 1),
(13229, 13089, 59, 5, 0, 'too long Distance will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(13230, 13092, 59, 2, 0, 'Need to come with the knowledge 5050 profile if he comes back let us try ', 104, '0000-00-00 00:00:00', 1),
(13231, 13097, 59, 5, 0, 'Left without attending the interview', 104, '0000-00-00 00:00:00', 1),
(13232, 13094, 86, 5, 0, 'Not satisfied', 59, '2023-06-05 08:51:18', 1),
(13233, 13093, 74, 7, 0, 'She is ok with the profile ..already worked in assistant for registering process and getting 8k + regular 3 k incentives new to sales field but ready to learn and she performed good in interview expect 12k and she ready to join immediately....have no laptop.... kindly check and confirm once ', 85, '0000-00-00 00:00:00', 1),
(13234, 13093, 59, 1, 0, NULL, 74, '2023-06-06 03:52:01', 1),
(13235, 13073, 59, 3, 0, 'Selected for Syed Team in Consultant Role \n Communication Ok Have Parttime Exp He Is Into Marshial Atrs Timing Much Focused 5050 Kindly Check And Let Me Know You Inputs', 85, '0000-00-00 00:00:00', 1),
(13236, 13085, 59, 3, 0, 'Selected for Syed Team in Staff Role', 57, '2023-06-06 05:58:12', 1),
(13237, 13122, 59, 5, 0, 'No basics skills not much comfort in TxxampC looking for salary growth will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(13238, 13120, 59, 4, 0, 'Communication Ok have attitude will not sustain for a long in our roles internal reference kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13239, 13115, 97, 5, 0, 'Interviewed xxamp Rejected By Manikandan', 85, '0000-00-00 00:00:00', 1),
(13240, 13107, 97, 5, 0, 'Interviewed xxamp Rejected By Kavya', 85, '0000-00-00 00:00:00', 1),
(13241, 13098, 59, 3, 0, 'Selected for Kannan TEam in Staff Role\n', 85, '0000-00-00 00:00:00', 1),
(13242, 13116, 59, 4, 0, 'Communicaiton Ok Not relevant Exp but in sales 5050 Profile can be trained kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13243, 13103, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13244, 13105, 59, 5, 0, 'Fresher have basic skills in designing but ready to go with that and looking for Digital marketing and not open for TxxampC being a fresher', 85, '0000-00-00 00:00:00', 1),
(13245, 13104, 59, 5, 0, 'Fresher for Digital Marketing no ideas in DM but the salary exp is min 25K and not ready to come down', 85, '0000-00-00 00:00:00', 1),
(13246, 13106, 57, 4, 0, 'Candidate is ok pls confirm the joining date and salary. thanks', 85, '0000-00-00 00:00:00', 1),
(13247, 13119, 59, 5, 0, 'Not a relevant Profile will not handle our sales roles and not suitable', 85, '0000-00-00 00:00:00', 1),
(13248, 13114, 97, 5, 0, 'Interviewed xxamp Rejected By Bharath', 85, '0000-00-00 00:00:00', 1),
(13249, 13113, 97, 5, 0, 'Interviewed xxamp Rejected By Bharath', 85, '0000-00-00 00:00:00', 1),
(13250, 13101, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13251, 13102, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13252, 13014, 56, 4, 0, 'Selected', 85, '0000-00-00 00:00:00', 1),
(13253, 13116, 29, 1, 0, NULL, 59, '2023-06-06 07:47:39', 1),
(13254, 13120, 19, 5, 1, 'rEJECTED', 59, '2023-06-06 07:55:34', 1),
(13255, 13098, 19, 7, 0, 'SELECTED', 59, '2023-06-06 08:00:29', 1),
(13256, 13048, 53, 1, 0, NULL, 59, '2023-06-06 08:13:17', 1),
(13257, 13073, 57, 4, 0, 'Candidate is ok please confirm the joining date and salary.', 59, '2023-06-06 08:16:22', 1),
(13258, 12801, 59, 3, 0, 'Selected for Flutter Profile in employment role for 2yrs SA', 59, '2023-06-07 10:15:47', 1),
(13259, 13128, 74, 5, 0, 'sustainability issue no job need', 85, '0000-00-00 00:00:00', 1),
(13260, 13081, 59, 3, 0, 'Selected for Charles TEam in Consultant Role', 102, '2023-06-07 05:08:32', 1),
(13261, 13078, 59, 3, 0, 'Selected for Charles Team in stff role', 102, '2023-06-07 05:08:57', 1),
(13262, 12996, 59, 5, 0, 'Open for Accounts profile have exp in accounts but not more than a year she will work preparing for Govt exams too will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(13263, 13123, 59, 4, 0, '5050 Profile Passed 12th std and looking for job as her family need is there kindly check andlet me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13264, 13129, 59, 3, 0, 'Selected for B2b Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13265, 13130, 59, 5, 0, 'Fresher not much strong with the basics sustainability doubts not ok with the TxxampC', 85, '0000-00-00 00:00:00', 1),
(13266, 13131, 59, 3, 0, ' 5050 Profile Have Exp In Insurance For Around 2 Yrs Sustainability Doubts Have Exposure In Different Domain Kindly Check And Let Me Know Your Inputs Sir Selected for Shanmugam team based on Gaurav sir inputs', 85, '0000-00-00 00:00:00', 1),
(13267, 13127, 59, 5, 0, 'Not suitable for our roles ', 85, '0000-00-00 00:00:00', 1),
(13268, 13133, 59, 5, 0, '5050 Profile fresher asked him to come for 2nd level post lunch but didnt appear', 85, '0000-00-00 00:00:00', 1),
(13269, 13125, 59, 5, 0, 'Fresher Not Much Strong With The Basics Sustainability Doubts Not Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13270, 13126, 59, 5, 0, 'Fresher Not Much Strong With The Basics Sustainability Doubts Not Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13271, 12948, 59, 3, 0, 'Selected for Thanjavur in Consutlant Role', 74, '2023-06-07 05:37:19', 1),
(13272, 13014, 30, 7, 4, 'Confirm his joining CTC finalized 5lac', 56, '2023-06-07 06:24:32', 1),
(13273, 13123, 53, 1, 0, NULL, 59, '2023-06-07 07:45:29', 1),
(13274, 13129, 53, 7, 0, 'selected', 59, '2023-06-07 07:46:12', 1),
(13275, 13131, 29, 7, 2, 'shanmugam team, ', 59, '2023-06-07 07:47:23', 1),
(13276, 13129, 59, 3, 0, 'Selected for B2b Consultant Role', 53, '2023-06-08 10:01:15', 1),
(13277, 13131, 59, 3, 0, ' 5050 Profile Have Exp In Insurance For Around 2 Yrs Sustainability Doubts Have Exposure In Different Domain Kindly Check And Let Me Know Your Inputs Sir Selected for Shanmugam team based on Gaurav sir inputs', 29, '2023-06-08 10:08:33', 1),
(13278, 13073, 59, 3, 0, 'Selected for Syed Team in Consultant Role \n Communication Ok Have Parttime Exp He Is Into Marshial Atrs Timing Much Focused 5050 Kindly Check And Let Me Know You Inputs', 57, '2023-06-08 10:17:49', 1),
(13279, 13134, 59, 5, 0, 'Looking for High CTC Fresher will not sustain no basics skills not suitable', 85, '0000-00-00 00:00:00', 1),
(13280, 13135, 59, 5, 0, 'Fresher 5050 Technical reject by manikandan not suitable', 85, '0000-00-00 00:00:00', 1),
(13281, 13137, 59, 5, 0, 'No Clear Communication no sustainability not suitable will not handle our presssure', 85, '0000-00-00 00:00:00', 1),
(13282, 13138, 59, 3, 0, 'Selected for Operation Renewals will give an option to get trained in Digital Marketing later Good Profile Fresher Can be trained in our roles final round by gokul', 85, '0000-00-00 00:00:00', 1),
(13283, 13139, 59, 5, 0, 'Fresher for our Insurance Sales have exp in credit card sales communicative asked him to come for final round post lunch but didnt appear ', 85, '0000-00-00 00:00:00', 1),
(13284, 13140, 59, 3, 0, 'Selected for Banu Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(13285, 13141, 59, 3, 0, 'Selected for Banuteam in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13286, 13142, 59, 5, 0, 'Fresher Looking for IT and not open for TxxampC salary exp is min 3LPA will not sustain not suitable\n', 85, '0000-00-00 00:00:00', 1),
(13287, 13136, 59, 5, 0, 'No basics Very SLow will not handle our work sustainability doubts not suitable', 85, '0000-00-00 00:00:00', 1),
(13288, 13140, 53, 7, 0, 'have part time job experience in matrimony and tutuion institute. Convincing and very clarity voice. Selected for b2b. Sal 12 - 13k', 59, '2023-06-08 05:51:22', 1),
(13289, 13141, 53, 7, 0, 'have part time exp in matrimony, 50 50, will try. Suggested sal 11 - 12k', 59, '2023-06-08 05:51:52', 1),
(13290, 13140, 59, 3, 0, 'Selected for Banu Team in Staff Role', 53, '2023-06-09 10:02:37', 1),
(13291, 13141, 59, 3, 0, 'Selected for Banuteam in Consultant Role', 53, '2023-06-09 10:03:42', 1),
(13292, 13098, 59, 3, 0, 'Selected for Kannan TEam in Staff Role\n', 19, '2023-06-09 12:02:42', 1),
(13293, 13144, 59, 5, 0, 'Fresher Average Communication 5050 Profile asked the candidate to come for the interview post lunch but didnt appear', 85, '0000-00-00 00:00:00', 1),
(13294, 13145, 59, 3, 0, 'Selected for Charles Team in Staff Role', 85, '0000-00-00 00:00:00', 1),
(13295, 13146, 59, 5, 0, 'Kannan Rejected ', 85, '0000-00-00 00:00:00', 1),
(13296, 13150, 59, 4, 0, 'have exp in Sales relevant Domain Can give a try for our roles kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13297, 13151, 59, 5, 0, 'Holding 2 offers with 8K and 10K and looking for more will not sustain and not suitable', 85, '0000-00-00 00:00:00', 1),
(13298, 13152, 59, 5, 0, 'Fresher not much good in basics will not sustain and handle our roles not open for TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(13299, 13149, 59, 4, 0, '5050 Profile no sustainability in the previous exp B2B relevancy no kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13300, 13147, 59, 5, 0, 'Fresher Not Much Good In Basics Will Not Sustain And Handle Our Roles If she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(13301, 13154, 59, 5, 0, 'Fresher no basics skills in PHP seems to be slow will not handle our work pressure not suitable', 85, '0000-00-00 00:00:00', 1),
(13302, 13149, 53, 1, 0, NULL, 59, '2023-06-09 06:54:24', 1),
(13303, 13146, 19, 7, 1, 'NOT FIT', 59, '2023-06-09 06:56:35', 1),
(13304, 13145, 102, 7, 0, 'Shortlist for team ', 59, '2023-06-09 06:59:40', 1),
(13305, 13150, 51, 5, 0, 'Rejected', 59, '2023-06-09 07:08:23', 1),
(13306, 13153, 97, 4, 0, 'Has exp in star Health.. job need...sustainability xxamp pressure handling doubts..kindly check and update your feed back', 104, '0000-00-00 00:00:00', 1),
(13307, 13145, 59, 3, 0, 'Selected for Charles Team in Staff Role', 102, '2023-06-10 06:35:34', 1),
(13308, 13014, 60, 1, 0, NULL, 30, '2023-06-12 10:34:41', 1),
(13309, 13185, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13310, 13184, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13311, 13180, 97, 5, 0, 'rejected in the aptitude round', 104, '0000-00-00 00:00:00', 1),
(13312, 13193, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13313, 13182, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13314, 13203, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13315, 13198, 97, 5, 0, 'rejected by vishwa', 104, '0000-00-00 00:00:00', 1),
(13316, 13202, 97, 5, 0, 'Rejected In The Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13317, 13199, 59, 5, 0, 'Aptitude Cleared Profile But No Ok With The TxxampC', 104, '0000-00-00 00:00:00', 1),
(13318, 13173, 59, 5, 0, 'Aptitude Cleared Profile But Not Ok With The TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(13319, 13186, 59, 2, 0, 'Fresher 2nd Round interviewed by manikandan can be trained in our profile need to confirm his presence for the final round', 104, '0000-00-00 00:00:00', 1),
(13320, 13187, 59, 5, 0, 'First Round with Sathish but left without attending the 2nd roudn', 104, '0000-00-00 00:00:00', 1),
(13321, 13176, 59, 2, 0, 'Freshr need to come back with his confirmation for the TxxampC', 104, '0000-00-00 00:00:00', 1),
(13322, 13178, 59, 5, 0, 'Fresher No Basics And Not Open For TxxampC Not Suitable', 104, '0000-00-00 00:00:00', 1),
(13323, 13192, 59, 5, 0, 'Fresher No Basics And Not Open For TxxampC Not Suitable', 104, '0000-00-00 00:00:00', 1),
(13324, 13172, 59, 5, 0, 'Not Ok With The TxxampC Fresher If he come back let us try', 104, '0000-00-00 00:00:00', 1),
(13325, 13195, 59, 5, 0, 'Fresher Not Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13326, 13188, 59, 5, 0, 'Fresher Have Basics but Not Open For TxxampC Not Suitable', 104, '0000-00-00 00:00:00', 1),
(13327, 13167, 59, 5, 0, 'Communicaiton not clear will not handle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(13328, 13183, 59, 5, 0, 'Fresher No Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13329, 13181, 59, 5, 0, ' Not Ok With The TxxampC too long distance\n', 85, '0000-00-00 00:00:00', 1),
(13330, 13189, 59, 5, 0, 'Aptitude Cleared Profile But No Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13331, 13205, 59, 5, 0, 'Aptitude Cleared Profile But No Ok With The TxxampC', 85, '0000-00-00 00:00:00', 1),
(13332, 13170, 59, 5, 0, 'Left without attending the 2nd level interview salary eXp is high\n', 85, '0000-00-00 00:00:00', 1),
(13333, 13197, 97, 5, 0, 'Rejected by bharath', 85, '0000-00-00 00:00:00', 1),
(13334, 13191, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13335, 13200, 59, 5, 0, 'Left Without Attending', 85, '0000-00-00 00:00:00', 1),
(13336, 13174, 59, 5, 0, 'Fresher No Basics And Not Open For TxxampC Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13337, 13177, 59, 5, 0, 'Aptitude Cleared Profile but no ok with the TxxampC', 85, '0000-00-00 00:00:00', 1),
(13338, 13171, 59, 5, 0, 'Fresher no basics and not open for TxxampC not suitable', 85, '0000-00-00 00:00:00', 1),
(13339, 13206, 59, 3, 0, 'Selected for Kannan Teammin Staff Role ', 85, '0000-00-00 00:00:00', 1),
(13340, 13207, 59, 2, 0, '2nd round interviewed by kavya candidate need to come back after learning will check ', 85, '0000-00-00 00:00:00', 1),
(13341, 13194, 27, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13342, 13179, 59, 3, 0, 'Selected for Banu Team in Consultant Role Fresher', 85, '0000-00-00 00:00:00', 1),
(13343, 13168, 59, 5, 0, 'Not ready to join for the voice process', 85, '0000-00-00 00:00:00', 1),
(13344, 13132, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13345, 13132, 53, 7, 0, 'Selected For B2b, Sal 13k, Pls Cnfrm The DOJ', 59, '2023-06-12 07:37:44', 1),
(13346, 13179, 53, 7, 0, 'Selected For B2b, Sal 13k, Pls Cnfrm The DOJ', 59, '2023-06-12 07:38:13', 1),
(13347, 13169, 59, 3, 0, 'Selected for Banu Team in Consultnt ROle', 85, '0000-00-00 00:00:00', 1),
(13348, 13168, 19, 7, 4, 'SELECTED', 59, '2023-06-12 07:40:06', 1),
(13349, 13206, 19, 7, 4, 'SELECTED', 59, '2023-06-12 07:40:50', 1),
(13350, 13190, 59, 3, 0, 'Selected for Banu Team 3months Exp', 85, '0000-00-00 00:00:00', 1),
(13351, 13169, 53, 7, 0, 'Selected For B2b, Sal 13k, Pls Cnfrm The DOJ', 59, '2023-06-12 07:53:57', 1),
(13352, 13190, 53, 7, 0, 'selected for b2b, sal 13k, pls cnfrm the DOJ', 59, '2023-06-12 07:55:11', 1),
(13353, 13168, 59, 5, 0, 'Not ready to join for the voice process', 19, '2023-06-13 10:14:47', 1),
(13354, 13206, 59, 3, 0, 'Selected for Kannan Teammin Staff Role ', 19, '2023-06-13 10:15:36', 1),
(13355, 13146, 59, 5, 0, 'Kannan Rejected ', 19, '2023-06-13 10:16:49', 1),
(13356, 13157, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13357, 13190, 59, 3, 0, 'Selected for Banu Team 3months Exp', 53, '2023-06-13 11:48:23', 1),
(13358, 13179, 59, 3, 0, 'Selected for Banu Team in Consultant Role Fresher', 53, '2023-06-13 11:48:41', 1),
(13359, 13169, 59, 3, 0, 'Selected for Banu Team in Consultnt ROle', 53, '2023-06-13 11:49:09', 1),
(13360, 13132, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-06-13 11:49:28', 1),
(13361, 13209, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13362, 13210, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13363, 13225, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13364, 13226, 59, 3, 0, 'Communicaiton Ok Have Exp In Sales Seems To Be A Good Profile Kindly Check And Let Me Knwo Your Inputs\nSelected for Manikandan Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13365, 13234, 59, 5, 0, 'Technical round reject by Gkul', 101, '0000-00-00 00:00:00', 1),
(13366, 13231, 59, 5, 0, 'Not suitable no basics will not sustain', 101, '0000-00-00 00:00:00', 1),
(13367, 13235, 59, 2, 0, 'Need to come back after learning\n', 101, '0000-00-00 00:00:00', 1),
(13368, 13223, 59, 2, 0, 'Need to come back after learning', 101, '0000-00-00 00:00:00', 1),
(13369, 13215, 59, 5, 0, 'Looking for Accounts but no basics in Accounts not open for Calling Profile', 101, '0000-00-00 00:00:00', 1),
(13370, 13212, 59, 5, 0, 'Looking for Account profile Fresher no basics in Tally not open for telecalling too', 101, '0000-00-00 00:00:00', 1),
(13371, 13213, 59, 2, 0, 'Need to come back with his confirmation on the TxxampC', 101, '0000-00-00 00:00:00', 1),
(13372, 13211, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Willnot Sustain Long Distancce', 101, '0000-00-00 00:00:00', 1),
(13373, 13216, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Willnot Sustain', 101, '0000-00-00 00:00:00', 1),
(13374, 13214, 59, 5, 0, 'No Sustainability in previous Exp looking only for salary growth no strong knowledge not suitable', 101, '0000-00-00 00:00:00', 1),
(13375, 13218, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Willnot Sustain looking muchfir a java', 101, '0000-00-00 00:00:00', 1),
(13376, 13217, 59, 5, 0, 'Fresher No Basics In Javascript Not Much Comfort With The TxxampC Will not Sustain Looking much for Java', 101, '0000-00-00 00:00:00', 1),
(13377, 13220, 59, 5, 0, 'Fresher mentioned Basics In Javascript but not answering Not Much Comfort With The TxxampC Willnot Sustain', 101, '0000-00-00 00:00:00', 1),
(13378, 13222, 59, 5, 0, 'Fresher no Basics in Javascript not much comfort with the TxxampC Willnot sustain', 101, '0000-00-00 00:00:00', 1),
(13379, 13221, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13380, 13232, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13381, 13230, 59, 5, 0, 'Left without attending the interview', 101, '0000-00-00 00:00:00', 1),
(13382, 13224, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13383, 13219, 59, 3, 0, 'Selected for Shanmugam team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13384, 13238, 59, 5, 0, 'Frequent Job Changes will not sustain and not suitable ', 101, '0000-00-00 00:00:00', 1),
(13385, 13225, 86, 4, 0, 'Selected for next round', 59, '2023-06-13 07:32:01', 1),
(13386, 13226, 86, 7, 0, 'Sriram Sir Finalized the candidate Ctc-2.25 Lakhs.', 59, '2023-06-13 07:32:26', 1),
(13387, 13219, 44, 4, 4, 'Candidate ok for me need your Opinion ', 59, '2023-06-13 07:54:57', 1),
(13388, 13241, 59, 5, 0, 'Fresher not open for TxxampC no basic ideas in JS will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13389, 13159, 42, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13390, 13160, 97, 5, 0, 'good communication skill... has exp in collection .. holding many offer expt high from that. will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(13391, 13161, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13392, 13163, 97, 4, 0, 'has exp in sales.. good communication xxamp convincing skill. check and update your inputs..', 104, '0000-00-00 00:00:00', 1),
(13393, 13164, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13394, 13165, 97, 4, 0, 'good communication .. good in convincing skill... kindly check and update your inputs..', 104, '0000-00-00 00:00:00', 1),
(13395, 13166, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13396, 13165, 29, 7, 3, 'sarath team, task given for salary increase from aug 2023, check resume for reference', 97, '2023-06-14 10:23:48', 1),
(13397, 13163, 51, 4, 0, 'selected', 97, '2023-06-14 10:28:02', 1),
(13398, 13153, 19, 7, 4, 'Good', 97, '2023-06-14 10:44:26', 1),
(13399, 13236, 74, 7, 0, 'she is ok with the profile and intrested in banking process,, already done in hdfc but not getting confirmation intrested in sales process...expected 13k and have laptop,,,,expected to join monday itsef....completed mphil and not intrested in teaching profile...father farmer and have one brother work in chennai...industry....not ready to marriage so no issues...kindly check and confirm once', 85, '0000-00-00 00:00:00', 1),
(13400, 13249, 59, 5, 0, 'Aged Have huge Exp in Core and will not sustain in our roles not suitable', 85, '0000-00-00 00:00:00', 1),
(13401, 13248, 59, 5, 0, 'Not Suitable will not handle our roles', 85, '0000-00-00 00:00:00', 1),
(13402, 13243, 59, 5, 0, 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13403, 13246, 59, 5, 0, 'Not suitable for our roles long distance', 85, '0000-00-00 00:00:00', 1),
(13404, 13240, 59, 5, 0, 'Very high CTC exp not a relevant profile will not handle our sales', 85, '0000-00-00 00:00:00', 1),
(13405, 13239, 59, 5, 0, 'No Communicaiton no understanding not suitable', 85, '0000-00-00 00:00:00', 1),
(13406, 13236, 59, 3, 0, 'Seleted for Thanjavur consultant Role', 74, '2023-06-14 11:47:15', 1),
(13407, 13158, 97, 7, 0, 'fresher to our role...has knowledge in prog.lau..Second round interviewed by kavya..Final round interviewedxxampSelected by gokul', 85, '0000-00-00 00:00:00', 1),
(13408, 13158, 59, 1, 0, NULL, 97, '2023-06-14 12:19:35', 1),
(13409, 13254, 59, 5, 0, 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13410, 13255, 59, 5, 0, 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13411, 13252, 59, 5, 0, 'Not suitable for our sales calling ', 85, '0000-00-00 00:00:00', 1),
(13412, 13253, 59, 5, 0, 'Fresher Not Open For TxxampC No Basic Ideas In JS Will Not Sustain And Not Suitable', 85, '0000-00-00 00:00:00', 1),
(13413, 13256, 59, 5, 0, 'Not suitable not open for sales calling', 85, '0000-00-00 00:00:00', 1),
(13414, 13258, 59, 4, 0, 'Have Exp Can Be Trained In Our Roles Kindly Check And Let Me Know Your Inputs ', 101, '0000-00-00 00:00:00', 1),
(13415, 13257, 59, 3, 0, 'Selected for Staff Role Manikandan Team', 101, '0000-00-00 00:00:00', 1),
(13416, 13251, 59, 5, 0, 'No Communication to long distance will not sustain in our roles not suitable', 101, '0000-00-00 00:00:00', 1),
(13417, 13225, 18, 7, 0, 'Shortlisted For Mani Team. Today Joinint Remaining as orally discussed', 86, '2023-06-14 03:07:08', 1),
(13418, 13226, 18, 1, 0, NULL, 86, '2023-06-14 04:21:09', 1),
(13419, 13259, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13420, 13260, 59, 5, 0, 'Frequent Job Changes not suitable will not sustain', 85, '0000-00-00 00:00:00', 1),
(13421, 13237, 56, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13422, 13257, 86, 4, 0, 'Selected for next round', 59, '2023-06-14 08:13:39', 1),
(13423, 13258, 86, 5, 0, 'Not satisfied', 59, '2023-06-14 08:13:50', 1),
(13424, 13163, 29, 7, 2, 'sarath team, task given for salary increase from aug 2023', 51, '2023-06-15 10:16:37', 1),
(13425, 13163, 59, 3, 0, 'Selected for Sarath Team Commitment by Gaurav June July overall 1.5 L then Aug 22K Net Take Home', 29, '2023-06-15 10:36:47', 1),
(13426, 13165, 59, 3, 0, 'Selected for Sarath Team in Staff Role', 29, '2023-06-15 10:40:58', 1),
(13427, 13219, 29, 7, 2, 'shanmugam', 44, '2023-06-15 10:56:16', 1),
(13428, 13261, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13429, 13257, 18, 7, 0, 'Selected For mani team. Today joining. Other details as discussed', 86, '2023-06-15 12:21:34', 1),
(13430, 13274, 59, 5, 0, 'Fresher For Digital Marketing No Basics Ideas Need To Learn A Lot Will Not Run In A Long ', 85, '0000-00-00 00:00:00', 1),
(13431, 13273, 59, 5, 0, 'Fresher for Digital Marketing no basics ideas need to learn a lot will not run in a long ', 85, '0000-00-00 00:00:00', 1),
(13432, 13271, 59, 2, 0, 'Have Exp in Digital Marketing but sustainability doubts a lot 5050 Profile need to analyse ', 85, '0000-00-00 00:00:00', 1),
(13433, 13280, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13434, 13278, 59, 5, 0, 'Not suitable for Telecalling Sales too long Distance', 85, '0000-00-00 00:00:00', 1),
(13435, 13283, 59, 5, 0, 'Not suitable for Sales calls left without attending the 2nd level', 85, '0000-00-00 00:00:00', 1),
(13436, 13284, 59, 5, 0, 'Fresher no basics in Javascript Need to train a lot if she come back after confirmation on TxxampC let us try', 85, '0000-00-00 00:00:00', 1),
(13437, 13268, 59, 4, 0, '5050 Profiel too long distance sustainability doubts fresher can give a try kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13438, 13279, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(13439, 13153, 59, 1, 0, NULL, 19, '2023-06-15 04:12:05', 1),
(13440, 13285, 59, 4, 0, '5050 Profile need to open a lot internal reference kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(13441, 13286, 59, 5, 0, 'Not Suitable low Profile will not take and convert calls', 85, '0000-00-00 00:00:00', 1),
(13442, 13270, 59, 5, 0, 'Not suitable Profile will not handle our sales calls not suitable', 104, '0000-00-00 00:00:00', 1),
(13443, 13266, 59, 2, 0, 'Need to come back with his confirmation on TxxampC fresher need to trained a lot', 104, '0000-00-00 00:00:00', 1),
(13444, 13245, 56, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13445, 13269, 59, 5, 0, 'TEchnical Round Reject', 104, '0000-00-00 00:00:00', 1),
(13446, 13276, 59, 5, 0, 'Technical Round Reject', 104, '0000-00-00 00:00:00', 1),
(13447, 13264, 97, 5, 0, 'Rejected In Aptitude Test', 104, '0000-00-00 00:00:00', 1),
(13448, 13280, 105, 7, 0, 'HER COMMUNICATION IS LITTLE BIT SOME WORDS ISSUE ,BUT IF WE TRAIN HER , WILL TRY TO MAKE SUSTAIN HERE', 59, '2023-06-15 08:03:04', 1),
(13449, 13279, 105, 7, 0, 'HER COMMUNICATION IS GOOD , IF WE TRAIN HER , WILL TRY TO MAKE SUSTAIN HERE', 59, '2023-06-15 08:03:17', 1),
(13450, 13285, 19, 5, 1, 'Not Fit for Sales', 59, '2023-06-15 08:05:23', 1),
(13451, 13268, 57, 4, 0, 'Candiate is ok, Kindly confirm the joining date ', 59, '2023-06-15 08:10:34', 1),
(13452, 13042, 59, 3, 0, 'Selected for IT Team in Internship ', 97, '2023-06-16 10:22:29', 1),
(13453, 13042, 97, 7, 0, 'Selected', 97, '2023-06-16 10:22:29', 1),
(13454, 13262, 56, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13455, 13289, 59, 5, 0, 'Not suitable Rejected profile in Job Fair', 85, '0000-00-00 00:00:00', 1),
(13456, 13290, 59, 2, 0, 'Need to come back after learning', 85, '0000-00-00 00:00:00', 1),
(13457, 13291, 59, 5, 0, 'No basics in JS much preferrd Java PRofile need to learn and come', 85, '0000-00-00 00:00:00', 1),
(13458, 13292, 59, 5, 0, 'Too long Distance not ope n for TxxampC will not sustain', 85, '0000-00-00 00:00:00', 1),
(13459, 13293, 59, 5, 0, 'Fresher Sales manager round reject just a try being a fresher not suitable', 85, '0000-00-00 00:00:00', 1),
(13460, 13294, 59, 5, 0, 'Fresher andhra native communication barrier Need to train a lot not open for TxxampC', 85, '0000-00-00 00:00:00', 1),
(13461, 13268, 59, 1, 0, NULL, 57, '2023-06-16 06:07:48', 1),
(13462, 13296, 107, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13463, 13299, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13464, 13300, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13465, 13301, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13466, 13303, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13467, 13305, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13468, 13307, 97, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13469, 13308, 97, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(13470, 13281, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(13471, 13307, 105, 7, 0, 'SHE SAID TO JOIN ON JULY 1ST , AND SHE IS IS EXPECTING 20K, BUT WE WILL PROVIDE 16.5 TO 17K IN TDS FROMATE', 107, '2023-06-17 07:27:22', 1),
(13472, 13257, 60, 1, 0, NULL, 18, '2023-06-19 10:38:50', 1),
(13473, 13219, 59, 3, 0, 'Selected for Shanmugam team in Staff Role', 29, '2023-06-19 11:08:39', 1),
(13474, 13309, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13475, 13329, 59, 4, 0, 'Fresher 5050 Profle Can Be Trained Kindly Chekc And Let Me Know Your Inputs', 104, '0000-00-00 00:00:00', 1),
(13476, 13330, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13477, 13323, 59, 3, 0, 'Selected for Syed Team Hired from Jo Fair Can give a try in our roles Need to analyse in 7 days', 104, '0000-00-00 00:00:00', 1),
(13478, 13317, 59, 5, 0, 'Communication Ok Left with out attending the 2nd level salary exp is high', 104, '0000-00-00 00:00:00', 1),
(13479, 13328, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13480, 13326, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13481, 13327, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13482, 13325, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13483, 13324, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13484, 13322, 59, 5, 0, 'Looking for Accounts Role fresher doing CMA will not sustain', 104, '0000-00-00 00:00:00', 1),
(13485, 13321, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13486, 13320, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13487, 13318, 59, 5, 0, 'Fresher no basics in the Javascript Need to train a lot not much open for TxxampC if they come back in future let us try based on their skills at the time', 104, '0000-00-00 00:00:00', 1),
(13488, 13319, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13489, 13310, 59, 2, 0, 'Need to come back with his conirmation on the profile if he comes back can give try fir sales', 104, '0000-00-00 00:00:00', 1),
(13490, 13311, 59, 5, 0, 'Not open up not suitable for our roles ', 104, '0000-00-00 00:00:00', 1),
(13491, 13316, 59, 5, 0, 'Fresher Sal Exp is high will not join less than 20K ', 104, '0000-00-00 00:00:00', 1),
(13492, 13313, 59, 5, 0, 'Looking for Profile out of Sales ', 104, '0000-00-00 00:00:00', 1),
(13493, 13315, 59, 5, 0, 'Looking for non Voice', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(13494, 13331, 59, 5, 0, 'Fresher No Basics In The Javascript Need To Train A Lot Not Much Open For TxxampC If They Come Back In Future Let Us Try Based On Their Skills At The Time', 104, '0000-00-00 00:00:00', 1),
(13495, 13279, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-06-19 06:11:24', 1),
(13496, 13280, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-06-19 06:12:58', 1),
(13497, 13323, 57, 4, 0, 'he is interested in acc job. he ok with conv sales just try. thanks \n', 59, '2023-06-19 07:42:21', 1),
(13498, 13329, 57, 4, 0, 'Candidate is ok . pls confirm the joining data and salary', 59, '2023-06-19 07:42:34', 1),
(13499, 13281, 53, 7, 0, 'selected for b2b. Good in pronounciation , have 2 yrs ecp. ', 59, '2023-06-20 09:58:19', 1),
(13500, 13281, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-06-20 10:06:55', 1),
(13501, 13225, 60, 1, 0, NULL, 18, '2023-06-20 10:14:25', 1),
(13502, 13300, 29, 1, 0, NULL, 107, '2023-06-20 10:22:45', 1),
(13503, 13298, 59, 4, 0, '5050 Profile Fresher can be trained in our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13504, 13334, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13505, 13333, 59, 5, 0, 'Fresher no basics skills knowledge not open with the TxxampC will not sustain', 101, '0000-00-00 00:00:00', 1),
(13506, 13336, 59, 4, 0, 'Not open up but have exp in HDB kindly chekc and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13507, 13335, 59, 5, 0, 'No Communicaiton not suitble for our roles\n', 101, '0000-00-00 00:00:00', 1),
(13508, 13337, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13509, 13332, 59, 5, 0, 'No Communicaiton not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(13510, 13329, 60, 1, 0, NULL, 57, '2023-06-20 03:48:39', 1),
(13511, 13323, 60, 1, 0, NULL, 57, '2023-06-20 03:49:30', 1),
(13512, 13355, 107, 5, 0, 'Rejected In Aptitude', 101, '0000-00-00 00:00:00', 1),
(13513, 13348, 107, 5, 0, 'Rejected in Aptitude', 101, '0000-00-00 00:00:00', 1),
(13514, 13350, 107, 5, 0, 'Rejected In Aptitude', 101, '0000-00-00 00:00:00', 1),
(13515, 13349, 107, 5, 0, 'Rejected In Aptitude', 101, '0000-00-00 00:00:00', 1),
(13516, 13351, 59, 5, 0, 'Have Exp in TCS will not sustain in our roles not suitable', 101, '0000-00-00 00:00:00', 1),
(13517, 13346, 59, 5, 0, 'Need to open a lot will not sustain\n', 101, '0000-00-00 00:00:00', 1),
(13518, 13345, 59, 5, 0, 'No Communication not suitable for our roles will not sustain', 101, '0000-00-00 00:00:00', 1),
(13519, 13356, 59, 4, 0, 'internal reference have exp in calling but not ready to go in the same hihg sal exp internal referene kindly have a interview', 101, '0000-00-00 00:00:00', 1),
(13520, 13353, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13521, 13357, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13522, 13344, 59, 5, 0, 'Fresher No Basics Skills Knowledge Not Open With The TxxampC Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13523, 13354, 59, 5, 0, 'Not open up will not sustain in our roles', 101, '0000-00-00 00:00:00', 1),
(13524, 13341, 59, 5, 0, 'Not open for Calling not suitable for our roels', 101, '0000-00-00 00:00:00', 1),
(13525, 13343, 107, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13526, 13352, 107, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13527, 13338, 107, 5, 0, 'Needs time to learn...Let us try if he comes back', 101, '0000-00-00 00:00:00', 1),
(13528, 13347, 107, 5, 0, 'looking for testing...not suitable for our roles...', 101, '0000-00-00 00:00:00', 1),
(13529, 13342, 107, 5, 0, 'Needs time to learn...Let us try if he comes back...', 101, '0000-00-00 00:00:00', 1),
(13530, 13298, 57, 4, 0, 'Candidate is ok pls confirm the joining date Thanks\n', 59, '2023-06-20 08:10:13', 1),
(13531, 13336, 86, 5, 0, 'Not Satisfied', 59, '2023-06-20 08:11:57', 1),
(13532, 13356, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-06-20 08:13:34', 1),
(13533, 13296, 29, 7, 2, 'PC Sarath Team for RM', 59, '2023-06-21 09:54:55', 1),
(13534, 13296, 59, 3, 0, 'Selected for Sarath Team in Consultant Role', 29, '2023-06-21 10:05:56', 1),
(13535, 13307, 59, 1, 0, NULL, 105, '2023-06-21 10:54:50', 1),
(13536, 13298, 59, 1, 0, NULL, 57, '2023-06-21 12:19:10', 1),
(13537, 13360, 59, 4, 0, 'Fresher can be trained in our roles kindly check and let me know your inputs too long distance ', 101, '0000-00-00 00:00:00', 1),
(13538, 13361, 59, 5, 0, 'No Communication not much suits for our roles', 101, '0000-00-00 00:00:00', 1),
(13539, 13362, 59, 3, 0, 'Selected for Staff Role Syed Team', 101, '0000-00-00 00:00:00', 1),
(13540, 13365, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13541, 13366, 56, 4, 0, 'Selected for e-sales but joining after three months kindly release the confirmation mail', 101, '0000-00-00 00:00:00', 1),
(13542, 13360, 53, 1, 0, NULL, 59, '2023-06-21 07:45:31', 1),
(13543, 13362, 57, 4, 0, 'Candiate is ok, Good Communication skills Fresher. \nPls Confirm the salary and date ', 59, '2023-06-21 07:46:25', 1),
(13544, 13387, 107, 5, 0, 'left without attending', 101, '0000-00-00 00:00:00', 1),
(13545, 13383, 107, 5, 0, 'left without attending', 101, '0000-00-00 00:00:00', 1),
(13546, 13381, 107, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13547, 13384, 59, 5, 0, 'No Communication not suitable for our roles will not sustain', 101, '0000-00-00 00:00:00', 1),
(13548, 13375, 59, 2, 0, 'Given Task for the design based on that we can decide fresher', 101, '0000-00-00 00:00:00', 1),
(13549, 13382, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13550, 13370, 59, 5, 0, 'Fresher no basic JS skills not suitable will not sustain in our Roles', 101, '0000-00-00 00:00:00', 1),
(13551, 13371, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13552, 13373, 59, 5, 0, 'Will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13553, 13372, 59, 5, 0, 'No Communication Not Suitable For Our Roles Will Not Sustain stammering a lot ', 101, '0000-00-00 00:00:00', 1),
(13554, 13374, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13555, 13377, 59, 5, 0, 'No Communication Not Suitable For Our Roles Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13556, 13364, 59, 5, 0, 'Frequent Job chnages Will not handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13557, 13376, 59, 5, 0, 'No Communication Not Suitable For Our Roles Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13558, 13378, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13559, 13379, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13560, 13380, 59, 5, 0, 'Fresher No Basic JS Skills Not Suitable Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13561, 13386, 107, 5, 0, 'Looking for java', 101, '0000-00-00 00:00:00', 1),
(13562, 13385, 59, 5, 0, 'No Communication Not Suitable For Our Roles Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13563, 10335, 59, 4, 0, '5050 Profile have exp in calling kindly check and let meknow your inputs', 101, '0000-00-00 00:00:00', 1),
(13564, 13368, 56, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13565, 13362, 59, 3, 0, 'Selected for Staff Role Syed Team', 57, '2023-06-22 03:42:22', 1),
(13566, 10335, 53, 1, 0, NULL, 59, '2023-06-22 07:47:44', 1),
(13567, 13411, 59, 5, 0, 'Looking for non Voice', 101, '0000-00-00 00:00:00', 1),
(13568, 13399, 59, 5, 0, 'Not open for Calling profile Holding an offer for 2.5LPA will not sustain ', 101, '0000-00-00 00:00:00', 1),
(13569, 13398, 59, 5, 0, 'Too long Distance not much open up will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13570, 13400, 59, 2, 0, 'Need to come back with his confirmation on TxxampC', 101, '0000-00-00 00:00:00', 1),
(13571, 13401, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13572, 13395, 59, 5, 0, 'No Ideas In Digital Marketing Not Open For Telecalling ', 101, '0000-00-00 00:00:00', 1),
(13573, 13389, 59, 4, 0, '5050 Profile Fresher can give a try in our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13574, 13397, 59, 5, 0, 'too long Distance no basic skills not suitable', 101, '0000-00-00 00:00:00', 1),
(13575, 13396, 59, 5, 0, 'No ideas in digital marketing not open for telecalling ', 101, '0000-00-00 00:00:00', 1),
(13576, 13392, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13577, 13388, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13578, 13391, 59, 5, 0, 'Not much open for TxxampC if he comes back let us try fresher no basics', 101, '0000-00-00 00:00:00', 1),
(13579, 13394, 59, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13580, 13409, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13581, 13408, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13582, 13410, 59, 5, 0, 'Too Long Distance Not Much Open Up Will Not Sustain And Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13583, 13405, 59, 5, 0, 'No basic Skills if he comes after learning we can give a try', 101, '0000-00-00 00:00:00', 1),
(13584, 13402, 59, 2, 0, 'Need to come back with his confirmation on TxxampC', 101, '0000-00-00 00:00:00', 1),
(13585, 13393, 107, 5, 0, 'left without attending', 101, '0000-00-00 00:00:00', 1),
(13586, 13390, 107, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13587, 13404, 59, 5, 0, 'Too long Distance not open for telecalling Sales not suitable', 101, '0000-00-00 00:00:00', 1),
(13588, 13407, 30, 7, 4, 'July 3rd joining ', 101, '0000-00-00 00:00:00', 1),
(13589, 13389, 86, 5, 0, 'Not Satisfied', 59, '2023-06-23 07:43:45', 1),
(13590, 13106, 59, 1, 0, NULL, 57, '2023-06-24 12:38:07', 1),
(13591, 13425, 59, 5, 0, 'Not much good with the communication too long distance not suitable for our roles', 101, '0000-00-00 00:00:00', 1),
(13592, 13424, 59, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13593, 13415, 59, 3, 0, 'Selected for Banu Team in Consultant Role Too long Distance If he joins let us try', 101, '0000-00-00 00:00:00', 1),
(13594, 13414, 59, 4, 0, 'Communicaiton Ok fresher for our roles can give a try kindly check and let me know you inputs', 101, '0000-00-00 00:00:00', 1),
(13595, 13420, 59, 5, 0, 'have internship exp and not much comfort with 3yrs SA If she comeback let us try', 101, '0000-00-00 00:00:00', 1),
(13596, 13416, 59, 5, 0, 'Not open for Calling activities Fresher in accounts not much strong with the basics communication Average', 101, '0000-00-00 00:00:00', 1),
(13597, 13417, 59, 2, 0, 'Need to come back wiht his confirmation on the TxxampC', 101, '0000-00-00 00:00:00', 1),
(13598, 13423, 59, 5, 0, 'No Pronunciation no clarity in speech will not sustain', 101, '0000-00-00 00:00:00', 1),
(13599, 13413, 59, 5, 0, 'Not suitable for our roles ', 101, '0000-00-00 00:00:00', 1),
(13600, 13422, 59, 5, 0, 'No Communication not suitable for voice processwill not sustain', 101, '0000-00-00 00:00:00', 1),
(13601, 13438, 59, 3, 0, 'Selected for Syed Team Staff Role', 104, '0000-00-00 00:00:00', 1),
(13602, 13440, 59, 3, 0, 'Slected for Banu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(13603, 13433, 59, 2, 0, 'Should come after a month post learning if he comes let us try', 101, '0000-00-00 00:00:00', 1),
(13604, 13435, 59, 5, 0, 'Left wothout attending the interview', 101, '0000-00-00 00:00:00', 1),
(13605, 13436, 59, 5, 0, 'Looking for non voice only', 101, '0000-00-00 00:00:00', 1),
(13606, 13428, 59, 5, 0, 'Looking for Java Only', 101, '0000-00-00 00:00:00', 1),
(13607, 13427, 59, 5, 0, 'Not interested in Insurance Domain ', 101, '0000-00-00 00:00:00', 1),
(13608, 13429, 59, 5, 0, 'Need to learn a lot not much comfort in TxxampC will not sustain and language barrier', 101, '0000-00-00 00:00:00', 1),
(13609, 13431, 107, 5, 0, 'rejected in aptitude', 101, '0000-00-00 00:00:00', 1),
(13610, 13430, 107, 5, 0, 'Rejected in aptitude', 101, '0000-00-00 00:00:00', 1),
(13611, 13434, 107, 5, 0, 'rejected in aptitude', 101, '0000-00-00 00:00:00', 1),
(13612, 13432, 107, 5, 0, 'rejected in aptitude', 101, '0000-00-00 00:00:00', 1),
(13613, 13426, 59, 3, 0, 'SElected for Syed Team in Staff Role\n', 101, '0000-00-00 00:00:00', 1),
(13614, 13437, 59, 4, 0, 'Communication Good Have 1 yrs Exp sales but not a relevant one Salary eXp is high but can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13615, 13414, 105, 5, 0, 'Candidate Doubt To Join', 59, '2023-06-27 09:56:11', 1),
(13616, 13440, 53, 7, 0, '50 50. Will check 7 days training ', 59, '2023-06-27 10:08:50', 1),
(13617, 13438, 57, 4, 0, 'Pls confirm the joining date', 59, '2023-06-27 10:10:33', 1),
(13618, 13426, 57, 4, 0, 'Candidate is ok, Pls confirm the joining date and salary', 59, '2023-06-27 10:11:47', 1),
(13619, 13415, 53, 7, 0, 'selected for b2b', 59, '2023-06-27 10:14:20', 1),
(13620, 13437, 51, 5, 0, 'Rejected', 59, '2023-06-27 10:16:45', 1),
(13621, 13059, 19, 5, 1, 'NOT FIT', 59, '2023-06-27 10:44:43', 1),
(13622, 13407, 60, 1, 0, NULL, 30, '2023-06-27 12:30:40', 1),
(13623, 13444, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13624, 13454, 59, 2, 0, 'Have Exp in CASA grande sales salry is very high exp is also high of she comes back let us try for B2B', 101, '0000-00-00 00:00:00', 1),
(13625, 13441, 59, 5, 0, 'No Sustainability will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13626, 13449, 59, 5, 0, '5050 not much open in sales looking for salary growht will not handle our work pressire', 101, '0000-00-00 00:00:00', 1),
(13627, 13443, 59, 5, 0, 'Nt openf for SAles callings', 101, '0000-00-00 00:00:00', 1),
(13628, 13450, 59, 5, 0, 'Looking for Java openings only', 101, '0000-00-00 00:00:00', 1),
(13629, 13448, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13630, 13452, 59, 3, 0, 'Selected for Staff Role Syed Team', 101, '0000-00-00 00:00:00', 1),
(13631, 13444, 57, 4, 0, 'Fresher candidate is ok, pls provide the basic fresher salary', 59, '2023-06-27 07:55:33', 1),
(13632, 13448, 57, 4, 0, 'Experience candidate, Pls Confirm the joining date', 59, '2023-06-27 07:56:09', 1),
(13633, 13452, 57, 4, 0, 'Fresher 50/50 will try ', 59, '2023-06-27 07:56:44', 1),
(13634, 13445, 74, 7, 0, 'he is ok with the profile and easily attached charcter and adaptive to telecalling...expected 15k...completed mba and have 6 months experience in tlecalling and business field as exective and basic team lead.....have laptop ....father farmer and have onw sister studying..kindly check once and confirm joining monday', 104, '0000-00-00 00:00:00', 1),
(13635, 13446, 59, 3, 0, 'Selected for Manikandan Team in staff Role', 101, '0000-00-00 00:00:00', 1),
(13636, 13445, 59, 3, 0, 'Selected for Consultant role in Thanjavur', 74, '2023-06-28 12:28:33', 1),
(13637, 13426, 59, 3, 0, 'SElected for Syed Team in Staff Role\n', 57, '2023-06-28 04:04:52', 1),
(13638, 13438, 59, 3, 0, 'Selected for Syed Team Staff Role', 57, '2023-06-28 04:05:21', 1),
(13639, 13444, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2023-06-28 04:06:01', 1),
(13640, 13448, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2023-06-28 04:06:55', 1),
(13641, 13452, 59, 3, 0, 'Selected for Staff Role Syed Team', 57, '2023-06-28 04:07:21', 1),
(13642, 13462, 59, 2, 0, 'Fresher Holding several offers very talkative if she come back let us try', 101, '0000-00-00 00:00:00', 1),
(13643, 13460, 59, 5, 0, 'Not much job importance Salary Exp is very high not much quality for RM level will not handle the pressure', 101, '0000-00-00 00:00:00', 1),
(13644, 13455, 59, 5, 0, 'Too long Distance up and down 50kms will not sustain in our roles fresher', 101, '0000-00-00 00:00:00', 1),
(13645, 13458, 59, 5, 0, 'Looking for Multipleoffer holding an interview with byjus will not sustain in our roles for a long', 101, '0000-00-00 00:00:00', 1),
(13646, 13461, 59, 5, 0, 'No ideas in JS need time to learn', 101, '0000-00-00 00:00:00', 1),
(13647, 13457, 59, 5, 0, 'Final Round Reject by Gopi mistkely moved as a shortlisted', 101, '0000-00-00 00:00:00', 1),
(13648, 13453, 59, 3, 0, 'Selected for Syed Team in staff Role', 101, '0000-00-00 00:00:00', 1),
(13649, 13463, 59, 4, 0, 'Low Profile internal refernece fr Kannan Team kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13650, 13464, 59, 4, 0, 'Communicaiton Ok Profile for Kannan Team internal Team reference due to his absence kindly check can be trained in our roles', 101, '0000-00-00 00:00:00', 1),
(13651, 13446, 86, 7, 0, 'sHORTLISTED', 59, '2023-06-28 07:31:38', 1),
(13652, 13453, 57, 4, 0, 'Candiate ok pls move to next', 59, '2023-06-28 07:32:17', 1),
(13653, 13464, 57, 4, 0, 'candidate ok , pls move', 59, '2023-06-28 07:49:51', 1),
(13654, 13457, 105, 7, 0, 'MONDAY JOINING', 59, '2023-06-28 07:50:23', 1),
(13655, 13463, 57, 1, 0, NULL, 59, '2023-06-28 07:51:09', 1),
(13656, 13470, 74, 7, 0, 'he is ok with the profile intrested in business prefered as a finacial advisory...and completed mba and have no opportunity in hr side so need to be financial advisory ....mother only father passed away single child and have no income in family expected above 13 range and have laptop monday joining is prefereable ..........near by home only 10 km kindly check and confirm once', 101, '0000-00-00 00:00:00', 1),
(13657, 13470, 59, 3, 0, 'Selected for Sithy Team Thanjavur Consultant Role', 74, '2023-06-29 10:55:31', 1),
(13658, 13468, 59, 5, 0, 'Not suitable for our roles will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(13659, 13472, 59, 3, 0, 'Seleceted for Gopinath Team in Consultant TRole', 101, '0000-00-00 00:00:00', 1),
(13660, 13471, 59, 5, 0, 'Not open for Calling Looking for Accounts Payable roles', 104, '0000-00-00 00:00:00', 1),
(13661, 13366, 59, 1, 0, NULL, 56, '2023-06-29 03:51:06', 1),
(13662, 13473, 59, 2, 0, 'too long distance have exp in calling but not in sales 5050 if she comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13663, 13476, 59, 5, 0, 'Not open for TxxampC fresher not much knowledge in basics', 101, '0000-00-00 00:00:00', 1),
(13664, 13474, 59, 5, 0, 'Fresher not open for target based openings will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13665, 13475, 59, 5, 0, 'Not Open For TxxampC Fresher Not Much Knowledge In Basics', 101, '0000-00-00 00:00:00', 1),
(13666, 13453, 59, 3, 0, 'Selected for Syed Team in staff Role', 57, '2023-06-29 05:39:20', 1),
(13667, 13367, 56, 7, 0, 'Selected for RM ', 104, '0000-00-00 00:00:00', 1),
(13668, 13472, 105, 7, 0, 'MONDAY JOINING', 59, '2023-06-29 07:03:39', 1),
(13669, 13367, 59, 1, 0, NULL, 56, '2023-06-30 10:20:03', 1),
(13670, 13440, 59, 3, 0, 'Slected for Banu Team in Consultant Role', 53, '2023-06-30 12:26:35', 1),
(13671, 13415, 59, 3, 0, 'Selected for Banu Team in Consultant Role Too long Distance If he joins let us try', 53, '2023-06-30 12:30:06', 1),
(13672, 13457, 59, 5, 0, 'Final Round Reject by Gopi mistkely moved as a shortlisted', 105, '2023-06-30 12:32:22', 1),
(13673, 13472, 59, 3, 0, 'Seleceted for Gopinath Team in Consultant TRole', 105, '2023-06-30 12:32:44', 1),
(13674, 13484, 59, 3, 0, 'Selected for Syed TEam in Staff ROles\n', 108, '0000-00-00 00:00:00', 1),
(13675, 13478, 59, 2, 0, 'Need to come back with her confirmation salary exp is very high if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(13676, 13482, 59, 5, 0, 'Looking for Non Voice No Communication not much suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(13677, 13467, 59, 3, 0, 'Selected for Gopi team in consultant Role', 101, '0000-00-00 00:00:00', 1),
(13678, 13485, 59, 4, 0, 'Internal Reference Have Exp in calling kindly check and let me know your inputs Can be trained in our positions', 101, '0000-00-00 00:00:00', 1),
(13679, 13481, 59, 5, 0, 'Looking for Non Voice process no communication', 101, '0000-00-00 00:00:00', 1),
(13680, 13486, 59, 5, 0, 'Looking for Java opening only', 101, '0000-00-00 00:00:00', 1),
(13681, 13483, 59, 5, 0, 'Need to learn a lot no basics not comfirt in TxxampC', 101, '0000-00-00 00:00:00', 1),
(13682, 13464, 59, 1, 0, NULL, 57, '2023-06-30 06:57:18', 1),
(13683, 13467, 105, 7, 0, 'Well She is ok With That in Communication And Interview Attend Process, Also She is Join On Monday', 59, '2023-06-30 07:24:00', 1),
(13684, 13484, 57, 4, 0, 'Done ', 59, '2023-06-30 07:37:08', 1),
(13685, 13485, 53, 1, 0, NULL, 59, '2023-06-30 07:40:17', 1),
(13686, 13493, 59, 5, 0, 'Not Suitable Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13687, 13467, 59, 3, 0, 'Selected for Gopi team in consultant Role', 105, '2023-07-01 12:32:08', 1),
(13688, 13446, 60, 1, 0, NULL, 86, '2023-07-01 04:11:02', 1),
(13689, 13495, 59, 3, 0, 'Selected for Syed Team ', 60, '0000-00-00 00:00:00', 1),
(13690, 13495, 57, 4, 0, 'Candidate is ok ,pls confirm ', 59, '2023-07-03 09:51:32', 1),
(13691, 13495, 59, 3, 0, 'Selected for Syed Team ', 57, '2023-07-03 10:00:39', 1),
(13692, 13484, 59, 3, 0, 'Selected for Syed TEam in Staff ROles\n', 57, '2023-07-03 10:19:25', 1),
(13693, 13502, 74, 7, 0, 'he is fit for team completed btech in mgr university and willing to join in telecalling family situation is very poor and highly job need father unemployed and ready to join immediately ...have laptop and expected 12k fresher travel time 12km and have bike kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(13694, 13490, 59, 3, 0, 'Selected for Gopinath Team', 101, '0000-00-00 00:00:00', 1),
(13695, 13499, 59, 5, 0, 'Fresher open fr TxxampC attended 2nd level interview didnt come for final round ', 101, '0000-00-00 00:00:00', 1),
(13696, 13497, 59, 3, 0, 'Selected for Gopinath Team ', 101, '0000-00-00 00:00:00', 1),
(13697, 13498, 59, 5, 0, 'Fresher need to come back with his confirmation if he comes back let us tryu', 101, '0000-00-00 00:00:00', 1),
(13698, 13500, 59, 5, 0, 'Left without attending', 101, '0000-00-00 00:00:00', 1),
(13699, 13505, 59, 5, 0, 'Communication barrier Will not sustain and handle our work pressure in IT ', 101, '0000-00-00 00:00:00', 1),
(13700, 13504, 59, 5, 0, 'Technical Round reject by Tamilmani Sustainability doubts', 101, '0000-00-00 00:00:00', 1),
(13701, 13490, 105, 7, 0, 'GOOD COMMUNICATION SKILL,SHE JOIN ON NEXT WEEK 12TH', 59, '2023-07-03 07:29:46', 1),
(13702, 13497, 105, 7, 0, 'Candidate Communication is ok , will train her', 59, '2023-07-03 07:30:33', 1),
(13703, 13514, 59, 5, 0, 'Syed interviewed and got rejeccted in the 1st round', 108, '0000-00-00 00:00:00', 1),
(13704, 13518, 59, 3, 0, 'Selected for Manikandan team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(13705, 13511, 59, 4, 0, 'Communication Ok have exp in Jio Can be trained in our roles kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13706, 13515, 27, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13707, 13513, 27, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13708, 13512, 27, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13709, 13516, 27, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13710, 13507, 59, 5, 0, 'Fresher need to see his distance not open for field visit will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13711, 13508, 59, 5, 0, 'Too long distance Focusing only on the salary exp more than 22K 1yr exp but not sure on previous exp not open for field visit too', 101, '0000-00-00 00:00:00', 1),
(13712, 13509, 59, 5, 0, 'Preferred to work in non voice will not handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13713, 13480, 59, 5, 0, 'Need to open a lot will not handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13714, 13510, 74, 7, 0, 'she is ok with the profile and profiled too have experience in casa grand with 1 year of experience getting 18k of salary due to family issue she is releived and expected 15k of salary kindly cross check once father farmer and have no laptop she is ready to arrange and immediate joining kindly check once and confirm.', 101, '0000-00-00 00:00:00', 1),
(13715, 13520, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13716, 13521, 59, 4, 0, 'Fresher for our Domain 5050 profile kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13717, 13520, 19, 7, 4, 'Selected', 59, '2023-07-04 07:20:56', 1),
(13718, 13521, 19, 5, 1, 'Not Fit for Sales', 59, '2023-07-04 07:21:42', 1),
(13719, 13518, 18, 7, 4, 'Selected For Mani Team. Ready to Join on Monday Spoken Package with arun', 59, '2023-07-04 07:23:48', 1),
(13720, 13511, 86, 1, 0, NULL, 59, '2023-07-04 07:26:43', 1),
(13721, 13520, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-07-04 07:28:12', 1),
(13722, 13497, 59, 3, 0, 'Selected for Gopinath Team ', 105, '2023-07-05 10:54:53', 1),
(13723, 13529, 59, 4, 0, '5050 Profile fresher for sales clling have exp in backend and the salary exp is min 25K kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13724, 13530, 59, 4, 0, 'Communication Ok have exp in sales calling can be trained kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13725, 13533, 59, 5, 0, 'Fresher have exp is studio process need to open a lot pressure handling doubt willl not sustain in our roles', 101, '0000-00-00 00:00:00', 1),
(13726, 13531, 59, 5, 0, 'Internal reference communication average pressure handling doubts will not sustain ', 101, '0000-00-00 00:00:00', 1),
(13727, 13525, 59, 4, 0, '5050 Profile no exp in calling have exp in store sales pressure handling doubts kindly check once and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13728, 13456, 59, 5, 0, 'Will not suitable for our voice process have exp in non voice and he can handle only that will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13729, 13528, 59, 5, 0, 'Fresher no basic skills knowledge first interview need to explore a lot ', 101, '0000-00-00 00:00:00', 1),
(13730, 13523, 59, 5, 0, 'Looking for IT testing profile', 101, '0000-00-00 00:00:00', 1),
(13731, 13524, 74, 5, 0, 'she is not ok with the profile and not fit for team, non profile', 101, '0000-00-00 00:00:00', 1),
(13732, 13532, 59, 4, 0, 'Fresher not showing much towards the job earlier 5050 profile internal reference kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13733, 13510, 59, 3, 0, 'Selected for Sithy Team in Consultant Role Can be trained in our roles have 1 yr exp in Casa Grande 20K was last MCTC\n', 74, '2023-07-05 05:16:49', 1),
(13734, 13502, 59, 3, 0, 'Selected for Sithy Team with TDS consultant Role', 74, '2023-07-05 05:19:21', 1),
(13735, 13532, 57, 5, 0, 'Communication not well', 59, '2023-07-05 05:59:03', 1),
(13736, 13529, 51, 5, 0, 'Rejected', 59, '2023-07-05 06:03:13', 1),
(13737, 13530, 105, 7, 0, 'HAVE GOOD SKILL AND EXPERIANCE ,BUT JOINING DATE IS TOO LONG', 59, '2023-07-05 06:03:55', 1),
(13738, 13525, 57, 1, 0, NULL, 59, '2023-07-05 06:04:51', 1),
(13739, 13518, 60, 1, 0, NULL, 18, '2023-07-06 10:11:44', 1),
(13740, 13534, 59, 4, 0, 'Have Exp in Calling Can be trained kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13741, 13539, 59, 3, 0, 'Selected for Syed Team in Staff Role Have Exp in HDB Financial direct payroll for 1,5 yrs', 108, '0000-00-00 00:00:00', 1),
(13742, 13538, 59, 5, 0, 'No Basics Skills In IT Need to come back after learning', 101, '0000-00-00 00:00:00', 1),
(13743, 13537, 59, 5, 0, 'No basics skills in IT will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13744, 13548, 97, 4, 0, 'Good Communication xxamp convincing skill will suit for our process check and update your inputs.', 104, '0000-00-00 00:00:00', 1),
(13745, 13547, 97, 4, 0, 'Good Communication xxamp Convincing Skill Will Suit For Our Process Check And Update Your Inputs.', 104, '0000-00-00 00:00:00', 1),
(13746, 13549, 97, 4, 0, 'Good Communication xxamp Convincing Skill Will Suit For Our Process Check And Update Your Inputs.', 104, '0000-00-00 00:00:00', 1),
(13747, 13540, 97, 5, 0, 'Not openup not suit for our process', 104, '0000-00-00 00:00:00', 1),
(13748, 13543, 97, 5, 0, 'Looking For Accounts', 104, '0000-00-00 00:00:00', 1),
(13749, 13542, 97, 5, 0, 'looking for accounts', 104, '0000-00-00 00:00:00', 1),
(13750, 13534, 19, 7, 4, 'SELECTED', 59, '2023-07-06 07:49:37', 1),
(13751, 13539, 57, 4, 0, 'Candiate is ok kindly move ', 59, '2023-07-06 07:50:56', 1),
(13752, 13539, 59, 3, 0, 'Selected for Syed Team in Staff Role Have Exp in HDB Financial direct payroll for 1,5 yrs', 57, '2023-07-07 10:00:34', 1),
(13753, 13550, 30, 7, 3, 'Confirm joining date and ctc', 108, '0000-00-00 00:00:00', 1),
(13754, 13556, 59, 5, 0, 'Communication ok have exp in backend operation not much in sales will not sustain and not suitable for Trainer profile', 101, '0000-00-00 00:00:00', 1),
(13755, 13544, 59, 3, 0, 'SElected for Kanna Team in Staff Role 5050 Profile Long Career Gap Mentioned Exp But No Sustainability Have Worked With Care Health Insurance Kindly Check And Let Me Know Your Inputs Need To Initiate Agreement For Sustainability', 101, '0000-00-00 00:00:00', 1),
(13756, 13555, 59, 2, 0, 'Communication Ok have 1 yr exp in recruitment but the salary exp is high and not much comfort to come down with the package', 101, '0000-00-00 00:00:00', 1),
(13757, 13557, 59, 5, 0, 'Fresher not open for TxxampC', 101, '0000-00-00 00:00:00', 1),
(13758, 13554, 59, 5, 0, 'Too fresher no basics in skills will not sustain and not suitable ', 101, '0000-00-00 00:00:00', 1),
(13759, 13553, 59, 5, 0, 'Fresher Good enthu but not much comfort in TxxampC if she comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13760, 13552, 59, 5, 0, 'Too long Distance up and down 70 kms will not sustain', 101, '0000-00-00 00:00:00', 1),
(13761, 13551, 59, 4, 0, 'Fresher 5050 Profile Need to train a lot from scratch kindly check and let me know your interest', 101, '0000-00-00 00:00:00', 1),
(13762, 13559, 59, 3, 0, 'Selected for Gaurav Sir team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13763, 13560, 59, 3, 0, 'Selected for Gaurav Sir team in Staff Role', 101, '0000-00-00 00:00:00', 1),
(13764, 13551, 19, 5, 1, 'NOT FIT', 59, '2023-07-08 10:03:43', 1),
(13765, 13544, 19, 7, 4, 'SELECTED', 59, '2023-07-08 10:08:58', 1),
(13766, 13559, 29, 7, 3, 'PC, Need Aggressive training and motivate on incentive', 59, '2023-07-08 10:15:55', 1),
(13767, 13560, 29, 7, 3, 'PC, Need Aggressive training,', 59, '2023-07-08 10:16:21', 1),
(13768, 13571, 59, 5, 0, 'Have Sales exp with Bankbazaar Long career Gap recently joined YEs bank and now he is lookin for change in 3 months again for the salary growth asked him to wait for second level but left wothout attending ', 108, '0000-00-00 00:00:00', 1),
(13769, 13548, 89, 7, 0, 'Selected ', 97, '2023-07-08 03:10:12', 1),
(13770, 13549, 105, 7, 0, 'GOOD COMMUNICATION, BETTER TO TRAIN HER', 97, '2023-07-08 03:12:18', 1),
(13771, 13547, 102, 4, 0, 'Selected for team ', 97, '2023-07-08 03:13:11', 1),
(13772, 13564, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13773, 13565, 59, 4, 0, '5050 Profile Fresher need to train a lot much preferred non voice but internal reference shortlisted for your team kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13774, 13561, 59, 4, 0, 'Have Exp in Telecalling Collections HDB financial but not open up a lot 5050 profile since having exp kindly check and let meknow your inputs', 101, '0000-00-00 00:00:00', 1),
(13775, 13566, 59, 5, 0, 'Communication Average No much good in Digital MArketing Have Exp for few months and she is into sales but not interested to get into sales again.Written communicaiton Poor will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13776, 13563, 59, 5, 0, 'Fresher no basics Need to learn a lot need time to give his confiramtion on TxxampC if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13777, 13573, 59, 5, 0, 'Too long Distance Looking for Non voice process will not sustain and handle our work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13778, 13574, 59, 5, 0, 'Not Suitable Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13779, 13562, 59, 5, 0, 'Not much good in communication no wriiten communication salary exp is high not much good in skills also will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13780, 13568, 59, 5, 0, 'Looking for non voice process only not open to handle the pressure will not sustain', 101, '0000-00-00 00:00:00', 1),
(13781, 13558, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13782, 13548, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 89, '2023-07-08 04:29:58', 1),
(13783, 13561, 19, 5, 1, 'NOT FIT', 59, '2023-07-08 04:33:10', 1),
(13784, 13565, 105, 5, 0, 'COMMUNICATION IS NOT GOOD , ALSO pronunciation IS WORST ', 59, '2023-07-08 04:35:20', 1),
(13785, 13564, 105, 7, 0, 'GOOD COMMUNICATION,WILL TRY TO TRAIN HER', 59, '2023-07-08 04:35:48', 1),
(13786, 13544, 59, 3, 0, 'SElected for Kanna Team in Staff Role 5050 Profile Long Career Gap Mentioned Exp But No Sustainability Have Worked With Care Health Insurance Kindly Check And Let Me Know Your Inputs Need To Initiate Agreement For Sustainability', 19, '2023-07-08 04:47:44', 1),
(13787, 13534, 59, 1, 0, NULL, 19, '2023-07-08 04:53:00', 1),
(13788, 13490, 59, 3, 0, 'Selected for Gopinath Team', 105, '2023-07-08 05:26:03', 1),
(13789, 13564, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-07-08 05:29:08', 1),
(13790, 13549, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-07-08 05:31:58', 1),
(13791, 13530, 59, 1, 0, NULL, 105, '2023-07-08 05:36:16', 1),
(13792, 13547, 60, 1, 0, NULL, 102, '2023-07-08 05:47:37', 1),
(13793, 13559, 59, 3, 0, 'Selected for Gaurav Sir team in Staff Role', 29, '2023-07-10 10:08:02', 1),
(13794, 13560, 59, 3, 0, 'Selected for Gaurav Sir team in Staff Role', 29, '2023-07-10 10:10:19', 1),
(13795, 13584, 59, 3, 0, 'Selected for Kannan Team in Staff role', 101, '0000-00-00 00:00:00', 1),
(13796, 13580, 59, 5, 0, 'No basic Skills knowledge Preferred JAVA and will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13797, 13579, 59, 5, 0, 'Fresher Not Much comfort in office timing got another offer and not joined due to timing local tamil language she is having issues', 101, '0000-00-00 00:00:00', 1),
(13798, 13581, 59, 5, 0, 'Fresher no basic skills knowledge preferred to strat his career in Java', 101, '0000-00-00 00:00:00', 1),
(13799, 13583, 59, 5, 0, 'Will not sustain in our roles over confidence Communication Good she will not sustain in a company previous exp lot of issue with the management', 101, '0000-00-00 00:00:00', 1),
(13800, 13585, 59, 4, 0, 'Fresher 12th graduate need to train a lot candidate need to open a lot internal team reference kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13801, 13575, 59, 4, 0, 'Have Exp in Calling for hathway process 5050 profile 12th graduate kindly check and let me know your interest', 101, '0000-00-00 00:00:00', 1),
(13802, 13576, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13803, 13586, 59, 2, 0, 'Very fresher written communication Average need to train from the scratch post hiring of exp can give a try', 101, '0000-00-00 00:00:00', 1),
(13804, 13575, 53, 5, 0, 'she is not opening her mouth, ', 59, '2023-07-10 04:58:56', 1),
(13805, 13576, 53, 7, 0, 'will try 50-50', 59, '2023-07-10 05:03:01', 1),
(13806, 13585, 57, 1, 0, NULL, 59, '2023-07-10 05:05:38', 1),
(13807, 13584, 19, 7, 4, 'Selected', 59, '2023-07-10 05:13:02', 1),
(13808, 13582, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13809, 13576, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-07-10 05:43:22', 1),
(13810, 13604, 59, 5, 0, '5050 Need to open a lot but have 1 yyr customer support roles kindly check and let mekow your interest', 108, '0000-00-00 00:00:00', 1),
(13811, 13601, 59, 4, 0, '5050 Profile Can ba trained kindly check and let me know your interest', 108, '0000-00-00 00:00:00', 1),
(13812, 13596, 59, 4, 0, '5050 Profile internal reference need to open a lot kindly check andlet meknow your interest', 101, '0000-00-00 00:00:00', 1),
(13813, 13594, 59, 4, 0, '5050 Profile have exp in muthoot finance for a year kindly check and let me know your interest', 101, '0000-00-00 00:00:00', 1),
(13814, 13608, 59, 5, 0, 'No Communication will not sustain and no basics ', 101, '0000-00-00 00:00:00', 1),
(13815, 13609, 59, 5, 0, 'Communication Average not much suitable in our roles will not sustain', 101, '0000-00-00 00:00:00', 1),
(13816, 13607, 59, 5, 0, 'Too Long Distance Up And Down 90 Kms Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13817, 13603, 59, 5, 0, 'Looking for Account Financial Analyst role only CMA Inter', 101, '0000-00-00 00:00:00', 1),
(13818, 13606, 59, 5, 0, 'Too long Distance up and down 90 kms not suitable', 101, '0000-00-00 00:00:00', 1),
(13819, 13589, 59, 5, 0, 'Looking for nonvoice process', 101, '0000-00-00 00:00:00', 1),
(13820, 13600, 59, 5, 0, 'Not strong with UI basics not open for TxxampC', 101, '0000-00-00 00:00:00', 1),
(13821, 13587, 59, 5, 0, 'No Scope in work will not handle the work pressure', 101, '0000-00-00 00:00:00', 1),
(13822, 13578, 59, 5, 0, 'Looking for non voice will not sustain', 101, '0000-00-00 00:00:00', 1),
(13823, 13595, 59, 5, 0, 'No Basics Communication Barrier not sutiable', 101, '0000-00-00 00:00:00', 1),
(13824, 13590, 59, 5, 0, 'No Basic Skills not suitable not open for TxxampC', 101, '0000-00-00 00:00:00', 1),
(13825, 13597, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13826, 13610, 59, 5, 0, 'Technical Round Reject - Tamilmani', 101, '0000-00-00 00:00:00', 1),
(13827, 13611, 59, 5, 0, 'Long Career Gap No sustainability Not suitable', 101, '0000-00-00 00:00:00', 1),
(13828, 13602, 59, 5, 0, 'Left wothout attending', 108, '0000-00-00 00:00:00', 1),
(13829, 13605, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(13830, 13594, 51, 5, 0, 'Rejected', 59, '2023-07-11 07:44:52', 1),
(13831, 13596, 19, 5, 1, 'NOT SELECTED', 59, '2023-07-11 07:46:17', 1),
(13832, 13597, 19, 7, 4, 'She Performed Well in Interview and her family situation ,am recommend 15k per Month Salary', 59, '2023-07-11 07:47:03', 1),
(13833, 13601, 19, 5, 1, 'Rejected', 59, '2023-07-11 07:48:28', 1),
(13834, 13584, 59, 3, 0, 'Selected for Kannan Team in Staff role', 19, '2023-07-12 10:17:37', 1),
(13835, 13618, 59, 4, 0, 'Communication Ok Have Exp in Calling Can give atry kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13836, 13598, 59, 4, 0, '5050 Profile Can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13837, 13616, 59, 3, 0, 'Selected for Charles Team in Consultant Role', 101, '0000-00-00 00:00:00', 1),
(13838, 13615, 59, 3, 0, 'Selected for Charles TEam in consultant Role', 101, '0000-00-00 00:00:00', 1),
(13839, 5548, 59, 5, 0, 'Fresher not open or TxxampC if he comes back after learning let us try', 101, '0000-00-00 00:00:00', 1),
(13840, 13620, 59, 5, 0, 'Not open for Voice Process Much', 101, '0000-00-00 00:00:00', 1),
(13841, 13619, 59, 5, 0, 'Fresher Not Open Or TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13842, 13617, 59, 5, 0, '2nd Round Reject in MIS Sustainability will not n', 101, '0000-00-00 00:00:00', 1),
(13843, 13614, 59, 3, 0, 'Selected for Intern React', 101, '0000-00-00 00:00:00', 1),
(13844, 13597, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-07-12 06:04:10', 1),
(13845, 13598, 19, 5, 1, 'Rejected', 59, '2023-07-12 07:58:03', 1),
(13846, 13615, 102, 7, 0, 'Shortlist for team', 59, '2023-07-12 07:59:02', 1),
(13847, 13616, 102, 7, 0, 'Shortlist For Team', 59, '2023-07-12 07:59:31', 1),
(13848, 13618, 57, 7, 0, 'Candidate is ok pls check with Pay slip and offer letter. pls confirm the joining date', 59, '2023-07-12 08:01:25', 1),
(13849, 13615, 59, 3, 0, 'Selected for Charles TEam in consultant Role', 102, '2023-07-13 10:49:59', 1),
(13850, 13616, 59, 3, 0, 'Selected for Charles Team in Consultant Role', 102, '2023-07-13 10:50:16', 1),
(13851, 13637, 59, 5, 0, 'Not good with Communicaiton and will not sustain and handle our pressure', 108, '0000-00-00 00:00:00', 1),
(13852, 13629, 59, 3, 0, 'Selected for MIS Renewal 2yrs NDA Communication Good Final Round Gokul', 101, '0000-00-00 00:00:00', 1),
(13853, 13628, 59, 3, 0, 'Selected for Kannan Team in Consultant role', 101, '0000-00-00 00:00:00', 1),
(13854, 13627, 59, 3, 0, 'Selected for Kannan Team in consultant role', 101, '0000-00-00 00:00:00', 1),
(13855, 13633, 59, 5, 0, '2nd round hold and reject not much comfort in calling', 101, '0000-00-00 00:00:00', 1),
(13856, 13632, 59, 5, 0, 'No Basics Knowledge Will Not Sustain In Our Roles', 101, '0000-00-00 00:00:00', 1),
(13857, 13635, 59, 5, 0, 'have 1 yr exp min exp 7 LPA will not sustain', 101, '0000-00-00 00:00:00', 1),
(13858, 13625, 59, 5, 0, 'Long Career Gap no basics knowledge will not sustain in our roles', 101, '0000-00-00 00:00:00', 1),
(13859, 13626, 59, 5, 0, 'should come after learning\n', 101, '0000-00-00 00:00:00', 1),
(13860, 13623, 59, 4, 0, 'Fresher Communication Ok can be trained kindly check and let me know your interest', 101, '0000-00-00 00:00:00', 1),
(13861, 13634, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13862, 13631, 59, 5, 0, 'Left Without Attending The Interview', 101, '0000-00-00 00:00:00', 1),
(13863, 13630, 59, 5, 0, 'Left without attending the interview', 101, '0000-00-00 00:00:00', 1),
(13864, 13624, 74, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(13865, 13623, 19, 5, 1, 'Rejected', 59, '2023-07-13 07:16:44', 1),
(13866, 13627, 19, 7, 4, 'Selected', 59, '2023-07-13 07:17:12', 1),
(13867, 13628, 19, 7, 4, 'Selected', 59, '2023-07-13 07:17:58', 1),
(13868, 13627, 59, 3, 0, 'Selected for Kannan Team in consultant role', 19, '2023-07-14 10:05:19', 1),
(13869, 13628, 59, 3, 0, 'Selected for Kannan Team in Consultant role', 19, '2023-07-14 11:01:15', 1),
(13870, 13618, 59, 1, 0, NULL, 57, '2023-07-14 11:55:02', 1),
(13871, 13639, 59, 2, 0, 'Have Exp in operations but not much suitable with the work pressure will not sustain and handle the pressure', 108, '0000-00-00 00:00:00', 1),
(13872, 13640, 59, 5, 0, 'Left with out attending', 101, '0000-00-00 00:00:00', 1),
(13873, 13641, 59, 4, 0, 'Have 1 month Exp Communication Average kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13874, 13650, 59, 5, 0, 'Have Exp but not much ideas in Javascript will not sustain and handle our work roles need to train a lot', 101, '0000-00-00 00:00:00', 1),
(13875, 13642, 59, 5, 0, 'Have 1 yr exp in web developer bubt the salary exp is very high and not ready to come down', 101, '0000-00-00 00:00:00', 1),
(13876, 13645, 59, 5, 0, 'No basics knowledge will not sustain in our roles not suitable', 101, '0000-00-00 00:00:00', 1),
(13877, 13638, 59, 5, 0, 'Long Career Gap Ditance he is not comfortable new for Insurance Sales will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13878, 13652, 59, 5, 0, 'No sustainability 1.7 yrs 3 companies no communication no clarity inher previous emp will not sustain', 101, '0000-00-00 00:00:00', 1),
(13879, 13641, 105, 5, 0, 'COMMUNICATION ERROR ITS VERY HARD TO TRAIN HER', 59, '2023-07-14 07:33:33', 1),
(13880, 13648, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(13881, 13657, 59, 4, 0, 'Have Exp in Calling can be trained in our roles kindly check anc let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(13882, 13658, 59, 3, 0, 'Selected for Syed Team', 108, '0000-00-00 00:00:00', 1),
(13883, 13659, 59, 7, 0, 'Selected for Operations team Gokul final round selected', 108, '0000-00-00 00:00:00', 1),
(13884, 13651, 59, 4, 0, '5050 Profile Have Exp in Sales Calling but he seems to have some medical issues kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(13885, 13660, 59, 5, 0, 'Holding an offer for 6 LPA', 101, '0000-00-00 00:00:00', 1),
(13886, 13661, 59, 5, 0, 'Need to learn Looking for Java profile if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13887, 13656, 59, 5, 0, 'Pronunciation Poor will not handle the ork pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(13888, 13654, 59, 4, 0, 'Fresher for our domain have exp in B2B Calling kindly check an dlet me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13889, 13665, 59, 5, 0, 'Looking for non voice process only not suitable', 101, '0000-00-00 00:00:00', 1),
(13890, 13664, 59, 5, 0, 'Not suitable for Sales will not sustain ', 101, '0000-00-00 00:00:00', 1),
(13891, 13666, 59, 5, 0, 'Will not sustain Holding an offer with CTS ', 101, '0000-00-00 00:00:00', 1),
(13892, 13653, 59, 4, 0, '5050 profile Communication Ok Fresher distance need to see kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13893, 13663, 59, 5, 0, 'Too long Distance Have high Exp age around 40 Not suitable', 101, '0000-00-00 00:00:00', 1),
(13894, 13651, 19, 5, 1, 'Rejected', 59, '2023-07-15 07:27:52', 1),
(13895, 13653, 19, 5, 1, 'Rejected', 59, '2023-07-15 07:30:18', 1),
(13896, 13657, 53, 1, 0, NULL, 59, '2023-07-15 07:33:48', 1),
(13897, 13654, 53, 1, 0, NULL, 59, '2023-07-15 07:34:22', 1),
(13898, 13658, 57, 7, 0, 'Pls check With Candidate joining date, Ctc ', 59, '2023-07-15 07:37:35', 1),
(13899, 13659, 60, 1, 0, NULL, 59, '2023-07-15 07:38:33', 1),
(13900, 13550, 60, 1, 0, NULL, 30, '2023-07-17 08:21:42', 1),
(13901, 13535, 59, 4, 0, 'Fresher 5050 Try Need to be trained kindly check and let me know your input', 101, '0000-00-00 00:00:00', 1),
(13902, 13655, 59, 4, 0, 'Fresher 5050 Try Need To Be Trained Kindly Check And Let Me Know Your Input', 101, '0000-00-00 00:00:00', 1),
(13903, 13668, 59, 5, 0, 'Poor Proninciation will not sustain and handle our work pressure', 101, '0000-00-00 00:00:00', 1),
(13904, 13671, 59, 5, 0, 'Looking for non Voice Process no Communicaiton', 101, '0000-00-00 00:00:00', 1),
(13905, 13622, 59, 4, 0, 'Fresher Over confidence 5050 Can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13906, 13669, 59, 5, 0, 'have exp in semivoce and holding an offer for 18K and lookin for same semivoice', 101, '0000-00-00 00:00:00', 1),
(13907, 13672, 59, 5, 0, 'HOlding SP code with SBI and not ready to cancel the same not suitable', 101, '0000-00-00 00:00:00', 1),
(13908, 13673, 59, 5, 0, 'HOlding SP Code With SBI And Not Ready To Cancel The Same Not Suitable', 101, '0000-00-00 00:00:00', 1),
(13909, 13636, 59, 4, 0, 'Too long Distance have exp in calling 5050 kindly check and let me knwo your inputs', 101, '0000-00-00 00:00:00', 1),
(13910, 13658, 59, 3, 0, 'Selected for Syed Team', 57, '2023-07-17 03:55:23', 1),
(13911, 13535, 19, 5, 1, 'Reject', 59, '2023-07-17 07:16:19', 1),
(13912, 13655, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-07-17 07:16:42', 1),
(13913, 13622, 19, 5, 1, 'Rejected', 59, '2023-07-17 07:18:40', 1),
(13914, 13636, 86, 5, 0, 'Not Satisfied', 59, '2023-07-17 07:19:42', 1),
(13915, 13675, 59, 4, 0, 'have exp in Sales but his communication not seems to that 5050 kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13916, 13676, 59, 3, 0, 'Selected for Sarath Team ', 108, '0000-00-00 00:00:00', 1),
(13917, 13679, 59, 5, 0, 'No Communication not open fir Telecalling will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(13918, 13667, 59, 5, 0, 'No Sustainbility will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(13919, 13678, 59, 3, 0, 'Selecetd for Kannan Team Consutlant Role', 108, '0000-00-00 00:00:00', 1),
(13920, 13681, 59, 4, 0, '5050 Profile Fresher Need To Train A Lot Kindly Check And Let Me Knwo Your Inputs', 101, '0000-00-00 00:00:00', 1),
(13921, 13674, 59, 5, 0, 'Have Shoulder injury communication Ok asked him to come post lunch but he didmt', 101, '0000-00-00 00:00:00', 1),
(13922, 13683, 59, 2, 0, 'Need to come back after learning if he comes back let us try', 101, '0000-00-00 00:00:00', 1),
(13923, 13680, 59, 4, 0, '5050 Profile Fresher need to train a lot kindly check and let me knwo your inputs', 101, '0000-00-00 00:00:00', 1),
(13924, 13684, 59, 5, 0, 'Not open for Telecalling', 101, '0000-00-00 00:00:00', 1),
(13925, 13680, 19, 5, 1, 'Reject', 59, '2023-07-18 07:21:25', 1),
(13926, 13681, 89, 1, 0, NULL, 59, '2023-07-18 07:21:43', 1),
(13927, 13678, 19, 7, 4, 'Selected', 59, '2023-07-18 07:23:17', 1),
(13928, 13675, 86, 5, 0, 'Not satisfied', 59, '2023-07-18 07:26:28', 1),
(13929, 13676, 51, 1, 0, NULL, 59, '2023-07-18 07:27:40', 1),
(13930, 13689, 74, 7, 0, 'she is ok with the profile.....completed bcom and expected banking related job they choose insurance so intrested candidate and good exposure...expected 12k ...father auto driver and mother house wife and have one sister ........so shee need to improve the status highly job preffered ...no laptop ready to arrange kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(13931, 13670, 97, 4, 0, 'communication ok. good in convincing . let us try kindly check and update your feedback.', 85, '0000-00-00 00:00:00', 1),
(13932, 13685, 97, 5, 0, 'looking job into IT ..long run doubts.. ', 85, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(13933, 13687, 97, 5, 0, 'Has exp in sales. long run doubts xxamp Not suit for our process.', 85, '0000-00-00 00:00:00', 1),
(13934, 13690, 97, 5, 0, 'not suit for our process', 85, '0000-00-00 00:00:00', 1),
(13935, 13689, 59, 3, 0, 'Selected for Sithy Team Consultant Role', 74, '2023-07-19 04:28:17', 1),
(13936, 13676, 59, 3, 0, 'Selected for Sarath Team ', 29, '2023-07-20 10:05:53', 1),
(13937, 13686, 97, 7, 0, 'Communication ok. has some exp in sales xxamp Renewals. final round interviewed by gokul xxamp Selected for Renewals.', 85, '0000-00-00 00:00:00', 1),
(13938, 13686, 59, 1, 0, NULL, 97, '2023-07-20 10:27:09', 1),
(13939, 13670, 19, 7, 4, 'Selected', 97, '2023-07-20 10:30:48', 1),
(13940, 13691, 59, 5, 0, 'Not Suitable Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13941, 13695, 59, 5, 0, 'Not Suitable Will Not Sustain', 101, '0000-00-00 00:00:00', 1),
(13942, 13694, 59, 5, 0, 'Not suitable will not sustain', 101, '0000-00-00 00:00:00', 1),
(13943, 13696, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13944, 13697, 59, 5, 0, 'Not open for telecalling not much suits to our roles will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(13945, 13692, 59, 5, 0, 'No Basic Skills not much comfort in TxxampC if she comes after learning let us try', 101, '0000-00-00 00:00:00', 1),
(13946, 13699, 59, 5, 0, 'Looking for non voice only', 101, '0000-00-00 00:00:00', 1),
(13947, 13700, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13948, 13710, 59, 5, 0, 'Looking for non voice and not open for Calling profile not suitble', 101, '0000-00-00 00:00:00', 1),
(13949, 13708, 59, 4, 0, 'Fresher for our sales very 5050 profile kindly check andlet me know your inputs', 101, '0000-00-00 00:00:00', 1),
(13950, 13705, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13951, 13706, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13952, 13704, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13953, 13702, 59, 5, 0, 'Fresher No Basics In Javascript Need To Come Back With His Confirmation On TxxampC If He Comes Back After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(13954, 13698, 59, 5, 0, 'Fresher no basics in Javascript need to come back with his confirmation on TxxampC if he comes back after learning let us try', 101, '0000-00-00 00:00:00', 1),
(13955, 13678, 59, 3, 0, 'Selecetd for Kannan Team Consutlant Role', 19, '2023-07-21 06:38:23', 1),
(13956, 13670, 59, 3, 0, 'Selected for KAnnan Tema in staff Role', 19, '2023-07-21 06:39:02', 1),
(13957, 13708, 19, 5, 1, 'Rejected', 59, '2023-07-21 07:26:56', 1),
(13958, 13717, 74, 7, 0, 'she is highly expected for sales only...so easily adaptive and ...already worked in just dial...so have knowledge in sales also....father farmer only and ready to arrange laptop currently working in school and releived in aug only so kindly check once and confirm expected 15k ...kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(13959, 13707, 97, 4, 0, 'Fresher need to train .convincing ok.. let us try', 104, '0000-00-00 00:00:00', 1),
(13960, 13738, 97, 5, 0, 'not suit for our process ...sustainbility doubts', 108, '0000-00-00 00:00:00', 1),
(13961, 13712, 59, 2, 0, 'Discussed with the candidate and she is not much comfort also family is not much comfort with the distance\n', 104, '0000-00-00 00:00:00', 1),
(13962, 13715, 97, 4, 0, 'exp in sales xxamp Recovery good communication skill.. kindly check and update your inputs...', 104, '0000-00-00 00:00:00', 1),
(13963, 13736, 97, 5, 0, 'Not Suit For Our Process.', 104, '0000-00-00 00:00:00', 1),
(13964, 13725, 97, 5, 0, 'not suit for our process.', 104, '0000-00-00 00:00:00', 1),
(13965, 13732, 97, 5, 0, 'Not much good in prog lau . xxamp Not ok with txxampc', 104, '0000-00-00 00:00:00', 1),
(13966, 13750, 97, 5, 0, 'low confidence .. not suit for our roles sal expt high', 104, '0000-00-00 00:00:00', 1),
(13967, 13747, 97, 5, 0, '50-50 profile average convinving skills..let us try ... left without attending next round', 104, '0000-00-00 00:00:00', 1),
(13968, 13756, 97, 4, 0, '50-50 PROFILE sustainbility doubts..check and update your feedbacks', 104, '0000-00-00 00:00:00', 1),
(13969, 13761, 97, 5, 0, 'not suit for our roles', 104, '0000-00-00 00:00:00', 1),
(13970, 13769, 97, 5, 0, 'Exp profile.. sal expt too high for renewals.', 104, '0000-00-00 00:00:00', 1),
(13971, 13768, 59, 5, 0, 'Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(13972, 13772, 97, 5, 0, 'Rejected In aptitude round', 104, '0000-00-00 00:00:00', 1),
(13973, 13755, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13974, 13766, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13975, 13753, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13976, 13751, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(13977, 13762, 97, 5, 0, 'Rejected in appitutude round', 104, '0000-00-00 00:00:00', 1),
(13978, 13773, 85, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(13979, 13776, 59, 4, 0, '5050 Profile can give a try kindly check and let me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(13980, 13757, 97, 4, 0, '50-50 profile convincing skill average. sustainbility doubts. let us try.. kindly check and update your feed back', 108, '0000-00-00 00:00:00', 1),
(13981, 13729, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13982, 13739, 59, 5, 0, 'TEchnical Round Reject', 104, '0000-00-00 00:00:00', 1),
(13983, 13749, 97, 4, 0, 'Has exp in sales .. convincing skills Good..kindly check and update your feed back', 104, '0000-00-00 00:00:00', 1),
(13984, 13742, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 104, '0000-00-00 00:00:00', 1),
(13985, 13744, 59, 5, 0, 'Looking For Non Voice Only', 104, '0000-00-00 00:00:00', 1),
(13986, 13734, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13987, 13741, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13988, 13733, 59, 5, 0, 'Rejected by Gk Sir 2nd round', 104, '0000-00-00 00:00:00', 1),
(13989, 13740, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13990, 13731, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13991, 13727, 59, 5, 0, 'Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(13992, 13737, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13993, 13730, 59, 5, 0, 'Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13994, 13728, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13995, 13758, 59, 5, 0, 'Looking for non voice only', 104, '0000-00-00 00:00:00', 1),
(13996, 13771, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13997, 13759, 59, 5, 0, 'Looking For Non Voice Only', 104, '0000-00-00 00:00:00', 1),
(13998, 13775, 59, 2, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(13999, 13760, 59, 5, 0, 'Looking For Non Voice Only', 104, '0000-00-00 00:00:00', 1),
(14000, 13748, 59, 5, 0, 'Fresher for Digital Marketing high salary exp', 104, '0000-00-00 00:00:00', 1),
(14001, 13752, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14002, 13770, 59, 4, 0, 'Have Exp in Insurance Domain but no sustainability Can give a try kindly check and let me know your inouts', 104, '0000-00-00 00:00:00', 1),
(14003, 13754, 59, 4, 0, '5050 Profile can give a try kindly check and let me know your inpust', 104, '0000-00-00 00:00:00', 1),
(14004, 13763, 97, 5, 0, 'not suit for our process', 104, '0000-00-00 00:00:00', 1),
(14005, 13714, 97, 4, 0, 'Fresher Good in convincing skill...kindly check and update your feed back', 104, '0000-00-00 00:00:00', 1),
(14006, 13707, 53, 7, 0, 'Selected', 97, '2023-07-25 04:02:37', 1),
(14007, 13714, 53, 7, 0, 'Selected', 97, '2023-07-25 04:09:04', 1),
(14008, 13715, 86, 4, 0, 'Selected for next round ', 97, '2023-07-25 05:44:50', 1),
(14009, 13707, 59, 3, 0, 'Selected for Banu Teaam Consultant Tole', 53, '2023-07-25 06:02:51', 1),
(14010, 13714, 59, 3, 0, 'Selelcted fpr Banu Team Consultant Role', 53, '2023-07-25 06:03:16', 1),
(14011, 13749, 31, 7, 4, 'Candidate okay', 97, '2023-07-25 06:04:36', 1),
(14012, 13797, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14013, 13798, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14014, 13796, 59, 5, 0, 'Will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(14015, 13789, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14016, 13780, 59, 5, 0, 'Sounding Vey Low will not handle the work pressure not suitable', 101, '0000-00-00 00:00:00', 1),
(14017, 13781, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try too long distance too', 101, '0000-00-00 00:00:00', 1),
(14018, 13782, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14019, 13778, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14020, 13765, 59, 4, 0, 'Fresher can be trained kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14021, 13785, 59, 5, 0, 'time being looking for opportunities', 101, '0000-00-00 00:00:00', 1),
(14022, 13783, 59, 5, 0, 'For Dot net only', 101, '0000-00-00 00:00:00', 1),
(14023, 13784, 59, 5, 0, 'Looking for Java only', 101, '0000-00-00 00:00:00', 1),
(14024, 13786, 59, 5, 0, 'Not suitable and will not sustain', 101, '0000-00-00 00:00:00', 1),
(14025, 13787, 59, 5, 0, 'NotMcuh open up not suitable for our Roles', 101, '0000-00-00 00:00:00', 1),
(14026, 13788, 59, 5, 0, 'Not suitable for our roles will not sustain ', 101, '0000-00-00 00:00:00', 1),
(14027, 13792, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14028, 13793, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14029, 13794, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If the candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14030, 13790, 59, 4, 0, '5050 Low Quality Internal reference kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14031, 13791, 59, 5, 0, 'No sustainability will not sustain not suitable', 101, '0000-00-00 00:00:00', 1),
(14032, 13834, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14033, 13835, 109, 4, 0, 'Selected for apptitude', 104, '0000-00-00 00:00:00', 1),
(14034, 13814, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14035, 13820, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14036, 13813, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14037, 13830, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14038, 13829, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14039, 13822, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14040, 13848, 109, 4, 0, 'selected for apptitude test', 104, '0000-00-00 00:00:00', 1),
(14041, 13839, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14042, 13836, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14043, 13815, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14044, 13851, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14045, 13804, 109, 5, 0, 'not ok with Technical round', 104, '0000-00-00 00:00:00', 1),
(14046, 13846, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14047, 13845, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14048, 13852, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14049, 13837, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14050, 13840, 59, 5, 0, 'Min Exp 4.5 LPA exp 1yr', 101, '0000-00-00 00:00:00', 1),
(14051, 13823, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14052, 13828, 59, 5, 0, 'Too long distance will not sustain and not suitable', 101, '0000-00-00 00:00:00', 1),
(14053, 13819, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14054, 13824, 109, 4, 0, 'Selected for apptitude test', 104, '0000-00-00 00:00:00', 1),
(14055, 13831, 59, 5, 0, 'very Slow not open up', 101, '0000-00-00 00:00:00', 1),
(14056, 13827, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14057, 13807, 109, 5, 0, 'Not ok with technical round', 104, '0000-00-00 00:00:00', 1),
(14058, 13853, 59, 5, 0, 'Looking for non voice in accounts only tally but sustainability doubt', 101, '0000-00-00 00:00:00', 1),
(14059, 13812, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14060, 13854, 59, 2, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14061, 13857, 59, 5, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14062, 13817, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14063, 13847, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14064, 13825, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14065, 13806, 59, 2, 0, ' Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14066, 13842, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14067, 13844, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14068, 13838, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14069, 13832, 59, 5, 0, 'Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try Min Exp is 20-25K', 101, '0000-00-00 00:00:00', 1),
(14070, 13818, 109, 5, 0, 'Not Ok With Technical Round', 104, '0000-00-00 00:00:00', 1),
(14071, 13833, 109, 4, 0, 'Selected for apptitude test', 104, '0000-00-00 00:00:00', 1),
(14072, 13856, 97, 5, 0, 'Not Suit For Our Process.', 101, '0000-00-00 00:00:00', 1),
(14073, 13855, 97, 5, 0, 'Not Suit For Our Process.', 101, '0000-00-00 00:00:00', 1),
(14074, 13799, 59, 4, 0, 'Have Exp in Telecalling can give a try kindy check and le tme know your inputs', 101, '0000-00-00 00:00:00', 1),
(14075, 13800, 59, 4, 0, '5050 Profile fresher for our roles can give a try kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14076, 13808, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(14077, 13821, 53, 1, 0, NULL, 101, '0000-00-00 00:00:00', 1),
(14078, 13849, 59, 3, 0, 'Selected for Operation Team Final Round interviewed by gokul and selected', 101, '0000-00-00 00:00:00', 1),
(14079, 13868, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14080, 13869, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14081, 13800, 19, 5, 1, 'not fir for sales', 59, '2023-07-27 05:36:21', 1),
(14082, 13790, 19, 5, 1, 'Reject', 59, '2023-07-27 05:40:20', 1),
(14083, 13799, 51, 5, 0, 'Rejected', 59, '2023-07-27 05:46:34', 1),
(14084, 13742, 86, 4, 0, 'Selected for next round ', 59, '2023-07-27 05:47:32', 1),
(14085, 13770, 31, 1, 0, NULL, 59, '2023-07-27 05:48:31', 1),
(14086, 13765, 19, 5, 1, 'not fit for sales', 59, '2023-07-27 05:54:52', 1),
(14087, 13776, 89, 1, 0, NULL, 59, '2023-07-27 05:58:16', 1),
(14088, 13876, 59, 2, 0, 'Sounding Low written communicaiton Ok can give a try', 101, '0000-00-00 00:00:00', 1),
(14089, 13887, 59, 5, 0, 'Looking for Java only', 101, '0000-00-00 00:00:00', 1),
(14090, 13890, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14091, 13871, 59, 5, 0, ' Not Suitable For Our Roles Will Not Sustain And Handle The Work Pressure', 101, '0000-00-00 00:00:00', 1),
(14092, 13881, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14093, 13870, 59, 5, 0, ' Not suitable for our roles will not sustain and handle the work pressure', 101, '0000-00-00 00:00:00', 1),
(14094, 13880, 59, 5, 0, '8610762', 101, '0000-00-00 00:00:00', 1),
(14095, 13872, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14096, 13884, 59, 5, 0, 'No Basic Skills Not Much Comfort In TxxampC If The Candidate Comes After Learning Let Us Try', 101, '0000-00-00 00:00:00', 1),
(14097, 13883, 59, 5, 0, 'Very Slow not open up will not sustain', 101, '0000-00-00 00:00:00', 1),
(14098, 13866, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14099, 13879, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14100, 13878, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14101, 13874, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14102, 13873, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14103, 13889, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14104, 13888, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14105, 13861, 59, 4, 0, 'Communication Ok Can be trained in our roles kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14106, 13754, 19, 5, 1, 'Not Fit For Sales', 59, '2023-07-27 07:32:31', 1),
(14107, 13862, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14108, 13877, 59, 3, 0, 'Selected for GK Sir Team consultant Role', 101, '0000-00-00 00:00:00', 1),
(14109, 13882, 59, 5, 0, 'Looking for Java only', 101, '0000-00-00 00:00:00', 1),
(14110, 13863, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14111, 13865, 109, 2, 0, 'Yet To Be Correct Apptitude', 101, '0000-00-00 00:00:00', 1),
(14112, 13861, 57, 1, 0, NULL, 59, '2023-07-27 07:36:24', 1),
(14113, 13877, 31, 7, 4, 'Candidate selected for next round', 59, '2023-07-27 07:37:13', 1),
(14114, 13824, 59, 1, 0, NULL, 109, '2023-07-28 11:35:39', 1),
(14115, 13833, 59, 1, 0, NULL, 109, '2023-07-28 11:38:18', 1),
(14116, 13835, 59, 1, 0, NULL, 109, '2023-07-28 11:39:17', 1),
(14117, 13848, 59, 1, 0, NULL, 109, '2023-07-28 11:42:12', 1),
(14118, 13757, 19, 5, 1, 'Not Fit for sales', 97, '2023-07-28 11:50:36', 1),
(14119, 13905, 97, 4, 0, 'Has 6m of exp in sales.. good convincing skill.. kindly check and update your feed back', 108, '0000-00-00 00:00:00', 1),
(14120, 13891, 97, 5, 0, 'Long distance.. candidate not interested in sales...', 104, '0000-00-00 00:00:00', 1),
(14121, 13894, 97, 4, 0, 'long distance ready to relocate.... good in convincing skill.. let us try', 104, '0000-00-00 00:00:00', 1),
(14122, 13859, 97, 4, 0, '50-50 profile.... Fresher need to open a lot .. kindly check ', 101, '0000-00-00 00:00:00', 1),
(14123, 13811, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(14124, 13885, 59, 5, 0, 'Not open for TxxampC', 104, '0000-00-00 00:00:00', 1),
(14125, 13895, 109, 2, 0, 'yest to be correct apptitude.', 104, '0000-00-00 00:00:00', 1),
(14126, 13896, 109, 2, 0, 'yet to be correct apptitude', 104, '0000-00-00 00:00:00', 1),
(14127, 13902, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14128, 13904, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14129, 13906, 74, 7, 0, 'he is ok with the profile father doing work labour in market rental house have one brother studying college .....have good in fluency speech and high aim of thoughts related to job college topper ...expected 14k due to family issue kindly check and confirm once from your side ...have no laptop ready to manage ', 85, '0000-00-00 00:00:00', 1),
(14130, 13901, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14131, 13900, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14132, 13810, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(14133, 13908, 59, 5, 0, 'Too long Distance not much comfort in TxxampC too ', 104, '0000-00-00 00:00:00', 1),
(14134, 13907, 59, 5, 0, 'Yet to complete her graduation post completion if she comes let us try', 104, '0000-00-00 00:00:00', 1),
(14135, 13809, 74, 7, 0, 'she is ok with the profile father daily wages .....but she is active and good profile so fit for team also....have laptop refered by new candidate vaishnavi and ready to join is not finanalised because he is joining in tailoring class so kindly check once and confirm...expected 12k', 108, '0000-00-00 00:00:00', 1),
(14136, 13897, 59, 3, 0, 'Selected for Operations staff role', 104, '0000-00-00 00:00:00', 1),
(14137, 13899, 59, 5, 0, 'too long Distance up and down 50kms will not sustain', 104, '0000-00-00 00:00:00', 1),
(14138, 13903, 59, 5, 0, 'No basics not suitable not open for TxxampC', 104, '0000-00-00 00:00:00', 1),
(14139, 13898, 59, 5, 0, 'Not open with the TxxampC fresher looking only on the salary\n', 104, '0000-00-00 00:00:00', 1),
(14140, 13921, 59, 4, 0, '5050 Profile fresher for our sales sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14141, 13919, 97, 4, 0, 'Has exp in sales... good convincing skill. let us try..Check xxampupdate your inputs', 104, '0000-00-00 00:00:00', 1),
(14142, 13915, 85, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14143, 13906, 59, 1, 0, NULL, 74, '2023-07-28 05:54:34', 1),
(14144, 13809, 59, 1, 0, NULL, 74, '2023-07-28 05:57:39', 1),
(14145, 13717, 59, 3, 0, 'Selected for Sithy Team Consultant Role', 74, '2023-07-28 06:03:37', 1),
(14146, 13905, 89, 7, 0, 'Selected ', 97, '2023-07-29 10:30:09', 1),
(14147, 13919, 89, 7, 0, 'Selected ', 97, '2023-07-29 10:31:42', 1),
(14148, 13894, 89, 7, 0, 'Selected', 97, '2023-07-29 10:43:04', 1),
(14149, 13859, 89, 1, 0, NULL, 97, '2023-07-29 10:45:27', 1),
(14150, 13892, 85, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(14151, 13894, 59, 3, 0, 'Selected for Babu Team Consultant Role', 89, '2023-07-29 11:08:09', 1),
(14152, 13905, 59, 3, 0, 'Selected for Babu Team', 89, '2023-07-29 11:08:32', 1),
(14153, 13919, 59, 3, 0, 'Selected for Babu Team Consultant role', 89, '2023-07-29 11:09:02', 1),
(14154, 13929, 59, 2, 0, 'Good Communication No local communication only english and hindi can give a try for other roles if he is ok \n', 108, '0000-00-00 00:00:00', 1),
(14155, 13756, 89, 1, 0, NULL, 97, '2023-07-29 05:37:33', 1),
(14156, 13715, 18, 7, 0, 'Offer 2.7L CTC Ready to Join on 2nd Aug for Mani team', 86, '2023-07-29 05:50:04', 1),
(14157, 13742, 18, 7, 0, 'Shortlisted for Mani team. Expected 35K Last drawn CTC 28K Ask Arun to negotiate the salary but decent candidate xxamp Immed Joiner', 86, '2023-07-29 05:50:38', 1),
(14158, 13922, 59, 5, 0, 'Not suitable for our roles every 6 months jumped companies not in sales too ', 104, '0000-00-00 00:00:00', 1),
(14159, 13923, 59, 5, 0, 'No basics No communication only speaks malayalam not suitable', 104, '0000-00-00 00:00:00', 1),
(14160, 13924, 59, 2, 0, 'Have basic skills but not comfort in TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14161, 13925, 59, 2, 0, 'Need to come back with his confirmation already working and time being he is just looking for his safe employment', 104, '0000-00-00 00:00:00', 1),
(14162, 13928, 59, 5, 0, 'not much comfort in TxxampC fresher if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14163, 13749, 29, 7, 2, 'gkji,', 31, '2023-07-31 10:02:37', 1),
(14164, 13877, 29, 7, 2, 'gk team, need to check in 7 days training, ', 31, '2023-07-31 10:03:46', 1),
(14165, 13934, 74, 7, 0, 'she is ok with the profile have sales knowledge and intrested candidate travel time 1 hour kindly check once completed mba and expected 12k salary have laptop kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(14166, 13935, 74, 7, 0, 'she is ok with the profile have sales knowledge... mba finance and marketing have laptop and expected in sales related job only....salary 12k take home...have laptop kindly confirm once for joining', 85, '0000-00-00 00:00:00', 1),
(14167, 13936, 59, 3, 0, 'Selected for B2Bconsultant Role', 101, '0000-00-00 00:00:00', 1),
(14168, 13940, 59, 3, 0, 'Selected for Operations Renewal final round by gokul ', 101, '0000-00-00 00:00:00', 1),
(14169, 13877, 59, 3, 0, 'Selected for GK Sir Team consultant Role', 29, '2023-07-31 04:52:58', 1),
(14170, 13749, 59, 3, 0, 'Selected for GK sir Team in Staff Role', 29, '2023-07-31 04:54:51', 1),
(14171, 13932, 59, 4, 0, 'communication Ok but attitude he has doubts on the sustainability in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14172, 13951, 59, 5, 0, 'Not much interested in calling much focus in Accounts but no ideas in that too long distance sustainability doubts', 104, '0000-00-00 00:00:00', 1),
(14173, 13715, 59, 3, 0, 'Selected for Manikandan Team in Staff Role', 18, '2023-07-31 05:11:26', 1),
(14174, 13950, 59, 5, 0, 'Duplicated Profile', 104, '0000-00-00 00:00:00', 1),
(14175, 13742, 60, 1, 0, NULL, 18, '2023-07-31 05:12:01', 1),
(14176, 13945, 59, 5, 0, 'No Clarity in his communication Salary exp is high his current is 25K TH will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14177, 13944, 59, 5, 0, 'Over confidence Will not sustain and handle our work pressure this attitude will not work it out in our roles', 104, '0000-00-00 00:00:00', 1),
(14178, 13939, 59, 3, 0, 'Selected for B2B Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14179, 13938, 59, 4, 0, 'Speaking but seems to be 5050 kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14180, 13937, 59, 4, 0, '5050 Need to open up a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14181, 13961, 59, 5, 0, 'Have 6 months intern exp but not open for TxxampC more than 1 yr not much good with basics too', 104, '0000-00-00 00:00:00', 1),
(14182, 13942, 59, 5, 0, 'Left With Out Attending The Interview', 104, '0000-00-00 00:00:00', 1),
(14183, 13946, 59, 5, 0, 'Left with out attending the interview', 104, '0000-00-00 00:00:00', 1),
(14184, 13952, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14185, 13955, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14186, 13956, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14187, 13954, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14188, 13943, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14189, 13958, 97, 5, 0, 'Not Much Good In Prog.Laug....xxampNot Ok With Our TxxampC', 104, '0000-00-00 00:00:00', 1),
(14190, 13949, 109, 2, 0, 'Yet To Be Correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14191, 13948, 109, 2, 0, 'Yet to be correct Apptitude', 104, '0000-00-00 00:00:00', 1),
(14192, 13743, 59, 5, 0, 'Too long Distance no basics in JS will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(14193, 13937, 53, 1, 0, NULL, 59, '2023-07-31 05:45:45', 1),
(14194, 13938, 53, 1, 0, NULL, 59, '2023-07-31 05:46:31', 1),
(14195, 13932, 19, 5, 1, 'Not Fit', 59, '2023-07-31 05:54:50', 1),
(14196, 13936, 53, 7, 0, 'fresher, having telecalling experience, bold and having convincng skill, will try for b2b.', 59, '2023-07-31 05:55:39', 1),
(14197, 13939, 53, 7, 0, 'fresher, having intern experience, very bold, will try for telecalling', 59, '2023-07-31 05:55:54', 1),
(14198, 13935, 59, 3, 0, '\nselected for Sithy Team Consultant Role', 74, '2023-07-31 06:32:22', 1),
(14199, 13934, 59, 3, 0, 'Selected for Sithy Team Consultant ', 74, '2023-07-31 06:38:19', 1),
(14200, 13921, 89, 1, 0, NULL, 59, '2023-07-31 06:52:18', 1),
(14201, 13939, 59, 3, 0, 'Selected for B2B Consultant Role', 53, '2023-08-01 09:38:18', 1),
(14202, 13936, 59, 3, 0, 'Selected for B2Bconsultant Role', 53, '2023-08-01 09:39:37', 1),
(14203, 13967, 59, 5, 0, 'Too long distance will not handle our work roles not suitable updown 80kms', 104, '0000-00-00 00:00:00', 1),
(14204, 13971, 59, 4, 0, '5050 profile career Gap sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14205, 13933, 59, 2, 0, 'Left with out attending the final round due to emergeny if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14206, 13970, 59, 4, 0, 'have exp in sales calling but no documents for her exp 5050 kindly check and let me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(14207, 13969, 59, 5, 0, 'No basic skills knowledge need to opena lot', 104, '0000-00-00 00:00:00', 1),
(14208, 13978, 59, 5, 0, 'Career Gap not much good with basics will not sustain if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14209, 13972, 59, 5, 0, 'very slow candidate have system admin exp will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(14210, 13971, 19, 5, 1, 'No Need for job', 59, '2023-08-01 07:14:45', 1),
(14211, 13970, 19, 5, 1, 'Reject', 59, '2023-08-01 07:17:38', 1),
(14212, 13933, 59, 2, 0, 'Left With Out Attending The Final Round Due To Emergeny If She Comes Back Let Us Try For Operations', 59, '2023-08-01 07:18:39', 1),
(14213, 13979, 59, 5, 0, 'Need to open a lot will not handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14214, 13981, 59, 4, 0, 'Have Exp in calling but not a relevant one can give a try for our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14215, 13982, 59, 4, 0, 'Fresher for Calling Internal Team Reference Babu Team Kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14216, 13983, 59, 5, 0, 'Notopen for TxxampC No basics Skills too need to learn a lot', 104, '0000-00-00 00:00:00', 1),
(14217, 13984, 59, 5, 0, 'Searching for Java Opening only not open for other proifles', 104, '0000-00-00 00:00:00', 1),
(14218, 13985, 59, 5, 0, 'No Skills No understanding not suitable for our roles ', 104, '0000-00-00 00:00:00', 1),
(14219, 13986, 59, 5, 0, 'Attitude Issue not open for taking target and also not comfortable in field too not suitable', 104, '0000-00-00 00:00:00', 1),
(14220, 13987, 59, 3, 0, 'Selected for Staff Role GK SIR Team with Cmmitment - In aug 1.5L Life plus 10 MF then Sept onwards 21K Net Salary', 104, '0000-00-00 00:00:00', 1),
(14221, 13988, 59, 4, 0, 'Have Calling Exp Can be trained in our roles Kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14222, 13987, 31, 7, 4, 'Candidate ok please do the further process', 59, '2023-08-03 10:09:07', 1),
(14223, 13982, 19, 5, 1, 'Reject', 59, '2023-08-03 10:15:02', 1),
(14224, 13988, 57, 1, 0, NULL, 59, '2023-08-03 10:16:47', 1),
(14225, 13981, 51, 5, 0, 'Rejected', 59, '2023-08-03 10:18:09', 1),
(14226, 13990, 59, 5, 0, 'Final Round Reject Salary Exp is high being a fresher for our Operations Role will not sustain andhandle our pressure', 104, '0000-00-00 00:00:00', 1),
(14227, 13989, 59, 3, 0, 'Selected for Syed Team in Staff role', 104, '0000-00-00 00:00:00', 1),
(14228, 13991, 59, 5, 0, 'Checked for MIS Roles Written Communication not upto the expectations and sustainability no will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14229, 13992, 59, 5, 0, 'Not open for Calling uch and not ready to go for field too will not sustain and not suitable no Communication too ', 108, '0000-00-00 00:00:00', 1),
(14230, 13989, 57, 7, 0, 'Selected', 59, '2023-08-03 01:24:55', 1),
(14231, 14000, 97, 5, 0, 'has exp in telecalling ... but sustainbility doubts', 108, '0000-00-00 00:00:00', 1),
(14232, 13997, 97, 5, 0, 'has exp in telecalling... sustainbility doubts....', 108, '0000-00-00 00:00:00', 1),
(14233, 14001, 97, 5, 0, 'need to open a lot ... ', 108, '0000-00-00 00:00:00', 1),
(14234, 13993, 59, 3, 0, 'Selected for IT intern Employment 5 months 6-8K then emplpyment 10-14k 10% increment every year', 104, '0000-00-00 00:00:00', 1),
(14235, 13994, 59, 5, 0, 'Fresher not much comfortable with the TxxampC will not sustain', 104, '0000-00-00 00:00:00', 1),
(14236, 13995, 59, 5, 0, 'Fresher Not Much Comfortable With The TxxampC Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14237, 13996, 59, 5, 0, 'Fresher Not Much Comfortable With The TxxampC Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14238, 13999, 97, 7, 0, 'has some exp xxamp knowledge about our products.. communication ok.. Final round interviewed by gokul and selected for Renewals.', 104, '0000-00-00 00:00:00', 1),
(14239, 13998, 59, 5, 0, ' Not Much Comfortable With The TxxampC Will Not Sustain Exp high Salary too', 104, '0000-00-00 00:00:00', 1),
(14240, 14002, 59, 3, 0, '5months intern then 3 yrs employment', 104, '0000-00-00 00:00:00', 1),
(14241, 14003, 97, 4, 0, 'fresher need to train a lot ...kindly check and update your feedback.', 104, '0000-00-00 00:00:00', 1),
(14242, 14004, 97, 4, 0, 'has exp in telecalling .. convincing skill ok ..kindly check and update your feed back..', 104, '0000-00-00 00:00:00', 1),
(14243, 14005, 97, 4, 0, 'Communication ok .... let us try check and update your feed backs..', 104, '0000-00-00 00:00:00', 1),
(14244, 14006, 97, 5, 0, 'sal expt high...not suit for our role', 104, '0000-00-00 00:00:00', 1),
(14245, 14007, 97, 5, 0, 'Not Much Good In Prog.Laug....xxampNot Ok With Our TxxampC', 104, '0000-00-00 00:00:00', 1),
(14246, 14008, 97, 5, 0, 'Not Much Good In Prog.Laug....xxampNot Ok With Our TxxampC', 104, '0000-00-00 00:00:00', 1),
(14247, 13869, 59, 1, 0, NULL, 109, '2023-08-04 06:23:02', 1),
(14248, 13869, 109, 4, 0, 'Selected in apptitude test', 109, '2023-08-04 06:23:02', 1),
(14249, 13874, 59, 1, 0, NULL, 109, '2023-08-04 06:23:31', 1),
(14250, 13874, 109, 4, 0, 'selected for apptitude test', 109, '2023-08-04 06:23:31', 1),
(14251, 13862, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:08', 1),
(14252, 13863, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:20', 1),
(14253, 13865, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:27', 1),
(14254, 13866, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:39', 1),
(14255, 13868, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:46', 1),
(14256, 13873, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:24:58', 1),
(14257, 13878, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:25:06', 1),
(14258, 13879, 109, 5, 0, 'Not Selectedc For Apptitude Test', 109, '2023-08-04 06:25:19', 1),
(14259, 14005, 98, 7, 0, 'RENEWALS OK .KINDLY CHECK THE SUSTAINABLILITY .OK WILL TRY', 97, '2023-08-05 03:45:17', 1),
(14260, 14003, 89, 1, 0, NULL, 97, '2023-08-05 03:50:05', 1),
(14261, 14018, 97, 4, 0, 'has exp in calling ..let us try kindly check and update your inputs..', 104, '0000-00-00 00:00:00', 1),
(14262, 14005, 59, 1, 0, NULL, 98, '2023-08-05 04:00:10', 1),
(14263, 14009, 97, 4, 0, 'has 4yrs 6m of exp in telecalling in part time 50-50 profile ...she plan to do her higher studies too ..kindly check and update your feedback.', 104, '0000-00-00 00:00:00', 1),
(14264, 14010, 97, 5, 0, 'for a time being... looking for job', 104, '0000-00-00 00:00:00', 1),
(14265, 14012, 97, 5, 0, '50 -50 profile . little attitude.. sustainbility doubts..', 104, '0000-00-00 00:00:00', 1),
(14266, 14013, 97, 5, 0, 'She is From Thanjavur...For a time being looking for job in chennai.', 104, '0000-00-00 00:00:00', 1),
(14267, 14014, 97, 7, 0, 'Has some knowledge in our proudcts... let us try for our role Final round interviewed by gokul and selected for Renewals.', 104, '0000-00-00 00:00:00', 1),
(14268, 14016, 97, 5, 0, 'not much good in prog .lau.. he wants to discuss with his parent ..if he come back let us try', 104, '0000-00-00 00:00:00', 1),
(14269, 14017, 97, 7, 0, 'Has knowledge in prog lau. SNR interviewd by tamilmani and final round interview by gokul ', 104, '0000-00-00 00:00:00', 1),
(14270, 14019, 97, 5, 0, 'not much good in prog.laug....xxampnot ok with our txxampc', 104, '0000-00-00 00:00:00', 1),
(14271, 14020, 97, 4, 0, 'Has 6m of exp in sales.. job need ... kindly check her sustainbility.. xxamp update your inputs...', 104, '0000-00-00 00:00:00', 1),
(14272, 14021, 97, 5, 0, 'not suit for our roles... ', 104, '0000-00-00 00:00:00', 1),
(14273, 14022, 97, 5, 0, 'not open for sales', 104, '0000-00-00 00:00:00', 1),
(14274, 14015, 97, 5, 0, 'purely fresher .. need to train a lot .. Voice is too low .. Job need .. Final round interviewed xxamp Rejected by gokul ', 104, '0000-00-00 00:00:00', 1),
(14275, 13989, 59, 3, 0, 'Selected for Syed Team in Staff role', 57, '2023-08-07 10:33:11', 1),
(14276, 14025, 59, 5, 0, 'Communication Good Too lon Distance not open for target based job', 104, '0000-00-00 00:00:00', 1),
(14277, 14026, 59, 5, 0, '5050 Profile for sales left without attending the 2nd level interview', 104, '0000-00-00 00:00:00', 1),
(14278, 14018, 51, 4, 0, 'selected for nxt round', 97, '2023-08-08 07:25:58', 1),
(14279, 14009, 71, 5, 0, 'Not Fit For Sales', 97, '2023-08-08 07:34:55', 1),
(14280, 13999, 59, 1, 0, NULL, 97, '2023-08-08 07:42:48', 1),
(14281, 14017, 59, 1, 0, NULL, 97, '2023-08-08 10:25:04', 1),
(14282, 14044, 59, 2, 0, 'Appeared for Sales but open for IT Given time for learning if he comes back lt us try', 108, '0000-00-00 00:00:00', 1),
(14283, 14014, 59, 1, 0, NULL, 97, '2023-08-08 10:28:42', 1),
(14284, 14004, 19, 5, 1, 'rejected', 97, '2023-08-08 10:55:46', 1),
(14285, 14037, 59, 5, 0, 'Not suitable for our roles will not sustain', 104, '0000-00-00 00:00:00', 1),
(14286, 14036, 59, 3, 0, 'Selected for Operations Team Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14287, 14035, 59, 4, 0, '5050 profile fresher for our sales kindly chekc and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14288, 14030, 59, 4, 0, '5050 Profile have exp in calling but not in relevant one can give a try kindly check and let me kow your inputs', 104, '0000-00-00 00:00:00', 1),
(14289, 14032, 59, 3, 0, 'Interviewed by Gokul final round and selected for React with Intern Emplyment conditions direct reporting to Udhay\n', 104, '0000-00-00 00:00:00', 1),
(14290, 14033, 59, 3, 0, '5months intern then 3 yrs employment - React Profile', 104, '0000-00-00 00:00:00', 1),
(14291, 14034, 59, 5, 0, 'Looking only for Tier level companies with high pay', 104, '0000-00-00 00:00:00', 1),
(14292, 14029, 59, 2, 0, 'Need to come back after learning if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14293, 14027, 59, 4, 0, 'Have Exp in sales but not a relevant one can give a try kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14294, 14038, 59, 5, 0, 'looking for non voice', 104, '0000-00-00 00:00:00', 1),
(14295, 14039, 59, 5, 0, 'Candidate need time to confirm on TxxampC', 104, '0000-00-00 00:00:00', 1),
(14296, 14046, 59, 4, 0, '5050 Profile sounding need to check kindly check and let me kow your inputs', 85, '0000-00-00 00:00:00', 1),
(14297, 14040, 59, 4, 0, 'internal Reference not suitable for our roles kindly check once and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14298, 14041, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14299, 14042, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14300, 14043, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14301, 14020, 102, 7, 0, 'Shortlist for team ', 97, '2023-08-08 11:20:04', 1),
(14302, 14045, 59, 5, 0, 'Looking only for the salary not much comfort in Sales calling Holding Offer with 2 companies and looking for something more will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14303, 14048, 59, 5, 0, 'Preferred to work in non voice but no communication not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(14304, 14049, 59, 5, 0, 'Too long Distance Looking only for Senior level Profile no Relevant Exp will not sustain in our sales not suitable', 104, '0000-00-00 00:00:00', 1),
(14305, 14050, 59, 5, 0, 'for time being looking for Job Not much importance towards the jobs planning to go with own venture will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14306, 14051, 59, 5, 0, 'Not open for TxxampC No proper focus in the Career will not sustain and not suitbale', 104, '0000-00-00 00:00:00', 1),
(14307, 14052, 59, 4, 0, '5050 Profile have interest towards IT but not on coding open for other positions too kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14308, 14047, 59, 2, 0, 'Selected for Mutual fund Interviewed by Gokul and max we can offer till 2.3 LPA', 104, '0000-00-00 00:00:00', 1),
(14309, 14052, 98, 1, 0, NULL, 59, '2023-08-08 06:48:36', 1),
(14310, 14027, 31, 1, 0, NULL, 59, '2023-08-08 06:50:42', 1),
(14311, 14033, 59, 3, 0, '5months intern then 3 yrs employment - React Profile', 59, '2023-08-08 06:52:12', 1),
(14312, 14020, 60, 1, 0, NULL, 102, '2023-08-08 07:08:33', 1),
(14313, 14046, 105, 5, 0, 'DUE TO SHExquotS NOT PROPERLY ANSWERED ALSO VOICE IS VERY LOW', 59, '2023-08-08 07:09:07', 1),
(14314, 14030, 44, 1, 0, NULL, 59, '2023-08-08 07:10:33', 1),
(14315, 14035, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-08-08 07:17:01', 1),
(14316, 14040, 51, 5, 0, 'Rejected', 59, '2023-08-08 07:19:48', 1),
(14317, 14018, 29, 7, 2, 'sarath team, 20k net, in aug complet 1 lac and 5k sip increase to 22k from sept 23', 51, '2023-08-09 10:01:23', 1),
(14318, 14018, 59, 3, 0, 'Selected for Sarath Team with Commitment given by Gaurav sir', 29, '2023-08-09 10:24:11', 1),
(14319, 14056, 59, 5, 0, 'No sustainability will not handle the work pressure seems to give false information not suitable', 108, '0000-00-00 00:00:00', 1),
(14320, 14060, 59, 5, 0, 'Looking for non voice not interested on the jobs will not sustain', 108, '0000-00-00 00:00:00', 1),
(14321, 14059, 59, 5, 0, 'Looking For Accounts but no basics skills in that Not Interested On The Jobs Will Not Sustain', 108, '0000-00-00 00:00:00', 1),
(14322, 14057, 59, 3, 0, 'Selected for Charles Team Consultant Role', 108, '0000-00-00 00:00:00', 1),
(14323, 14063, 59, 5, 0, 'Left without attending the interview', 108, '0000-00-00 00:00:00', 1),
(14324, 14053, 59, 5, 0, 'Looking only for Java', 108, '0000-00-00 00:00:00', 1),
(14325, 14054, 59, 2, 0, 'Need Time to Learn if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14326, 14055, 59, 5, 0, 'No basics not much ok with TxxampC if he comes back let us try family settled in Saudi\n', 108, '0000-00-00 00:00:00', 1),
(14327, 14065, 59, 5, 0, 'Looking for high CTC already holding several offers for 4LPA 3LPA', 108, '0000-00-00 00:00:00', 1),
(14328, 14064, 59, 2, 0, 'Need time to confirm his availability may relocate to avadi', 108, '0000-00-00 00:00:00', 1),
(14329, 14066, 59, 5, 0, 'Too long Disance will not relocate sustainability dounts', 108, '0000-00-00 00:00:00', 1),
(14330, 14067, 59, 5, 0, 'to long Distance Sister in node will not relocate not comfrt in TxxampC', 108, '0000-00-00 00:00:00', 1),
(14331, 14058, 59, 5, 0, 'Will not sustain marriage fixed will not run in a long', 108, '0000-00-00 00:00:00', 1),
(14332, 14057, 102, 7, 0, 'Shortlist for team ', 59, '2023-08-09 07:23:00', 1),
(14333, 14057, 59, 3, 0, 'Selected for Charles Team Consultant Role', 102, '2023-08-10 11:15:56', 1),
(14334, 14080, 59, 5, 0, 'Not open for TxxampC', 104, '0000-00-00 00:00:00', 1),
(14335, 14071, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14336, 14079, 59, 5, 0, 'Attitude will not sustain not suitbale', 104, '0000-00-00 00:00:00', 1),
(14337, 14077, 59, 5, 0, 'he is medically unstable will not sustain', 104, '0000-00-00 00:00:00', 1),
(14338, 14076, 59, 5, 0, 'Need tp come after learning', 104, '0000-00-00 00:00:00', 1),
(14339, 14074, 59, 5, 0, 'Looking for non voice only', 104, '0000-00-00 00:00:00', 1),
(14340, 13974, 59, 5, 0, 'Need time to confirm on TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14341, 14072, 59, 5, 0, 'Salary Exp is very high will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14342, 13973, 59, 5, 0, 'Not much comfort in Bond', 104, '0000-00-00 00:00:00', 1),
(14343, 14069, 59, 4, 0, 'Much Preferred non voice but internal reference kindly check', 104, '0000-00-00 00:00:00', 1),
(14344, 14070, 59, 5, 0, 'Looking for Accounts and for Voice not mcuh comfort', 104, '0000-00-00 00:00:00', 1),
(14345, 14078, 59, 4, 0, '5050 Profile have exp in calling internal team reference kindly chek and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14346, 14069, 53, 1, 0, NULL, 59, '2023-08-10 07:36:29', 1),
(14347, 14078, 29, 1, 0, NULL, 59, '2023-08-10 07:42:20', 1),
(14348, 14091, 59, 5, 0, 'No basic skills will not sustain in our roles not much comfrt in TxxampC', 108, '0000-00-00 00:00:00', 1),
(14349, 14095, 59, 5, 0, 'Communication Good Have Expin Backend operations but the sustainability doubts checked with Gokul sir and rejected the profile', 108, '0000-00-00 00:00:00', 1),
(14350, 14092, 59, 5, 0, 'Too long Distance not open to relocate will not sustain', 108, '0000-00-00 00:00:00', 1),
(14351, 14093, 59, 5, 0, 'Not open for TxxampC will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(14352, 14088, 59, 5, 0, 'Fresher for our domain have exp in core but the salary exp is very high min 3LPA', 108, '0000-00-00 00:00:00', 1),
(14353, 14090, 59, 4, 0, 'Fresher communication Ok Sustainability doubts she was into Dance and wall painting need to check her sustainability kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14354, 14094, 59, 5, 0, 'Looking only for Java Developer Role', 108, '0000-00-00 00:00:00', 1),
(14355, 14089, 59, 4, 0, '5050 Profile Have a week exp in calling kindly check and let us know ', 108, '0000-00-00 00:00:00', 1),
(14356, 14086, 59, 4, 0, '5050 Profile Have A Week Exp In Calling Kindly Check And Let Us Know ', 108, '0000-00-00 00:00:00', 1),
(14357, 14085, 59, 3, 0, 'Selected for shanmugam sir Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(14358, 14084, 59, 5, 0, 'No ideas in skills not open up will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14359, 14083, 59, 5, 0, 'No ideas in Javascript need time to learn if she comes back after learning need to check', 108, '0000-00-00 00:00:00', 1),
(14360, 14087, 59, 5, 0, 'Married Long career Gap will not sustain and handle the work pressure ', 108, '0000-00-00 00:00:00', 1),
(14361, 14097, 107, 7, 0, 'Good communication...Fit for our role..final round interviewed by gokul...selected for hR internship', 108, '0000-00-00 00:00:00', 1),
(14362, 14098, 107, 5, 0, 'Not knowing Basics....Will not sustain', 108, '0000-00-00 00:00:00', 1),
(14363, 14099, 107, 5, 0, 'fresher..Not opening up...poor communication skills', 108, '0000-00-00 00:00:00', 1),
(14364, 14100, 107, 4, 0, 'good communication...Good convincing skills...Not relevant experience', 108, '0000-00-00 00:00:00', 1),
(14365, 14102, 107, 5, 0, 'Not active...Career gap...Not suitable for our role ', 108, '0000-00-00 00:00:00', 1),
(14366, 14101, 107, 5, 0, 'good communication...career gap of 6 years...will not sustain in the long run', 108, '0000-00-00 00:00:00', 1),
(14367, 14090, 53, 1, 0, NULL, 59, '2023-08-12 05:01:20', 1),
(14368, 14089, 53, 1, 0, NULL, 59, '2023-08-12 05:13:59', 1),
(14369, 14086, 53, 1, 0, NULL, 59, '2023-08-12 05:14:22', 1),
(14370, 14085, 44, 7, 4, 'Candidate ok please do the further process', 59, '2023-08-12 05:32:31', 1),
(14371, 14103, 97, 5, 0, 'over attitude.. holding offer 3lpa', 108, '0000-00-00 00:00:00', 1),
(14372, 14104, 97, 5, 0, 'verbal comm..good... has exp in freelancing...written ok ...', 108, '0000-00-00 00:00:00', 1),
(14373, 14100, 44, 1, 0, NULL, 107, '2023-08-12 06:14:55', 1),
(14374, 14097, 59, 3, 0, 'Selected for Recruitment intern 1st month free then based onthe performance will pay and we may onboard after 3 months', 107, '2023-08-12 06:25:39', 1),
(14375, 14110, 59, 5, 0, 'Not Good with the JS basics not much comfort in TxxampC Came as a group and sustainability doubts', 85, '0000-00-00 00:00:00', 1),
(14376, 14111, 59, 5, 0, 'Not Good With The JS Basics Not Much Comfort In TxxampC Came As A Group And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(14377, 14108, 59, 5, 0, 'Not Good With The JS Basics Not Much Comfort In TxxampC Came As A Group And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(14378, 14107, 59, 5, 0, 'Not Good With The JS Basics Not Much Comfort In TxxampC Came As A Group And Sustainability Doubts looking much for AWS', 85, '0000-00-00 00:00:00', 1),
(14379, 14109, 59, 5, 0, 'Left without attending', 85, '0000-00-00 00:00:00', 1),
(14380, 14106, 59, 5, 0, 'Not Good With The JS Basics Not Much Comfort In TxxampC Came As A Group And Sustainability Doubts if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(14381, 14085, 60, 1, 0, NULL, 44, '2023-08-16 10:23:44', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(14382, 13987, 60, 1, 0, NULL, 31, '2023-08-16 10:26:32', 1),
(14383, 14124, 74, 5, 0, 'expected high and not profile not fit for sales', 108, '0000-00-00 00:00:00', 1),
(14384, 14122, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(14385, 14114, 74, 5, 0, 'to long gap and not fit for team and sales', 108, '0000-00-00 00:00:00', 1),
(14386, 14126, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(14387, 14125, 59, 5, 0, 'Too long Distance Very slow will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14388, 14127, 59, 5, 0, 'No Sustainability looking only for Salary will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14389, 14119, 59, 4, 0, 'Not much good profile internal team reference kindly check and let me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(14390, 14118, 59, 5, 0, 'Not so good wiht the basics in Digital MArketing not open for long Run and focus only in the salary', 104, '0000-00-00 00:00:00', 1),
(14391, 14117, 59, 5, 0, 'Communication Ok Can be trained in our roles but too long distance up and down 80kms will not sustain', 104, '0000-00-00 00:00:00', 1),
(14392, 14126, 57, 7, 0, 'Ok for DM profile Can give a try', 59, '2023-08-16 07:18:16', 1),
(14393, 14119, 57, 1, 0, NULL, 59, '2023-08-16 07:25:29', 1),
(14394, 14126, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2023-08-17 10:04:15', 1),
(14395, 14135, 59, 5, 0, 'Left Without Attending The Interview', 108, '0000-00-00 00:00:00', 1),
(14396, 14151, 59, 5, 0, 'Left without attending the interview', 108, '0000-00-00 00:00:00', 1),
(14397, 14145, 59, 5, 0, 'Looking for Testing Role only slight ok for sales if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14398, 14152, 59, 5, 0, 'Left Without Attending The Interview', 108, '0000-00-00 00:00:00', 1),
(14399, 14147, 59, 2, 0, 'Communication Ok Have Exp in Sales bit Attitude Sustainability doubts in our roles need to check based on the manager availability', 108, '0000-00-00 00:00:00', 1),
(14400, 14143, 59, 5, 0, 'Left Without Attending The Interview', 104, '0000-00-00 00:00:00', 1),
(14401, 14134, 59, 5, 0, 'very slow no sustainability in his previous exp will not handle the pressure', 104, '0000-00-00 00:00:00', 1),
(14402, 14142, 59, 5, 0, 'Have Exp in calling Communication Ok can be trained in our roles asked her to come after lunch but she didnt', 108, '0000-00-00 00:00:00', 1),
(14403, 14141, 59, 5, 0, 'Looking only for Python and not open fr TxxampC settled family and not much importance on the job', 104, '0000-00-00 00:00:00', 1),
(14404, 14128, 59, 4, 0, '5050 Profile Seems not much active but have 2 yrs exp in calling kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14405, 14136, 59, 5, 0, 'Lookin for non voice need to open a lot will not sustain', 104, '0000-00-00 00:00:00', 1),
(14406, 14139, 59, 2, 0, 'communication Ok But need to check for Operations will check with Gokul and confirm the profiles', 108, '0000-00-00 00:00:00', 1),
(14407, 14132, 59, 5, 0, 'Not Open For TxxampC Too Long Distance Will Not Sustain Came Along Wiht The Friends Not Good In Basics', 104, '0000-00-00 00:00:00', 1),
(14408, 14133, 59, 5, 0, 'Not Open For TxxampC Too Long Distance Will Not Sustain Came Along Wiht The Friends Not Good In Basics', 104, '0000-00-00 00:00:00', 1),
(14409, 14130, 59, 5, 0, 'Not open for TxxampC too long Distance will not sustain came along wiht the friends not good in basics', 104, '0000-00-00 00:00:00', 1),
(14410, 14140, 59, 5, 0, 'Communication Sounding is not good will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14411, 14149, 59, 5, 0, 'Much focus on non voice internal reference from Banu team not suitable for our roles ', 104, '0000-00-00 00:00:00', 1),
(14412, 14148, 59, 5, 0, 'Very high Exp he had an offer with Honeywell for 8.4LPA due to recession it was dropped and he was expecting something similar\n', 104, '0000-00-00 00:00:00', 1),
(14413, 14138, 109, 5, 0, 'Failed in Aptitude', 104, '0000-00-00 00:00:00', 1),
(14414, 14137, 109, 5, 0, 'Failed in Apptitude', 104, '0000-00-00 00:00:00', 1),
(14415, 14150, 59, 5, 0, 'Sounding Low too long Distance Need to come back with his confirmation on TxxampC', 104, '0000-00-00 00:00:00', 1),
(14416, 14128, 44, 1, 0, NULL, 59, '2023-08-17 07:15:14', 1),
(14417, 14160, 59, 5, 0, 'Fresher no basics skills will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14418, 14163, 59, 5, 0, 'Fresher not much comfrt in TxxampC will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14419, 14157, 59, 5, 0, 'Hearning issue understanding pooor will not sustain and not suitable ', 104, '0000-00-00 00:00:00', 1),
(14420, 14164, 59, 2, 0, 'Need To Come Back With His Confirmation Open For Non IT Positions Discussed For Our Operations Need To Come Back With Her Confirmation ', 104, '0000-00-00 00:00:00', 1),
(14421, 14162, 59, 5, 0, 'No local language only telugu Fresher need to learn a lot need confirmation on TxxampC if he come back let us try', 104, '0000-00-00 00:00:00', 1),
(14422, 14165, 59, 2, 0, 'Need to come back with his confirmation open for non IT positions discussed for our operations need to come back with her confirmation ', 104, '0000-00-00 00:00:00', 1),
(14423, 14161, 59, 4, 0, 'Have basics skill in MySQL open for PHP learning open for TxxampC kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14424, 14167, 59, 5, 0, 'Too long Distance Will relocate to mylapre after 3 months if he comes at that time let us check last year 2022 alos he attended', 104, '0000-00-00 00:00:00', 1),
(14425, 14166, 59, 2, 0, 'Given Task for UI UX long back attended interview fresher at the time now exp in front end with the pay 25K', 104, '0000-00-00 00:00:00', 1),
(14426, 14161, 27, 1, 0, NULL, 59, '2023-08-18 07:05:57', 1),
(14427, 14154, 59, 5, 0, 'Left without attending\n', 85, '0000-00-00 00:00:00', 1),
(14428, 14171, 59, 4, 0, '5050 Profile LLB graduate not intetsted in that sustainanbility doubts kindly check and let me know your interst', 108, '0000-00-00 00:00:00', 1),
(14429, 14188, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14430, 14187, 59, 5, 0, 'too long Distance will not sustain and not suitabe', 104, '0000-00-00 00:00:00', 1),
(14431, 14185, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14432, 14183, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14433, 14184, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14434, 14180, 59, 3, 0, 'Selected for Charles Team Staff Role', 104, '0000-00-00 00:00:00', 1),
(14435, 14182, 59, 5, 0, 'Not open for target based job', 104, '0000-00-00 00:00:00', 1),
(14436, 14181, 59, 5, 0, 'Communication Good age 33yrs Pressure handling doubts will not sustain', 104, '0000-00-00 00:00:00', 1),
(14437, 14179, 59, 2, 0, 'HR Intern Exp Stipend pay one year class to go', 104, '0000-00-00 00:00:00', 1),
(14438, 14177, 59, 5, 0, 'Much preferred for Non Voice will not sustain his friends got selected in DM roles', 104, '0000-00-00 00:00:00', 1),
(14439, 14176, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14440, 14175, 59, 5, 0, 'Need Time To Confirm On The TxxampC Not Much Strong In Basics If He Comes Back After Learning Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14441, 14174, 59, 5, 0, 'need time to confirm on the TxxampC not much strong in basics if he comes back after learning let us try', 104, '0000-00-00 00:00:00', 1),
(14442, 14173, 59, 5, 0, 'Have Exposure in data analysis and sustainability doubts in our roles His Exp is high\n', 104, '0000-00-00 00:00:00', 1),
(14443, 14178, 59, 3, 0, 'Selected for Charles tEam Staff Role', 104, '0000-00-00 00:00:00', 1),
(14444, 14158, 59, 3, 0, 'Selected for Syed Team in Staff ROle', 104, '0000-00-00 00:00:00', 1),
(14445, 14158, 57, 4, 0, 'Candidate is ok, Please confirm the joing', 59, '2023-08-19 05:35:32', 1),
(14446, 14178, 102, 7, 0, 'Shortlist for team ', 59, '2023-08-19 05:37:24', 1),
(14447, 14180, 102, 7, 0, 'Shortlist For Team ', 59, '2023-08-19 05:38:43', 1),
(14448, 14171, 19, 5, 1, 'not intrest in sales', 59, '2023-08-19 05:41:39', 1),
(14449, 14178, 60, 1, 0, NULL, 102, '2023-08-19 05:41:52', 1),
(14450, 14180, 60, 1, 0, NULL, 102, '2023-08-19 05:42:06', 1),
(14451, 14208, 59, 5, 0, 'Duplicate Profile', 108, '0000-00-00 00:00:00', 1),
(14452, 14186, 59, 5, 0, 'Mentioned Exp having attitude too scheduled him for the 2nd level but left without attending', 108, '0000-00-00 00:00:00', 1),
(14453, 14155, 59, 5, 0, 'Not suitable for Callings will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14454, 14156, 59, 5, 0, 'Looking only for Operations 6 months Exp in Kotak with 4LPA not open much to come down will not sustain', 104, '0000-00-00 00:00:00', 1),
(14455, 14198, 59, 5, 0, 'Checked for Mutual Fund Final Round with Sarath and based on his input got rejected', 104, '0000-00-00 00:00:00', 1),
(14456, 14200, 59, 3, 0, 'Selected for Kannan Team in Staff Role\n', 104, '0000-00-00 00:00:00', 1),
(14457, 14192, 59, 3, 0, 'Selected for Renewals have exp in collections calling and a career Gap she has good in communication.Need to share her exp documents', 104, '0000-00-00 00:00:00', 1),
(14458, 14191, 59, 4, 0, '5050 Profile have Calling Exp but in native open to relocate can give a try kindly check and let me know your inputs sir check for shanmugam sir as he is not available', 104, '0000-00-00 00:00:00', 1),
(14459, 14199, 59, 5, 0, 'Attitude Candidate Too long Distance having lot of personal issue will not focus in the work and also sustainability doubts asked him to come for 2nnd round post lunch but he left', 104, '0000-00-00 00:00:00', 1),
(14460, 14189, 59, 5, 0, 'Moved for 2nd level with Kannan,but left wothout attending the interview ', 104, '0000-00-00 00:00:00', 1),
(14461, 14212, 59, 5, 0, 'Attitude candidate mentioned exp relevant to us but no documents and the information what he give is not getting matched with the resume seems to be fake not suitable for our process and will not sustain', 104, '0000-00-00 00:00:00', 1),
(14462, 14205, 59, 5, 0, 'Not much confort in TxxampC Need to learn a lot if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14463, 14206, 59, 5, 0, 'evry 6 months Job changes will not sustain and will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14464, 14201, 59, 4, 0, 'Internal Reference Long career Gap fresher not much suitable 2nd round interviewed by santhosh in your absence kindly check', 104, '0000-00-00 00:00:00', 1),
(14465, 14196, 59, 5, 0, 'Not open for Field Sales Checked for Backend operations but not a quality for that and salary also high for backend', 104, '0000-00-00 00:00:00', 1),
(14466, 14207, 59, 5, 0, 'Will not sustain Frequent job changes will not sustain not a good quality profile', 104, '0000-00-00 00:00:00', 1),
(14467, 14158, 59, 3, 0, 'Selected for Syed Team in Staff ROle', 57, '2023-08-21 05:18:12', 1),
(14468, 14131, 56, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14469, 14203, 59, 5, 0, 'Left Without Attending', 104, '0000-00-00 00:00:00', 1),
(14470, 14194, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14471, 14201, 86, 5, 0, 'Not Satisfied', 59, '2023-08-22 10:03:33', 1),
(14472, 14200, 19, 7, 5, 'Good confidence Level', 59, '2023-08-22 10:19:20', 1),
(14473, 14191, 31, 1, 0, NULL, 59, '2023-08-22 10:22:13', 1),
(14474, 14200, 59, 3, 0, 'Selected for Kannan Team in Staff Role\n', 19, '2023-08-22 01:09:38', 1),
(14475, 14234, 59, 5, 0, 'Looking For Non Voice', 104, '0000-00-00 00:00:00', 1),
(14476, 14215, 59, 5, 0, 'Not open for Field Communication no not suitable', 104, '0000-00-00 00:00:00', 1),
(14477, 14230, 59, 5, 0, 'Looking For Non Voice', 104, '0000-00-00 00:00:00', 1),
(14478, 14219, 59, 5, 0, 'Will not sustain not suitable up and down 40kms', 104, '0000-00-00 00:00:00', 1),
(14479, 14222, 59, 5, 0, 'Looking for non voice', 104, '0000-00-00 00:00:00', 1),
(14480, 14226, 59, 5, 0, 'Looking for non voice process ', 104, '0000-00-00 00:00:00', 1),
(14481, 14220, 59, 5, 0, 'Too long Distance will not sustain\n', 104, '0000-00-00 00:00:00', 1),
(14482, 14195, 59, 3, 0, 'Selected for Gopi Team in Consultant role', 104, '0000-00-00 00:00:00', 1),
(14483, 14221, 59, 3, 0, 'SElected for Kannan Team Stff Role', 104, '0000-00-00 00:00:00', 1),
(14484, 14225, 59, 4, 0, 'Fresher for our roles can be trained in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14485, 14214, 59, 2, 0, 'Selected for Operations team for 1.8LPA', 104, '0000-00-00 00:00:00', 1),
(14486, 14204, 59, 3, 0, 'Selected for GK Sir Team\nin consultant Role', 104, '0000-00-00 00:00:00', 1),
(14487, 14217, 59, 3, 0, 'Selected for Shanmugam Team in ConsultantRole', 104, '0000-00-00 00:00:00', 1),
(14488, 14223, 59, 5, 0, 'Will Not Sustain And Not Suitable For Our Roles', 104, '0000-00-00 00:00:00', 1),
(14489, 14224, 59, 5, 0, 'Will not sustain and not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(14490, 14209, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14491, 14229, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14492, 14213, 59, 5, 0, 'Not Open For TxxampC No Basic Skills\n', 104, '0000-00-00 00:00:00', 1),
(14493, 14218, 59, 5, 0, 'Not open for TxxampC no basic skills\n', 104, '0000-00-00 00:00:00', 1),
(14494, 14231, 59, 5, 0, 'Not Open For TxxampC No Basic Skills\n', 104, '0000-00-00 00:00:00', 1),
(14495, 14204, 29, 7, 3, 'gk team, have approved 15k salary, in 90 days , if completed 3 lac life ( 1 Lac Ave ) xxamp 25 appts we can increase salary to 20k net post confirmation ', 59, '2023-08-22 07:49:08', 1),
(14496, 14195, 105, 7, 0, 'Selected for my team', 59, '2023-08-22 07:50:30', 1),
(14497, 14225, 19, 5, 1, 'low', 59, '2023-08-22 07:54:56', 1),
(14498, 14217, 29, 7, 3, 'shanmugam Team, Have Approved 15k Salary, In 90 Days , If Completed 3 Lac Life ( 1 Lac Ave ) xxamp 25 Appts We Can Increase Salary To 20k Net Post Confirmation ', 59, '2023-08-22 07:55:37', 1),
(14499, 14221, 19, 7, 4, 'Selected', 59, '2023-08-22 08:05:29', 1),
(14500, 14238, 59, 3, 0, 'Selected for Syed Team Consultant tole', 101, '0000-00-00 00:00:00', 1),
(14501, 14237, 59, 5, 0, 'Fresher for our roles will not handle our work roles not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(14502, 14251, 59, 5, 0, 'Not Open For Sales Much Will Not Sustain Not Suitable', 108, '0000-00-00 00:00:00', 1),
(14503, 14247, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14504, 14248, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14505, 14253, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14506, 14228, 59, 5, 0, 'Very High CTC Holding Several offers will not sustain in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(14507, 14239, 59, 5, 0, 'Looking only for AR caller based profiles', 108, '0000-00-00 00:00:00', 1),
(14508, 14240, 59, 5, 0, 'Looking for non voice only not suitable', 108, '0000-00-00 00:00:00', 1),
(14509, 14246, 59, 5, 0, 'Looking For Non Voice Only Not Suitable', 108, '0000-00-00 00:00:00', 1),
(14510, 14241, 59, 5, 0, 'Not open for Sales much will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(14511, 14245, 59, 5, 0, 'Not Open For Sales Much Will Not Sustain Not Suitable', 108, '0000-00-00 00:00:00', 1),
(14512, 14243, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14513, 14242, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14514, 14244, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14515, 14233, 59, 5, 0, 'Not much preferred to work in target will not sustain and handle our work pressure ', 108, '0000-00-00 00:00:00', 1),
(14516, 14249, 59, 3, 0, 'Selected for Staff Role Santhosh Team', 108, '0000-00-00 00:00:00', 1),
(14517, 14252, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14518, 14204, 59, 3, 0, 'Selected for GK Sir Team\nin consultant Role', 29, '2023-08-23 05:20:40', 1),
(14519, 14217, 59, 3, 0, 'Selected for Shanmugam Team in ConsultantRole', 29, '2023-08-23 05:21:30', 1),
(14520, 14195, 59, 3, 0, 'Selected for Gopi Team in Consultant role', 105, '2023-08-24 10:11:59', 1),
(14521, 14255, 59, 4, 0, 'Fresher can be trained kindly chekc and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14522, 14261, 59, 4, 0, '5050 Profile Sustainability doubt but half mind on this profile kindly check and let me know your inputs', 101, '0000-00-00 00:00:00', 1),
(14523, 14260, 59, 5, 0, 'Will not sustain fresher for our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14524, 14256, 59, 5, 0, 'Looking for non voice process', 104, '0000-00-00 00:00:00', 1),
(14525, 14258, 59, 5, 0, 'No basics not open for TxxampC will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14526, 14259, 59, 5, 0, 'Not much Quality will not sustain in our role not suitable', 104, '0000-00-00 00:00:00', 1),
(14527, 14250, 59, 5, 0, 'Not suitable for our roles will not sustain and handle our pressure', 104, '0000-00-00 00:00:00', 1),
(14528, 14262, 59, 3, 0, 'Selected for Charles Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14529, 14267, 59, 5, 0, 'Fresher for our roles have exp in non voice night shift and salary exp is min27 and not ready to come down', 104, '0000-00-00 00:00:00', 1),
(14530, 14257, 59, 5, 0, 'Looking for non voice only\n', 104, '0000-00-00 00:00:00', 1),
(14531, 14255, 53, 1, 0, NULL, 59, '2023-08-24 08:43:00', 1),
(14532, 14261, 105, 5, 0, 'Rejected Due To Pronunsation Issue', 59, '2023-08-25 01:52:54', 1),
(14533, 14263, 97, 5, 0, 'Worked As A HR Executive Past Few Months ... Ready To Work As Telecaller But Long Run Doubts', 104, '0000-00-00 00:00:00', 1),
(14534, 14264, 97, 5, 0, 'Focusing on python developer ...for a time being looking job ', 104, '0000-00-00 00:00:00', 1),
(14535, 14265, 97, 5, 0, 'For a time being looking job in nON-IT... ', 104, '0000-00-00 00:00:00', 1),
(14536, 14273, 97, 5, 0, 'Holding offer 33k in non -it... but looking for IT not much good in prog.lau.... will not sustain in our role', 104, '0000-00-00 00:00:00', 1),
(14537, 14266, 97, 5, 0, 'Worked as a HR Executive past few months ... ready to work as telecaller but long run doubts', 104, '0000-00-00 00:00:00', 1),
(14538, 14272, 97, 5, 0, 'focusing on IT... For a time being looking for job ', 104, '0000-00-00 00:00:00', 1),
(14539, 14271, 97, 5, 0, 'childish behavior... voice too low...', 104, '0000-00-00 00:00:00', 1),
(14540, 14270, 97, 5, 0, 'No stability ... sustainbilityxxamp Pressure handling \n doubts', 104, '0000-00-00 00:00:00', 1),
(14541, 14269, 97, 5, 0, 'Seems like no job need...Not suit for role sustainbility xxamp pressure handling Doubts.. ', 104, '0000-00-00 00:00:00', 1),
(14542, 14268, 97, 4, 0, '50-50 profile has calling xxamp Field exp one yr ... pronunciation problem kindly check and update your feedback', 104, '0000-00-00 00:00:00', 1),
(14543, 14274, 97, 5, 0, 'commu . good ..... pressure handling doubts...not openUP for sales', 104, '0000-00-00 00:00:00', 1),
(14544, 14275, 97, 5, 0, 'not much Knowledege in MF ...', 104, '0000-00-00 00:00:00', 1),
(14545, 14276, 97, 5, 0, 'Frequent job changes xxamp sal expt high', 104, '0000-00-00 00:00:00', 1),
(14546, 14268, 105, 5, 0, 'Pronunciation issue also health issue sustain problem', 97, '2023-08-25 06:17:43', 1),
(14547, 14172, 97, 5, 0, 'Frequent job changes...will not suit for our roles', 108, '0000-00-00 00:00:00', 1),
(14548, 14282, 59, 5, 0, 'Not open for TxxampC if he come back after learning let us try', 108, '0000-00-00 00:00:00', 1),
(14549, 14285, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14550, 14286, 59, 3, 0, 'Selected for Intern Employment Node Uday Team', 108, '0000-00-00 00:00:00', 1),
(14551, 14289, 97, 5, 0, 'not suit for our role', 108, '0000-00-00 00:00:00', 1),
(14552, 14291, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14553, 14292, 59, 5, 0, 'Not Open For TxxampC If He Come Back After Learning Let Us Try', 108, '0000-00-00 00:00:00', 1),
(14554, 14293, 59, 5, 0, 'Not open for TxxampC holding several offers will not sustain', 108, '0000-00-00 00:00:00', 1),
(14555, 14294, 97, 5, 0, 'Sustainability doubts .', 108, '0000-00-00 00:00:00', 1),
(14556, 14295, 97, 5, 0, 'Attitude issue.. will not suit for our role..', 108, '0000-00-00 00:00:00', 1),
(14557, 14262, 60, 1, 0, NULL, 102, '2023-08-26 05:40:47', 1),
(14558, 14221, 59, 3, 0, 'SElected for Kannan Team Stff Role', 19, '2023-08-26 05:58:15', 1),
(14559, 14238, 57, 7, 0, 'Quality wise good,communication and product ok ', 59, '2023-08-28 09:55:07', 1),
(14560, 14238, 59, 3, 0, 'Selected for Syed Team Consultant tole', 57, '2023-08-28 10:01:23', 1),
(14561, 14300, 59, 4, 0, '5050 profile Sustainability seems to be doubt in our roles need to check from your end kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14562, 14297, 59, 2, 0, 'Communication Ok But need to be trained in our roles fresher 5050 need to check with Gokul for operations', 101, '0000-00-00 00:00:00', 1),
(14563, 14301, 59, 5, 0, 'Attitude Will not sustain in our roles not suitable holding an offer for 5.8 LPA', 104, '0000-00-00 00:00:00', 1),
(14564, 14302, 59, 3, 0, 'Selected for Manikandan Team in Staff ROle Good In Communication Can Be Trained In Our Roles Have Exp In Calling Kindly Check Andlet Me Know Your Inputs', 104, '0000-00-00 00:00:00', 1),
(14565, 14300, 44, 1, 0, NULL, 59, '2023-08-28 07:38:06', 1),
(14566, 14302, 18, 7, 0, 'Asking 4.8L CTC Can give as Mani RM count is less and the candidate quality is good and his overall interview perfomance was good and immed Joiner', 59, '2023-08-28 07:39:48', 1),
(14567, 14249, 18, 7, 0, 'Need to Negotiate Salary Selected for Santosh team and need to filter in 1st week', 59, '2023-08-29 10:12:57', 1),
(14568, 14309, 74, 5, 0, 'not fit for team and no exposure and no pressure handling', 85, '0000-00-00 00:00:00', 1),
(14569, 14308, 59, 2, 0, 'Communicaiton Average Sustainability Ok Should check with Gokul and confirm for operations\n', 108, '0000-00-00 00:00:00', 1),
(14570, 14307, 59, 5, 0, 'should come after learning', 104, '0000-00-00 00:00:00', 1),
(14571, 14306, 59, 3, 0, 'Selected for Kannan Team in Staff role', 104, '0000-00-00 00:00:00', 1),
(14572, 14310, 59, 2, 0, 'Shouldcome for Operations Thurday have exp in operation can be trained in our roles ', 104, '0000-00-00 00:00:00', 1),
(14573, 14311, 59, 5, 0, 'Need to come back woth his confirmation if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14574, 14169, 59, 5, 0, 'Open for operation Last drwan CTC 3.7LPA just 11 months exp not ready to come down the package', 85, '0000-00-00 00:00:00', 1),
(14575, 14306, 19, 7, 4, 'Selected', 59, '2023-08-29 07:15:52', 1),
(14576, 14303, 59, 2, 0, 'Should come for F2F thursay with Gokul for Operation role can be trained in our roles', 85, '0000-00-00 00:00:00', 1),
(14577, 14304, 59, 4, 0, '5050 Prfle have exp in calling kindly chekc an delt meknow your inputs', 85, '0000-00-00 00:00:00', 1),
(14578, 14304, 19, 5, 1, 'Not fit for sales', 59, '2023-08-29 07:19:37', 1),
(14579, 14306, 59, 3, 0, 'Selected for Kannan Team in Staff role', 19, '2023-08-30 10:52:53', 1),
(14580, 14316, 74, 7, 0, 'he is ok with the profile ready to join immediately....already worked in byjus as a educational counsellor in training.....expected 15k and negotiated to 12k ...yuvarani and banumam referance ....have laptop ....father is a driver and ready to join..kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(14581, 14305, 74, 5, 0, 'expectaion is high and not fit for team....purely expected accounts department sales is partially for just looking for a office environment ', 85, '0000-00-00 00:00:00', 1),
(14582, 14316, 59, 3, 0, 'Selected for Sithy Team Consultant Role', 74, '2023-08-30 01:19:41', 1),
(14583, 14313, 59, 3, 0, 'Selected for Syed Team in consultant role', 108, '0000-00-00 00:00:00', 1),
(14584, 14318, 59, 5, 0, 'Frehsr need ti open a lot will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14585, 14317, 59, 5, 0, 'Attitude will not sustain in our roles not open for TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14586, 14314, 59, 5, 0, 'Frequet job changes will not sustain in our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14587, 14320, 30, 7, 3, 'Confirm CTC and joining ', 104, '0000-00-00 00:00:00', 1),
(14588, 14278, 59, 4, 0, 'Not a relevant Profile internal reference cum recruiter schedule have exp in different domain kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14589, 14278, 71, 5, 0, 'Not Fit For Sales', 59, '2023-08-30 07:38:54', 1),
(14590, 14313, 57, 7, 0, 'candidate is ok pls move', 59, '2023-08-30 07:39:52', 1),
(14591, 14327, 59, 5, 0, 'No basics Need to learn a lot if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14592, 14328, 59, 5, 0, 'Not Suitable for Renewals calls not open for Sales too ', 108, '0000-00-00 00:00:00', 1),
(14593, 14322, 59, 5, 0, 'Not suitbable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(14594, 14323, 59, 5, 0, 'Not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(14595, 14326, 59, 5, 0, ' no understanding will not sustain in our roles Career Gap not suitable', 108, '0000-00-00 00:00:00', 1),
(14596, 14321, 59, 5, 0, 'Fresher for MIS Renewals not open for Sales Salary exp is high in Renewals mis will not sutain and handle the work pressure', 108, '0000-00-00 00:00:00', 1),
(14597, 14324, 59, 5, 0, ' Need To Learn A Lot If He Comes Back Let Us Try Not much comfort in TxxampC', 108, '0000-00-00 00:00:00', 1),
(14598, 14319, 59, 5, 0, 'Need to open a lot will not sustain and handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14599, 14320, 60, 1, 0, NULL, 30, '2023-08-31 06:45:08', 1),
(14600, 14330, 59, 3, 0, 'Selected for Gopinath team in Staff Role', 104, '0000-00-00 00:00:00', 1),
(14601, 14332, 59, 4, 0, 'Have Exp in calling but sustainability doubts as she is getting married in few more months 5050 kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14602, 14333, 59, 2, 0, '5050 profile need to come back for the final round with Sales manager and the ARea Manager', 104, '0000-00-00 00:00:00', 1),
(14603, 14330, 105, 7, 0, 'CANDIATE IS OK ALSO PRONUNCATION IS WELL BUT NEED TO TRAIN FROM SCRATCH', 59, '2023-09-01 03:48:41', 1),
(14604, 14332, 105, 5, 0, 'Excepted High Salary', 59, '2023-09-01 03:59:03', 1),
(14605, 14334, 59, 5, 0, 'Not Open For Sales Much Will Not Sustain not open to take work pressure Not Suitable', 104, '0000-00-00 00:00:00', 1),
(14606, 14338, 74, 5, 0, 'NOT FIT FOR TELESALES AND AVE NO DISCIPLINE', 85, '0000-00-00 00:00:00', 1),
(14607, 14339, 74, 7, 0, 'REFERRED BY : BALA SUNDAR,\nalready worked in MLM based company two years experince and team lead, 6 months field sales medical rep...completed be and good communication skills ,, ready to join monday...expected 18k and have laptop kindly check once and confirm', 85, '0000-00-00 00:00:00', 1),
(14608, 14339, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-09-02 01:31:52', 1),
(14609, 14330, 59, 3, 0, 'Selected for Gopinath team in Staff Role', 105, '2023-09-02 02:50:06', 1),
(14610, 14310, 59, 3, 0, 'Selected for Operations Renewals Staff Role\n', 59, '2023-09-02 04:32:47', 1),
(14611, 14337, 59, 3, 0, 'Selected for Syed Team Staff Role', 85, '0000-00-00 00:00:00', 1),
(14612, 14341, 59, 3, 0, 'Selected for renewals in Staff role final round interviewed by Gokul 12th High Graduation long career Gap ', 85, '0000-00-00 00:00:00', 1),
(14613, 14313, 59, 3, 0, 'Selected for Syed Team in consultant role', 57, '2023-09-02 05:18:15', 1),
(14614, 14337, 57, 7, 0, 'Candidate is ok pls Confirm the Joining date', 59, '2023-09-02 06:42:32', 1),
(14615, 14249, 60, 1, 0, NULL, 18, '2023-09-04 04:11:25', 1),
(14616, 14302, 60, 1, 0, NULL, 18, '2023-09-04 04:12:47', 1),
(14617, 14331, 59, 4, 0, 'Have Exp in Bank Bazaar Bihari Candidate Tamil is Ok Can be trained in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14618, 14342, 59, 4, 0, '5050 Profile Distance need to check can give a try kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14619, 14346, 59, 4, 0, 'Mentioned 2 months Exp in Calling but abscond not much suitability internal team reference Pressure hanlding doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14620, 14345, 59, 5, 0, 'Fresher long career gap no basics in JS Need to learn a lot if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14621, 14347, 59, 4, 0, 'Mentioned 2 Months Exp In Calling But Abscond Not Much Suitability Internal Team Reference Pressure Hanlding Doubts Kindly Check And Let Me Know Your Inputs', 104, '0000-00-00 00:00:00', 1),
(14622, 14348, 59, 2, 0, 'Candidate need to give his confirmation not much comfort in field sales having health issue s a lot sustainability doubts', 104, '0000-00-00 00:00:00', 1),
(14623, 14343, 59, 5, 0, 'Not suitable for MIS Final Round Gokul Reject', 104, '0000-00-00 00:00:00', 1),
(14624, 14344, 59, 5, 0, 'Fresher Pressure Handling Doubts Will not sustain and handle our work not suitable', 104, '0000-00-00 00:00:00', 1),
(14625, 14331, 44, 1, 0, NULL, 59, '2023-09-04 07:20:39', 1),
(14626, 14342, 19, 5, 1, 'Reject', 59, '2023-09-04 07:22:27', 1),
(14627, 14346, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-09-04 07:27:51', 1),
(14628, 14347, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-09-04 07:28:04', 1),
(14629, 12431, 60, 1, 0, NULL, 86, '2023-09-05 10:38:28', 1),
(14630, 14354, 59, 3, 0, 'Selected for Babu Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(14631, 14360, 59, 4, 0, 'Have months exp in calling 5050 distance need to focus kindly chekc an dlet me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(14632, 14352, 59, 5, 0, 'Frequent Job Changes will not sustain and handle our work pressure not suitable', 104, '0000-00-00 00:00:00', 1),
(14633, 14351, 59, 5, 0, 'No Clarity in her exp Will Not Sustain And Handle Our Work Pressure Not Suitable', 104, '0000-00-00 00:00:00', 1),
(14634, 14288, 59, 4, 0, '5050 Profile Have Exp in Insurance Domain but sustainability doubts married kindly check and let me kbow your inputs', 104, '0000-00-00 00:00:00', 1),
(14635, 14287, 59, 5, 0, 'Will Not Sustain And Handle Our Work Pressure Not Suitable Getting married next week', 104, '0000-00-00 00:00:00', 1),
(14636, 14355, 59, 5, 0, 'Career Gap Will Not Sustain And Handle Our Work Pressure Not Suitable no clarity', 104, '0000-00-00 00:00:00', 1),
(14637, 14359, 59, 5, 0, 'Fresher need to open up a lot Will Not Sustain And Handle Our Work Pressure Not Suitable', 104, '0000-00-00 00:00:00', 1),
(14638, 14357, 59, 3, 0, 'Selected for Babu Team in Staff Role', 104, '0000-00-00 00:00:00', 1),
(14639, 14356, 59, 3, 0, 'Selected for Operationsin Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14640, 14358, 59, 3, 0, 'Selected for Syed Team in staff Role', 104, '0000-00-00 00:00:00', 1),
(14641, 14354, 89, 7, 0, 'Selected ', 59, '2023-09-05 07:42:16', 1),
(14642, 14357, 89, 7, 0, 'Selected ', 59, '2023-09-05 07:43:12', 1),
(14643, 14358, 57, 7, 0, 'Candidate is ok', 59, '2023-09-05 07:43:52', 1),
(14644, 14360, 105, 5, 0, 'HIS GOAL IS DIFFERENT , SUSTAINABLE DOUUBT', 59, '2023-09-05 07:45:35', 1),
(14645, 14288, 86, 5, 0, 'Not Satisfied.', 59, '2023-09-05 07:47:40', 1),
(14646, 14354, 59, 3, 0, 'Selected for Babu Team in Staff Role', 89, '2023-09-06 02:56:26', 1),
(14647, 14357, 59, 3, 0, 'Selected for Babu Team in Staff Role', 89, '2023-09-06 02:57:07', 1),
(14648, 14370, 59, 5, 0, 'Not Suitable For Our Roles Communication No Will Not Sustain', 108, '0000-00-00 00:00:00', 1),
(14649, 14371, 59, 2, 0, 'Need to come for Final Round with Gokul but location need to check for HR profile', 104, '0000-00-00 00:00:00', 1),
(14650, 14362, 59, 5, 0, ' Communication Ok Will Not Sustain to long distance ', 104, '0000-00-00 00:00:00', 1),
(14651, 14373, 59, 5, 0, 'Not Suitable For Our Roles Communication average Will Not Sustain in our roles health issue he has ', 104, '0000-00-00 00:00:00', 1),
(14652, 14372, 59, 5, 0, 'Not Suitable For Our Roles No basic skills Will Not Sustain not much cofmrt in TxxampC', 104, '0000-00-00 00:00:00', 1),
(14653, 14366, 59, 5, 0, 'Not Suitable For Our Roles No basics Skills age 28 Long career gap Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14654, 14364, 59, 2, 0, 'Selected for Recruiter Role 15K overall Need to check the documents and confirm seems to be doubtful final round by gokul', 104, '0000-00-00 00:00:00', 1),
(14655, 14369, 59, 5, 0, 'Not Suitable For Our Roles Communication No Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14656, 14367, 59, 5, 0, 'Not suitable for our roles Communication No will not sustain', 104, '0000-00-00 00:00:00', 1),
(14657, 14368, 59, 5, 0, 'Not Suitable For Our Roles Communication No Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(14658, 14376, 59, 3, 0, 'Selected for GK Sir team Staff Role', 108, '0000-00-00 00:00:00', 1),
(14659, 14383, 59, 4, 0, 'Communication Good Can be trained in our roles have exp in calling for few months kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14660, 14378, 59, 4, 0, 'Fresher internal team reference sustainability doubts will not handle our pressure', 108, '0000-00-00 00:00:00', 1),
(14661, 14377, 59, 5, 0, 'Have Exp in calling but no locl tamil language for operation high cTC exp will not sustain and handle our workroles', 108, '0000-00-00 00:00:00', 1),
(14662, 14381, 59, 5, 0, 'Will not sustain for a long have a plan to go with higher studies in canada will not sustain', 108, '0000-00-00 00:00:00', 1),
(14663, 14380, 59, 5, 0, 'Not suitable for our recruitment role no communication', 108, '0000-00-00 00:00:00', 1),
(14664, 14374, 59, 3, 0, 'Selected for Banu Team Consultant Role', 108, '0000-00-00 00:00:00', 1),
(14665, 14379, 59, 3, 0, 'Selected for Sarath Team in Staff Role with the oral approval from Gaurav Sir', 108, '0000-00-00 00:00:00', 1),
(14666, 14361, 59, 3, 0, 'Selected for Kannan Team', 108, '0000-00-00 00:00:00', 1),
(14667, 14384, 59, 2, 0, 'Need to come back with his confirmation on Intern cum employment if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14668, 14361, 19, 7, 5, 'Selected', 59, '2023-09-07 06:50:04', 1),
(14669, 14374, 53, 7, 0, 'Shortlisted for b2b', 59, '2023-09-07 06:51:05', 1),
(14670, 12618, 59, 5, 0, 'Attitude Have Exp in calling scheduled with Shanmugam sir for 2nd level but left without attending', 104, '0000-00-00 00:00:00', 1),
(14671, 14376, 31, 4, 4, 'candidate okay, already worked in credit card sales and new for insurance sector', 59, '2023-09-07 06:53:33', 1),
(14672, 14379, 51, 4, 0, 'selcted', 59, '2023-09-07 06:54:15', 1),
(14673, 14378, 53, 1, 0, NULL, 59, '2023-09-07 06:56:50', 1),
(14674, 14383, 51, 5, 0, 'Rejected', 59, '2023-09-07 07:00:33', 1),
(14675, 14385, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14676, 14399, 97, 5, 0, 'Good communication skill.. but she already holding with 12k ... sal exp high', 104, '0000-00-00 00:00:00', 1),
(14677, 14393, 97, 4, 0, '50-50 profile long distance .. average convincing skills... will try for our role .. check and update your inputs..', 104, '0000-00-00 00:00:00', 1),
(14678, 14391, 97, 7, 0, 'Good communication skill has exp in cc .. will try for our role..', 104, '0000-00-00 00:00:00', 1),
(14679, 14398, 97, 5, 0, 'Good exp xxamp comm..sal expt high ...', 104, '0000-00-00 00:00:00', 1),
(14680, 14397, 97, 5, 0, 'physically she have some problem... not suit for our roles', 104, '0000-00-00 00:00:00', 1),
(14681, 14395, 97, 5, 0, 'Not suit for Recruitment', 104, '0000-00-00 00:00:00', 1),
(14682, 14396, 97, 5, 0, 'Not Suit For Recruitment', 104, '0000-00-00 00:00:00', 1),
(14683, 14389, 97, 5, 0, 'has min knowledge in sql .. need to learn a lot', 104, '0000-00-00 00:00:00', 1),
(14684, 14390, 97, 5, 0, 'Not suit for our roles', 104, '0000-00-00 00:00:00', 1),
(14685, 14392, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14686, 14394, 30, 7, 3, 'Proceed the joining formalities ', 104, '0000-00-00 00:00:00', 1),
(14687, 14391, 59, 3, 0, 'Selected for Renewals Consultant Role', 97, '2023-09-08 06:57:54', 1),
(14688, 14393, 105, 5, 0, 'OBSCONT AFTER INTERVIEW COMPLETED ALSO LONG DISTANCE', 97, '2023-09-08 07:08:00', 1),
(14689, 14337, 59, 3, 0, 'Selected for Syed Team Staff Role', 57, '2023-09-09 03:33:18', 1),
(14690, 14358, 59, 3, 0, 'Selected for Syed Team in staff Role', 57, '2023-09-09 03:33:37', 1),
(14691, 14361, 59, 3, 0, 'Selected for Kannan Team', 19, '2023-09-09 03:42:40', 1),
(14692, 14374, 59, 3, 0, 'Selected for Banu Team Consultant Role', 53, '2023-09-09 04:12:08', 1),
(14693, 14400, 59, 4, 0, 'Communication ok fresher for our roles can be trained have exp in salary account opening kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14694, 14402, 59, 5, 0, 'Need to open up a lot in sales focus in the salary only Pressure handling doubts', 104, '0000-00-00 00:00:00', 1),
(14695, 14401, 59, 5, 0, 'Have Exp in OLA bike sales for 1 yr after that there is a gap for 1yr salary exp is high being a fresher for our roles if he comes back with negotiation can give a try', 104, '0000-00-00 00:00:00', 1),
(14696, 14406, 59, 5, 0, 'Will not sustain and handle our work pressure frequent job changes not suitable', 104, '0000-00-00 00:00:00', 1),
(14697, 14407, 59, 5, 0, 'Have 3 Months Exp In Recruitment And The Salary Exp Is High More Than 18K His Current Is 18K Will Not Handle Our Work Pressure Too', 104, '0000-00-00 00:00:00', 1),
(14698, 14408, 59, 5, 0, 'Have 3 months exp in recruitment and the salary exp is high more than 18K her current is 18K will not handle our work pressure too', 104, '0000-00-00 00:00:00', 1),
(14699, 14404, 59, 5, 0, 'Fresher not more than an year will not sustain in our roles need time to consider for our roles', 104, '0000-00-00 00:00:00', 1),
(14700, 14405, 59, 4, 0, '5050 profile communication Ok sustainability doubts looking for salary much kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14701, 14400, 44, 1, 0, NULL, 59, '2023-09-09 04:25:33', 1),
(14702, 14405, 53, 1, 0, NULL, 59, '2023-09-09 04:27:39', 1),
(14703, 14379, 60, 1, 0, NULL, 51, '2023-09-09 06:15:21', 1),
(14704, 14376, 29, 7, 2, 'gk team PC RM', 31, '2023-09-09 06:46:08', 1),
(14705, 14403, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14706, 14409, 59, 4, 0, 'Communication Ok can be trained in our roles have exp in Bank Bazaar Need to improve his sound can be trained kindly check', 104, '0000-00-00 00:00:00', 1),
(14707, 14411, 59, 4, 0, '5050 Profile much preferred for IT but open for Sales calling too focusing much in the salary kindly check and let me know your inputs internal reference\n', 104, '0000-00-00 00:00:00', 1),
(14708, 14413, 59, 5, 0, '5050 Profile Have 6 Months Exp Incalling But Doubts On Sustainability Kindly Check And Let Me Know Your Inputs', 104, '0000-00-00 00:00:00', 1),
(14709, 14410, 59, 4, 0, '5050 profile for our sales have exp in calling Airtel kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14710, 14414, 59, 4, 0, '5050 Profile have 6 months exp incalling but doubts on sustainability kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14711, 14415, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14712, 14417, 59, 4, 0, 'Low Quality candidate internal reference will not sustain in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14713, 14411, 13, 5, 0, 'ok than but call panrenu sollitu ipo vara entha pathilum illa so set agathu', 59, '2023-09-11 07:22:48', 1),
(14714, 14409, 86, 1, 0, NULL, 59, '2023-09-11 07:24:03', 1),
(14715, 14415, 19, 7, 4, 'Selected', 59, '2023-09-11 07:24:54', 1),
(14716, 14417, 57, 5, 0, 'Not good', 59, '2023-09-11 07:25:49', 1),
(14717, 14414, 53, 1, 0, NULL, 59, '2023-09-11 07:26:47', 1),
(14718, 14410, 44, 1, 0, NULL, 59, '2023-09-11 07:29:37', 1),
(14719, 14418, 59, 4, 0, '5050 profile for our roles have 8 months exp in calling kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14720, 14419, 59, 5, 0, 'Already attended and got rejected not much comfort in TxxampC will not sustain and not suitable final round reject by Gokul', 104, '0000-00-00 00:00:00', 1),
(14721, 14420, 59, 4, 0, 'Fresher for our Roles need to be trained a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14722, 14423, 59, 4, 0, '5050 Profile have exp not much in calling sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14723, 14424, 59, 5, 0, 'Looking for Non Voice Process not much comfort in telecalling will not sustain not suitable', 104, '0000-00-00 00:00:00', 1),
(14724, 14426, 59, 5, 0, 'Communication No will not sustain and handle our work pressure not suitable', 104, '0000-00-00 00:00:00', 1),
(14725, 14420, 27, 1, 0, NULL, 59, '2023-09-12 07:11:17', 1),
(14726, 14418, 31, 1, 0, NULL, 59, '2023-09-12 07:19:32', 1),
(14727, 14423, 19, 5, 1, 'Rejected', 59, '2023-09-12 07:20:41', 1),
(14728, 14429, 59, 5, 0, 'Communication Ok but no exp in voice process she need time to confirm her interest if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14729, 14421, 59, 5, 0, 'Looking for non voice process will not handle our sales calling and not suitable for our operations too', 104, '0000-00-00 00:00:00', 1),
(14730, 14430, 59, 5, 0, 'No communication Mentioned Exp but the way speaks not clear with the roles will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14731, 14044, 59, 3, 0, 'Selected for Intern with Employment Direct reporting to Uday Node', 59, '2023-09-14 09:49:13', 1),
(14732, 14376, 59, 3, 0, 'Selected for GK Sir team Staff Role', 29, '2023-09-14 11:18:52', 1),
(14733, 14440, 59, 5, 0, 'Have Exp in Televerification not much comfort in Sales calling will not sustain not suitable', 104, '0000-00-00 00:00:00', 1),
(14734, 14439, 59, 2, 0, 'Need to learn and come back if he comes let su try for Javascript', 104, '0000-00-00 00:00:00', 1),
(14735, 14438, 59, 5, 0, 'Communication Good Have a plan to travel abroad for higher studies MBA preparing for the exams time being looking for opportunities will not sustain', 104, '0000-00-00 00:00:00', 1),
(14736, 14436, 59, 5, 0, 'No VOice Claroty Not open for Targets will not sustain not suitable', 104, '0000-00-00 00:00:00', 1),
(14737, 14441, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14738, 14444, 59, 3, 0, 'Selected for Syed Team Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14739, 14442, 59, 2, 0, 'Need to check for 2nd level with Gokul sustainability doubts in our roles need to check and confirm', 104, '0000-00-00 00:00:00', 1),
(14740, 14443, 59, 4, 0, 'Have Exp in SAles Can be trained in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14741, 14431, 59, 4, 0, '5050 profile have exp but doubts a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14742, 14444, 57, 7, 0, 'CANDIDATE IS OK ALREADY SHE WAS SAME PROCESS KINDLY CHECK WITH PACKAGE AND JOINING DATE THANKS', 59, '2023-09-14 06:20:51', 1),
(14743, 14443, 51, 4, 0, 'selected', 59, '2023-09-14 06:21:34', 1),
(14744, 14431, 13, 5, 0, 'she is not suitable for this sales', 59, '2023-09-14 06:27:54', 1),
(14745, 14441, 13, 7, 0, 'ok voice clarity and confident level is good kindly confirm joining date', 59, '2023-09-14 06:28:35', 1),
(14746, 14444, 59, 3, 0, 'Selected for Syed Team Consultant Role', 57, '2023-09-14 06:40:11', 1),
(14747, 14441, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-09-14 06:50:47', 1),
(14748, 14448, 59, 3, 0, 'Selected fr Muthu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(14749, 14449, 59, 5, 0, 'He is into graduation yet to complete his education bit attitude will not sustain for a long not suitable', 108, '0000-00-00 00:00:00', 1),
(14750, 14450, 59, 5, 0, 'Aged Career Gap much looking for non voice not suitable', 104, '0000-00-00 00:00:00', 1),
(14751, 14428, 59, 4, 0, 'Have Exp in sales can be trained in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14752, 14451, 59, 5, 0, 'Have basic knowledge can be trained in our skills but not ok with TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14753, 14428, 44, 1, 0, NULL, 59, '2023-09-15 05:55:27', 1),
(14754, 14448, 13, 7, 0, 'ok Good Communication and Convincing skills,Sep 19th Joining ', 59, '2023-09-15 05:56:19', 1),
(14755, 14415, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-09-15 07:14:39', 1),
(14756, 14447, 59, 3, 0, 'Selected for Shanmugam Team with Staff Role 1 month 1.5L Business then 25K Net take Home', 104, '0000-00-00 00:00:00', 1),
(14757, 14454, 59, 3, 0, 'selected for Gopinath team in Staff ROle', 104, '0000-00-00 00:00:00', 1),
(14758, 14455, 59, 5, 0, 'Not open for TxxampC fresher will not sustain', 104, '0000-00-00 00:00:00', 1),
(14759, 14460, 59, 5, 0, 'Attitude Long Career in Admin Roles 33 yrs will not sustain and not suits for TxxampC not suitable', 104, '0000-00-00 00:00:00', 1),
(14760, 14448, 59, 3, 0, 'Selected fr Muthu Team in Consultant Role', 13, '2023-09-16 04:30:19', 1),
(14761, 14447, 44, 1, 0, NULL, 59, '2023-09-16 04:31:33', 1),
(14762, 14454, 105, 7, 0, 'Candidate Performed Well in Interview , He Will Join on Wednesday', 59, '2023-09-16 04:32:18', 1),
(14763, 14447, 59, 3, 0, 'Selected for Shanmugam Team with Staff Role 1 month 1.5L Business then 25K Net take Home', 29, '2023-09-19 10:23:47', 1),
(14764, 14443, 29, 1, 0, NULL, 51, '2023-09-19 12:30:06', 1),
(14765, 14457, 59, 5, 0, 'Too Long Distance Not Much Suitable For Our Voice Process Will Not Sustain And Handle Our Work Pressure', 104, '0000-00-00 00:00:00', 1),
(14766, 14462, 59, 4, 0, '5050 Profile Need to open up a lot Have Exp in backoffice Kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14767, 14456, 59, 5, 0, 'Too long distance not much suitable for our voice process will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14768, 14458, 59, 5, 0, 'Too Long Distance Not Much Suitable For Our Voice Process Will Not Sustain And Handle Our Work Pressure', 104, '0000-00-00 00:00:00', 1),
(14769, 14461, 59, 5, 0, 'Left without attending', 104, '0000-00-00 00:00:00', 1),
(14770, 14463, 59, 5, 0, 'No basic skills need to come back after learning of he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14771, 14464, 59, 5, 0, 'Too Long Distance Not Much Suitable For Our Voice Process Will Not Sustain And Handle Our Work Pressure', 104, '0000-00-00 00:00:00', 1),
(14772, 14454, 59, 3, 0, 'selected for Gopinath team in Staff ROle', 105, '2023-09-19 02:58:43', 1),
(14773, 14462, 13, 5, 0, 'She is Not fit for Tele sales', 59, '2023-09-19 07:04:39', 1),
(14774, 14467, 59, 5, 0, 'Average Communication Have Exp in MIS but not much relevant sustainability doubts and high salary Exp', 104, '0000-00-00 00:00:00', 1),
(14775, 14476, 59, 5, 0, 'Too long Distance not open for Voice process much looking for non voice', 104, '0000-00-00 00:00:00', 1),
(14776, 14477, 59, 5, 0, 'Too Long Distance Not Open For Voice Process Much Looking For Non Voice', 104, '0000-00-00 00:00:00', 1),
(14777, 14480, 59, 5, 0, 'Looking for non voice only', 104, '0000-00-00 00:00:00', 1),
(14778, 14466, 59, 5, 0, 'Not active No Communication will nothandle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14779, 14481, 59, 5, 0, 'No Sustainability too long distance will not handle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14780, 14482, 59, 5, 0, 'Yet to Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14781, 14483, 59, 5, 0, 'Yet To Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14782, 14484, 59, 5, 0, 'Yet To Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14783, 14485, 59, 5, 0, 'Yet To Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14784, 14486, 59, 5, 0, 'Yet To Complete Graduation Question Task Rejected', 104, '0000-00-00 00:00:00', 1),
(14785, 14472, 97, 2, 0, 'Aptitude clear can try for next round of interview but candiate yet to complete his college will hold Now .if he come back let us check.', 104, '0000-00-00 00:00:00', 1),
(14786, 14470, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14787, 14468, 59, 2, 0, 'Need to complete his graducation', 104, '0000-00-00 00:00:00', 1),
(14788, 14469, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14789, 14474, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14790, 14479, 97, 5, 0, 'Rejected in Aptitude', 104, '0000-00-00 00:00:00', 1),
(14791, 14471, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1),
(14792, 14475, 97, 5, 0, 'Rejected In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14793, 14473, 97, 5, 0, 'Rejected In Aptitude Round', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(14794, 14478, 74, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14795, 14499, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(14796, 14494, 59, 5, 0, 'Have Exp in Calling but very Less and the salary exp is high if she comes back let us try ', 104, '0000-00-00 00:00:00', 1),
(14797, 14501, 59, 5, 0, 'Need to come back with his confirmation on the TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14798, 14503, 59, 5, 0, 'No Communication Looking only for the salary growth will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14799, 14497, 109, 5, 0, 'Not Selected For Apttitude Test.', 104, '0000-00-00 00:00:00', 1),
(14800, 14498, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14801, 14492, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14802, 14489, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14803, 14493, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14804, 14490, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14805, 14495, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14806, 14488, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14807, 14496, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14808, 14491, 109, 5, 0, 'Failed In Aptitude', 104, '0000-00-00 00:00:00', 1),
(14809, 14510, 59, 4, 0, '5050 Profile have exp in motor Insurance kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14810, 14511, 59, 4, 0, '5050 Communication Understanding Poor Pressure handling doubt internal reference kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14811, 14508, 59, 3, 0, 'Selected For Internship Stipend Payout For 3 Months ', 104, '0000-00-00 00:00:00', 1),
(14812, 14507, 59, 3, 0, 'Selected for Internship Stipend Payout for 3 months ', 104, '0000-00-00 00:00:00', 1),
(14813, 14516, 59, 5, 0, 'Not open for Sales and communication no will not Sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14814, 14512, 59, 5, 0, 'Holding an offer from CTS will not sustain not much comfrt in location too if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14815, 14509, 59, 5, 0, 'Too long Distance not much comfort in TxxampC will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(14816, 14515, 97, 5, 0, 'below average communication. has exp in renewals in star health looking for MIS.. will not suit for MIS', 104, '0000-00-00 00:00:00', 1),
(14817, 14517, 97, 2, 0, 'good communication.. suit for Recruitment .. has intern exp .. will try ', 104, '0000-00-00 00:00:00', 1),
(14818, 14502, 59, 3, 0, 'Selected for shanmugam Sir Team in Staff Role Gaurav Sir Commitment 1.5L + 5mf then 23K th from Nov 2023', 85, '0000-00-00 00:00:00', 1),
(14819, 14502, 59, 3, 0, 'Selected for shanmugam Sir Team in Staff Role Gaurav Sir Commitment 1.5L + 5mf then 23K th from Nov 2023', 85, '0000-00-00 00:00:00', 1),
(14820, 14499, 13, 7, 0, 'ok good communication skills,Salary and joining confirm pannanum', 59, '2023-09-22 07:05:10', 1),
(14821, 14510, 19, 5, 1, 'Not fit for sales', 59, '2023-09-22 07:07:00', 1),
(14822, 14506, 71, 5, 0, 'Not Fit For Sales', 85, '0000-00-00 00:00:00', 1),
(14823, 14504, 59, 5, 0, 'Need time to confirm with her family for the salary Exp is high Sustainability no in the previous if she comes back let us try', 85, '0000-00-00 00:00:00', 1),
(14824, 14511, 102, 5, 0, 'Not Suitable Sales ', 59, '2023-09-22 07:26:47', 1),
(14825, 14502, 44, 7, 4, 'Candidate ok please complete the future process ', 59, '2023-09-22 07:36:37', 1),
(14826, 14499, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-09-23 11:07:04', 1),
(14827, 14518, 59, 5, 0, 'Salary exp is high have aplan to go with higher studies will not sustain for a long', 85, '0000-00-00 00:00:00', 1),
(14828, 14520, 59, 4, 0, '5050 Profile Need to train a lot kindly check and let mw know your inputs', 108, '0000-00-00 00:00:00', 1),
(14829, 14522, 59, 5, 0, 'No Sustainability will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14830, 14521, 59, 5, 0, 'Too long Days Not open for Sales Calling will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(14831, 14500, 59, 5, 0, 'Not Active very slow will not sustain will not handle our pressure', 108, '0000-00-00 00:00:00', 1),
(14832, 14502, 59, 3, 0, 'Selected for shanmugam Sir Team in Staff Role Gaurav Sir Commitment 1.5L + 5mf then 23K th from Nov 2023', 44, '2023-09-25 03:30:45', 1),
(14833, 14530, 97, 4, 0, 'Fresher Can Be Train Let Us Try.. Kindly Check And Update Your Feedback', 104, '0000-00-00 00:00:00', 1),
(14834, 14532, 97, 4, 0, 'Fresher can be train let us try.. kindly check and update your feedback', 104, '0000-00-00 00:00:00', 1),
(14835, 14528, 59, 5, 0, 'Expis high will not sustain and handle our work roles ', 104, '0000-00-00 00:00:00', 1),
(14836, 14527, 59, 2, 0, 'Salary Projected for MIS Role Shortlistde by Gokul Candidate yet to give his confirmation', 104, '0000-00-00 00:00:00', 1),
(14837, 14524, 97, 5, 0, 'Communication average . will not handle our pressure. sal expt high..', 104, '0000-00-00 00:00:00', 1),
(14838, 14526, 97, 5, 0, 'he looking for Data analyst role.. for a time being looking for job not suit for in our roles...', 104, '0000-00-00 00:00:00', 1),
(14839, 14525, 97, 4, 0, '50-50 profile. need to train a lot.. kindly check and update your inputs.', 104, '0000-00-00 00:00:00', 1),
(14840, 14529, 97, 4, 0, 'Fresher.. good communication xxamp convincing skill.. let us try ..', 104, '0000-00-00 00:00:00', 1),
(14841, 14531, 97, 5, 0, 'Has exp in web dev. but not suit for our timing xxamp role. ', 104, '0000-00-00 00:00:00', 1),
(14842, 14534, 59, 4, 0, 'Communicaiton Ok Have Exp in Sales can be trained kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14843, 14533, 59, 4, 0, '5050 Have Exp but sustainability doubts can give a try in our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14844, 14525, 13, 5, 0, 'voice not bold and communication skill poor so he is not fit for tele sales', 97, '2023-09-26 06:54:36', 1),
(14845, 14529, 59, 1, 0, NULL, 97, '2023-09-26 07:03:18', 1),
(14846, 14535, 59, 4, 0, 'Communication Ok Can be trained in our roles Attitude 5050 kindly check an dlet me knwo your inputs', 104, '0000-00-00 00:00:00', 1),
(14847, 14538, 97, 5, 0, 'much interested in IT side.. for a time being looking for Data analyst', 104, '0000-00-00 00:00:00', 1),
(14848, 14540, 97, 5, 0, 'Has 11yrs of exp in acc .. long distance ..not suit for our role', 104, '0000-00-00 00:00:00', 1),
(14849, 14539, 97, 5, 0, 'Not suit for our role exp in us acc .. ', 104, '0000-00-00 00:00:00', 1),
(14850, 14541, 97, 5, 0, 'Has exp in web development.. not suit for our role..sal expt high', 104, '0000-00-00 00:00:00', 1),
(14851, 14543, 97, 5, 0, 'has some knowledge in Tally but no communication ', 104, '0000-00-00 00:00:00', 1),
(14852, 14544, 97, 5, 0, 'Has exp in acc but need learn tally gST .. ', 104, '0000-00-00 00:00:00', 1),
(14853, 14546, 97, 5, 0, 'No knowledge \nIn Tally xxamp No Communication ', 104, '0000-00-00 00:00:00', 1),
(14854, 14547, 97, 5, 0, 'Has exp in acc tax aud.. sal expt high .. no job need ', 104, '0000-00-00 00:00:00', 1),
(14855, 14548, 97, 5, 0, 'Has medical Billing exp new to our role and not suit for process', 104, '0000-00-00 00:00:00', 1),
(14856, 14536, 97, 5, 0, 'Long distance xxamp Not suit for our process', 104, '0000-00-00 00:00:00', 1),
(14857, 14537, 97, 5, 0, 'No Knowledege in Tally xxamp no communication ', 104, '0000-00-00 00:00:00', 1),
(14858, 14545, 97, 5, 0, '50-50 profile Sustainability doubts.. kindly check and update your inputs..', 104, '0000-00-00 00:00:00', 1),
(14859, 14542, 59, 2, 0, 'Need to come back with his confirmation Fresher for our roles need to be trained a lot', 104, '0000-00-00 00:00:00', 1),
(14860, 14549, 59, 5, 0, 'Have Exp but seems to be not genuine asked for the documents if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14861, 14532, 13, 7, 0, 'ok good communication skill and voice clarity good 29th sep joining', 97, '2023-09-27 07:28:54', 1),
(14862, 14530, 13, 7, 0, 'ok,29th sep joining', 97, '2023-09-27 07:29:10', 1),
(14863, 14535, 44, 1, 0, NULL, 59, '2023-09-27 08:13:18', 1),
(14864, 14520, 44, 1, 0, NULL, 59, '2023-09-27 08:14:12', 1),
(14865, 14534, 31, 1, 0, NULL, 59, '2023-09-27 08:16:38', 1),
(14866, 14533, 44, 1, 0, NULL, 59, '2023-09-27 08:20:21', 1),
(14867, 14530, 59, 3, 0, 'Selected for Muthu Team in Staff Role', 13, '2023-09-28 11:27:56', 1),
(14868, 14532, 59, 3, 0, 'Selected for Muthu Team in staff Role', 13, '2023-09-28 11:32:42', 1),
(14869, 14553, 59, 4, 0, '5050 have calling exp can be trained kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14870, 14551, 59, 2, 0, 'Selected for Acounts Team and projected the salary till 2.4LPA But he is not ready to accept it\n', 104, '0000-00-00 00:00:00', 1),
(14871, 14552, 59, 2, 0, 'Sustinability doubts need to look for other profiles and later willdecide n the profile', 104, '0000-00-00 00:00:00', 1),
(14872, 14550, 59, 4, 0, '5050 Profile hav a career gap have exp in calling kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14873, 14559, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14874, 14569, 59, 5, 0, 'No Communication no ideas will not handle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(14875, 14564, 59, 5, 0, 'No Ideas in MIS No parents He is alone not muchactive will not handle our work pressure not suitable', 104, '0000-00-00 00:00:00', 1),
(14876, 14556, 59, 5, 0, 'Not much comfort in TxxampC Fresher need to train a lot if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14877, 14567, 59, 5, 0, 'Left Without Attending', 104, '0000-00-00 00:00:00', 1),
(14878, 14562, 59, 5, 0, 'Lookin g for Accounts profile have exp in renewals salary exp is high Average Communication', 104, '0000-00-00 00:00:00', 1),
(14879, 14565, 59, 5, 0, 'Not Much Comfort In TxxampC Fresher for Web Development have Exp in other profile Need To Train A Lot If she Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14880, 14554, 59, 5, 0, 'Not Much Comfort In TxxampC Fresher Need To Train A Lot If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14881, 14570, 59, 2, 0, 'Have Exp in MIS Current CTC 3.5 LPA Exp is min 4LPA Need to confirm the profile', 104, '0000-00-00 00:00:00', 1),
(14882, 14571, 59, 5, 0, 'have exp CMA Inter Saalry Exp in high too long Distance will not sustain in a long', 104, '0000-00-00 00:00:00', 1),
(14883, 14568, 59, 5, 0, 'Too long Distance No Sustainability in the previous Exp in Star Health for few months will not handle the pressure in our roles location constraint', 108, '0000-00-00 00:00:00', 1),
(14884, 11246, 59, 4, 0, '5050 profile have exp in sales but sustainability doubts in our profile kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14885, 14560, 59, 4, 0, '5050 profile Fresher for our roles need to be trained a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14886, 14561, 59, 4, 0, '5050 Profile have exp in retail sales sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14887, 11018, 59, 5, 0, 'Not Much Comfort In TxxampC Fresher Need To Train A Lot If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14888, 14563, 59, 5, 0, 'No basics in Accounts 2yrs Gap Will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14889, 14557, 59, 5, 0, 'Not open for TxxampC He is a musician will not much comfort to work on Saturday sustainability doubts', 104, '0000-00-00 00:00:00', 1),
(14890, 14579, 59, 5, 0, 'No communication Aged Very slow will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14891, 14573, 59, 5, 0, 'Fresher Long Career Gap Not much comfort in TxxampC if she comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14892, 14575, 59, 2, 0, 'Fresher for Accounts Can be trained not open for other roles need to confirm later', 108, '0000-00-00 00:00:00', 1),
(14893, 14576, 59, 5, 0, 'Need to be active Just Tally entry exp pressure hanlding doubt will not sustain in our presuure', 108, '0000-00-00 00:00:00', 1),
(14894, 14572, 59, 5, 0, 'Too long Distance max 1yr she wlill work and move to higher studies will not sustain', 108, '0000-00-00 00:00:00', 1),
(14895, 14577, 59, 5, 0, 'Communication Average Telling as Exp but seems to be doubtfull and lot of false information in his family Will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(14896, 11246, 31, 1, 0, NULL, 59, '2023-09-30 05:25:43', 1),
(14897, 14560, 13, 5, 0, 'he is not fit for tele sales and not pressure handling', 59, '2023-09-30 05:36:06', 1),
(14898, 14561, 19, 5, 1, 'Rejected', 59, '2023-09-30 05:36:58', 1),
(14899, 14550, 31, 1, 0, NULL, 59, '2023-09-30 06:48:01', 1),
(14900, 14553, 44, 1, 0, NULL, 59, '2023-09-30 07:59:10', 1),
(14901, 14580, 59, 5, 0, 'Frequent Job Changes Long Distance not sure on relocation will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(14902, 14586, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(14903, 14587, 59, 5, 0, 'Looking for SAP FICO profile will not sustain in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(14904, 14591, 59, 5, 0, 'Will not sustain 10 diploma had own business wealth family will not sustain and handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14905, 14595, 59, 4, 0, 'Have Exp in Insurance Broca Sales Can be trained kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14906, 14585, 59, 2, 0, 'Need to confirm after reveiewing other profiles need time to confirm', 108, '0000-00-00 00:00:00', 1),
(14907, 14594, 59, 5, 0, 'No ideas in MIS looking for Hardware sort of profiles', 108, '0000-00-00 00:00:00', 1),
(14908, 14582, 59, 2, 0, 'Have Exp in Accounts Need to confirm post screening of other profiles ', 108, '0000-00-00 00:00:00', 1),
(14909, 14593, 59, 2, 0, '5050 profile Have health disability Left hand Candidate Leg issue Can be trained need time to confirm', 108, '0000-00-00 00:00:00', 1),
(14910, 14603, 59, 5, 0, 'No basic skills will not sustain not open for TxxampC not suitable', 108, '0000-00-00 00:00:00', 1),
(14911, 14595, 44, 1, 0, NULL, 59, '2023-10-03 07:17:09', 1),
(14912, 14586, 13, 7, 0, 'job Need irukku ok than joining date confirm pannanum', 59, '2023-10-03 07:24:28', 1),
(14913, 14583, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(14914, 14586, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-10-04 10:41:05', 1),
(14915, 14611, 59, 5, 0, 'Candidate is in Dilemma Will not sustain and handle our work Pressure Final round Reject by Gokul', 108, '0000-00-00 00:00:00', 1),
(14916, 14610, 59, 5, 0, 'Fresher for Our roles Will not sustain and handle our pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14917, 14598, 59, 5, 0, 'Fresher Focusing much for IT opening but no basic skills Will not handle our work pressure in Sales Calling Not suitable', 108, '0000-00-00 00:00:00', 1),
(14918, 14597, 59, 5, 0, 'Need Time to Give his confirmation Already had an offer with Wipro for 3.5 LPA not yet onboarded Will not sustain in a long Run', 108, '0000-00-00 00:00:00', 1),
(14919, 14596, 59, 5, 0, 'Too Long Distance Seems to be good Candidate Already into Intern with 12K exp min 10K stipend here but 3yrs doubts if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14920, 14614, 59, 5, 0, 'too long Distance Fresher Salary Exp is high not joined a company earlier as the salary offered was low and it was around 13K TH\n', 108, '0000-00-00 00:00:00', 1),
(14921, 14616, 59, 5, 0, 'No Basic skills need to open a lot will not handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14922, 14612, 59, 5, 0, 'Fresher for MIS Not much family need settled Too long Distance Will not sustain in a long', 108, '0000-00-00 00:00:00', 1),
(14923, 14606, 59, 2, 0, 'Seems to be slow 5050 Virtual with Manikandan Auditor Final round Hold by Gokul not much active pressure handling doubts', 108, '0000-00-00 00:00:00', 1),
(14924, 14607, 59, 2, 0, 'Fresher for Accounts Virtual With Mani Auditor Left without attending the final round with Gokul', 108, '0000-00-00 00:00:00', 1),
(14925, 14566, 59, 2, 0, 'Not Much Active Have Exp as process Associate Can be trained Final Interview by Gokul and was on hold', 108, '0000-00-00 00:00:00', 1),
(14926, 14609, 59, 5, 0, 'Fresher for Our Roles Attitude Issue Final round rejected by gokul', 108, '0000-00-00 00:00:00', 1),
(14927, 14608, 59, 4, 0, 'Internal Team Reference looking for IT much Will not sustain Being Team reference kindly check once', 108, '0000-00-00 00:00:00', 1),
(14928, 14613, 59, 4, 0, '5050 Profile internal Team Reference Not open for Telesales looking for Admin Roles kindly check', 85, '0000-00-00 00:00:00', 1),
(14929, 14613, 19, 5, 2, 'Rejected', 59, '2023-10-04 06:38:13', 1),
(14930, 14608, 13, 5, 0, 'he is not sustain long term ', 59, '2023-10-04 06:39:30', 1),
(14931, 14629, 59, 5, 0, 'Not open for our Roles ', 108, '0000-00-00 00:00:00', 1),
(14932, 14627, 59, 2, 0, 'Good in Communication Recently Married Sustainability Good in previous emp long run doubts in our roles', 108, '0000-00-00 00:00:00', 1),
(14933, 14624, 59, 2, 0, 'Communication OK Have Exp in CAMS Interested to learn in MF but exp ESI benefits checked for B2B she need to confirm her interest', 108, '0000-00-00 00:00:00', 1),
(14934, 14626, 59, 5, 0, 'Need to open up a lot will not handle the pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(14935, 14623, 59, 3, 0, 'Selected for MIS role in Consultant Role Have Exp in MIS Good Sustainability Communication Good Final Round with GOkul', 108, '0000-00-00 00:00:00', 1),
(14936, 14617, 59, 5, 0, 'Not open for TxxampC Father has his own web development PHP business will not sustain', 108, '0000-00-00 00:00:00', 1),
(14937, 14625, 59, 5, 0, 'Have Exp in Backend Much she is into treatment for pregnancy will not sustain for a long ', 108, '0000-00-00 00:00:00', 1),
(14938, 14620, 59, 2, 0, 'Need To Give His Confirmation on the Salary 2.2 LPA max offer Final Round with Gokul for Renewal/operations have exp in star health for 2 yrs', 108, '0000-00-00 00:00:00', 1),
(14939, 14602, 59, 3, 0, 'Selected for IT 5months Intern 3yrs emp conditions', 85, '0000-00-00 00:00:00', 1),
(14940, 14630, 59, 5, 0, 'Too long Distance Will not sustain and not much open with the TxxampC', 108, '0000-00-00 00:00:00', 1),
(14941, 14641, 59, 5, 0, 'Looking for Non voice will not sustain in our roles not suitable\n', 108, '0000-00-00 00:00:00', 1),
(14942, 14599, 59, 2, 0, 'Have knowledge in PHP Can give a try Need to check Sathish IT availability and schedule', 108, '0000-00-00 00:00:00', 1),
(14943, 14638, 59, 5, 0, 'Not open for Calling Roles will not sustain need to open up a lot', 108, '0000-00-00 00:00:00', 1),
(14944, 14637, 59, 5, 0, 'Looking for Core Data Analyst Role Will not sustain', 108, '0000-00-00 00:00:00', 1),
(14945, 14636, 59, 5, 0, 'Have Exp in non voice process Looking almost for the same roles will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(14946, 14635, 59, 5, 0, 'To long Distance up and down 52kms no basic knowledge in the JS skills if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(14947, 14634, 59, 5, 0, 'Need to come back after learning can give a try if he comes back ', 108, '0000-00-00 00:00:00', 1),
(14948, 14633, 59, 5, 0, 'Career Gap Not explaining properly will not sustain Not suitable', 108, '0000-00-00 00:00:00', 1),
(14949, 14632, 59, 5, 0, 'holding an offer with the intern company and looking for something more on that', 108, '0000-00-00 00:00:00', 1),
(14950, 14621, 59, 5, 0, 'Too long Distance Up and down 60kms will not sustain\n', 108, '0000-00-00 00:00:00', 1),
(14951, 14647, 59, 4, 0, '5050 Profile Have Exp in Calling but not a relevant one Can give a try Kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(14952, 14645, 59, 5, 0, 'No Sustainability in her previous exp will not handle our work pressure Looking only for the salary growth', 108, '0000-00-00 00:00:00', 1),
(14953, 14649, 59, 5, 0, 'Too long Distance Technically Sounds Ok not comfort with the TxxampC not suitable', 108, '0000-00-00 00:00:00', 1),
(14954, 14651, 59, 5, 0, 'Too long Distance will not sustain 66kms up and down', 108, '0000-00-00 00:00:00', 1),
(14955, 14648, 59, 5, 0, 'Attitude will not handle our work Roles Salary exp is very high not suitable', 108, '0000-00-00 00:00:00', 1),
(14956, 14653, 59, 5, 0, 'No Sales Exp Will not sustain and handle our calls not suitable', 108, '0000-00-00 00:00:00', 1),
(14957, 14650, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(14958, 14643, 59, 3, 0, 'Selected for Muthu team in consultant Role', 108, '0000-00-00 00:00:00', 1),
(14959, 14643, 13, 7, 0, 'communication skill good ok kindly confirm joinig', 59, '2023-10-07 04:49:15', 1),
(14960, 14647, 19, 5, 1, 'Rejected', 59, '2023-10-07 04:50:43', 1),
(14961, 14643, 59, 3, 0, 'Selected for Muthu team in consultant Role', 13, '2023-10-07 05:34:43', 1),
(14962, 14665, 97, 4, 0, 'Good covincing skill. sustainbility doubts ..let us try ..Checkxxampupdate your inputs', 104, '0000-00-00 00:00:00', 1),
(14963, 14666, 97, 2, 0, 'Has knowledge in prog.lau...she needs time to discuss with her parents abt txxampc..', 104, '0000-00-00 00:00:00', 1),
(14964, 14662, 97, 5, 0, 'No communication.. has exp in MIS.', 104, '0000-00-00 00:00:00', 1),
(14965, 14667, 97, 5, 0, 'he much prefered logistic feild .. not suit for roles', 104, '0000-00-00 00:00:00', 1),
(14966, 14664, 97, 5, 0, 'Good communication.... has exp in acc but fresher to our industry.. has knowledege in tally gst tax.. sal expt high', 104, '0000-00-00 00:00:00', 1),
(14967, 14654, 59, 4, 0, 'Have Exp in Sales Calling Can be trained in our roles relevant Exp too kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14968, 14665, 89, 7, 0, 'Selected ', 97, '2023-10-09 06:19:47', 1),
(14969, 14661, 59, 5, 0, 'Fresher Need To Learn A Lot Not Much Comfort In TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14970, 14619, 59, 5, 0, 'No Communication No understanding poor Communication not suitable', 104, '0000-00-00 00:00:00', 1),
(14971, 14658, 59, 5, 0, 'Fresher Need To Learn A Lot Not Much Comfort In TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14972, 14656, 59, 5, 0, 'No basics Skills checked for Backend operations but not ok with that', 104, '0000-00-00 00:00:00', 1),
(14973, 14655, 59, 5, 0, 'Fresher need to learn a lot not much comfort in TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14974, 14670, 59, 5, 0, 'No communication understanding poor will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(14975, 14663, 59, 5, 0, 'No Communication No understanding waste profile', 104, '0000-00-00 00:00:00', 1),
(14976, 14121, 59, 3, 0, 'Selected for Kannan Team opted Consultant Role\n', 104, '0000-00-00 00:00:00', 1),
(14977, 14672, 59, 3, 0, 'Selected for Santhosh Team in Staff Role', 60, '0000-00-00 00:00:00', 1),
(14978, 14672, 18, 7, 4, 'Reference Candidate selected for Santosh Team Immed Joiner and Package shall be discussed by arun', 59, '2023-10-09 07:40:05', 1),
(14979, 14654, 13, 7, 0, 'Good communication skill and Product knowledge kindly confirm joining date', 59, '2023-10-09 07:41:13', 1),
(14980, 14121, 19, 7, 5, 'Selected', 59, '2023-10-09 07:41:56', 1),
(14981, 14654, 59, 1, 0, NULL, 13, '2023-10-10 10:04:15', 1),
(14982, 14672, 60, 1, 0, NULL, 18, '2023-10-10 10:23:29', 1),
(14983, 14657, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(14984, 14677, 74, 7, 0, 'She is a fresher , completed accounts currently, mother working as a house keeping in singapore, father tailor, over all income for family 40k , sister marrier 2 years back so facing financial struggle,, rental house in kumbakonam, native thanjavur , father work in thanjavur, and stay in grandma house , brother studied in kumbakonam and lavanaya also stay in kumbakonam in a rental house, have laptop and ready to join immedietly, , mentally unstable didnt make a right decision , voice active and job need higly , have laptop, kindly check and confirm your side 12k salary ', 108, '0000-00-00 00:00:00', 1),
(14985, 14688, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14986, 14689, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14987, 14678, 59, 3, 0, 'Selected for Shanmugam team in Staff Role', 104, '0000-00-00 00:00:00', 1),
(14988, 14687, 59, 5, 0, 'Too long Distance no sustainability not suitable', 104, '0000-00-00 00:00:00', 1),
(14989, 14675, 59, 5, 0, 'Too long Distance 60kms up down will not sustain', 104, '0000-00-00 00:00:00', 1),
(14990, 14684, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14991, 14683, 59, 5, 0, 'Not Suitable No professional Candidate not suitable', 104, '0000-00-00 00:00:00', 1),
(14992, 14680, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14993, 14674, 59, 4, 0, 'Fresher need to train a lot only thing is her physique need to check kindly look into the profile and let us know', 104, '0000-00-00 00:00:00', 1),
(14994, 14673, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14995, 14679, 59, 5, 0, 'Fresher Need To Train A Lot In JS Not Much Ok With TxxampC If He Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(14996, 14681, 59, 5, 0, 'Fresher Need to train a lot in JS Not Much ok with TxxampC If he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(14997, 14685, 59, 4, 0, '5050 Profile fresher Need to train a lot referring your name do check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(14998, 14682, 59, 3, 0, 'Selected for Mani Team Staff Role', 104, '0000-00-00 00:00:00', 1),
(14999, 14685, 53, 1, 0, NULL, 59, '2023-10-10 07:27:37', 1),
(15000, 14678, 44, 7, 4, 'Candidate ok for me please do the Further process ', 59, '2023-10-10 07:34:19', 1),
(15001, 14682, 86, 7, 0, 'Shortlisted For My team', 59, '2023-10-10 07:34:57', 1),
(15002, 14674, 53, 1, 0, NULL, 59, '2023-10-10 07:35:55', 1),
(15003, 14677, 59, 3, 0, 'Selected for Consultant Sustainability Doubts need to analyse in 7 days and confirm', 74, '2023-10-11 10:10:54', 1),
(15004, 14682, 60, 1, 0, NULL, 86, '2023-10-11 10:41:19', 1),
(15005, 14709, 59, 5, 0, 'No suitable for our role Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15006, 14708, 59, 5, 0, 'Malpracticed in her previous Work will not sustain in our roles not suitabel', 104, '0000-00-00 00:00:00', 1),
(15007, 14705, 59, 5, 0, 'Average Communication left without attending the 2nd level', 104, '0000-00-00 00:00:00', 1),
(15008, 14706, 59, 5, 0, 'Not suitabke no sustainability ', 104, '0000-00-00 00:00:00', 1),
(15009, 14704, 59, 4, 0, 'Terminated Ex Emp since not getting jobs due to eduction drop looking for opportunities', 104, '0000-00-00 00:00:00', 1),
(15010, 14702, 59, 4, 0, 'Have Exp in sales Location only constraint can be trained exp high kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15011, 14695, 59, 5, 0, 'No basics Sales Skills no Communication not suitable', 104, '0000-00-00 00:00:00', 1),
(15012, 14697, 59, 3, 0, 'Seleted for Mani team in staff role fresh for our domain', 104, '0000-00-00 00:00:00', 1),
(15013, 14703, 59, 5, 0, 'Too Long Distance Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15014, 14701, 59, 5, 0, 'No Communication Fresher for our Roles holding an offer for 15K Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15015, 14700, 59, 5, 0, 'Too Long Distance Will Not Sustain No Communication not suitable', 104, '0000-00-00 00:00:00', 1),
(15016, 14699, 59, 5, 0, 'Too Long Distance Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15017, 14698, 59, 5, 0, 'Too long Distance will not sustain', 104, '0000-00-00 00:00:00', 1),
(15018, 14696, 59, 4, 0, '5050 Fresher for our roles kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15019, 14665, 59, 3, 0, 'Selected for Babu Team Consultant Role', 89, '2023-10-11 06:13:24', 1),
(15020, 14702, 13, 7, 0, 'she is already experience in star ok but salary Exp is High kindly check ', 59, '2023-10-11 07:43:51', 1),
(15021, 14704, 29, 1, 0, NULL, 59, '2023-10-11 07:46:58', 1),
(15022, 14696, 13, 5, 0, 'she is not fit for tele sales, voice is very low and communication skill not well', 59, '2023-10-11 07:49:49', 1),
(15023, 14697, 86, 4, 0, 'Selected for next Round', 59, '2023-10-11 07:50:33', 1),
(15024, 14697, 18, 7, 0, 'Immed joiner for mani team. Asked Arun to negotiate the salary. Reference candidate but need to filter in the 1st week...', 86, '2023-10-12 09:51:41', 1),
(15025, 14697, 60, 1, 0, NULL, 18, '2023-10-12 09:56:57', 1),
(15026, 14678, 60, 1, 0, NULL, 44, '2023-10-12 10:01:27', 1),
(15027, 14692, 74, 7, 0, 'she is ok with the profile , clear and active mindset, completed b.ed in thiruchengodu....i thnajvur getting 7k for teaching profile so decide to join in cafs....father farmer mother house wife and heart patient, chiristina also have heart problem, but in basic stage getting tablets only, open minded , have laptop and joining on monday, expected 12k and have one younger sister , studied 12th, near by house only 10 mins to reach office, kindly check once and confirm,', 108, '0000-00-00 00:00:00', 1),
(15028, 14692, 59, 3, 0, 'Selected for Thanjavur consultant Role Need to analyse in 7days Teacher profile focused candidate', 74, '2023-10-12 01:03:43', 1),
(15029, 14728, 59, 4, 0, 'Have 7 months Exp in calling 5050 can be trained kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15030, 14712, 59, 5, 0, 'Left Without attending', 108, '0000-00-00 00:00:00', 1),
(15031, 14732, 59, 5, 0, 'No basic ideas in Accounts skills not suitable', 108, '0000-00-00 00:00:00', 1),
(15032, 14735, 59, 5, 0, 'Communication Average will not handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(15033, 14729, 59, 5, 0, 'Will not sustain and handle our work pressure Not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15034, 14721, 59, 4, 0, '5050 profile Previous sustainability no Sounding Good kindly check and let me know yourinputs', 108, '0000-00-00 00:00:00', 1),
(15035, 14731, 59, 5, 0, 'Not suitable for our roles have super market exp will not sustain and handle our pressure', 108, '0000-00-00 00:00:00', 1),
(15036, 14710, 59, 5, 0, 'Fresher not open for TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15037, 14711, 59, 5, 0, 'Fresher Not Open For TxxampC If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15038, 14725, 59, 5, 0, 'Have Exp but not much strong min exp is 30K', 108, '0000-00-00 00:00:00', 1),
(15039, 14727, 59, 5, 0, 'Too age for our roles 47yrs not suitable', 108, '0000-00-00 00:00:00', 1),
(15040, 14707, 59, 5, 0, 'Fresher Not muchOpen For TxxampC If He Comes Back Let Us Try too long distance', 108, '0000-00-00 00:00:00', 1),
(15041, 14726, 59, 5, 0, 'Fresher for our roles have admin exp will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15042, 14718, 59, 5, 0, 'Frequent job changes career gap not much importance for the job not suitbale', 108, '0000-00-00 00:00:00', 1),
(15043, 14717, 59, 5, 0, 'No voice Clarity Pronunciation poor not suitable', 108, '0000-00-00 00:00:00', 1),
(15044, 14686, 59, 5, 0, 'Fresher Not Open For TxxampC If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15045, 14720, 59, 5, 0, '\nfor time being looking for the job will not sustain not suitbale', 108, '0000-00-00 00:00:00', 1),
(15046, 14723, 59, 4, 0, 'Fresher for our role can give a try kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15047, 14671, 59, 4, 0, 'Fresher Sounding soft can be trained kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15048, 14734, 59, 5, 0, 'Not suitable age around 42 yrs communication average his current earning 50K', 108, '0000-00-00 00:00:00', 1),
(15049, 14671, 53, 1, 0, NULL, 59, '2023-10-12 07:06:18', 1),
(15050, 14721, 51, 5, 0, 'Rejected', 59, '2023-10-12 07:13:46', 1),
(15051, 14723, 53, 1, 0, NULL, 59, '2023-10-12 07:23:29', 1),
(15052, 14728, 13, 7, 0, 'She is 7 Months Exp In Tele Calling, voice is bold and communication skill ok will be Trained our role so kindly confirm joining Date', 59, '2023-10-12 07:25:31', 1),
(15053, 14121, 59, 3, 0, 'Selected for Kannan Team opted Consultant Role\n', 19, '2023-10-13 10:10:05', 1),
(15054, 14702, 59, 1, 0, NULL, 13, '2023-10-13 11:48:30', 1),
(15055, 14728, 59, 1, 0, NULL, 13, '2023-10-13 12:07:57', 1),
(15056, 14756, 59, 5, 0, 'No basic Skills in IT/Lookin for oracle SQL', 108, '0000-00-00 00:00:00', 1),
(15057, 14754, 59, 5, 0, 'Souding low No Confidene Will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15058, 14755, 59, 5, 0, 'No Understanding Will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15059, 14745, 59, 5, 0, 'Have some medical Issue Earlier Not much Relevant our roles will not handle', 108, '0000-00-00 00:00:00', 1),
(15060, 14746, 59, 5, 0, 'Have Exp in Accounts No Bike Need time to confirm if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15061, 14748, 59, 5, 0, 'Will not Sustain not much comfort in TxxampC Flutter Fresher have reference in IT', 108, '0000-00-00 00:00:00', 1),
(15062, 14747, 59, 5, 0, 'Not open for TxxampC Will not sustain looking for salary only', 108, '0000-00-00 00:00:00', 1),
(15063, 14722, 59, 5, 0, 'Need to learn and come back Sustainability Doubts if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15064, 14744, 59, 5, 0, 'Fresher need to train from scratch Salary Exp min 20K Will not sustain', 108, '0000-00-00 00:00:00', 1),
(15065, 14737, 59, 5, 0, 'Need to learn and come not much comffort in TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15066, 14740, 59, 4, 0, 'Have Exp in Calling for 3months 5050 Sustainability doubts kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15067, 14741, 59, 4, 0, 'Have Exp in calling and different exposure 5050 for our sales roles kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15068, 14749, 59, 4, 0, '5050 profile Sustainability doubts check for mani team and let me know your status', 108, '0000-00-00 00:00:00', 1),
(15069, 14769, 59, 5, 0, 'Too long Distance only to relocate to native looking for opportunities will not sustain', 104, '0000-00-00 00:00:00', 1),
(15070, 14768, 59, 5, 0, 'Too Long Distance Will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(15071, 14766, 59, 5, 0, 'Location constraint he is from Kanchipuram Not much comfort in Relocation will not sustain and over confidence', 104, '0000-00-00 00:00:00', 1),
(15072, 14765, 59, 5, 0, 'Flutter Exp for 8 months Salary Exp is very high min 25K Will not sustain and focus much for salary only', 104, '0000-00-00 00:00:00', 1),
(15073, 14761, 59, 5, 0, 'Not much in basics Need to learn a lot if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15074, 14757, 59, 5, 0, 'Not Mcuh Good in Basics Need to come back with his confirmation if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15075, 14743, 59, 5, 0, 'Looking for Salary Only Will not sustain in our roles Reference he has with other companies too', 104, '0000-00-00 00:00:00', 1),
(15076, 14764, 59, 3, 0, 'Selected for Mutual Fund Fresher in Staff no Stat Role need to train from Scratch', 104, '0000-00-00 00:00:00', 1),
(15077, 14749, 71, 5, 0, 'Not Fit For Sales', 59, '2023-10-14 05:18:04', 1),
(15078, 14740, 57, 1, 0, NULL, 59, '2023-10-14 05:20:16', 1),
(15079, 14741, 19, 5, 1, 'not fit for sales', 59, '2023-10-14 05:21:00', 1),
(15080, 14813, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15081, 14798, 59, 5, 0, 'Left With Out Attending', 108, '0000-00-00 00:00:00', 1),
(15082, 14819, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15083, 14784, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15084, 14808, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15085, 14802, 59, 5, 0, 'Not suitable for our roles will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15086, 14812, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15087, 14806, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15088, 14805, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15089, 14782, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15090, 14818, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15091, 14803, 59, 5, 0, 'Left With Out Attending', 108, '0000-00-00 00:00:00', 1),
(15092, 14786, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15093, 14785, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15094, 14783, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15095, 14788, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15096, 14796, 59, 3, 0, 'Node -6k-8k then 10-15K 3.5 yrs SA', 104, '0000-00-00 00:00:00', 1),
(15097, 14814, 59, 2, 0, 'Need to come back after her confirmation from parents on TxxampC', 108, '0000-00-00 00:00:00', 1),
(15098, 14781, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15099, 14780, 59, 5, 0, 'Need to come back with his confirmation on TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15100, 14800, 59, 5, 0, 'Not Active Profile will not sustain not suitable', 104, '0000-00-00 00:00:00', 1),
(15101, 14790, 59, 5, 0, 'Need to confirm his acceptance on the TxxampC if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15102, 14811, 59, 2, 0, 'Need to come back with his confirmation on TxxampC\n', 108, '0000-00-00 00:00:00', 1),
(15103, 14801, 59, 5, 0, 'Looking for non Voice process only', 104, '0000-00-00 00:00:00', 1),
(15104, 14817, 59, 5, 0, 'Left With Out Attending', 108, '0000-00-00 00:00:00', 1),
(15105, 14774, 59, 4, 0, 'Have Exp in Sales but not a relevant one Sounding Good Can be trained in our roles sir kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15106, 14816, 59, 5, 0, 'Left With Out Attending', 108, '0000-00-00 00:00:00', 1),
(15107, 14804, 59, 5, 0, 'Not suitable Low Quality Candidate will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(15108, 14815, 59, 5, 0, 'Left with out attending', 108, '0000-00-00 00:00:00', 1),
(15109, 14807, 59, 2, 0, 'Need to come with his confirmation and yet to get his Github link for project access\n', 104, '0000-00-00 00:00:00', 1),
(15110, 14777, 59, 5, 0, 'Too long Distance no bike Sustainability issue Not much strong with Accounts Skills', 108, '0000-00-00 00:00:00', 1),
(15111, 14763, 59, 5, 0, 'Sounding Low and no confidence will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(15112, 14760, 59, 5, 0, 'Have exp as process Asso Recently married and sustainability doubts if she comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15113, 14792, 59, 5, 0, 'Will not Run in a long Mentioned Exp and the salary exp is high will not sustain', 108, '0000-00-00 00:00:00', 1),
(15114, 14793, 59, 5, 0, 'Too long Distance Will not sustain need to learn a lot ', 108, '0000-00-00 00:00:00', 1),
(15115, 14794, 59, 5, 0, 'Not much comfort in TxxampC if he comes back let us try need to learn and come', 108, '0000-00-00 00:00:00', 1),
(15116, 14795, 59, 5, 0, 'Not open for TxxampC Need Time to think and confirm if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15117, 14797, 59, 5, 0, 'Mentioned Exp in relevant Attitude candidate frequent job changes will not suits for our role', 108, '0000-00-00 00:00:00', 1),
(15118, 14767, 59, 5, 0, 'VEry Slow Candidate not Aggressive will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15119, 14791, 74, 7, 0, 'he is ok with the profile father telling farmer but refered by bala he i telling father in foreign only, 3 acres land having for farming, have laptop , completed mba hr and fresher also expected 12k, and ready to join , kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(15120, 14791, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-10-16 06:53:20', 1),
(15121, 14774, 31, 1, 0, NULL, 59, '2023-10-16 06:57:14', 1),
(15122, 14809, 59, 2, 0, 'Will come for final round with Gokul 2nd Round sathish ok with the profile for backend node', 104, '0000-00-00 00:00:00', 1),
(15123, 14779, 74, 7, 0, 'he is ok with the profile father passed away 20 years back, now staying in uncles home in orathanadu, 1 hour travel, brother working in construction company earning 15k, mother cancer patient, highly job need and have rsponspility to take care of him, completed BE automobile and have little experience in automobile industry ....expected 15 to 18k, ready to join after pooja holidays,have laptop kindly confirm once not concluded about salary so cross check once, but candidate in good quaity fit for team and sales', 108, '0000-00-00 00:00:00', 1),
(15124, 14827, 59, 2, 0, 'Final Round Pending 2nd round with Sathish', 104, '0000-00-00 00:00:00', 1),
(15125, 14843, 59, 5, 0, 'Seems to be not genuine with his exp will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(15126, 14820, 59, 5, 0, 'No Sustainability in her previous exp will not sustain in our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(15127, 14840, 59, 5, 0, 'Looking for non Voice Process only', 104, '0000-00-00 00:00:00', 1),
(15128, 14828, 59, 5, 0, 'Too long Distance Will not sustain and not suitable', 104, '0000-00-00 00:00:00', 1),
(15129, 14835, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15130, 14829, 59, 5, 0, 'Not open for TxxampC Will notSustain not suitbale', 104, '0000-00-00 00:00:00', 1),
(15131, 14825, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15132, 14824, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15133, 14823, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain if he comes back let us try in our roles', 104, '0000-00-00 00:00:00', 1),
(15134, 14822, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15135, 14821, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15136, 14831, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15137, 14841, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15138, 14833, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15139, 14837, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15140, 14836, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15141, 14838, 59, 5, 0, 'Not open for Terms and conditions fresher for our roles not suitable will not sustain', 104, '0000-00-00 00:00:00', 1),
(15142, 14834, 59, 5, 0, 'Not Open For Terms And Conditions Fresher For Our Roles Not Suitable Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15143, 14830, 59, 5, 0, 'Technical Round Reject by Kavya', 104, '0000-00-00 00:00:00', 1),
(15144, 14779, 59, 1, 0, NULL, 74, '2023-10-17 04:40:47', 1),
(15145, 14853, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15146, 14861, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15147, 14852, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15148, 14851, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15149, 14863, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15150, 14850, 59, 4, 0, '5050 Profile open fr TxxampC Kindly chek an dlet me knwo your inputs', 108, '0000-00-00 00:00:00', 1),
(15151, 14846, 59, 5, 0, 'Not suitable will not handle our work pressure profile will not sustain', 108, '0000-00-00 00:00:00', 1),
(15152, 14848, 59, 5, 0, 'Looking only for Salary Growth No ideas in MIS No Communication not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15153, 14845, 59, 2, 0, 'Need to check with Gokul for MIS Have Exp but need to finalise based on the final round Will confirm later', 108, '0000-00-00 00:00:00', 1),
(15154, 14864, 59, 2, 0, 'Should check for other profile if he comes back', 108, '0000-00-00 00:00:00', 1),
(15155, 14854, 59, 5, 0, 'Not suitable fr our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15156, 14847, 59, 5, 0, 'Need time to confirm the TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15157, 14856, 59, 5, 0, 'No Sustainability frequent Job Changes not suitable', 108, '0000-00-00 00:00:00', 1),
(15158, 14770, 59, 5, 0, 'Not open for TxxampC', 108, '0000-00-00 00:00:00', 1),
(15159, 14868, 59, 5, 0, 'Too long Distance Looking for non voice', 108, '0000-00-00 00:00:00', 1),
(15160, 14866, 59, 5, 0, 'Fresher For Our Sales Need To Be Trained Kindly Check For Muthu Team And Let Me Know The Status', 108, '0000-00-00 00:00:00', 1),
(15161, 14865, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15162, 14862, 59, 5, 0, 'Will not sustain up and down 50kms not in a stable mind will not sustain', 108, '0000-00-00 00:00:00', 1),
(15163, 14844, 59, 3, 0, 'Selected for GK Sir Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15164, 14867, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15165, 14859, 59, 5, 0, 'Not openf or TxxampC', 108, '0000-00-00 00:00:00', 1),
(15166, 14860, 59, 5, 0, 'Not open for TxxampC', 108, '0000-00-00 00:00:00', 1),
(15167, 14857, 108, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15168, 14849, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15169, 14855, 108, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15170, 14858, 108, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15171, 14844, 31, 4, 4, 'Candidate okay forwarded to next round', 59, '2023-10-18 07:24:51', 1),
(15172, 14865, 13, 7, 0, 'voice clarity and confident level is ok ,will be Trained kindly confirm joining date', 59, '2023-10-18 07:26:52', 1),
(15173, 14850, 27, 1, 0, NULL, 59, '2023-10-18 07:33:07', 1),
(15174, 14867, 89, 7, 0, 'Selected ', 59, '2023-10-18 07:40:54', 1),
(15175, 14789, 59, 3, 0, 'SElected for ITintern 5m plus 3 yrs emp ', 60, '0000-00-00 00:00:00', 1),
(15176, 14869, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15177, 14893, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15178, 14886, 59, 4, 0, 'Have Exp in Sales Calling Can be trained in our roles kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15179, 14894, 59, 5, 0, 'Not Much active Very slow will not handle our roles', 108, '0000-00-00 00:00:00', 1),
(15180, 14890, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15181, 14892, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15182, 14885, 59, 5, 0, 'Not open for Customer Support Salary exp is high will not sustain', 108, '0000-00-00 00:00:00', 1),
(15183, 14880, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15184, 14882, 59, 5, 0, 'Fresher for Roles need to open a lot will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15185, 14884, 59, 5, 0, 'Not suitable need to open a lot will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15186, 14870, 59, 5, 0, 'Career Gap not much interest with the jobs will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15187, 14867, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 89, '2023-10-19 06:17:19', 1),
(15188, 14881, 59, 5, 0, 'Not much active iwll not handle need to open up', 108, '0000-00-00 00:00:00', 1),
(15189, 14877, 59, 4, 0, '5050 Profile have exp in same but sustainability doubts considering her marriage proposals kindly check and let me know you inputs', 108, '0000-00-00 00:00:00', 1),
(15190, 14871, 59, 5, 0, 'Not suitable profile will not handle our roles', 108, '0000-00-00 00:00:00', 1),
(15191, 14773, 59, 5, 0, 'Fresher for our roles Not open for TxxampC Need to learn a lot if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15192, 14878, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15193, 14879, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15194, 14883, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15195, 14873, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15196, 14875, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(15197, 14874, 59, 5, 0, 'Fresher For Our Roles Not Open For TxxampC Need To Learn A Lot If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15198, 14886, 31, 1, 0, NULL, 59, '2023-10-19 07:15:53', 1),
(15199, 14877, 13, 7, 0, 'star la 2yrs experience irukku but basic terms kooda clear ah terila but communication skill ok joining Date confirm pannaum', 59, '2023-10-19 07:19:57', 1),
(15200, 14877, 59, 1, 0, NULL, 13, '2023-10-20 10:04:59', 1),
(15201, 14909, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15202, 14916, 59, 3, 0, 'Selected for Intern with TxxampC', 108, '0000-00-00 00:00:00', 1),
(15203, 14915, 59, 2, 0, 'Need to come back with his confirmation on the TxxampC if he comes back let us try Final round with Gokul Done he is almost ok with the candidate', 108, '0000-00-00 00:00:00', 1),
(15204, 14912, 59, 5, 0, 'No Local Language Gujarati Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15205, 14901, 59, 5, 0, 'Looking for Home healthcare based profile not suitable for us will not sustain in our roles', 108, '0000-00-00 00:00:00', 1),
(15206, 14776, 59, 5, 0, 'Looking for salary rise only 9 months exp and min 18K Exp not relevant exp too not much comfort in Telesales', 108, '0000-00-00 00:00:00', 1),
(15207, 14905, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15208, 14908, 59, 5, 0, 'Lookin for AR Analyst Role not suitable', 108, '0000-00-00 00:00:00', 1),
(15209, 14876, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15210, 14903, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15211, 14872, 59, 5, 0, 'Not open for TxxampC Need to learn a lot Fresher if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15212, 14906, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15213, 14913, 59, 5, 0, 'Left wothout attending', 108, '0000-00-00 00:00:00', 1),
(15214, 14895, 59, 2, 0, 'Round with Manikandan Auditor Hold not much good with basics', 108, '0000-00-00 00:00:00', 1),
(15215, 14910, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15216, 14902, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15217, 14898, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15218, 14899, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15219, 14897, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15220, 14907, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15221, 14904, 59, 5, 0, 'Not Open For TxxampC Need To Learn A Lot Fresher If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15222, 14891, 59, 4, 0, 'have Exp in Calling Sustainability Ok with previous exp Salary exp is min 35K Kindly check and let me know your inputs sir', 108, '0000-00-00 00:00:00', 1),
(15223, 14900, 59, 5, 0, 'Not suitable for our roles ', 108, '0000-00-00 00:00:00', 1),
(15224, 14917, 59, 5, 0, 'Too long Distance will not sustain and not suitbale', 108, '0000-00-00 00:00:00', 1),
(15225, 14891, 18, 8, 0, 'Not Attended', 59, '2023-10-20 07:39:22', 1),
(15226, 14922, 59, 2, 0, 'Need to come for final round fresher can give a try for MIS need to check with Gokul', 104, '0000-00-00 00:00:00', 1),
(15227, 14923, 59, 5, 0, 'Not open for TxxampC He needs time to confirm if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15228, 14924, 59, 5, 0, 'No Sustainability need to open up alot will not sustain and not suitbale', 104, '0000-00-00 00:00:00', 1),
(15229, 14921, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(15230, 14921, 13, 7, 0, 'communication skill and Confident level is ok kindly konfirm joining date', 59, '2023-10-21 06:54:42', 1),
(15231, 14921, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-10-24 11:13:02', 1),
(15232, 14896, 59, 5, 0, 'Not Much ok with the TxxampC Will not sustain Fresher ', 104, '0000-00-00 00:00:00', 1),
(15233, 13488, 59, 5, 0, 'Not Sutible for our roles will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(15234, 14932, 59, 5, 0, 'Not Much Ok With The TxxampC Will Not Sustain Fresher ', 104, '0000-00-00 00:00:00', 1),
(15235, 14933, 59, 5, 0, 'Not Much Ok With The TxxampC Will Not Sustain Fresher ', 104, '0000-00-00 00:00:00', 1),
(15236, 14942, 59, 5, 0, 'Not Much Ok With The TxxampC Will Not Sustain Fresher ', 104, '0000-00-00 00:00:00', 1),
(15237, 14940, 59, 5, 0, 'Not Suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(15238, 14937, 59, 5, 0, 'Looking for non voice Process ', 104, '0000-00-00 00:00:00', 1),
(15239, 14919, 59, 5, 0, 'Left Without attending the 2nd level interview with Muthu', 104, '0000-00-00 00:00:00', 1),
(15240, 14934, 59, 5, 0, 'Left Without Attending The 2nd Level Interview With Muthu', 104, '0000-00-00 00:00:00', 1),
(15241, 14935, 59, 5, 0, 'Left Without Attending The 2nd Level Interview With Muthu', 104, '0000-00-00 00:00:00', 1),
(15242, 14944, 59, 5, 0, 'Not suitable for ourroles will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(15243, 14936, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(15244, 14927, 59, 2, 0, 'Ok with TxxampC Shortlisted by Gokul yet to confirm the DOJ', 85, '0000-00-00 00:00:00', 1),
(15245, 14929, 59, 3, 0, 'Selected for IT intern Employment', 85, '0000-00-00 00:00:00', 1),
(15246, 14941, 59, 2, 0, '5050 Profile have a atttitude need time to confirm by Gokul', 85, '0000-00-00 00:00:00', 1),
(15247, 14943, 59, 4, 0, 'Team Reference not open for Telesales kindly check and let me know your inputs', 85, '0000-00-00 00:00:00', 1),
(15248, 14943, 57, 5, 0, 'Not good', 59, '2023-10-24 07:41:28', 1),
(15249, 14936, 57, 7, 0, 'Candidate is ok he have 6 month lil Experience same domain \n\nOk confirm salary and joining date', 59, '2023-10-24 07:45:34', 1),
(15250, 14936, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2023-10-24 09:26:40', 1),
(15251, 14844, 29, 7, 3, 'gk team', 31, '2023-10-25 07:02:20', 1),
(15252, 14844, 59, 3, 0, 'Selected for GK Sir Team in Staff Role', 29, '2023-10-26 10:24:19', 1),
(15253, 14931, 59, 5, 0, 'Not suitable for our roles not open for target based will not sustain', 104, '0000-00-00 00:00:00', 1),
(15254, 14969, 59, 2, 0, 'Candidate need to confirm her joining', 108, '0000-00-00 00:00:00', 1),
(15255, 14953, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15256, 14939, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15257, 14947, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15258, 14946, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15259, 14938, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15260, 14945, 59, 2, 0, 'Need to schedule virtual Round for the accounts salary Exp is high', 104, '0000-00-00 00:00:00', 1),
(15261, 14968, 59, 5, 0, 'Fresher not suitable for Roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15262, 14948, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 104, '0000-00-00 00:00:00', 1),
(15263, 14600, 59, 5, 0, 'Candidate Not much open with the TxxampC Need to check with family and come back if comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15264, 14950, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15265, 14965, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15266, 14959, 59, 5, 0, 'Too lon Distance will not sustain in our roles not suitable ', 108, '0000-00-00 00:00:00', 1),
(15267, 14977, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15268, 14972, 59, 5, 0, 'Mentally he is not stable not suitable will not sustain', 108, '0000-00-00 00:00:00', 1),
(15269, 14958, 59, 3, 0, 'Selected for MIS role Final Round Shortlisted by Gokul Candidate need to give his confirmation on Roles\n', 108, '0000-00-00 00:00:00', 1),
(15270, 14973, 59, 5, 0, 'Over Confidence Communication Ok but wuill not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15271, 14962, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15272, 14954, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15273, 14956, 59, 5, 0, ' too long Distance will not sustain in our roles pressure handling Doubts not suitable', 108, '0000-00-00 00:00:00', 1),
(15274, 14964, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15275, 14963, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15276, 15021, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15277, 15020, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15278, 15019, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15279, 15004, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15280, 15016, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15281, 15015, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15282, 15005, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15283, 15003, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15284, 15014, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15285, 15002, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15286, 15013, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15287, 15011, 59, 5, 0, 'Will not sustain in our roles not suitable pressure handling doubts', 108, '0000-00-00 00:00:00', 1),
(15288, 15012, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15289, 14928, 59, 2, 0, 'Virtual should be arranged Need to check for accounts', 108, '0000-00-00 00:00:00', 1),
(15290, 15007, 59, 4, 0, '5050 Profile have exp but need to check for roles kindly check ans let us know your inputs', 108, '0000-00-00 00:00:00', 1),
(15291, 15010, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15292, 15022, 30, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15293, 14952, 59, 3, 0, 'Selected for Mutual Fund Role in Staff No Stat fnal round with Gokul and got selecetd', 60, '0000-00-00 00:00:00', 1),
(15294, 15024, 59, 2, 0, 'Need to check for Virtual Accounts Profile', 108, '0000-00-00 00:00:00', 1),
(15295, 15037, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15296, 15023, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15297, 15036, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15298, 15032, 59, 2, 0, 'Need to confirm the DOj for MIS Final Roudn with Gokul if he comes abck let us try', 108, '0000-00-00 00:00:00', 1),
(15299, 15031, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15300, 15035, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15301, 15034, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15302, 15028, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15303, 15018, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15304, 15027, 59, 5, 0, 'Appeared for Accounts Profile Not Much quality on the profile will not sustain and handle the pressure', 108, '0000-00-00 00:00:00', 1),
(15305, 15038, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15306, 15063, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15307, 15055, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15308, 15061, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15309, 15054, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15310, 15041, 59, 5, 0, 'Not suitable for our roles will not sustain in our profile ', 104, '0000-00-00 00:00:00', 1),
(15311, 15053, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15312, 15047, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15313, 15044, 59, 5, 0, 'Much focusin non voice process Will not run in a long', 104, '0000-00-00 00:00:00', 1),
(15314, 15050, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15315, 15052, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15316, 15051, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15317, 15029, 59, 5, 0, 'Appeared For Accounts Profile Not Much Quality On The Profile Will Not Sustain And Handle The Pressure', 108, '0000-00-00 00:00:00', 1),
(15318, 15049, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15319, 15048, 59, 5, 0, 'Looking for non voice process only not suitable for our other roles too', 108, '0000-00-00 00:00:00', 1),
(15320, 15062, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15321, 15059, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15322, 15057, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15323, 15060, 59, 5, 0, 'Candidate Not Much Open With The TxxampC Need To Check With Family And Come Back If Comes Back Let Us Try', 104, '0000-00-00 00:00:00', 1),
(15324, 15056, 59, 5, 0, 'Have Exp but not much suits for our sales call,will not take call not suitable', 104, '0000-00-00 00:00:00', 1),
(15325, 15075, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15326, 15081, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15327, 15085, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15328, 15083, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15329, 15079, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15330, 15080, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15331, 15065, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15332, 15066, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15333, 15077, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15334, 15074, 97, 5, 0, 'looking for inside sales sal expt high', 108, '0000-00-00 00:00:00', 1),
(15335, 15067, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15336, 15073, 97, 7, 0, 'Candidate from qspider interviewed xxamp Selected by gokul.', 108, '0000-00-00 00:00:00', 1),
(15337, 15069, 97, 7, 0, 'Candidate from Q-spider.. Interviewed xxamp Selected By gokul.', 108, '0000-00-00 00:00:00', 1),
(15338, 15078, 97, 7, 0, 'Has knowledge in HTML,CSSxxampJS..SNR technical Interviewed by lokesh . xxamp Final Round interviewed xxamp Selected by Gokul ', 108, '0000-00-00 00:00:00', 1),
(15339, 15076, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15340, 15073, 59, 3, 0, 'Selected for IT intern and employment', 97, '2023-11-02 10:01:38', 1),
(15341, 15069, 59, 3, 0, 'Intern with 5month 5K Stipend then 10-12K Salary ', 97, '2023-11-02 05:44:00', 1),
(15342, 15078, 59, 1, 0, NULL, 97, '2023-11-02 05:52:30', 1),
(15343, 15104, 59, 5, 0, 'Not suitable No sustainability Communication Average will not handle our roles', 108, '0000-00-00 00:00:00', 1),
(15344, 14733, 59, 3, 0, 'Intern With Employment 5months6K then 3yrs 10-14K', 60, '0000-00-00 00:00:00', 1),
(15345, 15097, 59, 2, 0, 'Hold by Gokul Direct Meet with Gokul and the Profile on Hold if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15346, 15105, 59, 2, 0, 'Have Exp fresher for our Roles Good Communication Final round with Gokul if he os ok for 1.8LPA for 3 month then 2.4 we can proceed', 104, '0000-00-00 00:00:00', 1),
(15347, 15106, 59, 5, 0, 'Not attended', 104, '0000-00-00 00:00:00', 1),
(15348, 15107, 59, 5, 0, 'Final Round Reject by Gokull Will not sustain have Exp in BGV process Not suitable', 104, '0000-00-00 00:00:00', 1),
(15349, 15110, 59, 5, 0, 'Final Round Reject by Gokul Fresher will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(15350, 15112, 59, 2, 0, 'Good Candidate have Exp in MIS Final Round with Gokul Candidate need to give his confirmation on the salary if he is ok for 3LPa we can proceed', 104, '0000-00-00 00:00:00', 1),
(15351, 15114, 59, 4, 0, '5050 Profile have few months exp sustainability doubts kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15352, 15113, 59, 5, 0, 'Technical Team reject with Sathish group meet with sathish', 104, '0000-00-00 00:00:00', 1),
(15353, 15115, 59, 3, 0, 'React-6k-8k then 10-15K', 104, '0000-00-00 00:00:00', 1),
(15354, 15116, 59, 2, 0, 'Final Round with Gokul and selected for MIS 30% Hike approved by Gokul notice he need to serve and confirm the Date', 104, '0000-00-00 00:00:00', 1),
(15355, 15117, 59, 5, 0, 'Technical round rejct with Sathish Group Meet with Sathish', 104, '0000-00-00 00:00:00', 1),
(15356, 15118, 59, 5, 0, 'Technical Round Reject with Sathish Group Meet with Sathish', 104, '0000-00-00 00:00:00', 1),
(15357, 15120, 59, 5, 0, 'Communication Ok but the salary exp is high and sustainability doubts A LOT', 104, '0000-00-00 00:00:00', 1),
(15358, 15123, 59, 5, 0, 'No Basic Skills in recruitment Have 6 months Exp and looking only for the salary growth', 104, '0000-00-00 00:00:00', 1),
(15359, 15124, 59, 5, 0, 'Fresher Pressure handling No wll not sustain and handle our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(15360, 15127, 74, 7, 0, 'she is ok with the profile already worked in us voice process in a health care centre and releived due night shift , expected 15k worked 1 year and now brother stomach operation now he wants to join with family and work in thanjavur only required , family dicussed about maried after one year, have laptop and kindly check once for joining and cross check once sir', 108, '0000-00-00 00:00:00', 1),
(15361, 15114, 13, 5, 0, 'she is not fit for tele sales and voice is very low', 59, '2023-11-04 03:24:20', 1),
(15362, 15007, 44, 1, 0, NULL, 59, '2023-11-04 03:45:54', 1),
(15363, 15103, 59, 5, 0, 'Not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15364, 15102, 54, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15365, 15100, 54, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15366, 15099, 54, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15367, 15089, 59, 5, 0, 'No basic skillls will not sustain in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15368, 15141, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(15369, 15134, 59, 3, 0, 'Selecetd for Recruiter need to give her confirmation on Roles', 108, '0000-00-00 00:00:00', 1),
(15370, 15144, 59, 4, 0, 'Have Exp in calling need to check her sustainability ', 108, '0000-00-00 00:00:00', 1),
(15371, 15139, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15372, 15138, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15373, 15135, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15374, 15137, 59, 5, 0, 'No confidence need to open a lot not suitable', 108, '0000-00-00 00:00:00', 1),
(15375, 15133, 59, 5, 0, 'Need to open up a lot pressure handling doubt not suitable', 108, '0000-00-00 00:00:00', 1),
(15376, 15121, 59, 5, 0, 'Not open for timing between 09-07 Will not sustain', 108, '0000-00-00 00:00:00', 1),
(15377, 15132, 59, 5, 0, 'Need to open up Pronunciation not much ok not suitbale', 108, '0000-00-00 00:00:00', 1),
(15378, 15131, 59, 5, 0, 'Long Career Gap medicall issue sustainability doubts a lot not suitable', 108, '0000-00-00 00:00:00', 1),
(15379, 15143, 59, 5, 0, 'Attitude Issue not suitable will not handle the work pressure ', 108, '0000-00-00 00:00:00', 1),
(15380, 15142, 59, 2, 0, 'Need to check for Testing Role in IT final round pending with Gokul', 108, '0000-00-00 00:00:00', 1),
(15381, 15140, 59, 5, 0, 'Too long Distance Career Gap will not run in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15382, 15136, 59, 5, 0, 'No Education only 10th long Career Gap 10 yrs blank no ideas in calling not suitable', 108, '0000-00-00 00:00:00', 1),
(15383, 15147, 59, 3, 0, 'Selected for MIS Role need to confirm his Role Staff or Consultant', 85, '0000-00-00 00:00:00', 1),
(15384, 15144, 19, 5, 1, 'Reject', 59, '2023-11-04 06:11:29', 1),
(15385, 15145, 59, 2, 0, 'Have Exp in Renewal Can give a try for our roles need to come for final round tomorrow with Gokul', 85, '0000-00-00 00:00:00', 1),
(15386, 15150, 59, 5, 0, 'Fresher for our roles home nursing Exp Retail sales exp will not comfort in taking calls not suitable', 85, '0000-00-00 00:00:00', 1),
(15387, 15151, 59, 5, 0, 'Lookingonky for Salary have 18 months exp in ajman dubai have a plan to travel back if he is not getting suitable profile here will not sustain in our roles', 108, '0000-00-00 00:00:00', 1),
(15388, 15152, 74, 7, 0, 'She is ok with the profile completed tamil litreature, travel time 1 and half hour and have no laptop ready to arrange and ready to re locate, also expected 13k and rady to join after diwali, father farmer and elder sister married and younger sister studied nursing.... long distance kindly check once and confirmed sir', 108, '0000-00-00 00:00:00', 1),
(15389, 15109, 74, 5, 0, 'NOT FIT FOR TEAM', 108, '0000-00-00 00:00:00', 1),
(15390, 15152, 59, 3, 0, 'Selected for Sithy Tema in Consltant Role', 74, '2023-11-06 04:49:24', 1),
(15391, 15127, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-11-06 04:57:17', 1),
(15392, 15156, 59, 4, 0, 'Communication Ok Have 2 months exp in Byjus Can be trained in our roles kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15393, 15154, 59, 5, 0, 'Not Comfort with the timings and 6 days work she need time to give her confirmation have exp in operations role', 108, '0000-00-00 00:00:00', 1),
(15394, 15159, 59, 5, 0, 'Not suitable for our roles Notmuch serious with the jobs will not sustain', 108, '0000-00-00 00:00:00', 1),
(15395, 15153, 59, 4, 0, '5050 Profile have exp but not seems to be need to open up a lot kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15396, 15174, 59, 2, 0, 'Need to come for next round with Babu if he is not ok for that can try for Accounts', 108, '0000-00-00 00:00:00', 1),
(15397, 15163, 59, 5, 0, 'Looking for Dot Net Profile Not much comfort in TxxampC', 108, '0000-00-00 00:00:00', 1),
(15398, 15169, 59, 5, 0, 'Not suitable long career gap seems not much active', 108, '0000-00-00 00:00:00', 1),
(15399, 15157, 59, 5, 0, 'Fresher for our roles have 25 days exp in calling and exp salary more will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(15400, 15160, 59, 3, 0, 'Selected for Kannan \nTeam Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15401, 15167, 59, 2, 0, 'Need to come with his confirmation on TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15402, 15155, 59, 4, 0, '5050 Profile Have Exp But Not Seems To Be Need To Open Up A Lot Kindly Check And Let Me Know Your Inputs', 108, '0000-00-00 00:00:00', 1),
(15403, 15161, 59, 4, 0, 'Have Exp ion calling for 10 months can be trained but the salary exp is high for our roles', 108, '0000-00-00 00:00:00', 1),
(15404, 15162, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(15405, 15166, 59, 5, 0, 'Left Without Attending', 108, '0000-00-00 00:00:00', 1),
(15406, 15156, 53, 1, 0, NULL, 59, '2023-11-06 07:14:02', 1),
(15407, 15160, 19, 7, 4, 'Kani Reference', 59, '2023-11-06 07:22:05', 1),
(15408, 15153, 13, 5, 0, 'Voice Clarity and Confident level is very low', 59, '2023-11-06 07:23:35', 1),
(15409, 15155, 13, 5, 0, 'Voice and confident level is very low ', 59, '2023-11-06 07:23:52', 1),
(15410, 15161, 19, 5, 1, 'Rejected', 59, '2023-11-06 07:27:18', 1),
(15411, 15088, 109, 8, 0, 'Left without atten the interview', 104, '0000-00-00 00:00:00', 1),
(15412, 15178, 59, 5, 0, 'Fresjer for our roles came along with her freind will not sustain with out freind', 108, '0000-00-00 00:00:00', 1),
(15413, 15177, 59, 4, 0, '5050 Profile fresher sustainability need to check a lot kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15414, 15111, 59, 4, 0, '5050 Profile have exp in calling but doubts for our role kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15415, 15181, 59, 3, 0, 'Selected for Shanmugam Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15416, 15179, 59, 5, 0, 'Communicaiton OK Fresher for our roles Exp is more left without attending the 2nd level', 108, '0000-00-00 00:00:00', 1),
(15417, 15175, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15418, 15177, 13, 5, 0, 'She is not fit for Tele sales and not sustainability', 59, '2023-11-07 07:40:02', 1),
(15419, 15111, 44, 1, 0, NULL, 59, '2023-11-07 07:40:47', 1),
(15420, 15181, 44, 4, 4, 'Candidate ok for me need your Opinion', 59, '2023-11-07 07:41:34', 1),
(15421, 15180, 30, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15422, 15189, 59, 5, 0, 'Looking for accounts role but focus in salary already working for 15k and exp more will notsustain', 108, '0000-00-00 00:00:00', 1),
(15423, 15183, 59, 2, 0, 'Final Round with Gokul hold for sometime if he comeback let us try exp min 15K TH', 108, '0000-00-00 00:00:00', 1),
(15424, 15186, 59, 5, 0, 'Not open up will nt sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15425, 15188, 59, 5, 0, 'Not open for Field Sales No Communication will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15426, 15185, 59, 4, 0, '5050 Profile have exp in calling can give a try kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15427, 15184, 59, 5, 0, 'fresher min salary exp is 20K not open to negotiate will not sustain attitude already rejecctd several offers only for salary', 108, '0000-00-00 00:00:00', 1),
(15428, 15191, 59, 4, 0, 'Have Exp in Calling but frequent changes having health issues can be trained in our role too long distance check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15429, 15145, 59, 3, 0, 'Selected for MIS Role Role yet to confirm', 59, '2023-11-08 07:18:04', 1),
(15430, 15191, 44, 1, 0, NULL, 59, '2023-11-08 07:29:52', 1),
(15431, 15185, 31, 1, 0, NULL, 59, '2023-11-08 07:34:17', 1),
(15432, 15192, 74, 7, 0, 'She is ok with our profile , already worked as a ar called and move on to wipro as a software developer, for 3 months training period and releived , due to mothers health issue ( jandis) she relocate to thanjavur, sister currently relocate to russia from ukerian due to war studied mbbs, facing loss in the family due to war for sister studies, father govt job now in chennai for training 6 months, so no one is care for mothers health so she is in thanjavur and searching for job, expected 13 to 14k , not intrested to move on in IT so kindly check once for sustainability', 108, '0000-00-00 00:00:00', 1),
(15433, 15197, 59, 3, 0, 'Selected for MF role in Staff No Stat Role Fresher need to be trained', 108, '0000-00-00 00:00:00', 1),
(15434, 15203, 59, 4, 0, '5050 Profile check for Muthu Team only 3 months exp in imarque sustainability doubts kindly check for muthu team and let us know', 108, '0000-00-00 00:00:00', 1),
(15435, 15196, 59, 5, 0, 'Looking for Accounts profile only fresher no basics in accounting skills not suitable', 108, '0000-00-00 00:00:00', 1),
(15436, 15199, 59, 5, 0, 'Too Long Distance almost in the final round with ICICI willnot run in a long need to check later if he comes back', 108, '0000-00-00 00:00:00', 1),
(15437, 15193, 59, 5, 0, 'Looking only for non voice not open for customer Interactions will not sustain', 108, '0000-00-00 00:00:00', 1),
(15438, 15204, 59, 5, 0, 'Fresher need to train from scratch not much comfort in TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15439, 15202, 59, 5, 0, 'Fresher not much Comfort in TxxampC will not sustain and not suitable for our roles too ', 108, '0000-00-00 00:00:00', 1),
(15440, 15195, 59, 2, 0, 'Final Round with Gokul Profile is on Hold need to give confirmation based on the manager input candidate is in dilemma', 108, '0000-00-00 00:00:00', 1),
(15441, 15200, 59, 4, 0, '5050 Profile Have exp in collections calling but Sustainability doubts in our role kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15442, 15194, 59, 5, 0, 'Not open up will not handle the work pressure will not sustain in our roles', 108, '0000-00-00 00:00:00', 1),
(15443, 15206, 59, 5, 0, 'Not clear in the communication Mentioned 2 months exp in Hathway sustainability doubts in our role will not handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(15444, 15209, 59, 5, 0, 'Fresher need to train from scratch not much comfort in TxxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15445, 15208, 59, 5, 0, 'Fresher Career Gap 1yr Not much comfort in TxxampC if he comes back let us try\n', 108, '0000-00-00 00:00:00', 1),
(15446, 15207, 30, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15447, 15203, 57, 1, 0, NULL, 59, '2023-11-10 03:43:26', 1),
(15448, 15200, 13, 5, 0, 'Sustainability is very less', 59, '2023-11-10 03:52:59', 1),
(15449, 15192, 59, 3, 0, '\nselected for Sithy Team Consultant Tole', 74, '2023-11-10 06:28:24', 1),
(15450, 15212, 59, 5, 0, 'Communication Average year back he appeared for IT and now for MIS Written Skills no will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(15451, 15187, 30, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15452, 15160, 59, 3, 0, 'Selected for Kannan \nTeam Consultant Role', 19, '2023-11-11 05:28:53', 1),
(15453, 15205, 59, 3, 0, 'Selected for Santhosh Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15454, 15211, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15455, 15213, 59, 5, 0, 'Notice 60 days looking for salary growth will not sustain in a long pressure handling in our roles doubts', 108, '0000-00-00 00:00:00', 1),
(15456, 15214, 59, 3, 0, 'Selected for Sarath Team Staff Roles', 85, '0000-00-00 00:00:00', 1),
(15457, 15210, 59, 5, 0, 'No Communication written skills poor will not sustain and not suitabel', 85, '0000-00-00 00:00:00', 1),
(15458, 15215, 59, 5, 0, 'Long Career Gap will not sustain in our roles and not suitable', 85, '0000-00-00 00:00:00', 1),
(15459, 15205, 71, 4, 0, 'ok', 59, '2023-11-13 05:47:27', 1),
(15460, 14394, 60, 1, 0, NULL, 30, '2023-11-14 09:49:57', 1),
(15461, 15181, 29, 7, 2, 'have to train Aggressively and check in 7 days and confirm, shanumugam team', 44, '2023-11-14 05:43:17', 1),
(15462, 15217, 59, 4, 0, '5050 Profile Communication Ok have 5 months justdial exp kindly check andlet me knwo your inputs', 108, '0000-00-00 00:00:00', 1),
(15463, 15218, 59, 5, 0, 'Fresher not much comfort in txxampC if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15464, 15219, 59, 5, 0, 'Fresher not much comfort with the terms and conditions if the candidate comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15465, 15220, 59, 5, 0, 'Communication Poor no sustainability will not sustain for a long not suitable', 108, '0000-00-00 00:00:00', 1),
(15466, 15217, 53, 1, 0, NULL, 59, '2023-11-14 07:31:30', 1),
(15467, 15214, 51, 4, 0, 'ok', 59, '2023-11-14 07:33:52', 1),
(15468, 15205, 18, 7, 4, 'Selected for santosh team with 20% Hike. Need 15 days notice to Join', 71, '2023-11-15 12:19:48', 1),
(15469, 15227, 74, 7, 0, 'she is ok with the profile, completed bA history, and now studied part time mba distance education, at present, 10 month experience in data entry thanjavur, and sdk software trainee for 6 months, father retired police officer, brother in militry, she is talk active and good learning skills have better exposure, expected 14k and have laptop imeediate joning kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(15470, 15223, 59, 3, 0, 'Selected for Muthu Team in Consultant role\n', 108, '0000-00-00 00:00:00', 1),
(15471, 15224, 59, 5, 0, 'Not much comfort in Timings too long Distance will not sustain', 108, '0000-00-00 00:00:00', 1),
(15472, 15225, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(15473, 15228, 59, 4, 0, 'have Exp but not much in sales salary is high sustainability internal referencekindly check and let me knowyour inputs', 108, '0000-00-00 00:00:00', 1),
(15474, 15230, 59, 5, 0, 'communication Average MIS role Settled family sustainability doubts a lot not much comfort in TxxampC', 108, '0000-00-00 00:00:00', 1),
(15475, 15229, 59, 2, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(15476, 15231, 59, 5, 0, 'Sounding low will not sustain and not suitable', 108, '0000-00-00 00:00:00', 1),
(15477, 15232, 59, 5, 0, 'Looking for Bio Tech Opportunities will not sustain in our roles he is very clear to proceed with that only', 108, '0000-00-00 00:00:00', 1),
(15478, 15233, 59, 4, 0, 'fresher souding high can give a try kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15479, 15234, 59, 5, 0, 'Left Without attending', 108, '0000-00-00 00:00:00', 1),
(15480, 15235, 59, 5, 0, 'Left Without Attending', 108, '0000-00-00 00:00:00', 1),
(15481, 15236, 59, 5, 0, 'Have Only B2B exp will not take calls and sustain our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15482, 15237, 59, 5, 0, 'Average Profile Scheduled for next round with Shanmugam but left without attending the interview', 108, '0000-00-00 00:00:00', 1),
(15483, 15222, 59, 3, 0, 'Seleyed for Kannan Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15484, 15227, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-11-15 06:26:56', 1),
(15485, 15222, 19, 7, 4, 'CTC - 15K Per Month and She need PF', 59, '2023-11-15 07:06:16', 1),
(15486, 15223, 13, 7, 0, 'sales knowledge ,voice clarity ok and job need so Sustainability is ok and salary 17k fixed', 59, '2023-11-15 07:07:20', 1),
(15487, 15233, 53, 1, 0, NULL, 59, '2023-11-15 07:16:09', 1),
(15488, 15228, 89, 1, 0, NULL, 59, '2023-11-15 07:20:06', 1),
(15489, 15223, 59, 3, 0, 'Selected for Muthu Team in Consultant role\n', 13, '2023-11-16 09:57:21', 1),
(15490, 14865, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-11-16 10:16:49', 1),
(15491, 15205, 60, 1, 0, NULL, 18, '2023-11-16 05:34:42', 1),
(15492, 15238, 59, 4, 0, '5050 sustainability Doubts not a graduate long run doubts kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15493, 15240, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15494, 15239, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15495, 15243, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 104, '0000-00-00 00:00:00', 1),
(15496, 15245, 59, 4, 0, '5050 Profile Not much active pressure handling doubts in our role kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15497, 15246, 59, 5, 0, 'Not open for Voice process Attitude got several offers and declined due to insurance sales will not sustain', 104, '0000-00-00 00:00:00', 1),
(15498, 15247, 59, 2, 0, 'Have Exp in Calling Can give a try she need to come with her confirmation if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15499, 15245, 57, 1, 0, NULL, 59, '2023-11-16 07:50:15', 1),
(15500, 15243, 19, 7, 4, 'Job Need Person', 59, '2023-11-16 07:51:23', 1),
(15501, 15238, 105, 5, 0, 'Sustain Problem, As Well as Slow Learning , Pitching Issue', 59, '2023-11-16 07:55:43', 1),
(15502, 15214, 29, 7, 3, 'Sarath Team', 51, '2023-11-17 12:59:20', 1),
(15503, 15222, 59, 3, 0, 'Seleyed for Kannan Team in Staff Role', 19, '2023-11-17 01:09:30', 1),
(15504, 15243, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-11-17 01:14:41', 1),
(15505, 15257, 30, 4, 3, 'Discuss about salary part max 24k ', 60, '0000-00-00 00:00:00', 1),
(15506, 15250, 30, 7, 3, 'Confirm the joining process ', 60, '0000-00-00 00:00:00', 1),
(15507, 15251, 30, 7, 3, 'Confirm the joining process ', 60, '0000-00-00 00:00:00', 1),
(15508, 15250, 60, 1, 0, NULL, 30, '2023-11-17 06:03:18', 1),
(15509, 15251, 60, 1, 0, NULL, 30, '2023-11-17 06:05:06', 1),
(15510, 15257, 60, 1, 0, NULL, 30, '2023-11-17 06:06:56', 1),
(15511, 15256, 59, 4, 0, '5050 Profile have exp in calling age around 37 yrs relevant exp need to check his sustainability kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15512, 15252, 59, 5, 0, 'too long Distance not sure on the relocation Sustainability Doubts need to open up a lot not suitable', 108, '0000-00-00 00:00:00', 1),
(15513, 15253, 59, 4, 0, '5050 Profile No Sustainability with the previous roles kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15514, 15248, 59, 5, 0, 'Communication very Average and writing skills poor will not sustain and handling doubts a lot not suitable', 108, '0000-00-00 00:00:00', 1),
(15515, 15249, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15516, 15254, 59, 2, 0, 'Final Round with Gokul Need to confirm the salary max we can go upto 1.9\n', 108, '0000-00-00 00:00:00', 1),
(15517, 15253, 105, 5, 0, 'Candidate Shortlisted But Not Joining', 59, '2023-11-17 06:21:59', 1),
(15518, 15256, 31, 1, 0, NULL, 59, '2023-11-17 06:31:02', 1),
(15519, 15258, 74, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15520, 15214, 59, 3, 0, 'Selected for Sarath Team Staff Roles', 29, '2023-11-20 10:00:16', 1),
(15521, 15181, 59, 3, 0, 'Selected for Shanmugam Team in Staff Role', 29, '2023-11-20 10:12:23', 1),
(15522, 15286, 59, 5, 0, 'Have few months exp in insurance sales but left due to Continuous calls in Star health married and 2 kids sustainability in our domain doubts', 108, '0000-00-00 00:00:00', 1),
(15523, 15287, 59, 5, 0, 'Not open for Field much Attitude will not sustain in our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15524, 15273, 59, 2, 0, 'Communication Ok but regular MBA going on Interested in IT opening sustainability doubts if she comes back let us try Left without attending the 2nd level', 108, '0000-00-00 00:00:00', 1),
(15525, 15285, 59, 2, 0, 'Fresher preparing for CA long run doubts if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15526, 15283, 59, 5, 0, 'Not much active will not handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(15527, 15274, 59, 5, 0, 'sounding low Sustainability Doubt Pressure handling doubt left without attending the 2nd lvel with Gopinath', 108, '0000-00-00 00:00:00', 1),
(15528, 15278, 59, 5, 0, 'Have 6 months ongoing exp in Accounts with the pay of 18K looking for change as he is not comfort with the current Salary will not sustain', 108, '0000-00-00 00:00:00', 1),
(15529, 15288, 59, 4, 0, '5050 Profile have exp in calling muthoot finance had some gap due to accident kindly check and let me know sir\n', 108, '0000-00-00 00:00:00', 1),
(15530, 15277, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15531, 15275, 74, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15532, 15272, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15533, 15282, 59, 2, 0, 'Fresher for our roles can give a try need to check with 2nd level but left without attending need to come for final round', 108, '0000-00-00 00:00:00', 1),
(15534, 15259, 59, 5, 0, 'Not suitable for insurance sales roles will not sustain and handle pressure', 85, '0000-00-00 00:00:00', 1),
(15535, 15262, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15536, 15272, 19, 7, 4, 'Job needed person', 59, '2023-11-20 07:18:47', 1),
(15537, 15271, 59, 5, 0, 'Interview For Full Stack And The Candidate Is Not Much Comfort With The TxxampC If He Comes Back Let Su Try.', 85, '0000-00-00 00:00:00', 1),
(15538, 15264, 59, 2, 0, 'Need to come for final round with Gokul if he comes back let us try', 85, '0000-00-00 00:00:00', 1),
(15539, 15263, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 85, '0000-00-00 00:00:00', 1),
(15540, 15288, 18, 8, 0, 'Not Attended', 59, '2023-11-20 07:39:03', 1),
(15541, 15272, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-11-20 08:01:21', 1),
(15542, 15291, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15543, 15294, 59, 5, 0, 'Looking for non voice process only will not sustain and not suitbale', 108, '0000-00-00 00:00:00', 1),
(15544, 15296, 59, 4, 0, '5050 Profile have exp in calling can give a try kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15545, 15295, 59, 2, 0, 'communication average 2yrs exp in MIS and exp more in salary if she comes back shall go upto 17-18K overall', 108, '0000-00-00 00:00:00', 1),
(15546, 15297, 59, 5, 0, 'Not comfort to work in saturyday and timings not suitable', 108, '0000-00-00 00:00:00', 1),
(15547, 15298, 59, 4, 0, '5050 Profile have calling exp but not a relevant one kindly check and let me know your inouts', 108, '0000-00-00 00:00:00', 1),
(15548, 15299, 59, 5, 0, 'Have Exp in Calling for 6 months and not comfort in handling target not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15549, 15301, 59, 5, 0, 'Have Exp In Calling For 6 Months And Not Comfort In Handling Target Not Suitable For Our Roles', 108, '0000-00-00 00:00:00', 1),
(15550, 15302, 59, 5, 0, 'Looking for Govt exams fresher long career gap pronunciation difficult will not sustain not suitable', 108, '0000-00-00 00:00:00', 1),
(15551, 15303, 59, 3, 0, 'Selected for MIS Role in PT only', 108, '0000-00-00 00:00:00', 1),
(15552, 15304, 59, 5, 0, 'Communication No will not sustain and handle our work roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15553, 15296, 86, 5, 0, 'No satisfied', 59, '2023-11-21 07:37:03', 1),
(15554, 15298, 44, 1, 0, NULL, 59, '2023-11-21 07:43:07', 1),
(15555, 15315, 59, 5, 0, 'Not open with the txxampCand also no basic skills in JS if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15556, 15306, 59, 5, 0, 'Too long Distance communication not much will not sustain ', 108, '0000-00-00 00:00:00', 1),
(15557, 15309, 59, 5, 0, 'No basic skills in MF and the salary exp is very high will not sustain in a long may get marry early and leave', 108, '0000-00-00 00:00:00', 1),
(15558, 15305, 59, 5, 0, 'Looking for Data science sort of role only will not sustain on our profile for a long not suitbale', 108, '0000-00-00 00:00:00', 1),
(15559, 15307, 59, 5, 0, 'Looking for System based work no communication pressure handling doubts in our roles', 108, '0000-00-00 00:00:00', 1),
(15560, 15312, 59, 2, 0, 'Have Exp in MIS Shoudl come for 2nd level can give a try if he comes let us try', 108, '0000-00-00 00:00:00', 1),
(15561, 15308, 59, 5, 0, 'Left without attending the interview', 108, '0000-00-00 00:00:00', 1),
(15562, 15311, 59, 4, 0, '5050 Profile fresher for our roles internal reference kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15563, 15310, 59, 5, 0, 'Communication Ok but the location constraint almost 50 kms up and down not suitable', 108, '0000-00-00 00:00:00', 1),
(15564, 15314, 74, 5, 0, 'not fit\n', 108, '0000-00-00 00:00:00', 1),
(15565, 15316, 59, 5, 0, 'Looking for Team lead only and the salary min Exp is 40K interviewed by Gaurav sir and got rejected', 108, '0000-00-00 00:00:00', 1),
(15566, 15311, 19, 5, 1, 'Rejected', 59, '2023-11-22 07:43:12', 1),
(15567, 15325, 59, 5, 0, 'No Communication Will not sustain and handle our work pressure not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15568, 15324, 59, 5, 0, 'Average Communication Will Not Sustain And Handle Our Work Pressure Not Suitable For Our Roles', 108, '0000-00-00 00:00:00', 1),
(15569, 13591, 59, 4, 0, 'Have a solid exp in renewal and looking for the same internal reference and not open for sales too kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15570, 15321, 59, 2, 0, 'Need to come for Salary discussion with Gokul for Accounts', 108, '0000-00-00 00:00:00', 1),
(15571, 15328, 59, 3, 0, 'Selected for MIS role PT only', 108, '0000-00-00 00:00:00', 1),
(15572, 15322, 59, 2, 0, 'Have Exp but not much good with that salary exp is min 18 Interviewed by Gokul Profile on Hold we can offer max on 16K', 108, '0000-00-00 00:00:00', 1),
(15573, 15326, 59, 5, 0, 'Not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15574, 15327, 59, 4, 0, '5050 Profile Sounds Low but open for Telecalling Kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15575, 15317, 59, 5, 0, 'Fresher for our roles Salary Exo is high being a fresher and pressure handling doubts not more than 1 yr he will looking for core data science', 108, '0000-00-00 00:00:00', 1),
(15576, 15319, 59, 5, 0, 'Frequent job changes every 6 months changed and looking for very high salary not suitable', 108, '0000-00-00 00:00:00', 1),
(15577, 15320, 59, 5, 0, 'Preparing Govt Exams and for time being looking for Opportunities will not run in along more than 1 yr parents both are Govt teachers', 108, '0000-00-00 00:00:00', 1),
(15578, 15329, 59, 5, 0, 'Communication Average Current Salary is 30K and exp more on that not suits with our role package', 108, '0000-00-00 00:00:00', 1),
(15579, 15330, 59, 3, 0, 'Selected for Shamugam Team in Staff Role', 108, '0000-00-00 00:00:00', 1),
(15580, 15323, 59, 5, 0, 'No Basic Skills knowledge for MIS role and will not sustain and handle our roles not suitable', 108, '0000-00-00 00:00:00', 1),
(15581, 14960, 59, 5, 0, 'Not even opening the mouth will not sustain and not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(15582, 13591, 19, 5, 1, 'Rejected', 59, '2023-11-23 07:26:38', 1),
(15583, 15330, 29, 7, 3, 'reference - Gayatri, have to train Aggressively, ', 59, '2023-11-23 07:41:53', 1),
(15584, 15327, 53, 1, 0, NULL, 59, '2023-11-23 07:45:04', 1),
(15585, 15331, 59, 5, 0, 'Have 6months exp and looking for salary growth only will not sustain in a long ', 108, '0000-00-00 00:00:00', 1),
(15586, 15340, 59, 5, 0, 'Too long Distance Career Gap lookin much for nearby location will not sustain', 108, '0000-00-00 00:00:00', 1),
(15587, 15338, 59, 2, 0, 'Final Round with Gokul for MF Good Candidate but the salary exp is very high need to negotiate and close', 108, '0000-00-00 00:00:00', 1),
(15588, 15333, 59, 2, 0, 'Interviewed by Gokul final Round average candidate need to confirm his joining post 29 Nov only', 108, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(15589, 15337, 59, 5, 0, 'No basic Skills Will not handle our work pressure not much suitable', 108, '0000-00-00 00:00:00', 1),
(15590, 15334, 59, 5, 0, 'having his own business and looking for additional one focus will not be much more in this', 108, '0000-00-00 00:00:00', 1),
(15591, 15335, 59, 5, 0, 'No Bike Fresher looking much for SAP Fico', 108, '0000-00-00 00:00:00', 1),
(15592, 15339, 59, 5, 0, 'NOt open for TxxampC no basics in Javascript', 108, '0000-00-00 00:00:00', 1),
(15593, 15332, 59, 5, 0, 'Need to train a lot long run doubt if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15594, 15336, 59, 5, 0, 'Very SilentNEed to open up a lot not open for voice process not much suits for our operations role', 108, '0000-00-00 00:00:00', 1),
(15595, 15351, 59, 5, 0, 'Not suitable for our sales need to open up alot ', 108, '0000-00-00 00:00:00', 1),
(15596, 15352, 59, 4, 0, '5050 Profile have exp in calling but salary exp is high Kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15597, 15362, 59, 5, 0, 'Looking for IT positions and not open for TxxampC Sustainability Doubts if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15598, 15348, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15599, 15347, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try already holds several offer', 108, '0000-00-00 00:00:00', 1),
(15600, 15346, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15601, 15354, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15602, 15345, 59, 5, 0, 'Not suitable for our sales profile if hecomes for IT learning can try', 108, '0000-00-00 00:00:00', 1),
(15603, 15361, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15604, 15366, 59, 5, 0, 'Have 11months exp Career Gap and min Exp 25+ his current 23300 Will not sustain in our roles', 108, '0000-00-00 00:00:00', 1),
(15605, 15360, 59, 5, 0, 'Too long Distance up and down 44kms not much suits for our roles will not sustain min Exp is 27K', 108, '0000-00-00 00:00:00', 1),
(15606, 15355, 59, 5, 0, 'Attitude Not ready to come down with salary frequent job changes every 1 yr min exp 28K', 108, '0000-00-00 00:00:00', 1),
(15607, 15356, 59, 5, 0, 'Recently married and her current salary 4LPA will not sustain in along', 108, '0000-00-00 00:00:00', 1),
(15608, 15343, 59, 5, 0, 'Preparing for CA exams and long run doubts in our roles ', 108, '0000-00-00 00:00:00', 1),
(15609, 15349, 59, 5, 0, 'Long Career gap stating marriage reently married sustainability doubts in our roles min exp 28K and not ready to come down', 108, '0000-00-00 00:00:00', 1),
(15610, 15350, 59, 2, 0, 'Hve Exp in MIS but need to train a lot in our roles need time to confirm her for our roles', 108, '0000-00-00 00:00:00', 1),
(15611, 15357, 59, 5, 0, 'Fresher for MIS Roles too long Distance not open to relocate ', 108, '0000-00-00 00:00:00', 1),
(15612, 15358, 59, 5, 0, 'Looking For IT Positions And Not Open For TxxampC Sustainability Doubts If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15613, 15280, 30, 7, 3, 'Confirm ctc and joining', 60, '0000-00-00 00:00:00', 1),
(15614, 15352, 105, 7, 0, 'Candidate Shortlisted But Not Joining', 59, '2023-11-25 08:04:58', 1),
(15615, 15280, 60, 1, 0, NULL, 30, '2023-11-27 11:38:23', 1),
(15616, 15371, 59, 5, 0, 'Interviewed for Full Stack not much comfort with the TxxampC if the candidate comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15617, 15374, 97, 5, 0, 'sal expt high xxamp He planing to move abroad in future.. not ok with our txxampC too', 108, '0000-00-00 00:00:00', 1),
(15618, 15381, 97, 5, 0, 'Yet Not Complete His Course.. Have Some Family Issues. Long Run Doubts.', 108, '0000-00-00 00:00:00', 1),
(15619, 15378, 97, 5, 0, 'yet not complete his course 1m more ...he need to check with parents..', 108, '0000-00-00 00:00:00', 1),
(15620, 15379, 97, 5, 0, ' Attitude.. not suit for our roles', 108, '0000-00-00 00:00:00', 1),
(15621, 15373, 59, 5, 0, 'Not suitable for our roles will not sustain ', 108, '0000-00-00 00:00:00', 1),
(15622, 15367, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15623, 15359, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15624, 15386, 97, 5, 0, 'frequent job changes...not suit for our role.', 108, '0000-00-00 00:00:00', 1),
(15625, 15383, 97, 5, 0, 'frequent job changes..communication good sustainbility doubts.', 108, '0000-00-00 00:00:00', 1),
(15626, 15363, 97, 5, 0, 'low voice ... too slow not suit our roles.', 108, '0000-00-00 00:00:00', 1),
(15627, 15370, 97, 5, 0, 'not suit for our roles', 108, '0000-00-00 00:00:00', 1),
(15628, 15375, 97, 5, 0, 'yet not complete his course.. have some family issues. long run doubts.', 108, '0000-00-00 00:00:00', 1),
(15629, 15376, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15630, 15368, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15631, 15380, 59, 4, 0, '5050Profile seems to give a lot of story sustainability doubts kindly check andlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15632, 15330, 59, 3, 0, 'Selected for Shamugam Team in Staff Role', 29, '2023-11-28 10:29:10', 1),
(15633, 15400, 74, 7, 0, 'He Is Completed Mba Hr, Fresher Only, Father Conductor In Local Bus , Brother Completed Mba And Home Near By 5km From Office..Expected 13 To 15k And Have Laptop And Ready To Joined Immediately Refered By Saravanan Friends Of Friends, Kindly Check Once And Confirm', 108, '0000-00-00 00:00:00', 1),
(15634, 15397, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(15635, 15399, 74, 2, 0, 'kindly wait once confirm', 108, '0000-00-00 00:00:00', 1),
(15636, 15400, 59, 3, 0, 'Selected for Sithy Team in Consultant role', 74, '2023-11-28 05:52:06', 1),
(15637, 15405, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15638, 10547, 59, 5, 0, 'Not suitable for our roles holding several offers and looking for more', 108, '0000-00-00 00:00:00', 1),
(15639, 15404, 59, 5, 0, 'Not suitable for ourrole no understanding no communication', 108, '0000-00-00 00:00:00', 1),
(15640, 15403, 59, 5, 0, 'Too long Distance Salary Exp is very high than our budget', 108, '0000-00-00 00:00:00', 1),
(15641, 15401, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15642, 15398, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15643, 14810, 59, 5, 0, 'Interview for Full Stack and the candidate is not much comfort with the txxampC if he comes back let su try.', 108, '0000-00-00 00:00:00', 1),
(15644, 15387, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15645, 15395, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15646, 15385, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 108, '0000-00-00 00:00:00', 1),
(15647, 15396, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15648, 15394, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15649, 15392, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15650, 15393, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15651, 15391, 59, 5, 0, 'Bike no Have exp in Accounts not much of relevant skills will not sustain', 108, '0000-00-00 00:00:00', 1),
(15652, 15389, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15653, 15390, 59, 5, 0, 'Too long Distance not open to relocate', 108, '0000-00-00 00:00:00', 1),
(15654, 15407, 59, 5, 0, 'Not suitable for our roles very high CTC Exp will not run in a long', 108, '0000-00-00 00:00:00', 1),
(15655, 15434, 59, 3, 0, 'Selected for Gopi Team in Consultant Role', 85, '0000-00-00 00:00:00', 1),
(15656, 15420, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15657, 15428, 59, 3, 0, '3months 5K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K', 108, '0000-00-00 00:00:00', 1),
(15658, 15433, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15659, 15432, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15660, 15431, 59, 5, 0, 'too long Distance no clarity in his previous work exp not suitable', 108, '0000-00-00 00:00:00', 1),
(15661, 15421, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15662, 15414, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15663, 15413, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15664, 15412, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15665, 15426, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15666, 15427, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15667, 15423, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15668, 15429, 59, 5, 0, 'Not suitable no sustainability only for salary he is focusing', 108, '0000-00-00 00:00:00', 1),
(15669, 15418, 59, 5, 0, 'Good Communication sustainability doubts getting marriage at earliest have a plan to go with PHD', 108, '0000-00-00 00:00:00', 1),
(15670, 15419, 59, 5, 0, 'Not suitable will not sustian in our roles not suitbale', 108, '0000-00-00 00:00:00', 1),
(15671, 15415, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15672, 15344, 97, 5, 0, 'sustainbility doubts not suit for our roles', 108, '0000-00-00 00:00:00', 1),
(15673, 15384, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15674, 15402, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15675, 15416, 97, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15676, 15408, 59, 5, 0, 'Too long distance not open to relocate will not ssstain and exp os alos high', 108, '0000-00-00 00:00:00', 1),
(15677, 15417, 59, 5, 0, 'Not open for Telecalling and sales profile not suitable', 108, '0000-00-00 00:00:00', 1),
(15678, 15409, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15679, 15434, 105, 7, 0, 'Star product Knowledge is a Little bit Good , Will Try For the Training Period', 59, '2023-11-29 07:54:18', 1),
(15680, 15434, 59, 3, 0, 'Selected for Gopi Team in Consultant Role', 105, '2023-11-30 10:34:58', 1),
(15681, 15435, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15682, 15439, 59, 3, 0, 'Selected for Renewals Executive Role', 60, '0000-00-00 00:00:00', 1),
(15683, 15503, 13, 7, 0, 'voice clarity and confident level is good reshma reference train pannina ready pannalam ', 60, '0000-00-00 00:00:00', 1),
(15684, 15451, 59, 3, 0, 'Selected for MIS Role Need to confirm the Roles', 85, '0000-00-00 00:00:00', 1),
(15685, 15504, 89, 7, 0, 'Selected for my team Team Reference', 108, '0000-00-00 00:00:00', 1),
(15686, 15511, 53, 7, 0, 'shortlisted for b2b', 108, '0000-00-00 00:00:00', 1),
(15687, 15455, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15688, 15498, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15689, 15500, 59, 5, 0, 'Communication is Good have exp in accounts but sustainability in our accoutns roles doubts if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15690, 15502, 59, 5, 0, 'Interviewed For Full Stack Not Much Comfort With The TxxampC If The Candidate Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(15691, 15514, 59, 5, 0, 'Not suitable for our roles will not sustain long career gap ', 108, '0000-00-00 00:00:00', 1),
(15692, 15513, 105, 5, 0, 'Poor Quality', 108, '0000-00-00 00:00:00', 1),
(15693, 15523, 30, 5, 0, 'due to communication skill', 104, '0000-00-00 00:00:00', 1),
(15694, 15520, 74, 7, 0, 'he is ok with the profile, completed diploma and already 3 years experience in various field, telecalling, industial sector, medical rep , have sustainability issue , --- two sisters one sister married,, father painter, home from office near by 15km.. have bike and laptop,,, have some experience ....kindly check once expected 15k ...', 104, '0000-00-00 00:00:00', 1),
(15695, 15504, 59, 3, 0, 'Selected for Babu Team in Staff Role', 89, '2023-12-06 11:21:28', 1),
(15696, 15516, 59, 5, 0, 'Not suitable for our roles will not sustain ', 104, '0000-00-00 00:00:00', 1),
(15697, 15318, 59, 5, 0, 'Looking for MIS only but not suit for that checked for Renewal and got rejected due to pressure handling cross checked with Banupriya', 104, '0000-00-00 00:00:00', 1),
(15698, 15503, 59, 3, 0, 'Selected for Muthu Team in Consultant Role', 13, '2023-12-07 10:10:44', 1),
(15699, 15474, 59, 5, 0, 'No basics not open for TxxampC not suitable', 104, '0000-00-00 00:00:00', 1),
(15700, 15520, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2023-12-07 04:20:06', 1),
(15701, 15515, 86, 4, 0, 'Selected for next round', 108, '0000-00-00 00:00:00', 1),
(15702, 15519, 59, 2, 0, 'Not much strong with the basics need to consider later based on the other profiles and the schedules', 108, '0000-00-00 00:00:00', 1),
(15703, 15526, 59, 4, 0, 'Have Exp in Sales Good in Communication can be trained in our roles Candidate is from Shree Consultant Kindly check and let me know your interest', 108, '0000-00-00 00:00:00', 1),
(15704, 15533, 89, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15705, 15532, 59, 5, 0, 'Communication Average Have exp but career gap too Existing company is offereing 22K just 11 months exp will not sustain not suitbale', 108, '0000-00-00 00:00:00', 1),
(15706, 15529, 59, 5, 0, 'Low Quality for our roles not suitable will not run in a long', 108, '0000-00-00 00:00:00', 1),
(15707, 15528, 59, 5, 0, 'No basics Skills in MF and will not handle our work pressure not suitbale', 108, '0000-00-00 00:00:00', 1),
(15708, 15525, 59, 5, 0, 'No ideas and no basicsFrequent job changes not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(15709, 15524, 59, 2, 0, 'Communication Ok Can give a try in our role but left without attending the final round with Manikandan BDM\nif he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(15710, 15457, 59, 5, 0, 'Not much good in analytical need to come with the confirmation on the TxxampC', 108, '0000-00-00 00:00:00', 1),
(15711, 15456, 59, 2, 0, 'Need to come wiht the confirmation on the TxxampC Fresher 2023 passed out', 108, '0000-00-00 00:00:00', 1),
(15712, 15527, 59, 5, 0, 'Not Strong with the basics analytical no not joined the company offered for 10K will not sustain in a long run', 108, '0000-00-00 00:00:00', 1),
(15713, 15530, 89, 7, 0, 'I have got approval to pay 14 salary to this candidate.', 108, '0000-00-00 00:00:00', 1),
(15714, 15526, 18, 8, 0, 'Not Attended', 59, '2023-12-07 07:47:16', 1),
(15715, 15511, 59, 3, 0, 'Selected for B2B in consultant Role', 53, '2023-12-08 09:57:17', 1),
(15716, 15543, 89, 7, 0, 'Selected', 85, '0000-00-00 00:00:00', 1),
(15717, 15534, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15718, 15541, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15719, 15542, 59, 3, 0, 'Selected for IT team with txxampC', 104, '0000-00-00 00:00:00', 1),
(15720, 15531, 59, 3, 0, 'Selected for Operations Team Need to confirm the role', 104, '0000-00-00 00:00:00', 1),
(15721, 15545, 59, 5, 0, 'Too long Distance Long Career Gap Sustainability doubts a lot if she comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15722, 15538, 59, 2, 0, 'Interview Done with Gokul Will go through the Payslips and confirm the Joining procedures', 104, '0000-00-00 00:00:00', 1),
(15723, 15539, 59, 2, 0, 'Fresher for IT Career Gap Maths knowledge Average if he comes back after confirmationfor TxxampC will check', 104, '0000-00-00 00:00:00', 1),
(15724, 15540, 59, 5, 0, 'Long Career Gap not good with maths need time to learn the skills if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(15725, 15546, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15726, 15544, 59, 5, 0, 'too long Distance worked in Telesales but not comfortable with that Poor Communication not suitable', 104, '0000-00-00 00:00:00', 1),
(15727, 15385, 19, 7, 4, 'Selected', 59, '2023-12-10 02:13:28', 1),
(15728, 15550, 30, 5, 0, 'already father lic agent and mf pms doing', 104, '0000-00-00 00:00:00', 1),
(15729, 15557, 59, 5, 0, 'No Communication Have Exp in MIS but pressure handling doubts a lot will not sustain', 104, '0000-00-00 00:00:00', 1),
(15730, 15555, 30, 5, 0, 'not interested in sales', 104, '0000-00-00 00:00:00', 1),
(15731, 15558, 59, 5, 0, 'Too long Distance Salary exp is high not comfort with NDA will not sustain', 104, '0000-00-00 00:00:00', 1),
(15732, 15551, 30, 7, 4, 'salary expected 25k from candidate but we can proceed upto 23k ctc ', 104, '0000-00-00 00:00:00', 1),
(15733, 15548, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15734, 15559, 59, 4, 0, 'have exp in calling can be trained in our roles kindly check an dlet me know your inputs', 108, '0000-00-00 00:00:00', 1),
(15735, 15560, 53, 7, 0, 'fresher. She has good communication, worked 6months in receptionist and completed aari work training. Shortlisted for b2b', 108, '0000-00-00 00:00:00', 1),
(15736, 15552, 59, 5, 0, 'Not Selected by Gokul', 108, '0000-00-00 00:00:00', 1),
(15737, 15553, 59, 2, 0, 'Round with Gokul and Profile on Hold Need tolook after considering the other profiles too', 108, '0000-00-00 00:00:00', 1),
(15738, 15543, 59, 3, 0, 'Selected for Babu Team in Consultant Role sir\n', 89, '2023-12-10 07:49:14', 1),
(15739, 15530, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 89, '2023-12-10 07:57:42', 1),
(15740, 15560, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-12-10 11:21:56', 1),
(15741, 15380, 53, 1, 0, NULL, 59, '2023-12-10 05:33:55', 1),
(15742, 15559, 57, 1, 0, NULL, 59, '2023-12-10 06:14:28', 1),
(15743, 15587, 30, 7, 3, 'suggested ctc upto 23k', 104, '0000-00-00 00:00:00', 1),
(15744, 15570, 30, 7, 0, 'upto 5.3lac suggested ctc ', 104, '0000-00-00 00:00:00', 1),
(15745, 15575, 30, 7, 3, 'selected for E sale profile ctc as per company norms for fresher', 104, '0000-00-00 00:00:00', 1),
(15746, 15589, 59, 4, 0, '5050 profile fresher for our roles need to open up a lot and need to train a lot kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(15747, 15563, 53, 7, 0, 'selected for b2b', 104, '0000-00-00 00:00:00', 1),
(15748, 15564, 59, 2, 0, '5050 profile applied for MIS but have interest to move IT Sustainability doubts ', 104, '0000-00-00 00:00:00', 1),
(15749, 15565, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(15750, 15579, 59, 5, 0, 'Checked with Banu 2nd round interview too long distance and not much comfort in calling activities', 104, '0000-00-00 00:00:00', 1),
(15751, 15582, 53, 7, 0, 'shortlisted for b2b\n', 104, '0000-00-00 00:00:00', 1),
(15752, 15591, 105, 7, 0, 'She Performed Well And Also She is Experienced in ICICI Lombard, Will Go For An Other Process', 104, '0000-00-00 00:00:00', 1),
(15753, 15591, 59, 3, 0, 'Selected for Gopinath Team in Consultant Role', 105, '2023-12-12 09:55:10', 1),
(15754, 15596, 59, 3, 0, 'Selected for Mani Team in staff Role Communication Good Have Exp In Calling Can Be Trained In Our Roles ', 108, '0000-00-00 00:00:00', 1),
(15755, 15385, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2023-12-12 04:09:02', 1),
(15756, 15563, 59, 3, 0, 'Selected for B2B in Consultant Role', 53, '2023-12-12 04:29:34', 1),
(15757, 15582, 59, 3, 0, 'Selectedforbanuteam', 53, '2023-12-12 04:30:28', 1),
(15758, 13536, 29, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15759, 15617, 102, 5, 0, 'Not Suitable Sales ', 104, '0000-00-00 00:00:00', 1),
(15760, 15604, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15761, 15603, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15762, 15599, 59, 5, 0, 'Too long Distance no Communication not open to relocate will not sustain', 104, '0000-00-00 00:00:00', 1),
(15763, 15608, 59, 5, 0, 'Communication Average not much suits for our roles 5050 asked the candidate to come for the interview post lunch but he left', 104, '0000-00-00 00:00:00', 1),
(15764, 15602, 59, 5, 0, 'No Sustainability in previous exp no Communication not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(15765, 15611, 59, 5, 0, 'Attitude Candidate have Exp in CAMS have an offer for 23K will not sustain in our roles', 104, '0000-00-00 00:00:00', 1),
(15766, 15598, 59, 5, 0, 'No Communication no confidence inthe profile not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(15767, 15605, 30, 7, 4, 'confirm ctc and joining datewe can go with precious ctc', 104, '0000-00-00 00:00:00', 1),
(15768, 15616, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15769, 15610, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15770, 15601, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15771, 15593, 30, 5, 0, 'due to communication skill', 104, '0000-00-00 00:00:00', 1),
(15772, 15594, 30, 7, 4, 'fresher as per company ctc ', 104, '0000-00-00 00:00:00', 1),
(15773, 15606, 30, 7, 3, 'suggested ctc upto 25k', 104, '0000-00-00 00:00:00', 1),
(15774, 15596, 86, 4, 0, 'Selected for next round', 59, '2023-12-12 05:49:57', 1),
(15775, 15596, 18, 7, 4, 'Selected for Mani Team. Immedeate Joiner. Can give 3.5L CTC', 86, '2023-12-12 06:06:11', 1),
(15776, 15589, 105, 5, 0, 'Looking For High Package, He is Not Willing To Join', 59, '2023-12-12 06:12:45', 1),
(15777, 15596, 60, 1, 0, NULL, 18, '2023-12-12 07:25:07', 1),
(15778, 15551, 60, 1, 0, NULL, 30, '2023-12-13 12:19:52', 1),
(15779, 15570, 59, 3, 0, 'Selected for Sathish Team Bangalore Location in Staff Role', 30, '2023-12-13 12:20:32', 1),
(15780, 15575, 59, 1, 0, NULL, 30, '2023-12-13 12:22:46', 1),
(15781, 15587, 59, 1, 0, NULL, 30, '2023-12-13 12:23:48', 1),
(15782, 15594, 59, 3, 0, 'Selected for Madiwaala in Consultant Role', 30, '2023-12-13 12:28:10', 1),
(15783, 15605, 59, 3, 0, 'selected for Madiwaal Staff ROle', 30, '2023-12-13 12:30:18', 1),
(15784, 15606, 59, 3, 0, 'Selected for Madiwaal Staff Role', 30, '2023-12-13 12:31:08', 1),
(15785, 15618, 53, 7, 0, 'shortlisted for b2b', 104, '0000-00-00 00:00:00', 1),
(15786, 15634, 59, 5, 0, 'Very High CTC Exp fresher for our Sales have Exp in Inside sales IT products', 104, '0000-00-00 00:00:00', 1),
(15787, 15636, 59, 5, 0, 'Not suitable for our roles will not sustain', 104, '0000-00-00 00:00:00', 1),
(15788, 15626, 59, 5, 0, 'Communication Ok but not open to relocate', 104, '0000-00-00 00:00:00', 1),
(15789, 15489, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15790, 15637, 102, 5, 0, 'Not Suitable Sales ', 104, '0000-00-00 00:00:00', 1),
(15791, 15561, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15792, 15625, 59, 3, 0, 'Selected for Renewals in Consultant Role', 60, '0000-00-00 00:00:00', 1),
(15793, 2269, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15794, 15630, 89, 7, 0, 'Selected... I will check and tell you during the training period', 104, '0000-00-00 00:00:00', 1),
(15795, 15641, 97, 5, 0, 'not suit for recruitment..', 104, '0000-00-00 00:00:00', 1),
(15796, 15642, 19, 5, 1, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(15797, 15645, 97, 5, 0, 'not suit for accounts', 104, '0000-00-00 00:00:00', 1),
(15798, 15646, 97, 5, 0, 'sal exp high has exp in other role... ', 104, '0000-00-00 00:00:00', 1),
(15799, 15653, 74, 7, 0, 'she is ok with the profile...already working in chennai mobile manufacturing company, no experience in sales and telecalling, expected 12k ....45min travel to office, father farmer and have laptop, immediate joining, expected 12k talk active and easily adaptive candidate kindly check and confirm once', 108, '0000-00-00 00:00:00', 1),
(15800, 15659, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15801, 15661, 102, 7, 0, 'Shortlist for team ', 85, '0000-00-00 00:00:00', 1),
(15802, 15660, 57, 7, 0, 'Candidate is ok,pls confirm the joining date', 85, '0000-00-00 00:00:00', 1),
(15803, 15661, 60, 1, 0, NULL, 102, '2023-12-15 04:46:56', 1),
(15804, 15673, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15805, 15682, 97, 5, 0, 'pursing her masterxquots long distance and from advocate background not suit', 104, '0000-00-00 00:00:00', 1),
(15806, 15689, 97, 5, 0, 'long distance pursuing candidate looking for intern come employment. long run doubts.\n', 104, '0000-00-00 00:00:00', 1),
(15807, 15678, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15808, 15463, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1),
(15809, 15683, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15810, 15685, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15811, 15687, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15812, 15686, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15813, 15691, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15814, 15690, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15815, 15693, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15816, 15677, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15817, 15674, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15818, 15692, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15819, 15676, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15820, 15680, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15821, 15681, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15822, 15672, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15823, 15684, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15824, 15669, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15825, 15710, 74, 5, 0, 'not fit\n', 108, '0000-00-00 00:00:00', 1),
(15826, 15720, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15827, 15700, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15828, 15663, 19, 7, 4, 'i hope he is job needed person', 85, '0000-00-00 00:00:00', 1),
(15829, 15662, 19, 5, 1, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(15830, 15666, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 85, '0000-00-00 00:00:00', 1),
(15831, 15663, 59, 3, 0, 'Selected for Kannan Team', 19, '2023-12-16 06:24:01', 1),
(15832, 9579, 59, 3, 0, 'Flutter / 3months 10K Trainee Developer if cleared then 15K and further increments overall 2.7 yrs', 60, '0000-00-00 00:00:00', 1),
(15833, 15630, 59, 1, 0, NULL, 89, '2023-12-16 06:30:40', 1),
(15834, 15665, 97, 5, 0, 'not suit for roles ', 85, '0000-00-00 00:00:00', 1),
(15835, 15654, 74, 5, 0, 'not fit', 85, '0000-00-00 00:00:00', 1),
(15836, 15698, 59, 5, 0, 'Looking for Recruitment Role Need to train a lot in our sales hiring much comfort to IT hiring Not much comfort in NDA and sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15837, 15679, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 85, '0000-00-00 00:00:00', 1),
(15838, 15667, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15839, 15726, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(15840, 15723, 19, 5, 1, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(15841, 15722, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15842, 15721, 71, 7, 0, 'Selected ', 108, '0000-00-00 00:00:00', 1),
(15843, 15719, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15844, 15714, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 108, '0000-00-00 00:00:00', 1),
(15845, 15705, 97, 5, 0, 'Rejected In Aptitude Round', 108, '0000-00-00 00:00:00', 1),
(15846, 15713, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15847, 15715, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15848, 15716, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15849, 15717, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15850, 15718, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15851, 15712, 97, 5, 0, 'rejected in Aptitude round', 108, '0000-00-00 00:00:00', 1),
(15852, 15711, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15853, 15708, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15854, 15707, 89, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15855, 1247, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15856, 15476, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15857, 15488, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15858, 15702, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(15859, 15703, 97, 5, 0, 'Rejected In Aptitude Round', 108, '0000-00-00 00:00:00', 1),
(15860, 15704, 97, 5, 0, 'Rejected In Aptitude Round', 108, '0000-00-00 00:00:00', 1),
(15861, 15706, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(15862, 15724, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 108, '0000-00-00 00:00:00', 1),
(15863, 15660, 59, 3, 0, 'Selected for Syed team in Consultant Role', 57, '2023-12-16 07:35:39', 1),
(15864, 15688, 59, 3, 0, 'Selected for MIS in Staff Role', 104, '0000-00-00 00:00:00', 1),
(15865, 15742, 19, 7, 4, 'Single Parent job needed person', 85, '0000-00-00 00:00:00', 1),
(15866, 15709, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15867, 15739, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15868, 15740, 52, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15869, 15746, 102, 5, 0, 'Not Suitable Sales ', 85, '0000-00-00 00:00:00', 1),
(15870, 15751, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15871, 15753, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15872, 15653, 59, 1, 0, NULL, 74, '2023-12-18 02:42:23', 1),
(15873, 15762, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15874, 15758, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15875, 15750, 19, 5, 1, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(15876, 15749, 19, 5, 1, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(15877, 15732, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15878, 15737, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15879, 15736, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15880, 15741, 59, 3, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 85, '0000-00-00 00:00:00', 1),
(15881, 15742, 59, 3, 0, 'Selected for Kannan Team in Consultant Role Long Career Gap 12th graduate manager recommended 16K salary(Appro 15K tH)', 19, '2023-12-18 06:43:08', 1),
(15882, 15759, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 85, '0000-00-00 00:00:00', 1),
(15883, 15779, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15884, 15778, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15885, 15772, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15886, 15784, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15887, 15783, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15888, 15769, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15889, 15771, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15890, 15790, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15891, 15793, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15892, 15792, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15893, 15792, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15894, 15788, 53, 7, 0, 'Selected for my team,referring same package as Nisha', 85, '0000-00-00 00:00:00', 1),
(15895, 15789, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15896, 15767, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15897, 15788, 59, 3, 0, 'Selected for Banu Team in consultant Role', 53, '2023-12-20 09:58:05', 1),
(15898, 15791, 59, 3, 0, 'Selected for Accounts Team in Staff Role Gokul shortlisted the profile', 60, '0000-00-00 00:00:00', 1),
(15899, 15794, 71, 5, 0, 'Not Fit For Sales', 85, '0000-00-00 00:00:00', 1),
(15900, 15729, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15901, 15728, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15902, 15806, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15903, 15796, 51, 5, 0, 'Rejected', 85, '0000-00-00 00:00:00', 1),
(15904, 15821, 53, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15905, 15828, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15906, 15797, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15907, 15808, 59, 3, 0, 'Selected for HR profile in Staff Role', 104, '0000-00-00 00:00:00', 1),
(15908, 15823, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15909, 15813, 31, 5, 3, 'she dont have direct calling or sales experience. ', 104, '0000-00-00 00:00:00', 1),
(15910, 15819, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 85, '0000-00-00 00:00:00', 1),
(15911, 15814, 97, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15912, 15815, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15913, 15798, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15914, 15799, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15915, 15800, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15916, 15801, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15917, 15802, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15918, 15804, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15919, 15807, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15920, 15810, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15921, 15618, 59, 3, 0, 'Selecetd fir B2B ', 53, '2023-12-21 12:20:19', 1),
(15922, 15795, 105, 5, 0, '5050 Sustain Problem', 85, '0000-00-00 00:00:00', 1),
(15923, 15831, 102, 5, 0, 'Not Suitable Sales ', 85, '0000-00-00 00:00:00', 1),
(15924, 15846, 102, 5, 0, 'Not Suitable Sales ', 85, '0000-00-00 00:00:00', 1),
(15925, 15860, 97, 5, 0, 'no tamil .. from raipur... long run doubts', 85, '0000-00-00 00:00:00', 1),
(15926, 15858, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15927, 15857, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15928, 15856, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15929, 15854, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15930, 15853, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15931, 15852, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15932, 15851, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15933, 15848, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15934, 15845, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15935, 15824, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15936, 15837, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15937, 15836, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15938, 15832, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15939, 15833, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15940, 15834, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15941, 15855, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(15942, 15850, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15943, 15835, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15944, 15849, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15945, 15760, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15946, 15864, 74, 7, 0, 'she is ok with the profile father passed away 1 year back. brother working in the same jewellery shop sales, he is worked as multiple company and have good insurance knowledge 3 years experience in insurance field expected 15 to 18k kindly check once and have laptop and ready to join 26 dec kindly check once ', 108, '0000-00-00 00:00:00', 1),
(15947, 15862, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15948, 15830, 74, 7, 0, 'He is fit for sales , completed diploma , worked as a senior sales executive 1 year experience and worked as a sales officer in idfc first bank.. ready to join immediately and expected 15k above..have laptop..and ready to join immediately kindy check and confirm once', 108, '0000-00-00 00:00:00', 1),
(15949, 15668, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(15950, 15875, 59, 1, 0, NULL, 85, '0000-00-00 00:00:00', 1),
(15951, 14981, 59, 3, 0, 'Selected for IT Team 3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 60, '0000-00-00 00:00:00', 1),
(15952, 15830, 59, 1, 0, NULL, 74, '2023-12-22 05:53:07', 1),
(15953, 15864, 59, 3, 0, 'Selected for Sithy team in Consultant Role', 74, '2023-12-22 06:04:09', 1),
(15954, 15880, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15955, 15879, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(15956, 15884, 59, 5, 0, 'Not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(15957, 15885, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15958, 15888, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15959, 15881, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15960, 15890, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15961, 15886, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15962, 15896, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15963, 15895, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15964, 15921, 74, 7, 0, 'she is ok with the profile completed bca in thanjavur- father auto driver - stay in pudhukottai travel time 1 hour..expected 12k to 13k fresher and ready to join immeditaely....laptop arranged kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(15965, 15950, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15966, 15949, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15967, 15946, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 104, '0000-00-00 00:00:00', 1),
(15968, 15933, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15969, 15934, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15970, 15929, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15971, 15926, 109, 5, 0, 'Interview taken by palani sir\nWill not suitable for our role', 104, '0000-00-00 00:00:00', 1),
(15972, 15942, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15973, 15931, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15974, 15937, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15975, 15965, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15976, 15977, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15977, 15962, 53, 7, 0, 'selected fr b2b', 104, '0000-00-00 00:00:00', 1),
(15978, 15960, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15979, 15971, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15980, 15955, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15981, 15957, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15982, 15980, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15983, 15978, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15984, 15979, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15985, 15976, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15986, 15959, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15987, 15973, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15988, 15963, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15989, 15961, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(15990, 15952, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15991, 15966, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15992, 15974, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15993, 15968, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15994, 15964, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15995, 15953, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15996, 15954, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(15997, 15967, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15998, 15969, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(15999, 15970, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16000, 15958, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16001, 15972, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16002, 15956, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16003, 15975, 109, 5, 0, 'Interview Taken By Palani Sir\nWill Not Suitable For Our Role', 104, '0000-00-00 00:00:00', 1),
(16004, 15951, 105, 5, 0, 'Sustaining Problem Also Looking For Non Voice Process', 104, '0000-00-00 00:00:00', 1),
(16005, 15938, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16006, 15863, 59, 3, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 60, '0000-00-00 00:00:00', 1),
(16007, 15983, 19, 7, 4, 'She asked 25k ctc but i did not accept that her last salary was 23k ctc if she submit last job pay slip means we will provide same salary of 23k after 7 days training only i will confirm her job', 108, '0000-00-00 00:00:00', 1),
(16008, 15984, 13, 7, 0, 'ok but salary expectation is high so kindly check and confirm ', 108, '0000-00-00 00:00:00', 1),
(16009, 15473, 57, 7, 0, 'Candidate is ok experience \n', 104, '0000-00-00 00:00:00', 1),
(16010, 15981, 59, 3, 0, '2months Intern 10K then salary will be fixed 3yrs NDA', 104, '0000-00-00 00:00:00', 1),
(16011, 15982, 109, 5, 0, 'Interview Taken By Palani , He Rejects This Profile', 104, '0000-00-00 00:00:00', 1),
(16012, 15985, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16013, 15986, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16014, 15987, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16015, 15992, 109, 5, 0, 'Interview Taken By Palani , He Rejects This Profile', 104, '0000-00-00 00:00:00', 1),
(16016, 15993, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16017, 15991, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16018, 15988, 109, 5, 0, 'Interview Taken By Palani , He Rejects This Profile', 104, '0000-00-00 00:00:00', 1),
(16019, 15989, 109, 5, 0, 'Interview Taken By Palani , He Rejects This Profile', 104, '0000-00-00 00:00:00', 1),
(16020, 15983, 59, 1, 0, NULL, 19, '2023-12-29 11:14:29', 1),
(16021, 15962, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2023-12-30 03:34:48', 1),
(16022, 15721, 59, 3, 0, 'Selected for Santhosh Team in Staff role', 71, '2023-12-30 09:28:04', 1),
(16023, 15473, 59, 3, 0, 'Selected for Syed Team in Consultant Role', 57, '2024-01-02 10:29:43', 1),
(16024, 15998, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16025, 15999, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16026, 16001, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16027, 15995, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(16028, 15996, 59, 5, 0, 'Not Suitable For Our Roles Will Not Sustain', 104, '0000-00-00 00:00:00', 1),
(16029, 16000, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16030, 16008, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1),
(16031, 16015, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16032, 16016, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16033, 16013, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16034, 16014, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16035, 16017, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16036, 16020, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16037, 16022, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16038, 16026, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16039, 16027, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 104, '0000-00-00 00:00:00', 1),
(16040, 16028, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16041, 16030, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 104, '0000-00-00 00:00:00', 1),
(16042, 16019, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1),
(16043, 16023, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1),
(16044, 16024, 59, 7, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(16045, 15921, 59, 1, 0, NULL, 74, '2024-01-04 06:23:07', 1),
(16046, 16031, 59, 5, 0, 'Not open for NDA in MIS Will not sustain and pressure handling in our roles doubtfull not suitable', 104, '0000-00-00 00:00:00', 1),
(16047, 16032, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(16048, 16033, 44, 7, 4, 'Candidate ok and complete the further process', 104, '0000-00-00 00:00:00', 1),
(16049, 16034, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16050, 16036, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16051, 16044, 89, 7, 0, 'Selected ', 104, '0000-00-00 00:00:00', 1),
(16052, 16046, 105, 5, 0, 'Voice is Very Low And Appearance is Not Good', 104, '0000-00-00 00:00:00', 1),
(16053, 16048, 59, 5, 0, 'No Sustainability Salary exp is very high 4.2 LPA current CTC just 1 yrs Exp in accounts', 104, '0000-00-00 00:00:00', 1),
(16054, 16050, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16055, 16049, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16056, 16051, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16057, 16055, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16058, 16056, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16059, 16057, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16060, 16054, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16061, 16053, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16062, 16052, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16063, 16047, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16064, 11681, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16065, 16058, 59, 5, 0, 'Communication Ok not mcuh comfort in NDA Sustainability Doubts if he comes back let us try', 104, '0000-00-00 00:00:00', 1),
(16066, 16063, 44, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16067, 16066, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(16068, 16064, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(16069, 16060, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16070, 16044, 59, 3, 0, 'Selected for Babu Team ', 89, '2024-01-06 04:36:00', 1),
(16071, 16068, 59, 5, 0, 'Left without attending the 2nd level interview \n', 104, '0000-00-00 00:00:00', 1),
(16072, 16077, 30, 7, 4, 'confirm ctc and joining date', 104, '0000-00-00 00:00:00', 1),
(16073, 16071, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(16074, 16073, 59, 5, 0, 'Not suitable for our roles will not sustain\n', 104, '0000-00-00 00:00:00', 1),
(16075, 16074, 31, 5, 3, 'Expecting huge package which will not match for his experience and skills', 104, '0000-00-00 00:00:00', 1),
(16076, 16078, 44, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16077, 16069, 59, 5, 0, 'Not open for Timings not open for NDA will not sustain and handle our role not suitable', 104, '0000-00-00 00:00:00', 1),
(16078, 16080, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16079, 16081, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16080, 16082, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16081, 16037, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16082, 16038, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16083, 16040, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16084, 16041, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16085, 16039, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16086, 16042, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16087, 16021, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16088, 16025, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16089, 16009, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16090, 16012, 109, 5, 0, 'interview taken by palani , he rejects this profile', 104, '0000-00-00 00:00:00', 1),
(16091, 16010, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16092, 16019, 60, 1, 0, NULL, 59, '2024-01-06 07:14:30', 1),
(16093, 16023, 60, 1, 0, NULL, 59, '2024-01-06 07:14:41', 1),
(16094, 16008, 60, 1, 0, NULL, 59, '2024-01-06 07:19:06', 1),
(16095, 15463, 60, 1, 0, NULL, 59, '2024-01-06 07:19:28', 1),
(16096, 15666, 60, 1, 0, NULL, 59, '2024-01-06 07:19:39', 1),
(16097, 16024, 60, 1, 0, NULL, 59, '2024-01-06 07:19:57', 1),
(16098, 15714, 60, 1, 0, NULL, 59, '2024-01-06 07:20:11', 1),
(16099, 16033, 60, 1, 0, NULL, 44, '2024-01-08 10:05:11', 1),
(16100, 16059, 89, 7, 0, 'Selected.. ', 104, '0000-00-00 00:00:00', 1),
(16101, 16086, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16102, 16043, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16103, 16070, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16104, 16076, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16105, 16083, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16106, 16085, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16107, 16087, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16108, 16088, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16109, 16090, 54, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16110, 16091, 59, 3, 0, '3months 6K if Through 3 yrs employ ', 104, '0000-00-00 00:00:00', 1),
(16111, 16092, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16112, 16093, 19, 5, 1, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16113, 16098, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16114, 16089, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16115, 15984, 59, 1, 0, NULL, 13, '2024-01-09 02:44:26', 1),
(16116, 16099, 57, 7, 0, 'candidate is ok, he have 1 years exp in different domain and 6 month worked cc sales.Kindly cross check with previous company salary xxamp confirm the joining date. ', 104, '0000-00-00 00:00:00', 1),
(16117, 16102, 19, 7, 4, 'Selected', 104, '0000-00-00 00:00:00', 1),
(16118, 16099, 59, 3, 0, 'Selected for Syed team in consultant Role', 57, '2024-01-09 03:18:34', 1),
(16119, 16100, 59, 7, 0, 'SElected for HR profile', 104, '0000-00-00 00:00:00', 1),
(16120, 16104, 13, 7, 0, 'salary expectations is high. She is already worked in multiple company in short time, so sustainability is not sure. So kindly check and confirm.', 108, '0000-00-00 00:00:00', 1),
(16121, 16101, 59, 7, 0, 'SElected For HR Profile', 108, '0000-00-00 00:00:00', 1),
(16122, 16102, 59, 3, 0, 'Selected for Kannan Team in Consultant Tole', 19, '2024-01-09 04:12:09', 1),
(16123, 15352, 59, 1, 0, NULL, 105, '2024-01-09 04:12:12', 1),
(16124, 16104, 59, 3, 0, 'selected for Muthu Team in Consultant Role', 13, '2024-01-09 05:42:40', 1),
(16125, 16107, 29, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16126, 16109, 59, 5, 0, 'Not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(16127, 16100, 60, 1, 0, NULL, 59, '2024-01-09 07:41:50', 1),
(16128, 16101, 60, 1, 0, NULL, 59, '2024-01-09 07:42:02', 1),
(16129, 16105, 59, 2, 0, 'Selected for IT if he comes let us try', 104, '0000-00-00 00:00:00', 1),
(16130, 16113, 59, 5, 0, 'Not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(16131, 16115, 59, 5, 0, 'Looking only for IT recruitment', 104, '0000-00-00 00:00:00', 1),
(16132, 16116, 59, 2, 0, '5050 profile for recruitment interviewed by Gokul', 104, '0000-00-00 00:00:00', 1),
(16133, 16117, 59, 2, 0, '5050 Profile for Recruitment', 104, '0000-00-00 00:00:00', 1),
(16134, 16121, 27, 5, 0, 'Not Good in technical', 104, '0000-00-00 00:00:00', 1),
(16135, 16122, 27, 5, 0, 'Not Good In Technical', 104, '0000-00-00 00:00:00', 1),
(16136, 16123, 27, 5, 0, 'Not Good In Technical', 104, '0000-00-00 00:00:00', 1),
(16137, 16124, 27, 2, 0, 'technical wise ok. She has to discuss and confirm the terms.', 104, '0000-00-00 00:00:00', 1),
(16138, 16118, 59, 5, 0, 'Not suitable for our Recruitment Still in Regular Studies will not handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(16139, 16059, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 89, '2024-01-10 07:17:54', 1),
(16140, 16126, 74, 5, 0, 'not fit for team not completed degree...and having high gap between each and every job dont have sustainabulity too...kindly avoid', 108, '0000-00-00 00:00:00', 1),
(16141, 16128, 74, 7, 0, 'she is ok with the profile..complete bba in 2021- facing accident so 1 year break after joined in a bajaj finserv loan section have pay slip and releiving letter due to health issue...have good exposure and well convenised skills fit for tele sales and expected 13 to 15k...immediate joining ...dont have laptop kindly confirm ready to arrange...father unemployee....highly job need', 108, '0000-00-00 00:00:00', 1),
(16142, 16133, 74, 7, 0, 'she is ok with the profile ..completed msc in 2022 and joined in bajaj finserv loan section ....talk active and professional ..to easy to handle customer...due to kindney stone removal releived from tha job...only 10 month experience .....after 4 month came to cafs...fit for team...father tailor...expected 12 to 13k....imeediate joining ....have no laptop ready to arrange kindly check once annd confirm', 108, '0000-00-00 00:00:00', 1),
(16143, 16136, 31, 4, 4, 'new for financial instrument but calling experience with just dial. ', 108, '0000-00-00 00:00:00', 1),
(16144, 16136, 29, 1, 0, NULL, 31, '2024-01-11 04:32:12', 1),
(16145, 16134, 59, 2, 0, 'interviewed by Gokul and on Hold', 108, '0000-00-00 00:00:00', 1),
(16146, 16127, 105, 5, 0, 'Slow Learning, Also Sustain Problem', 108, '0000-00-00 00:00:00', 1),
(16147, 16128, 59, 3, 0, 'Selected for Thanjavur in consultant Role', 74, '2024-01-11 06:40:43', 1),
(16148, 16133, 59, 3, 0, 'Selected For Thanjavur In Consultant Role', 74, '2024-01-11 06:44:15', 1),
(16149, 16129, 109, 5, 0, 'High expectation, not worth it', 104, '0000-00-00 00:00:00', 1),
(16150, 16138, 59, 5, 0, 'Settled Family Attitude issue sustainability doubt in our roles', 104, '0000-00-00 00:00:00', 1),
(16151, 16139, 59, 5, 0, 'Salary Exp is high only US IT 1 yr exp min 3 LPA exp', 104, '0000-00-00 00:00:00', 1),
(16152, 16140, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16153, 16141, 59, 5, 0, 'Not suitable for our roles salary exp is high will not sustain', 104, '0000-00-00 00:00:00', 1),
(16154, 16135, 59, 5, 0, 'Not suitable for our roles will not sustain', 104, '0000-00-00 00:00:00', 1),
(16155, 16077, 60, 1, 0, NULL, 30, '2024-01-12 10:22:13', 1),
(16156, 16125, 59, 3, 0, 'Selected for Recruitment Profile', 104, '0000-00-00 00:00:00', 1),
(16157, 16146, 13, 7, 0, 'Candidate Quality And Voice Clarity Ok, But He Is sports Person So Sustainability Is Low, But Job is Need So Move To Joining Process,we Will Check And Confirm in Training Period.', 108, '0000-00-00 00:00:00', 1),
(16158, 16150, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16159, 16152, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16160, 16151, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16161, 16145, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(16162, 16148, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(16163, 16153, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(16164, 16154, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts if the candidate is coming back let us try', 108, '0000-00-00 00:00:00', 1),
(16165, 16156, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(16166, 16162, 74, 5, 0, 'not fit for team... indiscipilanary actives facing....high attitude', 108, '0000-00-00 00:00:00', 1),
(16167, 16164, 74, 5, 0, 'sustainability issue facing....no trust regarding this candidate', 108, '0000-00-00 00:00:00', 1),
(16168, 16163, 53, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16169, 16159, 59, 2, 0, 'She need to confirm her intersest wiht the package\n', 110, '0000-00-00 00:00:00', 1),
(16170, 16160, 59, 3, 0, 'SElected for MIS Role ', 108, '0000-00-00 00:00:00', 1),
(16171, 16161, 59, 5, 0, 'Interview Reject by Gokul', 108, '0000-00-00 00:00:00', 1),
(16172, 16165, 59, 5, 0, 'Not suitable for roles too long distance will not sustain', 108, '0000-00-00 00:00:00', 1),
(16173, 16167, 59, 5, 0, 'Holding offer for 11LPA and Expecting more with 2yrs exp not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(16174, 16166, 59, 5, 0, 'Too long Distance Salary Exp is high and sustainability Doubts', 108, '0000-00-00 00:00:00', 1),
(16175, 16146, 59, 1, 0, NULL, 13, '2024-01-16 10:39:12', 1),
(16176, 15569, 59, 3, 0, 'Selected for Intern with Employment conditions', 60, '0000-00-00 00:00:00', 1),
(16177, 16178, 53, 7, 0, 'having 1.5yrs experience, good in Convincing, frinday joing, pls cnfrm the salary', 108, '0000-00-00 00:00:00', 1),
(16178, 16180, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(16179, 16175, 59, 5, 0, 'Left without attending', 108, '0000-00-00 00:00:00', 1),
(16180, 16177, 59, 5, 0, 'Not Open With The TxxampC Need Time To Check With Family And Confirm If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(16181, 16174, 59, 5, 0, 'Looking much for IT recruitment Min exp is 4 LPA\n', 108, '0000-00-00 00:00:00', 1),
(16182, 16172, 59, 5, 0, 'Not Open With The TxxampC Need Time To Check With Family And Confirm If He Comes Back Let Us Try', 108, '0000-00-00 00:00:00', 1),
(16183, 16170, 59, 5, 0, 'Not open with the TxxampC Need time to check with family and confirm if he comes back let us try', 108, '0000-00-00 00:00:00', 1),
(16184, 16176, 59, 4, 0, '5050 profile open for TxxampC seems to be slow kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(16185, 16179, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16186, 16176, 27, 1, 0, NULL, 59, '2024-01-17 07:06:24', 1),
(16187, 16173, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16188, 16171, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16189, 16182, 59, 5, 0, 'Not suitable for our roles rejected by Gokul', 108, '0000-00-00 00:00:00', 1),
(16190, 16183, 59, 5, 0, 'Not Suitable For Our Roles Rejected By Gokul', 108, '0000-00-00 00:00:00', 1),
(16191, 16187, 59, 2, 0, 'Checked for Renewal Support Salary Exp is more need to check and confirm later', 110, '0000-00-00 00:00:00', 1),
(16192, 16184, 60, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16193, 16186, 59, 5, 0, 'Not Suitable For Insurance Sales Roles Will Not Sustain And Handle Pressure', 110, '0000-00-00 00:00:00', 1),
(16194, 16190, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16195, 16191, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16196, 16192, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16197, 16188, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16198, 16189, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16199, 16193, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16200, 16194, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16201, 16197, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16202, 16196, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16203, 16195, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16204, 16199, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16205, 16202, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16206, 16203, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16207, 16200, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16208, 16204, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16209, 16207, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16210, 16206, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16211, 16205, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16212, 16178, 59, 3, 0, 'Selected for Consultant Role Banu Team', 53, '2024-01-19 09:54:40', 1),
(16213, 16212, 86, 7, 0, 'Shortlisted for my team. Ctc-3.6 lakhs.', 110, '0000-00-00 00:00:00', 1),
(16214, 16213, 59, 5, 0, 'Not Comfortable with the distance not suitable', 110, '0000-00-00 00:00:00', 1),
(16215, 16212, 60, 1, 0, NULL, 86, '2024-01-19 11:49:16', 1),
(16216, 16208, 59, 5, 0, 'Technical round Reject', 110, '0000-00-00 00:00:00', 1),
(16217, 16209, 59, 2, 0, 'He is ok with txxampC if he reaches jothiga and giving confirmation let us consider', 110, '0000-00-00 00:00:00', 1),
(16218, 16215, 59, 3, 0, 'Initial 3 months 18K then 21K can be provided 3 yrs NDA', 110, '0000-00-00 00:00:00', 1),
(16219, 16217, 59, 2, 0, 'Communication Ok 1.3 yrs exp current 21K but exp around 25+ and getting married in 1 yr long run doubts a lot', 110, '0000-00-00 00:00:00', 1),
(16220, 8732, 59, 5, 0, 'No sustainability not open to handle the work pressure', 110, '0000-00-00 00:00:00', 1),
(16221, 16221, 59, 5, 0, 'No Communication Min exp is 28K but not much strong with the basics pressure handling doubts', 110, '0000-00-00 00:00:00', 1),
(16222, 16214, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16223, 16220, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16224, 16210, 59, 5, 0, 'Technical Round Reject', 110, '0000-00-00 00:00:00', 1),
(16225, 16224, 59, 5, 0, 'Not uitable for our roles age around 34 fresher for HR and Salary exp is min 25K', 110, '0000-00-00 00:00:00', 1),
(16226, 16211, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16227, 16216, 59, 2, 0, 'Will come for Next round on 20 Jan 2024 between 04.30 to 05.30', 110, '0000-00-00 00:00:00', 1),
(16228, 16223, 59, 5, 0, 'Not suitable for our roles will not sustain and handle pressure ', 110, '0000-00-00 00:00:00', 1),
(16229, 16218, 59, 2, 0, 'If terms ok we can consider her profile for IT', 60, '0000-00-00 00:00:00', 1),
(16230, 16222, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16231, 16236, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16232, 16229, 59, 3, 0, 'Selected fr Accounts Team', 110, '0000-00-00 00:00:00', 1),
(16233, 16238, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16234, 16232, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16235, 16228, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16236, 16239, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16237, 16234, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16238, 16230, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16239, 16240, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16240, 16245, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16241, 16246, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16242, 16243, 59, 5, 0, 'Bihari candidate will not sustain in our roles', 110, '0000-00-00 00:00:00', 1),
(16243, 16237, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16244, 16247, 31, 5, 3, 'not actually intended to attend interview, just seen our board near lift and came to attend what kind of compnany it is. ', 110, '0000-00-00 00:00:00', 1),
(16245, 16226, 44, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16246, 16244, 30, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16247, 16233, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16248, 16235, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16249, 16227, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16250, 16258, 59, 2, 0, 'Need to check and confirm later ', 110, '0000-00-00 00:00:00', 1),
(16251, 16254, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16252, 16259, 86, 4, 0, 'Selected For next round', 110, '0000-00-00 00:00:00', 1),
(16253, 16263, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16254, 16270, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16255, 16269, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16256, 16268, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16257, 16267, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16258, 16266, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16259, 16265, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16260, 16264, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16261, 16261, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16262, 16257, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16263, 16256, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16264, 16255, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16265, 16262, 57, 7, 0, 'He have 6 month experience Sales,pls confirm the joining date xxamp Salary ', 110, '0000-00-00 00:00:00', 1),
(16266, 16273, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16267, 16281, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16268, 16278, 105, 7, 0, 'Have Work Experiance in other Domain, But Sustain is Doubt, Will Try To Analyis in the traing period. Also His salary excepation is to high, but not for the quality in our domain ,Will provide fresher salary or 16k to 17k .', 104, '0000-00-00 00:00:00', 1),
(16269, 16285, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16270, 16275, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16271, 16272, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16272, 16271, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16273, 16288, 53, 7, 0, 'experienced. Selected for b2b', 110, '0000-00-00 00:00:00', 1),
(16274, 16283, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16275, 16287, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16276, 16286, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16277, 16284, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16278, 16282, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16279, 16260, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16280, 16253, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16281, 16289, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16282, 16292, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16283, 16280, 105, 5, 0, 'Could Not understand The Quetions , Also Communication Problem , Did Not Spoke Properly, Also Overall Performance is Not Good.', 108, '0000-00-00 00:00:00', 1),
(16284, 16294, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16285, 16293, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16286, 16291, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16287, 16296, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16288, 16297, 57, 4, 0, 'Candidate is ok, rajasekar Reference, Fresher ', 110, '0000-00-00 00:00:00', 1),
(16289, 16298, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16290, 16305, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16291, 16278, 59, 1, 0, NULL, 105, '2024-01-23 12:27:29', 1),
(16292, 16297, 19, 7, 4, 'Selected ', 57, '2024-01-23 12:31:56', 1),
(16293, 16307, 51, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16294, 16309, 89, 7, 0, 'Already telle calling experience.. selected ', 104, '0000-00-00 00:00:00', 1),
(16295, 16312, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring', 110, '0000-00-00 00:00:00', 1),
(16296, 16301, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16297, 16306, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16298, 16262, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-01-23 04:12:33', 1),
(16299, 16319, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16300, 16318, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16301, 16317, 59, 5, 0, 'Looking For Recruitment Role Need To Train A Lot In Our Sales Hiring Much Comfort To IT Hiring Not Much Comfort In NDA And Sustainability Doubts If The Candidate Is Coming Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16302, 16315, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 110, '0000-00-00 00:00:00', 1),
(16303, 16311, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16304, 16313, 19, 7, 4, 'Selected ', 104, '0000-00-00 00:00:00', 1),
(16305, 16309, 59, 3, 0, 'Selected for Ba bu Team in Consultant Role', 89, '2024-01-23 06:24:33', 1),
(16306, 16297, 59, 3, 0, 'Ok Profile 5050 Need to analyse in 7 days Pressure handling doubt provided 16K based on managers recommendation', 19, '2024-01-23 10:35:24', 1),
(16307, 16313, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-01-23 10:37:01', 1),
(16308, 16324, 59, 5, 0, 'Not suitable for our recruitment Role not much comfort in telesales too', 110, '0000-00-00 00:00:00', 1),
(16309, 16322, 74, 5, 0, 'not fit for team have no exposure and sales not suitable married also facing family issues also', 108, '0000-00-00 00:00:00', 1),
(16310, 16327, 31, 4, 4, 'candidate okay and send for next round with Gaurav', 110, '0000-00-00 00:00:00', 1),
(16311, 16325, 53, 7, 0, 'Selected for b2b. Fresher will try', 110, '0000-00-00 00:00:00', 1),
(16312, 16326, 59, 5, 0, 'Looking only for the IT recruitment role and exp around 22-23K\n', 110, '0000-00-00 00:00:00', 1),
(16313, 16328, 105, 7, 0, 'Communication is Good,Will Go For Further Process.', 104, '0000-00-00 00:00:00', 1),
(16314, 16329, 102, 4, 0, '1yrs exp other domain, Good Communication,Pls confirm the joining date xxamp Salary', 104, '0000-00-00 00:00:00', 1),
(16315, 16331, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16316, 16338, 19, 5, 1, 'Reject', 110, '0000-00-00 00:00:00', 1),
(16317, 16338, 19, 5, 1, 'Reject', 110, '0000-00-00 00:00:00', 1),
(16318, 16335, 59, 5, 0, 'Not Suitable for our roles will not sustain', 110, '0000-00-00 00:00:00', 1),
(16319, 16334, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16320, 16336, 59, 5, 0, 'Not suitable for our sales roles will not sustain', 110, '0000-00-00 00:00:00', 1),
(16321, 16337, 57, 4, 0, 'Candidate is ok , 1year exp shreeram life insurance trisha ref.', 110, '0000-00-00 00:00:00', 1),
(16322, 16339, 59, 5, 0, 'Not suitable for our roles will not sustain and handle our work pressure', 110, '0000-00-00 00:00:00', 1),
(16323, 16340, 89, 7, 0, 'Selected..But the salary expectations are high for him. I have said that we cannot give that much salary increase..', 110, '0000-00-00 00:00:00', 1),
(16324, 16341, 57, 7, 0, '1.5yrs exp (per day 150 calls allocate driver xxamp Some fixing ass)\npls let me know the salary xxamp joining date', 110, '0000-00-00 00:00:00', 1),
(16325, 16323, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16326, 16343, 19, 5, 1, 'He asked only about Salary', 110, '0000-00-00 00:00:00', 1),
(16327, 16342, 44, 7, 3, 'Candidate ok for me do the Further process', 104, '0000-00-00 00:00:00', 1),
(16328, 16342, 60, 1, 0, NULL, 44, '2024-01-25 05:51:16', 1),
(16329, 16340, 59, 3, 0, 'Selected for Babu Team in consultant Role', 89, '2024-01-27 11:49:07', 1),
(16330, 16337, 102, 7, 0, 'Candidate is ok, already 1exp in shreeram life insurance , internal Ref - trisha. \nPls let me know the joining date xxamp Salary', 57, '2024-01-27 03:24:47', 1),
(16331, 16356, 19, 5, 1, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(16332, 16354, 57, 7, 0, 'Candidate is ok, pls confirm the joining date xxamp Salary, 1.5yrs exp porter (driver handling fixing Appointments)', 108, '0000-00-00 00:00:00', 1),
(16333, 16357, 19, 5, 0, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(16334, 16358, 27, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16335, 16354, 59, 3, 0, 'Selected for Syed Team', 57, '2024-01-27 05:17:16', 1),
(16336, 16325, 59, 1, 0, NULL, 53, '2024-01-27 06:08:57', 1),
(16337, 16288, 59, 1, 0, NULL, 53, '2024-01-27 06:11:16', 1),
(16338, 16315, 19, 7, 4, 'Selected', 59, '2024-01-27 06:34:15', 1),
(16339, 16341, 59, 3, 0, 'Selecetd for Syed Team ', 57, '2024-01-27 06:45:32', 1),
(16340, 16351, 86, 4, 0, 'Selected for next round', 108, '0000-00-00 00:00:00', 1),
(16341, 16350, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16342, 16359, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16343, 16337, 59, 3, 0, 'selected for Charles Team ', 102, '2024-01-27 07:21:32', 1),
(16344, 16329, 59, 3, 0, 'Selected for Charles Team in consultant Role', 102, '2024-01-27 07:22:30', 1),
(16345, 16351, 18, 7, 0, 'Selected for ManinTeam. Referred by gnanashekar. Please negotiate the salary accordingly and Able to Join in Mid of Feb', 86, '2024-01-29 10:18:43', 1),
(16346, 15515, 18, 8, 0, 'Not Attended', 86, '2024-01-29 10:19:20', 1),
(16347, 16328, 59, 3, 0, 'Selected for Gopinath Team in Consultant ', 105, '2024-01-29 10:21:10', 1),
(16348, 16353, 86, 4, 0, 'Selected for next round', 60, '0000-00-00 00:00:00', 1),
(16349, 16315, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2024-01-29 10:32:28', 1),
(16350, 16360, 59, 5, 0, 'Suggested sales profile by Gokul but not interested in that', 110, '0000-00-00 00:00:00', 1),
(16351, 16361, 59, 2, 0, 'Interviewed by Gokul and selected for intern', 110, '0000-00-00 00:00:00', 1),
(16352, 16370, 59, 5, 0, 'Interviewed by Gokul CTC will not match but ok proifle', 110, '0000-00-00 00:00:00', 1),
(16353, 16369, 59, 2, 0, 'Interviewed by gokul have generalist exp need to confirm his joining', 110, '0000-00-00 00:00:00', 1),
(16354, 16362, 59, 2, 0, 'Interviewed by Gokul and shortlisted for Intern', 110, '0000-00-00 00:00:00', 1),
(16355, 16364, 59, 2, 0, 'Interviewed by Gokul and processed for MF', 110, '0000-00-00 00:00:00', 1),
(16356, 16365, 59, 2, 0, 'Intern with employment interview by Gokul Family well settled', 110, '0000-00-00 00:00:00', 1),
(16357, 16366, 59, 5, 0, 'Interview Reject by Gokul', 110, '0000-00-00 00:00:00', 1),
(16358, 16367, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16359, 16368, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16360, 16371, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16361, 16373, 59, 5, 0, 'Good Package Little high interviewed by Gokul not much releavnt exp', 110, '0000-00-00 00:00:00', 1),
(16362, 16374, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16363, 16375, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16364, 16376, 59, 5, 0, 'Will not sustain and settled family if he comes for freelance let us try', 110, '0000-00-00 00:00:00', 1),
(16365, 16377, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16366, 16353, 18, 7, 0, 'Selected for Mani Team. Package discussed is 2.98LCTC includung PF. Joining on 1st Feb', 86, '2024-01-29 01:12:51', 1),
(16367, 16351, 60, 1, 0, NULL, 18, '2024-01-29 02:45:05', 1),
(16368, 16353, 60, 1, 0, NULL, 18, '2024-01-29 02:46:33', 1),
(16369, 16372, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16370, 16379, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16371, 16378, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16372, 16380, 59, 2, 0, 'Not much good profile will hold and consider later', 110, '0000-00-00 00:00:00', 1),
(16373, 16381, 31, 5, 4, 'she is expecting inbound kind of sales not much exposure in cold calling and lead generation', 110, '0000-00-00 00:00:00', 1),
(16374, 16363, 74, 5, 0, 'not fit for tele sales , have no job need , sustainability issue', 108, '0000-00-00 00:00:00', 1),
(16375, 16382, 59, 5, 0, 'Will not sustain in our role 3yrs 3 different domain ', 110, '0000-00-00 00:00:00', 1),
(16376, 16383, 59, 5, 0, 'very slow and silent will not handle our work pressure', 110, '0000-00-00 00:00:00', 1),
(16377, 16369, 59, 2, 0, 'We will consider if he is ok with 1.98 LPA Gokul Interviewed', 59, '2024-01-29 07:37:08', 1),
(16378, 16392, 74, 5, 0, 'not fit for telecalling...and long distance high expecttion', 108, '0000-00-00 00:00:00', 1),
(16379, 9910, 71, 4, 0, 'Selected', 108, '0000-00-00 00:00:00', 1),
(16380, 16399, 59, 5, 0, 'Interview Reject by Gokul not suitable for our roles', 110, '0000-00-00 00:00:00', 1),
(16381, 16401, 59, 2, 0, 'For HR profile 4 months intern 8K then 12K interviewed by Gokul need to confirm the DOJ\n', 110, '0000-00-00 00:00:00', 1),
(16382, 16404, 59, 5, 0, 'Not Suitable For Our Roles Salary Exp Is High', 110, '0000-00-00 00:00:00', 1),
(16383, 16403, 59, 5, 0, 'Not suitable for our roles salary exp is high', 110, '0000-00-00 00:00:00', 1),
(16384, 16388, 59, 3, 0, 'Selected for Intern with 3 months 6K then 2months 8K then employment with 3yrs', 110, '0000-00-00 00:00:00', 1),
(16385, 16387, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16386, 16408, 57, 7, 0, 'he have 3yrs exp insurance field like Health xxamp Life. Team reference. Salary as we discussed 19k so pls confirm.Thanks', 110, '0000-00-00 00:00:00', 1),
(16387, 16398, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16388, 16402, 59, 5, 0, 'Not Suitable For Our Roles Salary Exp Is High', 110, '0000-00-00 00:00:00', 1),
(16389, 16400, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16390, 16400, 57, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16391, 16407, 59, 5, 0, 'Not Suitable For Our Roles ', 110, '0000-00-00 00:00:00', 1),
(16392, 16406, 59, 5, 0, 'Not suitable for our roles ', 110, '0000-00-00 00:00:00', 1),
(16393, 9910, 18, 7, 4, 'Selected for Santhosh Team. Nice Candidate. Can give the salary which she asked and need notoce period to Join', 71, '2024-01-30 01:26:04', 1),
(16394, 16396, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16395, 16397, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16396, 16389, 51, 4, 0, 'Nxt round ', 110, '0000-00-00 00:00:00', 1),
(16397, 16410, 59, 5, 0, 'Frequent Job changes will not sustain and handle our roles ', 110, '0000-00-00 00:00:00', 1),
(16398, 16412, 59, 5, 0, '2 months exp in recruiter and expecting a lot will not sustain for a long', 110, '0000-00-00 00:00:00', 1),
(16399, 16391, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16400, 16394, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16401, 16405, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16402, 16409, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16403, 16411, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16404, 16413, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16405, 16414, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16406, 16094, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16407, 16415, 59, 5, 0, 'Very slow will not sustain and handle our work pressure', 110, '0000-00-00 00:00:00', 1),
(16408, 16417, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16409, 16418, 59, 5, 0, 'open for Web development and HR need to come withhis confirmation if he comes back let us try', 110, '0000-00-00 00:00:00', 1),
(16410, 16439, 59, 5, 0, 'Not suitabl for our roles will not sustain no basics', 110, '0000-00-00 00:00:00', 1),
(16411, 16426, 59, 5, 0, 'Not Cleared The Technical Round', 110, '0000-00-00 00:00:00', 1),
(16412, 16441, 89, 7, 0, 'Selected.. ', 110, '0000-00-00 00:00:00', 1),
(16413, 16437, 31, 4, 4, 'has experience in credit card sales but new to investments and insurance sales', 110, '0000-00-00 00:00:00', 1),
(16414, 16445, 105, 5, 0, 'Communication And Dressing Sense is Very Bad,Also Not Wear Shoe and Activity is also bad. sustainity problem.', 110, '0000-00-00 00:00:00', 1),
(16415, 16428, 59, 2, 0, 'Selected for MF with 15K need to get confirmaiton from candidate', 110, '0000-00-00 00:00:00', 1),
(16416, 16427, 19, 5, 1, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(16417, 16448, 59, 5, 0, 'Have exp in MIS but not ope n for that fresher for Recruiter min exp is 20K will not sustain', 110, '0000-00-00 00:00:00', 1),
(16418, 16449, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16419, 16444, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16420, 16442, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16421, 16446, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16422, 16419, 59, 5, 0, 'Not cleared the technical round', 110, '0000-00-00 00:00:00', 1),
(16423, 16420, 59, 5, 0, 'Not Cleared The Technical Round', 110, '0000-00-00 00:00:00', 1),
(16424, 16421, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16425, 16425, 19, 7, 4, 'He Is Working In Hotel I Think Is Fit For The Job And Same He Need Job.After 7 days only i will decide', 110, '0000-00-00 00:00:00', 1),
(16426, 16424, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16427, 16423, 59, 3, 0, '3months 6K if Through 3 yrs employ with 6k 1 time payment if not 3 months intern clear with go for 2 more months intern with 8K ', 110, '0000-00-00 00:00:00', 1),
(16428, 16429, 59, 5, 0, 'Not Cleared The Technical Round', 110, '0000-00-00 00:00:00', 1),
(16429, 16447, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16430, 16438, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16431, 16436, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16432, 16435, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16433, 16433, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16434, 16434, 102, 7, 0, 'Already part time working for real estate sales , then convincing skills is better so, shortlist for team \n', 110, '0000-00-00 00:00:00', 1),
(16435, 16432, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16436, 16431, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16437, 16408, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-02-01 10:06:06', 1),
(16438, 16450, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16439, 16457, 59, 2, 0, 'Psychoogy candidate need toconfirm her interets', 110, '0000-00-00 00:00:00', 1),
(16440, 16456, 59, 2, 0, 'intern with Empl 5month then empl8-10 ', 110, '0000-00-00 00:00:00', 1),
(16441, 16453, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16442, 16452, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16443, 16474, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16444, 16473, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16445, 16437, 29, 7, 3, 'gk team, given task to increase salary, refer resume', 31, '2024-02-01 04:46:50', 1),
(16446, 16441, 59, 3, 0, 'selected for Babu Team', 89, '2024-02-01 05:13:39', 1),
(16447, 16476, 57, 7, 0, 'Candidate is ok, kindly confirm the salary xxamp joining date. fresher', 104, '0000-00-00 00:00:00', 1),
(16448, 16454, 31, 4, 4, '1 year experience. Talkative guy. ', 110, '0000-00-00 00:00:00', 1),
(16449, 16459, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16450, 16458, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16451, 16460, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16452, 16461, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16453, 16462, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16454, 16463, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16455, 16464, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16456, 16465, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16457, 16466, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16458, 16467, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16459, 16468, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16460, 16469, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16461, 16471, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16462, 16470, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16463, 16479, 89, 7, 0, 'Selected.. I got to check on him during the first night of practice', 110, '0000-00-00 00:00:00', 1),
(16464, 16478, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16465, 16475, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16466, 16472, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16467, 16327, 29, 7, 2, 'gk team', 31, '2024-02-01 06:40:27', 1),
(16468, 16454, 29, 7, 3, 'Gk team, task given for salary increase in april', 31, '2024-02-01 06:42:24', 1),
(16469, 16425, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-02-01 06:59:15', 1),
(16470, 16476, 59, 3, 0, 'Selected for Syed Team in Consultant role', 57, '2024-02-01 07:03:23', 1),
(16471, 16437, 59, 3, 0, '25K Net + PF 3L Buz 10MF then 28K Net from april GK Sir Team Reference', 29, '2024-02-01 07:09:46', 1),
(16472, 16454, 59, 3, 0, 'Selected fpr GK sir team in Staff Role', 29, '2024-02-01 07:10:46', 1),
(16473, 16327, 59, 3, 0, 'Selected for GK sir Team in staff role', 29, '2024-02-01 07:13:52', 1),
(16474, 16454, 31, 1, 0, NULL, 59, '2024-02-01 07:52:00', 1),
(16475, 16434, 59, 3, 0, 'Selected For Charles Team in Consultant Role', 102, '2024-02-02 09:45:47', 1),
(16476, 16482, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16477, 16490, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16478, 16455, 19, 7, 4, 'Job Needed person already he is working exp and reliving in proper way,i hope he is job needed person', 110, '0000-00-00 00:00:00', 1),
(16479, 16483, 59, 4, 0, 'Good Communication Have exp in calling can be trained in our roles kindly check and let me know your inputs', 110, '0000-00-00 00:00:00', 1),
(16480, 16485, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16481, 16484, 59, 4, 0, 'Good Communication Have Exp In Calling Can Be Trained In Our Roles Kindly Check And Let Me Know Your Inputs', 110, '0000-00-00 00:00:00', 1),
(16482, 16497, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16483, 16498, 89, 7, 0, 'Selected ', 110, '0000-00-00 00:00:00', 1),
(16484, 16487, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16485, 16488, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16486, 16505, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16487, 16504, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16488, 16502, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16489, 16501, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16490, 16500, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16491, 16493, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16492, 16489, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16493, 16491, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16494, 16492, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16495, 16495, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16496, 16499, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16497, 16506, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16498, 16507, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16499, 16496, 59, 5, 0, 'Not suitable for our roles no basic skills need to travel A LONGwill not sustain', 110, '0000-00-00 00:00:00', 1),
(16500, 16494, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16501, 16483, 71, 4, 0, 'selected', 59, '2024-02-02 07:40:39', 1),
(16502, 16484, 86, 4, 0, 'Selected for next round', 59, '2024-02-02 07:40:50', 1),
(16503, 16511, 57, 7, 0, 'Jfw Charles team candidate', 110, '0000-00-00 00:00:00', 1),
(16504, 16498, 59, 3, 0, 'Selecetd for Babu Team ', 89, '2024-02-03 12:48:33', 1),
(16505, 16479, 59, 1, 0, NULL, 89, '2024-02-03 12:50:24', 1),
(16506, 16509, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16507, 16512, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16508, 16513, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16509, 16455, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-02-03 05:28:09', 1),
(16510, 16456, 59, 3, 0, 'Intern With Empl 5month Then Empl8-10 ', 59, '2024-02-05 09:56:46', 1),
(16511, 16484, 18, 7, 0, 'Selected For Mani Team. Need 1 Month Notice To Join. Give 2k to 3K extra take home from Last Salary or negiotiate the same', 86, '2024-02-05 12:16:18', 1),
(16512, 16259, 18, 7, 0, 'Selected for Mani team. Can Join in a week. you can negotiate salary and can give 10 to 15% or 20% hike from last Salary', 86, '2024-02-05 12:23:00', 1),
(16513, 16259, 60, 1, 0, NULL, 18, '2024-02-05 01:03:04', 1),
(16514, 16484, 60, 1, 0, NULL, 18, '2024-02-05 01:07:53', 1),
(16515, 16483, 18, 7, 4, 'Selected For Santhosh Team. Need 1 Month Notice. Can give her the expected and good Candidate', 71, '2024-02-05 01:12:53', 1),
(16516, 9910, 60, 1, 0, NULL, 18, '2024-02-05 01:16:09', 1),
(16517, 16483, 60, 1, 0, NULL, 18, '2024-02-05 01:19:01', 1),
(16518, 16572, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16519, 16520, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16520, 16524, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16521, 16526, 31, 5, 0, 'candidate for shanmugam. but candidate expectation is huge for this profile ', 110, '0000-00-00 00:00:00', 1),
(16522, 16527, 31, 5, 0, 'Expecting huge package, which will not suite for RM profile and not interested in cold calling', 110, '0000-00-00 00:00:00', 1),
(16523, 16532, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16524, 16594, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16525, 16545, 59, 3, 0, 'Selected for MF Role in Staff Role PT only', 110, '0000-00-00 00:00:00', 1),
(16526, 16562, 89, 7, 0, 'Alredy experience tata health insurance 5 month.. ', 110, '0000-00-00 00:00:00', 1),
(16527, 16583, 89, 7, 0, 'Selected..', 110, '0000-00-00 00:00:00', 1),
(16528, 16584, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16529, 16550, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16530, 16535, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16531, 16538, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16532, 16554, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16533, 16556, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16534, 16571, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16535, 16553, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16536, 16560, 27, 5, 0, 'rejected\n', 110, '0000-00-00 00:00:00', 1),
(16537, 16568, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16538, 16546, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16539, 16551, 27, 5, 0, 'rejected\n', 110, '0000-00-00 00:00:00', 1),
(16540, 16552, 27, 5, 0, 'rejected\n', 110, '0000-00-00 00:00:00', 1),
(16541, 16525, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16542, 16528, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16543, 16523, 27, 5, 0, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16544, 16519, 89, 5, 0, 'No basic skill ', 104, '0000-00-00 00:00:00', 1),
(16545, 16598, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16546, 16515, 19, 7, 4, 'Totelly Fresher job Needed Guy but after training period only we have to decide ', 108, '0000-00-00 00:00:00', 1),
(16547, 16591, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16548, 16580, 102, 7, 0, 'Short list for team ', 110, '0000-00-00 00:00:00', 1),
(16549, 16549, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16550, 16558, 54, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16551, 16575, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16552, 16534, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16553, 16516, 51, 4, 0, 'selected for nxt round', 108, '0000-00-00 00:00:00', 1),
(16554, 16599, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16555, 16563, 27, 5, 0, 'REJECTED', 110, '0000-00-00 00:00:00', 1),
(16556, 16595, 27, 5, 0, 'REJECTED', 110, '0000-00-00 00:00:00', 1),
(16557, 16578, 27, 5, 0, 'REJECTED', 110, '0000-00-00 00:00:00', 1),
(16558, 16597, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16559, 16585, 59, 3, 0, 'Selected for Node JS interviewed by Sathish and Gokul and finalised', 110, '0000-00-00 00:00:00', 1),
(16560, 16596, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16561, 16530, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16562, 16579, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16563, 16522, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16564, 16569, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16565, 16521, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16566, 16590, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16567, 16581, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16568, 16531, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16569, 16557, 59, 3, 0, 'Selected for IT Backend / PHP MySQl', 110, '0000-00-00 00:00:00', 1),
(16570, 16529, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16571, 16562, 59, 3, 0, 'Selected for Babu Team in Consultant Role', 89, '2024-02-05 06:28:23', 1),
(16572, 16583, 59, 3, 0, 'Selected fr Babu Team in Staff Role', 89, '2024-02-05 06:29:48', 1),
(16573, 16547, 57, 4, 0, 'Candidate is ok, team Reference just6 month Experience, Communication ok.kindly confirm the joining date xxamp salary ', 60, '0000-00-00 00:00:00', 1),
(16574, 16547, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-02-05 06:38:03', 1),
(16575, 16389, 29, 7, 3, 'sarath', 51, '2024-02-06 11:53:14', 1),
(16576, 16516, 29, 1, 0, NULL, 51, '2024-02-06 11:53:39', 1),
(16577, 16533, 57, 5, 0, 'She is not interested for voice process and distance issues', 104, '0000-00-00 00:00:00', 1),
(16578, 16536, 19, 5, 1, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16579, 16609, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16580, 16602, 59, 2, 0, 'Looking For Internship Yet To Complete Her Exams If She Comes Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16581, 16601, 59, 2, 0, 'Looking for internship yet to complete her exams if she comes back let us try', 110, '0000-00-00 00:00:00', 1),
(16582, 16646, 59, 2, 0, 'Looking For Internship Yet To Complete Her Exams If She Comes Back Let Us Try', 110, '0000-00-00 00:00:00', 1),
(16583, 16691, 59, 5, 0, 'Not suitable for our roles age around 44 yrs', 110, '0000-00-00 00:00:00', 1),
(16584, 16652, 59, 2, 0, 'should come for next round for Technical\n', 110, '0000-00-00 00:00:00', 1),
(16585, 16645, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16586, 16647, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16587, 16643, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16588, 16644, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16589, 16653, 59, 5, 0, 'Not Cleared With The Eligibility Criteria', 110, '0000-00-00 00:00:00', 1),
(16590, 16642, 59, 5, 0, 'Not cleared with the Eligibility criteria', 110, '0000-00-00 00:00:00', 1),
(16591, 16729, 31, 4, 4, 'candidate okay send him for next round', 110, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(16592, 16730, 31, 5, 2, 'Not fit for our lead generation profile', 110, '0000-00-00 00:00:00', 1),
(16593, 16759, 109, 5, 0, 'Less Experience, More expectation.', 104, '0000-00-00 00:00:00', 1),
(16594, 16702, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16595, 16755, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16596, 16741, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16597, 16706, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16598, 16712, 89, 7, 0, 'Selected, salary discussion only ', 110, '0000-00-00 00:00:00', 1),
(16599, 16745, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16600, 16696, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16601, 16389, 59, 3, 0, 'Selected for Sarath Team in staff Role', 29, '2024-02-08 10:09:43', 1),
(16602, 16756, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16603, 16773, 19, 7, 4, 'Already She Working In Just Dail For Voice Process ,She Speak Well And She Has A Pay Slip So We Decide Go With Their Last Salary ', 108, '0000-00-00 00:00:00', 1),
(16604, 16763, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16605, 16770, 27, 5, 0, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16606, 16772, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16607, 16791, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16608, 16818, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16609, 16819, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16610, 16785, 105, 7, 0, 'Communication Is Well,But Dress Coding Is Not Proper.Will Check In The Training Period For His Performance', 108, '0000-00-00 00:00:00', 1),
(16611, 16836, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(16612, 16850, 74, 5, 0, 'not fit for sales, ', 108, '0000-00-00 00:00:00', 1),
(16613, 16773, 59, 1, 0, NULL, 19, '2024-02-09 02:04:43', 1),
(16614, 16515, 59, 1, 0, NULL, 19, '2024-02-09 02:05:43', 1),
(16615, 16904, 74, 5, 0, 'dont have clear voice...sustainability issue', 108, '0000-00-00 00:00:00', 1),
(16616, 16785, 59, 1, 0, NULL, 105, '2024-02-09 03:10:24', 1),
(16617, 16838, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16618, 16840, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16619, 16841, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16620, 16839, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16621, 16842, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16622, 16859, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16623, 16861, 105, 7, 0, 'She has good communication skill and well performed in one to one discussion.previous salary 21k she earned but now she is expecting 25K,but we will provide 18k to her.', 110, '0000-00-00 00:00:00', 1),
(16624, 16922, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16625, 16847, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16626, 16695, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16627, 16909, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16628, 16846, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16629, 16873, 31, 4, 4, 'candidate okay selected for next round', 110, '0000-00-00 00:00:00', 1),
(16630, 16976, 105, 5, 0, 'she need to improver her communication', 110, '0000-00-00 00:00:00', 1),
(16631, 16975, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16632, 16974, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16633, 16973, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16634, 16925, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16635, 16939, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16636, 16992, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16637, 16990, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16638, 16989, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16639, 16729, 29, 1, 0, NULL, 31, '2024-02-12 04:35:35', 1),
(16640, 16873, 29, 1, 0, NULL, 31, '2024-02-12 04:39:53', 1),
(16641, 16983, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16642, 16986, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16643, 16980, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16644, 16712, 59, 1, 0, NULL, 89, '2024-02-12 07:26:12', 1),
(16645, 16998, 74, 5, 0, 'SUSTAINABILITY ISSUE NOT INTRESTED IN JOB', 108, '0000-00-00 00:00:00', 1),
(16646, 16979, 105, 5, 0, 'Candidate Apperiance and Perfomance is Not good. also he need to improve his skill', 108, '0000-00-00 00:00:00', 1),
(16647, 16999, 44, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16648, 17006, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16649, 17004, 57, 5, 0, 'JFW Charles candidate, She is not fit for tamil voice process', 110, '0000-00-00 00:00:00', 1),
(16650, 17003, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16651, 17007, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16652, 16878, 59, 3, 0, 'Selected for Driver - Consultant Role', 60, '0000-00-00 00:00:00', 1),
(16653, 17008, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16654, 17010, 59, 3, 0, 'Selected for MF in Staff Role', 110, '0000-00-00 00:00:00', 1),
(16655, 17009, 105, 5, 0, 'Candiate Salary excectation is to high, also sustain problem', 110, '0000-00-00 00:00:00', 1),
(16656, 17000, 71, 4, 0, 'Selected ', 110, '0000-00-00 00:00:00', 1),
(16657, 17002, 19, 7, 4, 'fresher After 7 days only we have to confirm', 110, '0000-00-00 00:00:00', 1),
(16658, 17001, 57, 5, 0, 'interested for Cinema industry', 110, '0000-00-00 00:00:00', 1),
(16659, 17000, 18, 7, 0, 'Selected for Santosh team Today Joining. CTC 3.85 Overall with hike based on on performane in the intial 3 to 6 months. Immed Joinet', 71, '2024-02-13 06:43:16', 1),
(16660, 17021, 105, 5, 0, 'Sustain Problem Also Communication issue', 110, '0000-00-00 00:00:00', 1),
(16661, 17019, 57, 5, 0, 'Sustainability issues', 110, '0000-00-00 00:00:00', 1),
(16662, 17016, 89, 7, 0, 'Selected.. I will recommended 14500 salary ', 110, '0000-00-00 00:00:00', 1),
(16663, 17023, 71, 4, 0, 'selected', 110, '0000-00-00 00:00:00', 1),
(16664, 16861, 59, 1, 0, NULL, 105, '2024-02-14 04:03:48', 1),
(16665, 17014, 44, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16666, 17011, 19, 7, 4, 'job needed person and he speaks well so lets we select and try them', 108, '0000-00-00 00:00:00', 1),
(16667, 17022, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16668, 17027, 74, 5, 0, 'UNFIT FOR TELE SALES AND NOT SUIT FOR SALES', 108, '0000-00-00 00:00:00', 1),
(16669, 17002, 59, 1, 0, NULL, 19, '2024-02-15 04:15:04', 1),
(16670, 17011, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2024-02-15 04:16:07', 1),
(16671, 17036, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16672, 17025, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16673, 17034, 102, 5, 0, 'Not Suitable Sales ', 108, '0000-00-00 00:00:00', 1),
(16674, 17029, 86, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16675, 17041, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16676, 17024, 105, 5, 0, 'Her Communication is Not good also sher is not truthable', 110, '0000-00-00 00:00:00', 1),
(16677, 17016, 59, 3, 0, 'Selected for Babu Team 5050 profile internal reference need to analyse in 7 days training', 89, '2024-02-15 05:00:41', 1),
(16678, 17049, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16679, 17048, 57, 5, 0, 'Candidate is ok but he mentally unfit', 104, '0000-00-00 00:00:00', 1),
(16680, 17047, 71, 4, 0, 'Selected ', 104, '0000-00-00 00:00:00', 1),
(16681, 17046, 89, 7, 0, 'This candidate is fresher . already working in a medical shop. He has the knowledge to talk to the customer. Now he is in where he definitely wants a job. He has some sales garden knowledge', 60, '0000-00-00 00:00:00', 1),
(16682, 17046, 59, 3, 0, 'Selected for Babu Team', 89, '2024-02-17 05:20:41', 1),
(16683, 17046, 59, 3, 0, 'Selected for Babu Team', 89, '2024-02-17 05:35:22', 1),
(16684, 17023, 60, 1, 0, NULL, 71, '2024-02-17 06:18:31', 1),
(16685, 17060, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16686, 17058, 19, 5, 1, 'Not fit for sales', 108, '0000-00-00 00:00:00', 1),
(16687, 17059, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16688, 17054, 31, 4, 4, 'Seems to be an active person also having relevant experience. Job less now and ready for immediate joining', 108, '0000-00-00 00:00:00', 1),
(16689, 17055, 29, 7, 3, 'sarath team - This Candidate is selected', 108, '0000-00-00 00:00:00', 1),
(16690, 17000, 60, 1, 0, NULL, 18, '2024-02-19 10:18:29', 1),
(16691, 17038, 59, 5, 0, 'She is not comfortable with the target and the pressure will not sustain in our roles and handle our work pressure', 110, '0000-00-00 00:00:00', 1),
(16692, 17066, 29, 7, 3, 'sarath team', 110, '0000-00-00 00:00:00', 1),
(16693, 17069, 105, 7, 0, 'his conversation and communication is ok but 50/50.We will go for an other process and check with the traning period', 110, '0000-00-00 00:00:00', 1),
(16694, 17065, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(16695, 17068, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(16696, 17070, 57, 7, 0, 'Candidate is ok,pls negotiate the salary and confirm your end joining date', 110, '0000-00-00 00:00:00', 1),
(16697, 17054, 29, 7, 3, 'gk team', 31, '2024-02-19 04:23:09', 1),
(16698, 17071, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16699, 17067, 105, 5, 0, 'Communication is Not good , Also Voice is Very Lower And Apperiance is Also No Good', 108, '0000-00-00 00:00:00', 1),
(16700, 17064, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16701, 17063, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16702, 17056, 27, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16703, 17075, 86, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16704, 17047, 59, 3, 0, 'Selected for Santhosh Team in Staff role Direct selection by Santhosh in the absence of Sriram Sir Need to analyse in 7 Days', 71, '2024-02-20 10:22:08', 1),
(16705, 17070, 59, 1, 0, NULL, 57, '2024-02-20 10:55:34', 1),
(16706, 16511, 59, 1, 0, NULL, 57, '2024-02-20 10:59:36', 1),
(16707, 17080, 71, 5, 0, 'Not Fit For Sales', 110, '0000-00-00 00:00:00', 1),
(16708, 17084, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16709, 17088, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16710, 17086, 59, 5, 0, 'He is into core for many years and fresh to this domain Pressure handling in sales calls seems to be doubt As a fresher he will sustain for a long in this roles', 110, '0000-00-00 00:00:00', 1),
(16711, 17099, 102, 9, 0, 'He is not fit for sales , he is already worked on back end process or renewal collection department ', 110, '0000-00-00 00:00:00', 1),
(16712, 17089, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16713, 17087, 19, 5, 1, 'rejected', 110, '0000-00-00 00:00:00', 1),
(16714, 17090, 59, 4, 0, '5050 Profile fresher for our roles can give a try kindly check and let me know your inputs', 110, '0000-00-00 00:00:00', 1),
(16715, 17101, 53, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16716, 17069, 59, 3, 0, 'Selected for DM Team Relationship Executive Role 5050 Need to analyse in 7 days training', 105, '2024-02-20 01:37:17', 1),
(16717, 17099, 59, 1, 0, NULL, 102, '2024-02-20 04:08:54', 1),
(16718, 17054, 59, 3, 0, '3.5 L 30 days 2 L buiness then 3.75 LPA Commitment from Gaurav Sir and the profile got selected for GK Sir Team', 29, '2024-02-20 05:07:49', 1),
(16719, 17094, 59, 5, 0, 'Not suitable for our roles will nt sustain ', 110, '0000-00-00 00:00:00', 1),
(16720, 17106, 19, 5, 1, 'Not fir for salary', 110, '0000-00-00 00:00:00', 1),
(16721, 17102, 59, 5, 0, 'No Sustainability will not handle the work pressure not much comfort in calling too', 110, '0000-00-00 00:00:00', 1),
(16722, 17097, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16723, 17091, 102, 7, 0, 'Shortlist for team ', 108, '0000-00-00 00:00:00', 1),
(16724, 17092, 59, 2, 0, 'Need to confirm the salary for Operation max 16K overall should check with Gokul and confirm', 110, '0000-00-00 00:00:00', 1),
(16725, 17098, 59, 5, 0, 'Not suitable for our roles will not handle our pressure ', 110, '0000-00-00 00:00:00', 1),
(16726, 17096, 31, 5, 0, 'he will not fit for our lead generation and sales fprofile', 110, '0000-00-00 00:00:00', 1),
(16727, 17077, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16728, 17066, 59, 2, 0, 'Got rejected by the Sales Manager but by mistake he mentioned selected as he got other profile on the same name Evangelin,however we can give a try later with the profile for another manager too.Will confirm the DOI at the earliest', 29, '2024-02-20 06:03:15', 1),
(16729, 17055, 59, 3, 0, '30 Days 1.5L business then 3.2LPA Commitment by Gaurav Sir', 29, '2024-02-20 06:17:02', 1),
(16730, 17090, 19, 5, 1, 'Rejected', 59, '2024-02-20 07:54:40', 1),
(16731, 17107, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16732, 17123, 57, 5, 0, 'he is interested for IT\n', 110, '0000-00-00 00:00:00', 1),
(16733, 17112, 105, 5, 0, 'Communication is Not good', 110, '0000-00-00 00:00:00', 1),
(16734, 17122, 105, 7, 0, 'Candidate Performed ok xxamp Communication is Also little bit okey,will check in the training period', 110, '0000-00-00 00:00:00', 1),
(16735, 17120, 19, 7, 4, 'Selected', 110, '0000-00-00 00:00:00', 1),
(16736, 17121, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16737, 17105, 59, 5, 0, 'Location Constraint Fresher for our roles Daily travel is doubt and have a kid aged 1.5yrs long run doubts in this profile not suitable', 110, '0000-00-00 00:00:00', 1),
(16738, 17114, 59, 5, 0, 'Not suitable for our roles frequent job changes and getting married in next few months too long distance will not sustain', 110, '0000-00-00 00:00:00', 1),
(16739, 17137, 59, 2, 0, 'Holding an offer for 26K TH in Aditya Seems to doubt in our roles if she comes back let us try', 110, '0000-00-00 00:00:00', 1),
(16740, 17120, 59, 3, 0, 'Selected for DM Team in Relationship Executive Role Need to have a analyse in 7 days training', 19, '2024-02-21 03:55:39', 1),
(16741, 17138, 105, 5, 0, 'Candidate Perfomance is not good also expetation is to high', 108, '0000-00-00 00:00:00', 1),
(16742, 17136, 59, 5, 0, 'Not suitable for our roles looking only for salary for time being not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(16743, 17140, 86, 4, 0, 'selected For next round', 110, '0000-00-00 00:00:00', 1),
(16744, 17130, 89, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16745, 17127, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16746, 17128, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16747, 17129, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16748, 17131, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16749, 17122, 59, 3, 0, 'Can be trained in our roles selected for Relationship Executive DM Team will try in this role', 105, '2024-02-21 04:39:36', 1),
(16750, 17146, 102, 5, 0, 'Not Suitable Sales ', 110, '0000-00-00 00:00:00', 1),
(16751, 17152, 59, 5, 0, 'Looking for Desktop Support Engineer Role only not suitable for our roles', 110, '0000-00-00 00:00:00', 1),
(16752, 17155, 59, 3, 0, 'Selected for Operations Role Need to confirm from candidate side ', 110, '0000-00-00 00:00:00', 1),
(16753, 17143, 89, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16754, 17139, 105, 7, 0, 'Candidate Performance is Not too Good ,as well as expectation is high Also sustainity issue,But Will Check in the training period', 110, '0000-00-00 00:00:00', 1),
(16755, 17154, 59, 5, 0, 'Looking for Technical Support Role only', 110, '0000-00-00 00:00:00', 1),
(16756, 17162, 31, 5, 3, 'Expecting high salary and also tring to get govt jobs eagerly ', 110, '0000-00-00 00:00:00', 1),
(16757, 17165, 105, 5, 0, 'Candidate performance is very poor and he is not fit for our job ,also expected 18k but he is not worth for that', 110, '0000-00-00 00:00:00', 1),
(16758, 17139, 59, 1, 0, NULL, 105, '2024-02-22 03:36:49', 1),
(16759, 11967, 59, 4, 0, '5050 profile sustainability Doubts need to check his product knowledge kindly check and let me know your inputs', 110, '0000-00-00 00:00:00', 1),
(16760, 17167, 59, 3, 0, 'Selected for Relation Executive Role in Renewal Callling', 110, '0000-00-00 00:00:00', 1),
(16761, 17159, 59, 5, 0, 'Looking for Testing profile only', 110, '0000-00-00 00:00:00', 1),
(16762, 17161, 59, 3, 0, 'Selected for Operation Renewals Role', 110, '0000-00-00 00:00:00', 1),
(16763, 17150, 59, 5, 0, 'Will not handle the work pressure need to open up a lot', 110, '0000-00-00 00:00:00', 1),
(16764, 17145, 59, 2, 0, 'Salary Exp is high Sustainability doubts in a long run need to hold and check', 110, '0000-00-00 00:00:00', 1),
(16765, 17153, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16766, 17166, 19, 5, 1, 'Not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16767, 17164, 19, 7, 4, 'Job Needed Person Father And Mother Late So He Fit For The Job ', 110, '0000-00-00 00:00:00', 1),
(16768, 11967, 51, 5, 0, 'rejected', 59, '2024-02-22 07:28:41', 1),
(16769, 17186, 74, 5, 0, 'susatainablity issue', 110, '0000-00-00 00:00:00', 1),
(16770, 17168, 19, 5, 1, 'Not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16771, 17185, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(16772, 17174, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16773, 17183, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16774, 17188, 59, 5, 0, 'Not open for Field Appointments looking only for office Work and too long distance', 110, '0000-00-00 00:00:00', 1),
(16775, 17181, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16776, 17184, 31, 5, 4, 'not involved in direct sales or lead generation and expectation also high', 110, '0000-00-00 00:00:00', 1),
(16777, 17178, 59, 5, 0, 'Not much Suitable for the Insurance Sales Will not handle our work Pressure Long run Doubts ', 110, '0000-00-00 00:00:00', 1),
(16778, 17179, 19, 7, 4, 'She is working in General Insurance and also tele calling exp she speaks good and i think she is fit for our job and checking her family back ground She needs 16k to 17k salary i think am ok with that but we have to decide March 2nd and Kindly give joining on 4th of march', 110, '0000-00-00 00:00:00', 1),
(16779, 17175, 19, 5, 1, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16780, 17187, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16781, 17189, 89, 5, 0, 'Not fit for the job', 110, '0000-00-00 00:00:00', 1),
(16782, 17180, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16783, 17176, 59, 3, 0, 'Selected for Renewal Relationship Executive Role but candidate seems doubtful for the long Run Family Situations Just a try profile', 110, '0000-00-00 00:00:00', 1),
(16784, 17190, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16785, 17177, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16786, 17214, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16787, 17207, 19, 5, 0, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16788, 17198, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16789, 17205, 74, 7, 0, 'she is ok with the profile completed bsc and pursing mba final year.....have some sales knowledge and skills expected 12k have laptop father carpenter and poor side...ready to join kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(16790, 17202, 74, 7, 0, 'he is ok with the profile.....speak fluently and completed msc and prepare for govt job and highly job need have laptop and expected 12k...father running a business kindly check and confirm once', 108, '0000-00-00 00:00:00', 1),
(16791, 17206, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(16792, 17091, 59, 3, 0, 'Selected for Charles Team Should analyse in 7days training', 102, '2024-02-24 04:10:20', 1),
(16793, 17223, 59, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16794, 17212, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16795, 17202, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2024-02-24 06:24:36', 1),
(16796, 17205, 59, 3, 0, 'Selected for Sithy Team in consultant role', 74, '2024-02-24 06:40:17', 1),
(16797, 17092, 59, 3, 0, 'Selected for Renewal Team ', 59, '2024-02-24 06:42:31', 1),
(16798, 17194, 51, 5, 0, 'Rejected', 110, '0000-00-00 00:00:00', 1),
(16799, 17201, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16800, 17164, 59, 3, 0, 'Selected for Kanna n Team ', 19, '2024-02-26 10:24:40', 1),
(16801, 17196, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16802, 17179, 59, 1, 0, NULL, 19, '2024-02-26 11:36:12', 1),
(16803, 17225, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16804, 17244, 59, 2, 0, 'Communication Ok Looking Much For Target Free Profile Much Comfort To Work On Monday To Friday However She Is Fine With Our Conditions Monday To Saturday Left Without Attending The 2nd Round', 110, '0000-00-00 00:00:00', 1),
(16805, 17233, 59, 5, 0, 'No Relevant Exp age around 30 and taking calls and handling our work roles is not possible will not sustain', 110, '0000-00-00 00:00:00', 1),
(16806, 17232, 31, 5, 2, 'Suggested to check for accountant profile', 110, '0000-00-00 00:00:00', 1),
(16807, 17237, 19, 5, 1, 'Not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16808, 17241, 89, 5, 0, 'Long distance ', 110, '0000-00-00 00:00:00', 1),
(16809, 17246, 19, 5, 1, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(16810, 17242, 89, 5, 0, 'Worst ', 110, '0000-00-00 00:00:00', 1),
(16811, 17243, 89, 7, 0, 'Alredy work medical field . Selected ', 110, '0000-00-00 00:00:00', 1),
(16812, 17222, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16813, 17224, 102, 7, 0, 'Shortlist for team ', 110, '0000-00-00 00:00:00', 1),
(16814, 17231, 57, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16815, 17236, 89, 5, 0, 'No skill ', 110, '0000-00-00 00:00:00', 1),
(16816, 17235, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16817, 17240, 59, 2, 0, 'Communication Ok looking much for target free profile much comfort to work on Monday to friday however she is fine with our conditions Monday to Saturday left Without attending the 2nd round', 110, '0000-00-00 00:00:00', 1),
(16818, 17238, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16819, 17227, 27, 1, 0, NULL, 110, '0000-00-00 00:00:00', 1),
(16820, 17251, 74, 5, 0, 'not fit for telecalling', 110, '0000-00-00 00:00:00', 1),
(16821, 17249, 19, 5, 1, 'not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16822, 17256, 19, 5, 1, 'Not fit for sales', 110, '0000-00-00 00:00:00', 1),
(16823, 17264, 19, 5, 0, 'rejected', 108, '0000-00-00 00:00:00', 1),
(16824, 17250, 105, 5, 0, 'Candidate Sustainity Issue , Also Communication is Low', 104, '0000-00-00 00:00:00', 1),
(16825, 17260, 19, 5, 0, 'communication is not good', 104, '0000-00-00 00:00:00', 1),
(16826, 17270, 105, 5, 0, 'Candidate Weared Chappal Also Not Suitable For Our Domain And he need to improve his communication skills.', 104, '0000-00-00 00:00:00', 1),
(16827, 17243, 59, 1, 0, NULL, 89, '2024-02-28 10:27:08', 1),
(16828, 17291, 74, 5, 0, 'NOT FIT FOR SALES', 108, '0000-00-00 00:00:00', 1),
(16829, 17293, 74, 7, 0, 'she is ok with the profile completed bcom in bon secures, 1years working in auditing office and 2 years experience in school.. due to b.ed not completion releived from the job,,,have aggresive voice and overcome speaking capacity....highly focused in competative exam ...in tnpsc.....expected 12 to 13k....have laptop...father unemployed..mother house wife....brother worked in battery shop..highly job need..kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(16830, 17286, 19, 5, 0, 'Rejected', 108, '0000-00-00 00:00:00', 1),
(16831, 17266, 102, 5, 0, 'Not Suitable Sales ', 104, '0000-00-00 00:00:00', 1),
(16832, 17293, 59, 3, 0, 'Selected for sithy team', 74, '2024-02-28 06:21:29', 1),
(16833, 17265, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16834, 17269, 105, 7, 0, 'Candidate Performed well and her Communication is good ,But we prefered for 15k salary. kindly follow-up her.', 112, '0000-00-00 00:00:00', 1),
(16835, 17271, 105, 5, 0, 'Candidate Requried High Package ', 112, '0000-00-00 00:00:00', 1),
(16836, 17281, 59, 5, 0, 'No Tamil Communication will not handle our sales process not suitable', 112, '0000-00-00 00:00:00', 1),
(16837, 17296, 19, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(16838, 17307, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16839, 17284, 59, 4, 0, 'Communication ok Can be trained in our roles kindly check Sustainability doubts a lot check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(16840, 17292, 59, 5, 0, 'Not suitable for our sales roles will not sustain and handle our work pressure', 104, '0000-00-00 00:00:00', 1),
(16841, 17033, 19, 5, 1, 'rejected', 104, '0000-00-00 00:00:00', 1),
(16842, 17317, 102, 5, 0, 'Not Suitable For Sales ', 104, '0000-00-00 00:00:00', 1),
(16843, 17304, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16844, 17318, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16845, 17316, 19, 7, 0, 'She had a exp in tpa insurance and also doing claim she work in a corporate health insurance she speaks good her last salary 15k take home so i decide she has 18K INHAND SALARY ', 108, '0000-00-00 00:00:00', 1),
(16846, 17316, 59, 1, 0, NULL, 19, '2024-02-29 03:31:49', 1),
(16847, 17311, 59, 4, 0, '5050 profile communication Ok basic insurance knowledge he has kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(16848, 17312, 105, 7, 0, 'Candidate Performance and comminucation is good.she is expecting is 19k,but she is not have any experiance.kindly coordianate and provide 15k tc', 112, '0000-00-00 00:00:00', 1),
(16849, 17311, 86, 1, 0, NULL, 59, '2024-02-29 06:58:08', 1),
(16850, 17284, 51, 5, 0, 'Rejected', 59, '2024-02-29 07:17:05', 1),
(16851, 17269, 59, 3, 0, 'Selected for Gopinath Team', 105, '2024-03-02 12:59:49', 1),
(16852, 17312, 59, 1, 0, NULL, 105, '2024-03-02 01:02:38', 1),
(16853, 17330, 89, 5, 0, 'Not selected ', 112, '0000-00-00 00:00:00', 1),
(16854, 17329, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16855, 17305, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16856, 17334, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16857, 17335, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16858, 17309, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16859, 17310, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16860, 17332, 102, 7, 0, 'Shortlisted for Team ', 112, '0000-00-00 00:00:00', 1),
(16861, 17319, 105, 5, 0, 'Candidate Communication And Apperance is not good,his sustain is Doubt.', 112, '0000-00-00 00:00:00', 1),
(16862, 17322, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(16863, 17327, 59, 3, 0, 'Selected for Operation Renewal Team', 112, '0000-00-00 00:00:00', 1),
(16864, 17347, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16865, 17337, 19, 7, 4, 'Fresher only and she speaks good so we will try 7 days salary freshers salary', 104, '0000-00-00 00:00:00', 1),
(16866, 17337, 59, 3, 0, 'Selected for Kannan Tem', 19, '2024-03-04 04:05:08', 1),
(16867, 17224, 59, 3, 0, 'Selected for Charles Team\n', 102, '2024-03-04 05:37:56', 1),
(16868, 17339, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16869, 17326, 105, 7, 0, 'candidate communication and performance is good ,but little bit doubt in her sustainty,will check her in the training period', 104, '0000-00-00 00:00:00', 1),
(16870, 17349, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16871, 17343, 105, 5, 0, 'candidate performance and apperance is too bad,not fit for our job', 108, '0000-00-00 00:00:00', 1),
(16872, 17350, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16873, 17351, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16874, 17345, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16875, 17370, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16876, 17369, 59, 3, 0, 'Selected for Kannan Team in consultant Role Relationship Executive', 112, '0000-00-00 00:00:00', 1),
(16877, 17368, 59, 5, 0, 'Looking for Intern HR but no Communication Have some references too will not sustain', 112, '0000-00-00 00:00:00', 1),
(16878, 17365, 59, 3, 0, 'intern for Mutual fund Unpaid intern based on his performance should consider for Job', 112, '0000-00-00 00:00:00', 1),
(16879, 17364, 59, 5, 0, 'Fresher for our roles career Gap Language barrier Malayalam native will not sustain and handle our work pressure', 112, '0000-00-00 00:00:00', 1),
(16880, 17362, 105, 7, 0, 'candidate performed well also she have good communication and her confidence level also nice. she is expecting 15k to 18k inhand but she is pure fresher will provide fresher cost only', 112, '0000-00-00 00:00:00', 1),
(16881, 17357, 89, 5, 0, 'No basic skills ', 112, '0000-00-00 00:00:00', 1),
(16882, 17360, 102, 5, 0, 'Not Suitable For Sales ', 112, '0000-00-00 00:00:00', 1),
(16883, 17366, 89, 5, 0, 'No basic skills ', 112, '0000-00-00 00:00:00', 1),
(16884, 17358, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16885, 17355, 59, 3, 0, 'Selected for Mutual Fund Profile Relationship Executive Can be trained in our roles Communication Good ', 112, '0000-00-00 00:00:00', 1),
(16886, 17359, 59, 5, 0, 'Not suitable for our roles', 112, '0000-00-00 00:00:00', 1),
(16887, 17326, 59, 3, 0, 'Selected fpr Gopi Team', 105, '2024-03-05 06:17:48', 1),
(16888, 17362, 59, 1, 0, NULL, 105, '2024-03-05 06:23:24', 1),
(16889, 17374, 59, 4, 0, '5050 profile have telecalling exp in Visa process kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(16890, 17376, 59, 5, 0, 'Looking for Non-Voice process Career Gap will not sustain in our roles not suitable for our roles ', 104, '0000-00-00 00:00:00', 1),
(16891, 17378, 59, 4, 0, '5050 profile have exp but not a relevant one kindly check and let me know your inputs', 104, '0000-00-00 00:00:00', 1),
(16892, 17379, 102, 5, 0, 'Not Suitable For Sales ', 104, '0000-00-00 00:00:00', 1),
(16893, 17380, 59, 4, 0, 'Communication Good Having telecalling Exp can be trained in our roles kindly check and let me kow your inputs', 104, '0000-00-00 00:00:00', 1),
(16894, 17385, 86, 4, 0, 'Selected for Next round', 104, '0000-00-00 00:00:00', 1),
(16895, 17374, 105, 5, 0, 'Candidate Performance And Communication is Not Good ', 59, '2024-03-06 04:03:19', 1),
(16896, 17380, 71, 4, 0, 'Selected', 59, '2024-03-06 04:06:20', 1),
(16897, 17378, 19, 5, 0, 'rejected', 59, '2024-03-06 04:07:10', 1),
(16898, 17369, 19, 7, 4, 'Selected ', 59, '2024-03-06 04:16:14', 1),
(16899, 17398, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(16900, 17397, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(16901, 17375, 102, 5, 0, 'Not Suitable For Sales ', 112, '0000-00-00 00:00:00', 1),
(16902, 17394, 59, 4, 0, '5050 profile can give a try in our roles but expecting early leaving on fridays kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(16903, 17393, 59, 4, 0, 'Communication Good Can give a try in our roles but sustainability need to look kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(16904, 17396, 59, 2, 0, 'Intern for HR 3 months unpaid', 112, '0000-00-00 00:00:00', 1),
(16905, 17407, 59, 5, 0, 'Have Exp in Customer Support but sustainability Issue will not handle our sales calls', 112, '0000-00-00 00:00:00', 1),
(16906, 17393, 19, 7, 4, 'Selected ', 59, '2024-03-07 08:05:53', 1),
(16907, 17394, 19, 5, 0, 'Rejected', 59, '2024-03-07 08:06:57', 1),
(16908, 17410, 59, 5, 0, 'Not suitable for our sales Roles Communication Gap will not sustain and handle our work pressure', 112, '0000-00-00 00:00:00', 1),
(16909, 17422, 105, 5, 0, 'Candidate Apperrance And Performance is Not Good', 112, '0000-00-00 00:00:00', 1),
(16910, 17429, 51, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(16911, 17409, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16912, 17415, 51, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16913, 17426, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16914, 17428, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16915, 17425, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(16916, 17423, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16917, 17420, 102, 5, 0, 'Not Suitable For Sales ', 104, '0000-00-00 00:00:00', 1),
(16918, 17419, 105, 5, 0, 'Candidate is Comminication Good But Voice is Too Low Also Sustainity Problem', 104, '0000-00-00 00:00:00', 1),
(16919, 17427, 51, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(16920, 17446, 105, 5, 0, 'Candidate Apperance is Good But Performance is Poor , Also his talk is not properly', 108, '0000-00-00 00:00:00', 1),
(16921, 17385, 18, 8, 0, 'Not Attended', 86, '2024-03-09 02:45:45', 1),
(16922, 17140, 18, 8, 0, 'Not Attended', 86, '2024-03-09 02:46:56', 1),
(16923, 17450, 19, 5, 0, 'rejected', 108, '0000-00-00 00:00:00', 1),
(16924, 17447, 102, 7, 0, 'shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(16925, 17435, 57, 7, 0, 'candidate is ok, kindly confirm the joining xxamp Salary', 112, '0000-00-00 00:00:00', 1),
(16926, 17440, 89, 7, 0, 'Selected . But However, during the training period, a conclusion can be arrived at by assessing his performance', 112, '0000-00-00 00:00:00', 1),
(16927, 17369, 59, 3, 0, 'Selected for Kannan Team in consultant Role Relationship Executive', 19, '2024-03-09 07:09:26', 1),
(16928, 17393, 59, 1, 0, NULL, 19, '2024-03-09 07:10:04', 1),
(16929, 17435, 59, 3, 0, 'Selected for Relationship Executive Role in Staff Role', 57, '2024-03-09 07:38:17', 1),
(16930, 17440, 59, 3, 0, 'Selected for Babu Team Relationship Executive', 89, '2024-03-09 08:41:08', 1),
(16931, 17447, 59, 3, 0, 'Selected for Charles Team Relationship Executive Role Direct Marketing ', 102, '2024-03-11 11:48:29', 1),
(16932, 17493, 59, 5, 0, 'Communication Average Will not sustain in our roles not suitable', 104, '0000-00-00 00:00:00', 1),
(16933, 17495, 102, 7, 0, 'Shortlisted for team ', 112, '0000-00-00 00:00:00', 1),
(16934, 17498, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16935, 17468, 57, 5, 0, 'Exp high ', 112, '0000-00-00 00:00:00', 1),
(16936, 17472, 89, 7, 0, 'Selected . But He asked for a higher salary.I have told him that the office will not pay the salary he is asking for', 112, '0000-00-00 00:00:00', 1),
(16937, 17488, 102, 5, 0, 'not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(16938, 17497, 59, 5, 0, 'Intern looking Need to open up a lot not suitable in our work roles', 112, '0000-00-00 00:00:00', 1),
(16939, 17491, 105, 7, 0, 'candidate communication and performance is good , but need to confrim her in the training period', 112, '0000-00-00 00:00:00', 1),
(16940, 17499, 105, 7, 0, 'Candidate Comminication And Performance Is Good ,But Her Expectation Is Too High,Consider For Fresher Salary ,If She Not Ok With That Kindly omit her', 112, '0000-00-00 00:00:00', 1),
(16941, 17461, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16942, 17505, 109, 5, 0, 'interview taken by banu mam, she rejects the profile', 104, '0000-00-00 00:00:00', 1),
(16943, 17504, 109, 5, 0, 'interview taken by banu mam, she rejects this profile', 104, '0000-00-00 00:00:00', 1),
(16944, 17503, 109, 5, 0, 'interview taken by banu mam, she rejects this profile', 104, '0000-00-00 00:00:00', 1),
(16945, 17506, 59, 5, 0, 'Communication OK But Pressure handling in sales and Sustainability Doubts in our role let her check and confirm ', 112, '0000-00-00 00:00:00', 1),
(16946, 17332, 59, 3, 0, 'Selected for Charles Team\n', 102, '2024-03-12 10:39:55', 1),
(16947, 17495, 59, 3, 0, 'Selected for Charles Team ', 102, '2024-03-12 11:48:45', 1),
(16948, 17472, 59, 1, 0, NULL, 89, '2024-03-12 12:09:57', 1),
(16949, 17517, 19, 7, 4, 'Already He Knowns MF And He Speaks Good So I Dont Want To Train Him In Sales And MF,CTC 17k ', 108, '0000-00-00 00:00:00', 1),
(16950, 17521, 59, 5, 0, 'Not suitable for our sales roles will not sustain and handle our work pressure', 108, '0000-00-00 00:00:00', 1),
(16951, 17513, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16952, 17463, 105, 5, 0, 'her Salary Expectation is to high also she is worked in star as back end process.', 112, '0000-00-00 00:00:00', 1),
(16953, 17510, 19, 5, 1, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(16954, 17526, 53, 7, 0, 'Vaishnavi ref. having telecalling exp for 2 yrs, good candidate. pls cnfrm the joining and salary', 112, '0000-00-00 00:00:00', 1),
(16955, 17532, 19, 7, 4, 'Job needed Person recently married so we have to try in 7 days training and Freshers salary', 112, '0000-00-00 00:00:00', 1),
(16956, 17512, 59, 5, 0, 'Will not sustain and handle our work pressure no sustainability in her previous exp', 112, '0000-00-00 00:00:00', 1),
(16957, 17518, 102, 5, 0, 'Not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(16958, 17514, 59, 5, 0, 'Looking for non voice process only', 112, '0000-00-00 00:00:00', 1),
(16959, 17517, 59, 3, 0, 'SEleccted for Kannan Tean', 19, '2024-03-12 03:44:09', 1),
(16960, 17532, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-03-12 05:07:53', 1),
(16961, 17499, 59, 1, 0, NULL, 105, '2024-03-12 05:13:52', 1),
(16962, 17491, 59, 3, 0, 'Selected for Gopinath Team Sustainability should focus need to analyse in 7 days', 105, '2024-03-12 05:18:20', 1),
(16963, 17431, 102, 5, 0, 'Not suitable Sales ', 112, '0000-00-00 00:00:00', 1),
(16964, 17520, 59, 5, 0, 'Not suitable due to work pressure she left also the salary exp is high not suitable', 112, '0000-00-00 00:00:00', 1),
(16965, 17543, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16966, 17555, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16967, 17566, 102, 5, 0, 'Not Suitable For Sales ', 112, '0000-00-00 00:00:00', 1),
(16968, 17553, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16969, 17556, 59, 3, 0, 'Selected for santhosh Team', 112, '0000-00-00 00:00:00', 1),
(16970, 17530, 59, 5, 0, 'Not suitable for our roles Will not sustain and handle our work pressure', 112, '0000-00-00 00:00:00', 1),
(16971, 17542, 59, 2, 0, 'Selected for MF role 5050 in MF Sales xxamp Support Need to confirm the DOJ', 112, '0000-00-00 00:00:00', 1),
(16972, 17547, 57, 7, 0, 'Candidate is ok pls confirm the joining date xxamp Salary .', 112, '0000-00-00 00:00:00', 1),
(16973, 17547, 59, 1, 0, NULL, 57, '2024-03-14 02:40:34', 1),
(16974, 16385, 19, 5, 1, 'Not fit for sales and he is nott tried to speak', 112, '0000-00-00 00:00:00', 1),
(16975, 17545, 57, 7, 0, 'Candidate is ok pls confirm the joining date xxamp Salary ', 112, '0000-00-00 00:00:00', 1),
(16976, 17574, 105, 5, 0, 'candidate performance and communication is not good , also he is not able to go for outside calls ', 112, '0000-00-00 00:00:00', 1),
(16977, 17525, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16978, 17560, 102, 5, 0, 'not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(16979, 17567, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16980, 17570, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16981, 17561, 105, 5, 0, 'candidate commnunication is good , but her sustatinity is doubt', 112, '0000-00-00 00:00:00', 1),
(16982, 17568, 59, 5, 0, 'No sustainability Communication No will not sustain in our roles not suitable', 112, '0000-00-00 00:00:00', 1),
(16983, 17572, 89, 7, 0, 'Selected. But I Have To Analyze Him During The Seven-Day Training Period', 112, '0000-00-00 00:00:00', 1),
(16984, 17571, 71, 5, 0, 'No skills in sales industry ', 108, '0000-00-00 00:00:00', 1),
(16985, 17575, 59, 5, 0, 'Not suitable for our roles no communication Stamerring a lot ', 112, '0000-00-00 00:00:00', 1),
(16986, 17573, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(16987, 17545, 59, 1, 0, NULL, 57, '2024-03-14 07:24:36', 1),
(16988, 17572, 59, 3, 0, 'Selected for Babu Team Much preferred to work in Non voice process Sustainability need to check', 89, '2024-03-14 07:28:00', 1),
(16989, 17556, 71, 4, 0, 'Selected', 59, '2024-03-14 08:05:15', 1),
(16990, 17535, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(16991, 17581, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16992, 17582, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(16993, 17583, 102, 5, 0, 'Not Suitable For Sales ', 112, '0000-00-00 00:00:00', 1),
(16994, 17587, 19, 7, 4, 'Selected ', 112, '0000-00-00 00:00:00', 1),
(16995, 17589, 71, 4, 0, 'Selected ', 112, '0000-00-00 00:00:00', 1),
(16996, 17590, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16997, 17594, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(16998, 17591, 57, 5, 0, 'Sales not interested', 112, '0000-00-00 00:00:00', 1),
(16999, 17579, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(17000, 17599, 102, 5, 0, 'Not suitable for sales ', 108, '0000-00-00 00:00:00', 1),
(17001, 17601, 74, 7, 0, 'he is ok with the profile complete bsc cS...and course completed in chennai IT course...due to financial issue not completed msc....job need and fresher expected 12k...father farmer and have laptop...travel time half hour ...kindly check about sustainability and confirm ..imeediate joining.', 108, '0000-00-00 00:00:00', 1),
(17002, 17603, 59, 5, 0, 'Not suitable for our roles will not sustain', 108, '0000-00-00 00:00:00', 1),
(17003, 17602, 59, 4, 0, '5050 profile have exp in calling can give a try kindly check and let me know your inputs', 108, '0000-00-00 00:00:00', 1),
(17004, 17601, 59, 3, 0, 'Selected for Sithy Team in Consultant Role', 74, '2024-03-16 04:52:02', 1),
(17005, 17602, 71, 5, 0, 'Not Fit For Sales', 59, '2024-03-16 07:36:14', 1),
(17006, 15509, 59, 3, 0, 'Selecetd for Node MySQL intern with Employment ', 60, '0000-00-00 00:00:00', 1),
(17007, 17526, 59, 3, 0, 'Selected for Banu Team in Consultant Role', 53, '2024-03-18 05:57:08', 1),
(17008, 17612, 109, 4, 0, 'interview taken by banu mam she moved this profile for second round', 104, '0000-00-00 00:00:00', 1),
(17009, 17607, 105, 5, 0, 'Candidate Communication is Not too good also her sis ter is working in same hDB finance . Sustanity doubt', 104, '0000-00-00 00:00:00', 1),
(17010, 17605, 74, 7, 0, 'He is ok with the profile completed MSC ...maths ,,,candiddate intrested in telecalling...already selected in hdfc credit card section but due to distance he is not join in the company....poor family only ...highly job need...intrested in IT ....kindly chck once have laptop ...expected 12k..immediate joining..father own van driver..', 104, '0000-00-00 00:00:00', 1),
(17011, 17587, 60, 1, 0, NULL, 19, '2024-03-18 07:03:58', 1),
(17012, 17611, 59, 3, 0, 'Selected for Charles TEam\n', 102, '2024-03-18 07:46:01', 1),
(17013, 17589, 60, 1, 0, NULL, 71, '2024-03-18 08:01:16', 1),
(17014, 17380, 18, 7, 0, 'Selected for Santhosh Team. Package to be decided by the HR as discused and Immed Joiner', 71, '2024-03-18 08:03:07', 1),
(17015, 17556, 60, 1, 0, NULL, 71, '2024-03-19 10:15:13', 1),
(17016, 17605, 59, 3, 0, 'Selected for Sithy Team', 74, '2024-03-19 11:51:15', 1),
(17017, 17614, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17018, 17616, 59, 4, 0, '5050 profile have exp in calling but sustainability doubts a lot kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(17019, 17613, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17020, 17615, 59, 4, 0, 'Communication Ok Have Exp in callling can be trained in our roles kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(17021, 15537, 59, 5, 0, 'No Local Language not suitable for our roles will not sustain and high salaryexp', 112, '0000-00-00 00:00:00', 1),
(17022, 17617, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17023, 17615, 51, 5, 0, 'Rejected', 59, '2024-03-19 07:52:32', 1),
(17024, 17616, 105, 5, 0, 'Candidate Communication And Performance is Not Good,Also Her Experiance Quality Also Low', 59, '2024-03-19 07:53:24', 1),
(17025, 17631, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17026, 17632, 31, 5, 4, 'he very much interested in his own business and not relevant experience like sales or lead generation', 112, '0000-00-00 00:00:00', 1),
(17027, 17380, 60, 1, 0, NULL, 18, '2024-03-20 03:35:33', 1),
(17028, 17629, 51, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17029, 17641, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17030, 17643, 105, 5, 0, 'Candidate Communication And Performance is Not Good,Also His Attire is poor in interview', 104, '0000-00-00 00:00:00', 1),
(17031, 17650, 109, 5, 0, 'interview taken by banu mam, she rejects this profile', 108, '0000-00-00 00:00:00', 1),
(17032, 17645, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17033, 17644, 57, 7, 0, 'Candidate is ok,kindly confirm the salary and joining date\n', 112, '0000-00-00 00:00:00', 1),
(17034, 17665, 57, 5, 0, 'Communication not good', 112, '0000-00-00 00:00:00', 1),
(17035, 17288, 57, 5, 0, 'candidate is not ok for sales job.she int for makeartist', 112, '0000-00-00 00:00:00', 1),
(17036, 17715, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17037, 17690, 59, 2, 0, 'Have Exp in Testing for 8 years Good Candidate open for new domain and interested to learn we can proceed for MF Roles', 112, '0000-00-00 00:00:00', 1),
(17038, 17646, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17039, 17713, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17040, 17627, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17041, 17749, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(17042, 17728, 59, 2, 0, '5050 profile Career Gap Insurance Sales handling doubts not much open for Target need to come with his confirmation', 112, '0000-00-00 00:00:00', 1),
(17043, 17788, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17044, 17762, 89, 5, 0, 'No skill.. health problems ', 112, '0000-00-00 00:00:00', 1),
(17045, 17791, 59, 4, 0, 'Communication Good Have exp in Sales Life insurance Can be trained in our roles kindly check for Sarath Team Sir', 112, '0000-00-00 00:00:00', 1),
(17046, 17719, 57, 7, 0, 'Candidate is ok,sounds good pls confirm the salary xxamp joining date', 112, '0000-00-00 00:00:00', 1),
(17047, 17730, 89, 7, 0, 'Selected.. ', 112, '0000-00-00 00:00:00', 1),
(17048, 17724, 57, 7, 0, '50/50 Distance xxamp Sustainability', 112, '0000-00-00 00:00:00', 1),
(17049, 17737, 57, 8, 0, 'Not yet seen the candidate', 112, '0000-00-00 00:00:00', 1),
(17050, 17793, 109, 5, 0, 'Virtual interview taken by me, not much clear with his communication. he will not suitable for our role.', 104, '0000-00-00 00:00:00', 1),
(17051, 17792, 109, 4, 0, 'Good with his communication and experience in sales.', 104, '0000-00-00 00:00:00', 1),
(17052, 17776, 59, 5, 0, '5050 profile too long distance will not sustain and handle our work pressure not suitable', 108, '0000-00-00 00:00:00', 1),
(17053, 17725, 57, 7, 0, '50/50 ', 112, '0000-00-00 00:00:00', 1),
(17054, 17791, 29, 1, 0, NULL, 59, '2024-03-22 07:12:34', 1),
(17055, 17644, 59, 1, 0, NULL, 57, '2024-03-23 11:10:19', 1),
(17056, 17815, 74, 7, 0, 'she is ok with the profile completed bsc and worked in equitas small finance bank 2 years and releived joined in jiogeet mutual fund back end process with 15k salary due to covid releived from the job ..married past three years unemployed ...spouse finace collection process....home to office travel time half hour have no laptop expected 15k....april 1 joining ...kindly check once and confirm...speaked well and professional too', 108, '0000-00-00 00:00:00', 1),
(17057, 17730, 59, 3, 0, 'Selected for Babu Team', 89, '2024-03-23 12:41:56', 1),
(17058, 17724, 59, 1, 0, NULL, 57, '2024-03-23 01:33:12', 1),
(17059, 17725, 59, 3, 0, 'SElected for Syed Team in Consultant Role - Relationship Executive need to analyse and confirm the position in 7 days sustainability Doubts', 57, '2024-03-23 01:34:38', 1),
(17060, 17719, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-03-23 01:37:38', 1),
(17061, 17847, 59, 3, 0, 'Selected for HR profile Banaglore Location in Staff /Role', 60, '0000-00-00 00:00:00', 1),
(17062, 17806, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17063, 17849, 105, 5, 0, 'Candidate Performance And Communication Is poor,as well as his attire is not good ', 112, '0000-00-00 00:00:00', 1),
(17064, 17849, 105, 5, 0, 'Candidate Performance And Communication Is poor,as well as his attire is not good ', 112, '0000-00-00 00:00:00', 1),
(17065, 17818, 57, 5, 0, '50/50 she is interested for sales xxamp iT', 112, '0000-00-00 00:00:00', 1),
(17066, 17819, 57, 5, 0, 'Not suitable for salae', 112, '0000-00-00 00:00:00', 1),
(17067, 17839, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17068, 17821, 19, 7, 4, 'job needed person and he fit for sales lets try after 7 days only we have to confirm', 112, '0000-00-00 00:00:00', 1),
(17069, 17815, 59, 3, 0, 'Selected for Sithy Team in Consultant Career Gap need to anallyse in 7 days', 74, '2024-03-23 05:36:31', 1),
(17070, 17835, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17071, 17833, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17072, 17836, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(17073, 17881, 59, 3, 0, 'Selected for Employment 16K initial for 3 months then 18K', 60, '0000-00-00 00:00:00', 1),
(17074, 17879, 57, 5, 0, 'Salary exp High xxamp Outside field not int', 112, '0000-00-00 00:00:00', 1),
(17075, 17853, 57, 5, 0, 'language issue, he comfortable with Telugu ', 112, '0000-00-00 00:00:00', 1),
(17076, 17922, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17077, 17898, 57, 5, 0, 'He is looking inside sales', 112, '0000-00-00 00:00:00', 1),
(17078, 17913, 86, 7, 0, 'Shortlisted for my team. Ctc 3.1 Lakhs. Joining at April 1st.', 112, '0000-00-00 00:00:00', 1),
(17079, 17939, 105, 5, 0, 'Candidate performance and communication is good ,but she is expecting high salary package also she is very attitude', 112, '0000-00-00 00:00:00', 1),
(17080, 17855, 59, 5, 0, 'Not suitable for Sales having exp in Inbound and backend operation Holding another offer too will not sustain ', 112, '0000-00-00 00:00:00', 1),
(17081, 17925, 19, 7, 4, 'Fresher ,i hope she fit for sales', 112, '0000-00-00 00:00:00', 1),
(17082, 17930, 59, 2, 0, 'Can give a try need to check with the team and confirm', 112, '0000-00-00 00:00:00', 1),
(17083, 18000, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(17084, 17964, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17085, 17963, 74, 7, 0, 'he is ok with the profile completed bca in krishna college coimbaore....father passed....mother worked goverment daily attender daily wages....grandfather take over the family by realestate business.....degree completed 2020....6 months in acess health care chennai and releived due to covid...and unemployed for 1 and half years...and worked in a tractor marketing field...sales 6 month and releived....speaked well and have good exposure...have laptop...expected 12 to 15k....salary....imeediate joinig kindly check once ', 108, '0000-00-00 00:00:00', 1),
(17086, 18020, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(17087, 18109, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17088, 18076, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17089, 18110, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17090, 18108, 105, 5, 0, 'Candidate Performance And Communication Is Not Good, Candidate Brother working in tata aig', 112, '0000-00-00 00:00:00', 1),
(17091, 17952, 57, 5, 0, 'Candidate over all 3yrs exp, Sal exp 25k to 28k. 50/50 ', 112, '0000-00-00 00:00:00', 1),
(17092, 17979, 57, 2, 0, 'candidate is ok,i have given 2days of time, he donxquott know the sales process and basic', 112, '0000-00-00 00:00:00', 1),
(17093, 18083, 59, 5, 0, 'Not suitable for our roles will not sustain', 112, '0000-00-00 00:00:00', 1),
(17094, 17957, 57, 5, 0, 'he is mother tongue hindi, He try to manage tamil,Language issues and he is not for sales job and field work.pls check with properly over the call.', 112, '0000-00-00 00:00:00', 1),
(17095, 17651, 105, 5, 0, 'Candidate Performance and communication is not good,attire also very poor', 112, '0000-00-00 00:00:00', 1),
(17096, 17977, 57, 5, 0, 'fresher exp 18k. Sustainability issues ', 112, '0000-00-00 00:00:00', 1),
(17097, 18136, 31, 5, 3, 'referred by RM Ganesh but candidate is seems to be aggressive ', 112, '0000-00-00 00:00:00', 1),
(17098, 17805, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17099, 18118, 57, 4, 0, 'Candidate is ok, Communication Good ', 112, '0000-00-00 00:00:00', 1),
(17100, 17913, 60, 1, 0, NULL, 86, '2024-03-27 01:01:24', 1),
(17101, 18129, 86, 4, 0, 'Selected for next round', 112, '0000-00-00 00:00:00', 1),
(17102, 18123, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17103, 18116, 105, 5, 0, 'Candidate Performance And Communication Is Not Good,also expecting high salary package', 112, '0000-00-00 00:00:00', 1),
(17104, 18138, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17105, 17927, 59, 4, 0, 'Have Exp in calling but not a relevant one can be trained in our roles kindly check and let me know your inputs', 112, '0000-00-00 00:00:00', 1),
(17106, 18130, 31, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17107, 18137, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17108, 18125, 31, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(17109, 17925, 59, 3, 0, 'Selected for Kannan Team\n', 19, '2024-03-27 06:04:53', 1),
(17110, 17821, 59, 1, 0, NULL, 19, '2024-03-27 06:06:49', 1),
(17111, 17792, 30, 1, 0, NULL, 109, '2024-03-27 06:43:44', 1),
(17112, 17612, 30, 7, 3, 'In hand suggested 19k max', 109, '2024-03-27 06:46:44', 1),
(17113, 13890, 109, 5, 0, 'Not selected for apttitude test.', 109, '2024-03-27 07:03:26', 1),
(17114, 13889, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:34', 1),
(17115, 13888, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:40', 1),
(17116, 13904, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:47', 1),
(17117, 13902, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:53', 1),
(17118, 13901, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:03:59', 1),
(17119, 13900, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:04:08', 1),
(17120, 13896, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:04:14', 1),
(17121, 13949, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:04:32', 1),
(17122, 13895, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:04:39', 1),
(17123, 13948, 109, 5, 0, 'Not Selected For Apttitude Test.', 109, '2024-03-27 07:05:10', 1),
(17124, 18118, 59, 3, 0, 'Selected for Syed Team ', 57, '2024-03-28 09:41:25', 1),
(17125, 18155, 59, 3, 0, 'Selected for Syed Team in Consultant Role Need to analyse in 7 days ', 112, '0000-00-00 00:00:00', 1),
(17126, 18129, 59, 3, 0, 'Selected for Manikandan Team in staff Role', 86, '2024-03-28 03:19:59', 1),
(17127, 18160, 19, 7, 4, 'Selected ', 112, '0000-00-00 00:00:00', 1),
(17128, 18161, 19, 5, 0, 'not willing to work on sunday', 112, '0000-00-00 00:00:00', 1),
(17129, 18151, 31, 5, 1, 'already worked as accountant and most of his experience in the same field', 112, '0000-00-00 00:00:00', 1),
(17130, 18152, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17131, 18163, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17132, 18162, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17133, 18158, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17134, 18142, 59, 5, 0, 'Looking for Non Voice Process only not suitable', 112, '0000-00-00 00:00:00', 1),
(17135, 18149, 59, 2, 0, 'Have Exp as lead and checked for Sr profile 2nd round interviewed by Gaurav and received positive responses, need to check with director and confirm', 112, '0000-00-00 00:00:00', 1),
(17136, 18148, 59, 4, 0, '5050 profile explained in detail about the roles, sustainability Doubts a lot kindly check once and let me know', 112, '0000-00-00 00:00:00', 1),
(17137, 18155, 57, 4, 0, 'Candidate is ok,pls confirm the joining date xxamp Salary', 59, '2024-03-28 05:46:58', 1),
(17138, 18156, 109, 4, 0, 'candidate is ok, can proceed with next level interview', 104, '0000-00-00 00:00:00', 1),
(17139, 18126, 109, 5, 0, 'He was looking for finance related role, not suitable for sales', 104, '0000-00-00 00:00:00', 1),
(17140, 18155, 59, 3, 0, 'Selected for Syed Team in Consultant Role Need to analyse in 7 days ', 57, '2024-03-28 06:46:15', 1),
(17141, 18127, 109, 4, 0, 'candidate in ok, can proceed with second level face to face interview', 104, '0000-00-00 00:00:00', 1),
(17142, 18132, 109, 5, 0, 'Looking for non voice', 104, '0000-00-00 00:00:00', 1),
(17143, 18154, 109, 5, 0, 'Not Interested in sales', 104, '0000-00-00 00:00:00', 1),
(17144, 18165, 109, 2, 0, 'had experience with different domain, but interested in sales, high expectation.', 104, '0000-00-00 00:00:00', 1),
(17145, 18127, 30, 1, 0, NULL, 109, '2024-03-28 07:05:34', 1),
(17146, 18156, 30, 1, 0, NULL, 109, '2024-03-28 07:06:42', 1),
(17147, 18167, 105, 7, 0, 'Candidate communication and performance is good , will check with him in the training period ', 112, '0000-00-00 00:00:00', 1),
(17148, 17963, 59, 3, 0, 'Selected for Sithy Team', 74, '2024-03-29 11:28:36', 1),
(17149, 18169, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17150, 18190, 86, 7, 0, 'Shortlisted for my team. Ctc \n2.9 Lakhs. ', 112, '0000-00-00 00:00:00', 1),
(17151, 18185, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17152, 18181, 105, 5, 0, 'Candidate Communication And Performance is Not Good ,Voice is Also Not Clear', 112, '0000-00-00 00:00:00', 1),
(17153, 18183, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17154, 18176, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17155, 18184, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17156, 18174, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17157, 18175, 105, 5, 0, 'Candidate Communication ANd Performance is Not Good Also His Attire is Very Poor', 112, '0000-00-00 00:00:00', 1),
(17158, 18177, 105, 5, 0, 'Candidate Communication And Performance Is Not Good', 112, '0000-00-00 00:00:00', 1),
(17159, 18191, 57, 5, 0, 'Over all 5yr exp,50/50 ', 112, '0000-00-00 00:00:00', 1),
(17160, 18180, 102, 7, 0, 'shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17161, 18182, 102, 5, 0, 'below 18age and not suitable for sales \n', 112, '0000-00-00 00:00:00', 1),
(17162, 18196, 19, 5, 0, 'too high salary but not fitfor that', 112, '0000-00-00 00:00:00', 1),
(17163, 18171, 109, 4, 0, 'Good communication, interested in sales can proceed with direct walkin.', 112, '0000-00-00 00:00:00', 1),
(17164, 18190, 60, 1, 0, NULL, 86, '2024-03-29 04:52:41', 1),
(17165, 18179, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17166, 18198, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17167, 18201, 57, 5, 0, 'He is not suitable for sales xxamp Voice process', 112, '0000-00-00 00:00:00', 1),
(17168, 18203, 86, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17169, 18202, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17170, 17979, 59, 3, 0, 'Selected for Syed Team Fresher need to train from the Scratch', 57, '2024-03-30 01:12:16', 1),
(17171, 17979, 57, 4, 0, 'Candidate is ok,Kindly move', 57, '2024-03-30 01:12:16', 1),
(17172, 18200, 59, 5, 0, 'Not Suitable for our roles not open to work in Target Will not sustain', 112, '0000-00-00 00:00:00', 1),
(17173, 18204, 59, 2, 0, 'Communication Ok can be trained in our MF Roles if he comes back for next round will check', 112, '0000-00-00 00:00:00', 1),
(17174, 18207, 59, 5, 0, 'Communication very low will not sustain and handle our work roles also he is full of IT Team', 112, '0000-00-00 00:00:00', 1),
(17175, 18209, 59, 5, 0, 'Having hearning issue will not handle our calling Activities not suitable', 112, '0000-00-00 00:00:00', 1),
(17176, 18202, 59, 3, 0, 'Selected for Charles Team ', 102, '2024-03-30 05:31:28', 1),
(17177, 18180, 60, 1, 0, NULL, 102, '2024-03-30 05:32:02', 1),
(17178, 18167, 59, 3, 0, 'Selected for Gopi Team', 105, '2024-03-30 07:12:59', 1),
(17179, 18148, 86, 1, 0, NULL, 59, '2024-04-01 11:18:43', 1),
(17180, 17927, 71, 4, 0, 'Good communication, 1.5 Years Gap in career, We will train and analyse for 7 days and then will move. ', 59, '2024-04-01 11:21:21', 1),
(17181, 18223, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17182, 18225, 53, 5, 0, 'Sustainability Concern', 112, '0000-00-00 00:00:00', 1),
(17183, 18197, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17184, 18212, 57, 7, 0, 'Candidate is ok, Fresher \n50/50 kindly confirm the joining date and salary', 112, '0000-00-00 00:00:00', 1),
(17185, 18228, 53, 5, 0, 'Not suit fr telecalling', 112, '0000-00-00 00:00:00', 1),
(17186, 18224, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17187, 18219, 74, 5, 0, 'unfit', 108, '0000-00-00 00:00:00', 1),
(17188, 18220, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(17189, 18214, 74, 7, 0, 'he is ok with the profile, completed bca in coimbatore...after 2 month worked as a telecaller, and going to dubai..after 6 month came to india due to emergency father facing accident and doing photography in part time, mother also health issue...last 8 months worked in a matrimony and releived....last salary 17k ....father water cane business....brother in abroad.....travel time 30km have bike...ready to arrange laptop...kindly check once', 108, '0000-00-00 00:00:00', 1),
(17190, 18215, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17191, 17564, 59, 3, 0, 'Selected for Team Lead Role in Direct Marketing', 60, '0000-00-00 00:00:00', 1),
(17192, 17564, 18, 7, 0, 'Selected as BDM for Health Team. Salary and Joining as discussed', 59, '2024-04-02 10:11:16', 1),
(17193, 18212, 59, 3, 0, 'Selected for Syed Team', 57, '2024-04-02 10:53:40', 1),
(17194, 18238, 53, 7, 0, 'Selected. Pls cnfrm the salary and DOJ', 127, '0000-00-00 00:00:00', 1),
(17195, 17564, 60, 1, 0, NULL, 18, '2024-04-02 01:33:13', 1),
(17196, 18234, 105, 5, 0, 'Candidate Communication ANd Performance Is Not Good Also His Attire Is Very Poor,Sustainity Problem is Doubt', 126, '0000-00-00 00:00:00', 1),
(17197, 18251, 53, 7, 0, 'Selected for b2b. Appointment fixing channel, pls cnfrm the sal and DOJ', 112, '0000-00-00 00:00:00', 1),
(17198, 18249, 105, 5, 0, 'Candidate Performance is Low', 112, '0000-00-00 00:00:00', 1),
(17199, 18259, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17200, 18258, 53, 7, 0, 'selected. Pls cnfrm the salary and DOJ', 112, '0000-00-00 00:00:00', 1),
(17201, 18242, 53, 7, 0, 'Selected. Pls cnfrm the sal and DOJ', 112, '0000-00-00 00:00:00', 1),
(17202, 18241, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17203, 18237, 53, 7, 0, 'He Is Capable Of Convincing People, Yet He Has A Slight Fear Of Closing Sales. Need To Double-Check. Please Confirm The Salary And DOJ If He Is Okay With Sales.', 112, '0000-00-00 00:00:00', 1),
(17204, 18171, 131, 1, 0, NULL, 109, '2024-04-02 04:44:25', 1),
(17205, 18240, 53, 5, 0, 'She is not fluent in Tamil, and she is also planned for IT.', 112, '0000-00-00 00:00:00', 1),
(17206, 18233, 59, 5, 0, 'Not suitable for our sales roles looking much of HR roles only will not sustain and handle our sales roles', 112, '0000-00-00 00:00:00', 1),
(17207, 18262, 59, 5, 0, 'Not suitable for our roles will not sustain and no communication', 112, '0000-00-00 00:00:00', 1),
(17208, 18232, 53, 7, 0, 'Long distance must first verify the distance before providing joing. Just a 50/50 profile', 112, '0000-00-00 00:00:00', 1),
(17209, 18247, 29, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17210, 17598, 59, 1, 0, NULL, 19, '2024-04-03 09:57:12', 1),
(17211, 18160, 59, 3, 0, 'Selected for Kannan Team in Staff Role', 19, '2024-04-03 10:21:43', 1),
(17212, 18281, 74, 5, 0, 'unfit for telesales', 108, '0000-00-00 00:00:00', 1),
(17213, 18236, 131, 4, 0, 'Good communication, interested in sales ', 126, '0000-00-00 00:00:00', 1),
(17214, 18236, 30, 7, 3, 'in hand 20k will fianlize and immediate joining', 131, '2024-04-03 03:23:05', 1),
(17215, 18237, 59, 1, 0, NULL, 53, '2024-04-03 03:37:21', 1),
(17216, 18256, 131, 5, 0, 'Lack of communication and no knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17217, 18218, 131, 4, 0, 'Good communication, have knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17218, 18218, 30, 7, 4, 'need to discuss about ctc and joining date', 131, '2024-04-03 04:06:14', 1),
(17219, 18283, 57, 5, 0, 'sal exp high and distance too long', 112, '0000-00-00 00:00:00', 1),
(17220, 18263, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17221, 18274, 31, 5, 4, 'she didnt know that came for sales profile earlier she worked with data entry. just for the consultancy call she came for the interview', 112, '0000-00-00 00:00:00', 1),
(17222, 18271, 86, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17223, 18266, 102, 5, 0, 'not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17224, 18279, 19, 5, 0, 'not intrested in sales', 112, '0000-00-00 00:00:00', 1),
(17225, 18277, 86, 7, 0, 'Selected for my team ', 112, '0000-00-00 00:00:00', 1),
(17226, 18276, 19, 5, 0, 'distance issue i think he is not cont the job long', 112, '0000-00-00 00:00:00', 1),
(17227, 18278, 105, 5, 0, 'Candidate Communication is Good , Bust She Expected high Salary Also Some Attitude', 112, '0000-00-00 00:00:00', 1),
(17228, 18284, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17229, 18282, 31, 5, 0, 'Not suitable for our role', 112, '0000-00-00 00:00:00', 1),
(17230, 18269, 105, 5, 0, 'Candidate Communication Is Good But Expected High Salary', 112, '0000-00-00 00:00:00', 1),
(17231, 18273, 102, 7, 0, 'shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17232, 18218, 60, 1, 0, NULL, 30, '2024-04-03 08:34:04', 1),
(17233, 18236, 60, 1, 0, NULL, 30, '2024-04-03 08:35:33', 1),
(17234, 18293, 53, 5, 0, 'inadequate communication skills and a preference for nonvoice processes', 112, '0000-00-00 00:00:00', 1),
(17235, 18246, 74, 5, 0, 'unfit for team', 108, '0000-00-00 00:00:00', 1),
(17236, 18294, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17237, 18251, 59, 3, 0, 'selected for Banu Team Relationship Executive', 53, '2024-04-04 12:23:47', 1),
(17238, 18238, 59, 3, 0, 'Selected for Banu DM Team Relationship Executive Can give a try in 7 days and check', 53, '2024-04-04 12:24:36', 1),
(17239, 18232, 59, 3, 0, 'Selected for Banu Team Relationship Executive Role Need to analyse in 7 days and confirm too long distance sustainability Doubts a lot', 53, '2024-04-04 12:28:07', 1),
(17240, 18258, 59, 1, 0, NULL, 53, '2024-04-04 12:28:55', 1),
(17241, 18242, 59, 3, 0, 'Selected for Banu Team Relationship Executive Role', 53, '2024-04-04 12:29:44', 1),
(17242, 18305, 102, 5, 0, 'not suitable for sales and he said not interested for field work ', 112, '0000-00-00 00:00:00', 1),
(17243, 18300, 57, 7, 0, 'Candidate is 50/50 Need to check with Training Period', 112, '0000-00-00 00:00:00', 1),
(17244, 18299, 57, 5, 0, 'Communication not good,unfit for sales', 112, '0000-00-00 00:00:00', 1),
(17245, 18291, 131, 5, 0, 'Lack of knowledge in sales field and issue with field work', 126, '0000-00-00 00:00:00', 1),
(17246, 18302, 131, 4, 0, 'Good Communication and basic knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17247, 18302, 30, 7, 4, 'cross verify previous ctc and immediate joining', 131, '2024-04-04 02:08:55', 1),
(17248, 18214, 59, 1, 0, NULL, 74, '2024-04-04 02:36:40', 1),
(17249, 18303, 19, 5, 0, 'expecting too high salary', 112, '0000-00-00 00:00:00', 1),
(17250, 18295, 105, 5, 0, 'Candidate Communication is Good But her Expectation is too high', 112, '0000-00-00 00:00:00', 1),
(17251, 18307, 105, 5, 0, 'Candidate Communication And Attore is Not Good ', 112, '0000-00-00 00:00:00', 1),
(17252, 18298, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17253, 18301, 105, 5, 0, 'Candidate Performance and communication is not good', 112, '0000-00-00 00:00:00', 1),
(17254, 18306, 126, 1, 0, NULL, 127, '0000-00-00 00:00:00', 1),
(17255, 18306, 30, 1, 0, NULL, 131, '2024-04-04 03:41:44', 1),
(17256, 18302, 60, 1, 0, NULL, 30, '2024-04-04 04:28:04', 1),
(17257, 18286, 131, 4, 0, 'Confident, have some knowledge about sales', 127, '0000-00-00 00:00:00', 1),
(17258, 18316, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(17259, 18286, 53, 7, 0, 'Shortlisted. Pls cnfrm the salary and DOJ', 131, '2024-04-05 10:50:53', 1),
(17260, 18126, 60, 1, 0, NULL, 30, '2024-04-05 11:40:58', 1),
(17261, 17612, 60, 1, 0, NULL, 30, '2024-04-05 11:42:54', 1),
(17262, 18313, 131, 5, 0, 'Lack of communication, No proper response, for every question Answers are blank ', 126, '0000-00-00 00:00:00', 1),
(17263, 18330, 131, 5, 0, 'Looking in HR field lack of knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17264, 18331, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(17265, 18317, 53, 7, 0, 'Selected. Pls cnfrm the salary and DOJ', 112, '0000-00-00 00:00:00', 1),
(17266, 18319, 53, 5, 0, 'Doing full stack developer course, looking IT', 112, '0000-00-00 00:00:00', 1),
(17267, 18315, 53, 5, 0, 'Poor communication, no clarity', 112, '0000-00-00 00:00:00', 1),
(17268, 18325, 53, 5, 0, 'She is searching for non-violent process. Not intrested in telecalling.', 112, '0000-00-00 00:00:00', 1),
(17269, 18336, 53, 7, 0, '50-50, fresher need to check sustainability', 112, '0000-00-00 00:00:00', 1),
(17270, 18329, 53, 5, 0, 'He canxquott take pressure; he left his previous job under pressure, even though it was a non-voice process.', 112, '0000-00-00 00:00:00', 1),
(17271, 18328, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17272, 18321, 31, 5, 0, 'new to sales not willing to go to field', 112, '0000-00-00 00:00:00', 1),
(17273, 18320, 31, 5, 2, 'Not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17274, 18326, 31, 4, 4, 'candidate has telecalling and lead geneation experience', 112, '0000-00-00 00:00:00', 1),
(17275, 18332, 89, 7, 0, 'Selected.. ', 112, '0000-00-00 00:00:00', 1),
(17276, 18327, 102, 5, 0, 'Not suitable for sales existing he is working operation team so, i rejected the profile ', 112, '0000-00-00 00:00:00', 1),
(17277, 18337, 131, 5, 0, 'Lack of communication, lack of Knowledge ', 126, '0000-00-00 00:00:00', 1),
(17278, 18317, 59, 1, 0, NULL, 53, '2024-04-05 03:39:00', 1),
(17279, 18336, 59, 3, 0, 'Selected for Banu Team Relationship Executive ', 53, '2024-04-05 03:39:57', 1),
(17280, 17926, 19, 5, 0, 'Not ready to go appt', 112, '0000-00-00 00:00:00', 1),
(17281, 18340, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17282, 18338, 31, 5, 1, 'Not interested in sales due to his age they assigned me', 112, '0000-00-00 00:00:00', 1),
(17283, 18335, 31, 5, 2, 'due to no BDMs available they assigned him to me', 112, '0000-00-00 00:00:00', 1),
(17284, 18333, 31, 5, 0, 'Not suitable for our role', 112, '0000-00-00 00:00:00', 1),
(17285, 18310, 89, 7, 0, 'Fresher.. selected ', 112, '0000-00-00 00:00:00', 1),
(17286, 18318, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17287, 18345, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17288, 18323, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17289, 18334, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17290, 18297, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17291, 18346, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17292, 18339, 131, 2, 0, 'Lack of Knowledge about sales ', 126, '0000-00-00 00:00:00', 1),
(17293, 18364, 131, 4, 0, 'Good Communication, can process for next round', 126, '0000-00-00 00:00:00', 1),
(17294, 18364, 53, 7, 0, 'Shortlisted. Pls cnfrm the salary and DOJ', 131, '2024-04-06 12:06:18', 1),
(17295, 18367, 131, 4, 0, 'Good communication, can process for next round', 126, '0000-00-00 00:00:00', 1),
(17296, 18367, 53, 1, 0, NULL, 131, '2024-04-06 12:52:32', 1),
(17297, 18353, 19, 5, 0, 'well settled family so not fit for the job', 112, '0000-00-00 00:00:00', 1),
(17298, 18360, 105, 5, 0, 'Inteviewed By Kanna,As Per His Conversation Candidate Perfomance and communication is not good', 112, '0000-00-00 00:00:00', 1),
(17299, 18354, 105, 5, 0, 'Inteviewed By Kanna,As Per his Conversation Candidate Profile is Not Good', 112, '0000-00-00 00:00:00', 1),
(17300, 18358, 105, 5, 0, 'Inteviewed By Kanna,As Per His Conversation Candidate Communication is very low', 112, '0000-00-00 00:00:00', 1),
(17301, 18342, 102, 5, 0, 'Not suit for tele sales', 112, '0000-00-00 00:00:00', 1),
(17302, 18362, 105, 5, 0, 'Inteviewed By Kanna,As Per His Conversation Candidate Performance is Poor', 112, '0000-00-00 00:00:00', 1),
(17303, 18363, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17304, 18359, 105, 7, 0, 'Shortlisted By Kannan,As Per Our Conversation Profile 50/50 Ratio Will Try In The Training Period', 112, '0000-00-00 00:00:00', 1),
(17305, 18373, 131, 5, 0, 'Looking in some other process, salary Exception is high', 126, '0000-00-00 00:00:00', 1),
(17306, 18369, 89, 7, 0, 'Alredy experience 2 years star health ', 112, '0000-00-00 00:00:00', 1),
(17307, 18372, 89, 7, 0, 'Alredy experience 3 month star health ', 112, '0000-00-00 00:00:00', 1),
(17308, 18368, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17309, 18359, 59, 3, 0, 'Selected for Relationship Executive Role Need to Analyse in 7 Days', 105, '2024-04-08 10:25:05', 1),
(17310, 18260, 131, 4, 0, 'Good Communication, carry sales experience can process for next round', 127, '0000-00-00 00:00:00', 1),
(17311, 18377, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(17312, 18372, 59, 3, 0, 'Selected for Giri Team Relationship executive Need to analyse in 7 days', 89, '2024-04-08 11:42:50', 1),
(17313, 18369, 59, 3, 0, 'SElected for RElationship Executive Role Babu Team Need to analyse in 7 days', 89, '2024-04-08 11:43:21', 1),
(17314, 18328, 59, 3, 0, 'Selected for Charles Team in Relationship Executive Need to analyse in 7 days', 102, '2024-04-08 11:52:05', 1),
(17315, 18300, 59, 3, 0, 'Selected for Relationship executive Roles Syed Team Need to analyse and confirm in 7 days', 57, '2024-04-08 12:16:02', 1),
(17316, 18380, 131, 4, 0, 'Good communication can process for further round', 126, '0000-00-00 00:00:00', 1),
(17317, 18380, 53, 1, 0, NULL, 131, '2024-04-08 01:15:12', 1),
(17318, 18379, 57, 5, 0, 'Candidate is unfit for sales profile', 112, '0000-00-00 00:00:00', 1),
(17319, 18375, 89, 7, 0, 'Selected.. giri team', 112, '0000-00-00 00:00:00', 1),
(17320, 18378, 105, 5, 0, 'Inteviewed By Kanna,As Per His Conversation Candidate Performance and communication is not well', 112, '0000-00-00 00:00:00', 1),
(17321, 18376, 19, 5, 0, 'Excepting high salary', 112, '0000-00-00 00:00:00', 1),
(17322, 18386, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17323, 18385, 57, 5, 0, 'Candidate is over 2 to 3yrs exp,\nSal exp 20k pls try with pc side', 112, '0000-00-00 00:00:00', 1),
(17324, 18384, 57, 9, 0, 'Candidate is ok, over all 4yrs exp,pls try mf or renewal ', 112, '0000-00-00 00:00:00', 1),
(17325, 18383, 19, 5, 0, 'rejected (dress code)', 112, '0000-00-00 00:00:00', 1),
(17326, 18344, 131, 5, 0, 'Lack of Knowledge about sales process and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(17327, 18389, 131, 5, 0, 'Salary expectation is high, lack of knowledge about process', 126, '0000-00-00 00:00:00', 1),
(17328, 18324, 131, 5, 0, 'Lack of knowledge about sales and high salary expectation', 126, '0000-00-00 00:00:00', 1),
(17329, 18384, 59, 1, 0, NULL, 57, '2024-04-08 04:11:42', 1),
(17330, 18326, 29, 1, 0, NULL, 31, '2024-04-08 04:23:03', 1),
(17331, 18260, 30, 7, 3, 'confirm joining and ctc', 131, '2024-04-08 04:40:24', 1),
(17332, 18260, 60, 1, 0, NULL, 30, '2024-04-08 05:14:40', 1),
(17333, 18310, 59, 3, 0, 'Selected for babu Team Relationship Executive Role Fresher need to analyse and confirm in 7 days training\n', 89, '2024-04-08 05:42:03', 1),
(17334, 18332, 59, 1, 0, NULL, 89, '2024-04-08 05:43:21', 1),
(17335, 18395, 102, 5, 0, 'he is not accept field work ', 112, '0000-00-00 00:00:00', 1),
(17336, 18273, 59, 1, 0, NULL, 102, '2024-04-08 06:23:46', 1),
(17337, 18397, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17338, 18413, 89, 7, 0, 'Already 3 month experience at star health. But salary expectation is high.. ', 112, '0000-00-00 00:00:00', 1),
(17339, 18409, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17340, 18408, 105, 5, 0, 'She is Intrested in Non Voice Process Only', 112, '0000-00-00 00:00:00', 1),
(17341, 18407, 102, 7, 0, 'shortlist for team fresher good convincing skill and she little bit know health insurance ', 112, '0000-00-00 00:00:00', 1),
(17342, 18399, 105, 7, 0, 'Candidate Performance And Communication is good,Will Check With Her in the training period', 112, '0000-00-00 00:00:00', 1),
(17343, 18410, 102, 5, 0, '6 Month experience for hDFC credit card operation team he get a salary 12k but high expectation 20k abve and he is not interested sales ', 112, '0000-00-00 00:00:00', 1),
(17344, 18421, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17345, 18420, 57, 5, 0, 'Unfit for sales xxamp Field Work', 112, '0000-00-00 00:00:00', 1),
(17346, 18419, 86, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17347, 18416, 19, 7, 4, 'Job needed person so will try 7 Days ', 112, '0000-00-00 00:00:00', 1),
(17348, 18415, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17349, 18407, 59, 1, 0, NULL, 102, '2024-04-09 04:16:22', 1),
(17350, 18428, 105, 5, 0, 'Candidate Communication And Performance Is Not Good. Also expected high package', 112, '0000-00-00 00:00:00', 1),
(17351, 18427, 105, 5, 0, 'Candidate Communication And Performance is Not Good.', 112, '0000-00-00 00:00:00', 1),
(17352, 18413, 59, 1, 0, NULL, 89, '2024-04-09 04:50:47', 1),
(17353, 18277, 60, 1, 0, NULL, 86, '2024-04-09 05:11:32', 1),
(17354, 18399, 59, 3, 0, 'Selected for Backend Operation Attended for sales and got shortlisted for Gopi team too but candidate is much interested in Operations', 105, '2024-04-09 05:38:41', 1),
(17355, 18423, 57, 5, 0, 'Field work not int and communication not good', 112, '0000-00-00 00:00:00', 1),
(17356, 17927, 60, 1, 0, NULL, 71, '2024-04-10 10:23:50', 1),
(17357, 18404, 74, 5, 0, 'expected non voice', 108, '0000-00-00 00:00:00', 1),
(17358, 18405, 19, 5, 0, 'canxquott handle the pressure', 108, '0000-00-00 00:00:00', 1),
(17359, 18462, 131, 5, 0, 'Lack of communication.', 126, '0000-00-00 00:00:00', 1),
(17360, 18439, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(17361, 18442, 53, 5, 0, 'Looking Non voice', 112, '0000-00-00 00:00:00', 1),
(17362, 18451, 105, 5, 0, 'Candidate Communication And Performance Is Not Good. Also not in the formal then his expectation is also high', 112, '0000-00-00 00:00:00', 1),
(17363, 18448, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17364, 18454, 105, 5, 0, 'Candidate Communication And Performance is Low , Also Some Attitude Type', 112, '0000-00-00 00:00:00', 1),
(17365, 18437, 19, 5, 0, 'not a matured guy', 112, '0000-00-00 00:00:00', 1),
(17366, 18422, 105, 5, 0, 'She Is Intrested In Non Voice Process Only', 112, '0000-00-00 00:00:00', 1),
(17367, 18458, 89, 7, 0, 'Selected.. ', 112, '0000-00-00 00:00:00', 1),
(17368, 18459, 89, 7, 0, 'Selected.. salary expectation is high. Giri raj team', 112, '0000-00-00 00:00:00', 1),
(17369, 18457, 89, 7, 0, 'Selected.. salary expectation is high.. giri raj team', 112, '0000-00-00 00:00:00', 1),
(17370, 18453, 19, 7, 4, 'He obser what we speak so will try 7days', 112, '0000-00-00 00:00:00', 1),
(17371, 18441, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17372, 18432, 105, 5, 0, 'She is Intrested In Non Voice Process Only', 112, '0000-00-00 00:00:00', 1),
(17373, 18443, 53, 7, 0, 'selected for my team', 112, '0000-00-00 00:00:00', 1),
(17374, 18450, 59, 5, 0, 'Will not sustain in our role too long distance pressure handling doubts in our role ', 112, '0000-00-00 00:00:00', 1),
(17375, 18438, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17376, 10115, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17377, 18456, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17378, 18411, 53, 5, 0, 'Inconsistent work history', 112, '0000-00-00 00:00:00', 1),
(17379, 18463, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17380, 18455, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17381, 18445, 74, 5, 0, 'unfit\n', 108, '0000-00-00 00:00:00', 1),
(17382, 18471, 112, 1, 0, NULL, 127, '0000-00-00 00:00:00', 1),
(17383, 18469, 102, 5, 0, 'she is already worked in vizza health insurance back end team but not suitable for sales ', 104, '0000-00-00 00:00:00', 1),
(17384, 18452, 57, 2, 0, 'Candidate is ok ,1.10 Years experience collection xxamp Telecalling,Now he is in notice period,Notice 90 days, so we need to confirm@June 1st week thanks', 104, '0000-00-00 00:00:00', 1),
(17385, 18461, 71, 4, 0, 'Selected, Candidate was working in sales field, Good sales skill, Good communication and will finalize the pacakage 24.5k TH', 104, '0000-00-00 00:00:00', 1),
(17386, 18401, 105, 5, 0, 'She is Intrested in Non Voice Process Only', 112, '0000-00-00 00:00:00', 1),
(17387, 18479, 53, 2, 0, 'Shortlisted for sales process, he needs one week time to decide.', 112, '0000-00-00 00:00:00', 1),
(17388, 18477, 105, 5, 0, 'Candidate communication is not good ', 112, '0000-00-00 00:00:00', 1),
(17389, 18480, 53, 5, 0, 'Looking non voice process', 112, '0000-00-00 00:00:00', 1),
(17390, 18473, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17391, 18481, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17392, 18483, 29, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17393, 18474, 29, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17394, 18433, 51, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17395, 18488, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17396, 18500, 89, 5, 0, 'Not fit the profile ', 112, '0000-00-00 00:00:00', 1),
(17397, 18482, 74, 5, 0, 'not suite for tele calling', 108, '0000-00-00 00:00:00', 1),
(17398, 18414, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(17399, 18498, 74, 5, 0, 'not fit for tele calling', 108, '0000-00-00 00:00:00', 1),
(17400, 18493, 53, 2, 0, 'long distance', 112, '0000-00-00 00:00:00', 1),
(17401, 18497, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(17402, 18501, 19, 5, 0, 'doubt in sustainability', 112, '0000-00-00 00:00:00', 1),
(17403, 18502, 102, 5, 0, 'Not suitable for sales he is interested in HR department more then company attend the hr department but still not get offer so, right now choose sales ', 112, '0000-00-00 00:00:00', 1),
(17404, 18505, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17405, 18506, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17406, 18523, 102, 5, 0, 'interested in it related job right now not completed it related course so, need money for course so, right now looking for any job', 130, '0000-00-00 00:00:00', 1),
(17407, 18515, 57, 1, 0, NULL, 130, '0000-00-00 00:00:00', 1),
(17408, 18524, 102, 5, 0, '2023 past out , she is last 6month worked MLM company so, she is said sales is difficult right now looking for non voice process ', 130, '0000-00-00 00:00:00', 1),
(17409, 18521, 19, 5, 0, 'expecting high salary', 130, '0000-00-00 00:00:00', 1),
(17410, 18525, 102, 5, 0, 'interested in video maker not completed the course right now need money for course completion any time quick the job ', 108, '0000-00-00 00:00:00', 1),
(17411, 18522, 19, 5, 0, 'NOT TRY TO CONVINCING ME IN SALES', 108, '0000-00-00 00:00:00', 1),
(17412, 18514, 57, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(17413, 18512, 105, 5, 0, 'Candidate Expected High Salary', 108, '0000-00-00 00:00:00', 1),
(17414, 18513, 105, 5, 0, 'Candidate Communication And Performance is not good', 108, '0000-00-00 00:00:00', 1),
(17415, 18529, 19, 5, 0, 'sustainability is doubt ', 108, '0000-00-00 00:00:00', 1),
(17416, 18507, 102, 7, 0, 'Shortlist for team fresher she is doing intership 6month for\n sales (insurance ,credit , loan ) good communication skill then right now going exam so, check and update joining date !! \n\nthank you', 108, '0000-00-00 00:00:00', 1),
(17417, 18531, 57, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(17418, 18528, 74, 7, 0, 'he is ok with the profile completed be in trichy and worked in tata sky for 7k salary sister home in bangalore...due to covid releived and done mba in US sister home in US and due to financial issued discontined mba and came to native ....two years experience in honda sales...getting slary 12k ..and releived due to no slary ...attend interview in hdfc but due to lag of ecperience in insurance he is rejected,,,,father doing studio business...have laptop and ready to joined immediately...expected 15k.....kindly check once', 108, '0000-00-00 00:00:00', 1),
(17419, 18489, 105, 7, 0, 'CANDIADTE COMMUNICATION AND PERFORMANCE IS GOOD .WILL CHECK WITH HER IN THE TRAINING PERIOD ', 108, '0000-00-00 00:00:00', 1),
(17420, 18507, 59, 1, 0, NULL, 102, '2024-04-13 04:18:06', 1),
(17421, 18532, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(17422, 18510, 102, 7, 0, 'shortlist for team ', 108, '0000-00-00 00:00:00', 1),
(17423, 18510, 59, 3, 0, 'Selected for Charles Team Need to analyse in 7 days\n', 102, '2024-04-13 04:51:34', 1),
(17424, 18528, 59, 3, 0, 'Selected for Sithy Team ', 74, '2024-04-13 04:52:49', 1),
(17425, 18457, 59, 3, 0, 'Selected for Relationship Executive Role will not sustain just looking for salary will not handle pressure Need to analyse in 7 days', 89, '2024-04-15 10:04:27', 1),
(17426, 18459, 59, 3, 0, 'Selected for Relationship Executive Role Need to analyse in 7 days training', 89, '2024-04-15 10:05:05', 1),
(17427, 18458, 59, 3, 0, 'Selected for Relationship Executive Role NEed to analyse and finalise the profile in 7 days', 89, '2024-04-15 10:05:41', 1),
(17428, 18416, 59, 1, 0, NULL, 19, '2024-04-15 10:06:59', 1),
(17429, 18443, 59, 3, 0, 'Selected for Banu Team DM Role', 53, '2024-04-15 10:07:58', 1),
(17430, 18453, 59, 3, 0, 'Selected for Kannan Team ', 19, '2024-04-15 10:08:43', 1),
(17431, 18375, 59, 3, 0, 'Selected for Babu Team ', 89, '2024-04-15 10:25:41', 1),
(17432, 18461, 60, 1, 0, NULL, 71, '2024-04-15 10:34:45', 1),
(17433, 18489, 59, 3, 0, 'Selected for Gopi Team Good Communication Can give a try Need to analyse in 7 days', 105, '2024-04-15 10:34:52', 1),
(17434, 18364, 59, 3, 0, 'Selected for Bangalore - Relationship Executive Role', 53, '2024-04-15 12:52:06', 1),
(17435, 18286, 59, 3, 0, 'Selected for Bangalore Relationship Executive Role ', 53, '2024-04-15 12:54:27', 1),
(17436, 18475, 131, 4, 0, 'Good communication, basic knowledge about sales and insurance and can process with next round', 126, '0000-00-00 00:00:00', 1),
(17437, 18475, 53, 1, 0, NULL, 131, '2024-04-15 02:57:12', 1),
(17438, 18540, 74, 7, 0, 'she is ok with the profile completed bsc fashion technology , family not support to continue in the fashion field and have no oportunity in thanjavur,,,,,so ready to join imeediately, already selected in tech mahindra and hexaware due to low salary not willing to join.imeediately...expected 12 to 13k and have laptop ...father worked hdfc loan process, kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(17439, 18539, 74, 5, 0, 'not fit for team', 108, '0000-00-00 00:00:00', 1),
(17440, 18540, 59, 3, 0, 'Selecetd for Sithy Team Can give a try 5050 sustainability much preferred for Non Voice', 74, '2024-04-15 04:04:53', 1),
(17441, 18547, 89, 5, 0, 'No skill for sales jop', 112, '0000-00-00 00:00:00', 1),
(17442, 18545, 89, 7, 0, 'Candidate is selected and salary is 15k and I will train for 7 days and final the candidate ', 108, '0000-00-00 00:00:00', 1),
(17443, 18552, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17444, 18542, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(17445, 18551, 19, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17446, 18556, 19, 5, 0, 'he did not observe what we saying', 112, '0000-00-00 00:00:00', 1),
(17447, 18545, 59, 3, 0, 'Selected fr Giri Team Relationship Executive Role Need to analyse in 7 days', 89, '2024-04-15 06:30:27', 1),
(17448, 18582, 131, 5, 0, 'Not interested in field work', 126, '0000-00-00 00:00:00', 1),
(17449, 18566, 74, 5, 0, 'not fit for telecalling', 108, '0000-00-00 00:00:00', 1),
(17450, 18567, 74, 5, 0, 'not fit for sales', 108, '0000-00-00 00:00:00', 1),
(17451, 18568, 74, 5, 0, 'not suit for process', 108, '0000-00-00 00:00:00', 1),
(17452, 18565, 131, 5, 0, 'Interested in IT process', 126, '0000-00-00 00:00:00', 1),
(17453, 18576, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17454, 18562, 71, 4, 0, 'Selected to next round ', 112, '0000-00-00 00:00:00', 1),
(17455, 18569, 71, 4, 0, 'Selected to second round ', 112, '0000-00-00 00:00:00', 1),
(17456, 18560, 102, 5, 0, 'not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17457, 18578, 19, 7, 4, 'Job Needed Person Letxquots try 7 Days Trial ', 112, '0000-00-00 00:00:00', 1),
(17458, 18579, 105, 5, 0, 'Candidate Voice is Not Clear,Also Communication And Performance is Not Good', 112, '0000-00-00 00:00:00', 1),
(17459, 18561, 131, 4, 0, 'Good communication and have basic knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17460, 18561, 30, 1, 0, NULL, 131, '2024-04-16 12:51:22', 1),
(17461, 18580, 71, 5, 0, 'Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17462, 18575, 131, 4, 0, 'Good communication and carried Experience in sales', 126, '0000-00-00 00:00:00', 1),
(17463, 18575, 30, 7, 4, 'immediate joining selected for DM channel previous in hand 23k suggested 24k ', 131, '2024-04-16 12:57:13', 1),
(17464, 18573, 131, 4, 0, 'Good communication and basic knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17465, 18487, 131, 4, 0, 'Good communication and carries basic Knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17466, 18573, 30, 7, 4, 'confirmed for dm cross check previous ctc suggested 15k', 131, '2024-04-16 02:26:16', 1),
(17467, 18487, 30, 7, 3, 'ok for Dm channel max in hand 22k cross check previous ctc', 131, '2024-04-16 02:27:22', 1),
(17468, 18577, 131, 5, 0, 'Lack of confident and communication', 126, '0000-00-00 00:00:00', 1),
(17469, 18590, 131, 5, 0, 'lack of knowledge about sales and not interested in field work', 126, '0000-00-00 00:00:00', 1),
(17470, 18592, 131, 5, 0, 'Lack of communication and confident', 126, '0000-00-00 00:00:00', 1),
(17471, 18591, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17472, 18589, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17473, 18584, 131, 5, 0, 'Father is working in same insurance field ', 126, '0000-00-00 00:00:00', 1),
(17474, 18546, 131, 4, 0, 'Good communication, have experience in sales', 127, '0000-00-00 00:00:00', 1),
(17475, 18546, 30, 7, 3, 'cross check the previous ctc .he expecting 30k take home try to 27k immediate joining', 131, '2024-04-16 04:50:08', 1),
(17476, 18546, 60, 1, 0, NULL, 30, '2024-04-16 04:52:53', 1),
(17477, 18487, 60, 1, 0, NULL, 30, '2024-04-16 05:02:09', 1),
(17478, 18593, 131, 5, 0, 'Lack of communication and knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17479, 18578, 59, 1, 0, NULL, 19, '2024-04-16 06:52:57', 1),
(17480, 18562, 18, 7, 4, 'Selected for Santhosh Team. Ready to Join in a weeks time. Current CTC is 4.5L and asking 10% hike. Please negotitate the salary with him.', 71, '2024-04-16 07:54:55', 1),
(17481, 18569, 18, 7, 4, 'Selected for Santhosh Team. immedeate Joiner. Offered 3.85L CTC', 71, '2024-04-16 07:55:33', 1),
(17482, 18541, 131, 8, 0, 'Not attended the interview', 127, '0000-00-00 00:00:00', 1),
(17483, 18569, 60, 1, 0, NULL, 18, '2024-04-17 10:18:14', 1),
(17484, 18562, 60, 1, 0, NULL, 18, '2024-04-17 10:20:01', 1),
(17485, 18606, 51, 7, 0, 'shortlisted', 112, '0000-00-00 00:00:00', 1),
(17486, 18596, 19, 5, 1, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17487, 18598, 105, 5, 0, 'Her Communication Good ,But She is Not Suitable For Sales', 112, '0000-00-00 00:00:00', 1),
(17488, 18600, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17489, 18603, 102, 4, 0, 'he is expected 19k salary , already have net 16.5k so, review and check and update ', 112, '0000-00-00 00:00:00', 1),
(17490, 18597, 74, 2, 0, 'doubtful for sales and pressure handling', 108, '0000-00-00 00:00:00', 1),
(17491, 18599, 74, 7, 0, 'she is ok with the profile fresher and ready to join imeediately....have laptop ....have good exposure hand every situation......highly job need and past 1 year seeking for job...kindly check once and confirm', 108, '0000-00-00 00:00:00', 1),
(17492, 18599, 59, 1, 0, NULL, 74, '2024-04-17 04:24:06', 1),
(17493, 18611, 131, 4, 0, 'Confident and have knowledge about the sales and insurance process', 126, '0000-00-00 00:00:00', 1),
(17494, 18611, 30, 7, 4, 'suggested ctc upto 20k but he will join on may 1st', 131, '2024-04-17 04:42:40', 1),
(17495, 18573, 60, 1, 0, NULL, 30, '2024-04-17 05:07:19', 1),
(17496, 18609, 131, 4, 0, 'Good communication ', 126, '0000-00-00 00:00:00', 1),
(17497, 18609, 30, 7, 4, 'suggested ctc 15k immediate joining ', 131, '2024-04-17 05:08:56', 1),
(17498, 18611, 60, 1, 0, NULL, 30, '2024-04-17 05:09:58', 1),
(17499, 18609, 60, 1, 0, NULL, 30, '2024-04-17 05:11:34', 1),
(17500, 18603, 59, 1, 0, NULL, 102, '2024-04-17 06:25:28', 1),
(17501, 18639, 131, 4, 0, 'Good communication and basic knowledge about sales and insurance can process for next round', 126, '0000-00-00 00:00:00', 1),
(17502, 18639, 30, 7, 3, 'fresher as per company ctc suggested immediate joining Selected for dm', 131, '2024-04-18 04:04:26', 1),
(17503, 18617, 137, 7, 0, 'Better skill and insurance experience ', 104, '0000-00-00 00:00:00', 1),
(17504, 18631, 102, 5, 0, 'Experience but not suitable for insurance sales ', 112, '0000-00-00 00:00:00', 1),
(17505, 18629, 137, 5, 0, 'Over Attitude, no skill and fake information ', 112, '0000-00-00 00:00:00', 1),
(17506, 18625, 53, 7, 0, 'Selected for DM. Pls cnfrm the salary and DOJ', 112, '0000-00-00 00:00:00', 1),
(17507, 18583, 19, 5, 1, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(17508, 18632, 139, 4, 0, 'Have Exp in Bank Bazaar Telecalling can be trained in our roles Need to analyse in 7 days of training', 112, '0000-00-00 00:00:00', 1),
(17509, 18616, 140, 4, 0, 'Selected for next round', 112, '0000-00-00 00:00:00', 1),
(17510, 18617, 59, 3, 0, 'Selected for Giri Team in Relationship Executive Role need to analyse in 7 days and confirm', 137, '2024-04-18 04:29:07', 1),
(17511, 18637, 131, 4, 0, 'Good communication and carried Experience in sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(17512, 18637, 30, 7, 3, 'suggested ctc 20 to 22k max\nimmediate joining', 131, '2024-04-18 04:39:54', 1),
(17513, 18575, 60, 1, 0, NULL, 30, '2024-04-18 04:42:09', 1),
(17514, 18637, 60, 1, 0, NULL, 30, '2024-04-18 04:43:23', 1),
(17515, 18639, 60, 1, 0, NULL, 30, '2024-04-18 04:44:38', 1),
(17516, 18601, 131, 5, 0, 'Unable to relocate to bangalore', 127, '0000-00-00 00:00:00', 1),
(17517, 18630, 131, 5, 0, 'Lack of communication', 127, '0000-00-00 00:00:00', 1),
(17518, 18633, 138, 4, 0, 'Communication skills medium good then well prepared and organized then finally Positive attitude and team player', 112, '0000-00-00 00:00:00', 1),
(17519, 18623, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(17520, 18625, 59, 3, 0, 'Selected for DM Banu Team Relationship Executive Role Need to analyse in 7 days and confirm', 53, '2024-04-18 05:58:02', 1),
(17521, 18616, 29, 7, 3, 'Sarath Team, Has given task to increase salary from june, ref resume', 140, '2024-04-18 06:00:03', 1),
(17522, 18634, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(17523, 18632, 18, 7, 4, 'Selected for Gnanashekar Team. Offered 3.5L CTC. Ready to Join on 24th of April.', 139, '2024-04-20 10:59:04', 1),
(17524, 18650, 102, 5, 0, 'Not fit sales field ', 112, '0000-00-00 00:00:00', 1),
(17525, 18649, 102, 7, 0, 'Shortlist for team fresher ', 112, '0000-00-00 00:00:00', 1),
(17526, 18651, 137, 5, 0, 'low voice and no skill ', 112, '0000-00-00 00:00:00', 1),
(17527, 18654, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17528, 18655, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17529, 18652, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17530, 18632, 60, 1, 0, NULL, 18, '2024-04-20 01:11:32', 1),
(17531, 18496, 131, 5, 0, 'Lack of communication and lack of Knowledge About sales and insurance', 126, '0000-00-00 00:00:00', 1),
(17532, 18648, 141, 4, 0, 'Has Good communication and very bold', 112, '0000-00-00 00:00:00', 1),
(17533, 18649, 59, 3, 0, 'Selected for Charles Team RElationship Executive Role Need to analyse in 7 days and confirm', 102, '2024-04-20 05:34:46', 1),
(17534, 0, 59, 1, 0, NULL, 140, '2024-04-20 05:59:58', 1),
(17535, 18633, 18, 8, 0, 'Not Attended', 138, '2024-04-20 07:48:33', 1),
(17536, 18616, 59, 3, 0, 'Selected for Porrselvan Team Relationship Manager Role Need to analyse in 7 days', 29, '2024-04-22 10:01:56', 1),
(17537, 18606, 29, 7, 3, 'sarath,', 51, '2024-04-22 10:28:54', 1),
(17538, 18606, 59, 3, 0, 'Selected for Sarath Team with Condition given by gaurav sir', 29, '2024-04-22 10:41:24', 1),
(17539, 18339, 131, 5, 0, 'Lack of knowledge about the process', 131, '2024-04-22 12:58:01', 1),
(17540, 18662, 51, 2, 0, 'hold this candidate for 3 days', 112, '0000-00-00 00:00:00', 1),
(17541, 18665, 53, 5, 0, 'Long distance and having exp in backend process.', 112, '0000-00-00 00:00:00', 1),
(17542, 18664, 137, 5, 0, 'low voice and very lasy', 112, '0000-00-00 00:00:00', 1),
(17543, 18663, 137, 7, 0, 'better voice and interested for sales', 112, '0000-00-00 00:00:00', 1),
(17544, 18660, 53, 7, 0, 'shortlisted 50-50 pls check once and cnfrm the ', 112, '0000-00-00 00:00:00', 1),
(17545, 18643, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17546, 18643, 30, 7, 3, 'Suggested ctc upto 20k immediate joining for Rm', 131, '2024-04-22 02:20:57', 1),
(17547, 18670, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17548, 18670, 30, 7, 3, 'cross check his sustainability bcoz his Background business suggested ctc upto 20k for rm ', 131, '2024-04-22 02:55:43', 1),
(17549, 18669, 131, 4, 0, 'Good communication and carry experience in sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(17550, 18669, 30, 7, 4, 'good communication and confidence level but expecting high ctc upto 4.8lac he already having 3 offer .he is ok for Rm', 131, '2024-04-22 02:58:34', 1),
(17551, 18668, 57, 5, 0, '1yrs experience diff domain,previous company salary 10.5k now expectation 18k, candidate worth for 15k to 16k maximum,pls confirm and do the needful', 112, '0000-00-00 00:00:00', 1),
(17552, 18671, 51, 7, 0, 'for porrselvan team', 112, '0000-00-00 00:00:00', 1),
(17553, 18264, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17554, 18643, 60, 1, 0, NULL, 30, '2024-04-22 03:44:53', 1),
(17555, 18669, 60, 1, 0, NULL, 30, '2024-04-22 03:47:12', 1),
(17556, 18670, 60, 1, 0, NULL, 30, '2024-04-22 03:48:47', 1),
(17557, 18559, 19, 7, 1, 'His Distance Is Too Long And Also He Is Not Willing To Travel That Much Of Distance ', 112, '0000-00-00 00:00:00', 1),
(17558, 18663, 59, 1, 0, NULL, 137, '2024-04-22 05:15:54', 1),
(17559, 18660, 59, 1, 0, NULL, 53, '2024-04-22 05:52:34', 1),
(17560, 18264, 59, 3, 0, 'selected for Charles Team need to analyse in 7 days the previous exp is not get matched with the exp mentioned in the resume', 102, '2024-04-22 05:57:36', 1),
(17561, 18559, 59, 1, 0, NULL, 19, '2024-04-22 06:30:56', 1),
(17562, 18672, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17563, 18661, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17564, 18642, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17565, 18671, 29, 5, 0, 'check', 51, '2024-04-22 08:18:23', 1),
(17566, 18675, 105, 5, 0, 'Candidate Performance And Communication is Not Good Also His Expectation is Too high', 112, '0000-00-00 00:00:00', 1),
(17567, 18679, 131, 8, 0, 'Without informing candidate walk out from office', 126, '0000-00-00 00:00:00', 1),
(17568, 18612, 131, 5, 0, 'Interested in coding Field Meanwhile candidate will work here ', 126, '0000-00-00 00:00:00', 1),
(17569, 18676, 19, 5, 1, 'no communication and he is not try to convince me when he speak about sales', 112, '0000-00-00 00:00:00', 1),
(17570, 18682, 105, 5, 0, 'Candidate Communication Performance And Communication is not good', 112, '0000-00-00 00:00:00', 1),
(17571, 18681, 19, 7, 4, 'he is fresher lets try 7 days then only we will confirm', 112, '0000-00-00 00:00:00', 1),
(17572, 18680, 137, 7, 0, 'very professional talk and financial field is very interested', 112, '0000-00-00 00:00:00', 1),
(17573, 18678, 86, 5, 0, 'Not sustain ability. ', 112, '0000-00-00 00:00:00', 1),
(17574, 18681, 59, 3, 0, 'Selected for Kanna Team Relationship Executive Need to analyse in 7 days and confirm', 19, '2024-04-23 02:44:14', 1),
(17575, 18680, 59, 3, 0, 'Selected for Giri Team Relationship Executive Role need to analyse in 7 days and confirm', 137, '2024-04-23 02:45:23', 1),
(17576, 18686, 139, 4, 0, 'Selected for RM\nPrevious Package 2.5 Lakhs\nNow Conform 2.82 laks\nImmediate join for 24/04/2024', 112, '0000-00-00 00:00:00', 1),
(17577, 18685, 53, 7, 0, '50 50. pls check once', 112, '0000-00-00 00:00:00', 1),
(17578, 18677, 74, 5, 0, 'unfit', 108, '0000-00-00 00:00:00', 1),
(17579, 18686, 18, 7, 0, 'Selected for Gnanashekar Team. Immedeate Joiner. Offered 2.86L CTC overall. Release offer and share the documents as we have a training batch tomorrow.', 139, '2024-04-23 02:56:10', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(17580, 18686, 60, 1, 0, NULL, 18, '2024-04-23 02:58:08', 1),
(17581, 18690, 57, 5, 0, 'Candidate unfit for sales,Communication not well', 112, '0000-00-00 00:00:00', 1),
(17582, 18687, 140, 5, 0, 'Rejected by gaurav sir', 112, '0000-00-00 00:00:00', 1),
(17583, 18648, 59, 3, 0, 'Selected for Kannan Team Actually Pradeepan Took the interview and shorltisdetd kannan had a virtaul round and sortlisted', 141, '2024-04-23 04:39:03', 1),
(17584, 18691, 137, 5, 0, 'no skill and low voice ', 112, '0000-00-00 00:00:00', 1),
(17585, 18685, 59, 1, 0, NULL, 53, '2024-04-23 04:50:05', 1),
(17586, 18698, 74, 5, 0, 'not fit for telesales', 108, '0000-00-00 00:00:00', 1),
(17587, 18697, 19, 7, 4, 'he is Short Term Sales Experiance so i tried fresher salary lets try 7 days after that i will confirm', 112, '0000-00-00 00:00:00', 1),
(17588, 18683, 57, 5, 0, '1yrs exp loan dept ,saly exp high\nprevious salary 10.5k now exp 18k take home.communication not well', 112, '0000-00-00 00:00:00', 1),
(17589, 18701, 57, 5, 0, 'Candidate is not ok, he is unfit for the sales profile.', 112, '0000-00-00 00:00:00', 1),
(17590, 18699, 137, 7, 0, 'good communication skill , and voice experience', 112, '0000-00-00 00:00:00', 1),
(17591, 18703, 131, 4, 0, 'Good Communication can process for next Round', 126, '0000-00-00 00:00:00', 1),
(17592, 18703, 30, 7, 4, 'suggested ctc 20k will join on monday', 131, '2024-04-24 01:07:20', 1),
(17593, 18699, 59, 1, 0, NULL, 137, '2024-04-24 02:49:10', 1),
(17594, 18706, 137, 7, 0, 'good experience for marketing field but salery expection is veryhighso i wll check with 7 days training', 112, '0000-00-00 00:00:00', 1),
(17595, 18708, 137, 7, 0, 'previous experience for voice process and good speaking skill . so i will check 7dasy training', 112, '0000-00-00 00:00:00', 1),
(17596, 18707, 102, 5, 0, 'Not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17597, 18708, 59, 1, 0, NULL, 137, '2024-04-24 03:34:01', 1),
(17598, 18706, 59, 1, 0, NULL, 137, '2024-04-24 03:35:44', 1),
(17599, 18710, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17600, 18696, 131, 5, 0, 'Lack of knowledge', 126, '0000-00-00 00:00:00', 1),
(17601, 18702, 53, 4, 0, '50 - 50. Check from your end', 112, '0000-00-00 00:00:00', 1),
(17602, 18705, 86, 5, 0, 'Sriram sir Rejected this candidate', 112, '0000-00-00 00:00:00', 1),
(17603, 18713, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17604, 18702, 59, 1, 0, NULL, 53, '2024-04-24 04:21:31', 1),
(17605, 18700, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17606, 18644, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17607, 18694, 71, 4, 0, 'Secected', 112, '0000-00-00 00:00:00', 1),
(17608, 18703, 60, 1, 0, NULL, 30, '2024-04-24 05:17:18', 1),
(17609, 18697, 59, 5, 0, 'Discussed with the Candidate ,he is not interested in the job profile.Rejected', 19, '2024-04-24 07:04:36', 1),
(17610, 18732, 131, 5, 0, 'Lack of communication and interested in IT department', 126, '0000-00-00 00:00:00', 1),
(17611, 18736, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(17612, 18719, 57, 7, 0, 'Candidate is ok, 1yr experience loan dept telecalling xxamp field work, previous salary 17k, now exp 17k to 18k,pls cross check payslip xxamp Resigning letter and confirm the joining date ', 108, '0000-00-00 00:00:00', 1),
(17613, 18724, 19, 5, 1, 'Already He Is Working Reliance Life For 6 Month And He Is Not Fit For Sales', 108, '0000-00-00 00:00:00', 1),
(17614, 18735, 105, 5, 0, 'Candidate Communication And Performance is Not Good .also his voice is very low and not performed like experianced person', 112, '0000-00-00 00:00:00', 1),
(17615, 18254, 140, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17616, 18734, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17617, 18723, 137, 7, 0, 'candidate previos expreience accounts, but high salary need to change the job . but good skil so i will check 7 days training', 112, '0000-00-00 00:00:00', 1),
(17618, 18723, 59, 1, 0, NULL, 137, '2024-04-25 05:07:42', 1),
(17619, 18610, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17620, 18719, 59, 1, 0, NULL, 57, '2024-04-26 11:22:17', 1),
(17621, 18741, 57, 5, 0, 'Fresher communication not good,unfit', 112, '0000-00-00 00:00:00', 1),
(17622, 18740, 19, 5, 1, 'She is expecting high salary but is not fit for that', 112, '0000-00-00 00:00:00', 1),
(17623, 18744, 51, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17624, 16225, 31, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17625, 18758, 131, 5, 0, 'Lack of communication and Looking for NON voice process', 126, '0000-00-00 00:00:00', 1),
(17626, 18762, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17627, 18763, 105, 5, 0, 'Candidate Performance And Communication Is not Good also expectation is high', 112, '0000-00-00 00:00:00', 1),
(17628, 18764, 19, 5, 1, 'She has no degree, she is expecting high salary and so she is not fit for that salary', 112, '0000-00-00 00:00:00', 1),
(17629, 18759, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17630, 18759, 30, 7, 3, 'confirm joining and ctc', 131, '2024-04-29 01:29:14', 1),
(17631, 18610, 30, 7, 3, 'confirm the joining and ctc for RM', 131, '2024-04-29 01:31:23', 1),
(17632, 18773, 131, 5, 0, 'Lack of Knowledge about the process and no response ', 126, '0000-00-00 00:00:00', 1),
(17633, 18770, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17634, 18715, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17635, 18771, 105, 7, 0, 'Candidate Communication And Performance is Good , but little bit doubt in his sustain problem will try to check him in the training period ', 112, '0000-00-00 00:00:00', 1),
(17636, 18772, 19, 7, 4, 'Pitching was good and he is fit for the direct appt so lets 7 days and we will finalize', 112, '0000-00-00 00:00:00', 1),
(17637, 18768, 137, 7, 0, 'voice is ok and good communication skill. so i will check 7 days training', 112, '0000-00-00 00:00:00', 1),
(17638, 18564, 137, 7, 0, '50 % ok , so i will check 7 days training , candidate only need tele caller work only. not interested for field work', 112, '0000-00-00 00:00:00', 1),
(17639, 18781, 71, 5, 0, 'Not Fit For Sales ', 112, '0000-00-00 00:00:00', 1),
(17640, 18786, 86, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17641, 18768, 59, 3, 0, 'consultant role 14 ctc 13300 th', 137, '2024-04-29 04:02:43', 1),
(17642, 18564, 59, 1, 0, NULL, 137, '2024-04-29 04:04:50', 1),
(17643, 18784, 131, 5, 0, 'lack of communication and Salary Exception is high', 126, '0000-00-00 00:00:00', 1),
(17644, 18751, 131, 5, 0, 'Lack of knowledge and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(17645, 18765, 131, 5, 0, 'Looking in some other field not in sales', 126, '0000-00-00 00:00:00', 1),
(17646, 18777, 131, 4, 0, 'Good communication can process for the next round', 126, '0000-00-00 00:00:00', 1),
(17647, 18777, 30, 7, 3, 'selected for DM channel ctc suggested 18k', 131, '2024-04-29 05:41:08', 1),
(17648, 18783, 131, 4, 0, 'Good communication and can process for the next round', 126, '0000-00-00 00:00:00', 1),
(17649, 18783, 30, 7, 3, 'fresher as per company norms ctc', 131, '2024-04-29 05:44:58', 1),
(17650, 18775, 131, 5, 0, 'Lack of knowledge and Looking in inside sales process ', 126, '0000-00-00 00:00:00', 1),
(17651, 18782, 131, 4, 0, 'Good communication and can process for next round', 126, '0000-00-00 00:00:00', 1),
(17652, 18782, 30, 7, 3, 'selected for dm salary as per company fresher', 131, '2024-04-29 07:07:36', 1),
(17653, 18777, 60, 1, 0, NULL, 30, '2024-04-29 08:03:07', 1),
(17654, 18782, 60, 1, 0, NULL, 30, '2024-04-29 08:04:06', 1),
(17655, 18783, 60, 1, 0, NULL, 30, '2024-04-29 08:04:53', 1),
(17656, 18771, 59, 3, 0, 'Selected for Gopi tEam need to analyse in 7 days relationship executive Role', 105, '2024-04-29 11:06:29', 1),
(17657, 18801, 137, 5, 0, 'candidate is over attitude and low skill and voice is very low ', 112, '0000-00-00 00:00:00', 1),
(17658, 18797, 102, 5, 0, 'Not suitable sales field ', 112, '0000-00-00 00:00:00', 1),
(17659, 18793, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(17660, 18804, 19, 7, 4, 'Already he has a sales exp and same he has convince Skill little bit so we try 7 days ,ctc 17k and in hand 16k ', 112, '0000-00-00 00:00:00', 1),
(17661, 18802, 138, 5, 0, 'not selected', 112, '0000-00-00 00:00:00', 1),
(17662, 18816, 131, 5, 0, 'Lack of knowledge and salary Exception is high', 126, '0000-00-00 00:00:00', 1),
(17663, 18785, 131, 5, 0, 'lack of communication and knowledge', 126, '0000-00-00 00:00:00', 1),
(17664, 18767, 131, 4, 0, 'Good communication and confident level can process for for next round', 126, '0000-00-00 00:00:00', 1),
(17665, 18767, 30, 7, 3, 'confirm the joining and ctc , he dont have any salary proof he will get salary in hand previous company cross check ', 131, '2024-04-30 03:10:06', 1),
(17666, 18818, 89, 5, 0, 'Long distance and not skills ', 112, '0000-00-00 00:00:00', 1),
(17667, 18819, 137, 7, 0, 'good skill , so i will final to 7 days training', 112, '0000-00-00 00:00:00', 1),
(17668, 18811, 19, 5, 1, 'well Settled family', 112, '0000-00-00 00:00:00', 1),
(17669, 18813, 105, 5, 0, 'Candidate performance is good but her tamil pronunsation is not good also her sustainity is doubt', 112, '0000-00-00 00:00:00', 1),
(17670, 18804, 59, 1, 0, NULL, 19, '2024-04-30 03:49:53', 1),
(17671, 18809, 139, 7, 0, 'Shortlisted for immediate joining \nprevious exp Donxquott have in sales\nconsider as fresher ', 112, '0000-00-00 00:00:00', 1),
(17672, 18806, 137, 5, 0, 'no dress code and voice is very local and over attitude candidate need only offie work ', 112, '0000-00-00 00:00:00', 1),
(17673, 18812, 53, 5, 0, 'not suit for telecalling', 112, '0000-00-00 00:00:00', 1),
(17674, 18772, 59, 3, 0, 'Selected for Kannan Team Need to analyse in 7 days training', 19, '2024-04-30 06:05:31', 1),
(17675, 18819, 59, 3, 0, 'ctc 15000', 137, '2024-04-30 06:13:37', 1),
(17676, 18814, 137, 5, 0, 'Good Comminication Skill , But Not Fit For Sales Job', 112, '0000-00-00 00:00:00', 1),
(17677, 18809, 18, 1, 0, NULL, 139, '2024-04-30 06:44:23', 1),
(17678, 18829, 131, 5, 0, 'Lack of Communication', 126, '0000-00-00 00:00:00', 1),
(17679, 18846, 131, 5, 0, 'Looking for non voice process', 126, '0000-00-00 00:00:00', 1),
(17680, 18847, 131, 5, 0, 'Looking for non voice process', 126, '0000-00-00 00:00:00', 1),
(17681, 18854, 105, 5, 0, 'Candiate communication and apperance is not good .then his voice is low', 112, '0000-00-00 00:00:00', 1),
(17682, 18842, 53, 4, 0, 'ok for sales profile. ', 112, '0000-00-00 00:00:00', 1),
(17683, 18862, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17684, 18859, 137, 5, 0, 'voice not clear and low skill', 112, '0000-00-00 00:00:00', 1),
(17685, 18865, 53, 4, 0, '50 -50', 112, '0000-00-00 00:00:00', 1),
(17686, 18861, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17687, 18860, 19, 7, 4, 'she is job needed person and she speaks good lets try 7 days then only we will finalize,Salary in hand 13k', 112, '0000-00-00 00:00:00', 1),
(17688, 18867, 89, 5, 0, 'Not fit this profile ', 112, '0000-00-00 00:00:00', 1),
(17689, 6086, 105, 7, 0, 'Candidate Communication And Performance is good but she is expected high salary kindly contact the candidate and approach 15k to 16k as her take Home', 112, '0000-00-00 00:00:00', 1),
(17690, 18855, 53, 5, 0, 'Expected 30k, He dnt know to drive also, not suit for any profile. ', 112, '0000-00-00 00:00:00', 1),
(17691, 18871, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17692, 18865, 59, 1, 0, NULL, 53, '2024-05-03 06:11:00', 1),
(17693, 18842, 139, 4, 0, 'Shortlisted for next round\nexp sal 25k \n1.4 month exp in telesales in casagrand', 53, '2024-05-03 06:11:41', 1),
(17694, 18868, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17695, 18871, 60, 1, 0, NULL, 102, '2024-05-03 06:39:59', 1),
(17696, 18860, 59, 1, 0, NULL, 19, '2024-05-03 06:40:23', 1),
(17697, 18861, 30, 5, 0, 'not upto the mark preparing for central govt jobs', 131, '2024-05-03 06:41:08', 1),
(17698, 18868, 30, 5, 0, 'communication not upto the mark', 131, '2024-05-03 06:41:41', 1),
(17699, 6086, 59, 5, 0, 'Proposed a salary but her exp is very for DM channel', 105, '2024-05-03 06:47:29', 1),
(17700, 18882, 19, 5, 0, 'he is not handling the pressure', 112, '0000-00-00 00:00:00', 1),
(17701, 18882, 19, 5, 0, 'he is not handling the pressure', 112, '0000-00-00 00:00:00', 1),
(17702, 18789, 19, 5, 1, 'Expected too much of salary but she is fresher', 112, '0000-00-00 00:00:00', 1),
(17703, 18888, 105, 5, 0, 'Candidate Performance is Good ,But She Planned To Put M.Com In Next Month Also She Asked Partime Only', 112, '0000-00-00 00:00:00', 1),
(17704, 18856, 137, 7, 0, 'GOOD SKILL AND PREVIOUS LOAN EXPREIENCE FOR 7 MONTHS , PREVIOUS 14K CTC , I PREFERED 17K CTC', 112, '0000-00-00 00:00:00', 1),
(17705, 18889, 105, 7, 0, 'Candidate Communication And Performance Is Good ,Also Her Pronunciation is Well.Will Go For An Training Period ', 112, '0000-00-00 00:00:00', 1),
(17706, 18884, 102, 5, 0, 'Not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17707, 18895, 53, 5, 0, 'not suit for telecalling\n', 112, '0000-00-00 00:00:00', 1),
(17708, 18896, 51, 5, 0, 'rejectd', 112, '0000-00-00 00:00:00', 1),
(17709, 18896, 51, 5, 0, 'rejectd', 112, '0000-00-00 00:00:00', 1),
(17710, 18897, 19, 5, 1, 'Expected too much of salary', 112, '0000-00-00 00:00:00', 1),
(17711, 18856, 59, 3, 0, 'Selected for DM Relationship Executive Role Need to analyse in 7 dyas training', 137, '2024-05-04 06:09:16', 1),
(17712, 18889, 59, 3, 0, '14ctc and 13300 th consultant', 105, '2024-05-04 07:08:33', 1),
(17713, 18767, 60, 1, 0, NULL, 30, '2024-05-06 10:26:08', 1),
(17714, 18759, 60, 1, 0, NULL, 30, '2024-05-06 10:28:17', 1),
(17715, 18610, 60, 1, 0, NULL, 30, '2024-05-06 10:33:14', 1),
(17716, 18887, 30, 7, 4, 'confirm joining and exp ctc 4l suggested upto 3,75l cross check previous one', 104, '0000-00-00 00:00:00', 1),
(17717, 18875, 74, 5, 0, 'not fit', 127, '0000-00-00 00:00:00', 1),
(17718, 18694, 18, 7, 4, 'Ramakrishnan Selected for Santhosh team with 15 to 20% hike based on negotiation.... Joining on 7th May', 71, '2024-05-06 03:35:13', 1),
(17719, 18887, 60, 1, 0, NULL, 30, '2024-05-06 03:35:38', 1),
(17720, 18902, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(17721, 18922, 139, 5, 0, 'Donxquott have Relevant exp in sales and knowledge about sales ', 104, '0000-00-00 00:00:00', 1),
(17722, 18901, 105, 5, 0, 'Candidate performed well and good,but she is expecting high salary packge', 104, '0000-00-00 00:00:00', 1),
(17723, 18936, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(17724, 18931, 57, 7, 0, 'candidate is ok,confirm the salary like 15k to 16k maximum, pls cross check with payslips xxamp resignation letter.confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(17725, 18931, 59, 1, 0, NULL, 57, '2024-05-06 07:26:18', 1),
(17726, 18694, 60, 1, 0, NULL, 18, '2024-05-07 10:03:33', 1),
(17727, 18966, 105, 5, 0, 'Candidate Communication And Performance is Very Low,Also Her Voice Very Lazy ', 112, '0000-00-00 00:00:00', 1),
(17728, 18394, 137, 5, 0, 'Candidate need IT job so not fit for sales job', 112, '0000-00-00 00:00:00', 1),
(17729, 18958, 53, 5, 0, 'Not even opening her mouth. Low voice and unclear speech', 112, '0000-00-00 00:00:00', 1),
(17730, 18957, 53, 5, 0, 'Sustainability issue.', 112, '0000-00-00 00:00:00', 1),
(17731, 18957, 53, 5, 0, 'Sustainability issue.', 112, '0000-00-00 00:00:00', 1),
(17732, 18975, 19, 5, 1, 'She Is Not Fit For Sales', 112, '0000-00-00 00:00:00', 1),
(17733, 18968, 137, 5, 0, 'no skill and not fit for sales and voice process', 112, '0000-00-00 00:00:00', 1),
(17734, 18950, 102, 5, 0, 'Not suitable sales', 112, '0000-00-00 00:00:00', 1),
(17735, 18951, 102, 5, 0, 'Not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17736, 18979, 139, 5, 0, 'Not fit for Sales', 112, '0000-00-00 00:00:00', 1),
(17737, 18977, 138, 7, 0, 'selected', 112, '0000-00-00 00:00:00', 1),
(17738, 18978, 71, 4, 0, 'Move to next round ', 112, '0000-00-00 00:00:00', 1),
(17739, 18986, 51, 4, 0, 'selected', 112, '0000-00-00 00:00:00', 1),
(17740, 18842, 18, 7, 0, 'Selected for Gnanashaekar Team and Package discussed by Gnanashekar. Joining on Monday 13th', 139, '2024-05-07 04:45:42', 1),
(17741, 18954, 30, 5, 0, 'not upto the mark', 112, '0000-00-00 00:00:00', 1),
(17742, 18953, 30, 5, 0, 'not upto the mark', 112, '0000-00-00 00:00:00', 1),
(17743, 18987, 30, 7, 4, 'suggested ctc 19k confirm joining', 112, '0000-00-00 00:00:00', 1),
(17744, 18980, 30, 7, 3, 'selected for dm ctc asper company', 104, '0000-00-00 00:00:00', 1),
(17745, 18978, 60, 1, 0, NULL, 71, '2024-05-07 07:01:31', 1),
(17746, 18977, 18, 7, 0, 'Selected Need to negotiate salary. Joining on 1st June for Jagadeesh Team', 138, '2024-05-08 11:10:16', 1),
(17747, 19014, 137, 7, 0, 'better voice and quick understanding, so i prefered ctc is 15k', 112, '0000-00-00 00:00:00', 1),
(17748, 19014, 137, 7, 0, 'better voice and quick understanding, so i prefered ctc is 15k', 112, '0000-00-00 00:00:00', 1),
(17749, 19017, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17750, 19021, 53, 5, 0, 'looking Nonvoice process', 112, '0000-00-00 00:00:00', 1),
(17751, 18995, 138, 4, 0, 'selected', 112, '0000-00-00 00:00:00', 1),
(17752, 18821, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17753, 18977, 60, 1, 0, NULL, 18, '2024-05-08 01:27:21', 1),
(17754, 18995, 18, 8, 0, 'Please refix', 138, '2024-05-08 02:40:20', 1),
(17755, 18980, 60, 1, 0, NULL, 30, '2024-05-08 02:57:34', 1),
(17756, 18987, 60, 1, 0, NULL, 30, '2024-05-08 02:58:47', 1),
(17757, 19014, 59, 3, 0, 'Selected for Giri Raj Team in Consultant Role Sustainability doubts married Need to analyse in 7 days', 137, '2024-05-08 03:13:16', 1),
(17758, 18994, 102, 5, 0, 'not suitable for sales ', 112, '0000-00-00 00:00:00', 1),
(17759, 18984, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17760, 18905, 140, 4, 0, 'Good candidate', 60, '0000-00-00 00:00:00', 1),
(17761, 18905, 29, 8, 0, 'didnxquott respond to arun', 140, '2024-05-09 11:22:25', 1),
(17762, 19047, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17763, 19047, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17764, 19029, 30, 7, 0, 'suggested ctc 18k experince in star health last 7months', 127, '0000-00-00 00:00:00', 1),
(17765, 18990, 30, 5, 0, 'She expecting high ctc donxquott have any sales experience', 127, '0000-00-00 00:00:00', 1),
(17766, 18930, 30, 5, 0, 'grand parents denied for joining', 127, '0000-00-00 00:00:00', 1),
(17767, 18838, 30, 5, 0, 'She will no sustain', 127, '0000-00-00 00:00:00', 1),
(17768, 19029, 60, 1, 0, NULL, 30, '2024-05-09 03:00:39', 1),
(17769, 19063, 140, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17770, 19032, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17771, 19088, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17772, 19060, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17773, 19060, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17774, 19041, 74, 5, 0, 'NOT FIT', 127, '0000-00-00 00:00:00', 1),
(17775, 19089, 137, 7, 0, 'previous exp is call process but not sales , but good communication skill, previous ctc is 18k but not proper reliving and no profe so exp ctc is 18k', 127, '0000-00-00 00:00:00', 1),
(17776, 16168, 137, 7, 0, 'good sales skill ad good sales pich , ctc exp is 22k ', 127, '0000-00-00 00:00:00', 1),
(17777, 19094, 138, 4, 0, '2 years experience in Telesales in HDB loan and insurance and salary expected 2.5 LPA speaks bold and observe quality good so i waiting sriram sir confirmation', 112, '0000-00-00 00:00:00', 1),
(17778, 19101, 138, 4, 0, 'medium communication skills and limited technical expertise and experienced only Field sales in Equitas micro finance so fit to sales but need to train properly to tele sale so waiting for sriram sir feedback', 108, '0000-00-00 00:00:00', 1),
(17779, 19000, 131, 4, 0, 'Good Communication can process for the round', 126, '0000-00-00 00:00:00', 1),
(17780, 19000, 30, 7, 3, 'confirm the joining and ctc', 131, '2024-05-10 02:50:07', 1),
(17781, 19094, 18, 8, 0, 'Not Attended', 138, '2024-05-10 02:50:28', 1),
(17782, 19111, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17783, 19101, 18, 7, 0, 'Sivaraj E Selected for Jagadeesh Team with Current CTC of the last company. Immed Joiner', 138, '2024-05-10 02:57:11', 1),
(17784, 19075, 57, 5, 0, 'not interested for sales xxamp voice process job,she looking for non voice process like data entry.. ', 112, '0000-00-00 00:00:00', 1),
(17785, 19000, 60, 1, 0, NULL, 30, '2024-05-10 04:24:34', 1),
(17786, 16168, 59, 1, 0, NULL, 137, '2024-05-10 04:34:58', 1),
(17787, 19089, 59, 1, 0, NULL, 137, '2024-05-10 04:39:17', 1),
(17788, 19127, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17789, 19093, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17790, 19092, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17791, 18921, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17792, 18921, 30, 7, 3, 'confirm joining and as per company ctc DM', 131, '2024-05-11 10:25:08', 1),
(17793, 19144, 139, 4, 0, 'Selected for next round, good communication skill, having exp in inbound and outbound calls ', 112, '0000-00-00 00:00:00', 1),
(17794, 18934, 131, 5, 0, 'Salary expectation is high ', 126, '0000-00-00 00:00:00', 1),
(17795, 19185, 131, 4, 0, 'Good communication can Process for next round', 126, '0000-00-00 00:00:00', 1),
(17796, 19185, 30, 7, 3, 'upto 20k ctc suggested ', 131, '2024-05-11 01:10:36', 1),
(17797, 19172, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17798, 19171, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17799, 19178, 137, 7, 0, 'candidate voice and skill is ok , past 6 monh work with back end staff work , so prefered ctc is 14.5 k take home .', 112, '0000-00-00 00:00:00', 1),
(17800, 19154, 57, 7, 0, 'candidate is ok.check with payslip,\n\nnegotiate the salary and confirm the joining date', 112, '0000-00-00 00:00:00', 1),
(17801, 18842, 60, 1, 0, NULL, 18, '2024-05-11 04:14:34', 1),
(17802, 19101, 60, 1, 0, NULL, 18, '2024-05-11 04:15:03', 1),
(17803, 19154, 59, 1, 0, NULL, 57, '2024-05-11 04:31:15', 1),
(17804, 19178, 59, 1, 0, NULL, 137, '2024-05-11 05:55:37', 1),
(17805, 19197, 138, 5, 0, ' Lack of Problem Solving Abilities:', 112, '0000-00-00 00:00:00', 1),
(17806, 19205, 57, 7, 0, 'Candidate is 50/50. fresher expected Salary 18k ,negotiate the salary. 15k to 16k maximum,distance too long..', 112, '0000-00-00 00:00:00', 1),
(17807, 19207, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17808, 19207, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17809, 19200, 105, 7, 0, 'Candidate Communication and performance Is good.Will Try in the training period', 112, '0000-00-00 00:00:00', 1),
(17810, 19198, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17811, 19205, 59, 3, 0, 'Selected for Syed Team Need ot analyse in 7 days too long distance family background is Navy', 57, '2024-05-13 12:50:38', 1),
(17812, 19203, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17813, 19203, 30, 7, 3, 'ctc suggested 20k confirm the joining', 131, '2024-05-13 01:18:20', 1),
(17814, 19200, 59, 1, 0, NULL, 105, '2024-05-13 02:36:02', 1),
(17815, 19202, 131, 5, 0, 'Not interested with this job role', 126, '0000-00-00 00:00:00', 1),
(17816, 19208, 131, 4, 0, 'Good Communication and knowledge can process for the next round ', 126, '0000-00-00 00:00:00', 1),
(17817, 19208, 30, 7, 4, 'ctc suggested 20k and confirm the joining', 131, '2024-05-13 03:29:04', 1),
(17818, 19209, 137, 7, 0, 'candidate voice and appearance is ok and past expreience 4 companys in 3 years, last packege is 14k take home so ctc i 16k provide and distance is very long. so check the past payslip', 108, '0000-00-00 00:00:00', 1),
(17819, 19209, 59, 1, 0, NULL, 137, '2024-05-13 05:06:25', 1),
(17820, 19212, 105, 5, 0, 'Candidate Performance is Not Good ,also he is more interested in game designer', 112, '0000-00-00 00:00:00', 1),
(17821, 18921, 60, 1, 0, NULL, 30, '2024-05-13 06:21:36', 1),
(17822, 19185, 60, 1, 0, NULL, 30, '2024-05-13 06:23:28', 1),
(17823, 19203, 60, 1, 0, NULL, 30, '2024-05-13 06:24:18', 1),
(17824, 19208, 60, 1, 0, NULL, 30, '2024-05-13 06:25:03', 1),
(17825, 19220, 138, 4, 0, '1 year experience in SCB credit card sales and loans and good communication then impressive Problem Solving Abilities but Need to negotiate salary', 108, '0000-00-00 00:00:00', 1),
(17826, 19220, 18, 5, 0, 'High Expectations', 138, '2024-05-14 12:07:23', 1),
(17827, 19216, 102, 5, 0, 'He is interested in IT profile , after 3month later he go to study MCA So, he is not continue the Job ', 112, '0000-00-00 00:00:00', 1),
(17828, 19217, 137, 5, 0, 'candidate all ok but after3 month he will quit the job and joining for mastre degree, so he not fit for job, he looking for short time income only', 112, '0000-00-00 00:00:00', 1),
(17829, 19219, 138, 5, 0, 'less knowledge not fit for tele sales', 112, '0000-00-00 00:00:00', 1),
(17830, 19227, 74, 5, 0, 'NOT FIT', 108, '0000-00-00 00:00:00', 1),
(17831, 19224, 74, 5, 0, 'NOT FIT', 108, '0000-00-00 00:00:00', 1),
(17832, 19218, 131, 4, 0, 'Good communication can process for the next round', 126, '0000-00-00 00:00:00', 1),
(17833, 19218, 30, 4, 2, 'Confirm sustainability if ok we can proceed ', 131, '2024-05-14 03:25:04', 1),
(17834, 19222, 131, 4, 0, 'Good communication can Process For the next round ', 126, '0000-00-00 00:00:00', 1),
(17835, 19222, 30, 7, 4, 'Suggested 16k in hand confirm the joining ', 131, '2024-05-14 03:28:58', 1),
(17836, 19228, 105, 5, 0, 'Candidate performance is little bit well ,but he is not suitable for sales , Because he intrested in sofware developer also he asked if there is any vacancy ongoing for fresher , so candidate is more doubt in his sustanity', 108, '0000-00-00 00:00:00', 1),
(17837, 19226, 131, 5, 0, 'salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(17838, 19225, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17839, 19229, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(17840, 19221, 131, 5, 0, 'Doubt with Sustainability without any valid reason he left many company ', 126, '0000-00-00 00:00:00', 1),
(17841, 19230, 139, 5, 0, 'rejected for our process ', 112, '0000-00-00 00:00:00', 1),
(17842, 19218, 60, 1, 0, NULL, 30, '2024-05-14 08:08:13', 1),
(17843, 19222, 60, 1, 0, NULL, 30, '2024-05-14 08:09:22', 1),
(17844, 18960, 131, 5, 0, 'Lack of confident', 126, '0000-00-00 00:00:00', 1),
(17845, 18961, 131, 5, 0, 'she will not sustain and lagging with communication', 126, '0000-00-00 00:00:00', 1),
(17846, 19236, 102, 5, 0, 'She is fresher , first interview communication skills low level and not handling pressure ', 108, '0000-00-00 00:00:00', 1),
(17847, 18898, 131, 5, 0, 'Doubt with Sustain and lack of knowledge about sales', 126, '0000-00-00 00:00:00', 1),
(17848, 18969, 131, 5, 0, 'Lack of knowledge about the sales doubt with Sustainability', 126, '0000-00-00 00:00:00', 1),
(17849, 7928, 139, 5, 0, 'Dont have sales skill, and communication\n', 112, '0000-00-00 00:00:00', 1),
(17850, 19237, 137, 5, 0, 'no skill , and not interested to feld work so not fit for the job', 112, '0000-00-00 00:00:00', 1),
(17851, 19231, 105, 5, 0, 'candidate communication and performance is not good also his voice is very low ,he need to improve more', 112, '0000-00-00 00:00:00', 1),
(17852, 19028, 131, 5, 0, 'Lagging with communication and confident', 126, '0000-00-00 00:00:00', 1),
(17853, 19240, 57, 2, 0, 'candidate is ok. language issues she speak very well for english xxamp Hindi, but tamil communication not good. just try 50/50. ', 112, '0000-00-00 00:00:00', 1),
(17854, 19243, 131, 5, 0, 'Not interested into sales field', 126, '0000-00-00 00:00:00', 1),
(17855, 19246, 102, 5, 0, 'Not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(17856, 19248, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17857, 19247, 19, 5, 1, 'Not fir for sales and he is not completed his Diplamo too', 112, '0000-00-00 00:00:00', 1),
(17858, 19245, 19, 5, 1, 'Dress Code was too bad when he attend the Interview', 112, '0000-00-00 00:00:00', 1),
(17859, 19245, 19, 5, 1, 'Dress Code was too bad when he attend the Interview', 112, '0000-00-00 00:00:00', 1),
(17860, 19241, 105, 7, 0, 'Candidate communication And performance is good, will go for an training period .her joining will be on friday but she asked on monday ', 112, '0000-00-00 00:00:00', 1),
(17861, 19232, 109, 4, 0, '5050 profile his expectation 18k ', 112, '0000-00-00 00:00:00', 1),
(17862, 19232, 59, 1, 0, NULL, 109, '2024-05-15 04:45:50', 1),
(17863, 19238, 139, 4, 0, 'selected for next round, having exp in star health Insurance, and Indusland bank ', 108, '0000-00-00 00:00:00', 1),
(17864, 19253, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17865, 19251, 137, 5, 0, 'candidate revious expreiece is only dominios expected ctc is 35k but he wll not go for out side call and voice also not clear', 112, '0000-00-00 00:00:00', 1),
(17866, 19250, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17867, 19254, 131, 5, 0, 'Lack of knowledge about the product and doubt with Sustainability', 126, '0000-00-00 00:00:00', 1),
(17868, 19213, 131, 5, 0, 'Lack of knowledge about the sales and insurance moreover the Salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(17869, 19257, 131, 5, 0, 'Doubt with Sustainability left many companies with any valid reason ', 126, '0000-00-00 00:00:00', 1),
(17870, 19255, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17871, 19256, 137, 5, 0, 'not proper work experience and not fit for voice process', 112, '0000-00-00 00:00:00', 1),
(17872, 19260, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17873, 19261, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17874, 19266, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17875, 19269, 140, 5, 0, 'Over expectation on salary', 112, '0000-00-00 00:00:00', 1),
(17876, 19264, 131, 5, 0, 'Interested in accounting field', 126, '0000-00-00 00:00:00', 1),
(17877, 19241, 59, 3, 0, 'Selecetd for Gopi Team Relationship Executive role Sustainability doubts a lot looking much of non voice and salary exp is high need to analyse in 7days training only', 105, '2024-05-17 03:00:08', 1),
(17878, 19275, 131, 4, 0, 'good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17879, 19275, 30, 1, 0, NULL, 131, '2024-05-17 03:25:54', 1),
(17880, 19026, 131, 4, 0, 'Good Communication and confident can process for next round', 126, '0000-00-00 00:00:00', 1),
(17881, 19278, 131, 5, 0, 'Lack of communication', 112, '0000-00-00 00:00:00', 1),
(17882, 19265, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17883, 19026, 30, 7, 3, 'Confirm the CTC. Cross verift pevious CTC. Suggested CTC upto 28k. For RM', 131, '2024-05-17 04:20:27', 1),
(17884, 19274, 131, 4, 0, 'Good Communication and knowledge about the insurance can process for the next round', 126, '0000-00-00 00:00:00', 1),
(17885, 19274, 30, 1, 0, NULL, 131, '2024-05-17 05:02:00', 1),
(17886, 19270, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17887, 19144, 18, 7, 0, 'Shortlisted for Gnanashekar team. Negotiate salary and give 10% to 20% hike based on negotiation. Expected 25k take home. Can Join next month 1st week', 139, '2024-05-17 07:12:02', 1),
(17888, 19238, 18, 7, 0, 'Selected for Gnanashekar Team for 3.46L CTC. Immedeate Joiner', 139, '2024-05-17 07:15:32', 1),
(17889, 19284, 19, 7, 4, 'Good at Convincing and attitude too', 112, '0000-00-00 00:00:00', 1),
(17890, 19287, 105, 5, 0, 'Candidate Communication And pronunciation issue', 112, '0000-00-00 00:00:00', 1),
(17891, 19288, 19, 5, 1, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17892, 19289, 89, 7, 0, 'Selected.. 7 days training will analyse ', 112, '0000-00-00 00:00:00', 1),
(17893, 19290, 102, 7, 0, ' shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(17894, 19026, 60, 1, 0, NULL, 30, '2024-05-18 12:28:05', 1),
(17895, 19285, 74, 5, 0, 'past two years prepare for govt job..next month also exam ...so choosing job in a parttime way..not fit', 108, '0000-00-00 00:00:00', 1),
(17896, 19286, 74, 5, 0, 'mcom and CA preparation in a parttime intrested in tally only..not fit', 108, '0000-00-00 00:00:00', 1),
(17897, 19283, 74, 5, 0, 'not fit...expected high currently in a 25k salary package', 108, '0000-00-00 00:00:00', 1),
(17898, 19238, 60, 1, 0, NULL, 18, '2024-05-18 04:09:49', 1),
(17899, 19144, 60, 1, 0, NULL, 18, '2024-05-18 04:12:32', 1),
(17900, 19289, 59, 1, 0, NULL, 89, '2024-05-20 10:23:48', 1),
(17901, 19295, 53, 7, 0, 'selected for DM. Fresher we can try. 50 50', 112, '0000-00-00 00:00:00', 1),
(17902, 19294, 137, 5, 0, 'candidate just looking for job but no need . she informed only working 3 month or 6 months only so she not fit or job', 112, '0000-00-00 00:00:00', 1),
(17903, 19297, 137, 5, 0, 'distace is very long and she need work from home ', 112, '0000-00-00 00:00:00', 1),
(17904, 19296, 138, 7, 0, 'Selected', 112, '0000-00-00 00:00:00', 1),
(17905, 19292, 109, 5, 0, 'will not sustain and high expectation holding offer with esaf small finance.', 112, '0000-00-00 00:00:00', 1),
(17906, 19292, 109, 5, 0, 'will not sustain and high expectation holding offer with esaf small finance.', 112, '0000-00-00 00:00:00', 1),
(17907, 19290, 59, 1, 0, NULL, 102, '2024-05-20 11:49:27', 1),
(17908, 19271, 102, 5, 0, 'not interested in sales field work he is interested in collection work !!', 112, '0000-00-00 00:00:00', 1),
(17909, 19301, 105, 5, 0, 'Candidate Salary Expectatiojn is to high', 112, '0000-00-00 00:00:00', 1),
(17910, 19301, 105, 5, 0, 'Candidate Salary Expectatiojn is to high', 112, '0000-00-00 00:00:00', 1),
(17911, 19298, 74, 7, 0, 'she is ok with the profile completed bsc and msc and worked as a software trainer and telecalling for institute joining process.....5 month worked and due to family issue releived, travel to office 1 hour and father farmer and have no laptop, ready to join, expected 13 to 14k kindly check once and confirm', 112, '0000-00-00 00:00:00', 1),
(17912, 19302, 137, 5, 0, 'short timely changed and company and voice not clear', 112, '0000-00-00 00:00:00', 1),
(17913, 19296, 18, 7, 4, 'Kishore Selected for Jagadeesh Team. Can give 4L CTC but give 4L if if Current CTC is 3.5L... Can in couple of Days...', 138, '2024-05-20 06:28:27', 1),
(17914, 19296, 60, 1, 0, NULL, 18, '2024-05-20 07:36:00', 1),
(17915, 19284, 59, 3, 0, 'Selected for Kannan Team Consultant Role Need to analyse in 7 days', 19, '2024-05-21 10:19:57', 1),
(17916, 19303, 89, 7, 0, 'Selected.. fresher I see during the 7 days of training', 112, '0000-00-00 00:00:00', 1),
(17917, 19303, 59, 3, 0, 'Selected for Relationship Executive Role Need to analyse in 7days and confirm ', 89, '2024-05-21 10:34:20', 1),
(17918, 19309, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17919, 19308, 52, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17920, 19308, 53, 7, 0, 'selected for DM. Sal 13k TH', 112, '0000-00-00 00:00:00', 1),
(17921, 19316, 109, 5, 0, 'Had hearing issue will not suitable for this position. Location also far distance.', 112, '0000-00-00 00:00:00', 1),
(17922, 19315, 140, 4, 0, 'Selected for next round', 112, '0000-00-00 00:00:00', 1),
(17923, 19304, 19, 5, 1, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(17924, 19298, 59, 1, 0, NULL, 74, '2024-05-21 06:29:27', 1),
(17925, 19295, 59, 3, 0, 'Seleceted fro relationship executive role banu team need to analyse in 7 days and confirm,', 53, '2024-05-21 06:48:13', 1),
(17926, 19308, 59, 3, 0, 'Selected for Banu Team Long Distance but the candidate is good and she is open to travel can give a try', 53, '2024-05-21 06:49:01', 1),
(17927, 19310, 131, 5, 0, 'Lack of communication ', 112, '0000-00-00 00:00:00', 1),
(17928, 19323, 131, 5, 0, 'Doubt in sustain interested in fashion designing field', 126, '0000-00-00 00:00:00', 1),
(17929, 19324, 19, 7, 4, 'Already Having Exp In Sales For 2 Years so we decide 18k in hand salary', 112, '0000-00-00 00:00:00', 1),
(17930, 19325, 57, 7, 0, 'candidate is ok,team Reference.\nfresher communication ok. provide fresher salary and pls confirm the joining date ', 112, '0000-00-00 00:00:00', 1),
(17931, 19326, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17932, 19322, 105, 5, 0, 'Candidate Performance,Communication As Well As Voice Very Low And More Doubt in His Sustainable', 112, '0000-00-00 00:00:00', 1),
(17933, 19327, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17934, 19315, 29, 7, 3, 'porrselvan team, ', 140, '2024-05-22 12:27:15', 1),
(17935, 19315, 59, 3, 0, 'Selected for Porrselvan Team in Coimmitment of 2L Biz in May june then 3.8 L from July', 29, '2024-05-22 12:49:07', 1),
(17936, 19313, 137, 5, 0, 'candidate slow listening and voice also very low', 112, '0000-00-00 00:00:00', 1),
(17937, 19320, 109, 5, 0, 'Not clear with her communication and not active person', 112, '0000-00-00 00:00:00', 1),
(17938, 19334, 53, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17939, 19333, 19, 5, 0, 'Childish behaviour not fit for sales', 112, '0000-00-00 00:00:00', 1),
(17940, 19332, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17941, 19331, 137, 7, 0, 'candidate skill and voice is ok i will try 7dasy training', 112, '0000-00-00 00:00:00', 1),
(17942, 19330, 19, 5, 1, 'Expecting high salary', 112, '0000-00-00 00:00:00', 1),
(17943, 19329, 102, 5, 0, 'Not knowledge for insurance and he is already working other domain ( field ) not suitable for sales profile ', 112, '0000-00-00 00:00:00', 1),
(17944, 19336, 57, 7, 0, 'Candidate is 50/50, 2yrs experience. provide 15k to 16k salary, thanks', 112, '0000-00-00 00:00:00', 1),
(17945, 19325, 59, 1, 0, NULL, 57, '2024-05-22 03:23:33', 1),
(17946, 19321, 138, 7, 0, 'selected', 112, '0000-00-00 00:00:00', 1),
(17947, 19331, 59, 1, 0, NULL, 137, '2024-05-22 05:45:32', 1),
(17948, 19343, 109, 5, 0, 'Not much knowledge about HR domain and will not sustain longer', 112, '0000-00-00 00:00:00', 1),
(17949, 19338, 109, 2, 0, 'Good communication and knowledge and also looking \n for IT recruitment Need to confirm by her side', 112, '0000-00-00 00:00:00', 1),
(17950, 19339, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17951, 19340, 53, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(17952, 19345, 138, 7, 0, 'selected but need to negotiate salary package', 112, '0000-00-00 00:00:00', 1),
(17953, 19349, 59, 5, 0, 'False Commitment her husband attended interview and shortlisted identified his experience and every data seems to be fake', 108, '0000-00-00 00:00:00', 1),
(17954, 19344, 105, 5, 0, 'Candidate Communcation is Not Good Also Voice is Not Suitable', 108, '0000-00-00 00:00:00', 1),
(17955, 19318, 140, 5, 0, 'no convincing skills and sales knowledge', 112, '0000-00-00 00:00:00', 1),
(17956, 19348, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(17957, 19350, 57, 7, 0, 'over all 1.5yrs experience, pls check with sustainability. negotiate the salary and confirm the joining date. ', 112, '0000-00-00 00:00:00', 1),
(17958, 19306, 109, 5, 0, 'Will not suitable for the role looking for ID domain', 112, '0000-00-00 00:00:00', 1),
(17959, 19345, 18, 7, 0, 'Selected for Jagadeesh team... Joining on Monday 3rd June. Please negotiate the salary.', 138, '2024-05-23 04:58:33', 1),
(17960, 19347, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17961, 19347, 30, 7, 4, 'immediate joining suggested upto 20k ctc for Dm', 131, '2024-05-23 05:00:56', 1),
(17962, 19341, 131, 4, 0, 'Good Communication can process For next round', 126, '0000-00-00 00:00:00', 1),
(17963, 19341, 30, 7, 3, 'suggested ctc upto 20k for rm immediate joining', 131, '2024-05-23 05:04:57', 1),
(17964, 19346, 131, 5, 0, 'Lack of Communication and knowledge', 126, '0000-00-00 00:00:00', 1),
(17965, 19342, 131, 5, 0, 'Lack of communication and high salary expectation', 126, '0000-00-00 00:00:00', 1),
(17966, 19350, 59, 1, 0, NULL, 57, '2024-05-23 05:58:38', 1),
(17967, 19353, 74, 7, 0, 'she is a fresher , completed bba in sastra university kumbakonam, father realestate not much income, brother in tcs 18k salary, native in kumbakonam, ,, she is positive talk active, have carrier plan,,,, no laptop immediate joining, expected 13k......the only query travel issue kindly check once and confirm ', 112, '0000-00-00 00:00:00', 1),
(17968, 19360, 51, 4, 0, 'selected ', 112, '0000-00-00 00:00:00', 1),
(17969, 19358, 57, 5, 0, 'He is unfit for the job. Communication not good.', 112, '0000-00-00 00:00:00', 1),
(17970, 19319, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17971, 19347, 60, 1, 0, NULL, 30, '2024-05-24 01:45:35', 1),
(17972, 19341, 60, 1, 0, NULL, 30, '2024-05-24 01:46:23', 1),
(17973, 19319, 30, 1, 0, NULL, 131, '2024-05-24 01:50:26', 1),
(17974, 19324, 59, 3, 0, 'Selected for Kannan Team in Consultant Role', 19, '2024-05-24 03:50:06', 1),
(17975, 19355, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17976, 19354, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17977, 19356, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17978, 19359, 59, 2, 0, 'Communication Ok Fresher for our role Career gap need to come for final round if he comes back let us try', 112, '0000-00-00 00:00:00', 1),
(17979, 19353, 59, 3, 0, 'Selected for Thanjavur Location Need to analyse in 7 days training\n', 74, '2024-05-24 04:49:19', 1),
(17980, 19299, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(17981, 19366, 74, 5, 0, 'NOT FIT', 108, '0000-00-00 00:00:00', 1),
(17982, 19360, 29, 7, 3, 'refer resume for any task and increment details ( if Any ) RM PC', 51, '2024-05-25 02:15:27', 1),
(17983, 18986, 29, 7, 0, 'sarath team', 51, '2024-05-25 02:15:52', 1),
(17984, 19361, 109, 2, 0, 'Had good knowledge and communication about hR domain but had some health issue need to check about the issue.', 112, '0000-00-00 00:00:00', 1),
(17985, 19362, 59, 5, 0, 'Not suitable for our roles ', 112, '0000-00-00 00:00:00', 1),
(17986, 19375, 109, 5, 0, 'Will npt suitable not clear with his communication. high expectations', 112, '0000-00-00 00:00:00', 1),
(17987, 19373, 71, 4, 0, 'Next round', 112, '0000-00-00 00:00:00', 1),
(17988, 19368, 140, 5, 0, 'No exp in sales and not interested', 112, '0000-00-00 00:00:00', 1),
(17989, 19369, 140, 4, 0, 'Having convincing skills', 112, '0000-00-00 00:00:00', 1),
(17990, 19364, 31, 4, 4, 'candidate has 3 yrs experinece in telecalling as well credit card and loans at hdfc', 112, '0000-00-00 00:00:00', 1),
(17991, 19380, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(17992, 19380, 30, 7, 3, 'suggested ctc upto 20k immediate joining for rm', 131, '2024-05-25 05:33:42', 1),
(17993, 19380, 60, 1, 0, NULL, 30, '2024-05-25 05:40:38', 1),
(17994, 19360, 59, 3, 0, 'Selected for RM Role Sarath Team Need to analyse in 7 days - Commitment - 2L biz in May june MF 10K SIP then23K Net TH', 29, '2024-05-25 06:32:53', 1),
(17995, 18986, 59, 3, 0, 'Selected by Gaurav Sir for Rejoining with the mentioned CTC also he has committed 25K as a con sultant pay before joining if tehre was a a 4L business', 29, '2024-05-25 06:33:26', 1),
(17996, 19369, 29, 7, 3, 'Porrselvam, for details pls refer resume', 140, '2024-05-27 10:03:54', 1),
(17997, 19369, 59, 3, 0, 'Commitment - 1.5L biz in Jun july MF 10K SIP then 3.10 LPA', 29, '2024-05-27 10:09:09', 1),
(17998, 19364, 29, 7, 3, 'refer resume on other details on salary xxamp increments', 31, '2024-05-27 10:23:40', 1),
(17999, 19384, 74, 7, 0, 'he is ok with the profile ..completed ma tamil....two due college drop due to accident fracture......father auto driver and sister studying, have laptop expected..12 to 15k..imediate joining ....kindly check once', 108, '0000-00-00 00:00:00', 1),
(18000, 19381, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(18001, 19395, 89, 5, 0, 'No basic skills ', 130, '0000-00-00 00:00:00', 1),
(18002, 19387, 57, 5, 0, 'She have 9m experience in star health ins, But Product knowledge worst and communication not good.', 130, '0000-00-00 00:00:00', 1),
(18003, 19388, 19, 5, 0, 'fresher - expecting salary', 130, '0000-00-00 00:00:00', 1),
(18004, 19396, 131, 4, 0, 'Good Communication Has Some Knowledge About Sales And Insurance And Can Process For Next Round', 126, '0000-00-00 00:00:00', 1),
(18005, 19396, 30, 7, 4, 'Immediate joining ctc suggested 3.75 lac cross check ', 131, '2024-05-27 03:45:03', 1),
(18006, 19390, 140, 5, 0, 'no convincing skills', 108, '0000-00-00 00:00:00', 1),
(18007, 19392, 86, 4, 0, 'Selected For Next Round', 108, '0000-00-00 00:00:00', 1),
(18008, 19389, 59, 5, 0, 'Salary exp is high Career Gap Preparing for UPSC exams settled family married husband came for an interview not suitable for our roles', 108, '0000-00-00 00:00:00', 1),
(18009, 19392, 18, 7, 0, 'Shalini Selected for 3.10 CTC and ready to Join after 15 days notice and selected for Mani Team...', 86, '2024-05-27 04:56:30', 1),
(18010, 19393, 18, 7, 0, 'Vijay Chidambaram Selected for 4.2L CTC for Jagadeesh Team. He can Join on 3rd or 4th.', 108, '0000-00-00 00:00:00', 1),
(18011, 19385, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(18012, 19386, 105, 7, 0, 'candidate 50/50,will check in the training period', 108, '0000-00-00 00:00:00', 1),
(18013, 19384, 59, 3, 0, 'Selected for Thanjavur Location Need to analyse in 7 days', 74, '2024-05-27 05:41:24', 1),
(18014, 19391, 71, 4, 0, 'selected ', 108, '0000-00-00 00:00:00', 1),
(18015, 19392, 60, 1, 0, NULL, 18, '2024-05-27 07:02:18', 1),
(18016, 19403, 102, 5, 0, 'Fresher no idea sales ', 108, '0000-00-00 00:00:00', 1),
(18017, 19405, 102, 5, 0, 'Fresher no idea insurance and sales ', 108, '0000-00-00 00:00:00', 1),
(18018, 19406, 89, 7, 0, 'Selected But I Need To See More During The Training Period ', 108, '0000-00-00 00:00:00', 1),
(18019, 19244, 139, 4, 0, 'Selected for Next round \nhaving exp in telesales and previously working in bajaj finance ', 104, '0000-00-00 00:00:00', 1),
(18020, 19386, 59, 1, 0, NULL, 105, '2024-05-28 04:02:54', 1),
(18021, 19373, 60, 1, 0, NULL, 71, '2024-05-28 04:45:01', 1),
(18022, 19391, 60, 1, 0, NULL, 71, '2024-05-28 04:46:17', 1),
(18023, 19396, 60, 1, 0, NULL, 30, '2024-05-28 05:48:12', 1),
(18024, 19408, 59, 5, 0, 'Looking much for non voice communication Good Not much open for target will not sustain for a long', 108, '0000-00-00 00:00:00', 1),
(18025, 19404, 140, 4, 0, 'Reference from aravindh', 108, '0000-00-00 00:00:00', 1),
(18026, 19244, 18, 7, 0, 'Selected for Gnanashekar team. Ready to join on Monday. Please negotiate the salary ', 139, '2024-05-29 12:17:26', 1),
(18027, 19321, 18, 8, 0, 'Kindly reschedule', 138, '2024-05-29 12:52:20', 1),
(18028, 19402, 19, 5, 0, 'Too much of Attitude Even He Donxquott know about the question ', 104, '0000-00-00 00:00:00', 1),
(18029, 19410, 59, 1, 0, NULL, 108, '0000-00-00 00:00:00', 1),
(18030, 19423, 137, 5, 0, 'candidate is only looking for temporary job , after 6 month she wil go for acconts related compan so sh not fit for sales', 108, '0000-00-00 00:00:00', 1),
(18031, 19422, 89, 5, 0, 'No skill ', 108, '0000-00-00 00:00:00', 1),
(18032, 19417, 57, 5, 0, 'Communication good,distance too long and sustainability problem. kindly reject', 108, '0000-00-00 00:00:00', 1),
(18033, 19414, 138, 7, 0, 'selected', 108, '0000-00-00 00:00:00', 1),
(18034, 19415, 140, 4, 0, 'Selected for sarath team', 108, '0000-00-00 00:00:00', 1),
(18035, 19419, 102, 5, 0, 'Interested in IT role she is know c++ java etc , not suitable sales ', 108, '0000-00-00 00:00:00', 1),
(18036, 19421, 102, 5, 0, 'She is interested in back end support team sale is not idea just atten the interview ', 108, '0000-00-00 00:00:00', 1),
(18037, 19416, 139, 4, 0, 'Selected for next round, having exp but not in sales, have skills interest to work in sales ', 108, '0000-00-00 00:00:00', 1),
(18038, 19412, 74, 5, 0, 'not fit', 108, '0000-00-00 00:00:00', 1),
(18039, 19409, 57, 7, 0, 'candidate is ok,cross check with payslip, resignation letter.\n\npls check she have some health issues.salary exp 18k to 19k. \n\nkindly check sustainability.', 108, '0000-00-00 00:00:00', 1),
(18040, 19406, 59, 1, 0, NULL, 89, '2024-05-29 03:58:51', 1),
(18041, 19409, 60, 1, 0, NULL, 57, '2024-05-29 04:36:38', 1),
(18042, 19414, 18, 7, 3, 'Selected for Jagadeesh Team. Can offer 3L package... Ready to join after 15 days notice. Need to check stability in 1st week and have laptop ', 138, '2024-05-29 04:37:05', 1),
(18043, 19416, 18, 7, 0, 'Selected for Gnanashekar team and ready to Join on Monday. Can give 25k CTC', 139, '2024-05-29 04:44:49', 1),
(18044, 19415, 29, 7, 3, 'Refer Resume On Other Details On Salary xxamp Increments', 140, '2024-05-29 05:02:42', 1),
(18045, 19404, 29, 7, 3, 'Refer Resume On Other Details On Salary xxamp Increments', 140, '2024-05-29 05:04:15', 1),
(18046, 19416, 60, 1, 0, NULL, 18, '2024-05-30 12:40:25', 1),
(18047, 19432, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(18048, 19433, 105, 5, 0, 'Candidate Communication and Performance is not good Also His Attire is not good', 112, '0000-00-00 00:00:00', 1),
(18049, 19433, 105, 5, 0, 'Candidate Communication and Performance is not good Also His Attire is not good', 112, '0000-00-00 00:00:00', 1),
(18050, 19430, 19, 7, 1, 'Job needed Person,lets we try in 7 days', 112, '0000-00-00 00:00:00', 1),
(18051, 19429, 138, 7, 0, 'Selected', 112, '0000-00-00 00:00:00', 1),
(18052, 19428, 89, 5, 0, 'No skill ', 112, '0000-00-00 00:00:00', 1),
(18053, 19426, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18054, 19424, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18055, 18776, 86, 5, 0, 'Sriram sir rejected this candidate, Not satisfied', 112, '0000-00-00 00:00:00', 1),
(18056, 19397, 102, 5, 0, 'he is 6 month working credit card sales and take home salary 17k but right now his expectation 22k to 26k so, not suitable DM ', 112, '0000-00-00 00:00:00', 1),
(18057, 19337, 57, 7, 0, 'candidate is ok,cross check payslip xxamp Statement too. negotiate the salary. 17k maximum.confirm the joining date.', 112, '0000-00-00 00:00:00', 1),
(18058, 19337, 57, 7, 0, 'candidate is ok,cross check payslip xxamp Statement too. negotiate the salary. 17k maximum.confirm the joining date.', 112, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(18059, 19430, 59, 3, 0, 'Selected for Kannan Team in Consultant Role Need to Analyse in 7 days', 19, '2024-05-30 02:39:02', 1),
(18060, 19337, 59, 3, 0, 'Selected for Syed Team Need to analyse 7 days can be trained ', 57, '2024-05-30 02:47:05', 1),
(18061, 19434, 89, 5, 0, 'Not fit for the job', 108, '0000-00-00 00:00:00', 1),
(18062, 16580, 59, 3, 0, 'Selected for RE Role Need to Analyse in 7 days training and confirm', 102, '2024-05-30 03:26:44', 1),
(18063, 19244, 60, 1, 0, NULL, 18, '2024-05-30 05:43:51', 1),
(18064, 19393, 60, 1, 0, NULL, 18, '2024-05-30 06:35:41', 1),
(18065, 19429, 18, 7, 0, 'Mohammed Saddam Selected for Jagadeesh team. Ready to Join on Monday. Need to negotiate salary. Need to Verify the current CTC and can give upto 4.5L CTC as he has mentioned that his current CTC sir 34800 PM.', 138, '2024-05-30 07:02:41', 1),
(18066, 19418, 105, 5, 0, 'candidate peroformance and communication is good but her voice is very low', 112, '0000-00-00 00:00:00', 1),
(18067, 19442, 57, 7, 0, 'candidate is ok, confirm the joining date xxamp Salary thanks.\n', 112, '0000-00-00 00:00:00', 1),
(18068, 19442, 57, 7, 0, 'candidate is ok, confirm the joining date xxamp Salary thanks.\n', 112, '0000-00-00 00:00:00', 1),
(18069, 19440, 102, 5, 0, 'Not suitable sales and not knowledge insurance ', 112, '0000-00-00 00:00:00', 1),
(18070, 19442, 59, 3, 0, 'Selected for Syed Team need to analyse in 7 days good communication can give a try', 57, '2024-05-31 12:08:34', 1),
(18071, 19445, 19, 7, 0, 'Job needed person and we fix CTC 16k she has a 6 month exp in Max Life health insurance ', 112, '0000-00-00 00:00:00', 1),
(18072, 19441, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18073, 19439, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18074, 19439, 89, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18075, 19443, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18076, 19444, 137, 5, 0, 'low voice and slow understanding', 112, '0000-00-00 00:00:00', 1),
(18077, 19447, 140, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18078, 19446, 137, 7, 0, 'better voice skill and good communication but distance is long so try for 7 days training period', 112, '0000-00-00 00:00:00', 1),
(18079, 19438, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18080, 19435, 131, 5, 0, 'Lack of communication and High salary expectation ', 126, '0000-00-00 00:00:00', 1),
(18081, 19293, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(18082, 19436, 131, 5, 0, 'Lack of Communication ', 126, '0000-00-00 00:00:00', 1),
(18083, 19446, 59, 1, 0, NULL, 137, '2024-05-31 04:42:44', 1),
(18084, 19336, 59, 3, 0, 'Selected for Syed Team 5050 profile Sustainability doubts a lot need to analyse in 7 days ', 57, '2024-06-01 11:42:11', 1),
(18085, 19345, 60, 1, 0, NULL, 18, '2024-06-01 01:42:12', 1),
(18086, 19452, 74, 7, 0, 'he is ok with the profile, completed bca in 2022-- 6 months experience in home loan manapuram finance---father farmer poor background---higly job need---expected 15k,,,have laptop,,,immediate joining ,,,15 km from home ...kindly check once and confirm', 112, '0000-00-00 00:00:00', 1),
(18087, 19452, 74, 7, 0, 'he is ok with the profile, completed bca in 2022-- 6 months experience in home loan manapuram finance---father farmer poor background---higly job need---expected 15k,,,have laptop,,,immediate joining ,,,15 km from home ...kindly check once and confirm', 112, '0000-00-00 00:00:00', 1),
(18088, 19452, 74, 7, 0, 'he is ok with the profile, completed bca in 2022-- 6 months experience in home loan manapuram finance---father farmer poor background---higly job need---expected 15k,,,have laptop,,,immediate joining ,,,15 km from home ...kindly check once and confirm', 112, '0000-00-00 00:00:00', 1),
(18089, 19452, 59, 3, 0, 'Selected for Thanjavur Location 5050 profile sustainability doubts', 74, '2024-06-01 02:57:44', 1),
(18090, 19450, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18091, 19454, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18092, 19458, 105, 5, 0, 'candidate not performed good in the interview process,also she is not most interested in this job', 112, '0000-00-00 00:00:00', 1),
(18093, 19459, 102, 5, 0, 'Fresher not knowledge insurance not fit tele calling ', 112, '0000-00-00 00:00:00', 1),
(18094, 19456, 89, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18095, 19455, 53, 5, 0, 'Fresher, Expecting high salary and poor communication skill', 112, '0000-00-00 00:00:00', 1),
(18096, 19364, 59, 3, 0, 'Selecetd for GK sir Team with Commitments - 3.10 LPA Commitment - 2L biz in Jun july MF 10K SIP then 3.30 LPA', 29, '2024-06-01 06:47:58', 1),
(18097, 19404, 59, 1, 0, NULL, 29, '2024-06-01 06:48:50', 1),
(18098, 19415, 59, 1, 0, NULL, 29, '2024-06-01 06:49:34', 1),
(18099, 19445, 59, 1, 0, NULL, 19, '2024-06-03 10:27:38', 1),
(18100, 19465, 53, 5, 0, 'intrested i accounts', 112, '0000-00-00 00:00:00', 1),
(18101, 19462, 109, 5, 0, 'Will not suitable for our MF process, work experience with CAMS', 112, '0000-00-00 00:00:00', 1),
(18102, 19464, 102, 5, 0, 'right now looking for job and 3month later he is apply for master degree ', 112, '0000-00-00 00:00:00', 1),
(18103, 19466, 89, 5, 0, 'not intersted the job', 112, '0000-00-00 00:00:00', 1),
(18104, 19474, 89, 5, 0, 'not fit for the job. he has come due to compulsion to attaent the interview', 112, '0000-00-00 00:00:00', 1),
(18105, 19477, 138, 7, 0, 'english communication : Medium \nTechnical Skills : 2/5\nSalary assigned : 2.5 lakhs\nResult : Selected', 112, '0000-00-00 00:00:00', 1),
(18106, 19471, 102, 5, 0, 'Right Now Looking For Job And 3month Later He Is Apply For Master Degree ', 112, '0000-00-00 00:00:00', 1),
(18107, 19473, 57, 5, 0, 'Candidate is not ok. team reference. ', 112, '0000-00-00 00:00:00', 1),
(18108, 19472, 140, 5, 0, 'Rejected, not convincing', 112, '0000-00-00 00:00:00', 1),
(18109, 19470, 57, 7, 0, 'candidate is ok, experienced icici bank xxamp Shriram life . pls check payslip.confirm the joining date. ', 112, '0000-00-00 00:00:00', 1),
(18110, 19469, 57, 5, 0, '50/50 salary expectation high, cross check payslip. negotiate the salary maximum 18k. may be try pc side but distance too long.', 112, '0000-00-00 00:00:00', 1),
(18111, 19468, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18112, 19467, 53, 5, 0, 'Low voice and no clarity on speech', 112, '0000-00-00 00:00:00', 1),
(18113, 19463, 109, 5, 0, 'Not clear with his communication.', 112, '0000-00-00 00:00:00', 1),
(18114, 19460, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18115, 19460, 30, 7, 3, 'confirm the ctc and joining date for rm suggested ctc upto 24k', 131, '2024-06-03 03:54:18', 1),
(18116, 19470, 59, 5, 0, 'Shared the documents and after that there is no response came with Sandhiya T B hope through thirisha they got backed', 57, '2024-06-03 04:19:16', 1),
(18117, 18852, 59, 3, 0, 'Selected for 5months intern with employment conditions for flutter developer 1st level interview by Sathish xxamp 2nd round by gokulraj Sankar\n', 60, '0000-00-00 00:00:00', 1),
(18118, 17637, 59, 3, 0, 'Selected For 5months Intern With Employment Conditions For Flutter Developer 1st Level Interview By Sathish xxamp 2nd Round By Gokulraj Sankar', 60, '0000-00-00 00:00:00', 1),
(18119, 19478, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18120, 19478, 30, 7, 3, 'suggested ctc 20k immediate joining for DM', 131, '2024-06-03 05:13:21', 1),
(18121, 19489, 53, 5, 0, 'Low voice and looking accounts related job', 112, '0000-00-00 00:00:00', 1),
(18122, 19429, 60, 1, 0, NULL, 18, '2024-06-04 10:49:27', 1),
(18123, 19477, 18, 7, 3, 'Mukesh Selected for Jagadeesh Team. Ready to Join on Monday 10 June 2024. Need HR to negotiate the salary and can give 10 to 15% hike from current CTC. Also check wheter the employer PF is seperate else need to add the same. Not having Laptop.', 138, '2024-06-04 10:53:07', 1),
(18124, 19490, 137, 7, 0, 'bold and atractive voice , so try to 7 days trainning', 112, '0000-00-00 00:00:00', 1),
(18125, 19493, 57, 5, 0, 'unfit for the sales job. communication not well and field work not interest.', 112, '0000-00-00 00:00:00', 1),
(18126, 19494, 105, 7, 0, 'Candidate Performed 50/50 ,will try in the training period', 130, '0000-00-00 00:00:00', 1),
(18127, 19460, 60, 1, 0, NULL, 30, '2024-06-04 02:53:49', 1),
(18128, 19478, 60, 1, 0, NULL, 30, '2024-06-04 02:54:41', 1),
(18129, 19499, 137, 7, 0, 'candidate voice is average but family backround is very low so job is very needed so try for 7days training', 112, '0000-00-00 00:00:00', 1),
(18130, 19497, 109, 5, 0, 'She was not fit for sales , sustainability doubt and also from long distance.', 112, '0000-00-00 00:00:00', 1),
(18131, 19501, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18132, 19490, 59, 3, 0, 'Selected for Giri Team Need to analyse in 7 days and check', 137, '2024-06-04 04:13:10', 1),
(18133, 19500, 105, 5, 0, 'Candidate Not Performed Well in The Process Also his attire is very poor', 112, '0000-00-00 00:00:00', 1),
(18134, 19414, 60, 1, 0, NULL, 18, '2024-06-04 04:20:05', 1),
(18135, 19499, 59, 1, 0, NULL, 137, '2024-06-04 04:21:41', 1),
(18136, 19498, 131, 5, 0, 'Lack of communication and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(18137, 19496, 131, 4, 0, 'Good Communication can process for next Round', 126, '0000-00-00 00:00:00', 1),
(18138, 19496, 30, 7, 3, 'Suggested CTC upto 22k he I k for rm', 131, '2024-06-05 10:11:54', 1),
(18139, 19503, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(18140, 19411, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(18141, 19519, 57, 7, 0, 'Candidate is ok,communication good, Fresher, confirm the joining date. give me a fresher salary.', 112, '0000-00-00 00:00:00', 1),
(18142, 19520, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(18143, 19518, 71, 5, 0, 'Not fit for sales ', 112, '0000-00-00 00:00:00', 1),
(18144, 19413, 71, 5, 0, 'Not Fit For Sales ', 112, '0000-00-00 00:00:00', 1),
(18145, 19507, 102, 9, 0, 'Already working another domain interested in sales but field work no interested so, may be will try operation team ', 112, '0000-00-00 00:00:00', 1),
(18146, 19508, 102, 7, 0, 'she is working real estate sales last 6 Month , Good communication Skills Salary expt 17k Plz cross check payslip and give 16.5K and join date ( immediate joining )', 112, '0000-00-00 00:00:00', 1),
(18147, 19509, 105, 5, 0, 'Candidate have Gap Speaking Problem So he is very tough to addmier here also not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18148, 19510, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18149, 19511, 53, 5, 0, 'her first preference is non voice process', 112, '0000-00-00 00:00:00', 1),
(18150, 19507, 59, 1, 0, NULL, 102, '2024-06-05 01:24:50', 1),
(18151, 19508, 59, 3, 0, 'Selected for Relationship Executive Role Need to analyse in 7 days', 102, '2024-06-05 01:28:00', 1),
(18152, 19502, 19, 7, 0, 'i think he is fit for tele calling ,CTC 16K', 112, '0000-00-00 00:00:00', 1),
(18153, 19522, 105, 7, 0, 'Candiate Performed 50/50,also she have 2 yrs experiance in credicard sales will try in the training period', 112, '0000-00-00 00:00:00', 1),
(18154, 19479, 89, 5, 0, 'No skil', 112, '0000-00-00 00:00:00', 1),
(18155, 19523, 102, 5, 0, 'He is not came Formal wear and fresher fst interview and communication level low', 112, '0000-00-00 00:00:00', 1),
(18156, 19480, 137, 7, 0, 'candidate is very good skill , and better voice , fresher , so try to 7 days training period', 112, '0000-00-00 00:00:00', 1),
(18157, 19519, 59, 5, 0, 'Need time to check with her family too long distance later there was no update from her', 57, '2024-06-05 04:39:51', 1),
(18158, 19477, 60, 1, 0, NULL, 18, '2024-06-05 05:03:35', 1),
(18159, 19502, 59, 3, 0, '5050 profile for RE role Can try Need to analyse in 7 days', 19, '2024-06-05 05:54:23', 1),
(18160, 19494, 59, 3, 0, 'Selected for RE role,Consultant Role for Gopinath Team his brother is in same domain,need to have a eye on the data secure', 105, '2024-06-05 05:59:04', 1),
(18161, 19480, 59, 1, 0, NULL, 137, '2024-06-06 10:15:47', 1),
(18162, 19522, 59, 3, 0, 'Shared the breakup but seems to be doubtful and exp is high ', 105, '2024-06-06 01:02:54', 1),
(18163, 19531, 53, 5, 0, 'Interested in accounts', 112, '0000-00-00 00:00:00', 1),
(18164, 19529, 105, 7, 0, 'Her Performance And Communication is Little Bit Good ,But 5050 Will Try In The Training Period ', 112, '0000-00-00 00:00:00', 1),
(18165, 19528, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18166, 19535, 89, 5, 0, 'Not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18167, 19536, 102, 5, 0, 'he is not handling pressure doubt for sustainability ', 112, '0000-00-00 00:00:00', 1),
(18168, 19537, 53, 5, 0, 'long distance', 112, '0000-00-00 00:00:00', 1),
(18169, 19548, 137, 5, 0, 'candidate is only lookingfrd compan job and she just attend the interview so rejcted', 112, '0000-00-00 00:00:00', 1),
(18170, 19545, 137, 5, 0, 'candidate looking for telecalling only ,not interested for out side call so not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18171, 19538, 57, 2, 0, 'candidate is ok, pls confirm joining or not bcz of language issues.', 112, '0000-00-00 00:00:00', 1),
(18172, 19526, 59, 3, 0, 'Selecetd for Mutual Fund Role 2yrs NDA for this role can be trained have basic knowledge in MF have exp in BGV process', 112, '0000-00-00 00:00:00', 1),
(18173, 19532, 59, 3, 0, 'SElected for RE MF role Need to analyse in 7 days Sustainability doubts', 112, '0000-00-00 00:00:00', 1),
(18174, 19540, 51, 9, 0, 'int only in health', 112, '0000-00-00 00:00:00', 1),
(18175, 19543, 86, 8, 0, 'Degree Not completed. Need to meet Arun.', 112, '0000-00-00 00:00:00', 1),
(18176, 19550, 131, 5, 0, 'Doubt with Sustain, salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(18177, 19549, 131, 5, 0, 'Lack of confident lagging with communication', 126, '0000-00-00 00:00:00', 1),
(18178, 19551, 89, 7, 0, 'Selected.. fresher ', 104, '0000-00-00 00:00:00', 1),
(18179, 19540, 57, 5, 0, 'Appearance not good. salary expectation high. reject the profile. thanks', 51, '2024-06-07 12:21:44', 1),
(18180, 19555, 137, 7, 0, 'candidate is ok and voice also good , low backround so try for 7 days training period', 112, '0000-00-00 00:00:00', 1),
(18181, 19553, 102, 5, 0, 'he is interested in IT right now looking for sales , sustainability doubt ', 112, '0000-00-00 00:00:00', 1),
(18182, 19556, 105, 5, 0, 'Her Communication And Performance Is To Low', 112, '0000-00-00 00:00:00', 1),
(18183, 19557, 53, 4, 0, 'Will try 50/50', 112, '0000-00-00 00:00:00', 1),
(18184, 19561, 19, 5, 0, 'his voice and slang is not good', 112, '0000-00-00 00:00:00', 1),
(18185, 19562, 19, 5, 0, 'INTRESTED IN HR', 112, '0000-00-00 00:00:00', 1),
(18186, 19565, 102, 5, 0, 'interested in Accounts related job recently finished uG when get a result going accounts field ', 112, '0000-00-00 00:00:00', 1),
(18187, 19566, 137, 5, 0, 'candidate voice is not ok and not speaking well , so not fit for sales and she joining frd aslo including ', 112, '0000-00-00 00:00:00', 1),
(18188, 19491, 59, 1, 0, NULL, 130, '0000-00-00 00:00:00', 1),
(18189, 19557, 59, 5, 0, 'Not open for telecalling much showing interest in non voice', 53, '2024-06-07 06:23:47', 1),
(18190, 19551, 59, 3, 0, 'Selected for Relationship Executive Role Need to analyse in 7 days training and finalise', 89, '2024-06-07 06:54:36', 1),
(18191, 19581, 53, 4, 0, '50/50, needs to check', 112, '0000-00-00 00:00:00', 1),
(18192, 19579, 102, 5, 0, 'voice tone is low and friends are another non voice so, sustainability Doubt ', 112, '0000-00-00 00:00:00', 1),
(18193, 19576, 19, 5, 0, 'not intrest in sales', 112, '0000-00-00 00:00:00', 1),
(18194, 19575, 57, 5, 0, 'Candidate not interested for field work, may be try with other channel.thanks\n', 112, '0000-00-00 00:00:00', 1),
(18195, 19555, 59, 3, 0, 'Selected for Relationship Executive Role Giri Team Need to analyse in 7 days training and confirm', 137, '2024-06-08 12:59:33', 1),
(18196, 19583, 19, 7, 0, 'Selected Lets Try 7 days ', 112, '0000-00-00 00:00:00', 1),
(18197, 19582, 89, 7, 0, 'Selected.. already experienced telecalling ', 112, '0000-00-00 00:00:00', 1),
(18198, 19585, 137, 5, 0, 'candidate need temporvery job only, after6 month apply for master degree , so not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18199, 19569, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18200, 19577, 131, 5, 0, 'lack of knowledge about the sales and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(18201, 19580, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18202, 19582, 59, 3, 0, 'Selected for Relationship Executive Role need to analyse in 7 days training period and confirm', 89, '2024-06-08 04:08:57', 1),
(18203, 19583, 59, 3, 0, 'Selected for Kannan Team Sustainability doubts a lot married fresher for sales need to check', 19, '2024-06-08 04:31:17', 1),
(18204, 19569, 30, 7, 3, 'She is expecting 28k but we can go upto 25k she donxquott have any experience in our field but have communication skills and confidence,she is k for rm if she accepted 25k means k or else drop', 131, '2024-06-08 04:32:31', 1),
(18205, 19578, 131, 5, 0, 'Lack Of Knowledge About The Sales And Salary Expectation Is High', 126, '0000-00-00 00:00:00', 1),
(18206, 19580, 30, 7, 4, 'Confirm the joining and CTC suggested upto 20k', 131, '2024-06-08 04:54:42', 1),
(18207, 19581, 59, 3, 0, 'Selected for Banu Team ,Need to analyse in 7 days and confirm', 53, '2024-06-08 06:20:47', 1),
(18208, 19569, 60, 1, 0, NULL, 30, '2024-06-10 09:16:09', 1),
(18209, 19580, 60, 1, 0, NULL, 30, '2024-06-10 09:16:55', 1),
(18210, 19496, 60, 1, 0, NULL, 30, '2024-06-10 09:18:20', 1),
(18211, 19592, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18212, 19592, 30, 7, 3, 'suggested ctc upto 17k selected for dm', 131, '2024-06-10 12:44:20', 1),
(18213, 19584, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18214, 19602, 53, 5, 0, 'looking accounts field', 112, '0000-00-00 00:00:00', 1),
(18215, 19594, 102, 5, 0, 'Fresher interested in Accounts not interested in sales just try Sustainability Doubt ', 112, '0000-00-00 00:00:00', 1),
(18216, 19594, 102, 5, 0, 'Fresher interested in Accounts not interested in sales just try Sustainability Doubt ', 112, '0000-00-00 00:00:00', 1),
(18217, 19593, 53, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18218, 19591, 57, 5, 0, 'Candidate is unfit for the telesales xxamp Field work. he is interested iT Domain.', 112, '0000-00-00 00:00:00', 1),
(18219, 19590, 105, 7, 0, 'Candidate Performance And Communication is Good ,Will Try In The training period ', 112, '0000-00-00 00:00:00', 1),
(18220, 19588, 19, 7, 0, 'Syed Selected the profile lets try 7 days and decide', 112, '0000-00-00 00:00:00', 1),
(18221, 19586, 137, 7, 0, 'candidate voice is very bold and good communication so i will try for 7 days training period', 112, '0000-00-00 00:00:00', 1),
(18222, 19599, 137, 7, 0, 'candidate expreience is it adn other job but sales interest and communication is also good so try for 7 days training', 112, '0000-00-00 00:00:00', 1),
(18223, 19604, 57, 7, 0, 'candidate is ok,communication good,pls confirm the joining date.', 112, '0000-00-00 00:00:00', 1),
(18224, 19603, 102, 7, 0, 'He is communication and skill good but once confirm in sales becuz already 2yrs working for Another domain ( back end team )', 112, '0000-00-00 00:00:00', 1),
(18225, 19601, 131, 4, 0, 'Good Communication can process for next round ', 126, '0000-00-00 00:00:00', 1),
(18226, 19605, 131, 4, 0, 'Good Communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18227, 19605, 30, 7, 3, 'Suggested CTC upto 24k for rm', 131, '2024-06-10 05:56:18', 1),
(18228, 19601, 30, 7, 3, 'Selected for dm suggested CTC 18k', 131, '2024-06-10 05:57:00', 1),
(18229, 19604, 59, 3, 0, 'Selected for RE Role Can give a try in our roles need to check in 7days', 57, '2024-06-10 06:09:26', 1),
(18230, 19603, 59, 5, 0, 'Not interested in telesales', 102, '2024-06-10 06:57:30', 1),
(18231, 19529, 59, 3, 0, 'Fresher for Sales have 6 months ops exp can give a try need to analyse in 7 days', 105, '2024-06-10 07:10:34', 1),
(18232, 19590, 59, 3, 0, 'communication OK Can give a try in our roles but sustainability doubts in our sales roles', 105, '2024-06-10 07:11:54', 1),
(18233, 19588, 59, 3, 0, 'Selected for RE Role Kannan Team Need to check in 7 days training', 19, '2024-06-10 07:17:45', 1),
(18234, 19586, 59, 3, 0, 'Selected for RE role Can give a try Need to train in 7 days and analyse', 137, '2024-06-11 10:08:41', 1),
(18235, 19599, 59, 3, 0, 'Selected for Giri Team Relationship Executive Role need to analyse in 7 days training\n', 137, '2024-06-11 10:10:03', 1),
(18236, 19611, 74, 5, 0, 'Not fit', 112, '0000-00-00 00:00:00', 1),
(18237, 19610, 74, 5, 0, 'Not fit', 112, '0000-00-00 00:00:00', 1),
(18238, 19612, 105, 5, 0, 'Her Communication ,Slang And Pronuncation is Not Good', 112, '0000-00-00 00:00:00', 1),
(18239, 19608, 89, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18240, 19613, 53, 5, 0, 'Very low voice, not suit for telecalling', 112, '0000-00-00 00:00:00', 1),
(18241, 19614, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18242, 19607, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18243, 19607, 30, 7, 4, 'Suggested ctc25k confirm the joining for rm', 131, '2024-06-11 05:04:11', 1),
(18244, 19615, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18245, 19607, 60, 1, 0, NULL, 30, '2024-06-11 05:56:07', 1),
(18246, 19605, 60, 1, 0, NULL, 30, '2024-06-11 05:57:14', 1),
(18247, 19615, 30, 7, 3, 'Suggested ctc18k selected for dm', 131, '2024-06-11 05:57:48', 1),
(18248, 19601, 60, 1, 0, NULL, 30, '2024-06-11 05:57:57', 1),
(18249, 19615, 60, 1, 0, NULL, 30, '2024-06-11 05:58:52', 1),
(18250, 19616, 109, 5, 0, 'had a different kind of experience. not much knowledge about recruitment', 130, '0000-00-00 00:00:00', 1),
(18251, 19626, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18252, 19617, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18253, 19617, 30, 7, 4, 'basic salary 15k suggested immediate joining for dm', 131, '2024-06-12 01:37:28', 1),
(18254, 19626, 30, 7, 3, 'immediate joining suggested ctc upto 17k for dm', 131, '2024-06-12 01:37:58', 1),
(18255, 19592, 60, 1, 0, NULL, 30, '2024-06-12 03:36:58', 1),
(18256, 19617, 60, 1, 0, NULL, 30, '2024-06-12 03:37:56', 1),
(18257, 19626, 60, 1, 0, NULL, 30, '2024-06-12 03:38:42', 1),
(18258, 19652, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18259, 19630, 59, 3, 0, 'Selected for Accounts Internship for 3 months with 10K stipend then 1.8 LPA overall 2yrs NDA', 112, '0000-00-00 00:00:00', 1),
(18260, 19636, 137, 7, 0, 'Good communication skills and bold voice but distance is very long other wise good so try for 7 days training period ', 112, '0000-00-00 00:00:00', 1),
(18261, 19640, 105, 7, 0, 'Her communication and performance is good will go for under training period', 112, '0000-00-00 00:00:00', 1),
(18262, 19650, 53, 4, 0, 'He is Interested in field sales and looking voice process, but going coaching for TNPSC exam and basketball player. Need to check sustainability, if he is ok for all term select this candidate', 112, '0000-00-00 00:00:00', 1),
(18263, 19629, 19, 7, 0, 'communication was good,So lets try 7 days ctc 16k', 112, '0000-00-00 00:00:00', 1),
(18264, 19643, 19, 7, 0, 'syed selected,so lets try 7 days ctc 16k, she has existing work exp', 112, '0000-00-00 00:00:00', 1),
(18265, 19641, 89, 5, 0, 'no skil', 112, '0000-00-00 00:00:00', 1),
(18266, 19644, 102, 5, 0, 'Already working 4th month back end team he is not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(18267, 19637, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18268, 19654, 138, 7, 0, 'Selected for 3L CTC. Immediate Joiner and has Laptop. Need to close soon.', 112, '0000-00-00 00:00:00', 1),
(18269, 19654, 18, 7, 3, 'Kavi Kumar Selected for Jagadeesh team for 3L CTC. Immediate Joiner and has Laptop. Need to close soon.', 138, '2024-06-13 04:45:08', 1),
(18270, 19646, 57, 5, 0, 'he not suitable for voice process xxamp Sales profile. field work not interest', 112, '0000-00-00 00:00:00', 1),
(18271, 19654, 60, 1, 0, NULL, 18, '2024-06-13 05:05:51', 1),
(18272, 18662, 51, 5, 0, 'Rejected', 51, '2024-06-13 07:43:27', 1),
(18273, 19640, 59, 3, 0, 'Selected for Gopinath Team Relationship Executive Role Need to analyze in 7 days seems to be doubt in handling the working pressure', 105, '2024-06-14 10:00:15', 1),
(18274, 19642, 105, 5, 0, 'candiate attend by charless , her Comminucation and performance is little bit only good,but sustainity problem.', 112, '0000-00-00 00:00:00', 1),
(18275, 19669, 140, 5, 0, 'No prior sales experience, not able convince for sales also', 112, '0000-00-00 00:00:00', 1),
(18276, 19665, 102, 5, 0, 'fresher not interested in sales ', 112, '0000-00-00 00:00:00', 1),
(18277, 19674, 140, 4, 0, 'can give 17k net salary now, june and july month target 2 lakhs, if achieved salary can be increased to 20k net', 112, '0000-00-00 00:00:00', 1),
(18278, 19629, 59, 5, 0, 'Not interested to go in telesales looking for the core job', 19, '2024-06-14 12:12:00', 1),
(18279, 19643, 59, 1, 0, NULL, 19, '2024-06-14 12:14:30', 1),
(18280, 19680, 138, 7, 0, 'Candidate have Life insurance experience in 2 years and Good Communcation skills and over all financial Knowledge is avaerage and Telesales is basic expereince but We need to Negotiate the salary 4LPA he Expected 4.5LPA ', 112, '0000-00-00 00:00:00', 1),
(18281, 19674, 29, 7, 2, 'Porrselvan team, refer detail in resume ', 140, '2024-06-14 02:43:23', 1),
(18282, 19680, 18, 8, 0, 'Kindly Reschedule', 138, '2024-06-14 02:44:19', 1),
(18283, 19677, 19, 7, 0, 'Job needed person ,ctc 15k,lets try 7 days and confirm', 112, '0000-00-00 00:00:00', 1),
(18284, 19678, 57, 7, 0, 'give me a fresher salary,confirm the joining date.thanks', 112, '0000-00-00 00:00:00', 1),
(18285, 19681, 137, 7, 0, '6months experience for renivales an d8 months experience for tele sales for starhealth nsurance so try for 7 days training and ctc net 16k', 112, '0000-00-00 00:00:00', 1),
(18286, 19682, 137, 5, 0, 'fake commitment and voice also not good , not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18287, 19677, 59, 3, 0, 'Fresher for Telecalling roles can be trained group of friends got selected in DM team Need to have a detailed analyse in their work', 19, '2024-06-14 03:38:48', 1),
(18288, 19683, 102, 5, 0, 'not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(18289, 19684, 89, 5, 0, 'not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18290, 19681, 59, 1, 0, NULL, 137, '2024-06-14 04:41:18', 1),
(18291, 19686, 57, 5, 0, 'Candidate is not suitable for sales profile. bcz of timing and leaves. ', 112, '0000-00-00 00:00:00', 1),
(18292, 19678, 59, 3, 0, 'Selected for Syed Team Need to analyse in 7 days training and confirm', 57, '2024-06-14 06:15:34', 1),
(18293, 19685, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(18294, 19691, 139, 4, 0, 'selected for next round\nexp sal 20k pm\ndont have exp in sales', 112, '0000-00-00 00:00:00', 1),
(18295, 19699, 57, 5, 0, 'he interested it domain, already he attend 3 interviews iT related only, now also looking IT Jobs. Unfit for sales', 112, '0000-00-00 00:00:00', 1),
(18296, 19693, 89, 5, 0, 'not Interested Tell calling job ', 112, '0000-00-00 00:00:00', 1),
(18297, 19701, 137, 5, 0, 'candidate just fwe months working for job that money to study for it course, afterhe will join for it company so ot fit for sales', 112, '0000-00-00 00:00:00', 1),
(18298, 19698, 53, 7, 0, 'selected. Pls cnfrm the DOJ', 112, '0000-00-00 00:00:00', 1),
(18299, 19707, 102, 7, 0, 'Shortlist for team ', 112, '0000-00-00 00:00:00', 1),
(18300, 19650, 59, 3, 0, 'Communication Ok Can be trained but will not sustain for a long looking for forensic opportunities parttime basket ball coach ', 53, '2024-06-15 11:45:15', 1),
(18301, 19636, 59, 3, 0, 'Selected for Giri Team Relationship Executive Role Need to analyse in 7 days and confirm', 137, '2024-06-15 12:42:03', 1),
(18302, 19700, 53, 5, 0, 'Sustainability issue', 112, '0000-00-00 00:00:00', 1),
(18303, 19705, 89, 5, 0, 'over thinking', 112, '0000-00-00 00:00:00', 1),
(18304, 19709, 57, 2, 0, 'Candidate is 50/50 overall 3years experience. pls cross check sustainability.', 112, '0000-00-00 00:00:00', 1),
(18305, 19713, 137, 5, 0, 'slurred speech and low voice so not fit for sales and out side call also', 112, '0000-00-00 00:00:00', 1),
(18306, 19715, 137, 5, 0, 'low voice , no skill, high expectation\nso, not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18307, 19714, 137, 7, 0, 'candidate is good communication skill adn bold voice , expreience for realestate 1 year expt ctc 18k , so try for 7 days training', 112, '0000-00-00 00:00:00', 1),
(18308, 19716, 105, 5, 0, 'Candidate Preformance And Communication is little bit only good, but his voice is very low pitch', 112, '0000-00-00 00:00:00', 1),
(18309, 19712, 51, 5, 0, 'not ok', 112, '0000-00-00 00:00:00', 1),
(18310, 19717, 71, 4, 0, 'Selected next round ', 112, '0000-00-00 00:00:00', 1),
(18311, 19717, 18, 7, 0, 'Puntiha Selected for Santhosh Team. Immediate Joiner and ready to Join on Monday 17 June. Can give offer of 3.25L PA including PF. Donxquott have laptop and she does not have any experience certificate but can recruit her.', 71, '2024-06-15 04:20:22', 1),
(18312, 19714, 59, 3, 0, 'Selected for RE Role Focusing for IT positions Sustainability doubts in our role let us try\n', 137, '2024-06-15 05:40:14', 1),
(18313, 19691, 18, 8, 0, 'Not attended please refix', 139, '2024-06-15 05:47:06', 1),
(18314, 19718, 19, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18315, 19697, 31, 5, 0, 'worked 1 year with ipru bank channel but expecting huge CTC. No experience in lead generation by his own ', 112, '0000-00-00 00:00:00', 1),
(18316, 19707, 59, 3, 0, 'Selected for RE Role Need to analyse and confirm in 7 days training can give a try for our roles', 102, '2024-06-15 06:25:56', 1),
(18317, 19722, 138, 7, 0, 'Communication Skills is good and new field for sales already experience in Tele calling for customer services but then overall attitude and perfomance is good but Mathematic calculation understanding is below average so need to train and negotiate the salary', 112, '0000-00-00 00:00:00', 1),
(18318, 19721, 57, 7, 0, 'Candidate is ok, confirm the joining xxamp salary ', 112, '0000-00-00 00:00:00', 1),
(18319, 19723, 19, 5, 0, 'Banu Mam Rejected', 112, '0000-00-00 00:00:00', 1),
(18320, 19719, 59, 3, 0, 'Selected for MF in staff non stat role final round interviewed by Gokul', 112, '0000-00-00 00:00:00', 1),
(18321, 19728, 53, 4, 0, '50 50 hold for next two days, than will decide', 112, '0000-00-00 00:00:00', 1),
(18322, 19727, 105, 5, 0, 'candiate performance is little bit not good also her communicating slang is like little bit locally', 112, '0000-00-00 00:00:00', 1),
(18323, 19726, 53, 5, 0, 'Very low voice and low confidence level.', 112, '0000-00-00 00:00:00', 1),
(18324, 19730, 137, 5, 0, 'candidate only looking near by office , previous office distance reason to relaving the job , that company near by cafs , so she will not work for this company, so not fit foe this comapny and voice also not good ', 112, '0000-00-00 00:00:00', 1),
(18325, 19717, 60, 1, 0, NULL, 18, '2024-06-17 12:23:52', 1),
(18326, 19725, 19, 5, 0, 'She is not willing to work after 6', 112, '0000-00-00 00:00:00', 1),
(18327, 19732, 89, 7, 0, 'Selected.. CTC 16 k . She has good communication skill', 112, '0000-00-00 00:00:00', 1),
(18328, 19720, 86, 4, 0, 'Selected for next round. ', 112, '0000-00-00 00:00:00', 1),
(18329, 19720, 18, 8, 0, 'Kindly Reschedule', 86, '2024-06-17 03:42:50', 1),
(18330, 19734, 105, 7, 0, 'Candidate performance is ok but 50/50 profile need to check in the training period', 112, '0000-00-00 00:00:00', 1),
(18331, 19734, 59, 1, 0, NULL, 105, '2024-06-17 04:20:25', 1),
(18332, 19722, 18, 7, 2, 'Selected for Jagadeesh team. Ready to Join on Monday. Expected take home is 22k Excluding PF but negotiate the salary .', 138, '2024-06-17 04:55:13', 1),
(18333, 19732, 59, 1, 0, NULL, 89, '2024-06-17 05:02:11', 1),
(18334, 19728, 59, 5, 0, 'Communication No Very slow will not handle our work pressure not suitable for our roles will not sustain', 53, '2024-06-17 05:04:06', 1),
(18335, 19721, 59, 3, 0, 'Selected forRE role Fresher have 3 months AR caller Exp Can give a try need to analyse in 7 days', 57, '2024-06-17 05:14:30', 1),
(18336, 19736, 19, 7, 0, 'She speaks well ctc - Kindly refer to babu team sandhiya shree salary ', 112, '0000-00-00 00:00:00', 1),
(18337, 19742, 105, 5, 0, 'Candidate Performance is not like good ', 112, '0000-00-00 00:00:00', 1),
(18338, 19674, 59, 1, 0, NULL, 29, '2024-06-18 12:21:49', 1),
(18339, 19759, 137, 5, 0, 'candidate is previous exp is partime work for gaming tracking candidate is very long distance a dno bike also , and not go for out side call ', 112, '0000-00-00 00:00:00', 1),
(18340, 19740, 137, 5, 0, 'candidate voice is not good and very indifference so not fit or sales', 112, '0000-00-00 00:00:00', 1),
(18341, 19756, 86, 7, 0, 'Sriram Sir shortlisted the Candidate.Can give 10% hike from current salary and which is amounting to 3.85L CTC. Ready to Join from Monday(24 June)', 112, '0000-00-00 00:00:00', 1),
(18342, 19739, 19, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18343, 19747, 53, 5, 0, 'not even opening her mouth', 112, '0000-00-00 00:00:00', 1),
(18344, 19750, 19, 7, 0, 'babu ref,she speaks bold and well so iets try 7 days and confirm ,ctc 15k', 112, '0000-00-00 00:00:00', 1),
(18345, 19760, 137, 5, 0, 'candidate just looking for jo mainly looking fr it and pervious exp is study time work for gaming tracking and voice also very local voice and dress cod also so not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18346, 19741, 19, 5, 0, 'Rejected excepted high salary ', 112, '0000-00-00 00:00:00', 1),
(18347, 19758, 19, 5, 0, 'rejected not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18348, 19749, 105, 5, 0, 'Candidate communication is ok but her slag is Not legit', 112, '0000-00-00 00:00:00', 1),
(18349, 19755, 89, 5, 0, 'rejected', 112, '0000-00-00 00:00:00', 1),
(18350, 19744, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18351, 19744, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18352, 19757, 102, 5, 0, 'not suitable sales', 112, '0000-00-00 00:00:00', 1),
(18353, 19746, 105, 5, 0, 'Interviewed by banu Mam, As per her information candidate communication adn performance is not good', 112, '0000-00-00 00:00:00', 1),
(18354, 19751, 57, 5, 0, 'Communication not good.unfit for sales ', 112, '0000-00-00 00:00:00', 1),
(18355, 19743, 57, 5, 0, 'waste of time', 112, '0000-00-00 00:00:00', 1),
(18356, 19737, 140, 4, 0, 'Selected', 112, '0000-00-00 00:00:00', 1),
(18357, 19738, 102, 5, 0, 'not suitable sales ', 112, '0000-00-00 00:00:00', 1),
(18358, 19745, 53, 5, 0, 'Looking accounts field\n', 112, '0000-00-00 00:00:00', 1),
(18359, 19750, 59, 3, 0, 'Selected for RE role 5050 Can give a try need to analyse in 7 days', 19, '2024-06-18 04:23:58', 1),
(18360, 19762, 102, 5, 0, 'not interested sales job', 112, '0000-00-00 00:00:00', 1),
(18361, 19756, 60, 1, 0, NULL, 86, '2024-06-18 04:24:44', 1),
(18362, 19736, 59, 3, 0, 'Selected for RE Role Team reference Fresher IT Background education open for telesales Need to analyse in 7 days', 19, '2024-06-18 04:25:17', 1),
(18363, 19761, 53, 5, 0, 'Long distance. ', 112, '0000-00-00 00:00:00', 1),
(18364, 19698, 59, 3, 0, 'Selected for RE Role have 7 months telecalling exp can be trained in our roles need to analyse in 7 days', 53, '2024-06-18 05:15:44', 1),
(18365, 19709, 59, 3, 0, 'Selected for RE Role Need to analyse and confirm in the training period', 57, '2024-06-18 06:12:55', 1),
(18366, 19709, 57, 7, 0, 'Candidate is ok confirm the joining date xxamp Salary thanks\n', 57, '2024-06-18 06:12:55', 1),
(18367, 19737, 29, 7, 0, 'didnxquott join', 140, '2024-06-18 07:15:54', 1),
(18368, 18165, 109, 5, 0, 'He was looking for finnance', 109, '2024-06-19 11:36:32', 1),
(18369, 19338, 109, 5, 0, 'She was looking for IT Recruitment, she need to Confirm about interested in NON IT', 109, '2024-06-19 11:37:22', 1),
(18370, 19771, 53, 5, 0, 'No proper communication', 112, '0000-00-00 00:00:00', 1),
(18371, 19769, 105, 7, 0, 'Her Communication And Performance is Good , Will Go For An Training Period', 112, '0000-00-00 00:00:00', 1),
(18372, 19767, 57, 5, 0, 'Communication good and everythink is fine.she recently married but she before that said unmarried.reject the profile, sustainability issues', 112, '0000-00-00 00:00:00', 1),
(18373, 19776, 137, 7, 0, 'candidate voice is good and good sales knowledge , but alread selacted for just dial compay package for 14k takehome 13k monday joining so just try ', 112, '0000-00-00 00:00:00', 1),
(18374, 19768, 57, 7, 0, 'Candidate is ok, Fresher communication good, pls cross check sustainability. confirm the joining date xxamp Salary', 112, '0000-00-00 00:00:00', 1),
(18375, 19779, 89, 5, 0, 'no basic skill', 112, '0000-00-00 00:00:00', 1),
(18376, 19773, 137, 5, 0, 'candidat mainly looking for iT job only just money need to search for sales job but after6 months he wlll go for iT only so not selected', 112, '0000-00-00 00:00:00', 1),
(18377, 19777, 105, 8, 0, 'Not Attended', 112, '0000-00-00 00:00:00', 1),
(18378, 19774, 102, 5, 0, 'just looking for job and it interested ', 112, '0000-00-00 00:00:00', 1),
(18379, 19770, 89, 7, 0, 'Freshers salary provide,,, 7 days training will analysis ', 112, '0000-00-00 00:00:00', 1),
(18380, 19769, 59, 3, 0, 'Fresher Taking tutions and she needs 2 days time to confirm sustainability doubts need to check in 7 days analysis', 105, '2024-06-19 12:39:40', 1),
(18381, 19768, 59, 3, 0, 'selected for RE role Need to analyse in 7 days can be trained internal team reference', 57, '2024-06-19 01:04:46', 1),
(18382, 19776, 59, 3, 0, 'Sustainability doubts a lot much interesed in non voice need to analyse in 7 days', 137, '2024-06-19 01:12:43', 1),
(18383, 19787, 102, 5, 0, 'salary expectation high and not interested field work ', 104, '0000-00-00 00:00:00', 1),
(18384, 19786, 140, 5, 0, 'No sales knowledge and lying about her prior experince', 104, '0000-00-00 00:00:00', 1),
(18385, 19790, 71, 9, 0, 'move to dm', 104, '0000-00-00 00:00:00', 1),
(18386, 19765, 140, 5, 0, 'Not having convincing skill, not having proper experience also worked in 2 companies just for 6 months', 104, '0000-00-00 00:00:00', 1),
(18387, 19763, 138, 7, 0, 'Fresher candidate and New to start tele sales and direct sales so communication skills medium and Techinical skills average so she selected but need to negotiate salary and waiting for Sriram confirmation', 104, '0000-00-00 00:00:00', 1),
(18388, 19791, 139, 5, 0, 'Not fit RM profile \ndont have communication skils', 104, '0000-00-00 00:00:00', 1),
(18389, 19789, 51, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18390, 19785, 137, 5, 0, 'candidate not interest for firld work and voice is not ok slowely speaking so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18391, 19784, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18392, 19783, 53, 5, 0, 'Very slow', 104, '0000-00-00 00:00:00', 1),
(18393, 19781, 51, 5, 0, 'rejected\n', 104, '0000-00-00 00:00:00', 1),
(18394, 19775, 105, 5, 0, 'Candidate Performance is little bit Only good but his voice is very low', 104, '0000-00-00 00:00:00', 1),
(18395, 19782, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18396, 19764, 131, 4, 0, 'Good communication and confident level can process for next', 126, '0000-00-00 00:00:00', 1),
(18397, 19277, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18398, 19764, 30, 7, 4, 'Selected for rm suggested 3lac', 131, '2024-06-19 06:15:19', 1),
(18399, 19277, 30, 7, 3, 'SELECTED FOR RM SUGGESTED 25K SALARY', 131, '2024-06-19 06:16:21', 1),
(18400, 19688, 131, 5, 0, 'Salary expectation is high ', 126, '0000-00-00 00:00:00', 1),
(18401, 19733, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18402, 19729, 131, 5, 0, 'Lack of knowledge and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(18403, 19667, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18404, 19770, 59, 1, 0, NULL, 89, '2024-06-20 11:07:14', 1),
(18405, 19796, 53, 4, 0, 'selected, now staying in singaperumal kovil, she is ready to relocate kindly check for relocate then confirm the joining. ', 104, '0000-00-00 00:00:00', 1),
(18406, 19797, 53, 5, 0, 'Very slow', 104, '0000-00-00 00:00:00', 1),
(18407, 19798, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18408, 19799, 137, 7, 0, 'candidate very interest to sales and voice process , voice also good and communication is good , now stay on singaperumalkovil , confirm the job after re locate to near by office , so try for 7 days trainning period', 104, '0000-00-00 00:00:00', 1),
(18409, 19800, 102, 7, 0, 'Shortlist for team check and confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(18410, 19802, 140, 4, 0, 'Selected for next round', 104, '0000-00-00 00:00:00', 1),
(18411, 19803, 51, 4, 0, 'selected', 104, '0000-00-00 00:00:00', 1),
(18412, 19804, 102, 5, 0, 'slow and sustainability doubt \n', 104, '0000-00-00 00:00:00', 1),
(18413, 19618, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(18414, 19805, 102, 5, 0, 'looking for non voice process ', 104, '0000-00-00 00:00:00', 1),
(18415, 19763, 18, 7, 2, 'Selected for Jagadeesh Team. Ready to Join from Next Month. Can give offer of 2.25L and she does not have Laptop.', 138, '2024-06-20 12:59:48', 1),
(18416, 19796, 59, 3, 0, 'Selected for RE Role Ready to relocate can give a try in our role Need to analyse in 7 days training', 53, '2024-06-20 01:05:23', 1),
(18417, 19808, 138, 7, 0, 'Sales experience and Communication skills good and Tele sales pitching also good need to negotiate salary', 104, '0000-00-00 00:00:00', 1),
(18418, 19812, 139, 5, 0, 'Dont have sales exp \nnot fit for RM role', 104, '0000-00-00 00:00:00', 1),
(18419, 19811, 86, 7, 0, 'Sriram sir shortlisted the candidate.Asking 20K Take home. Can Join after Notice period with Tony xxamp Guy', 104, '0000-00-00 00:00:00', 1),
(18420, 19802, 29, 7, 2, 'porrselvan team', 140, '2024-06-20 03:20:35', 1),
(18421, 19809, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18422, 19799, 59, 3, 0, 'Fresher open to learn can give a try need to analyse in 7days and confirm', 137, '2024-06-20 03:31:59', 1),
(18423, 19802, 59, 3, 0, 'Fresher Can be trained in our roles having a offer in core mech but not open for it.Can give a try and check in 7 days training', 29, '2024-06-20 03:40:59', 1),
(18424, 19722, 50, 1, 0, NULL, 18, '2024-06-20 03:50:06', 1),
(18425, 19813, 138, 7, 0, 'Good Communication skills and Over all Technical skills medium and Need to train financial things and Need to negotiate salary package', 104, '0000-00-00 00:00:00', 1),
(18426, 19808, 18, 7, 0, 'Jaya Selected For Jagadeesh Team. Given CTC is 3L PA and Ready to Join from Monday', 138, '2024-06-20 04:48:03', 1),
(18427, 19813, 18, 4, 0, 'Hr and ABM saw the candidate ', 138, '2024-06-20 04:49:54', 1),
(18428, 19790, 60, 1, 0, NULL, 71, '2024-06-20 05:31:11', 1),
(18429, 19811, 60, 1, 0, NULL, 86, '2024-06-20 05:41:54', 1),
(18430, 19808, 60, 1, 0, NULL, 18, '2024-06-21 10:52:16', 1),
(18431, 19817, 105, 5, 0, 'Candidate performance is little bit only good ,also very lazy', 112, '0000-00-00 00:00:00', 1),
(18432, 19818, 53, 5, 0, 'Internal Reference, Actually She Is Looking Job With Her Friend Oly, Already They Joined Star Health And Attend Training Session But They Are Not Intrested .', 112, '0000-00-00 00:00:00', 1),
(18433, 19819, 53, 5, 0, 'Internal reference, Actually she is looking job with her friend oly, already they joined star health and attend training session but they are not intrested .', 112, '0000-00-00 00:00:00', 1),
(18434, 19821, 89, 5, 0, 'if they get better job they will go to another job', 112, '0000-00-00 00:00:00', 1),
(18435, 19820, 102, 7, 0, 'Shortlist for team check and confirm DOJ', 112, '0000-00-00 00:00:00', 1),
(18436, 19822, 19, 7, 0, 'Selected ', 112, '0000-00-00 00:00:00', 1),
(18437, 19823, 53, 5, 0, 'Basically he is from fitness backgound, intrested in gym training due to health issue he is changing the profession, he wont sustain', 112, '0000-00-00 00:00:00', 1),
(18438, 19825, 137, 5, 0, 'candidate next study for master degree in office near by collage so thatreason to looking for job and dress code is also very worst, voice is not good so not fit for my team ', 112, '0000-00-00 00:00:00', 1),
(18439, 19826, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18440, 19827, 137, 5, 0, 'candidate after6 month go for it job and interest also that field, so just voice expreience to looking for job so not set for my team', 112, '0000-00-00 00:00:00', 1),
(18441, 19829, 105, 5, 0, 'Candidate communication and performance is not like good, also little bit like a childish behaviour', 112, '0000-00-00 00:00:00', 1),
(18442, 19830, 53, 5, 0, 'She is going web designing class, so she need logout early around 6pm. ', 112, '0000-00-00 00:00:00', 1),
(18443, 19803, 29, 7, 2, 'selected, he didnt join', 51, '2024-06-21 04:52:58', 1),
(18444, 19764, 60, 1, 0, NULL, 30, '2024-06-21 05:00:58', 1),
(18445, 19277, 60, 1, 0, NULL, 30, '2024-06-22 11:11:56', 1),
(18446, 19820, 60, 1, 0, NULL, 102, '2024-06-22 11:12:32', 1),
(18447, 19800, 60, 1, 0, NULL, 102, '2024-06-22 11:22:39', 1),
(18448, 19788, 57, 5, 0, 'Candidate is unfit for sales. communication not well. ', 104, '0000-00-00 00:00:00', 1),
(18449, 19834, 139, 5, 0, 'Not fit for sales profile\nhe looking for operation \n', 104, '0000-00-00 00:00:00', 1),
(18450, 19835, 102, 5, 0, 'he is complete web development for IT And right now looking for sales or it interested in IT ', 104, '0000-00-00 00:00:00', 1),
(18451, 19836, 140, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(18452, 19837, 105, 5, 0, 'Intrevied by charless xxamp banu mam, as per his suggestion Candidate Communication And Performance Is Good,She is still woking partime in liabrary aslo her sustain is doubt', 104, '0000-00-00 00:00:00', 1),
(18453, 19838, 53, 5, 0, 'I asked him to wait for second round but he left', 104, '0000-00-00 00:00:00', 1),
(18454, 19839, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18455, 19813, 138, 7, 0, 'Good Communication skills and Over all Technical skills medium and Need to train financial things and Need to negotiate salary package', 18, '2024-06-22 07:06:19', 1),
(18456, 19822, 59, 3, 0, 'Selected for RE roles Dm, team need to check in 7 dyas training and confirm', 19, '2024-06-24 10:09:15', 1),
(18457, 19846, 137, 7, 0, 'candidate past 8 years work other field , some personal reason to relave the company but voice is very good and approach also good exp takehome 15k so try for 7 days training', 112, '0000-00-00 00:00:00', 1),
(18458, 19845, 89, 5, 0, 'he remained silent interview', 112, '0000-00-00 00:00:00', 1),
(18459, 19848, 105, 7, 0, 'Her Communication And Performance Is Good.Will Check With Her In The Training Period ', 112, '0000-00-00 00:00:00', 1),
(18460, 19850, 137, 7, 0, 'candidate past work 6 months tata dish company , telecallig work , communication is very good and past ctc is 13k to exp ctc 15k , payslip also inhand so i will check 7days training period', 112, '0000-00-00 00:00:00', 1),
(18461, 19856, 86, 4, 0, 'Selected for next round, Fresher, Good communication, Interested in marketing, Expected salary 20k take home.', 112, '0000-00-00 00:00:00', 1),
(18462, 19858, 71, 5, 0, 'Not fit for sales ', 112, '0000-00-00 00:00:00', 1),
(18463, 19855, 89, 5, 0, 'over thinking', 112, '0000-00-00 00:00:00', 1),
(18464, 19849, 57, 5, 0, 'Communication not good and she not interested for sales `\n', 112, '0000-00-00 00:00:00', 1),
(18465, 19854, 102, 5, 0, 'not interested in sales ', 112, '0000-00-00 00:00:00', 1),
(18466, 19859, 105, 5, 0, 'Candidate Communication And Pronunciation is Not Good', 112, '0000-00-00 00:00:00', 1),
(18467, 19842, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18468, 19847, 59, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18469, 19844, 53, 5, 0, 'very slow, no bike', 112, '0000-00-00 00:00:00', 1),
(18470, 19853, 53, 7, 0, '50 50. She is Interested in voice process, having 1yr experience in part time job, But she is coming from long distance. Needs to check her distance', 112, '0000-00-00 00:00:00', 1),
(18471, 19860, 102, 5, 0, 'interested in non voice ', 112, '0000-00-00 00:00:00', 1),
(18472, 19856, 18, 7, 0, 'Met by Santosh and Manikandan. they agreed to give 20k take home net and I have spoken in call and confirmed it. Immedeate joine', 86, '2024-06-24 05:50:47', 1),
(18473, 19853, 59, 3, 0, 'Communication Ok have Intern Exp in calling MCom graduate open to travel 19kms down Can give a try kindly check and confirm the candidate in 7 days training', 53, '2024-06-24 06:20:07', 1),
(18474, 19848, 59, 3, 0, 'Selected for RE Role Need to train from the scratch fresher can give a try need to check in 7 days training\n', 105, '2024-06-24 06:54:58', 1),
(18475, 19846, 59, 1, 0, NULL, 137, '2024-06-25 10:15:51', 1),
(18476, 19850, 59, 3, 0, 'Communication Ok Can be trained in our roles career Gap due to accident need to analyse in 7 days and confirm', 137, '2024-06-25 10:20:40', 1),
(18477, 19833, 139, 4, 0, 'Selected for RM\nhaving exp in sales and collection\nimmediate joiner ', 112, '0000-00-00 00:00:00', 1),
(18478, 19862, 57, 5, 0, 'Candidate is not ok, unfit for sales,sustainability issue and distance long', 112, '0000-00-00 00:00:00', 1),
(18479, 19867, 139, 5, 0, 'Not fit for Sales', 112, '0000-00-00 00:00:00', 1),
(18480, 19875, 51, 4, 0, 'transferred this profile to porrselvan', 112, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(18481, 19865, 89, 5, 0, 'not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18482, 19869, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18483, 19870, 137, 5, 0, 'candidate is coming very long and vry high expection , voice also not good so not fit for my team', 112, '0000-00-00 00:00:00', 1),
(18484, 19871, 86, 4, 0, 'Selected For next round\n', 112, '0000-00-00 00:00:00', 1),
(18485, 19874, 102, 5, 0, 'not suitable sales , interested in Non voice ', 112, '0000-00-00 00:00:00', 1),
(18486, 19876, 105, 5, 0, 'Candidate Intrested in Non voice process', 112, '0000-00-00 00:00:00', 1),
(18487, 19866, 105, 5, 0, 'Candidate Communication And Performance not like good , Also her voice is not legit', 112, '0000-00-00 00:00:00', 1),
(18488, 19813, 18, 1, 0, NULL, 138, '2024-06-25 02:38:48', 1),
(18489, 19833, 18, 7, 3, 'Selected for Gnanashekar Team, Immedeate Joiner. immedeate Joiner and dont have Laptop', 139, '2024-06-25 03:13:17', 1),
(18490, 19833, 60, 1, 0, NULL, 18, '2024-06-25 03:15:10', 1),
(18491, 19881, 102, 5, 0, 'fresher interested in sales but sustainability doubt ', 112, '0000-00-00 00:00:00', 1),
(18492, 19879, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18493, 19880, 137, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18494, 19878, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18495, 19875, 140, 5, 0, 'No basic skills in sales ', 51, '2024-06-25 06:46:47', 1),
(18496, 19871, 18, 8, 0, 'Kindly Reschedule', 86, '2024-06-25 06:53:47', 1),
(18497, 19892, 137, 2, 0, 'candidate isok but go for other interview so hold the candidate', 112, '0000-00-00 00:00:00', 1),
(18498, 19891, 140, 5, 0, 'no Experience in sales', 112, '0000-00-00 00:00:00', 1),
(18499, 19888, 109, 5, 0, 'she was looking into stock broking vacancy and holding another offer, Sustainability doubt.', 112, '0000-00-00 00:00:00', 1),
(18500, 19897, 57, 1, 0, NULL, 112, '0000-00-00 00:00:00', 1),
(18501, 19889, 138, 7, 0, 'fresher Candidate 2024 passed out\nCommunication skills Below Average\nMathematics Skills Below Average \nTecinancal Skills Average\nSalary expected 15K\nFinally need to train Properly and candidate status selected', 112, '0000-00-00 00:00:00', 1),
(18502, 19889, 18, 5, 0, 'Not fit for Sales', 138, '2024-06-26 11:32:48', 1),
(18503, 19893, 105, 5, 0, 'Candidate Communication And Performance Is Good,But Her Sustainity Is Very Doubt Due To She Is Planning For MBA In Current Year', 112, '0000-00-00 00:00:00', 1),
(18504, 19895, 19, 5, 0, 'Rejected', 112, '0000-00-00 00:00:00', 1),
(18505, 19899, 102, 7, 0, 'shortlist for team once check and update DOJ', 112, '0000-00-00 00:00:00', 1),
(18506, 19901, 89, 5, 0, 'he has come here because he did not get the job. but not intersted this job', 112, '0000-00-00 00:00:00', 1),
(18507, 19894, 89, 5, 0, 'over thinking', 112, '0000-00-00 00:00:00', 1),
(18508, 19902, 57, 5, 0, 'Candidate Is Unfit For Sales, Communication Not Good', 112, '0000-00-00 00:00:00', 1),
(18509, 19904, 137, 7, 0, 'candidate voice good and communication also good very blod voice and interest to sales and voice process so i will tr to 7 days trainning period', 112, '0000-00-00 00:00:00', 1),
(18510, 19900, 57, 5, 0, 'candidate is unfit for sales, communication not good', 112, '0000-00-00 00:00:00', 1),
(18511, 19906, 51, 4, 0, 'ok', 112, '0000-00-00 00:00:00', 1),
(18512, 19903, 53, 5, 0, 'Not intrested to go outside', 112, '0000-00-00 00:00:00', 1),
(18513, 19905, 140, 4, 0, 'Was on hold, now pushing for second round', 112, '0000-00-00 00:00:00', 1),
(18514, 19912, 105, 5, 0, 'Candidate Intrested in non-voice process also he is not Rare To Adapt for sales', 112, '0000-00-00 00:00:00', 1),
(18515, 19908, 19, 2, 0, 'remain me on 1st july', 112, '0000-00-00 00:00:00', 1),
(18516, 19913, 89, 5, 0, 'not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18517, 19906, 29, 7, 3, 'Sarath Team', 51, '2024-06-26 06:02:46', 1),
(18518, 19763, 60, 1, 0, NULL, 18, '2024-06-26 07:16:15', 1),
(18519, 19899, 60, 1, 0, NULL, 102, '2024-06-27 11:07:09', 1),
(18520, 19918, 19, 5, 0, 'not fit for sales', 112, '0000-00-00 00:00:00', 1),
(18521, 19887, 53, 5, 0, 'No bike not Interested in Field sales ', 112, '0000-00-00 00:00:00', 1),
(18522, 19922, 74, 5, 0, 'not fit', 112, '0000-00-00 00:00:00', 1),
(18523, 19923, 105, 5, 0, 'Candidate Communication and performance is not like good, his attire is also not good, other than candidate said his minus is never attach any one , so he never addaptable for sales', 112, '0000-00-00 00:00:00', 1),
(18524, 19919, 137, 5, 0, 'candidate just few months only working after that go for other copany and voice also not good so not fit for my team ', 112, '0000-00-00 00:00:00', 1),
(18525, 19924, 138, 5, 0, 'Not Fit to sales and Communication skills very worst and he expect salary 25K so thats why reject this candidate', 112, '0000-00-00 00:00:00', 1),
(18526, 19927, 102, 5, 0, 'interested in it related ', 112, '0000-00-00 00:00:00', 1),
(18527, 19925, 102, 5, 0, 'interested non voice ', 112, '0000-00-00 00:00:00', 1),
(18528, 19926, 57, 5, 0, 'Over all 3yrs Experience, Sustainability issues, appearance not good', 112, '0000-00-00 00:00:00', 1),
(18529, 19928, 137, 5, 0, 'candidate is so fear and trembling voice and and very long distance so not fit for my team', 112, '0000-00-00 00:00:00', 1),
(18530, 19929, 89, 5, 0, 'no skill', 112, '0000-00-00 00:00:00', 1),
(18531, 19930, 89, 5, 0, 'he has a lot of Interest in the it field. ', 112, '0000-00-00 00:00:00', 1),
(18532, 19932, 71, 5, 0, 'He is not fit for sales ', 112, '0000-00-00 00:00:00', 1),
(18533, 19934, 51, 5, 0, 'IT candidate', 112, '0000-00-00 00:00:00', 1),
(18534, 19935, 31, 5, 3, 'worked in inbound calls area, very low voice and no confident on her voice. ', 112, '0000-00-00 00:00:00', 1),
(18535, 19904, 59, 3, 0, 'Selected for Giri Team Interviewed in job fair Can be trained in our roles kindly analyse the candidate in 7 days and confirm', 137, '2024-06-27 05:16:49', 1),
(18536, 19937, 86, 4, 0, 'Selected for next round.', 112, '0000-00-00 00:00:00', 1),
(18537, 19936, 57, 5, 0, 'cANDIDATE IS OK BUT SALARY EXPECTATION HIGH, 6M ONLY EXPERIENCE. REJECT', 112, '0000-00-00 00:00:00', 1),
(18538, 19937, 29, 7, 3, 'Selected for mani team, reference candi.. check resume for performance hike', 86, '2024-06-28 12:05:57', 1),
(18539, 19943, 89, 5, 0, 'more playfulness ', 112, '0000-00-00 00:00:00', 1),
(18540, 19944, 89, 5, 0, 'no basic knowledge', 112, '0000-00-00 00:00:00', 1),
(18541, 19941, 139, 4, 0, 'Fresher\nselected for next round\nGood communication skill', 112, '0000-00-00 00:00:00', 1),
(18542, 19945, 19, 5, 0, 'location too long so not fit for the job', 112, '0000-00-00 00:00:00', 1),
(18543, 19941, 18, 7, 0, 'Fresher candidate with immed Joining for gnanashekar team. Please negitiate the salary', 139, '2024-06-28 05:15:32', 1),
(18544, 19941, 60, 1, 0, NULL, 18, '2024-06-28 05:19:01', 1),
(18545, 19951, 89, 5, 0, 'In the interview he remained silent', 104, '0000-00-00 00:00:00', 1),
(18546, 19952, 105, 5, 0, 'Interviewed by banu mam ,as discussion with banu mam, her sugesstion is candidate comes from thirunindravur ,Also candidate not performed well in the interview', 104, '0000-00-00 00:00:00', 1),
(18547, 19953, 31, 4, 4, 'Candidate worked with kannada and telugu customer base. Since he met with an accident he wont drive', 104, '0000-00-00 00:00:00', 1),
(18548, 19954, 19, 5, 0, 'expect high salary', 104, '0000-00-00 00:00:00', 1),
(18549, 19956, 109, 5, 0, 'Communication is not ok, sustainability doubt.', 104, '0000-00-00 00:00:00', 1),
(18550, 19906, 59, 3, 0, 'Selected foir Sarath Team RM Role Need to analyse and confirm in the 7 days training', 29, '2024-07-01 10:41:12', 1),
(18551, 19957, 19, 7, 0, 'Reference by Madhu and She is working in Hdfc Loan Process ', 104, '0000-00-00 00:00:00', 1),
(18552, 19961, 139, 4, 0, 'Selected for RM\nFresher \nwill try for RM profile ', 104, '0000-00-00 00:00:00', 1),
(18553, 19962, 105, 7, 0, 'Candidate performance and communication is good ,but long distance will check with her in the training period', 104, '0000-00-00 00:00:00', 1),
(18554, 19963, 19, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(18555, 19964, 102, 5, 0, 'Already part time working in Customer support so, interested in non voice ', 104, '0000-00-00 00:00:00', 1),
(18556, 19965, 53, 5, 0, 'No Confidence on speech ', 104, '0000-00-00 00:00:00', 1),
(18557, 19970, 57, 7, 0, 'Candidats is ok.communication good .pls confirm the joining date xxamp Salary.', 104, '0000-00-00 00:00:00', 1),
(18558, 19980, 137, 5, 0, 'candidate previously work some years but not vocie process ad voice also not good and very long distance so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(18559, 19976, 19, 2, 0, 'kindly hold', 104, '0000-00-00 00:00:00', 1),
(18560, 19973, 57, 5, 0, 'Communication Not well and he looking iT jobs , Team Reference ', 104, '0000-00-00 00:00:00', 1),
(18561, 19978, 105, 5, 0, 'candidate performance is not good ,Then his communication little bit slowly and voice is not good.candidate more intrested in iT Job', 104, '0000-00-00 00:00:00', 1),
(18562, 19968, 137, 2, 0, 'candidate voice and communication is ok but distance is long so she will relocate on near by afte i will move to hr round', 104, '0000-00-00 00:00:00', 1),
(18563, 19969, 89, 5, 0, '50% ok. but Doubt', 104, '0000-00-00 00:00:00', 1),
(18564, 19977, 102, 5, 0, 'Performance good but communication level and voice is low ', 104, '0000-00-00 00:00:00', 1),
(18565, 19970, 59, 3, 0, 'Communication Ok fresher seems not much comfort with the timings Need to analyse and confirm in 7 days training', 57, '2024-07-01 02:34:00', 1),
(18566, 19974, 140, 5, 0, 'Rejected due to no convincing skills', 104, '0000-00-00 00:00:00', 1),
(18567, 19986, 19, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18568, 19959, 53, 7, 0, '50/50, have part time experience but dnt have proof for his salry, exp 18k we can provide max 16k, Will try', 104, '0000-00-00 00:00:00', 1),
(18569, 19975, 51, 5, 0, 'not ok', 104, '0000-00-00 00:00:00', 1),
(18570, 19979, 138, 7, 0, 'Sales Experience in Bajaj DL 2 years and HDB Finance 1 month and Mathematics Skills good... English Communication Medium and Technical Skills Average and Negotiated Salary 18K Gross and Need to discuss only sriram sir', 104, '0000-00-00 00:00:00', 1),
(18571, 19981, 89, 5, 0, 'he could not even give a self intro', 104, '0000-00-00 00:00:00', 1),
(18572, 19982, 137, 5, 0, 'no skill , no communication skill , and she only just attend the interview , not interest to working so notfit for my team', 104, '0000-00-00 00:00:00', 1),
(18573, 19983, 137, 5, 0, 'candidate only looking for nonvoice process only and high expection so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18574, 19985, 57, 5, 0, 'candidate communication not good. unfit for sales.', 104, '0000-00-00 00:00:00', 1),
(18575, 19984, 53, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(18576, 19959, 59, 1, 0, NULL, 53, '2024-07-01 05:54:37', 1),
(18577, 19962, 59, 3, 0, 'Communication Ok Fresher but too long distance sustainability doubts a lot need to check in 7days and confirm Open for travel', 105, '2024-07-01 06:38:30', 1),
(18578, 19957, 59, 1, 0, NULL, 19, '2024-07-01 08:00:58', 1),
(18579, 19961, 18, 5, 0, 'Rejected as low interaction skill and sales is not suitable for him', 139, '2024-07-02 10:03:01', 1),
(18580, 19979, 18, 7, 0, 'Selected for Jagadeesh Team. Ready to Join on 7th . 2.2CTC given', 138, '2024-07-02 11:26:57', 1),
(18581, 19989, 105, 5, 0, 'Candidate Communication is Little Bit Only Good .but she Performed very slowly ', 104, '0000-00-00 00:00:00', 1),
(18582, 19990, 19, 2, 0, 'Kindly hold will update shortly', 104, '0000-00-00 00:00:00', 1),
(18583, 20001, 139, 4, 0, 'Selected for Next round\ngood sales and communication skill, \nself motivated person\nSelected for RM role', 104, '0000-00-00 00:00:00', 1),
(18584, 20001, 18, 7, 3, 'Shortlisted for Gnanashekar team. Immedeate Joiner . Offered 2.6L CTC', 139, '2024-07-02 03:02:29', 1),
(18585, 20001, 60, 1, 0, NULL, 18, '2024-07-02 04:38:47', 1),
(18586, 19995, 137, 5, 0, 'candidate not dress code and only looking for telecalling wor only no go for out side call so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18587, 19999, 89, 5, 0, 'spoken words are not clear', 104, '0000-00-00 00:00:00', 1),
(18588, 20009, 57, 5, 0, 'candidats is not ok for sales profile, 2 years She have some health issues.over all 1month only she doing int. ', 104, '0000-00-00 00:00:00', 1),
(18589, 19979, 60, 1, 0, NULL, 18, '2024-07-03 12:52:06', 1),
(18590, 20010, 31, 4, 4, 'candidate searching job after 4 yrs gap to support family. okay with her calling flow. ', 104, '0000-00-00 00:00:00', 1),
(18591, 19908, 19, 2, 0, 'Kindly hold', 19, '2024-07-03 01:10:31', 1),
(18592, 20014, 19, 7, 0, 'learn quickly and she speaks good', 104, '0000-00-00 00:00:00', 1),
(18593, 19908, 19, 5, 0, 'she is not working more then 6 month', 19, '2024-07-03 01:26:24', 1),
(18594, 20008, 53, 7, 0, 'Selected. Fresher, Good in Convincing , very bold. Please cnfrm the DOJ ', 104, '0000-00-00 00:00:00', 1),
(18595, 20008, 59, 3, 0, 'Communication Ok Fresher 2yrs gap can be trained in our roles need to analyse in 7 days training', 53, '2024-07-03 02:41:59', 1),
(18596, 20011, 71, 4, 0, 'he is Having experienced direct sales marketing in car showroom, convenience skills expected salary 22000 take home ', 104, '0000-00-00 00:00:00', 1),
(18597, 20015, 137, 5, 0, 'CANDIDATE ONLY INTEREST FOR IT ONLY AND NEED NON VOICE PROCES WORK FOR SHORT TIME , SO NOT FIT FOR MY TEAM ', 104, '0000-00-00 00:00:00', 1),
(18598, 20006, 138, 7, 0, 'Fresher Candidate but 1 month experience in HDB CD loan tele sales Process and Communication Skills average and Technical skills medium and Good Mathematic skills like good attitude so CTC disclosed Around 2 lakhs so finally candidate status is Selected and also discussed with Sriram sir so he approved that as well as', 104, '0000-00-00 00:00:00', 1),
(18599, 20014, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in 7 days internal team reference', 19, '2024-07-03 03:00:50', 1),
(18600, 19990, 19, 5, 0, 'look like introvert ,learn slowly', 19, '2024-07-03 03:01:42', 1),
(18601, 19235, 19, 7, 0, 'fresher she speaks well so lets try 7 days and ctc 14k or in hand 13k', 104, '0000-00-00 00:00:00', 1),
(18602, 20010, 29, 8, 0, 'didnt meet for 2nd round', 31, '2024-07-03 03:09:57', 1),
(18603, 20016, 105, 7, 0, 'candidate performed well in the interview ,Also communication is good.will check with her performance in the training period.', 104, '0000-00-00 00:00:00', 1),
(18604, 20011, 18, 7, 3, 'Suriyaprakash Selected for Santhosh Team. Ready to Join Next Monday (8 July 2024) Offered CTC is 2.65L.', 71, '2024-07-03 03:12:53', 1),
(18605, 19953, 29, 7, 2, 'GK team, Can build him, given task for 1.50 lac 10k mf within July for 3.2 lac to 3.5 lac ctc', 31, '2024-07-03 03:17:19', 1),
(18606, 20006, 60, 1, 0, NULL, 138, '2024-07-03 03:18:57', 1),
(18607, 19235, 59, 3, 0, 'Communication Ok can be trained in our role Open for telesales but she may switch later need to analyse in 7 days training', 19, '2024-07-03 03:35:45', 1),
(18608, 20016, 59, 3, 0, 'Communication Ok have exp in Telecalling matrimony exp 6 months need to train a lot in our domain can give a try', 105, '2024-07-03 03:45:37', 1),
(18609, 20011, 60, 1, 0, NULL, 18, '2024-07-03 03:52:08', 1),
(18610, 19892, 59, 1, 0, NULL, 137, '2024-07-03 05:16:02', 1),
(18611, 19892, 137, 7, 0, 'candidate voice , communiation all good sir , candidate go for other interview so thatreason to hold the candidate , so i will try to 7 days training period', 137, '2024-07-03 05:16:02', 1),
(18612, 20020, 138, 7, 0, 'Already experience in 8 years at Ashok leyland Customer support and relieved from company 2024 jan then Communication above average and Technical Skills Average and Purely Good attitude and finally Candidate status is selected ', 104, '0000-00-00 00:00:00', 1),
(18613, 20020, 18, 7, 0, 'Jagadeesh met this candidate. Offered 3.6L CTC and ready to join on 8th Monday.', 138, '2024-07-04 11:23:41', 1),
(18614, 20019, 140, 4, 0, 'Good communication skill, looks neat, have to train and see his work progress.', 104, '0000-00-00 00:00:00', 1),
(18615, 20021, 102, 5, 0, 'he is interested in sales but voice process not suitable becuz voice and convincing level low\n', 104, '0000-00-00 00:00:00', 1),
(18616, 20022, 57, 7, 0, 'candidate is ok . communication xxamp Convincing skills good.provide 15k salary. i have promised 6month after performance based hike.confirm the joining date.do the needful', 104, '0000-00-00 00:00:00', 1),
(18617, 20019, 29, 7, 3, 'Selected for Porrselvan team, Reference Candidate, We have to train and mold the candidate, check his skills and interest level in 7 days and confirm.', 140, '2024-07-04 02:59:12', 1),
(18618, 20026, 140, 4, 0, 'very bold and clarity in his words, having little experince in sales, can train and make him fit for RM role.', 104, '0000-00-00 00:00:00', 1),
(18619, 20017, 74, 5, 0, 'expected too high, over attitude, dont have maturity, irdai exam completed', 104, '0000-00-00 00:00:00', 1),
(18620, 20022, 59, 3, 0, 'Communication Ok fresher his interest is in finance (accounts ) sustainability need to check focusing much on his take home salary too need to check in 7 days and confirm', 57, '2024-07-04 03:54:09', 1),
(18621, 20020, 60, 1, 0, NULL, 18, '2024-07-04 03:54:54', 1),
(18622, 20026, 29, 7, 3, 'Selected for Porrselvan, is under notice period till 2nd week Aug, Can offer him and follow.. Given a task for 2 lac life and 10k MF within 40 days of joining - then can increase 20k net sal to 24k net sal.', 140, '2024-07-04 05:20:03', 1),
(18623, 20019, 59, 3, 0, 'For porrselvam RM Role Communication Ok BCA graduate Fresher for Sales Long run doubts Need to analyse in 7 days and confirm he may switch if he is getting opportunity in IT', 29, '2024-07-04 07:55:32', 1),
(18624, 20026, 59, 1, 0, NULL, 29, '2024-07-04 07:59:59', 1),
(18625, 19953, 59, 3, 0, 'Communication Good Can be trained in our insurance role Previous exp no sustainability but has reasons can give a try and analyse in training', 29, '2024-07-04 08:07:26', 1),
(18626, 19856, 59, 3, 0, 'Selected for Ops Renewal Role Need to analyse in 7 days and confirm', 18, '2024-07-05 03:57:25', 1),
(18627, 20028, 139, 5, 0, 'Rejected, \ndue to fake updates given\nnot fit for sales', 104, '0000-00-00 00:00:00', 1),
(18628, 20029, 139, 4, 0, 'Selected for next round, Rm profile, \ngood communication skills, and sales knowledge, \nbased upon interview will try for Rm ', 104, '0000-00-00 00:00:00', 1),
(18629, 20030, 139, 4, 0, 'Selected for next round Rm profile, relevant filed exp, already worked in Shriram life insurance, having good sales skill, ', 104, '0000-00-00 00:00:00', 1),
(18630, 20034, 53, 7, 0, 'Selected. Gud in communication have convincing skill. She is ready to join on 15th july .', 104, '0000-00-00 00:00:00', 1),
(18631, 20032, 137, 7, 0, 'candidate voice and communication is good , after joint for mba in corase, so just try for 7 days trainning', 104, '0000-00-00 00:00:00', 1),
(18632, 20035, 51, 5, 0, 'Not interested in field work . looking for system based work', 104, '0000-00-00 00:00:00', 1),
(18633, 20058, 31, 4, 4, 'Candidate had some sales experience in product sales as well campaign marketing. forward to 2nd round with Gaurav', 104, '0000-00-00 00:00:00', 1),
(18634, 20057, 138, 5, 0, 'Not convinced candidate due to Working time period below 6 month for 2 companies one is 5 month another one is 3 month but she looking Salary hike only not sales interest and also she experienced Teaching job so not fit this candidate for sales ', 104, '0000-00-00 00:00:00', 1),
(18635, 20054, 138, 5, 0, 'Previously 1 year Experience in ICICI Lambord and then Communication and Technical Skills are below average and Work time also not convinced so not preferable this candidate in our system', 104, '0000-00-00 00:00:00', 1),
(18636, 20053, 139, 4, 0, 'Selected for Rm profile,\nHaving relevant filed exp, \nworked in ICICI Lambord, \nHaving sales skills\nwill try for Rm Profile ', 104, '0000-00-00 00:00:00', 1),
(18637, 20050, 51, 5, 0, 'Not Interested In Field Work . Looking For System Based Work', 104, '0000-00-00 00:00:00', 1),
(18638, 20043, 102, 7, 0, 'good communication level and Convincing Skills better will try 7days training ', 104, '0000-00-00 00:00:00', 1),
(18639, 20047, 137, 5, 0, 'candidate only 1 year working and after try for marriage , and voice and communication is not good , mainly both of joint in the company or else notjoint s not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18640, 20046, 19, 5, 0, 'not fit for tele sales,she is not ready to speak', 104, '0000-00-00 00:00:00', 1),
(18641, 20045, 89, 5, 0, 'he Donxquott even know how to speak basic indro ', 104, '0000-00-00 00:00:00', 1),
(18642, 20044, 140, 5, 0, 'Not attended second round, went from office without any information', 104, '0000-00-00 00:00:00', 1),
(18643, 20040, 53, 5, 0, 'Long distance, Completed eng and his experience related is to that field, Fresher for telecalling, but he wont suit for telecalling and field process', 104, '0000-00-00 00:00:00', 1),
(18644, 20038, 140, 5, 0, 'Not attended second round, left from office without prior information', 104, '0000-00-00 00:00:00', 1),
(18645, 20036, 138, 7, 0, 'Fresher Candidate fit to sales job , good Communication Skills and Techincal skills also good finally status is selected but need to negotiate CTC with Sriram Sir', 104, '0000-00-00 00:00:00', 1),
(18646, 20033, 57, 7, 0, 'Candidate is ok. communication good and convincing skill good.confirm the joining xxamp Salary', 104, '0000-00-00 00:00:00', 1),
(18647, 20036, 18, 7, 3, 'Perikson Albin Jose Selected for Jagadeesh Team. Fresher and Immediate Joiner with good sales skills. Offered 2.53L as CTC.', 138, '2024-07-05 05:34:49', 1),
(18648, 20036, 60, 1, 0, NULL, 18, '2024-07-05 05:40:10', 1),
(18649, 20029, 18, 7, 3, 'Sonali Selected for Gnanashekar team with 2.9L CTC. Able to Join next Tuesday. She does not have account proof for exisitng Salary', 139, '2024-07-05 05:45:03', 1),
(18650, 20030, 18, 7, 0, 'Subbalakshmi Selected for Gnanashekar team with 3.25 CTC. Able to Join Immediately and has Laptop. Reference Candidate and need to filter her in 1st week', 139, '2024-07-05 05:46:00', 1),
(18651, 20033, 59, 3, 0, 'Communication Ok she is ok for telesales in half mind Focus in non voice process Can give a try sustainability need to look', 57, '2024-07-05 05:46:44', 1),
(18652, 20053, 18, 7, 0, 'Vijayabharathi Selected for Gnanashekar team with 18k Take home. Has Insurnacne experience and ready to join on Modnay', 139, '2024-07-05 05:48:54', 1),
(18653, 20039, 89, 5, 0, 'not fit for the job', 104, '0000-00-00 00:00:00', 1),
(18654, 20032, 59, 3, 0, 'Communication Ok fresher for our roles can give a try need to check in 7 days training', 137, '2024-07-05 06:05:49', 1),
(18655, 20029, 60, 1, 0, NULL, 18, '2024-07-05 06:06:55', 1),
(18656, 20030, 60, 1, 0, NULL, 18, '2024-07-05 06:07:39', 1),
(18657, 20059, 19, 5, 0, 'well settled person,father working in dubai', 104, '0000-00-00 00:00:00', 1),
(18658, 20034, 59, 3, 0, 'Communication Can be trained in our roles Fresher ', 53, '2024-07-05 06:26:03', 1),
(18659, 20058, 29, 7, 3, 'GK team, ', 31, '2024-07-05 07:09:32', 1),
(18660, 20043, 59, 3, 0, 'Selected for RE role,can be trained in our roles fresher need to analyse and confirm in the training period', 102, '2024-07-06 11:41:23', 1),
(18661, 20063, 71, 4, 0, 'Having exp 2.5 years in sales. Sales skills also good move to next round ', 104, '0000-00-00 00:00:00', 1),
(18662, 20064, 140, 4, 0, 'good work experience and telecalling experince, can hire and train in insurance feild', 104, '0000-00-00 00:00:00', 1),
(18663, 20061, 139, 4, 0, 'Selected for Next round RM Profile\nDont have sales exp\nbut good communication skill\nwill try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(18664, 20066, 89, 5, 0, 'not Interested this job ', 104, '0000-00-00 00:00:00', 1),
(18665, 20067, 102, 5, 0, 'field not interested ', 104, '0000-00-00 00:00:00', 1),
(18666, 20065, 19, 5, 0, 'not intrested in sales', 104, '0000-00-00 00:00:00', 1),
(18667, 20068, 140, 4, 0, 'good sales knowledge and looking to earn higher incentive', 104, '0000-00-00 00:00:00', 1),
(18668, 20069, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(18669, 20071, 102, 5, 0, 'low communication level and convincing skill is low then right now looking for one job ', 104, '0000-00-00 00:00:00', 1),
(18670, 20070, 137, 5, 0, 'candidatepreviously work for non voice but interest to voice process but voice and comuncatio is very low so not fot for my team ', 104, '0000-00-00 00:00:00', 1),
(18671, 20053, 60, 1, 0, NULL, 18, '2024-07-06 04:32:04', 1),
(18672, 20097, 86, 4, 0, 'Good communication, And already experienced in Sales. Selected for next round\n', 104, '0000-00-00 00:00:00', 1),
(18673, 20087, 105, 5, 0, 'Candidate performance is good .but her communication and reply is very slow', 104, '0000-00-00 00:00:00', 1),
(18674, 20097, 18, 7, 3, 'Ashok Ashwin Kumar Selected for Manikandan Team. Ready to Join on Thursday. Offers 3.25L as CTC and has Laptop.', 86, '2024-07-08 02:15:21', 1),
(18675, 20089, 57, 5, 0, 'Candidate is unfit for sales process, communication not Good,\nExpectation 18k ', 104, '0000-00-00 00:00:00', 1),
(18676, 20097, 60, 1, 0, NULL, 18, '2024-07-08 03:59:27', 1),
(18677, 20079, 138, 5, 0, 'Communication skills is poor and Technical skills also same so candidate not fit for sales field so status is rejected ', 104, '0000-00-00 00:00:00', 1),
(18678, 20083, 105, 5, 0, 'candidate performance and communication is not good.also his voice xxamp pronunciation is very poor', 104, '0000-00-00 00:00:00', 1),
(18679, 20084, 137, 5, 0, 'candidate very long distance and communication also not good after try for non voice process also so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18680, 20091, 53, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18681, 20101, 140, 5, 0, 'No sales knowledge and skills', 104, '0000-00-00 00:00:00', 1),
(18682, 20088, 74, 5, 0, 'expected high', 104, '0000-00-00 00:00:00', 1),
(18683, 19567, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18684, 20063, 18, 7, 0, 'Sewtha Selected for Santhosh team. reaqdy to Join on Friday. Asking 30k take home but please negotiate for a lesser amount', 71, '2024-07-09 12:39:06', 1),
(18685, 20105, 89, 7, 0, 'Seleted. He can be analysed during the seven-day training period. ', 104, '0000-00-00 00:00:00', 1),
(18686, 20109, 57, 7, 0, 'candidate is 50/50 he have exp 6m Golden enterprise star health. roll - Qc \npls check suite or not \nconfirm the joining date', 104, '0000-00-00 00:00:00', 1),
(18687, 20106, 105, 5, 0, 'candidate communication slang and performance is not good , also his attire is very poor (weared jeen pant and casule shirt)', 104, '0000-00-00 00:00:00', 1),
(18688, 20108, 19, 5, 0, 'Intrested and work experience in mechanical field,not fit for sales And his Convenience skill is low', 104, '0000-00-00 00:00:00', 1),
(18689, 20110, 137, 5, 0, 'candidate all ok but ery long distance and need to log out for 6.30 for every day so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18690, 20111, 105, 5, 0, 'candidate doesxquott not performed well in the interaction .also she is little bit childish behaviour then candidate told she have lazy behaviour character', 104, '0000-00-00 00:00:00', 1),
(18691, 20112, 102, 5, 0, 'interview performance level is good but sustainability doubt buz last 3month working tele calling he is abscond and salary exception so high ', 104, '0000-00-00 00:00:00', 1),
(18692, 20064, 29, 7, 3, 'Porrselvan team, per hike - 1 lac life and 10k SIP in july, once done can increase to 3.6 lac from aug', 140, '2024-07-09 01:34:05', 1),
(18693, 20068, 29, 7, 3, 'Porrselvan Team, Salary 18k Net suggested and approved,,, Performance Hike - 2 Lac and 15k SIP before Aug 24, can hike 3k ( 21K) salary,', 140, '2024-07-09 01:34:40', 1),
(18694, 20115, 138, 7, 0, 'Communication Skills and Mathematic Skills are Good... Personal attutide also fine finally skills also good but we need to Negotiate only salary... so move to Sriram sir and Decide', 104, '0000-00-00 00:00:00', 1),
(18695, 20114, 139, 4, 0, 'Selected for Rm profile\nhaving sales exp 7 month in product selling \nhaving Convensing skills,\nwill try for rm profile\nsalary part need to negotiate ', 104, '0000-00-00 00:00:00', 1),
(18696, 19627, 71, 5, 0, 'NOT FIT FOR THE ROLE', 104, '0000-00-00 00:00:00', 1),
(18697, 20061, 18, 5, 0, 'Ok Candidate and new for sales and having doubt whether our concpet shall be sutiable for him', 139, '2024-07-09 03:19:25', 1),
(18698, 20116, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18699, 20117, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18700, 20118, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18701, 20105, 59, 3, 0, 'Selected for RE Babu Team Communication Ok fresher for telesales not interested in core IT Can give a try and check', 89, '2024-07-09 05:38:41', 1),
(18702, 20113, 109, 5, 0, 'She Was Not Comfortable With Tamil', 104, '0000-00-00 00:00:00', 1),
(18703, 20114, 18, 7, 0, 'Selected for Gananshekar Team. Immedeate Joiner. Offered 3.5L CTC ', 139, '2024-07-10 11:55:39', 1),
(18704, 19937, 59, 1, 0, NULL, 29, '2024-07-10 12:41:46', 1),
(18705, 20064, 59, 3, 0, 'Selected for Porrselvan Team Verified the documents Previous exp JD seems to be doubted Even discussed with Gaurav Sir and based on the approval proceeding with the employment', 29, '2024-07-10 12:43:40', 1),
(18706, 20058, 59, 1, 0, NULL, 29, '2024-07-10 12:46:07', 1),
(18707, 20122, 19, 7, 0, 'sELECTED JOB NEEDED PERSON SO LETS TRY 7 DAYS TRAINING SESSION', 104, '0000-00-00 00:00:00', 1),
(18708, 20125, 138, 7, 0, 'Experienced in Sales Department around 2 to 3 years Excellent Communication skills and Mathematics skills are average and Overall Attitude also good so finally need to negotiate with sriram sir for salary package', 104, '0000-00-00 00:00:00', 1),
(18709, 20126, 140, 4, 0, 'Can train him and see his capability in sales', 104, '0000-00-00 00:00:00', 1),
(18710, 20129, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18711, 20130, 102, 5, 0, 'interview performance level average and looking for customer support team not interested sales ', 104, '0000-00-00 00:00:00', 1),
(18712, 20115, 18, 5, 0, 'The candidate is not suitable for insurnacne sales', 138, '2024-07-10 02:35:59', 1),
(18713, 20132, 51, 5, 0, 'She didnxquott came for 2nd round\n', 104, '0000-00-00 00:00:00', 1),
(18714, 20125, 18, 7, 3, 'Selected for Jagadeesh team. Ready to Join next monday. But her current CTC is 4.2L and expected 4.7. Told that shall give the same cTC and set a target for 3 months and 6 months and commited to revise over accomplishment based on her perfomace', 138, '2024-07-10 02:50:50', 1),
(18715, 20137, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18716, 20122, 59, 3, 0, 'Communication Ok Fresher for our roles Need to train a lot from scratch should check and confirm in 7 days', 19, '2024-07-10 03:09:24', 1),
(18717, 20142, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18718, 20142, 139, 4, 0, 'Selected for next round\nrm profile\nhaving 2.5 yr exp in telesales\ngood communication skill\nexp sal 33 k need to negotiate \nimmediate joiner ', 104, '0000-00-00 00:00:00', 1),
(18719, 20141, 138, 5, 0, 'Rejected\n', 104, '0000-00-00 00:00:00', 1),
(18720, 20140, 140, 4, 0, 'Already Experienced and performed well in interview', 104, '0000-00-00 00:00:00', 1),
(18721, 20133, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(18722, 20063, 60, 1, 0, NULL, 18, '2024-07-10 03:51:12', 1),
(18723, 20125, 60, 1, 0, NULL, 18, '2024-07-10 03:56:15', 1),
(18724, 20121, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18725, 20142, 18, 9, 0, 'Refix and confrim', 139, '2024-07-10 04:23:44', 1),
(18726, 20068, 59, 3, 0, 'For RM role Have 4 months Exp in Axis Can give a try in our roles need to check and confirm in 7 days', 29, '2024-07-10 04:32:42', 1),
(18727, 20114, 60, 1, 0, NULL, 18, '2024-07-10 04:46:42', 1),
(18728, 20138, 131, 4, 0, 'Good communication and confident level can process for next', 126, '0000-00-00 00:00:00', 1),
(18729, 20126, 29, 7, 3, 'Porrselvan Team, Sal 20k, task - 2 lac life and 15k MF before 31st Aug, incre to 23k Net in Sept', 140, '2024-07-10 05:30:03', 1),
(18730, 20140, 29, 7, 3, 'Porrselvan team, 3.8 lac ctc, ( Exp 2.5 years in for 5.8 lac in bijus )', 140, '2024-07-10 05:30:54', 1),
(18731, 20138, 30, 7, 4, 'confident level its good previous experience in inside salaes but she will ok field also suggested ctc 4.5lac immediate joining', 131, '2024-07-10 05:30:59', 1),
(18732, 20139, 131, 4, 0, 'Good Communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18733, 20121, 147, 7, 0, 'Good Communication and confident level', 131, '2024-07-10 06:17:52', 1),
(18734, 20139, 147, 7, 0, 'Good communication and confident level can process for further', 131, '2024-07-10 06:18:47', 1),
(18735, 15818, 109, 5, 0, 'Not cleared apptitude', 104, '0000-00-00 00:00:00', 1),
(18736, 20121, 59, 3, 0, 'Communication Ok Fresher Need to train alot in our roles Can give a try and analyse in 7 days training', 147, '2024-07-10 06:32:03', 1),
(18737, 20139, 59, 1, 0, NULL, 147, '2024-07-10 06:33:52', 1),
(18738, 20134, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18739, 20135, 131, 5, 0, 'Lack of communication and confident', 126, '0000-00-00 00:00:00', 1),
(18740, 20136, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18741, 20144, 19, 5, 0, 'not try to speak about the sales and basic sales', 104, '0000-00-00 00:00:00', 1),
(18742, 20138, 60, 1, 0, NULL, 30, '2024-07-11 11:51:13', 1),
(18743, 20145, 89, 5, 0, 'he Doesnxquott work here for long days ', 104, '0000-00-00 00:00:00', 1),
(18744, 20146, 102, 5, 0, 'already father and sister working in sales field but not interested in sales interested in non voice ', 104, '0000-00-00 00:00:00', 1),
(18745, 20149, 137, 5, 0, 'candidate voice and commuication is ok but distance is very long and exp is only 16k above past 15 company interview attend but rejected all company reason salary package only so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18746, 20109, 59, 1, 0, NULL, 57, '2024-07-11 12:33:17', 1),
(18747, 20152, 102, 5, 0, 'he is professional dance not suit sales field ', 104, '0000-00-00 00:00:00', 1),
(18748, 20153, 137, 5, 0, 'candiate juslooking temporvery job only after that go for it realted job so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18749, 20154, 57, 7, 0, 'Candidate is ok. he have 8m part exp instamart clg time. provide 15k salary and confirm the joining date.', 104, '0000-00-00 00:00:00', 1),
(18750, 20155, 51, 4, 0, 'Selected kindly check and let me know sir', 104, '0000-00-00 00:00:00', 1),
(18751, 20154, 59, 3, 0, 'Selected for RE role Fresher Need to train and analyse Can give a try Communication ok ', 57, '2024-07-11 01:10:13', 1),
(18752, 20148, 74, 5, 0, 'she is not fit for sales, have no clarity in voice ', 104, '0000-00-00 00:00:00', 1),
(18753, 20160, 59, 3, 0, 'Selected for OPS team RE role Need to analyse and confirm in 7 days training', 104, '0000-00-00 00:00:00', 1),
(18754, 20156, 74, 5, 0, 'she is preparing tnpsc..looking for job temperory only', 104, '0000-00-00 00:00:00', 1),
(18755, 20158, 19, 5, 0, 'not fit for sales look like very slow', 104, '0000-00-00 00:00:00', 1),
(18756, 20164, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18757, 20165, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18758, 20159, 89, 5, 0, 'over Attitude and no basic skill ', 104, '0000-00-00 00:00:00', 1),
(18759, 20176, 105, 5, 0, 'candidate attire is good but his performance is not good ,also his voice and prononunciation is quality is poor', 104, '0000-00-00 00:00:00', 1),
(18760, 20191, 109, 5, 0, 'Over talkative, Not fit for us', 104, '0000-00-00 00:00:00', 1),
(18761, 20190, 109, 5, 0, 'she didnxquott talk in the interview', 104, '0000-00-00 00:00:00', 1),
(18762, 20186, 138, 5, 0, 'Good Attitude but Technical skills and Communication Skills are Below Average and No sales experiences so Status is rejected', 104, '0000-00-00 00:00:00', 1),
(18763, 20185, 109, 7, 0, 'Selected by Gokul sir had good communication and she was egar to lean more things', 104, '0000-00-00 00:00:00', 1),
(18764, 20180, 105, 7, 0, 'Candidate communication and performance is good ,also she already have experiance in tele sales.will check with her performance in the training period', 104, '0000-00-00 00:00:00', 1),
(18765, 20175, 139, 4, 0, 'Selected for Next Round, \nFresher, have good communication skill\nwill try for rm role', 104, '0000-00-00 00:00:00', 1),
(18766, 20178, 140, 5, 0, 'Not interested for sales', 104, '0000-00-00 00:00:00', 1),
(18767, 20181, 102, 5, 0, 'Low voice and right now looking for one job not suitable sales ', 104, '0000-00-00 00:00:00', 1),
(18768, 20183, 109, 5, 0, 'Fresher, had lag with her communication. ', 104, '0000-00-00 00:00:00', 1),
(18769, 20187, 109, 7, 0, 'Pursuing college, had good communication and fit for the role', 104, '0000-00-00 00:00:00', 1),
(18770, 20188, 109, 7, 0, 'had shCommunicationarp mind, clear with his cummunication.', 104, '0000-00-00 00:00:00', 1),
(18771, 20175, 18, 7, 3, 'Sriram R Selected for Ganashekar team. Offered 2.75L CTC and ready to Join next Thursday. candidate is a fresher', 139, '2024-07-12 03:25:45', 1),
(18772, 20189, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18773, 20174, 131, 2, 0, 'Good Communication but lacking in confident', 126, '0000-00-00 00:00:00', 1),
(18774, 20179, 19, 7, 0, 'SELECTED - JOB NEEDED PERSON PARENTS ARE DAILY WORKERS SO I THINK SHE NEED JOB AND WORK TOO CTC 15K DOUBLE DEGREE HOLDER', 104, '0000-00-00 00:00:00', 1),
(18775, 20175, 60, 1, 0, NULL, 18, '2024-07-12 04:08:10', 1),
(18776, 20179, 59, 1, 0, NULL, 19, '2024-07-12 05:23:37', 1),
(18777, 20141, 18, 9, 0, 'Refix and confrim', 138, '2024-07-12 05:37:06', 1),
(18778, 20196, 137, 7, 0, 'candidate voice and communication also good , candidate location is arumbakkam and bike also i hand , fresher so try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(18779, 20193, 89, 5, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(18780, 20197, 57, 7, 0, 'Candidate is ok. provide 15k salary. pls check sustainability and confirm the joining date.thanks', 104, '0000-00-00 00:00:00', 1),
(18781, 20198, 105, 2, 0, 'interview taken by banu mam , as discussed with banu mam candidate performance and communication is good , i called and verified the candidate she performed good in the call but her distance is too long ,so sustainable issue will hold the candidate for one week', 104, '0000-00-00 00:00:00', 1),
(18782, 20201, 140, 5, 0, 'not having proper knowledge even after working for more than 1 year in reliance nippon life insurance, not knowing difference between term and Traditional policies', 104, '0000-00-00 00:00:00', 1),
(18783, 20200, 109, 5, 0, 'He doesnxquott have knowlege about this domain. communication not ok', 104, '0000-00-00 00:00:00', 1),
(18784, 20203, 105, 7, 0, 'interview taken by banu mam, As discussed with banu mam candidate communication and perofirmance is good.also i called and verified the candidate he ok.will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(18785, 20197, 59, 3, 0, 'Selected for RE Role Need to analyse in 7 days Fresher Communication Ok Can give a try ', 57, '2024-07-13 12:20:46', 1),
(18786, 20207, 89, 7, 0, 'Selected . i will analysis 7 days training', 104, '0000-00-00 00:00:00', 1),
(18787, 20206, 109, 5, 0, 'had a bachelorxquots degree with b.com and had an internship. she was not clear with her internship ', 104, '0000-00-00 00:00:00', 1),
(18788, 20205, 109, 5, 0, 'communication was not OK. had a Bachelorxquots degree In computer science. but looking for hr', 104, '0000-00-00 00:00:00', 1),
(18789, 20202, 57, 7, 0, 'Candidate is ok. 4m exp hdb finance. pls cross check distance too. provide 15k salary. joining august 1st week thanks', 104, '0000-00-00 00:00:00', 1),
(18790, 20199, 19, 7, 0, 'Selected ,Job Needed Person Letxquots Try 7 Days,then we will finalize ', 104, '0000-00-00 00:00:00', 1),
(18791, 20204, 102, 5, 0, 'interested in sales but previous experience IT so, sustainability doubt', 104, '0000-00-00 00:00:00', 1),
(18792, 20180, 59, 3, 0, 'Selected for RE Role Have exp in Credit card sales but no relevant documents based on the verbal commitment moving forward', 105, '2024-07-13 03:19:40', 1),
(18793, 20196, 59, 3, 0, 'Communication OK fresher can give a try Need to analyse and confirm in the 7 days training', 137, '2024-07-13 03:21:37', 1),
(18794, 20208, 139, 4, 0, 'Selected for next round\nhaving 1 .6 yr exp in sales\ngood communication skill \nwill try for RM profile \nshe Interest to work in field also \n', 104, '0000-00-00 00:00:00', 1),
(18795, 20192, 102, 7, 0, 'Communication and convincing skill is good already working in Digital marketing shortlist for team kindly confirmed joining date ', 104, '0000-00-00 00:00:00', 1),
(18796, 20207, 59, 3, 0, 'Selected fr RE Role Need to analyse in 7 days and confirm ', 89, '2024-07-13 04:32:03', 1),
(18797, 20208, 18, 7, 0, 'Selected for Gnanashaker Team. Immedeate Joiner and has Laptop. Can Offer 2.75L CTC...', 139, '2024-07-13 04:42:30', 1),
(18798, 20185, 59, 1, 0, NULL, 109, '2024-07-13 05:06:31', 1),
(18799, 20187, 59, 1, 0, NULL, 109, '2024-07-13 05:07:10', 1),
(18800, 20188, 59, 1, 0, NULL, 109, '2024-07-13 05:07:49', 1),
(18801, 20202, 59, 1, 0, NULL, 57, '2024-07-13 05:30:31', 1),
(18802, 20203, 59, 3, 0, 'Communication Ok Can give a try Fresher Need to analyse in 7 days and confirm', 105, '2024-07-13 06:31:21', 1),
(18803, 20199, 59, 1, 0, NULL, 19, '2024-07-14 05:38:21', 1),
(18804, 20192, 59, 1, 0, NULL, 102, '2024-07-15 11:33:45', 1),
(18805, 20209, 105, 7, 0, 'candidate communication and performance is good ,his attire also is good ,but long distance ,so cross check the candidate once, before joining', 104, '0000-00-00 00:00:00', 1),
(18806, 20209, 59, 3, 0, 'Fresher Need to relocate Sustainability need to check need to analyse in 7 days and confirm', 105, '2024-07-15 12:00:28', 1),
(18807, 19793, 59, 3, 0, 'Selected for IT tem interviewed and confirmed by sathish and gokul 3.5yrs agreement', 60, '0000-00-00 00:00:00', 1),
(18808, 20213, 19, 5, 0, 'Even not try to speak and slow ', 104, '0000-00-00 00:00:00', 1),
(18809, 20247, 140, 4, 0, 'Having some clarity with his way of talking and approach, but salary Expectations is very high.', 104, '0000-00-00 00:00:00', 1),
(18810, 20248, 51, 5, 0, 'Not suitable for our sales roles will not handle our sales pressure', 104, '0000-00-00 00:00:00', 1),
(18811, 20248, 51, 5, 0, 'Not suitable for our sales roles will not handle our sales pressure', 104, '0000-00-00 00:00:00', 1),
(18812, 20237, 137, 7, 0, 'candidate communication is very good , pre exp is 6 month work for insurance field life and basic health spoaked so salary exp is high , so i will try for 7 days training period ', 104, '0000-00-00 00:00:00', 1),
(18813, 20236, 139, 4, 0, 'Selected For next round\nFresher \nhaving good communication skill\nwill try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(18814, 20234, 140, 4, 0, 'Selected', 104, '0000-00-00 00:00:00', 1),
(18815, 20233, 19, 7, 0, 'Selected,Well Speaked ', 104, '0000-00-00 00:00:00', 1),
(18816, 20230, 102, 5, 0, 'communication and convincing skill ratio is low so, i reject the person \n', 104, '0000-00-00 00:00:00', 1),
(18817, 20229, 71, 4, 0, 'Over all 3 yrs exp in sales and best sles pitch. moved to second round', 104, '0000-00-00 00:00:00', 1),
(18818, 20228, 137, 7, 0, 'candidate voice and communication also very good , pre exp is non voice process 2 years for health insurance clime , so i will try for 7 days training', 104, '0000-00-00 00:00:00', 1),
(18819, 20220, 140, 5, 0, 'Not fit for sales, fresher and not bold enough to answer ', 104, '0000-00-00 00:00:00', 1),
(18820, 20217, 137, 5, 0, 'candidate only interest for it only , after6 months go for core related job so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18821, 20221, 105, 5, 0, 'Candidate Performance is Little bit Slowly Also her Communication Level is Low and her voice is also very low', 104, '0000-00-00 00:00:00', 1),
(18822, 20231, 102, 5, 0, 'willing do the non voice process ', 104, '0000-00-00 00:00:00', 1),
(18823, 20236, 18, 7, 0, 'Rajalakshmi Selected for Gnanashekar Team. Offered 2,52,500 as CTC. Immediate Joiner and having Laptop. Fresher but a good candidate.', 139, '2024-07-15 05:38:34', 1),
(18824, 20233, 59, 3, 0, 'Communication Good Not open for Core opportunities can be trained in our roles open for telecalling can give a try', 19, '2024-07-15 06:32:48', 1),
(18825, 20246, 138, 5, 0, 'After Passedout she not went for job around 4 years after she worked mobile engineering process with 1 year experience and No proper communications kills and Mathematical skills so finally Not fit for sales this candidate', 104, '0000-00-00 00:00:00', 1),
(18826, 20229, 18, 7, 0, 'Fathima Selected for Santosh team. Given CTC is 2.65L Pa. She shall confirm the Joining date with the HR within a da and expected to Join within a week.', 71, '2024-07-15 08:07:37', 1),
(18827, 20244, 131, 4, 0, 'Good Communication and he has Experience into sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(18828, 20244, 30, 7, 3, 'already profile got rejected by virtual interview by banu before three months , but now k for rm will try max 20k take home salary suggested', 131, '2024-07-16 10:46:10', 1),
(18829, 20247, 29, 8, 0, 'didnxquott respond to arun', 140, '2024-07-16 12:00:42', 1),
(18830, 20215, 131, 5, 0, 'Salary expectation is high ', 126, '0000-00-00 00:00:00', 1),
(18831, 20242, 86, 4, 0, 'Selected for next round, Good communication xxamp having sales experience.', 104, '0000-00-00 00:00:00', 1),
(18832, 20249, 140, 5, 0, 'Not Interested For Sales, looking for non pressure job', 104, '0000-00-00 00:00:00', 1),
(18833, 20260, 140, 5, 0, 'rejected by guarav sir, hestitated for sales', 104, '0000-00-00 00:00:00', 1),
(18834, 20262, 138, 5, 0, 'She is srilankan citizen she came only Medical visa not a working visa also not have any proper documents so this candidate not eligible for our organiztion', 104, '0000-00-00 00:00:00', 1),
(18835, 20228, 59, 3, 0, 'Communication Ok Can be trained in our Voice process Need to analyse in 7 days training ', 137, '2024-07-16 03:04:16', 1),
(18836, 20237, 59, 3, 0, 'Communication Ok have 6 months Exp in insurance calling can be trained in our role need to check and analyse in 7 days training\n', 137, '2024-07-16 03:09:19', 1),
(18837, 20268, 57, 7, 0, 'candidate is ok. confident level good\nsal exp high 18k.fresher provide maximum 15k .if ok with the salary confirm the joining.', 104, '0000-00-00 00:00:00', 1),
(18838, 20259, 137, 5, 0, 'candidate only looking for non voice process only , voice process just try so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(18839, 20283, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18840, 20257, 109, 5, 0, 'She was not fit for sales, had lower voice and will not sustain longer', 104, '0000-00-00 00:00:00', 1),
(18841, 20280, 89, 5, 0, 'not Interested sales , ', 104, '0000-00-00 00:00:00', 1),
(18842, 20282, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18843, 20279, 86, 5, 0, 'Low observation skill, Not aware the previous experience product.', 104, '0000-00-00 00:00:00', 1),
(18844, 20276, 109, 5, 0, 'Not fit for sales she was not talking much had limited conversation', 104, '0000-00-00 00:00:00', 1),
(18845, 20269, 109, 5, 0, 'Not even talk , not fit hor sales', 104, '0000-00-00 00:00:00', 1),
(18846, 20270, 109, 5, 0, 'Doesnxquott anwer any questions, not even open her mouth to talk', 104, '0000-00-00 00:00:00', 1),
(18847, 20275, 57, 5, 0, 'candidate is unfit for sales. communication not well.not suitable for telecalling process', 104, '0000-00-00 00:00:00', 1),
(18848, 20281, 109, 5, 0, 'Not interested in sales, not fit for sales also', 104, '0000-00-00 00:00:00', 1),
(18849, 20273, 89, 7, 0, 'Fresher salary will provide', 104, '0000-00-00 00:00:00', 1),
(18850, 20272, 19, 7, 0, 'Syed Selected,she speaks good i hope she fit for sales lets try 7 days', 104, '0000-00-00 00:00:00', 1),
(18851, 20256, 109, 5, 0, 'Rejected by gokul sir', 104, '0000-00-00 00:00:00', 1),
(18852, 20264, 109, 7, 0, 'Selected by Gokul sir for internship', 104, '0000-00-00 00:00:00', 1),
(18853, 20263, 109, 5, 0, 'Rejected By Gokul Sir', 104, '0000-00-00 00:00:00', 1),
(18854, 20261, 19, 7, 0, 'Selected ,ctc 16k,he speaks good i hope he fit for the sales', 104, '0000-00-00 00:00:00', 1),
(18855, 20258, 109, 5, 0, 'Rejected By Gokul Sir', 104, '0000-00-00 00:00:00', 1),
(18856, 20243, 109, 5, 0, 'Had lagging with his communication not fit for sales', 104, '0000-00-00 00:00:00', 1),
(18857, 20268, 59, 3, 0, 'Communication Ok IT background she may switch if she is getting an opportunity her focus is only on the salary sustainability doubts can give a try and analyse in 7 days training', 57, '2024-07-16 05:23:21', 1),
(18858, 20208, 60, 1, 0, NULL, 18, '2024-07-16 05:53:27', 1),
(18859, 20229, 60, 1, 0, NULL, 18, '2024-07-16 05:54:09', 1),
(18860, 20236, 60, 1, 0, NULL, 18, '2024-07-16 05:54:38', 1),
(18861, 20212, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(18862, 20212, 30, 7, 3, 'suggested ctc upto 18k for dm', 131, '2024-07-16 06:19:41', 1),
(18863, 17396, 59, 3, 0, 'Completed the internship and hired for the employment', 59, '2024-07-16 07:05:28', 1),
(18864, 20242, 18, 7, 0, 'Swathi Selected for Mani Team. Offered 3.35L CTC and Immediate Joiner.', 86, '2024-07-17 09:58:58', 1),
(18865, 20244, 60, 1, 0, NULL, 30, '2024-07-17 11:25:51', 1),
(18866, 20212, 60, 1, 0, NULL, 30, '2024-07-17 11:29:01', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(18867, 20126, 59, 3, 0, 'Selected for RM Role Internal reference 8 months account exp 11 months Telecalling exp No Exp documents in the previous one Can give a try and check in the 7 days training analysis', 29, '2024-07-17 11:34:30', 1),
(18868, 20140, 59, 3, 0, 'Selected for RM Role reference ProfileHave Exp in Byjus and for the previous exp there was no proof Can be trained in our roles Need to analyse in 7 days training and confirm', 29, '2024-07-17 11:45:39', 1),
(18869, 20300, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18870, 20289, 19, 7, 0, 'Appearance was good i hope he fit for sales lets try 7 days and confirm ctc 16k', 104, '0000-00-00 00:00:00', 1),
(18871, 20292, 102, 5, 0, 'Not To come formal wear in interview and not willing to work on weekend ', 104, '0000-00-00 00:00:00', 1),
(18872, 20297, 102, 7, 0, 'interview performance its okay will try to 7days training and once confirm DOJ', 112, '0000-00-00 00:00:00', 1),
(18873, 20291, 105, 5, 0, 'candidate communication and performance is very slow ,also he weared jean pant', 104, '0000-00-00 00:00:00', 1),
(18874, 20290, 137, 5, 0, 'candidate is very local voice and not well communication and dress code , past 2 years work for our father shop and just try for other work but not stable for work , so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18875, 20301, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18876, 20261, 59, 3, 0, 'Communication Ok Fresher for Our role Candidate much focus is on non voice Open for Telesales Can give a try Need to analyse in 7 days training', 19, '2024-07-17 12:40:07', 1),
(18877, 20272, 59, 3, 0, 'Communication Ok can be trained in our roles need to focus on sustainability due to her travel distance', 19, '2024-07-17 12:40:52', 1),
(18878, 20264, 59, 3, 0, 'Selected for Recruitment profile with Staff role after internship for 3 months,Good Candidate have interest to work in the profile', 109, '2024-07-17 12:53:07', 1),
(18879, 20289, 59, 3, 0, 'Communication Ok Fresher for our roles Need to train from Scratch Should analyse in training and confirm', 19, '2024-07-17 12:53:46', 1),
(18880, 19990, 19, 5, 0, 'sustainability was doubt', 19, '2024-07-17 12:54:27', 1),
(18881, 19976, 19, 5, 0, 'Distance long and sustainability was doubt', 19, '2024-07-17 12:55:10', 1),
(18882, 20296, 105, 5, 0, 'candidate communication and performance is very nice xxampgood ,but her distance is too long , also her mother is under medical treatment,So Sustainability Is Very Doubt.', 104, '0000-00-00 00:00:00', 1),
(18883, 20297, 59, 3, 0, 'Communication Ok 1yr gap location is too far but open for the work location can give a try need to analyse in 7 days training', 102, '2024-07-17 03:10:20', 1),
(18884, 20310, 57, 7, 0, 'candidate is ok , fresher provide 14.5k take home. confirm the joining date. ', 104, '0000-00-00 00:00:00', 1),
(18885, 20311, 86, 5, 0, 'low observation and no experience . Not satisfying ', 104, '0000-00-00 00:00:00', 1),
(18886, 20310, 59, 3, 0, 'Selected for RE Role Communication PG Graduate Can be trained in our roles need to analyse in the training period', 57, '2024-07-17 04:33:05', 1),
(18887, 20242, 60, 1, 0, NULL, 18, '2024-07-17 05:16:10', 1),
(18888, 20273, 59, 3, 0, 'Fresher Need to train a lot Pressure handling need to check can give atry and analyse in 7 days', 89, '2024-07-17 05:24:06', 1),
(18889, 20318, 71, 4, 0, 'Having exp over 7 years in Integerated company sales field ', 130, '0000-00-00 00:00:00', 1),
(18890, 20308, 59, 1, 0, NULL, 130, '0000-00-00 00:00:00', 1),
(18891, 20305, 57, 7, 0, 'candidate is ok, pls check distance and sustainability. provide freshers salary and confirm the joining date', 60, '0000-00-00 00:00:00', 1),
(18892, 20305, 59, 3, 0, 'Selected for RE Role Too long distance She is ok to travel Can give a try in our roles Need to check in 7 days of training', 57, '2024-07-18 12:06:14', 1),
(18893, 20338, 105, 5, 0, 'candidate performance and communication is not good ,also she mentioned her experiance is more differnece ,while Discussing in interview.sustaiable doubt', 104, '0000-00-00 00:00:00', 1),
(18894, 20322, 89, 7, 0, 'Selected. will suggest freshers salary', 104, '0000-00-00 00:00:00', 1),
(18895, 20328, 57, 7, 0, 'candidate is ok, communication good. she have 10m exp cc sales but she donxquott have any pay slip exp letter offer letter.salary exp 18k. pls negotiate the salary 15.5k to 16k maximum. pls confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(18896, 20325, 102, 5, 0, 'not interested in field work interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(18897, 20334, 137, 5, 0, 'Candidate very local voice and not understand my words . So not fit. For my team', 104, '0000-00-00 00:00:00', 1),
(18898, 20340, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18899, 20332, 137, 7, 0, 'Candidate Good Voice And Good Communication Skills But After Joining The Work Donfit Mphil In Charas So I Will Try For 7 Days Training Period ', 104, '0000-00-00 00:00:00', 1),
(18900, 20336, 139, 4, 0, 'Selected for Next round \nDont have exp in sales\nbut he ready to work in sales and field work, will try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(18901, 20324, 19, 5, 0, 'communication was not good so she is not fit for insurance sales', 104, '0000-00-00 00:00:00', 1),
(18902, 20328, 59, 3, 0, 'Communication Good Reveiwed her bank statements can be trained in our roles Need to analyse in 7 days training', 57, '2024-07-18 03:01:27', 1),
(18903, 20333, 131, 4, 0, 'Fresher, Communication is OK and can process for next round', 126, '0000-00-00 00:00:00', 1),
(18904, 20333, 30, 7, 3, 'SUGGESTED CTC 14K FOR DM', 131, '2024-07-18 03:12:34', 1),
(18905, 20346, 102, 7, 0, 'Communication and convincing skills is good will try to 7days training once confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(18906, 20346, 59, 3, 0, 'Selected for RE Role Communication Ok Fresher Family need is there Can be trained in our roles need to analyse in 7 days training', 102, '2024-07-18 03:27:26', 1),
(18907, 20306, 86, 5, 0, 'Sriram sir rejected this candidate, due to management not approved the non degree holder.', 104, '0000-00-00 00:00:00', 1),
(18908, 20335, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18909, 20326, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18910, 19905, 29, 7, 2, 'porrselvan team, salary check resume..', 140, '2024-07-19 11:15:32', 1),
(18911, 20348, 102, 7, 0, 'Shortlist for team ', 130, '0000-00-00 00:00:00', 1),
(18912, 20318, 18, 7, 3, 'Kalaivani Selected for Santhosh Team Expected upto 4.5L but can negotiate and immediate Joiner.', 71, '2024-07-19 11:27:29', 1),
(18913, 20353, 102, 7, 0, 'Shortlist for team ', 104, '0000-00-00 00:00:00', 1),
(18914, 20352, 19, 5, 0, 'Too slow', 104, '0000-00-00 00:00:00', 1),
(18915, 20364, 57, 7, 0, 'candidate is ok. pls confirm the joining date and salary. job fair candidate', 104, '0000-00-00 00:00:00', 1),
(18916, 20350, 57, 7, 0, 'Candidate is ok, pls confirm the joining date xxamp Salary.', 104, '0000-00-00 00:00:00', 1),
(18917, 20356, 105, 5, 0, 'candidate performance and comunication is not good.also providing information is mismatch with her resume', 104, '0000-00-00 00:00:00', 1),
(18918, 20336, 18, 7, 0, 'Pradeep Selected for Ganashekar Team.Can Give offer of 3L as CTC. Immediate Joiner.', 139, '2024-07-19 02:34:19', 1),
(18919, 20371, 105, 5, 0, 'candidate performance and communication is not good.also his voice is not clear', 104, '0000-00-00 00:00:00', 1),
(18920, 20359, 140, 4, 0, 'Selected for sarath team', 104, '0000-00-00 00:00:00', 1),
(18921, 20155, 29, 7, 3, 'Sarath Team, Salary 21k Gross, task given july and aug 2 lac life and 15k mF if achieved, can increase to 24k gross. ', 51, '2024-07-19 03:58:08', 1),
(18922, 20358, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18923, 20357, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18924, 20360, 131, 2, 0, 'Good communication but have some health issue need some time to join', 126, '0000-00-00 00:00:00', 1),
(18925, 19905, 59, 3, 0, 'communication Have 1yr telecalling Exp 6 months BPO exp have exp documents Can be trained in our roles need to analyse in 7 days training hired based on the employee recommendation on his earlier performance', 29, '2024-07-19 07:47:21', 1),
(18926, 20155, 59, 1, 0, NULL, 29, '2024-07-19 07:54:19', 1),
(18927, 20332, 59, 3, 0, 'Selected for RE Role Fersher MA graduate Can be trained in our roles need to check and confirm in the 7 days of training', 137, '2024-07-20 10:51:17', 1),
(18928, 20333, 60, 1, 0, NULL, 30, '2024-07-20 11:42:48', 1),
(18929, 20350, 59, 3, 0, 'Communication Ok Fresher Can give a try exp salary much can be trained need to analyse in 7 days and confirm ', 57, '2024-07-20 11:57:21', 1),
(18930, 20364, 59, 3, 0, 'Communication OK fresher for our roles,have exp in Medplus sales for 2yrs Can be trained in our roles ', 57, '2024-07-20 12:11:29', 1),
(18931, 20383, 102, 5, 0, 'Interested in Non voice process ', 104, '0000-00-00 00:00:00', 1),
(18932, 20388, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18933, 20378, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18934, 20390, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(18935, 20375, 89, 7, 0, 'Selected but salary expect 20 k.. i will suggestion 15 to 16 k ', 104, '0000-00-00 00:00:00', 1),
(18936, 20387, 57, 5, 0, 'candidate is not ok. she looking for system work,', 104, '0000-00-00 00:00:00', 1),
(18937, 20375, 59, 3, 0, 'Communication Ok Have part time exp can be trained in our roles should check in 7 days and confirm', 89, '2024-07-20 03:29:00', 1),
(18938, 20322, 59, 5, 0, 'Looking for non voice process only', 89, '2024-07-20 04:18:52', 1),
(18939, 20318, 60, 1, 0, NULL, 18, '2024-07-22 11:17:30', 1),
(18940, 20198, 105, 5, 0, 'candidate communication and performance is good but her distance is long ,sustainable doubt', 105, '2024-07-22 11:18:15', 1),
(18941, 20348, 59, 3, 0, 'Communication Have yrs exp in Semi voice can be trained in our roles need to analyse in 7 days training', 102, '2024-07-22 12:04:50', 1),
(18942, 20353, 59, 3, 0, 'communication Ok fresher need to train from scratch can give a try in 7 days and confirm', 102, '2024-07-22 12:05:10', 1),
(18943, 20382, 149, 7, 0, 'SELECTED JOINING ON 24TH JULY', 104, '0000-00-00 00:00:00', 1),
(18944, 20370, 149, 2, 0, 'HOLDED', 104, '0000-00-00 00:00:00', 1),
(18945, 20399, 140, 5, 0, 'No Sustainability in any company', 104, '0000-00-00 00:00:00', 1),
(18946, 20400, 89, 5, 0, 'not fit for the job', 104, '0000-00-00 00:00:00', 1),
(18947, 20401, 137, 7, 0, 'candidate voice and communication very good ad past 1 and half years exp for sales field so i will try for 7 days training period ad exp ctc is 16k ', 104, '0000-00-00 00:00:00', 1),
(18948, 20402, 19, 5, 0, 'not fit for sales and not try to speak', 104, '0000-00-00 00:00:00', 1),
(18949, 20411, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18950, 20405, 131, 4, 0, 'Fresher, communication is OK can process for next round', 126, '0000-00-00 00:00:00', 1),
(18951, 20397, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(18952, 20397, 30, 7, 3, 'SUGGESTED 20K CTC FOR DM', 131, '2024-07-22 04:42:20', 1),
(18953, 20405, 30, 7, 2, 'SUGGESTED 13K CTC', 131, '2024-07-22 04:47:08', 1),
(18954, 20411, 30, 7, 4, '21K SUGGESTED FOR RM', 131, '2024-07-22 04:47:57', 1),
(18955, 20382, 102, 7, 0, 'Shortlist for team once confirm DOJ', 149, '2024-07-22 06:49:32', 1),
(18956, 20397, 60, 1, 0, NULL, 30, '2024-07-23 11:09:14', 1),
(18957, 20405, 60, 1, 0, NULL, 30, '2024-07-23 11:11:46', 1),
(18958, 20411, 60, 1, 0, NULL, 30, '2024-07-23 11:12:37', 1),
(18959, 20382, 59, 1, 0, NULL, 102, '2024-07-23 11:40:12', 1),
(18960, 20336, 60, 1, 0, NULL, 18, '2024-07-23 12:03:09', 1),
(18961, 20425, 19, 9, 0, 'salary high so change to PC dept', 104, '0000-00-00 00:00:00', 1),
(18962, 20418, 140, 4, 0, 'Selected, bold and confident with his replies', 104, '0000-00-00 00:00:00', 1),
(18963, 20419, 57, 5, 0, 'candidate is not ok. communication not good. confident very low. reject the candidate', 104, '0000-00-00 00:00:00', 1),
(18964, 20416, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(18965, 20420, 86, 4, 0, 'Selected for Next Round', 104, '0000-00-00 00:00:00', 1),
(18966, 20422, 102, 5, 0, 'Communication is good Candidate learn for Coding once complete going to it and not willing to work week end days ', 104, '0000-00-00 00:00:00', 1),
(18967, 20420, 18, 7, 0, 'Lokesh Selected for Manikandan Team. Offered 3L CTC and has Laptop and Immediate Joiner.', 86, '2024-07-23 02:29:54', 1),
(18968, 20432, 19, 5, 0, 'too slow and not fir for sales,dress code also wrong', 104, '0000-00-00 00:00:00', 1),
(18969, 20413, 105, 5, 0, 'interviewed by charless ,as discussednwith charless, candidate performance and communication is very low,also slow listerner', 104, '0000-00-00 00:00:00', 1),
(18970, 20426, 89, 5, 0, 'time pass', 104, '0000-00-00 00:00:00', 1),
(18971, 20425, 138, 7, 0, 'Selected for self team due to sriram sir interviewed and confimed this candidate so kindly Negotiate the CTC and Confirm it', 19, '2024-07-23 05:12:05', 1),
(18972, 20430, 131, 2, 0, 'fresher, Communication is OK have doubt with the salary part need to discussed', 126, '0000-00-00 00:00:00', 1),
(18973, 20398, 137, 5, 0, 'candidate interest to it job only just free time time to chose sales job so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18974, 20425, 18, 7, 3, 'Selected for Jagadeesh Team. Can give 4.5L if he negotiate can give 4.6 and Immedeate Joiner. Experience candidate and plaease take approval for salary', 138, '2024-07-23 07:54:53', 1),
(18975, 20420, 60, 1, 0, NULL, 18, '2024-07-24 10:27:49', 1),
(18976, 20359, 29, 7, 0, 'Selected, ', 140, '2024-07-24 10:43:29', 1),
(18977, 20418, 29, 7, 3, 'Sal - 20k Net, task - 1.5 lac + 10 MF, once completed increase to 22k net from sept24', 140, '2024-07-24 10:46:07', 1),
(18978, 20401, 59, 1, 0, NULL, 137, '2024-07-24 10:53:59', 1),
(18979, 20442, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(18980, 20421, 109, 5, 0, 'Not Suitable for sales. lagging in comminication', 104, '0000-00-00 00:00:00', 1),
(18981, 20428, 105, 5, 0, 'candidate performance and communiation is little bit good,but long distance sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(18982, 20431, 19, 7, 0, 'Speaks Well Lets try 7 days and confirmed ,CTC 16K, Immediate joining', 104, '0000-00-00 00:00:00', 1),
(18983, 20435, 140, 4, 0, 'fresher, very eager for work, confident in his way of speaking, selected for next round', 104, '0000-00-00 00:00:00', 1),
(18984, 20435, 140, 4, 0, 'fresher, very eager for work, confident in his way of speaking, selected for next round', 104, '0000-00-00 00:00:00', 1),
(18985, 20436, 102, 7, 0, 'Communication and convincing skill and know insurance knowledge also, is good will try 7 days training and once confirmed DOJ ', 104, '0000-00-00 00:00:00', 1),
(18986, 20438, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(18987, 20439, 29, 7, 3, 'Esales - 3.75 Lac CTC, Joining in Aug, in Aug if completed 2 lac + 10k SIP we can increase to 4 lac in sept 24', 104, '0000-00-00 00:00:00', 1),
(18988, 20226, 29, 7, 3, 'sarath team, ', 104, '0000-00-00 00:00:00', 1),
(18989, 20223, 140, 4, 0, 'Selected for next round, having basic knowledge in insurance and mutual funds', 104, '0000-00-00 00:00:00', 1),
(18990, 20431, 59, 3, 0, 'Communication Ok Fresher for our role not much job needed person family has own business for initial period he is open to work Sport player \nNeed to analyse in 7 days training and confirm', 19, '2024-07-24 03:18:48', 1),
(18991, 20443, 102, 5, 0, 'Already working in DTH Customer support not come formal wear communication and convincing wise low ', 104, '0000-00-00 00:00:00', 1),
(18992, 20445, 137, 5, 0, 'candidate only looking for voice process only not interest for field work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(18993, 20416, 59, 1, 0, NULL, 19, '2024-07-24 03:27:21', 1),
(18994, 20416, 19, 7, 0, 'dress cide and attitude was good but slang has to be change so lets try 7 days and we will confirm CTC 16K Immediate joining', 19, '2024-07-24 03:27:21', 1),
(18995, 20436, 59, 3, 0, 'Communication Ok Fresher have worked in a company for a month madurai not much comfrt in the location and transport 5050 need to check in 7 days and confirm', 102, '2024-07-24 04:27:44', 1),
(18996, 20223, 29, 7, 3, 'Porrselvan Team, 18k Net Salary, In Aug - 1.5 lac + 10k SIP, then 21k Net salary', 140, '2024-07-24 05:47:19', 1),
(18997, 20435, 29, 7, 2, 'Porrselvan Team, 18k Net salary, However if he performance well in Aug and Sept we can average salary to 21k Net from Oct 24', 140, '2024-07-24 05:48:32', 1),
(18998, 20450, 105, 5, 0, 'candidate performed well and good,her communication flow is good,but she is more intrested in non-voice process also long distance sustainable doubt.', 104, '0000-00-00 00:00:00', 1),
(18999, 20452, 149, 5, 0, 'not so good at communication', 104, '0000-00-00 00:00:00', 1),
(19000, 20453, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19001, 20454, 137, 7, 0, 'candidate past 6 months work for sales and field work , communication and voice also ok so try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(19002, 20455, 149, 5, 0, 'having thought for another job', 104, '0000-00-00 00:00:00', 1),
(19003, 20458, 19, 2, 0, 'Will Clear 27th july', 104, '0000-00-00 00:00:00', 1),
(19004, 20447, 131, 5, 0, 'Need travelling expenses and lack of interest', 126, '0000-00-00 00:00:00', 1),
(19005, 20451, 131, 5, 0, 'Salary Expectation is high', 126, '0000-00-00 00:00:00', 1),
(19006, 20459, 102, 7, 0, 'Communication and convincing skill is good will try 7 days training xxamp once confirmed the DOJ', 104, '0000-00-00 00:00:00', 1),
(19007, 20460, 140, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19008, 20457, 140, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19009, 20223, 59, 1, 0, NULL, 29, '2024-07-25 04:30:17', 1),
(19010, 20435, 59, 3, 0, 'Fresher Have an interest to start his own business in future he is open to learn the sales can be trained in our roles need ot check and confirm in 7 daysw training', 29, '2024-07-25 04:32:58', 1),
(19011, 20439, 59, 3, 0, 'Selected for E Sales Good communication Can give a try in our Esales Based on the commitment we have given her the opportunity can give a try in our role', 29, '2024-07-25 05:09:03', 1),
(19012, 20370, 19, 7, 0, 'Selecteed for raja sekar,lets try 7 days and we will confirm CTC 16K', 149, '2024-07-26 11:03:34', 1),
(19013, 20370, 149, 7, 0, 'selected', 149, '2024-07-26 11:03:34', 1),
(19014, 20459, 59, 3, 0, 'Communication Ok Distance should check Can give a try and analyse in 7 days and confirm', 102, '2024-07-26 11:54:17', 1),
(19015, 20454, 59, 1, 0, NULL, 137, '2024-07-26 01:01:40', 1),
(19016, 20468, 137, 5, 0, 'candidate very low voice and not understand my words so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19017, 20471, 105, 5, 0, 'candidate comminucation and performance is not like good.also his mother working in renault car. inurance company.then his voice level is low', 104, '0000-00-00 00:00:00', 1),
(19018, 20472, 89, 5, 0, 'not fit for the job', 104, '0000-00-00 00:00:00', 1),
(19019, 20473, 102, 5, 0, 'communication and convincing ratio is low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19020, 20475, 102, 5, 0, 'communication and convincing ratio is low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19021, 20370, 59, 1, 0, NULL, 19, '2024-07-26 01:39:37', 1),
(19022, 20462, 74, 5, 0, 'unfit for telesales', 104, '0000-00-00 00:00:00', 1),
(19023, 20469, 74, 5, 0, 'not handling pressure', 104, '0000-00-00 00:00:00', 1),
(19024, 20465, 74, 7, 0, 'he is already work in friend shopping mall as cashier, 12k salary, now he is not continue, mother govt teacher, father work in steel company 15k salary, brother work in omega 20k slary, brother studied diploma, he is a football player part time, clearly explained about pressure target, he is ok with the profile expected 12 to 13k, no laptop ready to arrange, imeediate joining, , home 5 km from office, kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19025, 20463, 74, 5, 0, 'unfit fortelesales', 104, '0000-00-00 00:00:00', 1),
(19026, 20482, 57, 7, 0, 'candidate is not good, communication not well, team ref', 104, '0000-00-00 00:00:00', 1),
(19027, 20483, 57, 7, 0, 'candidate is not good, communication not well, team ref', 104, '0000-00-00 00:00:00', 1),
(19028, 20467, 109, 5, 0, 'Communication is not good. will not sustain longer', 104, '0000-00-00 00:00:00', 1),
(19029, 20466, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19030, 20474, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19031, 20476, 19, 5, 0, 'sustainability was doubt', 104, '0000-00-00 00:00:00', 1),
(19032, 20482, 59, 1, 0, NULL, 57, '2024-07-26 04:58:06', 1),
(19033, 20483, 59, 1, 0, NULL, 57, '2024-07-26 04:58:17', 1),
(19034, 20481, 57, 5, 0, 'Candidate is unfit for sales profile\nAppearance Not good,field work not interested', 104, '0000-00-00 00:00:00', 1),
(19035, 20479, 149, 5, 0, 'candidate was not ok with time flexibility', 104, '0000-00-00 00:00:00', 1),
(19036, 20470, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19037, 20477, 102, 7, 0, 'communication and convincing is good will try 7days training plz confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(19038, 20478, 137, 7, 0, 'candiate communication also ok and basic sales knowledge so i will try for 7 days training periods', 104, '0000-00-00 00:00:00', 1),
(19039, 20465, 59, 3, 0, 'Fresher for our roles have 1 yr exp in Cashier role Can be trained in our roles need to analyse in 7 days training', 74, '2024-07-26 06:14:44', 1),
(19040, 20464, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(19041, 20485, 29, 7, 2, 'fresher, have to train and build, salary details refer resume', 104, '0000-00-00 00:00:00', 1),
(19042, 20488, 51, 4, 0, 'moved', 104, '0000-00-00 00:00:00', 1),
(19043, 20489, 105, 5, 0, 'Candidate Communication And performance is not good ,also long distance sustainable doubt ', 104, '0000-00-00 00:00:00', 1),
(19044, 20491, 59, 3, 0, 'Ok for REcruitment have internship exp first interview with Gokul and got shortlisted can give a try in our roles', 104, '0000-00-00 00:00:00', 1),
(19045, 20492, 137, 5, 0, 'candidate very low voice and not well communication and distanc is very long so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19046, 20497, 74, 7, 0, 'she is ok for telecalling, completed bsc and msc, fresher ,,,,studiying for govt job past two years, now searching for job, father labour work, own house, office to home 3 km only,,,,,have laptop, expected 12 to 13 ,,, imediate joining...anand reference', 104, '0000-00-00 00:00:00', 1),
(19047, 20493, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19048, 20495, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19049, 20496, 102, 5, 0, 'communication and convincing ratio is low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19050, 20498, 19, 5, 0, 'other language', 104, '0000-00-00 00:00:00', 1),
(19051, 20501, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19052, 20497, 59, 3, 0, 'Selected for Thanjavur RE Can be trained in our roles 2yrs gap need to analyse in 7days training and confirm', 74, '2024-07-27 01:09:42', 1),
(19053, 20505, 131, 4, 0, 'good knowledge about health insurance and communication is OK can process for next round', 126, '0000-00-00 00:00:00', 1),
(19054, 20504, 57, 7, 0, 'candidate is ok, pls confirm the joining date. give freshers salary. teammate rekha reference', 104, '0000-00-00 00:00:00', 1),
(19055, 20503, 57, 7, 0, 'candidate is not suitable for sales job. communication not well. reject the profile.(chalres)', 104, '0000-00-00 00:00:00', 1),
(19056, 20502, 149, 7, 0, 'selected and salary 16k', 104, '0000-00-00 00:00:00', 1),
(19057, 20505, 147, 7, 0, 'Good communication and have Experience into insurance field ', 131, '2024-07-27 04:35:24', 1),
(19058, 20502, 60, 1, 0, NULL, 149, '2024-07-27 07:00:33', 1),
(19059, 20504, 59, 1, 0, NULL, 57, '2024-07-29 11:19:13', 1),
(19060, 20513, 105, 5, 0, 'Candidate communication and performance is not good.his voice is Also very low ,then long distance (semancheri) Sustainable doubt.he is planning for it related job', 104, '0000-00-00 00:00:00', 1),
(19061, 20503, 59, 1, 0, NULL, 57, '2024-07-29 12:01:30', 1),
(19062, 20515, 57, 5, 0, 'Candidate is not pk. he looking for accounting job.communication mistake Thatxquots why came interview.\nteam reference.reject the profile thanks', 104, '0000-00-00 00:00:00', 1),
(19063, 20514, 140, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19064, 20499, 19, 5, 0, 'Apperance is not good and look like low profile', 104, '0000-00-00 00:00:00', 1),
(19065, 20519, 74, 7, 0, 'she is ok with the profile, came from aranthangi, 4hours travel, ,,, already worked in a agency channel life insurance 2 years experience 19-21,,,,and releived due to over time,,,,, and worked as a agent in tnagar hdfc...1 year and came to native 6 months work from home vodofone process,,, and process closed she releived,,, not she is ready to move to thanjavur,,have laptop expected 15 to 16k,,,,,father farmer ,,,sisters married kindly cross check once ,,,completeg irdai exam...kindly check once she is suitable or not', 104, '0000-00-00 00:00:00', 1),
(19066, 20518, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19067, 20520, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19068, 20521, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19069, 20522, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19070, 20523, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19071, 20519, 59, 1, 0, NULL, 74, '2024-07-29 06:16:30', 1),
(19072, 20531, 74, 5, 0, 'expected it not sales', 104, '0000-00-00 00:00:00', 1),
(19073, 20529, 137, 5, 0, 'candidate only interst for it related field and non vocie process so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19074, 20517, 131, 4, 0, 'communication is ok , can process for next round', 126, '0000-00-00 00:00:00', 1),
(19075, 20517, 147, 7, 0, 'fresher into sales communication is OK ', 131, '2024-07-30 11:10:50', 1),
(19076, 20505, 59, 1, 0, NULL, 147, '2024-07-30 11:17:21', 1),
(19077, 20517, 59, 3, 0, 'Communication Ok Just 6 months Exp but not a relevant one can give a try and check in 7 days', 147, '2024-07-30 11:19:02', 1),
(19078, 20285, 149, 7, 0, 'selected -ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19079, 20477, 59, 1, 0, NULL, 102, '2024-07-30 12:45:30', 1),
(19080, 20458, 19, 2, 0, 'Will confirm', 19, '2024-07-30 12:57:25', 1),
(19081, 20525, 19, 5, 0, 'she is not even try to speak properly', 104, '0000-00-00 00:00:00', 1),
(19082, 20526, 71, 4, 0, 'Having sales skills but new in insurance field ', 104, '0000-00-00 00:00:00', 1),
(19083, 20532, 89, 5, 0, 'tele calling not intersted', 104, '0000-00-00 00:00:00', 1),
(19084, 20533, 138, 7, 0, 'Experienced in Other department but not in sales but Communication Skills and Mathematic Skills are Good... Personal attutide also fine finally salary Fixed 18K in hand but sriram sir fix the salary ', 104, '0000-00-00 00:00:00', 1),
(19085, 20537, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19086, 20539, 19, 5, 0, 'he is not ready to go outside for appointment', 104, '0000-00-00 00:00:00', 1),
(19087, 20538, 86, 4, 0, 'Selected for next round.', 104, '0000-00-00 00:00:00', 1),
(19088, 20536, 105, 5, 0, 'candidate communication problem also his voice is very low and sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19089, 20540, 139, 5, 0, 'Not fit for Rm profile \ndont have sales skills ', 104, '0000-00-00 00:00:00', 1),
(19090, 20535, 102, 5, 0, 'Communication is good but candidate interested in Non voice process ', 104, '0000-00-00 00:00:00', 1),
(19091, 20534, 51, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19092, 20538, 18, 7, 0, 'Harinath Selected for Mani Team. Offered 2.9LC CTC and Immediate Joiner.', 86, '2024-07-30 03:29:14', 1),
(19093, 20545, 105, 5, 0, 'candidate communication is not like good ,also pronuncication and slang issue.sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19094, 20285, 60, 1, 0, NULL, 149, '2024-07-30 05:21:05', 1),
(19095, 20528, 131, 4, 0, 'Good Communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19096, 20528, 147, 7, 0, 'Good communication and confident level has Experience into sales', 131, '2024-07-30 06:55:39', 1),
(19097, 20554, 139, 4, 0, 'Selected for Rm profile \nhaving good communication skill \n7 month exp in bank bazar and one month in edlewise insurance sales \nwill try for rm Role ', 104, '0000-00-00 00:00:00', 1),
(19098, 20552, 137, 5, 0, 'candidate mainly interest for non voice and next course for SAP in accounting thatreason to joining he work after completed the course he will relaving the job', 104, '0000-00-00 00:00:00', 1),
(19099, 20552, 137, 5, 0, 'candidate mainly interest for non voice and next course for SAP in accounting thatreason to joining he work after completed the course he will relaving the job', 104, '0000-00-00 00:00:00', 1),
(19100, 20538, 60, 1, 0, NULL, 18, '2024-07-31 11:04:16', 1),
(19101, 13359, 102, 5, 0, 'Oral communication good but convincing ratio low and previous experience customer support salary expt high ', 104, '0000-00-00 00:00:00', 1),
(19102, 20554, 18, 7, 0, 'logiya Selected for Gnanashekar Team. Ready to Join on Monday and Immediate Joiner. Please negotiate the salary and she is expecting 23k Take home but can negotiate', 139, '2024-07-31 11:46:05', 1),
(19103, 20174, 30, 5, 0, 'high expectation', 131, '2024-07-31 12:16:07', 1),
(19104, 20174, 131, 4, 0, 'Good communication and confident level can process for next round', 131, '2024-07-31 12:16:07', 1),
(19105, 20560, 105, 5, 0, 'candidate communication and performance is not good ,also he is not talk more and his slang is very poor', 104, '0000-00-00 00:00:00', 1),
(19106, 20360, 30, 7, 4, 'confirm the joining and ctc suggested 25k', 131, '2024-07-31 12:17:32', 1),
(19107, 20360, 131, 4, 0, 'Good communication and confident level can process for next round', 131, '2024-07-31 12:17:32', 1),
(19108, 20559, 19, 7, 0, 'fit for sales ,lets try 7 days and we will confirm', 104, '0000-00-00 00:00:00', 1),
(19109, 20543, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19110, 20543, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19111, 20551, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19112, 20555, 74, 5, 0, 'not fit for telesales', 104, '0000-00-00 00:00:00', 1),
(19113, 20533, 18, 7, 0, 'Selected for Jagadeesh Team. Immedeate Joiner please ask the CTC which i offered to the RM and release the offer', 138, '2024-07-31 02:24:42', 1),
(19114, 20558, 149, 5, 0, 'looking for another job ', 104, '0000-00-00 00:00:00', 1),
(19115, 20550, 102, 5, 0, 'Communication is good but candidate interested in Non voice process ', 104, '0000-00-00 00:00:00', 1),
(19116, 20565, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19117, 20564, 137, 5, 0, 'candidate voice is not good and not understand what im telling so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19118, 20553, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19119, 20559, 59, 1, 0, NULL, 19, '2024-07-31 06:00:15', 1),
(19120, 20528, 59, 5, 0, 'Dropped She request a time to join and later she is not open to join due to other offer in hand', 147, '2024-08-01 10:17:58', 1),
(19121, 20485, 59, 3, 0, 'Communication Ok Focus on salary much Long Run doubts Can give a try and check in 7 days Holding offer with Shree consultant too', 29, '2024-08-01 10:31:44', 1),
(19122, 20226, 59, 1, 0, NULL, 29, '2024-08-01 10:33:21', 1),
(19123, 19803, 59, 1, 0, NULL, 29, '2024-08-01 10:35:30', 1),
(19124, 20568, 89, 5, 0, 'no basic skli', 104, '0000-00-00 00:00:00', 1),
(19125, 20570, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19126, 20570, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19127, 20530, 140, 5, 0, 'Not fit for sales, only Experienced in Documentation', 104, '0000-00-00 00:00:00', 1),
(19128, 19737, 59, 1, 0, NULL, 29, '2024-08-01 11:25:52', 1),
(19129, 20478, 59, 3, 0, 'Communication Ok Fresher need to analyse and confirmi in 7days training', 137, '2024-08-01 12:06:54', 1),
(19130, 20576, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19131, 20418, 59, 3, 0, 'Communication Ok Earlier attended the interview on April 2024 and got selected for RE but not joined at the time ', 29, '2024-08-01 01:39:09', 1),
(19132, 20577, 149, 5, 0, 'not so good at speaking', 104, '0000-00-00 00:00:00', 1),
(19133, 20584, 19, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19134, 20359, 59, 1, 0, NULL, 29, '2024-08-01 02:39:48', 1),
(19135, 20572, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19136, 20583, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19137, 20582, 19, 7, 0, 'job needed person and he speaks good', 104, '0000-00-00 00:00:00', 1),
(19138, 20573, 105, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19139, 20582, 59, 3, 0, 'Communication ok can give a try in our roles fresher need to analyse in 7 days training', 19, '2024-08-01 03:42:32', 1),
(19140, 20585, 149, 7, 0, 'selected ctc 18k', 104, '0000-00-00 00:00:00', 1),
(19141, 20360, 60, 1, 0, NULL, 30, '2024-08-01 04:29:42', 1),
(19142, 20585, 60, 1, 0, NULL, 149, '2024-08-01 04:56:15', 1),
(19143, 20506, 131, 5, 0, 'Communication is not up to the mark and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(19144, 20574, 131, 5, 0, 'lagging with communication', 126, '0000-00-00 00:00:00', 1),
(19145, 20571, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19146, 20580, 131, 5, 0, 'Salary Expectation is high', 126, '0000-00-00 00:00:00', 1),
(19147, 20571, 30, 7, 3, 'Selected for RM suggested 22k take home immediate joining ', 131, '2024-08-01 05:55:24', 1),
(19148, 20586, 59, 3, 0, 'Rejoining post maternity leave', 60, '0000-00-00 00:00:00', 1),
(19149, 20571, 60, 1, 0, NULL, 30, '2024-08-02 10:01:11', 1),
(19150, 20587, 57, 7, 0, 'candidate is ok. 8m exp Vehicle insurance. 2yrs admin xxamp Ope exp. confirm the joining date thanks', 104, '0000-00-00 00:00:00', 1),
(19151, 20594, 105, 7, 0, 'candidate communication and perfomance is good.then he performed well in the interview ,also his attier is good ,will check in the training period', 104, '0000-00-00 00:00:00', 1),
(19152, 20592, 89, 5, 0, 'over Attitude and no money need ', 104, '0000-00-00 00:00:00', 1),
(19153, 20598, 89, 7, 0, 'Already Experience 8 month casa grande Executive . Previous salary 23 k but my Suggestion \n18 k . ', 104, '0000-00-00 00:00:00', 1),
(19154, 20598, 89, 7, 0, 'Already Experience 8 month casa grande Executive . Previous salary 23 k but my Suggestion \n18 k . ', 104, '0000-00-00 00:00:00', 1),
(19155, 20556, 138, 7, 0, 'Experienced in Sales Department around 2 to 3 years Excellent Communication skills and Mathematics skills are average and Overall Attitude also good so finally need to negotiate with sriram sir for salary package', 104, '0000-00-00 00:00:00', 1),
(19156, 20601, 105, 5, 0, 'candidate communication little bit only good ,ther her voice is not clear also sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19157, 20596, 19, 5, 0, 'he is not much intrested in sales', 104, '0000-00-00 00:00:00', 1),
(19158, 20594, 59, 3, 0, 'Communication complete IT profile But open for Sales Calling Can give a try and check in 7 days training', 105, '2024-08-02 01:12:36', 1),
(19159, 20599, 149, 5, 0, 'NOT so good at speaking', 104, '0000-00-00 00:00:00', 1),
(19160, 20598, 59, 3, 0, 'Selected for RE role Can give a try and check in 7 days training ', 89, '2024-08-02 01:27:59', 1),
(19161, 20600, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19162, 12995, 149, 7, 0, 'selected - 15k ', 104, '0000-00-00 00:00:00', 1),
(19163, 20587, 59, 3, 0, 'Selected for DM Role Can give a try and analyse in 7 days training', 57, '2024-08-02 03:22:48', 1),
(19164, 20557, 131, 4, 0, 'Communication is ok and good confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19165, 20557, 147, 7, 0, 'Have Experience into sales field, good confident level and Communication is ok ok', 131, '2024-08-02 04:34:00', 1),
(19166, 20590, 29, 5, 0, 'not fit for sales process', 104, '0000-00-00 00:00:00', 1),
(19167, 12995, 60, 1, 0, NULL, 149, '2024-08-02 04:41:02', 1),
(19168, 20557, 59, 1, 0, NULL, 147, '2024-08-02 04:51:48', 1),
(19169, 20526, 18, 7, 0, 'Shortlisted by Santhosh. Please negotiate the salary and immediate joiner...', 71, '2024-08-02 06:00:19', 1),
(19170, 20609, 137, 5, 0, 'candidate mainly interest for abroad work ust communication imporvement to looking or telecalling work so notfit for my team', 104, '0000-00-00 00:00:00', 1),
(19171, 20608, 140, 4, 0, 'Selected', 104, '0000-00-00 00:00:00', 1),
(19172, 20610, 19, 5, 0, 'too long from his location,look wise not good and intrested in cine field', 104, '0000-00-00 00:00:00', 1),
(19173, 20612, 105, 5, 0, 'candidate communication is littlr bit only good but his performance is not good also he is more intrested in media industry,so sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19174, 20613, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19175, 20556, 18, 8, 0, 'Tried connecting with her but she has not joined the meeting', 138, '2024-08-03 07:54:05', 1),
(19176, 20618, 74, 7, 0, 'she is ok with the profile, fresher, bsc and msc maths, ,,,,,,,father electrician, sister worked in CTS and currently releved due to marriage next month 8th,,,,,from kumbakonam,,, but ready to relocate to tnj........have no laptop ,,,,expected 12 to 13k....ready to join kindly check once', 104, '0000-00-00 00:00:00', 1),
(19177, 20616, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19178, 20593, 105, 5, 0, 'candidate communication and performance is not good', 104, '0000-00-00 00:00:00', 1),
(19179, 20619, 89, 7, 0, 'Selected, will analyse 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19180, 20620, 137, 5, 0, 'candidate is very long distance and communication also not well . so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19181, 20623, 19, 7, 0, 'Speaks Well ,I hope he fit for sales letxquots try 7 Days ', 104, '0000-00-00 00:00:00', 1),
(19182, 20627, 139, 5, 0, 'Not fit for sales profession', 104, '0000-00-00 00:00:00', 1),
(19183, 20626, 137, 7, 0, 'candidate is fresher but past1 years searching for it job but not selected , candidate voic and communication also good , so try for 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19184, 20628, 51, 4, 0, 'moved for final round', 104, '0000-00-00 00:00:00', 1),
(19185, 20591, 149, 7, 0, 'selected', 104, '0000-00-00 00:00:00', 1),
(19186, 20554, 60, 1, 0, NULL, 18, '2024-08-05 04:01:25', 1),
(19187, 20533, 60, 1, 0, NULL, 18, '2024-08-05 04:03:09', 1),
(19188, 20630, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19189, 20629, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19190, 20425, 138, 7, 0, 'Selected for self team due to sriram sir interviewed and confimed this candidate so kindly Negotiate the CTC and Confirm it', 18, '2024-08-05 04:14:14', 1),
(19191, 20623, 59, 3, 0, 'Communication Ok have exp in calling Have prv exp documents can give a try in our role and analyse in 7 days training', 19, '2024-08-05 05:25:03', 1),
(19192, 20619, 59, 3, 0, 'Communication Ok fresher have a plan to go with MBA Corres Can give a try and analyse in 7 days training', 89, '2024-08-05 05:27:06', 1),
(19193, 20626, 59, 5, 0, 'not interested in telesales', 137, '2024-08-05 05:48:53', 1),
(19194, 19968, 137, 5, 0, 'candidate not move on near by office so not selected ', 137, '2024-08-05 05:49:30', 1),
(19195, 20511, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19196, 20510, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19197, 20510, 147, 7, 0, 'Fresher, communication is OK, ', 131, '2024-08-05 06:05:41', 1),
(19198, 20511, 147, 7, 0, 'Good communication and Good confident level', 131, '2024-08-05 06:07:38', 1),
(19199, 20494, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19200, 20494, 30, 7, 3, '20k suggested salary selected for rm we can try', 131, '2024-08-05 06:15:13', 1),
(19201, 20618, 59, 1, 0, NULL, 74, '2024-08-05 06:17:23', 1),
(19202, 20608, 51, 4, 0, 'moved to final round', 140, '2024-08-05 06:30:47', 1),
(19203, 20234, 51, 4, 0, 'moved ', 140, '2024-08-05 06:31:10', 1),
(19204, 20510, 59, 3, 0, 'Communication ok fresher came along with friend long run doubts can give a try anc check', 147, '2024-08-05 06:32:30', 1),
(19205, 20511, 59, 3, 0, 'Communication Ok Fresher for our roles Can give a try and check in 7 days', 147, '2024-08-05 06:37:53', 1),
(19206, 20591, 60, 1, 0, NULL, 149, '2024-08-05 07:15:35', 1),
(19207, 20637, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19208, 20638, 19, 5, 0, 'not fit for sales and tele calling too', 104, '0000-00-00 00:00:00', 1),
(19209, 20641, 105, 5, 0, 'candidate communication and performance is not good also like little bit attitude charater,then sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19210, 20639, 51, 5, 0, 'i have moved this profile to karthika and she as rejected', 104, '0000-00-00 00:00:00', 1),
(19211, 20494, 60, 1, 0, NULL, 30, '2024-08-06 11:31:52', 1),
(19212, 20640, 137, 5, 0, 'candidate only interest on it related work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19213, 20640, 137, 5, 0, 'candidate only interest on it related work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19214, 20635, 149, 5, 0, 'not suitable for sales', 104, '0000-00-00 00:00:00', 1),
(19215, 20368, 57, 5, 0, 'candidate not suitable for sales profile , communication not good field work not interest', 104, '0000-00-00 00:00:00', 1),
(19216, 20646, 139, 7, 0, 'Selected for Rm profile \nhaving some exp in sales\nwill try for rm profile \nsal exp 20k above \nimmediate joiner ', 104, '0000-00-00 00:00:00', 1),
(19217, 20645, 89, 7, 0, 'Selected , 14.5 k salary my suggestion ', 104, '0000-00-00 00:00:00', 1),
(19218, 20643, 105, 7, 0, 'candidate communication and performance is good ,also She Performed Well In The INterview process,will check with her in the training period', 104, '0000-00-00 00:00:00', 1),
(19219, 20644, 137, 7, 0, 'candidate voice and communication is ok and she past work 6 month work for hdfc credit card and insurance also so i will try for 7 days trainng period ', 104, '0000-00-00 00:00:00', 1),
(19220, 20597, 139, 5, 0, 'Dont have communication skill and basic knowledge ', 104, '0000-00-00 00:00:00', 1),
(19221, 20652, 57, 5, 0, 'candidate not suitable for sales profile , communication not good field work not interest', 104, '0000-00-00 00:00:00', 1),
(19222, 20653, 57, 5, 0, 'candidate not suitable for sales profile , communication not good field work not interest', 104, '0000-00-00 00:00:00', 1),
(19223, 20647, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19224, 20648, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19225, 20645, 59, 3, 0, 'Fresher for our role Need to analyse in 7 days training and confirm', 89, '2024-08-06 04:22:23', 1),
(19226, 20642, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19227, 20643, 59, 5, 0, 'Not open with the Distance too long she is from kattangulathur Father not ok wiht this', 105, '2024-08-06 04:57:51', 1),
(19228, 20644, 59, 3, 0, '6 months Exp in Calling have the documents 5050 sustainability need to analyse in 7 days', 137, '2024-08-06 05:29:11', 1),
(19229, 20646, 18, 7, 2, 'Selected for Gnanashekar Team. ImmedeateJoiner. Need to check his last salary and Expected Take home is 22k pm but can negotiate and do the needful.', 139, '2024-08-06 06:08:04', 1),
(19230, 20646, 60, 1, 0, NULL, 18, '2024-08-06 07:12:47', 1),
(19231, 20425, 60, 1, 0, NULL, 138, '2024-08-07 11:39:03', 1),
(19232, 20637, 60, 1, 0, NULL, 138, '2024-08-07 11:43:24', 1),
(19233, 20667, 19, 5, 0, 'not willing to work in saturday and sunday', 104, '0000-00-00 00:00:00', 1),
(19234, 20655, 105, 5, 0, 'candidate communication is not good ,also she have pronunciation issue and voice is very low.', 104, '0000-00-00 00:00:00', 1),
(19235, 20669, 57, 5, 0, 'candidate not suitable for sales profile , communication not good field work not interest', 104, '0000-00-00 00:00:00', 1),
(19236, 20658, 89, 7, 0, 'Hi suggest fresher salary', 104, '0000-00-00 00:00:00', 1),
(19237, 20670, 102, 5, 0, 'Candidate looking for customer support job ', 104, '0000-00-00 00:00:00', 1),
(19238, 20650, 131, 4, 0, 'Good communication and confident level have Experience in sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(19239, 20650, 30, 7, 4, 'suggested upto 5lac ctc selected for rm', 131, '2024-08-07 01:04:41', 1),
(19240, 20628, 29, 7, 3, 'Sarath Team, will join in sept after notice period, salary 3.6 lac ( if completed 2 lac life and 10 MF in sept 30 day from joining can increase to 4 lac ctc', 51, '2024-08-07 01:07:30', 1),
(19241, 20608, 29, 7, 3, 'Sarath Team, 21k Net Salary, ', 51, '2024-08-07 01:12:03', 1),
(19242, 20234, 29, 7, 2, 'Sarath team, 26k Gross salary, has to do 1.5 lac life and 10k mf before sept then can increase to 28k gross', 51, '2024-08-07 01:19:20', 1),
(19243, 20488, 29, 5, 1, 'cannot trust, false information, not fit', 51, '2024-08-07 01:20:16', 1),
(19244, 20665, 74, 5, 0, 'LONG DISTANCE EXPECTED HIGH', 104, '0000-00-00 00:00:00', 1),
(19245, 20631, 74, 5, 0, 'NOT FIT FOR SALES ', 104, '0000-00-00 00:00:00', 1),
(19246, 20663, 131, 4, 0, 'Communication Is OK and Have Experience in sales can process for next Round', 126, '0000-00-00 00:00:00', 1),
(19247, 20663, 147, 7, 0, 'Communication is Ok ok, he has Experience in health insurance ', 131, '2024-08-07 02:10:10', 1),
(19248, 20672, 137, 5, 0, 'candidate mainly focus on our father business , just part time looking for the job so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19249, 20659, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19250, 20664, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19251, 20666, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19252, 20668, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19253, 20675, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19254, 20674, 131, 2, 0, 'fresher, communication is OK, zero knowledge about sales ', 126, '0000-00-00 00:00:00', 1),
(19255, 20673, 131, 2, 0, 'Fresher, Communication Is OK, Zero Knowledge About Sales ', 126, '0000-00-00 00:00:00', 1),
(19256, 20663, 59, 3, 0, 'Communication but no sustainability in his previous exp can give a try and check need to analyse in 7 days training ', 147, '2024-08-07 06:56:15', 1),
(19257, 20678, 105, 5, 0, 'candidate communication and pereformance is low and his slang is different.then his voice is very low', 104, '0000-00-00 00:00:00', 1),
(19258, 20677, 149, 7, 0, 'selected', 104, '0000-00-00 00:00:00', 1),
(19259, 20608, 59, 1, 0, NULL, 29, '2024-08-08 12:01:12', 1),
(19260, 20628, 59, 3, 0, 'communication Ok have relevant Exp can give a try in our role Gaurav Sir Commitment 2L Life plus 10MF in Oct then 40K increment in Annual', 29, '2024-08-08 12:03:52', 1),
(19261, 20681, 86, 5, 0, 'Ask 80% hike from previous CTC', 104, '0000-00-00 00:00:00', 1),
(19262, 20234, 59, 3, 0, 'Communication Ok can give a try in our roles and check Gaurav Sir Commitment 1.5 L Life plus 10MF then 2K increase in MCTC', 29, '2024-08-08 12:09:54', 1),
(19263, 20679, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19264, 20680, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19265, 20650, 60, 1, 0, NULL, 30, '2024-08-08 01:08:41', 1),
(19266, 20683, 19, 2, 0, 'Hold', 104, '0000-00-00 00:00:00', 1),
(19267, 20677, 60, 1, 0, NULL, 149, '2024-08-08 01:35:25', 1),
(19268, 20685, 51, 4, 0, 'Moved for second round', 104, '0000-00-00 00:00:00', 1),
(19269, 20425, 18, 7, 3, 'Selected for Jagadeesh Team. Can give 4.5L if he negotiate can give 4.6 and Immedeate Joiner. Experience candidate and plaease take approval for salary', 59, '2024-08-08 04:57:09', 1),
(19270, 20589, 131, 4, 0, 'Good communication and confident level can Process for next round', 126, '0000-00-00 00:00:00', 1),
(19271, 20589, 30, 7, 2, 'selected for rm suggested ctc 23 to 25k', 131, '2024-08-08 05:17:31', 1),
(19272, 20658, 59, 1, 0, NULL, 89, '2024-08-08 06:08:36', 1),
(19273, 20676, 11, 5, 0, 'rejected', 60, '0000-00-00 00:00:00', 1),
(19274, 20685, 29, 7, 2, 'Sarath, 21k net salary', 51, '2024-08-08 07:00:13', 1),
(19275, 20688, 137, 7, 0, 'candidate pastexp is starhealth telecalling 6 months and previos tele sales exp also but not proper relaving , but voice and communication also ok , but exp is 20k pre month , so will check 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19276, 20689, 102, 5, 0, 'Candidate interested in iT Field ', 104, '0000-00-00 00:00:00', 1),
(19277, 20693, 19, 5, 0, 'expect high salary', 104, '0000-00-00 00:00:00', 1),
(19278, 20692, 105, 5, 0, 'candidate communication and performance is not good,also pronunciation is not good', 104, '0000-00-00 00:00:00', 1),
(19279, 20698, 131, 5, 0, 'Lack of Communication', 126, '0000-00-00 00:00:00', 1),
(19280, 20687, 149, 7, 0, 'selected - try for training period', 104, '0000-00-00 00:00:00', 1),
(19281, 20701, 51, 4, 0, 'moved to second round ', 104, '0000-00-00 00:00:00', 1),
(19282, 20671, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(19283, 20695, 19, 7, 0, 'selected ctc 16k and kindly check her exisiting work exp then proceed joining process', 104, '0000-00-00 00:00:00', 1),
(19284, 20700, 89, 7, 0, 'Selected already experience person my suggestion 16 k', 104, '0000-00-00 00:00:00', 1),
(19285, 20697, 105, 5, 0, 'candidate communication and slang is not good .also she did not performed well in the interview', 104, '0000-00-00 00:00:00', 1),
(19286, 20701, 29, 5, 0, 'Not Fit', 51, '2024-08-09 12:55:02', 1),
(19287, 20700, 59, 1, 0, NULL, 89, '2024-08-09 01:40:05', 1),
(19288, 20688, 59, 1, 0, NULL, 137, '2024-08-09 02:58:42', 1),
(19289, 20682, 102, 7, 0, 'Communication and convincing skill better will try training period once confirmed DOJ ', 104, '0000-00-00 00:00:00', 1),
(19290, 20695, 59, 1, 0, NULL, 19, '2024-08-09 04:14:11', 1),
(19291, 20682, 59, 5, 0, 'Not interested in the job roles travelled back to native not open to join', 102, '2024-08-09 04:39:42', 1),
(19292, 20589, 60, 1, 0, NULL, 30, '2024-08-09 06:43:21', 1),
(19293, 20707, 149, 7, 0, 'selected based on work interest,let try for 7 days', 104, '0000-00-00 00:00:00', 1),
(19294, 20713, 105, 5, 0, 'candidate communication and performance is not good .also he did not spoke much more in the interview then his voice is very low', 104, '0000-00-00 00:00:00', 1),
(19295, 20712, 19, 7, 0, 'job needed person lets try 7 days and confirm', 104, '0000-00-00 00:00:00', 1),
(19296, 20710, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19297, 20696, 89, 7, 0, 'Experienced. my suggestion 18 k ', 104, '0000-00-00 00:00:00', 1),
(19298, 20707, 59, 1, 0, NULL, 149, '2024-08-10 12:00:54', 1),
(19299, 20711, 138, 4, 0, 'Experienced in Life insurance industry around 2 to 3 years then Communication skills good and Attitude is fine then Mathematic skills medium so overall candidate status is selected but waiting for 2nd round result ', 104, '0000-00-00 00:00:00', 1),
(19300, 20712, 59, 5, 0, 'Too long distance - not much comfort with the timings', 19, '2024-08-10 12:22:11', 1),
(19301, 20716, 74, 5, 0, 'expected high', 104, '0000-00-00 00:00:00', 1),
(19302, 20714, 102, 5, 0, 'Communication and convincing skills is low and interested in Customer support ', 104, '0000-00-00 00:00:00', 1),
(19303, 20717, 149, 7, 0, 'selected - well do at interview ', 104, '0000-00-00 00:00:00', 1),
(19304, 20704, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19305, 20708, 131, 5, 0, 'Fresher, Lack of Communication And Location Issue ', 126, '0000-00-00 00:00:00', 1),
(19306, 20705, 131, 5, 0, 'Fresher, Lagging in communication and Location Issue ', 126, '0000-00-00 00:00:00', 1),
(19307, 20704, 147, 7, 0, 'Fresher, good Communication skill and basic knowledge about insurance', 131, '2024-08-10 01:13:13', 1),
(19308, 20699, 51, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19309, 20696, 59, 3, 0, 'Communication Ok have exp but not relevant one 5050 Can give a try and check', 89, '2024-08-10 03:14:37', 1),
(19310, 20706, 131, 4, 0, 'Good communication and confident level can process for next', 126, '0000-00-00 00:00:00', 1),
(19311, 20706, 30, 7, 0, 'Communication Is Ok, Have In Sales Experience Suggested 22k Ctc Selected For Rm We Can Try', 131, '2024-08-10 03:31:02', 1),
(19312, 20704, 59, 1, 0, NULL, 147, '2024-08-10 06:02:00', 1),
(19313, 20722, 89, 5, 0, 'no basic skil', 104, '0000-00-00 00:00:00', 1),
(19314, 20719, 105, 5, 0, 'candidate communication and performance is low ,also voice is low and long distance sustainable is doubt', 104, '0000-00-00 00:00:00', 1),
(19315, 20725, 51, 8, 0, 'on attended for interview', 104, '0000-00-00 00:00:00', 1),
(19316, 20724, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19317, 20726, 11, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(19318, 20723, 74, 7, 0, 'He is ok with the profile completed BE mechanical- worked in a industial sector for two years, after came and join in thanjavur excela technologies uS shift 3 years experience, due to father health issue releived the job, speak well and have exposure....fit for team,,,, but already marriage fixed...after 3 month going to married ,,,salary expected 15k have laptop...kindly cross check once before joining...about sustainability', 104, '0000-00-00 00:00:00', 1),
(19319, 20727, 74, 5, 0, 'SUSTAINABILITY ISSUE', 104, '0000-00-00 00:00:00', 1),
(19320, 20728, 74, 5, 0, 'NOT FIT FOR TEAM', 104, '0000-00-00 00:00:00', 1),
(19321, 20730, 149, 5, 0, 'not suitable for sales ', 104, '0000-00-00 00:00:00', 1),
(19322, 20729, 137, 7, 0, 'candidate voice and communication good , he past 6 months work from garments agent, so try or 7 days training period and exp is 16k', 104, '0000-00-00 00:00:00', 1),
(19323, 20649, 105, 5, 0, 'candidate performance and communication little bit Only good ,but sutainable doubt also expected high package', 104, '0000-00-00 00:00:00', 1),
(19324, 20634, 131, 5, 0, 'Lack of communication and salary expectation is high', 126, '0000-00-00 00:00:00', 1),
(19325, 20736, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19326, 20737, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19327, 20738, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19328, 20732, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19329, 20733, 74, 5, 0, 'NOT SUITE FOR TELESALES', 104, '0000-00-00 00:00:00', 1),
(19330, 20734, 74, 5, 0, 'UNFIT FOR TELESALES', 104, '0000-00-00 00:00:00', 1),
(19331, 20735, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19332, 20711, 18, 7, 0, 'Selected for Jagadeesh Team and Expected CTC Is 25k In hand. Please speak and confirmand immed joiner with insurance experience', 138, '2024-08-12 02:52:40', 1),
(19333, 20729, 59, 5, 0, 'communication Ok Have exp as a supervisor in the mechanical domain career gap due to father health issue looking for Inbound calls only and not open for Sales calls and not open to handle the pressure also doing IT course simultaneously', 137, '2024-08-12 03:12:58', 1),
(19334, 20711, 60, 1, 0, NULL, 18, '2024-08-12 04:39:08', 1),
(19335, 20723, 59, 3, 0, 'Communication Ok fresher for our roles have exp in other domain seems to be confident but long run doubts a lot Can give a try and check', 74, '2024-08-12 05:27:49', 1),
(19336, 20742, 19, 5, 0, 'salary expectation was too high and he is not fit for that', 104, '0000-00-00 00:00:00', 1),
(19337, 20743, 149, 5, 0, 'candidate was not okay with work timing and salary', 104, '0000-00-00 00:00:00', 1),
(19338, 20740, 57, 5, 0, 'Candidate is unfit for sales. Voice not good and communication not well', 104, '0000-00-00 00:00:00', 1),
(19339, 20746, 137, 5, 0, 'candidate mainly looking for non voice process and not interest to field work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19340, 20748, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19341, 20747, 86, 5, 0, 'Not satisfied. Ask 80% hike from previous ctc.', 104, '0000-00-00 00:00:00', 1),
(19342, 20749, 102, 7, 0, 'he is already doing own business but currently quick , financial issue orel communication and convincing skills is good then once confirm dOJ ', 104, '0000-00-00 00:00:00', 1),
(19343, 20752, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(19344, 20753, 105, 5, 0, 'Candidate communication and performance is very low,also voice is low and lazy type ', 104, '0000-00-00 00:00:00', 1),
(19345, 20754, 140, 5, 0, 'No proper experince and no sales skills', 104, '0000-00-00 00:00:00', 1),
(19346, 20749, 59, 3, 0, 'Communication Ok Can give a try and check in the 7 days training need to be trained a lot', 102, '2024-08-13 03:21:29', 1),
(19347, 20758, 9, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19348, 20757, 74, 5, 0, 'not fit for telesales', 104, '0000-00-00 00:00:00', 1),
(19349, 20762, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19350, 20651, 89, 5, 0, 'silent person and not fit for the job', 104, '0000-00-00 00:00:00', 1),
(19351, 20764, 86, 5, 0, 'Behalf of me Gnanasekar looking this candidate, he rejected the candidate due to non performing well. ', 104, '0000-00-00 00:00:00', 1),
(19352, 20765, 139, 5, 0, 'Rejected he looking for operation jobs ', 104, '0000-00-00 00:00:00', 1),
(19353, 20633, 105, 7, 0, 'candidate communication and performance is good ,will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(19354, 20766, 11, 7, 0, 'shortliseted \nexpected salary 18k to 20k \nneed to surve notice period ', 104, '0000-00-00 00:00:00', 1),
(19355, 20633, 59, 3, 0, 'Communication Ok Have Exp in paisa bazarr for an year in business loan can give a try and check in 7 days training for your roles', 105, '2024-08-16 04:33:51', 1),
(19356, 20774, 149, 7, 0, 'selected -interested in working for sales', 104, '0000-00-00 00:00:00', 1),
(19357, 20775, 137, 5, 0, 'candidate very long distance and communication also very low so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19358, 20776, 19, 7, 0, 'syed Select the candidate lets try 7 days then we will confirm ', 104, '0000-00-00 00:00:00', 1),
(19359, 20770, 89, 5, 0, 'no basic skill. ', 104, '0000-00-00 00:00:00', 1),
(19360, 20777, 89, 5, 0, 'Average skill person but not fit for the job . ', 104, '0000-00-00 00:00:00', 1),
(19361, 20779, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19362, 20773, 140, 5, 0, 'no sales skills', 104, '0000-00-00 00:00:00', 1),
(19363, 20774, 59, 5, 0, 'not comfort to work in telecalling role looking for customer support role only focus for inbound calls only and not open for target not much comfort in timing as well', 149, '2024-08-17 12:29:54', 1),
(19364, 20687, 59, 1, 0, NULL, 149, '2024-08-17 12:43:18', 1),
(19365, 20717, 59, 5, 0, 'Not comfort to work in Sales Calling not interested\n', 149, '2024-08-17 12:44:47', 1),
(19366, 20781, 86, 5, 0, 'Sriram sir rejected this candidate due to high salary package.', 104, '0000-00-00 00:00:00', 1),
(19367, 20788, 105, 5, 0, 'candidate communication is little bit good, but his performance in the interview is low', 104, '0000-00-00 00:00:00', 1),
(19368, 20794, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19369, 20797, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19370, 20800, 139, 5, 0, 'Not fit for RM profile \ndont have communication skill', 104, '0000-00-00 00:00:00', 1),
(19371, 20425, 60, 1, 0, NULL, 18, '2024-08-19 12:23:15', 1),
(19372, 20806, 51, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19373, 20802, 140, 4, 0, 'Good communication skills and confident with her answers, but expecting higher salary', 104, '0000-00-00 00:00:00', 1),
(19374, 10374, 138, 5, 0, 'he candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', 104, '0000-00-00 00:00:00', 1),
(19375, 20790, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19376, 20798, 74, 5, 0, 'unfit for telesales', 104, '0000-00-00 00:00:00', 1),
(19377, 20791, 74, 7, 0, 'he is suite for telecalling, worked 1 month in quality control, father painter, brother doing BA english,, he is completed bsc chemistry,,,and applied for msc part time,,,have laptop expected 12 to 13k immeediate joining,,,kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19378, 20799, 74, 7, 0, 'she is ok with the profile will to learn and perform, have exposure about the process,,,father driver earn 30k,,,,brother work in IT eran 25k...rental house only,,,,have laptop,,,,expected 10 to 15k,,,,,imeediate joining,,,,kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19379, 20804, 89, 7, 0, 'Fresher, correct basic skill . Expected salary 16 k. As for the training period, it remains to be seen', 104, '0000-00-00 00:00:00', 1),
(19380, 20801, 137, 7, 0, 'candidate communication and vocie also good , completed course in sales and marketing , so try for 7days training period', 104, '0000-00-00 00:00:00', 1),
(19381, 20808, 86, 4, 0, 'Good communication. Selected for next round', 104, '0000-00-00 00:00:00', 1),
(19382, 20809, 19, 2, 0, 'Kindly hold the candidate', 104, '0000-00-00 00:00:00', 1),
(19383, 20786, 57, 7, 0, 'candidate is ok ,provide freshers salary. pls check he interested IT also pls check and give the joining date thanks', 104, '0000-00-00 00:00:00', 1),
(19384, 20810, 149, 5, 0, 'not s0 good at speaking', 104, '0000-00-00 00:00:00', 1),
(19385, 20791, 59, 3, 0, 'Communication Ok Fresher can give a try and check in 7 days and confirm', 74, '2024-08-19 03:43:48', 1),
(19386, 20799, 59, 3, 0, 'Communication Ok Fresher Can give a try check neeed to analyse and confirm in 7 days training', 74, '2024-08-19 03:45:53', 1),
(19387, 20706, 59, 3, 0, 'Communication Ok fresher for our roles have exp in Admin Need to train and analyse in 7 days training ', 30, '2024-08-19 03:58:26', 1),
(19388, 20776, 59, 1, 0, NULL, 19, '2024-08-19 04:35:50', 1),
(19389, 20458, 19, 5, 0, 'not fit for sales and not fit field work', 19, '2024-08-19 04:37:22', 1),
(19390, 20807, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19391, 20683, 19, 5, 0, 'long distance and not much look was good(because he need to go field work)', 19, '2024-08-19 04:42:47', 1),
(19392, 20804, 59, 3, 0, 'Communication Ok Fresher Can be trained in our roles have basic knowledge can be analysed in 7 days training', 89, '2024-08-19 05:05:31', 1),
(19393, 20786, 59, 5, 0, 'Had a detailed discussion he much comfort to work in non voice process simultaneously looking for IT positions,if in between he gets an opportunity in that then he will move on', 57, '2024-08-19 05:06:00', 1),
(19394, 20808, 18, 7, 3, 'Mythiriyan Selected for Mani team. Current CTC is 3.84 and expected the same but can negotiate at 3.5L and can give a target for 4 months for 50k hike. Immediate Joiner.', 86, '2024-08-19 06:11:45', 1),
(19395, 20801, 59, 3, 0, 'Communication Ok Fresher Profile Can give a try and check in 7 days training Can be trained ', 137, '2024-08-20 09:51:40', 1),
(19396, 20818, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19397, 20820, 89, 5, 0, 'He left the job because there was too much pressure in the place where he had already worked. So not fit for this job', 104, '0000-00-00 00:00:00', 1),
(19398, 20821, 19, 7, 0, 'She speaks well and comunication also good so lets try 7 days ctc 16k,join immediately', 104, '0000-00-00 00:00:00', 1),
(19399, 20690, 149, 5, 0, 'not have stability', 104, '0000-00-00 00:00:00', 1),
(19400, 20819, 71, 4, 0, 'Selected ', 104, '0000-00-00 00:00:00', 1),
(19401, 20822, 89, 7, 0, 'Selected. Already working at HDFC Bank back and team 2 month only. Will analyse the training period', 104, '0000-00-00 00:00:00', 1),
(19402, 20823, 74, 7, 0, 'she is ok with the profile...worked 5 months in bajaj loan section telecalling, due to health condition not continue in chennai..,,father farmer two brothers studied in college, ,,,, from home 37 km around 50mins travel ....she is already travel in college time also in out bus....she is ok with that kindly cross check in that area only.....laptop ready to arranged required 1 month time due to financial condition,,,,,immediate joining,,,,expected 12 to 15k......have exposure and adaptive type..kindly check once', 104, '0000-00-00 00:00:00', 1),
(19403, 20822, 59, 3, 0, 'Communication Ok Need to check and confirm in the 7 days training ', 89, '2024-08-20 12:50:20', 1),
(19404, 20828, 57, 5, 0, 'Candidate is not ok, unfit for the sales. communication not good', 104, '0000-00-00 00:00:00', 1),
(19405, 20808, 60, 1, 0, NULL, 18, '2024-08-20 01:17:33', 1),
(19406, 20829, 137, 5, 0, 'candidate communicaioa and voice not clear so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19407, 20796, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19408, 20831, 105, 5, 0, 'candidate voice is low also his communication and performance is is not good ,then sustainabil doubt', 104, '0000-00-00 00:00:00', 1),
(19409, 20812, 19, 5, 0, 'not fit for sales and not speak well', 104, '0000-00-00 00:00:00', 1),
(19410, 20830, 138, 4, 0, 'Experienced in Bank bazzar and good Communication Skills and Mathematic Skills medium... Personal attitude also fine finally overall skills also good but we need to Negotiate only salary... so move to Sriram sir and Decide', 104, '0000-00-00 00:00:00', 1),
(19411, 20789, 140, 4, 0, 'Selected for next round, good communication skills', 104, '0000-00-00 00:00:00', 1),
(19412, 20815, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(19413, 20814, 131, 5, 0, 'Sustainability Doubt lack of knowledge about the insurance', 126, '0000-00-00 00:00:00', 1),
(19414, 20819, 60, 1, 0, NULL, 71, '2024-08-20 03:21:51', 1),
(19415, 20821, 59, 1, 0, NULL, 19, '2024-08-20 03:38:22', 1),
(19416, 20823, 59, 3, 0, 'Communication Ok have 6 months PL exp can be trained in our roles too long distance she is open to travel can give a try and check ', 74, '2024-08-20 03:43:54', 1),
(19417, 20826, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19418, 20835, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19419, 20825, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19420, 20824, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19421, 20830, 18, 7, 0, 'Arish Selected for Jagadeesh Team. Can offer 3.5L as ctc and Immediate joiner.', 138, '2024-08-20 05:50:20', 1),
(19422, 20830, 60, 1, 0, NULL, 18, '2024-08-20 06:03:31', 1),
(19423, 20789, 29, 7, 3, 'Esales - Check on CTC and confirm with candidate for joining, ', 140, '2024-08-20 06:06:20', 1),
(19424, 20802, 29, 7, 3, 'Porrselvan team,', 140, '2024-08-20 06:07:28', 1),
(19425, 20842, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19426, 20840, 149, 5, 0, 'having interest in banking jobs ', 104, '0000-00-00 00:00:00', 1),
(19427, 20843, 57, 5, 0, 'cANDIDATE NOT SUITABLE FOR SALES PROFILE, SUSTAINABILITY', 104, '0000-00-00 00:00:00', 1),
(19428, 20846, 140, 5, 0, 'Rejected due to concincing skills', 104, '0000-00-00 00:00:00', 1),
(19429, 20847, 19, 5, 0, 'Telugu Girl and not Speak tamil well and not try to speak also ,slang also not good', 104, '0000-00-00 00:00:00', 1),
(19430, 20848, 102, 5, 0, 'candidate already working in bill counter so, right now looking just one job but , communication skill is lower and not fit in sales ', 104, '0000-00-00 00:00:00', 1),
(19431, 20853, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19432, 20832, 71, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(19433, 20852, 139, 5, 0, 'Not fit for sales profession', 104, '0000-00-00 00:00:00', 1),
(19434, 20857, 89, 7, 0, '1 year experience from cams . Previous salary 16 k. So I analyse 7 days training.', 104, '0000-00-00 00:00:00', 1),
(19435, 20860, 19, 5, 0, 'not try to speak ,i gave time to prepare but she not come again', 104, '0000-00-00 00:00:00', 1),
(19436, 20865, 149, 7, 0, 'selected having interest in sales lets try and see at training period', 104, '0000-00-00 00:00:00', 1),
(19437, 20864, 137, 5, 0, 'candidate future plan is SAP studing , so that reason to searching for work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19438, 20526, 60, 1, 0, NULL, 18, '2024-08-21 03:50:44', 1),
(19439, 20857, 59, 1, 0, NULL, 89, '2024-08-21 04:03:01', 1),
(19440, 20863, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19441, 20861, 140, 5, 0, 'Not good for saes job, no prior experience also', 104, '0000-00-00 00:00:00', 1),
(19442, 20865, 59, 3, 0, 'Fresher Can be trained in our roles Communication Ok Need to analyse in 7 days training', 149, '2024-08-21 04:57:15', 1),
(19443, 20802, 59, 3, 0, 'Communication Ok can give a try and check with the training Supposed to join on 06 sept but got extended due to her personal issued', 29, '2024-08-21 05:20:44', 1),
(19444, 20789, 59, 3, 0, 'Communication verified the documents not clear with the documents recent hike and she left the previous one', 29, '2024-08-21 05:22:39', 1),
(19445, 20773, 59, 3, 0, 'Communication Ok documents not clear with the exp mentioned in the profile based on the manager approval provided with the joining need to check in 7 days and confirm', 29, '2024-08-21 05:23:55', 1),
(19446, 20805, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19447, 20873, 19, 5, 0, 'not willing to work 20% field work', 104, '0000-00-00 00:00:00', 1),
(19448, 20875, 102, 7, 0, 'candidate communication and convincing is good will training period and once confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(19449, 20866, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19450, 20870, 149, 7, 0, 'selected having interest and experience in sales and 16000 ctc', 104, '0000-00-00 00:00:00', 1),
(19451, 20869, 137, 7, 0, 'candidate communication and voice also good , fresher, he come from moolakadi location traviling bus only , so try for 7 days trining and exp salary is 15k ', 104, '0000-00-00 00:00:00', 1),
(19452, 20876, 11, 5, 0, 'low sales skills \n2nd round interviewed by gaurav sir ', 104, '0000-00-00 00:00:00', 1),
(19453, 20877, 105, 5, 0, 'Candidate Communication and performance is good but he is preparing for TNPSC exam also he said he nee job for temporarly.so sutain is dount', 104, '0000-00-00 00:00:00', 1),
(19454, 20870, 59, 3, 0, 'Communication Ok fresher for roles have other exp can be trained in our role need to check and analyse in 7 days training', 149, '2024-08-22 11:59:01', 1),
(19455, 20694, 131, 4, 0, 'Good communication and confident level can process for next', 126, '0000-00-00 00:00:00', 1),
(19456, 20772, 131, 4, 0, 'Good Communication And Confident Level Can Process For Next', 126, '0000-00-00 00:00:00', 1),
(19457, 20694, 30, 7, 4, 'suggested ctc upto 30k cross check sustainability good communication skill ', 131, '2024-08-22 12:02:48', 1),
(19458, 20772, 30, 7, 4, 'suggested in hand 24k cross check previous pay immediate joining for rm', 131, '2024-08-22 12:03:18', 1),
(19459, 20880, 89, 5, 0, 'Experienced but not fit for this job', 104, '0000-00-00 00:00:00', 1),
(19460, 20871, 139, 4, 0, 'Selected for rm profile \nhaving voice process exp\ndont have exp in slaes\nwe can try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(19461, 20872, 86, 5, 0, 'No proper appearance. Low convincing skill.', 104, '0000-00-00 00:00:00', 1),
(19462, 20882, 71, 4, 0, 'Selected for next round ', 104, '0000-00-00 00:00:00', 1),
(19463, 20879, 138, 5, 0, 'he candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', 104, '0000-00-00 00:00:00', 1),
(19464, 20884, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19465, 20869, 59, 3, 0, 'Communication Ok Fresher for Sales Roles have Accounts intern exp Mum is an LIC agent need to have the data secrecy', 137, '2024-08-22 04:00:16', 1),
(19466, 20886, 11, 5, 0, 'not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(19467, 20766, 60, 1, 0, NULL, 11, '2024-08-22 04:54:06', 1),
(19468, 20875, 59, 3, 0, 'Communication OK Can give a try in our roles have part time store exp can be trained', 102, '2024-08-22 05:10:04', 1),
(19469, 20882, 18, 7, 0, 'Pavithra Selected for Santhosh team and Offered 3.5L CTC. Immediate Joiner.', 71, '2024-08-22 05:12:21', 1),
(19470, 20874, 74, 7, 0, 'she is ok with the profile ,,father left ,,,,already worked 1 and half year in us base excella technologies..facing accident and 6 months gap...after he joined swiggy customer care 6 month due to timing issue she releived,,,,,have laptop,,,1 hour travel from home immediate joining,,,12 to 13k expected kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19471, 20827, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19472, 20868, 131, 4, 0, 'Fresher, Communication is OK can process for next', 126, '0000-00-00 00:00:00', 1),
(19473, 20827, 147, 7, 0, 'Good communication and confident, she is fresher we can process ', 131, '2024-08-22 06:43:57', 1),
(19474, 20868, 147, 7, 0, 'communication is ok, fresher, we can give a try ', 131, '2024-08-22 06:44:39', 1),
(19475, 20827, 59, 1, 0, NULL, 147, '2024-08-22 06:50:20', 1),
(19476, 20868, 59, 1, 0, NULL, 147, '2024-08-22 06:53:08', 1),
(19477, 20896, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19478, 20882, 60, 1, 0, NULL, 18, '2024-08-23 10:17:51', 1),
(19479, 20898, 86, 5, 0, 'No laptop and No Pressure handling skill. ', 104, '0000-00-00 00:00:00', 1),
(19480, 20694, 60, 1, 0, NULL, 30, '2024-08-23 11:11:31', 1),
(19481, 20772, 60, 1, 0, NULL, 30, '2024-08-23 11:12:48', 1),
(19482, 20897, 138, 5, 0, 'Poor Communication Skills and Limited Technical Expertise...Lack of Problem-Solving Abilities and finally Unprepared and Disorganized so not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19483, 20899, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19484, 20809, 19, 2, 0, 'Hold', 19, '2024-08-23 11:40:47', 1),
(19485, 20903, 19, 7, 0, 'Selected job needed person ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19486, 20895, 11, 7, 0, 'kindly follow the gaurav sir feedback ', 104, '0000-00-00 00:00:00', 1),
(19487, 20890, 149, 5, 0, 'rejected -not so interested', 104, '0000-00-00 00:00:00', 1),
(19488, 20903, 59, 1, 0, NULL, 19, '2024-08-23 12:42:14', 1),
(19489, 20871, 18, 1, 0, NULL, 139, '2024-08-23 12:45:43', 1),
(19490, 20904, 139, 5, 0, 'not fit for rm\nfresher', 104, '0000-00-00 00:00:00', 1),
(19491, 20905, 105, 7, 0, 'candidate communication is good ,but her performanc is little bit good ', 104, '0000-00-00 00:00:00', 1),
(19492, 20906, 89, 7, 0, 'good basic skill. freshers salary i Suggest. but long distance poonamalle', 104, '0000-00-00 00:00:00', 1),
(19493, 20906, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days', 89, '2024-08-23 02:59:56', 1),
(19494, 20909, 140, 5, 0, 'no convincing skills, no looking profiled also', 104, '0000-00-00 00:00:00', 1),
(19495, 20907, 139, 5, 0, 'dont have exp in sales\ndont have communication skills', 104, '0000-00-00 00:00:00', 1),
(19496, 20854, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19497, 20901, 89, 7, 0, 'already Experience at care health insurance 2023 to 24 .Because health Issues. Suggestion 17 k salary', 104, '0000-00-00 00:00:00', 1),
(19498, 20902, 89, 7, 0, 'already Experience at care health insurance 2023 to2024. Because of father health issue. i Suggestion 17 k salary', 104, '0000-00-00 00:00:00', 1),
(19499, 20908, 19, 7, 0, 'Speaks well already having working exp ctc 16k ', 104, '0000-00-00 00:00:00', 1),
(19500, 20915, 149, 7, 0, 'selected -interested in sales ', 104, '0000-00-00 00:00:00', 1),
(19501, 20908, 59, 3, 0, 'Communication Ok fresher for our roles can be trained need to analyse and confirm in 7 days', 19, '2024-08-24 11:01:09', 1),
(19502, 20911, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19503, 20910, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19504, 20918, 139, 5, 0, 'not fit for sales industry\ndont have communication skill', 104, '0000-00-00 00:00:00', 1),
(19505, 20921, 57, 5, 0, 'candidate is fresher, she married.distance too long. husband working same domain. unfit for voice process.reject the profile', 104, '0000-00-00 00:00:00', 1),
(19506, 20915, 59, 1, 0, NULL, 149, '2024-08-24 11:43:48', 1),
(19507, 20920, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19508, 20919, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19509, 20922, 140, 4, 0, 'Selected for karthika team', 104, '0000-00-00 00:00:00', 1),
(19510, 20917, 86, 5, 0, 'No proper communication. Missing the communication flow', 104, '0000-00-00 00:00:00', 1),
(19511, 20914, 149, 5, 0, 'not suitable for team', 104, '0000-00-00 00:00:00', 1),
(19512, 20924, 11, 7, 0, 'Ok for E sales', 104, '0000-00-00 00:00:00', 1),
(19513, 20916, 74, 7, 0, 'she is ok with the profile, father passed away ....so father job given to mother job archelogy department work in chennai 35k,,,package,,,,,she is worked in IT in chennai,,due to health issue she releived currently looking in thanjavur,,,,intrsted in telecalling,,have laptop,,expectd 13 to 15k.....immediate joining..', 104, '0000-00-00 00:00:00', 1),
(19514, 20889, 74, 5, 0, 'unfit for telesales', 104, '0000-00-00 00:00:00', 1),
(19515, 20902, 59, 1, 0, NULL, 89, '2024-08-24 03:30:34', 1),
(19516, 20901, 59, 1, 0, NULL, 89, '2024-08-24 03:31:44', 1),
(19517, 20685, 59, 3, 0, 'Communicaiton Ok Have Expin calling relevant domain but no documents can give a try and check based on gaurav sir commitment offered', 29, '2024-08-24 04:06:27', 1),
(19518, 20916, 59, 3, 0, 'Communication Fresher core IT candidate due to family situation open for Telecalling need to analyse in 7 days and check', 74, '2024-08-24 05:00:27', 1),
(19519, 20874, 59, 3, 0, 'Communication Ok Haev exp in calling but not a relevant one can give a try and check ', 74, '2024-08-24 05:06:42', 1),
(19520, 20855, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19521, 20905, 59, 3, 0, 'Communication Average Can give a try and check 3months calling exp in HDB but no documents for that need to analyse in 7 days', 105, '2024-08-26 08:02:03', 1),
(19522, 20937, 11, 5, 0, 'Rejected ', 104, '0000-00-00 00:00:00', 1),
(19523, 20941, 137, 5, 0, 'candidate is very local voice and not good communication and dress code is not proper so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19524, 20940, 19, 7, 0, 'her exisiting work exp was good but she jumped every 3 month but i speak with her clearly so she will work and she speaks good ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19525, 20939, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(19526, 20841, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19527, 20938, 19, 5, 0, 'not fit for sales and he did not speak properly', 104, '0000-00-00 00:00:00', 1),
(19528, 20942, 149, 7, 0, 'selected - she has having interest and done good but having some thoughts so lets try for 7 days training time', 104, '0000-00-00 00:00:00', 1),
(19529, 20948, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19530, 20936, 89, 7, 0, 'Current now Working Credit card sales . good skill and good customer handling skills. expect salary 19 to 20 k. Previous salary 18 k proof available', 104, '0000-00-00 00:00:00', 1),
(19531, 20944, 11, 7, 0, 'ok for e sales \nkindly confirm the CTC', 104, '0000-00-00 00:00:00', 1),
(19532, 20949, 140, 5, 0, 'Not having convincing skills', 104, '0000-00-00 00:00:00', 1),
(19533, 20952, 105, 5, 0, 'candidate communication and performance is Poor, also he did not spoke much more in the interview,this his voice is very low', 104, '0000-00-00 00:00:00', 1),
(19534, 20953, 140, 5, 0, 'No sales skills', 104, '0000-00-00 00:00:00', 1),
(19535, 20936, 59, 3, 0, 'Can give a try and check 5050 sustainability doubts ', 89, '2024-08-26 03:57:26', 1),
(19536, 20940, 59, 3, 0, 'Communication Ok 1.5yrs 4 companies not a relevant exp too 5050 profile reference profile with managers recommendation processing with the joining', 19, '2024-08-26 04:01:20', 1),
(19537, 20809, 19, 2, 0, 'hold', 19, '2024-08-26 04:08:26', 1),
(19538, 20946, 74, 7, 0, 'He is ok with the profile completed bE in parisutham college tnj....father doing business retail shop,,,,mother home maker,,,brother studied in srm chennai,,,,worked in swiggy telecalling 6 month due to iregular timing not continue in job getting 9k slary....and worked in a loan section trichy as WFH.....sales process and getting 7k salary.....required a good process in telecalling...expected 12 to 13k have laptop...immediate joining....have good communication kingly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19539, 20946, 59, 3, 0, 'Communication OK have few months exp in calling PL BL HL Can give a try in our roles\n', 74, '2024-08-26 04:33:17', 1),
(19540, 20942, 59, 3, 0, 'Ok 5050 profile Can give a a try recently married sustainability not sure need to check in 7days and confirm', 149, '2024-08-26 05:23:33', 1),
(19541, 20960, 19, 7, 0, 'settled person but he said i will work and his exisiting work too loaded so i hope he wroks here well lets try 7 days and i will confirm ctc 16k\n', 104, '0000-00-00 00:00:00', 1),
(19542, 20963, 139, 4, 0, 'Selected for rm role\nhaving good communication skill ', 104, '0000-00-00 00:00:00', 1),
(19543, 20959, 105, 5, 0, 'candidate Performance is good but Communication and pronuncication is not good also he is pursuving for MBA Finance and his past working experiance is 4 -4 months only,so sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(19544, 20962, 89, 7, 0, 'current now working at Credit card sales.2 years Experience for two Companyxquots expect 19 k', 104, '0000-00-00 00:00:00', 1),
(19545, 20961, 140, 4, 0, 'selected for next round', 104, '0000-00-00 00:00:00', 1),
(19546, 20958, 139, 5, 0, 'Rejected dont have communication skills ', 104, '0000-00-00 00:00:00', 1),
(19547, 20967, 89, 5, 0, 'silent person and no insurance Knowledge ', 104, '0000-00-00 00:00:00', 1),
(19548, 20960, 59, 3, 0, 'Communication Average need to open up a lot 5050 sustainability doubt need to analyse in 7 days and confirm', 19, '2024-08-27 12:05:03', 1),
(19549, 20809, 59, 5, 0, 'Not comfort to work in telecalling process', 19, '2024-08-27 12:16:41', 1),
(19550, 20809, 19, 7, 0, 'she speaks well and check with distance and she joined sep 2nd ifshe not joined means kindly reject her', 19, '2024-08-27 12:16:41', 1),
(19551, 20969, 89, 5, 0, 'NO BASIC SKILLS', 104, '0000-00-00 00:00:00', 1),
(19552, 20970, 57, 5, 0, 'Candidate is not ok.he unfit for sales profile. sustainability issue, 2yrs not worked.', 104, '0000-00-00 00:00:00', 1),
(19553, 20963, 18, 7, 3, 'Selected for Gnanashekar Team. Ready to Join from 1st. Current CTC is 3.5 and Expected 4L but can close at 3.85.', 139, '2024-08-27 01:07:04', 1),
(19554, 20968, 138, 4, 0, 'overall 1.6 years in sales and telecalling experience... little bit some gap in unemployed at 2022-2023 and mathematic skills and personal attitude skills are good so selected for next round and need to negotiate the salary and confirm from sriram', 104, '0000-00-00 00:00:00', 1),
(19555, 20974, 71, 4, 0, 'Move to next round ', 104, '0000-00-00 00:00:00', 1),
(19556, 20968, 18, 7, 3, 'Selected for Jagadeesh Team.Offered 3L CTC.Immedeate Joiner', 138, '2024-08-27 03:24:44', 1),
(19557, 20975, 149, 5, 0, 'no stability in old jobs', 104, '0000-00-00 00:00:00', 1),
(19558, 20971, 138, 4, 0, 'Communication Skills and Mathematic Skills are Good... Personal attutide also fine finally skills also good but we need to Negotiate only salary... so move to Sriram sir and Decide', 104, '0000-00-00 00:00:00', 1),
(19559, 20976, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19560, 20962, 59, 3, 0, '5050 profile sustainability doubts in this profile came along with her friend', 89, '2024-08-27 04:24:58', 1),
(19561, 20971, 18, 7, 3, 'Monika Selected for jagadeesh Team. Ready to Join on 5th Current CTC is 24 and Expected 28 Can easily negotiate with 10 t0 15% hike from Last CTC...', 138, '2024-08-27 05:20:16', 1),
(19562, 20971, 60, 1, 0, NULL, 18, '2024-08-27 05:30:43', 1),
(19563, 20974, 18, 7, 0, 'Shakira Selected for Santhosh Team. Offered 28k Net Take Home + PF. Ready to Join from 1st with 4.5 Years Experiecen', 71, '2024-08-27 05:44:01', 1),
(19564, 20884, 18, 9, 0, 'Refix and confrim', 138, '2024-08-27 05:45:39', 1),
(19565, 20963, 60, 1, 0, NULL, 18, '2024-08-27 06:30:46', 1),
(19566, 20974, 60, 1, 0, NULL, 18, '2024-08-27 07:52:18', 1),
(19567, 20986, 11, 5, 1, 'switched many companys in short perioid ', 104, '0000-00-00 00:00:00', 1),
(19568, 20944, 60, 1, 0, NULL, 11, '2024-08-28 11:01:32', 1),
(19569, 20895, 60, 1, 0, NULL, 11, '2024-08-28 11:02:25', 1),
(19570, 20924, 60, 1, 0, NULL, 11, '2024-08-28 11:02:56', 1),
(19571, 20983, 74, 7, 0, 'she is ok with the profile fresher and completed mba ...father retail shop,,,,have bike and immediate joining expected 15k,,,,speaked well and convinced,,,job need,,,immediate joining,,,,,suspected hamsavrdhini classmate kindly cross check once..', 104, '0000-00-00 00:00:00', 1),
(19572, 20985, 89, 5, 0, 'mo basic skill', 104, '0000-00-00 00:00:00', 1),
(19573, 20988, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19574, 20987, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19575, 20956, 139, 7, 0, 'Selected for Rm role \nhaving exp in sales\nwill try for rm profile \nhaving good communication skills ', 104, '0000-00-00 00:00:00', 1),
(19576, 20984, 140, 4, 0, 'Selected, Looks like hard working can train and see', 104, '0000-00-00 00:00:00', 1),
(19577, 20922, 29, 7, 3, 'karhtika team, 21k net salary', 140, '2024-08-28 12:38:25', 1),
(19578, 20992, 149, 5, 0, 'not int ', 104, '0000-00-00 00:00:00', 1),
(19579, 20981, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19580, 20989, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19581, 20997, 105, 7, 0, 'Candidate performance and communication is good ,but distance is too long ,will check with him in the traning period', 104, '0000-00-00 00:00:00', 1),
(19582, 20990, 19, 7, 0, 'kindly check with his exisiting exp and salary if all are correct means process 19k ctc immediate joining ', 104, '0000-00-00 00:00:00', 1),
(19583, 20993, 102, 5, 0, 'communication and convincing skill is low not fit sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19584, 20994, 19, 5, 0, 'he said he work visa for 45 days and do calling but he did not tell the product name itself', 104, '0000-00-00 00:00:00', 1),
(19585, 20922, 59, 5, 0, 'Drop - Due to her pregnancy confirmed not in a situation to continue', 29, '2024-08-28 01:38:39', 1),
(19586, 20961, 29, 7, 3, 'Karthika Team', 140, '2024-08-28 01:40:24', 1),
(19587, 20956, 18, 7, 3, 'Helmaltha Selected for Gananshekar team. Current CTC is 23k PM but expected 32k Per month. Can Join on Sep 15th. Quality candidate can give upto 3.5L. Please negotiate and release the offer...', 139, '2024-08-28 02:21:54', 1),
(19588, 20990, 59, 3, 0, 'Communication ok have exp in calling just dial document verified can be train and check in 7 days', 19, '2024-08-28 02:51:10', 1),
(19589, 20991, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19590, 20995, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19591, 21001, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19592, 21000, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19593, 20998, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(19594, 20961, 59, 1, 0, NULL, 29, '2024-08-28 07:59:08', 1),
(19595, 21009, 67, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19596, 21011, 19, 5, 0, 'she intrested in microbiology', 104, '0000-00-00 00:00:00', 1),
(19597, 21012, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19598, 21016, 149, 5, 0, 'timing not suited for her so rejected', 104, '0000-00-00 00:00:00', 1),
(19599, 21013, 139, 5, 0, 'not interested work in sales ', 104, '0000-00-00 00:00:00', 1),
(19600, 21002, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19601, 21015, 105, 5, 0, 'candiate communcation and performance is not good ,also her voice is very low,then her sustain is doubt', 104, '0000-00-00 00:00:00', 1),
(19602, 21023, 105, 7, 0, 'candidate communication and peeformance is good ,will Check With hert in the traning period', 104, '0000-00-00 00:00:00', 1),
(19603, 21018, 149, 5, 0, 'office timing was not ok with her ', 104, '0000-00-00 00:00:00', 1),
(19604, 21019, 11, 5, 0, 'have experience in customer suppot\nnot on sales .wont suitable ', 104, '0000-00-00 00:00:00', 1),
(19605, 21024, 89, 7, 0, 'good skill and job needed person. Selected. fresher Exception 15 k ', 104, '0000-00-00 00:00:00', 1),
(19606, 21023, 59, 1, 0, NULL, 105, '2024-08-29 12:49:09', 1),
(19607, 21029, 19, 5, 0, 'Not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19608, 20997, 59, 1, 0, NULL, 105, '2024-08-29 01:22:30', 1),
(19609, 21027, 11, 7, 0, 'gaurav sir met.current CTC 3.3L\nso same 3,3L is finalized.based on performance after 2 months 3.6 can be given ', 104, '0000-00-00 00:00:00', 1),
(19610, 21025, 11, 5, 1, 'expected salary is high.also sustainbility problem ', 104, '0000-00-00 00:00:00', 1),
(19611, 21014, 102, 7, 0, 'communication and convincing skill is good will try training period then confirm at DOJ ', 104, '0000-00-00 00:00:00', 1),
(19612, 21030, 102, 5, 0, 'Basic communication is low and he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19613, 21022, 131, 4, 0, 'Good Communication Can Process For Next Round', 126, '0000-00-00 00:00:00', 1),
(19614, 21021, 131, 4, 0, 'Fresher, Communication Is Ok Can Process For Next Round', 126, '0000-00-00 00:00:00', 1),
(19615, 21020, 131, 4, 0, 'Fresher, Communication is ok can process for next round', 126, '0000-00-00 00:00:00', 1),
(19616, 21020, 147, 7, 0, 'ok ok communication, fresher, can give a try ', 131, '2024-08-29 03:27:03', 1),
(19617, 21021, 147, 7, 0, 'Fresher, communication is ok have some Confident we can give a try', 131, '2024-08-29 03:27:36', 1),
(19618, 21022, 147, 7, 0, 'communication is good have Experience and good confident ', 131, '2024-08-29 03:28:25', 1),
(19619, 21020, 59, 3, 0, 'Communication Ok Fresher for Scratch need to train and check in 7days analysis', 147, '2024-08-29 03:34:03', 1),
(19620, 21021, 59, 3, 0, 'Communication Ok fresher in our roles career gap need to analyse in 7 days and confirm', 147, '2024-08-29 03:35:03', 1),
(19621, 21022, 59, 3, 0, 'Communication Ok No sustainabiloity in her previous exp can give a try and check in 7 days training', 147, '2024-08-29 03:36:06', 1),
(19622, 21035, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19623, 21024, 59, 3, 0, 'Communication Ok Fresher for Job Can give a try and check in 7 days', 89, '2024-08-29 05:06:28', 1),
(19624, 21008, 74, 7, 0, 'she is ok with the profile, father farmer, sister prepared for rRB, another sister worked in drivng school salary 15k,,,kanmani worked in annai car care accesories sale in offline and telecalling,,,salary 16k and incentives,,,speaked well and have the fluence,,,,,but expected 16 to 17k salary,,,have laptop,,,travel only in train not possible in bus train time 7:30 ...kindly cross check....timing...', 104, '0000-00-00 00:00:00', 1),
(19625, 21027, 60, 1, 0, NULL, 11, '2024-08-30 09:53:13', 1),
(19626, 21040, 19, 5, 0, 'not even try to speak', 104, '0000-00-00 00:00:00', 1),
(19627, 21017, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19628, 21039, 149, 5, 0, 'CANDIDATE WAS LOOKING FOR ANOTHER ROLE HR NOT INTERESTED IN SALES', 104, '0000-00-00 00:00:00', 1),
(19629, 20984, 29, 7, 2, 'porrselvan', 140, '2024-08-30 10:32:16', 1),
(19630, 21043, 102, 5, 0, 'Voice is low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19631, 21045, 74, 5, 0, 'expected high and not fit', 104, '0000-00-00 00:00:00', 1),
(19632, 21046, 57, 7, 0, 'candidate is 50/50. he interested in sales profile but distance too long. he thinking about sunday appointments so kindly cross check sunday workings xxamp sustainability.', 104, '0000-00-00 00:00:00', 1),
(19633, 21047, 57, 5, 0, 'candidate is not suitable for sales profile, observation skills low, communication not good', 104, '0000-00-00 00:00:00', 1),
(19634, 21014, 59, 3, 0, 'Communication Ok Fresher for our roles current part time Rapido and zomato can give a try and train him', 102, '2024-08-30 12:33:51', 1),
(19635, 21048, 89, 7, 0, 'Good skill. And alredy experience school related. Expected 17 k.. will analyse 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19636, 21041, 89, 5, 0, 'there is no need for this job. just time pass', 104, '0000-00-00 00:00:00', 1),
(19637, 21042, 19, 5, 0, 'Not fit for his excepting salary ', 104, '0000-00-00 00:00:00', 1),
(19638, 20984, 59, 3, 0, 'Fresher for our sales have exp in data entry and Quality work need to train from scratch and analyse in 7 days seems he is not much comfort with salary committed', 29, '2024-08-30 01:34:54', 1),
(19639, 21054, 105, 5, 0, 'candidate performance and communication is not good also she is not answered much more in the Basic interview Quetions', 104, '0000-00-00 00:00:00', 1),
(19640, 21055, 149, 5, 0, 'candidate done interview with lack of communication ', 104, '0000-00-00 00:00:00', 1),
(19641, 21052, 102, 5, 0, 'convincing skill and communication is low and she is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19642, 21051, 19, 5, 0, 'She asking other department job', 104, '0000-00-00 00:00:00', 1),
(19643, 21049, 131, 4, 0, 'Fresher, communication is OK can process for next round', 126, '0000-00-00 00:00:00', 1),
(19644, 21050, 131, 4, 0, 'Good Communication can process fro next round', 126, '0000-00-00 00:00:00', 1),
(19645, 21049, 147, 7, 0, 'Communication is ok , fresher we can try ', 131, '2024-08-30 03:25:09', 1),
(19646, 21050, 147, 7, 0, 'Good communication and confident, fresher, salary expectation 18k to 20k', 131, '2024-08-30 03:25:51', 1),
(19647, 21049, 59, 3, 0, 'Fresher Communication Ok Can give a try and check recently married long run doubts check in 7 days training', 147, '2024-08-30 03:32:47', 1),
(19648, 21050, 59, 2, 0, 'Not much comfort in sales,she is holding an other offer in HR role she prefers that,the same day she attended 3 interviews and got selected in that - She needs time to confirm', 147, '2024-08-30 03:34:21', 1),
(19649, 21046, 59, 5, 0, 'Not comfort with the distance and not interested to continue in this', 57, '2024-08-30 03:52:59', 1),
(19650, 21058, 131, 4, 0, 'Good communication and confident level have Experience into same field can process for next round ', 126, '0000-00-00 00:00:00', 1),
(19651, 21058, 30, 7, 4, 'suggested ctc 3.6lac currently active employee with Policy Bazzar cross check the joining date', 131, '2024-08-30 05:34:39', 1),
(19652, 21048, 59, 3, 0, 'have exp in calling for few mnths but not a relevant one can give a try and check ', 89, '2024-08-30 07:03:11', 1),
(19653, 21062, 74, 5, 0, 'NOT FIT', 104, '0000-00-00 00:00:00', 1),
(19654, 21008, 59, 3, 0, 'Communicaiton Ok have 1 yr exp but no documents can give a try and check in training period', 74, '2024-08-31 12:43:43', 1),
(19655, 20983, 59, 1, 0, NULL, 74, '2024-08-31 12:52:13', 1),
(19656, 21069, 131, 4, 0, 'Communication is OK, can process for next round', 126, '0000-00-00 00:00:00', 1),
(19657, 21069, 147, 7, 0, 'Communication is good, fresher in sales 6 months Experience in data entry ', 131, '2024-08-31 03:08:14', 1),
(19658, 21064, 131, 5, 0, 'Lagging with communication', 126, '0000-00-00 00:00:00', 1),
(19659, 21069, 59, 1, 0, NULL, 147, '2024-08-31 03:20:09', 1),
(19660, 21057, 149, 5, 0, 'communication was not good', 104, '0000-00-00 00:00:00', 1),
(19661, 21053, 89, 7, 0, 'fresher, good skill but will Analyst 7 days training', 104, '0000-00-00 00:00:00', 1),
(19662, 21075, 89, 5, 0, 'no bASIC SKILL', 104, '0000-00-00 00:00:00', 1),
(19663, 21083, 149, 7, 0, 'selected have communication and known about telesales', 104, '0000-00-00 00:00:00', 1),
(19664, 21078, 57, 5, 0, 'candidate is unfit for field sales. previously he working in collection company 2yrs and he daddy also working same company too 15yrs well settled. sal exp 25k he not interested for sales ', 104, '0000-00-00 00:00:00', 1),
(19665, 21072, 57, 5, 0, 'candidate is communication good but distance too long. 2yrs experience but she totally forget the previous company process, so reject the profile', 104, '0000-00-00 00:00:00', 1),
(19666, 21089, 19, 5, 0, 'Not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19667, 21086, 149, 5, 0, 'rejected having interested in other jobs ', 104, '0000-00-00 00:00:00', 1),
(19668, 21096, 57, 7, 0, 'Candidate is ok, 1yrs exp manpower agency company like arrange the car drivers. nit shift. 15k to 16k salary exp. pls negotiate the salary and ask payslip or offer letter. confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(19669, 21095, 137, 5, 0, 'candidate is very lacey and very local voice , and commuication also not well so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19670, 21074, 138, 5, 0, 'Poor Communication Skills and Limited Technical Expertise...Lack of Problem-Solving Abilities and finally Unprepared and Disorganized so not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19671, 21073, 11, 5, 0, 'wont have sales skills ', 104, '0000-00-00 00:00:00', 1),
(19672, 21103, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19673, 21084, 137, 5, 0, 'candidate just looking for job ater6 month try or own busines for our father support , so he so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19674, 21077, 105, 7, 0, 'candidate couunication and performance is good ,but her distance is long (ennore), candidate told me she will relocate after getting job.other than her performace and voice is good .kindly verify her relocate process only', 104, '0000-00-00 00:00:00', 1),
(19675, 21079, 105, 5, 0, 'candidate communication ok but his perfomance is not good , his sister working in HDFC Telesales Process as a assistant manager,also little bit attitude type', 104, '0000-00-00 00:00:00', 1),
(19676, 21081, 89, 7, 0, 'money needed person. Average skills . but i wil analyst 7 days training', 104, '0000-00-00 00:00:00', 1),
(19677, 21092, 89, 5, 0, 'lang distance and Average skill . so not fit for the job', 104, '0000-00-00 00:00:00', 1),
(19678, 21101, 105, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19679, 20968, 60, 1, 0, NULL, 18, '2024-09-02 03:58:32', 1),
(19680, 21105, 89, 5, 0, 'no basic skill and Expectation high ', 104, '0000-00-00 00:00:00', 1),
(19681, 21096, 59, 1, 0, NULL, 57, '2024-09-02 05:03:55', 1),
(19682, 21106, 139, 5, 0, 'not suit for field sales \nhe looking for operation', 104, '0000-00-00 00:00:00', 1),
(19683, 21077, 59, 3, 0, 'Communication Ok Fresher Candidate Can give a try and check in 7 days training', 105, '2024-09-02 05:15:35', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(19684, 21080, 105, 5, 0, 'candidate performance and communication is not good, also she is not Answer much more in the interview quetions and basic quetions', 104, '0000-00-00 00:00:00', 1),
(19685, 21083, 59, 1, 0, NULL, 149, '2024-09-02 06:07:54', 1),
(19686, 21053, 59, 3, 0, 'Communication Ok Fresher MCom looking for Core opening too travel time 45 min Need to check in 7 days training and confirm', 89, '2024-09-02 06:09:51', 1),
(19687, 21081, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 89, '2024-09-02 06:11:17', 1),
(19688, 21093, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19689, 21090, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19690, 21100, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19691, 21099, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19692, 21102, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19693, 21063, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19694, 21115, 149, 5, 0, 'rejected having double minded for it jobs and sales', 104, '0000-00-00 00:00:00', 1),
(19695, 21118, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19696, 21114, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(19697, 21122, 19, 7, 0, 'speaks well and having work exp not in our dept so lets 7 days and confirm.Ref Manikandan salary ctc 19k and check his last company salary experance', 104, '0000-00-00 00:00:00', 1),
(19698, 21123, 57, 5, 0, 'candidate is unfit for the sales profile, communication not good.reject the profile', 104, '0000-00-00 00:00:00', 1),
(19699, 21125, 137, 5, 0, 'candidate very low voice and not understanding my words so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19700, 21127, 105, 7, 0, 'candidate communication and performance is good ,will check with her in the training and we can go for other process', 104, '0000-00-00 00:00:00', 1),
(19701, 21129, 57, 5, 0, 'candidate is unfit for the sales profile, communication not good.reject the profile', 104, '0000-00-00 00:00:00', 1),
(19702, 21128, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19703, 21112, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19704, 21127, 59, 1, 0, NULL, 105, '2024-09-03 01:13:31', 1),
(19705, 21133, 139, 4, 0, 'Selected for next round\nhaving exp in sales but not relevant \nwill try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(19706, 21140, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19707, 21141, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19708, 21142, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19709, 21117, 89, 5, 0, 'no basic dressing , and no skill', 104, '0000-00-00 00:00:00', 1),
(19710, 21126, 74, 5, 0, 'NOT FIT', 104, '0000-00-00 00:00:00', 1),
(19711, 21126, 74, 5, 0, 'NOT FIT', 104, '0000-00-00 00:00:00', 1),
(19712, 21122, 59, 1, 0, NULL, 19, '2024-09-03 05:14:14', 1),
(19713, 20956, 60, 1, 0, NULL, 18, '2024-09-03 06:30:03', 1),
(19714, 21114, 59, 3, 0, 'Communication Ok can give a try and check based on manager approval proceed with the committed CTC', 19, '2024-09-03 07:37:58', 1),
(19715, 21114, 19, 7, 0, 'job needed person i hope he do well lets 7 days and we will confirm', 19, '2024-09-03 07:37:58', 1),
(19716, 21150, 105, 5, 0, 'candidate communcation and performance is not fair.sustanable is doubt', 104, '0000-00-00 00:00:00', 1),
(19717, 21149, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19718, 21162, 105, 5, 0, 'Candidate Performance and communication is not good ,also like have some attitude person', 104, '0000-00-00 00:00:00', 1),
(19719, 21132, 102, 5, 0, 'Communication and convincing skill is low and not suitable in sales ', 104, '0000-00-00 00:00:00', 1),
(19720, 21161, 138, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19721, 21154, 11, 5, 0, 'wontb suitable for sales ', 104, '0000-00-00 00:00:00', 1),
(19722, 21151, 139, 2, 0, 'Selected for Next round \nhold for some time due to pc manpower stopped', 104, '0000-00-00 00:00:00', 1),
(19723, 21163, 19, 7, 0, 'already working tele caller in hdfc for 6 month and her voice was good so we will try ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19724, 21159, 137, 7, 0, 'candidate voice and communication aslo good , past work exp for star health insurance in 2 month work salary issue to relaving the job, so try for 7 days training periods', 104, '0000-00-00 00:00:00', 1),
(19725, 21146, 19, 5, 0, 'not fit for insurance sales', 104, '0000-00-00 00:00:00', 1),
(19726, 21161, 18, 9, 0, 'Refix and confrim', 138, '2024-09-04 02:52:52', 1),
(19727, 21163, 59, 3, 0, 'Communication OK have 4 months calling exp but no documents can give a try and check in 7 days', 19, '2024-09-04 03:03:26', 1),
(19728, 21173, 57, 5, 0, 'candidate is unfit for the sales profile, communication not good.reject the profile', 104, '0000-00-00 00:00:00', 1),
(19729, 21159, 59, 3, 0, 'Fresher Need to train a lot should analyse in 7 days and confirm Core IT profile sustainability doubts', 137, '2024-09-04 03:43:09', 1),
(19730, 21164, 86, 5, 0, 'No proper communication,Low observation skill. Rejected the candiadte.', 104, '0000-00-00 00:00:00', 1),
(19731, 21168, 139, 5, 0, 'dont have exp in sales\nnot fit for rm ', 104, '0000-00-00 00:00:00', 1),
(19732, 21151, 18, 9, 0, 'Refix and confrim', 139, '2024-09-04 03:52:54', 1),
(19733, 21133, 29, 7, 3, 'gnanasekhar team, ref resume for salary details.', 139, '2024-09-04 03:56:59', 1),
(19734, 21156, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19735, 21156, 147, 7, 0, 'Good communication and one year Experience in sales salary expectation is 18k to 20k shortlisted', 131, '2024-09-04 07:07:20', 1),
(19736, 21155, 109, 5, 0, 'sustainability issue', 104, '0000-00-00 00:00:00', 1),
(19737, 21148, 109, 5, 0, 'communication not good. will not suitable for us', 104, '0000-00-00 00:00:00', 1),
(19738, 20023, 109, 5, 0, 'Communication is not good.\nShe will not continue longer', 104, '0000-00-00 00:00:00', 1),
(19739, 11700, 139, 5, 0, 'not interested work in sales ', 104, '0000-00-00 00:00:00', 1),
(19740, 21182, 102, 5, 0, 'Communication and convincing skill is low and not interested in field work ', 104, '0000-00-00 00:00:00', 1),
(19741, 21166, 137, 7, 0, 'candidate is ok and communication also good and past 3 month work from bpo in vi sim center incentive probem to relaving the company all profe in hand ', 104, '0000-00-00 00:00:00', 1),
(19742, 21177, 19, 5, 0, 'not much aware in sales and basic information', 104, '0000-00-00 00:00:00', 1),
(19743, 21187, 19, 5, 0, 'too much of attitude and worth for that salary', 104, '0000-00-00 00:00:00', 1),
(19744, 20977, 11, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(19745, 21184, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19746, 21183, 89, 5, 0, 'very silent person', 104, '0000-00-00 00:00:00', 1),
(19747, 21179, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19748, 21190, 139, 4, 0, 'Selected for next round\nhaving good communication skills and basic sales knowledge \nwill try for rm profile ', 104, '0000-00-00 00:00:00', 1),
(19749, 21192, 19, 7, 0, 'job needed person lets try 7 days and confirm ctc 16k', 104, '0000-00-00 00:00:00', 1),
(19750, 21166, 59, 3, 0, 'Communication Ok 2months exp can give a try and check', 137, '2024-09-05 04:05:34', 1),
(19751, 21192, 59, 1, 0, NULL, 19, '2024-09-05 04:46:16', 1),
(19752, 21194, 19, 5, 0, 'Apperance was not good and his slang ', 104, '0000-00-00 00:00:00', 1),
(19753, 21190, 18, 7, 0, 'Monisha Selected for Gnanashekar team. Ready to Join from Monday. Expected Salary is 30k Take home but can negotiate 27k Take home + PF. Do not having Laptop but check the whether last take home is 27k.', 139, '2024-09-05 05:19:26', 1),
(19754, 21108, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19755, 21108, 147, 7, 0, 'good communication skill and good confident level expectation is 20k we can give a try', 131, '2024-09-05 06:29:51', 1),
(19756, 21181, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19757, 21181, 147, 7, 0, 'Good Communication have skills in sales salary Expectation is 18k to 20k, shortlisted ', 131, '2024-09-05 06:44:48', 1),
(19758, 21131, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19759, 21131, 147, 7, 0, 'Good communication and good at sales shortlisted', 131, '2024-09-05 06:50:28', 1),
(19760, 21108, 59, 1, 0, NULL, 147, '2024-09-05 06:53:13', 1),
(19761, 21181, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training and confirm sustainability doubts a lot', 147, '2024-09-05 06:56:58', 1),
(19762, 21156, 59, 3, 0, 'Communicaiton Ok have 4 months exp with 22K fresher for our roles can be trained need to analyse in 7 days training', 147, '2024-09-05 06:59:02', 1),
(19763, 21131, 59, 4, 0, 'Communication Ok Her Exp is high reviewing her profile can be checked for RM role too kindly check and let me know your inputs\n', 147, '2024-09-05 07:01:21', 1),
(19764, 21190, 60, 1, 0, NULL, 18, '2024-09-05 07:09:34', 1),
(19765, 21200, 19, 5, 0, 'not fit for sales too slow', 104, '0000-00-00 00:00:00', 1),
(19766, 21201, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19767, 21172, 57, 7, 0, 'candidate is ok, pls check with sustainability bcz previously she salary 16k some thing but now am offering 14k to 15k but she said ok. pls check and confirm the joining too.thanks', 104, '0000-00-00 00:00:00', 1),
(19768, 21196, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19769, 21204, 149, 5, 0, 'rejected - not have interest in sales', 104, '0000-00-00 00:00:00', 1),
(19770, 21204, 149, 5, 0, 'rejected - not have interest in sales', 104, '0000-00-00 00:00:00', 1),
(19771, 21203, 137, 5, 0, 'candidate is very long distance but communication and voice also good , but distance is not ok so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19772, 21197, 11, 4, 0, 'she is ok e sales .ctc 2.75L required \nneed to confirm that', 104, '0000-00-00 00:00:00', 1),
(19773, 21202, 86, 4, 0, 'Selected for next round. Good communication skills ', 104, '0000-00-00 00:00:00', 1),
(19774, 21185, 105, 5, 0, 'candidate performance is not good also his communication level is low and he did not spoked much more in interview', 104, '0000-00-00 00:00:00', 1),
(19775, 21172, 59, 1, 0, NULL, 57, '2024-09-06 12:02:11', 1),
(19776, 21205, 19, 7, 0, 'job needed person and she speaks well ctc 16k, she prefer immediate joining ,so kindly do the process', 104, '0000-00-00 00:00:00', 1),
(19777, 21195, 19, 5, 0, 'she is not intrested in insurance sales job', 104, '0000-00-00 00:00:00', 1),
(19778, 21199, 19, 5, 0, 'well settled family and she is not handle the pressure,not even try to speak', 104, '0000-00-00 00:00:00', 1),
(19779, 21207, 102, 7, 0, 'Communication and convincing skills is good will try training period kindly confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(19780, 21211, 138, 5, 0, 'Struggling with tamil language so not fit for our sales ', 104, '0000-00-00 00:00:00', 1),
(19781, 21208, 86, 5, 0, 'Low convenience skill.expecting more salary', 104, '0000-00-00 00:00:00', 1),
(19782, 21214, 19, 2, 0, 'Referred by Babu ', 104, '0000-00-00 00:00:00', 1),
(19783, 21216, 11, 5, 0, 'sustainability problem .\nchanged the companys frequently .\nwont suitable for calling', 104, '0000-00-00 00:00:00', 1),
(19784, 21205, 59, 3, 0, 'Communication Ok can give a try and check based on the managers approval provided CTC', 19, '2024-09-06 03:11:59', 1),
(19785, 21160, 137, 5, 0, 'candidate communication and voice not good and dress code also not well so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19786, 21158, 102, 5, 0, 'Candidate interested in voice process but communication and appearance level is low ', 104, '0000-00-00 00:00:00', 1),
(19787, 21157, 149, 5, 0, 'rejected - not so good at interview', 104, '0000-00-00 00:00:00', 1),
(19788, 21217, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19789, 21207, 59, 3, 0, 'Communication Ok can give a try and check in 7 days 3 months exp in telesales can be trained ', 102, '2024-09-06 04:16:34', 1),
(19790, 21104, 57, 5, 0, 'candidate communication not well. unfit for the sales. reject the candidate', 104, '0000-00-00 00:00:00', 1),
(19791, 21215, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19792, 21133, 59, 3, 0, 'Communication Ok Have Exp in collection only Can give a try and check in 7 days', 29, '2024-09-09 12:35:39', 1),
(19793, 21230, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19794, 21235, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19795, 21229, 149, 7, 0, 'SELECTED -lets try for 7 days training ', 104, '0000-00-00 00:00:00', 1),
(19796, 21219, 19, 5, 0, 'Not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19797, 21218, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19798, 21228, 102, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19799, 21180, 105, 7, 0, 'Candidate performance xxamp communication is good,Also Have experiance in Other sales industry.Will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(19800, 21180, 59, 1, 0, NULL, 105, '2024-09-09 01:45:38', 1),
(19801, 21229, 59, 1, 0, NULL, 149, '2024-09-09 02:28:13', 1),
(19802, 21220, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19803, 21239, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19804, 21223, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19805, 21220, 30, 7, 3, 'k for dm suggested ctc upto 18k but try for 17k arun', 131, '2024-09-09 02:45:48', 1),
(19806, 21223, 30, 7, 3, 'considering fresher 20k suggested ctc for rm channel', 131, '2024-09-09 02:46:26', 1),
(19807, 21206, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19808, 21206, 147, 7, 0, 'Good communication and confident fresher into sales process, shortlisted', 131, '2024-09-09 02:52:36', 1),
(19809, 21206, 59, 5, 0, 'Communication Good ,should check for RM role Final round Reject', 147, '2024-09-09 04:19:47', 1),
(19810, 21234, 131, 5, 0, 'Lack of confident', 126, '0000-00-00 00:00:00', 1),
(19811, 21259, 105, 7, 0, 'candidate communcation and performance is good,also he have experiance in telesales process.will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(19812, 21244, 19, 5, 0, 'not fit for sales and his voice is not clear', 104, '0000-00-00 00:00:00', 1),
(19813, 21266, 89, 5, 0, 'no need the job', 104, '0000-00-00 00:00:00', 1),
(19814, 21262, 149, 5, 0, 'rejected -having interest in other field', 104, '0000-00-00 00:00:00', 1),
(19815, 21222, 102, 5, 0, 'candidate communication is good but she is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19816, 21258, 11, 5, 0, 'met by kannan', 104, '0000-00-00 00:00:00', 1),
(19817, 21033, 19, 7, 0, 'Speaks Well lets try 7 days and we will confirm ,in hand salary 14k Immediate Joining', 104, '0000-00-00 00:00:00', 1),
(19818, 21269, 137, 5, 0, 'candidate communication ok but futur plan is own business so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19819, 21279, 57, 7, 0, 'Candidate is ok, pls confirm the joining date xxamp Salary.', 104, '0000-00-00 00:00:00', 1),
(19820, 21259, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training ', 105, '2024-09-10 12:40:34', 1),
(19821, 21253, 57, 7, 0, 'Candidate is ok,Communication good, Observation skills good.confirm the joining date .provide 13k to 13.5k,Thanks', 104, '0000-00-00 00:00:00', 1),
(19822, 21271, 139, 4, 0, 'Selected for Rm profile \nhaving 4 yr exp \nwill try for Rm role \nhaving good communication skills', 104, '0000-00-00 00:00:00', 1),
(19823, 21275, 137, 5, 0, 'candidate communication and voice not good and future plan is own business , so not it for my team', 104, '0000-00-00 00:00:00', 1),
(19824, 21253, 59, 3, 0, 'Fresher Can give a try Can be trained interested to learn and executive check in 7 days training', 57, '2024-09-10 01:13:37', 1),
(19825, 21260, 19, 2, 0, 'Hold ', 104, '0000-00-00 00:00:00', 1),
(19826, 21033, 59, 1, 0, NULL, 19, '2024-09-10 01:41:45', 1),
(19827, 20939, 19, 5, 0, ' not fit for sales', 19, '2024-09-10 01:43:44', 1),
(19828, 21270, 57, 7, 0, 'Candidate is ok.pls confirm the joining date xxamp Salary.Thanks', 104, '0000-00-00 00:00:00', 1),
(19829, 21282, 149, 5, 0, 'rejected -communication was\nnot good', 104, '0000-00-00 00:00:00', 1),
(19830, 21284, 138, 4, 0, 'Experienced in telecalling department 1 year and Excellent Communication skills and Mathematics skills are average and Overall Attitude good so finally need to confirm with sriram sir and finalyse', 104, '0000-00-00 00:00:00', 1),
(19831, 21271, 18, 7, 0, 'Selected For Gnanshekar Team. Immedeate Joiner Please negotiate ctc.', 139, '2024-09-10 03:56:45', 1),
(19832, 21271, 60, 1, 0, NULL, 18, '2024-09-10 04:43:28', 1),
(19833, 21284, 18, 7, 0, 'Selcted for Gnanashekar Team. Can offer 25k CTC Ready to Join from Monday. ', 138, '2024-09-10 04:59:34', 1),
(19834, 21285, 137, 7, 0, 'candidate past exp for visa insurance in 1 year for team handeling , good communication and voice also good , better team handeing so try for 7 days training period , exp ctc is 18k to 20 k', 104, '0000-00-00 00:00:00', 1),
(19835, 21290, 102, 5, 0, 'Candidate communication and convincing skill is low but she is interested in IT ', 104, '0000-00-00 00:00:00', 1),
(19836, 21297, 89, 5, 0, 'no skill', 104, '0000-00-00 00:00:00', 1),
(19837, 21296, 137, 5, 0, 'candidate voice and commuication alo ok but a/c not accept for our body condicion so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19838, 21299, 19, 7, 0, 'job needed person and he has tele calling exp kindly his exisiting pay slip and provide same ctc to him ctc 17k', 104, '0000-00-00 00:00:00', 1),
(19839, 21305, 57, 7, 0, 'candidate is ok. 1.3 yrs exp 5 month cc xxamp 8 month loan process both company she was abscond, pls cross check sustainability . provide 14k and confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(19840, 21302, 149, 5, 0, 'REJECTED- NOT HAVE CLARIFICATION ON STABILITY', 104, '0000-00-00 00:00:00', 1),
(19841, 21251, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19842, 21298, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19843, 21308, 105, 7, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS GOOD.WILL CHECK WITH HER IN THE TRAINING PERIOD', 104, '0000-00-00 00:00:00', 1),
(19844, 21309, 137, 5, 0, 'candidate very long distance and communication is not well so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19845, 21323, 89, 5, 0, 'NO BASIC SKILL', 104, '0000-00-00 00:00:00', 1),
(19846, 21304, 57, 7, 0, 'candidate is ok. babu attend the candidate, i was struck with another call, she working paisa bazaar.confirm the joinig date', 104, '0000-00-00 00:00:00', 1),
(19847, 21299, 59, 1, 0, NULL, 19, '2024-09-11 02:54:03', 1),
(19848, 21307, 19, 7, 0, 'job needed person and lets try 7 days then we will fix ', 104, '0000-00-00 00:00:00', 1),
(19849, 21314, 102, 5, 0, 'Candidate communication and convincing is good but he is not interested in field work ', 104, '0000-00-00 00:00:00', 1),
(19850, 21320, 149, 5, 0, 'REJECTED -NOT OK WITH FIELD WORK', 104, '0000-00-00 00:00:00', 1),
(19851, 21318, 105, 7, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS GOOD. hAVE 2 MONTHS EXPERIANCE IN POLICY BAZZAR ,WILL CHECK WITH HER IN THE TRAINING PERIOD', 104, '0000-00-00 00:00:00', 1),
(19852, 21307, 59, 3, 0, 'Communication Ok Fresher 20yrs job need is there can give a try and check in 7 days analysis', 19, '2024-09-11 04:03:22', 1),
(19853, 21322, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19854, 21325, 105, 5, 0, 'candidate communication is slighlty okey but his performance is not good also his voice and body language is not good', 104, '0000-00-00 00:00:00', 1),
(19855, 21324, 102, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19856, 21305, 59, 1, 0, NULL, 57, '2024-09-11 05:02:32', 1),
(19857, 21304, 59, 3, 0, 'Have exp in paisa bazaar for few months joining doubts she is focusing on her friend job also if she joins need to analyse in 7 days training', 57, '2024-09-11 05:03:40', 1),
(19858, 21308, 59, 3, 0, 'Communication Ok Can give a try in our roles need to analyse in 7 days training', 105, '2024-09-11 06:21:06', 1),
(19859, 21318, 59, 3, 0, 'Communication Ok Can ba trained in our roles verified the earlier document can give a try ', 105, '2024-09-11 06:22:04', 1),
(19860, 21354, 74, 7, 0, 'he is good for process...clear explanation and approch....completed BE in chennai and schooling also....cricket player and came to tnj due to father passed away and family situation...1 and half year experience in sales in eductaion loan in hdfc...for major abroad studies,,,,have good comincation...mother worked temporary in pwd ....sister doing BA.....own house have bike and with 15 mins to office...so we can go for this candidate...expected 15 to 20k imeediate joining ...searching for job past 6 month kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(19861, 21279, 59, 1, 0, NULL, 57, '2024-09-12 10:52:18', 1),
(19862, 21270, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and check in 7 day analysis', 57, '2024-09-12 10:52:59', 1),
(19863, 21349, 57, 5, 0, 'Candidate not fit for the sales.Communication not well.', 104, '0000-00-00 00:00:00', 1),
(19864, 21355, 105, 7, 0, 'Candidate communication and performance is good.will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(19865, 21363, 137, 7, 0, 'candidate communication and voice is good , candidate corona period work for real estate telecalling work , so i will try for 7 days training periods exp ctc is 15k ', 104, '0000-00-00 00:00:00', 1),
(19866, 21376, 19, 7, 0, 'She speaks well and 4 month exp in bajaj Finserv and she knows health and life product,her expectation 20k but in our side ctc would be 16k to 17k,kindly check her existing documents.', 104, '0000-00-00 00:00:00', 1),
(19867, 21186, 89, 5, 0, 'silent person and no basic skill', 104, '0000-00-00 00:00:00', 1),
(19868, 21357, 139, 5, 0, 'Rejected dont have communication skill and sales skills', 104, '0000-00-00 00:00:00', 1),
(19869, 21369, 105, 7, 0, 'candidate communication and performance is good ,also she have 3 month experiance in policy bazzar,will check with her in the training period', 104, '0000-00-00 00:00:00', 1),
(19870, 21329, 19, 7, 0, 'Speaks well job needed person in hand 13k salary', 104, '0000-00-00 00:00:00', 1),
(19871, 21376, 59, 1, 0, NULL, 19, '2024-09-12 03:05:20', 1),
(19872, 9690, 139, 2, 0, 'Selected for Next Round, \nDue to PC manpower hold \nwe can hold for some time ', 104, '0000-00-00 00:00:00', 1),
(19873, 21385, 139, 2, 0, 'Selected for Next round \nhold for some time due to pc manpower stopped', 104, '0000-00-00 00:00:00', 1),
(19874, 21329, 59, 3, 0, 'Communication Ok fresher for our roles can give a try and check in 7 days training', 19, '2024-09-12 03:20:55', 1),
(19875, 21386, 137, 5, 0, 'candiate full fales commitment and communication also not good , and very long disance so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19876, 21373, 57, 7, 0, 'Candidate is ok. 8 Month exp, pls check sustainability, pls confirm the joining date xxamp Salary', 104, '0000-00-00 00:00:00', 1),
(19877, 21388, 149, 5, 0, 'rejected - not having interest in sales looking for better option', 104, '0000-00-00 00:00:00', 1),
(19878, 21368, 149, 5, 0, 'REJECTED - not having patience ', 104, '0000-00-00 00:00:00', 1),
(19879, 21373, 59, 3, 0, 'Communicaiton Ok Have Exp in Altruist 8m process closed after 7days in vizza 4 in profin but didnt sustain with the companies Giving multiple reasons sustainability doubts in our profile too', 57, '2024-09-12 05:36:52', 1),
(19880, 21354, 59, 1, 0, NULL, 74, '2024-09-12 05:38:00', 1),
(19881, 21355, 59, 1, 0, NULL, 105, '2024-09-12 06:40:05', 1),
(19882, 21369, 59, 1, 0, NULL, 105, '2024-09-12 06:41:06', 1),
(19883, 21344, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19884, 21344, 30, 7, 3, 'sugessted ctc 17k to 18k fro dm', 131, '2024-09-12 06:47:44', 1),
(19885, 21223, 60, 1, 0, NULL, 30, '2024-09-13 09:37:32', 1),
(19886, 21058, 60, 1, 0, NULL, 30, '2024-09-13 09:39:39', 1),
(19887, 21285, 59, 1, 0, NULL, 137, '2024-09-13 10:37:20', 1),
(19888, 21363, 59, 3, 0, 'Communication Ok Fresher for our roles Can give a try and check kindly check in 7 days', 137, '2024-09-13 10:43:45', 1),
(19889, 21220, 60, 1, 0, NULL, 30, '2024-09-13 11:06:33', 1),
(19890, 21394, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19891, 21384, 57, 5, 0, 'Candidate is not fit for the sales, communication not good,sustainability issues. she int with bank jobs. distance too long', 104, '0000-00-00 00:00:00', 1),
(19892, 21415, 149, 5, 0, 'not having patience and not interested', 104, '0000-00-00 00:00:00', 1),
(19893, 21409, 137, 7, 0, 'candidate communication and voice ok , married women , work need and money need person , locatio also near by an dpast 1 year exp for phone sales in oppo past 3 years back so try for 7 days training periods', 104, '0000-00-00 00:00:00', 1),
(19894, 21401, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19895, 21401, 147, 7, 0, 'Good communication and good confident salary Expectation is 16k to 17k shortlisted', 131, '2024-09-13 02:00:39', 1),
(19896, 21401, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training and confirm', 147, '2024-09-13 02:04:07', 1),
(19897, 21392, 19, 5, 0, 'Not Fit for Sales and his existing was not good ', 104, '0000-00-00 00:00:00', 1),
(19898, 21412, 57, 7, 0, 'candidate is ok, paytm 6month experience field sales he get 18k. then he worked 2yrs health care 18k salary acc team,yesterday resigned, salary exp 19k to 20k . Communication ok.pls cross check with sustainability and distance too long tiruvallur, but they said move to koyambedu relatives home there.so pls check and confirm the joining date xxamp salary', 104, '0000-00-00 00:00:00', 1),
(19899, 21408, 89, 5, 0, 'NO BASIC SKILL', 104, '0000-00-00 00:00:00', 1),
(19900, 21407, 137, 5, 0, 'candidate future plan is own business and commuication also not good so ot fit for my team\n', 104, '0000-00-00 00:00:00', 1),
(19901, 21406, 19, 5, 0, 'Not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19902, 21413, 149, 7, 0, 'selected -having good communication skills lets try for training period', 104, '0000-00-00 00:00:00', 1),
(19903, 20141, 138, 5, 0, 'Rejected\n', 18, '2024-09-13 04:38:54', 1),
(19904, 20142, 139, 1, 0, NULL, 18, '2024-09-13 04:39:29', 1),
(19905, 20637, 138, 5, 0, 'Rejected', 18, '2024-09-13 04:39:59', 1),
(19906, 20884, 138, 5, 0, 'Rejected', 18, '2024-09-13 04:40:41', 1),
(19907, 21151, 139, 2, 0, 'Selected for Next round \nhold for some time due to pc manpower stopped', 18, '2024-09-13 04:41:00', 1),
(19908, 21161, 138, 5, 0, 'Rejected', 18, '2024-09-13 04:41:18', 1),
(19909, 21284, 60, 1, 0, NULL, 18, '2024-09-13 04:43:32', 1),
(19910, 21197, 60, 1, 0, NULL, 11, '2024-09-13 04:46:09', 1),
(19911, 21412, 59, 1, 0, NULL, 57, '2024-09-13 04:46:20', 1),
(19912, 21286, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19913, 21286, 147, 7, 0, 'Good communication and confident is good shortlisted', 131, '2024-09-13 04:50:50', 1),
(19914, 21286, 59, 3, 0, 'Communication Ok have exp in receovery but not in sales no document proof can betrained in our roles need to analyse in 7 days\n', 147, '2024-09-13 04:53:23', 1),
(19915, 21214, 19, 5, 0, 'Not fit for sales ', 19, '2024-09-13 04:58:36', 1),
(19916, 21409, 59, 3, 0, 'Communication Ok Previous exp as teacher Diploma in teaching no clarity on the tenure she worked as teacher worked in Oppo mobile showroom fresher for our role can give a try and check', 137, '2024-09-13 05:28:33', 1),
(19917, 21131, 30, 1, 0, NULL, 59, '2024-09-13 05:49:34', 1),
(19918, 21413, 59, 1, 0, NULL, 149, '2024-09-14 10:16:07', 1),
(19919, 21427, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19920, 21426, 139, 5, 0, 'Rejected \ndont have communication not fit for sales ', 104, '0000-00-00 00:00:00', 1),
(19921, 21430, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19922, 21418, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19923, 21339, 149, 5, 0, 'rejected - not ok with working time hrs', 104, '0000-00-00 00:00:00', 1),
(19924, 21437, 139, 5, 0, 'rejected \ndont have communication skill\n', 104, '0000-00-00 00:00:00', 1),
(19925, 21431, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19926, 21202, 18, 8, 0, 'Hold beacuse of our Internal Issues', 86, '2024-09-14 01:26:24', 1),
(19927, 21330, 74, 7, 0, 'she is ok with the profile expected 10 to 12k.......already working in suryodhay finance loan collection timing mrng 8 to 7pm,,,,so ready to travel and aggressive type ....so try to fit for our process...have laptop...past salary 12k...have bike....have laptop...immediate joining...father carpenter,,,,from kumbakonam..kindly check once', 104, '0000-00-00 00:00:00', 1),
(19928, 21428, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19929, 21434, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19930, 21448, 57, 7, 0, 'candidate is ok, Communication good and convincing skills also good. pls cross check sustainability. exp 20k above but i have explained maximum 14k to 15k so pls confirm joining date thanks', 104, '0000-00-00 00:00:00', 1),
(19931, 21287, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19932, 21449, 139, 2, 0, 'Selected for Next round\nhold for some time \ndue to pc manpower holding ', 104, '0000-00-00 00:00:00', 1),
(19933, 21330, 59, 3, 0, 'Communication Ok open to travel from her native can give a try and check in 7 days training', 74, '2024-09-14 05:05:23', 1),
(19934, 21448, 59, 1, 0, NULL, 57, '2024-09-14 05:41:05', 1),
(19935, 21315, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19936, 21287, 147, 7, 0, 'Good communication, have Experience in sales process shortlisted', 131, '2024-09-14 06:42:04', 1),
(19937, 21315, 147, 7, 0, 'Good Communication, Have Experience In Sales Process Shortlisted', 131, '2024-09-14 06:43:06', 1),
(19938, 21287, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days has exp in lead generation Edelweisis life', 147, '2024-09-14 06:46:05', 1),
(19939, 21315, 59, 3, 0, 'Communication Ok Can be trained and check in 7 days analysis ', 147, '2024-09-14 06:46:33', 1),
(19940, 21433, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(19941, 21433, 30, 7, 3, 'consider a fresher will pay 16k for dm', 131, '2024-09-14 06:50:26', 1),
(19942, 21458, 19, 5, 0, 'not even try to speak', 104, '0000-00-00 00:00:00', 1),
(19943, 21457, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19944, 21465, 57, 5, 0, 'candidate unfit for the sales, 29yrs old 2yr exp but no payslip no offer letter, communication not good,reject the profile', 104, '0000-00-00 00:00:00', 1),
(19945, 21469, 11, 5, 0, 'dont have sales experience. telecalling also wont suitable ', 104, '0000-00-00 00:00:00', 1),
(19946, 21455, 105, 5, 0, 'Candidate performance and communication is very low,also his voice and pronunciation is not clear', 104, '0000-00-00 00:00:00', 1),
(19947, 21472, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19948, 21451, 137, 5, 0, 'candidate future plan is only own business and it related job only , after on month joning for it course so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19949, 21470, 149, 5, 0, 'rejected - having interest in it field', 104, '0000-00-00 00:00:00', 1),
(19950, 21464, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19951, 21482, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19952, 21476, 137, 5, 0, 'previous exp is loan deparment , but currently chage sales , but she dontno for sales , and very lacey person , so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19953, 21485, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19954, 21478, 149, 5, 0, 'REJECTED - NOT OKAY WITH SALARY', 104, '0000-00-00 00:00:00', 1),
(19955, 21487, 149, 5, 0, 'REJECTED- NOT HAVING COMMUNICATION SKILLS ', 104, '0000-00-00 00:00:00', 1),
(19956, 12378, 71, 4, 0, 'She is working in ABSLI now, Good communication and Sales skills, Good Product knowledge in Insurance basics, ', 104, '0000-00-00 00:00:00', 1),
(19957, 21498, 149, 7, 0, 'selected - done interview good ,having good communication skill in english and also have bike xxamp laptop and ready for field calls also so we can provide 16k as salary', 104, '0000-00-00 00:00:00', 1),
(19958, 12378, 18, 8, 0, 'Hold beacuse of our Internal Issues', 71, '2024-09-17 11:26:37', 1),
(19959, 21498, 59, 3, 0, 'Communication Ok Fresher for our roles have 6 months calling exp communication good can give a try and check', 149, '2024-09-17 12:04:42', 1),
(19960, 21463, 137, 5, 0, 'candidate coming is very long distance and and voce is also not clear , future plan is take care of our fatgre business , so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(19961, 21501, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(19962, 21175, 29, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19963, 21433, 60, 1, 0, NULL, 30, '2024-09-17 05:47:05', 1),
(19964, 21344, 60, 1, 0, NULL, 30, '2024-09-17 05:48:08', 1),
(19965, 21506, 131, 4, 0, 'Fresher, Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19966, 21503, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(19967, 21506, 147, 7, 0, 'Good Communication Skill and confident, Fresher, Shortlisted, Salary Discussed 16k', 131, '2024-09-17 06:44:45', 1),
(19968, 21503, 147, 7, 0, 'Good communication skill, fresher, shortlisted salary discussed 16k', 131, '2024-09-17 06:46:11', 1),
(19969, 21503, 59, 3, 0, 'Communication Ok 2 months exp in calling Reason for exit seems not a valid one can give a try and check in 7 days ', 147, '2024-09-17 06:59:31', 1),
(19970, 21506, 59, 3, 0, 'Career Gap Family own business not much pressure to go wth job 5050 sustainability can check and confirm in 7days\n', 147, '2024-09-17 07:00:16', 1),
(19971, 21509, 19, 7, 0, 'Selected ctc 16k immediate joining', 104, '0000-00-00 00:00:00', 1),
(19972, 21525, 149, 7, 0, 'selected -good at communication and done better at interview we can give 14 k as salary', 104, '0000-00-00 00:00:00', 1),
(19973, 21514, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19974, 21522, 102, 5, 0, 'communication xxamp convincing skill is lower and not interested in sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19975, 21536, 137, 5, 0, 'candidate future plan is it and own business plan , so just temporveryley surch for the job , so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19976, 21532, 19, 5, 0, 'not fit for tele calling ', 104, '0000-00-00 00:00:00', 1),
(19977, 21534, 89, 5, 0, 'silent person and basic skill very low', 104, '0000-00-00 00:00:00', 1),
(19978, 21492, 149, 5, 0, 'rejected - not so good at communicating and doing baed corres so unable to concentrate on this', 104, '0000-00-00 00:00:00', 1),
(19979, 21509, 59, 3, 0, 'Communication Ok fresher eager to learn can be trained in our roles need to check and confirm in 7days training', 19, '2024-09-18 12:08:51', 1),
(19980, 21542, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(19981, 21549, 131, 5, 0, 'lack of confident interested in IT field', 126, '0000-00-00 00:00:00', 1),
(19982, 21452, 131, 1, 0, NULL, 126, '0000-00-00 00:00:00', 1),
(19983, 21544, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(19984, 21528, 19, 7, 0, 'she speaks well and job needed person ctc 15k, have tele exp', 104, '0000-00-00 00:00:00', 1),
(19985, 21525, 59, 3, 0, 'Communication Ok Have Exp in non voice more than 1yr can give a try and check in 7 days Open for telecalling ', 149, '2024-09-18 02:45:28', 1),
(19986, 21528, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 19, '2024-09-18 02:51:14', 1),
(19987, 21260, 19, 5, 0, 'not fit for sales', 19, '2024-09-18 02:57:37', 1),
(19988, 21550, 19, 7, 0, 'job needed person and she working in health insurance for 6 month ctc 14 to 15k', 104, '0000-00-00 00:00:00', 1),
(19989, 21550, 59, 5, 0, 'Looking for Core IT vacancies just for time being she is open to work but focusing IT only will not sustain', 19, '2024-09-18 03:00:26', 1),
(19990, 21547, 152, 4, 0, 'Moved for gnanasekar', 104, '0000-00-00 00:00:00', 1),
(19991, 21471, 102, 5, 0, 'communication xxamp convincing skill is lower and not interested in sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(19992, 21561, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(19993, 21551, 137, 5, 0, 'candidate very low voice and communication also not well so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(19994, 21558, 149, 5, 0, 'not having communication skills and english knowledge so basic no suitable', 104, '0000-00-00 00:00:00', 1),
(19995, 21548, 149, 7, 0, 'selected - good at communication ,english skills and confident approach we shall provide 14k salary', 104, '0000-00-00 00:00:00', 1),
(19996, 21557, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(19997, 21543, 19, 5, 0, 'NOT FIT FOR SALES', 104, '0000-00-00 00:00:00', 1),
(19998, 21546, 19, 7, 0, 'job needed person and age 26 so lets we try with 15 to 16k ctc and voice good ,3 years gap and 1 exp in iT,PREFER IMMEDIATE JOINING', 104, '0000-00-00 00:00:00', 1),
(19999, 21295, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(20000, 21295, 147, 7, 0, 'communication skill is good she has confident shortlisted salary suggested 18k', 131, '2024-09-18 06:46:10', 1),
(20001, 21295, 59, 3, 0, 'Communication Ok Can be trained in our roles need to analyse in 7 days training', 147, '2024-09-18 06:53:52', 1),
(20002, 21483, 74, 5, 0, 'not suite for profile', 104, '0000-00-00 00:00:00', 1),
(20003, 21479, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20004, 21548, 59, 3, 0, 'Communication OK Fresher Career Gap Need to check in 7 days training and confirm', 149, '2024-09-19 10:50:56', 1),
(20005, 21568, 74, 7, 0, 'she is ok with the profile, father farmer, 2 brother and 1 sister, 1 st brother studiying data science, 2nd brother worked in cycle manufaturing design 18k salary, sister worked in kalaimagal school physics teacher 12k salary.....completed bca in srm trichy....she intrested in telecalling bcoz she beleive in she is strogn in voice skill....good in comunication and have strong capacity to adapt...have laptop....coming monday joining...expected 13 to 14k kindly check once and confirm.', 104, '0000-00-00 00:00:00', 1),
(20006, 20674, 131, 5, 0, 'No response from him', 131, '2024-09-19 11:12:47', 1),
(20007, 20673, 131, 5, 0, 'No response from the candidate for further process', 131, '2024-09-19 11:13:44', 1),
(20008, 21574, 74, 5, 0, 'not fit for profile', 104, '0000-00-00 00:00:00', 1),
(20009, 21578, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20010, 21587, 149, 5, 0, 'not able to explain about their old \noffice process', 104, '0000-00-00 00:00:00', 1),
(20011, 21573, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20012, 21571, 74, 5, 0, 'sustainability issue', 104, '0000-00-00 00:00:00', 1),
(20013, 21589, 102, 5, 0, 'communication skill is lower and not interested in sales he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20014, 21583, 74, 5, 0, 'not suite', 104, '0000-00-00 00:00:00', 1),
(20015, 21582, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20016, 21565, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20017, 21563, 137, 5, 0, 'candiate very slow voice and not understanding for my word so rejected', 104, '0000-00-00 00:00:00', 1),
(20018, 21562, 19, 5, 0, ' not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20019, 21590, 105, 5, 0, 'Candidate communication and performance is not good,also he not active', 104, '0000-00-00 00:00:00', 1),
(20020, 21593, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20021, 21568, 59, 3, 0, 'Communication Ok Salary Exp is there 5050 sustainability core IT but now for telecalling need to check in 7 days and confirm', 74, '2024-09-19 02:36:31', 1),
(20022, 21602, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20023, 21584, 149, 5, 0, 'not having good communication skills', 104, '0000-00-00 00:00:00', 1),
(20024, 21592, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20025, 21588, 131, 5, 0, 'Doubt with sustain lagged with knowledge', 126, '0000-00-00 00:00:00', 1),
(20026, 21579, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20027, 21610, 74, 7, 0, 'she is ok with the profile completed BE and last one year studied tnpsc and group 2 ...she has no idea to clear kindly cross check once....travel time also issue ...but she is good in all parameter....expected 13 to 14....arrange laptop...kindly check once...immediate joinig', 104, '0000-00-00 00:00:00', 1),
(20028, 21616, 19, 2, 0, 'he is asking 1 week time for relative marriage ,after 1 week we will discuss and finalize the joining ', 104, '0000-00-00 00:00:00', 1),
(20029, 21621, 137, 5, 0, 'candidate future pan is flim makerand ow business on native place , so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20030, 21624, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20031, 21604, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20032, 21576, 19, 7, 0, 'in hand salary 13k,job needed person and lets try 7 days and we will confirm', 104, '0000-00-00 00:00:00', 1),
(20033, 21612, 57, 5, 0, 'Candidate is not ok,communication not well. distance too long avadi.reject the profile', 104, '0000-00-00 00:00:00', 1),
(20034, 21627, 89, 5, 0, 'no basic skkill', 104, '0000-00-00 00:00:00', 1),
(20035, 21541, 105, 5, 0, 'candidate communication is not good and performance is low', 104, '0000-00-00 00:00:00', 1),
(20036, 21623, 19, 5, 0, 'not fir for sales and apperance was not good ', 104, '0000-00-00 00:00:00', 1),
(20037, 21626, 74, 7, 0, 'he is ok with the profile completed bba ...and course studied SAP and have no idea to join sap related job....expected 13 to 14k kindly check once house near by 1km....father bus driver ...have no laptop ready to arrange,,,immediate joining kindly check once', 104, '0000-00-00 00:00:00', 1),
(20038, 21575, 102, 7, 0, 'communication and convincing skill is good will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20039, 21632, 105, 5, 0, 'Candidate communication and performance is not good,also he not active and expected high package', 104, '0000-00-00 00:00:00', 1),
(20040, 21628, 149, 5, 0, 'not ok with working time', 104, '0000-00-00 00:00:00', 1),
(20041, 21625, 149, 5, 0, 'communication was not so good and not ok with salary', 104, '0000-00-00 00:00:00', 1),
(20042, 21617, 102, 5, 0, 'Already working in icici 5month but interested in it field ', 104, '0000-00-00 00:00:00', 1),
(20043, 21631, 89, 5, 0, 'silent person and very slow', 104, '0000-00-00 00:00:00', 1),
(20044, 21576, 59, 3, 0, 'Communication Ok Fresher for Telecalling Family need is there can give a try and check in 7 days training', 19, '2024-09-20 01:03:15', 1),
(20045, 21567, 137, 5, 0, 'candidate very slow process and very low understanding , cus also need non voice process , because past exp is also non voice process', 104, '0000-00-00 00:00:00', 1),
(20046, 20935, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20047, 21643, 149, 5, 0, 'rejected - not having interested in sales', 104, '0000-00-00 00:00:00', 1),
(20048, 21626, 59, 1, 0, NULL, 74, '2024-09-20 04:36:29', 1),
(20049, 21603, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20050, 21610, 59, 3, 0, 'Communication Ok can give a try and check only thing is the distance need to see ', 74, '2024-09-20 04:41:00', 1),
(20051, 21575, 59, 3, 0, 'Communication Fresher need to train from scratch can give a try and check in 7 days', 102, '2024-09-20 06:56:52', 1),
(20052, 21645, 149, 5, 0, 'rejected - not good at interview', 104, '0000-00-00 00:00:00', 1),
(20053, 21650, 19, 7, 0, 'fresher 13k in hand salary speaks well lets try 7 days and we will confirm', 104, '0000-00-00 00:00:00', 1),
(20054, 21655, 137, 5, 0, 'candidate very attitude person and dress also not perfect , and candidate voice also not good so notfit for my team', 104, '0000-00-00 00:00:00', 1),
(20055, 21651, 102, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20056, 21649, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20057, 21646, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20058, 21650, 59, 1, 0, NULL, 19, '2024-09-21 11:44:21', 1),
(20059, 21664, 19, 7, 0, 'he speaks well kindly check his exisiting pay slip,on that salary we will add 2k to him and he has 1.5 years exp in credit card sales', 104, '0000-00-00 00:00:00', 1),
(20060, 21674, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20061, 21675, 19, 5, 0, 'not fit for her salary', 104, '0000-00-00 00:00:00', 1),
(20062, 21664, 59, 1, 0, NULL, 19, '2024-09-21 02:49:23', 1),
(20063, 21673, 149, 5, 0, 'rejected- not having better communication', 104, '0000-00-00 00:00:00', 1),
(20064, 21682, 102, 5, 0, 'Communication skill is very low and interested in customer support also, not interested in field work ', 104, '0000-00-00 00:00:00', 1),
(20065, 21691, 74, 7, 0, 'she is ok with the profile ,,already worked in hdbfc finance 1 and half year, and releived due to timing issue...and joined icici credit sales6 month experience and releived...expected 15k and have laptop kindly check once....due to field work not joined in hdfc life', 104, '0000-00-00 00:00:00', 1),
(20066, 21694, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20067, 21695, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20068, 21704, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20069, 21687, 137, 5, 0, 'candidate voice is ok but communication is very low and candidate not interest to go for out side call so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20070, 21711, 149, 5, 0, 'rejected - not having stability in his past companies', 104, '0000-00-00 00:00:00', 1),
(20071, 21715, 102, 5, 0, 'Communication skill is very low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20072, 21685, 149, 5, 0, 'rejected - absconded from last company ,not okay with communication', 104, '0000-00-00 00:00:00', 1),
(20073, 21707, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20074, 21714, 105, 7, 0, 'CANDIDATE PERFORMANCE AND COMMUNICATION IS GOOD ,WILL CHECK WITH HER IN THE TRAINING PERIOD', 104, '0000-00-00 00:00:00', 1),
(20075, 21680, 102, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20076, 21686, 149, 5, 0, 'rejected - interested in other jobs', 104, '0000-00-00 00:00:00', 1),
(20077, 21490, 105, 5, 0, 'candidate performance is not good ,also his communication is not Legit', 104, '0000-00-00 00:00:00', 1),
(20078, 21709, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20079, 21689, 19, 7, 0, 'exp person but fresher salary immediate joining', 104, '0000-00-00 00:00:00', 1),
(20080, 21723, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20081, 21725, 137, 5, 0, 'candidate voice and communication is good but after 1 year try for master degree in regular so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20082, 21696, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20083, 21693, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20084, 21706, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20085, 21708, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20086, 21691, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 74, '2024-09-23 07:00:57', 1),
(20087, 21739, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20088, 21736, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20089, 21741, 105, 7, 0, 'candidate communication and performance is good ,also hve 2 yrs and 5 Months experiance in telicalling field.will check with her in the training period', 104, '0000-00-00 00:00:00', 1),
(20090, 21746, 102, 5, 0, 'Communication skill is very low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20091, 21732, 149, 7, 0, 'having experience about sales and good at communication we will provide 16k as salary and also need immediate jioning', 104, '0000-00-00 00:00:00', 1),
(20092, 21743, 137, 5, 0, 'candidate commuication and voice also very low and he not understanding my qustions , ans after 3 month try for it related job so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20093, 21742, 19, 7, 0, 'job needed person ctc 16k fresher joining at 27th sep', 104, '0000-00-00 00:00:00', 1),
(20094, 21690, 149, 5, 0, 'not good at talking lacking of confidence', 104, '0000-00-00 00:00:00', 1),
(20095, 21756, 57, 7, 0, 'candidate is ok, fresher communication ok, cross check sustainability.provide the freshers salary and confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(20096, 21744, 57, 7, 0, 'Candidate is ok, previously she worked hr Req process, communication good, she interested with sales coz of she need money.well settled family. negotiate the salary and confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(20097, 21747, 137, 5, 0, 'candidate future plan govtwor and takecare of our father work so just looking for wok and voice also not well so not fit or my team', 104, '0000-00-00 00:00:00', 1),
(20098, 21730, 19, 5, 0, 'not much knowledge in health but working almost 6 month in health and abscond in previous company', 104, '0000-00-00 00:00:00', 1),
(20099, 21748, 105, 5, 0, 'candidate communication is good but her performance and voice is very low as well as slow', 104, '0000-00-00 00:00:00', 1),
(20100, 21744, 59, 3, 0, 'Communication Good have exp but not sales can give a try and check in 7 days', 57, '2024-09-24 01:19:31', 1),
(20101, 21756, 59, 1, 0, NULL, 57, '2024-09-24 01:20:37', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(20102, 21705, 59, 3, 0, 'Communication Average for MIS role Can be trained have a bit of exp need to check and confirm', 104, '0000-00-00 00:00:00', 1),
(20103, 21754, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20104, 21733, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20105, 21741, 59, 1, 0, NULL, 105, '2024-09-24 01:48:13', 1),
(20106, 21732, 59, 1, 0, NULL, 149, '2024-09-24 02:51:57', 1),
(20107, 21761, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20108, 21760, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20109, 21726, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20110, 21288, 131, 4, 0, 'Good communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(20111, 21742, 59, 1, 0, NULL, 19, '2024-09-25 10:15:50', 1),
(20112, 21689, 59, 1, 0, NULL, 19, '2024-09-25 10:17:06', 1),
(20113, 21676, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20114, 21778, 102, 7, 0, 'Communication and convincing skills good and he is also in interested in sales will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20115, 21780, 105, 5, 0, 'Candidate communication and performance is not good', 104, '0000-00-00 00:00:00', 1),
(20116, 21724, 149, 7, 0, 'SELECTED - HAVING GOOD COMMUNICATION SKILL AND CONFIDENCE ALSO LOOK FOR IMMEDIATE JOINING WILL GIVE 14000 ', 104, '0000-00-00 00:00:00', 1),
(20117, 21779, 19, 7, 0, 'job needed person and aged too ,so lets we try with 15k to 16k salary 1 exp in iT voice was good', 104, '0000-00-00 00:00:00', 1),
(20118, 21721, 149, 5, 0, 'REJECTED - COMMUNICATION SKILL WAS NOT GOOD', 104, '0000-00-00 00:00:00', 1),
(20119, 21782, 137, 5, 0, 'candidate very attitude and very worst behaviour , voice also very low so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20120, 21784, 105, 5, 0, 'candidate performance is ok ,but his communication is not good', 104, '0000-00-00 00:00:00', 1),
(20121, 21785, 19, 5, 0, 'not fit for Any job', 104, '0000-00-00 00:00:00', 1),
(20122, 21546, 59, 1, 0, NULL, 19, '2024-09-25 12:13:44', 1),
(20123, 21616, 19, 5, 0, 'not fit for sales', 19, '2024-09-25 12:16:23', 1),
(20124, 21779, 59, 1, 0, NULL, 19, '2024-09-25 12:19:04', 1),
(20125, 21757, 137, 7, 0, 'candidate commuication and vocie well good , candidate completed in bBA so interest to sales field but location is avadi , have a own bike , so try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20126, 21786, 102, 5, 0, 'Communication skill is very low and interested in customer support also, not interested in field work ', 104, '0000-00-00 00:00:00', 1),
(20127, 21768, 89, 5, 0, 'not fit for the job', 104, '0000-00-00 00:00:00', 1),
(20128, 21772, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20129, 21776, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20130, 21789, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20131, 21790, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20132, 21792, 105, 7, 0, 'candidate communication and performance is good ,will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(20133, 21791, 137, 7, 0, 'candidate communication and voice also good , candidate very interest to sales work location also near by , so i will try to 7 days training periods ', 104, '0000-00-00 00:00:00', 1),
(20134, 21794, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20135, 21796, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20136, 21797, 102, 5, 0, 'Communication skill is very low and interested in customer support married person she is have a 4month baby', 104, '0000-00-00 00:00:00', 1),
(20137, 21630, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20138, 21724, 59, 1, 0, NULL, 149, '2024-09-25 06:41:31', 1),
(20139, 21288, 147, 7, 0, 'Fresher communication skill is good shortlisted ', 131, '2024-09-25 06:53:43', 1),
(20140, 21288, 59, 3, 0, 'Communication Ok Can give a try and check her friend also working here Need to analyse in 7 days training', 147, '2024-09-25 06:56:22', 1),
(20141, 21807, 149, 5, 0, 'rejected - not ok with salary package and timing', 104, '0000-00-00 00:00:00', 1),
(20142, 21791, 59, 3, 0, 'Fresher Career Gap Can give a try and check in 7 days training ', 137, '2024-09-26 10:16:11', 1),
(20143, 21806, 19, 7, 0, 'speaks well ctc 14 to 15k lets try 7 days and confirm immediate joining', 104, '0000-00-00 00:00:00', 1),
(20144, 21757, 59, 1, 0, NULL, 137, '2024-09-26 10:18:47', 1),
(20145, 21810, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20146, 21811, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20147, 21812, 74, 5, 0, 'not fit for team', 104, '0000-00-00 00:00:00', 1),
(20148, 21804, 137, 7, 0, 'candidate very bold and communication also good , location near by 30 min travel , and previousaly work sales in frds company , so try for 7 days training periods ', 104, '0000-00-00 00:00:00', 1),
(20149, 21820, 102, 5, 0, 'Communication skill is very low and interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20150, 21821, 149, 5, 0, 'rejected - she will join only after completing her notice period', 104, '0000-00-00 00:00:00', 1),
(20151, 21778, 59, 1, 0, NULL, 102, '2024-09-26 11:45:27', 1),
(20152, 21819, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20153, 21765, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20154, 21767, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20155, 21830, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20156, 21801, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20157, 21793, 149, 7, 0, 'selected -having communication skill lets try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20158, 21836, 105, 5, 0, 'Candidate performacne and communication not good ', 104, '0000-00-00 00:00:00', 1),
(20159, 21806, 59, 3, 0, 'Communication Ok fresher for our roles can give a tray and check in 7 days training\n', 19, '2024-09-26 03:56:55', 1),
(20160, 21834, 131, 5, 0, 'Lack of communication and knowledge', 126, '0000-00-00 00:00:00', 1),
(20161, 21823, 131, 5, 0, 'Lack of communication and knowledge', 126, '0000-00-00 00:00:00', 1),
(20162, 21805, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20163, 21841, 19, 5, 0, 'sustainability was doubt', 104, '0000-00-00 00:00:00', 1),
(20164, 21845, 137, 5, 0, 'candidate very low voice and voice also not good , so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(20165, 21848, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20166, 21835, 19, 7, 0, 'Selected CTC 16k Check her Last company pay slip ', 104, '0000-00-00 00:00:00', 1),
(20167, 21838, 19, 7, 0, 'Selected CTC 16K Check her Last Company Pay Slip ', 104, '0000-00-00 00:00:00', 1),
(20168, 21849, 149, 5, 0, 'rejected- not having communication skills', 104, '0000-00-00 00:00:00', 1),
(20169, 21804, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training family need is there', 137, '2024-09-27 12:05:28', 1),
(20170, 21854, 149, 5, 0, 'rejected - no good at interview having doubts in timing', 104, '0000-00-00 00:00:00', 1),
(20171, 21859, 57, 7, 0, 'Candidate is ok, pls cross check the quality, am not seen the candidate so kindly filter the candidate Fully, Confirm the joining date and salary', 104, '0000-00-00 00:00:00', 1),
(20172, 21839, 137, 5, 0, 'candidate only need non oice process and very long distance so not fit my team', 104, '0000-00-00 00:00:00', 1),
(20173, 21855, 57, 7, 0, 'Candidate is ok, pls cross check the quality, am not seen the candidate so kindly filter the candidate Fully, Confirm the joining date and salary', 104, '0000-00-00 00:00:00', 1),
(20174, 21856, 57, 5, 0, 'Candidate unfit for the sales, team Reference. Communication not Good, Reject the profile', 104, '0000-00-00 00:00:00', 1),
(20175, 21714, 59, 1, 0, NULL, 105, '2024-09-27 01:10:13', 1),
(20176, 21863, 102, 5, 0, 'Communication skill is very low and interested in customer support not suitable sales ', 104, '0000-00-00 00:00:00', 1),
(20177, 21684, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20178, 21852, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20179, 21860, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20180, 21864, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20181, 21818, 104, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20182, 21865, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20183, 21838, 59, 3, 0, 'Communication Ok Have exp in calling but not a relevant domain Her friend also selected for the role can check in 7 days and confirm', 19, '2024-09-28 10:18:22', 1),
(20184, 21835, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training have exp in calling for 1 yr course in fashion too need to check in 7 days training', 19, '2024-09-28 10:19:01', 1),
(20185, 21866, 149, 5, 0, 'rejected - lacking communication skills and no interest', 104, '0000-00-00 00:00:00', 1),
(20186, 21566, 19, 7, 0, 'fresher job needed person in hand 13k salary lets try 7 days and we will finalize', 104, '0000-00-00 00:00:00', 1),
(20187, 21887, 102, 7, 0, 'candidate communication and convincing skill is good and will try training days kindly confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(20188, 21887, 59, 3, 0, 'Communication Good Can be trained in our roled need to check in 7 days training sustainability doubts in telesales', 102, '2024-09-28 12:45:07', 1),
(20189, 21889, 105, 7, 0, 'candidate communication and performacne is good Will Check With him in the training period', 104, '0000-00-00 00:00:00', 1),
(20190, 21891, 19, 7, 0, 'Selected already having 2 month work exp in visa and she pitched star product well,ctc 16k monday joining', 104, '0000-00-00 00:00:00', 1),
(20191, 21882, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20192, 21891, 59, 1, 0, NULL, 19, '2024-09-28 01:26:56', 1),
(20193, 21566, 59, 1, 0, NULL, 19, '2024-09-28 01:27:56', 1),
(20194, 21892, 11, 7, 0, 'she is selected for e sales \nimmediate joining\nneed to confirm on salary', 104, '0000-00-00 00:00:00', 1),
(20195, 21793, 59, 1, 0, NULL, 149, '2024-09-28 02:29:43', 1),
(20196, 21855, 59, 3, 0, 'Communication Ok Can be trained in our roles Need to analyse in 7days training\n', 57, '2024-09-28 03:52:36', 1),
(20197, 21859, 59, 3, 0, 'Communication sound good Have exp in calling but not a relevant one can give a try and check in 7 days training\n', 57, '2024-09-28 03:52:55', 1),
(20198, 21893, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20199, 21892, 60, 1, 0, NULL, 11, '2024-09-28 05:48:14', 1),
(20200, 21889, 59, 3, 0, 'Communication Ok Can be trained in our roles ', 105, '2024-09-28 07:16:35', 1),
(20201, 21792, 59, 1, 0, NULL, 105, '2024-09-29 07:22:33', 1),
(20202, 21919, 137, 5, 0, 'candidate all ok but distance is very long and a/c not accept for our body condision so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20203, 21921, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20204, 21920, 149, 7, 0, 'SELECTED - HAVING INTEREST IN SALES AND LETS TRY FOR 7 DAYS TRAINING PERIOD', 104, '0000-00-00 00:00:00', 1),
(20205, 21922, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20206, 21925, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20207, 21924, 149, 2, 0, 'hold - candidate having doubts with office timing', 104, '0000-00-00 00:00:00', 1),
(20208, 21929, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(20209, 21842, 105, 5, 0, 'candiate performance and communication is not good,also not interested in Voice', 104, '0000-00-00 00:00:00', 1),
(20210, 21927, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20211, 21916, 137, 5, 0, 'candidate future plan is it only after 1 3 months start for it course , fees reason to joining he work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20212, 21910, 105, 5, 0, 'candiate performance and communication is not good', 104, '0000-00-00 00:00:00', 1),
(20213, 21934, 19, 7, 0, 'fresher, 13k in hand salary and lets try 7 days then we will confirm', 104, '0000-00-00 00:00:00', 1),
(20214, 21932, 89, 5, 0, 'very silent person. and not fit for the job', 104, '0000-00-00 00:00:00', 1),
(20215, 21934, 59, 3, 0, 'Communication Fresher Distance need to focus Need to analyse in 7 days training', 19, '2024-09-30 01:18:29', 1),
(20216, 21920, 59, 3, 0, 'Communication Ok Can be trained 6 days working seems to be doubtful', 149, '2024-09-30 01:25:49', 1),
(20217, 21940, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20218, 21946, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20219, 21948, 149, 5, 0, 'rejected - interest in other field', 104, '0000-00-00 00:00:00', 1),
(20220, 21947, 149, 7, 0, 'SELECTED - already have experienced about health insurance, we shall provide 15k', 104, '0000-00-00 00:00:00', 1),
(20221, 21945, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20222, 21944, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20223, 21931, 109, 5, 0, 'lagging in communication and expectation high', 104, '0000-00-00 00:00:00', 1),
(20224, 21918, 109, 5, 0, 'not good communication and had no knowledge about hr. sustainability issue', 104, '0000-00-00 00:00:00', 1),
(20225, 21947, 59, 1, 0, NULL, 149, '2024-09-30 05:04:59', 1),
(20226, 21961, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20227, 21960, 149, 7, 0, 'selected - having experience and good communication skills we shall provide 16k take home', 104, '0000-00-00 00:00:00', 1),
(20228, 21962, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20229, 21943, 105, 5, 0, 'candiate performance and communication is not good,also looking for temporary job only', 104, '0000-00-00 00:00:00', 1),
(20230, 21967, 19, 5, 0, 'she doing iT course so she cant work here ', 104, '0000-00-00 00:00:00', 1),
(20231, 21972, 11, 5, 0, 'rejected', 104, '0000-00-00 00:00:00', 1),
(20232, 21956, 149, 7, 0, 'rejected- having interest in IT field', 104, '0000-00-00 00:00:00', 1),
(20233, 21974, 105, 5, 0, 'candiate performance and communication is not good.also have some attitude and expected high package', 104, '0000-00-00 00:00:00', 1),
(20234, 21973, 19, 7, 0, 'she speaks four lang and she speaks good ,she has tele calling exp 1.5 years so lets try 7 days and we will confirm ctc 19k to 20k', 104, '0000-00-00 00:00:00', 1),
(20235, 21982, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20236, 21955, 149, 5, 0, 'rejected - not having communication skills', 104, '0000-00-00 00:00:00', 1),
(20237, 21980, 57, 5, 0, 'candidate is unfit for the sales profile, 3 m over all Experience, she looking customer support work.reject the profile thanks', 104, '0000-00-00 00:00:00', 1),
(20238, 21960, 59, 1, 0, NULL, 149, '2024-10-01 04:54:18', 1),
(20239, 21973, 59, 1, 0, NULL, 19, '2024-10-01 04:55:54', 1),
(20240, 21956, 59, 1, 0, NULL, 149, '2024-10-01 05:01:34', 1),
(20241, 21994, 74, 5, 0, 'not suite', 104, '0000-00-00 00:00:00', 1),
(20242, 21993, 137, 5, 0, 'candidate communication ok butvery lacey and not understand what im telling and notfit for sales field so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20243, 22000, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20244, 21998, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20245, 21996, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20246, 21909, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20247, 21908, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20248, 21995, 149, 5, 0, 'not having communication skills and not ok with salary', 104, '0000-00-00 00:00:00', 1),
(20249, 21997, 19, 5, 0, 'aged not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20250, 22003, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20251, 22002, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20252, 22001, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20253, 22007, 89, 7, 0, 'good skill tamil and english and hindixquot Selected', 104, '0000-00-00 00:00:00', 1),
(20254, 22004, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20255, 20003, 149, 5, 0, 'having interest in different profession ', 104, '0000-00-00 00:00:00', 1),
(20256, 22005, 57, 7, 0, 'Candidate is ok,2yrs work experience for admin xxamp operation previous company salary 20k now he exp 15k to 16k.cross check payslip xxamp Offer letter, and confirm the joining date', 104, '0000-00-00 00:00:00', 1),
(20257, 22010, 149, 5, 0, 'not okay with salary and office timing', 104, '0000-00-00 00:00:00', 1),
(20258, 22012, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20259, 22011, 137, 2, 0, 'candidate commuication and voice also ok ut next month 19th marriage and relocate on t nagar, so joining for dec 1 week so try for nov month past past exp for sales one company 8 months and another compant 3 months exp salary 15k so try for nov month ', 104, '0000-00-00 00:00:00', 1),
(20260, 22013, 102, 7, 0, 'Communication and convincing skill good will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20261, 22015, 109, 2, 0, 'Looking for internship in december', 104, '0000-00-00 00:00:00', 1),
(20262, 22007, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 89, '2024-10-04 10:58:54', 1),
(20263, 22017, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20264, 22016, 149, 5, 0, 'having interest in other profession', 104, '0000-00-00 00:00:00', 1),
(20265, 22005, 59, 1, 0, NULL, 57, '2024-10-04 12:01:45', 1),
(20266, 22018, 105, 7, 0, 'Interviewed By Charles As Per His Conversation Candidate Performance And Communication is good.Will Check With him in the training Period ', 104, '0000-00-00 00:00:00', 1),
(20267, 22021, 89, 5, 0, 'no basic skilll', 104, '0000-00-00 00:00:00', 1),
(20268, 22023, 89, 7, 0, 'good skill. i Analyst 7 days training days', 104, '0000-00-00 00:00:00', 1),
(20269, 22024, 149, 7, 0, 'selected -having good communication skill and fluency we shall give 15k as salary ', 104, '0000-00-00 00:00:00', 1),
(20270, 22026, 137, 7, 0, 'candidate communcation and voice also good , past exp for sales related work exp salary 18k , so try for 7 days training periods and joining for tuesday ', 104, '0000-00-00 00:00:00', 1),
(20271, 22025, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20272, 22027, 149, 5, 0, 'rejected - not having proper dress code and resume mismatched not good at communication', 104, '0000-00-00 00:00:00', 1),
(20273, 21929, 19, 5, 0, 'aged', 19, '2024-10-04 03:41:40', 1),
(20274, 22028, 149, 7, 0, 'having interest and showing confident but married lets try for 7 days', 104, '0000-00-00 00:00:00', 1),
(20275, 22030, 102, 5, 0, 'Convincing and Communication skills is low he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20276, 22029, 102, 7, 0, 'Communication and convincing skill good will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20277, 22022, 152, 5, 0, 'Did not showed for second round', 104, '0000-00-00 00:00:00', 1),
(20278, 22031, 109, 5, 0, 'looking for customer support or non voice', 104, '0000-00-00 00:00:00', 1),
(20279, 22024, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 149, '2024-10-04 06:53:23', 1),
(20280, 22028, 59, 1, 0, NULL, 149, '2024-10-04 06:56:32', 1),
(20281, 22026, 59, 1, 0, NULL, 137, '2024-10-05 10:31:25', 1),
(20282, 22065, 149, 7, 0, 'SELECTED -HAVING GOOD COMMUNICATION AND FLUENCY , WE SHALL GIVE 16K AS SALARY IMMEDIATE JOINING OK ', 104, '0000-00-00 00:00:00', 1),
(20283, 22065, 59, 3, 0, 'Communication Good Salary exp is high 5050 sustainability doubts need to check in 7 days trainin\n', 149, '2024-10-05 12:29:25', 1),
(20284, 22064, 102, 7, 0, 'Communication and convincing skill good will try training period kindly confirm DOJ ', 104, '0000-00-00 00:00:00', 1),
(20285, 22064, 59, 3, 0, 'Communication Ok Fresher for sales Roles can give a try and check', 102, '2024-10-05 04:23:03', 1),
(20286, 22013, 59, 3, 0, 'Fresher Need to check in 7days and confirm the profile', 102, '2024-10-05 04:23:22', 1),
(20287, 22029, 59, 3, 0, 'Communication Ok Fresher for our roles can be trained and check in 7 days training ', 102, '2024-10-05 04:24:16', 1),
(20288, 22023, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days ', 89, '2024-10-05 05:06:05', 1),
(20289, 22054, 131, 5, 0, 'Lack of communication and Confident', 126, '0000-00-00 00:00:00', 1),
(20290, 22055, 131, 5, 0, 'Lack of communication and interest ', 126, '0000-00-00 00:00:00', 1),
(20291, 22102, 74, 7, 0, 'he is ok with the profile completed btech .....father hotel business...sister doing college...he is fresher and intrested in job expected 12k and imeediate joining...know about the profile and have laptop...20mins travel from office.kindlycheck once', 104, '0000-00-00 00:00:00', 1),
(20292, 22099, 149, 7, 0, 'selected- interested in sales ,but only able to join after 15 th due to personal reasons ', 104, '0000-00-00 00:00:00', 1),
(20293, 22098, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20294, 21867, 19, 7, 0, 'in hand 14k ,she already working in 4 month tele calling exp last in hand 13.5k so we will go 14k in hand salary ', 104, '0000-00-00 00:00:00', 1),
(20295, 22096, 109, 5, 0, 'communication not good. sustainablity issue', 104, '0000-00-00 00:00:00', 1),
(20296, 22100, 149, 7, 0, 'selected -having interest in sales and done interview good and having bike .', 104, '0000-00-00 00:00:00', 1),
(20297, 22111, 19, 5, 0, 'not fit for sales and not worth of his asking salary', 104, '0000-00-00 00:00:00', 1),
(20298, 21088, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20299, 21867, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 19, '2024-10-07 12:24:00', 1),
(20300, 22106, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20301, 22112, 149, 5, 0, 'rejected - having some issues in communication and also interested in other jobs', 104, '0000-00-00 00:00:00', 1),
(20302, 22114, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20303, 22113, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20304, 22119, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20305, 22120, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20306, 22123, 149, 5, 0, 'not having confidence and lack of communication skills', 104, '0000-00-00 00:00:00', 1),
(20307, 22124, 19, 7, 0, 'she speaks well i hope she doing well in our company 1.10 years tele calling exp, ctc 20k lets try 7 days and we will confirm', 104, '0000-00-00 00:00:00', 1),
(20308, 22128, 149, 7, 0, 'selected - interested in sales having good communication ,immediate joining', 104, '0000-00-00 00:00:00', 1),
(20309, 22130, 11, 7, 0, 'selected for E sales .Gaurav sir met ', 104, '0000-00-00 00:00:00', 1),
(20310, 22126, 137, 5, 0, 'candidate very interest for it job only just looking for sales so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20311, 22125, 137, 7, 0, 'candidate communication and voice also good , past 4 month exp for cctv company tele calling for sales pack is 14k , long distance to relaving the company , exp salary is 15 to 16k , so try for 7 days training periods , joining for wendesday ', 104, '0000-00-00 00:00:00', 1),
(20312, 22129, 109, 5, 0, 'she was looking for sales and HR role had diff expeirence sutainability issue', 104, '0000-00-00 00:00:00', 1),
(20313, 22121, 74, 7, 0, 'she is ok with the profile, completed bcom and not getting admission for mcom,so he ready to work currently...father farmer and ready ,,,,she is from mannargudi...ready to relocate from mannargudi after 1 month...ready to join immediately..have laptop...brother work in airport ....kindly check once and will see in training.', 104, '0000-00-00 00:00:00', 1),
(20314, 22102, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and check in 7 days training', 74, '2024-10-07 04:51:02', 1),
(20315, 22121, 59, 1, 0, NULL, 74, '2024-10-07 04:54:14', 1),
(20316, 22124, 59, 1, 0, NULL, 19, '2024-10-07 05:03:36', 1),
(20317, 22131, 109, 5, 0, 'experience in diff domain currently pursuing Human resource management. Had no knowledge about hr', 104, '0000-00-00 00:00:00', 1),
(20318, 22100, 59, 3, 0, 'Communication Ok Fresher Need to train and check in 7 days training ', 149, '2024-10-07 05:42:37', 1),
(20319, 22117, 131, 4, 0, 'Good communication have Experience in sales can process for next round', 126, '0000-00-00 00:00:00', 1),
(20320, 22118, 131, 5, 0, 'Lack of knowledge about the sales', 126, '0000-00-00 00:00:00', 1),
(20321, 22117, 147, 7, 0, 'Good Communication And Confident Have Experience In Star Health Insurance Salary Expectation In Hand 19k Shortlisted', 131, '2024-10-07 05:53:04', 1),
(20322, 22128, 59, 3, 0, 'communication ok can be trained in our roles need to check in 7 days training', 149, '2024-10-07 06:00:35', 1),
(20323, 22117, 59, 3, 0, 'Communication Ok Can give a try in 7 days and train her ', 147, '2024-10-07 06:28:31', 1),
(20324, 22099, 59, 3, 0, 'Communication OK Can give a try in our role and confirm her in 7 days training', 149, '2024-10-07 06:47:12', 1),
(20325, 21924, 59, 1, 0, NULL, 149, '2024-10-07 07:17:05', 1),
(20326, 21924, 149, 7, 0, 'selected - interested but lets try for 7 working days', 149, '2024-10-07 07:17:05', 1),
(20327, 22018, 59, 1, 0, NULL, 105, '2024-10-07 07:31:37', 1),
(20328, 22125, 59, 3, 0, 'Communication Ok Have 3 months exp in sales calling can give a try and check in 7 days training', 137, '2024-10-07 07:49:27', 1),
(20329, 22133, 74, 5, 0, 'Nit fit', 104, '0000-00-00 00:00:00', 1),
(20330, 22122, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20331, 22135, 19, 5, 0, 'not worth of his asking salary', 104, '0000-00-00 00:00:00', 1),
(20332, 22137, 137, 7, 0, 'candiate communication and voice is good , very low family backround , past exp for insurance and loans , exp is 15 to 16 k salary so try for 7 days training periods ', 104, '0000-00-00 00:00:00', 1),
(20333, 22138, 19, 7, 0, 'she speaks well and she has 1 year sales exp ctc 16k immediate joining', 104, '0000-00-00 00:00:00', 1),
(20334, 22138, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in 7 days training', 19, '2024-10-08 11:43:37', 1),
(20335, 22145, 149, 7, 0, 'selected -already have experience in vizza and explained about plans ,also having bike and interested in immediate joining and we shall provide 16k as salary', 104, '0000-00-00 00:00:00', 1),
(20336, 22146, 149, 5, 0, 'not sitable for ,lacking communication skills and interested in other jobs', 104, '0000-00-00 00:00:00', 1),
(20337, 22105, 74, 5, 0, 'Not fit', 104, '0000-00-00 00:00:00', 1),
(20338, 22150, 105, 5, 0, 'Candidate Communication And performance is not good also his voice is low ,then recently recovered from accident, So Sustainable Is doubt ', 104, '0000-00-00 00:00:00', 1),
(20339, 22153, 19, 7, 0, 'fresher, in hand 13k immediate joining', 104, '0000-00-00 00:00:00', 1),
(20340, 22145, 59, 1, 0, NULL, 149, '2024-10-08 04:17:08', 1),
(20341, 22139, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20342, 22163, 149, 5, 0, 'rejected - not having interest in sales, just atteneded the interview', 104, '0000-00-00 00:00:00', 1),
(20343, 22164, 19, 7, 0, 'communication was good so in hand salary 14k and she has some work exp so lets we try 7 days and confirm', 104, '0000-00-00 00:00:00', 1),
(20344, 22166, 149, 5, 0, 'not interested in sales and looking for another job', 104, '0000-00-00 00:00:00', 1),
(20345, 22151, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20346, 22169, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20347, 22171, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20348, 22170, 149, 5, 0, 'rejected -not having interest in sales and having low communication skill', 104, '0000-00-00 00:00:00', 1),
(20349, 22161, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20350, 22172, 105, 7, 0, 'Candidate Communication and performance is good ,his attire is also good but candidate little bit nervous and his voice is like middle pitch will check with him in the training Period ', 104, '0000-00-00 00:00:00', 1),
(20351, 22164, 59, 3, 0, 'Communication Good Have several health issues she was into psychatric treatment short temper over thinker need to scrutinize in 7 days and confirm', 19, '2024-10-09 12:42:57', 1),
(20352, 22175, 149, 5, 0, 'rejected - not ok with salary of ours and timing', 104, '0000-00-00 00:00:00', 1),
(20353, 22172, 59, 3, 0, 'Communication Ok candidate not much comfort in telecalling 5050 as he is ok with the profile we are proceeding', 105, '2024-10-09 01:12:33', 1),
(20354, 22178, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20355, 22173, 131, 4, 0, 'Good communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(20356, 22173, 30, 7, 3, 'candidate 2month only have experience in policy bazzar and previous one year own business he is expecting 3.8lac but suggested 3.2lac max and immediate joining', 131, '2024-10-09 01:18:14', 1),
(20357, 22179, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20358, 22180, 19, 2, 0, 'Hold', 104, '0000-00-00 00:00:00', 1),
(20359, 22176, 139, 4, 0, 'Rejoining candidate for RM role \nHave to meet sriram sir for final round ', 104, '0000-00-00 00:00:00', 1),
(20360, 22183, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20361, 22182, 102, 7, 0, 'Candidate communication and convincing skill is good will try training period once confirm dOJ ', 104, '0000-00-00 00:00:00', 1),
(20362, 22181, 102, 5, 0, 'Candidate communication skills is good but , he is still studied higher degree sustainability doubt ', 104, '0000-00-00 00:00:00', 1),
(20363, 22168, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20364, 22176, 18, 7, 0, 'Selected to Gananshekar team. Can give 20k Take home+PF. She is an X CAFS Employee and Immedeate joiner', 139, '2024-10-09 03:38:28', 1),
(20365, 22173, 60, 1, 0, NULL, 30, '2024-10-09 06:23:00', 1),
(20366, 22191, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20367, 22193, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20368, 22194, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20369, 22192, 149, 5, 0, 'not good at communication', 104, '0000-00-00 00:00:00', 1),
(20370, 22137, 59, 1, 0, NULL, 137, '2024-10-10 11:21:52', 1),
(20371, 22196, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20372, 22197, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20373, 22198, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20374, 22204, 105, 7, 0, 'Candidate Communication And performance is good.then His attire and way of speech is good.will check with him in the training Period ', 104, '0000-00-00 00:00:00', 1),
(20375, 22206, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20376, 22205, 149, 5, 0, 'rejected - not ok with salary and company timing', 104, '0000-00-00 00:00:00', 1),
(20377, 22208, 102, 7, 0, 'Candidate communication and convincing skill is good and will try training period kindly Update DOJ', 104, '0000-00-00 00:00:00', 1),
(20378, 22212, 149, 5, 0, 'rejected- not having better communication skills and lesser confidence', 104, '0000-00-00 00:00:00', 1),
(20379, 22182, 59, 3, 0, 'communication Ok Long Career Gap Can give a try and check in 7 days training', 102, '2024-10-10 12:46:56', 1),
(20380, 22204, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and train them\n', 105, '2024-10-10 12:52:02', 1),
(20381, 22215, 57, 5, 0, 'Candidate is unfit for sales,married 1yr kid have.time issues. reject the profile', 104, '0000-00-00 00:00:00', 1),
(20382, 22214, 89, 7, 0, 'good skill and basic insurance Knowledge. Selected ', 104, '0000-00-00 00:00:00', 1),
(20383, 22207, 131, 4, 0, 'Good Communication and confident level can process for next round', 126, '0000-00-00 00:00:00', 1),
(20384, 22207, 30, 7, 3, 'suggested ctc for rm 21k', 131, '2024-10-10 01:27:06', 1),
(20385, 22214, 59, 3, 0, 'Communication OK Can give a try and check in 7 days training', 89, '2024-10-10 02:37:27', 1),
(20386, 22201, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20387, 22189, 105, 5, 0, 'Candidate Communication And performance is not good also his voice is low and sustainable is doubt ', 104, '0000-00-00 00:00:00', 1),
(20388, 22203, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20389, 22188, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20390, 22200, 137, 5, 0, 'candiate need very hig salary and comuication aslo no wel so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20391, 22199, 137, 5, 0, 'candiate very long distance to come so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20392, 22208, 59, 1, 0, NULL, 102, '2024-10-10 03:46:37', 1),
(20393, 22220, 149, 5, 0, 'rejected - not ok with the job and\nsalary ', 104, '0000-00-00 00:00:00', 1),
(20394, 22223, 149, 7, 0, 'selected - having experience in voice process and interested in sales and asking time to join after 23 ', 104, '0000-00-00 00:00:00', 1),
(20395, 22224, 102, 5, 0, 'Communication and convincing skill is low and then he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20396, 22211, 137, 5, 0, 'candidate future plan is it only and not interedt for sales field work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20397, 22223, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training have exp in calling ', 149, '2024-10-12 01:28:32', 1),
(20398, 22226, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20399, 22228, 74, 7, 0, 'she is ok with the profile...completed bsc in 2021...after 3 month working in chennai and 6months completed course in bfsi....and using the centre joined in hdfc.....loan insurance and CC cross selling...1 year experience and have propoer document....now home from office 38km,,,,,1 and half hour travel...she wants to relocate,,,,husband also sales field...expected 15 to 18....and have laptop and imeediate joining kindly cross check will try in training', 104, '0000-00-00 00:00:00', 1),
(20400, 21981, 131, 5, 0, 'Lack of communication ', 126, '0000-00-00 00:00:00', 1),
(20401, 22221, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20402, 21979, 131, 5, 0, 'Lack of communication', 126, '0000-00-00 00:00:00', 1),
(20403, 21968, 131, 5, 0, 'lack of communication', 126, '0000-00-00 00:00:00', 1),
(20404, 21986, 131, 5, 0, 'lack of confident', 126, '0000-00-00 00:00:00', 1),
(20405, 22228, 59, 1, 0, NULL, 74, '2024-10-12 04:53:43', 1),
(20406, 22130, 60, 1, 0, NULL, 11, '2024-10-14 09:38:43', 1),
(20407, 22176, 60, 1, 0, NULL, 18, '2024-10-14 10:40:54', 1),
(20408, 22235, 149, 5, 0, 'rejected- communication skills not good ,low confidence and out of station', 104, '0000-00-00 00:00:00', 1),
(20409, 22231, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20410, 22222, 19, 5, 0, 'too slow', 104, '0000-00-00 00:00:00', 1),
(20411, 22245, 74, 7, 0, 'she is ok with the profile completed bcom ...father farmer...fresher,,,,family in very poor ..highly job need...very active and intrested candidate ....expected 12k and have laptop...imeediate joining', 104, '0000-00-00 00:00:00', 1),
(20412, 22153, 59, 1, 0, NULL, 19, '2024-10-14 11:35:07', 1),
(20413, 22152, 137, 5, 0, 'candidate voice and communication not good and not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20414, 22243, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20415, 22218, 105, 5, 0, 'Candidate Performance Is Not Good ,But His Communication is Ok.Candidate Injured Via Accident,Also Have Spinal Issue, Sustainable is Doubt ', 104, '0000-00-00 00:00:00', 1),
(20416, 22177, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20417, 22256, 74, 7, 0, 'she is ok with the profile..completed bsc chemistry.....already worked 6 months in credit card sales chennai.....fin - icon.....sales....ready to join imeediately....expected 13k....father farmer..have laptop ready to join imeediately', 104, '0000-00-00 00:00:00', 1),
(20418, 22249, 149, 5, 0, 'rejected- not interest in the sales having interest in sales', 104, '0000-00-00 00:00:00', 1),
(20419, 22246, 89, 7, 0, 'GOOD SKILL , FRESHER', 104, '0000-00-00 00:00:00', 1),
(20420, 22248, 19, 7, 0, 'selected fresher so lets try 7 days we will confirm ctc 16k', 104, '0000-00-00 00:00:00', 1),
(20421, 22250, 149, 7, 0, 'selected- having good communication skill and interest but asking time to joining', 104, '0000-00-00 00:00:00', 1),
(20422, 22259, 149, 5, 0, 'rejected - not having confidence and interested in other job', 104, '0000-00-00 00:00:00', 1),
(20423, 22247, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20424, 22265, 137, 5, 0, 'candidate past 4 months work for axis home loan , not comfortable to relave the job , only looking for entertimant propose only so nit for my team', 104, '0000-00-00 00:00:00', 1),
(20425, 22253, 19, 7, 0, 'selected ctc 14k speaks well', 104, '0000-00-00 00:00:00', 1),
(20426, 22255, 149, 5, 0, 'rejected - not at all speaking ,low interest', 104, '0000-00-00 00:00:00', 1),
(20427, 22272, 152, 5, 0, 'Interested in Operations but expecting higher package', 104, '0000-00-00 00:00:00', 1),
(20428, 22207, 60, 1, 0, NULL, 30, '2024-10-14 03:52:59', 1),
(20429, 22253, 59, 1, 0, NULL, 19, '2024-10-14 04:01:05', 1),
(20430, 22269, 19, 7, 0, 'speaks well and bold voice exp person in tele calling in hand 18k salary', 104, '0000-00-00 00:00:00', 1),
(20431, 22271, 149, 5, 0, 'not having the way of prounciation and less confidence', 104, '0000-00-00 00:00:00', 1),
(20432, 22273, 105, 7, 0, 'Candidate Communication and Performance is good,also she have 3-Months experience in Tele calling Field but her distance is long ,will check with her in the training Period.', 104, '0000-00-00 00:00:00', 1),
(20433, 22276, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20434, 22248, 59, 3, 0, 'Fresher need to train and check in 7 days training', 19, '2024-10-14 04:44:37', 1),
(20435, 22246, 59, 1, 0, NULL, 89, '2024-10-14 04:44:41', 1),
(20436, 22275, 137, 5, 0, 'candidate communication not good and ery long distance so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20437, 22269, 59, 3, 0, 'Communication ok Have exp but not relevant one 5050 sustainability need to see', 19, '2024-10-14 04:45:29', 1),
(20438, 22245, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in 7 days training', 74, '2024-10-14 04:49:58', 1),
(20439, 22256, 59, 3, 0, 'communication Ok Fresher for our roles can give a try and check in 7 days training', 74, '2024-10-14 04:51:56', 1),
(20440, 22273, 59, 1, 0, NULL, 105, '2024-10-14 04:53:57', 1),
(20441, 22250, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training\n', 149, '2024-10-14 05:57:16', 1),
(20442, 22281, 74, 7, 0, 'he is ok with the profile , completed bcom computer application, father farmer single child, take active and have good exposure ,, already selected in zoho and tcs ,, due to long distance not joined ...expected to work in local due to parents, ready to move on to thanjavur,,have laptop...native thiruvarur 2 hours travel so need some time to relocate,,,expected 15k to 18k but have quality to gave kindly cross check in this parameter', 104, '0000-00-00 00:00:00', 1),
(20443, 22283, 149, 7, 0, 'selected - have confidence and communication was good but he will join after 23rd', 104, '0000-00-00 00:00:00', 1),
(20444, 22280, 19, 7, 0, 'fresher selected ctc 14k', 104, '0000-00-00 00:00:00', 1),
(20445, 22279, 152, 5, 0, 'Higher for RE but not qualified for RM', 104, '0000-00-00 00:00:00', 1),
(20446, 22281, 59, 1, 0, NULL, 74, '2024-10-15 02:39:44', 1),
(20447, 22283, 59, 3, 0, 'Fresher Can give a try in our role and check in 7 days training', 149, '2024-10-15 04:30:24', 1),
(20448, 22289, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20449, 22290, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20450, 22291, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20451, 22292, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20452, 22296, 149, 5, 0, 'rejected - not having confidence and will not suitable for sales', 104, '0000-00-00 00:00:00', 1),
(20453, 22294, 57, 5, 0, 'Candidate is 50/50. she said 1.5 yrs experience but she donxquott the payslip xxamp Offer letter, Relieving letter. already she getting 20k salary, now exp also 20k. communication not good. reject the profile', 104, '0000-00-00 00:00:00', 1),
(20454, 22299, 105, 5, 0, 'candidate communication and performance is good ,but expected hign packge', 104, '0000-00-00 00:00:00', 1),
(20455, 22301, 19, 5, 0, 'too slow', 104, '0000-00-00 00:00:00', 1),
(20456, 22280, 59, 1, 0, NULL, 19, '2024-10-17 12:50:27', 1),
(20457, 22303, 105, 5, 0, 'candidate com munication and performance is not good.also slightly pronunciation issue', 104, '0000-00-00 00:00:00', 1),
(20458, 22180, 59, 1, 0, NULL, 19, '2024-10-17 12:53:00', 1),
(20459, 22180, 19, 7, 0, 'lets try 7 days then we will confirm ,ctc 16k', 19, '2024-10-17 12:53:00', 1),
(20460, 22309, 102, 5, 0, 'interested in sales but previous company 3 and 4month working this candidate sustainability doubt ', 104, '0000-00-00 00:00:00', 1),
(20461, 22305, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20462, 22310, 19, 5, 0, 'aged and not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20463, 22307, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20464, 22308, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20465, 22313, 105, 5, 0, 'candidate communicatuon and perfomance is not good.the his voice is low also long distance sustainable is doubt', 104, '0000-00-00 00:00:00', 1),
(20466, 22312, 137, 5, 0, 'candidate only interest i non voice only so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20467, 22306, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20468, 22327, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20469, 22333, 149, 7, 0, 'SELECTED - GOOD COMMUNICATION AND KNOWN ABOUT SALES WILL GIVE 15 K TAKE HOME', 104, '0000-00-00 00:00:00', 1),
(20470, 22335, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20471, 22336, 19, 5, 0, 'he Interested in Non-Voice process', 104, '0000-00-00 00:00:00', 1),
(20472, 22311, 102, 5, 0, 'Candidate already working in customer support and interested in field work ', 104, '0000-00-00 00:00:00', 1),
(20473, 22334, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20474, 22338, 19, 5, 0, 'he cant able to speak well and walk too, he did not get any job so he came for interview here and he smelled so Weird ,he not look like a normal person', 104, '0000-00-00 00:00:00', 1),
(20475, 22317, 137, 5, 0, 'candiate comunication ok but not interest for field work so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20476, 22329, 11, 5, 0, 'worked in customer support only \nwill not work on sales ', 104, '0000-00-00 00:00:00', 1),
(20477, 22328, 11, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20478, 22339, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20479, 22340, 19, 7, 0, 'fresher ctc 14k', 104, '0000-00-00 00:00:00', 1),
(20480, 22337, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20481, 22342, 149, 5, 0, 'NOT OKAY WITH TIMING AND JOB', 104, '0000-00-00 00:00:00', 1),
(20482, 22341, 149, 5, 0, 'NOT OKAY WITH OUR SALARY AND TIMING', 104, '0000-00-00 00:00:00', 1),
(20483, 22325, 11, 7, 0, 'Selected for e sales', 104, '0000-00-00 00:00:00', 1),
(20484, 22340, 59, 1, 0, NULL, 19, '2024-10-18 01:23:37', 1),
(20485, 22343, 149, 5, 0, 'NOT GOOD WITH COMMUNICATION AND DISTANCE WAS LONG', 104, '0000-00-00 00:00:00', 1),
(20486, 22320, 19, 2, 0, 'hold', 104, '0000-00-00 00:00:00', 1),
(20487, 22322, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20488, 22319, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20489, 22130, 59, 1, 0, NULL, 29, '2024-10-18 03:39:52', 1),
(20490, 21449, 152, 4, 0, 'Selected for next round ', 139, '2024-10-18 03:42:07', 1),
(20491, 21449, 139, 4, 0, 'Selected for Rm rold \nMoved to abdul team', 139, '2024-10-18 03:42:07', 1),
(20492, 21385, 152, 4, 0, 'Moved For next round', 139, '2024-10-18 03:42:41', 1),
(20493, 21385, 139, 4, 0, 'Selected for Rm Role\nMove to Abdul', 139, '2024-10-18 03:42:41', 1),
(20494, 22353, 105, 5, 0, 'Candidate Not Interested in Voice Process,Also Have Sustainable Issue', 104, '0000-00-00 00:00:00', 1),
(20495, 22354, 19, 7, 0, 'kindly check with her existing salary if she takes in hand 18k then will proceed ctc 18k otherwise we will move ctc 16k', 104, '0000-00-00 00:00:00', 1),
(20496, 22331, 152, 2, 0, 'On hold will update', 104, '0000-00-00 00:00:00', 1),
(20497, 22356, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20498, 22355, 137, 5, 0, 'candidate commuication and voice is average , and very long distance so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20499, 22357, 137, 5, 0, 'candidate all good but she is not work proper for all compays and not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20500, 22354, 59, 1, 0, NULL, 19, '2024-10-18 05:11:17', 1),
(20501, 22333, 59, 1, 0, NULL, 149, '2024-10-18 05:20:06', 1),
(20502, 22326, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20503, 22304, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20504, 22288, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20505, 22362, 74, 5, 0, 'NOT SUITE FOR TELE CALLING', 104, '0000-00-00 00:00:00', 1),
(20506, 22363, 74, 5, 0, 'NOT FIT', 104, '0000-00-00 00:00:00', 1),
(20507, 22369, 149, 5, 0, 'REJECTED- she was not fit for our process as she was lack of confidence', 104, '0000-00-00 00:00:00', 1),
(20508, 22368, 19, 5, 0, 'she exp high salary and not worth of it because she does Not have insurance sales exp', 104, '0000-00-00 00:00:00', 1),
(20509, 21385, 18, 7, 0, 'Ready to Join from November 1st Week. Selected for Abdul Team. Immedeate Joiner', 152, '2024-10-19 12:06:07', 1),
(20510, 21449, 18, 7, 0, 'Selected for Abdul Team. Having Laptop and Immedeate Joiner. Please negotiate package', 152, '2024-10-19 12:06:31', 1),
(20511, 21547, 139, 4, 0, 'Selected for RM role\nhaving experience in sales \nhave to negotiate the package ', 152, '2024-10-19 12:07:32', 1),
(20512, 22373, 149, 7, 0, 'SELECTED- HAVE GOOD COMMUNICATION ,EXP IN HANDLING CUSTOMERS WILL GIVE CTC 18K WILL JOIN ON MON', 104, '0000-00-00 00:00:00', 1),
(20513, 22370, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20514, 22367, 59, 3, 0, 'Selected for Mf role final round interviewed by gokul and shortlisted', 104, '0000-00-00 00:00:00', 1),
(20515, 22374, 19, 5, 0, 'he Interested in biz not sales ', 104, '0000-00-00 00:00:00', 1),
(20516, 22376, 19, 5, 0, 'not worth of her asking salary and product view also she is down', 104, '0000-00-00 00:00:00', 1),
(20517, 22375, 105, 5, 0, 'Candidate Communication And performance is not good, Also his attitude and voice is low', 104, '0000-00-00 00:00:00', 1),
(20518, 22373, 59, 1, 0, NULL, 149, '2024-10-19 04:01:59', 1),
(20519, 22325, 60, 1, 0, NULL, 11, '2024-10-19 06:20:24', 1),
(20520, 22381, 109, 5, 0, 'Looking for december month internship she was in 3rd sem', 104, '0000-00-00 00:00:00', 1),
(20521, 22388, 74, 5, 0, 'NOT FIT FOR TEESALES', 104, '0000-00-00 00:00:00', 1),
(20522, 22390, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20523, 22385, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20524, 22404, 149, 5, 0, 'rejected - not good at communication', 104, '0000-00-00 00:00:00', 1),
(20525, 22406, 19, 5, 0, 'not fit for out side calling work', 104, '0000-00-00 00:00:00', 1),
(20526, 22360, 105, 5, 0, 'Candidate Communication And Performance is Not Good also his voice is very low', 104, '0000-00-00 00:00:00', 1),
(20527, 22382, 149, 7, 0, 'selected - having experience in achieving targets and good at interview ,also seeking requirement for a job will provide 14-15 take home', 104, '0000-00-00 00:00:00', 1),
(20528, 22412, 19, 7, 0, 'selected ctc 16k', 104, '0000-00-00 00:00:00', 1),
(20529, 22411, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20530, 22332, 149, 7, 0, 'selected - having good communication in english and interest shall provide salary upto 14-15 k willing for immediate join', 104, '0000-00-00 00:00:00', 1),
(20531, 22382, 59, 1, 0, NULL, 149, '2024-10-21 02:36:57', 1),
(20532, 22332, 59, 3, 0, 'Communication Ok fresher can give a try and check in 7 days training', 149, '2024-10-21 03:06:06', 1),
(20533, 22384, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20534, 22424, 152, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(20535, 22397, 152, 5, 0, 'Rejected', 104, '0000-00-00 00:00:00', 1),
(20536, 22422, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20537, 22400, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20538, 21385, 60, 1, 0, NULL, 18, '2024-10-22 10:18:29', 1),
(20539, 21449, 60, 1, 0, NULL, 18, '2024-10-22 10:19:09', 1),
(20540, 22432, 19, 5, 0, 'too slow', 104, '0000-00-00 00:00:00', 1),
(20541, 22435, 137, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20542, 22426, 57, 5, 0, 'Candidate is not ok for sales process, 2yrs exp sbi bankend process, 6m home loan process, communication not good.current salary 13.5k th , now ex th 20k. ', 104, '0000-00-00 00:00:00', 1),
(20543, 22446, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20544, 22443, 105, 5, 0, 'candidate communication and performance is ok but his voice is not clear and pronujnciation issue.sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(20545, 22452, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20546, 22451, 11, 5, 0, 'Expected salary high\nWorked in lead model\nWonxquott suitable for cold calling', 104, '0000-00-00 00:00:00', 1),
(20547, 22454, 102, 7, 0, 'Convincing and communication is better and then interested in sales once confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(20548, 22461, 19, 5, 0, 'Not Fit for the Sales ', 104, '0000-00-00 00:00:00', 1),
(20549, 22437, 74, 5, 0, 'NOT FIT FOR TELESALES', 104, '0000-00-00 00:00:00', 1),
(20550, 22436, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20551, 22459, 149, 7, 0, 'selected - having good communication skill and english fluence good and will give 15k ', 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(20552, 22460, 149, 5, 0, 'rejected - not ok about the communication and confidence', 104, '0000-00-00 00:00:00', 1),
(20553, 22445, 109, 5, 0, 'communication is not good', 104, '0000-00-00 00:00:00', 1),
(20554, 22459, 59, 1, 0, NULL, 149, '2024-10-23 10:15:27', 1),
(20555, 22474, 74, 5, 0, 'other domain not fit', 104, '0000-00-00 00:00:00', 1),
(20556, 22477, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20557, 22479, 152, 7, 0, 'Selected for RE Profile immediate joining 15k take home salary negotiated Complete ASAP', 104, '0000-00-00 00:00:00', 1),
(20558, 22401, 152, 7, 0, 'Selected for RM Profile shall proceed with salary negotiation expected joining by november 1st', 104, '0000-00-00 00:00:00', 1),
(20559, 22483, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20560, 22484, 149, 5, 0, 'rejected - not ok with timing and having interest in other profession', 104, '0000-00-00 00:00:00', 1),
(20561, 22488, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20562, 22485, 137, 5, 0, 'communication not well and only looking for telecalling work not interest to out side call so nt fit for my team', 104, '0000-00-00 00:00:00', 1),
(20563, 22487, 19, 7, 0, 'CTC 15K FRESHER WORKIN IN MEDICAL BILLING FOR 3 MONTH LETS TRY 7 DAYS AND WE WILL CONFIRM', 104, '0000-00-00 00:00:00', 1),
(20564, 22470, 57, 5, 0, 'candidate is not fit for sales,. communication good but she interested in IT domain, sustainability issue', 104, '0000-00-00 00:00:00', 1),
(20565, 22491, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20566, 22500, 149, 5, 0, 'rejected -having interest in it and also having plans to switch over in future', 104, '0000-00-00 00:00:00', 1),
(20567, 22490, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20568, 22487, 59, 5, 0, 'She is a complete IT graduate also she is not comfort with the distance', 19, '2024-10-23 02:54:37', 1),
(20569, 22503, 152, 5, 0, 'Req for customer support', 104, '0000-00-00 00:00:00', 1),
(20570, 22504, 152, 7, 0, 'Selected for RE Profile salary to be negotiated', 104, '0000-00-00 00:00:00', 1),
(20571, 22504, 59, 1, 0, NULL, 152, '2024-10-23 08:33:22', 1),
(20572, 22479, 59, 3, 0, 'Selected for RE Role Communication Ok Fresher Need to train from Scratch Give a try and check in 7 days training\n', 152, '2024-10-23 08:34:18', 1),
(20573, 22401, 59, 1, 0, NULL, 152, '2024-10-23 08:35:11', 1),
(20574, 22512, 149, 5, 0, 'candidate have interested in it and also not have clear idea about longitivity in this company', 104, '0000-00-00 00:00:00', 1),
(20575, 22473, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20576, 22519, 105, 7, 0, 'Candidate communication and performance is good.aslo his voice and attire is nice ,will check with him in the training period', 104, '0000-00-00 00:00:00', 1),
(20577, 22520, 137, 7, 0, 'candidate communication and voice is good , have a own bike and lap , interest to out side call , exp salary is 15to 16k , try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20578, 22519, 59, 3, 0, 'Fresher need to check and confirm in the training period', 105, '2024-10-24 11:19:27', 1),
(20579, 22524, 105, 7, 0, 'candidate performacne and communication is good.his attire and voice is also good.will check with him in the training period sugessted cTC as 15k per Month and candidate accepted it that.', 104, '0000-00-00 00:00:00', 1),
(20580, 22525, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20581, 22509, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20582, 22471, 152, 7, 0, 'Already selected candidate kindly proceed for joining', 104, '0000-00-00 00:00:00', 1),
(20583, 22524, 59, 1, 0, NULL, 105, '2024-10-24 01:25:16', 1),
(20584, 22533, 19, 5, 0, 'not worth of her asking salary', 104, '0000-00-00 00:00:00', 1),
(20585, 22530, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20586, 22538, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20587, 22536, 57, 7, 0, 'candidate is ok 50/50 fresher. she donxquott know about the sales process. but she interested just try. provide freshers salary\nthanks', 104, '0000-00-00 00:00:00', 1),
(20588, 22539, 11, 5, 0, 'Not suitable for sales ', 104, '0000-00-00 00:00:00', 1),
(20589, 22486, 27, 4, 0, 'Selected. Need to Monitor 1st 15 Days.', 104, '0000-00-00 00:00:00', 1),
(20590, 22541, 19, 5, 0, 'He is intrested in full stock so not fit for insurance sales', 104, '0000-00-00 00:00:00', 1),
(20591, 22412, 59, 1, 0, NULL, 19, '2024-10-25 11:28:34', 1),
(20592, 22562, 152, 4, 0, 'Selected for RE profile', 104, '0000-00-00 00:00:00', 1),
(20593, 22561, 152, 7, 0, 'Selected for RE Role, salary negotiation pending candidate ready for immediate joining', 104, '0000-00-00 00:00:00', 1),
(20594, 22542, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20595, 22567, 19, 7, 0, 'selected job needed person ctc 14k ', 104, '0000-00-00 00:00:00', 1),
(20596, 22543, 19, 7, 0, 'job needed person,ctc 16k', 104, '0000-00-00 00:00:00', 1),
(20597, 22536, 59, 3, 0, 'Communication Ok fresher much preferred non voice can give a try and check', 57, '2024-10-25 12:12:46', 1),
(20598, 22570, 19, 5, 0, 'not completed degree and low profile also', 104, '0000-00-00 00:00:00', 1),
(20599, 22576, 152, 2, 0, 'Hold for one week\n', 104, '0000-00-00 00:00:00', 1),
(20600, 22567, 59, 1, 0, NULL, 19, '2024-10-25 01:24:21', 1),
(20601, 22543, 59, 1, 0, NULL, 19, '2024-10-25 01:30:42', 1),
(20602, 22575, 74, 5, 0, 'unfit', 104, '0000-00-00 00:00:00', 1),
(20603, 22569, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(20604, 22587, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20605, 22602, 102, 5, 0, 'Communication and convincing skill is low and then he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20606, 22603, 105, 7, 0, 'Candidate communication and performance is good.also he have experiance in other sales domain but no in the telicalling field.as Finalized His as CTC 15k to 16K Per Month.', 104, '0000-00-00 00:00:00', 1),
(20607, 22600, 74, 7, 0, 'he is ok with the profile attend interview 2 years back...rejected...after he is worked in excela technology claim based uS process night shift...18k salary....need to change the process and studied phython and joined in a pix monks company as a data base engineer and due to father health issue releived from the job.....getting 18k salary.....father heart patient....so he is not ready to work in other cities.....we try this candidate will see in training......have no laptop ready to arrange...ready to join next month...kindly check once and confirm.', 104, '0000-00-00 00:00:00', 1),
(20608, 22600, 59, 1, 0, NULL, 74, '2024-10-26 01:38:45', 1),
(20609, 22331, 18, 7, 3, 'Selected for Abdul Team. Can Join by Wednesday. Package Expectation is high but can give a decent hike as per our standard from the last CTC. She is having a laptop and please release the offer', 152, '2024-10-26 02:57:09', 1),
(20610, 22331, 152, 4, 0, 'Selected for next round waiting for sriram sir interview', 152, '2024-10-26 02:57:09', 1),
(20611, 22561, 59, 1, 0, NULL, 152, '2024-10-26 03:00:02', 1),
(20612, 22471, 18, 7, 3, 'Visweshwaran Selected For Abdul Team. Ready to Join Next Week post Diwali Offered 3.3L CTC', 152, '2024-10-26 03:09:41', 1),
(20613, 22562, 59, 1, 0, NULL, 152, '2024-10-26 03:10:23', 1),
(20614, 22603, 59, 3, 0, 'Communication Ok Can be trained in our roles and check in 7 days training', 105, '2024-10-26 05:08:16', 1),
(20615, 22520, 59, 3, 0, 'Communication Average Fresher Pressure handling doubts long run doubts 5050 check in 7 days and confirm', 137, '2024-10-28 09:56:36', 1),
(20616, 22611, 19, 7, 0, 'selected ,speaks well ctc 18k so lets try after 7 days joining after diwali', 104, '0000-00-00 00:00:00', 1),
(20617, 20303, 59, 3, 0, 'Communication ok hired him as an intern for 3 months in our roles and we have given him the opportunity', 60, '0000-00-00 00:00:00', 1),
(20618, 22471, 60, 1, 0, NULL, 18, '2024-10-28 11:23:58', 1),
(20619, 22401, 60, 1, 0, NULL, 18, '2024-10-28 11:26:24', 1),
(20620, 22611, 59, 1, 0, NULL, 19, '2024-10-28 11:34:15', 1),
(20621, 22606, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20622, 22612, 149, 5, 0, 'NOT GOOD AT COMMUNICATION AND NOT HAVING BIKE OR LAPTOP AND FROM TAMBARAM', 104, '0000-00-00 00:00:00', 1),
(20623, 22614, 74, 5, 0, 'UNFIT', 104, '0000-00-00 00:00:00', 1),
(20624, 22613, 74, 5, 0, 'NOT SUITE', 104, '0000-00-00 00:00:00', 1),
(20625, 22615, 19, 5, 0, 'Expected Salary was High ', 104, '0000-00-00 00:00:00', 1),
(20626, 22620, 137, 7, 0, 'candidate communicatio and voice ok , futer plan is own business for after 5 yeras , native , coimbature noe eakkatuthaingal location , fresher , try for 7 days trainig period', 104, '0000-00-00 00:00:00', 1),
(20627, 21913, 57, 7, 0, 'candidate is ok, convincing skills good. communication ok. but he exp 16k to 18k . but i have informed freshers salary only negotiate the salary and confirm the joining', 104, '0000-00-00 00:00:00', 1),
(20628, 22621, 149, 5, 0, 'candidate was interested in other profession did not have experience in sales but looking for 20 ctc', 104, '0000-00-00 00:00:00', 1),
(20629, 22608, 149, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20630, 22620, 59, 1, 0, NULL, 137, '2024-10-28 03:05:32', 1),
(20631, 21913, 59, 3, 0, 'Communication Ok Have Salary Exp need to check and confirm in 7 days training', 57, '2024-10-28 07:02:10', 1),
(20632, 22629, 105, 7, 0, 'candidate communication and performance is ok,but tamil pronunciation is little bit problem 5050 profile will check with him in the training period.finalized CTC 14k to 15k Per month.Check with him and provide the discussed cTC', 104, '0000-00-00 00:00:00', 1),
(20633, 22633, 11, 7, 0, 'Selected .confirm on salary', 104, '0000-00-00 00:00:00', 1),
(20634, 22628, 11, 7, 0, 'Selected \nNeed to confirm on salary', 104, '0000-00-00 00:00:00', 1),
(20635, 22629, 59, 3, 0, 'Communication Ok Fresher sustainability and pressure handling doubts give a try and check in 7 days training', 105, '2024-10-29 11:44:29', 1),
(20636, 17576, 102, 5, 0, 'Communication and convincing skill is low and then he is interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20637, 22634, 89, 7, 0, 'good skill , fresher', 104, '0000-00-00 00:00:00', 1),
(20638, 22632, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20639, 22626, 149, 7, 0, 'SELECTED - INTERESTED IN SALES HAVE CONFIDENT .', 104, '0000-00-00 00:00:00', 1),
(20640, 22639, 149, 5, 0, 'NOT SUITABLE FOR SALES OR VOICE PROCESS', 104, '0000-00-00 00:00:00', 1),
(20641, 22636, 149, 7, 0, 'SELECTED - HAVING INTEREST IN SALES AND READY TO WORK WITH TIME AND ALL ALSO HAVE BIKE', 104, '0000-00-00 00:00:00', 1),
(20642, 22635, 149, 5, 0, 'REJECTED NOT SUITABLE VERY SHY TYPE AND NOT OK WITH COMMUNICATION', 104, '0000-00-00 00:00:00', 1),
(20643, 22640, 105, 7, 0, 'candidate communication and performance is ok 5050 ,willcheck eith her in the training period.discussed cTC as 13k to 14k per month.check with her and finalize the discussed CTC.', 104, '0000-00-00 00:00:00', 1),
(20644, 22642, 57, 5, 0, 'candidate is 50/50, she exp salary 20k.\nconvincing skills not good. lack of communications,reject the profile', 104, '0000-00-00 00:00:00', 1),
(20645, 22626, 59, 3, 0, 'Communication Ok 5050 Sustainability looking for comfort with her friend opportunity too long run doubts a lot give a try and check in 7 days training', 149, '2024-10-29 04:07:28', 1),
(20646, 22636, 59, 2, 0, 'Too long Distance he is looking for opportunity near by also came along with his friend and looking for the comfortness for both to have the opportunity Will not sustain in a long run', 149, '2024-10-29 04:14:51', 1),
(20647, 22643, 149, 5, 0, 'REJECTED - NOT SUITABLE FOR SALES ,NOT AT ALL TALKING,SLOW RESPONSE', 104, '0000-00-00 00:00:00', 1),
(20648, 22638, 131, 4, 0, 'Good communication and confident level have Experience in sales can Process for next round', 126, '0000-00-00 00:00:00', 1),
(20649, 22638, 30, 7, 4, 'Immediate joining expect CTC 5.2 but will try to 4.5 to 4.75 for rm', 131, '2024-10-29 05:13:19', 1),
(20650, 22640, 59, 3, 0, 'Fresher Mentioned 2yrs exp in insurance but no documents pertaining this. Married and separated ,2yrs kid is with Husband and she ensures there wont be any issues regarding this 5050 Sustainability need to check', 105, '2024-10-29 07:18:50', 1),
(20651, 22634, 59, 5, 0, 'Got another Opportunity with 2.04 LPA not interested\n', 89, '2024-10-30 10:45:56', 1),
(20652, 22633, 60, 1, 0, NULL, 11, '2024-11-01 11:46:26', 1),
(20653, 22628, 60, 1, 0, NULL, 11, '2024-11-01 11:49:52', 1),
(20654, 22646, 152, 5, 0, 'Not fit for sales, can try for Customer support but package is high for the same ', 104, '0000-00-00 00:00:00', 1),
(20655, 22647, 57, 5, 0, 'Candidate is unfit for the sales profile, she interested in IT,reject the profile', 104, '0000-00-00 00:00:00', 1),
(20656, 22649, 57, 5, 0, 'candidate is unfit for sales. communication not good. married. she expected leaves and freedoms like early logouts. and sat off. reject the profile', 104, '0000-00-00 00:00:00', 1),
(20657, 22652, 149, 2, 0, 'candidate was interested and needed job before he was taken care of father biz and also want immediate join have bike.', 104, '0000-00-00 00:00:00', 1),
(20658, 22331, 60, 1, 0, NULL, 18, '2024-11-02 12:26:04', 1),
(20659, 22654, 74, 7, 0, 'she is ok with the profile, completed ug and 1 year gap and joined in asconn finance...star tat and care tie uped company worked in 3 months due to kidney stone she is releived....speaked good and have product knowledge ,,,no laptop ready to arrange ...expected 13 to 15k ...mother worked in garments in chennai...15k salary..brother worked in engine manufacturing 15k salary....1 hour travel from home..kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(20660, 22653, 74, 7, 0, 'he is ok with the profile ....already worked in training only star health vadapalani branch...due to health issue releived and joined in asconn tech.....due to father heart problem relieved from the job...expected 13 to 15k...have bike travel time half hour...ready to join immediately...have laptop....mba last semester not completed due to financial issue..kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(20661, 22655, 149, 7, 0, 'selected - having interest in sales and incentives already have sales experience and will give 15k and ok for monday joining ', 104, '0000-00-00 00:00:00', 1),
(20662, 22655, 59, 5, 0, 'Continuous Line Busy no call bacl also shows her non interest', 149, '2024-11-02 02:43:21', 1),
(20663, 22320, 19, 5, 0, 'Not Fit for Sales ', 19, '2024-11-02 04:17:44', 1),
(20664, 22454, 59, 1, 0, NULL, 102, '2024-11-02 04:19:54', 1),
(20665, 22648, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20666, 22660, 105, 7, 0, 'candidate commnication and performance is good,his voice is also good ,ctc finalized 14k to 15k only .will check with him in the trfaining period', 104, '0000-00-00 00:00:00', 1),
(20667, 22659, 105, 5, 0, 'candidate communication is ok,but his performance is little bit only good.also her voice is low and she expected higher package', 104, '0000-00-00 00:00:00', 1),
(20668, 22661, 149, 7, 0, 'selected - interested in sales and confident also have bike ,looking for immediate joining', 104, '0000-00-00 00:00:00', 1),
(20669, 22663, 149, 5, 0, 'rejected - having less confident and long distance from office', 104, '0000-00-00 00:00:00', 1),
(20670, 22669, 57, 7, 0, 'candidate is ok, observation skills good. she interest marketing field. pls check location she said sholinganallur.pls provide freshers salary and confirm the joining date.', 104, '0000-00-00 00:00:00', 1),
(20671, 22670, 137, 5, 0, 'candidate voice ok but communication is very low and low understanding and candidate say its long distance so no it for my team', 104, '0000-00-00 00:00:00', 1),
(20672, 22668, 149, 7, 0, 'selected - interested in sales ,ok with timing lets try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20673, 22667, 149, 7, 0, '\nselected - interested in sales and communication ok ,known additional language but she and her was from same area and want to confirm their stability lets try for training days', 104, '0000-00-00 00:00:00', 1),
(20674, 22667, 149, 7, 0, '\nselected - interested in sales and communication ok ,known additional language but she and her was from same area and want to confirm their stability lets try for training days', 104, '0000-00-00 00:00:00', 1),
(20675, 22661, 59, 2, 0, 'Discussed - need time to join- he is busy with boxign match', 149, '2024-11-04 11:54:13', 1),
(20676, 22638, 60, 1, 0, NULL, 30, '2024-11-04 11:57:12', 1),
(20677, 22666, 137, 5, 0, 'candidate communication and body language is very different , sales exp for 1 year, not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20678, 22650, 109, 2, 0, 'High expectation. she needs to confirm good communication and attitude', 104, '0000-00-00 00:00:00', 1),
(20679, 22664, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20680, 22665, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20681, 22669, 59, 2, 0, 'Hold - She need time to confirm have exams too ', 57, '2024-11-04 12:41:09', 1),
(20682, 22667, 59, 3, 0, 'Communication Ok fresher need to train and check in 7 days training', 149, '2024-11-04 12:45:04', 1),
(20683, 22668, 59, 3, 0, 'Communication Ok Fresher need to train and check in 7 days Her friend also got selected for the role', 149, '2024-11-04 12:47:00', 1),
(20684, 22672, 57, 5, 0, 'candidate not suit for sales profile. he work in aditya birla just 3month only. now he exp 15k take home, sustainability issue,he met accident 1yr back, my thought driving also tough.reject the profile', 104, '0000-00-00 00:00:00', 1),
(20685, 22673, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20686, 22675, 11, 5, 0, 'will not sustain in sales ', 104, '0000-00-00 00:00:00', 1),
(20687, 22676, 149, 5, 0, 'good at communication but long distance asking time to settle in chennai', 104, '0000-00-00 00:00:00', 1),
(20688, 22680, 149, 5, 0, 'rejected- having interest in other profession looking for temporary option now', 104, '0000-00-00 00:00:00', 1),
(20689, 22679, 137, 5, 0, 'candidate commuication ok but voice not good and very long distance so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20690, 22678, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20691, 22677, 105, 5, 0, 'candidate communication and performance is low and his voice is also very low.sustainable is doubt', 104, '0000-00-00 00:00:00', 1),
(20692, 22660, 59, 3, 0, 'Need to check and confirm in the training ', 105, '2024-11-04 03:24:00', 1),
(20693, 22687, 149, 5, 0, 'rejected - not having interest in sales and not ok with ofz time', 104, '0000-00-00 00:00:00', 1),
(20694, 22688, 137, 5, 0, 'candidate all ok but very long distance and she need to logout the office everyday on 6 to 6.30 so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(20695, 22689, 19, 7, 0, 'Selected CTC 16k ', 104, '0000-00-00 00:00:00', 1),
(20696, 22690, 149, 5, 0, 'rejected - having interest in own buisness and not good at communication', 104, '0000-00-00 00:00:00', 1),
(20697, 22691, 102, 7, 0, 'Communication and convincing skill is good and interested in telesales will try training period ( once confirm DOJ and salary package )\n', 104, '0000-00-00 00:00:00', 1),
(20698, 22693, 105, 5, 0, 'canidate communication and performance is not good ,also sustainable doubt', 104, '0000-00-00 00:00:00', 1),
(20699, 22694, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20700, 22695, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20701, 22700, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20702, 22698, 102, 5, 0, 'Communication and convincing skill is low and then interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(20703, 22657, 57, 5, 0, 'candidate communication good. but salary exp high 20k.fresher.Well Settled,entire family doing own business like textiles shop. .unfit for for the sales profile', 104, '0000-00-00 00:00:00', 1),
(20704, 22702, 149, 5, 0, 'reject - communication was not good and also interested in other profession', 104, '0000-00-00 00:00:00', 1),
(20705, 22701, 149, 5, 0, 'rejected - not ok with way of communication and interested in other profession', 104, '0000-00-00 00:00:00', 1),
(20706, 22654, 59, 3, 0, 'Communication Ok 5050 Showing 3 months exp no proper records and seems to be doubfull give a try and check in training', 74, '2024-11-05 12:16:36', 1),
(20707, 22653, 59, 3, 0, '7months 3 companies no document proof sustainability doubts a lot 40kms up and down need to check in training period', 74, '2024-11-05 12:19:07', 1),
(20708, 22703, 137, 5, 0, 'candidate not proper dress code and not under standing my words so not fit for my team ', 104, '0000-00-00 00:00:00', 1),
(20709, 22707, 152, 5, 0, 'No clarity in his answers about his personal life as well as professional approach was good but nothing else was. ', 104, '0000-00-00 00:00:00', 1),
(20710, 22706, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20711, 22708, 19, 5, 0, 'Not Fit for Sales ', 104, '0000-00-00 00:00:00', 1),
(20712, 22674, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20713, 22691, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check and confirm in training ', 102, '2024-11-05 06:07:58', 1),
(20714, 22716, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20715, 22689, 59, 3, 0, 'Communication Ok 3 months exp in calling but no documents can give a try and check in 7 days\n', 19, '2024-11-06 10:32:34', 1),
(20716, 22719, 149, 5, 0, 'rejected - not ok with salary and doubleminded about job', 104, '0000-00-00 00:00:00', 1),
(20717, 22725, 74, 7, 0, 'she is ok with the profile, already worked in telecalling and data entry,,,,,speaked well and high job need ,,,,expected 15k have no laptop ready to arrange,,,,monday joining kindly check once and confirm...mahalakshmi class mate', 153, '0000-00-00 00:00:00', 1),
(20718, 22722, 19, 7, 0, 'Selected CTC 16k', 104, '0000-00-00 00:00:00', 1),
(20719, 22727, 19, 5, 0, 'Not Fit for his asking salary ', 104, '0000-00-00 00:00:00', 1),
(20720, 22729, 149, 5, 0, 'rejected - not ok with salary level of our compny\n', 104, '0000-00-00 00:00:00', 1),
(20721, 22728, 19, 5, 0, 'Sustainability was doubt ', 104, '0000-00-00 00:00:00', 1),
(20722, 22731, 105, 5, 0, 'Candidate Communication and performance is not good.also her voice is not bold and clear.then distance is long sustainable doubt ', 104, '0000-00-00 00:00:00', 1),
(20723, 22734, 137, 5, 0, 'candidate just 6 months only looking or job after course completed try for it and maily interest for it only , and very long distance so no fit for my team', 104, '0000-00-00 00:00:00', 1),
(20724, 22735, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(20725, 22736, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(20726, 22722, 59, 3, 0, 'Communication Ok fresher for our roles can be trained check and confirm in 7 days training\n', 19, '2024-11-06 03:31:58', 1),
(20727, 22737, 149, 2, 0, 'candidate was having interest but having some doubts with salary and so let try for 7days training', 104, '0000-00-00 00:00:00', 1),
(20728, 22725, 59, 3, 0, 'Communication Ok Can be trained in our roles and check in 7 days training', 74, '2024-11-06 03:59:18', 1),
(20729, 22744, 149, 5, 0, 'rejected - not suitable for our working and not have confidence about stability', 104, '0000-00-00 00:00:00', 1),
(20730, 22742, 137, 7, 0, 'candidate communication and voice ok , fresher , native location , confirm the work after relocate to chennai , ex salary 15k , try for 7 days training periods', 104, '0000-00-00 00:00:00', 1),
(20731, 14197, 152, 4, 0, 'Selected for next round', 104, '0000-00-00 00:00:00', 1),
(20732, 22746, 11, 5, 0, 'worked in IT profile .will not suitable forsales ', 104, '0000-00-00 00:00:00', 1),
(20733, 22758, 149, 5, 0, 'rejected - not good at prounciation and communication and long distance', 104, '0000-00-00 00:00:00', 1),
(20734, 22753, 149, 5, 0, 'rejected - not good at communication and less confidence ,long distance', 104, '0000-00-00 00:00:00', 1),
(20735, 22759, 137, 7, 0, 'candidate communication and voice also good , past 6 month work from back end team for bike insurance , exp salary for 15k so try for 7 days training periods ', 104, '0000-00-00 00:00:00', 1),
(20736, 22745, 105, 7, 0, 'candidate performance and attention is good ,but slightly voice pronunciation correlation issue,will check with her in the training period 5050 profile', 104, '0000-00-00 00:00:00', 1),
(20737, 22745, 105, 7, 0, 'candidate performance and attention is good ,but slightly voice pronunciation correlation issue,will check with her in the training period 5050 profile', 104, '0000-00-00 00:00:00', 1),
(20738, 22760, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(20739, 22745, 59, 3, 0, 'Communication Ok Have parttime calling exp can give a try and check in training ', 105, '2024-11-07 12:24:54', 1),
(20740, 22764, 149, 5, 0, 'rejected - not good at communication and not ok with salary', 104, '0000-00-00 00:00:00', 1),
(20741, 22763, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 104, '0000-00-00 00:00:00', 1),
(20742, 22723, 105, 5, 0, 'Candidate Communication And performance is Ok,But Her Distance is To long sustainable is more Doubt,', 104, '0000-00-00 00:00:00', 1),
(20743, 22762, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20744, 22759, 59, 5, 0, 'Dropped - requested Previous exp documents but she not shared any', 137, '2024-11-07 02:36:29', 1),
(20745, 22742, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training ', 137, '2024-11-07 02:40:31', 1),
(20746, 22765, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(20747, 22751, 74, 5, 0, 'UNFIT', 153, '0000-00-00 00:00:00', 1),
(20748, 14197, 18, 7, 2, 'Selected for Abdul Team. Negotiate the salary with 10 to 15% hike from the previous Salary. Immedeate Joiner and he has laptop and Twowheeler', 152, '2024-11-07 04:22:56', 1),
(20749, 22576, 152, 5, 0, 'Too highly qualified', 152, '2024-11-07 06:04:51', 1),
(20750, 14197, 59, 3, 0, 'Communication Ok have exp in sales calling give a try and check in training period ', 18, '2024-11-07 06:11:25', 1),
(20751, 22770, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(20752, 22781, 149, 5, 0, 'rejected - candidate was already looked for other profession and long distance', 153, '0000-00-00 00:00:00', 1),
(20753, 22775, 137, 5, 0, 'candidate already selected for govt job in tamilnad barder policy waiting for the resultaftre 4 months join the work just4 months serch the work so not fot for my team', 153, '0000-00-00 00:00:00', 1),
(20754, 22617, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 153, '0000-00-00 00:00:00', 1),
(20755, 22711, 149, 5, 0, 'reject- she was not ok with salary and also not good at communication', 153, '0000-00-00 00:00:00', 1),
(20756, 22784, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(20757, 22785, 102, 5, 0, 'Candidate communication and convincing skill low and interested in customer support not interested in sales ', 153, '0000-00-00 00:00:00', 1),
(20758, 22766, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(20759, 22789, 105, 7, 0, 'candidate communication and performance is little bit ok.5050 Profile will try to check in the training period.Discussed CTC 15K Per month', 153, '0000-00-00 00:00:00', 1),
(20760, 22789, 59, 5, 0, 'Discussed and asked her to share the previous exp documents but no responses later', 105, '2024-11-08 03:55:33', 1),
(20761, 22797, 137, 7, 0, 'candidate communication and voce good , interest to sales , he is already studing for ias exam also , so try for 7 days trainng periods', 153, '0000-00-00 00:00:00', 1),
(20762, 22786, 149, 7, 0, 'candidate was interested in sales and good at communication also ready for immediate joining will give 16k as salary', 153, '0000-00-00 00:00:00', 1),
(20763, 22786, 59, 2, 0, 'Shared breakup - He need time to confirm have typing class after 7 PM - Discussed shared breakup he need to confirm', 149, '2024-11-09 12:34:22', 1),
(20764, 22796, 57, 5, 0, 'Candidate unfit for sales, he interested iT domain.reject the profile.team referrence', 153, '0000-00-00 00:00:00', 1),
(20765, 22791, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(20766, 22800, 152, 7, 4, 'Selected for next round, candidate has bike xxamp Laptop. expected 3.5L least, last income 3L. ', 153, '0000-00-00 00:00:00', 1),
(20767, 22800, 18, 7, 3, 'Selected for Abdul team. Immedeate Joiner and can offer 3.5L CTC. ', 152, '2024-11-09 02:41:59', 1),
(20768, 22801, 152, 4, 0, 'Good intention towards sales and communication is fine selected for next round', 153, '0000-00-00 00:00:00', 1),
(20769, 22797, 59, 3, 0, 'Communication Ok 5050 on sustainability issues Prepared UPSC /business plans etc long run doubts also pressure handling will look', 137, '2024-11-09 03:20:23', 1),
(20770, 22733, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20771, 22812, 74, 5, 0, 'unfit', 153, '0000-00-00 00:00:00', 1),
(20772, 22715, 149, 5, 0, 'rejected - candidate was not at all speaking and not suitable for sales', 153, '0000-00-00 00:00:00', 1),
(20773, 22801, 18, 5, 0, 'He got Other offers and intersted to Join in another company', 152, '2024-11-11 12:33:46', 1),
(20774, 22813, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(20775, 22816, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(20776, 22824, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20777, 22808, 137, 5, 0, 'candidate just like that looking for job , not very much interest and not fit for sales and my team , not interest also out side call ', 154, '0000-00-00 00:00:00', 1),
(20778, 22830, 149, 7, 0, 'selected - having interest in sales and communication ok lets try for 7days training period', 154, '0000-00-00 00:00:00', 1),
(20779, 22831, 149, 5, 0, 'rejected - communication was not clear and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20780, 22835, 149, 7, 0, 'selected - candidate was good at communication and have experience ready for immediate joining we will give 15k take home', 154, '0000-00-00 00:00:00', 1),
(20781, 6954, 74, 5, 0, 'not fit', 74, '2024-11-13 10:33:37', 1),
(20782, 10691, 74, 5, 0, 'unfit', 74, '2024-11-13 10:35:47', 1),
(20783, 22836, 105, 7, 0, 'candidate communication and performance is good.his voice and approach is also good,but candidate done surgery on last year he said bike travel is not Suitable.cTC discussed as 1.8/LPA.as discussed after 6 based On performance hike will provide.', 154, '0000-00-00 00:00:00', 1),
(20784, 22829, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20785, 22835, 59, 2, 0, 'Continous RNR', 149, '2024-11-13 11:08:39', 1),
(20786, 22846, 149, 5, 0, 'not good at communication and not have stability in previous companies', 154, '0000-00-00 00:00:00', 1),
(20787, 22845, 149, 5, 0, 'communication was not so good and long distance having idea for own business', 154, '0000-00-00 00:00:00', 1),
(20788, 22853, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(20789, 22852, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20790, 18597, 74, 5, 0, 'not fit', 74, '2024-11-13 03:39:05', 1),
(20791, 22851, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20792, 22851, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20793, 22843, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20794, 22836, 59, 3, 0, 'Communication Ok fresher can give a try and check in training period', 105, '2024-11-13 03:47:52', 1),
(20795, 22830, 59, 3, 0, 'Communication Ok need to check in training and confirm', 149, '2024-11-13 06:25:12', 1),
(20796, 22858, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20797, 22848, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20798, 22800, 59, 3, 0, 'Communication Ok based on the salary commitment by area manager proceeded with the same his exp is some what more Need to check in training', 18, '2024-11-14 11:04:45', 1),
(20799, 22855, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20800, 22863, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20801, 22864, 19, 5, 0, 'not even try to speak', 154, '0000-00-00 00:00:00', 1),
(20802, 22862, 149, 5, 0, 'rejected - candidate was not good at communication and she was having plans for other profession also', 154, '0000-00-00 00:00:00', 1),
(20803, 22857, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20804, 22849, 149, 5, 0, 'rejected - candidate was bad at communication ,long distance and not interested in sales', 154, '0000-00-00 00:00:00', 1),
(20805, 22868, 137, 7, 0, 'candidate prevosl work from dmat account open telecalling work exp for 3 month , that company recentl closed , so that reason to search the other company but candidate communication and voice also good past salary 15k payslip also in hand so exp salary is 16 to 18k so try for 7 days training periods ', 154, '0000-00-00 00:00:00', 1),
(20806, 22869, 19, 5, 0, 'she asked 1 day leave for every week', 154, '0000-00-00 00:00:00', 1),
(20807, 22871, 149, 7, 0, 'candidate was good at communication ,bold and prounciation ,also interested in sales ,kannan sir also checked her we shall provided salary 15k-16k ', 154, '0000-00-00 00:00:00', 1),
(20808, 22872, 109, 5, 0, 'High expectation', 154, '0000-00-00 00:00:00', 1),
(20809, 22875, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20810, 22876, 105, 5, 0, 'candidate communication and performance is good.he is looking for non-voice and also he clearly mentioned for customer support in the quetionary sheet', 154, '0000-00-00 00:00:00', 1),
(20811, 22877, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20812, 22871, 59, 3, 0, 'Communication Ok Can be trained in our roles kindly check in 7 days training', 149, '2024-11-14 04:00:52', 1),
(20813, 22889, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20814, 22832, 74, 5, 0, 'unfit', 153, '0000-00-00 00:00:00', 1),
(20815, 22887, 19, 7, 0, 'in hand 14k job needed person lets we confirm 7 days ,This month 18th joining(monday)', 154, '0000-00-00 00:00:00', 1),
(20816, 22865, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20817, 22874, 149, 5, 0, 'rejected - candidate was not good at communication ,having interest in it profession ,did not have sustainablity in old companies', 154, '0000-00-00 00:00:00', 1),
(20818, 22888, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20819, 22822, 59, 3, 0, 'Communication Ok Need to open up a lot have exp in customer support can give a try and train in Renewals will check in training final round by Gokul and selected\n', 154, '0000-00-00 00:00:00', 1),
(20820, 22883, 59, 3, 0, 'Communication Ok Fresher 1yr gap hired for renewal need to check in the training and confirm gokul final round selected', 154, '0000-00-00 00:00:00', 1),
(20821, 22887, 59, 5, 0, 'Discussed but not interested to join this sales roles', 19, '2024-11-15 12:06:02', 1),
(20822, 22882, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20823, 22893, 19, 5, 0, 'not speak well and not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20824, 22893, 19, 5, 0, 'not speak well and not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20825, 22892, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20826, 22892, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20827, 22868, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 137, '2024-11-16 10:08:30', 1),
(20828, 22902, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(20829, 22906, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20830, 22908, 152, 4, 0, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(20831, 22904, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20832, 22901, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20833, 22905, 105, 5, 0, 'Candidate Communication And performance is Ok But Her voice is low and expected higher package also sustainable is doubt ', 154, '0000-00-00 00:00:00', 1),
(20834, 22907, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20835, 22911, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20836, 22891, 89, 5, 0, 'not fit for the job', 154, '0000-00-00 00:00:00', 1),
(20837, 22910, 149, 5, 0, 'rejected - candidate was not ok with salary and not interested in sales', 154, '0000-00-00 00:00:00', 1),
(20838, 22912, 109, 5, 0, 'Sustainability doubt', 154, '0000-00-00 00:00:00', 1),
(20839, 22918, 74, 5, 0, 'not suite for telesales', 153, '0000-00-00 00:00:00', 1),
(20840, 22919, 137, 5, 0, 'candidate voice and communication ok but past1 month work in kotak bank field work, not interest to quit the job , so he only looking for non voice process only so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20841, 22921, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20842, 22922, 102, 5, 0, 'candidate communication and convincing is good but interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20843, 22917, 89, 5, 0, 'silent person and no basic skill', 154, '0000-00-00 00:00:00', 1),
(20844, 22913, 149, 5, 0, 'not so good at communication and shy type and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20845, 22924, 137, 5, 0, 'candidate vocie and commuication not good and he past 3 years work from other domine, and he ery interst to medical coding , so not fit for my team ', 154, '0000-00-00 00:00:00', 1),
(20846, 22933, 149, 5, 0, 'candidate was not good at communication and not have confidence and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20847, 22932, 149, 5, 0, 'rejected-candidate was not even wear a proper outfit communication was not good not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20848, 22925, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20849, 22934, 57, 5, 0, 'Candidate is unfit for sales profile,1yr experience collection, 6m working in tamil matrimony. 6m he take over for father work. communication not well.', 154, '0000-00-00 00:00:00', 1),
(20850, 22914, 137, 7, 0, 'candidate communication and voice good , previous exp for sales for life insurance in 6 months medical reason to quite the job , exp ctc is 16k to 18 k , very long distance so try for 7 days training periods', 154, '0000-00-00 00:00:00', 1),
(20851, 22939, 105, 5, 0, 'candidate communication and performance is not good ,also long disteance and expected higher package .then sustainable doubt', 154, '0000-00-00 00:00:00', 1),
(20852, 22938, 11, 5, 0, 'sustainability problem\nabsconded in previous company', 154, '0000-00-00 00:00:00', 1),
(20853, 22940, 89, 5, 0, 'time pass', 154, '0000-00-00 00:00:00', 1),
(20854, 22940, 89, 5, 0, 'time pass', 154, '0000-00-00 00:00:00', 1),
(20855, 22943, 57, 4, 0, 'Candidate is ok. 5m exp samsung service centre. pls provide 13k to 14k .Confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(20856, 22944, 149, 7, 0, 'selected - good communication and have confidence and interested in sales ,syed sir also checked and suggested to give 14k-15k salary for him', 154, '0000-00-00 00:00:00', 1),
(20857, 22943, 59, 3, 0, 'Communication Good Open to sales profile can be trained in our roles should check in training', 57, '2024-11-19 03:57:16', 1),
(20858, 22914, 59, 3, 0, 'Fresher fr our roles pressure handling not sure if he join let us try in training and confirm', 137, '2024-11-19 04:08:50', 1),
(20859, 22944, 59, 3, 0, 'Communication Good Open to sales profile can be trained in our roles should check in training', 149, '2024-11-19 04:17:52', 1),
(20860, 22949, 137, 5, 0, 'candidate mainly looking for banking for and govt work only just temporvery looking for job and not fit for sales , because vocie is very low and very silent type , so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20861, 22953, 105, 5, 0, 'candidate communication and performance is not good ,also his attire is not good then sustainable doubt', 154, '0000-00-00 00:00:00', 1),
(20862, 22951, 149, 5, 0, 'rejected - candidate was not talkative not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20863, 22951, 149, 5, 0, 'rejected - candidate was not talkative not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20864, 22952, 89, 7, 0, 'good skill but i will Analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(20865, 22952, 89, 7, 0, 'good skill but i will Analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(20866, 22954, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20867, 22947, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20868, 22956, 59, 3, 0, 'Rejoining Candidate after 2yrs Reviewed by Gokul Commitment Given 10 days - 1NOP / m1-30K / m2 - 50K / M3 - 80K and M0-10K SIP / M1 - 30K SIP / m2 - 40K sIP / M3 - 50K SIP', 154, '0000-00-00 00:00:00', 1),
(20869, 22957, 149, 5, 0, 'rejected -customer was good at communication but not trustable in stability and already got rejected by our company', 154, '0000-00-00 00:00:00', 1),
(20870, 22961, 105, 5, 0, 'candidate communication and performance is ok ,But she is intrested in non-voice process,also she is sensitive type,sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(20871, 22962, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20872, 22963, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20873, 22915, 149, 7, 0, 'selected - good at communication ,having interest in sales and ready to work for incentives and kannan sir also suggested for 14-15k as salary', 154, '0000-00-00 00:00:00', 1),
(20874, 22916, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20875, 22916, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20876, 22915, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training based on manager decision proceeded with the cost', 149, '2024-11-20 06:23:33', 1),
(20877, 22908, 18, 8, 0, 'Need to reschedule', 152, '2024-11-21 10:13:39', 1),
(20878, 22966, 19, 5, 0, 'Not fit foe sales,she is not intrest in calling', 154, '0000-00-00 00:00:00', 1),
(20879, 22965, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20880, 22965, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20881, 22970, 102, 5, 0, 'candidate already working another domain salary take home 28k to 30k and high salary expectation ', 154, '0000-00-00 00:00:00', 1),
(20882, 22972, 57, 7, 0, 'Candidate is 50/50.kindly cross check previous job status. 2yr exp saravana textiles , 6m some think working same domain other company. 2yr carrier gap, pls check she mentally depressed. so cross check and confirm\nthanks', 153, '0000-00-00 00:00:00', 1),
(20883, 22964, 137, 7, 0, 'Candidate communication and voice ok previous work experience. He will join the work on dec 1 Week, so try for 7 days training periods ', 154, '0000-00-00 00:00:00', 1),
(20884, 22955, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20885, 22974, 74, 7, 0, 'she is ok with the profile ...after college first 6 months not working after joined in textile shop 1 year 7k salary,,,after releived due to timing issue. she releived. 1 year gap due to father health issue and 24 march joined in tvs customer care and getting 12k,,,releievd....she is studying NEET OVER PAST 4 YEARS.....expected 12 to 13k joining monday////check once and confirm...', 153, '0000-00-00 00:00:00', 1),
(20886, 22952, 59, 3, 0, 'Communication Ok mentioned 2 months loan sales but no documents need to check in 7 days training', 89, '2024-11-21 12:27:42', 1),
(20887, 22972, 59, 3, 0, 'Fresher for our role can be trained age around 27 yrs Have exp in Matured character personally depressed after her fathers death should check in 7 days training and confirm long run need to check', 57, '2024-11-21 12:28:07', 1),
(20888, 22976, 19, 7, 0, 'selected ,work exp 1.5 years in chola so we will go 16k in hand salary', 154, '0000-00-00 00:00:00', 1),
(20889, 22967, 11, 7, 0, 'she is ok for E sales ', 154, '0000-00-00 00:00:00', 1),
(20890, 22975, 149, 5, 0, 'REJECTED -candidate was not suitable for sales not at all speaking', 154, '0000-00-00 00:00:00', 1),
(20891, 22977, 105, 5, 0, 'Candidate Communication And Performance Is Ok,also like slow Person and sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(20892, 22974, 59, 3, 0, 'Communication Ok Can be trained in our roles and check', 74, '2024-11-21 03:16:43', 1),
(20893, 22978, 149, 7, 0, 'selected - candiate was ok with communication and have interested in sales also kannan sir suggested to provide 13 k to 15k salary ', 154, '0000-00-00 00:00:00', 1),
(20894, 22978, 149, 7, 0, 'selected - candiate was ok with communication and have interested in sales also kannan sir suggested to provide 13 k to 15k salary ', 154, '0000-00-00 00:00:00', 1),
(20895, 22976, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 19, '2024-11-21 03:54:03', 1),
(20896, 15399, 74, 5, 0, 'not fit', 74, '2024-11-21 05:16:12', 1),
(20897, 22978, 59, 3, 0, '5050-Seems not much interest to work,sustainability doubts / Shared breakup', 149, '2024-11-21 07:43:28', 1),
(20898, 22980, 11, 7, 4, 'candidate ok for E sales \n', 154, '0000-00-00 00:00:00', 1),
(20899, 22988, 149, 7, 0, 'selected- candidate was already 4 months experienced in star ,she explained plan well and will start calling from day 1 and kannan sir also suugested for 16k salary and she also ready for immediate joining', 154, '0000-00-00 00:00:00', 1),
(20900, 22990, 19, 7, 0, 'already worked 1.6Years so we will try 7 days ,job needed person ctc 15k ', 154, '0000-00-00 00:00:00', 1),
(20901, 22979, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20902, 22991, 19, 7, 0, 'fresher job needed person ctc 16k', 154, '0000-00-00 00:00:00', 1),
(20903, 22990, 59, 3, 0, 'Communication Ok Can give a try and check in 7days training', 19, '2024-11-22 12:26:08', 1),
(20904, 22994, 57, 7, 0, 'candidate is ok,salary exp high,\n1yrs exp star health insurance. settled. pls cross check Sustainability . confirm salary xxamp joining date', 154, '0000-00-00 00:00:00', 1),
(20905, 22991, 59, 3, 0, 'Fresher for our role need to check in training and confirm', 19, '2024-11-22 12:45:03', 1),
(20906, 22993, 102, 5, 0, 'Candidate communication is good but he is not interested in sales his interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(20907, 22988, 59, 3, 0, 'Communication Ok Can be trained in ou roles and check', 149, '2024-11-22 12:51:32', 1),
(20908, 22997, 102, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20909, 22998, 102, 7, 0, 'candidate communication and convincing is good and will try training period once confirm the DOJ', 154, '0000-00-00 00:00:00', 1),
(20910, 22995, 149, 5, 0, 'reject - candidate was not ok with communication and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20911, 22996, 19, 7, 0, 'selected job needed person lets try 7 days,ctc 14k joining at Dec 1', 154, '0000-00-00 00:00:00', 1),
(20912, 22996, 59, 2, 0, 'She need time to confirm due to rain issues her home is not in good conditions', 19, '2024-11-22 02:49:53', 1),
(20913, 22980, 60, 1, 0, NULL, 11, '2024-11-22 02:55:39', 1),
(20914, 22967, 60, 1, 0, NULL, 11, '2024-11-22 02:57:44', 1),
(20915, 23004, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20916, 23000, 137, 7, 0, 'candidate communication and voice good and past 3 month work from visa insurance , branch change that reason to relave the job , past salary 14k now exp is 15 to 16k so try for 7 days training ', 154, '0000-00-00 00:00:00', 1),
(20917, 22999, 137, 5, 0, 'candidate communication not good and not fit for my team , ', 154, '0000-00-00 00:00:00', 1),
(20918, 22999, 137, 5, 0, 'candidate communication not good and not fit for my team , ', 154, '0000-00-00 00:00:00', 1),
(20919, 22998, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 102, '2024-11-22 04:03:43', 1),
(20920, 23000, 59, 3, 0, 'Have 2 months exp in Vizza can give a try and check in 7 days training', 137, '2024-11-22 04:10:10', 1),
(20921, 7725, 74, 5, 0, 'unfit', 74, '2024-11-23 09:57:57', 1),
(20922, 7907, 74, 5, 0, 'not fit', 74, '2024-11-23 12:54:45', 1),
(20923, 23010, 19, 7, 0, 'job needed person,in hand 14k salary,immediate joining', 154, '0000-00-00 00:00:00', 1),
(20924, 23011, 149, 5, 0, 'REJECTED- CANDIDATE WAS NOT GOOD AT COMMUNICATION ,LONG DISTANCE ASKING MORE SALARY', 154, '0000-00-00 00:00:00', 1),
(20925, 23008, 149, 7, 0, 'selected -having experience in voice process ,interested in sales also ,ready for immediate joining ', 154, '0000-00-00 00:00:00', 1),
(20926, 23010, 59, 3, 0, 'Communication Ok fresher Candidate can give a try and check n training', 19, '2024-11-23 04:42:04', 1),
(20927, 23008, 59, 1, 0, NULL, 149, '2024-11-23 05:02:18', 1),
(20928, 22964, 59, 3, 0, 'Communication Ok Fresher for Sales calling focusing much for logistics sustainabilitydoubts if he join let us try', 137, '2024-11-24 10:23:04', 1),
(20929, 23014, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(20930, 23015, 149, 5, 0, 'rejected-not even speaking at all nervous ,not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(20931, 23017, 19, 5, 0, 'rejected not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20932, 23012, 137, 5, 0, 'candidate only looking for telecaling only , not go for out side call so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20933, 23005, 105, 5, 0, 'candidated communication and performance is not good ,also he is very slow and he is not interested in out sourcing call', 154, '0000-00-00 00:00:00', 1),
(20934, 23018, 89, 5, 0, 'silent person skills Average', 154, '0000-00-00 00:00:00', 1),
(20935, 23024, 149, 5, 0, 'rejected- not having proper communication , not interested in sales', 154, '0000-00-00 00:00:00', 1),
(20936, 23027, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20937, 23025, 149, 5, 0, 'rejected - candidate was not ok with communication , notinterested in sales', 154, '0000-00-00 00:00:00', 1),
(20938, 23029, 137, 5, 0, 'candidate communication an voice ok but she interested in international voice process , and loking for customer service , and after4 months join the mba so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20939, 23028, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20940, 23030, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20941, 23031, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20942, 22486, 60, 1, 0, NULL, 27, '2024-11-26 09:59:37', 1),
(20943, 23036, 19, 7, 0, 'job needed person lets try 7 days then we will confirm ctc 16k fresher', 154, '0000-00-00 00:00:00', 1),
(20944, 23036, 59, 3, 0, 'Communication Ok fresher 2 yrs gap need to train a lot and check in 7 days training', 19, '2024-11-26 12:01:19', 1),
(20945, 23035, 149, 5, 0, 'recejected - having less confidence in speech ,not suitable for sales ', 154, '0000-00-00 00:00:00', 1),
(20946, 23038, 19, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20947, 23040, 149, 5, 0, 'rejected - candidate was slow at speaking not active and long distance', 154, '0000-00-00 00:00:00', 1),
(20948, 23039, 105, 7, 0, 'Candidate communication and performacne is good.she is little bit attitude but will check with her in the training period.salary discussed 14k to 15k ,but she previously earned 9k .so finalize her salary below 14k.', 154, '0000-00-00 00:00:00', 1),
(20949, 23041, 137, 7, 0, 'candidate communication and voice good , past 3 mont blinket work from rider , and currelty mba studing, exp salary 16 to 18k , so try for 7 days trainig periods and immediate joining', 154, '0000-00-00 00:00:00', 1),
(20950, 23041, 137, 7, 0, 'candidate communication and voice good , past 3 mont blinket work from rider , and currelty mba studing, exp salary 16 to 18k , so try for 7 days trainig periods and immediate joining', 154, '0000-00-00 00:00:00', 1),
(20951, 22011, 137, 2, 0, 'ncd change', 137, '2024-11-27 10:41:12', 1),
(20952, 23033, 149, 7, 0, 'selected -candidate was interested in sales ,confidence in speech also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(20953, 23044, 102, 5, 0, 'Candidate communication and convincing skills is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(20954, 23043, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20955, 23046, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20956, 22717, 19, 5, 0, 'expected high salary, not worth of it', 154, '0000-00-00 00:00:00', 1),
(20957, 23047, 149, 7, 0, 'SELECTED - candidate have already experienced in sales ,having good communication and confidence and also syed sir suggested to hire at 14k as salary ', 154, '0000-00-00 00:00:00', 1),
(20958, 23033, 59, 1, 0, NULL, 149, '2024-11-27 01:06:23', 1),
(20959, 23048, 57, 7, 0, 'Candidate is not suitable for sales profile,communication not good, 6m exp. product not knowledge also not good, pre work exp.', 154, '0000-00-00 00:00:00', 1),
(20960, 23048, 59, 1, 0, NULL, 57, '2024-11-27 01:29:20', 1),
(20961, 22994, 59, 2, 0, 'Have exp in calling salary exp is high he need time to confirm', 57, '2024-11-27 01:33:15', 1),
(20962, 23051, 19, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20963, 23050, 19, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20964, 23041, 59, 3, 0, 'Fresher open for Sales Can be trained in our roles need to check in training and confirm', 137, '2024-11-27 05:23:42', 1),
(20965, 23047, 60, 1, 0, NULL, 149, '2024-11-27 05:30:49', 1),
(20966, 23054, 89, 7, 0, 'good skill. let see her 7 days training time ', 154, '0000-00-00 00:00:00', 1),
(20967, 23055, 137, 5, 0, 'communication not good and just ne month looking for job after 1 month go for native place and try for it related job so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20968, 23056, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(20969, 23059, 149, 5, 0, 'rejected - candidate was not fluency in interview ,long distance not sure about stability', 154, '0000-00-00 00:00:00', 1),
(20970, 23058, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(20971, 22371, 102, 5, 0, 'Candidate communication and convincing skills is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(20972, 22371, 102, 5, 0, 'Candidate communication and convincing skills is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(20973, 23053, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(20974, 23062, 137, 5, 0, 'communication not good and she not handle presure so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(20975, 23054, 59, 3, 0, 'Fresher Employee need to train a lot will check and confirm in the training', 89, '2024-11-28 01:27:53', 1),
(20976, 23039, 59, 3, 0, 'Communication ok Can be trained in our roles need to check in training', 105, '2024-11-28 04:09:13', 1),
(20977, 23066, 109, 5, 0, 'Mainly focusing on stipend', 104, '0000-00-00 00:00:00', 1),
(20978, 23070, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20979, 9242, 105, 7, 0, 'Candidate Communication And performance is good,she have 2 years experience in Bharat matrimony.will check with her in the training Period and CTC discussed as 1.8 LPA she is ok with this .joining on 2nd of Dec she conveyed ', 104, '0000-00-00 00:00:00', 1),
(20980, 23072, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20981, 9242, 59, 1, 0, NULL, 105, '2024-11-29 01:11:45', 1),
(20982, 23069, 149, 7, 0, 'selected - good at communication ,having interest lets try for 7 days training period', 104, '0000-00-00 00:00:00', 1),
(20983, 23075, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(20984, 23069, 59, 3, 0, 'communication Ok Fresher for our roles can give a try ancd check\n', 149, '2024-11-29 04:48:31', 1),
(20985, 23079, 152, 4, 0, 'Selected for next round\n', 104, '0000-00-00 00:00:00', 1),
(20986, 23078, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20987, 23079, 18, 7, 2, 'Shorlisted for Abdul team. Immedeate Joiner. Having bike and Laptop. Expected 26k in hand but please negotiate with him and do the needful', 152, '2024-11-30 12:36:45', 1),
(20988, 23081, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(20989, 23090, 149, 7, 0, 'selected - candidate was ok with communication and have confidence but have to check with first 7days training time because of friends reference already in team', 153, '0000-00-00 00:00:00', 1),
(20990, 23091, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(20991, 23089, 57, 7, 0, 'candidate is 50/50 pls cross check 1yrs experience but he worked 3 companies with in a year, pls check Sustainability.exp 20k but he worth 15k to 16k so pls check and confirm thanks', 153, '0000-00-00 00:00:00', 1),
(20992, 23092, 89, 7, 0, 'good skill. Already Experience loan telle calling 6 month. ', 153, '0000-00-00 00:00:00', 1),
(20993, 23088, 105, 7, 0, 'Candidate Communication And performance is Good Will Check With her in the training Period,as discussed CTC 1.8 LPA.Also Performance based hike will provide after 6 month I told her', 153, '0000-00-00 00:00:00', 1),
(20994, 23096, 137, 5, 0, 'candidaet mainly interest in HR only so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(20995, 23093, 11, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(20996, 23095, 57, 5, 0, 'candidate is not ok sales profile, communication not good, lack of mindset', 153, '0000-00-00 00:00:00', 1),
(20997, 23099, 149, 5, 0, 'rejected - candidate was have communication but not ok with salary as he was not having any experience certificates', 153, '0000-00-00 00:00:00', 1),
(20998, 23089, 59, 3, 0, 'Have exp but no sustainability 1yr 3 companies processed as fresher need to check in 7 days training', 57, '2024-12-02 01:19:25', 1),
(20999, 23094, 89, 5, 0, 'no basic skill', 153, '0000-00-00 00:00:00', 1),
(21000, 23080, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21001, 23088, 59, 5, 0, 'for time being looking for opportunities 6 months - She is planning to go with MCom full time course and for short note she is looking for opportunities also not much to go with sales calling ', 105, '2024-12-02 01:36:33', 1),
(21002, 23100, 102, 7, 0, 'Candidate communication and convincing skill is good will try to training period confirm DOJ ', 153, '0000-00-00 00:00:00', 1),
(21003, 23098, 109, 5, 0, 'Rejected, sal expectation high', 153, '0000-00-00 00:00:00', 1),
(21004, 23097, 57, 5, 0, 'candidate is 50/50, over all 1yr exp. but salary exp 25k take home. character issue, unfit for field sales. because of His body language totally different.reject the profile', 153, '0000-00-00 00:00:00', 1),
(21005, 23092, 59, 3, 0, 'Communication Ok just 6 months exp in paisa bazaar salary is high but nor sure on her sustainability and joining let us try', 89, '2024-12-03 10:02:49', 1),
(21006, 23105, 74, 5, 0, 'not fit', 104, '0000-00-00 00:00:00', 1),
(21007, 23106, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(21008, 23110, 74, 5, 0, 'sustainability issue', 104, '0000-00-00 00:00:00', 1),
(21009, 23104, 149, 7, 0, 'selected- candidate was good at communication ,and also interested in sales also ok for immediate joining', 104, '0000-00-00 00:00:00', 1),
(21010, 23103, 137, 7, 0, 'candidate communication and vocie good , she come from anna nagar east , she is fresher so exp salary is 14 to 15k so try for 7 days training periods ', 104, '0000-00-00 00:00:00', 1),
(21011, 23112, 74, 7, 0, 'he is ok with the profile native pattukottai....travel time 1 hour....studied in thanjavur.....prist university....worked in spare parts shop..for accounting...telecalling and financial management...getting 10k...due to salary issue releived from the job...expected 14k ...kindly check and confirm...imeediate joining ..have no laptop ready to arrange..', 104, '0000-00-00 00:00:00', 1),
(21012, 23111, 102, 5, 0, 'Candidate convincing and communication is low and not interested in sales interested in customer support ', 104, '0000-00-00 00:00:00', 1),
(21013, 23113, 89, 5, 0, 'long distance . Average skill . not fit for the job', 104, '0000-00-00 00:00:00', 1),
(21014, 23114, 57, 5, 0, 'candidate is unfit for the sales. communication not good.sal exp 16 tk home, sustainability issues.', 104, '0000-00-00 00:00:00', 1),
(21015, 23118, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(21016, 23117, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(21017, 23119, 105, 5, 0, 'Candidate Communication is ok but his performance and attitude is not good, sustainable doubt also expected higher package ', 104, '0000-00-00 00:00:00', 1),
(21018, 23115, 57, 5, 0, 'candidate is unfit for the sales. communication not good.sal exp 16 tk home, sustainability issues.friends suriya so not suitable ', 104, '0000-00-00 00:00:00', 1),
(21019, 23116, 149, 5, 0, 'rejected - candidate was not good at communication and not interested in sales', 104, '0000-00-00 00:00:00', 1),
(21020, 23102, 89, 5, 0, 'health issues person so not fit for the job', 104, '0000-00-00 00:00:00', 1),
(21021, 23112, 59, 3, 0, 'Too long distance and the salary exp is high being a fresher for this roles 5050 If he joins let us try', 74, '2024-12-03 02:24:05', 1),
(21022, 23122, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21023, 23104, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and check in our profiles need to check in training period', 149, '2024-12-03 04:10:40', 1),
(21024, 23100, 59, 3, 0, 'communication Ok have exp in semivoice but not a relevant domain can be trained Need to check in training and confirm', 102, '2024-12-03 04:11:35', 1),
(21025, 23103, 59, 5, 0, 'Not intersted as she got another offer with 25K in recruitment but not sure she seems to be doubt will not sustain too', 137, '2024-12-03 07:06:23', 1),
(21026, 23126, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21027, 23090, 59, 5, 0, 'Discussed - Too long distance Seems not much comfort in Sales Calling ', 149, '2024-12-04 01:04:05', 1),
(21028, 23128, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21029, 23129, 149, 5, 0, 'rejected -candidate was interested in iT field and looking for interviews in that field', 154, '0000-00-00 00:00:00', 1),
(21030, 22936, 131, 4, 0, 'Good Communication can process for next round', 126, '0000-00-00 00:00:00', 1),
(21031, 22936, 147, 7, 0, 'Fresher, Communication and confident is good 17k expectation, shortlisted', 131, '2024-12-04 06:25:15', 1),
(21032, 22936, 59, 3, 0, 'Communication Good Fresher open for telecalling can give a try and check in 7 days training', 147, '2024-12-04 06:31:31', 1),
(21033, 23132, 137, 5, 0, 'candidate communication not good and voice also not well , so not fit for my team , but money need person ', 154, '0000-00-00 00:00:00', 1),
(21034, 23133, 74, 5, 0, 'SUSTAINABILITY ISSUE NOT FIT', 153, '0000-00-00 00:00:00', 1),
(21035, 23137, 89, 5, 0, 'No basic skills ', 154, '0000-00-00 00:00:00', 1),
(21036, 23134, 149, 2, 0, 'candidate was ok with communication but have to confirm work time and salary with his parents ', 154, '0000-00-00 00:00:00', 1),
(21037, 23138, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21038, 23138, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21039, 23140, 19, 7, 0, 'Selected ctc 16k', 154, '0000-00-00 00:00:00', 1),
(21040, 23139, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21041, 23139, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21042, 23135, 149, 5, 0, 'REJECTED- candidate was not have stability in work and communication was not so good', 154, '0000-00-00 00:00:00', 1),
(21043, 23136, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21044, 23144, 57, 7, 0, 'Candidate is ok, 1years Experience same domain Already he getting 14.5k now he expectation 20k, kindly Negotiate the Salary and confirm the joining Date', 154, '0000-00-00 00:00:00', 1),
(21045, 23144, 57, 7, 0, 'Candidate is ok, 1years Experience same domain Already he getting 14.5k now he expectation 20k, kindly Negotiate the Salary and confirm the joining Date', 154, '0000-00-00 00:00:00', 1),
(21046, 23141, 102, 5, 0, 'Candidate fresher and already working part time supermarket then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21047, 23145, 137, 5, 0, 'candidate communication ok but she mainly looking presure free job and she need 6.30 logout so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21048, 23146, 89, 5, 0, 'No basic skills ', 154, '0000-00-00 00:00:00', 1),
(21049, 23146, 89, 5, 0, 'No basic skills ', 154, '0000-00-00 00:00:00', 1),
(21050, 23147, 19, 2, 0, 'hold', 154, '0000-00-00 00:00:00', 1),
(21051, 23140, 59, 3, 0, 'Communication for Sales ok Can give a try and check in 7 days training ', 19, '2024-12-05 02:24:43', 1),
(21052, 23149, 89, 7, 0, 'Good skill and 1 year experience from loans. ', 154, '0000-00-00 00:00:00', 1),
(21053, 23144, 59, 1, 0, NULL, 57, '2024-12-05 06:03:05', 1),
(21054, 23149, 59, 1, 0, NULL, 89, '2024-12-05 06:31:57', 1),
(21055, 23154, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21056, 23155, 137, 5, 0, 'candidate communication not well and very long distance , candidate after 4 month join new course , so money ned to join the work after 4 months relave the work so not fit for my team ', 154, '0000-00-00 00:00:00', 1),
(21057, 23156, 19, 5, 0, 'not fit for sales and he is not fit for direct appointment', 154, '0000-00-00 00:00:00', 1),
(21058, 23159, 149, 7, 0, 'selected - candidate was having good communication ,interested in sales ,kannan sir also checked and will provide 16k as salary as he have work experience in sales also', 154, '0000-00-00 00:00:00', 1),
(21059, 23153, 59, 5, 0, 'Looking for Back office working only will not sustain and handle the sales pressure', 154, '0000-00-00 00:00:00', 1),
(21060, 23160, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21061, 23161, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21062, 23159, 59, 3, 0, 'Communication Ok Fresher Need to train a lot need to check in training and confirm\n', 149, '2024-12-06 07:29:03', 1),
(21063, 23165, 57, 7, 0, 'Candidate is 70/30 , almost 2 years experience .abscond, communication ok,just try. previous he getting 14k now exp 20.kindly negotiate the salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(21064, 23169, 74, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21065, 23165, 59, 3, 0, 'Communication Ok Have exp in calling but not a relevant one need to train and check in 7 days training', 57, '2024-12-07 11:56:15', 1),
(21066, 23171, 74, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21067, 23168, 89, 7, 0, 'good skill. but i will see during the 7 days training days. fresher', 154, '0000-00-00 00:00:00', 1),
(21068, 23168, 89, 7, 0, 'good skill. but i will see during the 7 days training days. fresher', 154, '0000-00-00 00:00:00', 1),
(21069, 23164, 105, 7, 0, 'Candidate communication and performance is good.she have 3 year experience in sales BPO process.will check with her in the training Period.as discussed CTC 1.8 LPA.', 154, '0000-00-00 00:00:00', 1),
(21070, 23164, 59, 3, 0, 'Communication Good Have exp in calling can be trained in our roles ', 105, '2024-12-07 01:18:37', 1),
(21071, 23177, 109, 5, 0, 'Expectation high', 154, '0000-00-00 00:00:00', 1),
(21072, 23176, 149, 5, 0, 'candidate was not confident and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21073, 23176, 149, 5, 0, 'candidate was not confident and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21074, 23168, 59, 3, 0, 'Fresher for our roles can be trained and need to check in 7 days ', 89, '2024-12-07 04:53:17', 1),
(21075, 23184, 74, 5, 0, 'long distance travel issue and not much profile...not to fit for telesales', 153, '0000-00-00 00:00:00', 1),
(21076, 23183, 149, 5, 0, 'Candidate was have experienced in other but not looking interested and Less active , not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21077, 23185, 74, 5, 0, 'high expectation and not fit for our domain', 153, '0000-00-00 00:00:00', 1),
(21078, 23179, 19, 7, 0, 'he speaks but some attitude so let try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21079, 23178, 137, 7, 0, 'candidate communication and voice ok , no bike and lap , he interest to sales work and after joining the work join the course and sunday only class , so try for 7 days taining period, exp salary for 20k , i will inform 14 to 15k only ', 154, '0000-00-00 00:00:00', 1),
(21080, 23186, 74, 5, 0, '1 and half years searching for job , telling interview issue, or referance , issue link that, have no disciple and not fit for telecalling', 153, '0000-00-00 00:00:00', 1),
(21081, 23182, 89, 5, 0, 'no basic skill. and Health issues', 154, '0000-00-00 00:00:00', 1),
(21082, 23182, 89, 5, 0, 'no basic skill. and Health issues', 154, '0000-00-00 00:00:00', 1),
(21083, 23188, 102, 5, 0, 'candidate communication and convincing skill is low then Sustainability doubt ', 154, '0000-00-00 00:00:00', 1),
(21084, 23187, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21085, 23189, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21086, 23180, 137, 7, 0, 'candidate communication and voice ok , interest to calling work , so try for 7 days training period , and exp salary is 15 to 16 k', 154, '0000-00-00 00:00:00', 1),
(21087, 23191, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21088, 23190, 137, 5, 0, 'candidate communication and voice not well , he not understanding what im saying and not fit for out side call so not fit for my team ', 154, '0000-00-00 00:00:00', 1),
(21089, 23193, 19, 7, 0, 'job needed person but not having degree i hope he works well so lets try and confirm after 7 days', 154, '0000-00-00 00:00:00', 1),
(21090, 23192, 149, 7, 0, 'Candidate was ok with communication , interested in sales and ok for immediate joining will give 15k also checked by kannan sir', 154, '0000-00-00 00:00:00', 1),
(21091, 23194, 149, 7, 0, 'Candidate was interested in sales, communication was good having requirement for a job letxquots try for 7 days training period will give 15k ', 154, '0000-00-00 00:00:00', 1),
(21092, 23196, 89, 7, 0, 'good skill , let will see 7 days training Period', 154, '0000-00-00 00:00:00', 1),
(21093, 23195, 89, 7, 0, 'good skill. already Experience at Tell calling . ', 154, '0000-00-00 00:00:00', 1),
(21094, 23179, 59, 1, 0, NULL, 19, '2024-12-09 03:54:07', 1),
(21095, 23193, 59, 3, 0, 'Good Candidate No UG only 12th Career Gap due to family and father health conditions Can be trained in our roles and check in training', 19, '2024-12-09 03:55:39', 1),
(21096, 23178, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in training and confirm', 137, '2024-12-09 04:09:11', 1),
(21097, 23192, 59, 3, 0, 'Communication Ok Have Career Gap Fresher for Sales Can give a try and check in 7 days training', 149, '2024-12-09 07:15:16', 1),
(21098, 23194, 59, 3, 0, 'Reference Profile Fresher 5050 Sustainability need to see can give a try and check in training', 149, '2024-12-09 07:17:27', 1),
(21099, 23202, 74, 5, 0, 'She very low profile ...have now clear knowledge about job and not Fit for job', 154, '0000-00-00 00:00:00', 1),
(21100, 23204, 137, 7, 0, 'candidate communication and voice ok , past 9 month work from star health insurace and may comapny also work currently work in flipcart delivary so try for 7 days training period and bike and lap also availabe , exp salary 16k take home , ', 154, '0000-00-00 00:00:00', 1),
(21101, 23205, 89, 7, 0, 'good skill. Experienced at Business Management 6 month. due to father health issues so quit the job. expected 17 k', 154, '0000-00-00 00:00:00', 1),
(21102, 23147, 19, 5, 0, 'Except high salary', 19, '2024-12-10 11:46:41', 1),
(21103, 23195, 59, 3, 0, 'Communication Ok Have exp in sales but not a relevant open for telecalling Can give a try and train ', 89, '2024-12-10 11:50:33', 1),
(21104, 23196, 59, 1, 0, NULL, 89, '2024-12-10 11:55:59', 1),
(21105, 23205, 59, 3, 0, 'Fresher Need to train alot will check in training and confirm his profile', 89, '2024-12-10 12:18:37', 1),
(21106, 23206, 19, 7, 0, 'check his exisiting salary slip if she get 16k salary in hand means kindly proceed with same ', 154, '0000-00-00 00:00:00', 1),
(21107, 23208, 109, 5, 0, 'Rejected, high expectation', 154, '0000-00-00 00:00:00', 1),
(21108, 23212, 102, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21109, 23212, 102, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21110, 23207, 131, 5, 0, 'Lack of knowledge and confident', 126, '0000-00-00 00:00:00', 1),
(21111, 23211, 131, 5, 0, 'education background is Completely different doubt with Sustainability', 126, '0000-00-00 00:00:00', 1),
(21112, 23213, 149, 7, 0, 'candidate was ok with communication and interested in sales and also ok for immediate joining ', 154, '0000-00-00 00:00:00', 1),
(21113, 23214, 137, 7, 0, 'candidate communication and voice ok past 9 month work from dth customer service , sales is fresher , exp salary 16k s try for first 7 days training , 70/30. ', 154, '0000-00-00 00:00:00', 1),
(21114, 23214, 137, 7, 0, 'candidate communication and voice ok past 9 month work from dth customer service , sales is fresher , exp salary 16k s try for first 7 days training , 70/30. ', 154, '0000-00-00 00:00:00', 1),
(21115, 23199, 19, 7, 0, 'job needed person ctc 16k while joining he has to come with full formals kindly inform to the candidate', 154, '0000-00-00 00:00:00', 1),
(21116, 23215, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21117, 23216, 102, 5, 0, 'Candidate communication and convincing skill is low then interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21118, 23200, 102, 7, 0, 'candidate communication and convincing skill is good once will try training period and once confirm DOJ ', 154, '0000-00-00 00:00:00', 1),
(21119, 23206, 59, 1, 0, NULL, 19, '2024-12-10 04:01:24', 1),
(21120, 23199, 59, 3, 0, 'Communication Ok Fresher for our roles Need to check in training and confirm', 19, '2024-12-10 04:02:23', 1),
(21121, 23200, 59, 1, 0, NULL, 102, '2024-12-10 05:05:43', 1),
(21122, 23214, 59, 3, 0, 'Communication OK Fresher for our roles Need to check in 7 days training\n', 137, '2024-12-10 06:46:03', 1),
(21123, 23204, 59, 3, 0, 'Communication OK 5050 Profile Career Gap few months exp in Star Health Documents verified Can check in training and confirm', 137, '2024-12-10 06:52:05', 1),
(21124, 23225, 74, 5, 0, 'he is not fit,,, concentrated in govt job only', 153, '0000-00-00 00:00:00', 1),
(21125, 23213, 59, 3, 0, 'Communication Ok Fresher for Sales Can give a try and check Internal Reference\n', 149, '2024-12-11 04:36:40', 1),
(21126, 23231, 74, 5, 0, 'not fit for sales , sustainability issue intrsted in foreign only', 153, '0000-00-00 00:00:00', 1),
(21127, 23233, 102, 7, 0, 'he is past working for financial insurance service Candidate communication and convincing skills is good then will try training period and once confirm DOJ ', 154, '0000-00-00 00:00:00', 1),
(21128, 23228, 102, 5, 0, 'candidate communication and convincing skill low and he is interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21129, 23236, 74, 7, 0, 'she is ok with the profile, completed bcom fresher, ,,father electrician brother worked in eb and married joint family,,,,,house 5km only,,,have laptop,,,imeediate joining,,,expected 13k ...kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21130, 23235, 102, 5, 0, 'candidate communication and convincing skill low and he is interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21131, 23236, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 74, '2024-12-12 04:02:47', 1),
(21132, 23239, 74, 7, 0, 'he is ok with the profile, completed bca ,,,and worked in 1 yr chennai uncle shop, and came to native...7 months working in equitas ,,,,due to health issue he is releived ,,,,but i have doubt in this point,,,,and joined in tata capital....by MANAGER referance in equitas ,,,both home loan.....with daily 20 client visting regarding sales,,,,,,getting 16 k no petrol allowance.....have laptop,,,,1 km from home to office...expected 15k around kindly check and confirm ', 154, '0000-00-00 00:00:00', 1),
(21133, 23240, 149, 5, 0, 'candidate was not having confidence and not ok with timing', 154, '0000-00-00 00:00:00', 1),
(21134, 23172, 74, 7, 0, 'she is ok with the profile completed bE CS....6 month experience in front end developer without salary.. she tried in various IT SECTOR but have no chance,,,so she is joined in swiggy process in thanjavur reimen solution,,,,,,expected 13k..have laptop....father farmer and business,,,,immediate joining..kindly check once', 153, '0000-00-00 00:00:00', 1),
(21135, 22769, 74, 5, 0, 'not fit...married and have no chance to perform as a telecaller', 153, '0000-00-00 00:00:00', 1),
(21136, 23241, 89, 5, 0, 'Interested IT related', 154, '0000-00-00 00:00:00', 1),
(21137, 23242, 137, 5, 0, 'candidate communication and voice ok but salary exp is more high and aftre 4 month join for police course , so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21138, 23243, 74, 5, 0, 'not suite for tele calling,,,,have no option to select ', 153, '0000-00-00 00:00:00', 1),
(21139, 23239, 59, 3, 0, 'Communicaiton Ok Have Exp but not a relevant one can give a try and check in training', 74, '2024-12-13 03:37:20', 1),
(21140, 23172, 59, 1, 0, NULL, 74, '2024-12-13 06:43:42', 1),
(21141, 23245, 89, 7, 0, 'good skill. let see 7 days training days. fresher candidate', 153, '0000-00-00 00:00:00', 1),
(21142, 23244, 57, 7, 0, 'Candidate is ok, Communication Good, Pls check Sustainability. Kindly confirm the salary and joining date', 153, '0000-00-00 00:00:00', 1),
(21143, 23249, 19, 7, 0, 'Job needed person but 50 50 only lets try 7 days and we will confirm ctc 16k', 153, '0000-00-00 00:00:00', 1),
(21144, 23248, 149, 5, 0, 'candidate was ok with communication but not ok with salary with our standards', 153, '0000-00-00 00:00:00', 1),
(21145, 23246, 137, 5, 0, 'candidate communication ok but voice not good and very low voice , aslo very long distance so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21146, 23245, 59, 3, 0, 'Communication Ok Fresher Can be trained in our roles need to check and confirm in training', 89, '2024-12-14 11:34:23', 1),
(21147, 23247, 89, 5, 0, 'no basic skill', 153, '0000-00-00 00:00:00', 1),
(21148, 23250, 137, 5, 0, 'candidate communication and vocie not ok and past 2 month work from starhealth insurance , after family issue relave the job , after not try any job future plan is business so not fit for my team ', 153, '0000-00-00 00:00:00', 1),
(21149, 23251, 19, 7, 0, 'already working in star ,he knows the script so we will go with ctc 16k', 153, '0000-00-00 00:00:00', 1),
(21150, 23251, 59, 3, 0, 'Communication Ok Can give a try in training and confirm them', 19, '2024-12-14 12:41:02', 1),
(21151, 23254, 89, 5, 0, 'no basic skill and long distance', 153, '0000-00-00 00:00:00', 1),
(21152, 23249, 59, 3, 0, '9 months Exp in Telecollection Fresher for Sales need to check in training and confirm', 19, '2024-12-14 01:07:09', 1),
(21153, 23233, 59, 3, 0, 'Communication Ok Have exp in Telesales Relevant Exp can be trained need to check in training and confirm', 102, '2024-12-14 04:39:14', 1),
(21154, 23244, 59, 1, 0, NULL, 57, '2024-12-14 04:40:11', 1),
(21155, 23266, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21156, 23264, 19, 5, 0, 'not fit for sales and her was not enough to pitch sales', 154, '0000-00-00 00:00:00', 1),
(21157, 23261, 137, 7, 0, 'candidate communication and voice is good , money need person , low family backround, and koimbadu market sales and account exp for partime , exp salary for 15 to 16k so try for 7 days training period , no bike and laptop', 154, '0000-00-00 00:00:00', 1),
(21158, 23265, 102, 5, 0, 'candidate convincing skill and communication is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(21159, 23267, 89, 7, 0, 'will Analysis 7 days training time. ', 154, '0000-00-00 00:00:00', 1),
(21160, 23268, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21161, 23272, 149, 5, 0, 'candidate was not at all communicating and not so interested in sales', 154, '0000-00-00 00:00:00', 1),
(21162, 23263, 19, 5, 0, 'not fit for sales and his dress code was not good', 154, '0000-00-00 00:00:00', 1),
(21163, 23274, 137, 5, 0, 'candidate only interest in accounts only and communication also not well , so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21164, 23275, 102, 7, 0, 'Candidate communication and convincing skill is good and then will try training period once confirm DOJ ', 154, '0000-00-00 00:00:00', 1),
(21165, 23255, 149, 7, 0, 'candidate was good at communication and interested in sales and have experience in vizza for 5months kannan sir also checked we shall provide 16k', 154, '0000-00-00 00:00:00', 1),
(21166, 23260, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21167, 23261, 59, 3, 0, 'Freseher Communication Ok Can be trained in our roles need to check in training and confirm', 137, '2024-12-16 01:35:31', 1),
(21168, 23270, 19, 7, 0, 'Selected,She speaks well so letxquots we try 7 days and then we will confirm CTC as per company rules ', 154, '0000-00-00 00:00:00', 1),
(21169, 23283, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21170, 23267, 59, 3, 0, 'Communication Ok can be trained in our roles and check in training', 89, '2024-12-16 03:39:18', 1),
(21171, 23288, 149, 5, 0, 'candidate was not suitable for sales as he was having idea for other for other jobs .', 154, '0000-00-00 00:00:00', 1),
(21172, 23259, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21173, 23270, 59, 3, 0, 'Fresher Communication Ok Can be trained in our roles and check in the training period', 19, '2024-12-16 07:12:24', 1),
(21174, 23275, 59, 3, 0, 'Communication Ok Fresher for our roles Need to train in training period and check in 7 days training', 102, '2024-12-16 07:29:17', 1),
(21175, 23255, 59, 1, 0, NULL, 149, '2024-12-16 08:07:21', 1),
(21176, 23290, 137, 5, 0, 'candidate communication and voice ok but candidate ned high package so not fit for my package , so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21177, 23296, 102, 5, 0, 'candidate convincing skill and communication is low and interested in Customer support ', 154, '0000-00-00 00:00:00', 1),
(21178, 23297, 149, 5, 0, 'candidate was having idea with other other professions and not ok with salary', 154, '0000-00-00 00:00:00', 1),
(21179, 23297, 149, 5, 0, 'candidate was having idea with other other professions and not ok with salary', 154, '0000-00-00 00:00:00', 1),
(21180, 23293, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21181, 23273, 57, 7, 0, 'candidate is 50/50 fresher, communication good. pls check with sustainability, provide fresher salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21182, 23271, 89, 7, 0, 'fresher. good skill. will Analysis 7 days training days', 154, '0000-00-00 00:00:00', 1),
(21183, 23294, 19, 5, 0, 'not fit for sales and his attitude was not good', 154, '0000-00-00 00:00:00', 1),
(21184, 13369, 11, 7, 0, 'ok for E sales \nneed to fix the salary ', 154, '0000-00-00 00:00:00', 1),
(21185, 23300, 19, 5, 0, 'long distance and not fit for sales also', 154, '0000-00-00 00:00:00', 1),
(21186, 23299, 74, 5, 0, 'she is not fit for our team,,,expected temporary job,currently in job data entry and not releived , ,,,expected singapore father work in tie up singapore company so need to go only', 154, '0000-00-00 00:00:00', 1),
(21187, 23301, 74, 5, 0, 'worked in hr and data entry,,,,have no job need and age high due to marriage...not performed well in interview', 154, '0000-00-00 00:00:00', 1),
(21188, 23273, 59, 3, 0, 'Communication Ok Need to check in training and confirm', 57, '2024-12-17 03:03:05', 1),
(21189, 23079, 60, 1, 0, NULL, 18, '2024-12-17 04:43:13', 1),
(21190, 13369, 60, 1, 0, NULL, 11, '2024-12-17 06:56:10', 1),
(21191, 23262, 147, 5, 0, 'looking for high package', 154, '0000-00-00 00:00:00', 1),
(21192, 23311, 74, 5, 0, 'not suite for team and telesales, have no sales pitch...not explaining answers better, 1 and half year in mechanical labour so not fit', 153, '0000-00-00 00:00:00', 1),
(21193, 23314, 74, 7, 0, 'she is ok with the profile, completed bE CS,,,already worked in swiggy process... due to process closed...so releived and not intrested to continue.....father daily wages,,,rental house...travel 20mins only....fresher,,,,immediate joining...speaked well and future expecation studied ME....due to family poor high job needed...have laptop...kindly check once and confirm..expected 13k', 153, '0000-00-00 00:00:00', 1),
(21194, 23317, 74, 5, 0, 'he is ok speak well and have a try to work,,,,but very long distance and focus on business is high priority....travel issue not fit', 153, '0000-00-00 00:00:00', 1),
(21195, 23277, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21196, 23271, 59, 3, 0, 'Communication Ok Fresher Need to check in training and confirm', 89, '2024-12-18 10:42:28', 1),
(21197, 23315, 74, 7, 0, 'he is ok with the profile,,,completed bsc biotech ,,,,in chennai mohamed satak college,,,,,native thanjavur,,,,due to college family shift to chennai....sollinganallur...sister worked in IT...in kerala,,,,he studied govt job for two yers,,,PC-SI--GROUP 4 - TWO times...and failed,,,so he looking for job now......sister engaged and marriage fixed on july so expected 1 month leave and january he expected leave for 1 week,,,,due to house shifting...father passed away,,,,have one house in thanjavur near by.....have laptop,,,expected 15k kindly check once and confirm...immediate joining', 153, '0000-00-00 00:00:00', 1),
(21198, 23316, 74, 5, 0, 'not performing well in interview, not answering any question unfit for telesales', 153, '0000-00-00 00:00:00', 1),
(21199, 7874, 19, 5, 0, 'not fit fot sales and not worth of his asking salary,he will join only in the mind of jan', 154, '0000-00-00 00:00:00', 1),
(21200, 23313, 102, 5, 0, 'Communication and convincing skill low and then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21201, 23298, 74, 7, 0, 'She is ok with the profile , completed eCE in loyola -20. chennai...and joined in quality control....for 1 year due to covid she releived...and studied govt exam,,,for past 2 and half year and not cleared...so he need a job ,,,,,father sathunavu amaipalar for past 20 years salary 25k....mother govt hostel cook 7 years salary 20k,,,own house and 3 sisters ,,,1 sis ---prepare govt exam,,,,3rd sister engg studied...4 th sister 12th.....have laptop...travel time 40mins.....imeediate joining...expected 13k to 14k....kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21202, 23319, 137, 5, 0, 'candidate mainly looking for it related job and currently fullstock job on going , and very low voice , not presure handiling so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21203, 23320, 149, 5, 0, 'candidate was not confident and not ok with timing and salary', 154, '0000-00-00 00:00:00', 1),
(21204, 23304, 57, 7, 0, 'Candidate is ok,1.5 yrs experience. sales field totally fresher sal exp 18k but candidate worth 15k to 16k kindly negotiate the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(21205, 23282, 102, 5, 0, 'Communication and convincing skill low and then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21206, 23306, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21207, 22011, 137, 5, 0, 'not fit for my team', 137, '2024-12-18 12:07:42', 1),
(21208, 23325, 19, 7, 0, 'job needed person new joinee so lets try 7 days ctc 16k', 154, '0000-00-00 00:00:00', 1),
(21209, 23304, 59, 1, 0, NULL, 57, '2024-12-18 12:17:09', 1),
(21210, 23322, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21211, 23323, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21212, 23321, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21213, 23314, 59, 3, 0, 'Communication Ok Have Calling exp for 4 months Can be trained in our roles need to check in training and confirm', 74, '2024-12-18 03:34:09', 1),
(21214, 23315, 59, 3, 0, 'Communication Ok 5050 profile need to check in training and confirm', 74, '2024-12-18 03:44:41', 1),
(21215, 22850, 149, 7, 0, 'candidate was confident and ok with communication but expecting more salary will give 15k lets try for 7days training period', 154, '0000-00-00 00:00:00', 1),
(21216, 23298, 59, 1, 0, NULL, 74, '2024-12-18 04:03:12', 1),
(21217, 23335, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21218, 22850, 59, 1, 0, NULL, 149, '2024-12-19 11:32:01', 1),
(21219, 23198, 74, 5, 0, 'not suite for team not fit for telesales', 153, '0000-00-00 00:00:00', 1),
(21220, 21391, 57, 7, 0, 'candidate is ok, 1.5 yrs exp sales executive and 1.5yrs team leader. communication good. previously she is getting 20k, now she expectation 20k above. convincing skill good and field work also interested. kindly negotiate the salary and let me know the status', 154, '0000-00-00 00:00:00', 1),
(21221, 23337, 149, 5, 0, 'candidate was not good at communication and not ok with salary', 154, '0000-00-00 00:00:00', 1),
(21222, 23341, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21223, 23342, 89, 5, 0, 'No basic skills ', 154, '0000-00-00 00:00:00', 1),
(21224, 23343, 137, 5, 0, 'candidate all ok but not interest to out side call and only work n office work so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21225, 23326, 57, 5, 0, 'candidate is unfit for sales profile, then he previously working in home Appliance, observation skills low. communication not good, ', 154, '0000-00-00 00:00:00', 1),
(21226, 21391, 59, 1, 0, NULL, 57, '2024-12-19 03:01:45', 1),
(21227, 23351, 19, 7, 0, 'job needed person ,in hand salary 14k she speaks good so lets we try 7 days then we will confirm ', 154, '0000-00-00 00:00:00', 1),
(21228, 23351, 59, 3, 0, 'Communication Ok have Pharma Exp Family need is there can give a try and check in training', 19, '2024-12-19 04:48:42', 1),
(21229, 19996, 74, 5, 0, 'not suite for team,,, behaviour issue and not perform well', 153, '0000-00-00 00:00:00', 1),
(21230, 23359, 74, 5, 0, 'choosing data entry only..not handled pressure and target,,,,', 153, '0000-00-00 00:00:00', 1),
(21231, 23358, 74, 5, 0, 'not suite for telesales choosing data entry only....and have no skills for sales', 153, '0000-00-00 00:00:00', 1),
(21232, 23357, 74, 7, 0, 'she is ok with the profile...completed bA and worked as a telecaller in digihotels website creating sales...due to brother marriage releived from job......and salary issue in previous company...mother work in mill,,,,3 elder brother and 1 brother getting marriger another one work in chennai as aiyer and another 1 studied...half hour travel from office..monday joining...have laptop...expected 14k kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21233, 23361, 19, 5, 0, 'she is not interest in tele sales', 154, '0000-00-00 00:00:00', 1),
(21234, 23344, 102, 5, 0, 'Communication and convincing skill low and then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21235, 23357, 59, 1, 0, NULL, 74, '2024-12-20 01:20:29', 1),
(21236, 23364, 19, 7, 0, 'she speaks well ,job needed person in hand salary 14k so lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21237, 23364, 59, 3, 0, 'Communication Ok focus on Digital marketing Much 5050 sustainability open to learn need to check in training and confirm', 19, '2024-12-20 03:17:07', 1),
(21238, 23325, 59, 1, 0, NULL, 19, '2024-12-20 03:18:47', 1),
(21239, 23373, 137, 5, 0, 'candidate communication ok but candidate not interst to out sid call so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21240, 23374, 149, 5, 0, 'CANDIDATE WAS NOT OK WITH COMMUNICATION AND NOT AT HAVING CONFIDENCE', 153, '0000-00-00 00:00:00', 1),
(21241, 23376, 57, 7, 0, 'Candidate is 50/50,\nPls check sustainability, 1.9 years Experience collection domain already he getting 16k salary in hand cash, he donxquott have pay slip xxamp Bank Statement pls check,Pls negotiate the salary and confirm the joining date', 153, '0000-00-00 00:00:00', 1),
(21242, 23376, 60, 1, 0, NULL, 57, '2024-12-21 01:35:09', 1),
(21243, 23375, 19, 7, 0, 'Salary 13k to 14k,dont have degree lets try 7 days then we will confirm,before that confirm with the employee then we will decide', 153, '0000-00-00 00:00:00', 1),
(21244, 23375, 59, 5, 0, 'Not intersted with the timings looking for 5 days work only\n', 19, '2024-12-21 03:21:57', 1),
(21245, 22810, 59, 3, 0, 'stipend of Rs.8000 PM (1st 2months) based on the performance review with the continuation of the employment in which the remuneration may vary between 12,000 – 15000 per month post-completion of the 2-5 months internship and performance analysis. - Final Round with Gokul Sir', 60, '0000-00-00 00:00:00', 1),
(21246, 23386, 19, 7, 0, 'job needed person but 6 years gap so lets try in training ctc 13k to 14k in hand salary', 154, '0000-00-00 00:00:00', 1),
(21247, 23385, 74, 5, 0, 'not professionally behave in a interview...not fit for team , and telesales', 153, '0000-00-00 00:00:00', 1),
(21248, 23389, 89, 7, 0, 'GOOD SKILL. 9 MONTH EXPERIENCE at bajaj loan telle calling 2023 to 2024 feb. ', 154, '0000-00-00 00:00:00', 1),
(21249, 23386, 59, 3, 0, 'Fresher Career Gap Can give a try and check in 7 days training', 19, '2024-12-23 12:26:28', 1),
(21250, 22467, 137, 5, 0, 'candidate communication and voice not good and not interst for calls field so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21251, 23390, 149, 7, 0, 'candidate was good at communication ,also confident and also ready for immediate joining and kannan sir also checked and will give 14-15 k', 154, '0000-00-00 00:00:00', 1),
(21252, 23389, 59, 3, 0, 'Communication Ok 5050 Sustainability doubts in this profile need to check in training', 89, '2024-12-23 12:59:40', 1),
(21253, 23393, 102, 5, 0, 'Communication and convincing skill low and then not interested in sales interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21254, 23392, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21255, 23392, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21256, 23400, 19, 5, 0, 'not fit for sales \n', 154, '0000-00-00 00:00:00', 1),
(21257, 23399, 149, 5, 0, 'Candidate was not from chennai ,married couple looking for job and not sure about stablity', 154, '0000-00-00 00:00:00', 1),
(21258, 23399, 149, 5, 0, 'Candidate was not from chennai ,married couple looking for job and not sure about stablity', 154, '0000-00-00 00:00:00', 1),
(21259, 23390, 59, 1, 0, NULL, 149, '2024-12-23 08:32:09', 1),
(21260, 23383, 74, 7, 0, 'she is ok with the profile,,,,completed mca..23....and two months worked in night shift due to health issue releived from job,,,,and trying join in kvb with recomendation as a sales exective but no vacancy not joined,,,,father ambulance driver,,,, sister bcom,,,,,own house....office travel time 15 mins have bike....tried IT company in thanjavur but bond basis not accepted,,,,have good sales skills,,,,,but expected system related job......kindly cross check once surely.......expected 12 to 15k,,,,no laptop ready to arrange imeedaiate joining....tried in training and confirm', 153, '0000-00-00 00:00:00', 1),
(21261, 23398, 74, 7, 0, 'she is ok with the profile,,completed mcom 24 passed,, single child father passed,,,mother only doing tailoring,,,,next street to office ,,,,own house with grand father and mother,,,,,already attend two interview due to night shift family not accepted,,,,have intrested in sales ...expected 12 to 15k,,,,,have laptop,,,,immediate joining,,,kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21262, 23401, 11, 7, 0, 'she is ok for E sales \ngaurav sir also checked ', 154, '0000-00-00 00:00:00', 1),
(21263, 23407, 19, 7, 0, '\nJob Needed person ,Exp but dont have any Documents so Salary will be try 14k to 15k in hand salary ', 154, '0000-00-00 00:00:00', 1),
(21264, 23406, 149, 5, 0, 'candidate was not good at communication and not ok for sales', 154, '0000-00-00 00:00:00', 1),
(21265, 23398, 59, 1, 0, NULL, 74, '2024-12-24 11:37:57', 1),
(21266, 23383, 59, 1, 0, NULL, 74, '2024-12-24 11:42:57', 1),
(21267, 23404, 89, 5, 0, 'NO BASIC SKILL', 154, '0000-00-00 00:00:00', 1),
(21268, 23405, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21269, 22604, 59, 3, 0, 'a stipend of Rs.6000 PM (1st 3 months) xxamp Rs.8000 PM (next 2 months) based on the performance review, with the continuation of the employment in which the remuneration may vary post-completion of the 3 - 5 months internship and performance analysis. ', 60, '0000-00-00 00:00:00', 1),
(21270, 23408, 57, 5, 0, 'Candidate is not Suitable for sales profile, communication not good. field work not interested, reject the profile', 154, '0000-00-00 00:00:00', 1),
(21271, 23413, 89, 5, 0, 'NO BASIC SKILL', 154, '0000-00-00 00:00:00', 1),
(21272, 23414, 149, 5, 0, 'communication was not good and also looking for other profession .', 154, '0000-00-00 00:00:00', 1),
(21273, 23417, 137, 5, 0, 'candidate communication not good and very long distance also so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21274, 23416, 89, 5, 0, 'No basic skill', 154, '0000-00-00 00:00:00', 1),
(21275, 23419, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21276, 23401, 60, 1, 0, NULL, 11, '2024-12-26 01:09:55', 1),
(21277, 23424, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21278, 23407, 59, 1, 0, NULL, 19, '2024-12-27 11:15:34', 1),
(21279, 23430, 102, 7, 0, 'Candidate communication and convincing skill is good past 0ne year worked back end team salary taken salary 13k without pf and tDS now expt ( 15 to 16 k)` once confirm DOJ ', 154, '0000-00-00 00:00:00', 1),
(21280, 23428, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21281, 23432, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21282, 23429, 149, 7, 0, 'candidate was confident at communication and also have experience and syed sir also checked and will give 14k as salary', 154, '0000-00-00 00:00:00', 1),
(21283, 23430, 59, 3, 0, 'Communication ok have exp in calling but in support can give a try and check in training', 102, '2024-12-27 02:42:33', 1),
(21284, 23439, 89, 5, 0, 'attitude and married so not fit for the job', 154, '0000-00-00 00:00:00', 1),
(21285, 23441, 19, 5, 0, 'not fit for sales and she intrested in non voice', 154, '0000-00-00 00:00:00', 1),
(21286, 23442, 149, 5, 0, 'candidate was not looking confident and not at all speaking a lot and not have experience in sales', 154, '0000-00-00 00:00:00', 1),
(21287, 23442, 149, 5, 0, 'candidate was not looking confident and not at all speaking a lot and not have experience in sales', 154, '0000-00-00 00:00:00', 1),
(21288, 23378, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(21289, 23379, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21290, 23387, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21291, 23388, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21292, 23410, 131, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21293, 23429, 59, 1, 0, NULL, 149, '2024-12-28 03:24:11', 1),
(21294, 22652, 149, 5, 0, 'candidate was not having confidence and not responding', 149, '2024-12-28 03:27:12', 1),
(21295, 22737, 149, 5, 0, 'candidate was ok with communication but not having confidence', 149, '2024-12-28 03:30:55', 1),
(21296, 23443, 74, 5, 0, 'not performing well in interview...not fit', 104, '0000-00-00 00:00:00', 1),
(21297, 23445, 74, 5, 0, 'sustainability issue and not suite for team', 104, '0000-00-00 00:00:00', 1),
(21298, 23452, 74, 5, 0, 'not fit for telecalling......low profile', 104, '0000-00-00 00:00:00', 1),
(21299, 23449, 19, 5, 0, 'not intrest in tell calling', 104, '0000-00-00 00:00:00', 1),
(21300, 23438, 59, 3, 0, 'Communication Good Not open for Sales but open for Renewal Support Backend roles as discusssed processing for the same ', 104, '0000-00-00 00:00:00', 1),
(21301, 23446, 59, 5, 0, 'Not open for Telecalling looking only for Non voice process', 104, '0000-00-00 00:00:00', 1),
(21302, 23447, 137, 7, 0, 'candidate communication and vocie ok , past 1 year exp for dmate account opn for telecalling after 2 years abroad supermarket work , so try for 7 days trining period and exp salary for 16 to 17k ', 104, '0000-00-00 00:00:00', 1),
(21303, 23448, 149, 7, 0, 'candidate was good at communication and also interested in sales will provide 14k as salary and also ok for immediate joining', 104, '0000-00-00 00:00:00', 1),
(21304, 23450, 89, 5, 0, 'nno basic skill', 104, '0000-00-00 00:00:00', 1),
(21305, 21813, 102, 5, 0, 'Candidate communication and convincing skill low then he is not interested in field work ', 104, '0000-00-00 00:00:00', 1),
(21306, 23453, 102, 7, 0, 'Candidate communication and sales skills is good then will try training period once confirm DOJ', 104, '0000-00-00 00:00:00', 1),
(21307, 23453, 59, 3, 0, 'Fresher for our roles need to train and confirm', 102, '2024-12-30 01:05:13', 1),
(21308, 23456, 30, 7, 3, 'fresher suggested ctc 14k', 104, '0000-00-00 00:00:00', 1),
(21309, 23457, 30, 5, 0, 'she will not sustain his back round it and his aim also need to work in it middle if she got a job she will left', 104, '0000-00-00 00:00:00', 1),
(21310, 23447, 59, 3, 0, 'Communication Ok Can be trained in our role and check in training ', 137, '2024-12-31 09:48:40', 1),
(21311, 23434, 149, 5, 0, 'candidate was not so good at communication and preferring another field and not having confidence', 154, '0000-00-00 00:00:00', 1),
(21312, 23459, 74, 5, 0, 'looking for partime and sustainability issue .......', 154, '0000-00-00 00:00:00', 1),
(21313, 23460, 102, 5, 0, 'Candidate communication and convincing skill low then interested in customer support ', 154, '0000-00-00 00:00:00', 1),
(21314, 23462, 105, 5, 0, 'candidate communication and operformance is good ,but expected Higher package', 154, '0000-00-00 00:00:00', 1),
(21315, 23461, 105, 5, 0, 'candidate communication and performnce is ok.but sustainable doubt also expected higher packge', 154, '0000-00-00 00:00:00', 1),
(21316, 23463, 89, 7, 0, 'good skill. 1 yr Experience at loan side. will Analysis 7 days training. i suggest 16 k.', 154, '0000-00-00 00:00:00', 1),
(21317, 23448, 59, 5, 0, 'Not interested in Sales Looking for HR role only always focus for friend opportunity also will not sustain and not suitable', 149, '2024-12-31 12:59:52', 1),
(21318, 23134, 149, 5, 0, 'candidate was ok with communication but not ok with salary and so having ideas for other options also', 149, '2024-12-31 01:10:12', 1),
(21319, 23463, 59, 3, 0, 'Communicaiton Ok Have Exp in Loan sales 1yrs proper document she has need to check in training period\n', 89, '2024-12-31 03:53:55', 1),
(21320, 23470, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(21321, 23476, 149, 5, 0, 'candidate was not waited till interview ,he tells that he was having another interview', 154, '0000-00-00 00:00:00', 1),
(21322, 23475, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21323, 23474, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21324, 23479, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21325, 23472, 149, 5, 0, 'candidate was not having good communication and did not have any work experience not suitable for sales ', 154, '0000-00-00 00:00:00', 1),
(21326, 23465, 30, 7, 3, 'fresher suggested ctc 14k', 154, '0000-00-00 00:00:00', 1),
(21327, 23466, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21328, 23481, 137, 5, 0, 'candiate communication ok but she not work properly in previous company so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21329, 23487, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21330, 23471, 102, 5, 0, 'Candidate communication and sales convincing skill better but long distance and sustainability is doubt ', 154, '0000-00-00 00:00:00', 1),
(21331, 23488, 149, 5, 0, 'candidate was slow at responding have ideas for other jobs also and not at all speaking', 154, '0000-00-00 00:00:00', 1),
(21332, 23492, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21333, 23489, 149, 5, 0, 'candidate was not so good at communication looking for higher ctc and also not interested in field calls', 154, '0000-00-00 00:00:00', 1),
(21334, 23491, 57, 5, 0, 'candidate is 50/50, Exp 3 month Real-estate reason for resigned salary low like 15, now she exp 17k above, candidate not worth for the Salary, Sustainability issues', 154, '0000-00-00 00:00:00', 1),
(21335, 23490, 102, 5, 0, 'Communication and convincing skill is low and then long distance , he is interested in customer support', 154, '0000-00-00 00:00:00', 1),
(21336, 23482, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21337, 23483, 137, 7, 0, 'candidate communication and voice good , past exp is amazan sales packing for 3 months , try for 7 days training period , and salary exp is 15 to 16k', 154, '0000-00-00 00:00:00', 1),
(21338, 23484, 149, 7, 0, 'candidate was good at communication and interested in sales have bike and laptop we shall provide 15k as salary', 154, '0000-00-00 00:00:00', 1),
(21339, 23180, 59, 3, 0, 'Fresher Communication Ok Open for Telecalling can give a try and check in training and confirm', 137, '2025-01-03 02:48:00', 1),
(21340, 23484, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in training and confirm', 149, '2025-01-03 02:50:14', 1),
(21341, 23498, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21342, 23497, 89, 7, 0, 'good skill. 6 month experience at lic 2023. will Analyst 7 days training', 154, '0000-00-00 00:00:00', 1),
(21343, 23497, 59, 1, 0, NULL, 89, '2025-01-03 04:46:30', 1),
(21344, 23503, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21345, 23505, 74, 7, 0, 'he ok with the profile..father in foreign labour 25k salary,,he is not intrested in foreign....poor family..mother house wife have brother.....know target and pressure in sales,,,fresher only..travel time half hour....will try in training...have laptop...expected 12k kindly check once and confirm...imeediate joining', 153, '0000-00-00 00:00:00', 1),
(21346, 23501, 74, 5, 0, 'not fit ........no job need...two years looking in father business,,,,,choosing data entry,,', 153, '0000-00-00 00:00:00', 1),
(21347, 23483, 59, 3, 0, 'Communication Ok Fresher for Our Roles need to check in training and confirm\n', 137, '2025-01-04 11:41:05', 1),
(21348, 23465, 60, 1, 0, NULL, 30, '2025-01-04 12:24:19', 1),
(21349, 23456, 59, 3, 0, 'Communication Ok Fresher need to check in the training and confirm Long Run Doubts in this profile\n', 30, '2025-01-04 12:26:39', 1),
(21350, 23506, 11, 5, 0, 'not selected for E sales ', 154, '0000-00-00 00:00:00', 1),
(21351, 23505, 59, 3, 0, 'Communication Ok Fresher for our roles need to train from scratch can check in training\n', 74, '2025-01-04 05:14:15', 1),
(21352, 23510, 74, 7, 0, 'he is ok with the profile...completed be and oracle data base developer and due to company closed releived from tthe job....expected 14 to 15,,,,,,,have laptop father passed.....30 mins travel...imeediate joining....have good comunicaion...kindly chekc once and confirm', 153, '0000-00-00 00:00:00', 1),
(21353, 23513, 74, 7, 0, 'she is ok with the profile...completed MBA in hr and worked in sharekhan,,,,as a customer executive for MF AND SHARES....father passed...mother home maker....grandfather only care taking but recently passed away,,,rental house only.....near by house....brother worked in coimbatore...as it recriter...25k salary..have no laptop...wednesday joining.....expected 13k', 153, '0000-00-00 00:00:00', 1),
(21354, 23511, 137, 5, 0, 'candiate commuication not good and very long distance so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21355, 23515, 74, 5, 0, 'no fit...expected high....long distance ..', 153, '0000-00-00 00:00:00', 1),
(21356, 23517, 19, 5, 0, 'not fit for sales and distance also long', 154, '0000-00-00 00:00:00', 1),
(21357, 23516, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21358, 23518, 102, 8, 0, 'Not attend interview ', 154, '0000-00-00 00:00:00', 1),
(21359, 23520, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21360, 23521, 57, 7, 0, 'Candidate is ok, communication good, 1 yrs exp only, Quality and observation skills good, she exp salary 20k negotiate the salary 15k to 17k maximum, confirm the joining thanks', 154, '0000-00-00 00:00:00', 1),
(21361, 23525, 57, 5, 0, 'candidate is unfit for sales profile, communication not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(21362, 23522, 105, 5, 0, 'Candidate Communication Little Bit Only Good ,Also Her Performance Is Not Good And Then Sustainable Is Doubt', 154, '0000-00-00 00:00:00', 1),
(21363, 23523, 19, 7, 0, 'Fresher salary as per the company rules lets try 7 days ', 154, '0000-00-00 00:00:00', 1),
(21364, 23521, 59, 3, 0, 'Communication Ok 5050 on sustainability need to review and check in training phone she need to arrange', 57, '2025-01-06 02:55:17', 1),
(21365, 23523, 59, 5, 0, 'Not much comfort to work in target looking for non voice also her friend got rejected in the interview she will not sustain', 19, '2025-01-06 03:02:37', 1),
(21366, 23526, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21367, 23526, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21368, 23513, 59, 1, 0, NULL, 74, '2025-01-06 06:59:02', 1),
(21369, 23510, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 74, '2025-01-06 07:01:16', 1),
(21370, 23530, 74, 7, 0, 'He is ok with the profile ...completed diploma in Nagapattinam....and studied BE in madurai...expected high exposure.....and studied 6 month course in Palanasam.....mother passed last year....father centring work daily wages......not interested in IT current....he is interested in Tele calling...bcoz of he is speaking well......expected 13 to 14k.....have laptop....only issue distance.....100km...Aliyur....near Nagapattinam....ready to relocate to thanjavur hostel...so kindly check and confirm...apart from distance all good', 153, '0000-00-00 00:00:00', 1),
(21371, 23507, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21372, 23531, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21373, 23534, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21374, 23533, 57, 7, 0, 'Candidate is ok , 1yr medical field experience but abscond, communication is ok, sal exp 18k to 21k negotiate the salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21375, 23536, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21376, 23535, 149, 5, 0, 'candidate was not suitable for sales and not have any ideas about the field', 154, '0000-00-00 00:00:00', 1),
(21377, 23533, 59, 3, 0, 'Communication ok can give a try and check in training period ', 57, '2025-01-07 12:37:22', 1),
(21378, 23411, 89, 7, 0, 'good Skill. already 1 yr Experience at bank Bazar and 6 month visa star Health. expect 18.5 k. my Suggest 17.5 k ', 154, '0000-00-00 00:00:00', 1),
(21379, 23540, 74, 7, 0, 'He is ok with the profile...completed BE In park college....CS.....working in us based company in chennai...and night shift health issue....and no OT charges....so he releived from job....and already selected in IT company...but due to uncle death he releived....so high expenses in chennai....so ready to settle in thanjavur......father driver in foreign....and brother going to higher studies in London this month....have KTM bike.....not interested to work in foreign....so mother passed away....kindly check and confirm...salary 13 to 14k....immediate joining', 154, '0000-00-00 00:00:00', 1),
(21380, 23524, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21381, 23530, 59, 1, 0, NULL, 74, '2025-01-07 01:21:17', 1),
(21382, 23540, 59, 1, 0, NULL, 74, '2025-01-07 01:27:08', 1),
(21383, 23411, 59, 3, 0, 'Communication Ok Have exp but not in relevant one can give a try and check in training', 89, '2025-01-07 02:40:52', 1),
(21384, 23543, 149, 5, 0, 'candidate was not at all good at communication and not having confidence not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21385, 23544, 74, 5, 0, 'not fit for tele calling kindly avoid', 104, '0000-00-00 00:00:00', 1),
(21386, 23548, 74, 5, 0, 'have no clarity about job not fit for team', 104, '0000-00-00 00:00:00', 1),
(21387, 23542, 149, 5, 0, 'candidate was not so good at communication and he was having interest in other fields', 104, '0000-00-00 00:00:00', 1),
(21388, 23560, 89, 5, 0, 'no basic skill', 104, '0000-00-00 00:00:00', 1),
(21389, 23559, 19, 5, 0, 'She is intrested in Bike health Insurance job', 104, '0000-00-00 00:00:00', 1),
(21390, 23552, 19, 2, 0, 'Kindly check he will able to join feb 1 only,if he joined immedit means we will proceed otherwise reject this person', 104, '0000-00-00 00:00:00', 1),
(21391, 23557, 57, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21392, 23477, 105, 7, 0, 'Candidate Communication And Performance Is good ,will check with her in the training Period.as discussed CTC 1.80/LPA.', 104, '0000-00-00 00:00:00', 1),
(21393, 23546, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21394, 23477, 59, 1, 0, NULL, 105, '2025-01-08 01:08:25', 1),
(21395, 23558, 74, 5, 0, 'high attitude and have no disipline', 104, '0000-00-00 00:00:00', 1),
(21396, 23551, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21397, 23555, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21398, 23554, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21399, 23547, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21400, 23553, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21401, 23549, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21402, 23571, 89, 5, 0, 'silent person. and voice Stuck ', 154, '0000-00-00 00:00:00', 1),
(21403, 23573, 19, 7, 0, 'lets try 7 days then we will confirm salary basic freshers salary', 154, '0000-00-00 00:00:00', 1),
(21404, 23455, 57, 7, 0, 'Candidate is ok, 2yrs exp shriram sales xxamp Collection, communication is ok, sal exp 20k above, negotiate the salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21405, 23581, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21406, 23580, 137, 5, 0, 'candidate not interest on telecalling work and mainly lookig for non voice process an dsalart exp for very high so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21407, 23562, 30, 7, 3, 'suggested ctc 16k confirm the joining', 154, '0000-00-00 00:00:00', 1),
(21408, 23455, 59, 1, 0, NULL, 57, '2025-01-09 02:48:19', 1),
(21409, 23566, 147, 7, 0, 'selected good communication skills 15k salary', 154, '0000-00-00 00:00:00', 1),
(21410, 23577, 30, 7, 3, 'suggested 18k ctc confirm the joining', 154, '0000-00-00 00:00:00', 1),
(21411, 23579, 30, 7, 3, 'Suggested ctc 18k for dm', 154, '0000-00-00 00:00:00', 1),
(21412, 23589, 74, 7, 0, 'She is ok with the profile...completed MSc ..age 29....2017 passed out...3 yrs Studied tnpsc exam...after she married...and last 6 month work in WFH....vehicle insurance sales and renewal....expected 13k ...have no laptop...travel time 20mins...husband work in petrol bunk..have 2 Yr child...ready to join after Pongal...family support for job kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21413, 23590, 74, 5, 0, 'Have no knowledge about job ...unfit for sales', 153, '0000-00-00 00:00:00', 1),
(21414, 23585, 74, 5, 0, 'Not Fit for telecalling, unfit', 153, '0000-00-00 00:00:00', 1),
(21415, 23591, 105, 5, 0, 'candidate Performance is ok ,but voice communication is very low Then Her Sustainable is doubt.Also she told,she is more sensitive Type', 153, '0000-00-00 00:00:00', 1),
(21416, 23592, 74, 7, 0, 'He is ok with the profile...completed BE ece in thanjavur.....Father worked in motor company...25k salaary.....he Is completed 24 only...2 months worked in manufacturing company...and 1 month worked in farque team...In sales care and star health....due to arrer releived from the job...m4 arrer exam in 22 Jan...after he Joined....Ready To arrange laptop...expected 14k....content creater and poster creator in insta and face book ....kindly cross. Check once and confirm.', 154, '0000-00-00 00:00:00', 1),
(21417, 16112, 109, 5, 0, 'Communication not good not suit for Recruiter', 154, '0000-00-00 00:00:00', 1),
(21418, 23584, 137, 7, 0, 'candidate communication and voice good , litebit get stuck , past exp for other work and currently work on delivery boy , this month end he will join the work so try for 7 days training periods , exp salary on 16 to 17k', 153, '0000-00-00 00:00:00', 1),
(21419, 23076, 57, 7, 0, 'Candidate is ok, communication good, sal expectation 18k, 10 month experience Altruist loan collection, negotiate the salary and confirm the joining date', 153, '0000-00-00 00:00:00', 1),
(21420, 23076, 59, 3, 0, 'Communicaiton Ok 5050 Sustainability doubts need to checjk in training', 57, '2025-01-10 12:46:59', 1),
(21421, 23598, 109, 5, 0, 'Rejected', 153, '0000-00-00 00:00:00', 1),
(21422, 23597, 109, 5, 0, 'Looking for marketing', 153, '0000-00-00 00:00:00', 1),
(21423, 23578, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21424, 23584, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 137, '2025-01-10 01:12:16', 1),
(21425, 23599, 149, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21426, 23576, 102, 7, 0, 'Candidate communication and convincing skill is good he is interested sales he is experience but another domain expect salary expect 15 to 16k Once confirm DOJ', 153, '0000-00-00 00:00:00', 1),
(21427, 23582, 30, 5, 0, 'looking for non voice process', 154, '0000-00-00 00:00:00', 1),
(21428, 23583, 30, 5, 0, 'not looking for voice process', 154, '0000-00-00 00:00:00', 1),
(21429, 23596, 30, 7, 3, 'suggested ctc 16k confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21430, 23589, 59, 3, 0, 'Communication Ok Age Can give a try and check in training', 74, '2025-01-10 03:52:47', 1),
(21431, 23592, 59, 3, 0, 'Communication Ok Can be trained in our roles and check during the training period', 74, '2025-01-10 04:12:31', 1),
(21432, 23576, 59, 3, 0, 'Communication OK Need to check and confirm in the training period', 102, '2025-01-10 04:32:08', 1),
(21433, 23573, 59, 1, 0, NULL, 19, '2025-01-10 05:05:38', 1),
(21434, 23601, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21435, 23537, 147, 5, 0, 'looking for non voice', 154, '0000-00-00 00:00:00', 1),
(21436, 23538, 147, 5, 0, 'candidate not intrested', 154, '0000-00-00 00:00:00', 1),
(21437, 23602, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21438, 23603, 105, 5, 0, 'Candidate Not Communicating Much More also her performance is very slow and low, Sustainability is doubt ', 154, '0000-00-00 00:00:00', 1),
(21439, 23604, 89, 7, 0, 'good skill. consider Fresher', 154, '0000-00-00 00:00:00', 1),
(21440, 23606, 74, 5, 0, 'not fit for telecalling choosing data entry and not intrested in job,,,,expected accounts related jon only so only atten interivew for financial company..current he want pay a fees for mba so only looking for job', 153, '0000-00-00 00:00:00', 1),
(21441, 23607, 74, 7, 0, 'she is ok with the profile, completed bsc biotech, 24 passedout,,,,father welder own in house 20k monthly earning,,,two elder sister first sister married work in infoysys 50k earning but not support to family,,,another sister work in omega 15k earning,,,,she tried many place like omega , and other healthcare solutions but rejected,,,,have good cominication and confident regarding job.....highly job need fresher..expected 12k and ready to arrange laptop,,,,and joined monday ,,,,23k from office to home 45mins travel..future plan govt job...kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21442, 23596, 60, 1, 0, NULL, 30, '2025-01-11 11:34:43', 1),
(21443, 23577, 60, 1, 0, NULL, 30, '2025-01-11 11:35:44', 1),
(21444, 23562, 60, 1, 0, NULL, 30, '2025-01-11 11:37:07', 1),
(21445, 23593, 147, 5, 0, 'not intrested for voice', 154, '0000-00-00 00:00:00', 1),
(21446, 23607, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training 30 min travel distance', 74, '2025-01-11 01:24:53', 1),
(21447, 23566, 59, 3, 0, 'Fresher need to check in 7 daya trsaniin', 147, '2025-01-11 01:30:17', 1),
(21448, 23605, 147, 5, 0, 'not intrested in voice process', 154, '0000-00-00 00:00:00', 1),
(21449, 23611, 147, 7, 0, 'Experience candidate good Communication need to discuss CTC', 154, '0000-00-00 00:00:00', 1),
(21450, 23611, 60, 1, 0, NULL, 147, '2025-01-11 03:07:25', 1),
(21451, 23613, 89, 5, 0, 'not Interested voice process', 154, '0000-00-00 00:00:00', 1),
(21452, 23612, 149, 7, 0, 'candidate was good at communication also interested in sales and ready for immediate joining ,we shall provide 15k as salary ,syed sir also checked the candidate', 153, '0000-00-00 00:00:00', 1),
(21453, 23618, 57, 7, 0, 'Candidate is ok, 2 yr exp mobile showroom but no payslip xxamp proof, 5 month exp futurez staff loan dep, communication is ok, sal exp 20k, kindly negotiate the salary and confirm the joining date', 153, '0000-00-00 00:00:00', 1),
(21454, 23619, 137, 7, 0, 'candidate communication and voice ok , past 4 years sales exu for mobie sales an d6 month team leader , very long distance and no bike , but try for 7 days training , exp salary is 18 to 20k ', 153, '0000-00-00 00:00:00', 1),
(21455, 23620, 89, 5, 0, 'very silent person and no basic skil', 153, '0000-00-00 00:00:00', 1),
(21456, 23612, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training ', 149, '2025-01-13 12:33:18', 1),
(21457, 23621, 105, 7, 0, 'Candidate Communication and performance is ok. but 50/50 will check with her in the training period', 153, '0000-00-00 00:00:00', 1),
(21458, 23619, 59, 3, 0, 'Communication Ok Fresher for our roles have 4 yrs exp in store sales can give a try and train need to analyse and confirm in the training period', 137, '2025-01-13 12:44:29', 1),
(21459, 23618, 59, 3, 0, 'Communication Ok Can give a try and check in 7 days training', 57, '2025-01-13 12:48:39', 1),
(21460, 23391, 137, 5, 0, 'candidate dress code and communication not good and he not fit for calling work so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21461, 23622, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21462, 23617, 147, 7, 0, 'Good Communication Previous Work Experience Out Of India Check Once Will He Work Long Time', 153, '0000-00-00 00:00:00', 1),
(21463, 23626, 147, 5, 0, 'lack of communication', 153, '0000-00-00 00:00:00', 1),
(21464, 23625, 147, 5, 0, 'Communication is not good no Confidence', 153, '0000-00-00 00:00:00', 1),
(21465, 23621, 59, 1, 0, NULL, 105, '2025-01-16 09:31:57', 1),
(21466, 23630, 149, 7, 0, 'candidate was good at communication also have work experience and interested in sales ,we shall give 14k as take home and also ok with immediate joining even by tomorrow itself', 154, '0000-00-00 00:00:00', 1),
(21467, 23631, 149, 7, 0, 'Good At Communication ,Also Interested In Sales We Shall Provide 13-14k As Take Home And Syed Sir Also Checked With Candidate.', 154, '0000-00-00 00:00:00', 1),
(21468, 23629, 89, 5, 0, 'not fit for the job , no basic skill and 3 company chang last 6 month', 154, '0000-00-00 00:00:00', 1),
(21469, 23632, 74, 5, 0, 'not fit for telecalling, intrested in govt job', 154, '0000-00-00 00:00:00', 1),
(21470, 23632, 74, 5, 0, 'not fit for telecalling, intrested in govt job', 154, '0000-00-00 00:00:00', 1),
(21471, 23630, 59, 3, 0, 'Communication Ok have few months exp can be trained give a try and check in training', 149, '2025-01-16 01:29:10', 1),
(21472, 23635, 89, 7, 0, 'good skill. already Experience at non voice. i suggest 17.5 k ', 154, '0000-00-00 00:00:00', 1),
(21473, 23636, 57, 5, 0, 'Candidate is not Fit For sales profiles, bcz of she was looking backend process like data entry, she resigned previous job heavy work target based, she unfit ', 154, '0000-00-00 00:00:00', 1),
(21474, 23627, 57, 5, 0, 'candidate is not ok, Observation skills low, Reject the profile \nthanks', 154, '0000-00-00 00:00:00', 1),
(21475, 23631, 59, 3, 0, 'Communication Ok fresher for our role 3 months exp but no documents need to check in training', 149, '2025-01-16 03:00:28', 1),
(21476, 23635, 59, 1, 0, NULL, 89, '2025-01-16 03:26:35', 1),
(21477, 23604, 59, 1, 0, NULL, 89, '2025-01-16 03:28:35', 1),
(21478, 23638, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21479, 23639, 89, 5, 0, 'no basic skill. and long distance ', 153, '0000-00-00 00:00:00', 1),
(21480, 23645, 74, 7, 0, 'he is ok with the profile completed mca in pushpam college,,,,1 year working in service and sales oil lubrication industry....uncle manager so refer to that company....salary 16k petrol all over 22k......facing accident so releived from the job...not possible in IT so try in sales telecalling....house next street from ofice...father painter in a own partnership company...rental house 5k rent..brother studied in bba....expected 12 to 15k have laptop....english pronuncation low but try in training...join immediately', 154, '0000-00-00 00:00:00', 1),
(21481, 23617, 59, 3, 0, 'Fresher Communicaiton Ok Can give a try and check in training', 147, '2025-01-17 10:49:08', 1),
(21482, 23643, 149, 7, 0, 'candidate was interested in sales and good at communication ,also ready to joining by any time kannan also checked with candidate', 154, '0000-00-00 00:00:00', 1),
(21483, 23642, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21484, 23640, 19, 7, 0, 'job needed person already having 3 years in tele calling in hand salary 17k lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21485, 23641, 105, 5, 0, 'Candidate communication and performance is ok .but he is interested in non voice ,', 154, '0000-00-00 00:00:00', 1),
(21486, 23646, 57, 7, 0, 'Candidate is ok,', 154, '0000-00-00 00:00:00', 1),
(21487, 23640, 59, 3, 0, 'Communication ok have exp in loan collection and sales can give a try and check in training\n', 19, '2025-01-17 12:40:13', 1),
(21488, 23646, 59, 1, 0, NULL, 57, '2025-01-17 12:45:45', 1),
(21489, 23647, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21490, 23634, 30, 5, 0, 'due to communication skill', 154, '0000-00-00 00:00:00', 1),
(21491, 23645, 59, 3, 0, 'Communication Average 5050 for your profile can give try and check in training period', 74, '2025-01-17 03:38:05', 1),
(21492, 23649, 30, 5, 0, 'communication not upto the mark', 154, '0000-00-00 00:00:00', 1),
(21493, 23655, 74, 5, 0, 'not fit', 153, '0000-00-00 00:00:00', 1),
(21494, 23657, 89, 7, 0, 'good skill. but Previous job non voice. once will consider 7 days training', 154, '0000-00-00 00:00:00', 1),
(21495, 23654, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21496, 23659, 109, 5, 0, 'Above 30 age she will not be suitable for our sales', 154, '0000-00-00 00:00:00', 1),
(21497, 23660, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21498, 23663, 11, 7, 0, 'gaurav sir met \nshe is ok for E sales ', 153, '0000-00-00 00:00:00', 1),
(21499, 23657, 59, 3, 0, 'Communication Ok 5months back she attended interview for HR Profile through Indeed now for Sales 5050 On sustainability need to check in training and confirm', 89, '2025-01-18 03:18:45', 1),
(21500, 23670, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21501, 23671, 74, 5, 0, 'not fit for tele sales ,,,not facing pressure', 153, '0000-00-00 00:00:00', 1),
(21502, 23666, 74, 7, 0, 'she is ok with the profile..fresher..complted ba english in bon secures college.....native 25 km from ofice..father retired govt staff...aged person both so she is helpless and need job .....speak well ready to work in any environment and salary not expected basic 12k only have laptop and joining imeediately....kindly check once and cofirm', 153, '0000-00-00 00:00:00', 1),
(21503, 23669, 59, 3, 0, 'communication Ok Rejoining candidate Babu Own reference and acceptance ', 60, '0000-00-00 00:00:00', 1),
(21504, 23674, 109, 5, 0, 'Shorlisted but she not joined for intern', 154, '0000-00-00 00:00:00', 1),
(21505, 23667, 105, 7, 0, 'CandIdate communication and performance is good,Joining On 23rd Of This Month.As Discussed CTC 1.8LPA.Kindly Check With Him ', 154, '0000-00-00 00:00:00', 1),
(21506, 23673, 74, 5, 0, 'completly looking for IT ONLY NOT FIT FOR SALES', 154, '0000-00-00 00:00:00', 1),
(21507, 23672, 149, 7, 0, 'candidate was good at communication also fluency in english and interested in sales and ready to join ,we shall give 15k as salary .', 154, '0000-00-00 00:00:00', 1),
(21508, 23677, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21509, 23676, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21510, 23676, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21511, 23679, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21512, 23643, 59, 1, 0, NULL, 149, '2025-01-20 12:19:17', 1),
(21513, 23672, 59, 1, 0, NULL, 149, '2025-01-20 12:36:05', 1),
(21514, 23683, 19, 7, 0, 'selected ctc 16k lets try 7 days we will confirm', 154, '0000-00-00 00:00:00', 1),
(21515, 23682, 89, 5, 0, 'silent person. not fit for the job', 154, '0000-00-00 00:00:00', 1),
(21516, 23552, 19, 5, 0, 'he asking too much time to join', 19, '2025-01-20 01:30:14', 1),
(21517, 23664, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21518, 23685, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21519, 23686, 19, 5, 0, 'except high salary not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21520, 23686, 19, 5, 0, 'except high salary not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21521, 23667, 59, 3, 0, 'Communication Ok can give a try and check in training sustainability 5050', 105, '2025-01-20 04:40:24', 1),
(21522, 23683, 59, 1, 0, NULL, 19, '2025-01-20 04:45:31', 1),
(21523, 23368, 59, 3, 0, 'IT intern with TxxampC accepted for Sathish Team Interview Round s with Sathish Gokul Arun', 60, '0000-00-00 00:00:00', 1),
(21524, 23692, 74, 5, 0, 'not fit for telesales, choosing data entry', 153, '0000-00-00 00:00:00', 1),
(21525, 23690, 57, 7, 0, 'Candidate is ok, communication is ok, pls cross check settled family, father medical business mother beautician, distance too long avadi, pls Filter. Confirm the joining date..\nThanks', 154, '0000-00-00 00:00:00', 1),
(21526, 23689, 89, 5, 0, 'no basic skill . and long distance', 154, '0000-00-00 00:00:00', 1),
(21527, 23694, 19, 5, 0, 'not wearing proper formal and he is not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21528, 23694, 19, 5, 0, 'not wearing proper formal and he is not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21529, 23696, 105, 7, 0, 'candidate communication and performance is Good.Will Check With her in thetraining period.as discussed cTC 1.68LPA Check With her', 154, '0000-00-00 00:00:00', 1),
(21530, 23699, 89, 7, 0, 'good skill. married woman Experience 1 yr at insurance filed. but will analysis 7 days training. ', 154, '0000-00-00 00:00:00', 1),
(21531, 23695, 19, 7, 0, 'job needed person salary in hand 14k lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21532, 23695, 19, 7, 0, 'job needed person salary in hand 14k lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21533, 23700, 105, 5, 0, 'candidate performance And communication is Low.also his voice is low pitch.then sustainable doubt.', 154, '0000-00-00 00:00:00', 1),
(21534, 23700, 105, 5, 0, 'candidate performance And communication is Low.also his voice is low pitch.then sustainable doubt.', 154, '0000-00-00 00:00:00', 1),
(21535, 23695, 59, 1, 0, NULL, 19, '2025-01-21 12:10:46', 1),
(21536, 23663, 60, 1, 0, NULL, 11, '2025-01-21 12:14:19', 1),
(21537, 23690, 59, 1, 0, NULL, 57, '2025-01-21 12:29:24', 1),
(21538, 23701, 149, 5, 0, 'candidate was not good at communication and not so confident at the job', 154, '0000-00-00 00:00:00', 1),
(21539, 23702, 57, 5, 0, 'Candidate is not suitable for sales profile, communication not good,Appt not interested,reject the profile', 154, '0000-00-00 00:00:00', 1),
(21540, 23565, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21541, 23661, 19, 5, 0, 'not fit for sales and he intrested in iT', 154, '0000-00-00 00:00:00', 1),
(21542, 23706, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21543, 23699, 59, 1, 0, NULL, 89, '2025-01-21 01:31:32', 1),
(21544, 23665, 30, 7, 4, 'upto 20k suggested canditate worth', 154, '0000-00-00 00:00:00', 1),
(21545, 23709, 30, 7, 3, 'suggested 14 to 15k ctc, English managable but kannanda and tamil k', 154, '0000-00-00 00:00:00', 1),
(21546, 23668, 30, 7, 3, 'suggested ctc 18 to 20k cross check previous data and immediate joining', 154, '0000-00-00 00:00:00', 1),
(21547, 23712, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21548, 23709, 60, 1, 0, NULL, 30, '2025-01-21 06:52:04', 1),
(21549, 23668, 60, 1, 0, NULL, 30, '2025-01-21 06:54:19', 1),
(21550, 23665, 60, 1, 0, NULL, 30, '2025-01-21 06:55:31', 1),
(21551, 23666, 59, 1, 0, NULL, 74, '2025-01-21 06:58:00', 1),
(21552, 23696, 59, 5, 0, 'Not interested in this profile', 105, '2025-01-21 10:14:25', 1),
(21553, 23717, 137, 5, 0, 'candidate salary exp its very high and only looking for backend wok not inerst in voice process, so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21554, 23721, 149, 7, 0, 'candidate was good at communication ,interested in sales have bike and also kannan sir checked him we shall provide 15k as salary', 154, '0000-00-00 00:00:00', 1),
(21555, 23714, 19, 5, 0, 'not fit for sales and iTI Degree only so already i have in that list of some person in my team', 154, '0000-00-00 00:00:00', 1),
(21556, 23719, 74, 7, 0, 'he is ok with the profile completed bcom in pushpam college....and immediately join in tata backend process tower issue solving 6 months due to food room and night shift releived from job and 8 month unemployed and joined in amararaja tower backend issue solving company store keeper....and same room food and expenses releived from the job....father driver tata ace owner and self driver..mother small scale mess like hotel...brother doing hse.....he is ok bit low profile but adaptive and talkactive will train....expected 13 to 14k....ready to arrange laptop...joining monday...have bike 15km from home 20mins travel kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21557, 23722, 137, 5, 0, 'candidate communication ok but not iterested i filed work so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21558, 23721, 59, 3, 0, 'Communication Ok can be trained in our roles and check in training period', 149, '2025-01-22 12:03:36', 1),
(21559, 23724, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21560, 23725, 109, 5, 0, 'Worked for 2 weeks but quit at the time of internship', 154, '0000-00-00 00:00:00', 1),
(21561, 23726, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21562, 23697, 74, 5, 0, 'not fit for telesaes and telecalling', 153, '0000-00-00 00:00:00', 1),
(21563, 23719, 59, 3, 0, 'Communication Ok 5050 sustainability doubts not sure delayed joining several times and even shown no interest in voice inbetween he followed and pushed for joining let us try', 74, '2025-01-22 01:00:54', 1),
(21564, 23678, 89, 7, 0, 'good skill. fresher \nbut long distance , \n', 154, '0000-00-00 00:00:00', 1),
(21565, 20433, 89, 5, 0, 'silent person. not fit for the job', 154, '0000-00-00 00:00:00', 1),
(21566, 23730, 105, 7, 0, 'Candidate Communication And performance is Good.This Her Voice is Bold Her Confident Level is also good.bu5 will Check With her in the training Period.as discussed CTC 1.68LPA', 154, '0000-00-00 00:00:00', 1),
(21567, 23730, 59, 1, 0, NULL, 105, '2025-01-22 03:41:33', 1),
(21568, 23731, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21569, 23728, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21570, 23734, 140, 4, 0, 'have to go for gaurav sir approval', 154, '0000-00-00 00:00:00', 1),
(21571, 23733, 74, 7, 0, 'he is ok with the profile completed bca and worked as sales person in furniture shop at college time and full time after college few months and getting 10k.......and worked as a ar caller in medical coding in chennai due to father health issue he releived,,,father passed away..brother studied in college he is the only hope now for job and family expenses....expected 13 to 15k ...have laptop and join immeedaiately kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21572, 23718, 149, 5, 0, ' candidate was not ok with communication and no idea about sales job and interested in other professions', 154, '0000-00-00 00:00:00', 1),
(21573, 23737, 137, 5, 0, 'candidate communication skill and voice good , but he need weekly 2 days leave for studys so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21574, 23739, 74, 5, 0, 'not fit have no clear voice and not suite for team and telesales', 154, '0000-00-00 00:00:00', 1),
(21575, 23740, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21576, 23744, 109, 2, 0, 'Currently doing internship', 154, '0000-00-00 00:00:00', 1),
(21577, 23742, 19, 7, 0, 'Job needed person freshers salary in hand 14k lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21578, 23745, 19, 5, 0, 'she wants 6PM Log Out not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21579, 23678, 59, 5, 0, 'Not interested to join as the distance is too long to travel not open to releocate too', 89, '2025-01-23 12:15:10', 1),
(21580, 23742, 59, 3, 0, 'Communication Ok Can be trained in our roles and need to check in training period', 19, '2025-01-23 12:41:24', 1),
(21581, 23509, 105, 5, 0, 'candidate communication and peformacne is little bit not good,also long distance sustsainable is doubt', 154, '0000-00-00 00:00:00', 1),
(21582, 23748, 74, 5, 0, 'unfit for telesales and telecalling,looking for temporary job only', 154, '0000-00-00 00:00:00', 1),
(21583, 23713, 89, 5, 0, 'he si not intersted telecalling', 154, '0000-00-00 00:00:00', 1),
(21584, 23733, 59, 3, 0, 'Communication Ok Can give a try and check in training let us try', 74, '2025-01-23 01:06:26', 1),
(21585, 23747, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21586, 23747, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21587, 23749, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21588, 23750, 57, 7, 0, 'candidate unfit for sales, field work not interested,reject the profile', 154, '0000-00-00 00:00:00', 1),
(21589, 23750, 59, 1, 0, NULL, 57, '2025-01-23 04:24:37', 1),
(21590, 23754, 149, 5, 0, 'candidate was not good at communication and he was already had interest in other prossions', 104, '0000-00-00 00:00:00', 1),
(21591, 23757, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21592, 23755, 19, 7, 0, 'job needed person fresher salary 16k ctc lets try 7 days then we will confirm', 104, '0000-00-00 00:00:00', 1),
(21593, 23760, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21594, 23763, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21595, 23756, 105, 5, 0, 'Candidate coomunication is well But performance is not good ,also there is gap between continous answering.not handle pressure', 153, '0000-00-00 00:00:00', 1),
(21596, 23755, 59, 3, 0, 'Communication Ok Fresher can be trained in our roles need to check in training', 19, '2025-01-24 03:15:43', 1),
(21597, 23759, 109, 5, 0, 'Shortlisted but not joined', 154, '0000-00-00 00:00:00', 1),
(21598, 23769, 149, 5, 0, 'candidate was not active and he was not shown any interest regarding to this profession', 154, '0000-00-00 00:00:00', 1),
(21599, 23770, 19, 5, 0, 'not fit for sales Attitude was not good', 154, '0000-00-00 00:00:00', 1),
(21600, 23768, 19, 7, 0, 'job needed person almost 4 years exp in sales so lets try 7 dasy in hand salary 19k', 154, '0000-00-00 00:00:00', 1),
(21601, 23771, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21602, 23767, 105, 5, 0, 'CANDIDATE COMMUNICATION AND PERFORMACNE IS NOT GOOD ALSO SUSTAINABLE IS DOUBT', 154, '0000-00-00 00:00:00', 1),
(21603, 23768, 59, 3, 0, 'Communication Ok 5050 Candidate Sustainability doubts in this profile fresher to insurance domain need to check in 7 days training', 19, '2025-01-25 12:41:00', 1),
(21604, 23734, 29, 7, 2, 'selected for esales, accept for 20,000 salary only', 140, '2025-01-25 01:25:19', 1),
(21605, 23765, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21606, 23772, 149, 5, 0, 'candidate communication was not clear and not sure about his job stability and not ok with salary\ngood and ', 154, '0000-00-00 00:00:00', 1),
(21607, 23777, 149, 7, 0, 'candidate was good at communication and also interested and have bike we shall provide 15-16k as salary', 153, '0000-00-00 00:00:00', 1),
(21608, 23775, 74, 7, 0, 'he is ok with the profile completed m.com,,,already worked in wholesale home needs delivery to retail shop with sales,,,,first company 3 month salary issue and next company field issue releived.....father tailor,,mother work in home cleaning....brother iti....have sales pitch and exposure we try in training....expected 15k joining feb..have laptop kindlycheck once and confirm', 153, '0000-00-00 00:00:00', 1),
(21609, 23687, 137, 7, 0, 'candidate commuication ok and interest to calling work , but vocie is very low so tryfor 7 days training periods , bike and lap in hand , exp salary is 15 to 16k ', 153, '0000-00-00 00:00:00', 1),
(21610, 23803, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21611, 23804, 11, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21612, 23807, 89, 5, 0, 'no basic skill', 153, '0000-00-00 00:00:00', 1),
(21613, 23687, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check and confirm ', 137, '2025-01-27 01:19:20', 1),
(21614, 23806, 57, 5, 0, 'Candidate is unfit for the job,communication not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(21615, 23805, 137, 5, 0, 'candaiate all details ok , communication good , but exp salary is 25k above so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21616, 23810, 105, 5, 0, 'candidate communication and performacne os not good .also she is slow then sustainable is doubt', 153, '0000-00-00 00:00:00', 1),
(21617, 23796, 109, 5, 0, 'Communication too low', 153, '0000-00-00 00:00:00', 1),
(21618, 23789, 109, 5, 0, 'Will not be suitable for sales', 153, '0000-00-00 00:00:00', 1),
(21619, 23788, 109, 5, 0, 'Tottaly fresher will not sustain for sales', 153, '0000-00-00 00:00:00', 1),
(21620, 23790, 109, 2, 0, 'Currently pursuing degree will check if comes back', 153, '0000-00-00 00:00:00', 1),
(21621, 23819, 109, 8, 0, 'Not Came after exams', 153, '0000-00-00 00:00:00', 1),
(21622, 23791, 109, 5, 0, 'Wiull not be suitable for sales', 153, '0000-00-00 00:00:00', 1),
(21623, 23816, 109, 8, 0, 'Not Came after exams', 153, '0000-00-00 00:00:00', 1),
(21624, 23793, 89, 5, 0, 'noon voice needed', 153, '0000-00-00 00:00:00', 1),
(21625, 23779, 109, 2, 0, 'They pursuing degreee currently', 153, '0000-00-00 00:00:00', 1),
(21626, 23780, 156, 7, 0, 'Candidate is ok , communication good provide the fresher salary . kindly confirm the joining date ', 153, '0000-00-00 00:00:00', 1),
(21627, 23781, 109, 2, 0, 'Pursuing currently', 153, '0000-00-00 00:00:00', 1),
(21628, 23782, 109, 2, 0, 'Currently pursuing degree will check if comes back', 153, '0000-00-00 00:00:00', 1),
(21629, 23783, 109, 5, 0, 'Wil not be suitable', 153, '0000-00-00 00:00:00', 1),
(21630, 23785, 109, 5, 0, 'Gommunication not good', 153, '0000-00-00 00:00:00', 1),
(21631, 23786, 109, 5, 0, 'Not sustain in our company', 153, '0000-00-00 00:00:00', 1),
(21632, 23795, 109, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21633, 23815, 109, 8, 0, 'Not Came after exams', 153, '0000-00-00 00:00:00', 1),
(21634, 23814, 109, 8, 0, 'Not Came after exams', 153, '0000-00-00 00:00:00', 1),
(21635, 23809, 109, 5, 0, 'She will not be suitable for sales and jut looking for time being', 153, '0000-00-00 00:00:00', 1),
(21636, 23801, 109, 2, 0, 'Currently pursuing degree', 153, '0000-00-00 00:00:00', 1),
(21637, 23800, 109, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21638, 23777, 59, 1, 0, NULL, 149, '2025-01-27 05:37:21', 1),
(21639, 23734, 59, 3, 0, 'Communication Ok Earlier attended and not joined appeared again after years and selectetd let us try through training', 29, '2025-01-27 06:05:12', 1),
(21640, 23820, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21641, 23824, 74, 5, 0, 'not fit for telesales intrested in foreign only', 153, '0000-00-00 00:00:00', 1),
(21642, 23830, 74, 5, 0, 'not fit for tele calling looking for part time only', 153, '0000-00-00 00:00:00', 1),
(21643, 23828, 89, 5, 0, 'silent person. not fit for the job', 154, '0000-00-00 00:00:00', 1),
(21644, 23792, 74, 5, 0, 'not suite for team...choosing data entry', 153, '0000-00-00 00:00:00', 1),
(21645, 23834, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(21646, 23833, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(21647, 23832, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(21648, 23835, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21649, 23831, 109, 5, 0, 'Did internship 2 weeks and quit', 154, '0000-00-00 00:00:00', 1),
(21650, 23837, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(21651, 23841, 140, 4, 0, 'Selected', 154, '0000-00-00 00:00:00', 1),
(21652, 23723, 30, 5, 0, 'communication not that much expectation salary to high', 154, '0000-00-00 00:00:00', 1),
(21653, 23775, 59, 3, 0, 'Communication Ok Can give a try and check in training period', 74, '2025-01-28 06:17:44', 1),
(21654, 23838, 149, 5, 0, 'candidate was interested in hr profession and not interested in sales and not ok with salary also', 154, '0000-00-00 00:00:00', 1),
(21655, 23844, 74, 7, 0, 'he is ok with the profile completed bba in AVC college mayiladudrai...and join in desicrew wfh for 2 years with 10k salary and won top performer award...and releived due to 10k salary and joined hdfc loan section and telecalling and no incentives so releived from the job ,,,,ready to arrange laptop and join next month ,,,father milk business sister married ,,,relocate in gramother home 15km from office...kindly check once will check in training', 153, '0000-00-00 00:00:00', 1),
(21656, 23850, 137, 5, 0, 'candidate all ok but after 6 month start for business and mba also so not fit for my team\n', 154, '0000-00-00 00:00:00', 1),
(21657, 23850, 137, 5, 0, 'candidate all ok but after 6 month start for business and mba also so not fit for my team\n', 154, '0000-00-00 00:00:00', 1),
(21658, 23480, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21659, 23841, 29, 7, 3, 'ok, have to train and check ', 140, '2025-01-29 10:38:18', 1),
(21660, 23852, 19, 5, 0, 'Distance Issue', 154, '0000-00-00 00:00:00', 1),
(21661, 23851, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21662, 23854, 57, 7, 0, 'Candidate is ok, communication ok\npls cross check sustainability,confirm the salary and joining Thanks', 154, '0000-00-00 00:00:00', 1),
(21663, 23844, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check and confirm in the training', 74, '2025-01-29 11:38:19', 1),
(21664, 23839, 147, 7, 0, 'Good Communication selected salary 16k having 6 months Experience has tele caller', 154, '0000-00-00 00:00:00', 1),
(21665, 23856, 147, 5, 0, 'only knowing telugu language', 154, '0000-00-00 00:00:00', 1),
(21666, 23836, 105, 5, 0, 'Candidate Communication And performance is not good,also she is not spoken much more then his voice is very low ', 154, '0000-00-00 00:00:00', 1),
(21667, 23727, 105, 7, 0, 'Candidate Communication And performance is good.but little bit voice correlation problem 5050 will check with him in the training Period.as discussed CTC 1.68LAP.Kindly check with him ', 154, '0000-00-00 00:00:00', 1),
(21668, 23858, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21669, 23860, 149, 7, 0, 'candidate was better at communication and having interested in sales and having confidence about the job ,we shall provide 14k as salary', 154, '0000-00-00 00:00:00', 1),
(21670, 23862, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21671, 23861, 137, 5, 0, 'candidate only interested in bank work and not fit for voce process , comuncation good but voice not clear', 154, '0000-00-00 00:00:00', 1),
(21672, 23859, 105, 7, 0, 'Candidate Communication And performance is ok.also her voice is bold.as discussed CTC 1.56LPA.Kindly Check With her ', 154, '0000-00-00 00:00:00', 1),
(21673, 23863, 74, 5, 0, 'unfit for telecalling and telesales', 154, '0000-00-00 00:00:00', 1),
(21674, 23727, 60, 1, 0, NULL, 105, '2025-01-29 01:59:58', 1),
(21675, 23859, 59, 1, 0, NULL, 105, '2025-01-29 02:02:13', 1),
(21676, 23865, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21677, 23855, 19, 5, 0, 'not worth of his asking salary', 154, '0000-00-00 00:00:00', 1),
(21678, 23867, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21679, 23868, 57, 7, 0, 'candidate is ok, babu seen the candidate. communication is ok,\npls check sustainability. confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(21680, 23854, 59, 1, 0, NULL, 57, '2025-01-29 06:13:50', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(21681, 23868, 59, 3, 0, 'Communication Ok Have Exp in calling but not in relevant domain can be trained in our roles need to check and confirm', 57, '2025-01-29 06:15:14', 1),
(21682, 23839, 59, 1, 0, NULL, 147, '2025-01-29 07:06:36', 1),
(21683, 23871, 105, 2, 0, 'candidate communication and performance is good.but his attire is very poor,so resheduled on saturday will check it and finalize.', 154, '0000-00-00 00:00:00', 1),
(21684, 23873, 149, 5, 0, 'CANDIDATE WAS NOT GOOD AT COMMUNICATION NOT AT ALL SPEAKING AND NOT HAVING ANY IDEAS ABOUT SALES AND JOB', 154, '0000-00-00 00:00:00', 1),
(21685, 23872, 137, 7, 0, 'candidate communication and voice good , past 7 month iT requirement work on night shift , that reason to relave past salary 20k i will inform 16k to 17k , so tr for 7 days training period', 154, '0000-00-00 00:00:00', 1),
(21686, 23874, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21687, 23875, 19, 7, 0, 'job needed person ctc 16k fresher salary lets try 7 days then we will confirm', 154, '0000-00-00 00:00:00', 1),
(21688, 23878, 57, 5, 0, 'candidate not suitable for sales xxamp Field work, communication not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(21689, 23860, 59, 1, 0, NULL, 149, '2025-01-30 12:09:23', 1),
(21690, 23877, 149, 7, 0, 'candidate was good at communication and have experience in telecalling and we can provide 14-15k as salary and kannan sir also suggested and he was ready for immediate joining', 154, '0000-00-00 00:00:00', 1),
(21691, 23877, 149, 7, 0, 'candidate was good at communication and have experience in telecalling and we can provide 14-15k as salary and kannan sir also suggested and he was ready for immediate joining', 154, '0000-00-00 00:00:00', 1),
(21692, 23880, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(21693, 23882, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(21694, 23881, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(21695, 23876, 89, 7, 0, 'fresher . good skill', 154, '0000-00-00 00:00:00', 1),
(21696, 23872, 59, 1, 0, NULL, 137, '2025-01-30 12:40:30', 1),
(21697, 23883, 149, 5, 0, 'candidate was not at all speaking and interested in other profession and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(21698, 23884, 19, 5, 0, 'Expecting high salary', 154, '0000-00-00 00:00:00', 1),
(21699, 23885, 105, 5, 0, 'candidate communication and performance is not good.Then she is not performed well in the interview, also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(21700, 23890, 109, 2, 0, 'Currently doing internship', 154, '0000-00-00 00:00:00', 1),
(21701, 23889, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(21702, 23876, 59, 1, 0, NULL, 89, '2025-01-30 04:33:27', 1),
(21703, 23813, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary . kindly confirm the joining date ', 153, '0000-00-00 00:00:00', 1),
(21704, 23875, 59, 1, 0, NULL, 19, '2025-01-30 04:48:16', 1),
(21705, 23894, 74, 7, 0, 'Completed bcom computer application fresher father driver....10k salary...sister MBA only mother home maker have own laptop rrb exam preparation 12 to 15k expected...have clear speech and job need ....srinivasapuram have bike....15 mins travel..joining immediately kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21706, 23879, 19, 5, 0, 'not worth of his asking salary', 154, '0000-00-00 00:00:00', 1),
(21707, 23894, 59, 3, 0, 'Fresher need to train from Scratch can give a try and check in training and confirm', 74, '2025-01-31 11:21:07', 1),
(21708, 23896, 138, 5, 0, 'not fit with sales industry coz 6 years experience in operation team but obersvation ability is very poor even sales knowledge also not good and attitude level like fresher category so reject this candidate as well ', 153, '0000-00-00 00:00:00', 1),
(21709, 23892, 137, 5, 0, 'candidate not interest in out side call and no bike also , he need 6.45 logout so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21710, 23898, 109, 5, 0, 'Lagging in communication', 154, '0000-00-00 00:00:00', 1),
(21711, 23897, 109, 5, 0, 'Not suitable ', 154, '0000-00-00 00:00:00', 1),
(21712, 23900, 105, 5, 0, 'candidate communication and performance is not good.Long Distance Slang Might be very low .also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(21713, 23905, 57, 5, 0, 'Candidate unfit for sales, communication not good, lack of confident. reject the profile', 154, '0000-00-00 00:00:00', 1),
(21714, 23907, 149, 7, 0, 'candidate have better communication and interested and also ok for immediate joining we shall provide 14k as salary kannan sir also checked this candidate', 154, '0000-00-00 00:00:00', 1),
(21715, 23899, 138, 5, 0, 'Good Communication skills and Limited Technical Expertise then lack of problem solving abilities so finally we rejected this candidate', 154, '0000-00-00 00:00:00', 1),
(21716, 23887, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(21717, 23904, 149, 5, 0, 'candidate was ok with communication but married and mother so canxquott be sure about her stability and time management ', 154, '0000-00-00 00:00:00', 1),
(21718, 23918, 74, 5, 0, 'not fit for telesales choosing data entry', 153, '0000-00-00 00:00:00', 1),
(21719, 23911, 149, 7, 0, 'candidate was good at communication and had experience related to sales and interested we shall provide 14-15k as salary ', 154, '0000-00-00 00:00:00', 1),
(21720, 23922, 74, 5, 0, 'not fit looking for temporary job...studied banking job and choosing data entry', 154, '0000-00-00 00:00:00', 1),
(21721, 23921, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21722, 23911, 59, 3, 0, 'Communication Ok Can give a try and check in training period and confirm', 149, '2025-02-01 01:00:50', 1),
(21723, 23907, 59, 1, 0, NULL, 149, '2025-02-01 01:02:26', 1),
(21724, 23877, 59, 3, 0, '\nCommunication Ok fresher for our roles need to check in training and confirm let us try', 149, '2025-02-01 01:06:04', 1),
(21725, 23901, 19, 5, 0, 'not fit for sales', 104, '0000-00-00 00:00:00', 1),
(21726, 23930, 137, 7, 0, 'candidate communication and voice good , past 3 months exp for telecalling and under presure , current location guindy , bike also have , so try for 7 days training period , exp salary is 16 to 17k', 154, '0000-00-00 00:00:00', 1),
(21727, 23924, 11, 5, 0, 'wont suitable for sales ', 154, '0000-00-00 00:00:00', 1),
(21728, 23931, 11, 7, 0, 'selected for E sales \ngaurav sir also met \nhave to confirm joining date ', 154, '0000-00-00 00:00:00', 1),
(21729, 23930, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and check in training', 137, '2025-02-01 04:02:39', 1),
(21730, 23917, 30, 7, 3, 'suggested ctc 18k if she k then finalize', 153, '0000-00-00 00:00:00', 1),
(21731, 23934, 149, 5, 0, 'candidate was not good at communication and also expecting high salary ', 154, '0000-00-00 00:00:00', 1),
(21732, 23934, 149, 5, 0, 'candidate was not good at communication and also expecting high salary ', 154, '0000-00-00 00:00:00', 1),
(21733, 23940, 137, 5, 0, 'candidate only interest in international voice process only and only need calling work , not interest in field work so , not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21734, 23940, 137, 5, 0, 'candidate only interest in international voice process only and only need calling work , not interest in field work so , not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21735, 23942, 105, 7, 0, 'candidate communication and performance is good,but 5050 need to check eith him in the training period.', 154, '0000-00-00 00:00:00', 1),
(21736, 23937, 89, 7, 0, 'candidate ok. good skill. previous work from home IT realated . fresher for sales filed. ', 154, '0000-00-00 00:00:00', 1),
(21737, 23926, 57, 7, 0, 'Candidate is ok , communication good, pls cross check sustainability, sal exp 15k to 18k , fresher negotiate the salary and confirm the joining.thanks', 154, '0000-00-00 00:00:00', 1),
(21738, 23941, 19, 5, 0, 'not willing to work after 6.30PM', 154, '0000-00-00 00:00:00', 1),
(21739, 23938, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21740, 23938, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21741, 23939, 105, 5, 0, 'candidate communication and performance is not good also he not spoken and answered much more in the interview process', 154, '0000-00-00 00:00:00', 1),
(21742, 23774, 137, 7, 0, 'candidate communication and vocie skill good , past exp icici credit card sales , very long distance to quit the job exp salary is 16k so try for 7 days training period ', 154, '0000-00-00 00:00:00', 1),
(21743, 23943, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21744, 23936, 11, 5, 0, 'she wont be suitable for sales ', 154, '0000-00-00 00:00:00', 1),
(21745, 23926, 59, 3, 0, 'Fresher for our roles Communication Ok Can give a try and check in training period', 57, '2025-02-03 12:46:20', 1),
(21746, 23871, 105, 5, 0, 'candidate not respond', 105, '2025-02-03 12:46:53', 1),
(21747, 23942, 59, 3, 0, 'Communication Ok 5050 Sustainability came along with the friends joining itself doubts if joins let us try in training', 105, '2025-02-03 12:48:02', 1),
(21748, 23919, 147, 5, 0, 'looking for non voice', 154, '0000-00-00 00:00:00', 1),
(21749, 23920, 147, 5, 0, 'not intrested for voice process', 154, '0000-00-00 00:00:00', 1),
(21750, 23932, 147, 5, 0, 'lack of communication', 154, '0000-00-00 00:00:00', 1),
(21751, 23951, 89, 5, 0, 'no basiic skill. and long distance', 154, '0000-00-00 00:00:00', 1),
(21752, 23951, 89, 5, 0, 'no basiic skill. and long distance', 154, '0000-00-00 00:00:00', 1),
(21753, 23741, 137, 5, 0, 'candidate commuication not good and most fales commitment , so not fit for my team', 154, '0000-00-00 00:00:00', 1),
(21754, 23948, 149, 5, 0, 'Candidate was basic at communication but cant able to explain her old job process properly and long distance expecting salary more for fresher', 154, '0000-00-00 00:00:00', 1),
(21755, 23950, 19, 5, 0, 'not even try to speak in interview', 154, '0000-00-00 00:00:00', 1),
(21756, 23949, 149, 5, 0, 'candidate was not so good at communication and also not at all interested and have less confidence', 154, '0000-00-00 00:00:00', 1),
(21757, 23949, 149, 5, 0, 'candidate was not so good at communication and also not at all interested and have less confidence', 154, '0000-00-00 00:00:00', 1),
(21758, 23956, 57, 7, 0, 'candidate is ok, experience sriram life 1.5ys , product is ok, field work also interested.Salary expectation 20k above, negotiate the salary and confirm the joining date, team Reference (madhan)', 154, '0000-00-00 00:00:00', 1),
(21759, 23935, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21760, 23931, 60, 1, 0, NULL, 11, '2025-02-04 12:45:06', 1),
(21761, 23841, 59, 3, 0, 'Communication Ok Can give a try and checkn in our process previously attended candidate offered last time but not joined let us try this time', 29, '2025-02-04 01:17:08', 1),
(21762, 23956, 59, 3, 0, 'Communication Ok Can be trained in our roles internal reference Need to check and confirm', 57, '2025-02-04 04:14:50', 1),
(21763, 23961, 137, 7, 0, 'andidate communication and voice good , currently work EB customer cupport night shift , that reason to relave , exp salary is 15 to 16 k , near by location , so try for 7 days training period', 137, '2025-02-04 04:37:56', 1),
(21764, 23954, 147, 7, 0, 'good communication and totaly fresher salary 15k', 154, '0000-00-00 00:00:00', 1),
(21765, 23959, 147, 5, 0, 'looking for short term work and waiting for UPSC ', 154, '0000-00-00 00:00:00', 1),
(21766, 23929, 147, 5, 0, 'lack of communication', 154, '0000-00-00 00:00:00', 1),
(21767, 23954, 59, 3, 0, 'Communication Ok 5050 for our roles sustainability doubts preparing IT course internal team reference let us see in training', 147, '2025-02-04 06:20:23', 1),
(21768, 23961, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 137, '2025-02-04 07:38:13', 1),
(21769, 23917, 60, 1, 0, NULL, 30, '2025-02-05 10:00:34', 1),
(21770, 23965, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21771, 23964, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21772, 23963, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21773, 23960, 137, 5, 0, 'candidate communication not well , stammering to while speak , and very lacey , not welling to out side call so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21774, 23960, 137, 5, 0, 'candidate communication not well , stammering to while speak , and very lacey , not welling to out side call so not fit for my team', 153, '0000-00-00 00:00:00', 1),
(21775, 23966, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21776, 23967, 102, 5, 0, 'Candidate Communication and Convincing ratio is low then Not interested in sales interested in Customer support ', 153, '0000-00-00 00:00:00', 1),
(21777, 23774, 59, 3, 0, 'Communication Ok Fresher for our roles Can give a try and check in training period', 137, '2025-02-05 01:27:30', 1),
(21778, 23968, 149, 5, 0, 'candidate was not good with communication and also not known about job and not have confidence', 153, '0000-00-00 00:00:00', 1),
(21779, 23972, 89, 5, 0, 'not intersted telle calling', 153, '0000-00-00 00:00:00', 1),
(21780, 23971, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21781, 23973, 19, 5, 0, 'too Long distance so its not work out and she need early log out', 153, '0000-00-00 00:00:00', 1),
(21782, 23975, 30, 7, 3, 'This candidate already in the month of aug done interview due to personal things again we have shortlisted suggestions 3.6lac try to convince 3.4l', 104, '0000-00-00 00:00:00', 1),
(21783, 23981, 74, 7, 0, 'she is ok with the profile completed bca in 2017 and worked in a data entry and releived married 2021 and have 2 yrs baby....motherlaw take care of his child so no issues.. house near by only husband worked in finance 25k salary..rental house bt provided by company...speak well and check clearly intrested in job...expected 12k.....have laptop...imeediate joining...kindly check once and confirm..will try in training', 154, '0000-00-00 00:00:00', 1),
(21784, 23985, 149, 5, 0, 'candidate was not ok with communication and not having interest at sales ', 153, '0000-00-00 00:00:00', 1),
(21785, 23989, 11, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21786, 23990, 11, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21787, 23977, 149, 5, 0, 'CANDIDATE WAS OK WITH COMMUNICATION BUT NOT OK WITH SALARY AND SHE WAS NOT INTERESTED', 153, '0000-00-00 00:00:00', 1),
(21788, 23992, 74, 7, 0, 'he is ok with the profile father auto driver...he is completed diploma and worked as a medical rep for 3 years 15k salary....due to salary issue releived from the job ....and worked few month in mobile shop and joined in muthood telecalling loan section 4 month taking two day leave company absconded.....have laptop expected 15k..imeediate joining...kindly check once and confirm', 153, '0000-00-00 00:00:00', 1),
(21789, 23980, 57, 7, 0, 'Candidate is ok, product knowledge good.1yr experience vizza insurance, salary expectation high like 25k something .pls negotiate the salary and confirm the joining date thanks', 154, '0000-00-00 00:00:00', 1),
(21790, 23992, 59, 1, 0, NULL, 74, '2025-02-06 01:50:57', 1),
(21791, 23981, 59, 3, 0, 'Communication OK fresher for our role career gap married 2yrs kid 5050 sustainability doubts let us try and check', 74, '2025-02-06 01:54:33', 1),
(21792, 23982, 19, 5, 0, 'not intrested in sales and not fit for sales also', 153, '0000-00-00 00:00:00', 1),
(21793, 23980, 59, 1, 0, NULL, 57, '2025-02-06 02:58:33', 1),
(21794, 23969, 30, 5, 0, 'high expectation', 154, '0000-00-00 00:00:00', 1),
(21795, 23970, 147, 5, 0, 'language known only telugu', 154, '0000-00-00 00:00:00', 1),
(21796, 23984, 147, 7, 0, 'communication is good and confident', 154, '0000-00-00 00:00:00', 1),
(21797, 23983, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(21798, 23987, 30, 7, 2, 'Suggested ctc 14 to 15k', 154, '0000-00-00 00:00:00', 1),
(21799, 23991, 30, 5, 0, 'expectation its high', 154, '0000-00-00 00:00:00', 1),
(21800, 23994, 30, 5, 0, 'expectation its very high', 154, '0000-00-00 00:00:00', 1),
(21801, 24004, 89, 5, 0, 'not fit for the job. very silent person and no other skills', 153, '0000-00-00 00:00:00', 1),
(21802, 24005, 102, 5, 0, 'Candidate communication is good but existing working customer support so, his look like same customer support ', 153, '0000-00-00 00:00:00', 1),
(21803, 24003, 109, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21804, 24006, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(21805, 24008, 74, 5, 0, 'not suite for team', 153, '0000-00-00 00:00:00', 1),
(21806, 24010, 74, 5, 0, 'not suite for telecalling..have no hope in telecalling', 153, '0000-00-00 00:00:00', 1),
(21807, 23995, 102, 5, 0, 'Candidate communication is good but location in periyapaniyur its long distance so, sustainability doubt and then her is interested in IT ', 153, '0000-00-00 00:00:00', 1),
(21808, 23984, 59, 1, 0, NULL, 147, '2025-02-07 12:38:03', 1),
(21809, 24011, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21810, 24012, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21811, 24013, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21812, 24014, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21813, 24015, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21814, 24016, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21815, 24017, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21816, 24018, 153, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21817, 24028, 147, 5, 0, 'lack of communication', 154, '0000-00-00 00:00:00', 1),
(21818, 23975, 60, 1, 0, NULL, 30, '2025-02-08 07:10:15', 1),
(21819, 23579, 60, 1, 0, NULL, 30, '2025-02-08 07:12:04', 1),
(21820, 23987, 60, 1, 0, NULL, 30, '2025-02-08 07:13:28', 1),
(21821, 24032, 74, 5, 0, 'Not Fit for telecalling ', 153, '0000-00-00 00:00:00', 1),
(21822, 24034, 57, 5, 0, 'Candidate is unfit for sales profile, communication not good, Appearance not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(21823, 24037, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21824, 24033, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21825, 24033, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21826, 23993, 19, 5, 0, 'not fit for sales and he is not willing in out side work', 153, '0000-00-00 00:00:00', 1),
(21827, 24039, 19, 7, 0, 'Already having exp arun kindly speak with employee then wee will confirm', 153, '0000-00-00 00:00:00', 1),
(21828, 24023, 149, 7, 0, 'CANDIDATE COMMUNICATION WAS GOOD AND ALSO INTERESTED IN SALES AND OK FOR IMMEDIATE JOINING WE SHALL PROVIDE 15K AS SALARY', 153, '0000-00-00 00:00:00', 1),
(21829, 24023, 149, 7, 0, 'CANDIDATE COMMUNICATION WAS GOOD AND ALSO INTERESTED IN SALES AND OK FOR IMMEDIATE JOINING WE SHALL PROVIDE 15K AS SALARY', 153, '0000-00-00 00:00:00', 1),
(21830, 24045, 74, 5, 0, 'Not performing well....expected high in fresher....have no clarity in voice and preferred data entry...', 153, '0000-00-00 00:00:00', 1),
(21831, 24044, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21832, 24043, 138, 4, 0, 'Good Communication skills , hardworker , accountability , sales skills are good and attitude is fine finally he is fit to sales ', 153, '0000-00-00 00:00:00', 1),
(21833, 24042, 19, 7, 0, 'Lets try 7 days then we will confirm fresher salary', 153, '0000-00-00 00:00:00', 1),
(21834, 24042, 19, 7, 0, 'Lets try 7 days then we will confirm fresher salary', 153, '0000-00-00 00:00:00', 1),
(21835, 24048, 138, 5, 0, 'Good English communication skills but attitude and maturity not good he needs so much experience sales so not convinced this profile', 153, '0000-00-00 00:00:00', 1),
(21836, 11638, 19, 5, 0, 'not worth of his asking salary', 153, '0000-00-00 00:00:00', 1),
(21837, 11638, 19, 5, 0, 'not worth of his asking salary', 153, '0000-00-00 00:00:00', 1),
(21838, 23913, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21839, 23913, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21840, 23913, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21841, 24041, 137, 7, 0, 'candidate communication and voice good but he only 12th pass and past 6 month work from bpo for sharemarket work only in intership, currently palavaram , exp salary is 15k , so try for 7 days training period', 153, '0000-00-00 00:00:00', 1),
(21842, 24041, 59, 3, 0, 'communication Ok fresher for our roles 12th graduate can give a try and check in training period\n', 137, '2025-02-10 05:41:23', 1),
(21843, 24051, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(21844, 24053, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(21845, 24052, 147, 5, 0, 'kannada not known', 154, '0000-00-00 00:00:00', 1),
(21846, 24057, 140, 4, 0, 'Gaurav sir has to finalise', 154, '0000-00-00 00:00:00', 1),
(21847, 24042, 59, 1, 0, NULL, 19, '2025-02-11 12:02:53', 1),
(21848, 24058, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21849, 24058, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21850, 24059, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21851, 24062, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21852, 23937, 59, 1, 0, NULL, 89, '2025-02-11 01:15:03', 1),
(21853, 24031, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21854, 24031, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21855, 24039, 59, 1, 0, NULL, 19, '2025-02-11 04:34:43', 1),
(21856, 24064, 74, 5, 0, 'not fit for telesales and team', 153, '0000-00-00 00:00:00', 1),
(21857, 24074, 149, 5, 0, 'candidate was not good at communication and also less in interested in sales', 154, '0000-00-00 00:00:00', 1),
(21858, 24072, 74, 7, 0, 'he is ok with the profile completed bE and worked in excela tech for past 2 and half years....due to salary issue releived from the job currently expecting sales profile...speaked well and have some knowledge about job...father saree sales....mother home maker...brother worked in industry sector,,,,expected 15k have laptop and imeediate joining.....kindly check once and confirm ', 154, '0000-00-00 00:00:00', 1),
(21859, 24047, 105, 7, 0, 'Candidate Communication And performance is good,also have some experience in tele calling,but expected CTC As 2.04LPA.', 154, '0000-00-00 00:00:00', 1),
(21860, 24047, 59, 3, 0, 'Communication Ok Need to be trained in our roles check in training and confirm', 105, '2025-02-12 12:19:12', 1),
(21861, 24054, 147, 5, 0, 'looking for IT', 154, '0000-00-00 00:00:00', 1),
(21862, 24072, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 74, '2025-02-12 12:25:29', 1),
(21863, 24023, 59, 1, 0, NULL, 149, '2025-02-12 12:33:14', 1),
(21864, 24066, 57, 7, 0, 'Candidate is ok, fresher interested in sales, pls check sustainability and confirm the joining', 153, '0000-00-00 00:00:00', 1),
(21865, 24066, 57, 7, 0, 'Candidate is ok, fresher interested in sales, pls check sustainability and confirm the joining', 153, '0000-00-00 00:00:00', 1),
(21866, 23600, 30, 7, 3, 'confirm the joining cross check the previous pays', 154, '0000-00-00 00:00:00', 1),
(21867, 24066, 59, 3, 0, 'Communication Ok Can give a try and check in training fresher for our roles', 57, '2025-02-12 04:06:57', 1),
(21868, 24078, 109, 5, 0, 'Communication not good', 153, '0000-00-00 00:00:00', 1),
(21869, 24078, 109, 5, 0, 'Communication not good', 153, '0000-00-00 00:00:00', 1),
(21870, 24086, 74, 7, 0, 'she is ok with the profile completed mba in marketing in trichy....father farmer ,,,having rental house and rental shop, monthly 60 to 70k income,,,,sister studied.....join family...home near by 1 km,,,,,,have bike....speaked well and have exposure in job,,,,have laptop ...expected 13k to 15k...join monday...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21871, 24076, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21872, 24089, 74, 5, 0, 'not fit for job intrested in business only', 153, '0000-00-00 00:00:00', 1),
(21873, 24087, 149, 5, 0, 'candidate was ok with communication but long distance and will join at month end and so not sure about his job need', 153, '0000-00-00 00:00:00', 1),
(21874, 24090, 74, 5, 0, 'not performing well and not fit', 153, '0000-00-00 00:00:00', 1),
(21875, 24091, 11, 4, 0, 'kannan team', 154, '0000-00-00 00:00:00', 1),
(21876, 24093, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21877, 24093, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21878, 24088, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(21879, 24094, 109, 5, 0, 'Not suitable for our team', 153, '0000-00-00 00:00:00', 1),
(21880, 24094, 109, 5, 0, 'Not suitable for our team', 153, '0000-00-00 00:00:00', 1),
(21881, 24095, 109, 5, 0, 'Not suitbale', 153, '0000-00-00 00:00:00', 1),
(21882, 24095, 109, 5, 0, 'Not suitbale', 153, '0000-00-00 00:00:00', 1),
(21883, 24095, 109, 5, 0, 'Not suitbale', 153, '0000-00-00 00:00:00', 1),
(21884, 24097, 109, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21885, 24098, 138, 4, 0, 'Good Communication skills and Sales knowledge is fine and Good attitude but facing the objection is little bit struggle so ok to sales profile but need to negotiate the salary', 153, '0000-00-00 00:00:00', 1),
(21886, 24043, 18, 4, 0, 'Put Remarks', 138, '2025-02-13 12:17:18', 1),
(21887, 24086, 59, 3, 0, 'Communication Ok fresher for our insurance sales need to check in training and confirm', 74, '2025-02-13 12:32:48', 1),
(21888, 24098, 18, 7, 0, 'Selected for Jagadeesh Team. Immedeate Joiner Expected Salary is 30K but can negotiate her last CTC 24k as she is having a gap', 138, '2025-02-13 12:47:18', 1),
(21889, 24100, 105, 7, 0, 'Candidate Communication And performance is good,then she have 1 and Half yrs experience in telesales process.Also her Distance is long.she expected 1.82 LPA.but ixquotll conveyed 15k to 16k', 153, '0000-00-00 00:00:00', 1),
(21890, 24100, 59, 3, 0, 'Communication Ok have exp in calling can give a try and check in training ', 105, '2025-02-13 03:04:33', 1),
(21891, 24103, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21892, 24104, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21893, 24102, 109, 2, 0, 'Currently doing internship', 153, '0000-00-00 00:00:00', 1),
(21894, 14336, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21895, 24057, 29, 1, 0, NULL, 140, '2025-02-13 04:03:00', 1),
(21896, 24091, 19, 7, 0, 'lets try 7 days ctc as per office rules\n', 11, '2025-02-13 06:18:06', 1),
(21897, 24085, 30, 5, 0, 'hidg expectation salary', 154, '0000-00-00 00:00:00', 1),
(21898, 23600, 60, 1, 0, NULL, 30, '2025-02-14 10:18:33', 1),
(21899, 24107, 137, 7, 0, 'candidate communication and vocie good , past exp for other work so try for 7 days training period exp salary 15 to 16k ', 153, '0000-00-00 00:00:00', 1),
(21900, 24112, 19, 5, 0, 'not fit for sales and dress was not good', 104, '0000-00-00 00:00:00', 1),
(21901, 24111, 105, 5, 0, 'Candidate Communication And Performance not much more,then she is very slow,also she need customer support process only ', 153, '0000-00-00 00:00:00', 1),
(21902, 24109, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 153, '0000-00-00 00:00:00', 1),
(21903, 24113, 89, 5, 0, 'previous loan collection job. not fit for the job . health issues', 153, '0000-00-00 00:00:00', 1),
(21904, 24114, 89, 5, 0, 'previuos loan collection job work. no basic skill . ', 153, '0000-00-00 00:00:00', 1),
(21905, 24118, 74, 5, 0, 'no fit for telesales', 104, '0000-00-00 00:00:00', 1),
(21906, 24119, 137, 5, 0, 'candidate commuication is very low and very soft and sencitive type so not fit for my team', 104, '0000-00-00 00:00:00', 1),
(21907, 24117, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21908, 24107, 59, 3, 0, 'Communication ok fresher for our roles but exp in different companies reference try in training', 137, '2025-02-15 12:32:46', 1),
(21909, 24116, 105, 7, 0, 'Candidate Communication And performance is little bit good.5050 profile as discussed CTC As 14k pm', 153, '0000-00-00 00:00:00', 1),
(21910, 24116, 105, 7, 0, 'Candidate Communication And performance is little bit good.5050 profile as discussed CTC As 14k pm', 153, '0000-00-00 00:00:00', 1),
(21911, 24121, 74, 7, 0, 'he is ok with the profile completed mca ...in uG doing 1 years studio job,,,,and doing pg....and worked in local finance job collection.....father passed....mother doing farming...5 children ...first one driver second one in thirupur...third one in IT JOB salary 60k.....2 sisters married....wanted banking related office job....expected 15k....1 hr travel from office to home...orathanadu native have bike...and laptop....he wants to discusss with IT brother and confirm joiningg....kindly check once and confirm', 104, '0000-00-00 00:00:00', 1),
(21912, 24121, 59, 1, 0, NULL, 74, '2025-02-15 02:33:28', 1),
(21913, 24125, 19, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21914, 24091, 59, 3, 0, 'Communication Ok have exp in customer support and inbound calls can give a try and check in training', 19, '2025-02-15 05:38:00', 1),
(21915, 24098, 60, 1, 0, NULL, 18, '2025-02-15 06:30:18', 1),
(21916, 24043, 152, 7, 3, 'Selected for jagadeesh team, candidate okay for immediate joining with 2.5lac CTC\n', 18, '2025-02-15 06:31:02', 1),
(21917, 24043, 59, 3, 0, 'Communication Good Can be trained in our role have exp documents verified need to check and confirm in training', 152, '2025-02-15 07:48:28', 1),
(21918, 24128, 59, 3, 0, 'Rejoining Our Old employees in Operation good Profile', 60, '0000-00-00 00:00:00', 1),
(21919, 24133, 149, 5, 0, 'candidate was not good at communication and he was interested in IT and not sure about is stability', 104, '0000-00-00 00:00:00', 1),
(21920, 24137, 74, 5, 0, 'not suite for sales', 154, '0000-00-00 00:00:00', 1),
(21921, 24135, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 104, '0000-00-00 00:00:00', 1),
(21922, 24135, 102, 5, 0, 'Candidate communication is good then convincing skill is low but his interested in Customer support sales not interested ', 104, '0000-00-00 00:00:00', 1),
(21923, 24138, 74, 5, 0, 'not fit for telesales', 154, '0000-00-00 00:00:00', 1),
(21924, 24140, 109, 5, 0, 'Not suitable', 153, '0000-00-00 00:00:00', 1),
(21925, 24141, 109, 5, 0, 'not suitable', 153, '0000-00-00 00:00:00', 1),
(21926, 24142, 109, 5, 0, 'Not suitable', 153, '0000-00-00 00:00:00', 1),
(21927, 24143, 109, 5, 0, 'Not suitable', 153, '0000-00-00 00:00:00', 1),
(21928, 24136, 105, 7, 0, 'Candidate Communication And performance is good . little bit attitude will check with him in the training Period', 153, '0000-00-00 00:00:00', 1),
(21929, 24152, 89, 5, 0, 'no basic skill, alredy atan 5 interviews', 153, '0000-00-00 00:00:00', 1),
(21930, 24115, 147, 7, 0, 'good communication salary expectation 16k', 154, '0000-00-00 00:00:00', 1),
(21931, 24148, 147, 7, 0, 'experience in axis credit card\nas a telle caller salary 17k', 154, '0000-00-00 00:00:00', 1),
(21932, 24151, 30, 7, 3, 'Confirm the joining and suggested ctc 20k', 154, '0000-00-00 00:00:00', 1),
(21933, 24115, 59, 1, 0, NULL, 147, '2025-02-17 06:15:02', 1),
(21934, 24148, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 147, '2025-02-17 06:19:06', 1),
(21935, 24131, 138, 5, 0, 'Limited Technical Expertise and Lack of Problem Solving Abilities then candidate lacked knowledge about the company and role Negative Attitude so not to fit sales department', 154, '0000-00-00 00:00:00', 1),
(21936, 24147, 138, 4, 0, 'Good English communication ,Attitude good but Sales knowledge is average otherswise everything is fine so selected next round', 153, '0000-00-00 00:00:00', 1),
(21937, 24147, 18, 7, 3, 'Selected for Self team. Ready to Join next week monday. Asking 27k Per Month as take home. Can give as he is a good candidade and try to negotiate', 138, '2025-02-18 11:29:55', 1),
(21938, 24159, 149, 7, 0, 'candidate was having good communication and also interested in sales and ok for immediate joining ', 153, '0000-00-00 00:00:00', 1),
(21939, 24146, 89, 5, 0, 'not intersted voice process', 153, '0000-00-00 00:00:00', 1),
(21940, 24162, 105, 7, 0, 'Candidate Communication And Performance little bit good but 5050 profile will check with her in the training Period ', 153, '0000-00-00 00:00:00', 1),
(21941, 24116, 59, 3, 0, 'Communication Ok State Kabadi player max 1yr will travel Previous 6 months exp documents verified need to check in training and confirm', 105, '2025-02-18 01:07:25', 1),
(21942, 24136, 59, 1, 0, NULL, 105, '2025-02-18 01:09:25', 1),
(21943, 24156, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21944, 24127, 19, 7, 0, 'ctc 16k Once he came for joining he should maintain dress code and hair style ', 153, '0000-00-00 00:00:00', 1),
(21945, 24159, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm Seems to learn in this profile', 149, '2025-02-18 01:31:45', 1),
(21946, 24147, 60, 1, 0, NULL, 18, '2025-02-18 01:44:37', 1),
(21947, 24154, 19, 7, 0, 'job needed person lets try 7 days then we will confirm ', 153, '0000-00-00 00:00:00', 1),
(21948, 24164, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21949, 24158, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21950, 24163, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21951, 24160, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21952, 24127, 59, 3, 0, 'Communication Ok Have few months exp in calling fresher for our roles need to check in training', 19, '2025-02-18 03:03:51', 1),
(21953, 24154, 59, 3, 0, 'Fresher Last 2022 he appeared and got rejected Now Can give a try and check in training ', 19, '2025-02-18 03:04:33', 1),
(21954, 24065, 74, 5, 0, 'Not Fit For telesales', 104, '0000-00-00 00:00:00', 1),
(21955, 24179, 74, 5, 0, 'Not suite for team', 104, '0000-00-00 00:00:00', 1),
(21956, 24183, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(21957, 24182, 149, 7, 0, 'candidate was having good communication and interested in sales and also ok for immediate joining', 153, '0000-00-00 00:00:00', 1),
(21958, 24186, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(21959, 24168, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21960, 24178, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21961, 24188, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21962, 24151, 60, 1, 0, NULL, 30, '2025-02-19 03:35:21', 1),
(21963, 24162, 59, 3, 0, 'Communication Ok have calling exp can give and try in our training period', 105, '2025-02-19 07:16:35', 1),
(21964, 24184, 30, 7, 3, 'ex employee of cafs in E sales team cross check with sustainity suggested ctc 17k for dm', 154, '0000-00-00 00:00:00', 1),
(21965, 24185, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21966, 24195, 57, 7, 0, 'candidate is ok, communication good, he interested. date of exp may end, bcz examination,thanks', 154, '0000-00-00 00:00:00', 1),
(21967, 24201, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21968, 24192, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21969, 24196, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21970, 24200, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21971, 24202, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21972, 23575, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21973, 24205, 19, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(21974, 24203, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21975, 24206, 57, 7, 0, 'Candidate is ok, communication good, fresher. confirm the salary and joining too', 154, '0000-00-00 00:00:00', 1),
(21976, 24195, 59, 1, 0, NULL, 57, '2025-02-20 03:07:45', 1),
(21977, 24206, 59, 3, 0, 'Communication Ok Fresher seems to be doubtful in a long run can give a try and check in training ', 57, '2025-02-20 03:10:19', 1),
(21978, 24212, 57, 7, 0, 'Candidate is ok, communication average, over all 2 yrs experience, last company 5 month abscond bcz salary issues ,exp 19k , already she have 2 offers yet to confirmation, pls cross check and confirm the salary and joining too', 154, '0000-00-00 00:00:00', 1),
(21979, 24212, 59, 3, 0, 'Communication Ok Sustainability doubts a lot in this profile need to check in training and confirm', 57, '2025-02-20 05:02:37', 1),
(21980, 24216, 74, 5, 0, 'not suite for team', 104, '0000-00-00 00:00:00', 1),
(21981, 24213, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21982, 24214, 19, 5, 0, 'not fit for sales', 153, '0000-00-00 00:00:00', 1),
(21983, 24215, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(21984, 24219, 149, 7, 0, 'candidate was having good communication and interested in sales and ok with immediate joining', 104, '0000-00-00 00:00:00', 1),
(21985, 24211, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21986, 24217, 30, 7, 4, 'cOMMUNICATION GOOD , SELECTED FOR DM SUGGESTED CTC 15K IMMEDIATE JOINING', 154, '0000-00-00 00:00:00', 1),
(21987, 24222, 89, 7, 0, 'already experience at health insurance . good skill . i suggest 17 k ', 153, '0000-00-00 00:00:00', 1),
(21988, 24221, 89, 5, 0, 'long ditance and no basic skill', 153, '0000-00-00 00:00:00', 1),
(21989, 24220, 105, 2, 0, 'candidate communication and performance is ok ,but he said he will join after college completion 5050.', 153, '0000-00-00 00:00:00', 1),
(21990, 24222, 59, 3, 0, 'Communication Ok have calling exp can give and check in training period ', 89, '2025-02-21 02:54:24', 1),
(21991, 24224, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21992, 24226, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(21993, 24229, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21994, 24235, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21995, 24236, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21996, 24240, 74, 7, 0, 'she is ok with the propfile completed mba.......father paintting conract....pattukottai native ....renal house...brother work in gem hospial cashier...she is already worked in store keeper aravind hospial chennai....1 yr race preparation....curently work in hero store keeper...9k salary...join imeediately...expected 13k ready to arrange laptop...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(21997, 24240, 59, 3, 0, 'Communication ok can be trained in our roles and need to check and confirm', 74, '2025-02-22 12:23:35', 1),
(21998, 24239, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(21999, 24238, 57, 7, 0, 'Candidate is ok, communication is average , 1yr experience csc field.settled family, just she came for chennai explore with friends, just try 7days training process, confirm the joining date and salary', 104, '0000-00-00 00:00:00', 1),
(22000, 24237, 149, 7, 0, 'candidate was good at communication and also interested in sales ,she will join after wed have experience related to sales ', 104, '0000-00-00 00:00:00', 1),
(22001, 24242, 57, 7, 0, 'candidate is ok, communication good, she exp salary above 18k but she is fresher, so kindly confirm the salary xxamp joining date, kindly cross check she interested in AI HTML ', 104, '0000-00-00 00:00:00', 1),
(22002, 24241, 147, 4, 0, 'communication is very good and did 2 internships salary expectation 17k ', 154, '0000-00-00 00:00:00', 1),
(22003, 24231, 140, 5, 0, 'Not selected', 104, '0000-00-00 00:00:00', 1),
(22004, 24243, 147, 4, 0, 'experienced in collection department has a bike with him salary expectation 16k', 154, '0000-00-00 00:00:00', 1),
(22005, 24241, 59, 1, 0, NULL, 147, '2025-02-22 01:31:09', 1),
(22006, 24243, 59, 3, 0, 'Fresher for our role can be trained need to check in training and confirm', 147, '2025-02-22 01:32:32', 1),
(22007, 24244, 140, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22008, 24245, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22009, 24238, 59, 1, 0, NULL, 57, '2025-02-22 03:06:02', 1),
(22010, 24242, 59, 1, 0, NULL, 57, '2025-02-22 03:07:21', 1),
(22011, 24237, 59, 1, 0, NULL, 149, '2025-02-22 06:15:18', 1),
(22012, 24249, 74, 5, 0, 'not fit for team and sales', 154, '0000-00-00 00:00:00', 1),
(22013, 24253, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22014, 24254, 109, 5, 0, 'Already attend interview and joined he left at the joining date, while working in previous company he gave this try', 154, '0000-00-00 00:00:00', 1),
(22015, 24250, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22016, 24258, 149, 7, 0, 'communication was good and interest in sales and we shall try for 7 days training period', 153, '0000-00-00 00:00:00', 1),
(22017, 24252, 109, 5, 0, 'Not suitable', 154, '0000-00-00 00:00:00', 1),
(22018, 24232, 105, 7, 0, 'candidate communication and performacne is good,but long distance ,will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22019, 24259, 89, 5, 0, 'long distance', 154, '0000-00-00 00:00:00', 1),
(22020, 24070, 105, 7, 0, 'candidate communication and performacne is good,but 5050 doubt ,will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(22021, 24264, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(22022, 24262, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22023, 24126, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22024, 24261, 89, 5, 0, 'no basic skill', 153, '0000-00-00 00:00:00', 1),
(22025, 24263, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(22026, 24232, 59, 3, 0, 'Communication Ok Fresher for our roles need to train from sctrach can give a try and check in training', 105, '2025-02-24 03:11:45', 1),
(22027, 24070, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 105, '2025-02-24 03:12:56', 1),
(22028, 24266, 109, 5, 0, 'Not suitable for sales team', 104, '0000-00-00 00:00:00', 1),
(22029, 24267, 140, 4, 0, 'Gaurav has to decide', 154, '0000-00-00 00:00:00', 1),
(22030, 24267, 29, 7, 3, 'porrselvan team, have given incre if completed the said number, refer resume, or arun pls update in system', 140, '2025-02-24 05:34:28', 1),
(22031, 24275, 74, 5, 0, 'not suite for team', 104, '0000-00-00 00:00:00', 1),
(22032, 24268, 149, 7, 0, 'candidate was good at communication and he was interested in sales and will join by next month start ', 153, '0000-00-00 00:00:00', 1),
(22033, 24272, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22034, 24272, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22035, 24270, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22036, 24260, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION AND INTERESTED IN SALES HAVE WORK EXPERIENCE AND ALSO HAVE BIKE HE TOLD HE WILL JOIN BY NXT MONTH START WILL PROVIDE 17K AS SALARY', 153, '0000-00-00 00:00:00', 1),
(22037, 24273, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22038, 24279, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22039, 24274, 109, 5, 0, 'He was thinking about the sales pressure', 153, '0000-00-00 00:00:00', 1),
(22040, 24281, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22041, 24283, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22042, 24271, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22043, 24260, 59, 3, 0, 'Communication Ok Can give a try and check in training period ', 149, '2025-02-25 03:23:02', 1),
(22044, 24268, 59, 3, 0, 'Communication Ok Career Gap need to train from scratch can give a try and check in training', 149, '2025-02-25 03:27:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(22045, 24284, 138, 4, 0, 'Experience in sales and good communicatin skills and calm attitude mathematics skills fine over all hardworker so selected next round', 154, '0000-00-00 00:00:00', 1),
(22046, 24284, 18, 8, 0, 'reschedule', 138, '2025-02-25 05:07:25', 1),
(22047, 24285, 57, 7, 0, 'candidate is ok, 1.5yrs exp, communication is ok, pls cross check, kindly confirm the joining date xxamp salary', 153, '0000-00-00 00:00:00', 1),
(22048, 24289, 109, 5, 0, 'He will not suitable for sales, he pursuing IT course', 153, '0000-00-00 00:00:00', 1),
(22049, 24290, 109, 5, 0, 'He will not suitable for sales, he pursuing IT course', 153, '0000-00-00 00:00:00', 1),
(22050, 24293, 105, 5, 0, 'candidate communication and performance is little bit good.but he very slow and voice is very low.sustainable is doubt', 153, '0000-00-00 00:00:00', 1),
(22051, 24294, 149, 5, 0, 'CANDIDATE WAS NOT CONFIDENT IN COMMUNICATION AND STABILITY WAS NOT SURE', 153, '0000-00-00 00:00:00', 1),
(22052, 24301, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22053, 24300, 137, 7, 0, 'candidate communication and vocie good , past mobile insurance workin, timing reason to relaving so try for 7 days training period, and exp salary for 15 to 16k', 153, '0000-00-00 00:00:00', 1),
(22054, 24295, 109, 5, 0, 'He wil not willing to take calls in own mobile', 153, '0000-00-00 00:00:00', 1),
(22055, 24292, 138, 5, 0, 'The candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', 153, '0000-00-00 00:00:00', 1),
(22056, 22015, 109, 5, 0, 'Had Good Communication but due to college timings and project date she canxquott join', 109, '2025-02-26 03:45:16', 1),
(22057, 22650, 109, 5, 0, 'will not suit for Recruiter communication is not good', 109, '2025-02-26 03:45:42', 1),
(22058, 24296, 147, 4, 0, 'very good communication , currently serving notice period of 30 days and salary in hand 17k', 104, '0000-00-00 00:00:00', 1),
(22059, 24285, 59, 3, 0, 'Communication Ok 5050 profile career gap due to accident can be trained in our roles and check in training', 57, '2025-02-26 04:14:49', 1),
(22060, 24267, 59, 3, 0, 'Communication Ok Previous attended and hold due to position hold now we have processed to the Porrselvam team', 29, '2025-02-26 06:02:21', 1),
(22061, 24296, 59, 3, 0, 'Communication Ok fresher for our roles can be trained in our roles need to check and confirm\n', 147, '2025-02-26 08:27:25', 1),
(22062, 24182, 59, 1, 0, NULL, 149, '2025-02-27 11:57:27', 1),
(22063, 24308, 149, 5, 0, 'cANDIDATE WAS NOT GOOD AT COMMUNICATION AND NOT ABLE TO EXPLAIN THEIR EXISTING WORK PROCESS AND PLAN NOT SUITABLE', 153, '0000-00-00 00:00:00', 1),
(22064, 24307, 149, 5, 0, 'candidate communication was not good and not even know their company process and work properly and not sure about stability', 153, '0000-00-00 00:00:00', 1),
(22065, 24280, 147, 5, 0, 'communication problem fresher 23k', 154, '0000-00-00 00:00:00', 1),
(22066, 24282, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(22067, 24297, 147, 5, 0, 'kannada not known', 154, '0000-00-00 00:00:00', 1),
(22068, 24310, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22069, 24311, 89, 7, 0, 'Average skill . if trained, she will improve. freshers salary i suggest.', 153, '0000-00-00 00:00:00', 1),
(22070, 24304, 138, 5, 0, 'Poor Communication Skills and Limited Technical Expertise...Lack of Problem-Solving Abilities and finally Unprepared and Disorganized so not fit for sales', 153, '0000-00-00 00:00:00', 1),
(22071, 24312, 105, 7, 0, 'candidate communication and performance is good ,but her distance is long will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22072, 24299, 57, 7, 0, 'Candidate is unfit for sales profile, she looking banking process related, reject the profile', 154, '0000-00-00 00:00:00', 1),
(22073, 24302, 149, 7, 0, 'communication was good and have interest in sales and also ok for immediate joining we shall give 15-16k as salary', 154, '0000-00-00 00:00:00', 1),
(22074, 24299, 59, 1, 0, NULL, 57, '2025-02-27 04:40:14', 1),
(22075, 24306, 147, 5, 0, 'salary expectation 17k in hand and do not have previous company payslips or relevant documents', 154, '0000-00-00 00:00:00', 1),
(22076, 24305, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(22077, 24321, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(22078, 24322, 74, 5, 0, 'unfit for team', 154, '0000-00-00 00:00:00', 1),
(22079, 24314, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22080, 24313, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22081, 24320, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(22082, 23746, 140, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22083, 24309, 109, 5, 0, 'Not suitable for sales team', 153, '0000-00-00 00:00:00', 1),
(22084, 24324, 30, 5, 1, 'dUE TO COMMUNICATION AND SKILLS', 104, '0000-00-00 00:00:00', 1),
(22085, 24217, 60, 1, 0, NULL, 30, '2025-02-28 01:00:14', 1),
(22086, 24330, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22087, 24318, 149, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22088, 24332, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22089, 24333, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22090, 24302, 59, 1, 0, NULL, 149, '2025-02-28 06:16:03', 1),
(22091, 24258, 59, 1, 0, NULL, 149, '2025-02-28 06:18:10', 1),
(22092, 24312, 59, 3, 0, 'Communication Ok Fresher for our roles career gap due to personal family issues need to check in training and confirm', 105, '2025-02-28 06:25:21', 1),
(22093, 24311, 59, 3, 0, 'Communication Ok Can be trained in our roles fresher should check in training and confirm', 89, '2025-02-28 06:37:13', 1),
(22094, 24339, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22095, 24338, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22096, 24343, 19, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22097, 24336, 149, 5, 0, 'candidate was not good at interview and not interested in sales and not suitable for our work', 154, '0000-00-00 00:00:00', 1),
(22098, 24349, 59, 3, 0, 'Rejoining Candidate Proper Relieving and joining again due to course delay ', 60, '0000-00-00 00:00:00', 1),
(22099, 24300, 59, 1, 0, NULL, 137, '2025-03-03 10:34:02', 1),
(22100, 24340, 57, 5, 0, 'Candidate is not suitable for sales profile, Lazy character, communication not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(22101, 24352, 57, 7, 0, 'Candidate is ok, communication good, 3 yrs experience, confirm joining date thanks', 153, '0000-00-00 00:00:00', 1),
(22102, 24353, 140, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22103, 24337, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22104, 24352, 59, 3, 0, 'Communication Ok Have exp in calling but not a sustainable one need to check in the training period and confirm', 57, '2025-03-03 03:22:52', 1),
(22105, 24355, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22106, 24357, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22107, 24341, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22108, 24354, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22109, 24365, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(22110, 24351, 30, 7, 3, 'selected for rm immediate joining ctc suggested 23k', 104, '0000-00-00 00:00:00', 1),
(22111, 24364, 140, 4, 0, 'Selected', 153, '0000-00-00 00:00:00', 1),
(22112, 24359, 140, 4, 0, 'Selected', 153, '0000-00-00 00:00:00', 1),
(22113, 24368, 105, 5, 0, 'candidate communication is little bit ok but his performance is not good also he have some health problem,then is is not ready to go outside calls', 153, '0000-00-00 00:00:00', 1),
(22114, 24369, 89, 5, 0, 'no basic skills', 153, '0000-00-00 00:00:00', 1),
(22115, 24351, 59, 3, 0, 'Communication Ok have exp in calling bbut nt insurance domain can be trained in ourrole and check', 30, '2025-03-04 12:39:29', 1),
(22116, 24184, 59, 1, 0, NULL, 30, '2025-03-04 12:41:11', 1),
(22117, 23082, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22118, 24372, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22119, 24367, 30, 7, 3, 'SELECTED FOR MUTUAL FUND RE SUGGESTED 23K \n', 154, '0000-00-00 00:00:00', 1),
(22120, 24345, 147, 5, 0, 'rejected low communication and no confidence', 154, '0000-00-00 00:00:00', 1),
(22121, 24344, 147, 5, 0, 'communication problem', 154, '0000-00-00 00:00:00', 1),
(22122, 24361, 105, 5, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS NOT GOOD ALSO HER SUSTIANABLE IS DOUBT AND HER VOICE IS VERY LOW', 154, '0000-00-00 00:00:00', 1),
(22123, 24382, 139, 5, 0, 'Not fit for RM role\nand FSC ', 153, '0000-00-00 00:00:00', 1),
(22124, 24377, 74, 7, 0, 'he is ok with the profile completed bsc maths and joined in a manufacturing company with 3 months experience and ready to join mba due to scholarship issue not joined and came to native work in a trust with 8k salary due to slary issue joined in allcec with 13k salary...now he is preparing sbi clearical post....and attend exam,,,,currently expected job in native...1 and have hour travel in train....expected 14k...imeedaite joining..have laptop kindly check and confirm', 153, '0000-00-00 00:00:00', 1),
(22125, 24384, 57, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22126, 24383, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22127, 24381, 74, 5, 0, 'not fit for telecalling', 154, '0000-00-00 00:00:00', 1),
(22128, 24387, 149, 5, 0, 'candidate was not good at communication and did not know about plan details and not sure about her stability', 153, '0000-00-00 00:00:00', 1),
(22129, 24386, 149, 5, 0, 'candidate was experienced but did not know about the product and have doubt about stability', 153, '0000-00-00 00:00:00', 1),
(22130, 24390, 137, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22131, 24392, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22132, 24389, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22133, 24395, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22134, 24403, 59, 5, 0, 'Given several false reasons for the gap not much serious to the job however thought of giving a try in the next round but he left without attending', 153, '0000-00-00 00:00:00', 1),
(22135, 24377, 59, 3, 0, 'Communication Ok Fresher for our roles have exp but not a sustainable can give a try and check in trainig\n\n', 74, '2025-03-07 03:39:51', 1),
(22136, 24219, 59, 1, 0, NULL, 149, '2025-03-07 06:35:50', 1),
(22137, 24407, 89, 7, 0, 'good skill. will analyis training days', 154, '0000-00-00 00:00:00', 1),
(22138, 24407, 89, 7, 0, 'good skill. will analyis training days', 154, '0000-00-00 00:00:00', 1),
(22139, 24406, 11, 4, 0, 'committed 24K gross\n20k Net ...gaurav sir decided ', 154, '0000-00-00 00:00:00', 1),
(22140, 24385, 149, 7, 0, 'candidate was ok with communication and interested in sales ', 154, '0000-00-00 00:00:00', 1),
(22141, 24409, 57, 4, 0, 'candidate is ok, fresher communication is ok , confirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(22142, 24408, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22143, 24405, 147, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22144, 24410, 57, 7, 0, 'Candidate is ok, 8 month sales experience and 1.5yrs non voice, communication is good, kindly confirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(22145, 24410, 59, 3, 0, 'Communication Ok have exp in calling can be trained in our domain have both voice and non voice exp', 57, '2025-03-08 02:03:12', 1),
(22146, 24409, 59, 3, 0, 'Communication Ok fresher for job need to train from scratch can give a try and check ', 57, '2025-03-08 02:04:09', 1),
(22147, 24407, 59, 3, 0, 'Communication ok fresher for our roles need to check in training and confirm ', 89, '2025-03-08 04:37:13', 1),
(22148, 24414, 59, 5, 0, 'Communication Average Sutaibility for our roles is less pressure handling doubts not suitable', 154, '0000-00-00 00:00:00', 1),
(22149, 24415, 155, 5, 0, 'giving only one word answer. having medical concerns and expecting high salary.', 154, '0000-00-00 00:00:00', 1),
(22150, 24421, 74, 5, 0, 'not fit for team,, all the confirmation depends on parents only..', 154, '0000-00-00 00:00:00', 1),
(22151, 24422, 74, 5, 0, 'not fit....have no maturity', 154, '0000-00-00 00:00:00', 1),
(22152, 24417, 57, 7, 0, 'Candidate is ok , communication good , pls check sustainability. confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(22153, 24418, 59, 5, 0, 'Communication no suitable for our roles will not sustain and handle pressure', 153, '0000-00-00 00:00:00', 1),
(22154, 24419, 59, 5, 0, 'Communication no suitable for our roles will not sustain and handle pressure need to open up a lot', 153, '0000-00-00 00:00:00', 1),
(22155, 24423, 89, 7, 0, 'selected. good skill. training days willl analysis . but joining april', 153, '0000-00-00 00:00:00', 1),
(22156, 24424, 149, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22157, 24424, 149, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22158, 24420, 147, 5, 0, 'salary expectation 25k fresher and communication problem', 154, '0000-00-00 00:00:00', 1),
(22159, 24427, 57, 7, 0, 'Candidate is ok, communication average, pls cross check Sustainability pls confirm salary and joining date', 154, '0000-00-00 00:00:00', 1),
(22160, 24417, 59, 3, 0, 'Communication Ok have exp but no documents can be trained in our roles need to check and confirm in the training', 57, '2025-03-11 04:59:03', 1),
(22161, 24423, 59, 1, 0, NULL, 89, '2025-03-12 11:51:40', 1),
(22162, 24436, 89, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22163, 24446, 59, 5, 0, 'Projecting himself a over active not clear with the communication voice clarity poor too long distance not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22164, 24447, 59, 5, 0, 'Full of stories School drop and not even clear with his education completed no sustainability with his previous exp not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22165, 24425, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22166, 24451, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22167, 24367, 60, 1, 0, NULL, 30, '2025-03-12 05:08:46', 1),
(22168, 24449, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22169, 24406, 59, 3, 0, 'Communication Ok Have exp in calling can be trained have all the previous exp documents\n', 11, '2025-03-12 06:27:22', 1),
(22170, 24456, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22171, 24464, 147, 5, 0, 'communication is not good and salary expectation is high fresher', 154, '0000-00-00 00:00:00', 1),
(22172, 24461, 140, 4, 0, 'Having Field Experience', 153, '0000-00-00 00:00:00', 1),
(22173, 24234, 57, 4, 0, 'Candidate is ok Overall 2.6 yrs exp 1.5 yrs golden Enterprises, 8m vizza, absconded, pls check sustainability. confirm the joining date xxamp Salary', 153, '0000-00-00 00:00:00', 1),
(22174, 24465, 149, 7, 0, 'candidate was ok with communication ,interested and experienced in sales but asking higher salary which was not ok as his standard so i suggest 17-18k as salary ', 153, '0000-00-00 00:00:00', 1),
(22175, 24234, 59, 3, 0, 'Communication Ok Have exp in calling relevant one can give a try and check in training', 57, '2025-03-13 12:13:56', 1),
(22176, 24463, 152, 5, 0, 'Asking for customer support role', 153, '0000-00-00 00:00:00', 1),
(22177, 24452, 152, 7, 0, 'Can through for MF Telecaller, ', 154, '0000-00-00 00:00:00', 1),
(22178, 24454, 105, 7, 0, 'candidate communication and performance is good 5050 profle but will check with him in the training period', 153, '0000-00-00 00:00:00', 1),
(22179, 24458, 57, 7, 0, 'Candidate is ok, communication tamil good, 6m bajaj loan, confirm the joining xxamp Salary,Thanks', 154, '0000-00-00 00:00:00', 1),
(22180, 24457, 89, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22181, 24359, 29, 1, 0, NULL, 140, '2025-03-13 03:47:44', 1),
(22182, 24364, 29, 1, 0, NULL, 140, '2025-03-13 03:48:06', 1),
(22183, 24466, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22184, 24458, 59, 1, 0, NULL, 57, '2025-03-13 04:31:56', 1),
(22185, 24461, 29, 7, 3, 'porrselvan', 140, '2025-03-13 05:46:13', 1),
(22186, 24465, 59, 3, 0, 'Communication Ok have exp for few months but not a relevant one can give a try and check in training ', 149, '2025-03-13 08:13:51', 1),
(22187, 24473, 57, 5, 0, 'Candidate is ok, communication not good, reject the profile', 153, '0000-00-00 00:00:00', 1),
(22188, 24472, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22189, 24470, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22190, 24427, 59, 3, 0, 'Communication ok can give a try and check in training', 57, '2025-03-14 07:36:17', 1),
(22191, 24385, 59, 1, 0, NULL, 149, '2025-03-15 02:54:35', 1),
(22192, 24478, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22193, 24454, 59, 3, 0, 'Communication Ok 2 months expin calling 5050 profile sustainability doubts a lot caN Give a try and check in training\n', 105, '2025-03-15 05:56:55', 1),
(22194, 24461, 59, 3, 0, 'Have exp can give a try with the commitment target 2L Life 10SIP 2Knet increase apr', 29, '2025-03-15 06:32:26', 1),
(22195, 24480, 57, 7, 0, 'Candidate is ok, communication good, 1yr exp in voice process, confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22196, 24482, 89, 7, 0, 'already experince at loan tele calling at 6 month. good skill , will analiys 7 days training', 153, '0000-00-00 00:00:00', 1),
(22197, 24481, 149, 5, 0, 'candidate was ok with communication but expectation of salary was more compare to her experience and not having existing company experience letter', 153, '0000-00-00 00:00:00', 1),
(22198, 24480, 59, 3, 0, 'Communciation Ok Good in projecting Very active candidate can be trained in our roles\n', 57, '2025-03-17 01:06:11', 1),
(22199, 24489, 105, 5, 0, 'candidate communication and performance is not good .aslo sustainable is doubt', 153, '0000-00-00 00:00:00', 1),
(22200, 24489, 105, 5, 0, 'candidate communication and performance is not good .aslo sustainable is doubt', 153, '0000-00-00 00:00:00', 1),
(22201, 24487, 139, 4, 0, 'Selected for next round \nHaving good communication skils\nWill try for RM profile ', 154, '0000-00-00 00:00:00', 1),
(22202, 24483, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22203, 24482, 59, 1, 0, NULL, 89, '2025-03-17 05:35:48', 1),
(22204, 24491, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(22205, 24494, 57, 7, 0, 'Candidate is ok ,communication good, over all 2.5 yrs Exp, but 5m only sales, so pls cross check sustainability and Pls confirm the joining date xxamp Salary', 153, '0000-00-00 00:00:00', 1),
(22206, 24490, 152, 2, 0, 'RNR', 153, '0000-00-00 00:00:00', 1),
(22207, 24494, 59, 1, 0, NULL, 57, '2025-03-18 12:54:12', 1),
(22208, 24499, 155, 5, 0, 'Looking for IT', 154, '0000-00-00 00:00:00', 1),
(22209, 24500, 155, 5, 0, 'previously worked in uS chat process for 1yr... giving only one word answer xxamp not comfortable working with targets', 154, '0000-00-00 00:00:00', 1),
(22210, 24496, 139, 5, 0, 'Dont have communication skill and fluent ', 154, '0000-00-00 00:00:00', 1),
(22211, 24498, 139, 4, 0, 'Selected for next round, could not able to reach her, fix time for final round to sriram sir ', 154, '0000-00-00 00:00:00', 1),
(22212, 24502, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22213, 24503, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22214, 24374, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22215, 24329, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22216, 24428, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22217, 24507, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22218, 24508, 57, 7, 0, 'Candidate is ok , freshers, negotiate the salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22219, 24509, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22220, 24510, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22221, 24497, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22222, 24508, 59, 3, 0, 'Communication Ok Fresher 5050 Sustainability doubt need to check in training and confirm', 57, '2025-03-19 04:02:26', 1),
(22223, 24498, 155, 5, 0, 'not comfort with the timing and long distance', 139, '2025-03-20 11:32:50', 1),
(22224, 24519, 57, 7, 0, 'Candidate is ok, Freshers, communication good, pls cross check sustainability, confirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(22225, 24517, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22226, 24521, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22227, 24524, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22228, 24514, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22229, 24516, 155, 5, 0, 'Communication not good ', 154, '0000-00-00 00:00:00', 1),
(22230, 24523, 155, 5, 0, 'voice too low... and looking for IT Also', 154, '0000-00-00 00:00:00', 1),
(22231, 24519, 59, 3, 0, 'Communication Good Can be trained in our roles will take a leave for exam inbetween can give a try and check', 57, '2025-03-20 02:44:12', 1),
(22232, 24527, 139, 5, 0, 'Not fit for FSC \nDont have communication skils ', 154, '0000-00-00 00:00:00', 1),
(22233, 24526, 30, 7, 3, 'immediate joining ctc as per company norms', 154, '0000-00-00 00:00:00', 1),
(22234, 24525, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22235, 24530, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22236, 24536, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22237, 24533, 147, 5, 0, 'looking for it job', 154, '0000-00-00 00:00:00', 1),
(22238, 24531, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22239, 24532, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22240, 24534, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22241, 24535, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22242, 24528, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22243, 24537, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22244, 24526, 60, 1, 0, NULL, 30, '2025-03-21 04:56:04', 1),
(22245, 24544, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22246, 24541, 109, 5, 0, 'Not suitable for our recruitment team', 104, '0000-00-00 00:00:00', 1),
(22247, 24543, 89, 7, 0, 'Communication Ok Process for 16.5K need to check in training', 154, '0000-00-00 00:00:00', 1),
(22248, 24543, 59, 3, 0, 'Communication Ok Fresher for our roles have few months exp but no relevant documents can check in training and confirm', 89, '2025-03-24 10:25:35', 1),
(22249, 24540, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22250, 24548, 105, 5, 0, 'Candidate Communication And Performance is little bit ok.but his sustainable is doubt also distance is long', 154, '0000-00-00 00:00:00', 1),
(22251, 24546, 149, 7, 0, 'candidate was good at communication and also experienced in sales and interested in earnings and will provide salary 14-15k and she will join by april start', 154, '0000-00-00 00:00:00', 1),
(22252, 24550, 29, 7, 3, 'porrselvan team, has given task for sal hike in 30 days if complted the task, ref resume for details', 154, '0000-00-00 00:00:00', 1),
(22253, 24547, 139, 5, 0, 'Dont have good communication skills \nNot fit for rm Profile ', 154, '0000-00-00 00:00:00', 1),
(22254, 24552, 74, 5, 0, 'NOT FIT FOR TEAM', 154, '0000-00-00 00:00:00', 1),
(22255, 24556, 155, 5, 0, 'looking for designing field only, not suit for sales and expecting high salary', 154, '0000-00-00 00:00:00', 1),
(22256, 24558, 155, 5, 0, 'communication not good and mainly looking job in designing field only and doing bsc comp in correspondence so plan for IT courses also.', 154, '0000-00-00 00:00:00', 1),
(22257, 24562, 74, 5, 0, 'NOT FIT FOR TELECALLING', 154, '0000-00-00 00:00:00', 1),
(22258, 24564, 57, 7, 0, 'Candidate is ok, communication xxamp product knowledge also good, over all 3yrs exp, FS Insurance, salary exp 20k above, but she was abscond, so negotiate the salary. field work also willing,kindly confirm the salary and joining date too. team reference', 154, '0000-00-00 00:00:00', 1),
(22259, 24561, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22260, 24563, 137, 7, 0, 'candidate communication and skill is good , past exp also vocie processing , money needed person , so try for 7 days training period', 154, '0000-00-00 00:00:00', 1),
(22261, 24564, 59, 3, 0, 'communication Ok have exp in relevant sales can give a try and check in training', 57, '2025-03-25 12:26:00', 1),
(22262, 24555, 152, 7, 0, 'Selected for tele caller', 154, '0000-00-00 00:00:00', 1),
(22263, 24563, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 137, '2025-03-25 12:55:08', 1),
(22264, 24566, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22265, 24568, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22266, 24567, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22267, 24554, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22268, 24570, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22269, 24546, 59, 1, 0, NULL, 149, '2025-03-25 07:00:26', 1),
(22270, 24560, 147, 5, 0, 'communication problem ', 154, '0000-00-00 00:00:00', 1),
(22271, 24559, 147, 7, 0, 'good communication skill fresher 14k in hand ', 154, '0000-00-00 00:00:00', 1),
(22272, 24565, 147, 5, 0, 'looking for 23k salary not looking for rm ', 154, '0000-00-00 00:00:00', 1),
(22273, 24571, 74, 7, 0, 'he is ok with the profile completed BE in madurai....doing part time maths tution in madurai....while studying....after college completion joining hexa ware 10 months experience.....( due to partiality in ABM promotion with TL ) quit the job...........father worked in chennai govt driver 20k only salary.....brother 10th std only.... home 1 km from office....studying revenue and group 2 govt exam......have no laptop ready to arranged.....expected 20k....past company 17.5 k....take home...imeediate joining......next month sister marriage need 10days leave.....kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22274, 24572, 137, 7, 0, 'candidate communication and skill good , just 2 month exp for star health tele sales in 2021 and after see our own business, so try for 7 days training period , exp salary is 15 to 16k ', 154, '0000-00-00 00:00:00', 1),
(22275, 24571, 59, 1, 0, NULL, 74, '2025-03-26 11:15:59', 1),
(22276, 24557, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22277, 24573, 139, 5, 0, 'Not fit for RM profile ', 154, '0000-00-00 00:00:00', 1),
(22278, 24487, 18, 8, 0, 'reschedule', 139, '2025-03-26 02:42:56', 1),
(22279, 24574, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22280, 24575, 139, 4, 0, 'SELECTED FOR CALLER \nHaving good communication skill and convincing skill\nwill try for caller ', 154, '0000-00-00 00:00:00', 1),
(22281, 24572, 59, 3, 0, 'Communication Ok Can be trained in our roles Need to check in training and confirm', 137, '2025-03-27 11:20:18', 1),
(22282, 24579, 149, 7, 0, 'candidate was having good communication and interested in sales and experience and we shall provide 16k as salary and joining april starting', 154, '0000-00-00 00:00:00', 1),
(22283, 24577, 147, 5, 0, 'looking for temporary time period', 154, '0000-00-00 00:00:00', 1),
(22284, 24581, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22285, 24578, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22286, 24452, 59, 3, 0, '5050 Try for FSC need to train from scratch check and confirm in training', 152, '2025-03-27 03:27:34', 1),
(22287, 24555, 59, 3, 0, 'Communication Ok fresher for our roles career gap can be trained in our roles hired for FSC', 152, '2025-03-27 03:27:57', 1),
(22288, 24575, 18, 7, 0, 'Shorlisted as FSE for Gnanshekar team. Please negotiate the salary and can join on 10th April', 139, '2025-03-27 07:51:50', 1),
(22289, 24582, 155, 5, 0, 'Looking for tam lead position.. salary exp high... sustainability issue....', 154, '0000-00-00 00:00:00', 1),
(22290, 24575, 60, 1, 0, NULL, 18, '2025-03-29 12:14:36', 1),
(22291, 24584, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22292, 24586, 152, 7, 0, 'Shortlisted for FSC', 154, '0000-00-00 00:00:00', 1),
(22293, 24587, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22294, 24588, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22295, 24585, 59, 3, 0, 'First 1 month intern with 5K stipend and based on performance will go for employment', 154, '0000-00-00 00:00:00', 1),
(22296, 24589, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22297, 24590, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22298, 24591, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22299, 24579, 59, 3, 0, 'Communication Ok no sustainability in his previous can be trained and check in training ', 149, '2025-03-29 04:14:38', 1),
(22300, 24595, 137, 7, 0, 'candidate communication and vocie is good , money needed person , so try for 7 days training and exp salary for 14 to 16 k', 154, '0000-00-00 00:00:00', 1),
(22301, 24600, 149, 5, 0, 'candidate was ok with communication but with his expectation of salary was more and not sure about his stability', 154, '0000-00-00 00:00:00', 1),
(22302, 24596, 139, 7, 0, 'Selected for RM \nHaving good communication skill, and confident proceed further for joining ', 154, '0000-00-00 00:00:00', 1),
(22303, 24594, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22304, 24597, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22305, 24601, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22306, 24599, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22307, 24602, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22308, 24608, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22309, 24609, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22310, 24607, 149, 7, 0, 'candidate was good at communication and also interested in sales and have experience in terms of sales we shall provide 15-16k as salary but he will join by next month due to he was in notice period kindly check with joining ', 154, '0000-00-00 00:00:00', 1),
(22311, 24610, 57, 7, 0, 'Candidate is ok, confident level, Married women, 3yrs exp overall. 2kids there pls check Sustainability. pls confirm the joining date xxamp Salary ', 154, '0000-00-00 00:00:00', 1),
(22312, 24611, 57, 5, 0, 'candidate is unfit for the sales profile. very slow. reject the profile', 154, '0000-00-00 00:00:00', 1),
(22313, 24610, 59, 3, 0, 'Communication Ok fresher for our sales need to train from scractch can give a try and check', 57, '2025-04-01 01:13:16', 1),
(22314, 24613, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22315, 24617, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22316, 24615, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22317, 24614, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22318, 24616, 57, 5, 0, 'candidate is not suitable for sales profile. communication not good, not interested Appointmentxquots outside.reject the profile', 154, '0000-00-00 00:00:00', 1),
(22319, 24618, 105, 5, 0, 'Candidate performance and communication is little bit not good.also his voice I low and not talk much more. She will not handle pressure', 154, '0000-00-00 00:00:00', 1),
(22320, 24612, 105, 7, 0, 'Candidate Communication And performance is good.Will Check With Him inthe training Period ', 154, '0000-00-00 00:00:00', 1),
(22321, 24612, 60, 1, 0, NULL, 105, '2025-04-01 01:47:24', 1),
(22322, 24619, 57, 7, 0, 'Candidate is ok, fresher 50/50 will try to understand 7 days of Training period. give me a fresher salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22323, 24620, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22324, 24621, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22325, 24625, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22326, 24627, 105, 7, 0, 'candidate communication and performance is ok.but 5050 will checkwith him in the training period', 154, '0000-00-00 00:00:00', 1),
(22327, 24629, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22328, 24628, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22329, 24604, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22330, 24632, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22331, 24631, 57, 7, 0, 'candidate is ok, 3yrs experience in voice process, sales profile fresher, communication and confident level good, confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(22332, 24619, 59, 1, 0, NULL, 57, '2025-04-02 02:51:02', 1),
(22333, 24631, 59, 1, 0, NULL, 57, '2025-04-02 02:55:09', 1),
(22334, 24633, 59, 2, 0, 'Need time to confirm 5050 profile long constraint if he finds a room can give a try sustainability questions\n', 154, '0000-00-00 00:00:00', 1),
(22335, 24623, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22336, 24624, 59, 5, 0, 'Career Gap seems to confident and asked her to come for 2nd round post lunch but she didnt come', 154, '0000-00-00 00:00:00', 1),
(22337, 24626, 147, 5, 0, 'salary expectation 25k fresher', 154, '0000-00-00 00:00:00', 1),
(22338, 24636, 59, 5, 0, 'Long Distance Not clear with the communication will not sustain and handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(22339, 24635, 59, 5, 0, 'No Communication Career Gap not suitable for our roles will not sustain', 154, '0000-00-00 00:00:00', 1),
(22340, 19653, 59, 2, 0, 'Very active but childish long distance not open to relocate she is from maraimalai nagar 5050 try', 154, '0000-00-00 00:00:00', 1),
(22341, 24640, 74, 5, 0, 'not fit for telesales , have baby 1 year', 154, '0000-00-00 00:00:00', 1),
(22342, 24630, 74, 5, 0, 'intested in digital marketing only not suite', 154, '0000-00-00 00:00:00', 1),
(22343, 24642, 74, 7, 0, 'she is ok with the profile already worked in muthalagu gold loan 6 months due to salary issue and msc irregular she releived ....currently completed msc and expecting sales and finance only...not intrested in teaching...completed bsc and msc...studied banking also.....previous company 9 to 10k only slary.....father conductor...govt salary 50k....2 elder sister 1 sister married another sister currently engaged....immediate joining office 3km only ...expected 13 to 15k...have laptop...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22344, 24431, 59, 3, 0, 'Intern with employment 3.5yrs agreement agreed terms and conditions', 60, '0000-00-00 00:00:00', 1),
(22345, 24642, 59, 3, 0, 'Communication Ok have few months exp in calling can give a try and check in training ', 74, '2025-04-03 11:42:52', 1),
(22346, 24643, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22347, 24641, 155, 5, 0, 'already worked in core for 2 years.. Location far around 23 kms from office... communication average and salary expectation is high', 154, '0000-00-00 00:00:00', 1),
(22348, 24638, 155, 5, 0, 'already worked 3 years in non voice and chat process.. Looking for non voice process.. communication not good and very slow', 154, '0000-00-00 00:00:00', 1),
(22349, 24637, 59, 5, 0, 'Have exp in collections but have sustainability with her previous exp only 1 company solid exp she has recently married need to hold sfor some time and based on other profile can try', 154, '0000-00-00 00:00:00', 1),
(22350, 24639, 59, 2, 0, 'have exp in pharma only but communication Ok highest graducation is 10th only can give a try and check', 154, '0000-00-00 00:00:00', 1),
(22351, 24645, 59, 2, 0, '5050 profile fresher need to train from scratch getting married at the earliest currrent distance so long', 154, '0000-00-00 00:00:00', 1),
(22352, 24646, 59, 5, 0, 'Freshr for Telesales thinking a lot about the target will not sustain and handle our work roles\n', 154, '0000-00-00 00:00:00', 1),
(22353, 24647, 59, 5, 0, 'Not suitable for our sales roles ', 154, '0000-00-00 00:00:00', 1),
(22354, 24506, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22355, 24650, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22356, 24648, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22357, 24653, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22358, 24654, 59, 1, 0, NULL, 153, '0000-00-00 00:00:00', 1),
(22359, 24657, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22360, 24595, 59, 3, 0, 'Communication Ok Can be trained in our roles yet to complete her college can check in training', 137, '2025-04-07 10:07:46', 1),
(22361, 24550, 59, 3, 0, 'Communication Ok Can be trained in our roles commitment by gaurav sir - 2L plus 10K sip ok 3K', 29, '2025-04-07 10:18:10', 1),
(22362, 24596, 59, 3, 0, 'Communication Ok an be trained in our roles and check in training', 139, '2025-04-07 10:22:07', 1),
(22363, 24644, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22364, 24659, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22365, 24661, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22366, 24665, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22367, 24669, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22368, 24674, 149, 7, 0, 'candidate was good at communication and interested in sales ,she was in need of job and we shall provide 15-16k as salary and will join by next week', 154, '0000-00-00 00:00:00', 1),
(22369, 24675, 155, 5, 0, 'COMMUNICATION NOT GOOD. GIVING ONLY ONE WORD ANSWER', 154, '0000-00-00 00:00:00', 1),
(22370, 24673, 155, 5, 0, 'COMMUNICATION NOT GOOD. GIVING ONLY ONE WORD ANSWER', 154, '0000-00-00 00:00:00', 1),
(22371, 24672, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22372, 24627, 59, 3, 0, 'Communication Ok fresher for our roles need to train from scratch can give a try and check', 105, '2025-04-08 11:34:05', 1),
(22373, 24671, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22374, 24677, 30, 7, 3, 'Suggested ctc 14k immediate joining', 154, '0000-00-00 00:00:00', 1),
(22375, 24677, 60, 1, 0, NULL, 30, '2025-04-08 12:15:35', 1),
(22376, 24622, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22377, 24559, 60, 1, 0, NULL, 147, '2025-04-08 12:50:00', 1),
(22378, 24684, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22379, 24687, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22380, 24685, 57, 7, 0, 'Candidate is ok, communication average, 2.5 yrs exp. 2 yrs In Field sales. confirm the salary and joining thanks', 154, '0000-00-00 00:00:00', 1),
(22381, 24682, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22382, 24683, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22383, 24685, 59, 3, 0, 'Communication Ok fresher for our insurance sales have exp in real estate domain can give a try and check', 57, '2025-04-08 05:27:44', 1),
(22384, 24674, 59, 1, 0, NULL, 149, '2025-04-08 06:43:06', 1),
(22385, 24691, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22386, 24693, 57, 7, 0, 'Candidate is ok, communication good, 7month personal loan Experience, Pls check distance. Confirm the joining and salary', 154, '0000-00-00 00:00:00', 1),
(22387, 24694, 152, 7, 0, 'shortlisted for FSC immediate joining', 154, '0000-00-00 00:00:00', 1),
(22388, 24656, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22389, 24693, 59, 1, 0, NULL, 57, '2025-04-09 05:28:14', 1),
(22390, 24586, 59, 3, 0, 'Communication Ok have exp for few months in Shriram can give a try and check', 152, '2025-04-09 06:25:33', 1),
(22391, 24607, 59, 1, 0, NULL, 149, '2025-04-09 06:43:14', 1),
(22392, 24694, 59, 3, 0, 'Communication Ok Can be trained in our roles have exp in bank bazaar need to check in our process', 152, '2025-04-09 06:48:50', 1),
(22393, 24703, 139, 7, 0, 'Shortlisted for FSC\nimmediate joining \n', 154, '0000-00-00 00:00:00', 1),
(22394, 24702, 149, 7, 0, 'candidate was ok with communication and also interested and experienced in sales and she was also ok for immediate joining and we shall provide 16-17k as salary ', 154, '0000-00-00 00:00:00', 1),
(22395, 24701, 74, 7, 0, 'she is ok with the profile completed bE...and worked in school based back end job with 12k salary for 2yr..now the process shift to trichy so not able to move on....father sales man in dhatri solution 30k salary...rental house ...intrested in sales job...friends working in chennai kasa grand ....so she is intrested...family not allowed to chennai...know every thing target based and sales knowledge ...expected 15k have laptop...monday joining..kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22396, 24703, 60, 1, 0, NULL, 139, '2025-04-10 05:11:20', 1),
(22397, 24714, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22398, 24713, 57, 7, 0, 'Candidate is ok, communication good, pls check sustainability, freshers. confirm the salary and joining date thanks', 154, '0000-00-00 00:00:00', 1),
(22399, 24717, 152, 7, 0, 'Shortlisted for Caller', 154, '0000-00-00 00:00:00', 1),
(22400, 24713, 59, 3, 0, 'Communication Ok seems to be slow but can be trained in our roles and try', 57, '2025-04-11 01:11:04', 1),
(22401, 24702, 59, 1, 0, NULL, 149, '2025-04-12 11:05:21', 1),
(22402, 24720, 149, 7, 0, 'candidate was good at communication and have experience at sales and we shall provide at 15-16k as salary and also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22403, 24718, 155, 5, 0, 'giving only one word answer and communicatio not good', 154, '0000-00-00 00:00:00', 1),
(22404, 24709, 139, 5, 0, 'Not fit for FSC rold \n', 154, '0000-00-00 00:00:00', 1),
(22405, 24721, 57, 7, 0, 'Candidate is ok communication good, exp candidate \nConfirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(22406, 24723, 155, 5, 0, 'having exp of 1 year in teleperformance in sales bangalore. not comfortable with tamil speaking, Born and bought up bvangalore for father buisness come to chennai.. expecting kannada, hindi voice process.', 154, '0000-00-00 00:00:00', 1),
(22407, 24722, 155, 5, 0, 'communication not good, Looking for IT', 154, '0000-00-00 00:00:00', 1),
(22408, 24725, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22409, 24721, 59, 1, 0, NULL, 57, '2025-04-15 10:55:16', 1),
(22410, 24728, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22411, 24729, 59, 3, 0, 'Communication Ok have exp in happy calling can give a try and check in training final round gokul sir', 104, '0000-00-00 00:00:00', 1),
(22412, 24730, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22413, 24733, 74, 7, 0, 'she is ok with the profile completed BCOM-- first 6 month work in nalam agency in thanjavur brother business for 6 month..company will shift to kumbakonam so left the job and joined in mallika furniture for 1 year,,,due to timing issured need to releived the job...father passed out...mother oly ....suganthi is the only care taker in family...expected 15k...have laptop and imeediate joining kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22414, 24735, 74, 7, 0, 'she is ok with the profile completed BA- MA - BED- currently passed out..ma and bed in partime....working in a sales executive 6 month in calliber sbi consultant 15k salary-- and joined in sbi as same role 12k salary due to salary issued relived in over all 9 month and joined in spandana sphoorty finanace 15k salary...worked in 8 month ...and releived due to bed training....intrested in govt exam and prepared...father farmer and sister work in chennai 16k salary and brother studied bA......travel time 1 and half hour from kumbakonam expected 15k have laptop imeediate joining...timing issue so doubt on this profile regarding sustainability kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22415, 24734, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(22416, 24731, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22417, 24720, 59, 1, 0, NULL, 149, '2025-04-16 01:05:33', 1),
(22418, 24739, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22419, 24736, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22420, 24738, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22421, 24732, 152, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(22422, 24740, 89, 7, 0, 'Average skill. We can try the sales field. Freshers salary I suggest ', 154, '0000-00-00 00:00:00', 1),
(22423, 24735, 59, 3, 0, 'Communication Ok have exp in calling not relevant one can give a try and check', 74, '2025-04-16 05:20:34', 1),
(22424, 24733, 59, 1, 0, NULL, 74, '2025-04-16 05:50:12', 1),
(22425, 24746, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22426, 24749, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22427, 24751, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22428, 24748, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22429, 24753, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22430, 24752, 149, 5, 0, 'candidate was ok with communication but not ok with stability and she attend the interview in her existing company break hrs and will not sure about her stabiilty\n', 154, '0000-00-00 00:00:00', 1),
(22431, 24761, 74, 7, 0, 'she is ok with the profile completed mba in 2023- and joined as a hr in foxconn for 6 months and getting 15k salary due to travel to hostel and food releived from the job 6 months experience..and joined in a dream work finance solutions ...hdfc life sales have basic knowledge about insurance speak well 1 year experience releived in feb,,,sister marriage about to fix so she is ready to settle in thanjavur....home near by 1 km...from office...father sthabathi ...sister worked in kumaran hospital anasthesia expert 18k salary.....have own house and have two rental house over all 6 k from rental....ready to join on tuesday..have laptop...expected 15k...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22432, 24756, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22433, 24765, 74, 5, 0, 'unfit for telesales not performing well', 154, '0000-00-00 00:00:00', 1),
(22434, 24763, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(22435, 24759, 156, 7, 0, 'canditate is ok communication good fresher ... kindly confirm the salary and joining date ', 154, '0000-00-00 00:00:00', 1),
(22436, 24758, 89, 7, 0, 'good skill. will analiys 7 days training . \ni suggest freshers salary', 154, '0000-00-00 00:00:00', 1),
(22437, 24764, 74, 5, 0, 'not suite unfit for telesales', 154, '0000-00-00 00:00:00', 1),
(22438, 24755, 140, 7, 0, 'selected, refer to the resume for commitments.', 154, '0000-00-00 00:00:00', 1),
(22439, 24761, 59, 3, 0, 'Communication Ok Can be trained in our roles and check in training ', 74, '2025-04-18 12:38:32', 1),
(22440, 24701, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check and confirm', 74, '2025-04-18 12:43:10', 1),
(22441, 24747, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22442, 24766, 105, 7, 0, 'Candidate Communication And performance is good,but 5050 will check with him in the training Period ', 154, '0000-00-00 00:00:00', 1),
(22443, 24758, 59, 1, 0, NULL, 89, '2025-04-18 02:30:52', 1),
(22444, 24768, 155, 5, 0, 'Communication not good. very slow. Not fit for sales', 154, '0000-00-00 00:00:00', 1),
(22445, 24767, 155, 5, 0, 'Communication not good. Giving only one word answer. Not fir for sales', 154, '0000-00-00 00:00:00', 1),
(22446, 24755, 60, 1, 0, NULL, 140, '2025-04-19 11:39:43', 1),
(22447, 24759, 59, 1, 0, NULL, 156, '2025-04-19 11:41:55', 1),
(22448, 24772, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22449, 24775, 156, 7, 0, 'Candidate is ok, Communication average, 1.5 yrs experience loan tele sales. 2month working vizza insurance, pls cross check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(22450, 24771, 156, 7, 0, 'Candidate is ok, Communication average, exp in loan department. pls confim the salary and joining date.', 154, '0000-00-00 00:00:00', 1),
(22451, 24773, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22452, 24776, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22453, 24774, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22454, 24777, 149, 7, 0, 'candidate was ok with communication have interested in sales and job needed person we shall provide 15-16k as salary and ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22455, 24780, 89, 7, 0, 'good skill. alredy axis bank loan experince 6 month. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22456, 24777, 59, 3, 0, 'Communication ok have exp for few months in calling can give a try and check in training', 149, '2025-04-19 02:39:29', 1),
(22457, 24779, 105, 7, 0, 'Candidate Communication And performance is Good Will check with her in the training Period ', 154, '0000-00-00 00:00:00', 1),
(22458, 24778, 89, 5, 0, 'no basic skill. and silent person . ', 154, '0000-00-00 00:00:00', 1),
(22459, 24771, 59, 3, 0, 'Communication Ok fresher for insurance sales have exp in loan sales can be trained in our roles', 156, '2025-04-19 03:36:21', 1),
(22460, 24775, 59, 1, 0, NULL, 156, '2025-04-19 03:37:31', 1),
(22461, 24780, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training', 89, '2025-04-19 03:45:08', 1),
(22462, 24784, 89, 7, 0, 'good cus handling skill . but salary expection high. my suggestion 18.5 k only', 154, '0000-00-00 00:00:00', 1),
(22463, 24781, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22464, 24784, 59, 1, 0, NULL, 89, '2025-04-19 05:36:21', 1),
(22465, 24754, 59, 3, 0, 'Communication Ok can be trained in our HR Roles Can give a try', 60, '0000-00-00 00:00:00', 1),
(22466, 24754, 59, 3, 0, 'Communication Ok can be trained in our HR Roles Can give a try', 154, '0000-00-00 00:00:00', 1),
(22467, 24779, 59, 3, 0, 'Communication Ok have exp in calling can be trained in our roles need to check in training and confirm', 105, '2025-04-19 07:44:00', 1),
(22468, 24766, 59, 1, 0, NULL, 105, '2025-04-19 07:44:56', 1),
(22469, 24785, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22470, 24790, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22471, 24740, 59, 3, 0, 'communication ok can be trained in our roles need to check in training and confirm', 89, '2025-04-21 10:43:55', 1),
(22472, 24717, 59, 3, 0, 'Communication Ok Need to train from Scratch have exp in teaching ', 152, '2025-04-21 11:04:16', 1),
(22473, 24788, 137, 5, 0, 'not proper communication skill ', 154, '0000-00-00 00:00:00', 1),
(22474, 24787, 57, 7, 0, 'Candidate is ok, communication good, Pls cross check sustainability because he Interested in movie direction and writing. kindly confirm the joining date xxamp Salary,.', 154, '0000-00-00 00:00:00', 1),
(22475, 24796, 156, 7, 0, 'Candidate is ok, communication average. 3m tele sales. 6m medical billing. pls check sustainability, confirm joining date and do the needful', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(22476, 24795, 156, 7, 0, 'Candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(22477, 24797, 149, 7, 0, 'candidate was ok with communication and have experience in telecalling and interested in our profile and ok for immediate joining, we shall provide 16k as salary', 154, '0000-00-00 00:00:00', 1),
(22478, 24793, 140, 5, 0, 'No convincing skills xxamp higher expectation...\n', 154, '0000-00-00 00:00:00', 1),
(22479, 24794, 140, 7, 0, 'Shortlisted by gaurav, without any commitment', 154, '0000-00-00 00:00:00', 1),
(22480, 24798, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22481, 24798, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22482, 24795, 59, 3, 0, 'Communication Ok Fresher for our sales profiles job fair employee need to train a lot Should check in training and confirm', 156, '2025-04-21 02:56:12', 1),
(22483, 24796, 59, 3, 0, 'Communication Ok Fresher for our roles can be trained will check in training and confirm', 156, '2025-04-21 02:58:46', 1),
(22484, 24782, 59, 2, 0, 'Looking only for queries handling not open for upsales and calling will not sustain and handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(22485, 24786, 59, 4, 0, '5050 profile communication average have exp in home loan HDFC but exp seems to be more look and let me know your interest', 154, '0000-00-00 00:00:00', 1),
(22486, 24792, 59, 5, 0, 'Communication Low long gap in speaking will not sustain and not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22487, 24787, 59, 3, 0, 'Communication Ok fresher for our roles can be trained in our roles and check in training', 57, '2025-04-21 04:11:18', 1),
(22488, 24797, 59, 3, 0, 'Communication ok have exp in calling can be trained in our roles came for chennai and selected for rajasekar but moved to thanjavur', 149, '2025-04-21 04:43:53', 1),
(22489, 24783, 140, 7, 0, 'Shortlisted by gaurav, without any commitment', 154, '0000-00-00 00:00:00', 1),
(22490, 24794, 60, 1, 0, NULL, 140, '2025-04-22 09:55:16', 1),
(22491, 24783, 60, 1, 0, NULL, 140, '2025-04-22 09:56:05', 1),
(22492, 24803, 59, 5, 0, 'Not suits for our role will not handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(22493, 24812, 74, 5, 0, 'NOT FIT FOR SALES', 154, '0000-00-00 00:00:00', 1),
(22494, 24804, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22495, 24811, 57, 5, 0, 'candidate is not suitable sales field. Sounds not good, reject the profile,, Salary high expectations, thanks', 154, '0000-00-00 00:00:00', 1),
(22496, 24806, 59, 5, 0, 'communication average need to open up a lot Will not sustain in our profile', 154, '0000-00-00 00:00:00', 1),
(22497, 24819, 74, 7, 0, 'he is ok with the profile , completed diploma in nagapattinam...father passed...worked in oppo sales promoter 1 yr experience due salary issue releived to samsung as a sales promoter 4 months ....due to family issue move to thirupur and woked as a accounts admin , now he wants to settle in tanjavur...sister settle in thanjavur...so ready to move on....2 years after marriage....age 22 .....expected 15 to 18k have laptop,,,joining next week,,,kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22498, 24809, 74, 5, 0, 'Not suite for team, unfi for sales', 154, '0000-00-00 00:00:00', 1),
(22499, 24818, 149, 2, 0, 'candidate was ok with communication and interested in sales and incentives but not sure about stability and would like to confirm again', 154, '0000-00-00 00:00:00', 1),
(22500, 24816, 149, 5, 0, 'candidate was not good at communication not having any experiences and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(22501, 24814, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22502, 24815, 149, 7, 0, 'candidate was good at communication interested in sales and ok for immediate joining and we shall provide 16k as salary ', 154, '0000-00-00 00:00:00', 1),
(22503, 24786, 139, 5, 0, 'Not interested work in MF team \nhe willing to work in Health biz', 59, '2025-04-22 04:56:26', 1),
(22504, 24819, 59, 3, 0, 'Need to check and confirm after training period.', 74, '2025-04-22 06:50:11', 1),
(22505, 24815, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 149, '2025-04-22 06:56:53', 1),
(22506, 24824, 74, 7, 0, 'he is ok with the profile..completed diploma and worked as a business development executive in selfmade ecom for 1 year 15k salary...and worked in a b2b process in coimbatore 1 year experience .....due to family mother health issue looking for job in thanjavur....speak little much kindly cross check .....have no laptop ready to arrange expected 18 to 20k...', 154, '0000-00-00 00:00:00', 1),
(22507, 24828, 74, 7, 0, 'he is ok with the profile completed bsc visual comunication and doing marriage photography...2 years and doing water cane business 1 year...and joined in l and t solution for 1 year..due to accident not performing well and releived ....father in foreign earned 15k only brother work in petrol bunk....expected 15k and have laptop immedaite joining kindly cross check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22508, 24827, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22509, 24829, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22510, 24830, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22511, 24813, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22512, 24831, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22513, 24823, 155, 5, 0, 'not fit for sales, Looking for IT', 154, '0000-00-00 00:00:00', 1),
(22514, 24832, 89, 7, 0, 'Good skill. already 4 month experince loan . existing there is an ernia problem . but currnt now good health so check', 154, '0000-00-00 00:00:00', 1),
(22515, 24826, 156, 7, 0, 'Candidate is ok, communication average. 1 year vizza health insurance and 3 months JSJ groups of life insurance company. pls check sustainability, kindly confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22516, 24833, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22517, 24832, 59, 3, 0, 'Communication Ok have 6 months exp in sales calling can be trained in our roles will check intraining and confirm', 89, '2025-04-23 03:14:10', 1),
(22518, 24826, 59, 3, 0, '`Have Exp in Vizzza for an year next company only for 3 months Communication Ok can give a try and check in training', 156, '2025-04-23 04:13:45', 1),
(22519, 24840, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22520, 24791, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22521, 24824, 59, 3, 0, 'Communication ok need to check in training and confirm sustainability doubts over confidence let us try ', 74, '2025-04-23 06:15:24', 1),
(22522, 24828, 59, 3, 0, 'Communication Ok have exp in loan calls can be trained and check in training period', 74, '2025-04-23 06:17:56', 1),
(22523, 24842, 74, 5, 0, 'NOT SUITE', 154, '0000-00-00 00:00:00', 1),
(22524, 24820, 74, 7, 0, 'he is ok with the profile...completed bca,,,,,,,fresher,,,,,,,father passed 8 yr back..........two sisters studied ...rental house ....he is doing ekart and zomato delivery for family crises...expected 15k..ready to arrange laptop..home 3km only....joining exam may 10...need to shift home so not confirmed kindly cross check', 154, '0000-00-00 00:00:00', 1),
(22525, 24841, 59, 2, 0, '5050 Long distance need to open up a lot given time to decide on this job if she comes back should try and confirm', 154, '0000-00-00 00:00:00', 1),
(22526, 24846, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(22527, 24843, 59, 5, 0, 'Long Career Gap in between age around 29 years have exp in calling but not in relevant sales profile pressure handling in our insurance roles is tough ', 154, '0000-00-00 00:00:00', 1),
(22528, 24845, 59, 5, 0, 'Not open for voice much looking for non voice process need to open up a lot will not sustain in our roles', 154, '0000-00-00 00:00:00', 1),
(22529, 24844, 149, 7, 0, 'Candidate Was Ok With Communication And Have Experience In Vizza And Interested In Sales And We Shall Provide 14-15k As Salary And She Was Ok For Immediate Joining', 154, '0000-00-00 00:00:00', 1),
(22530, 24847, 74, 5, 0, 'not fit for job', 154, '0000-00-00 00:00:00', 1),
(22531, 24820, 59, 3, 0, 'communication Ok Can be trained in our roles and check in training', 74, '2025-04-24 03:10:09', 1),
(22532, 24844, 59, 1, 0, NULL, 149, '2025-04-24 07:07:11', 1),
(22533, 24852, 74, 7, 0, 'She is ok with the profile, completed bcom,,father passed, mother doing batter business...stay in uncle house..elder sister doing BE and brother doing BE,,fresher,,,expected 15k ..ready to arrange laptop...monday joining kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22534, 24853, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22535, 24852, 59, 2, 0, 'She need time to confirm not much open to go with the targets ', 74, '2025-04-25 06:22:50', 1),
(22536, 24850, 158, 5, 0, 'Communication is not good rejected by satish sir', 104, '0000-00-00 00:00:00', 1),
(22537, 24856, 74, 7, 0, 'she is ok with the profile completed bca 2025 fresher..father farmer brother worked in IT 15k salary....she expected 12 to 13k...from orathanadu half hour travel...have laptop imediate ....may 10 exam completed after joining', 154, '0000-00-00 00:00:00', 1),
(22538, 24744, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22539, 24855, 30, 7, 3, 'Arun cross check previous ctc with the documents based on we can decide for Dm or FSC ', 104, '0000-00-00 00:00:00', 1),
(22540, 24855, 60, 1, 0, NULL, 30, '2025-04-26 12:14:55', 1),
(22541, 24858, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22542, 24857, 57, 7, 0, 'Candidate is ok, communication good, Observation skills good, pls provide Freshers Salary and Confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22543, 24810, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22544, 24857, 59, 3, 0, 'Communication Good Fresher for our roles future FIL in star Health insurance Need to focus on data need to check in training and confirm', 57, '2025-04-26 01:26:29', 1),
(22545, 24856, 59, 3, 0, 'Communication Ok Fresher need ta train from scratch and confirm in training', 74, '2025-04-26 04:28:59', 1),
(22546, 24861, 156, 7, 0, 'candidate is ok , communication average , 1 year experience Poorvika Mobiles Customer Care pls check sustainability , kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22547, 24861, 59, 3, 0, 'Communication Ok can be trained in our roles need to check and confirm', 156, '2025-04-28 11:01:07', 1),
(22548, 24859, 139, 5, 0, 'Not fit for FSC role\n ', 154, '0000-00-00 00:00:00', 1),
(22549, 24867, 149, 7, 0, 'candidate was good at communication and experienced in sales and also ok for immediate joining and we shall give 17k as salary', 154, '0000-00-00 00:00:00', 1),
(22550, 24864, 59, 5, 0, 'Communication Ok but slang not much comfort also no convincing understanding is not much good will not hnadle our work pressure he is completely into field ', 154, '0000-00-00 00:00:00', 1),
(22551, 24865, 59, 5, 0, 'Communication No not suitable for sales calling he much open for non voice only', 154, '0000-00-00 00:00:00', 1),
(22552, 24849, 59, 5, 0, 'Communication not clear have exp in non voice no graduation pressure handling doubts in our roles not suitable', 154, '0000-00-00 00:00:00', 1),
(22553, 24866, 59, 5, 0, 'Too long Distance up down 72 kms 2026 passing graduate will not sustain in our role also timing is not much comfort for him', 154, '0000-00-00 00:00:00', 1),
(22554, 24868, 59, 5, 0, 'Communication Average Left the initial job only due to pressure and target also not much comfort in sales time being he is trying in this profile', 154, '0000-00-00 00:00:00', 1),
(22555, 24869, 59, 2, 0, 'Communication Avearge need to check for Thanjavur location let us interview and confirm', 154, '0000-00-00 00:00:00', 1),
(22556, 24862, 109, 5, 0, 'Not suitable for our recruitment team', 154, '0000-00-00 00:00:00', 1),
(22557, 19843, 152, 2, 0, 'On hold ', 154, '0000-00-00 00:00:00', 1),
(22558, 24872, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22559, 24867, 59, 3, 0, 'Communication Ok Hav exp in Vizza fr 10 months can be trained in our roles already friend is working in syed team from same company Let us try in training an confirm', 149, '2025-04-28 07:31:51', 1),
(22560, 24879, 74, 7, 0, 'she is ok with the profile completed bE....Have basic experience in telecalling 2 months bright solutions for google web site sales...father farmer ..travel time half hour..salary 12to 15k kindly check once and confirm imeediate joining', 154, '0000-00-00 00:00:00', 1),
(22561, 24863, 139, 5, 0, 'Not fit for FSC \n', 154, '0000-00-00 00:00:00', 1),
(22562, 24877, 139, 7, 0, 'Shortlisted for FSC\nHaving good communication skill and sales skills as well\nPackage need to be discuss\nWill give 18k Take home ', 154, '0000-00-00 00:00:00', 1),
(22563, 24880, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22564, 24881, 149, 5, 0, 'candidate was not good at communication and not even trying to talk and will not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(22565, 24878, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22566, 24870, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22567, 24877, 60, 1, 0, NULL, 139, '2025-04-29 01:02:58', 1),
(22568, 24883, 105, 7, 0, 'candidate communication and performance is ok.but 5050 profile voice little but low.will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22569, 24887, 158, 5, 0, 'No proper Communication', 104, '0000-00-00 00:00:00', 1),
(22570, 24883, 59, 3, 0, 'Communication Ok Can be trained in our roles and check in training ', 105, '2025-04-29 02:09:29', 1),
(22571, 24891, 74, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(22572, 24889, 89, 7, 0, 'average skill. but speake boldly. will analysis 7 days training days.', 154, '0000-00-00 00:00:00', 1),
(22573, 24879, 59, 3, 0, 'Communication fresher for our sales calling need to check in training and confirm', 74, '2025-04-29 06:57:41', 1),
(22574, 24874, 74, 5, 0, 'Not suite for team', 154, '0000-00-00 00:00:00', 1),
(22575, 24894, 158, 4, 0, 'Candidate needs time ', 157, '0000-00-00 00:00:00', 1),
(22576, 24894, 157, 1, 0, NULL, 158, '2025-04-30 12:11:09', 1),
(22577, 24895, 155, 2, 0, 'need time to discuss with parents, Communication average, exp 19k, no proofs of working with previous company', 154, '0000-00-00 00:00:00', 1),
(22578, 24896, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22579, 24897, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22580, 24898, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22581, 24884, 156, 7, 0, 'Candidate is ok, communication good, confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(22582, 24899, 149, 5, 0, 'candidate was not ok with communication and not sure about stability ', 154, '0000-00-00 00:00:00', 1),
(22583, 24900, 155, 5, 0, 'not fit for our roles\n', 154, '0000-00-00 00:00:00', 1),
(22584, 24901, 155, 5, 0, 'not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(22585, 24902, 155, 5, 0, 'not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(22586, 24890, 149, 7, 0, 'candidate was having good communication and interested in sales and also ok for immediate joining and we shall try her in training days', 154, '0000-00-00 00:00:00', 1),
(22587, 24889, 59, 3, 0, 'Fresher Communication Ok Need to check in traiing and confirm ', 89, '2025-04-30 04:33:37', 1),
(22588, 24852, 59, 3, 0, 'Communication Ok Fresher sustainability doubts seems to much focus in non voice let us try in training', 59, '2025-04-30 07:22:36', 1),
(22589, 24890, 59, 3, 0, 'Selected for rajasekar team. ', 149, '2025-05-02 10:51:28', 1),
(22590, 24884, 59, 1, 0, NULL, 156, '2025-05-02 11:02:38', 1),
(22591, 24908, 74, 5, 0, 'NOT SUITE FOR TELESALES', 154, '0000-00-00 00:00:00', 1),
(22592, 24918, 74, 7, 0, 'she is ok with the profile completed bsc physics...6 month exerience in telecalling in college leave time and online....father catering business 20k earning...sister married and doing job in engg college recepetionist,,,,may 10 th semester completed have laptop.....home 45 mins travel....expected 15k kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(22593, 24914, 109, 5, 0, 'Not suitable for sales team', 154, '0000-00-00 00:00:00', 1),
(22594, 24918, 59, 3, 0, 'Communication Ok Fresher for our roles can be trained in our process and check in training', 74, '2025-05-02 04:43:07', 1),
(22595, 24905, 149, 7, 0, 'candidate was bold and good at communication and also job needed and ok for immediate joining', 104, '0000-00-00 00:00:00', 1),
(22596, 24915, 149, 7, 0, 'candidate was good at communication , interested in sales and incentives we shall provide 16 k as salary and ok for immediate joining', 104, '0000-00-00 00:00:00', 1),
(22597, 24903, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22598, 24904, 109, 5, 0, 'Not suitable for sales team', 104, '0000-00-00 00:00:00', 1),
(22599, 24916, 57, 7, 0, 'Candidate is ok , communication ok, fresher for sales profile, confirm the salary and joining date', 104, '0000-00-00 00:00:00', 1),
(22600, 24917, 109, 5, 0, 'Not suitable for our recruitment team', 104, '0000-00-00 00:00:00', 1),
(22601, 24919, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22602, 24916, 59, 3, 0, 'Communication Ok Energetic and talkative but not sure on our process should check in training and confirm\n', 57, '2025-05-03 11:38:08', 1),
(22603, 24915, 59, 3, 0, 'Communication Ok can be trained in our roles need to check in training and confirm', 149, '2025-05-03 04:04:06', 1),
(22604, 24905, 59, 1, 0, NULL, 149, '2025-05-03 04:10:25', 1),
(22605, 24922, 109, 5, 0, 'Not suitable for our recruitment team', 104, '0000-00-00 00:00:00', 1),
(22606, 24925, 74, 7, 0, 'She is ok with the profile completed bca final exam completed 10th may....father farmer 5 acre...sister work in bajjaj sales girl...orathanadu travel time 45 mins...friend also shortlisted already....expected 12 to 14k...ready to arrange laptop...may after 10th joining......expected to do mca in part time kindly check and confirm', 154, '0000-00-00 00:00:00', 1),
(22607, 24924, 139, 5, 0, 'Not fit for FSC', 104, '0000-00-00 00:00:00', 1),
(22608, 24928, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22609, 24931, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22610, 24925, 59, 3, 0, 'Communication Ok Fresher need to check in training and confirm', 74, '2025-05-05 07:05:51', 1),
(22611, 24927, 89, 7, 0, 'GOOD SKILL. but not fit sales filed. will analysis 7 days training days', 154, '0000-00-00 00:00:00', 1),
(22612, 24930, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22613, 24933, 149, 5, 0, 'Candidate was not at all good at communication and also not sure about his stability', 154, '0000-00-00 00:00:00', 1),
(22614, 24937, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22615, 24939, 74, 5, 0, 'unfit', 154, '0000-00-00 00:00:00', 1),
(22616, 24940, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(22617, 24932, 74, 5, 0, 'NOT FIT FOR TELESALES', 154, '0000-00-00 00:00:00', 1),
(22618, 24938, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22619, 24936, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22620, 24941, 89, 7, 0, 'good skill. experince at another filed. ', 154, '0000-00-00 00:00:00', 1),
(22621, 24935, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22622, 24942, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22623, 24943, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22624, 24945, 149, 7, 0, 'candidate was ok with communication and having interest in sales and incentive we shall give 15k as salary ', 154, '0000-00-00 00:00:00', 1),
(22625, 24946, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22626, 24927, 59, 1, 0, NULL, 89, '2025-05-06 06:22:46', 1),
(22627, 24941, 59, 1, 0, NULL, 89, '2025-05-06 06:23:38', 1),
(22628, 24947, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22629, 24929, 149, 5, 0, 'candidate was ok with communication but not at all good for sales and responding slowly like less intersted and also had ideas in sports related profession', 154, '0000-00-00 00:00:00', 1),
(22630, 24948, 89, 5, 0, 'long distance and no basic skills', 154, '0000-00-00 00:00:00', 1),
(22631, 24921, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22632, 24949, 104, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22633, 24951, 59, 5, 0, 'No clarity in work he is disabled and will suffer a lot to handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(22634, 24950, 140, 4, 0, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(22635, 24945, 59, 3, 0, 'Communication Ok Fresher need to check in training and confirm', 149, '2025-05-07 07:20:47', 1),
(22636, 24952, 74, 7, 0, 'he is ok with the profile completed btech...electrical auditing company in trycae industrial pvt...6 months 14k salary....and joined in pztmo electrical engineer posting with 14k salary....due to project closure releived and joined in byjus......bcoz of sister dead releived from the job...curently working in mobile sales ...and last 6 years worked in partime sales only....he required good job in sales only...father farmer..rental house only 8km travel from home....kindly cross check with partime job.....expected 15 to 16k...imeediate joining', 154, '0000-00-00 00:00:00', 1),
(22637, 24956, 74, 5, 0, 'NOT FIT FOR TEAM', 154, '0000-00-00 00:00:00', 1),
(22638, 24954, 74, 5, 0, 'NOT SUITE FOR TEAM AND EXPECTED HIGH', 154, '0000-00-00 00:00:00', 1),
(22639, 24953, 57, 5, 0, 'candidate is unfit for sales profile, lack of confidence, reject the profile', 154, '0000-00-00 00:00:00', 1),
(22640, 23780, 59, 3, 0, 'Communication Ok Need to check in training and confirm let us try', 156, '2025-05-08 12:45:12', 1),
(22641, 24944, 149, 5, 0, 'candidate was not so good at communication and also quite not interested in job and not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(22642, 24958, 140, 5, 0, 'nOT BOLD AND DOESNT FIT FOR SALES', 154, '0000-00-00 00:00:00', 1),
(22643, 24959, 149, 5, 0, 'candidate was not so good at communication ,slowly responding and also interested in other profession ', 154, '0000-00-00 00:00:00', 1),
(22644, 24957, 140, 4, 0, 'sELECTED BY GAURAV SIR ALSO', 154, '0000-00-00 00:00:00', 1),
(22645, 24957, 140, 4, 0, 'sELECTED BY GAURAV SIR ALSO', 154, '0000-00-00 00:00:00', 1),
(22646, 24952, 59, 3, 0, 'Communication Ok interested to learn in sales can give a try and check in training', 74, '2025-05-08 03:03:53', 1),
(22647, 24957, 59, 3, 0, 'Communication Ok Can be trained in our roles need to check in training and confirm', 140, '2025-05-08 04:11:35', 1),
(22648, 24963, 74, 7, 0, 'He Is Ok With The Profile....fresher...completed MBA...Marketing...Father Farmer...doing partime job in gaming centre...interested in sales only....Travel time 8km...have laptop and immediate Joining...kindly cross check once confirm', 154, '0000-00-00 00:00:00', 1),
(22649, 24965, 59, 5, 0, 'Looking much for non voice process xxamp Accounts', 154, '0000-00-00 00:00:00', 1),
(22650, 24966, 74, 5, 0, 'Not fit', 154, '0000-00-00 00:00:00', 1),
(22651, 24963, 59, 1, 0, NULL, 74, '2025-05-09 12:15:40', 1),
(22652, 24964, 89, 7, 0, 'she is fresher . will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22653, 24964, 59, 3, 0, 'Communication Ok Fresher let us train and check in the training period', 89, '2025-05-09 12:36:59', 1),
(22654, 24969, 59, 5, 0, 'worked in Retail sales no proper communication very lag will not sustain and not suitable', 154, '0000-00-00 00:00:00', 1),
(22655, 24970, 59, 5, 0, 'Attitude issues no sustainability in previous exp will not handle the pressure in our sales ', 154, '0000-00-00 00:00:00', 1),
(22656, 24972, 59, 5, 0, 'Looking for non voice process only', 154, '0000-00-00 00:00:00', 1),
(22657, 24967, 57, 5, 0, 'Candidate is not suitable for sales profile, Communication average, reject the profile...', 154, '0000-00-00 00:00:00', 1),
(22658, 24955, 140, 4, 0, 'Selcted for FSC', 154, '0000-00-00 00:00:00', 1),
(22659, 24961, 59, 3, 0, 'Fresher Communication Good Energetic let us try for Renewals 2yrs NDA', 154, '0000-00-00 00:00:00', 1),
(22660, 24971, 59, 5, 0, 'not open for Target much no clarity with her interest', 154, '0000-00-00 00:00:00', 1),
(22661, 23813, 59, 1, 0, NULL, 156, '2025-05-09 03:45:17', 1),
(22662, 24968, 11, 7, 0, 'she is selected for fse ..expected 14 to 16k', 154, '0000-00-00 00:00:00', 1),
(22663, 24975, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22664, 24980, 74, 5, 0, 'not fit for team,', 154, '0000-00-00 00:00:00', 1),
(22665, 23825, 74, 7, 0, 'she is ok with the profile..completed bsc in nagarkovil...due to family issue sell all the property and settle in thanjavur last one year...father fisherman in abroad....brother studied in sathyabama in chennai...plan to study in msc in hindustan coimbatore...1 sem completed due to family issue quit form studies and come to thanjavur....last 6 months work in tution centre for supoortive purpose only...currently expected job with 12 to 13k salary have laptop...immediate joining....5 km from home', 154, '0000-00-00 00:00:00', 1),
(22666, 24987, 105, 5, 0, 'candidate communication and performance is not good ,also her tamil lang is slightly problem.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(22667, 24982, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22668, 24986, 156, 7, 0, 'Candidate is ok, communication average.. Fresher, kindly confirm the salary xxamp Joining date', 154, '0000-00-00 00:00:00', 1),
(22669, 24981, 59, 5, 0, 'Communication Ok But sounds low pressure handling doubts a lot ', 154, '0000-00-00 00:00:00', 1),
(22670, 24989, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(22671, 24988, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(22672, 24985, 74, 5, 0, 'sustainability issue', 154, '0000-00-00 00:00:00', 1),
(22673, 24984, 74, 5, 0, 'not fit for sales', 154, '0000-00-00 00:00:00', 1),
(22674, 24976, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(22675, 24955, 60, 1, 0, NULL, 140, '2025-05-12 10:02:09', 1),
(22676, 24996, 74, 5, 0, 'not fit for telesales', 154, '0000-00-00 00:00:00', 1),
(22677, 24950, 60, 1, 0, NULL, 140, '2025-05-12 10:02:38', 1),
(22678, 24997, 74, 7, 0, 'she is ok with the profile completed - 25....native 10km from office mba in part time only....2023...joined in a vmr construction company telecalling 10k salary in trichy...due to salary issue relieved....and joined in vision properties sales ....in trichy..15k salary....and releived 6 month and joined in java python course in chennai for 6 months..due to mother health issue and finacial situtaion try to work in native....brother currently joined in engg in salem,,,,father driver and farmer..own house...have laptop...expected 14 to 15...immediate joining..kindly chek once and confirm', 154, '0000-00-00 00:00:00', 1),
(22679, 24978, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22680, 24998, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22681, 25002, 156, 5, 0, 'Candidate is not suitable for sales profile, lack of confidence, reject the profile', 154, '0000-00-00 00:00:00', 1),
(22682, 25000, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22683, 24992, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22684, 24994, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22685, 24953, 60, 1, 0, NULL, 139, '2025-05-12 03:02:58', 1),
(22686, 24953, 60, 1, 0, NULL, 139, '2025-05-12 03:09:40', 1),
(22687, 25006, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22688, 25008, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22689, 25007, 156, 7, 0, 'Candidate is ok, communication Is ok.. Fresher, kindly confirm the salary xxamp Joining date', 154, '0000-00-00 00:00:00', 1),
(22690, 25004, 149, 7, 0, 'candidate was good at communication and bold ,interested in sales and lets try her in first 7days of training period and we shall provide 13-14k as salary', 154, '0000-00-00 00:00:00', 1),
(22691, 24999, 74, 5, 0, 'not suite for sales', 154, '0000-00-00 00:00:00', 1),
(22692, 25009, 89, 5, 0, 'silent person ', 154, '0000-00-00 00:00:00', 1),
(22693, 24997, 59, 1, 0, NULL, 74, '2025-05-12 05:26:38', 1),
(22694, 23825, 59, 3, 0, 'Communication Ok Fresher for our roles need to train from scratch check in training and confirm', 74, '2025-05-12 05:34:29', 1),
(22695, 24986, 59, 3, 0, 'Communication Ok Can give a try and check in training ', 156, '2025-05-12 06:41:08', 1),
(22696, 25007, 59, 3, 0, 'Communication Ok fresher need to train from scratch willl check in training and confirm', 156, '2025-05-12 06:41:43', 1),
(22697, 24968, 60, 1, 0, NULL, 11, '2025-05-12 07:01:26', 1),
(22698, 25001, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22699, 25012, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22700, 25013, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22701, 25004, 59, 1, 0, NULL, 149, '2025-05-13 03:02:54', 1),
(22702, 25016, 156, 7, 0, 'candidate is ok, communication average. 9 months tele sales pls check sustainability . kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22703, 25019, 156, 7, 0, 'candidate is ok , communication average . 1 years 6 months tele sales . pls check sustainability , and confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22704, 25017, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22705, 25015, 11, 7, 0, 'candidate OK for FSC', 154, '0000-00-00 00:00:00', 1),
(22706, 25020, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22707, 25020, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22708, 25022, 149, 7, 0, 'candidate was ok with communication and having interest in sales and requirement and we shall provide 14k as salary and lets try in 7 days training', 154, '0000-00-00 00:00:00', 1),
(22709, 25027, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22710, 25026, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22711, 25021, 156, 7, 0, 'candidate is ok , communication average . provide the fresher salary . kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22712, 25010, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22713, 25023, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22714, 25018, 30, 7, 3, 'CONFIRM THE JOINING AND SUGGESTED CTC 18K FOR DM', 154, '0000-00-00 00:00:00', 1),
(22715, 25021, 59, 3, 0, 'Communication Ok fresher will check in training and confirm long run doubts in this profile', 156, '2025-05-13 06:37:04', 1),
(22716, 25022, 60, 1, 0, NULL, 149, '2025-05-13 07:36:21', 1),
(22717, 25018, 59, 1, 0, NULL, 30, '2025-05-14 12:25:18', 1),
(22718, 25032, 30, 7, 2, 'confirm the joining and suggested ctc 16k for dm', 154, '0000-00-00 00:00:00', 1),
(22719, 25031, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22720, 25034, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22721, 25033, 11, 7, 0, 'candidate selected for FSE', 154, '0000-00-00 00:00:00', 1),
(22722, 25030, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22723, 25033, 60, 1, 0, NULL, 11, '2025-05-14 04:13:10', 1),
(22724, 25015, 59, 3, 0, 'Selected for FSC Karthiks team, will check in Training period', 11, '2025-05-14 05:37:50', 1),
(22725, 25016, 59, 3, 0, 'Selected fror deshwaran team', 156, '2025-05-14 06:57:25', 1),
(22726, 25019, 59, 3, 0, 'Selected for deshwaran team. ', 156, '2025-05-14 06:59:46', 1),
(22727, 25035, 137, 7, 0, 'candiate communication and voice skill is very good , poor family background money needed person , after 2 years try for govt job , so try for 7 days training period , exp salary is 14 to 16 k ', 154, '0000-00-00 00:00:00', 1),
(22728, 25035, 59, 3, 0, 'Communication Ok Can be trained in our roles will check in training and confirm', 137, '2025-05-15 12:12:05', 1),
(22729, 25036, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22730, 25032, 60, 1, 0, NULL, 30, '2025-05-15 02:55:57', 1),
(22731, 25037, 156, 7, 0, 'candidate is ok. communication average , provide the fresher salary . kindly confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(22732, 25038, 89, 5, 0, 'not intersted this filed', 154, '0000-00-00 00:00:00', 1),
(22733, 25039, 149, 7, 0, 'CANDIDATE WAS CONFIDENT AND GOOD AT COMMUNCATION AND ALSO INTERESTED IN SALES WE SHALL PROVIDE SALARY 14-15K AND WILL JOIN AFTER 25TH OF THIS MONTH', 154, '0000-00-00 00:00:00', 1),
(22734, 25044, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22735, 25045, 156, 7, 0, 'candidate is ok, communication is good , 1 year 4 months raaj khosla co pvt ltd Process Executive. pls check the sustainability, kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22736, 25039, 60, 1, 0, NULL, 149, '2025-05-16 01:26:12', 1),
(22737, 25049, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22738, 25051, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22739, 25047, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22740, 25047, 156, 7, 0, 'Candidate is ok, Communication average. 1 years 11 months Sriram life insurance. Pls check sustainability, Kindly Confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(22741, 25042, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22742, 25048, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22743, 25037, 59, 3, 0, 'Communication Ok need to check in training and confirm', 156, '2025-05-17 11:58:15', 1),
(22744, 25054, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22745, 25055, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22746, 25056, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22747, 25057, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22748, 25058, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22749, 25059, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22750, 18195, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22751, 25061, 149, 7, 0, 'candidate was ok with communication in need of job and also interested in sales and suggested about 14k as salary and willing to join immediately', 154, '0000-00-00 00:00:00', 1),
(22752, 25062, 156, 7, 0, 'candidate is ok , communication average . Provide the fresher salary. and kindly confirm the joining date .', 154, '0000-00-00 00:00:00', 1),
(22753, 25061, 60, 1, 0, NULL, 149, '2025-05-20 11:13:41', 1),
(22754, 25060, 156, 7, 0, 'candidate is ok , communication average . Provide the fresher salary. and kindly confirm the joining date .', 154, '0000-00-00 00:00:00', 1),
(22755, 25064, 109, 5, 0, 'Rejected', 154, '0000-00-00 00:00:00', 1),
(22756, 25066, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22757, 25063, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22758, 25067, 109, 5, 0, 'Rejected for the reason too low communication.', 154, '0000-00-00 00:00:00', 1),
(22759, 25068, 109, 5, 0, 'Will not sustain for our role', 154, '0000-00-00 00:00:00', 1),
(22760, 25060, 59, 3, 0, 'Communication Ok can be trained in our roles need to check and confirm', 156, '2025-05-20 04:25:40', 1),
(22761, 25062, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and confirm', 156, '2025-05-20 04:26:21', 1),
(22762, 25075, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22763, 25041, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22764, 25080, 30, 7, 3, 'complete fresher suggested ctc 17k selected for FSC joining 1st of june', 104, '0000-00-00 00:00:00', 1),
(22765, 25070, 30, 7, 4, 'he will join monday or tuesday suggested ctc for 10 to 15% from the previous ctc selected for rm', 104, '0000-00-00 00:00:00', 1),
(22766, 25071, 105, 5, 0, 'candidate performance is little bit ok.but his communication is not good.also pronunciation of words is very low.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(22767, 25082, 156, 7, 0, 'Candidate is ok, communication good , 11 months experience Landmark insurance broker pls cross check the sustainability , and confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22768, 25080, 60, 1, 0, NULL, 30, '2025-05-22 10:42:38', 1),
(22769, 24750, 59, 5, 0, 'Average Communication Sales Pressue handling doubts Very high salary exp already got multiple offers and drop only for the salary ', 154, '0000-00-00 00:00:00', 1),
(22770, 25085, 156, 7, 0, 'candidate is ok, communication average , provide the fresher salary. kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22771, 25085, 156, 7, 0, 'candidate is ok, communication average , provide the fresher salary. kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22772, 25092, 59, 5, 0, 'Need to open up a lot will not sustain in our profile', 154, '0000-00-00 00:00:00', 1),
(22773, 25084, 59, 5, 0, 'Communication slow not much serious with the job roles not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22774, 25087, 59, 5, 0, 'Communication Ok Much focus for IT seems to give some stories sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(22775, 25093, 149, 7, 0, 'candidate was ok with communiction and in need of job but not sure about stability and need to verify about joining and shall provide 14k as salary', 154, '0000-00-00 00:00:00', 1),
(22776, 25094, 149, 5, 0, 'candidate was not at speaking and not so good at communication and not sure about stability', 154, '0000-00-00 00:00:00', 1),
(22777, 25090, 59, 2, 0, 'Look for renewal only communication Average long rn doubts no parents ', 154, '0000-00-00 00:00:00', 1),
(22778, 25088, 59, 5, 0, 'Too long distance focus in non voice', 154, '0000-00-00 00:00:00', 1),
(22779, 25096, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22780, 25082, 59, 1, 0, NULL, 156, '2025-05-22 07:19:10', 1),
(22781, 25085, 59, 3, 0, 'Fresher 5050 Profile seems to project himself not sure on sustainability let us try and check', 156, '2025-05-22 07:22:24', 1),
(22782, 25086, 156, 7, 0, 'candidate is ok, communication average , 1 year v care bpo role, pls check the sustainability. and confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(22783, 25097, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22784, 25105, 149, 7, 0, 'candidate was ok with communication ,no idea about sales interested in working lets try in 7days training time', 154, '0000-00-00 00:00:00', 1),
(22785, 25107, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22786, 25106, 18, 7, 0, 'Sathish Selected for Abdul Team. Immediate Joiner and can give 27k as take home…', 154, '0000-00-00 00:00:00', 1),
(22787, 25108, 18, 7, 0, 'Lakshmi Selected as FSE for Abdul Team... Immediate Joiner and can give 20k as take home…', 154, '0000-00-00 00:00:00', 1),
(22788, 25109, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22789, 25102, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22790, 25086, 59, 3, 0, 'Communication Ok fresher for our roles have exp in customer support need to check in training', 156, '2025-05-23 02:23:58', 1),
(22791, 25111, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22792, 25113, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22793, 25070, 60, 1, 0, NULL, 30, '2025-05-23 04:27:03', 1),
(22794, 25093, 60, 1, 0, NULL, 149, '2025-05-23 07:10:17', 1),
(22795, 25103, 105, 7, 0, 'candidate communication and performance is good.but her distance is long will check with her in the traing period.', 154, '0000-00-00 00:00:00', 1),
(22796, 25103, 59, 3, 0, 'Communication Good Fresher can be trained need to check in training and confirm', 105, '2025-05-24 12:05:37', 1),
(22797, 25116, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22798, 25117, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22799, 25083, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22800, 25119, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22801, 25118, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22802, 25110, 152, 4, 3, 'Selected for next round\n', 154, '0000-00-00 00:00:00', 1),
(22803, 25120, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22804, 25106, 60, 1, 0, NULL, 18, '2025-05-26 09:53:06', 1),
(22805, 25108, 60, 1, 0, NULL, 18, '2025-05-26 09:53:31', 1),
(22806, 25045, 59, 3, 0, 'Communication Ok Have exp Can give a try and check distance need to check and Long run too doubts in this profile', 156, '2025-05-26 10:22:35', 1),
(22807, 25105, 60, 1, 0, NULL, 149, '2025-05-26 10:58:11', 1),
(22808, 25123, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22809, 25124, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22810, 25125, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22811, 25126, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22812, 25127, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22813, 25110, 18, 7, 3, 'Rathish Selected for 3L CTC… Need to release the offer and he shall confirm the Joining date after checking with his current firm…', 152, '2025-05-26 12:17:42', 1),
(22814, 25130, 155, 5, 0, 'voice to low and comuunication not good... last company got abscond due to target and pressure in sales from Justdial.. not giving proper reasons... ', 154, '0000-00-00 00:00:00', 1),
(22815, 25128, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22816, 25129, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22817, 25078, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22818, 25134, 155, 5, 0, 'Job needed person, degree discontinued due to financial issue, 3 years did some local works did not go for any proper job, last worked in unique Business solution due to salary issue relieved.... Voice not clear and pronouncation not clear so not fit for sales and looking for data entry also', 154, '0000-00-00 00:00:00', 1),
(22819, 22946, 30, 7, 3, 'She will join june 2nd for dm suggested 21k in hand', 154, '0000-00-00 00:00:00', 1),
(22820, 25136, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22821, 25121, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22822, 25139, 89, 5, 0, 'no basic skill', 154, '0000-00-00 00:00:00', 1),
(22823, 25140, 105, 5, 0, 'Candidate expected higher package', 154, '0000-00-00 00:00:00', 1),
(22824, 22946, 60, 1, 0, NULL, 30, '2025-05-28 10:15:30', 1),
(22825, 25137, 89, 7, 0, 'good skill. experince person other sector. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22826, 25146, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22827, 25145, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22828, 25143, 105, 7, 0, 'candidate communication and performance is Good.already have 1 yr star Health experiance .his product explaination is also good.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(22829, 25143, 59, 1, 0, NULL, 105, '2025-05-28 01:43:37', 1),
(22830, 25149, 89, 7, 0, 'avarege skill. tele calling experince before 2 years. but still fresher. ', 154, '0000-00-00 00:00:00', 1),
(22831, 25144, 30, 7, 4, 'sHE WILL JOIN JUNE 2ND FOR DM SUGGESTED CTC 17 TO 18K , SKILLS GOOD', 104, '0000-00-00 00:00:00', 1),
(22832, 25151, 30, 7, 4, 'already he getting ctc 37k per month expectation 44 try to close 38 to 39 k for the rm profile and cross check previous history salary', 104, '0000-00-00 00:00:00', 1),
(22833, 25137, 59, 3, 0, 'Communication Ok Can be trained in our roles have exp in sales need to check in traninig and confirm', 89, '2025-05-28 03:35:51', 1),
(22834, 25144, 59, 3, 0, 'Communication gfood can be trained in our roles and check', 30, '2025-05-28 06:47:20', 1),
(22835, 25151, 60, 1, 0, NULL, 30, '2025-05-28 06:49:08', 1),
(22836, 25149, 59, 1, 0, NULL, 89, '2025-05-28 06:55:52', 1),
(22837, 25157, 149, 7, 0, 'candidate was having good communication interested in sales and incentives and we shall provide 14 - 15k as salary and she was ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22838, 25159, 30, 7, 3, 'selected for rm expectation is high try to close 33 to 35k', 154, '0000-00-00 00:00:00', 1),
(22839, 25156, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22840, 24993, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22841, 25157, 60, 1, 0, NULL, 149, '2025-05-29 01:20:55', 1),
(22842, 25158, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22843, 25155, 57, 4, 0, 'Candidate is ok, communication average. telesales exp have, pls confirm the joining date xxamp salary thanks', 154, '0000-00-00 00:00:00', 1),
(22844, 25164, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22845, 25163, 30, 7, 3, 'selected for rm he is expecting 30 but will try to close 25 to 26k', 154, '0000-00-00 00:00:00', 1),
(22846, 25047, 59, 3, 0, 'Communication Good have exp in shriram finance open for health issurance Over projecting himself can give a try and check in training', 156, '2025-05-30 09:42:47', 1),
(22847, 25110, 60, 1, 0, NULL, 18, '2025-05-30 10:31:50', 1),
(22848, 25169, 105, 7, 0, 'candidate communication and performance is ok also he have 5 months star health insurance experiance.but 5050 will check with him in the training Period.but he is expecting higher packge.as i convied for fresher package only', 154, '0000-00-00 00:00:00', 1),
(22849, 25167, 149, 7, 0, 'candidate was having good communication and already have experience in sales ,interested in sales and syed sir also checked with her based on his suggestion we shall provide 16-16.5k as take home including pf and kindly check with candidate and she was ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22850, 25170, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22851, 25155, 59, 3, 0, 'Communication k can give a try and check in training', 57, '2025-05-30 04:00:27', 1),
(22852, 25159, 60, 1, 0, NULL, 30, '2025-05-30 05:20:09', 1),
(22853, 25163, 60, 1, 0, NULL, 30, '2025-05-30 05:21:23', 1),
(22854, 25166, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(22855, 25167, 60, 1, 0, NULL, 149, '2025-05-30 06:44:06', 1),
(22856, 25169, 59, 3, 0, 'Communication Ok can be trained in our roles have exp in calling but no documents pertaining to that let us try and check', 105, '2025-05-30 07:16:44', 1),
(22857, 25115, 30, 7, 3, 'she will join on 9th of june selected for dm suggested ctc 16k', 104, '0000-00-00 00:00:00', 1),
(22858, 25173, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22859, 25172, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22860, 25152, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22861, 25115, 60, 1, 0, NULL, 30, '2025-05-31 06:03:31', 1),
(22862, 25178, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22863, 25181, 57, 5, 0, 'reject the profile, he totally unfit for the sales job, fully wrong information', 154, '0000-00-00 00:00:00', 1),
(22864, 25179, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22865, 25186, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22866, 25187, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22867, 25188, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22868, 25189, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22869, 25191, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22870, 25192, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22871, 25194, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22872, 25199, 59, 5, 0, 'to long distance and not suitable for our sales too', 154, '0000-00-00 00:00:00', 1),
(22873, 25180, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22874, 25193, 105, 5, 0, 'candidate communication and Performance is not well.also he did not communicate more.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(22875, 25197, 105, 7, 0, 'candidate communication and performance is good.as discussed with her travel timing is 1 hour. will check with her in the training period. ', 154, '0000-00-00 00:00:00', 1),
(22876, 25195, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22877, 25196, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22878, 25198, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22879, 25200, 59, 5, 0, 'Too long distance will not sustain in our roles for a long', 154, '0000-00-00 00:00:00', 1),
(22880, 25202, 57, 7, 0, 'Candidate is ok, communication average, confirm the joining date xxamp salary,, thanks', 154, '0000-00-00 00:00:00', 1),
(22881, 25203, 109, 5, 0, 'selected for MF intern But not joined. due to her frined joined as a intern in this company already', 154, '0000-00-00 00:00:00', 1),
(22882, 25197, 59, 3, 0, 'Communication Good Fresher Job failr committed salary can be trained in our roles and check', 105, '2025-06-02 07:01:55', 1),
(22883, 25204, 59, 5, 0, 'communication Ok for telesales but to long distance up and down 64 Kms will not sustain for a long have few months calling exp in collections and later into cashier exp\n', 154, '0000-00-00 00:00:00', 1),
(22884, 25206, 109, 5, 0, 'Looking for IT more than telesales', 154, '0000-00-00 00:00:00', 1),
(22885, 25201, 59, 5, 0, 'Have Exp in B2B sales for 3 yrs saalry exp is very high got offer from Axis for 3.5 LPA not joined due to salary expectation for B2C fresher and sustainability doubts in our profile', 154, '0000-00-00 00:00:00', 1),
(22886, 25208, 89, 7, 0, 'Selected. Fresher candidate. ', 154, '0000-00-00 00:00:00', 1),
(22887, 25210, 109, 5, 0, 'not suitable', 154, '0000-00-00 00:00:00', 1),
(22888, 25209, 59, 5, 0, 'Long Career Gap earlier and even in exp 2.5 yrs 3 companies travelled age 30 yrs working in different domains not much suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(22889, 25218, 105, 7, 0, 'candidate communication and performance is good.but distance is too long need to check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22890, 25215, 105, 7, 0, 'candidate communication is good.but her performance is slightly slow will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(22891, 25217, 105, 7, 0, 'candidate communication and performance is good.also he is little aggressive but will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(22892, 25212, 109, 8, 0, 'Not Came after exams', 154, '0000-00-00 00:00:00', 1),
(22893, 25219, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22894, 25216, 105, 5, 0, 'candidate performance is ok but her communication And actiness is low.sustainable is doubt ', 154, '0000-00-00 00:00:00', 1),
(22895, 25214, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22896, 25207, 30, 7, 3, 'Suggested ctc 16 k for dm immediate joining ', 154, '0000-00-00 00:00:00', 1),
(22897, 25190, 105, 7, 0, 'candidate communication and performance is ok but 5050.will check with her in the training period', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(22898, 25213, 74, 7, 0, 'she is ok with the profile completed mba past two years back she is shortlisted but due to higher studies she is not joined ...worked in kamatchi hospital night shift only in telecalling and communication department.....father pased away...mother house wife...brother worked in bajaj collection person....highly job need....travel time 1 km only...have laptop..imeediate joining...expected 14 to 15k...kindly cross check once confirm', 154, '0000-00-00 00:00:00', 1),
(22899, 25211, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(22900, 25202, 59, 3, 0, 'Communication Ok can be trained in our roles reference profile will check in training and confirm', 57, '2025-06-03 06:41:44', 1),
(22901, 25213, 59, 3, 0, 'Fresher for our roles have exp in customer support Hospital long back attended for our roles can be trained and check in training', 74, '2025-06-03 06:58:16', 1),
(22902, 25190, 59, 3, 0, 'Communication Ok Fresher for our Sales roles need to train from scratch will check in traninig', 105, '2025-06-04 10:47:47', 1),
(22903, 25217, 59, 3, 0, 'Fresher communication good can be trained in our roles and check in training', 105, '2025-06-04 10:48:56', 1),
(22904, 25218, 59, 3, 0, 'Fresher job fair candidate can be trained in our roles need to check and confirm in training', 105, '2025-06-04 10:52:36', 1),
(22905, 25215, 59, 1, 0, NULL, 105, '2025-06-04 10:54:29', 1),
(22906, 25222, 59, 5, 0, 'Worked in multiple companies and frequent job changes will not handle our work roles not suitable', 154, '0000-00-00 00:00:00', 1),
(22907, 25225, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22908, 25226, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22909, 25229, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22910, 25224, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22911, 25227, 59, 5, 0, 'no responsibility just cam along wiht the friend and attended 6months working and just looking for a change\nnot suitable', 154, '0000-00-00 00:00:00', 1),
(22912, 25228, 59, 5, 0, 'Careeg Gap not much seriousness on the job political background not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(22913, 25231, 59, 5, 0, 'Not suitable for our roles will not handle our work pressure Not even opening the mouth no idea for what he applied', 154, '0000-00-00 00:00:00', 1),
(22914, 25176, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22915, 25233, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22916, 25208, 59, 3, 0, 'Fresher for sales communication Ok sustainability not sure will check in training and confirm', 89, '2025-06-04 07:14:01', 1),
(22917, 25205, 89, 7, 0, 'already experinced at loan and matrimony side tele calling. basic finance knowdge skil person. ', 154, '0000-00-00 00:00:00', 1),
(22918, 25205, 59, 3, 0, 'Communication Ok can give a try in our roles have exp in sales seems to be good in sales can give a try and check', 89, '2025-06-05 12:24:11', 1),
(22919, 25238, 89, 7, 0, 'good skill. brfore two years working at star health 2 month only. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22920, 25238, 59, 5, 0, 'Offered but she not joined just 2 months exp in health insurance in 2023 and after that she is into education fresher now we offered her 1.74 LPA', 89, '2025-06-05 12:33:46', 1),
(22921, 25239, 105, 5, 0, 'candidate communication and performance is not good.sustianable is doubt', 154, '0000-00-00 00:00:00', 1),
(22922, 25241, 59, 5, 0, 'sounds and pronouncing issues need to explore a lot not much suits for our roles', 154, '0000-00-00 00:00:00', 1),
(22923, 25242, 105, 5, 0, 'candidate communication and performance is not good.she is intersted for non voice. sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(22924, 25240, 105, 5, 0, 'candidate communication and performance is not good.Voice is Very Low also sustianable is doubt', 154, '0000-00-00 00:00:00', 1),
(22925, 25247, 89, 7, 0, 'good skil. already experinced at other filed', 104, '0000-00-00 00:00:00', 1),
(22926, 25247, 59, 5, 0, 'Dropped not ok with the salary Max uptp 19K for DM roles have exp in Matrimony but long back and career gap was there and worked with another company and left in short note', 89, '2025-06-05 04:18:11', 1),
(22927, 25244, 30, 7, 3, 'suggested ctc 23k for dm', 104, '0000-00-00 00:00:00', 1),
(22928, 25245, 30, 7, 3, 'Selected for dm suggested ctc 23k ', 104, '0000-00-00 00:00:00', 1),
(22929, 25248, 59, 2, 0, 'Need to come back with confirmation from the college on the internship in same company,also candidate is not much aggresive', 154, '0000-00-00 00:00:00', 1),
(22930, 25249, 59, 2, 0, 'Need to come back with confirmation from the college on the internship in same company,also candidate is not much open up ', 154, '0000-00-00 00:00:00', 1),
(22931, 25250, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22932, 25252, 105, 5, 0, 'candidate communication and performance is not good.also sustianable is doubt', 154, '0000-00-00 00:00:00', 1),
(22933, 25253, 59, 5, 0, 'No confident need to open up a lot will not handle the work pressure', 154, '0000-00-00 00:00:00', 1),
(22934, 25254, 59, 5, 0, 'Not suitable for our roles fresher will not handle the pressure and friends gang ', 154, '0000-00-00 00:00:00', 1),
(22935, 25255, 59, 5, 0, 'No Communication very slow will not handle our work pressure and sustain', 154, '0000-00-00 00:00:00', 1),
(22936, 25256, 59, 5, 0, 'Need to open up not much comfort with the target and pressure', 154, '0000-00-00 00:00:00', 1),
(22937, 25251, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22938, 25259, 59, 5, 0, 'No seriousness in the job too long distance will not sustain and very lethurgic not suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(22939, 25260, 59, 5, 0, '5050 profile prepared for police exams and due to health issues unable to proceed further Fresher for Sales pressure handling doubts a lot this is the first interview let him explore the opportunities and if he come back let us try', 154, '0000-00-00 00:00:00', 1),
(22940, 25261, 59, 5, 0, 'Open for Non voice profile no clarity with the job he needs to go let him explore the job opportunites he will not sustain in our sales roles\n', 154, '0000-00-00 00:00:00', 1),
(22941, 25262, 59, 2, 0, 'Communication Ok have exp in calling and direct sales 2.5yrs 3 companies worked too long distance not sure with his sustainability let us hold and try his profile', 154, '0000-00-00 00:00:00', 1),
(22942, 25264, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22943, 25265, 59, 5, 0, 'Not Much comfort with Tele and partially field expecting a lot as he comparing his earnings with his friends looking much for the salary pressure handling doubts a lot', 154, '0000-00-00 00:00:00', 1),
(22944, 25267, 59, 5, 0, 'Communication Ok but lot of stammerring he not seems to be normal will not sustain in our roles and not suitable much with our openings', 154, '0000-00-00 00:00:00', 1),
(22945, 25270, 89, 7, 0, 'good skill , fresher, will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(22946, 25274, 149, 7, 0, 'candidate was ok with communication and interested in sales and we can try for 7days training period and we shall provide 14k-15k as salary ', 154, '0000-00-00 00:00:00', 1),
(22947, 25274, 149, 7, 0, 'candidate was ok with communication and interested in sales and we can try for 7days training period and we shall provide 14k-15k as salary ', 154, '0000-00-00 00:00:00', 1),
(22948, 25272, 149, 7, 0, 'candidate was good at communication and also interested in sales and incentives and she was coming from perungaluthur but she was saying it was not an issue and also experienced in sales we shall provide 15-16k as take home and also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(22949, 25271, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22950, 25273, 149, 7, 0, 'candidate was ok with communication and also have knowledge and interest at digital marketing and ready to work for sales but not sure about stability letxquots try for training ', 154, '0000-00-00 00:00:00', 1),
(22951, 25276, 59, 5, 0, 'Fresher communication Ok not much clear to our sales roles Pressure handling and sustainability doubts in this roles', 154, '0000-00-00 00:00:00', 1),
(22952, 25280, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22953, 25281, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22954, 25279, 149, 5, 0, 'candidate communication was not at all good and she was not suitable for sales and stability', 154, '0000-00-00 00:00:00', 1),
(22955, 25277, 156, 7, 0, 'candidate is ok , communication average . provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(22956, 25278, 59, 2, 0, 'Need to open up a lot interested to learn but 5050 in our roles if she is getting back will try for our roles', 154, '0000-00-00 00:00:00', 1),
(22957, 25283, 59, 5, 0, 'Too long distance 1.5 yrs 2 companies very high salary exp holding multiple offers will not join us just he will trade with this not suitable', 154, '0000-00-00 00:00:00', 1),
(22958, 25270, 59, 1, 0, NULL, 89, '2025-06-10 06:35:00', 1),
(22959, 25277, 59, 1, 0, NULL, 156, '2025-06-11 10:23:08', 1),
(22960, 25274, 60, 1, 0, NULL, 149, '2025-06-11 11:40:19', 1),
(22961, 25272, 60, 1, 0, NULL, 149, '2025-06-11 11:45:06', 1),
(22962, 25273, 60, 1, 0, NULL, 149, '2025-06-11 12:10:43', 1),
(22963, 25207, 59, 3, 0, 'Communication Ok fresher for our sales roles can give a try in training and confirm ', 30, '2025-06-11 01:43:34', 1),
(22964, 25285, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22965, 25291, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22966, 25301, 59, 3, 0, 'Communication Ok have career gap need to train from scratch can give a try in Renewals', 154, '0000-00-00 00:00:00', 1),
(22967, 25299, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(22968, 25303, 57, 5, 0, 'candidate is not ok, way of approach and body language, communication not good ', 154, '0000-00-00 00:00:00', 1),
(22969, 25304, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22970, 25305, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22971, 25315, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22972, 25316, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22973, 25310, 11, 1, 0, NULL, 60, '0000-00-00 00:00:00', 1),
(22974, 25293, 89, 7, 0, 'will analysis 7 days training', 104, '0000-00-00 00:00:00', 1),
(22975, 25320, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22976, 25317, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22977, 25314, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22978, 25313, 147, 5, 0, 'REJECTED', 154, '0000-00-00 00:00:00', 1),
(22979, 25244, 60, 1, 0, NULL, 30, '2025-06-13 09:54:11', 1),
(22980, 25245, 59, 1, 0, NULL, 30, '2025-06-13 09:55:28', 1),
(22981, 25329, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22982, 25293, 59, 3, 0, 'Communication Ok can give a try and check in training 5050 for our profile', 89, '2025-06-13 11:33:56', 1),
(22983, 25335, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22984, 25332, 89, 7, 0, 'alredy experince person at another sector. wiill analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(22985, 25331, 89, 7, 0, 'fresher. good skill will try 7 days training', 154, '0000-00-00 00:00:00', 1),
(22986, 25330, 89, 5, 0, 'no basick skill and not intersted voice', 154, '0000-00-00 00:00:00', 1),
(22987, 25337, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22988, 25339, 139, 5, 0, 'Not fit for Rm role \n', 154, '0000-00-00 00:00:00', 1),
(22989, 25341, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22990, 25344, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22991, 25322, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22992, 25332, 59, 3, 0, 'Communication Ok Can be trained in our roles will check in training', 89, '2025-06-13 07:41:48', 1),
(22993, 25331, 59, 3, 0, 'Communication Ok can be trained in our roles will check in training and confirm', 89, '2025-06-13 07:42:23', 1),
(22994, 25345, 30, 7, 3, 'suggested ctc 17k for dm monday joining', 154, '0000-00-00 00:00:00', 1),
(22995, 25348, 30, 5, 0, 'She has expecting high ctc she doesnxquott have core related experience and sustainability its very doubt', 154, '0000-00-00 00:00:00', 1),
(22996, 25352, 89, 7, 0, 'average skills, silent person, job needed person . lets try and see 7 days training days. will allocated raja sekar team', 104, '0000-00-00 00:00:00', 1),
(22997, 25345, 60, 1, 0, NULL, 30, '2025-06-14 05:17:05', 1),
(22998, 25342, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(22999, 25358, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23000, 25352, 59, 3, 0, 'Communication Ok career gap doing B.ED 5050 for our roles will check and confirm', 89, '2025-06-14 05:48:17', 1),
(23001, 25362, 105, 7, 0, 'candidate communication and performance is good.also he attend 3- training in FS Insurance.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(23002, 25364, 105, 5, 0, 'candidate communication and performance is not good also he is not interacting much more in the interview process', 154, '0000-00-00 00:00:00', 1),
(23003, 25309, 155, 5, 0, 'Candidate is not clear about what next... he has mutiple thinking about his career want to become police preparing for that... so not fit for sales', 154, '0000-00-00 00:00:00', 1),
(23004, 25351, 155, 5, 0, 'voice too low... Not opening up a lot.. not fit for sales', 154, '0000-00-00 00:00:00', 1),
(23005, 25369, 30, 7, 3, 'suggested ctc 22k friday joining for dm', 154, '0000-00-00 00:00:00', 1),
(23006, 25361, 155, 5, 0, 'candidate voice is not proper and looking for customer support max... thinking a lot for target and pressure.. will not sustain in our roles', 154, '0000-00-00 00:00:00', 1),
(23007, 25370, 155, 5, 0, 'worked in capital honda for 5 months. Got relieved last year june month after that not even try any job... candidate looks very childish will not sustain our roles', 154, '0000-00-00 00:00:00', 1),
(23008, 25338, 105, 5, 0, 'candidate communication and performance is not good also he is not interacting much more in the interview process.then he is shot temper', 154, '0000-00-00 00:00:00', 1),
(23009, 25371, 105, 5, 0, 'candidate communication and performance is not good also she is not interacting much more in the interview process.', 154, '0000-00-00 00:00:00', 1),
(23010, 25372, 105, 5, 0, 'candidate communication and performance is Little bit Good.Pressure not handle little bit sensitive type.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23011, 25114, 105, 7, 0, 'candidate communication is well.also his continuous peformance is good.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(23012, 25362, 59, 3, 0, 'Communication Ok Can be trained in our roles will check in training and confirm', 105, '2025-06-16 04:54:23', 1),
(23013, 25343, 105, 5, 0, 'candidate communication and perfomance is good.but she is married also she is expecting less schedule time.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23014, 25114, 59, 3, 0, 'Fresher for our role will check abd confirm', 105, '2025-06-16 04:56:25', 1),
(23015, 25368, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23016, 25369, 60, 1, 0, NULL, 30, '2025-06-16 07:23:12', 1),
(23017, 25367, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23018, 25383, 105, 5, 0, 'candidate communication and performance is little bit ok.but activeness is very less.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23019, 25381, 105, 5, 0, 'candidate communication and performance is not good.also in her profile she mentioned experiance in SBI Life but she does not pitch in her old process.sustsainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23020, 25384, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23021, 25380, 89, 7, 0, 'Good skill. alredy experince at airtel. expet ctc high. ', 154, '0000-00-00 00:00:00', 1),
(23022, 25379, 105, 7, 0, 'candidate communication and performacne is good.aslo He Performed well in the interview.but expected high salary.kindkly check it that once again.will check with him the training period', 154, '0000-00-00 00:00:00', 1),
(23023, 25380, 59, 3, 0, 'Communication Ok have exp in calling but not in sales location too long will check in training and confirm', 89, '2025-06-17 03:13:35', 1),
(23024, 25385, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23025, 25402, 89, 7, 0, 'Average skill. Need to understand 7 days of training period . Provide Fresher salary', 154, '0000-00-00 00:00:00', 1),
(23026, 25399, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23027, 25398, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23028, 25391, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23029, 25407, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23030, 25407, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23031, 25406, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23032, 25405, 105, 5, 0, 'candidate communication and performance is not good.also her voice is loe and she is not performed in the one to one interview Process interaction', 154, '0000-00-00 00:00:00', 1),
(23033, 25404, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23034, 25403, 59, 5, 0, 'Pronunciation issues will not sustain in our roles not suitable', 154, '0000-00-00 00:00:00', 1),
(23035, 25379, 59, 3, 0, 'Have exp in calling but not in sales Can be trained in our roles and check\n', 105, '2025-06-18 03:32:47', 1),
(23036, 25401, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23037, 25402, 59, 3, 0, 'Communication Ok have exp in calling part time loan profile can give a try and check in training', 89, '2025-06-18 06:17:10', 1),
(23038, 25396, 139, 5, 0, 'Not fit for RM role', 154, '0000-00-00 00:00:00', 1),
(23039, 25418, 105, 7, 0, 'candidate communication and performance is good.also her sales pitch is good.but will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(23040, 25415, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23041, 25419, 105, 5, 0, 'candidate communication and performance is good.but he not comfort for timing and out side appointment not suitable.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23042, 25423, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23043, 25422, 30, 5, 0, 'Its about yuvaraj shetty reference, same scenerio lack of communications and knowledge about sales . mathematical calculations.', 154, '0000-00-00 00:00:00', 1),
(23044, 25421, 30, 5, 0, 'No proper communication,lack of knowledge and experience.Sutainability issues . For our profile not suits. ', 154, '0000-00-00 00:00:00', 1),
(23045, 25418, 59, 3, 0, 'Communication ok can check in training ', 105, '2025-06-20 12:34:45', 1),
(23046, 25429, 105, 5, 0, 'candidate communication and performance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23047, 25432, 105, 5, 0, 'candidate communication and performance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23048, 25436, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23049, 25437, 155, 5, 0, 'candidate have experience of about 7 months in customer care executive but dont have any documents seems to be abscond..... have no clarity of exp... after that worked in steven holidays for 5 months and no documents for that also... seems to be doubt... sustainability doubts so not fit for our role', 154, '0000-00-00 00:00:00', 1),
(23050, 25438, 155, 5, 0, 'have exp in vizza for 4 months.... candidate is ok but currently doing dental treatment... he was not able to speak constantly for some time have some difficulty in speaking and have idea for digital marketing and IT full stack also ', 154, '0000-00-00 00:00:00', 1),
(23051, 25440, 105, 7, 0, 'candidate communication and performance is ok.but 5050 profile.nned to check in the training period', 154, '0000-00-00 00:00:00', 1),
(23052, 25442, 155, 5, 0, 'need to open a lot.... voice too low... so not fit for this profile', 154, '0000-00-00 00:00:00', 1),
(23053, 25446, 59, 5, 0, 'No basic ideas to profle she prefer too long distance not suitable for our roles', 159, '0000-00-00 00:00:00', 1),
(23054, 25441, 149, 7, 0, 'candidate was ok with communication and interested in sales but look like slow learner will try for 7days training', 154, '0000-00-00 00:00:00', 1),
(23055, 25441, 60, 1, 0, NULL, 149, '2025-06-20 05:02:06', 1),
(23056, 25426, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23057, 25425, 59, 5, 0, 'Need to open up a lot not suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(23058, 25433, 59, 5, 0, 'No sustainability fresher for our roles ager around 28 have exp in customer support for an year Multiple career gap no clarity with the job profile he wants to enter.not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23059, 25447, 59, 5, 0, 'Not a suitable profile too long distance no basic ideas in the profile', 154, '0000-00-00 00:00:00', 1),
(23060, 25448, 59, 5, 0, 'Not suitable for our roles no basic ideas of the profile she prefer to go not suitable', 154, '0000-00-00 00:00:00', 1),
(23061, 25449, 59, 5, 0, 'No qulaity profile too long distance not suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(23062, 25454, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23063, 25444, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23064, 25455, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23065, 25453, 89, 7, 0, 'experince other filed. good skill. move to rajasekar team', 154, '0000-00-00 00:00:00', 1),
(23066, 25457, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23067, 25453, 59, 1, 0, NULL, 89, '2025-06-23 10:53:12', 1),
(23068, 25440, 59, 1, 0, NULL, 105, '2025-06-23 01:06:14', 1),
(23069, 25462, 57, 7, 0, 'Candidate is ok, 7m exp telecalling, pls cross check candidate family background, confirm the joining date xxamp Salary..', 154, '0000-00-00 00:00:00', 1),
(23070, 25466, 89, 7, 0, 'Already experienced at health insurance filed. But before 1 yr.. selected will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(23071, 25469, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23072, 25468, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23073, 25467, 139, 4, 0, 'SELECTED FOR NEXT ROUND FSC \nHaving 1.5 yr exp in loan sales \nwill try for FSC role', 154, '0000-00-00 00:00:00', 1),
(23074, 25470, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23075, 25463, 57, 5, 0, 'Candidate communication not good, distance long,,,salary exp high, reject the profile\n', 154, '0000-00-00 00:00:00', 1),
(23076, 25462, 59, 3, 0, 'Communication Ok have exp but not a relevant one can giev atry and check in traning', 57, '2025-06-23 04:58:35', 1),
(23077, 25465, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23078, 25473, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23079, 25466, 59, 3, 0, 'Communication Ok have exp in calling but gap is there can give a try and check n training', 89, '2025-06-23 06:06:45', 1),
(23080, 25475, 59, 3, 0, 'Suresh sir reference joining for VP role', 60, '0000-00-00 00:00:00', 1),
(23081, 25484, 89, 7, 0, 'alredy experince last yr 6 month at health insurance. good skill. ', 154, '0000-00-00 00:00:00', 1),
(23082, 25467, 18, 7, 3, 'Selected for Gnanshekar team as FSC. Can give 2ok as CTC and ready to join from monday 30 Jun', 139, '2025-06-24 01:07:21', 1),
(23083, 25486, 155, 5, 0, 'worked in textiles sales of about 5 years since college... worked for bajaj finance of almost 2 months in sales... looking for non voice more and doubts for sustainbility', 154, '0000-00-00 00:00:00', 1),
(23084, 25485, 89, 7, 0, 'already experinced at star health 6 month and bajaj finance loan . good skill . ', 154, '0000-00-00 00:00:00', 1),
(23085, 25477, 155, 5, 0, 'looking for non voice more... comuunication is good but thinking a lot for target and pressure.... sustainability doubts... so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23086, 25483, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23087, 25485, 59, 3, 0, 'Communication Ok have exp in calling but different domain verified the documents can give a try in outr roles and check', 89, '2025-06-24 02:00:55', 1),
(23088, 25484, 59, 3, 0, 'Communication Ok can be trained in our roles and check in traning have 6 months exp in same domain', 89, '2025-06-24 02:01:49', 1),
(23089, 25488, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23090, 25487, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23091, 25479, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23092, 25491, 105, 5, 0, 'candidate communication and performance is ok,but he said ,He is very emotional type,Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23093, 25476, 155, 5, 0, 'lot of job changes in short period... having 1 yr kid and expecting holidays in saturday.... sustainability doubts so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23094, 25490, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23095, 25492, 105, 5, 0, 'candidate communication and performance is ok,but he have some health issue Wheezing problem.so sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23096, 25493, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23097, 25505, 155, 5, 0, 'having must interest in photoshop and digital marketing... going classes and aking coaching for that also.... thinking a lot for target and pressure... sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(23098, 25504, 155, 5, 0, 'voice too low.... Going for IT classes also and trying for jobs... very reserved need to open up a lot', 154, '0000-00-00 00:00:00', 1),
(23099, 25509, 155, 5, 0, 'thinking of distance a lot.... voice too low... very reserved....', 154, '0000-00-00 00:00:00', 1),
(23100, 25507, 155, 5, 0, 'voice too low and very soft voice.... distance also too long ', 154, '0000-00-00 00:00:00', 1),
(23101, 25511, 155, 5, 0, 'not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23102, 25506, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23103, 25501, 105, 5, 0, 'candidate communication and performance is ok.but his voice is low also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23104, 25495, 105, 5, 0, 'candidate communication is ok.but her performance is low bcos she have exp in star health ,but she doesxquott have product knowledge.aslo expected high salary', 154, '0000-00-00 00:00:00', 1),
(23105, 25478, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23106, 25515, 155, 5, 0, 'long gap in career due to family issue.... communication average but very childish... not fit in our roles', 154, '0000-00-00 00:00:00', 1),
(23107, 25516, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23108, 25513, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23109, 25512, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23110, 25518, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23111, 25514, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23112, 25503, 30, 7, 3, 'Suggeted 21k for dm ', 154, '0000-00-00 00:00:00', 1),
(23113, 25503, 60, 1, 0, NULL, 30, '2025-06-26 10:26:58', 1),
(23114, 25523, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23115, 25494, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23116, 25526, 59, 5, 0, 'Looking for non voice process ', 154, '0000-00-00 00:00:00', 1),
(23117, 25525, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23118, 25522, 105, 7, 0, 'Candidate Communication And Performance is good.but 5050 Profile ,little bit doubt in her pressure handling.will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(23119, 22656, 155, 5, 0, '2 years gap... trying for police exams and other govt jobs for past 2 yrs... now due to financial situation trying for job.... part time worked in lenovo show room sales... communication and slang not good... trying for IT jobs also....', 154, '0000-00-00 00:00:00', 1),
(23120, 24895, 155, 8, 0, 'did not turn up for further rounds', 155, '2025-06-26 06:22:08', 1),
(23121, 25522, 59, 3, 0, 'Communication Ok fresher for our roles holding IRDA number from Reliance need to get NOC on the same check in training', 105, '2025-06-27 11:04:00', 1),
(23122, 25546, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23123, 25542, 155, 5, 0, 'his tamil slang is kind of urdu mixed... mother tongue urdu.. very shy... need to open up a lot.. so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23124, 25539, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23125, 25554, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23126, 25557, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23127, 25534, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23128, 25558, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23129, 25540, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23130, 25560, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23131, 25530, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23132, 25552, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23133, 25552, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23134, 25528, 155, 5, 0, 'looking max for customer support... not open for sales thinking a lot... more interested in bike related things... did bike second hand buisness for about 1 year...', 154, '0000-00-00 00:00:00', 1),
(23135, 25538, 155, 5, 0, 'need to open up a lot.... very reserved not speaking that much... so not fit for sales', 154, '0000-00-00 00:00:00', 1),
(23136, 25467, 60, 1, 0, NULL, 18, '2025-06-27 05:08:15', 1),
(23137, 25570, 149, 5, 0, 'candidate was not ok with communication ,will not suitable for sales as he is not ready to speak and looking very slow', 154, '0000-00-00 00:00:00', 1),
(23138, 25569, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23139, 25574, 89, 7, 0, 'Over confidence person. Avarage skill . Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(23140, 25573, 149, 7, 0, 'candidate was ok with communication and interested in sales and incentives but not have any sales related experience and will check at 7days training period ', 154, '0000-00-00 00:00:00', 1),
(23141, 25553, 11, 4, 0, 'selected by gaurav sir ', 154, '0000-00-00 00:00:00', 1),
(23142, 25573, 60, 1, 0, NULL, 149, '2025-06-28 01:31:05', 1),
(23143, 25567, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION INTERESTED IN SALES AND INCENTIVES AND ACTIVE LETS TRY FOR 7DAYS TRAINING PERIOD ', 154, '0000-00-00 00:00:00', 1),
(23144, 25582, 89, 7, 0, 'Avarage skill. Fresher. But intersted person. So 7 days training will update ', 154, '0000-00-00 00:00:00', 1),
(23145, 25577, 89, 7, 0, 'Alredy Experienced another field tele calling. Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(23146, 25572, 155, 5, 0, 'have a career gap... was doing finance buisness with his father... now stopped due to father health issue.. now looking for job... need to open up a lot... giving only one word answer... not fit for sales', 154, '0000-00-00 00:00:00', 1),
(23147, 25574, 59, 3, 0, 'communication Ok fresher for our roles over confidence will check intraining and confirm', 89, '2025-06-28 03:54:38', 1),
(23148, 25577, 59, 3, 0, 'Communication ok have few months exp 5050 for our roles need to check in training and confirm', 89, '2025-06-28 03:56:16', 1),
(23149, 25582, 60, 1, 0, NULL, 89, '2025-06-28 03:57:19', 1),
(23150, 25576, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23151, 25583, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23152, 25580, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23153, 25602, 156, 7, 0, 'candidate ok , communication average. provide the fresher salary. kindly confirm the joining date ', 154, '0000-00-00 00:00:00', 1),
(23154, 25599, 89, 7, 0, 'good skill. experince at tele calling . expection high .', 154, '0000-00-00 00:00:00', 1),
(23155, 25588, 149, 7, 0, 'candidate was good at communication and also \ninterested in sales and incentives have laptop we shall provide 16k as salary and ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(23156, 25579, 149, 7, 0, 'candidate was good at communication and also have basic experience in sales showing interest in sales need of a job lets try it for 7 days training period ', 154, '0000-00-00 00:00:00', 1),
(23157, 25592, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23158, 25604, 140, 4, 0, 'sELECTED, FRESHER, HAVE TO TRAIN AND SEE', 154, '0000-00-00 00:00:00', 1),
(23159, 25591, 105, 5, 0, 'candidate communication and performance is ok.but his voice is low also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23160, 25590, 57, 7, 0, 'Candidate is ok, communication average , exp 1yr. confirm the salary xxamp joining date', 154, '0000-00-00 00:00:00', 1),
(23161, 25605, 155, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23162, 25541, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23163, 25599, 59, 1, 0, NULL, 89, '2025-06-30 03:27:18', 1),
(23164, 25593, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23165, 25612, 59, 5, 0, 'Not suitable for oour roles', 154, '0000-00-00 00:00:00', 1),
(23166, 25613, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23167, 25611, 59, 5, 0, 'Looking for core IT profile not suitable', 154, '0000-00-00 00:00:00', 1),
(23168, 25600, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23169, 25579, 60, 1, 0, NULL, 149, '2025-06-30 07:01:35', 1),
(23170, 25588, 60, 1, 0, NULL, 149, '2025-06-30 07:23:38', 1),
(23171, 25567, 60, 1, 0, NULL, 149, '2025-07-01 10:24:48', 1),
(23172, 25630, 57, 7, 0, 'Candidate is ok, fresher communication average, pls provide fresher salary.. confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23173, 25628, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23174, 25633, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23175, 25555, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23176, 25621, 30, 7, 3, 'She is expecting high salary but suggested 22 to 23k for dm', 104, '0000-00-00 00:00:00', 1),
(23177, 25625, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23178, 25627, 30, 5, 0, 'Not suit for our job', 104, '0000-00-00 00:00:00', 1),
(23179, 25621, 60, 1, 0, NULL, 30, '2025-07-01 02:54:28', 1),
(23180, 25617, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23181, 25598, 30, 5, 0, 'Not suit for our job', 154, '0000-00-00 00:00:00', 1),
(23182, 25608, 30, 5, 0, 'Not suit for our job', 154, '0000-00-00 00:00:00', 1),
(23183, 25606, 30, 5, 0, 'Not suit for our job', 154, '0000-00-00 00:00:00', 1),
(23184, 25635, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23185, 25630, 59, 3, 0, 'communication Ok Fresher for our sales roles can give a try and check in training ', 57, '2025-07-01 03:50:07', 1),
(23186, 25631, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23187, 25634, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23188, 25619, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23189, 25602, 59, 3, 0, 'Communication Ok 5050 profile for our roles need to check in training and confirm', 156, '2025-07-01 04:28:42', 1),
(23190, 25653, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23191, 25655, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23192, 25654, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23193, 25658, 149, 7, 0, 'candidate was good at communication and also have experience in sales and interested in incentives and we shall provide salary as hr team suggested and also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(23194, 25662, 59, 5, 0, 'Core IT profile and for time being looking into this will not sustain', 154, '0000-00-00 00:00:00', 1),
(23195, 25656, 59, 5, 0, 'open for non voice only not for sales calling', 154, '0000-00-00 00:00:00', 1),
(23196, 25657, 59, 5, 0, 'looking for non voice process only', 154, '0000-00-00 00:00:00', 1),
(23197, 25660, 154, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23198, 25661, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23199, 25648, 156, 7, 0, 'candidate is ok , communication average. provide the fresher salary.kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23200, 25624, 57, 7, 0, 'Candidate is ok, communication average,pls cross check candidate sustainability. pls confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23201, 25624, 59, 3, 0, 'Communication Ok have exp but not in relevant seems to be fit for our roles let us try and confirm in training', 57, '2025-07-02 01:23:54', 1),
(23202, 25649, 139, 4, 0, 'selected for RM role ', 154, '0000-00-00 00:00:00', 1),
(23203, 24220, 105, 5, 0, 'candidate communication and performance is ok.but his voice is low also sustainable is doubt', 105, '2025-07-02 02:59:35', 1),
(23204, 25604, 29, 7, 3, 'selected for porrselvan team', 140, '2025-07-02 03:18:51', 1),
(23205, 25607, 149, 7, 0, 'candidate was good at communication and also looking interest in sales and incentives also have laptop and ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(23206, 25545, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23207, 25663, 105, 5, 0, 'Candidate communication is little bit ok and performance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23208, 25648, 59, 3, 0, 'Communication Ok let us check in training and confirm ', 156, '2025-07-02 03:47:01', 1),
(23209, 25590, 59, 3, 0, 'Communication Ok 5050 First day dropped by Gopi and reschedule with Syed and got selected for his team let us try and confirm in training', 57, '2025-07-02 05:22:58', 1),
(23210, 25658, 60, 1, 0, NULL, 149, '2025-07-02 06:17:01', 1),
(23211, 25604, 59, 3, 0, 'Communication Ok Have exp but not in relevant one need to train and open to learn can give a try and check', 29, '2025-07-02 06:31:29', 1),
(23212, 25553, 59, 3, 0, 'Communication Ok have exp in calling but not a relevant one need to check n training and confirm', 11, '2025-07-02 06:31:53', 1),
(23213, 25644, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23214, 25670, 156, 7, 0, 'candidate is ok, communication average. 2 years experience for medical clinic. pls cross check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23215, 25668, 105, 5, 0, 'candidate communication and performance is not well.also he couldxquott interact well.sustainable is doubt...', 154, '0000-00-00 00:00:00', 1),
(23216, 25671, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23217, 25674, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23218, 25636, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23219, 25670, 59, 3, 0, 'Communication Ok Need to check in training and confirm long career gap', 156, '2025-07-03 03:55:23', 1),
(23220, 25680, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23221, 25679, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23222, 25672, 59, 5, 0, 'Communcation Good But too long distance daily travel not possible will not sustain', 154, '0000-00-00 00:00:00', 1),
(23223, 25664, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23224, 25677, 149, 7, 0, 'candidate was ok with communication and also interested in sales and incentives she was fresher and but she was trying to speak at the time of interview and also ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(23225, 25673, 139, 4, 0, 'Selected for RM role ', 154, '0000-00-00 00:00:00', 1),
(23226, 25684, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23227, 25675, 57, 7, 0, 'Candidate is ok, communication good, Kindly cross check, confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(23228, 25689, 105, 7, 0, 'Candidate communication and performance is good.But 5050 will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(23229, 25637, 149, 7, 0, 'candidate was good at communication and intersted in sales also have experience in sales related as part time ,distance only the issue but candidate was not having any issues in that ,she was also ok for immediate joining ', 154, '0000-00-00 00:00:00', 1),
(23230, 25693, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23231, 25691, 89, 7, 0, 'alredy experience at non voice. good skill. ', 154, '0000-00-00 00:00:00', 1),
(23232, 25688, 149, 5, 0, 'CANDIDATE WAS NOT AT SPEAKING SO RESERVED EVEN I TRIED TO LET HER SPEAK AND SO SHE WILL NOT BE SUITABLE FOR SALES', 154, '0000-00-00 00:00:00', 1),
(23233, 25637, 60, 1, 0, NULL, 149, '2025-07-04 02:38:00', 1),
(23234, 25677, 60, 1, 0, NULL, 149, '2025-07-04 02:55:34', 1),
(23235, 25632, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23236, 25686, 139, 4, 0, 'Selected next round \nWill try for FSC', 104, '0000-00-00 00:00:00', 1),
(23237, 25675, 59, 3, 0, 'Communication Good seems to put effort in learning can give a try and check in training', 57, '2025-07-04 05:01:18', 1),
(23238, 25691, 59, 3, 0, 'Communication Ok have exp in non voice only based on the manager commitment proceeded with 1.92 LPA can give a try and check', 89, '2025-07-04 05:04:05', 1),
(23239, 25607, 60, 1, 0, NULL, 149, '2025-07-05 11:28:47', 1),
(23240, 25689, 59, 3, 0, 'Communication Ok Reference profile can give a try and check in training', 105, '2025-07-05 12:09:19', 1),
(23241, 25683, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION AND BOLD ALSO HAVE INTERESTED IN SALES AND HE ASLO HAVE LAPTOP AND OK FOR IMMEDIATE JOINING', 154, '0000-00-00 00:00:00', 1),
(23242, 25694, 149, 7, 0, 'candidate was ok with communication but not so good at basic english ,job needed and interested lets try for 7days training', 154, '0000-00-00 00:00:00', 1),
(23243, 25708, 156, 7, 0, 'candidate is ok, communication average. 1.6 years experionce IT. 5months working tele marketing, please cross check sustainability and kindly confirm joining date.', 154, '0000-00-00 00:00:00', 1),
(23244, 25683, 60, 1, 0, NULL, 149, '2025-07-05 01:20:18', 1),
(23245, 25694, 60, 1, 0, NULL, 149, '2025-07-05 01:24:53', 1),
(23246, 25709, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23247, 25711, 29, 7, 3, 'Porrselvan Team, Sal 20K, can incres 2k if completed 2 lac biz in July 2025.', 154, '0000-00-00 00:00:00', 1),
(23248, 25712, 29, 7, 3, 'Karthika Team', 154, '0000-00-00 00:00:00', 1),
(23249, 25713, 59, 5, 0, 'Not open to speak will not sustain and not suitable', 154, '0000-00-00 00:00:00', 1),
(23250, 25643, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23251, 25665, 59, 5, 0, 'Not suitable for our roles m,uch interested to work in designing based roles only\n', 104, '0000-00-00 00:00:00', 1),
(23252, 25707, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23253, 25710, 105, 5, 0, 'candidate communication and performance is not good.also she was not active.then sustainable is doubt...', 104, '0000-00-00 00:00:00', 1),
(23254, 25714, 59, 5, 0, 'No confident to speak not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(23255, 25715, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23256, 25717, 57, 7, 0, 'candidate is ok , communication average 2.5 yrs exp. same telecalling . confirm the joining date and salary..', 104, '0000-00-00 00:00:00', 1),
(23257, 25711, 59, 3, 0, 'Communication Ok Have exp in Shriram and vizza can give a try and check in training', 29, '2025-07-05 06:31:21', 1),
(23258, 25718, 57, 5, 0, 'candidate is not ok for sales profile.. communication average. reject the profile..', 104, '0000-00-00 00:00:00', 1),
(23259, 25717, 59, 3, 0, 'Communication Ok have exp in calling for more than 2 yrs but in our roles pressure handling need to check will check in training', 57, '2025-07-05 06:52:38', 1),
(23260, 25712, 59, 3, 0, 'Communication Ok have exp in renewal lots of job switches will check in training and confirm', 29, '2025-07-05 06:56:02', 1),
(23261, 25722, 57, 7, 0, 'Candidate is ok, 1 yr experience Star Health insurance .product knowledge good, confirm the joining date xxamp Salary..(Sathya)', 154, '0000-00-00 00:00:00', 1),
(23262, 25703, 57, 7, 0, 'candidate is ok . communication average, just try 7 days of training periond. confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23263, 25725, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23264, 25728, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23265, 25616, 59, 5, 0, 'Not suitable for our roles career gap he was into own business time being he s looking for as he is getting married asap\n', 154, '0000-00-00 00:00:00', 1),
(23266, 25708, 59, 1, 0, NULL, 156, '2025-07-07 01:10:55', 1),
(23267, 25731, 59, 5, 0, 'he is openly interested to work in non voice process only', 154, '0000-00-00 00:00:00', 1),
(23268, 25729, 59, 5, 0, 'Looking for non voice process only ', 154, '0000-00-00 00:00:00', 1),
(23269, 25730, 140, 4, 0, 'Selected for next round, selected by gaurav sir also\n', 154, '0000-00-00 00:00:00', 1),
(23270, 25727, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23271, 25724, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23272, 25732, 155, 5, 0, 'worked in field sales for 1 year due to jaundice got relieved... and then worked in muthoot for 7 months in sales and operations relieved due to same reaosn... i suspect the reason is not true.. and more looking for operations only.. so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23273, 25726, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23274, 25721, 57, 7, 0, 'candidate is ok, fresher but way of approach Good, product explain all r good.provide 15k salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23275, 25716, 59, 5, 0, 'he is not open for sales calling looking for HR profile only but not suitable for us\n', 154, '0000-00-00 00:00:00', 1),
(23276, 25722, 59, 3, 0, 'Communication Ok have exp but no documents for that need to check the BGV His friend Pooja also selected seems to check indepth', 57, '2025-07-07 04:41:59', 1),
(23277, 25721, 59, 1, 0, NULL, 57, '2025-07-07 04:43:18', 1),
(23278, 25703, 59, 3, 0, 'Communication Ok fresher GYM work part time let us try in training anf confirm', 57, '2025-07-07 04:44:18', 1),
(23279, 25739, 155, 5, 0, 'Looking for IT xxamp not much comfortable in working with sales and targets so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23280, 25740, 155, 5, 0, 'Looking for IT max. Need to open up a lot. Giving only one word answer', 154, '0000-00-00 00:00:00', 1),
(23281, 25706, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23282, 25706, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23283, 25741, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23284, 25742, 59, 5, 0, 'Not much aggressive to the sales need to explore a lot will not handle pressure', 154, '0000-00-00 00:00:00', 1),
(23285, 25743, 59, 5, 0, 'preferred for non voice process only', 154, '0000-00-00 00:00:00', 1),
(23286, 25744, 59, 5, 0, 'not suitable for our role just for sake he is looking a job totally a waste profile', 154, '0000-00-00 00:00:00', 1),
(23287, 25745, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23288, 25746, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23289, 25682, 59, 5, 0, 'Have exp in sales but he got terminated in his previous for mislead and unproefssional business ', 154, '0000-00-00 00:00:00', 1),
(23290, 25685, 57, 5, 0, 'candidate not suitable for voice process, communication not good, active level low,, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23291, 25736, 156, 7, 0, 'candidate is ok , communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23292, 25730, 60, 1, 0, NULL, 140, '2025-07-08 07:15:30', 1),
(23293, 25686, 18, 7, 3, 'Selected for Gnanashekar Team. Ready to Join on monday. Expected 20k Take home and can provide ', 139, '2025-07-09 11:01:41', 1),
(23294, 25673, 18, 5, 0, 'Not fit for sales', 139, '2025-07-09 11:02:05', 1),
(23295, 25649, 18, 7, 3, 'Selected for Gnanashekar Team. Ready to Join next week. Ask him the specifc date preferably by monday. Also please negotiate the salary as per your observation', 139, '2025-07-09 11:41:04', 1),
(23296, 25752, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23297, 25623, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23298, 25754, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23299, 25755, 57, 5, 0, 'candidate is unfit for sales. communication not good, distance too long, reject', 154, '0000-00-00 00:00:00', 1),
(23300, 25763, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23301, 25749, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23302, 25761, 59, 5, 0, 'Not suitable for our sales roles will not handle our work pressure in sales much prefer to go with non voice\n', 154, '0000-00-00 00:00:00', 1),
(23303, 25762, 59, 5, 0, 'Fresher and much preferred to work in non voice will not handle our sales task', 154, '0000-00-00 00:00:00', 1),
(23304, 25758, 59, 5, 0, 'Communication Ok but not to open without friends sustainability doubts in this profile', 154, '0000-00-00 00:00:00', 1),
(23305, 25760, 156, 7, 0, 'candidate is ok, communication average. 9months experience for Kotak Mahindra Bank. please cross check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23306, 25753, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23307, 25753, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23308, 25686, 60, 1, 0, NULL, 18, '2025-07-10 11:01:53', 1),
(23309, 25649, 60, 1, 0, NULL, 18, '2025-07-10 11:37:30', 1),
(23310, 25767, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23311, 25769, 156, 7, 0, 'candidate is ok, communication good. provide the fresher salary, kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23312, 25772, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23313, 25771, 57, 7, 0, 'Candidate is ok, 10m experience insurance, product knowledge ok , communication good, pls cross check characterwise like way of talk xxamp Approach. confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(23314, 25768, 57, 7, 0, 'candidate is ok, communication good, bolt character, provide 15k Salary and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23315, 25773, 59, 5, 0, 'Looking for IT openings not suitable for us', 154, '0000-00-00 00:00:00', 1),
(23316, 25768, 59, 3, 0, 'Communication Ok fresher for our roles sounds good can be trained in our roles', 57, '2025-07-10 03:33:58', 1),
(23317, 25771, 59, 3, 0, 'Communication Ok have exp in star health sales in autobobile can give a try and check in training last year also attended ', 57, '2025-07-10 03:35:48', 1),
(23318, 25769, 59, 3, 0, 'Communication Ok fresher for our roles sounds good can be trained in our roles', 156, '2025-07-11 09:56:14', 1),
(23319, 25736, 59, 1, 0, NULL, 156, '2025-07-11 09:57:54', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(23320, 25784, 30, 5, 0, 'Not suit for our job', 154, '0000-00-00 00:00:00', 1),
(23321, 25785, 30, 5, 0, 'sustainability language issues', 154, '0000-00-00 00:00:00', 1),
(23322, 25735, 30, 7, 3, 'Selected for rm immediate joining expected 27k but suggested 25k due to 1year gap ', 154, '0000-00-00 00:00:00', 1),
(23323, 25786, 59, 5, 0, 'Not suitable for our roles will not sustain', 154, '0000-00-00 00:00:00', 1),
(23324, 25787, 59, 5, 0, 'Not suitable for our roles will not sustain', 154, '0000-00-00 00:00:00', 1),
(23325, 25789, 59, 5, 0, 'Not open for sales calls he s into model profile and just for sake he attended the interview', 154, '0000-00-00 00:00:00', 1),
(23326, 25783, 57, 7, 0, 'Candidate unfit for sales profile, communication not good, lack of confident , reject the profile', 154, '0000-00-00 00:00:00', 1),
(23327, 25778, 105, 5, 0, 'candidate communication and performamce is not good.his voice is low nad he is not intereacting much more in the one to one process.Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23328, 25779, 105, 5, 0, 'candidate communication and performamce is ok.but hi active is less also long distance.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23329, 25788, 57, 5, 0, 'Candidate unfit for sales profile, communication not good, lack of confident , reject the profile', 154, '0000-00-00 00:00:00', 1),
(23330, 25791, 57, 5, 0, 'Candidate unfit for sales profile, communication not good, lack of confident ,she having Wheezing problem xxamp Thyroid,some health issues, reject the profile...', 154, '0000-00-00 00:00:00', 1),
(23331, 25792, 57, 5, 0, 'Candidate unfit for sales profile, communication not good, lack of confident ,she having bp xxamp Some health issues, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23332, 25782, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23333, 25774, 105, 5, 0, 'candidate communication is ok but her performance is not good.also sustainable is doubt...', 154, '0000-00-00 00:00:00', 1),
(23334, 25747, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23335, 25781, 155, 5, 0, 'communication average. Looking more for MLT.. more dependent on parents will not sustain for our roles', 154, '0000-00-00 00:00:00', 1),
(23336, 25799, 155, 5, 0, 'pronouncation of words is not accurate and not much interested in insurance sales.. so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(23337, 25808, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23338, 25801, 59, 5, 0, 'Not a relevant profile will fit for office assistant roles only', 154, '0000-00-00 00:00:00', 1),
(23339, 25790, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23340, 25794, 59, 5, 0, 'Need to open up a lot will not handle our work roles', 154, '0000-00-00 00:00:00', 1),
(23341, 25793, 59, 5, 0, 'Not suitable for our roles Long gap in communicating will not fit for our roles ', 154, '0000-00-00 00:00:00', 1),
(23342, 25800, 59, 5, 0, 'Need to open up a lot will not handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(23343, 25810, 156, 7, 0, 'candidate is ok, communication average. 1 year experionce for sales executive. please cross check sustainability and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23344, 25798, 57, 7, 0, 'Candidate is ok, 3 years Experience kazeem seen the Candidate, Product Knowledge and Communication good, confirm the joining and salary ', 154, '0000-00-00 00:00:00', 1),
(23345, 25735, 60, 1, 0, NULL, 30, '2025-07-11 06:32:16', 1),
(23346, 25813, 59, 5, 0, 'have exp in non voice xxamp teaching fresher for sales exp salary alos pressure handling doubts in this role', 154, '0000-00-00 00:00:00', 1),
(23347, 25783, 59, 1, 0, NULL, 57, '2025-07-12 12:06:26', 1),
(23348, 25812, 30, 7, 3, 'selected for dm suggested ctc 16k for the fresher', 154, '0000-00-00 00:00:00', 1),
(23349, 25814, 156, 7, 0, 'candidate is ok , communication good. 11 months experience Telesales. please cross check sustainability and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(23350, 25816, 59, 5, 0, 'Communication Average not suitablr for sales calling will not sustain', 154, '0000-00-00 00:00:00', 1),
(23351, 25814, 59, 3, 0, 'Communication Ok have exp in sales calling can be trained in our roles and check', 156, '2025-07-12 05:35:32', 1),
(23352, 25810, 59, 3, 0, 'Communication Ok Career Gap he had recently completed graducation and lookin for job will check in training have exp in Jio fiber calls ', 156, '2025-07-12 05:40:33', 1),
(23353, 25798, 59, 3, 0, 'Selecetd for RE Role Health Have exp in same for 3yrs can be trained to our process let us try', 57, '2025-07-12 05:47:40', 1),
(23354, 25815, 57, 5, 0, 'candidate is not ok for sales , over performance , sustainability issues, reject the profile...', 154, '0000-00-00 00:00:00', 1),
(23355, 25817, 59, 5, 0, 'pronunciation no clear sustinability doubts\n', 154, '0000-00-00 00:00:00', 1),
(23356, 25821, 57, 5, 0, 'candidate is unfit for sales, communication not good, Lack of confidents, pressure handling, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23357, 25828, 57, 5, 0, 'candidate is unfit for sales, communication not good, Lack of confidents, pressure handling, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23358, 25805, 57, 7, 0, 'candidate is ok, lets try 7 days of training period , sathya ', 154, '0000-00-00 00:00:00', 1),
(23359, 25765, 59, 5, 0, 'communication Ok but not much comfort with the salary her exp is high', 154, '0000-00-00 00:00:00', 1),
(23360, 25836, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23361, 25820, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23362, 25805, 59, 3, 0, 'Communication Ok Fresher for our roles can give a try and check in training', 57, '2025-07-14 01:36:01', 1),
(23363, 25842, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23364, 25841, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23365, 25843, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23366, 25840, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23367, 25844, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23368, 25812, 60, 1, 0, NULL, 30, '2025-07-14 03:00:26', 1),
(23369, 25848, 155, 5, 0, 'looking for IT.... Not at all interested in sales... ', 154, '0000-00-00 00:00:00', 1),
(23370, 25849, 155, 5, 0, 'communication not good, not interested in sales looking for non voice, customer support and IT job', 154, '0000-00-00 00:00:00', 1),
(23371, 25835, 59, 5, 0, 'Need to open up a lot pressure handling doubts will not sustain for a long', 154, '0000-00-00 00:00:00', 1),
(23372, 25839, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23373, 25838, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23374, 25850, 30, 7, 3, 'selected for rm he will join august 1st suggested ctc 25k', 154, '0000-00-00 00:00:00', 1),
(23375, 25826, 30, 5, 0, 'Communication issues and also he worked previously in driving field. he will not sustain also our profile.', 154, '0000-00-00 00:00:00', 1),
(23376, 25829, 59, 5, 0, 'Too long distance Pressure handling doubts ', 154, '0000-00-00 00:00:00', 1),
(23377, 25830, 59, 5, 0, 'too long distance open for non voice much', 154, '0000-00-00 00:00:00', 1),
(23378, 25831, 59, 5, 0, 'Not suitable fr our roles\n', 154, '0000-00-00 00:00:00', 1),
(23379, 25832, 59, 5, 0, 'Not open up no confidence seems to be very lag', 154, '0000-00-00 00:00:00', 1),
(23380, 25846, 59, 5, 0, 'Attitude very casual too long distance will not sustain', 154, '0000-00-00 00:00:00', 1),
(23381, 25839, 59, 3, 0, 'Communication Ok 5050 Can be trained and check in our roles check in training', 156, '2025-07-14 05:13:32', 1),
(23382, 25760, 59, 1, 0, NULL, 156, '2025-07-14 05:16:12', 1),
(23383, 25851, 30, 5, 0, 'Lack of communication in english he will not sustain, he will be strong on tamil only', 104, '0000-00-00 00:00:00', 1),
(23384, 25850, 60, 1, 0, NULL, 30, '2025-07-14 06:26:09', 1),
(23385, 25859, 59, 5, 0, 'Too long distance also he needs to open up a lot ', 154, '0000-00-00 00:00:00', 1),
(23386, 25858, 59, 5, 0, 'She need to open up a lot given some time too but she didnt', 154, '0000-00-00 00:00:00', 1),
(23387, 25860, 59, 5, 0, 'he needs to open up a lot will not handle our sales pressure', 154, '0000-00-00 00:00:00', 1),
(23388, 25863, 59, 5, 0, 'Open for non voice process only', 154, '0000-00-00 00:00:00', 1),
(23389, 25862, 59, 5, 0, 'Looking for non voice process\n', 154, '0000-00-00 00:00:00', 1),
(23390, 25861, 57, 7, 0, 'candidate is ok, communication good. confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(23391, 25864, 59, 5, 0, 'Comfort to work in non voice and data entry profiles only', 154, '0000-00-00 00:00:00', 1),
(23392, 25865, 59, 5, 0, 'he is open for non voice only', 154, '0000-00-00 00:00:00', 1),
(23393, 25867, 59, 5, 0, 'Not open for field visit seems not much comfort to worj in this domain', 154, '0000-00-00 00:00:00', 1),
(23394, 25866, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23395, 25856, 149, 7, 0, 'candidate was ok with the communication,have some idea about insurance but fresher so lets try for 7days training period and ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(23396, 25868, 59, 5, 0, 'Too long distance and not much comfort with field sales', 154, '0000-00-00 00:00:00', 1),
(23397, 25871, 59, 5, 0, 'Too long distane not suitable for our roles too will not sustain and handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(23398, 25764, 59, 5, 0, 'Fresher for Sales he is much for marketing but not open to call the customers continously also his salary exp is very high will not sustain and handle', 154, '0000-00-00 00:00:00', 1),
(23399, 25873, 57, 7, 0, 'candidate is ok, communication good, 10m experience, policy bazaar , pls confirm the joining date, deshwaran team.', 154, '0000-00-00 00:00:00', 1),
(23400, 25883, 59, 5, 0, 'Communication not clear just a push from consultancy', 154, '0000-00-00 00:00:00', 1),
(23401, 25869, 59, 5, 0, 'Still into Studies he will not handle our work pressure not much suits for our roles frequent leaves will be availed ', 154, '0000-00-00 00:00:00', 1),
(23402, 25884, 105, 7, 0, 'candidate communication and performance is good.will check eith him in the training period', 154, '0000-00-00 00:00:00', 1),
(23403, 25887, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23404, 25847, 59, 5, 0, 'Location traevl doubts focus much for IT will not sustain and handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(23405, 25861, 59, 3, 0, 'Fresher Communication Ok Can be trained in our roles and check', 57, '2025-07-16 12:37:34', 1),
(23406, 25873, 59, 3, 0, 'Communication Ok have 10 months exp in policy bazaar can be trained and check in training', 57, '2025-07-16 12:38:28', 1),
(23407, 25856, 60, 1, 0, NULL, 149, '2025-07-16 12:57:20', 1),
(23408, 25893, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23409, 25894, 59, 5, 0, 'Focus for IT vacancies not suitable for our roles\n', 154, '0000-00-00 00:00:00', 1),
(23410, 25895, 59, 5, 0, 'Much suits for non voice process only \n', 154, '0000-00-00 00:00:00', 1),
(23411, 25890, 30, 7, 3, 'Selected for dm reference from suraj suggested 3.2lac ctc cross check previous one monday will join', 154, '0000-00-00 00:00:00', 1),
(23412, 25880, 30, 5, 0, 'Lack of communication and experience', 154, '0000-00-00 00:00:00', 1),
(23413, 25896, 30, 5, 0, 'lack of communication and sustainability issues', 154, '0000-00-00 00:00:00', 1),
(23414, 25890, 60, 1, 0, NULL, 30, '2025-07-16 04:45:13', 1),
(23415, 25899, 59, 5, 0, 'No clarity with the exp mentioned seems to give stories a lot will not sustain', 154, '0000-00-00 00:00:00', 1),
(23416, 25904, 59, 5, 0, 'Not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23417, 25901, 57, 5, 0, 'candidate is ok, but she having some personal issues there, mentally she affected, so unfit for sales profile', 154, '0000-00-00 00:00:00', 1),
(23418, 25884, 59, 3, 0, 'Communication Ok Fresher open to learn can give a try and check in training', 105, '2025-07-16 05:45:11', 1),
(23419, 25885, 59, 5, 0, 'Long career Gap fresher already holding an offer for 2.4 with IDBI just for addtional opportunities she is looking will not join us not much suitable too', 154, '0000-00-00 00:00:00', 1),
(23420, 25911, 57, 5, 0, 'candidate is unfit for sales,, communication not good, lack of confident, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23421, 25900, 105, 7, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS OK.5050 PROFILE WILL CHECK WITH HER IN THE TRAINING PERIOD.BUT DISTANCE IS LONG LITTLE BIT SUSTAINABLE DOUBT', 154, '0000-00-00 00:00:00', 1),
(23422, 25912, 59, 5, 0, 'Complete airtel customer support exp as team leader much comfort to work in that domain only she will not sustain more than a year in back office too if she comes back for sales let us try', 154, '0000-00-00 00:00:00', 1),
(23423, 25913, 59, 5, 0, 'He is open for B2B process only and holding an offer with Justdial not open for direct sales', 154, '0000-00-00 00:00:00', 1),
(23424, 25900, 59, 3, 0, 'Fresher Communication Ok location long need to check in training and confirm', 105, '2025-07-17 02:53:04', 1),
(23425, 25915, 59, 5, 0, 'complete non voice exp Pressure handling doubts in this profile long run doubts ', 154, '0000-00-00 00:00:00', 1),
(23426, 25914, 59, 5, 0, 'Not suitable for our sales communication pronunciation not much clear', 154, '0000-00-00 00:00:00', 1),
(23427, 25888, 30, 7, 4, 'Selected for dm suggested ctc upto 20k monday joining ', 104, '0000-00-00 00:00:00', 1),
(23428, 25888, 60, 1, 0, NULL, 30, '2025-07-17 07:06:08', 1),
(23429, 25916, 59, 5, 0, 'Not suitable for our roles already joined FS insurance and absconded in 2 days as she is not comfort to work in this domain\n', 154, '0000-00-00 00:00:00', 1),
(23430, 25920, 59, 5, 0, 'Much suits for non voice only\n', 154, '0000-00-00 00:00:00', 1),
(23431, 25872, 59, 3, 0, 'Communication Ok have exp in Policy Bazaar hired for RM role syed team need to check in trainign', 57, '2025-07-19 12:40:28', 1),
(23432, 25934, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23433, 25930, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23434, 23848, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23435, 25935, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23436, 25926, 59, 5, 0, 'Communication Average reviewed using the content writing but not upto the expectation for our support roles ', 154, '0000-00-00 00:00:00', 1),
(23437, 25927, 59, 5, 0, 'Much focus for Customer support roles but will not sustain for a long in our profile not suitable', 154, '0000-00-00 00:00:00', 1),
(23438, 25933, 59, 5, 0, 'Looking for customer care not open for target ', 154, '0000-00-00 00:00:00', 1),
(23439, 25928, 59, 5, 0, 'will suitable for non voice only', 154, '0000-00-00 00:00:00', 1),
(23440, 25947, 59, 5, 0, 'Looking for non voice process much will not sustain in our roles', 154, '0000-00-00 00:00:00', 1),
(23441, 25937, 59, 5, 0, 'Not suitable for our roles ', 154, '0000-00-00 00:00:00', 1),
(23442, 25929, 59, 5, 0, 'Fro time being he is looking into this much looking for UI/UX', 154, '0000-00-00 00:00:00', 1),
(23443, 25958, 59, 5, 0, 'Completely looking for non voice process not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23444, 25957, 105, 5, 0, 'candidate communication and performacne is not good.aslo she is not Interesact More.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23445, 25955, 105, 5, 0, 'candidate communication and performacne is not good.aslo she is not activeness.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23446, 25964, 149, 5, 0, 'ok with communication but not sure about her stability because she was interested it jobs also', 154, '0000-00-00 00:00:00', 1),
(23447, 25962, 109, 5, 0, 'not fit for our team', 154, '0000-00-00 00:00:00', 1),
(23448, 25959, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23449, 25965, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23450, 25966, 155, 5, 0, 'communication not good', 154, '0000-00-00 00:00:00', 1),
(23451, 25963, 105, 5, 0, 'candidate communication and performacne is not good.aslo He is lethagicaly Answered And sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23452, 25971, 57, 5, 0, 'candidate is ok, but he doing own photography business, so need leaves bcz of met appt, so not suitable for our field,..', 154, '0000-00-00 00:00:00', 1),
(23453, 25949, 149, 7, 0, 'good at communication ,in english and having interest in sales not sure about stability lets try for training period', 154, '0000-00-00 00:00:00', 1),
(23454, 25931, 155, 5, 0, 'candidate communication is ok but seems to be telling lie... two year went to UK for studies but due to health issue dropped college , worked their for part time clear debts.... have exp for 2 months in hdb before ... ', 154, '0000-00-00 00:00:00', 1),
(23455, 25974, 59, 5, 0, 'Communication average he is open much for admin / non voice not suitable for your roles', 154, '0000-00-00 00:00:00', 1),
(23456, 25298, 59, 5, 0, 'Solid exp in non voice process communication Average will not handle our sales calls not suitable', 154, '0000-00-00 00:00:00', 1),
(23457, 25972, 59, 5, 0, 'Communication Ok fresher but much focused to work in non voice sales convincing no pressure handling doubts\n', 154, '0000-00-00 00:00:00', 1),
(23458, 25975, 59, 5, 0, 'Communication Ok 5050 Long run doubts he is planning to go with MBA also have some business plan completed Digital marketing Pressure handling in our roles doubtfull', 154, '0000-00-00 00:00:00', 1),
(23459, 25953, 105, 5, 0, 'canidate communcation and performance is not good .also Voice correlation Problem.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23460, 25978, 149, 7, 0, 'candidate was good at communication and having confidence but distance was issue he was telling that he will relocate and ok for joining in this week', 154, '0000-00-00 00:00:00', 1),
(23461, 25956, 57, 7, 0, 'Candidate is ok, fresher, communication ok. confirm the joining date xxamp Salary thanks', 154, '0000-00-00 00:00:00', 1),
(23462, 25977, 57, 5, 0, 'candidate is not ok , communication not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23463, 25950, 59, 5, 0, 'not open for Insurance domain as she used to practice the religious norms\n ', 154, '0000-00-00 00:00:00', 1),
(23464, 25948, 59, 5, 0, 'too long distance not open for sales too he is looking for insurance coordination and much of non voice ', 154, '0000-00-00 00:00:00', 1),
(23465, 25982, 105, 7, 0, 'candidate communication and performance is ok.but 5050 profile.will check with her in the trainig period', 154, '0000-00-00 00:00:00', 1),
(23466, 25982, 59, 5, 0, 'Manager shortlisted the profile initially later after the detailed discsussion not much comfort to proceed further based on the candidate input on appointments and the meetings', 105, '2025-07-22 04:22:05', 1),
(23467, 25978, 60, 1, 0, NULL, 149, '2025-07-22 07:51:43', 1),
(23468, 25949, 60, 1, 0, NULL, 149, '2025-07-22 07:55:30', 1),
(23469, 25989, 105, 5, 0, 'candidate communication and performacne is not good.aslo she is sensitive type.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23470, 25984, 59, 5, 0, 'Not much aggresive in communication for sales open much for non voice only\n', 154, '0000-00-00 00:00:00', 1),
(23471, 25988, 59, 2, 0, 'Need to check the documents and confirm', 154, '0000-00-00 00:00:00', 1),
(23472, 25997, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23473, 25992, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23474, 25994, 57, 5, 0, 'candidate not suitable for sales profile. distance, interested non voice,reject the profile', 154, '0000-00-00 00:00:00', 1),
(23475, 25967, 105, 5, 0, 'candidate communication and peerformance is not well.sustainable doubt.expected higher package', 154, '0000-00-00 00:00:00', 1),
(23476, 25997, 59, 3, 0, 'Communication Ok Can give a try and check in training', 156, '2025-07-23 02:45:26', 1),
(23477, 25968, 105, 5, 0, 'candidate communication and performace is not good.aslo sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23478, 26002, 57, 7, 0, 'Candidate is ok , 50/50 will try for 7 days of training period. 11m exp telecalling, assign to sathya', 154, '0000-00-00 00:00:00', 1),
(23479, 25986, 57, 5, 0, 'candidate is not ok for sales profile, communication not good, reject', 154, '0000-00-00 00:00:00', 1),
(23480, 26002, 59, 3, 0, 'Fresher for our sales 5050 sustainability doubts will check in training and confirm', 57, '2025-07-23 03:10:00', 1),
(23481, 25956, 59, 3, 0, 'Communication Ok 5050 for our roles can be trained in our roles and check in training ', 57, '2025-07-23 03:11:49', 1),
(23482, 26014, 59, 5, 0, 'Looking for non voice ', 154, '0000-00-00 00:00:00', 1),
(23483, 26006, 59, 5, 0, 'Not much serious with the job profiles will not handle our sales roles', 154, '0000-00-00 00:00:00', 1),
(23484, 26005, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23485, 25976, 57, 7, 0, 'Candidate is ok, will try 7 days of training period, confirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(23486, 26011, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23487, 26013, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23488, 26001, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23489, 25998, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23490, 25999, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23491, 25993, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23492, 26026, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23493, 26022, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23494, 26024, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23495, 26023, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23496, 26028, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23497, 26029, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23498, 26027, 59, 5, 0, 'too long Distance not a relevant profile for sales too will not handle our sales', 154, '0000-00-00 00:00:00', 1),
(23499, 26000, 59, 5, 0, 'communication not clear multiple breaks in between also has exp in nonvoice and retail only', 154, '0000-00-00 00:00:00', 1),
(23500, 25976, 59, 3, 0, 'Communication ok long career gap for 4 yrs exam preparations 5050 for our roles let us try and confirm', 57, '2025-07-23 05:10:16', 1),
(23501, 25996, 59, 5, 0, 'he suits for non voice process only will nt sustain in sales\n', 154, '0000-00-00 00:00:00', 1),
(23502, 25995, 59, 5, 0, 'Not suitable for our role have exp for 6 months casa grand later he is not open to sales and attended only for non voice ', 154, '0000-00-00 00:00:00', 1),
(23503, 26015, 59, 5, 0, '5050 she need time to decide have a plan to go with own business will not handle our sales profiles will not sustain ', 154, '0000-00-00 00:00:00', 1),
(23504, 26017, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23505, 26033, 59, 5, 0, 'Exp in 3d/graphic designer today attended interview in Shree consultancy much comfort to go with that only', 154, '0000-00-00 00:00:00', 1),
(23506, 26009, 59, 5, 0, 'Career gap Not strong to handle the pressue will not sustain', 154, '0000-00-00 00:00:00', 1),
(23507, 26003, 29, 7, 3, 'porrselvan team, \n21k net salary, incre 2k in sept 25 if completed 1.5 lac life and 10K SIP in Aug 2025.', 154, '0000-00-00 00:00:00', 1),
(23508, 26003, 59, 3, 0, 'Communication Good seems to aggresive in speaking have exp in collections only but can give a try and check in training ', 29, '2025-07-24 10:00:22', 1),
(23509, 26039, 57, 5, 0, 'Candidate is not suitable for salees profile, sounds not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23510, 26032, 59, 5, 0, 'too long distance from ponneri have exp but not convincing in his profile not suitable', 154, '0000-00-00 00:00:00', 1),
(23511, 26046, 137, 7, 0, 'candiate communication skill ok and 2 month work with credit card sales , family backround also low . so try for 7 days training period, exp salary is 14 to 15 k', 154, '0000-00-00 00:00:00', 1),
(23512, 26046, 59, 3, 0, 'Communication Ok have exp in part time credit card joined hospittal as front office for 2 days and left due to mother health and dress code need to check in training and confirm', 137, '2025-07-24 01:33:14', 1),
(23513, 26045, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23514, 26044, 139, 5, 0, 'Not fit for Rm role', 154, '0000-00-00 00:00:00', 1),
(23515, 26047, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23516, 26048, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23517, 26050, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23518, 26049, 59, 5, 0, 'Communication No not suitable profile will not sustain in work roles ', 154, '0000-00-00 00:00:00', 1),
(23519, 25983, 59, 5, 0, 'Fresher Communication Ok but not clear with the domain to work looking for non voice too joined MBA in PULC will not run in a long with us', 154, '0000-00-00 00:00:00', 1),
(23520, 25987, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23521, 26043, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23522, 26035, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23523, 26038, 147, 7, 0, 'good communication with experience and salary part need to confirm expecting 22 t0 23k', 104, '0000-00-00 00:00:00', 1),
(23524, 25990, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23525, 26060, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23526, 26061, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23527, 26062, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23528, 26064, 156, 7, 0, 'Candidate is ok, communication average. 1 year exp for Customer support executive. please check sustainability and kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23529, 26074, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23530, 26065, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23531, 26059, 147, 7, 0, 'Totally Fresher good communication she is bold and traveling distance is bit for 20km confirm on that already i confirmed with her she is ok to come', 104, '0000-00-00 00:00:00', 1),
(23532, 26066, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23533, 26069, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23534, 26067, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23535, 26073, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23536, 26051, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23537, 26076, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23538, 26079, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23539, 26068, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23540, 26059, 59, 1, 0, NULL, 147, '2025-07-26 11:23:31', 1),
(23541, 26038, 59, 3, 0, 'Communicaiton Have exp in lead generation can give a try and check', 147, '2025-07-26 11:23:49', 1),
(23542, 26085, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23543, 26093, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23544, 26092, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23545, 26091, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23546, 26090, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23547, 26103, 57, 5, 0, 'candidate is unfit for sales, communication not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23548, 26102, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23549, 26104, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23550, 26111, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23551, 26099, 57, 7, 0, 'Candidate is ok , communication good, confirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(23552, 26105, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23553, 26110, 57, 7, 0, 'Candidate is ok , communication good, confirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(23554, 26114, 57, 7, 0, 'Candidate is ok , communication good,1yrs exp same domain and collection experience \nconfirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(23555, 26108, 59, 5, 0, 'No convincing not much shown interest on job attended around 15 interviews IT without knowing the skills required just for sake and family push he is looking for job will not handle our sales pressure', 154, '0000-00-00 00:00:00', 1),
(23556, 26088, 59, 5, 0, 'Currently pursuuing also having a career gap not much suitable for our sales roles will not sustain ', 154, '0000-00-00 00:00:00', 1),
(23557, 26107, 59, 5, 0, 'Not open for Targets will not handle our sales pressure not suitable', 154, '0000-00-00 00:00:00', 1),
(23558, 26109, 59, 5, 0, 'Complete UI UX profile have exp n collection only sustainability doubts in sales profile pressure handling too doubts not suitable', 154, '0000-00-00 00:00:00', 1),
(23559, 26054, 59, 5, 0, 'Complete IT graduate just for exp he attended the interview location too long salary exp is also high', 154, '0000-00-00 00:00:00', 1),
(23560, 26057, 59, 5, 0, 'Location Too long much open for IT profile sustainability doubts in our roles ', 154, '0000-00-00 00:00:00', 1),
(23561, 26095, 59, 5, 0, 'Have exp as purchase executive also looking for same domain for time being she s looking for this also she has some health issues long run doubts in our roles', 154, '0000-00-00 00:00:00', 1),
(23562, 26101, 147, 7, 0, 'good experience good skills salary 20k ', 154, '0000-00-00 00:00:00', 1),
(23563, 26121, 59, 5, 0, 'Fresher not much communicative for sales need to open up a lot will not sustain', 154, '0000-00-00 00:00:00', 1),
(23564, 26126, 59, 5, 0, 'Aged 32 complete exp in operation current CTC 4.2 LPA open for ops only', 154, '0000-00-00 00:00:00', 1),
(23565, 26123, 59, 5, 0, 'Fresher not much communicative for sales need to open up a lot also he need to explore the opportunities will not sustain', 154, '0000-00-00 00:00:00', 1),
(23566, 26119, 59, 5, 0, 'Fresher not much communicative for sales need to open up a lot also he need to explore the opportunities will not sustain', 154, '0000-00-00 00:00:00', 1),
(23567, 26064, 59, 3, 0, 'Communication Ok fresher for our roles have exp not a relevant one need to check in training and confirm', 156, '2025-07-29 12:49:09', 1),
(23568, 26112, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23569, 26118, 147, 7, 0, 'She is having good experience and communication skills knowing languages Telugu and English only she is ok', 154, '0000-00-00 00:00:00', 1),
(23570, 26129, 147, 5, 0, 'No communication looking for time been looking for better opportunity', 154, '0000-00-00 00:00:00', 1),
(23571, 26132, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23572, 26140, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(23573, 26141, 59, 5, 0, 'Fresher have a plan to go with CA and also not much communicative to handle our work roles', 154, '0000-00-00 00:00:00', 1),
(23574, 26142, 59, 5, 0, 'Much open to work in non voice process only', 154, '0000-00-00 00:00:00', 1),
(23575, 25651, 57, 7, 0, 'candidate is ok , communication good, 1yr exp telecalling, pls check suistainability...confirm the joining data and salary..', 154, '0000-00-00 00:00:00', 1),
(23576, 26143, 59, 5, 0, 'Long back we have selected and give her joining earlier she appeared again tody not clear with the ideas to get into particular profiles if we give a chance again will have the sustainability issues\n', 154, '0000-00-00 00:00:00', 1),
(23577, 26139, 59, 5, 0, 'fersher not much comfort to target also much comfort to work in non voice process ', 154, '0000-00-00 00:00:00', 1),
(23578, 26144, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23579, 26136, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary, kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23580, 26124, 109, 5, 0, 'Multiple job swtich nort sustain', 154, '0000-00-00 00:00:00', 1),
(23581, 26127, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23582, 26138, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23583, 25651, 59, 3, 0, 'Communication Ok have exp in calling sales HDFC/Sundaram Finance have gap too can be trained in our roles and check in training', 57, '2025-07-30 06:01:17', 1),
(23584, 26099, 59, 1, 0, NULL, 57, '2025-07-30 06:44:43', 1),
(23585, 26110, 59, 3, 0, 'Fresher communication ok tried for teaching and now not comfort to continue with that let us try and confirm', 57, '2025-07-30 06:45:05', 1),
(23586, 26114, 59, 3, 0, 'have exp in calling but no sustainability and have career gap too can give a try and check in training', 57, '2025-07-30 06:45:47', 1),
(23587, 26136, 59, 1, 0, NULL, 156, '2025-07-30 07:23:50', 1),
(23588, 26155, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23589, 26117, 59, 5, 0, 'Communication Ok Fresher for roles but open for other roles too sustainability doubts in this profile', 154, '0000-00-00 00:00:00', 1),
(23590, 26153, 137, 7, 0, 'candidate communication and vocie aslo good , he need work and looking also voice process so try for 7 days training period, exp salary is 16 to 18k salary ', 154, '0000-00-00 00:00:00', 1),
(23591, 26154, 89, 7, 0, 'Fresher.. ', 154, '0000-00-00 00:00:00', 1),
(23592, 26157, 59, 5, 0, 'Location too long alos he is open only for telecalling not for field sales will not sustain', 154, '0000-00-00 00:00:00', 1),
(23593, 25952, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23594, 26152, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23595, 26158, 59, 5, 0, 'Not suitable for our sales profile he too prefer to go with the non voice will not sustain in a long', 154, '0000-00-00 00:00:00', 1),
(23596, 26159, 59, 5, 0, 'not suitable for our roles complete non voice interested candidate', 154, '0000-00-00 00:00:00', 1),
(23597, 26146, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23598, 25585, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23599, 26161, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23600, 26169, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23601, 26170, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23602, 26164, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt.', 154, '0000-00-00 00:00:00', 1),
(23603, 26162, 59, 3, 0, 'Communication Tamil ok have exp in branch handling anna nagar cycle internal team charles reference need to check in 7 days training for renewal and confirm', 154, '0000-00-00 00:00:00', 1),
(23604, 26166, 59, 5, 0, 'communication slang issue had his own business not much convinced for our sales too will not sustain', 154, '0000-00-00 00:00:00', 1),
(23605, 26154, 59, 3, 0, 'Communication Ok fresher seems to be in dilemma can give try and check in training', 89, '2025-08-01 10:23:02', 1),
(23606, 26177, 74, 7, 0, 'he is ok with the profile completed bba in mayiladudurai 2021--- and selected as a us shift as IT support in bangalore 25k salary 1year due to family issue releived....and worked in a honda showroom 16k salary and i marque solutions tvs credit loan for 3 months....try in abroad 6months for job and return...currently preparing group 4 exam.....so have sustainability issue and travel time is high......expected 17 to 18k..and imeediatee joining ...have no laptop...father auto driver..kindly cross check once and confirm', 154, '0000-00-00 00:00:00', 1),
(23607, 26172, 59, 5, 0, 'Not much comfort in sales target/discussed for renewal too but not much ok to go with this not suitable', 154, '0000-00-00 00:00:00', 1),
(23608, 26037, 57, 7, 0, 'Selected fr Sahtya Team can give a try and check in training\n', 154, '0000-00-00 00:00:00', 1),
(23609, 26176, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23610, 26171, 105, 5, 0, 'candidate performance and communication little bit not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23611, 26179, 59, 5, 0, 'Attitude candidate not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23612, 26180, 59, 5, 0, 'Too long distance will not handle our sales pressure not suitable', 154, '0000-00-00 00:00:00', 1),
(23613, 26181, 59, 5, 0, 'Communication ok not much comfort with the sales calling sustainability doubts in this profile', 154, '0000-00-00 00:00:00', 1),
(23614, 26177, 59, 3, 0, 'Communication Ok already attended a few years back via virtual in between worled with multiple companies and gained exp can give a try and check', 74, '2025-08-01 01:11:14', 1),
(23615, 26184, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23616, 26167, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23617, 26118, 59, 1, 0, NULL, 147, '2025-08-01 01:42:58', 1),
(23618, 26189, 59, 5, 0, 'Not much seriousness to the profile will not sustaina nd not suitable', 154, '0000-00-00 00:00:00', 1),
(23619, 26187, 59, 5, 0, 'not much serious with the job roles worked in customer support and other domain but no sustainabilyt', 154, '0000-00-00 00:00:00', 1),
(23620, 26186, 59, 5, 0, 'she asked time to confirm her interest in this job role if she comes back let us try', 154, '0000-00-00 00:00:00', 1),
(23621, 26195, 154, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23622, 26207, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23623, 26208, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23624, 26151, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23625, 26201, 11, 7, 0, 'selected as E sales RM.\nGaurav sir also met him', 154, '0000-00-00 00:00:00', 1),
(23626, 26190, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(23627, 26178, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23628, 26218, 59, 3, 0, 'Communication Good Fresher can be trained in our HR roles in banagalore 2yrs NDA will be initiated cna check and confirm', 104, '0000-00-00 00:00:00', 1),
(23629, 26037, 59, 3, 0, 'Communication Ok fresher job need is there 5050 on our roles need to check in training and confirm', 57, '2025-08-04 10:02:57', 1),
(23630, 26153, 59, 1, 0, NULL, 137, '2025-08-04 10:28:26', 1),
(23631, 25645, 59, 3, 0, 'agreed as per company norms, proceeding with Internship and employement', 60, '0000-00-00 00:00:00', 1),
(23632, 26217, 137, 7, 0, 'candidate communication and voice good , she need work because she is not completed the degree, and some medical issue and long ditance also , exp salary is 15 to 16k , will try for7 days training period.', 154, '0000-00-00 00:00:00', 1),
(23633, 26221, 155, 5, 0, 'candidate is not clear what domain too choose... worked for 5 months and did chartered accounts course for a year... and now also looking for the same field.. sustainability and pressure handling high doubts', 154, '0000-00-00 00:00:00', 1),
(23634, 26227, 155, 5, 0, 'looking for accounts max... ', 154, '0000-00-00 00:00:00', 1),
(23635, 26228, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23636, 26217, 59, 3, 0, 'Communication of fresher need to check in training and confirm let us try', 137, '2025-08-04 04:20:11', 1),
(23637, 26212, 57, 7, 0, 'Candidate is ok , communication average, pls check distance too long. pls confirm the joining date and salary,.', 154, '0000-00-00 00:00:00', 1),
(23638, 26220, 59, 5, 0, 'much focused for data entry only', 154, '0000-00-00 00:00:00', 1),
(23639, 26232, 59, 5, 0, 'not suitable for our roles he is much comfort to handle the cashier roles only', 154, '0000-00-00 00:00:00', 1),
(23640, 26212, 59, 3, 0, 'Communication ok Fresher for our sales can give a try and check in training', 57, '2025-08-05 11:54:50', 1),
(23641, 26237, 59, 5, 0, 'Communication sounds Ok but not much clarity on his exp pertaining to the investment domain he worked not much suitable for our roles career gap he voluntarily didnt attend the interview just through reference and relative companies he worked', 154, '0000-00-00 00:00:00', 1),
(23642, 26238, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23643, 26247, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23644, 26216, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION AND HAVE CONFIDENCE AND INTERESTED IN SALES LETS TRY AT TRAINING TIME ', 154, '0000-00-00 00:00:00', 1),
(23645, 26182, 149, 5, 0, 'CANDIDATE COMMUNICATION WAS NOT SO GOOD AND HAVE SOME PROUNCIATION ISSUES WILL NOT SUITABLE FOR SALES', 154, '0000-00-00 00:00:00', 1),
(23646, 26253, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23647, 26250, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23648, 26244, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23649, 26254, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23650, 26255, 59, 5, 0, 'Communication Average need to open up a lot sounds low voice will not handle our work roles will not sustain', 154, '0000-00-00 00:00:00', 1),
(23651, 26246, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23652, 26249, 149, 5, 0, 'CANDIDATE COMMUNICATION WAS OK BUT NOT HAVING CONFIDENT AND INTERESTED IN IT NOT SURE ABOUT SUSTAINABILITY ', 154, '0000-00-00 00:00:00', 1),
(23653, 26248, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23654, 26242, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23655, 26216, 60, 1, 0, NULL, 149, '2025-08-05 04:22:09', 1),
(23656, 26258, 105, 5, 0, 'candidate performance is ok,but communication little bit not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23657, 26239, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23658, 26240, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23659, 26259, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23660, 26261, 147, 7, 0, 'she is good in sales and x employee 8 months work experience ', 60, '0000-00-00 00:00:00', 1),
(23661, 26261, 59, 3, 0, 'Have exp in CAFS for 8 months no proper resignation termination mail given to the candidate,As referred again by the manager for the same role we have hired her for the position with no change in the salary part', 147, '2025-08-05 06:41:32', 1),
(23662, 26236, 109, 5, 0, 'not Even opened his mouth for a single conversation initially, but later tried to interact with others, but no sales skills and GD done by Jothiga.', 154, '0000-00-00 00:00:00', 1),
(23663, 26197, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23664, 26265, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23665, 26204, 109, 5, 0, 'not Even opened his mouth for a single conversation, GD done by Jothiga.', 154, '0000-00-00 00:00:00', 1),
(23666, 26272, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23667, 26225, 109, 5, 0, 'He speaks well 2021 passed out and prepared for Goverment exams, now trying for job came along with his friend, I rejected his friend but can try this profile, but he went. GD done by Jothiga', 154, '0000-00-00 00:00:00', 1),
(23668, 21831, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23669, 26271, 59, 2, 0, 'Communication Ok 5050 for renewals Indiafirst Wasim/Vikram reference fresher for our roles need to train from scratch', 154, '0000-00-00 00:00:00', 1),
(23670, 26264, 57, 5, 0, 'candidate is ok, but not suitable for sales profile, some health issues there, reject the profile\n', 154, '0000-00-00 00:00:00', 1),
(23671, 26262, 30, 5, 0, 'Due to lack of speech and communication so he is not selected', 104, '0000-00-00 00:00:00', 1),
(23672, 26270, 57, 7, 0, 'Candidate is ok, communication good, 1yrs exp abroad, pls cross check sustainability, confirm the joining date and salary', 154, '0000-00-00 00:00:00', 1),
(23673, 26278, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23674, 26276, 109, 5, 0, 'Had only minimum yrs of expereience high expectation, not suitable for insurance slaes', 154, '0000-00-00 00:00:00', 1),
(23675, 26277, 147, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(23676, 26274, 57, 7, 0, 'Candidate is ok ,communication Average, experience in same domain, confirm the joining date xxamp salary', 154, '0000-00-00 00:00:00', 1),
(23677, 26277, 60, 1, 0, NULL, 30, '2025-08-06 04:31:26', 1),
(23678, 26101, 59, 3, 0, 'Communication Ok Have exp in backend process can give a try for our sales process and check in training', 147, '2025-08-06 04:33:26', 1),
(23679, 26201, 60, 1, 0, NULL, 11, '2025-08-06 06:38:50', 1),
(23680, 26274, 59, 1, 0, NULL, 57, '2025-08-06 06:58:06', 1),
(23681, 26270, 59, 1, 0, NULL, 57, '2025-08-06 06:58:53', 1),
(23682, 26279, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23683, 26291, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23684, 26290, 155, 5, 0, 'not fit for telecalling. communication and slang not proper. need to open up a lot', 154, '0000-00-00 00:00:00', 1),
(23685, 26280, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23686, 20739, 59, 5, 0, 'Communication ok having several health issues mental disorder openly stated still he is into medication for that not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(23687, 26288, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23688, 26293, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23689, 26292, 155, 5, 0, 'voice too low, need to open up a lot.. pressure handling doubts', 154, '0000-00-00 00:00:00', 1),
(23690, 25973, 155, 5, 0, 'not having seriousness to look for job, one year career gap, looking for IT also, pressure handling doubts', 154, '0000-00-00 00:00:00', 1),
(23691, 26234, 155, 5, 0, 'communication not good, need to open up a lot pressure handling doubts', 154, '0000-00-00 00:00:00', 1),
(23692, 26297, 155, 5, 0, 'not serious about going to job. major looking for IT only', 154, '0000-00-00 00:00:00', 1),
(23693, 26298, 155, 5, 0, 'not fit for our roles. voice too low and looking for IT only', 154, '0000-00-00 00:00:00', 1),
(23694, 26296, 155, 5, 0, 'having exp in only Field sales as a free lancer and phonepe. not fit for telecalling', 154, '0000-00-00 00:00:00', 1),
(23695, 26309, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23696, 26307, 89, 7, 0, 'Good skill.. working time issues. So Once you talk, decide.', 154, '0000-00-00 00:00:00', 1),
(23697, 26310, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23698, 26308, 30, 7, 3, 'Suggested ctc 22k selected for ashfaq team monday joining', 154, '0000-00-00 00:00:00', 1),
(23699, 26286, 147, 5, 0, 'looking high salary ', 154, '0000-00-00 00:00:00', 1),
(23700, 26308, 60, 1, 0, NULL, 30, '2025-08-08 04:01:47', 1),
(23701, 26287, 147, 5, 0, 'lack of communication no English ', 154, '0000-00-00 00:00:00', 1),
(23702, 26089, 147, 5, 0, 'rejected', 154, '0000-00-00 00:00:00', 1),
(23703, 26295, 147, 5, 0, 'High salary looking 40k ', 154, '0000-00-00 00:00:00', 1),
(23704, 26305, 149, 7, 0, 'candidate was ok with communication no parents have timing issue at timing lets try for initial 7 days', 154, '0000-00-00 00:00:00', 1),
(23705, 26084, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23706, 26283, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23707, 26302, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23708, 26313, 89, 7, 0, 'Good skill. This girl is getting married on September 4th. Once you talk, decide.', 154, '0000-00-00 00:00:00', 1),
(23709, 26314, 57, 5, 0, 'candidate is unfit for sales profile, sustainability issues, already he selected 4 companies but worked 3 to 4 days only,,,reject ', 154, '0000-00-00 00:00:00', 1),
(23710, 26303, 59, 5, 0, 'need to open up a lot seems very reserved much focus into non voice process', 154, '0000-00-00 00:00:00', 1),
(23711, 26322, 11, 7, 0, 'selected by Gaurav sir with the commitment of PF inclusion after 3 months based on performance', 104, '0000-00-00 00:00:00', 1),
(23712, 26323, 59, 5, 0, 'not open for sales communication average', 154, '0000-00-00 00:00:00', 1),
(23713, 26324, 105, 7, 0, 'Candidate Communication and performance is good.5050 profile will check with her in the training period ', 60, '0000-00-00 00:00:00', 1),
(23714, 26320, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23715, 26305, 60, 1, 0, NULL, 149, '2025-08-09 03:53:41', 1),
(23716, 26320, 59, 3, 0, 'Communication Ok fresher open to learn insurance domain can give a try and check\n', 156, '2025-08-09 04:04:14', 1),
(23717, 26313, 59, 2, 0, 'getting married on 4Sept have exp but will have a leave issues.once done with all her personal works let us try', 89, '2025-08-09 05:20:49', 1),
(23718, 26307, 59, 3, 0, 'Communication Ok fresher she is into sports weight lifting also doing MBA full time due to sports only for exmas she can appear can give a try and check', 89, '2025-08-09 05:23:29', 1),
(23719, 26324, 60, 1, 0, NULL, 105, '2025-08-11 10:52:56', 1),
(23720, 26333, 57, 7, 0, 'Candidate is ok 50/50 just try for 7 days of training period, communication is ok..', 154, '0000-00-00 00:00:00', 1),
(23721, 25881, 105, 5, 0, 'candidate communication and performance is little ok.but her voice is low also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23722, 26341, 57, 7, 0, 'Candidate is ok, communication good, pls check sustainability bcz of little smart xxamp Attitude. Confirm the joining date xxamp salary.. for mine', 154, '0000-00-00 00:00:00', 1),
(23723, 26331, 59, 5, 0, 'Pronunciation issues group discussion rejected candidate\n', 154, '0000-00-00 00:00:00', 1),
(23724, 26339, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23725, 26340, 59, 5, 0, 'Not suitable for our roles need to open up seems to be reserved very much will not sustain and handle our pressure', 154, '0000-00-00 00:00:00', 1),
(23726, 26329, 105, 5, 0, 'candidate communication and performance is not good.also his voice is scrolled , then sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23727, 26328, 105, 5, 0, 'candidate communication and performance is not good.then his sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23728, 26342, 57, 7, 0, 'Candidate is Good. pls check distance too long. otherwise ok all confirm the joining date xxamp Salary Sathya team', 154, '0000-00-00 00:00:00', 1),
(23729, 26333, 59, 3, 0, 'Communication Ok fresher need to train from sctrch open for learning can give a try for our roles', 57, '2025-08-11 05:43:22', 1),
(23730, 26341, 59, 3, 0, 'Communication Ok fresher Can be trained in our roles and check in training', 57, '2025-08-11 05:44:33', 1),
(23731, 26342, 59, 3, 0, 'Communication Good very confident only thing is the distance can give a try and check for our roles\n', 57, '2025-08-11 05:45:53', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(23732, 26322, 59, 3, 0, 'Communication Ok have exp in telesales can give a try and check in our roles gaurav sir committed to go woth PF after 3 months based on performance', 11, '2025-08-11 07:38:02', 1),
(23733, 26349, 59, 2, 0, 'Communication Ok 5050 for our roles can give a try and check in training but not sure as he cam along with his friends', 60, '0000-00-00 00:00:00', 1),
(23734, 26351, 59, 5, 0, 'Will not sustain in our roles just worked for 3 months in the Collection but not mcuh comfort with that roles not suitable', 60, '0000-00-00 00:00:00', 1),
(23735, 26353, 59, 5, 0, 'Final roudn rejected by gokul have exp in MF but multiple switches also career gap', 60, '0000-00-00 00:00:00', 1),
(23736, 26359, 156, 7, 0, 'candidate is ok, communication average. kindly provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23737, 26363, 105, 5, 0, 'candidate communicationa and performance is ok.aslo his core in iT ,but sustainable in sale is doubt', 154, '0000-00-00 00:00:00', 1),
(23738, 26369, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23739, 26370, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23740, 26373, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23741, 26374, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23742, 26375, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23743, 25443, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23744, 26368, 147, 7, 0, 'good communication And good knowledge In Sales 20k Salary ', 154, '0000-00-00 00:00:00', 1),
(23745, 26376, 59, 5, 0, 'Not suitable for our roles will not handle our work pressure ', 154, '0000-00-00 00:00:00', 1),
(23746, 26359, 59, 3, 0, 'Communication Ok fresher for our sales roles can give a try and check in training', 156, '2025-08-14 03:55:44', 1),
(23747, 26378, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23748, 26386, 74, 7, 0, 'she is ok with the profile completed mba currently and worked as a office staff telecalling for past 4 month earning 10k and incentives,,,,father fishers department and retired pension 26k ...single child....pattukottai 49k...travel time 1 hour...expected 15k ,,,have laptop and....need to confirm joining bcoz in old company still have 15 days for salary but she is ok for immediate joining to kindly confirm', 154, '0000-00-00 00:00:00', 1),
(23749, 26368, 59, 3, 0, 'Communication Ok fresher for our sales roles 5050 can give a try and check in training', 147, '2025-08-16 12:06:48', 1),
(23750, 15276, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23751, 26385, 59, 5, 0, 'have exp in same domain but no sustainability and not much communicative for our roles too sustainability doubts recently married and have some personal issues pertaining to this also salary exp is very high', 154, '0000-00-00 00:00:00', 1),
(23752, 26388, 105, 5, 0, 'candidate communication and performance is little bit ok.but she is intrested in customer support', 154, '0000-00-00 00:00:00', 1),
(23753, 26391, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23754, 26390, 105, 5, 0, 'candidate communication and performance is not good.also she did not perform well in the interview.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23755, 26392, 105, 5, 0, 'candidate communication and performance is not good.voice is very low and sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23756, 26386, 59, 3, 0, 'Communication Ok fresher for our roles can give a try and check in training ', 74, '2025-08-16 05:04:03', 1),
(23757, 26400, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(23758, 26402, 74, 7, 0, 'he is ok with the profile ...completed bcom in 2023...and joined in a med plus for 3 month and releived...and joined in a arun icecream,,and releived...and finally worked as a marketing officer in sriram chits...for 9 months ...11k salary with allowance....due to transfer releived from job have proper documents,,,father carpenter...rental house...expected 15k salary...currently studying mba 3 semester....3 km travel only..have no laptop..tuff to arrange...so kindly cross check and confirm', 154, '0000-00-00 00:00:00', 1),
(23759, 26401, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23760, 26411, 74, 7, 0, 'she is ok with the profile..completed mba finance...native muthupet...1 and half hour travel....fresher...father work in marketing 10k salary...elder sister teacher 10k salary...mom running a small petti shop..5k income....she is completed mba in thanjavur....speaked well and performing well...have laptop...expected 15k...and ready to move to hostel....so travel issue...incase not ready to move not fit for profile....uncle house near 3km..so have possiblity...so kindly cross check once', 154, '0000-00-00 00:00:00', 1),
(23761, 26404, 57, 5, 0, 'candidate is not ok for sales field. he interested in cini field so not suitable for sales ', 154, '0000-00-00 00:00:00', 1),
(23762, 26377, 109, 5, 0, 'Sustainability doubt will go for IT role', 154, '0000-00-00 00:00:00', 1),
(23763, 26399, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23764, 26402, 59, 3, 0, 'communication Ok Have exp in Shirram for few months 5050 for our role can give atry and check', 74, '2025-08-18 02:33:11', 1),
(23765, 26411, 59, 3, 0, 'Communication Ok fresher for our telesales open to relocate too long distance need to check in training', 74, '2025-08-18 02:36:03', 1),
(23766, 26412, 109, 5, 0, 'Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23767, 26406, 109, 5, 0, 'Communication too low Will not Suitable for Sales', 154, '0000-00-00 00:00:00', 1),
(23768, 26398, 109, 5, 0, 'Childish Girl wil not suitable for us', 154, '0000-00-00 00:00:00', 1),
(23769, 26408, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23770, 26409, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23771, 26348, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23772, 16693, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23773, 26414, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23774, 26382, 89, 7, 0, 'Avarage skill. Once re locate confirm then joining it. Fresher. Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(23775, 26416, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23776, 26417, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23777, 26271, 59, 3, 0, 'Communication ok fresher for job have career gap need to train and check in 7days if ok then will continue with the job if not drop after 7 days', 59, '2025-08-19 10:00:06', 1),
(23778, 26431, 74, 2, 0, 'she is ok with the profile completed mba...fresher father farmer joined family...30km travel from home....she ok with every thing and highly job need...expected 13 to 15k...have laptop...imeediate joining.....but have no maturity...speaked will dont have understanding in the interview....two times cried bcoz of family pressure....family expected to go to job.....need to speak arun sir and need a feedback', 154, '0000-00-00 00:00:00', 1),
(23779, 26415, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23780, 21547, 18, 7, 3, 'Shortlisted for Gnanashekar Team. Shall Join by tomorrow. Please negotiate the salary as per your observation', 139, '2025-08-19 11:59:38', 1),
(23781, 21547, 60, 1, 0, NULL, 18, '2025-08-19 12:02:42', 1),
(23782, 26438, 139, 4, 0, 'Selected for RM rold\nHaving exp in Sales\nwill try for RM\nhave to negotiate the package ', 104, '0000-00-00 00:00:00', 1),
(23783, 26438, 18, 7, 3, 'Selected for Gnanashekar team. Immedeate Joiner and negotiate salary based on your observation', 139, '2025-08-19 01:05:31', 1),
(23784, 26427, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23785, 26397, 156, 7, 0, 'candidate is ok, communication average. pls provide the fresher salary and kindly confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(23786, 26433, 57, 5, 0, 'Candidate is not ok for sales profile, communication not good, lack of confident reject the profile', 154, '0000-00-00 00:00:00', 1),
(23787, 26428, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23788, 26434, 57, 7, 0, 'Candidate is ok communication good, pls check sustainability and confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(23789, 26423, 149, 7, 0, 'candidate was good at communication and have some work experinences and so lets try for 7 days training because of long distance she was ok with timing but have some doubts in that ,and lets try at training period', 154, '0000-00-00 00:00:00', 1),
(23790, 26422, 149, 7, 0, 'candidate was good at communication and also looking confident and interested in sales and also ok for immediate joining ', 154, '0000-00-00 00:00:00', 1),
(23791, 26405, 105, 7, 0, 'candidate communication and performance is good.aslo her voice is bold and she told, she worked in star 3 months.but she dont know about the product.will check with her in the training perion.', 154, '0000-00-00 00:00:00', 1),
(23792, 26439, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23793, 26422, 60, 1, 0, NULL, 149, '2025-08-19 02:52:06', 1),
(23794, 26423, 60, 1, 0, NULL, 149, '2025-08-19 02:56:26', 1),
(23795, 26381, 57, 5, 0, 'Candidate is ok , communication average, distance too long .,reject the profile', 154, '0000-00-00 00:00:00', 1),
(23796, 26382, 59, 1, 0, NULL, 89, '2025-08-19 03:33:26', 1),
(23797, 26436, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23798, 26437, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23799, 26440, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23800, 26429, 57, 5, 0, 'Candidate is not ok for sales field. exp but communication not good, product knowledge not good reject', 154, '0000-00-00 00:00:00', 1),
(23801, 26434, 59, 3, 0, 'Communication Ok Fresher for our sales roles will check in training', 57, '2025-08-19 05:22:49', 1),
(23802, 26452, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(23803, 26397, 59, 3, 0, 'Communication Ok fresher for telesales need to check in training and confirm', 156, '2025-08-20 10:06:17', 1),
(23804, 26438, 60, 1, 0, NULL, 18, '2025-08-20 11:25:45', 1),
(23805, 26424, 89, 7, 0, 'good skill. out of chennai re locat once confirmed your side then joining ', 154, '0000-00-00 00:00:00', 1),
(23806, 26445, 89, 7, 0, 'Good skill. alredy part time cridit card sale experince 5 month. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(23807, 26442, 161, 5, 0, 'Communication slang is different and interested in IT also and have experience in vizza for 7 days only and relieved due to some reasons. Sustainability doubt', 154, '0000-00-00 00:00:00', 1),
(23808, 26445, 59, 3, 0, 'Communication Ok have exp in credit card for 3 months very long back can check in training and confirm open to learn will check and confirm in trainig', 89, '2025-08-20 01:09:16', 1),
(23809, 26424, 59, 3, 0, 'Communication ok fresher fr telesales need to relocate from vellore need to check in training and confirm', 89, '2025-08-20 01:12:21', 1),
(23810, 26453, 155, 5, 0, 'will not suit for our roles... very attitude... sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(23811, 26405, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and confirm', 105, '2025-08-20 03:24:15', 1),
(23812, 26468, 74, 7, 0, 'she is ok with the profile fresher..completed bsc...5km travel from home...father oil sales for boat,, mother work in tailoring...two younger sister brother rental house...highly job need speaked better will try...expected 13k...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(23813, 26464, 57, 5, 0, 'Candidate not suitable for sales, 2yrs carrier gab, communication not good, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23814, 26468, 59, 3, 0, 'Communication Ok fresher for telesales need to chec k in training and confirm', 74, '2025-08-21 12:18:05', 1),
(23815, 26458, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23816, 26467, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23817, 26461, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23818, 26463, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23819, 23779, 109, 5, 0, 'Not suitable', 109, '2025-08-21 03:07:14', 1),
(23820, 23801, 109, 5, 0, 'Gommunication not good', 109, '2025-08-21 03:08:28', 1),
(23821, 23781, 109, 5, 0, 'Will not be suitable for sales', 109, '2025-08-21 03:08:51', 1),
(23822, 26473, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23823, 26481, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23824, 26486, 57, 7, 0, 'Candidate is ok ,Communication average, just try for Training Period, Sathya Team,', 154, '0000-00-00 00:00:00', 1),
(23825, 26480, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23826, 26489, 57, 7, 0, 'Candidate is ok, communication Average, 50/50, Pls confirm the salary and joining date,', 154, '0000-00-00 00:00:00', 1),
(23827, 26487, 156, 7, 0, 'candidate is ok, communication good. 2 years experience for teacher and 2 months experions for star health insurance. kindly check sustainability and kindly confirm the joinig date.', 154, '0000-00-00 00:00:00', 1),
(23828, 26487, 156, 7, 0, 'candidate is ok, communication good. 2 years experience for teacher and 2 months experions for star health insurance. kindly check sustainability and kindly confirm the joinig date.', 154, '0000-00-00 00:00:00', 1),
(23829, 26472, 105, 7, 0, 'candidate communication and performance is good.505 profile will check with her in the training period.also she is married xxamp have 2-year kid ', 154, '0000-00-00 00:00:00', 1),
(23830, 26488, 139, 4, 0, 'Selected for RM role\nhaving 1.5 yr exp\nLanguage known \ntamil,Telugu, canadam,hindi\nhave to finalize the package \nimmediate joiner ', 154, '0000-00-00 00:00:00', 1),
(23831, 26488, 139, 4, 0, 'Selected for RM role\nhaving 1.5 yr exp\nLanguage known \ntamil,Telugu, canadam,hindi\nhave to finalize the package \nimmediate joiner ', 154, '0000-00-00 00:00:00', 1),
(23832, 26482, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23833, 26488, 18, 7, 0, 'Selected for Gnanashekar Team. Expected 22k in Hand + PF and other benefits. Shall join on monday', 139, '2025-08-22 04:33:47', 1),
(23834, 26486, 59, 3, 0, 'Communication Ok 5050 for our roles 3 months with friend in star health stated food poison as reasons and sustainability too doubts a lot let us check in training and confirm', 57, '2025-08-22 06:46:11', 1),
(23835, 26489, 59, 1, 0, NULL, 57, '2025-08-22 06:47:03', 1),
(23836, 26487, 59, 3, 0, 'Communication Ok sounds good but sustainability doubts previous exp teaching and 3 months star health reasons for leaving not seems to be correct need to check in training and confirm doubtful in sustainability in our roles', 156, '2025-08-22 06:57:38', 1),
(23837, 26498, 74, 7, 0, 'he is ok with the profile ...completed bcom 24 passed out...fresher....daily new paper and milk distribution 4k monthly earnings..thnajavur cricket association ground mainatance part time....father driver lorry 10k earning.....own house travel time 5km....expected 12 to 13k...imeediate joining', 104, '0000-00-00 00:00:00', 1),
(23838, 26472, 59, 3, 0, 'Communication good fresher but married divorced having kid family need is there open to learn but not sure on sustainability in consideration to her commitments', 105, '2025-08-23 11:50:31', 1),
(23839, 26493, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23840, 26488, 60, 1, 0, NULL, 18, '2025-08-23 12:49:26', 1),
(23841, 26497, 149, 7, 0, 'CANDIDATE WAS GOOD AT COMMUNICATION AND INTERESTED IN SALES AND ALSO IN NEED OF JOB AND THE ONLY ISSUE WAS NEWLY MARRIED BUT SHE TOLD IT WAS NOT AN ISSUE FOR NEXT 3YRS AND SHE WAS READY FOR IMMEDIATE JOINING ALSO .LETS TRY FOR 7DAYS TRAINING', 154, '0000-00-00 00:00:00', 1),
(23842, 26485, 57, 7, 0, 'Candidate is ok, communication Good, pls cross check once again family background. Pls confirm the joining date xxamp Salary...', 154, '0000-00-00 00:00:00', 1),
(23843, 26483, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23844, 26479, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(23845, 26498, 59, 3, 0, 'Communication Ok fresher for telesales tried multiple and got oppor but he didnt prefer that due to salary and field having family commitments can give a try and check in training', 74, '2025-08-23 03:43:48', 1),
(23846, 26485, 59, 3, 0, 'Communication Good have few months exp in hathway huge personal issues out of family staying with friend need to check n training should not come with personal issues to the working environment let us check and confirm', 57, '2025-08-23 04:47:43', 1),
(23847, 26497, 60, 1, 0, NULL, 149, '2025-08-23 05:36:25', 1),
(23848, 26508, 74, 7, 0, 'She is ok with the profile completed BCA ...and joined in a yamaha backed process 2 years experience facing a acciednt releived from the job...earning 17k salary...father doing hotel biz..30k earning..mother goverment palvadi food maker 8k earning sister and brother studied....30km travel..managebale only...expected 15k salary...own house imediate joining...have laptop...kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(23849, 26509, 57, 7, 0, 'Candidate is ok , communication Good. 3 years experience, pls confirm the salary and date', 154, '0000-00-00 00:00:00', 1),
(23850, 26509, 57, 7, 0, 'Candidate is ok , communication Good. 3 years experience, pls confirm the salary and date', 154, '0000-00-00 00:00:00', 1),
(23851, 26508, 59, 3, 0, 'Communication Ok Fresher for our roles have exp in telecaling can give a try and check in our roles', 74, '2025-08-25 02:46:32', 1),
(23852, 26475, 30, 7, 3, 'Selected for ashfaq team dm suggested ctc upto 23k ', 162, '0000-00-00 00:00:00', 1),
(23853, 26494, 30, 7, 3, 'Selected for dm ashfaq team dm suggested ctc upto 23k', 162, '0000-00-00 00:00:00', 1),
(23854, 26500, 163, 5, 0, 'Lack of communication, will not suitable for sales.', 162, '0000-00-00 00:00:00', 1),
(23855, 26506, 163, 5, 0, 'Lack of consistency . not suitable for the organisation', 162, '0000-00-00 00:00:00', 1),
(23856, 26469, 163, 5, 0, 'lack of knowledge and communication . not suitable for sales job', 162, '0000-00-00 00:00:00', 1),
(23857, 26509, 59, 3, 0, 'Communication Good Can be trained in our roles and check in training ', 57, '2025-08-25 07:40:30', 1),
(23858, 26517, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23859, 26518, 105, 7, 0, 'candidate communication and performance is good.also she have 6 month exp in viza xxamp 6 month exp in star.will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(23860, 26521, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23861, 26518, 59, 3, 0, 'Communication ok have exp in telecalling same domain sustainability doubts giving reason for every chnages klet us try and check in training', 105, '2025-08-26 02:34:31', 1),
(23862, 26524, 57, 5, 0, 'candidate is ok, not suitable for voice process, reject the profile, previous show exp only', 154, '0000-00-00 00:00:00', 1),
(23863, 26529, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23864, 26532, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23865, 26533, 29, 7, 3, 'Esales RM', 154, '0000-00-00 00:00:00', 1),
(23866, 26535, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23867, 26475, 60, 1, 0, NULL, 30, '2025-08-28 04:42:21', 1),
(23868, 26494, 60, 1, 0, NULL, 30, '2025-08-28 04:43:24', 1),
(23869, 26507, 147, 7, 0, 'having two company experience and good communication skills ', 162, '0000-00-00 00:00:00', 1),
(23870, 26478, 30, 7, 3, 'sELECTED FOR DM ASHFAQ TEAM SUGGESTED CTC 22K', 154, '0000-00-00 00:00:00', 1),
(23871, 26507, 59, 3, 0, 'Communication Ok Fresher for our roles have exp in other domain can give a try and check in training', 147, '2025-08-29 10:16:21', 1),
(23872, 26537, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(23873, 26478, 60, 1, 0, NULL, 30, '2025-08-29 11:36:26', 1),
(23874, 26541, 30, 7, 4, '16k suggested ctc selected for dm ashfaq team', 154, '0000-00-00 00:00:00', 1),
(23875, 26542, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23876, 26536, 30, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23877, 26520, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23878, 26540, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23879, 26539, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23880, 26549, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(23881, 26538, 163, 5, 0, 'Lack of consistency and communication .', 162, '0000-00-00 00:00:00', 1),
(23882, 26538, 163, 5, 0, 'Lack of consistency and communication .', 162, '0000-00-00 00:00:00', 1),
(23883, 26551, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23884, 26550, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23885, 26546, 57, 7, 0, 'Candidate is ok , commmunication averager , will check with 7 days of training Period, confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(23886, 26544, 57, 7, 0, 'Candidate is ok, fresher just 50/50 profile, will look 7 days of training period Sathya team', 154, '0000-00-00 00:00:00', 1),
(23887, 26543, 89, 7, 0, 'Good skill. fresher . already part time working sales filed . ', 154, '0000-00-00 00:00:00', 1),
(23888, 26544, 59, 3, 0, 'Communication Ok fresher seems to ok for our role can be trained need to check in training', 57, '2025-08-30 01:32:48', 1),
(23889, 26546, 59, 1, 0, NULL, 57, '2025-08-30 01:33:42', 1),
(23890, 26543, 59, 3, 0, 'Communication ok fresher for our roles can give a try and check in training', 89, '2025-08-30 03:26:14', 1),
(23891, 26533, 59, 3, 0, 'Communication Good have exp in sales can give a try and check in our roles candidate is confident and open to learn let us try', 29, '2025-08-30 07:31:35', 1),
(23892, 26289, 59, 3, 0, 'Selected for IT employement Contractual terms and conditions approved Node + Mysql', 60, '0000-00-00 00:00:00', 1),
(23893, 26559, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23894, 26557, 161, 5, 0, 'poor communication', 154, '0000-00-00 00:00:00', 1),
(23895, 26558, 161, 5, 0, 'not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(23896, 26561, 161, 5, 0, 'very reserved and quiet in the interview', 154, '0000-00-00 00:00:00', 1),
(23897, 26555, 57, 5, 0, 'candidate is not suitable for sales profile, communication not Good.reject the profile..', 154, '0000-00-00 00:00:00', 1),
(23898, 26571, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(23899, 26572, 74, 5, 0, 'not suite for team', 154, '0000-00-00 00:00:00', 1),
(23900, 26565, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23901, 26576, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23902, 26575, 89, 7, 0, 'good skill. will Analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(23903, 26575, 89, 7, 0, 'good skill. will Analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(23904, 26569, 89, 7, 0, 'average skill but if trained he will do it right. fresher', 154, '0000-00-00 00:00:00', 1),
(23905, 26577, 105, 5, 0, 'candidate communication and performance is not good aslo very slow And Lazy.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23906, 25985, 105, 5, 0, 'candidate communication and performance is not good aslo very slow.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23907, 26581, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23908, 26569, 59, 3, 0, 'Communication Ok have exp in other domain open for our roles need to check in training and confirm', 89, '2025-09-03 03:01:47', 1),
(23909, 26575, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and confirm', 89, '2025-09-03 03:02:47', 1),
(23910, 26573, 139, 4, 0, 'Selected for RM role \nhaving good communication skill\nwill try for rm \nhave to negociate Package ', 154, '0000-00-00 00:00:00', 1),
(23911, 26566, 105, 5, 0, 'candidate communication little ok,but her performance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23912, 26586, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23913, 26585, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23914, 26573, 18, 7, 3, 'Shortlisted for Gnanashekar team. Ready to Join on Friday and please discsuss the package', 139, '2025-09-03 03:26:59', 1),
(23915, 26583, 163, 5, 0, 'Lack of consistency , doubt arises if he will stay for 2 years .', 162, '0000-00-00 00:00:00', 1),
(23916, 26541, 60, 1, 0, NULL, 30, '2025-09-03 05:42:19', 1),
(23917, 26573, 60, 1, 0, NULL, 18, '2025-09-03 05:47:41', 1),
(23918, 26592, 149, 7, 0, 'candidate was good at communication and interested in sales and incentives and also having confidence and he will at monday ', 154, '0000-00-00 00:00:00', 1),
(23919, 26587, 89, 7, 0, 'good skill. already Experienced at loan collection . ', 154, '0000-00-00 00:00:00', 1),
(23920, 26590, 137, 7, 0, 'candidate communication and vocie is good , she last company distance reason to relaving , timing not issue , so try for 7 days training period and salary exp 16k to 18k , past company salary is 18k ', 154, '0000-00-00 00:00:00', 1),
(23921, 26590, 59, 3, 0, 'Communication Ok have exp in Manapurram customer handling can give a try and check for our roles ', 137, '2025-09-04 01:28:37', 1),
(23922, 26599, 30, 7, 3, 'selected for rm suggested ctc 22k max', 162, '0000-00-00 00:00:00', 1),
(23923, 26592, 60, 1, 0, NULL, 149, '2025-09-04 04:43:37', 1),
(23924, 26591, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23925, 26595, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23926, 26596, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23927, 26606, 74, 5, 0, 'NOT SUITE FOR TEAM', 154, '0000-00-00 00:00:00', 1),
(23928, 26608, 105, 7, 0, 'candidate communication and performance is ok.5050 profile, will check with her in the traiining period', 154, '0000-00-00 00:00:00', 1),
(23929, 26609, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23930, 26612, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23931, 26611, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23932, 26604, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23933, 26587, 59, 3, 0, 'Communication Ok have exp in collections recently married fresher for insurance sales can give a try and check in training', 89, '2025-09-05 04:06:10', 1),
(23934, 26615, 74, 7, 0, 'she is ok with the profile completed bcom in sastra university..23 completed...8 month cub processing time so she not working and then joined in cub 1 and half year experience like operation and sales...21k salary no increment...work in medavakkam...father messon and brother studied college 5km travel from home to office..expected 18k..have laptop and bike immediate joining kindly check and confirm once', 154, '0000-00-00 00:00:00', 1),
(23935, 26563, 163, 5, 0, 'LACK OF COMMUNICATION AND KNOWLEDGE ', 154, '0000-00-00 00:00:00', 1),
(23936, 26562, 30, 7, 3, 'selected for dm vasu team suggested ctc upto 20k', 154, '0000-00-00 00:00:00', 1),
(23937, 26610, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23938, 26602, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23939, 26615, 59, 3, 0, 'Communication Ok have exp in same domain for 1.5 yrs can be trained in our roles worked in City union bank chennai will check in training and confirm\n', 74, '2025-09-06 12:09:12', 1),
(23940, 26619, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23941, 26620, 105, 5, 0, 'candidate communication and performance is not good.also have star agent person is frnd. sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23942, 26621, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23943, 26608, 59, 3, 0, 'selected for gopinath team. have experience in justdial. lets check in training and confirm', 105, '2025-09-06 02:53:03', 1),
(23944, 26599, 60, 1, 0, NULL, 30, '2025-09-06 03:20:54', 1),
(23945, 26631, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(23946, 26632, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(23947, 26634, 74, 7, 0, 'he is ok with the profile completed bba ..fresher...25 passed...father driver...2 brother....parttime...in roadside shop.....work...location 10km.....ready to ARRANGE LAPTOP........salary 12k expected..imeediate joining...', 154, '0000-00-00 00:00:00', 1),
(23948, 26633, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23949, 18243, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23950, 26635, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23951, 26629, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23952, 26639, 74, 5, 0, 'not suite', 154, '0000-00-00 00:00:00', 1),
(23953, 26636, 137, 7, 0, 'Candidate communication and voice very good and very interested in sales and voice process, so try for 7 days training period of exp salary is 16k ', 154, '0000-00-00 00:00:00', 1),
(23954, 26630, 74, 7, 0, 'He is ok with profile completed bsc mohammed sathak chennai - 22,,,1 and half year prepared for govt exam....muthhod finance 7 month intenship...like telecalling..in thanjavur....cafs interview attend and got selected not joined...last year end...father passed...mother sister worked in it bangalore....expected 12 to 13...have laptop...immedaite joining....5 km travel only kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(23955, 26638, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23956, 26640, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23957, 26641, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23958, 26627, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23959, 26628, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23960, 26630, 59, 3, 0, 'communication ok have exp in Muthoot for 7 months previously we have given offer earlier and not joined now rehire can give a try and check', 74, '2025-09-08 05:52:15', 1),
(23961, 26634, 59, 1, 0, NULL, 74, '2025-09-08 05:55:00', 1),
(23962, 26642, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23963, 26646, 57, 5, 0, 'candidate is not suitable for sales profile, sounds not good, interested in Agent feild, reject the profile', 154, '0000-00-00 00:00:00', 1),
(23964, 26649, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23965, 26626, 105, 5, 0, 'candidate communication and perfomance is ok.but sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(23966, 26648, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23967, 26679, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23968, 26680, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23969, 26651, 147, 7, 0, 'Fresher good confident English manageable good in Kannada and Telugu salary what company decide', 162, '0000-00-00 00:00:00', 1),
(23970, 26677, 30, 7, 4, 'Suggested ctc upto 23k selected for rm friday or monday he will join', 162, '0000-00-00 00:00:00', 1),
(23971, 26650, 74, 7, 0, 'she is ok with the profile completed mcom in parttime 23 completed...and worked in a auditing office 1 year --12k salary ...father worked as a cashier 18k salary..rental house and worked in karur backend work 15k salary in a textile industry..due to health issue releived...speaked well....join imeediately..expected 12 to 15k..have laptop..immediate joining..kindly check and confirm', 154, '0000-00-00 00:00:00', 1),
(23972, 26650, 59, 3, 0, 'Communication Ok career gap for 2yrs internal team reference sounds confident let us try in training', 74, '2025-09-09 03:36:24', 1),
(23973, 26644, 30, 7, 3, 'Suggested ctc upto 22k max selected for dm immediate joining', 162, '0000-00-00 00:00:00', 1),
(23974, 26677, 60, 1, 0, NULL, 30, '2025-09-09 05:37:38', 1),
(23975, 26644, 60, 1, 0, NULL, 30, '2025-09-09 05:38:57', 1),
(23976, 26643, 30, 7, 3, 'Selected for rm suggested ctc upto 23k max immediate joining', 154, '0000-00-00 00:00:00', 1),
(23977, 26643, 60, 1, 0, NULL, 30, '2025-09-10 11:00:41', 1),
(23978, 26580, 30, 7, 0, 'For BDM profile suggested ctc 7lac confirm from your end for the mail confirmation for the offer so the he will drop the mail for resignation to star healt', 60, '0000-00-00 00:00:00', 1),
(23979, 26651, 59, 3, 0, 'Communication Average career gap can give atry and check in our training ', 147, '2025-09-10 11:59:27', 1),
(23980, 26746, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23981, 26700, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23982, 26731, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23983, 26739, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23984, 26752, 29, 7, 2, 'Frequent Change in job, have to check, Karthika team 22k salary, 2 lac and 10 SIP, Sept and oct, then 25k from Nov.', 154, '0000-00-00 00:00:00', 1),
(23985, 26747, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23986, 26741, 137, 5, 0, 'She not fit for my team ', 154, '0000-00-00 00:00:00', 1),
(23987, 26740, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23988, 26753, 30, 7, 3, 'Selected for dm suggested ctc max 21k', 162, '0000-00-00 00:00:00', 1),
(23989, 26722, 163, 5, 0, 'Lack of consistency and attending interview for parents force .', 162, '0000-00-00 00:00:00', 1),
(23990, 26753, 60, 1, 0, NULL, 30, '2025-09-10 06:36:29', 1),
(23991, 26636, 59, 3, 0, 'Communication ok fresher open for sales profiles need to check in training', 137, '2025-09-10 06:51:27', 1),
(23992, 26752, 59, 3, 0, 'Communication Ok have exp but no sustainability with multiple reasons can give a try and check sep oct 2L life plus 10K sip then 25K net take home', 29, '2025-09-10 07:07:37', 1),
(23993, 26763, 57, 7, 0, 'candidate is ok, 50/50 profile, will understand 7 days of training period, provide Freshers Salary, thanks', 154, '0000-00-00 00:00:00', 1),
(23994, 26760, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23995, 26764, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23996, 26766, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23997, 26762, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23998, 26765, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(23999, 26768, 57, 7, 0, 'candidate is ok. communication average. totally 2yrs + Experience, pls cofirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(24000, 26767, 163, 8, 0, 'DID NOT attend the interview', 162, '0000-00-00 00:00:00', 1),
(24001, 26761, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24002, 26768, 59, 3, 0, 'Communication ok previously attended long back and gave offer but not joined this is 2nd chance 5050 sustainability let us try', 57, '2025-09-12 11:24:42', 1),
(24003, 26763, 59, 3, 0, 'Communication ok fresher need to check in training', 57, '2025-09-12 11:25:54', 1),
(24004, 26774, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24005, 26580, 60, 1, 0, NULL, 30, '2025-09-12 01:03:45', 1),
(24006, 26771, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24007, 26793, 155, 5, 0, 'expecting non voice and early logout', 154, '0000-00-00 00:00:00', 1),
(24008, 26783, 155, 5, 0, 'expecting non voice', 154, '0000-00-00 00:00:00', 1),
(24009, 26769, 155, 5, 0, 'high non voice preferred... sistainability doubts', 154, '0000-00-00 00:00:00', 1),
(24010, 26817, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24011, 26816, 57, 7, 0, 'Candidate is ok,will check with 7 days of training period. confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(24012, 26823, 105, 5, 0, 'candidate communication iand performance is ok.but little attitude also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24013, 26819, 105, 5, 0, 'candiate communication and performance is not Good.Also Sustainable Is doubt', 154, '0000-00-00 00:00:00', 1),
(24014, 26819, 105, 5, 0, 'candiate communication and performance is not Good.Also Sustainable Is doubt', 154, '0000-00-00 00:00:00', 1),
(24015, 26730, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24016, 26729, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24017, 26727, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24018, 26726, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24019, 26826, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24020, 26825, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24021, 26825, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24022, 26851, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24023, 26821, 57, 5, 0, 'Candidate is not ok, sounds not good, confident level very low, reject the profile', 154, '0000-00-00 00:00:00', 1),
(24024, 26852, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24025, 26853, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24026, 26855, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24027, 26854, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24028, 26856, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24029, 26816, 59, 3, 0, 'Communication Ok have exp but not exactly in insurance sales can be trained in our roles and check', 57, '2025-09-15 06:54:44', 1),
(24030, 26858, 57, 5, 0, 'candidate suitable for collection work, he not interested appt, Sounds not good.', 154, '0000-00-00 00:00:00', 1),
(24031, 26862, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24032, 26863, 57, 5, 0, 'candidate is not suitable for sales profile, communication not good, low confident level, reject', 154, '0000-00-00 00:00:00', 1),
(24033, 26867, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24034, 26861, 30, 7, 3, 'suggested ctc 25k for rm ', 162, '0000-00-00 00:00:00', 1),
(24035, 26865, 105, 7, 0, 'candidate communication and performance is good.5050 profile will check with her in the training period.also currently she in urapakkam distance is long,but she told to relocate after a month.', 154, '0000-00-00 00:00:00', 1),
(24036, 26865, 59, 3, 0, 'Communication OK fresher our insurance sales cam along with friends only she got selected fr this role family need is there can be trained in our roles', 105, '2025-09-16 03:24:14', 1),
(24037, 26871, 105, 5, 0, 'candidate communication and performance is not good.also his understanding knowledge is very poor.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24038, 26872, 105, 5, 0, 'candidate communication and performance is not good.also he performed very lazy amnd drowsy .then he is dilemma person,so sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24039, 26848, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24040, 26873, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24041, 26866, 140, 4, 0, 'Having sales skills', 154, '0000-00-00 00:00:00', 1),
(24042, 26875, 30, 7, 3, 'Selected for vasu team dm suggested upto 18k ctc', 162, '0000-00-00 00:00:00', 1),
(24043, 26876, 163, 5, 0, 'LACK OF INTEREST AND COMMUNICATION ', 162, '0000-00-00 00:00:00', 1),
(24044, 26562, 60, 1, 0, NULL, 30, '2025-09-17 05:19:31', 1),
(24045, 26875, 60, 1, 0, NULL, 30, '2025-09-17 05:20:17', 1),
(24046, 26861, 60, 1, 0, NULL, 30, '2025-09-17 05:21:13', 1),
(24047, 26888, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24048, 26890, 57, 7, 0, 'Candidate is ok, communication is good, 1yr exp lenskart sales executive, but salary expectation High 22k +, confirm the salary and joining date.. 70/30 profile Not worth for 20k + salary, pls crossc check once again, Thanks', 154, '0000-00-00 00:00:00', 1),
(24049, 26889, 59, 5, 0, 'Looking for Teaching profile till Nov she is looking for job already she applied multiple schools and colleges and awaiting for the results', 154, '0000-00-00 00:00:00', 1),
(24050, 26890, 59, 3, 0, 'Communication Ok have exp can give a try in our roles ', 57, '2025-09-18 04:06:27', 1),
(24051, 26884, 74, 7, 0, 'She is ok with the profile fresher completed bcom and diploma in co operative society management.. father farmer, mother worked in loan process in goverment rural officer salary 15k....brother worked in a mothilal loan 15k salary...have laptop expected 15k..kindly check once and confirm..speaked well and know about the job clearly so we try...immediate joining...travel time 20mins only.', 154, '0000-00-00 00:00:00', 1),
(24052, 26904, 59, 5, 0, 'Seems to be slow and not aggressive for sales alos preferred to go with non voice family need is there', 154, '0000-00-00 00:00:00', 1),
(24053, 26874, 105, 7, 0, 'candidate communication and Performance is ok.3-months experiance in care health.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(24054, 26891, 105, 5, 0, 'candidate communication is good,but performance is little poor.also he is confusing in the term of process.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24055, 26894, 140, 5, 0, 'Not enough sales skills, Over confident', 154, '0000-00-00 00:00:00', 1),
(24056, 26907, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24057, 26910, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24058, 26901, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24059, 26913, 59, 5, 0, 'Communication Ok for sales fresher have exp in retention but not suits with our budget CTC exp is 3LPA communicative but doubts in handling our sales pressure 2nd round GK sir reject', 154, '0000-00-00 00:00:00', 1),
(24060, 26915, 105, 7, 0, 'candidate communication and performance is little ok but 5050 profile .also he previously attened in our company past 6-month ago.now his communication is ok.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(24061, 26918, 57, 7, 0, 'Candidate is ok , 3yr expe different domain communicatiom average, but pls confirm the salary\nThanks ', 154, '0000-00-00 00:00:00', 1),
(24062, 26081, 105, 5, 0, 'canidate communication and performance is ok.but she is much more intrested in his core iT.Presure handling and sustainable is doubt ', 154, '0000-00-00 00:00:00', 1),
(24063, 26874, 59, 3, 0, 'Communication Ok 3 months exp in care Health family need is there 5050 need to check in training ', 105, '2025-09-19 04:41:26', 1),
(24064, 26915, 59, 3, 0, 'Previously attended with us and got rejected later got some exp and tried again 5050 check in training', 105, '2025-09-19 04:43:26', 1),
(24065, 26906, 59, 5, 0, 'Good in Communication Too long Distance also he is open for IT Vacancies for time being he is looking into this ', 154, '0000-00-00 00:00:00', 1),
(24066, 26895, 59, 5, 0, 'she need time to decide focusing only on the salary and much comfort to work in non voice much', 154, '0000-00-00 00:00:00', 1),
(24067, 26909, 59, 5, 0, 'No sustainability 1.8 yrs 3 companies comparitively he is ok with non voice only for sales not suitable', 154, '0000-00-00 00:00:00', 1),
(24068, 26916, 59, 5, 0, 'open for non voice completely will not sustain in our sales profile', 154, '0000-00-00 00:00:00', 1),
(24069, 26914, 59, 5, 0, 'mentioned exp as same for 6 months but voice no clarity and not suits for our roles will not handle our pressure', 154, '0000-00-00 00:00:00', 1),
(24070, 26884, 59, 3, 0, 'Communication Ok fresher open for insurance sales can be trained and check ', 74, '2025-09-20 10:44:34', 1),
(24071, 26911, 59, 3, 0, 'Have exp in digital marketing and a gap too need to train for our roles 2yrs NDA for Digital Marketing', 154, '0000-00-00 00:00:00', 1),
(24072, 26935, 156, 7, 0, 'candidate is ok, communication good. 9months exp in Hdb financial services cross check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24073, 26934, 57, 7, 0, 'Candidate is ok. 9 m exp com good. ', 154, '0000-00-00 00:00:00', 1),
(24074, 26866, 29, 7, 3, 'Porrselvan team,', 140, '2025-09-20 06:49:14', 1),
(24075, 26866, 59, 3, 0, 'Communicaton Ok have exp in sales yes bacnk can be trained in our roles based on gaurav sir feedback proceeded withthis salary', 29, '2025-09-20 06:52:00', 1),
(24076, 26934, 59, 1, 0, NULL, 57, '2025-09-22 10:06:39', 1),
(24077, 26930, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24078, 26929, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24079, 26912, 155, 5, 0, 'candidate is very slow. will not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24080, 26935, 59, 1, 0, NULL, 156, '2025-09-22 10:20:54', 1),
(24081, 26880, 30, 7, 2, 'Suggested ctc 20k for vasu team dm', 162, '0000-00-00 00:00:00', 1),
(24082, 26951, 11, 7, 0, 'Selected forbE sales', 154, '0000-00-00 00:00:00', 1),
(24083, 26956, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24084, 26956, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24085, 26899, 59, 5, 0, 'Communication Ok Fresher much focus to go with Cyber security Role not much comfort with voice as of now if he didnt get any opportunities if he comes in future let us try', 154, '0000-00-00 00:00:00', 1),
(24086, 26886, 155, 5, 0, 'not responding for anything in the interview and very slow so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24087, 26886, 155, 5, 0, 'not responding for anything in the interview and very slow so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24088, 26919, 155, 5, 0, 'looking for IT max', 154, '0000-00-00 00:00:00', 1),
(24089, 26922, 155, 5, 0, 'communication ok, but mostly looking for IT, sustainability in our role is doubtful', 154, '0000-00-00 00:00:00', 1),
(24090, 26920, 155, 5, 0, 'looking for IT max. sustainability for our roles is doubtful', 154, '0000-00-00 00:00:00', 1),
(24091, 26955, 139, 4, 0, 'Selected for RM role \ndont have exp in sales \nwe can try for RM ', 154, '0000-00-00 00:00:00', 1),
(24092, 26957, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24093, 26957, 139, 4, 0, 'Selected for RM role \nhaving good communication skill \n1 yr exp in insurance sales \nbasic knowledge about health \n', 154, '0000-00-00 00:00:00', 1),
(24094, 26958, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(24095, 26960, 59, 5, 0, 'Looking for complete non voice process will not sustain and sometimes seems to have stammering too', 154, '0000-00-00 00:00:00', 1),
(24096, 26953, 59, 5, 0, 'Not serious with the jobs long career gap and no job turnouts attended multiple/joined and left but not opening on these details much seems to give lot of stories', 154, '0000-00-00 00:00:00', 1),
(24097, 26954, 59, 5, 0, 'He is looking for customer support roles only and not much open for sales roles 5050 will not sustain and handle pressure in our roles', 154, '0000-00-00 00:00:00', 1),
(24098, 26952, 59, 5, 0, 'Fresher need to open up a lot seems to be much reserved will not sustain and handle our pressure not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(24099, 26952, 59, 5, 0, 'Fresher need to open up a lot seems to be much reserved will not sustain and handle our pressure not suitable for our roles', 154, '0000-00-00 00:00:00', 1),
(24100, 26961, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(24101, 26961, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(24102, 26944, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24103, 26918, 59, 3, 0, 'Communication Ok have complete exp in pharma sales Open for insurance and fresher to learn internal team madhan reference closed friend of Madhan itseems.Let us try', 57, '2025-09-23 08:41:24', 1),
(24104, 26880, 60, 1, 0, NULL, 30, '2025-09-23 10:26:10', 1),
(24105, 26962, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24106, 26957, 18, 7, 3, 'Selected for Gnanashekar team. Shall join on 6 Oct. Please negotiate the salary as per your observation and release the offer', 139, '2025-09-23 12:02:30', 1),
(24107, 26955, 18, 7, 3, 'Shortlisted for Gnanashekar team. Offer 27k Net in Hand excluding PF and he is ready to join on 6 Oct. ', 139, '2025-09-23 12:03:17', 1),
(24108, 26965, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24109, 26893, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24110, 26893, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24111, 26969, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24112, 26968, 29, 7, 2, 'pay fixed exc PF for first 3 month, based on perfo can add PF, min 2L*2 months req and 10K SIP*3 Months', 154, '0000-00-00 00:00:00', 1),
(24113, 26964, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24114, 26957, 60, 1, 0, NULL, 18, '2025-09-24 12:18:19', 1),
(24115, 26955, 60, 1, 0, NULL, 18, '2025-09-24 12:19:43', 1),
(24116, 26985, 105, 7, 0, 'Candidate Interviewed By Syed. as discussed with them candidate communication and performance is ok. She have 1 year experience in ar tellicalling. But her distance is to long.will check With her in the training period. ', 154, '0000-00-00 00:00:00', 1),
(24117, 26974, 137, 7, 0, 'candidate communication skill and vocie its average , but work needed person , exp salary its 16k to 18k , so try for 7 days training period ', 154, '0000-00-00 00:00:00', 1),
(24118, 26977, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24119, 26980, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24120, 26986, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24121, 26982, 152, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24122, 26981, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24123, 26978, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24124, 26968, 59, 3, 0, 'Communication Ok have exp in Byjus and software producct sales can be trained in our roles committed to give PF Pt after 3 months ', 29, '2025-09-24 07:03:04', 1),
(24125, 26985, 59, 1, 0, NULL, 105, '2025-09-24 11:03:44', 1),
(24126, 26974, 59, 3, 0, 'Communication Ok fresher career gap of 2yrs need to check in training and confirm', 137, '2025-09-25 10:11:04', 1),
(24127, 26983, 155, 5, 0, 'no having clear idea about going to sales or IT. his core interest is towards IT job only, sustainability doubts. he wil jump if he gets IT Job', 154, '0000-00-00 00:00:00', 1),
(24128, 26995, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24129, 26994, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24130, 26975, 30, 7, 3, 'selected for vasu team dm suggested ctc 23k', 154, '0000-00-00 00:00:00', 1),
(24131, 26987, 59, 5, 0, 'Have exp in customer handling but not open for renewal and sales calling salary exp is very high current exp is with Star health recently got increment and left looking for the salary much', 154, '0000-00-00 00:00:00', 1),
(24132, 26989, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24133, 26989, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24134, 27002, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24135, 27003, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24136, 27010, 156, 7, 0, 'candidate is ok, communication average. 5 months exp for al arab arafa manpower consultancy. pls cross check sustainabiltiy and confirm the joining date.', 104, '0000-00-00 00:00:00', 1),
(24137, 27014, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24138, 26998, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24139, 27010, 59, 3, 0, 'Communication Ok have exp but not exactly in our domain can be trained need to check in training', 156, '2025-09-26 05:16:43', 1),
(24140, 27012, 30, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(24141, 27000, 105, 5, 0, 'candidate communication and performance is not good.aslo she mention in her profile have experiance in telecalling.but she is not communicating much more', 154, '0000-00-00 00:00:00', 1),
(24142, 27013, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24143, 27021, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24144, 26759, 105, 5, 0, 'candidate communication and performance is not good also he core is difffrent.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24145, 26759, 105, 5, 0, 'candidate communication and performance is not good also he core is difffrent.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24146, 27023, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24147, 27024, 30, 7, 3, 'Selected for Dm Ashfaq team suggested ctc 22k immediate joining', 162, '0000-00-00 00:00:00', 1),
(24148, 27024, 60, 1, 0, NULL, 30, '2025-09-27 06:30:59', 1),
(24149, 26975, 60, 1, 0, NULL, 30, '2025-09-27 06:32:30', 1),
(24150, 27044, 30, 7, 3, 'Selected for rm suggested ctc 25k', 162, '0000-00-00 00:00:00', 1),
(24151, 27041, 30, 7, 3, 'suggested ctc 26k for rm', 162, '0000-00-00 00:00:00', 1),
(24152, 27030, 11, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24153, 27029, 105, 5, 0, 'candidate communicartion and performance is not good.aslo he is drowsy and sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(24154, 27040, 59, 5, 0, 'careergap also not serious with the job necessity just shifted companies to companies with no valid reasons also not showing much interest with the job roles will not sustain', 159, '0000-00-00 00:00:00', 1),
(24155, 27043, 59, 5, 0, 'looking for non voice process and not comfort with the targets', 159, '0000-00-00 00:00:00', 1),
(24156, 27042, 59, 5, 0, 'Not suitable for our roles', 104, '0000-00-00 00:00:00', 1),
(24157, 27025, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary. kindly confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(24158, 27051, 30, 7, 3, 'Selected for rm suggested ctc upto 4 to 4.3lacs', 162, '0000-00-00 00:00:00', 1),
(24159, 27039, 30, 7, 3, 'ctc 25k if k means will go for rm profile', 162, '0000-00-00 00:00:00', 1),
(24160, 27049, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24161, 27049, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24162, 27050, 105, 5, 0, 'candidate communication and perfromance is not good.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24163, 27025, 59, 3, 0, 'Communication Ok fresher for our roles 5050 need to check in training anfd confirm\n', 156, '2025-09-30 06:48:31', 1),
(24164, 27051, 60, 1, 0, NULL, 30, '2025-10-03 01:29:52', 1),
(24165, 27055, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24166, 27054, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24167, 27052, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24168, 27052, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24169, 27059, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24170, 27044, 60, 1, 0, NULL, 30, '2025-10-03 06:06:38', 1),
(24171, 27041, 60, 1, 0, NULL, 30, '2025-10-03 06:07:30', 1),
(24172, 27039, 60, 1, 0, NULL, 30, '2025-10-03 06:08:27', 1),
(24173, 27058, 59, 5, 0, 'Looking for non voice roles only', 154, '0000-00-00 00:00:00', 1),
(24174, 27065, 163, 5, 0, 'lack of communication and knowledge', 162, '0000-00-00 00:00:00', 1),
(24175, 27064, 161, 2, 0, 'his location is in vandalur. communication is okay I moved this to charles and gokul sir for next level they are okay with the profile but the candidate is thinking about distance and salary package. He is not interested in sales too', 154, '0000-00-00 00:00:00', 1),
(24176, 27019, 89, 7, 0, 'Average skill. already 3 month working at visa tele calling. will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(24177, 27068, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24178, 27068, 155, 2, 0, 'communication ok, 50-50 for our role, but not comfort with going to direct meetings, need time to think', 154, '0000-00-00 00:00:00', 1),
(24179, 27078, 155, 5, 0, 'communication slang and pronouncation of speaking is not good and prefers HR Role', 154, '0000-00-00 00:00:00', 1),
(24180, 27061, 155, 5, 0, 'communication and slang of speaking is not good, so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24181, 27079, 155, 5, 0, 'communication average, but need to open up a lot and not seem to be much comfort and searching for IT also so sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(24182, 27075, 155, 5, 0, 'sustainability issues, 10 months 2 companies and salary exp also high', 154, '0000-00-00 00:00:00', 1),
(24183, 27073, 155, 5, 0, 'sustainability issues, 10 months 2 companies and salary exp also high', 154, '0000-00-00 00:00:00', 1),
(24184, 27080, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24185, 27074, 59, 2, 0, 'Communication Good have exp in front office for a long much focused on hr roles now need to hold and check later ', 154, '0000-00-00 00:00:00', 1),
(24186, 27072, 59, 5, 0, 'Distance too long also stammering issues he has will have difficulties in handling our roles not suitable', 154, '0000-00-00 00:00:00', 1),
(24187, 27076, 59, 5, 0, 'much focused on data entry and not much interested to go with sales callings', 154, '0000-00-00 00:00:00', 1),
(24188, 27063, 163, 5, 0, 'Lack of communication and confidence ', 162, '0000-00-00 00:00:00', 1),
(24189, 27057, 105, 5, 0, 'candidate communication and performance is not good.also he is drowsy and very low.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24190, 27066, 59, 5, 0, 'Not much necessity withh the jobs just for time being he is looking fr the jobs', 154, '0000-00-00 00:00:00', 1),
(24191, 27077, 59, 5, 0, 'Communication was good and had previous exp in ICICI life 5050 try so asked him to come back after luch for 2nd round but he didnt turned up', 154, '0000-00-00 00:00:00', 1),
(24192, 27062, 30, 7, 3, 'Selected for Dm he is totally fresher suggested ctc upto 18k But good communication skill', 154, '0000-00-00 00:00:00', 1),
(24193, 27062, 30, 7, 3, 'Selected for Dm he is totally fresher suggested ctc upto 18k But good communication skill', 154, '0000-00-00 00:00:00', 1),
(24194, 27019, 59, 3, 0, 'Communication just 2 months exp in Vizza verified the documents considerin a sfresher we processed', 89, '2025-10-07 10:36:11', 1),
(24195, 27088, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24196, 27087, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24197, 27089, 59, 5, 0, 'Not suitable for our roles no clarity with her previous work will not handle our work pressure', 154, '0000-00-00 00:00:00', 1),
(24198, 27092, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24199, 27090, 11, 7, 0, 'Selected for E sales ', 154, '0000-00-00 00:00:00', 1),
(24200, 27086, 163, 5, 0, 'Left without informing after 1st round (Hr round)', 162, '0000-00-00 00:00:00', 1),
(24201, 27062, 60, 1, 0, NULL, 30, '2025-10-07 06:01:11', 1),
(24202, 27098, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24203, 27099, 59, 5, 0, 'Not suitable for our roles will not sustain and handle our roles', 154, '0000-00-00 00:00:00', 1),
(24204, 27060, 57, 7, 0, 'Candidate is ok, 1.5 yrs exp. confirm the joining date xxamp salary,', 154, '0000-00-00 00:00:00', 1),
(24205, 27105, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24206, 27106, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24207, 27102, 59, 2, 0, 'Communication Ok but seems not much profiled to our roles even she has multiple exp in telecalling salary is very high she left without attending the final round of discussion assigned to gnanasekar(Abdul on behalf)', 154, '0000-00-00 00:00:00', 1),
(24208, 27109, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24209, 27108, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24210, 27113, 59, 5, 0, 'Not suitable digital marketing roles fresher no basic ideas', 154, '0000-00-00 00:00:00', 1),
(24211, 27114, 105, 5, 0, 'candidate communication and performance is not good.also he is drowsy and very low understadning.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24212, 27081, 59, 5, 0, 'no basic knowledge not suitable for our roles will not handle the sales callings', 154, '0000-00-00 00:00:00', 1),
(24213, 25568, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24214, 25568, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24215, 27118, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24216, 27124, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24217, 27060, 59, 1, 0, NULL, 57, '2025-10-10 06:07:10', 1),
(24218, 26993, 59, 5, 0, 'looking for non voice not open for targets in sales', 104, '0000-00-00 00:00:00', 1),
(24219, 27123, 59, 5, 0, 'not much aggressive to our sales will not handle our work roles not suitable', 104, '0000-00-00 00:00:00', 1),
(24220, 27128, 11, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24221, 27122, 59, 2, 0, 'rebar referrence not ok woth the terms and conditions for IT positions', 104, '0000-00-00 00:00:00', 1),
(24222, 27100, 163, 5, 0, 'LACK OF HONESTY', 162, '0000-00-00 00:00:00', 1),
(24223, 27116, 163, 5, 0, 'LACK OF OFFICE MANNERS , COMMUNICATION AND KNOWLEDGE', 162, '0000-00-00 00:00:00', 1),
(24224, 27125, 163, 5, 0, 'ATTENDED 2 ROUNDS , WENT FOR LUNCH AND NEVER SHOWED UP FOR THIRD ROUND', 162, '0000-00-00 00:00:00', 1),
(24225, 27132, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24226, 27136, 59, 5, 0, 'Not much suitable for our roles will not handle our work pressurenot suits for sales', 154, '0000-00-00 00:00:00', 1),
(24227, 27140, 155, 5, 0, 'not much active and will not handle pressure for sales and sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(24228, 27139, 155, 5, 0, 'will not sustain in working with targets. sustainability doubts', 154, '0000-00-00 00:00:00', 1),
(24229, 27137, 105, 5, 0, 'candidate communication and performance is not good.also attire is very poor sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24230, 27142, 59, 5, 0, 'worked in different domain for a long and 6 months in calling,pressure handling and sustainability doubts as she is not much comfort withe sales callings', 154, '0000-00-00 00:00:00', 1),
(24231, 27141, 59, 5, 0, 'not open for sales calling looking for support roles only', 154, '0000-00-00 00:00:00', 1),
(24232, 27152, 59, 5, 0, 'she is looking for core accounts profile only not open for sales', 154, '0000-00-00 00:00:00', 1),
(24233, 27153, 59, 5, 0, 'Complete medical billing exp fr more than 5yrs since he is not getting any relevant now he is looking for these sort of roles also he is keen lookin for the same profile will not sustain in our roles for a long', 154, '0000-00-00 00:00:00', 1),
(24234, 27154, 59, 5, 0, 'Not suitable for our roles long career gap and no clarity to go with the particular roles ', 154, '0000-00-00 00:00:00', 1),
(24235, 27155, 59, 5, 0, 'Looking only for customer support roles and not open for sales callings\n', 154, '0000-00-00 00:00:00', 1),
(24236, 27157, 59, 5, 0, 'MSC graducate and looking for coreIT vacancy for time being he is looking into this fresher', 154, '0000-00-00 00:00:00', 1),
(24237, 27151, 105, 5, 0, 'candidate communication and performace is not good.also attitude charater and attire is not good.sustainablke is doubt', 154, '0000-00-00 00:00:00', 1),
(24238, 27150, 105, 5, 0, 'candidate communication and performance is little not good.also long distance.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24239, 27149, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24240, 27149, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24241, 27130, 59, 5, 0, 'Not completely open for sales having a kind of attitude and being a fresher his salary expectation is very highWill not sustain in our roles ', 154, '0000-00-00 00:00:00', 1),
(24242, 27164, 89, 7, 0, 'good skill. she has basic knowledge from sales marketing. money needed person . will analysis 7 days training', 154, '0000-00-00 00:00:00', 1),
(24243, 27161, 89, 5, 0, 'NO BASIC SKILL', 154, '0000-00-00 00:00:00', 1),
(24244, 27163, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24245, 27160, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24246, 27165, 59, 5, 0, 'sustainability issues In1.3yrs travelled with 3 companies and this is 4th also there is no proper explanation for the exit from the previous stated some issues related to posh and alos the previous reason also not seems to be valid', 154, '0000-00-00 00:00:00', 1),
(24247, 27164, 59, 3, 0, 'Communication Ok fresher need to check in training and confirm based on manager approval we have given him the joining', 89, '2025-10-13 05:06:27', 1),
(24248, 26990, 59, 5, 0, 'not suits for our roles', 60, '0000-00-00 00:00:00', 1),
(24249, 27162, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24250, 27177, 105, 5, 0, 'candidate communication and performance is good.but she is preparing for some gov exams.but sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24251, 27169, 105, 5, 0, 'Candidate communication and perfomance is not good.Sensitive type she does not handle the pressure.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24252, 27169, 105, 5, 0, 'Candidate communication and perfomance is not good.Sensitive type she does not handle the pressure.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24253, 27156, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24254, 27172, 163, 5, 0, 'dOES NOT KNOW KANNADA AND NO PROPER COMMUNICATION IN ENGLISH', 162, '0000-00-00 00:00:00', 1),
(24255, 27178, 30, 7, 3, 'sugegsted ctc 20k for dm vasu team nov 1st week joining', 162, '0000-00-00 00:00:00', 1),
(24256, 27175, 105, 7, 0, 'candidate communication and performance is ok.but 5050 profile,will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(24257, 27174, 105, 5, 0, 'Candidate communication and perfomance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24258, 27173, 105, 5, 0, 'Candidate communication and perfomance is not good.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24259, 27182, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24260, 27133, 57, 4, 0, 'Candidate is ok , communication Average, kindly confirm the joining date xxamp Salary, ', 154, '0000-00-00 00:00:00', 1),
(24261, 27181, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24262, 27175, 59, 1, 0, NULL, 105, '2025-10-15 12:38:03', 1),
(24263, 27187, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24264, 27187, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24265, 27184, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24266, 27186, 105, 2, 0, 'candidate communication and performance is good.aslo he have 1.09 yrs exp in just dail. expected TH as 24k per month but i convinced for 20k ctc per month.he is reliving on next month 5th kindly follow with him and procced joining for after 5th of nov 2025.', 154, '0000-00-00 00:00:00', 1),
(24267, 27186, 105, 2, 0, 'candidate communication and performance is good.aslo he have 1.09 yrs exp in just dail. expected TH as 24k per month but i convinced for 20k ctc per month.he is reliving on next month 5th kindly follow with him and procced joining for after 5th of nov 2025.', 154, '0000-00-00 00:00:00', 1),
(24268, 27190, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24269, 27195, 105, 5, 0, 'candidate communication and performance is ok.but she is intrested in Non voice process also she said she is sensitive type sos sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24270, 27191, 59, 2, 0, 'He is looking for UI UX givn him the complete info about the profile and the terms need to check if he comes back let us hold and confirm', 154, '0000-00-00 00:00:00', 1),
(24271, 27196, 59, 2, 0, 'Communication Average for Digital marketing just SEM Exp Open to learn Written content is not upto the expectation need to check via meet and confirm later', 154, '0000-00-00 00:00:00', 1),
(24272, 27185, 59, 5, 0, 'Not open for sales calling looking for non voice only', 154, '0000-00-00 00:00:00', 1),
(24273, 27188, 139, 7, 0, 'Shortlisted for RM role\nhaving good communication skills\nhaving relevant exp in sales \npackage have to negociate ', 154, '0000-00-00 00:00:00', 1),
(24274, 27197, 59, 2, 0, 'Not much suits for our roles but need to check after few days complete fresher let him look multiple interviews and check not much good with the sales pitch', 154, '0000-00-00 00:00:00', 1),
(24275, 27188, 60, 1, 0, NULL, 139, '2025-10-16 06:31:52', 1),
(24276, 27204, 163, 5, 0, 'INTERESTED ONLY IN NON VOICE PROCESS', 162, '0000-00-00 00:00:00', 1),
(24277, 27208, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24278, 27212, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24279, 27198, 155, 5, 0, 'prefers non voice and admin roles. not willing to work with sales and targets', 154, '0000-00-00 00:00:00', 1),
(24280, 27220, 139, 7, 0, 'Shortlisted for RM role, \nsriram sir also complete the final round, Having good communication skills, Package have to negociate ', 154, '0000-00-00 00:00:00', 1),
(24281, 27194, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24282, 27226, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24283, 27201, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24284, 27224, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24285, 27230, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24286, 27231, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24287, 27084, 59, 3, 0, 'Anudip Foundation Profile Direct interview in Foundation and cleared further rounds in office Processed with 3.5 yrs Agreement but no cheque for him in future may collect from salary Account Cheque', 60, '0000-00-00 00:00:00', 1),
(24288, 27239, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24289, 27236, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24290, 27218, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24291, 27240, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24292, 27250, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24293, 27242, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24294, 26814, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24295, 27247, 30, 7, 3, 'suggested ctc upto 23k for dm ashfaq team immediate joining', 162, '0000-00-00 00:00:00', 1),
(24296, 27247, 60, 1, 0, NULL, 30, '2025-10-24 03:30:34', 1),
(24297, 27178, 60, 1, 0, NULL, 30, '2025-10-24 03:31:39', 1),
(24298, 27262, 59, 3, 0, 'Communication Ok fresher for our roles have customer support exp in KPN farm fresh need to check in 7 days training', 154, '0000-00-00 00:00:00', 1),
(24299, 27262, 59, 3, 0, 'Communication Ok fresher for our roles have customer support exp in KPN farm fresh need to check in 7 days training', 154, '0000-00-00 00:00:00', 1),
(24300, 27252, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24301, 27272, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24302, 27274, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24303, 27260, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24304, 27270, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24305, 27268, 59, 3, 0, 'Slecetd for UI/UX based on the task completion Have exp in React Too based on the manager decision need to proceed further Agreed with the TxxampC cheque will be submitted after 5 months self cheque salary account', 159, '0000-00-00 00:00:00', 1),
(24306, 27275, 89, 7, 0, 'Alredy 6 month experience at star health. Will analysis training days.. expectation 17 k', 154, '0000-00-00 00:00:00', 1),
(24307, 27275, 59, 3, 0, 'Communication Ok seems to average need to check in training and confirm have 2 months exp in Vizza will check and confirm', 89, '2025-10-25 05:57:07', 1),
(24308, 27290, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24309, 27291, 57, 7, 0, 'Candidate is 50/50 profile, pls check once again communication, sathya team `\nFresher...', 154, '0000-00-00 00:00:00', 1),
(24310, 27281, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24311, 27291, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in training and confirm', 57, '2025-10-27 04:46:46', 1),
(24312, 27295, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24313, 27309, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24314, 27299, 163, 5, 0, 'DOES NOT KNOW KANNADA AND ENGLISH', 162, '0000-00-00 00:00:00', 1),
(24315, 27298, 163, 5, 0, 'DOES NOT KNOW KANNADA AND ENGLISH', 162, '0000-00-00 00:00:00', 1),
(24316, 27292, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24317, 27320, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24318, 27322, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24319, 27303, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24320, 27316, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24321, 27329, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24322, 27302, 59, 3, 0, 'Communication Good Fresher for Telecalling RE profile for Renew can give a try and check in training', 159, '0000-00-00 00:00:00', 1),
(24323, 27144, 89, 7, 0, 'Average skill , fresher but will Analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(24324, 27133, 59, 3, 0, 'Communication Ok have exp in Vizza for almost 2years later gap for 2years due to marriage need to check and confirm', 57, '2025-11-01 04:06:08', 1),
(24325, 27144, 59, 3, 0, 'Communication Ok seems to be 5050 for our roles can give a try and check in training', 89, '2025-11-01 04:48:33', 1),
(24326, 27067, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24327, 27352, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24328, 27349, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24329, 27351, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24330, 27348, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24331, 27347, 109, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24332, 26767, 60, 1, 0, NULL, 30, '2025-11-04 03:24:48', 1),
(24333, 26951, 60, 1, 0, NULL, 11, '2025-11-05 09:33:21', 1),
(24334, 27090, 60, 1, 0, NULL, 11, '2025-11-05 09:33:57', 1),
(24335, 27366, 57, 7, 0, 'Candidate is ok, communication Average, check distance long, confirm the joining date xxamp salary, Self team', 154, '0000-00-00 00:00:00', 1),
(24336, 27365, 57, 7, 0, 'Candidate is ok, communication good, Convincing xxamp Product Skill good, Check once distance too long, pls confirm the joining date xxamp Salary( Sathya Team)', 154, '0000-00-00 00:00:00', 1),
(24337, 27070, 156, 7, 0, 'candidate is ok, communication average. kindly provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24338, 27365, 59, 1, 0, NULL, 57, '2025-11-05 03:29:36', 1),
(24339, 27366, 59, 1, 0, NULL, 57, '2025-11-05 03:30:36', 1),
(24340, 27360, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24341, 27070, 59, 1, 0, NULL, 156, '2025-11-05 03:39:34', 1),
(24342, 27368, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24343, 27379, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24344, 27378, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24345, 27376, 30, 7, 3, 'fresher selected for vasu team suggested ctc 17k', 162, '0000-00-00 00:00:00', 1),
(24346, 27377, 30, 7, 3, 'fresher suggested ctc 17k for ashfaq team', 162, '0000-00-00 00:00:00', 1),
(24347, 27306, 30, 7, 3, 'selected for dm ashfaq team suggested ctc 20k', 162, '0000-00-00 00:00:00', 1),
(24348, 27384, 74, 7, 0, 'She is ok with the profile completed bsc computer science,,,,father passed away...elder sister work in salem IT...25k salary in relative house ...she is in mannargudi...worked in finance company for gold loan....with 15k salary and releived due to mother health issue.....have laptop imeediate joining......need to cross check cleary for travel only thanjavur to mannargudi have bus facility frequently...but mannargudi to home 10km have no frequent bus...thats the issue in night time..but she is ok with that but our side need to cross check...and she is the only care taker for mother', 154, '0000-00-00 00:00:00', 1),
(24349, 27382, 156, 7, 0, 'candidate is ok, communication average. kindly provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24350, 27384, 59, 1, 0, NULL, 74, '2025-11-07 12:03:00', 1),
(24351, 27382, 59, 3, 0, 'Based on the interview from HR Team Sridhar and the Manager syed update we have processed the profile for Deshwaran Team let us check in training and confirm\n', 156, '2025-11-07 12:06:41', 1),
(24352, 27306, 60, 1, 0, NULL, 30, '2025-11-07 12:25:02', 1),
(24353, 27376, 60, 1, 0, NULL, 30, '2025-11-07 12:27:50', 1),
(24354, 27377, 60, 1, 0, NULL, 30, '2025-11-07 12:28:35', 1),
(24355, 27386, 30, 7, 3, 'suggested ctc 17k ctc selected for vasu team dm', 162, '0000-00-00 00:00:00', 1),
(24356, 27385, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24357, 27383, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24358, 27390, 74, 7, 0, 'she is ok with the profile...3 yrs worked as a sofware develper 30k salary....native mannargudi..spoouse worked as in family 25k salary...travel time 45 mins in office bus stop it will be available..no baby plan currently...have laptop expected 15 to 17..immediate joining kindly check once and confirm', 154, '0000-00-00 00:00:00', 1),
(24359, 27391, 74, 7, 0, 'she is ok with the profile completed MCA in anjalai ammal engg clg....native thanjavur ..married in pudukottai...husband in singapore return 2027....1 child 2 years caring by mother single parent....she is worked in calibehr business support in chennai and after 8 month promoted as team lead..2019-2023.....taken 22k salary...have laptop....expected 15 to 17k kindly check and confirm', 154, '0000-00-00 00:00:00', 1),
(24360, 27393, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24361, 27392, 74, 5, 0, 'not suite for team.', 154, '0000-00-00 00:00:00', 1),
(24362, 27391, 59, 1, 0, NULL, 74, '2025-11-10 02:35:06', 1),
(24363, 27381, 57, 4, 0, 'Candiate is ok, communication average, 9m exp. pls check sustainability, pls confirm the salary and joining date,.', 154, '0000-00-00 00:00:00', 1),
(24364, 27388, 152, 4, 0, 'CTC To be discussed by HR Team', 154, '0000-00-00 00:00:00', 1),
(24365, 27390, 59, 3, 0, 'Communication Ok fresher for insurance sales earlier worked in IT recently married need to check her sustainability', 74, '2025-11-10 06:02:30', 1),
(24366, 27399, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24367, 27401, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24368, 27220, 60, 1, 0, NULL, 139, '2025-11-11 01:25:56', 1),
(24369, 27386, 60, 1, 0, NULL, 30, '2025-11-11 01:29:51', 1),
(24370, 27403, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24371, 27398, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24372, 27400, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24373, 27381, 59, 3, 0, 'Communication Ok Fresher need to train and check in the training process let us consider ifor training and cehck', 57, '2025-11-11 03:25:27', 1),
(24374, 27406, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24375, 27404, 105, 5, 0, 'candidate communication and performance is not good.also she is not talk about genral topic and her voice is low.sustainable is doubt.', 159, '0000-00-00 00:00:00', 1),
(24376, 27407, 105, 7, 0, 'canidate communication and performance is little ok.5050 profile will check with him in the training period', 159, '0000-00-00 00:00:00', 1),
(24377, 27407, 59, 3, 0, 'Communication Ok but not sure on his sustainability no valid reasons for his previous relieving and not much serious with the job abd his career gap let us check in training and confirm', 105, '2025-11-12 04:15:02', 1),
(24378, 27408, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24379, 27410, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24380, 27411, 137, 7, 0, 'candidate communication skill and language ok , already exp 1 year with mobile insurance , so try for 7 days training period', 154, '0000-00-00 00:00:00', 1),
(24381, 27413, 152, 4, 3, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(24382, 27388, 18, 7, 0, 'Seleted for Abdul team. Will Join after his notice period. Please negotiate the salary as per your choice and confrim the joining date. He is a good young candidate', 152, '2025-11-13 02:39:37', 1),
(24383, 27413, 18, 1, 0, NULL, 152, '2025-11-13 02:45:35', 1),
(24384, 27412, 30, 7, 4, 'sELECTED FOR RM MAX SUGGESTED CTC UPTO 5LAC', 162, '0000-00-00 00:00:00', 1),
(24385, 27412, 60, 1, 0, NULL, 30, '2025-11-13 06:34:59', 1),
(24386, 27414, 74, 7, 0, 'she is ok with the profile completed bcom in bon securs college 24...and joined in swiggy process 1.2 yr experience in night shift 18k salary...due to salary issue releived from job and currently financial issue not willing to seek job in coimbatore....father hotel manager mother doing catering work order basis...brother worked in IT coimbatore 15k salary....expected 15k,,,,,travel time 5km from office...monday joining....no laptop....kindly cross check any intrested to seek job again in coimbatore...and intrested in telesales too', 154, '0000-00-00 00:00:00', 1),
(24387, 27427, 18, 7, 3, 'Shortlisted for Self team under Ramar. Negotiate the salary and immedeate jointer.', 154, '0000-00-00 00:00:00', 1),
(24388, 27424, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24389, 27417, 18, 5, 0, 'Not Fit for Sales', 154, '0000-00-00 00:00:00', 1),
(24390, 27414, 59, 1, 0, NULL, 74, '2025-11-14 06:07:58', 1),
(24391, 27430, 74, 5, 0, 'Not fit', 154, '0000-00-00 00:00:00', 1),
(24392, 27430, 74, 5, 0, 'Not fit', 154, '0000-00-00 00:00:00', 1),
(24393, 27428, 29, 7, 3, 'for Sivakumar Team, Given - 2.10 CTC, in Nov and Dec 25 if complted 3 lac Life and 10K SIP can incre sal to 2.5 ctc ', 154, '0000-00-00 00:00:00', 1),
(24394, 27439, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24395, 27411, 59, 3, 0, 'Communication Ok have exp in consumer loan process fresher for insurance can give a try and check ', 137, '2025-11-15 03:14:47', 1),
(24396, 27436, 147, 4, 0, 'He worked in cognizant good communication good confident but no Kannada\n language last take home is 22000 expected 23 to 24k u can finalize for vasu team ', 162, '0000-00-00 00:00:00', 1),
(24397, 27438, 163, 5, 0, 'Looking for non voice process only.', 162, '0000-00-00 00:00:00', 1),
(24398, 27437, 163, 5, 0, 'Lack of communication And is not consistent.', 162, '0000-00-00 00:00:00', 1),
(24399, 27423, 30, 7, 3, 'Selected for dm ashfaq team suggested ctc 25k max', 162, '0000-00-00 00:00:00', 1),
(24400, 27423, 60, 1, 0, NULL, 30, '2025-11-15 04:12:28', 1),
(24401, 27428, 59, 3, 0, 'Communication Good Have exp in sales based on the discussion with gaurav and the clarity given we have processed with the payout mentioned as sir mentioned 19 K net in the resume', 29, '2025-11-15 04:57:31', 1),
(24402, 27436, 60, 1, 0, NULL, 147, '2025-11-15 05:26:08', 1),
(24403, 27443, 74, 7, 0, 'she is ok with the profile completed b-lit 2022 passed...worked in foxxconn 3 yr and due to family issue releived and worked for 3 month in loan section trichy father facing 2nd attack in brain stroke she releived...from bhudular 8 30 by train daily station walkable both office and home...have laptop..highly exposive type...if in case father is cured she moved on to any place like hyderabad banglore she is ready...cross check in this part...expected 13k to 14k...immedaite joining', 154, '0000-00-00 00:00:00', 1),
(24404, 27443, 59, 3, 0, 'Communication Ok have exp in quality testing seems to be communicative over the call can give a try and check in training', 74, '2025-11-17 11:47:44', 1),
(24405, 27445, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24406, 27449, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24407, 27448, 57, 7, 0, 'candidate is ok, communication average, pls check sustainability and confirm the salary', 154, '0000-00-00 00:00:00', 1),
(24408, 27441, 139, 4, 0, 'Selected for Rm role\nhaving 2 yr exp in Creditcard sales in Bankbazar, wil try for RM role ', 154, '0000-00-00 00:00:00', 1),
(24409, 27441, 18, 7, 3, 'Shortlisted for Gnanshekar team. Can Join in another 10 Days. Can offer 3.5L CTC as he is a decent resource', 139, '2025-11-17 05:08:00', 1),
(24410, 27441, 60, 1, 0, NULL, 18, '2025-11-17 05:34:18', 1),
(24411, 27388, 60, 1, 0, NULL, 18, '2025-11-17 06:16:49', 1),
(24412, 27454, 74, 5, 0, 'not suite', 154, '0000-00-00 00:00:00', 1),
(24413, 27453, 105, 7, 0, 'Candidate communication and performance is ok.but he is 5050 profile,will check with him in the training period ', 154, '0000-00-00 00:00:00', 1),
(24414, 27455, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24415, 27453, 59, 3, 0, 'Communication Ok fresher for our sales have appeared earlier for IT in sunday drive now open for sales need to check in training and confirm\n', 105, '2025-11-18 12:36:12', 1),
(24416, 27427, 60, 1, 0, NULL, 18, '2025-11-18 05:51:47', 1),
(24417, 26421, 163, 5, 0, 'Lack of communication ', 162, '0000-00-00 00:00:00', 1),
(24418, 27457, 163, 8, 0, 'Looking for non voice process only .', 162, '0000-00-00 00:00:00', 1),
(24419, 27456, 163, 8, 0, 'Looking for non voice process,', 162, '0000-00-00 00:00:00', 1),
(24420, 27461, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24421, 27459, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24422, 27462, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24423, 27448, 59, 3, 0, 'Communication ok open to learn insurance can give a try and check in training', 57, '2025-11-19 02:47:03', 1),
(24424, 27463, 147, 4, 0, 'He is good in sales good communication and confident in all languages he expected salary 23000 can push', 162, '0000-00-00 00:00:00', 1),
(24425, 27463, 60, 1, 0, NULL, 147, '2025-11-19 06:58:50', 1),
(24426, 27468, 74, 5, 0, 'NOT SUITE', 154, '0000-00-00 00:00:00', 1),
(24427, 27464, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24428, 27469, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24429, 27470, 74, 7, 0, 'she is ok with the profile completed mba finance due to salary issue and no oportunity in thanjavur...choosing finance and telecalling....father container lorry driver salary 60k brother in singapore 60k salary...own house so job need bcoz of finace is low...but mother and own intreste to work for career....kindly cross check have no laptop ready to arrange salary expected 12 to 14k....5km travel for home..have bike and imeediate joining', 154, '0000-00-00 00:00:00', 1),
(24430, 27470, 59, 3, 0, 'Communication Good Completed MBA HR focusing much on that only need to check in training and confirm', 74, '2025-11-21 11:29:39', 1),
(24431, 27472, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24432, 26365, 139, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24433, 27478, 29, 7, 2, 'nirmal, ref resume for increase in sal if completed the task', 154, '0000-00-00 00:00:00', 1),
(24434, 27488, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24435, 27489, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24436, 27482, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24437, 27477, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24438, 27491, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24439, 27493, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24440, 27487, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24441, 27492, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24442, 27496, 155, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24443, 27497, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24444, 27500, 155, 5, 0, 'have exp in comsumer durable loan sales for 6 months. But will not sustain for our roles', 159, '0000-00-00 00:00:00', 1),
(24445, 27501, 155, 5, 0, 'no professional approach in the interview and communication slang not good', 159, '0000-00-00 00:00:00', 1),
(24446, 27505, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24447, 27506, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24448, 27475, 163, 5, 0, 'Lack of communication and seems to be inconsistent . Has arrears will switch after clearing .', 162, '0000-00-00 00:00:00', 1),
(24449, 27495, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24450, 27512, 74, 7, 0, 'he is ok with the profile, completed diploma mech in sastra and completed BE in anjalai ammal engg..2020....after digital marketing frelance with friends due to income issue..joined fire safety course and selected in delhi but parents not allowed and joined in auto cad free lancing and due to orders issue releived and joined in vizza for 10 months and releived due to family father health issue...and mother health issue.....brother in ashok leyland 25k earning...father farmer and real estate and not that much income...sister married another sister pg studies....have bike ..own house travel time 15mins...have laptop....DEC 1 JOINING...kindly check once sustainability', 154, '0000-00-00 00:00:00', 1),
(24451, 27513, 155, 5, 0, 'prefers non voice and not performed well in the interview', 154, '0000-00-00 00:00:00', 1),
(24452, 27512, 59, 3, 0, 'Communication Ok have 10 months exp in vizza chennai no valid documents given need to check in training', 74, '2025-11-28 12:18:47', 1),
(24453, 27478, 59, 3, 0, 'Communication Ok have exp in bank bazaar for 2yrs credit card can be trained in our roles need to check in training', 29, '2025-11-29 10:56:51', 1),
(24454, 27524, 30, 7, 3, 'Selected for rm suggested ctc 3.6lac max try to Convenience less than also within a week he will join ', 162, '0000-00-00 00:00:00', 1),
(24455, 27531, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24456, 27530, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24457, 27522, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24458, 27528, 30, 7, 0, 'Selected for Branch manager for DM channel already inhand salary 55k gross 60k cross check the documents and one more round will be conducted by kazeem by virtual today post that you can connect for the salary discussion', 162, '0000-00-00 00:00:00', 1),
(24459, 27529, 30, 7, 4, 'Selected for new branch manager team suggested ctc 22k for dm', 162, '0000-00-00 00:00:00', 1),
(24460, 27524, 60, 1, 0, NULL, 30, '2025-12-02 11:56:16', 1),
(24461, 27528, 60, 1, 0, NULL, 30, '2025-12-02 11:58:01', 1),
(24462, 27529, 60, 1, 0, NULL, 30, '2025-12-02 11:59:47', 1),
(24463, 27546, 74, 5, 0, 'Not fit', 154, '0000-00-00 00:00:00', 1),
(24464, 27545, 74, 5, 0, 'Not suite', 154, '0000-00-00 00:00:00', 1),
(24465, 27540, 30, 7, 3, 'Suggest ctc 2.7laca annum selected for dm ashfaq team', 162, '0000-00-00 00:00:00', 1),
(24466, 27541, 18, 7, 3, 'Shall Join in Couple of Days. Selected for Nisha team under my direct mapping. Can give 2.85L CTC ', 154, '0000-00-00 00:00:00', 1),
(24467, 27538, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24468, 27535, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24469, 27541, 60, 1, 0, NULL, 18, '2025-12-02 04:26:54', 1),
(24470, 27547, 164, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24471, 27555, 74, 7, 0, 'she is ok with the profile completed bCA fresher father farmer..21km from home...highly job need take active and have exposure... no laptop......join imeediately...expected 12 to 13k salary for anand team.', 154, '0000-00-00 00:00:00', 1),
(24472, 27554, 74, 7, 0, 'she is ok with the profile completed bcom in 24...and worked in real estate for 1 year mother health issue she releived from job in chennai...have elder sister 2 and elder brother 1 she is 4th one in family sister and brother already married...highly job need already earned 17k......and father farmer ready to join imeediately...travel time 45mins to ammapettai and another travel to home 5km..so little doubt regarding this travel...have no laptop..expected 15 to 16k....speaked over active but managable....cross check once', 154, '0000-00-00 00:00:00', 1),
(24473, 27560, 156, 7, 0, 'candidate ok, communication average kindly provide fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24474, 27559, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24475, 27551, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24476, 27556, 155, 5, 0, 'already have 2 month exp creditmantri for hindi voice process but not comfortable with hindi voice process so got relived but now he is the confused state to go with IT or sales so sustainability doubts', 159, '0000-00-00 00:00:00', 1),
(24477, 27557, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24478, 27563, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24479, 27562, 18, 7, 0, 'Selected for Abdul team. Immedeate joinder and please negotiate the salary. Fresher but need moulding', 154, '0000-00-00 00:00:00', 1),
(24480, 27566, 163, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(24481, 27560, 59, 3, 0, 'Communication Ok have exp in other domain fresher for telesales need to check in person and confirm', 156, '2025-12-03 03:21:00', 1),
(24482, 27555, 59, 3, 0, 'Communication Ok fresher for job can be trained in our roles and check open to learn let us check', 74, '2025-12-03 03:22:46', 1),
(24483, 27554, 59, 3, 0, 'Communication Ok have exp in calling different domain can give a try in our roles', 74, '2025-12-03 03:27:23', 1),
(24484, 27564, 89, 7, 0, 'Avarage skill but alredy telegram calling experience at health insurance. Will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(24485, 27536, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24486, 27550, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24487, 27564, 59, 3, 0, 'Communication Ok 6 months exp in sales calling but seems to be 5050 in sustainability need to check', 89, '2025-12-03 05:27:08', 1),
(24488, 27580, 74, 5, 0, 'Candidate not Fit for profile ', 154, '0000-00-00 00:00:00', 1),
(24489, 27583, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24490, 27584, 18, 7, 0, 'Candidate Feedback – Aravindan\nAravindan has been selected for the Gnanasekhar team. Though assessed as a BDM-level candidate, he will initially work as a Relationship Manager for 2–3 months to understand our processes and work culture. Based on performance, he will be promoted with applicable arrear salary as discussed at the time of joining.\nHe brings ~7 years of relevant experience in the domestic insurance industry and has been selected for a Relationship Manager role with a higher package. He owns a bike and is currently in need of financial stability.\nWith minor improvements in attitude and communication, he can be effectively fine-tuned into a strong managerial resource.', 154, '0000-00-00 00:00:00', 1),
(24491, 27581, 59, 3, 0, 'Communication Good Fresher for renewal can be trained in our roles need to check in training', 154, '0000-00-00 00:00:00', 1),
(24492, 27575, 161, 5, 0, 'english communication is average and salary expectation seems to be high', 154, '0000-00-00 00:00:00', 1),
(24493, 27574, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24494, 27509, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24495, 27576, 161, 5, 0, 'Not even speaking lot of fear and planning for next level as professor', 154, '0000-00-00 00:00:00', 1),
(24496, 27540, 60, 1, 0, NULL, 30, '2025-12-04 06:42:20', 1),
(24497, 27595, 74, 7, 0, 'he is ok with the profile ...completed bCA in periyar institute...25 passed out fresher....and already worked in bakery cashier with 13k salary...father farmer...brother worked in chemical company pondicherry 15k salary....NCC higher rank holder in college..try to complete police exam also..disciplined canidate and intrested in job...20km travel to home have bike...speaked well....expected 13 to 14k take home...he is ok with that salary for my team..no laptop..immediate joining kindly check and confirm...kindly try to gave 13 500 as take home as possible.', 154, '0000-00-00 00:00:00', 1),
(24498, 27594, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24499, 27596, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24500, 27597, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24501, 27598, 29, 7, 3, 'Sivakumar Team RM', 159, '0000-00-00 00:00:00', 1),
(24502, 27595, 59, 3, 0, 'Communication Ok fresher for our roles need to train from scratch can give a trya', 74, '2025-12-05 04:13:20', 1),
(24503, 27558, 30, 7, 3, 'Selected for rm suggested ctc upto 4lac but his Expectation 5lac but 4lac its final he dont have any core related experience but he have knowledge ', 162, '0000-00-00 00:00:00', 1),
(24504, 27544, 30, 7, 3, 'suggested ctc 17k selected for ashfaq team', 162, '0000-00-00 00:00:00', 1),
(24505, 27603, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24506, 27558, 60, 1, 0, NULL, 30, '2025-12-06 11:03:33', 1),
(24507, 27544, 60, 1, 0, NULL, 30, '2025-12-06 11:04:13', 1),
(24508, 27600, 155, 5, 0, 'not comfortable with insurance sales and more interested towards his core only', 154, '0000-00-00 00:00:00', 1),
(24509, 27607, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24510, 27606, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24511, 27609, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24512, 27598, 59, 3, 0, 'Communication Ok have exp in sales but different domain can give a try', 29, '2025-12-08 10:08:54', 1),
(24513, 27562, 60, 1, 0, NULL, 18, '2025-12-08 10:52:21', 1),
(24514, 27617, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24515, 27579, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24516, 27621, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24517, 27543, 147, 5, 0, 'rejected', 162, '0000-00-00 00:00:00', 1),
(24518, 27625, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24519, 27624, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24520, 27622, 18, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24521, 27543, 147, 5, 0, 'rejected', 147, '2025-12-08 06:45:05', 1),
(24522, 27639, 74, 7, 0, 'she is ok with the profile completed bsc in periyar institue....3 months work in real estate job in trichy travel issue releived....1 km travel only home....highly exposive and very talk active...father medical rep...30k earnings....in rental house sister studing degree.....passionate in advocate so she is speaked very aggressive ....kindly cross check adaptability....expected 15k...immediate joining', 159, '0000-00-00 00:00:00', 1),
(24523, 27634, 30, 7, 4, 'Selected for priya team suggested ctc 21k immediate joining', 162, '0000-00-00 00:00:00', 1),
(24524, 27634, 60, 1, 0, NULL, 30, '2025-12-09 12:31:42', 1),
(24525, 27635, 30, 7, 3, 'selected for priya team suggested ctc 21 to 22k immediate joining', 162, '0000-00-00 00:00:00', 1),
(24526, 27636, 30, 7, 3, 'selected for priya team suggested ctc 22 to 23k thursday joining', 162, '0000-00-00 00:00:00', 1),
(24527, 27641, 163, 5, 0, 'Lack of communication , ', 162, '0000-00-00 00:00:00', 1),
(24528, 27636, 60, 1, 0, NULL, 30, '2025-12-09 01:18:40', 1),
(24529, 27629, 59, 5, 0, 'Processed for GI profile based on Motor Exp in vizza he is a complete backend support no telecall exp rejected by Gokul', 159, '0000-00-00 00:00:00', 1),
(24530, 27635, 60, 1, 0, NULL, 30, '2025-12-09 01:20:22', 1),
(24531, 27632, 161, 3, 0, 'communication good', 159, '0000-00-00 00:00:00', 1),
(24532, 27633, 59, 5, 0, 'Not much aggressive to the profile need to learn a lot not much suits for our role', 159, '0000-00-00 00:00:00', 1),
(24533, 27637, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24534, 27631, 152, 4, 0, 'Selected ', 159, '0000-00-00 00:00:00', 1),
(24535, 27631, 18, 7, 3, 'Selected for Abdul team. Expected 30% hike from current CTC but can offer upto 3.5L Can join by next week. Do not have laptop', 152, '2025-12-09 02:57:28', 1),
(24536, 27630, 161, 5, 0, 'relieved the previous company because felt the retention process as tough. so not suitable for our profile', 159, '0000-00-00 00:00:00', 1),
(24537, 27639, 59, 3, 0, 'communication ok fresher need to check in training', 74, '2025-12-09 05:15:52', 1),
(24538, 27645, 156, 7, 0, 'candidate is ok, communication average. kindly provide the fresher salary and confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(24539, 27644, 164, 7, 0, 'cANDIDATE OK COMMUNICATION GOOD CONFIRM THE SALARY xxamp JOINING DATE ', 159, '0000-00-00 00:00:00', 1),
(24540, 27649, 59, 3, 0, 'Communication Good for renewal have exp but not the same open to learn married need to check her sustainability 2yrs NDA', 154, '0000-00-00 00:00:00', 1),
(24541, 27654, 152, 7, 0, 'Selected for my team, salary discussion to be made', 159, '0000-00-00 00:00:00', 1),
(24542, 27646, 105, 7, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS OK.BUT 5050 PROFILE WILL CHECK WITH HER IN THE TRAINING PERIOD. SLIGHTLY SUSTAINABLE IS DOUBT.', 159, '0000-00-00 00:00:00', 1),
(24543, 27650, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24544, 27642, 59, 2, 0, 'Accounts profile have basic exp but not much strong to it let us hold and see later', 159, '0000-00-00 00:00:00', 1),
(24545, 27655, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24546, 27656, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24547, 27657, 155, 5, 0, 'have telecalling customer support exp, will not handle our sales target pressure, sustainability doubts', 159, '0000-00-00 00:00:00', 1),
(24548, 27658, 155, 5, 0, 'more intereted towards non voice only and sustainability also doubts', 159, '0000-00-00 00:00:00', 1),
(24549, 27626, 30, 7, 3, 'Selected for dm vasu team suggested ctc 21k', 162, '0000-00-00 00:00:00', 1),
(24550, 27647, 161, 3, 0, 'Good communication', 159, '0000-00-00 00:00:00', 1),
(24551, 27645, 59, 3, 0, 'Communication Ok 5050 need to check in training have 6 months exp in other domain let us try', 156, '2025-12-11 10:44:39', 1),
(24552, 27662, 155, 2, 0, 'candidate communication is good and more interested towards HR roles and activities, will hold this profile and check', 159, '0000-00-00 00:00:00', 1),
(24553, 27661, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24554, 27665, 74, 7, 0, 'she is ok with the profile completed bcom in 2014 and married 2013 boy kid in 2014 and after 2017 husband passed because of accident and another baby in 2017...and 3 years unemployed and due to family issue joined in vinothagan hospital near our office 2 years cashier and 3 year health insurance customer handling backend process and claim service over all 5 years experience....and getting 20k with PF and take home 17k around.....due to claim issue daily she releived so have exposure and talk active and know process....travel time halfhour...vyshali busmate and referance...immediate joining...have no laptop ready to arrange...age 30 but being young only....so we try...but the only issue planned to work 1 and half years....family expected to second marriage with cousine ..he worked in chennai groww...so kindly cross check in this part we already dicsussed with kasim sir toooo......salary 16 to 17k she expected...kindly cross check', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(24555, 27652, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24556, 27664, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24557, 27631, 60, 1, 0, NULL, 18, '2025-12-11 12:19:48', 1),
(24558, 27666, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24559, 27669, 152, 7, 0, 'Selected for my team, salary can discussed by hr team\n', 159, '0000-00-00 00:00:00', 1),
(24560, 27677, 161, 5, 0, 'Communication is average only and not suitable for sales', 159, '0000-00-00 00:00:00', 1),
(24561, 27665, 59, 3, 0, 'Communication Ok have exp in insurance coordinator profile in hospital open for telecalling may get married in 2026 2nd marriage due to death of her husband need to check in training', 74, '2025-12-11 04:31:21', 1),
(24562, 27676, 161, 5, 0, 'previous experience in data entry only and seems to be reserved and not open up to the level we expected', 159, '0000-00-00 00:00:00', 1),
(24563, 27675, 161, 5, 0, 'Already worked in vizza and relieved due to pressure only so this profile wont be suitable', 159, '0000-00-00 00:00:00', 1),
(24564, 27663, 59, 2, 0, 'Account profile not much strong but let hold and look into it later', 159, '0000-00-00 00:00:00', 1),
(24565, 27667, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24566, 27668, 161, 5, 0, 'Interviewed by nisha', 159, '0000-00-00 00:00:00', 1),
(24567, 27678, 105, 5, 0, 'CANDIDATE COMMUNICATION AND PERFORMANCE IS NOT GOOD.ALSO SUSTAINABLE IS DOUBT', 154, '0000-00-00 00:00:00', 1),
(24568, 27646, 59, 3, 0, 'Communication Average family need is there training exp as part time need to check in training and confirm 5050', 105, '2025-12-11 05:23:10', 1),
(24569, 27626, 60, 1, 0, NULL, 30, '2025-12-11 06:59:18', 1),
(24570, 27686, 155, 5, 0, 'need to open up a lot... she is so reserved amd her idea is to go for HR side since there is no oppurtunity in HR side looking for telecalling... ', 154, '0000-00-00 00:00:00', 1),
(24571, 27669, 59, 3, 0, 'Communication Ok have exp in HDB financial family need is there he is open fr telesales need to check in training', 152, '2025-12-12 02:39:10', 1),
(24572, 27654, 59, 1, 0, NULL, 152, '2025-12-12 02:39:53', 1),
(24573, 27644, 59, 3, 0, 'Communication ok fresher for our roles have exp for 6 months in other domain 5050 check in training', 164, '2025-12-12 03:07:28', 1),
(24574, 27693, 164, 7, 0, 'cANDIDATE OK COMMUNICATION IS GOOD CONFIRM THE SALARY xxamp JOINING DATE', 104, '0000-00-00 00:00:00', 1),
(24575, 27693, 59, 3, 0, 'Communication Ok have exp but not a relevant one need to check in training ', 164, '2025-12-12 03:22:59', 1),
(24576, 27674, 59, 5, 0, 'Open for non voice networking based job roles not suitable', 104, '0000-00-00 00:00:00', 1),
(24577, 27690, 105, 7, 0, 'Candidate communication and performance is ok. Will check with him in the training period. ', 104, '0000-00-00 00:00:00', 1),
(24578, 27691, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24579, 27682, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24580, 27688, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24581, 27690, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and confirm ', 105, '2025-12-13 03:17:05', 1),
(24582, 27692, 89, 7, 0, 'Fresher, good knowledge.. will analysis 7 days training days', 104, '0000-00-00 00:00:00', 1),
(24583, 27689, 161, 5, 0, 'not okay with targets ,distance and communication is average only', 104, '0000-00-00 00:00:00', 1),
(24584, 27716, 59, 3, 0, 'Hired for team lead sort of profile renewal/GI profile can go max upto 23 also given joining on 19 Dec but delayed from candidate end', 104, '0000-00-00 00:00:00', 1),
(24585, 27695, 161, 5, 0, 'Multiple job switches and having ENT issues so wont be suitable for tellecalling', 104, '0000-00-00 00:00:00', 1),
(24586, 27698, 139, 5, 0, 'Not fit for rm role', 104, '0000-00-00 00:00:00', 1),
(24587, 27709, 59, 2, 0, '2nd round interviewed by Manikumar and rejected not strong with the basics', 104, '0000-00-00 00:00:00', 1),
(24588, 27711, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(24589, 27715, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD. KINDLY CONFIRM THE SALARY xxamp DATE OF JOINING', 104, '0000-00-00 00:00:00', 1),
(24590, 27584, 60, 1, 0, NULL, 18, '2025-12-13 05:42:36', 1),
(24591, 27715, 59, 3, 0, 'Communication ok fresher just 15 days exp can be trained need to check in training', 164, '2025-12-13 06:25:08', 1),
(24592, 27692, 59, 3, 0, 'Communication Ok fresher open to learn need to train from sctrach will check in training', 89, '2025-12-15 02:29:45', 1),
(24593, 27723, 161, 5, 0, 'Voice is very low and sustainability doubts', 159, '0000-00-00 00:00:00', 1),
(24594, 27726, 161, 5, 0, 'Not suitbale', 159, '0000-00-00 00:00:00', 1),
(24595, 27683, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24596, 27727, 59, 5, 0, 'Not suitable poor quality profile', 159, '0000-00-00 00:00:00', 1),
(24597, 27729, 139, 7, 0, 'Selected for RM role\nfresher having 6 month exp in Insurance sales\nbut consider as fresher will try', 159, '0000-00-00 00:00:00', 1),
(24598, 27732, 59, 2, 0, 'Can be considered for Renewal/MF intern based employment initial 3 months with stipend upto 7K then employment', 159, '0000-00-00 00:00:00', 1),
(24599, 27724, 59, 5, 0, 'Not much confident on the job telesales have exp in accountant but not strong with that too', 159, '0000-00-00 00:00:00', 1),
(24600, 27738, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24601, 27721, 164, 7, 0, 'cANDIDATE OK.COMMUNICATION IS GOOD,KINDLY CONFIRM SALARY xxamp JOINING DATE', 159, '0000-00-00 00:00:00', 1),
(24602, 27735, 11, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24603, 27737, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24604, 27719, 139, 5, 0, 'Not fit for rm role', 159, '0000-00-00 00:00:00', 1),
(24605, 27743, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24606, 27731, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24607, 27747, 161, 5, 0, 'Too long and different domain experience', 154, '0000-00-00 00:00:00', 1),
(24608, 27680, 147, 7, 0, 'she is good in Commutation having 2 years Experience in lic has a tele caller knowing 4 languages salary 20 to 21 k expected ', 162, '0000-00-00 00:00:00', 1),
(24609, 27739, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24610, 27754, 59, 5, 0, 'very low basics not suitable for our any roles', 159, '0000-00-00 00:00:00', 1),
(24611, 27741, 59, 5, 0, 'Looking for Core IT profile only', 159, '0000-00-00 00:00:00', 1),
(24612, 27758, 59, 5, 0, 'Not suitable for our roles will not sustain', 159, '0000-00-00 00:00:00', 1),
(24613, 27755, 152, 8, 0, 'Did not attended next round\n', 159, '0000-00-00 00:00:00', 1),
(24614, 27756, 152, 4, 0, 'Selected for next round, good communication, sales skill and need for work\n', 159, '0000-00-00 00:00:00', 1),
(24615, 27764, 59, 5, 0, 'Not suitable for our roleshave exp in non voice andmuch preferred for the same\n', 159, '0000-00-00 00:00:00', 1),
(24616, 27680, 60, 1, 0, NULL, 147, '2025-12-17 07:18:15', 1),
(24617, 27774, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24618, 27750, 139, 4, 0, 'Selected for Next Round\nhaving good communication skills, will try for rm role ', 159, '0000-00-00 00:00:00', 1),
(24619, 27744, 57, 7, 0, 'Candidate is ok, communication Good, pls confirm the joining date, provide freshers salary,', 159, '0000-00-00 00:00:00', 1),
(24620, 27771, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24621, 27744, 59, 3, 0, 'Communication ok fresher for sales profile can be trained in our roles need to check in training', 57, '2025-12-18 04:55:04', 1),
(24622, 27750, 18, 1, 0, NULL, 139, '2025-12-18 04:55:42', 1),
(24623, 27729, 60, 1, 0, NULL, 139, '2025-12-18 07:06:07', 1),
(24624, 27766, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24625, 27618, 59, 5, 0, 'Not suitable for our telesales profile', 154, '0000-00-00 00:00:00', 1),
(24626, 27803, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24627, 27779, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24628, 27786, 59, 5, 0, 'not open up fresher much focus on accounts but not m,uch strong with that too', 159, '0000-00-00 00:00:00', 1),
(24629, 27767, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24630, 27785, 139, 5, 0, 'Not fit for RM role ', 154, '0000-00-00 00:00:00', 1),
(24631, 27784, 59, 5, 0, 'Not much aggresive final year graduate need to open up a lot not suits for our roles', 159, '0000-00-00 00:00:00', 1),
(24632, 27805, 155, 5, 0, 'candidate performance in the interview was not good, looking for non voice only', 159, '0000-00-00 00:00:00', 1),
(24633, 27806, 139, 5, 0, 'Not fit for Our RM role \nexp package also very high ', 154, '0000-00-00 00:00:00', 1),
(24634, 27782, 59, 5, 0, 'Mentioned exp in resume but no basic clarity in her previous exp too long distance will not sustain and not suitable for our roles', 159, '0000-00-00 00:00:00', 1),
(24635, 27808, 137, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24636, 27725, 147, 7, 0, 'He is Fresher having good skills and aggressive we can Mold Him...', 162, '0000-00-00 00:00:00', 1),
(24637, 27817, 57, 5, 0, 'candiate is not ok, but 50/50 Profile\nSustainability issues, ', 154, '0000-00-00 00:00:00', 1),
(24638, 27818, 57, 5, 0, 'candidate is not ok, sounds not good, sustainability issues', 154, '0000-00-00 00:00:00', 1),
(24639, 27811, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24640, 27813, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24641, 27812, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24642, 27721, 59, 3, 0, 'Communication Average 5050 Family need is high required can give a try in training and confirm', 164, '2025-12-20 06:49:25', 1),
(24643, 27819, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24644, 27833, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24645, 27834, 57, 7, 0, 'Candidate is ok , overall 2 years experience, sounds good, but salary expectation very hight, negotiate the salary and confirm the joining date', 159, '0000-00-00 00:00:00', 1),
(24646, 27828, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24647, 27830, 139, 5, 0, 'Not fit for RM', 154, '0000-00-00 00:00:00', 1),
(24648, 27822, 154, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24649, 27839, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD.kINDLY CONFIRM THE JOINING DATE xxamp SALARY', 159, '0000-00-00 00:00:00', 1),
(24650, 27839, 59, 3, 0, 'Communication Ok have exp can be trained in our roles need to check in training', 164, '2025-12-22 06:55:42', 1),
(24651, 27824, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24652, 27825, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24653, 27848, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24654, 27834, 59, 3, 0, 'Communication Good have exp in calling but not a relevant one sound confident can check ', 57, '2025-12-23 12:24:54', 1),
(24655, 27838, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24656, 27847, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24657, 27725, 60, 1, 0, NULL, 147, '2025-12-23 01:03:56', 1),
(24658, 27854, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24659, 21729, 57, 7, 0, 'Candidate is ok ,communication good, confirm the salary and joining date', 159, '0000-00-00 00:00:00', 1),
(24660, 27841, 57, 5, 0, 'candidate is ok, communication average only, product knowledge not good, salary expectation high, reject the profile', 159, '0000-00-00 00:00:00', 1),
(24661, 27851, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24662, 27850, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24663, 27849, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24664, 27827, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24665, 27856, 57, 7, 0, 'Candidate is ok , communication average, sounds good, pls confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(24666, 21729, 59, 3, 0, 'Communication Good Have exp in sales calling worked in Indian Bank through techmahindra open to travel from Ambattur earlier worked in early morning shift traveled from ambattur @03.00 a.M', 57, '2025-12-23 05:24:52', 1),
(24667, 27856, 59, 3, 0, 'Communication Ok fresher for insurance sales sounds ok for our roles talkative need to check in person and see', 57, '2025-12-23 05:26:15', 1),
(24668, 27859, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24669, 27862, 57, 5, 0, 'Candidate is not ok, sustainability issues, sounds not Good', 154, '0000-00-00 00:00:00', 1),
(24670, 27857, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24671, 27865, 18, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24672, 27866, 109, 5, 0, 'He had experience with customer service related sales like holidays travels only onbound calls interested people will call they will confirm the travels booking. so not suitable for our sales, also salary package high expecataion not suitable for that much.', 154, '0000-00-00 00:00:00', 1),
(24673, 27878, 109, 5, 0, 'communication is good. Currently pursuing CMA intermediate 2 attempt and if we ask any basic things any idea about our company accounts she said no idea simply. if anything i asked she said no. also she got engaged can work only 1 year no practical experience in accounts. not suitable for our team', 154, '0000-00-00 00:00:00', 1),
(24674, 27874, 109, 5, 0, 'Communication not good, he just sitting simly and asked for demo sales nothing he speaks he just sitting simply with closed mouth. not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(24675, 27879, 109, 5, 0, 'Communication is okay, but she is getting very nervous. but she had some basic knowledge about accounts theoretically. Even voice is too low', 159, '0000-00-00 00:00:00', 1),
(24676, 27872, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24677, 27885, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24678, 27888, 147, 7, 0, 'she is fresher good in communication salary expected 18 to 20k ', 162, '0000-00-00 00:00:00', 1),
(24679, 27898, 147, 7, 0, 'good communication and Confidence Level.. having Experience in Convincing the client in Previous job need to have salary discussion ', 162, '0000-00-00 00:00:00', 1),
(24680, 27913, 59, 3, 0, 'As discussed proceeding for the joining process', 104, '0000-00-00 00:00:00', 1),
(24681, 27888, 59, 3, 0, 'Communication Ok fresher seems not much aggressive with the call need to check in training and see', 147, '2025-12-29 12:32:48', 1),
(24682, 27898, 59, 1, 0, NULL, 147, '2025-12-29 12:39:04', 1),
(24683, 27910, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24684, 27909, 89, 7, 0, 'Good skill. Consider fresher. Will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(24685, 27911, 29, 7, 3, 'Karthika team', 159, '0000-00-00 00:00:00', 1),
(24686, 27889, 30, 7, 3, 'Selected for vasu team suggested ctc 23k', 162, '0000-00-00 00:00:00', 1),
(24687, 27909, 59, 3, 0, 'Communication Ok fresher for telecalling 3 monhts exp in another profile career gap due to family sister marriage need to check in training and see', 89, '2025-12-29 02:46:56', 1),
(24688, 27906, 57, 7, 0, 'Candidate is ok , communication Good, Pls confirm the salary and joining date', 159, '0000-00-00 00:00:00', 1),
(24689, 27891, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24690, 27889, 60, 1, 0, NULL, 30, '2025-12-29 04:43:03', 1),
(24691, 27906, 59, 3, 0, 'Communication Ok Fresher for our insurance Sales need to check in training and confirm', 57, '2025-12-30 11:01:44', 1),
(24692, 27928, 167, 7, 0, 'Good Communication and 2 years experience in LIC, good knowledge in sales', 162, '0000-00-00 00:00:00', 1),
(24693, 27921, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24694, 27918, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24695, 27927, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24696, 27186, 105, 5, 0, 'Expected Higher Pacakge', 105, '2025-12-30 03:00:43', 1),
(24697, 27928, 60, 1, 0, NULL, 167, '2025-12-31 09:47:44', 1),
(24698, 27932, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24699, 27945, 168, 7, 4, 'Shortlisted and available for immediate joining', 154, '0000-00-00 00:00:00', 1),
(24700, 27945, 59, 3, 0, 'Communication Ok have exp in other domain process need to check in training and confirm', 168, '2026-01-02 10:07:47', 1),
(24701, 27911, 59, 3, 0, 'Communication Good have exp in sales calling fresher for insurance domain need to check in training and see', 29, '2026-01-02 11:02:05', 1),
(24702, 27931, 155, 5, 0, 'candidate is 5050 and voice is too low, and have idea of going to higher studies for MSC and PHD', 154, '0000-00-00 00:00:00', 1),
(24703, 27947, 155, 5, 0, 'no sustainability in previous work exp, telling stories for getting relieved', 154, '0000-00-00 00:00:00', 1),
(24704, 27937, 164, 5, 0, 'Candidate was rejected ', 154, '0000-00-00 00:00:00', 1),
(24705, 27943, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24706, 27942, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24707, 27893, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24708, 27959, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24709, 27956, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24710, 27978, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24711, 27958, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION IS GOOD.KINDLY CONFIRM THE SALARY xxamp JOINING DATE ', 159, '0000-00-00 00:00:00', 1),
(24712, 27958, 59, 3, 0, 'Communication good have exp in imarque for BL/PL sales fresher for insurance can give a try in our roles need to check in training', 164, '2026-01-03 01:32:59', 1),
(24713, 27944, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24714, 27941, 30, 7, 3, 'selected for rm his expectation 30k same salary from current company but try to pitch 27 k arun', 162, '0000-00-00 00:00:00', 1),
(24715, 27964, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24716, 27973, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24717, 27979, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24718, 27970, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24719, 27972, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24720, 27997, 168, 7, 0, 'Have a work experience with sales knowledge suitable for the team.', 154, '0000-00-00 00:00:00', 1),
(24721, 27990, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24722, 27988, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24723, 27985, 164, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24724, 27997, 59, 3, 0, 'Communication Ok fresher for our insurance roles but previously worked in other domain can give a try and check in training', 168, '2026-01-05 04:43:41', 1),
(24725, 27993, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24726, 28001, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24727, 28007, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24728, 28002, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24729, 28012, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24730, 27998, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24731, 28011, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24732, 28016, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24733, 28013, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24734, 28006, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24735, 28019, 161, 5, 0, 'Communication is too low voice and she is too much depression and not stable wont fit here', 154, '0000-00-00 00:00:00', 1),
(24736, 28014, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24737, 27963, 149, 7, 0, 'CANDIDATE WAS OK WITH COMMUNICATION AND QUITE CONFIDENT ALSO INTERESTED AND TOLD THAT SHE WILL JOIN BY THURSDAY AND LOC ENNORE SO HAVE A LITTLE DOUBT ABOUT IT ALSO', 154, '0000-00-00 00:00:00', 1),
(24738, 27994, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24739, 28024, 164, 5, 0, 'REJECT', 154, '0000-00-00 00:00:00', 1),
(24740, 27929, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24741, 27999, 59, 5, 0, 'Not much strong with the basics in the accounts 2nd round reject by Manikumar and team\n', 154, '0000-00-00 00:00:00', 1),
(24742, 28017, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24743, 27989, 161, 5, 0, 'Dont know tamil even', 154, '0000-00-00 00:00:00', 1),
(24744, 27963, 60, 1, 0, NULL, 149, '2026-01-06 05:25:28', 1),
(24745, 27936, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24746, 28021, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24747, 28030, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24748, 27986, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24749, 28035, 29, 7, 3, 'porrselvan team', 159, '0000-00-00 00:00:00', 1),
(24750, 28033, 59, 3, 0, 'Communication Ok have 10 months exp in accounts career gap due to liver Transplant intern with employment stipend 10K for a month if he need to improve will have an additional 1 more month of intern if not he will be into employment', 154, '0000-00-00 00:00:00', 1),
(24751, 28029, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24752, 27941, 60, 1, 0, NULL, 30, '2026-01-07 05:14:43', 1),
(24753, 27896, 149, 7, 0, 'GOOD WITH COMMUNICATION AND HAVE CONFIDENCE IN NEED OF JOB REQUIREMENT AND OK FOR IMMEDIATE JOINING', 159, '0000-00-00 00:00:00', 1),
(24754, 28043, 109, 2, 0, 'SHe is working as a HR Intern', 154, '0000-00-00 00:00:00', 1),
(24755, 28020, 164, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24756, 28039, 57, 7, 0, 'Candidate is ok , communication good, exp already, conform the joining xxamp salary', 159, '0000-00-00 00:00:00', 1),
(24757, 28048, 161, 2, 0, 'need to discuss with family', 159, '0000-00-00 00:00:00', 1),
(24758, 28036, 161, 5, 0, 'Not to aggressive Customer support exp and not suitable for sales', 159, '0000-00-00 00:00:00', 1),
(24759, 28040, 155, 5, 0, 'candidate is very reserved.. need to open up more so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24760, 28046, 155, 5, 0, 'candidate is purely into operations side in matrimony, and she is not much aggressive and active so will not fit for sales and working with targets\n', 154, '0000-00-00 00:00:00', 1),
(24761, 28042, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24762, 28045, 155, 5, 0, 'complete IT profile, and he did not perform well in the interview also', 154, '0000-00-00 00:00:00', 1),
(24763, 28050, 155, 5, 0, 'candidate mainly looking for non voice so will not sustain in sales', 154, '0000-00-00 00:00:00', 1),
(24764, 28051, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24765, 27995, 109, 5, 0, 'she doesnxquott have any relevent experience but expecting high salary. also asked for demo sales she is not getting what i aksed also she was thinking about the sales \n', 154, '0000-00-00 00:00:00', 1),
(24766, 28053, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24767, 28041, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24768, 28052, 109, 5, 0, 'I asked to sale for a demo he simply sitting no even try to sales any product', 154, '0000-00-00 00:00:00', 1),
(24769, 28054, 30, 7, 4, 'selected for priya team experience candidate suggested ctc 20k', 162, '0000-00-00 00:00:00', 1),
(24770, 28055, 30, 7, 4, 'selected for priya team fresher suggested ctc 17 to 18k', 162, '0000-00-00 00:00:00', 1),
(24771, 28054, 60, 1, 0, NULL, 30, '2026-01-09 09:47:42', 1),
(24772, 28055, 60, 1, 0, NULL, 30, '2026-01-09 09:48:44', 1),
(24773, 28060, 161, 5, 0, 'Felt as pressure in previous company within 4 months', 159, '0000-00-00 00:00:00', 1),
(24774, 28061, 161, 5, 0, 'Looking for job change within 4 months for no reason sustainability issue', 159, '0000-00-00 00:00:00', 1),
(24775, 28071, 30, 7, 4, 'Suggested th 23k but try 22k th salary for priya team immediate joining', 162, '0000-00-00 00:00:00', 1),
(24776, 28039, 59, 1, 0, NULL, 57, '2026-01-09 11:27:15', 1),
(24777, 28076, 155, 5, 0, 'already have exp for 5 months in sriram for 5 months due to continous field sales he got relieved, and having more gaps between and after work and have done python course also having idea for going to IT also so sustainability doubts xxamp communication slang also not that good', 154, '0000-00-00 00:00:00', 1),
(24778, 28070, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24779, 28005, 30, 7, 3, 'Selected for rm wednesday joining ctc 23k suggested', 60, '0000-00-00 00:00:00', 1),
(24780, 28071, 60, 1, 0, NULL, 30, '2026-01-10 10:13:07', 1),
(24781, 28005, 60, 1, 0, NULL, 30, '2026-01-10 10:14:50', 1),
(24782, 28066, 139, 5, 0, 'Not fit for RM role', 154, '0000-00-00 00:00:00', 1),
(24783, 28079, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION IS GOOD.cONFIRM THE SALARY xxamp JOINING dATE', 154, '0000-00-00 00:00:00', 1),
(24784, 27896, 60, 1, 0, NULL, 149, '2026-01-10 11:39:24', 1),
(24785, 28072, 156, 7, 0, 'candidate is ok, communication good. provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(24786, 28081, 105, 5, 0, 'candidate communication and performance is little ok.but she is expecting customer support.also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24787, 28068, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24788, 28083, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24789, 28078, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24790, 28077, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24791, 28065, 161, 5, 0, 'No sustainability and health issues and Lots of gap between each switches wont suitable for this profile', 154, '0000-00-00 00:00:00', 1),
(24792, 28079, 59, 1, 0, NULL, 164, '2026-01-10 06:10:01', 1),
(24793, 28035, 59, 3, 0, 'Communication Ok have exp in telecalling and exp as TL profile fresher for our insurance sales complete exp in Home loan Home first company need to check in training ', 29, '2026-01-12 09:50:58', 1),
(24794, 28072, 59, 1, 0, NULL, 156, '2026-01-12 11:50:46', 1),
(24795, 27933, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24796, 28058, 161, 5, 0, 'Relieved due to pressure and worked for 6 months only ', 154, '0000-00-00 00:00:00', 1),
(24797, 28064, 161, 5, 0, 'Experience in Customer support only and relieved due to time constraints and target only worked in sales profile for 2 months ', 154, '0000-00-00 00:00:00', 1),
(24798, 28091, 161, 5, 0, 'Not fit for our role', 154, '0000-00-00 00:00:00', 1),
(24799, 28086, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24800, 28092, 161, 5, 0, 'Complete exp in non voice and looking for same too not suitable', 154, '0000-00-00 00:00:00', 1),
(24801, 28106, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION IS GOOD. CONFIRM THE SALARY xxamp JOINING DATE.', 154, '0000-00-00 00:00:00', 1),
(24802, 28109, 152, 5, 0, 'Shall try again after a month or 2 \n', 154, '0000-00-00 00:00:00', 1),
(24803, 28106, 59, 1, 0, NULL, 164, '2026-01-13 12:45:38', 1),
(24804, 28084, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24805, 28110, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24806, 28101, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24807, 28112, 57, 7, 0, 'Candidate is ok communication good \n', 154, '0000-00-00 00:00:00', 1),
(24808, 28098, 18, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24809, 28116, 155, 2, 0, 'candidate is ok, communication is 50-50, but mainly focusing on banking exams, family need is also there so will hold the profile and try', 154, '0000-00-00 00:00:00', 1),
(24810, 28117, 155, 5, 0, 'candidate is mostly looking for admin, operations side, he is itself more confused about what domain to choose, more career gaps and not much interested in sales also so not fit for our roles', 154, '0000-00-00 00:00:00', 1),
(24811, 28085, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24812, 28107, 155, 5, 0, 'his communication and slang is not good', 154, '0000-00-00 00:00:00', 1),
(24813, 28105, 155, 5, 0, 'he is not at all serious about his career, more gaps in between the education simply telling reasons for the gaps. will not suit for our roles', 154, '0000-00-00 00:00:00', 1),
(24814, 28118, 155, 5, 0, 'he is mostly looking for backoffice roles as he is having some health issues', 154, '0000-00-00 00:00:00', 1),
(24815, 28108, 139, 7, 0, 'Offer 2.8 Laks CTC\nImmediate Joiner on Friday \nSrirram sir also completed 2nd round interview ', 154, '0000-00-00 00:00:00', 1),
(24816, 28108, 60, 1, 0, NULL, 139, '2026-01-14 02:28:46', 1),
(24817, 28120, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24818, 28121, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24819, 28123, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24820, 28126, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24821, 28127, 168, 7, 0, 'he is ok with the profile completed MBA - 1 year in indian oil field supervisor - 1 year in finance loan process due to management issue he is reelieved - father auto driver native thiruvarur rental house sister bsc and brother bba- candidate good only but the only issue travel 3hr...up and down..expected 15 above have laptop immediate joining kindly check and confirm', 154, '0000-00-00 00:00:00', 1),
(24822, 28137, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24823, 28127, 59, 3, 0, 'Communication Ok have exp in collection and indian oil field fresher for insurance sales but can be trained need to travel a certain distance let us check \n', 168, '2026-01-19 11:30:12', 1),
(24824, 28136, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24825, 28132, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24826, 28130, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24827, 28140, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24828, 28134, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24829, 28143, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24830, 28142, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24831, 28133, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24832, 28153, 18, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24833, 28145, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24834, 28155, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24835, 28147, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24836, 28148, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24837, 28097, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24838, 28099, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24839, 28150, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24840, 28154, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24841, 28157, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24842, 28159, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24843, 28160, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24844, 28162, 152, 4, 0, 'Selected for next round 50-50', 154, '0000-00-00 00:00:00', 1),
(24845, 28112, 59, 3, 0, 'Communication Ok have exp but sustainability doubts a lot 2nd cahnce in cafs this time let us check in training and confirm', 57, '2026-01-21 09:52:35', 1),
(24846, 28164, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24847, 28165, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24848, 27578, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24849, 28158, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24850, 28175, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24851, 28177, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24852, 28166, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24853, 28167, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24854, 28185, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24855, 28162, 18, 7, 0, 'Shortlisted for Abdul Team. Immed Joiner. Shall join this week. Dont have laptop with old health sales experience', 152, '2026-01-22 11:58:29', 1),
(24856, 27756, 18, 5, 0, 'Not fit for Sales', 152, '2026-01-22 11:59:04', 1),
(24857, 28183, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24858, 28168, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24859, 28181, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24860, 28190, 137, 7, 0, 'candidate communication skill ad speaking skill all ok , very poor family backround , very work need person , so try for 7 days training period , exp salary is 17 to 18 k ', 154, '0000-00-00 00:00:00', 1),
(24861, 28184, 57, 7, 0, 'Candidate is ok, communication Good, Confirm the joining date xxamp Salary, (Kazeem)', 154, '0000-00-00 00:00:00', 1),
(24862, 28190, 59, 1, 0, NULL, 137, '2026-01-22 01:34:14', 1),
(24863, 28189, 137, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24864, 28184, 59, 3, 0, 'Communicaiton Ok have exp but no a relevant one final round interview by Kazeem sir need to check in training', 57, '2026-01-22 02:41:47', 1),
(24865, 28206, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24866, 28207, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24867, 28205, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24868, 28208, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24869, 28200, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24870, 28180, 149, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24871, 28209, 167, 7, 0, 'Good Communication with sales Skills and salary expectation 20k', 162, '0000-00-00 00:00:00', 1),
(24872, 28209, 60, 1, 0, NULL, 167, '2026-01-23 04:59:29', 1),
(24873, 28201, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24874, 28215, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24875, 27232, 59, 3, 0, 'Communication Ok have exp in renewal process need to check in training and confirm', 60, '0000-00-00 00:00:00', 1),
(24876, 28245, 30, 7, 0, 'good communication , suggested ctc 22k for priya team ', 162, '0000-00-00 00:00:00', 1),
(24877, 28229, 161, 5, 0, 'Communication is poor and no idea about which role to choose and not opening up', 154, '0000-00-00 00:00:00', 1),
(24878, 28235, 168, 7, 0, 'she is suitable for profile completed nursing in thanjavur and worked in a front office executive in coimbatore for 2 years and relieved joined in a delta super e commerce site company, so company shutdown so she relieved with 10 months experience father civil service with 25k salary, sister studying, elder sister next month marriage, so kindly cross check in this parameter for leave extention. expected salary 13k have laptop. 5km travel from home. kindly cross check once and confirm', 154, '0000-00-00 00:00:00', 1),
(24879, 28231, 168, 7, 0, 'Suitable for a profile. completed b.E ECE. worked part time in a pharmacy for past 6 months, father passed around 10 years back single parent native in koradacheri Tiruvarur, nearly 48kms travel by train only expected salary 16 - 18k, he is expecting because of travel cost. he has good communication skill and objection handling also good may be 1 year after going to abroad because of fam situation if possible. currently have 1 arrear, have no laptop feb 1st joining date. kindly cross check once', 154, '0000-00-00 00:00:00', 1),
(24880, 28221, 168, 7, 0, 'She is suitable for the profile native gandarvakottai around 25 km travel by bus. worked as a accountant in trichy for 1 year due to travel issue relieved from job and joined in varanda race for banking exam for 3 months and pursuing government exam for past 10 months, father farmer, brother xxamp sister are studying . expected 15k salary, have laptop immediate joining. kindly cross check once and confirm', 154, '0000-00-00 00:00:00', 1),
(24881, 28219, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24882, 28237, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24883, 28239, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24884, 28220, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24885, 28216, 161, 5, 0, 'need only non voice', 154, '0000-00-00 00:00:00', 1),
(24886, 28151, 161, 5, 0, 'Communication slang is totally native slang and did only complete field sales or microfinance and group loans and no exp in voice process not suitable and package is 22k expected is more than this', 154, '0000-00-00 00:00:00', 1),
(24887, 28240, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24888, 28227, 105, 5, 0, 'candidate communicationa and performance is not good also she is married and have 7 month baby.Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24889, 28162, 60, 1, 0, NULL, 18, '2026-01-27 04:40:08', 1),
(24890, 28231, 59, 3, 0, 'Communication Ok fresher for telecalling sales insurance need to travel for more than an hour let us check', 168, '2026-01-27 06:49:20', 1),
(24891, 28221, 59, 1, 0, NULL, 168, '2026-01-27 06:54:28', 1),
(24892, 28235, 59, 1, 0, NULL, 168, '2026-01-27 06:57:44', 1),
(24893, 28255, 74, 5, 0, 'NOT FIT FOR TEAM', 154, '0000-00-00 00:00:00', 1),
(24894, 28251, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24895, 28253, 168, 7, 0, 'He is suitable for the profile having good communication with objection handling skills, father farmer monthly 25k income brother studying, having 3 months experience in scrum water tech as a publisher for 3 months relieved due to long travel. having laptop nearby 5km from home, expecting salary 12 - 13k ,willing to join on feb 1st, 1 year after may be go to foreign due to fam situation. kindly cross check and verify. ', 154, '0000-00-00 00:00:00', 1),
(24896, 28217, 149, 7, 0, 'candidate was ok with communication and also interested in sales and need of job so lets try her \n', 154, '0000-00-00 00:00:00', 1),
(24897, 28253, 59, 1, 0, NULL, 168, '2026-01-28 02:38:03', 1),
(24898, 28259, 30, 7, 4, 'Selected for priya team suggested ctc 20k immediate joining', 154, '0000-00-00 00:00:00', 1),
(24899, 28244, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24900, 28263, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24901, 28214, 149, 7, 0, 'candidate was good at communication very confident and have prior work experience in voice process and interested in sales for salary we can suggest 17k-18k will join by feb 1st week', 159, '0000-00-00 00:00:00', 1),
(24902, 28266, 152, 5, 0, 'Rejected by sriram sir', 154, '0000-00-00 00:00:00', 1),
(24903, 28259, 60, 1, 0, NULL, 30, '2026-01-28 04:49:47', 1),
(24904, 28264, 105, 5, 0, 'candidate communication and performance i slittle ok.but she is very slow also sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24905, 28273, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24906, 28217, 60, 1, 0, NULL, 149, '2026-01-28 06:56:39', 1),
(24907, 28214, 60, 1, 0, NULL, 149, '2026-01-28 07:00:11', 1),
(24908, 28283, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24909, 28284, 74, 7, 0, 'she is ok with the profile completed be mech in 2022 ....and 1 year worked in honda as sales and backend process and telecalling...with 8 k salary and releived from job...joined in idfc first bank in sales and field work getting 15k salary...and releived from job going to dubai as a sales process in bank...due to health issue releived from the job and joined in smart credit company with 17k salary...due to mother health issue she releived from the job.. father passed and brother passed recently .....expected 17k ready to join feb 1 and ready to arrange laptop', 154, '0000-00-00 00:00:00', 1),
(24910, 28258, 74, 7, 0, 'she is ok with the profile completed msc in 2025 in coimbatore..joined in first source night shift 20k salary work from home, currently project closed so she layed off...and change other process with same salary she is not willing to continue and looking for job in local...mature and talk active and professional to have laptop....father carpenter ...sister software developer with 15k salary....the only issue travel from dharasuram kumbakonam...kindly cross check in this parameter....and have previous company procedures so need 2 week to join....expected 15 to 20k...', 154, '0000-00-00 00:00:00', 1),
(24911, 28282, 105, 7, 0, 'candidate communication and performance is ok.but little slow wiull check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(24912, 28285, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24913, 28258, 59, 1, 0, NULL, 74, '2026-01-29 12:59:33', 1),
(24914, 28284, 59, 3, 0, 'Communication Good Have exp in IDFC process for an year inbetween gap due to opportunities in abroad can be trained in our roles ', 74, '2026-01-29 01:07:05', 1),
(24915, 28276, 105, 5, 0, 'candidate communication and peerformance little ok.but she is very luxary.let her not handle pressure ,so sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(24916, 28274, 105, 7, 0, 'candidate communication and performance is ok.will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(24917, 28270, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24918, 28287, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24919, 27064, 161, 5, 0, 'Not interested to join', 161, '2026-01-29 02:45:24', 1),
(24920, 28048, 161, 5, 0, 'High salary expectations', 161, '2026-01-29 02:45:41', 1),
(24921, 28274, 59, 1, 0, NULL, 105, '2026-01-29 04:34:41', 1),
(24922, 28282, 59, 3, 0, 'Communication Ok fresher for our roles internal team reference need to check in training only\n', 105, '2026-01-29 04:35:40', 1),
(24923, 28290, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24924, 28292, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24925, 28279, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24926, 28300, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24927, 28289, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24928, 28302, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24929, 28301, 149, 7, 0, 'candidate was ok with communication and have in need of job and looking confident we can try her', 154, '0000-00-00 00:00:00', 1),
(24930, 28303, 59, 3, 0, 'Communication Ok fresher need to train from scratch Feb xxamp Mar 12K then 15K from march onwards', 154, '0000-00-00 00:00:00', 1),
(24931, 28281, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24932, 28313, 140, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24933, 28314, 139, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24934, 28294, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24935, 28318, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24936, 28317, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24937, 28299, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24938, 28321, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24939, 28324, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24940, 28326, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24941, 28323, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24942, 28323, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24943, 28301, 60, 1, 0, NULL, 149, '2026-02-02 10:39:38', 1),
(24944, 28341, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24945, 28342, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24946, 28335, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION OK.kINDLY CONFIRM THE SALARY', 154, '0000-00-00 00:00:00', 1),
(24947, 28340, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24948, 28343, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24949, 28335, 59, 1, 0, NULL, 164, '2026-02-02 01:19:35', 1),
(24950, 28344, 29, 7, 2, 'porrselvan team', 154, '0000-00-00 00:00:00', 1),
(24951, 28332, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24952, 28347, 139, 5, 0, 'not fit for rm role', 159, '0000-00-00 00:00:00', 1),
(24953, 28305, 30, 7, 3, 'Suggested ctc 19 to 20k max priya team', 60, '0000-00-00 00:00:00', 1),
(24954, 28346, 30, 4, 3, 'selected for pc but suggested ctc 3.5lac max if its k will try', 154, '0000-00-00 00:00:00', 1),
(24955, 28352, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24956, 28345, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24957, 28354, 139, 5, 0, 'Not fit for rm role', 159, '0000-00-00 00:00:00', 1),
(24958, 28350, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24959, 28368, 11, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24960, 28371, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24961, 28327, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24962, 28348, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24963, 28309, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24964, 28344, 59, 3, 0, 'Communication Good Have exp in shriram for 6 months recently married openf or insurance again let us check in training', 29, '2026-02-03 05:54:11', 1),
(24965, 28383, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24966, 28381, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24967, 28388, 168, 5, 0, 'Having communication skill but sustainability doubt wishing for accountant job doing Mba finance this month exam so will take long days and if needed means march after only able to join.', 154, '0000-00-00 00:00:00', 1),
(24968, 28387, 168, 5, 0, 'Already attended 2 years back. having no proper communication skill having experience in telecaller for loan recovery in startup but relieved due to family situation and having no experience certificate not profiled one sustainability issue', 154, '0000-00-00 00:00:00', 1),
(24969, 28386, 168, 5, 0, 'Just looking for a salary only wished for accountant job not sustain for longer doing Mba finance having a exam this month so long leave required .', 154, '0000-00-00 00:00:00', 1),
(24970, 28385, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24971, 28379, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24972, 28337, 59, 3, 0, 'For 2 months intern stipend of 12K then 15K salary HR recruitment', 159, '0000-00-00 00:00:00', 1),
(24973, 28141, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24974, 28399, 59, 5, 0, 'Worst profile for our roles not suitable for any roles in our company', 159, '0000-00-00 00:00:00', 1),
(24975, 28390, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24976, 28400, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24977, 28305, 60, 1, 0, NULL, 30, '2026-02-04 05:37:54', 1),
(24978, 28346, 60, 1, 0, NULL, 30, '2026-02-04 05:39:11', 1),
(24979, 28401, 137, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24980, 28376, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24981, 28378, 59, 3, 0, 'Communication Ok fresher for our roles need to train and check let us try for Ops', 159, '0000-00-00 00:00:00', 1),
(24982, 28406, 168, 7, 0, 'She is suitable for the profile, having good communication and convincing skills, have a 6 months experience in tele calling for digital marketing due to late salary relieved, father farmer monthly fam income 20k, nearby 45 mins travel currently no commitment will work for 2 more years,, have a laptop, expected salary 12 - 13k, joining by monday.', 154, '0000-00-00 00:00:00', 1),
(24983, 28394, 168, 7, 0, 'She is suitable for the profile, having good communication and convincing skills, have a 6 months experience in tele calling for digital marketing due to late salary relieved, father farmer 1st brother searching job 2nd brother in foreign, monthly fam income 20k, currently no commitment will work for 2 more years,, have a laptop, expected salary 12 - 13k, joining by monday.', 154, '0000-00-00 00:00:00', 1),
(24984, 28357, 149, 7, 0, 'CANDIDATE COMMUNICATION WAS OK LOOKING CONFIDENT AND IN NEED OF JOB AND HAVE NO PRIOR JOB EXPERIENCE AND WE SHALL PROCEED FURTHER', 154, '0000-00-00 00:00:00', 1),
(24985, 28404, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(24986, 28380, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(24987, 28402, 149, 7, 0, 'COMMUNICATION WAS GOOD AND HAVE WORK EXPERIENCE RELATED TO SALES AND IN NEEDED OF JOB ALSO WILL OK FOR IMMEDIATE JOINING', 159, '0000-00-00 00:00:00', 1),
(24988, 28394, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and see for our sales callings', 168, '2026-02-05 04:05:58', 1),
(24989, 28406, 59, 3, 0, 'Communication ok fresher for our sales roles need to check in training amd confirm', 168, '2026-02-05 04:08:28', 1),
(24990, 28357, 60, 1, 0, NULL, 149, '2026-02-05 04:42:11', 1),
(24991, 28402, 60, 1, 0, NULL, 149, '2026-02-05 04:50:14', 1),
(24992, 23623, 59, 3, 0, 'Communication ok fresher for our renewal roles need to check in training and see let us try', 159, '0000-00-00 00:00:00', 1),
(24993, 28418, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(24994, 28421, 74, 5, 0, 'not fit\n', 154, '0000-00-00 00:00:00', 1),
(24995, 28407, 30, 7, 0, 'good communiocation , has good experience suggested CTC 4LPA', 154, '0000-00-00 00:00:00', 1),
(24996, 28408, 30, 5, 0, 'Has experience But seems like will not get used to insurance domain .', 154, '0000-00-00 00:00:00', 1),
(24997, 28411, 30, 5, 0, 'Does not seem to be consistent in any of the previous companies . Did not sustain in previous jobs for more than 1 TO 3 months.', 154, '0000-00-00 00:00:00', 1),
(24998, 28416, 59, 5, 0, 'Communication not much sounds good fresher not much suits for our backend roles', 154, '0000-00-00 00:00:00', 1),
(24999, 28422, 59, 5, 0, 'Preparing for Police exams time being he is looking for opportunities\n', 154, '0000-00-00 00:00:00', 1),
(25000, 28420, 57, 5, 0, 'Candidate is not suitable for sales, 3 years exp in Gold field, pressure Handling low,', 154, '0000-00-00 00:00:00', 1),
(25001, 28403, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25002, 28423, 168, 7, 0, 'He is suitable for profile, have a good communication and convincing skills, fresher, father working in pipe shop, brother in marketing, overall family income 30k,10 mins travel from home to office having bike, no laptop, expected salary 13 - 14k, but expected joining on march due to personal religious thing kindly cross check and verify', 154, '0000-00-00 00:00:00', 1),
(25003, 28423, 59, 3, 0, 'Communication Ok fresher for employment need to check in training ', 168, '2026-02-07 12:13:59', 1),
(25004, 28430, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25005, 28431, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25006, 28425, 89, 7, 0, 'Good skill person. 6 month experience health insurance. Expectations very high so Find out her previous salary details and then proceed.', 154, '0000-00-00 00:00:00', 1),
(25007, 28429, 57, 5, 0, 'Candidate is ok, but salary expectation very high, communication Not Good, observation skills very low..', 154, '0000-00-00 00:00:00', 1),
(25008, 28374, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25009, 28437, 152, 4, 0, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(25010, 28425, 59, 1, 0, NULL, 89, '2026-02-07 05:33:49', 1),
(25011, 28407, 60, 1, 0, NULL, 30, '2026-02-09 12:06:09', 1),
(25012, 28245, 60, 1, 0, NULL, 30, '2026-02-09 12:07:14', 1),
(25013, 28446, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25014, 28432, 105, 5, 0, 'Candidate communication and performance is not good.his Only vioce is ok , Also Pressure Handle iAnd sustainable is doubt.Excepted High salary', 154, '0000-00-00 00:00:00', 1),
(25015, 28445, 105, 5, 0, 'Candidate communication and performance is not good.Also Sustainble is doubt', 154, '0000-00-00 00:00:00', 1),
(25016, 28433, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25017, 28436, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25018, 28186, 59, 3, 0, 'Freshr for OT Temrs ad conditions applies', 60, '0000-00-00 00:00:00', 1),
(25019, 28451, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25020, 28464, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(25021, 28440, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25022, 28456, 139, 4, 0, 'Selected for Rm \nhaving good communication skill and sales skill we can try exp ctc 3.5 laks \nImmediate join on monday ', 154, '0000-00-00 00:00:00', 1),
(25023, 28457, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25024, 28456, 18, 7, 3, 'Kaveeya Selected for Gnanashekar Team. Good candidate and Expected is 3.5L with low experience but though she is a fresher she is 28 and decently matured and can give that income. Ready to Join on Monday (16 Feb 2025).', 139, '2026-02-10 03:49:35', 1),
(25025, 28456, 60, 1, 0, NULL, 18, '2026-02-10 04:46:57', 1),
(25026, 28477, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25027, 28470, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25028, 28472, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25029, 28455, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25030, 28478, 152, 5, 0, 'Rejected by sriram sir', 154, '0000-00-00 00:00:00', 1),
(25031, 28468, 59, 3, 0, 'Rejoining candidate after a coule of years direct reporting to gaurav sir based on the confirmation from Gaurav sir we are proceeding', 60, '0000-00-00 00:00:00', 1),
(25032, 28482, 74, 7, 0, 'she is ok with the profile completed bsc 2023 passed..father passed mother worked in school organiser 10k salary...fresher imeediate joining...expected basic salary...have bike kiindly cross check and confirm', 154, '0000-00-00 00:00:00', 1),
(25033, 28481, 168, 7, 0, 'She is suitable for the profile. having good communication skills and convincing skills, have a 9 months experience in dhuruva finance karur, father farmer monthly 20k she is elder child, as of now no commitment for marriage, job requirement, have laptop, around 30 mins travel from home to office by bus or train. expected salary 12 -13k. immediate joining.kindly cross check and verify.', 154, '0000-00-00 00:00:00', 1),
(25034, 28483, 74, 5, 0, 'not suite', 154, '0000-00-00 00:00:00', 1),
(25035, 28481, 59, 3, 0, 'Communication fresher for our roles coming along with freind 9 months exp need to travel for almost 30kms need to check in traininf and check', 168, '2026-02-11 12:59:45', 1),
(25036, 28487, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25037, 28018, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25038, 28482, 59, 3, 0, 'Communication fresher for our roles coming along with freind 9 months exp need to travel for almost 30kms need to check in traininf and check', 74, '2026-02-11 02:48:26', 1),
(25039, 28485, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25040, 28486, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25041, 28488, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25042, 22718, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25043, 28489, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25044, 28480, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25045, 28490, 57, 7, 0, 'Candidate is ok, communication Good, observation skills also good, Pls check sustainability, confirm the salary and joining date', 159, '0000-00-00 00:00:00', 1),
(25046, 28490, 59, 3, 0, 'Communication Ok fresher for telesales need to check in training only', 57, '2026-02-12 12:13:33', 1),
(25047, 28492, 105, 5, 0, 'Candidate Communication', 154, '0000-00-00 00:00:00', 1),
(25048, 28491, 105, 5, 0, 'candidate communication and performance is not good.also have experiance but expected Higher package', 154, '0000-00-00 00:00:00', 1),
(25049, 28509, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25050, 28508, 27, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25051, 28476, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25052, 28512, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25053, 28513, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25054, 28501, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25055, 28515, 74, 7, 0, 'he is ok with the profile completed diploma and one year gap due to covid and 3 years be in CS department....and prepared for gate 1 year and 6 month python class....tried IT but still unemployed due to lack of skills....father active driver and finance in local...brother in foreign 35k salary.....own house ....travel time half hour...have laptop...and monday joining....14k expected...kindly cross check in sustainability', 154, '0000-00-00 00:00:00', 1),
(25056, 28496, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25057, 28437, 18, 7, 3, 'Bharathraj Selected for Abdul team. Shall join on Monday and can release 3.25L CTC. He is having laptop and shall arrange bike shortly…', 152, '2026-02-13 01:01:45', 1),
(25058, 28437, 60, 1, 0, NULL, 18, '2026-02-13 01:03:44', 1),
(25059, 28519, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25060, 28503, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25061, 28465, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25062, 28522, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25063, 28530, 105, 7, 0, 'Candidate communication and performance is ok. also she have Experience. Will Check With her in the training period', 154, '0000-00-00 00:00:00', 1),
(25064, 28530, 105, 7, 0, 'Candidate communication and performance is ok. also she have Experience. Will Check With her in the training period', 159, '0000-00-00 00:00:00', 1),
(25065, 28515, 59, 3, 0, 'Communciation Ok fresher for our roles need to check in training and see', 74, '2026-02-13 02:59:57', 1),
(25066, 28523, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25067, 28510, 139, 4, 0, 'Selected for Rm profile\nhaving exp in sales and good communication skill and sales skill\nwe can try for rm\nhave to negociate the package ', 154, '0000-00-00 00:00:00', 1),
(25068, 28545, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25069, 28542, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25070, 28543, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25071, 28546, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25072, 28541, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25073, 28536, 139, 4, 0, 'selected for rm role \nhaving 2 yr exp in credit card sales\nwe can try for rm ', 154, '0000-00-00 00:00:00', 1),
(25074, 28532, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25075, 28510, 18, 5, 0, 'Interested in Operations only', 139, '2026-02-14 06:44:26', 1),
(25076, 28536, 18, 7, 3, 'Selected for Gnanashekar team She will Join in 1st march and can give 25k Net + PF', 139, '2026-02-14 06:46:12', 1),
(25077, 28530, 59, 1, 0, NULL, 105, '2026-02-16 11:27:14', 1),
(25078, 28564, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25079, 28556, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25080, 28562, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25081, 28563, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25082, 28553, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25083, 28557, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25084, 28558, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25085, 28544, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25086, 28569, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25087, 28578, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25088, 28502, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25089, 28581, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25090, 28572, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25091, 28566, 74, 7, 0, 'she is ok with the profile completed bsc in bon secures college2022 passed out....2022 to 2024 worked in excela technology us based shift 23k,,,due to project closure and joined in malabar gold backend process and releived ...father assistant to doctor native kerala ....settled in thanjavur..rental house local only expected 17k..kindly cross check and confirm...immediate joining', 154, '0000-00-00 00:00:00', 1),
(25092, 28574, 74, 5, 0, 'long distance', 154, '0000-00-00 00:00:00', 1),
(25093, 28583, 74, 7, 0, 'she is ok with the profile completed diploma...and worked in part time jobs and married in 2023...in thanjavur ...native chennai...husband worked as supervisor in thanjuavur..with inlaws....talk active and mature girl...worked in part time wfh and applied for releiving and mostly joined next month expected 17k...kindly cross check', 154, '0000-00-00 00:00:00', 1),
(25094, 28579, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25095, 28584, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25096, 28585, 139, 4, 0, 'Selected for Rm profile\ndont have exp in sales\nbut we can try for rm role ', 154, '0000-00-00 00:00:00', 1),
(25097, 28566, 59, 1, 0, NULL, 74, '2026-02-17 06:18:08', 1),
(25098, 28583, 59, 3, 0, 'Communication Ok have exp but not in relevant one can give a try and check in training', 74, '2026-02-17 06:22:59', 1),
(25099, 28573, 59, 3, 0, 'Reference Profile Suresh Sir (Lingam Reference) profile for Branch Manager Role', 60, '0000-00-00 00:00:00', 1),
(25100, 28589, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25101, 28590, 89, 7, 0, 'Good skill. Fresher. Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(25102, 28586, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25103, 22709, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25104, 28596, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25105, 28594, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25106, 28592, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25107, 28571, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25108, 28600, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25109, 28593, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25110, 28598, 167, 7, 0, 'Good Communication,\nGood Skills,\nExpecting Salary 22k', 162, '0000-00-00 00:00:00', 1),
(25111, 28599, 167, 7, 0, 'Good Communication,\nGood Knowledge In Sales\nExpecting 23k', 162, '0000-00-00 00:00:00', 1),
(25112, 28598, 60, 1, 0, NULL, 167, '2026-02-18 06:07:02', 1),
(25113, 28599, 60, 1, 0, NULL, 167, '2026-02-18 06:07:49', 1),
(25114, 28590, 59, 1, 0, NULL, 89, '2026-02-19 11:01:44', 1),
(25115, 28603, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25116, 28615, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25117, 28602, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25118, 28601, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25119, 28611, 105, 7, 0, 'Candidate communication and performance is little good. Will check with her in The training period. ', 159, '0000-00-00 00:00:00', 1),
(25120, 28612, 147, 7, 0, 'she is Experience candidate in the Tele colling good in kannada Convincing english ok need to speak Regarding Salary', 162, '0000-00-00 00:00:00', 1),
(25121, 28612, 60, 1, 0, NULL, 147, '2026-02-19 05:59:22', 1),
(25122, 28636, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25123, 28631, 29, 7, 3, 'Esales, karthika', 159, '0000-00-00 00:00:00', 1),
(25124, 28632, 149, 7, 0, 'candidate was good at communication ,in need of job and interested also ready for immediate joining and confident', 159, '0000-00-00 00:00:00', 1),
(25125, 28635, 57, 7, 0, 'Candidate is ok, communication average, confirm the joining date(Team Reference)', 159, '0000-00-00 00:00:00', 1),
(25126, 28635, 59, 3, 0, 'Have exp in multiple companies but no sustainability last company shree consultant for 5 months internal team reference based on the manager input proceeded with this CTC', 57, '2026-02-20 04:36:33', 1),
(25127, 28628, 168, 5, 0, 'Have a communication skills, but looking for a iT related job also, doing a mSC on april sem starts will get a long leave, will not sustain for long period', 154, '0000-00-00 00:00:00', 1),
(25128, 28632, 60, 1, 0, NULL, 149, '2026-02-20 07:23:21', 1),
(25129, 28641, 149, 7, 0, 'Candidate was good at communication and confident also and have wrk experience in sales and needed job and she will join by next week wed .', 154, '0000-00-00 00:00:00', 1),
(25130, 28643, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25131, 28644, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25132, 28536, 60, 1, 0, NULL, 18, '2026-02-21 02:38:09', 1),
(25133, 28641, 60, 1, 0, NULL, 149, '2026-02-21 04:49:08', 1),
(25134, 28675, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25135, 28647, 139, 4, 0, 'Selected for next round\nhaving good communication skill \n2 yr exp in credit card sales\n', 154, '0000-00-00 00:00:00', 1),
(25136, 28653, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25137, 28611, 59, 3, 0, 'Communication Ok fresher for our roles need to train and check in training only let us try', 105, '2026-02-23 01:48:31', 1),
(25138, 28672, 105, 7, 0, 'candidate communication and performance is good.will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(25139, 28626, 105, 5, 0, 'candidate communication and performance is Not Good.Also Her Voice is velry low .Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25140, 28669, 105, 5, 0, 'candidate communication and performance is Not Good.Also He Could not interact much more in interview Process', 154, '0000-00-00 00:00:00', 1),
(25141, 28647, 18, 7, 3, 'Manikandan R Selected For Gnanashekar Team. Current CTC is 2.75 but expected 4L as he did not receive any Hike in the last 2 Years. Can offer 3.6L and can give target for the next 3 or 6 months and can give 50k Hike which should be communicated and can Join within 3 Days.\n', 139, '2026-02-23 02:34:30', 1),
(25142, 28683, 74, 7, 0, 'he is ok with the profile completed bsc in 2020...and joined excela tech 2 years in us shift and releived and joined same as process in hamly solution 4 years experience us insurance backend handling for 4 years and releived due to project closed...age 26..local 4km only travel...father medical illness no source of income highly job need meet in bon secures campus meet...today came direct office...kindly cross check expected 17k immediate joining', 154, '0000-00-00 00:00:00', 1),
(25143, 28677, 74, 7, 0, 'she is ok with the profile compledted msc cs in mannargudi....and joined as a primary teacher for 3 years and releived due to accident need 6 months leave....and joined in nxt wave tele sales...education with 30k package ....company need to shift to chennai so releived from job current job need have exposure and good skills....expected 17 to 18k ,,,march joining...father passed sister worked as teacher and unmarried ...main in mannargudi 45 mins travel cross check in this portion.', 154, '0000-00-00 00:00:00', 1),
(25144, 28679, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25145, 28607, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25146, 28685, 137, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25147, 28677, 59, 1, 0, NULL, 74, '2026-02-23 05:32:20', 1),
(25148, 28683, 59, 3, 0, 'Communication Ok have exp in medical billing process fresher for insurance sales but open to learn earlier CTC was round 22K now we offer this', 74, '2026-02-23 05:37:10', 1),
(25149, 28668, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25150, 28647, 60, 1, 0, NULL, 18, '2026-02-23 06:42:50', 1),
(25151, 28698, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25152, 28686, 74, 7, 0, 'he is ok with the profile completed bcom in sastra university....joined in uber 9 business process like gst filling with clients...2 months in chennai 2 months in thanjavur and 2 month in wfh ....due to competative exam he releived from the job bcoz of not providing 1 week leave kindly cross check in this parameter apart from this..good profile job need good comunication...father passed in 2016 in trichy and shift to mother native aiyampettai 30 mins travel....brother worked in tv channel 15k salary.......currently prakash in native with mother only...so looking for job in thanjavur....past salary 15k....main focus rrb and ssc exams only future plan everything.....but we try apart...expected 17k....immediate joining.', 154, '0000-00-00 00:00:00', 1),
(25153, 28694, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25154, 28686, 59, 3, 0, 'Communication Ok have exp in calling activities in Vakuil search fresher for our roles need to check in training only', 74, '2026-02-24 12:09:29', 1),
(25155, 28687, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25156, 28699, 137, 7, 0, 'candidate comunication skill and voice good , past 6 month exp for loan company , some internal reason to quite the job , so try for 7 days training period and exp salary for 18to 19k salary', 159, '0000-00-00 00:00:00', 1),
(25157, 28684, 137, 2, 0, 'hold the candidate', 159, '0000-00-00 00:00:00', 1),
(25158, 28701, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25159, 28680, 57, 5, 0, 'Candidate is not suitable for sales profile, communication Not Good, Field work not interest, reject the profile', 154, '0000-00-00 00:00:00', 1),
(25160, 28690, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25161, 28699, 59, 1, 0, NULL, 137, '2026-02-24 01:19:25', 1),
(25162, 28702, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25163, 28650, 74, 5, 0, 'NOT FIT', 154, '0000-00-00 00:00:00', 1),
(25164, 28688, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(25165, 28672, 59, 1, 0, NULL, 105, '2026-02-24 05:42:36', 1),
(25166, 28724, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25167, 28540, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25168, 28665, 59, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(25169, 28721, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25170, 28720, 137, 5, 0, '.', 154, '0000-00-00 00:00:00', 1),
(25171, 28726, 137, 7, 0, 'candidate communication skill and vocie is good , past 8 month work with real estate company appartment sales , some money issue to quit the job , now in notice period , next month 6th its will over , candidate exp salary is 18k , ', 154, '0000-00-00 00:00:00', 1),
(25172, 28716, 167, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25173, 28631, 59, 3, 0, 'Communication Good have exp in calling but not in insurance bank bazaar exp only need to check in training only', 29, '2026-02-25 07:37:50', 1),
(25174, 28726, 59, 3, 0, 'Communication Ok fresher for our roles just 6 months exp in real estate based on manager push we have gone with this salary package', 137, '2026-02-26 10:13:43', 1),
(25175, 28753, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25176, 28749, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25177, 28755, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25178, 28734, 149, 5, 0, 'not good at communication and not at all open to a conversation will not suitable for sales', 154, '0000-00-00 00:00:00', 1),
(25179, 28761, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25180, 28760, 161, 5, 0, 'Communication average only and he itself openly admitting he came just for his brother and totally food industry experience and at his initial stage of career itself he dont have interest in BPO', 159, '0000-00-00 00:00:00', 1),
(25181, 28747, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25182, 28764, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25183, 28757, 74, 7, 0, 'he is ok with the profile completed BE 2025 passed out .....single child father passed 10 years back and doing tea shop business....mother passed away this year doing parlour business......he is single independant....have own shops in rental and doing mother finance business...monthly take home around 30k....so kindly cross check in this parameter....have one grandma 65+ so he have the responsibilites to take care so only he is not choosing other cities and not try to join in IT....so i have a doubt regarding the monly revenue 30k...so how he gave the importatnt for the job....but have good manners and atitude to handle cross check in this parameter...joining after 10 days because of grandma cataract operation.', 154, '0000-00-00 00:00:00', 1),
(25184, 28758, 74, 5, 0, 'not suite for team...over matured and long travel with future mindset depends upon business only so not suite for team', 154, '0000-00-00 00:00:00', 1),
(25185, 28719, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(25186, 28736, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(25187, 28752, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(25188, 28757, 59, 1, 0, NULL, 74, '2026-02-26 02:17:46', 1),
(25189, 28619, 30, 7, 0, 'suggested upto 3.5lpa selected for RM', 162, '0000-00-00 00:00:00', 1),
(25190, 28766, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25191, 28769, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25192, 28783, 29, 7, 3, 'porrselvan team, 3.6 lac ctc', 154, '0000-00-00 00:00:00', 1),
(25193, 28737, 89, 7, 0, 'Alredy experience at Tele calling multiple companies. Salary expectation High But good skill. Will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(25194, 28780, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25195, 28784, 152, 4, 0, 'Selected for next round', 154, '0000-00-00 00:00:00', 1),
(25196, 28787, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25197, 28770, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25198, 28786, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25199, 28785, 109, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25200, 28649, 137, 7, 0, 'candidate commuincation skill and convresation skill is very good , pasy 3 years work with insurance broking company , low salary to quit the job , i suggest 18k salary for her. ', 154, '0000-00-00 00:00:00', 1),
(25201, 28649, 59, 3, 0, 'Communication Ok have exp in insurance for 3 yrs can be trained in ourroles will check in traning', 137, '2026-02-27 02:55:37', 1),
(25202, 28737, 59, 3, 0, 'Communication ok have exp in calling process need to check in training for our roles ', 89, '2026-02-27 02:56:56', 1),
(25203, 28767, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25204, 28783, 59, 3, 0, 'Communication Ok have exp in multiple domain as matrimony fresher for our insurance sales can give a try', 29, '2026-02-27 04:49:01', 1),
(25205, 28773, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25206, 28788, 149, 7, 0, 'ok with communication and interested in sales and had a requirement of job and will join in next month', 159, '0000-00-00 00:00:00', 1),
(25207, 28776, 167, 7, 0, 'good communication , good skills expected 25k try to convince for 22k or 23k', 162, '0000-00-00 00:00:00', 1),
(25208, 28796, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25209, 28788, 60, 1, 0, NULL, 149, '2026-02-28 11:58:48', 1),
(25210, 28790, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25211, 28803, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25212, 28795, 59, 3, 0, '3 months intern with 10K stipend then 16K salary with 2yrs NDA in employment', 159, '0000-00-00 00:00:00', 1),
(25213, 28774, 105, 5, 0, 'candidate communication and performance is not good.also sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25214, 28797, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25215, 28806, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25216, 28793, 105, 5, 0, 'candidate communication and performance is not good. also sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25217, 28776, 60, 1, 0, NULL, 167, '2026-02-28 06:01:22', 1),
(25218, 28619, 60, 1, 0, NULL, 30, '2026-02-28 06:03:46', 1),
(25219, 28784, 18, 7, 3, 'Suriya Saravanan Selected for Abdul Team. Ready to Join on 2nd Mar. Expected Salary is 3.6 Can give but negotiable. Having Laptop and please discuss the package and release the Offer.', 152, '2026-02-28 06:59:06', 1),
(25220, 28784, 60, 1, 0, NULL, 18, '2026-02-28 07:00:52', 1),
(25221, 28821, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25222, 28828, 59, 3, 0, 'Communication Good Worked in Vizza as recruiter internal team Priya reference can give a try and check in training', 162, '0000-00-00 00:00:00', 1),
(25223, 28831, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25224, 28833, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25225, 28794, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25226, 28825, 89, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25227, 28830, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25228, 28832, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25229, 28241, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25230, 28842, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25231, 28840, 156, 7, 0, 'candidate is ok, communication average. 1 year 11months exp for IDFC First Bharat Private limited. please check sustainability and confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(25232, 28850, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25233, 28846, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25234, 28841, 89, 7, 0, 'Fresher, avarage skill but will analysis 7 days training days', 159, '0000-00-00 00:00:00', 1),
(25235, 28845, 168, 5, 0, 'Already attended candidate at the time he was pursuing for government exam so not joined. now again tried here but focusing for digital marketing segment so not sustain for more that 3 months and brother working in digital marketing in chennai so able to change there.', 154, '0000-00-00 00:00:00', 1),
(25236, 28840, 59, 1, 0, NULL, 156, '2026-03-03 03:00:22', 1),
(25237, 28860, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25238, 28779, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25239, 28863, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25240, 28841, 59, 3, 0, 'Communication Seems to average for our sales roles previously attended and rejected due to non voice exp now also same exp she has but can give a try and check', 89, '2026-03-03 05:33:20', 1),
(25241, 28878, 57, 5, 0, 'Candidate is not ok for sales, salary expectation very high, sustainability issue,', 159, '0000-00-00 00:00:00', 1),
(25242, 28880, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25243, 28866, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25244, 28881, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25245, 28861, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25246, 28888, 139, 5, 0, 'not fit for rm role', 159, '0000-00-00 00:00:00', 1),
(25247, 28884, 57, 7, 0, 'Candidate is ok, communication Good, Confirm the joining Date xxamp Salary (Sathay Team)', 159, '0000-00-00 00:00:00', 1),
(25248, 28867, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25249, 28887, 105, 7, 0, 'candidate communication and performance is ok. will check with him in the training period', 159, '0000-00-00 00:00:00', 1),
(25250, 28879, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25251, 28891, 105, 5, 0, 'Candidate communication and performance is Poor. Also sustainable is doubt ', 159, '0000-00-00 00:00:00', 1),
(25252, 28884, 59, 3, 0, 'Communication ok have exp in justdial process fresher for insurance domain can givea try and check in training', 57, '2026-03-04 03:48:30', 1),
(25253, 28887, 59, 1, 0, NULL, 105, '2026-03-04 04:10:42', 1),
(25254, 28893, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25255, 28889, 152, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25256, 28903, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25257, 28871, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25258, 28856, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25259, 28869, 147, 7, 0, 'he is good in Communication having confident fluent in english 6 month Experience in sales expected salary 22k can give ', 162, '0000-00-00 00:00:00', 1),
(25260, 28902, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25261, 28870, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25262, 28905, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25263, 28909, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25264, 28908, 105, 5, 0, 'candidate communication and performance is not good. also he is over Exposer .sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25265, 28869, 60, 1, 0, NULL, 147, '2026-03-06 10:30:30', 1),
(25266, 28921, 74, 7, 0, 'he is ok with the profile completed msc cs in annai velankanni 2025 passed out due to hernia completed operation and 6 months rest...currently fit...father carpenter 5km travel from home...fresher ok will try good communication monday joining..job need expected 14k..kindly cross check ', 154, '0000-00-00 00:00:00', 1),
(25267, 28912, 74, 5, 0, 'not fit not performing well', 154, '0000-00-00 00:00:00', 1),
(25268, 28915, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25269, 28926, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25270, 28921, 59, 3, 0, 'Communication ok fresher for insurance sales in our process need to check in training and confirm', 74, '2026-03-06 01:04:41', 1),
(25271, 28759, 105, 7, 0, 'candidate communication and performance is little ok. also Done Internship In National insurance And She have 6 month Experience in insurance domain but product not know. long distance 5050 profile will check with her in the training period.', 154, '0000-00-00 00:00:00', 1),
(25272, 28759, 59, 3, 0, 'Communication Ok 6 months worked in insurance based company based on the commission salary open to explore and learn need to check in training', 105, '2026-03-06 04:02:45', 1),
(25273, 28937, 139, 5, 0, 'Not fit for Rm role', 154, '0000-00-00 00:00:00', 1),
(25274, 28934, 74, 7, 0, 'He is ok with the profile completed bcom with commerce and it integrated coursre..completed 24..in srm university..and in year gap in 20 to 21 due to covid.....local travel 3km only.....and completed accounts course also.....not willing to work in chennai....due to father separated....he live with mother and sister ...sister studied in sastra 1yr.....mother govt job 25k salary.......no other incom...attend interview in equitas.cub,axis,rocket seller,,,not joined..expected 13 to 15k...immediate joining.....good skills like leam co ordination class rep,,,and welfare leader like have skills kindly cross check.', 154, '0000-00-00 00:00:00', 1),
(25275, 28934, 59, 3, 0, 'Communication Good seems to be clear candidate can give a try and check in our training', 74, '2026-03-07 12:30:23', 1),
(25276, 28932, 161, 4, 0, 'selected by gokul sir', 154, '0000-00-00 00:00:00', 1),
(25277, 28932, 59, 1, 0, NULL, 161, '2026-03-07 03:37:57', 1),
(25278, 28929, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25279, 28945, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25280, 28935, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25281, 28950, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25282, 28951, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25283, 28961, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25284, 28964, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25285, 28964, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25286, 28965, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25287, 28967, 152, 4, 0, 'Selected for next round', 159, '0000-00-00 00:00:00', 1),
(25288, 28969, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25289, 28969, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25290, 28976, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25291, 28949, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25292, 28988, 74, 7, 0, 'he is ok with the profile expected 16 to 18k...immediate joining...father foreign return..brother in foreign....kindly cross check in adaptability with team and manager only', 154, '0000-00-00 00:00:00', 1),
(25293, 28977, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25294, 28981, 139, 4, 0, 'Selected for Next round\nhaving good communitcation skill \nwill try for RM role ', 159, '0000-00-00 00:00:00', 1),
(25295, 28982, 105, 7, 0, 'candidate communication and performance is Good. Also she have 1.5yrs Experience .will Check with her in the training period.', 159, '0000-00-00 00:00:00', 1),
(25296, 28995, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25297, 28974, 105, 7, 0, 'candidate communication and performance is little ok. 5050 profile also pronunciation need to correct .will Check with him in the training period.', 159, '0000-00-00 00:00:00', 1),
(25298, 28993, 57, 7, 0, 'Candidate is ok, communication average,pls confirm the joining date xxamp Salary(Deshwaran Team) ', 159, '0000-00-00 00:00:00', 1),
(25299, 28992, 155, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25300, 28994, 105, 7, 0, 'candidate communication and performance is Good. Also she have 1yrs Experience .but Distance is long will Check with her in the training period.', 159, '0000-00-00 00:00:00', 1),
(25301, 28996, 149, 7, 0, 'candidate was ok with communication and had need for job have work experience so we can try and also ok for immediate joining', 159, '0000-00-00 00:00:00', 1),
(25302, 28998, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25303, 29001, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25304, 29000, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25305, 28999, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25306, 28991, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25307, 28982, 59, 3, 0, 'Communication Ok have exp in Shree Mutual funds Kannan Team Banu AM just for 6 months previously worked with Star through Manpower need to check in training', 105, '2026-03-11 04:36:15', 1),
(25308, 28994, 59, 3, 0, 'Communication and confident is good too long distance but open to travel 1yr imarque exp open for insurance sales need to check in training', 105, '2026-03-11 04:37:19', 1),
(25309, 28974, 59, 3, 0, 'Communication Ok fresher need to train a lot 5050 for our roles pronunciation need to train will check', 105, '2026-03-11 04:39:00', 1),
(25310, 28993, 59, 3, 0, 'Communication Ok sustainability issues she has Last year attended and go rejected in our roles 5050 need to check in training and see', 57, '2026-03-11 06:51:08', 1),
(25311, 28988, 59, 1, 0, NULL, 74, '2026-03-11 07:18:44', 1),
(25312, 29019, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25313, 29002, 89, 7, 0, 'Good skill. But will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(25314, 29022, 89, 7, 0, 'Alredy working loan department. Salary expectation High. But will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(25315, 29021, 105, 5, 0, 'candidate communication and performance is not Good. Sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25316, 29021, 105, 5, 0, 'candidate communication and performance is not Good. Sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25317, 28958, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25318, 29002, 59, 3, 0, 'Communication ok fresher for our insurance sales need to check in training and confirm let us try', 89, '2026-03-12 01:16:26', 1),
(25319, 29022, 59, 1, 0, NULL, 89, '2026-03-12 01:17:05', 1),
(25320, 29029, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD.KINDLY CONFIRM THE SALARY AND JOINING DATE', 154, '0000-00-00 00:00:00', 1),
(25321, 29005, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25322, 28996, 60, 1, 0, NULL, 149, '2026-03-13 10:14:31', 1),
(25323, 29033, 74, 5, 0, 'not fit high expectation and purely IT domain and mother health issue also', 154, '0000-00-00 00:00:00', 1),
(25324, 29031, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25325, 29038, 149, 7, 0, 'CLIENT WAS OK WITH COMMUNICATION AND IN NEED OF JOB AND WILL JOIN BY MONDAY', 159, '0000-00-00 00:00:00', 1),
(25326, 29039, 149, 5, 0, 'NOT OK WITH COMMUNICATION AND ALSO VERY SLOW IN RESPONSE AND LOOKING NOT OK FOR OUR PROFILE AND NOT SURE ABOUT PRESSURE HANDLING', 159, '0000-00-00 00:00:00', 1),
(25327, 28981, 18, 7, 3, 'Selected for Gnanashekar team Immed Joiner. Ask her to Join on Monday- 15 Mar. Also negotiate the salary', 139, '2026-03-13 01:21:28', 1),
(25328, 29038, 60, 1, 0, NULL, 149, '2026-03-13 02:22:07', 1),
(25329, 28585, 18, 1, 0, NULL, 139, '2026-03-13 02:42:04', 1),
(25330, 29042, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25331, 28967, 18, 7, 0, 'Selected for Abdul team. Ready to Join on monday 15 mar. Please negotiate the salary', 152, '2026-03-13 05:37:01', 1),
(25332, 28981, 60, 1, 0, NULL, 18, '2026-03-13 05:37:18', 1),
(25333, 28967, 60, 1, 0, NULL, 18, '2026-03-13 05:38:01', 1),
(25334, 29044, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25335, 29046, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(25336, 29048, 89, 1, 0, NULL, 104, '0000-00-00 00:00:00', 1),
(25337, 29050, 89, 7, 0, 'Avarage skill fresher.. will analysis 7 days training ', 104, '0000-00-00 00:00:00', 1),
(25338, 29051, 105, 7, 0, 'candidate communication and Performance is Good. Will check with him in the training period ', 104, '0000-00-00 00:00:00', 1),
(25339, 29050, 59, 3, 0, 'Communication Ok fresher need to train from scratch Joining Seems to be doubtful as her friend has been rejected if she joins need to check in training and see', 89, '2026-03-14 03:24:59', 1),
(25340, 29029, 60, 1, 0, NULL, 164, '2026-03-14 03:55:09', 1),
(25341, 29051, 59, 3, 0, 'Communication Ok Fresher for our roles need to check in training and confirm', 105, '2026-03-16 10:53:45', 1),
(25342, 26128, 59, 3, 0, 'IT Profile Terms and conditions accepted React Profile for Monesh Apti/Progr/System/ cleared', 60, '0000-00-00 00:00:00', 1),
(25343, 29060, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25344, 29061, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25345, 29065, 139, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25346, 29068, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25347, 29047, 163, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25348, 29062, 147, 7, 0, 'she is ok in english and telugu good confident in sales need to discuss about salary', 162, '0000-00-00 00:00:00', 1),
(25349, 29063, 147, 7, 0, 'very active guy good in english and telugu he is fresher expected salary 22k we informed 20k is max ', 162, '0000-00-00 00:00:00', 1),
(25350, 29064, 147, 7, 0, 'she fresher only english and telugu done 3month calling in sales need discussed about salary', 162, '0000-00-00 00:00:00', 1),
(25351, 29066, 147, 7, 0, 'she is fresher have done 3month Internship in sales good confident need to speak about salary', 162, '0000-00-00 00:00:00', 1),
(25352, 29067, 147, 7, 0, 'she is fresher having done 3 months Internship in sales with good communication very Energetic candidate need to discuss about salary ', 162, '0000-00-00 00:00:00', 1),
(25353, 29069, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25354, 29067, 59, 1, 0, NULL, 147, '2026-03-16 06:14:17', 1),
(25355, 29064, 59, 1, 0, NULL, 147, '2026-03-16 07:21:49', 1),
(25356, 29063, 59, 1, 0, NULL, 147, '2026-03-16 07:24:10', 1),
(25357, 29062, 59, 1, 0, NULL, 147, '2026-03-16 07:26:29', 1),
(25358, 29066, 59, 1, 0, NULL, 147, '2026-03-16 07:28:35', 1),
(25359, 29071, 74, 7, 0, 'she is ok with the profile completed mba finance ...and worked in meenakshi hospital as office admin in 1 and half year...with 11500 salary ....1 hr travel from home...she is ok with the profile and know about the process...will try expected 14k.....monday joining....father farmer....brother doing bE...kindly cross check about sales and target...', 154, '0000-00-00 00:00:00', 1),
(25360, 28275, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25361, 29071, 59, 1, 0, NULL, 74, '2026-03-17 01:21:08', 1),
(25362, 29087, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25363, 29086, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25364, 29095, 57, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25365, 29098, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25366, 29126, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25367, 29124, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25368, 29112, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25369, 29111, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25370, 29070, 167, 7, 0, 'Good Communications and Knowledge on Sales, Having a Experience Of 1 Year . Expected Salary 20K ', 162, '0000-00-00 00:00:00', 1),
(25371, 29125, 167, 7, 0, 'Good Communication and Sales Experience Of 6 Months in Policy Bazaar Expected salary 18k ', 159, '0000-00-00 00:00:00', 1),
(25372, 29127, 74, 7, 0, 'she is ok with the profile completed bcom , fresher,,,,karthik both friends...father carpenter mother cook,,, she is ready to work in sales environment and finace expected 15k....next month joining...kindly cross check...', 154, '0000-00-00 00:00:00', 1),
(25373, 29097, 74, 7, 0, 'she is ok with the profile completed mca ....1 year experience in wwd tech telecalling rotaional shift...and 6 month experience in data entry...both company will dicontinue the process so she releived...father farmer...native thiruvaiyaru..1 hr travel...expected 12 to 15k...kindly cross check next month joining', 154, '0000-00-00 00:00:00', 1),
(25374, 29129, 168, 7, 0, 'Candidate has been shortlisted having good communication skills fresher but have a knowledge of sales and convincing skills, father working as catering services mother housewife, single child, work required have a laptop nearby 4km from home to office travel by bus, expected salary 20k negotiated to 12 - 13k, currently doing part time job in stationary shop on evening, joining on monday kindly cross check and verify.', 154, '0000-00-00 00:00:00', 1),
(25375, 29127, 59, 3, 0, 'Communication Ok fresher for our roles need to check in training and confirm', 74, '2026-03-19 12:23:16', 1),
(25376, 29097, 59, 3, 0, 'Communication Ok fresher for our insurance sales need to check in training and see let us try', 74, '2026-03-19 12:30:37', 1),
(25377, 29144, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25378, 29129, 59, 3, 0, 'Communication Ok fersher for our insurance sales need to check in training only already worked in retail sales ', 168, '2026-03-19 12:41:14', 1),
(25379, 29092, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25380, 29141, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25381, 29154, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25382, 29094, 59, 3, 0, 'Intern 8-9K for 2 months then 15-16K - Mutual funds he is open to learn can give a try', 154, '0000-00-00 00:00:00', 1),
(25383, 29155, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25384, 29070, 60, 1, 0, NULL, 167, '2026-03-20 10:47:59', 1),
(25385, 29125, 60, 1, 0, NULL, 167, '2026-03-20 10:54:58', 1),
(25386, 29162, 74, 5, 0, 'not fit', 159, '0000-00-00 00:00:00', 1),
(25387, 29090, 89, 7, 0, 'Alredy working 10 month from telecalling insurance filed.\nGood skill person. Money needed person. Good product knowledge. I suggest 17.5 k take home salary. ', 159, '0000-00-00 00:00:00', 1),
(25388, 29090, 59, 3, 0, 'Communication Ok have exp in sales calling same domain worked only for few months need to check in training and see', 89, '2026-03-20 12:07:36', 1),
(25389, 29163, 173, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25390, 29093, 156, 7, 0, 'candidate is ok, communication average, 1.3 years exp for Customer Service Executive please check sustainability and confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(25391, 29157, 74, 7, 0, 'she is ok with the profile expected 13 to 14k', 159, '0000-00-00 00:00:00', 1),
(25392, 29130, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25393, 29159, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25394, 29158, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25395, 29157, 59, 3, 0, 'communication Ok have a gap due to marriage and now divorced have a kid at the age of 7 open for insurance sales open to learn but sustainability not sure let us try', 74, '2026-03-20 04:13:23', 1),
(25396, 29089, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25397, 29169, 173, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25398, 29172, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25399, 29173, 167, 7, 0, 'Good Communications with confidence Skills , fresher Excpected 17k ', 162, '0000-00-00 00:00:00', 1),
(25400, 29174, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25401, 29173, 60, 1, 0, NULL, 167, '2026-03-21 04:25:07', 1),
(25402, 29175, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25403, 29184, 74, 5, 0, 'long gap not highly job need and not performing well ', 154, '0000-00-00 00:00:00', 1),
(25404, 29190, 168, 5, 0, 'Not sustain for Long period no proper communication skill expecting high salary', 154, '0000-00-00 00:00:00', 1),
(25405, 29194, 168, 5, 0, 'Not sustain for long term expecting high salary', 154, '0000-00-00 00:00:00', 1),
(25406, 29192, 168, 5, 0, 'not sustain for long term expecting high salary ', 154, '0000-00-00 00:00:00', 1),
(25407, 29191, 74, 5, 0, 'not performing well', 154, '0000-00-00 00:00:00', 1),
(25408, 29189, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25409, 29188, 74, 5, 0, 'not fit for team', 154, '0000-00-00 00:00:00', 1),
(25410, 29187, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25411, 29177, 105, 7, 0, 'Candidate Communication and performance is good, Will check with him in the training period ', 159, '0000-00-00 00:00:00', 1),
(25412, 29171, 105, 7, 0, 'Candidate Communication and performance is little good, 5050 profile , little voice low will check with her in the training period ', 159, '0000-00-00 00:00:00', 1),
(25413, 29186, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25414, 29180, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25415, 29177, 59, 1, 0, NULL, 105, '2026-03-23 03:26:28', 1),
(25416, 29185, 149, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25417, 29171, 59, 1, 0, NULL, 105, '2026-03-23 03:27:23', 1),
(25418, 29156, 105, 5, 0, 'candidate communication and performance is not good.also his voice is low .sustainable is doubt', 159, '0000-00-00 00:00:00', 1),
(25419, 29196, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25420, 29093, 59, 1, 0, NULL, 156, '2026-03-24 10:12:46', 1),
(25421, 29209, 156, 7, 0, 'candidate is ok, communication average, 1 year exp for axis bank kindly check sustainability. and confirm the joining date.', 159, '0000-00-00 00:00:00', 1),
(25422, 29183, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25423, 29205, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25424, 29210, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25425, 29209, 59, 3, 0, 'Communication Ok have exp in calling but not in the same profile need to check in training and see', 156, '2026-03-24 01:02:55', 1),
(25426, 29201, 89, 7, 0, 'Good skill. But fresher candidate.. will analysis 7 days training ', 159, '0000-00-00 00:00:00', 1),
(25427, 29201, 59, 3, 0, 'Fresher communication Ok sustainability doubts a lot recently married and not much necessity with the Job too let us check in training and check', 89, '2026-03-24 04:50:59', 1),
(25428, 29214, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25429, 29219, 74, 5, 0, 'NOT FIT', 154, '0000-00-00 00:00:00', 1),
(25430, 29221, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25431, 29222, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25432, 29085, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25433, 29207, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25434, 29224, 30, 7, 3, 'selected for dm vasu team suggested ctc 17k joining april 6th', 162, '0000-00-00 00:00:00', 1),
(25435, 29217, 105, 5, 0, 'candidate communcation and performance is not good.also he is very slow and low voice .sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25436, 29218, 147, 7, 0, 'is a civil Engineer now he is a fresher for sale field ,good Communication he said he will work for one year please Confirm with him and need to discuss about salary ', 162, '0000-00-00 00:00:00', 1),
(25437, 29225, 174, 7, 0, 'Please proceed for 18,000/- salary', 60, '0000-00-00 00:00:00', 1),
(25438, 29225, 59, 3, 0, 'Communication Ok have exp in telecalling for Airtel 1yr no proper documents yet only relieving letter has been submitted not sure with the tenure he worked as there is no offer letter submitted let us check in training and confirm', 174, '2026-03-25 04:22:31', 1),
(25439, 29224, 60, 1, 0, NULL, 30, '2026-03-26 10:44:17', 1),
(25440, 29218, 59, 3, 0, 'Communication Ok have exp in other domain fresher for our roles need to check in training and confirm', 147, '2026-03-26 10:51:35', 1),
(25441, 29235, 149, 7, 0, 'candidate was ok with communication and have work experience in telesales and also speaks hindi and ok for immediate joining', 154, '0000-00-00 00:00:00', 1),
(25442, 29239, 155, 5, 0, 'looking for Non - Voice', 154, '0000-00-00 00:00:00', 1),
(25443, 29236, 147, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25444, 29237, 172, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25445, 26976, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25446, 29259, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25447, 29261, 156, 7, 0, 'candidate is ok, communication average. 1.4 years exp for Bluechip corporate Telecalling work, kindly check sustainability and confirm the joining date', 154, '0000-00-00 00:00:00', 1),
(25448, 29267, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25449, 29254, 140, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25450, 29266, 147, 7, 0, 'he is fresher knowing english and Telegu with good skills can offer basic salary', 162, '0000-00-00 00:00:00', 1),
(25451, 29263, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25452, 29268, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25453, 29265, 147, 7, 0, 'Having in Experience in sales good Commutation need to speak about salary ', 162, '0000-00-00 00:00:00', 1),
(25454, 29264, 147, 7, 0, 'he is fresher good confident can go with basic salary ', 162, '0000-00-00 00:00:00', 1),
(25455, 29265, 59, 1, 0, NULL, 147, '2026-03-27 03:23:39', 1),
(25456, 29261, 59, 3, 0, 'Communication Ok have exp in bluechip almost in life insurance process only can give a try andd check in training ', 156, '2026-03-27 03:28:32', 1),
(25457, 29266, 59, 1, 0, NULL, 147, '2026-03-27 03:28:47', 1),
(25458, 29264, 59, 1, 0, NULL, 147, '2026-03-27 03:30:43', 1),
(25459, 29271, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25460, 29272, 161, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25461, 29253, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25462, 29270, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25463, 29269, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25464, 29274, 59, 3, 0, 'Communication Ok have exp in recruitment Creative hands need to check in training and see', 154, '0000-00-00 00:00:00', 1),
(25465, 29235, 60, 1, 0, NULL, 149, '2026-03-27 07:33:52', 1),
(25466, 29281, 155, 5, 0, 'did not perform well ', 154, '0000-00-00 00:00:00', 1),
(25467, 29280, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25468, 29277, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25469, 29282, 168, 7, 0, 'Having good communication skill, have a experience in bpo semi voice process for 8 months, nearby 3 km from home to office, father have textile shop mother housewife, no further commitment for marriage or higher studies, expected salary 13k have laptop, own vehicle, immediate joining.', 154, '0000-00-00 00:00:00', 1);
INSERT INTO `cw_assign_log` (`prime_assign_log_id`, `prime_candidate_tracker_id`, `interviewer`, `interview_status`, `overall_rating`, `remarks`, `trans_created_by`, `trans_created_date`, `trans_status`) VALUES
(25470, 29282, 59, 3, 0, 'Communication Ok fresher for inrsurance sales need to check in training and confirm', 168, '2026-03-28 12:39:58', 1),
(25471, 29286, 167, 7, 0, 'good communication with good skills \n20k salary with having 8 months experience in life Insurance policy ', 162, '0000-00-00 00:00:00', 1),
(25472, 29285, 167, 5, 0, 'Rejected No Communication \nExpecting High Salary \nNo Sustainibility and intrested In IT Background', 162, '0000-00-00 00:00:00', 1),
(25473, 29288, 167, 7, 0, 'good communication and Knowledge \nSustainability Doubt But speak with candidate and filter it ', 162, '0000-00-00 00:00:00', 1),
(25474, 29288, 60, 1, 0, NULL, 167, '2026-03-28 05:38:30', 1),
(25475, 29286, 60, 1, 0, NULL, 167, '2026-03-28 05:40:04', 1),
(25476, 29275, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25477, 29294, 164, 7, 0, 'cOMMUNICATION IS OK.CONFIRM THE SALARY xxamp JOINING DATE ', 154, '0000-00-00 00:00:00', 1),
(25478, 29292, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD. CONFIRM THE SALARY xxamp JOINING DATE', 159, '0000-00-00 00:00:00', 1),
(25479, 29295, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25480, 29293, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25481, 29300, 155, 5, 0, 'did not perform well in interview xxamp Complete IT profile, will not handle target xxamp pressure for sales', 159, '0000-00-00 00:00:00', 1),
(25482, 29284, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25483, 29299, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25484, 29292, 60, 1, 0, NULL, 164, '2026-03-30 05:28:01', 1),
(25485, 29294, 60, 1, 0, NULL, 164, '2026-03-30 05:28:56', 1),
(25486, 29298, 167, 7, 0, 'experience candidate in wipro kYC Process expecting 23k good knowledge in insurance and good communication skills', 162, '0000-00-00 00:00:00', 1),
(25487, 29291, 147, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25488, 29283, 18, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25489, 29309, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25490, 29250, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25491, 29314, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25492, 29311, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25493, 29317, 149, 7, 0, 'candidate communication was ok and not so confident ,in need of job and let try for a week .', 154, '0000-00-00 00:00:00', 1),
(25494, 29308, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25495, 29312, 167, 7, 0, 'Good Communications and basic knowledge in insurance ', 162, '0000-00-00 00:00:00', 1),
(25496, 29289, 156, 7, 0, 'candidate is ok, communication average. 1 year exp for star health insurance And 2 months exp for Galaxy health insurance pls check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25497, 29331, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25498, 29289, 59, 1, 0, NULL, 156, '2026-04-01 12:16:43', 1),
(25499, 29324, 59, 3, 0, 'Communication Ok have exp in HR profile for 4yrs need to check in training and confirm for our roles', 154, '0000-00-00 00:00:00', 1),
(25500, 29332, 109, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25501, 29322, 105, 7, 0, 'Candidate Communication and performance is good. Also she have 1 yrs experience in star . Will check with her in the training period ', 154, '0000-00-00 00:00:00', 1),
(25502, 29323, 105, 5, 0, 'Candidate not performed well in the interview. Also she is not spoke much more ', 154, '0000-00-00 00:00:00', 1),
(25503, 29325, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25504, 29333, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25505, 19394, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25506, 29341, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25507, 29342, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25508, 29322, 59, 1, 0, NULL, 105, '2026-04-01 04:36:57', 1),
(25509, 29317, 60, 1, 0, NULL, 149, '2026-04-02 10:21:45', 1),
(25510, 29365, 156, 7, 0, 'candidate is ok, communication average, 1 year exp for Health insurance company, kindly check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25511, 29361, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25512, 29365, 59, 3, 0, 'Communication Ok have exp in same domain can give a try and check in our process worked in Vizza xxamp star Let us check', 156, '2026-04-02 02:22:59', 1),
(25513, 29354, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25514, 29360, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25515, 29364, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25516, 29304, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25517, 29358, 11, 7, 0, 'Communication Ok selected for my Team Gaurav sir Shortlisted', 154, '0000-00-00 00:00:00', 1),
(25518, 29374, 149, 7, 0, 'candidate was better in communication and have confidence and in need job and so we will try further.', 154, '0000-00-00 00:00:00', 1),
(25519, 29377, 149, 5, 0, 'candidate communication was not so good and she also lacking confidence so rejected\n', 154, '0000-00-00 00:00:00', 1),
(25520, 29375, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25521, 29383, 74, 5, 0, 'not fit', 154, '0000-00-00 00:00:00', 1),
(25522, 29359, 74, 7, 0, 'she is ok with the profile currently doing mba final sem she is in leave exam only pending ...expected exam permission...father catering monthly 35k ....in rental house .....brother studying final year....next street house have bike....have good exposure we try expected 14 to 15k...next week joining,,,kindly cross check', 154, '0000-00-00 00:00:00', 1),
(25523, 29318, 168, 5, 0, 'Not performed well lag in communication', 154, '0000-00-00 00:00:00', 1),
(25524, 29386, 57, 7, 0, 'Candidate is ok, communication Good, 1.5 yrs tele sales exp, pls confirm the salary and joining date,', 154, '0000-00-00 00:00:00', 1),
(25525, 29387, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25526, 29380, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25527, 29386, 59, 1, 0, NULL, 57, '2026-04-06 04:02:10', 1),
(25528, 29376, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25529, 29374, 60, 1, 0, NULL, 149, '2026-04-06 05:33:51', 1),
(25530, 29390, 147, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25531, 29358, 59, 3, 0, 'Communication Ok have exp and a gap in her career same calling exp but not in Insurance Can give a try and check in training', 11, '2026-04-07 09:46:42', 1),
(25532, 29312, 60, 1, 0, NULL, 167, '2026-04-07 10:21:40', 1),
(25533, 29298, 60, 1, 0, NULL, 167, '2026-04-07 10:23:35', 1),
(25534, 29359, 59, 3, 0, 'Communication Ok fresher will take leave for exams inbetween can give a try and check', 74, '2026-04-07 10:56:25', 1),
(25535, 29393, 147, 5, 0, 'Not interested in sales', 162, '0000-00-00 00:00:00', 1),
(25536, 29394, 152, 7, 0, 'Selected for my team, ', 154, '0000-00-00 00:00:00', 1),
(25537, 29397, 147, 7, 0, 'he is having 6 month Experience in bajaj personal loan good communication need to discuss regarding salary ', 162, '0000-00-00 00:00:00', 1),
(25538, 29384, 164, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25539, 29398, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25540, 29402, 105, 5, 0, 'candidate communication and perfoirmance is little ok.but she is sensitive and have 4 year kids .sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25541, 29397, 59, 3, 0, 'Communication ok fresher for our roles career gap need to check in training and confirm let us check', 147, '2026-04-08 12:46:22', 1),
(25542, 29401, 174, 4, 4, 'Good kannada and english communication good skill fresher procced with 18,000 salary cTC', 162, '0000-00-00 00:00:00', 1),
(25543, 29412, 149, 7, 0, 'Candidate was better at communication and also know Hindi and in requirement of job and will join by monday', 154, '0000-00-00 00:00:00', 1),
(25544, 29411, 149, 7, 0, 'Communication was good and in need of job but future goal was iT and location not sure letxquots try for 7days training period ', 154, '0000-00-00 00:00:00', 1),
(25545, 29401, 60, 1, 0, NULL, 174, '2026-04-08 04:00:52', 1),
(25546, 29420, 168, 5, 0, 'High profile not adapt to team , expected salary high', 159, '0000-00-00 00:00:00', 1),
(25547, 29429, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25548, 29432, 11, 4, 0, 'met by gaurav sir and selected for E sales ', 154, '0000-00-00 00:00:00', 1),
(25549, 29430, 147, 4, 0, '3 Experience in Bop with good in english ,kannada communication and active guy regarding salary need to speak 22k 23k ', 162, '0000-00-00 00:00:00', 1),
(25550, 29414, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25551, 29423, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25552, 29433, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25553, 29394, 59, 3, 0, 'Communication ok fresher for our insurance sales have 3yrs exp in customer handling and entire branch handling seems to be ok in communication let us check in training and confirm', 152, '2026-04-10 10:30:33', 1),
(25554, 29445, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25555, 29438, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25556, 29439, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25557, 29411, 59, 3, 0, 'Communication Ok fresher for our insurance sales need to check in training and confirm', 149, '2026-04-10 02:51:38', 1),
(25558, 29412, 59, 3, 0, 'Communication Ok fresher for our insurance sales need to check in training and confirm', 149, '2026-04-10 02:53:08', 1),
(25559, 29458, 140, 4, 0, 'Selected', 154, '0000-00-00 00:00:00', 1),
(25560, 29455, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25561, 29459, 11, 7, 0, 'she is ok for E sales ', 154, '0000-00-00 00:00:00', 1),
(25562, 29456, 105, 5, 0, 'candidate comunication and performance is little ok.5050 profile ,but expected higher package .sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25563, 29430, 59, 3, 0, 'Communication Ok have exp but not exactly in uinsurance sales need to check in training and confirm', 147, '2026-04-11 10:20:09', 1),
(25564, 29487, 74, 5, 0, 'not fit\n', 159, '0000-00-00 00:00:00', 1),
(25565, 29474, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25566, 29485, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25567, 29475, 167, 5, 0, 'No Communications And Expecting high salary', 162, '0000-00-00 00:00:00', 1),
(25568, 29479, 167, 7, 0, 'Good Communications and good skills having In health Insurance \n20-22K Salary ', 162, '0000-00-00 00:00:00', 1),
(25569, 29494, 105, 7, 0, 'Candidate communication and performance is good also she have 4 years experience in telecaling domain will check with in the training period little her salary expectation is used kindly check your End', 154, '0000-00-00 00:00:00', 1),
(25570, 29486, 105, 7, 0, 'Candidate communication and performance is good also she is experienced in star Health Insurance product knowledge is also little okay will check with her in the training period', 154, '0000-00-00 00:00:00', 1),
(25571, 29481, 164, 5, 0, 'Communication Not Well', 154, '0000-00-00 00:00:00', 1),
(25572, 29493, 149, 7, 0, 'candidate was already have sales experience and in need for job and already worked in our company and we shall provide 16k - 17k as salary and she will join by 26th of this month ', 154, '0000-00-00 00:00:00', 1),
(25573, 29493, 59, 1, 0, NULL, 149, '2026-04-13 05:28:16', 1),
(25574, 29486, 59, 3, 0, 'Need to check in training only', 105, '2026-04-13 05:53:36', 1),
(25575, 29494, 59, 1, 0, NULL, 105, '2026-04-13 05:54:51', 1),
(25576, 29503, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25577, 29498, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25578, 29507, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25579, 29471, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25580, 29508, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25581, 29510, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25582, 14842, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25583, 29516, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25584, 29522, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25585, 29514, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25586, 29479, 60, 1, 0, NULL, 167, '2026-04-15 06:07:46', 1),
(25587, 29468, 147, 1, 0, NULL, 162, '0000-00-00 00:00:00', 1),
(25588, 29525, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25589, 29528, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25590, 29504, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25591, 29538, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25592, 29542, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25593, 29546, 57, 5, 0, 'candidate is not ok for sales, communication not good, sustainability issues', 154, '0000-00-00 00:00:00', 1),
(25594, 29545, 57, 5, 0, 'candidate is not ok for sales, communication not good, sustainability issues', 154, '0000-00-00 00:00:00', 1),
(25595, 29544, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25596, 29458, 59, 3, 0, 'Communication Ok have exp in matrmimony for fe months given the same CTC need to check in training and confirm', 140, '2026-04-17 09:41:24', 1),
(25597, 29459, 60, 1, 0, NULL, 11, '2026-04-17 10:29:15', 1),
(25598, 29556, 74, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25599, 29557, 74, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25600, 29583, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25601, 29584, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25602, 29579, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25603, 29533, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25604, 29558, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25605, 29560, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25606, 29566, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25607, 29605, 173, 1, 0, NULL, 172, '0000-00-00 00:00:00', 1),
(25608, 29563, 30, 7, 3, 'ctc suggested 25k max if k we can hire or else drop for pc', 172, '0000-00-00 00:00:00', 1),
(25609, 29604, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25610, 29603, 30, 7, 4, 'selected for pc suggested ctc 23k', 172, '0000-00-00 00:00:00', 1),
(25611, 29582, 105, 7, 0, 'candidate communication and performance is. little ok.5050 profile will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25612, 29569, 105, 7, 0, 'candidate communication and performance is. little ok.5050 profile will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25613, 29610, 167, 7, 0, 'Good Communication Skills Fresher ', 172, '0000-00-00 00:00:00', 1),
(25614, 29569, 59, 1, 0, NULL, 105, '2026-04-18 02:54:55', 1),
(25615, 29582, 60, 1, 0, NULL, 105, '2026-04-18 02:55:17', 1),
(25616, 29567, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25617, 29591, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25618, 29594, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25619, 29597, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25620, 29599, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25621, 29607, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25622, 29612, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25623, 29601, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25624, 29596, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25625, 29432, 59, 3, 0, 'need to review in training', 11, '2026-04-20 09:49:27', 1),
(25626, 29432, 60, 1, 0, NULL, 59, '2026-04-20 09:56:32', 1),
(25627, 29623, 167, 7, 0, 'Good Communication with Good Sales Skills', 172, '0000-00-00 00:00:00', 1),
(25628, 29632, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25629, 29620, 105, 7, 0, 'Candidate Communication little ok 5050 profile will Check with her in the training period ', 154, '0000-00-00 00:00:00', 1),
(25630, 29563, 60, 1, 0, NULL, 30, '2026-04-20 05:22:56', 1),
(25631, 29603, 60, 1, 0, NULL, 30, '2026-04-20 05:23:41', 1),
(25632, 29517, 105, 7, 0, 'Candidate Communication only little ok 5050 profile will check with her in the training period ', 154, '0000-00-00 00:00:00', 1),
(25633, 29642, 30, 7, 3, 'selected for priya team dm suggested ctc 18k may month 4th joining', 172, '0000-00-00 00:00:00', 1),
(25634, 29664, 139, 7, 0, 'Selected for RM role\nsriram selected this candidate\nhaving good communication skill\n4 yr exp in Ar calling \nwilling to work in sales\npackage have to negociate ', 154, '0000-00-00 00:00:00', 1),
(25635, 29650, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25636, 29636, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25637, 29652, 155, 5, 0, 'not so active xxamp have exp in SEO analyst for 1.2 years, will not handle targets and pressure and he may go to his domain itself if he gets.', 154, '0000-00-00 00:00:00', 1),
(25638, 29615, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25639, 29616, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25640, 29638, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25641, 29640, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25642, 29641, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25643, 29649, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25644, 29620, 59, 1, 0, NULL, 105, '2026-04-21 05:38:56', 1),
(25645, 29517, 59, 1, 0, NULL, 105, '2026-04-21 05:41:24', 1),
(25646, 29623, 30, 7, 4, 'Selected for pc immediate joining suggested ctc 27 to 28k ', 167, '2026-04-22 10:15:54', 1),
(25647, 29610, 60, 1, 0, NULL, 167, '2026-04-22 10:16:40', 1),
(25648, 29623, 60, 1, 0, NULL, 30, '2026-04-22 10:58:08', 1),
(25649, 29642, 60, 1, 0, NULL, 30, '2026-04-22 10:59:24', 1),
(25650, 29675, 168, 5, 0, 'Not Performed well have high expectation', 154, '0000-00-00 00:00:00', 1),
(25651, 29680, 156, 7, 0, 'candidate is ok, communication average. 7 months exp for vizza insurance. kindly check sustainability, and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25652, 29677, 156, 7, 0, 'candidate is ok, communication good. 11 monthxquots exp for vizza insurance. kindly check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25653, 29661, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25654, 29678, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25655, 29682, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25656, 29670, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25657, 29687, 74, 7, 0, 'she is ok with the profile completed bca and doing 3 month type writing and seeking job and joined in reimens solution loan collection 6 months experience....have no growth in the process so she ready to releived,,,currently in notice period...last salary 9.5k only...father passed..sister worked in manufacturing company 14k salary...poor family brother 7th standard....mother doing farming.....,.expected 12 to 14k we can try......have sustainability...pervious telecalling basic experience...kindly cross check joining date...', 154, '0000-00-00 00:00:00', 1),
(25658, 29686, 149, 5, 0, 'candidate was from tiruvallur and he was looking for higher ctc for a fresher and so he was also having other options ', 154, '0000-00-00 00:00:00', 1),
(25659, 29696, 164, 7, 0, 'CANDIDATE IS OK.COMMUNICATION IS GOOD.CONFIRM THE SALARY xxamp JOINING DATE', 154, '0000-00-00 00:00:00', 1),
(25660, 29687, 59, 1, 0, NULL, 74, '2026-04-24 01:35:16', 1),
(25661, 29696, 60, 1, 0, NULL, 164, '2026-04-24 02:18:12', 1),
(25662, 29698, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25663, 29697, 156, 7, 0, 'candidate is ok, communication good, already 1 year 3 months exp for finance and services pvt ltd. kindly check sustainability and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25664, 29677, 59, 3, 0, 'Communication Ok have exp in calling and worked in vizza for few months can give a try and check', 156, '2026-04-24 03:09:39', 1),
(25665, 29680, 59, 3, 0, 'Communication Ok have 9 monhts exp in vizza can give a try and check in training', 156, '2026-04-24 03:12:05', 1),
(25666, 29697, 59, 3, 0, 'Communication Ok have exp in different process fresher for our insurance sales can give a try and check in training', 156, '2026-04-24 03:15:04', 1),
(25667, 29606, 174, 4, 0, 'Have good communication skill and offred 18k salary', 172, '0000-00-00 00:00:00', 1),
(25668, 29648, 174, 4, 0, 'have good communication skill offred 20k', 172, '0000-00-00 00:00:00', 1),
(25669, 29606, 60, 1, 0, NULL, 174, '2026-04-24 05:21:17', 1),
(25670, 29648, 60, 1, 0, NULL, 174, '2026-04-24 05:31:55', 1),
(25671, 29690, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25672, 29694, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25673, 29702, 168, 7, 0, 'Shortlisted have a good communication and convincing skills, bold and adaptable for team, have a laptop, expected salary 13k, father farmer, mother housewife, brother studying, have a 1 year experience in Orienshift private limited, and 6 months experience in reimen solutions, currently on notice period will join by may 15th, for next 3 years no marriage commitment. kindly cross check and verify', 154, '0000-00-00 00:00:00', 1),
(25674, 29717, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25675, 29702, 59, 1, 0, NULL, 168, '2026-04-25 02:33:36', 1),
(25676, 29715, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25677, 29720, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25678, 29704, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25679, 29664, 60, 1, 0, NULL, 139, '2026-04-25 04:29:56', 1),
(25680, 29727, 105, 5, 0, 'Candidate communication and permission is not good . Also she mentioned experience but she does not have product knowledge properly. Sustainable is doubt ', 154, '0000-00-00 00:00:00', 1),
(25681, 29732, 57, 5, 0, 'candidate is not ok for sales, communication not good, sustainability issues, salary expectation high', 154, '0000-00-00 00:00:00', 1),
(25682, 29726, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25683, 29731, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25684, 29734, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25685, 29733, 105, 5, 0, 'candidate communication and performance is not good.also her statement is wrong.sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25686, 29723, 74, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25687, 27319, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25688, 29749, 29, 7, 3, 'Sivakumar Team - RM', 154, '0000-00-00 00:00:00', 1),
(25689, 29718, 74, 7, 0, 'she is ok with the profile completed bcom in 2025...in final year she married relative and both worked in chennai....husband worked in ambattur in steel company...she is worked in yella insurance broking company....6 to 8 months experience and releived due to husband shift to dubai....husband 1L salary....father and motherinlaw both in thanjavur near...thenangudi......expected salary 13 to 15k...have insurance experience ...currently not having baby plan....kindly cross check sustainability', 154, '0000-00-00 00:00:00', 1),
(25690, 29718, 59, 1, 0, NULL, 74, '2026-04-28 01:19:44', 1),
(25691, 29745, 105, 5, 0, 'candidate performancel ittle ok.but his communication slightly correlation Also he did not put releived his previous company and he told he will join on after 45 days.he is aking offer letter immediatly , joining Is Doubt', 154, '0000-00-00 00:00:00', 1),
(25692, 29754, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25693, 29753, 27, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25694, 29742, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25695, 29740, 105, 5, 0, 'candidate communication and performance is ok.but he not will appointment.so he said not interested....', 154, '0000-00-00 00:00:00', 1),
(25696, 29760, 89, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25697, 29598, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25698, 29736, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25699, 29758, 105, 5, 0, 'Candidate Communication and performance is Not Good, she have 4 year kid , sustainable is doubt', 154, '0000-00-00 00:00:00', 1),
(25700, 29573, 59, 3, 0, 'IT Profile Fresher Over 5months plus 31 months then 4months notice agrred with the TxxampC let us check', 60, '0000-00-00 00:00:00', 1),
(25701, 29735, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25702, 29749, 59, 3, 0, 'Communication Ok internal team reference need to check in training and confirm', 29, '2026-04-29 03:25:59', 1),
(25703, 29768, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25704, 29769, 59, 3, 0, 'Old employee rejoining based on manager confirmation', 60, '0000-00-00 00:00:00', 1),
(25705, 29771, 29, 7, 3, 'sivakumar', 154, '0000-00-00 00:00:00', 1),
(25706, 29777, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25707, 29776, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25708, 29790, 11, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25709, 29796, 11, 7, 0, 'selected for e sales', 154, '0000-00-00 00:00:00', 1),
(25710, 29803, 105, 7, 0, 'Candidate Communication and performance is Good. She have Little experience ,Will Check With her in the training period ', 159, '0000-00-00 00:00:00', 1),
(25711, 29803, 59, 1, 0, NULL, 105, '2026-05-04 12:40:23', 1),
(25712, 29814, 57, 5, 0, 'candidate is not suitable sales profile, communication not good, salary expectation high, reject the profile..', 154, '0000-00-00 00:00:00', 1),
(25713, 29806, 59, 1, 0, NULL, 159, '0000-00-00 00:00:00', 1),
(25714, 29824, 147, 1, 0, NULL, 172, '0000-00-00 00:00:00', 1),
(25715, 29810, 167, 5, 0, 'Rejected \nNo Communications,\nSustainability Doubt ', 172, '0000-00-00 00:00:00', 1),
(25716, 29816, 57, 5, 0, 'Candiadate is ok, but salary exepectation very high, even we r picth life pc models also but he canxquott accept, looking only health domain, team referrence , reject the profile', 154, '0000-00-00 00:00:00', 1),
(25717, 29804, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25718, 29809, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25719, 29409, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25720, 29813, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25721, 29833, 156, 7, 0, 'candidate is ok, communication average. provide the fresher salary and confirm the joining date.', 154, '0000-00-00 00:00:00', 1),
(25722, 29834, 156, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25723, 29837, 147, 7, 0, 'She is good in Commutation skill bold and confident Employee having family Commitment need to speak about salary once', 172, '0000-00-00 00:00:00', 1),
(25724, 29839, 105, 7, 0, 'candidate communication and performance is ok.2yrs experiance In FS Insurance .expected 23k ,but 20k CTC is Only Ok .will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25725, 29836, 18, 7, 3, 'Selected for Nisha Team. Need to Check her exact and give 5% to 10% hike but can restrict at 4.5L post negotiation as we pay high incentives. Immedeate Joiner', 154, '0000-00-00 00:00:00', 1),
(25726, 29835, 105, 7, 0, 'candidate communication and performance is ok.have some experiance .expected 18k as ctc .will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25727, 29857, 105, 7, 0, 'candidate communication and performance is ok.have some 9 month experiance in loan preocess Little voice is low 5050 .will check with him in the training period', 154, '0000-00-00 00:00:00', 1),
(25728, 29835, 59, 3, 0, 'Communication Ok have part time retail sales exp fresher for telecalling can give a try and check in training', 105, '2026-05-05 03:54:35', 1),
(25729, 29839, 59, 3, 0, 'communcation ok fresher for our roles need to check in training and confirm', 105, '2026-05-05 03:56:57', 1),
(25730, 29857, 59, 3, 0, 'Communication Ok fresher for telecalling insurance Need to check in training and soncirm', 105, '2026-05-05 04:00:20', 1),
(25731, 29836, 60, 1, 0, NULL, 18, '2026-05-05 04:26:36', 1),
(25732, 29845, 89, 7, 0, 'Fresher candidate. Avarage skill but will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(25733, 29859, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25734, 29858, 155, 2, 0, 'candidate communication is average, explained the roles as he need time to discuss with parents. So if he comes for the further round let us try and see', 154, '0000-00-00 00:00:00', 1),
(25735, 29838, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25736, 29771, 59, 3, 0, 'Communication Ok have exp in india mart fresher for our insurance sales need to check in training and confirm', 29, '2026-05-05 06:02:50', 1),
(25737, 29844, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25738, 29850, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25739, 29843, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25740, 29840, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25741, 29841, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25742, 29846, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25743, 29852, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25744, 29851, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25745, 29845, 59, 3, 0, 'Communication Average 5050 sustainability doubts a lot need to check in training only\n', 89, '2026-05-06 10:02:56', 1),
(25746, 29820, 57, 7, 0, 'Candidate is ok, communication good, 2yrs exp, please confirm the joining date xxamp Salary', 154, '0000-00-00 00:00:00', 1),
(25747, 29820, 59, 1, 0, NULL, 57, '2026-05-06 12:35:04', 1),
(25748, 29872, 105, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25749, 29871, 152, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25750, 29875, 105, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25751, 29876, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25752, 29817, 176, 7, 0, 'candidate select ok with voice ', 154, '0000-00-00 00:00:00', 1),
(25753, 29868, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25754, 29874, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25755, 29877, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25756, 29869, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25757, 29867, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25758, 29865, 139, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25759, 29900, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25760, 29884, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25761, 29637, 89, 7, 0, 'good skill. already experience night shift health care. she has health peoblem . so completely check and then join', 154, '0000-00-00 00:00:00', 1),
(25762, 29885, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25763, 29883, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25764, 29888, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25765, 29897, 176, 7, 0, 'candidate select already experience in credit card sale ', 154, '0000-00-00 00:00:00', 1),
(25766, 29902, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25767, 29899, 137, 7, 0, 'candidate communication skill and vocie good , she already one year work with ice cream shop for sales work but some personal reason to quit the job , she interest in tele calling work so try for 7 days training period , exp salary is 16 to 17k .', 154, '0000-00-00 00:00:00', 1),
(25768, 29908, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25769, 29907, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25770, 29894, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25771, 29903, 57, 7, 0, 'Candidate is ok, 50/50 Profile , just try 7days training period, confirm the joining date xxamp Salary, Arulmani team', 159, '0000-00-00 00:00:00', 1),
(25772, 29893, 29, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25773, 29898, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25774, 29637, 59, 3, 0, 'Communication ok fresher for our insurance sales can give a try and check in training', 89, '2026-05-07 05:08:55', 1),
(25775, 29903, 59, 3, 0, 'Communication ok fresher for our insurance sales need to check in training ', 57, '2026-05-07 06:40:29', 1),
(25776, 29837, 60, 1, 0, NULL, 147, '2026-05-07 06:52:45', 1),
(25777, 29759, 59, 3, 0, 'Open with term for Sathish IT 5 months plus 3 yrs only Document no cheque\n', 60, '0000-00-00 00:00:00', 1),
(25778, 29922, 89, 7, 0, 'Selected.. Syed attended this interview. Avarage skill but candidate joing expect jun . And Letxquots try this candidate. This syed feedback. Will analysis 7 days training ', 154, '0000-00-00 00:00:00', 1),
(25779, 29926, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25780, 29921, 149, 7, 0, 'candidate was better at communication and active and job needed currently also ok for immediate joining .', 154, '0000-00-00 00:00:00', 1),
(25781, 29923, 155, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25782, 29912, 137, 7, 0, 'candidate communication skill and voice is ok , money need person , and past exp is not related to sales , but interested in sales , so try for 7 days training period, past salary is 16 k so he need 17k salary , this candidate is dhanush team', 154, '0000-00-00 00:00:00', 1),
(25783, 29916, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25784, 7745, 137, 5, 0, 'SALERY EXP IS VERY HIGH SO NOT FIT FOR MY TEAM', 154, '0000-00-00 00:00:00', 1),
(25785, 29890, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25786, 29914, 164, 7, 0, 'CANDIDATE IS OK COMMUNICATION IS GOOD .KINDLY CONFIRM THE SALARY AND JOINING DATE \n', 154, '0000-00-00 00:00:00', 1),
(25787, 29915, 57, 7, 0, 'Candidate is ok, fresher pls check sustainability. pls confirm the salary and joining date', 154, '0000-00-00 00:00:00', 1),
(25788, 29924, 57, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25789, 29928, 161, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25790, 29927, 149, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25791, 29913, 149, 7, 0, 'candidate was ok with communication and also have some experience regarding vice process so we try for initial 7days ', 154, '0000-00-00 00:00:00', 1),
(25792, 29918, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25793, 29878, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION OK.kINDLY CONFIRM THE SALARY AND JOINING DATE ', 154, '0000-00-00 00:00:00', 1),
(25794, 29912, 59, 1, 0, NULL, 137, '2026-05-08 05:20:38', 1),
(25795, 29899, 59, 1, 0, NULL, 137, '2026-05-08 05:23:47', 1),
(25796, 28684, 137, 5, 0, '.', 137, '2026-05-08 05:24:31', 1),
(25797, 29913, 59, 1, 0, NULL, 149, '2026-05-08 07:05:33', 1),
(25798, 29833, 59, 1, 0, NULL, 156, '2026-05-08 07:07:02', 1),
(25799, 29922, 59, 1, 0, NULL, 89, '2026-05-08 07:09:42', 1),
(25800, 29921, 59, 3, 0, 'Communication Ok fresher for our insurance sales need to check in training ', 149, '2026-05-08 07:10:28', 1),
(25801, 29878, 60, 1, 0, NULL, 164, '2026-05-08 07:11:25', 1),
(25802, 29914, 60, 1, 0, NULL, 164, '2026-05-08 07:12:07', 1),
(25803, 29915, 59, 1, 0, NULL, 57, '2026-05-08 07:41:22', 1),
(25804, 29817, 59, 3, 0, 'Communication Ok have exp in teaching profile can give a try and check in training', 176, '2026-05-09 12:18:08', 1),
(25805, 29897, 59, 3, 0, 'Communication Ok fresher for insurance sales can give a try and check in training', 176, '2026-05-09 12:22:37', 1),
(25806, 29939, 149, 7, 0, 'candidate was ok with communication and in need of job and also ok for immediate joining and lets try for 7 days training', 154, '0000-00-00 00:00:00', 1),
(25807, 29937, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25808, 29938, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25809, 29940, 155, 5, 0, 'his voice pronouncation is not proper so will not suit for our roles.', 154, '0000-00-00 00:00:00', 1),
(25810, 29941, 59, 1, 0, NULL, 154, '0000-00-00 00:00:00', 1),
(25811, 29942, 176, 5, 0, 'rejected ', 154, '0000-00-00 00:00:00', 1),
(25812, 29939, 59, 3, 0, 'Communication Ok fresher for insurance sales calling can give a try and check in training', 149, '2026-05-09 03:12:03', 1),
(25813, 29943, 164, 7, 0, 'CANDIDATE OK.COMMUNICATION IS GOOD.kINDLY CONFIRM THE SALARY AND JOINING DATE', 154, '0000-00-00 00:00:00', 1),
(25814, 29943, 60, 1, 0, NULL, 164, '2026-05-09 03:53:19', 1),
(25815, 29796, 60, 1, 0, NULL, 11, '2026-05-09 05:40:31', 1);
-- --------------------------------------------------------
--
-- Table structure for table `cw_blood_group`
--
CREATE TABLE `cw_blood_group` (
`prime_blood_group_id` int NOT NULL,
`blood_group` varchar(100) DEFAULT '',
`trans_created_by` int DEFAULT '0',
`trans_created_date` datetime DEFAULT NULL,
`trans_updated_by` int DEFAULT '0',
`trans_updated_date` datetime DEFAULT NULL,
`trans_deleted_by` int DEFAULT '0',
`trans_deleted_date` datetime DEFAULT NULL,
`trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `cw_blood_group`
--
INSERT INTO `cw_blood_group` (`prime_blood_group_id`, `blood_group`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'A+', 1, '2020-02-06 10:42:13', 1, '2023-10-26 03:44:11', 0, NULL, 1),
(2, 'A-', 1, '2020-02-06 10:42:18', 0, NULL, 0, NULL, 1),
(3, 'B+', 1, '2020-02-06 10:42:28', 0, NULL, 0, NULL, 1),
(4, 'B-', 1, '2020-02-06 10:42:32', 0, NULL, 0, NULL, 1),
(5, 'AB+', 1, '2020-02-06 10:42:48', 0, NULL, 0, NULL, 1),
(6, 'AB-', 1, '2020-02-06 10:42:54', 0, NULL, 0, NULL, 1),
(7, 'O+', 1, '2020-02-06 10:43:02', 0, NULL, 0, NULL, 1),
(8, 'O-', 1, '2020-02-06 10:43:06', 0, NULL, 0, NULL, 1),
(9, 'Nil', 4, '2020-02-24 07:37:07', 1, '2020-02-25 08:47:37', 0, NULL, 1),
(10, 'A1+', 1, '2020-02-25 08:47:46', 0, NULL, 0, NULL, 1),
(11, 'A1B+', 1, '2020-02-25 08:47:55', 0, NULL, 0, NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `cw_branch`
--
CREATE TABLE `cw_branch` (
`prime_branch_id` int NOT NULL,
`branch` varchar(100) DEFAULT '',
`location` varchar(100) DEFAULT '0',
`trans_created_by` int DEFAULT '0',
`trans_created_date` datetime DEFAULT NULL,
`trans_updated_by` int DEFAULT '0',
`trans_updated_date` datetime DEFAULT NULL,
`trans_deleted_by` int DEFAULT '0',
`trans_deleted_date` datetime DEFAULT NULL,
`trans_status` int DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `cw_branch`
--
INSERT INTO `cw_branch` (`prime_branch_id`, `branch`, `location`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'T Nagar', '1', 1, '2020-09-12 10:58:23', 1, '2020-12-15 01:38:29', 0, NULL, 1),
(2, 'Madiwala', '2', 1, '2020-10-06 04:26:01', 1, '2020-12-15 01:38:33', 0, NULL, 1),
(3, 'Arumbakkam', '1', 1, '2020-10-06 04:26:14', 1, '2020-12-15 01:38:38', 0, NULL, 1),
(4, 'Jubilee Hills', '3', 60, '2021-05-06 09:45:53', 0, NULL, 0, NULL, 1),
(5, 'Thanjavur', '4', 60, '2021-05-20 01:53:46', 0, NULL, 0, NULL, 1),
(6, 'Tiruvallur', '4', 60, '2021-05-20 02:04:37', 0, NULL, 0, NULL, 1),
(7, 'Erode', '4', 60, '2022-03-23 11:13:04', 0, NULL, 0, NULL, 1),
(8, 'Spencer Plaza', '1', 60, '2023-01-24 11:25:08', 0, NULL, 0, NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `cw_candidate_status`
--
CREATE TABLE `cw_candidate_status` (
`candidate_status_id` int NOT NULL,
`candidate_status` varchar(100) DEFAULT NULL,
`trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `cw_candidate_status`
--
INSERT INTO `cw_candidate_status` (`candidate_status_id`, `candidate_status`, `trans_status`) VALUES
(1, 'Assigned', 1),
(2, 'Hold', 1),
(3, 'Selected', 1),
(4, 'Selected For Next Round', 1),
(5, 'Rejected', 1),
(6, 'Yet to Assign', 1),
(7, 'Shortlisted', 1),
(8, 'Not Attended', 1),
(9, 'Dep. Change', 1),
(10, 'Reached Office', 1);
-- --------------------------------------------------------
--
-- Table structure for table `cw_candidate_tracker`
--
CREATE TABLE `cw_candidate_tracker` (
`prime_candidate_tracker_id` int NOT NULL,
`candidate_name` varchar(100) DEFAULT '',
`post_applied_for` varchar(100) DEFAULT '0',
`mobile_number` varchar(10) DEFAULT NULL,
`alternate_number` varchar(10) DEFAULT NULL,
`email_id` varchar(100) DEFAULT NULL,
`date_of_birth` date DEFAULT NULL,
`age` int DEFAULT '0',
`applied_by` varchar(100) DEFAULT '0',
`marital_status` varchar(100) DEFAULT '0',
`father_or_husband_name` varchar(100) DEFAULT '',
`occupation` varchar(50) DEFAULT '',
`income` decimal(15,2) DEFAULT '0.00',
`no_of_siblings` int DEFAULT '0',
`current_salary` decimal(15,2) DEFAULT '0.00',
`expected_salary` decimal(15,2) DEFAULT '0.00',
`permanent_location` varchar(50) DEFAULT '',
`current_location` varchar(50) DEFAULT '',
`candidate_code` varchar(50) DEFAULT '',
`consultancy` varchar(100) DEFAULT '0',
`employee_type` varchar(100) DEFAULT '0',
`sts_resume` text,
`interview_date` datetime DEFAULT NULL,
`interview_type` varchar(100) DEFAULT '0',
`date_of_available` date DEFAULT NULL,
`notice_period` int DEFAULT '0',
`employee_code` varchar(50) DEFAULT '',
`candidate_status` varchar(100) DEFAULT '6',
`interviewer` varchar(100) DEFAULT '0',
`date_of_joining` date DEFAULT NULL,
`salary_commited` decimal(15,2) DEFAULT '0.00',
`interview_time` varchar(50) DEFAULT '',
`selected_status` varchar(100) DEFAULT '0',
`abs_or_ter_date` date DEFAULT NULL,
`bike` varchar(100) DEFAULT '1',
`interviewer_remarks` text,
`department` varchar(100) DEFAULT '0',
`dob_exist` varchar(100) DEFAULT '2',
`company` varchar(100) DEFAULT '0',
`company_location` varchar(100) DEFAULT '0',
`company_branch` varchar(100) DEFAULT '0',
`resend_mail` varchar(100) DEFAULT '0',
`inc` varchar(100) DEFAULT '1',
`ncd` date DEFAULT NULL,
`interview_slot` varchar(100) DEFAULT '0',
`channel_name` varchar(100) DEFAULT '0',
`hr_remark` text,
`recruiter_remark` text,
`recruiter` varchar(100) DEFAULT '0',
`enroll_reason` varchar(100) DEFAULT '0',
`level_1` varchar(100) DEFAULT '0',
`level_2` varchar(100) DEFAULT '0',
`exp_doj` date DEFAULT NULL,
`trans_created_by` int DEFAULT '0',
`trans_created_date` datetime DEFAULT NULL,
`trans_updated_by` int DEFAULT '0',
`trans_updated_date` datetime DEFAULT NULL,
`trans_deleted_by` int DEFAULT '0',
`trans_deleted_date` datetime DEFAULT NULL,
`trans_status` int DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `cw_candidate_tracker`
--
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1, 'roohe banu s', '4', '9384704932', '8124991474', 'roohebanu@gmail.com', '2000-09-26', 19, '2', '2', 'late shahul hameed', 'nil', 30000.00, 1, 11900.00, 13000.00, 'perambur venus', 'Perambur Venus', '2009030001', '2', '2', 'upload_files/candidate_tracker/29340796694_roohebanu.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '11', NULL, 0.00, '12:05 PM', '', '1970-01-01', '2', 'will not sustain', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:40:48', 50, '2020-09-10 02:35:46', 0, NULL, 1),
(2, '', '0', '7358021287', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:42:14', 0, NULL, 0, NULL, 1),
(3, 'V.s.roshini', '4', '9566115557', '7010199159', 'roshinivs200020@gmail.com', '2000-03-20', 20, '2', '2', 'R.v.balasubramaniam', 'Advocate', 410000.00, 1, 0.00, 10000.00, 'No 10 kannadasan st, Ambal nagar, chennai 600089', 'Chennai, valaswawakkam', '2009030003', '2', '1', 'upload_files/candidate_tracker/72432275517_Resume.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '10:48 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:42:48', 50, '2020-09-22 12:09:01', 0, NULL, 1),
(4, 'Kamali', '4', '7338792328', '7358684466', 'kamalij19@gmail.com', '2005-09-03', 21, '2', '2', 'M jagadeesan', 'Auto driver', 20000.00, 1, 12000.00, 13000.00, 'manali new town', 'Chennai', '2009030004', '2', '2', 'upload_files/candidate_tracker/54990234462_1591085905270Resume_kamali new.docx', NULL, NULL, '2020-09-03', 0, '', '5', '11', '1970-01-01', 0.00, '10:50 AM', '', '1970-01-01', '2', 'not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:42:55', 50, '2020-09-22 12:09:13', 0, NULL, 1),
(5, 'Asha A', '6', '7904752902', '8939382193', 'asharethi2410@gmail.com', '2005-09-03', 23, '1', '2', 'Father', 'Farmer', 4000.00, 2, 15000.00, 17000.00, 'Chengalpattu', 'Velachery', '2009030005', '', '2', 'upload_files/candidate_tracker/35753369477_ASHA Resume(2).pdf', NULL, NULL, '2020-09-03', 0, 'Thinkfinity', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'has exp only in semi voice ane exp salary is 17K', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:46:16', 50, '2020-09-22 12:09:23', 0, NULL, 1),
(6, 'Sornamugi. N', '6', '9087039602', '8754461032', 'Sornaishu@gmail.com', '1997-08-22', 23, '1', '2', 'Natarajan. M', 'Driver', 4000.00, 2, 14000.00, 16000.00, 'Cuddalour', 'Velachery', '2009030006', '', '2', 'upload_files/candidate_tracker/66447799289_sorna', NULL, NULL, '2020-09-03', 0, 'Thinkfinity', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'asked Time To Think About The Salary Exp In Kalyan Matrimony. Exp Is 13k+', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:46:21', 50, '2020-09-22 12:09:33', 0, NULL, 1),
(7, 'Niveadha R', '6', '8428282090', '9789544463', 'niveadharaj@gmail.com', '2005-09-03', 22, '2', '2', 'Rajendiran C', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2009030007', '1', '1', 'upload_files/candidate_tracker/93821910016_NIVEADHA R resume.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '26', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'she dont know the basics of c and c++', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-09-03 10:46:44', 50, '2020-12-17 05:42:59', 0, NULL, 1),
(8, 'Ashok Kumar S', '4', '6385880834', '9791620823', 'Ashoksri340@gmail.com', '2000-05-31', 20, '2', '2', 'Srinivasa babu', 'Taxi driver', 10000.00, 1, 0.00, 15000.00, 'No.10,Gayathri garden, dinnur,hosur', '2577,Nehru Nagar,TNHB Avadi,near Croma,Chennai', '2009030008', '1', '1', 'upload_files/candidate_tracker/96206386559_myresume2.doc', NULL, NULL, '2020-09-03', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not suite for cRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 10:47:48', 50, '2020-09-10 02:37:06', 0, NULL, 1),
(9, 'K.Raghul', '4', '9600024682', '7358404907', 'raghulilanos@gmail.com', '2005-09-03', 22, '2', '2', 'A.Kumar', 'Bussiness', 20000.00, 1, 0.00, 15000.00, 'Tondiarpet', 'Tondiarpet', '2009030009', '1', '1', 'upload_files/candidate_tracker/99510466817_final resume...docx', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '10:58 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 10:53:30', 50, '2020-09-22 12:09:59', 0, NULL, 1),
(10, '', '0', '8428979726', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:53:46', 0, NULL, 0, NULL, 1),
(11, 'nirmal kumar', '5', '9094721760', '2134567890', 'nirmalkumar@cafs.com', '1995-03-01', 25, '2', '2', 'gunachandran', 'cycle shop', 20000.00, 1, 20000.00, 25000.00, 'vadapalani', 'Vadapalani', '2009030011', '1', '2', '0', NULL, NULL, '2020-09-03', 15, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 10:59:41', 1, '2020-09-03 11:04:10', 1, '2020-09-03 11:23:55', 0),
(12, 'Syed imran basha.a', '3', '7550228460', '6380032297', 'irfanbasha2234@gmail.com', '1999-07-05', 21, '1', '2', 'Anwar basha.s', 'Daily wager', 20000.00, 1, 0.00, 12000.00, '3/516,2nd street,ambedkarnagar,nandhambakkam', 'Kundrathur', '2009030012', '', '1', '0', NULL, NULL, '2020-09-03', 0, 'nA', '3', '16', '2020-09-07', 13000.00, '11:21 AM', '5', '1970-01-01', '1', '', '2', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:16:43', 7, '2020-10-01 12:59:37', 0, NULL, 1),
(13, 'M Ganesh Kumar', '4', '9003034271', '9841806308', 'dgvcganeshkumar@gmail.com', '1997-01-15', 23, '2', '2', 'V Murugan', 'Labour', 10000.00, 1, 13045.00, 18000.00, 'Porur', 'Vadapalni', '2009030013', '1', '2', 'upload_files/candidate_tracker/50430216509_GANESH RESUME-converted.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '09:50 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 11:27:07', 50, '2020-09-22 12:10:49', 0, NULL, 1),
(14, 'Tamilelakkiya', '4', '8122282818', '8122282818', 'elakkiya18dec@gmail.com', '2005-09-03', 21, '2', '2', 'K.senthillumar', 'Driver', 6000.00, 2, 8000.00, 10000.00, 'K.k.nagar', 'K.K. Nagar', '2009030014', '1', '2', 'upload_files/candidate_tracker/3735324361_S.Tamilelakkiya RESUME.docx', NULL, NULL, '2020-09-03', 8, '', '5', '8', '1970-01-01', 0.00, '11:38 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 11:27:29', 50, '2020-09-22 12:10:58', 0, NULL, 1),
(15, 'Pavithra', '4', '7958021287', '9361372703', 'Pavithratha.bidurai@gmail.com', '2005-09-03', 23, '2', '2', 'Thanbidurai', '..', 0.00, 1, 12000.00, 13000.00, 'Tondaipet', 'Tondaipet', '2009030015', '2', '2', 'upload_files/candidate_tracker/41551956718_0_1591085905270Resume pavi.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:28:57', 50, '2020-09-22 12:11:06', 0, NULL, 1),
(16, 'Jayasree.m', '4', '9884331232', '8056201945', 'Jayasreemuru.2@gmail.com', '1999-07-02', 21, '1', '2', 'D.murugesan', 'Sun control lims(sticker shop)', 30000.00, 2, 0.00, 10000.00, '28/3 ammaiyappan street,old washermenpet', '28/3 ammaiyappan street,old washermenpet', '2009030016', '', '1', 'upload_files/candidate_tracker/87721059016_CV_2020-08-12-110629.pdf', NULL, NULL, '2020-09-03', 0, 'NA', '5', '8', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '1', 'holded for telephonic and no Response from her. will not suite for CAFS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:29:02', 50, '2020-09-22 12:11:20', 0, NULL, 1),
(17, 'Pradeep raj k', '6', '6381105054', '9445787558', 'Kpradeepraj7@gmail.com', '1993-04-05', 27, '2', '2', 'Karthikeyan d', 'Southern railway', 15000.00, 0, 9800.00, 10500.00, 'Chennai99', 'Chennai99', '2009030017', '1', '2', 'upload_files/candidate_tracker/60913468388_Resume', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '09:50 AM', '', '1970-01-01', '1', 'will not suite for this profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 11:29:41', 50, '2020-09-22 12:11:32', 0, NULL, 1),
(18, 'Jothiraj', '5', '9710102174', '', 'Jothijothiraj66@gmail.com', '2005-09-03', 27, '2', '2', 'Muralikrishnan', 'Electrcian', 20000.00, 2, 12500.00, 16000.00, 'Chennai', 'Taramani, chennai', '2009030018', '1', '2', 'upload_files/candidate_tracker/60579062711_jothi raj.2.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:33 AM', '', '1970-01-01', '1', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 11:30:36', 50, '2020-09-22 12:11:43', 0, NULL, 1),
(19, 'Rizwana fathima', '4', '9361789259', '9940223080', 'reshmareshu0709@gmail.com', '1996-12-07', 23, '1', '2', 'Rajan', 'Driver', 45000.00, 1, 26000.00, 20000.00, '5/52,seven well Street, St Thomas Mount, ch 16', 'Chennai', '2009030019', '', '2', 'upload_files/candidate_tracker/11127321724_Reshma resume.docx', NULL, NULL, '2020-09-03', 0, 'NA', '5', '8', '1970-01-01', 0.00, '11:43 AM', '', '1970-01-01', '2', 'will not suite for cRM', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:30:49', 50, '2020-09-22 12:11:56', 0, NULL, 1),
(20, 'Sokkanathan C', '6', '9003240542', '9003240542', 'sokkanathanc0101@gmail.com', '1996-09-26', 23, '1', '2', 'Chandrasekar', 'Tailor', 15000.00, 1, 18000.00, 20.00, 'Mr Nagar kondugaiyur Chennai 600118', 'Mr Nagar kondugaiyur Chennai 600118', '2009030020', '', '2', 'upload_files/candidate_tracker/89038402930_Sokkanathan C new1.pdf', NULL, NULL, '2020-09-03', 1, 'Prinyaka', '5', '11', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:33:59', 50, '2020-09-22 12:12:08', 0, NULL, 1),
(21, '', '0', '9003599224', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:34:41', 0, NULL, 0, NULL, 1),
(22, 'Syed Mohammed', '6', '9790828983', '7299857325', 'syed.mohammed805@gmail.com', '1988-04-08', 32, '1', '1', 'Meeran', 'Taylor', 10000.00, 2, 23000.00, 23000.00, 'Chennai', 'Chennai', '2009030022', '', '2', 'upload_files/candidate_tracker/67229170230_current update cv.docx', NULL, NULL, '2020-09-03', 7, 'Priyanka', '5', '25', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit for this profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:34:55', 52, '2020-11-05 10:10:16', 0, NULL, 1),
(23, 'K. Akash', '6', '9176168811', '', 'Akashraja845@gmail.com', '1998-02-08', 22, '1', '2', 'D. Kadhir', 'Painter', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2009030023', '', '2', 'upload_files/candidate_tracker/49498776872_Aaksh Resume.pdf', NULL, NULL, '2020-09-03', 1, 'Priyanka', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:37:32', 50, '2020-09-22 12:12:30', 0, NULL, 1),
(24, 'Dinesh kumar', '6', '6380506933', '9566242716', 'dineshkumarjio98@gmail.com', '2005-09-03', 22, '1', '2', 'Baskar. K', 'Tailor', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Villivakkam', '2009030024', '', '1', 'upload_files/candidate_tracker/60409465007_DINESH KUMAR.pdf', NULL, NULL, '2020-09-03', 0, 'NA', '5', '16', '1970-01-01', 0.00, '11:41 AM', '', '1970-01-01', '1', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:38:04', 50, '2020-09-22 12:12:45', 0, NULL, 1),
(25, 'a.vinoth', '6', '8248560418', '9962620926', 'danacvino@gmail.com', '1998-09-18', 21, '1', '2', 'n.andrews', 'private company', 20000.00, 2, 0.00, 15000.00, 'chennai', 'purasaiwalkam', '2009030025', '', '1', 'upload_files/candidate_tracker/26365490620_NEW VINO RESUME.pdf', NULL, NULL, '2020-09-03', 0, 'NA', '5', '13', '1970-01-01', 0.00, '12:38 PM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:38:20', 50, '2020-09-22 12:12:58', 0, NULL, 1),
(26, 'T. G. Ajithkumar', '4', '8248768961', '9176201133', 'ajithkumar1133x@gmail.com', '2005-09-03', 21, '1', '2', 'T.D.GOPAL', 'Own business', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2009030026', '', '1', 'upload_files/candidate_tracker/77659109042_178290', NULL, NULL, '2020-09-03', 0, 'NA', '5', '21', '1970-01-01', 0.00, '11:52 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:45:08', 50, '2020-09-22 12:13:12', 0, NULL, 1),
(27, 'G.sathes karthick', '5', '8778338934', '7092977842', 'Sathes2karthick@gmailcom', '2005-09-03', 39, '2', '1', 'A.k.gopalan', 'Retaired', 45000.00, 3, 57000.00, 75000.00, 'Dindigul', 'Chennau', '2009030027', '1', '2', 'upload_files/candidate_tracker/15182263178_SATHES KARTHICK cv.pdf', NULL, NULL, '2020-09-03', 1, '', '5', '8', '1970-01-01', 0.00, '12:33 PM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 12:02:16', 50, '2020-09-22 12:13:28', 0, NULL, 1),
(28, '', '0', '7092409722', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 12:11:38', 0, NULL, 0, NULL, 1),
(29, 'gokulraj sankar', '3', '8608706134', '', '', '1991-08-28', 29, '2', '2', '-', '-', 10000.00, 1, 10000.00, 100000.00, 'chennai', 'chennai', '2009030029', '1', '2', 'upload_files/candidate_tracker/47468210321_Development Platforms HMS and HRMS (1).pdf', NULL, NULL, '2020-09-05', 30, '', '3', '26', '2020-09-05', 40000.00, '01:24 PM', '', '1970-01-01', '1', 'good in tech and atitude', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 12:12:12', 1, '2020-09-05 01:28:15', 1, '2020-09-05 03:45:35', 0),
(30, 'NANCY A', '4', '6383386366', '6374819345', 'nannimhn@gmail.com', '1998-09-25', 21, '2', '2', 'I.ANBU RAJ', 'MTC Bus driver', 25000.00, 1, 0.00, 12000.00, 'Chennai', 'Mylapore', '2009030030', '1', '1', 'upload_files/candidate_tracker/46403756789_1594704765161Resume_Nancy.pdf', NULL, NULL, '2020-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '12:22 PM', '', '1970-01-01', '1', 'rejected in telephonic ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 12:12:41', 50, '2020-09-22 12:13:38', 0, NULL, 1),
(31, '', '0', '7299757677', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 01:04:09', 0, NULL, 0, NULL, 1),
(32, 'P kavitha', '4', '7550107391', '7806850981', 'kavithaperumal0101@gmail.com', '1999-01-01', 21, '2', '2', 'S Perumal', 'Sales executive', 20000.00, 1, 25000.00, 15000.00, 'No.11/5 Periyar Nagar 5 th street,chrompet', 'CHENNAI', '2009030032', '1', '2', 'upload_files/candidate_tracker/95833108791_kavitha resume CORRECT.doc', NULL, NULL, '2020-09-03', 0, '', '5', '8', NULL, 0.00, '02:19 PM', '', '1970-01-01', '1', 'will not suite for crm', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 01:49:21', 50, '2020-09-10 02:43:34', 0, NULL, 1),
(33, 'Rohith Thangaraj', '5', '9952058868', '4448515804', 'rohiththangaraj26@gmail.com', '1997-12-04', 22, '2', '2', 'Suresh Kumar', 'Business', 50000.00, 3, 330000.00, 400000.00, 'Chennai', 'Chennai', '2009030033', '1', '2', 'upload_files/candidate_tracker/68564339739_Rohith_cv (1).pdf', NULL, NULL, '2020-09-03', 1, '', '6', '', '1970-01-01', 0.00, '02:10 PM', '', '1970-01-01', '1', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 01:59:09', 50, '2020-09-22 12:13:55', 0, NULL, 1),
(34, '', '0', '9952058868', NULL, NULL, NULL, 0, '2', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030034', '1', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 02:01:09', 0, NULL, 0, NULL, 1),
(35, '', '0', '9952058868', NULL, NULL, NULL, 0, '2', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030035', '1', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-03 02:03:30', 0, NULL, 0, NULL, 1),
(36, '', '0', '7092326323', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 03:31:15', 0, NULL, 0, NULL, 1),
(37, '', '0', '9884444659', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030037', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 03:50:15', 0, NULL, 0, NULL, 1),
(38, '', '0', '7358542395', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009030038', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 08:44:11', 0, NULL, 0, NULL, 1),
(39, 'gokulraj sankar', '2', '8608706341', '', 'gs@cafsinfotech.com', '1991-08-28', 29, '2', '2', 'sankar', 'farmer', 1000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2009030039', '1', '1', 'upload_files/candidate_tracker/1767043563_Smart HRMS Architecture.pdf', NULL, NULL, '2020-09-15', 0, '', '3', '8', '2020-09-15', 11000.00, '02:33 PM', '2', '2020-09-15', '1', 'nill', '2', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:07:20', 7, '2020-10-01 01:02:04', 7, '2020-10-07 04:58:19', 0),
(40, 'Sathish', '2', '9715880780', '', '', '1994-05-04', 26, '3', '2', 'balu', 'acc', 20000.00, 0, 0.00, 20000.00, 'erd', 'chennai', '2009030040', '', '1', 'upload_files/candidate_tracker/6354244440_96902746244_Candidate Onepage Chennai.docx', NULL, NULL, '2020-09-04', 0, '', '3', '26', '2020-09-04', 10000.00, '12:05 PM', '0', NULL, '1', 'selected', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-03 11:48:26', 1, '2020-09-04 12:06:28', 1, '2020-09-04 10:24:06', 0),
(41, '', '0', '7904064243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 09:55:11', 0, NULL, 0, NULL, 1),
(42, 'S sandhiya', '4', '9600486957', '7845903682', 'sandhiyasankarbcom@gmail.com', '1999-06-18', 21, '2', '2', 'N.sankar', 'Ex-Army', 200000.00, 2, 0.00, 10000.00, 'Vellor', 'Chennai (Shenoy Nagar)', '2009040002', '2', '1', 'upload_files/candidate_tracker/58386469374_IMG-20200904-WA0002.jpg', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'looking for admin related job. will not sustain and Struggling to speak.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 10:04:31', 1, '2020-09-04 10:19:18', 0, NULL, 1),
(43, '', '0', '8680910453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 10:21:37', 0, NULL, 0, NULL, 1),
(44, 'Ganesh Kumar', '4', '8148018635', '9551887709', 'spyganeshkumar007@gmail.com', '1998-10-29', 21, '2', '2', 'Arul', 'Electrician', 120000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009040004', '4', '1', 'upload_files/candidate_tracker/54165077985_Ganesh Kumar.doc', NULL, NULL, '2020-09-04', 0, '', '3', '11', '2020-09-07', 11.00, '10:35 AM', '5', '1970-01-01', '1', 'salary decided 11k', '1', '2', '1', '2', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 10:21:47', 1, '2020-09-12 11:36:52', 0, NULL, 1),
(45, 'Prakash', '4', '8680910452', '8124560714', 'Spyanbuprakash007@gmail.com', '1997-02-12', 23, '2', '2', 'Anbazhagan', 'Builders', 120000.00, 2, 0.00, 150000.00, 'Chennai', 'Chennai', '2009040005', '1', '1', 'upload_files/candidate_tracker/73805366136_0_prakash resume.doc', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '10:44 AM', '', '1970-01-01', '1', 'Language is not good', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 10:24:30', 8, '2020-09-04 11:19:30', 0, NULL, 1),
(46, 'Padmapriya', '13', '9840821892', '6380190906', 'Padmapriya.2128@gmail.com', '1992-01-21', 28, '1', '1', 'Dineshkumar', 'Process accosiate', 4.00, 1, 2.60, 3.50, 'Chennai', 'Chennai', '2009040006', '', '2', 'upload_files/candidate_tracker/57813454113_padmapriya.docx', NULL, NULL, '2020-09-04', 0, 'Priyanka', '5', '26', NULL, 0.00, '11:09 AM', '0', NULL, '2', 'Her Years Of Experience, She Is Not Good At Technical.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 10:41:26', 1, '2020-09-04 11:14:52', 0, NULL, 1),
(47, '', '0', '9025932689', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:04:58', 0, NULL, 0, NULL, 1),
(48, 'rekha', '4', '6385128637', '9380983104', 'rekhamonisha05@gmail.com', '1997-05-20', 23, '2', '2', 'krishna moorthy', 'bussin', 30000.00, 1, 13.00, 15.00, 'perambur chennai', 'perambur chennai', '2009040008', '4', '2', '0', NULL, NULL, '2020-09-04', 0, '', '3', '11', '2020-09-10', 12.00, '11:07 AM', '1', '1970-01-01', '2', 'candidate ok', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:05:07', 7, '2020-09-30 07:12:16', 0, NULL, 1),
(49, 'ABDUL KHALID S', '4', '7395903509', '9789822718', 'abdulkhalid0105@gmail.com', '1999-05-01', 21, '1', '2', 'SADIQ BASHA H', 'SECURITY', 9000.00, 1, 0.00, 15000.00, 'No.21/10 DBK Street, Old Washermenpet,Chennai - 21', 'No.21/10 DBK Street, Old Washermenpet,Chennai - 21', '2009040009', '', '1', 'upload_files/candidate_tracker/8841692497_KHALID RESUME.docx', NULL, NULL, '2020-09-04', 0, 'THINKFINITY', '5', '8', NULL, 0.00, '11:22 AM', '0', NULL, '1', 'language is not good. Pronunciation is not good.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:10:44', 1, '2020-09-04 11:26:46', 0, NULL, 1),
(50, 'Suganya', '4', '9150720027', '', 'suganyacseb@gmail.com', '1993-05-19', 27, '2', '1', 'Vimal', 'Report preparation', 20000.00, 1, 15.00, 15.00, 'Chennai', 'Chennai', '2009040010', '2', '2', 'upload_files/candidate_tracker/2007192352_1599194919857_0_suganya (1).doc', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not suite for CRM. Not speaking up. will not handle pressure and Sustain.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:10:49', 8, '2020-09-04 11:49:49', 0, NULL, 1),
(51, '', '0', '9962412726', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:18:00', 0, NULL, 0, NULL, 1),
(52, 'R.srividhya', '4', '7904654635', '7904654635', 'Srividhyaradks123@gmail.com', '1999-05-12', 21, '1', '2', 'E.Ravi', 'Driver', 8000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2009040012', '', '1', 'upload_files/candidate_tracker/9773729661_Share \'resume.docx\'', NULL, NULL, '2020-09-04', 0, 'No', '5', '11', NULL, 0.00, '11:57 AM', '0', NULL, '1', 'not suitable for sales &telecalling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:18:59', 1, '2020-09-04 12:01:38', 0, NULL, 1),
(53, 'Saravanan', '6', '8946062851', '7358538001', 'sdsaravanan3@gmail.com', '1993-07-03', 27, '2', '2', 'Sekar', 'Supervisior', 15000.00, 1, 10500.00, 12000.00, 'Chennai', 'Chennai', '2009040013', '4', '2', 'upload_files/candidate_tracker/86619477867_resum20201.pdf', NULL, NULL, '2020-09-04', 1, '', '5', '17', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'He will not sustain for sales ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:21:32', 1, '2020-09-04 11:35:47', 0, NULL, 1),
(54, 'Vishal.S.Davey', '11', '9600543077', '6369938156', 'vishal.s.dave@gmail.com', '1998-12-04', 21, '2', '2', 'Sanjay D Davey', '-', 25000.00, 1, 0.00, 1.25, 'Chennai', 'Chennai', '2009040014', '1', '1', 'upload_files/candidate_tracker/93639359697_vishal.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '11:27 AM', '', '1970-01-01', '1', 'looking for non voice and will not sustain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 11:21:50', 50, '2020-09-10 02:38:00', 0, NULL, 1),
(55, '', '0', '9941549962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:22:20', 0, NULL, 0, NULL, 1),
(56, 'Adarsh', '11', '9962657453', '9790702749', 'mr.hangover19@gmail.com', '2000-01-29', 20, '2', '2', 'deva dass', 'business', 20000.00, 1, 0.00, 175000.00, 'Chennai', 'Chennai', '2009040016', '1', '1', 'upload_files/candidate_tracker/33282101052_adarsh.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '11:29 AM', '', '1970-01-01', '1', '2months in voice process, absconded from the company because of pressure. prefers non voice', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 11:22:55', 50, '2020-09-10 02:38:11', 0, NULL, 1),
(57, 'Dhayakar M P', '16', '7904387821', '', '', '1993-06-29', 27, '2', '2', 'Penchilaiah', 'Government employee', 18000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2009040017', '1', '2', 'upload_files/candidate_tracker/38924149485_Resume-Dhaya.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '25', NULL, 0.00, '11:31 AM', '', '1970-01-01', '1', 'technical round - rejected', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 11:26:13', 7, '2020-09-04 04:20:52', 0, NULL, 1),
(58, 'Sudha', '16', '9841321653', '8610952604', 'su_aarthichennai@yahoo.co.in', '1987-02-15', 33, '2', '2', 'Panneerselvam G', 'Not Alive', 40000.00, 2, 15000.00, 18000.00, 'Mylapore', 'Mylpore', '2009040018', '1', '2', 'upload_files/candidate_tracker/5757665022_ResumeSudha .pdf', NULL, NULL, '2020-09-21', 0, '', '5', '53', '1970-01-01', 0.00, '11:42 AM', '', '1970-01-01', '1', 'Dont have much experience in Excel nd dont know abt spreadsheet', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 11:26:50', 50, '2020-09-21 11:17:27', 0, NULL, 1),
(59, '', '0', '7604957663', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:28:25', 0, NULL, 0, NULL, 1),
(60, 'J.vedhanayaki', '4', '9962412727', '9962412726', 'vedha47341@gmail.com', '1999-01-17', 21, '1', '1', 'S.ranjith', 'Automobile\'s', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2009040020', '', '1', 'upload_files/candidate_tracker/20219456052_Resume.pdf', NULL, NULL, '2020-09-04', 0, 'No', '5', '8', NULL, 0.00, '11:32 AM', '0', NULL, '2', 'very childish will not suite for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:29:10', 1, '2020-09-04 11:34:46', 0, NULL, 1),
(61, 'Anu', '5', '9444507785', '8122598393', 'Anu.rameshviji@gmail.com', '1996-02-04', 24, '1', '2', 'G ramesh', 'Security', 50000.00, 1, 20000.00, 25000.00, 'Greams road', 'Greams road', '2009040021', '', '2', '0', NULL, NULL, '2020-09-04', 0, '5174', '3', '18', '2020-09-09', 25000.00, '12:02 PM', '5', '1970-01-01', '2', 'Good candidate and has relevant experience', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 11:57:16', 7, '2020-10-07 05:13:22', 0, NULL, 1),
(62, 'PREMKUMAR', '4', '9500948808', '9444797926', 'Premkumar660.cp@gmail.com', '1996-11-13', 23, '1', '2', 'Chandru', 'Full time employee', 30000.00, 2, 14000.00, 16000.00, 'Mayiladuthurai', 'Chennai, Ramapuram', '2009040022', '', '2', 'upload_files/candidate_tracker/59069075234_resume.prem.docx', NULL, NULL, '2020-09-04', 1, '5581', '3', '17', '2020-09-07', 13000.00, '12:10 PM', '5', '1970-01-01', '1', 'after 6 month based on Performance will Increase the salary \nsalary will', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 12:06:39', 7, '2020-10-07 05:21:04', 0, NULL, 1),
(63, 'S. Indhumathi', '4', '7358128257', '7358128287', 'mathi061194@gmail.com', '1994-11-06', 25, '1', '2', 'R. Sivakumar', 'Coolie', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2009040023', '', '1', 'upload_files/candidate_tracker/51433102590_Indhumathi RESUME.docx', NULL, NULL, '2020-09-04', 0, 'No', '5', '8', NULL, 0.00, '12:35 PM', '0', NULL, '1', 'too long, not speaking up will not suite for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 12:24:31', 1, '2020-09-04 12:40:46', 0, NULL, 1),
(64, 'Karthick kamaraj', '5', '9025330850', '9344525980', 'Karthi.civil.skp@gmail.com', '1993-04-28', 27, '2', '1', 'Kamaraj', 'Chennai', 150000.00, 3, 21000.00, 23000.00, 'Uthangarai krishnagiri', 'Chennai', '2009040024', '1', '2', 'upload_files/candidate_tracker/27113694988_Karthick Kamaraj.pdf new', NULL, NULL, '2020-09-04', 1, '', '5', '40', NULL, 0.00, '12:43 PM', '', '1970-01-01', '1', 'Not willing to work in sales and interested in telecalling and he is asking 21k in telemarketing', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 12:33:36', 40, '2020-09-04 02:05:35', 0, NULL, 1),
(65, 'Prasanth G', '5', '9587669637', '9840584598', 'Prasanth.gemidi6@gmail.com', '1994-10-06', 25, '2', '2', 'Venkata Rathinam G', 'Cini Field', 20000.00, 1, 20000.00, 26000.00, 'Chennai', 'Chennai', '2009040025', '4', '2', 'upload_files/candidate_tracker/84623187104_Prasanth Resume New- 17th Aug.pdf', NULL, NULL, '2020-09-04', 0, '', '3', '18', '2020-09-05', 23000.00, '01:17 PM', '5', '1970-01-01', '1', 'Ok Candidate Need To Call Him In This Number 9840584598', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 12:53:08', 7, '2020-10-07 05:21:24', 0, NULL, 1),
(66, 'Prakash', '11', '8148450403', '9710866552', 'Ashprakash545@gmail.com', '1996-01-11', 24, '2', '2', 'Rajendran', 'Police officer', 24000.00, 2, 12500.00, 15000.00, 'Teynampet', 'Teynampet', '2009040026', '1', '2', 'upload_files/candidate_tracker/77542519212_update Resume_Prakash.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '01:16 PM', '0', NULL, '1', 'no response from her end. hold for recruiter.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-04 01:11:27', 1, '2020-09-04 01:24:31', 0, NULL, 1),
(67, 'Manikandan', '11', '8778994454', '8190092688', 'mani70503@gmail.com', '1997-10-20', 22, '1', '2', 'Selvam', 'Supervisor', 21000.00, 1, 12500.00, 16000.00, 'Mylapore', 'Mylapore', '2009040027', '', '2', 'upload_files/candidate_tracker/966133336_manikandan Resume.doc', NULL, NULL, '2020-09-04', 0, '', '5', '8', NULL, 0.00, '01:15 PM', '0', NULL, '1', 'Pronunciation is not good and lack in communication ', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:11:37', 1, '2020-09-04 01:33:06', 0, NULL, 1),
(68, 'test data', '4', '9999999999', '', '', '1996-09-04', 24, '5', '2', 'test', 'Test', 20000.00, 0, 0.00, 20000.00, 'Test', 'Test', '2009040028', '', '1', 'upload_files/candidate_tracker/12306426823_96902746244_Candidate Onepage Chennai.docx', NULL, NULL, '2020-09-04', 0, '', '5', '11', NULL, 0.00, '01:13 PM', '0', NULL, '1', 'testing purpose updated by sathish IT', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:12:10', 1, '2020-09-04 01:13:47', 1, '2020-09-04 02:03:58', 0),
(69, '', '0', '7358576478', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:22:31', 0, NULL, 0, NULL, 1),
(70, '', '0', '6282553283', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:36:51', 0, NULL, 0, NULL, 1),
(71, 'Sathish Kumar', '5', '9551603065', '', 'ask11591@gmail.com', '1991-05-11', 29, '2', '2', 'Arumugam', 'Chennai Corporation', 68000.00, 5, 380000.00, 450000.00, 'Chennai', 'Chennai', '2009040031', '3', '2', 'upload_files/candidate_tracker/64528186398_resume_1596529475012.pdf', NULL, NULL, '2020-09-04', 0, '', '5', '29', NULL, 0.00, '01:44 PM', '0', NULL, '2', 'not fit', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 01:40:56', 1, '2020-09-04 02:00:05', 0, NULL, 1),
(72, '', '0', '8248281099', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 02:32:38', 0, NULL, 0, NULL, 1),
(73, '', '0', '9025287385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 02:32:40', 0, NULL, 0, NULL, 1),
(74, 'test candidate', '13', '9999999998', '', '', '1994-09-04', 26, '3', '2', 'test', 'Test', 20000.00, 0, 0.00, 20000.00, 'Test', 'Test', '2009040034', '', '1', 'upload_files/candidate_tracker/74892196694_96902746244_Candidate Onepage Chennai (2).docx', NULL, NULL, '2020-09-04', 0, '', '5', '27', NULL, 0.00, '03:15 PM', '0', NULL, '1', 'nill ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 03:13:14', 1, '2020-09-04 03:15:51', 1, '2020-09-04 03:26:39', 0),
(75, 'Aswini', '4', '6383854155', '', 'ashwinisundaram107@gmail.com', '1998-10-12', 21, '2', '2', 'Suntharam', 'Security', 35000.00, 2, 14000.00, 15000.00, 'Chennai', 'Abiramapuram Chennai', '2009040035', '4', '2', 'upload_files/candidate_tracker/43233966155_ASWINI.pdf', NULL, NULL, '2020-09-04', 1, '', '5', '8', NULL, 0.00, '02:41 PM', '0', NULL, '2', 'not Picking Up the call hope not Interested in the profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 03:33:17', 1, '2020-09-04 03:43:55', 0, NULL, 1),
(76, '', '0', '9025287285', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 03:57:48', 0, NULL, 0, NULL, 1),
(77, 'Noorjahan', '1', '8056216473', '9884827836', 'farinoor1991@gmail.com', '1991-06-03', 29, '1', '1', 'Waseem', 'Doctor', 70000.00, 4, 45000.00, 45000.00, 'Selaiyur', 'Selaiyur', '2009040037', '', '2', 'upload_files/candidate_tracker/44160858651_NOOR Resume.docx', NULL, NULL, '2020-09-04', 8, '', '6', '0', NULL, 0.00, '05:22 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 05:19:59', 1, '2020-09-04 05:31:09', 0, NULL, 1),
(78, '', '0', '8698706134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009040038', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 05:46:29', 0, NULL, 0, NULL, 1),
(79, 'Kully', '4', '9884255350', '', '', '1983-07-19', 37, '1', '1', 'Ponnurangam', 'chef', 24456.00, 40, 18888.00, 240000.00, 'Avadi', 'Mathur', '2009040039', '', '2', 'upload_files/candidate_tracker/84497454409_0_Resume jb.job.pdf', NULL, NULL, '2020-09-11', 30, '9997', '6', '0', NULL, 0.00, '10:40 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-04 08:41:31', 1, '2020-11-17 02:18:39', 0, NULL, 1),
(80, 'p.thiyagarajan', '4', '9962303801', '', '', '1983-07-19', 37, '2', '1', 'ponnurnangam', 'admin', 70000422.00, 0, 18000.00, 20000.00, 'avadi', 'mathur', '2009050001', '1', '2', 'upload_files/candidate_tracker/37676665340_dummy resume.docx', NULL, NULL, '2020-09-09', 30, '', '6', '0', NULL, 0.00, '11:20 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 01:06:55', 1, '2020-09-08 04:39:37', 50, '2020-09-08 04:58:13', 0),
(81, 'Yuvaraj P', '4', '8270727873', '9585269547', 'yuva6121@gmail.com', '2000-07-25', 20, '2', '2', 'Pattabi M', 'Former', 20000.00, 1, 0.00, 15000.00, 'Guruvoyal', 'Redhills', '2009050002', '1', '1', 'upload_files/candidate_tracker/87068869444_yuvaraj.docx', NULL, NULL, '2020-09-05', 0, '', '3', '8', '2020-09-10', 9000.00, '09:34 AM', '3', '2020-09-14', '1', '9K for priyanka team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 09:30:32', 7, '2020-10-07 05:24:21', 0, NULL, 1),
(82, 'Vidhya.T', '6', '6382781845', '6382781845', 'vithumegha@gmail.com', '1999-04-19', 21, '1', '2', 'Thirunavukarasu', 'Driver', 20000.00, 2, 16000.00, 220000.00, 'Egmore', 'Pudupet', '2009050003', '', '2', 'upload_files/candidate_tracker/22544386761_Adobe Scan Sep 05, 2020.pdf', NULL, NULL, '2020-09-18', 0, '00000', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 10:48:51', 1, '2020-09-07 02:08:37', 0, NULL, 1),
(83, 'Sandhiya.s', '6', '8056225907', '9884199603', '805622Sandhiyasandy@gmail.com', '1999-05-03', 21, '2', '2', 'santha kumar', 'Credit card sales', 16500.00, 2, 17000.00, 18000.00, 'Egmore', 'Egmore', '2009050004', '3', '2', 'upload_files/candidate_tracker/94632675814_1599236003046_SOA_T08350160819063851.pdf', NULL, NULL, '2020-09-07', 1, '', '5', '19', NULL, 0.00, '12:57 PM', '0', NULL, '1', 'no sustainability', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 10:52:19', 1, '2020-09-07 01:17:03', 0, NULL, 1),
(84, '', '0', '9710408657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 10:59:42', 0, NULL, 0, NULL, 1),
(85, 'Dilipkumar.AM', '4', '9941531135', '9710408657', 'Dilip1997kumarr@gmail.com', '1997-06-26', 23, '1', '2', 'Arumugam.M', '66673', 15000.00, 2, 0.00, 15000.00, '10/10 Somasundarm street, sevenwells chennai', '10/10 somasundarak street ,Sevenwells chennai', '2009050006', '', '1', 'upload_files/candidate_tracker/51624039624_1583907096625Resume_Dilip.docx', NULL, NULL, '2020-09-05', 0, '5152', '3', '8', '2020-09-07', 0.00, '11:07 AM', '6', '2020-12-31', '1', 'for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 10:59:54', 52, '2020-09-30 04:59:20', 0, NULL, 1),
(86, 'VIGNESH M', '5', '6382876625', '', 'msvicky0607@gmail.com', '1991-07-06', 29, '2', '2', 'MARIMUTHU.K', 'Former', 15000.00, 3, 0.00, 30000.00, 'Melmaruvathur', 'Nanganallur', '2009050007', '1', '1', 'upload_files/candidate_tracker/71287199082_15992853855386736517625475159140.jpg', NULL, NULL, '2020-09-05', 0, '', '3', '18', '2020-09-07', 28000.00, '11:15 AM', '2', '1970-01-01', '1', 'Refereal candidate we can try to mould', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 11:18:00', 7, '2020-10-07 05:24:46', 0, NULL, 1),
(87, 'Gokul', '13', '8608706135', '8608706134', '', '1991-08-28', 29, '2', '2', 'Sankar', 'Farmer', 100000.00, 1, 0.00, 1000000.00, 'Chennai', 'Chennai', '2009050008', '1', '1', 'upload_files/candidate_tracker/96159682289_735341479723FA193A94F7FCFA818735341479190119173122729_.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '0', NULL, 0.00, '11:54 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 11:26:04', 1, '2020-09-05 12:23:38', 1, '2020-09-05 03:45:35', 0),
(89, 'sample', '3', '8608706139', '', '', '1991-01-22', 29, '2', '2', 'sample', 'sample', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2009050010', '1', '1', 'upload_files/candidate_tracker/69219456685_SFC-AMC Invoice 2020-2021.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '0', NULL, 0.00, '12:16 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:01:11', 1, '2020-09-05 01:20:39', 1, '2020-09-05 03:45:35', 0),
(90, 'Sathish testing', '13', '9715880782', '', '', '2005-09-04', 15, '3', '1', 'Balu', 'Acc', 20000.00, 1, 10000.00, 20000.00, 'Erd', 'Chennai', '2009050011', '', '2', 'upload_files/candidate_tracker/11192978437_IM023.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '', NULL, 0.00, '12:09 PM', '', '1970-01-01', '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:06:32', 1, '2020-09-05 01:17:38', 1, '2020-09-05 03:45:35', 0),
(91, 'sathish', '9', '9884302817', '', 'sathishkumar@gmail.com', '2005-09-05', 15, '2', '1', 'ravi', '-', 10000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009050012', '1', '1', 'upload_files/candidate_tracker/44461994815_SFC-AMC Invoice 2020-2021.pdf', NULL, NULL, '2020-09-07', 0, '', '6', '0', NULL, 0.00, '12:12 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:08:53', 1, '2020-09-05 12:25:25', 1, '2020-09-05 03:44:54', 0),
(92, '', '0', '7358739223', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:15:51', 0, NULL, 0, NULL, 1),
(93, '9445732341', '2', '9445732341', '', '', '2005-09-05', 15, '2', '2', 'test', 'tesrt', 10000.00, 1, 0.00, 100001.00, 'dlsjf', 'ladjl', '2009050014', '1', '1', 'upload_files/candidate_tracker/53812892947_SFC-AMC Invoice 2020-2021.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '', NULL, 0.00, '12:26 PM', '', '1970-01-01', '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:25:37', 1, '2020-09-05 01:17:08', 1, '2020-09-05 03:45:35', 0),
(94, 'narayanan', '4', '6380893626', '8807505962', 'nvelumalai@gmail.com', '2000-04-21', 20, '1', '2', 'Elumalai', 'Driver', 16000.00, 2, 0.00, 12000.00, 'J.J.Nagar korukkupet washermenpet', 'J.j.Nagar korukkupet washermenpet', '2009050015', '', '1', 'upload_files/candidate_tracker/66407261391_CV_2020-09-05-102600.pdf', NULL, NULL, '2020-09-05', 0, '', '8', '8', NULL, 0.00, '12:49 PM', '0', NULL, '1', 'not turned up for 2nd round', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 12:29:46', 1, '2020-09-05 02:10:52', 0, NULL, 1),
(95, 'Sathish test', '2', '9715880770', '', '', '1994-05-04', 26, '4', '1', 'balu', 'acc', 0.00, 0, 0.00, 0.00, 'erd', 'ch', '2009050016', '', '1', 'upload_files/candidate_tracker/33327445838_FandF.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '0', NULL, 0.00, '04:18 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 03:59:36', 1, '2020-09-05 04:19:25', 1, '2020-09-05 05:41:38', 0),
(96, 'Keerthana', '11', '9150663596', '8124195315', 'rameshram00243@gmail.com', '1997-08-27', 23, '2', '1', 'Ramesh', 'Fresher', 12000.00, 1, 0.00, 15000.00, 'Chromepet', 'Madipakkam', '2009050017', '1', '1', 'upload_files/candidate_tracker/68005617323_keeres.pdf', NULL, NULL, '2020-09-07', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'no confidence and will not suite for HR and voice is very low', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 04:03:26', 1, '2020-09-05 04:22:43', 0, NULL, 1),
(97, '', '0', '8825990817', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 04:56:58', 0, NULL, 0, NULL, 1),
(98, 'Sathish testing', '2', '9715880771', '', '', '1994-05-04', 26, '5', '1', 'balu', 'acc', 0.00, 0, 0.00, 0.00, 'erd', 'ch', '2009050019', '', '1', 'upload_files/candidate_tracker/13470065665_FandF.pdf', NULL, NULL, '2020-09-05', 0, '', '6', '0', NULL, 0.00, '05:06 PM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 05:05:32', 1, '2020-09-05 05:06:33', 1, '2020-09-05 05:41:38', 0);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(99, '', '0', '9962742162', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 05:53:07', 0, NULL, 0, NULL, 1),
(100, 'n.c.sathya narayanan', '4', '7401182115', '', 'sathyadev29@gmail.com', '1996-06-29', 24, '1', '2', 'n.j.chandra sekarababu', 'crm', 400000.00, 0, 10000.00, 12000.00, 'chennai', 'Chennai', '2009050021', '', '2', 'upload_files/candidate_tracker/36703414961_Scan Sep 5, 2020.pdf', NULL, NULL, '2020-09-05', 10, 'zdafafaf', '6', '0', NULL, 0.00, '11:32 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 06:14:53', 1, '2020-09-17 01:35:19', 0, NULL, 1),
(101, 'Syed suhail', '6', '8190029025', '9962377827', 'Syedsuhail147@gmail.com', '1994-11-12', 25, '2', '2', 'Syed hayath', 'Business', 75000.00, 1, 22000.00, 22000.00, 'Old washermenpet', 'Old washermenpet', '2009050022', '1', '2', 'upload_files/candidate_tracker/43648766549_1597833323650_syed suhail ahamed resume.docx', NULL, NULL, '2020-09-11', 25, '', '6', '', NULL, 0.00, '02:55 PM', '', '1970-01-01', '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 06:16:55', 50, '2020-09-10 02:15:40', 0, NULL, 1),
(102, '', '0', '7358128287', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 06:27:03', 0, NULL, 0, NULL, 1),
(103, '', '0', '9043789765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009050024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-05 06:31:00', 0, NULL, 0, NULL, 1),
(104, 'jeeva g', '6', '8939429138', '', 'jeevagb150@gmail.com', '1998-03-23', 22, '2', '2', 'ganapathi r', 'printing and binding', 15000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2009050025', '1', '1', 'upload_files/candidate_tracker/83401994992_Resume Jeeva.docx', NULL, NULL, '2020-09-07', 0, '', '5', '15', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'mBA student ,salary expectation high', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-05 09:08:05', 50, '2020-09-07 09:42:46', 0, NULL, 1),
(105, 'ramkumar', '2', '9999999121', '', '', '1991-08-28', 29, '1', '2', 'sankar', 'farmer', 10000.00, 1, 0.00, 5000000.00, 'chennai', 'chennai', '2009060001', '', '1', 'upload_files/candidate_tracker/89102660617_SFC-AMC Invoice 2020-2021 (1).pdf', NULL, NULL, '2020-09-07', 0, '66661', '3', '26', '2020-09-10', 0.00, '11:19 AM', '0', NULL, '1', 'Good', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-06 11:12:49', 1, '2020-09-06 11:19:50', 1, '2020-09-07 11:00:10', 0),
(106, 'M SIDDAIAH', '13', '8056191009', '9940439454', 'Siddhunaveen209@gmail.com', '1997-07-30', 23, '2', '2', 'M SIDDAIAH', 'COOLI', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2009060002', '1', '1', 'upload_files/candidate_tracker/30839623821_3824.docx', NULL, NULL, '2020-09-07', 0, '', '5', '26', NULL, 0.00, '11:00 PM', '', '1970-01-01', '1', 'Fresher, No idea about basics and not interested in our terms.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-06 07:05:30', 50, '2020-09-07 09:41:45', 0, NULL, 1),
(107, 'Kamesh', '4', '6381401176', '9444004619', 'kameshmurugan885@gmail.com', '1998-11-07', 21, '2', '2', 'Gowthaman M G', 'Accountant', 30000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2009060003', '1', '2', 'upload_files/candidate_tracker/53637954720_kamesh G-1.pdf', NULL, NULL, '2020-09-07', 1, '', '6', '', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-06 07:43:18', 50, '2020-09-07 09:41:27', 0, NULL, 1),
(108, 'Amarnath', '6', '8056822725', '9751008533', 'amarnath30199@gmail.com', '1995-03-22', 25, '2', '2', 'Murugesan', 'Former', 8000.00, 1, 15000.00, 18000.00, 'Namakkal', 'Tambaram', '2009070001', '4', '2', 'upload_files/candidate_tracker/67995518085_Amar.doc', NULL, NULL, '2020-09-07', 15, '', '8', '8', NULL, 0.00, '11:13 AM', '0', NULL, '1', 'left before Interview.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 10:15:22', 1, '2020-09-07 11:13:24', 0, NULL, 1),
(109, 'Aravind', '4', '6374365949', '9629096650', 'aravindgee68@gmail.com', '1998-07-17', 22, '2', '1', 'Chandrasekar', 'Framer', 10000.00, 1, 0.00, 15000.00, 'Vandhavasi', 'Chennai', '2009070002', '2', '1', 'upload_files/candidate_tracker/3030683940_ARAVIND resume.doc', NULL, NULL, '2020-09-07', 0, '', '5', '8', NULL, 0.00, '10:31 AM', '', '1970-01-01', '1', 'looking for nonvoice. basics in excel. will not suite for crm.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 10:23:46', 50, '2020-09-10 02:38:55', 0, NULL, 1),
(110, 'viran kumar', '6', '9551389074', '9884110728', 'ragaviragavi27121994@gmail.com', '1993-03-02', 27, '2', '2', 'late prakasha rao', 'nil', 20000.00, 2, 15000.00, 10000.00, 'royapettah', 'royapettah', '2009070003', '3', '2', 'upload_files/candidate_tracker/84651972508_VIREN 11111-1 (1).docx', NULL, NULL, '2020-09-07', 0, '', '5', '19', NULL, 0.00, '10:34 AM', '0', NULL, '1', 'NO COMMUNICATION IN BOTH(ENGLISH & tAMIL)', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 10:31:33', 1, '2020-09-07 10:42:28', 0, NULL, 1),
(111, 'NAVANEETHA KRISHNAN M', '5', '9941881079', '9940047738', 'navaneethaeee2011@gmail.com', '1989-04-19', 31, '1', '1', 'MURALIDHARAN K', 'Insurance', 35000.00, 1, 320000.00, 370000.00, 'Chennai', 'Chennai', '2009070004', '', '2', 'upload_files/candidate_tracker/76124342624_Naveen Insurance Resume.pdf', NULL, NULL, '2020-09-07', 15, '5177', '5', '18', NULL, 0.00, '11:08 AM', '0', NULL, '1', 'Not fit for sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 10:52:21', 1, '2020-09-07 11:18:06', 0, NULL, 1),
(112, 'Sathish Kumar', '2', '9786252624', '', 'sakthivel9393@gmail.com', '1996-07-16', 24, '2', '2', 'Sermadhurai P', 'Driver', 12000.00, 4, 15000.00, 30000.00, '1/174 north Street , pazhaiyakayal, tuticorin', 'Madhuravoyal, chennai', '2009070005', '4', '2', 'upload_files/candidate_tracker/23226700037_sathish kumar - resume.pdf', NULL, NULL, '2020-09-07', 30, '', '5', '27', '1970-01-01', 0.00, '10:55 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-07 10:52:27', 50, '2021-02-06 11:55:25', 0, NULL, 1),
(113, 'nandha kumar', '7', '7358405765', '', 'nandhubrad@gmail.com', '1997-10-06', 22, '2', '2', 'hari das', 'un employed', 20000.00, 2, 15000.00, 15000.00, 'virugambakkam', 'virugambakkam', '2009070006', '1', '2', 'upload_files/candidate_tracker/44742387564_Nandha Kumar.docx', NULL, NULL, '2020-09-08', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 11:09:09', 50, '2020-11-06 12:00:18', 0, NULL, 1),
(114, 'GOKULRAJ.K', '4', '8122132669', '9940433988', 'k.gokulraj2396@gmail.com', '1996-01-23', 24, '1', '2', 'KALIYAMOORTHI.M', 'Loadman', 20000.00, 2, 16500.00, 20000.00, 'Villupuram', 'Choolaimedu-chennai', '2009070007', '', '2', 'upload_files/candidate_tracker/35429721191_Gokul resume (6).pdf', NULL, NULL, '2020-09-07', 0, 'Ravi.M', '5', '8', NULL, 0.00, '11:38 AM', '0', NULL, '1', 'Last week Attended interview and rejected by suthagar and srikanth.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 11:11:39', 1, '2020-09-07 11:42:39', 0, NULL, 1),
(115, 'Tayab khan.k', '4', '9514834177', '8778900291', 'ktayab792@gmail.com', '1996-02-19', 24, '1', '2', 'Kushnaseeb khan', 'Carpet', 25000.00, 5, 150000.00, 17000.00, 'Perambur', 'Perambur', '2009070008', '', '2', 'upload_files/candidate_tracker/81060128622_0_CV_2020-03-06-112156.pdf', NULL, NULL, '2020-09-07', 1, 'Binothini HR', '5', '8', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'will not suite for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 11:19:50', 1, '2020-09-07 11:41:04', 0, NULL, 1),
(116, 'Sagilakshmi T', '4', '9500471450', '', 'Sagilakshmi206@gmail.com', '1998-06-02', 22, '2', '2', 'Thanigaivel', 'BCA', 30000.00, 4, 13500.00, 17000.00, '2/138pillaiyar kovil Street arni', 'Porur', '2009070009', '1', '2', 'upload_files/candidate_tracker/82513322805_sagi_new_resume_updated_08_08_2020.pdf', NULL, NULL, '2020-09-07', 10, '', '5', '12', '1970-01-01', 0.00, '11:32 AM', '', '1970-01-01', '2', 'kindly confirm salary on call.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 11:24:09', 7, '2020-10-02 11:14:58', 0, NULL, 1),
(117, 'KARTHIK.K', '6', '8825840656', '7418617696', 'joshankarthik0@gmail.com', '1993-03-01', 27, '1', '2', 'KESAVEL', 'AutoDriver', 15000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2009070010', '', '2', 'upload_files/candidate_tracker/13140720787_Document (1).pdf', NULL, '1', '2020-09-07', 0, 'Ravi.M', '6', '20', '1970-01-01', 0.00, '11:54 AM', '', '1970-01-01', '1', 'no sales exp', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2020-09-07 11:32:38', 60, '2021-09-22 12:47:58', 0, NULL, 1),
(118, 'LOGESH V', '5', '9600013159', '9600013159', 'cvlogeshkumar@gmail.com', '1993-09-07', 27, '2', '1', 'VENKATESAN', 'RETIRED', 26000.00, 0, 26000.00, 28000.00, 'New Washermenpet, Chennai - 600081', 'New Washermenpet, Chennai - 600081', '2009070011', '3', '2', 'upload_files/candidate_tracker/88557114154_Logesh update resume.pdf', NULL, NULL, '2020-09-07', 60, '', '5', '33', NULL, 0.00, '11:37 AM', '0', NULL, '1', 'Candidate are not fit for rm category and drops convincing skills Not worthy for expected salary 26000\n', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 11:32:38', 1, '2020-09-07 11:40:33', 0, NULL, 1),
(119, 'M. Dhanasekaran', '6', '7401798601', '', 'dhana.Exe@gmail.com', '1997-07-18', 23, '2', '2', 'N. muthukumar', 'Business', 10000.00, 1, 12000.00, 14000.00, 'Royapuram', 'Royapuram', '2009070012', '2', '2', 'upload_files/candidate_tracker/21538753694_DhanaNew_Resume.docx', NULL, NULL, '2020-09-07', 6, '', '5', '24', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Past Job.. 2month Abscond And 6month Abscond', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 01:13:57', 1, '2020-09-07 01:25:33', 0, NULL, 1),
(120, 'Prasanth.N', '6', '9600175188', '7092229999', 'Prasanthjoeal@gmail.com', '1996-05-27', 24, '2', '2', 'Narayanan', 'Seniour excutive Xpressbees E. Com', 18000.00, 1, 18000.00, 20000.00, 'Chennai', 'Nanganallur', '2009070013', '1', '2', 'upload_files/candidate_tracker/19516389721_new one chalu.docx', NULL, NULL, '2020-09-07', 1, '', '7', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'GIven to GK', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 01:14:18', 7, '2020-10-08 06:19:18', 0, NULL, 1),
(121, 'SRINIVASAN.V', '6', '9710125349', '9941487760', 'srinivasan8202@gmail.com', '1993-09-18', 26, '1', '2', 'VENKATESAN', 'Building works', 20000.00, 3, 17000.00, 20.00, 'CHENNAI', 'CHENNAI', '2009070014', '', '2', 'upload_files/candidate_tracker/3758762826_SRINIVASAN.pdf', NULL, NULL, '2020-09-07', 0, 'GOKUL RAJ', '5', '24', NULL, 0.00, '01:24 PM', '0', NULL, '1', 'NOT SUITABLE FOR OUR PROFILE AND EXPECTING MORE SALARY.... ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 01:17:52', 1, '2020-09-07 01:34:36', 0, NULL, 1),
(122, 'M.gokulraj', '6', '7418960380', '7418960380', 'gokulraj0533@gmail.com', '1995-08-24', 25, '2', '2', 'G.masilamani', 'Furniture fittings work', 22000.00, 2, 16000.00, 20000.00, 'Chennai kodungaiyur', 'Chennai kodungaiyur', '2009070015', '1', '2', 'upload_files/candidate_tracker/22183205989_GOKULRAJ NEW RESUME FORMAT-converted.pdf', NULL, NULL, '2020-09-07', 0, '', '5', '8', NULL, 0.00, '01:39 PM', '', '1970-01-01', '1', 'Already attend interview and rejected by suthagar and srikanth', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 01:18:17', 50, '2020-09-07 02:07:43', 0, NULL, 1),
(123, 'S Rajkumar', '5', '7904350682', '', 'Raj_chn86@yahoo.in', '1986-06-18', 34, '1', '1', 'N Sundaresan', 'Business', 30000.00, 1, 40000.00, 450000.00, 'Chennai', 'Chennai', '2009070016', '', '2', 'upload_files/candidate_tracker/1223246345_S Rajkumar Resume updated.docx', NULL, NULL, '2020-09-07', 0, '5118', '5', '18', NULL, 0.00, '01:27 PM', '0', NULL, '1', 'Average guy', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 01:24:37', 1, '2020-09-07 01:29:44', 0, NULL, 1),
(124, 'Rasikirupa k', '4', '9791244167', '8428185488', 'Revarasi21@gmail.com', '1995-03-08', 25, '2', '2', 'kannusamy', 'filder', 80000.00, 2, 15000.00, 16000.00, 'chennai mmda colony arumbakkam chennai-106', 'chennai mmda colony arumbakkam chennai-106', '2009070017', '1', '2', 'upload_files/candidate_tracker/51339356806_bio_2.pdf', NULL, NULL, '2020-09-08', 7, '', '6', '', NULL, 0.00, '03:50 PM', '', '1970-01-01', '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 01:44:00', 50, '2020-09-07 04:28:11', 0, NULL, 1),
(125, 'Saravanan. C', '1', '9789879516', '7299802901', 'Sara.saravanan94@gmail.com', '1994-06-04', 26, '5', '2', 'Chandran c', 'Laber', 5.00, 2, 175000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2009070018', '', '2', 'upload_files/candidate_tracker/25221457468_Letter.pdf', NULL, NULL, '2020-09-09', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 02:04:01', 1, '2020-09-07 05:11:56', 50, '2020-09-10 02:16:12', 0),
(126, '', '0', '8610842587', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009070019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 02:40:17', 0, NULL, 50, '2020-09-07 03:55:17', 0),
(127, 'Karan', '6', '9087447866', '9087447866', 'karanmuthu12@gmail.com', '1997-11-17', 22, '2', '2', 'Father : paramasivam', 'Labour', 15000.00, 1, 15000.00, 15000.00, 'Ayapakkam housing board', 'Ayapakkam Housing Board', '2009070020', '1', '2', 'upload_files/candidate_tracker/34214825732_karan updated resume 2020.pdf', NULL, NULL, '2020-09-08', 1, '', '3', '8', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '1', 'last take was 15k and he is okay with inc.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:17:48', 7, '2020-10-07 05:24:56', 0, NULL, 1),
(128, 'Rupesh Kumar. N', '4', '8072963913', '9600186488', 'rk8072963913@gmail.com', '1998-05-09', 22, '2', '2', 'narendar. B', 'Salesman', 20000.00, 1, 0.00, 15000.00, 'Chennai villivakam', 'Villivakam', '2009070021', '1', '1', 'upload_files/candidate_tracker/82362683721_Rupesh.docx', NULL, NULL, '2020-09-08', 0, '', '3', '8', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '2', 'For dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:28:38', 7, '2020-10-07 05:30:14', 0, NULL, 1),
(129, 'mohammed', '6', '9952041154', '', '', '1999-03-12', 21, '2', '2', 'abdul', 'business', 30000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2009070022', '1', '1', 'upload_files/candidate_tracker/21949888906_real.pdf.pdf', NULL, NULL, '2020-09-08', 0, '', '3', '36', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '1', 'okay for rm.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:30:46', 7, '2020-10-07 05:30:32', 0, NULL, 1),
(130, 'Sarathy', '11', '8939102401', '8667413359', 'sarathymalar15@gmail.com', '1999-04-13', 21, '5', '2', 'Ramakrishna', 'Madras High court', 20000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2009070023', '', '2', 'upload_files/candidate_tracker/17194338287_sarathy resume pds.docx', NULL, NULL, '2020-09-08', 25, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 03:38:24', 1, '2020-09-07 03:42:35', 50, '2020-09-10 02:16:20', 0),
(131, 'Sham Sahabdeen', '5', '8122169303', '', 'Shamsahabdeen45@gmail.com', '1993-08-11', 27, '2', '1', 'Abul Hasan', 'Shop', 10000.00, 3, 80000.00, 35000.00, 'Chennai', 'Chennai', '2009070024', '1', '2', 'upload_files/candidate_tracker/82077479597_SHAM SAHABDEEN.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '31', NULL, 0.00, '10:00 AM', '', '1970-01-01', '1', 'Expecting 45k . ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:42:22', 50, '2020-09-08 11:06:46', 0, NULL, 1),
(132, 'Nepolean', '6', '9442871184', '7010535334', 'nepdoms13@gmail.com', '1997-06-13', 23, '2', '2', 'A.Dominic savio', '60000', 80000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Chennai', '2009070025', '1', '1', 'upload_files/candidate_tracker/43762446409_my resume.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '18', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not fit for RM Profile', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 03:46:12', 50, '2020-09-08 11:06:33', 0, NULL, 1),
(133, '', '0', '9789089139', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009070026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 04:31:50', 0, NULL, 0, NULL, 1),
(134, 'Mohammad jahubar A', '13', '7299685995', '9962170763', 'jahubar5995@gmail.com', '1997-12-10', 22, '2', '2', 'M.assanar', 'Salesman', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009070027', '1', '1', 'upload_files/candidate_tracker/3793231278_resume_jahu.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '1', '', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 04:41:43', 1, '2020-09-07 05:05:23', 0, NULL, 1),
(135, 'Dhanalakshmi', '4', '7373641281', '7373641281', 'dhanaspoorthi31@gmail.com', '1996-01-31', 24, '2', '2', 'Sankaran', 'Famer', 10000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2009070028', '1', '2', 'upload_files/candidate_tracker/60889447102_Resume_Dhanalakshmi-converted.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '11', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'previous salary 15k(semi voice) .currently expecting 15k above...so rejected...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 04:43:07', 50, '2020-09-08 11:06:17', 0, NULL, 1),
(136, 'Loganathan', '4', '9585847746', '9663638230', 'saranlogu1833@gmail.com', '1993-04-23', 27, '2', '2', 'Saravanan', 'Farmer', 20000.00, 5, 18000.00, 21000.00, 'Tamilnadu', 'Bangalore', '2009070029', '1', '2', 'upload_files/candidate_tracker/22740070647_Loganathan New.pdf', NULL, NULL, '2020-09-14', 15, '', '6', '', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 04:47:42', 50, '2020-09-10 06:07:56', 50, '2020-09-14 12:55:28', 0),
(137, 'Dinakaran', '4', '7358234694', '9840311640', 'dinakaran774@gmail.com', '2000-06-23', 20, '1', '2', 'DhanrajG', 'Painter', 12000.00, 1, 0.00, 25000.00, 'Kolathur', 'Chennai', '2009070030', '', '1', 'upload_files/candidate_tracker/68248672288_Dina resume 1.pdf', NULL, NULL, '2020-09-08', 0, 'Rupesh', '3', '8', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 04:50:08', 7, '2020-10-07 05:31:37', 0, NULL, 1),
(138, 'Palanivel E', '7', '9659723316', '7871931781', 'Pazhanivel7hills@gmail.com', '1992-11-05', 27, '5', '2', 'Elumalai N', 'Daily wage earner', 15000.00, 2, 15500.00, 18000.00, 'Chennai', 'Chennai', '2009070031', '', '2', 'upload_files/candidate_tracker/46909949840_Palanivel Curriculam vitae.doc', NULL, NULL, '2020-09-08', 30, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 04:57:16', 1, '2020-09-07 05:12:11', 50, '2020-09-10 02:16:43', 0),
(139, 'R.Sundar kumar', '13', '9003183765', '9444703715', 'sundarkumar0797@gmail.com', '1997-11-07', 22, '2', '2', 'M.J.Rajasekar', 'Bank Employee', 25000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2009070032', '1', '1', 'upload_files/candidate_tracker/75818907176_resume_1579700962229.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '26', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'he dont know the basics of PHP. not sure he cant learn things quickly.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 05:02:32', 1, '2020-09-07 05:17:22', 0, NULL, 1),
(140, 'Archana', '14', '8754403515', '', 'jeniyagel@gmail.com', '1991-03-18', 29, '2', '2', 'Anthony', 'He is physical Challenged now.', 20000.00, 2, 180000.00, 240000.00, '#31 k. P Garden thapalpetty madhavaram Chennai 60', '#31 k. P Garden thapalpetty madhavaram Chennai 60', '2009070033', '1', '2', 'upload_files/candidate_tracker/5555742619_Archana-18.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'She is not Completed. We gave more than three days time to complete the Task. Still it is Incomplete only.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 05:18:42', 50, '2020-09-08 01:30:27', 0, NULL, 1),
(141, 'Vijay. M', '5', '8056140729', '', 'vijaymarimuthu90@gmail.com', '1990-09-20', 29, '2', '1', 'Marimuthu', 'Sales', 30000.00, 1, 16000.00, 19000.00, 'Chennai', 'Chennai', '2009070034', '1', '2', 'upload_files/candidate_tracker/99161806078_0_0_vijay cur resume 1.pdf', NULL, NULL, '2020-09-08', 30, '', '5', '44', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', 'He is looking for Loan sales and not intrested in Insurance job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 05:29:05', 50, '2020-09-08 11:31:56', 0, NULL, 1),
(142, 'Kowsalya', '4', '9524430705', '7010293170', 'arungthm25@gmail.com', '1998-07-13', 22, '2', '2', 'Senthil', 'Kuli ( cooking)', 15000.00, 2, 0.00, 12000.00, 'T.nagar , chennai', 'T.nagar , chennai', '2009070035', '1', '1', 'upload_files/candidate_tracker/88905408483_RESUME-edit.docx', NULL, NULL, '2020-09-08', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'not fit for sales ,', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 05:54:36', 1, '2020-09-07 08:45:45', 0, NULL, 1),
(143, 'Lalitha ambigai', '4', '7448711595', '7448711595', 'lalithavijayakumar3108@gmail.com', '1999-08-31', 21, '5', '2', 'Vijayakumar father', 'No', 20000.00, 1, 0.00, 12000.00, 'No:40/50thillai nagar 4th st korattur chennai 80', 'No:40/50thillai Nagar 4th St Korattur Chennai 80', '2009070036', '', '1', 'upload_files/candidate_tracker/99779041212_resume_1582808500620.pdf', NULL, NULL, '2020-09-07', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 06:09:51', 1, '2020-09-07 06:18:00', 50, '2020-09-10 02:16:54', 0),
(144, 'M.Karthick', '6', '6381234399', '9092446401', 'karthickmani563@gmail.com', '1999-06-05', 21, '2', '2', 'S.Mani', 'Daily wages', 12000.00, 1, 13000.00, 16000.00, 'No.9,Anna nagar 1st Street, Nandiambakkam.', 'No.19, Appu Street, Vyasarpadi, Chennai-600039', '2009070037', '1', '2', 'upload_files/candidate_tracker/4293906906_CV_2020-08-17-020259.pdf', NULL, NULL, '2020-09-11', 0, '', '6', '', NULL, 0.00, '10:00 AM', '', '1970-01-01', '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 06:17:47', 50, '2020-09-10 02:40:54', 0, NULL, 1),
(145, 'UDHAYAKUMAR K', '5', '9952948765', '9677173514', 'Chellaudai23@gmail.com', '1989-10-26', 30, '1', '2', 'K. M. KUMAR', 'CATERING', 35000.00, 4, 18000.00, 24000.00, 'Old perungulathur', 'Old Perungulathur', '2009070038', '', '2', 'upload_files/candidate_tracker/59213509529_UDAI RESUME 2020.pdf', NULL, NULL, '2020-09-08', 0, 'Vijay', '4', '29', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', 'jobless now. forward to next round', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 06:29:24', 31, '2020-09-08 12:32:33', 29, '2020-09-16 04:17:06', 0),
(146, 'Jayasudha', '4', '9677094377', '', 'jayasudha0692@yahoo.com', '1992-10-06', 27, '5', '2', 'Nethaji', 'Retired', 15000.00, 2, 18500.00, 21000.00, 'Chennai', 'Chennai', '2009070039', '', '2', 'upload_files/candidate_tracker/46096951015_jaya new job-1 (2)-3.pdf', NULL, NULL, '2020-09-19', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 06:41:55', 1, '2020-09-07 06:53:01', 50, '2020-09-10 02:17:02', 0),
(147, '', '0', '9176201133', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009070040', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-07 07:00:06', 0, NULL, 0, NULL, 1),
(148, 'NAVEENKUMAR R', '6', '8608536646', '6380147367', 'naveen.raja2496@gmail.com', '1996-06-10', 24, '2', '2', 'Raja', 'Labour', 50000.00, 3, 11000.00, 17000.00, 'Vellore', 'Old washermenpet,Chennai', '2009070041', '1', '2', 'upload_files/candidate_tracker/60299360179_naveeen1.docx', NULL, NULL, '2020-09-08', 30, '', '5', '14', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', 'previous company salary less but he expecting high . ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-07 07:04:16', 50, '2020-09-08 11:15:34', 0, NULL, 1),
(149, 'YogeshS', '4', '7358703907', '9941180815', 'yogeshsrinivasan3@gmail.com', '2000-07-13', 20, '1', '2', 'Srinivasan', 'Building contractor', 13000.00, 1, 0.00, 16000.00, 'Kolathur', 'Chennai', '2009080001', '', '1', 'upload_files/candidate_tracker/3452191682_1592752736472Resume_Yogesh.pdf', NULL, NULL, '2020-09-08', 0, 'Rupesh', '3', '8', '2020-09-10', 0.00, '11:00 AM', '2', '1970-01-01', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 09:10:37', 7, '2020-10-07 05:32:07', 0, NULL, 1),
(150, 'MOHAMED ALTHAAF.M', '4', '9677545147', '9677545147', 'Www.mohamedalthu@gmail.com', '1995-08-24', 25, '1', '2', 'MOHAMED MUBARAK.AR', 'Bussiness', 30000.00, 2, 13000.00, 14000.00, 'Karapakkam', 'Karapakkam', '2009080002', '', '2', 'upload_files/candidate_tracker/79889359046_Althaaf new Resume-converted.pdf', NULL, NULL, '2020-09-09', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 09:18:13', 1, '2020-09-08 09:31:03', 0, NULL, 1),
(151, '', '0', '9176094611', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009080003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:02:21', 0, NULL, 0, NULL, 1),
(152, '', '0', '9962848831', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009080004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:13:58', 0, NULL, 0, NULL, 1),
(153, '', '0', '8667512415', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009080005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:21:09', 0, NULL, 0, NULL, 1),
(154, '', '0', '9360973779', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009080006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:35:15', 0, NULL, 0, NULL, 1),
(155, 'Anith.K', '6', '8124985361', '6374511239', 'anith448@gmail.com', '1997-10-10', 22, '2', '2', 'Kannan.K', 'Business', 20000.00, 1, 0.00, 300000.00, 'Pallavaram', 'Pallavaram', '2009080007', '1', '1', 'upload_files/candidate_tracker/36348738721_anith new resume (1)-1.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '19', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'not opening his mouth', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 11:07:34', 19, '2020-09-08 12:05:04', 0, NULL, 1),
(156, 'Gowtham R', '6', '9941978141', '9941031422', 'gowtham1998r@gmail.com', '1998-06-03', 22, '2', '2', 'Ranganathan', 'Business', 25000.00, 2, 0.00, 300000.00, 'Tambaram', 'Tambaram', '2009080008', '1', '1', 'upload_files/candidate_tracker/45850235498_Gowtham Resume New.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '19', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'not fit for sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 11:08:23', 1, '2020-09-08 11:19:04', 0, NULL, 1),
(157, 'M PRIYA', '4', '9677231716', '9344491979', 'Priyadoss02@gmail.com', '1997-10-12', 22, '2', '2', 'T murugadoss', 'Auto driver', 30000.00, 2, 14500.00, 16000.00, 'No 46 Dr Ambedkar colony k k nagar chennai 78', 'No 46 Dr Ambedkar colony k k nagar chennai 78', '2009080009', '2', '2', 'upload_files/candidate_tracker/61059022956_priya.pdf', NULL, NULL, '2020-09-08', 0, '', '5', '11', NULL, 0.00, '11:22 AM', '0', NULL, '1', 'expected salary is high 15 k above.so rejected ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 11:15:16', 1, '2020-09-08 11:23:18', 0, NULL, 1),
(158, 'Mohammad Afzal', '5', '8428179921', '9140537745', 'afzal.mohammad215@gmail.com', '1990-06-21', 30, '2', '2', 'Mohammad Yahiya', 'Saree Dyeing', 30000.00, 4, 25000.00, 30000.00, 'Varanasi', 'Chennai', '2009080010', '1', '2', 'upload_files/candidate_tracker/57856116296_Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '5', '31', NULL, 0.00, '11:24 AM', '', '1970-01-01', '2', 'previous experience with stores. not fit for direct sales. not convincing', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 12:20:25', 50, '2020-09-10 02:39:29', 0, NULL, 1),
(159, 'S.Meharunnisha', '4', '8610404623', '9380147984', 'nishameharun25@gmail.com', '1997-03-11', 23, '2', '2', 'B.Samsudeen', 'driver', 10000.00, 1, 0.00, 15000.00, 'purasaiwalkam chennai', 'purasaiwalkam chennai', '2009080011', '1', '1', 'upload_files/candidate_tracker/8238897624_Meharunnisha Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 12:25:22', 50, '2020-09-10 10:44:58', 0, NULL, 1),
(160, 'Ezhil Maran', '4', '9361409053', '', 'evignesh420@gmail.com', '1999-05-04', 21, '2', '2', 'S elango', 'Business', 20000.00, 1, 11000.00, 17000.00, 'West Mambalam, Chennai-33', 'West Mambalam, Chennai', '2009080012', '1', '2', 'upload_files/candidate_tracker/82586463354_Ezhil new.pdf', NULL, NULL, '2020-09-09', 6, '', '5', '8', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', 'absconded', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 02:36:21', 50, '2020-09-09 11:17:29', 0, NULL, 1),
(161, 'PRAVEEN AJAY R', '4', '7358868819', '', 'Ajaysharmi1504@gmail.com', '1998-06-04', 22, '2', '2', 'Rayappan', 'Farmer', 150000.00, 1, 17500.00, 20000.00, 'Tindivanam', 'Anna nagar', '2009080013', '1', '2', 'upload_files/candidate_tracker/21737417366_Pravven Ajay-RESUME.docx', NULL, NULL, '2020-09-09', 2, '', '3', '14', '2020-09-14', 0.00, '02:55 PM', '', '1970-01-01', '1', '14.09.2020 joining ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 02:48:21', 1, '2020-09-09 03:33:43', 0, NULL, 1),
(162, 'pandiyarajan', '6', '7358630780', '', 'pandiyan.r.020292@gmail.com', '1992-02-02', 28, '2', '1', 'ramamoorthy', 'business', 50000.00, 2, 20000.00, 26000.00, 'chennai', 'chennai', '2009080014', '1', '2', 'upload_files/candidate_tracker/54548736661_PANDIYARAJAN_R_Resume (3).pdf', NULL, NULL, '2020-09-10', 15, '', '6', '', NULL, 0.00, '12:00 PM', '', '1970-01-01', '2', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 02:57:24', 50, '2020-09-10 02:17:41', 0, NULL, 1),
(163, 'Pon abirami', '4', '7305913758', '9941580044', 'abihoney2723@gmail.com', '1999-03-27', 21, '2', '2', 'E govindaraj', 'Plumber', 12000.00, 0, 12000.00, 15000.00, 'Chennai', 'Chennai', '2009080015', '1', '2', 'upload_files/candidate_tracker/38431874422_res Abiramigovind New.doc', NULL, NULL, '2020-09-09', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '', '1970-01-01', '2', 'just assigned to check. for testing process.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 04:02:28', 50, '2020-09-10 02:17:57', 0, NULL, 1),
(164, 'Rethinasamy.R', '6', '8667469619', '', 'ragul007ragul@gmail.com', '1997-06-26', 23, '2', '2', 'Ramachandran', 'Sales executive', 0.00, 1, 0.00, 30000.00, 'Trichy', 'Kundrathur, Chennai', '2009080016', '1', '2', 'upload_files/candidate_tracker/74171418076_RATHINA SWAMY(new).docx', NULL, NULL, '2020-09-10', 0, '', '5', '44', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', '', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 04:36:02', 50, '2020-09-10 11:54:09', 0, NULL, 1),
(165, 'JAYABASKAR.C', '6', '7401506514', '', 'jayabaskar291998@gmail.com', '1998-09-02', 22, '2', '2', 'D.CHANDRASEKARAN(LATE)', 'Nil', 10000.00, 1, 10000.00, 12000.00, 'CHENNAI', 'CHENNAI', '2009080017', '1', '2', 'upload_files/candidate_tracker/49413118712_JAYABASKAR_7401506514 RESUME 1.docx', NULL, NULL, '2020-09-09', 1, '', '5', '24', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'Candidate Should Not Sustain .. He Is Looking Government Job... 6 Month Period Only He Looking Job... join interview with kannan', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 05:22:27', 7, '2020-09-09 03:39:54', 0, NULL, 1),
(166, 'm.mageshwari', '4', '9150992745', '9962818926', 'magirao97@gmail.com', '1997-01-26', 23, '2', '2', 'm.narasinga rao', 'self employed', 15000.00, 1, 13000.00, 15000.00, 'thiruvottiyur', 'Thiruvottiyur', '2009080018', '1', '2', 'upload_files/candidate_tracker/31011390254_CURRICULUM VITAE-pages-deleted.pdf', NULL, NULL, '2020-09-09', 2, '', '3', '11', '2020-09-14', 0.00, '11:00 AM', '5', '1970-01-01', '2', 'salary take home 11k.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 05:49:23', 7, '2020-10-07 05:38:36', 0, NULL, 1),
(167, 'R.lalitha', '5', '9791199132', '9092020240', 'lalithasudharson@gamil.com', '1993-06-25', 27, '1', '1', 'R.sudharson', 'Payroll manager', 40000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2009080019', '', '2', 'upload_files/candidate_tracker/96561630034_1597144038062_Lalitha_Resume_updated (1).pdf', NULL, NULL, '2020-09-09', 0, 'Sarath vimal', '5', '22', NULL, 0.00, '11:00 AM', '0', NULL, '2', '', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 05:52:58', 1, '2020-09-08 06:04:40', 0, NULL, 1),
(168, 'banu', '4', '1234567890', '', '', '2005-10-13', 15, '1', '2', 'sddssd', 'sdsdsd', 34343443.00, 0, 0.00, 33344.00, 'xccvcvcv', 'ffffggf', '2009080020', '', '1', 'upload_files/candidate_tracker/25036163221_2 (1).pdf', NULL, NULL, '2020-10-14', 0, '5152', '8', '', '1970-01-01', 0.00, '03:29 PM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 05:55:03', 7, '2020-10-14 05:09:15', 0, NULL, 1),
(169, 'S.kala', '4', '9500248361', '7358521122', 'kalarubini843@gmail.com', '1996-08-16', 24, '2', '2', 'C.shokkalingam', 'Own business', 20000.00, 1, 13500.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2009080021', '1', '2', 'upload_files/candidate_tracker/61042658460_kala resume.docx', NULL, NULL, '2020-09-09', 2, '', '5', '11', NULL, 0.00, '10:00 AM', '', '1970-01-01', '2', 'she is looking for only non voice or semi voice process.so rejected', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 06:06:15', 50, '2020-09-09 11:43:06', 0, NULL, 1),
(170, 'Krishna kumar', '4', '7904169928', '8608648606', 'krishnamr87@gmail.com', '1999-09-21', 20, '2', '2', 'Rajendren', 'Constructor', 8000.00, 1, 0.00, 12000.00, 'No 57,85th Street,Sivalingapuram,Kknagar,Ch-78', 'No 57,85th Street,Sivalingapuram,Kknagar,Ch-78', '2009080022', '1', '1', 'upload_files/candidate_tracker/27987153574_krishna resume.docx', NULL, NULL, '2020-09-09', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', 'not Speaking up and will not uite for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 06:56:46', 50, '2020-09-09 11:16:15', 0, NULL, 1),
(171, 'B.abishek', '4', '8838493340', '8838493340', 'dreammakers.abi23@gmail.com', '1999-06-23', 21, '2', '2', 'K balan', 'Civil engineer', 17000.00, 1, 0.00, 12000.00, 'No-12 Rams flat 18th Avenue ashok nagar ch-83', 'No-12 Rams Flat 18th Avenue Ashok Nagar Ch-83', '2009080023', '1', '1', 'upload_files/candidate_tracker/72393511693_RESUME(1)(1).pdf', NULL, NULL, '2020-09-09', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '', '1970-01-01', '2', 'he wanna to do designing course so he is looking for job. will not sustain for us.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-08 07:32:30', 50, '2020-09-09 11:24:19', 0, NULL, 1),
(172, 'Madhivathani R', '16', '8667887422', '', 'Madhivathanir23@gmail.com', '1997-09-02', 23, '5', '2', 'Rajamanickam(late)', '-', 20000.00, 2, 0.00, 12000.00, 'Mylapore, Chennai', 'Mylapore, Chennai', '2009080024', '', '1', 'upload_files/candidate_tracker/75980920123_madhiresume.pdf', NULL, NULL, '2020-09-09', 0, '', '6', '0', NULL, 0.00, '01:30 PM', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 08:52:14', 1, '2020-09-08 09:00:30', 50, '2020-09-09 10:34:18', 0),
(173, 'Jayavel', '13', '6379081671', '', 'jve8246@gmail.com', '1997-12-05', 22, '5', '2', 'Gunasekaran', 'Sales6', 20000.00, 1, 0.00, 15000.00, 'Chintadripet', 'Chintadripet', '2009080025', '', '2', 'upload_files/candidate_tracker/88471893053_1597497390949Resume_G.docx', NULL, NULL, '2020-09-12', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-08 10:40:14', 1, '2020-09-08 10:48:40', 0, NULL, 1),
(174, 'Praveen Raj S', '14', '7010154366', '9789022473', 'Praveenjoboy147@gmail.com', '1998-04-17', 22, '2', '2', 'Srinivasan R', 'Government servant', 30000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2009090001', '1', '1', 'upload_files/candidate_tracker/63215146132_1598875739717Resume_Praveen.pdf', NULL, NULL, '2020-09-11', 0, '', '6', '', NULL, 0.00, '11:16 AM', '', '1970-01-01', '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:13:03', 50, '2020-09-10 06:09:30', 0, NULL, 1),
(175, 'B Sidhartha babu', '5', '9600029782', '8148728784', 'Sidharthababu16@gmail.com', '1994-04-17', 26, '1', '1', 'K Babu', 'auto', 600000.00, 1, 22000.00, 25000.00, 'Thiruverkadu', 'thiruverkadu', '2009090002', '', '2', 'upload_files/candidate_tracker/89858597083_Sidhartha.docx', NULL, NULL, '2020-09-09', 0, '5177', '5', '34', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'Not a Sustain-er and seems like a non-productive worker ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:01:47', 1, '2020-09-09 10:11:03', 0, NULL, 1),
(176, '', '0', '9360518533', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:12:55', 0, NULL, 0, NULL, 1),
(177, 'shalima', '7', '9789177230', '9789177230', 'shalimasha1997@gmail.com', '1997-05-10', 23, '2', '2', 'abdul', 'job', 20.00, 1, 15000.00, 15000.00, 'guindy', 'guindy', '2009090004', '1', '2', 'upload_files/candidate_tracker/12496336270_SHALIMA RESUME.pdf', NULL, NULL, '2020-09-11', 2, '', '3', '8', '2020-09-14', 13500.00, '11:00 AM', '5', '1970-01-01', '2', 'for MF operation', '7', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 10:28:27', 7, '2020-10-07 05:38:59', 0, NULL, 1),
(178, 'A.vigneshwaran', '4', '7708497729', '', 'stylevicky55@gmail.com', '1999-06-08', 21, '2', '2', 'D.Arumugam', 'Farmers', 20000.00, 1, 12000.00, 20000.00, 'Anna Nagar', 'Anna nagar', '2009090005', '1', '2', 'upload_files/candidate_tracker/76168961080_vicky resume-.docx', NULL, NULL, '2020-09-09', 12, '', '5', '8', NULL, 0.00, '10:36 AM', '', '1970-01-01', '1', 'not speaking up. will not suite for CRM.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 10:30:39', 50, '2020-09-09 11:48:40', 0, NULL, 1),
(179, 'Arun kumar. P', '4', '7010638607', '7010638607', 'Arunankr3110@gmail.com', '1997-10-31', 22, '2', '2', 'R. Perumal', 'Nothing', 35000.00, 2, 10500.00, 12000.00, 'Teynamprt', 'Teynampet', '2009090006', '2', '2', 'upload_files/candidate_tracker/32339522570_Arun Kumar P (1).pdf', NULL, NULL, '2020-09-09', 1, '', '5', '21', NULL, 0.00, '10:40 AM', '', '1970-01-01', '2', 'pre exp in data entry ,not suit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:34:14', 21, '2020-09-09 02:39:36', 0, NULL, 1),
(180, 'yogeshwaran d', '4', '9080056936', '7448482195', 'yogeshwaran9121999@gmail.com', '1999-12-09', 20, '2', '2', 'dhanasekaran c', 'business', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2009090007', '2', '1', 'upload_files/candidate_tracker/3439914512_Yogeshwaran resume.pdf', NULL, NULL, '2020-09-09', 0, '', '3', '8', '2020-09-14', 0.00, '10:30 AM', '2', '1970-01-01', '1', 'for muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:35:09', 7, '2020-10-07 05:40:06', 0, NULL, 1),
(181, 'Muralisai', '4', '9952327141', '6382469569', 'Muralisai367@gmail.com', '1999-07-21', 21, '2', '2', 'Sureshrao', 'Tailor', 8000.00, 1, 10000.00, 12000.00, 'Kumbakonam', 'Saidhpet', '2009090008', '2', '2', 'upload_files/candidate_tracker/37968744218_sai resume.pdf', NULL, NULL, '2020-09-09', 0, 'Thinkfinity', '3', '8', '2020-09-14', 0.00, '10:53 AM', '', '2020-09-15', '1', '11K for muthu team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:41:14', 50, '2020-09-09 11:47:35', 0, NULL, 1),
(182, 'Dinesh', '4', '7550148148', '', 'yuvandinesh1898@gmail.com', '1998-08-01', 22, '1', '2', 'Selvavinayagam', 'Car driver', 20000.00, 1, 10000.00, 13000.00, 'Chennai', 'Chennai', '2009090009', '', '2', 'upload_files/candidate_tracker/67741226143_Resume.pdf', NULL, NULL, '2020-09-09', 0, '5451', '5', '8', NULL, 0.00, '10:57 AM', '', '1970-01-01', '1', 'will not suite for CRM and RE', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:44:25', 50, '2020-09-09 11:50:03', 0, NULL, 1),
(183, 'Sofiya Banu', '4', '9677072349', '9677072349', 'sofeyabanu5@gmail.com', '1999-11-15', 20, '2', '2', 'Father', 'Business', 20000.00, 2, 0.00, 120000.00, 'Karambakkam porur Chennai', 'Karambakkam porur Chennai', '2009090010', '1', '1', 'upload_files/candidate_tracker/53188164794_SOFIYA BANU RESUME.pdf', NULL, NULL, '2020-09-09', 0, '', '3', '8', '2020-09-28', 10000.00, '10:50 AM', '4', '2020-11-24', '2', 'yet to Complete her exams and will confirm once after her exams.(oct)', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 10:44:27', 52, '2020-09-30 01:18:39', 0, NULL, 1),
(184, 'Vajulla', '6', '9710036682', '', 'mohamedvaju5@gmail.com', '1997-06-25', 23, '2', '2', 'Shahul hammed', 'Department stores', 18000.00, 2, 0.00, 12000.00, 'Avadi', 'Avadi', '2009090011', '1', '1', 'upload_files/candidate_tracker/74216847456_aas.docx', NULL, NULL, '2020-09-10', 0, '', '5', '17', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', 'He did not camed again', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 10:50:22', 7, '2020-09-10 11:56:43', 0, NULL, 1),
(185, 'dhanalakshmi.', '4', '9150862794', '8925017248', 'dhanamlakshmi22122000@gamil.com', '2000-12-22', 19, '1', '2', 'munusami.p', 'yes', 20.00, 2, 15000.00, 15000.00, 'maduravayal chenni -', 'maduravayal chenni', '2009090012', '', '2', 'upload_files/candidate_tracker/68952956346_Document-WPS Office.pdf', NULL, NULL, '2020-09-09', 1, '', '6', '0', NULL, 0.00, '11:49 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:56:15', 1, '2020-09-09 12:48:16', 0, NULL, 1),
(186, '', '0', '9538894771', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 10:56:41', 0, NULL, 0, NULL, 1),
(187, 'JAYASWETHA S', '4', '8056039731', '9840565483', 'jayasrinivasan1626@gmail.com', '1998-06-13', 22, '2', '2', 'SRINIVASAN', 'No work', 10000.00, 1, 15000.00, 12000.00, 'ROYAPURAM', 'ROYAPURAM', '2009090014', '2', '2', 'upload_files/candidate_tracker/87006550727_RESUME NEW JAYASWETHA.doc', NULL, NULL, '2020-09-09', 0, '', '3', '8', '2020-09-14', 0.00, '10:53 AM', '', '1970-01-01', '2', '12K for dhivya team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 11:04:26', 50, '2020-09-09 11:24:01', 0, NULL, 1),
(188, 'Mohanakrishnan', '4', '9790700728', '', 'Mohanakrishnan.7296@gmail.com', '1996-02-07', 24, '2', '2', 'Durai', 'Shop keeper', 25000.00, 2, 13000.00, 13000.00, 'T.nagar', 'T.nagar', '2009090015', '2', '2', 'upload_files/candidate_tracker/40345212075_RESUME IT.docx', NULL, NULL, '2020-09-09', 1, '', '5', '14', NULL, 0.00, '12:09 PM', '0', NULL, '1', 'he is not fit for long term sustainability .. confident level very less .', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 11:06:23', 1, '2020-09-09 12:09:27', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(189, 'Kabilan S', '4', '7708954472', '7708954472', 'kabilhhh99@gmail.com', '1999-03-29', 21, '2', '2', 'G.Sankar', 'Farmer', 5000.00, 1, 0.00, 13.00, 'Krishnagiri', 'Pallavaram, Chennai', '2009090016', '2', '1', 'upload_files/candidate_tracker/40153017632_Kabilan_1583224420980.pdf', NULL, NULL, '2020-09-09', 0, '', '3', '13', '2020-09-14', 0.00, '11:22 AM', '', '1970-01-01', '1', 'ok ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 11:19:41', 50, '2020-09-09 11:47:24', 0, NULL, 1),
(190, '', '0', '7358521122', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 12:04:14', 0, NULL, 0, NULL, 1),
(191, 'r.yokavickneswaran', '13', '9677177430', '7449003949', 'Yogavignesh3344@gmail.com', '1997-03-03', 23, '2', '2', 'k.r.ravindaran', 'mechanical engineer', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'chennai', '2009090018', '1', '1', 'upload_files/candidate_tracker/97434650421_Yokavickneswaran.pdf', NULL, NULL, '2020-09-10', 0, '', '5', '26', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', '', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:22:40', 50, '2020-09-09 02:44:41', 0, NULL, 1),
(192, 'Dharani Kumar. S', '6', '8754075996', '', 'sdharani1998@gmail.com', '1998-12-15', 21, '2', '2', 'Sivakumar. R', 'Sales and admin manager', 10000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2009090019', '1', '2', 'upload_files/candidate_tracker/8552784976_file1.docx', NULL, NULL, '2020-09-10', 0, '', '5', '19', NULL, 0.00, '11:30 AM', '', '1970-01-01', '1', '', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:29:25', 1, '2020-09-09 02:56:02', 0, NULL, 1),
(193, 'pradeep a', '4', '9094772313', '', 'pradeepswetha0518@gmail.com', '1997-11-05', 22, '2', '2', 'anbarasan a', 'supervisior', 14000.00, 1, 9600.00, 13000.00, 'Perambur', 'Perambur', '2009090020', '1', '2', 'upload_files/candidate_tracker/64430859965_Pradeep Resume 2020.doc', NULL, NULL, '2020-09-11', 15, '', '5', '21', NULL, 0.00, '10:00 AM', '', '1970-01-01', '1', 'not bold ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:37:33', 8, '2020-09-11 10:33:21', 0, NULL, 1),
(194, 'Vikash S', '6', '9840665681', '9788886055', 'vikashmohana2@gmail.com', '1998-09-19', 21, '2', '2', 'Sathyan K', 'Business', 200000.00, 1, 0.00, 15000.00, 'No 20, Krishna nagar, Chromepret', 'Chennai', '2009090021', '1', '1', 'upload_files/candidate_tracker/31458885795_Vikash1.pdf', NULL, NULL, '2020-09-10', 0, '', '3', '8', '2020-09-14', 14000.00, '11:00 AM', '', '1970-01-01', '1', 'for kannan team', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 12:51:44', 50, '2020-09-09 02:45:32', 0, NULL, 1),
(195, 'Narayanamoorthy', '5', '9884039003', '9360169347', 'Msnmoorthy06@gmail.com', '1990-06-02', 30, '2', '2', 'Madhavan', 'Proprietary', 700000.00, 3, 3.60, 4.20, 'Porur', 'Porur', '2009090022', '3', '2', 'upload_files/candidate_tracker/74155134214_0_msn cvv.pdf', NULL, NULL, '2020-09-09', 30, '', '3', '18', '2020-10-01', 0.00, '02:11 PM', '2', '1970-01-01', '1', 'Experienced xxamp good candidate', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 02:08:41', 7, '2020-10-07 05:41:09', 0, NULL, 1),
(196, 'Rijo jacob', '6', '7448384243', '', 'Rijojo2610@gmail.com', '1997-10-26', 22, '1', '2', 'Raju', 'TV mechanic', 25000.00, 1, 15000.00, 18000.00, 'Chennai', 'Ayanavaram', '2009090023', '', '2', 'upload_files/candidate_tracker/38143967604_rijo.pdf', NULL, NULL, '2020-09-09', 0, 'Ravi', '5', '22', NULL, 0.00, '02:18 PM', '', '1970-01-01', '1', 'candidate did not came for second round', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 02:13:39', 50, '2020-09-09 02:29:10', 0, NULL, 1),
(197, '', '0', '7654328971', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 03:08:31', 0, NULL, 0, NULL, 1),
(198, '', '0', '8883684154', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 03:36:41', 0, NULL, 0, NULL, 1),
(199, 'A. HUSNA', '1', '7358211086', '9962711427', 'noumaan0007@GMAIL.COM', '1992-07-29', 28, '2', '1', 'A. Naveedkhan', 'Interior designer', 50000.00, 1, 0.00, 28000.00, 'Royapettah', 'Royapettah', '2009090026', '1', '2', 'upload_files/candidate_tracker/77900378519_Bio - Data(1)-converted.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '0', '1970-01-01', '2', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 04:08:01', 50, '2020-09-14 03:17:39', 0, NULL, 1),
(200, 'Jaisurya.k', '6', '9080727572', '', 'kjaisurya1999@gmail.com', '1999-09-20', 20, '2', '2', 'Karthikeyan', 'Security manager', 50000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2009090027', '1', '2', 'upload_files/candidate_tracker/84481828748_my resume .pdf', NULL, NULL, '2020-09-10', 10, '', '5', '24', NULL, 0.00, '12:30 PM', '', '1970-01-01', '1', '', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 04:22:23', 50, '2020-09-09 05:28:38', 0, NULL, 1),
(201, 'Karthick', '4', '9176244574', '', 'Karthickravi16@gmail.con', '1993-09-01', 27, '2', '2', 'Karthick', 'Not working', 500.00, 0, 16200.00, 23000.00, 'Aynavaram', 'Ayanavaram', '2009090028', '4', '2', 'upload_files/candidate_tracker/15550707160_karthick Resume August 2020.pdf', NULL, NULL, '2020-09-10', 1, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 04:59:26', 1, '2020-09-16 10:56:36', 0, NULL, 1),
(202, '', '0', '9962909306', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:01:54', 0, NULL, 0, NULL, 1),
(203, 'Samuel k', '4', '7904495212', '9094368112', 'samuel.kathir.03@gmail.com', '1996-03-20', 24, '2', '2', 'Kathiresan R', 'BPO industry', 30000.00, 1, 0.00, 12000.00, 'Thrivottiyur', 'Chennai', '2009090030', '1', '1', 'upload_files/candidate_tracker/75006979181_Sam Resume 001.docx', NULL, NULL, '2020-09-10', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 05:06:43', 50, '2020-09-09 05:26:04', 0, NULL, 1),
(204, '', '0', '8754585364', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:10:55', 0, NULL, 0, NULL, 1),
(205, 'Samuel k', '4', '9094368112', '7904495212', 'samuel.kathir.03@gmail.com', '1996-03-20', 24, '2', '2', 'Kathiresan R', 'BPO industry', 30000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009090032', '1', '1', 'upload_files/candidate_tracker/95346054166_Sam Resume 001.docx', NULL, NULL, '2020-09-10', 0, '', '6', '', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:18:10', 50, '2020-09-09 05:25:14', 50, '2020-09-09 05:25:40', 0),
(206, '', '0', '7904780057', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:28:44', 0, NULL, 0, NULL, 1),
(207, '', '0', '9840627374', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090034', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 05:58:52', 0, NULL, 0, NULL, 1),
(208, 'Pradeep', '4', '8220557479', '9360147081', 'pradeepadhi34@gmail.com', '1996-05-18', 24, '1', '2', 'Adhimoolam', 'Farmer', 10000.00, 1, 16600.00, 20000.00, 'Dharmapuri', 'Chennai', '2009090035', '', '2', 'upload_files/candidate_tracker/66927950248_pradeep A.docx', NULL, NULL, '2020-09-10', 0, 'NA', '8', '', '1970-01-01', 0.00, '10:00 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 06:00:56', 50, '2020-09-16 02:48:37', 0, NULL, 1),
(209, '', '0', '8056187575', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 06:09:00', 0, NULL, 0, NULL, 1),
(210, '', '0', '8778280822', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090037', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 06:43:50', 0, NULL, 0, NULL, 1),
(211, 'Kesavan S', '14', '7338916823', '9789965034', 'madhanrio10@gmail.com', '1999-01-04', 21, '2', '2', 'Shankar R', 'Private employee', 10000.00, 0, 0.00, 2.50, 'No 51 eswarinager,mainroad, pallavaram,chennai43', 'Chennai', '2009090038', '1', '1', 'upload_files/candidate_tracker/67271461291_Kesavan s(1).pdf', NULL, NULL, '2020-09-15', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '0', '1970-01-01', '2', NULL, '2', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 06:47:07', 50, '2020-09-15 01:45:20', 0, NULL, 1),
(212, 'Adithya Paul williams', '1', '7395961943', '', 'adithyapaul4@gmail.com', '1994-10-14', 25, '2', '1', 'W.Peter sagayanathan', 'Customer relationship manager', 35000.00, 1, 35000.00, 30000.00, 'Chennai', 'Chennai', '2009090039', '1', '2', 'upload_files/candidate_tracker/48512593746_resume_1595655049467.pdf', NULL, NULL, '2020-09-14', 15, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 06:54:45', 50, '2020-09-14 03:18:15', 0, NULL, 1),
(213, 'Balu bro', '4', '7904179104', '9600232672', 'shewagbalu123@gmail.com', '1996-05-17', 24, '2', '2', 'Vijayraj', 'Driver', 150000.00, 1, 0.00, 0.00, 'Ambattur', 'Chennai', '2009090040', '1', '1', 'upload_files/candidate_tracker/68840632539_My resume(1).pdf', NULL, NULL, '2020-09-12', 0, '', '6', '', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 07:06:29', 50, '2020-09-11 06:09:03', 0, NULL, 1),
(214, 'Amirtha A', '4', '8248023530', '', 'amirthasuryaprakash06@gmail.com', '1997-12-21', 22, '2', '2', 'V.Ashokkumar', 'Business', 30000.00, 1, 0.00, 12000.00, 'Tambaram west', 'Tambaram west', '2009090041', '1', '1', 'upload_files/candidate_tracker/35015567267_Updated Resume .pdf', NULL, NULL, '2020-09-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 07:30:46', 50, '2020-09-16 03:53:47', 0, NULL, 1),
(215, 'S.Nataraja Pandian', '4', '8903694012', '', 'natarajapandians@gmail.com', '1997-02-02', 23, '2', '2', 'K.Selvaraj', 'Police', 20000.00, 2, 0.00, 15000.00, 'Virudhunagar', 'Chennai', '2009090042', '1', '1', 'upload_files/candidate_tracker/33865256253_S NATARAJA PANDIAN RESUME.docx', NULL, NULL, '2020-09-10', 0, '', '6', '0', NULL, 0.00, '01:00 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 07:47:21', 1, '2020-09-09 07:55:21', 0, NULL, 1),
(216, '', '0', '9514814257', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090043', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 08:06:10', 0, NULL, 0, NULL, 1),
(217, 'A.S.Kalpana', '16', '9884667757', '9884667753', 'kalpanaarunbabu1299@gmail.com', '1999-07-12', 21, '2', '2', 'K.B.Arun babu', 'Driver', 13000.00, 1, 0.00, 13000.00, 'Mugappair', 'Mugappair', '2009090044', '1', '1', 'upload_files/candidate_tracker/50330486927_kalpana arun babu.docx', NULL, NULL, '2020-09-16', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', NULL, '3', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-09 09:01:27', 50, '2020-09-16 03:54:01', 0, NULL, 1),
(218, '', '0', '9715880781', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009090045', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-09 09:29:02', 0, NULL, 0, NULL, 1),
(219, 'sathish testing', '13', '9999999888', '', '', '1994-09-10', 26, '3', '2', 'hnfdjgdj', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'erd', 'ch', '2009100001', '', '1', 'upload_files/candidate_tracker/7496541023_My_Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '3', '41', '2020-09-11', 0.00, '09:49 AM', '0', NULL, '2', '', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 09:48:50', 1, '2020-09-10 09:49:55', 50, '2020-09-10 12:17:59', 0),
(220, 'test', '3', '9999998888', '', '', '1994-09-10', 26, '3', '2', 'ghhh', 'egvevg', 20000.00, 0, 10000.00, 20000.00, 'erd', 'ch', '2009100002', '', '2', 'upload_files/candidate_tracker/96272206951_My_Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '3', '41', '2020-09-12', 20000.00, '10:07 AM', '', '1970-01-01', '2', '', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:06:35', 1, '2020-09-10 10:34:29', 50, '2020-09-10 12:17:59', 0),
(221, 'Nandha kumar K', '7', '9940051433', '9710050419', 'nandha645@gmail.com', '1997-05-28', 23, '1', '2', 'Kubeanthiran M', 'Printing press', 20000.00, 1, 200000.00, 300000.00, 'Teynampet', 'Teynampet', '2009100003', '', '2', 'upload_files/candidate_tracker/21765810379_NANDHA RESUME - New 2.docx', NULL, NULL, '2020-09-10', 0, '5156', '5', '35', NULL, 0.00, '10:00 AM', '', '1970-01-01', '1', '', '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:22:41', 50, '2020-09-10 10:49:44', 0, NULL, 1),
(222, 'Mohamed Hisham', '4', '9944810967', '9445225282', 'mohamedhissam930@gmail.com', '1999-06-11', 21, '1', '2', 'Mohamed asiq', 'Bussiness', 30000.00, 4, 10000.00, 15000.00, '2A, Shaik madar street, ilayangudi, Sivaganga', 'Prasanthi men\'s hostel, alandur', '2009100004', '', '2', 'upload_files/candidate_tracker/53208518318_Mohamed Hisham Resume(1).pdf', NULL, NULL, '2020-09-10', 0, 'Thinkfinity', '5', '21', NULL, 0.00, '10:43 AM', '0', NULL, '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:34:37', 1, '2020-09-10 10:43:50', 0, NULL, 1),
(223, 'Mani v', '4', '8939348242', '', 'vmani1401@gmail.com', '1999-01-14', 21, '1', '2', 'Vijayakumar', 'Welder', 15000.00, 1, 17000.00, 15000.00, 'Chengalpet', 'Saidapet', '2009100005', '', '2', 'upload_files/candidate_tracker/59484976276_mani resume - Copy.docx', NULL, NULL, '2020-09-10', 7, '5494', '3', '8', '2020-09-14', 10500.00, '11:10 AM', '0', NULL, '2', 'For muthu team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:45:47', 1, '2020-09-10 11:03:25', 0, NULL, 1),
(224, 'H.Naresh kumar yadav', '4', '8189965112', '', 'hnareshkumar17@gmail.com', '1998-12-17', 21, '1', '2', 'E. Harikrishnan', 'Driver', 15000.00, 1, 17000.00, 18000.00, 'Madipakkam', 'Madipakkam', '2009100006', '', '2', 'upload_files/candidate_tracker/12633538493_Naresh biodata.docx', NULL, NULL, '2020-09-10', 3, '5520', '5', '14', NULL, 0.00, '11:30 AM', '0', NULL, '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:46:19', 1, '2020-09-10 10:57:04', 0, NULL, 1),
(225, 'R. Dinesh Kumar', '4', '7708764193', '', 'Dineshammu1177@gmali.com', '1997-06-11', 23, '1', '2', 'E. Ramu', 'Farmer', 15000.00, 1, 0.00, 17000.00, 'Madipkkam', 'Madipakkam', '2009100007', '', '1', 'upload_files/candidate_tracker/83617211397_DINESH BIO DATA.docx', NULL, NULL, '2020-09-10', 0, '5494', '5', '14', NULL, 0.00, '11:30 AM', '0', NULL, '1', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:46:31', 1, '2020-09-10 10:57:12', 0, NULL, 1),
(226, 'Bharathi', '4', '7695907802', '9094473816', 'bharathishanil@gmail.com', '1996-02-08', 24, '2', '2', 'Nantha Bhagathur', 'Nil', 10000.00, 1, 12000.00, 13000.00, 'No 3 Sarathi Nagar 2nd Street Velachery', 'Chennai', '2009100008', '2', '2', 'upload_files/candidate_tracker/90277890407_Bharathi.docx', NULL, NULL, '2020-09-10', 0, '', '5', '11', NULL, 0.00, '10:55 AM', '0', NULL, '2', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:52:09', 1, '2020-09-10 10:56:52', 0, NULL, 1),
(227, '', '0', '9150520031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:08:23', 0, NULL, 0, NULL, 1),
(228, '', '0', '8056298344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:18:54', 0, NULL, 0, NULL, 1),
(229, '', '0', '9551654137', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:19:09', 0, NULL, 0, NULL, 1),
(230, '', '0', '9677292177', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:45:45', 0, NULL, 0, NULL, 1),
(231, 'B. Premkumar', '4', '9500608032', '6374448557', '29prem.b@gmail.com', '1997-04-29', 23, '2', '2', 'K. Balu', 'Electrician', 75000.00, 0, 0.00, 14000.00, 'Pondycherry', 'CMBT', '2009100013', '2', '1', 'upload_files/candidate_tracker/21110355216_PREM 2.docx', NULL, NULL, '2020-09-10', 0, '', '5', '21', NULL, 0.00, '12:51 PM', '', '1970-01-01', '2', 'not attended , 2 nd time entry', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:49:24', 50, '2020-09-10 02:12:52', 0, NULL, 1),
(232, '', '0', '9176792342', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:57:36', 0, NULL, 0, NULL, 1),
(233, 'binothini', '4', '7092002457', '', 'binothini24@gmail.com', '1992-06-08', 28, '2', '1', 'devasigamani', 'welder', 10000.00, 1, 10000.00, 15000.00, 'chennai', 'chennai', '2009100015', '2', '2', 'upload_files/candidate_tracker/14848448346_17208 _Aug 2020 (1).pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '03:51 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 12:27:00', 1, '2020-10-07 03:49:42', 0, NULL, 1),
(234, '', '0', '8884195274', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 12:41:49', 0, NULL, 0, NULL, 1),
(235, '', '0', '8525032699', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 12:44:32', 0, NULL, 0, NULL, 1),
(236, 'deepak balakrishnan', '6', '9025946143', '', '', '1992-05-18', 28, '2', '2', 'balakrishnan', 'Senior Phone Banking Representative', 28000.00, 1, 22000.00, 28000.00, 'chennai', 'chennai', '2009100018', '1', '2', 'upload_files/candidate_tracker/44099154899_Resume 2020.docx', NULL, NULL, '2020-09-11', 0, '', '5', '22', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', 'Bond Not Interested.. sustainability doubt', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 12:55:32', 50, '2020-09-10 02:52:06', 0, NULL, 1),
(237, 'sneghamathi g', '4', '9597128226', '9025379670', 'sineghamathi@gmail.com', '1998-06-02', 22, '2', '2', 'gnanamani p', 'business', 40000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2009100019', '1', '1', 'upload_files/candidate_tracker/6384478573_SINEGHAMATHI.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', 'not sustain long term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 12:58:29', 50, '2020-09-11 11:02:52', 0, NULL, 1),
(238, 'E. Rajaazhahi', '4', '9025948920', '7358189786', '', '1997-07-13', 23, '2', '2', 'R. Elangovan', 'Family situation', 30000.00, 1, 0.00, 17000.00, 'Saithapet', '1000lights', '2009100020', '1', '1', 'upload_files/candidate_tracker/12331281703_Interview.pdf', NULL, NULL, '2020-09-11', 0, '', '6', '', NULL, 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 01:15:48', 50, '2020-09-10 04:37:13', 0, NULL, 1),
(239, 'jeyasudhan', '13', '9597854760', '', 'jsudhan63@gmail.com', '1998-03-30', 22, '2', '2', 'kumanan', 'Asphalt plant incharge -abroad', 50000.00, 0, 0.00, 15000.00, 'medavakkam chennai', 'medavakkam chennai', '2009100021', '1', '1', 'upload_files/candidate_tracker/35041968667_20200303_022259.pdf.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '26', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'He Is Looking For The Job Because He Completed CSE, Importance Of Job Zero. He Bought Final Year Project From Company And Submitted In College, Dont Know What Is The Project He Done.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 01:16:16', 50, '2020-09-10 04:22:57', 0, NULL, 1),
(240, 'B. Premkumar', '4', '6374448557', '9500608032', '29prem.b@gmail.com', '1997-04-29', 23, '2', '2', 'K. Balu', 'Electrician', 15000.00, 0, 0.00, 14000.00, 'Villupuram', 'CMBT', '2009100022', '1', '1', 'upload_files/candidate_tracker/70619488596_PREM 2.docx', NULL, NULL, '2020-09-10', 0, '', '5', '21', NULL, 0.00, '01:38 PM', '', '1970-01-01', '2', '', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 01:36:30', 50, '2020-09-10 02:20:55', 0, NULL, 1),
(241, 'Sathish kumar s', '4', '8148851793', '8754481440', 'Sakthivel10893@gmail.com', '1993-08-10', 27, '2', '2', 'Sangaiyya p', 'Food stall', 20000.00, 2, 12500.00, 16000.00, '45, nerkundram pathai, vadapalani, chennai', '45, Nerkundram Pathai, Vadapalani, Chennai', '2009100023', '1', '2', 'upload_files/candidate_tracker/72545766722_SATHISH KUMAR.pdf', NULL, NULL, '2020-09-11', 1, '', '5', '21', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'expected high salary ,not sustain long term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 01:43:04', 50, '2020-09-11 11:44:19', 0, NULL, 1),
(242, '', '0', '8056272170', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 01:59:18', 0, NULL, 0, NULL, 1),
(243, 'Syed Mansoor Habeeb', '5', '8072223273', '', 'janemansoor@gmail.com', '1985-01-11', 35, '2', '1', 'Syed kareemullah', 'Passed away', 21000.00, 3, 21000.00, 25000.00, 'Triplicane Chennai', 'Triplicane', '2009100025', '2', '2', 'upload_files/candidate_tracker/30025195695_Updated Mansoor CV.pdf', NULL, NULL, '2020-09-11', 1, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'No degree will not suite for Amgr.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 02:04:56', 1, '2020-09-10 04:01:53', 0, NULL, 1),
(244, 'S.jaya chitra', '4', '6383747149', '', 'chitraadithi53767@gmail.com', '1999-03-05', 21, '2', '2', 'K .sekar', 'Police constable', 40000.00, 1, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2009100026', '1', '1', 'upload_files/candidate_tracker/31248021689_1599485069868_Resume.pdf', NULL, NULL, '2020-09-11', 0, '', '3', '8', '2020-10-01', 9500.00, '11:00 AM', '6', '2020-12-19', '1', 'for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 02:13:52', 7, '2020-10-06 12:49:58', 0, NULL, 1),
(245, 'L.aswin Raja', '4', '7339448848', '8148350387', 'aswinraja017@gmail.com', '1998-01-23', 22, '2', '2', 'Lazer.T', 'Driving', 15000.00, 2, 0.00, 12000.00, 'Perungudi, Chennai', 'Perungudi', '2009100027', '1', '1', 'upload_files/candidate_tracker/63594067128_RESUME ASWIN .docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '0', '1970-01-01', '1', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 02:38:26', 50, '2020-09-14 03:17:58', 0, NULL, 1),
(246, '', '0', '6380981640', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 03:06:07', 0, NULL, 0, NULL, 1),
(247, 'PRAKASH. S', '5', '9790972766', '7092367201', 'Prakashsiva038@gmail.com', '1998-09-09', 22, '2', '2', 'SAKTHI. S', 'TANSI labour', 25000.00, 1, 15000.00, 17000.00, '6/813, mugappair west, chennai-37', '6/813, mugappair west, chennai-37', '2009100029', '4', '2', 'upload_files/candidate_tracker/52219184075_resume prakash.docx', NULL, NULL, '2020-09-11', 1, '', '5', '31', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'unable to understand english. not wiling to make calls on regular basis', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 03:28:07', 1, '2020-09-11 09:52:45', 0, NULL, 1),
(248, 'A Kannan', '6', '7010371896', '8122278805', 'Ashokkannan10294@gmail.com', '1994-02-10', 26, '2', '2', 'Ashok', 'Labour', 25000.00, 1, 25000.00, 30000.00, 'kK nagar, Chennai.', 'KK Nagar, Chennai.', '2009100030', '1', '2', 'upload_files/candidate_tracker/33577762073_UPDATED RESUME_KANNAN A.pdf', NULL, NULL, '2020-09-11', 0, '', '3', '8', '2020-10-05', 29000.00, '11:30 AM', '6', '2021-03-25', '1', '29K. for Guru team shortlisted by sriram.', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 03:32:25', 7, '2020-10-22 05:12:25', 0, NULL, 1),
(249, 'Joshua Samuel A', '4', '9789968918', '9123557413', 'joshuasam025@gmail.com', '1997-05-25', 23, '2', '2', 'Anandharaj R(late)', 'Business', 15000.00, 1, 13000.00, 17000.00, 'Pallikaranai,Chennai', 'Pallikaranai, chennai', '2009100031', '1', '2', 'upload_files/candidate_tracker/97677281163_JOSHUA RESUME1-compressed.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '41', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'Not attended the interview.Got job offer from another company', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 03:41:01', 1, '2020-09-10 04:01:36', 0, NULL, 1),
(250, 'test', '3', '8888888888', '', 'kayal.abelia@yahoo.com', '1994-05-04', 26, '3', '2', 'balu', 'acc', 20000.00, 0, 0.00, 20000.00, 'Kallakurichi', 'ch', '2009100032', '', '1', 'upload_files/candidate_tracker/72054471769_My_Resume.pdf', NULL, NULL, '2020-09-10', 0, '', '3', '41', '2020-09-12', 10000.00, '04:32 PM', '5', '1970-01-01', '2', 'nill', '2', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 04:30:46', 1, '2020-12-07 06:05:55', 0, NULL, 1),
(251, 'S. Saravanan', '4', '9551496957', '8838538323', 'Sarava07nan@gmail.com', '1995-07-24', 25, '2', '2', 'G. Sigamani', 'Coolie', 10000.00, 1, 12500.00, 15000.00, 'Adambakkam, chennai', 'Adambakkam, chennai', '2009100033', '1', '2', 'upload_files/candidate_tracker/16628649512_Resume.pdf', NULL, NULL, '2020-09-11', 1, '', '5', '8', NULL, 0.00, '11:00 AM', '', '1970-01-01', '1', 'rejected in telephonic.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 06:55:31', 50, '2020-09-11 11:06:18', 0, NULL, 1),
(252, 'R. Sandhiya', '4', '7200527139', '6382163849', 'sandhiyaramachandran97@gmail.com', '1997-10-14', 22, '2', '2', 'K. Ramachandran', 'Retired from office', 10000.00, 1, 12000.00, 16000.00, 'Chennai', 'Chennai', '2009100034', '1', '2', 'upload_files/candidate_tracker/89834212617_R Sandhiya Resume.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 07:17:36', 50, '2020-09-14 06:06:56', 0, NULL, 1),
(253, 'D. Hems', '7', '9791054843', '8072814884', 'hema.deva@ymail.com', '1989-06-08', 31, '2', '1', 'S. DEVARAJ', 'Asstiant Manager', 40000.00, 1, 2.50, 3.00, 'Chennai -kodambakkam', 'Chennai -kodambakkam', '2009100035', '1', '2', 'upload_files/candidate_tracker/23605777988_hema 1.pdf', NULL, NULL, '2020-09-12', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '', '1970-01-01', '2', 'Salary exp is high. got hike in previous company 16500 and server 2 months and looking for job after covid19 and exp is 18+', '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-10 07:22:53', 50, '2020-09-11 03:05:48', 0, NULL, 1),
(254, '', '0', '9876543210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009100036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 09:12:27', 0, NULL, 0, NULL, 1),
(255, 'A sivakumar', '5', '9884208290', '9087557769', 'Cocshiva2@gmail.com', '1996-09-05', 24, '2', '2', 'S.ashokan', 'Daily workers', 20000.00, 2, 20000.00, 15000.00, 'Perambur', 'Perambur', '2009100037', '2', '1', 'upload_files/candidate_tracker/45266932995_Resume (2).docx', NULL, NULL, '2020-09-11', 2, '', '3', '8', '2020-09-14', 18000.00, '10:30 AM', '5', '1970-01-01', '1', 'For GK team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 10:11:45', 7, '2020-10-07 05:42:44', 0, NULL, 1),
(256, 'Kowsalya', '4', '8220132838', '7305296486', 'kowsalyakumaresan286@gmail.com', '1998-06-28', 22, '1', '2', 'Kumaresan', 'Painting Workshop', 8000.00, 2, 0.00, 13000.00, 'Trichy', 'Arumbakam', '2009100038', '', '1', 'upload_files/candidate_tracker/17021285697_kowsalya.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'will not suite for CRM. will not join without her friend.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-10 11:39:35', 1, '2020-09-11 11:28:24', 0, NULL, 1),
(257, 'M Hemamalini', '4', '9443202748', '8122147532', 'Hemamalinim.10@gmail.com', '1992-04-10', 28, '2', '1', 'Gopinath R', 'Government Employee', 30000.00, 2, 0.00, 15000.00, 'Vellore', 'Chennai', '2009110001', '2', '1', 'upload_files/candidate_tracker/76396136338_Resume software.docx', NULL, NULL, '2020-09-11', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'not turned back after her exams.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 09:05:05', 1, '2020-09-11 09:10:45', 0, NULL, 1),
(258, 'Ramu C', '5', '9791061889', '', 'cramuece11793@gmail.com', '1993-06-15', 27, '2', '2', 'Cittarasan', 'Former', 60000.00, 2, 17000.00, 24000.00, 'Nagapattinam', 'Vadapalani', '2009110002', '1', '2', 'upload_files/candidate_tracker/69459540623_RESUME RAMU (2) (1).docx', NULL, NULL, '2020-09-11', 0, '', '5', '40', NULL, 0.00, '10:30 AM', '', '1970-01-01', '1', 'Not fit for job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 09:40:06', 50, '2020-09-11 10:13:50', 0, NULL, 1),
(259, 'Manikandan R', '4', '7358420732', '', 'manikandanmk.2024@gmail.com', '1994-05-20', 27, '2', '2', 'Ramu E', 'Security supervisor', 17000.00, 0, 15000.00, 15000.00, '157/40 srinivasapuram Pattnabakkam', 'Chennai', '2009110003', '1', '2', 'upload_files/candidate_tracker/28531144810_MANI RESUME.pdf', NULL, '1', '2022-03-01', 6, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'will not suite for our profile', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '3', 'already attended interview in 2020\nhas exp in semi voice and kyc. prefers non voice process. will not sustain here.', '', 'H1010', '', NULL, NULL, NULL, 1, '2020-09-11 10:25:46', 85, '2022-03-01 06:58:03', 0, NULL, 1),
(260, 'Kiruba devi', '4', '8667604418', '9551807253', 'Kirubathanigaivel@gmail.com', '1998-11-24', 21, '2', '2', 'Thanigaivel.R', 'Attender in st.thomas college of arts and science', 30000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2009110004', '4', '2', 'upload_files/candidate_tracker/85128070828_kiruba Resume Mps.docx', NULL, NULL, '2020-09-11', 30, '', '3', '8', '2020-09-24', 11000.00, '10:00 AM', '2', '1970-01-01', '2', 'for muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 10:40:47', 7, '2020-10-07 05:42:58', 0, NULL, 1),
(261, 'Hemamalini', '4', '8122147532', '9443202748', 'HemaMALINI.10@gmail.com', '1992-04-10', 28, '2', '1', 'Gopinath R', 'M.Sc(IT)', 35000.00, 2, 0.00, 15000.00, 'Vellore', 'Chennai', '2009110005', '2', '1', 'upload_files/candidate_tracker/37107368160_Resume software.docx', NULL, NULL, '2020-09-11', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 10:57:48', 1, '2020-09-11 11:00:44', 0, NULL, 1),
(262, 'Lizha s', '4', '7540019737', '8489166896', 'Leezaraizz@gmail.com', '1997-08-31', 23, '1', '2', 'Soosai dhas s', 'Building worker', 10000.00, 2, 10.50, 12.00, '4/96A,midalakkadu,kanyakumari 629159', '16/2Cemetry road,Old Washermanpet, Chennai 21', '2009110006', '', '2', 'upload_files/candidate_tracker/33515876349_Lizha_Resume.pdf', NULL, NULL, '2020-09-11', 1, '', '5', '8', NULL, 0.00, '11:08 AM', '0', NULL, '2', 'will not Sustain and will not join Without her friend.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 10:59:26', 1, '2020-09-11 11:17:33', 0, NULL, 1),
(263, '', '0', '8807193619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009110007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 11:01:08', 0, NULL, 0, NULL, 1),
(264, 'Iyyappan', '6', '7401455585', '9176924960', 'iyyappaammu38@gmail.com', '1999-06-28', 21, '1', '2', 'A.v.rajendran', 'Dead', 12000.00, 2, 12000.00, 15000.00, 'No.6 raja St Devaraj Nagar saligramam Chennai-93', 'No.6 raja St Devaraj Nagar saligramam Chennai -93', '2009110008', '', '2', 'upload_files/candidate_tracker/72300119707_Iyyappa CV-2.docx', NULL, NULL, '2020-09-11', 5, 'Mohan Raj', '5', '19', NULL, 0.00, '11:46 AM', '', '1970-01-01', '1', 'not fit for sales job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 11:40:36', 50, '2020-09-11 01:22:02', 0, NULL, 1),
(265, 'Indirabai Saravanasingh', '5', '9600844295', '8148128913', 'indirasaravanan5@gmail.com', '1995-10-28', 24, '1', '2', 'Saravanasingh', '-', 40000.00, 2, 18000.00, 23000.00, '14/1, janappa street, krishnapuram, ambur-635802', '7, lakshmi nagar, guduvanchery-603202', '2009110009', '', '2', 'upload_files/candidate_tracker/20719286186_indra saravanan.pdf', NULL, NULL, '2020-09-11', 0, '5500', '3', '8', '2020-09-14', 18000.00, '12:21 PM', '2', '1970-01-01', '2', 'Agreed with 18K+inc. as she is fresher for RM profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 12:16:39', 7, '2020-10-07 05:43:17', 0, NULL, 1),
(266, 'Hariharan', '6', '9941596497', '', 'hariharan500@rocketmail.com', '1989-06-13', 31, '2', '2', 'Sukumaran', 'Retired railway employee', 15000.00, 2, 14090.00, 18000.00, 'Chennai', 'Chennai', '2009110010', '1', '2', 'upload_files/candidate_tracker/81545735088_ece-time-table-1.pdf', NULL, NULL, '2020-09-11', 0, '', '5', '19', NULL, 0.00, '12:43 PM', '0', NULL, '1', 'not fit for sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 12:27:28', 1, '2020-09-11 12:48:29', 0, NULL, 1),
(267, 'i john peter', '6', '9941379163', '8608844167', 'john.july22@gmail.com', '1989-07-22', 31, '2', '1', 'irudhayaraj', 'retired', 20000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009110011', '1', '1', 'upload_files/candidate_tracker/84718555553_CV_2020-09-04-040235.pdf', NULL, NULL, '2020-09-12', 0, '', '5', '16', NULL, 0.00, '12:00 PM', '', '1970-01-01', '1', 'He Is Working Past Company 2 Yrs ,Currently Close That Company ,But He Go Out Or Left Any Time Sustain Doubt', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 12:38:44', 50, '2020-09-11 12:58:52', 0, NULL, 1),
(268, '', '0', '9600488301', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009110012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 01:01:23', 0, NULL, 0, NULL, 1),
(269, 'SURENDHAR M', '5', '9080483964', '', 'mssurendhar123@gmail.com', '1995-12-03', 24, '2', '2', 'Maheswaran r', 'Ex army', 95000.00, 1, 14000.00, 15000.00, 'kanchipuram', 'kanchipuram', '2009110013', '1', '2', 'upload_files/candidate_tracker/85504037169_resume .docx', NULL, NULL, '2020-09-12', 1, '', '5', '29', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Doesnxquott suit for any profile', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 01:13:34', 7, '2020-09-15 06:13:22', 0, NULL, 1),
(270, 'MN VINOTH', '6', '8939900103', '8939900105', 'vinothmn89@gmail.com', '1989-11-11', 30, '2', '1', 'M Nithyanandan', 'Diploma in automobile engineering', 35000.00, 0, 35500.00, 41000.00, 'Chennai', 'Chennai', '2009110014', '1', '2', 'upload_files/candidate_tracker/6249649565_Vinoth Resume.pdf', NULL, NULL, '2020-09-14', 1, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-11 01:58:16', 1, '2020-09-11 05:44:07', 0, NULL, 1),
(271, 'dhivya s r', '13', '8754059573', '9952427685', 'dhivyarajagopal90@gmail.com', '1990-02-24', 30, '1', '1', 'mukesh v', 'hr', 85000.00, 0, 700000.00, 100000.00, 'chengalpattu', 'chennai', '2009110015', '', '2', 'upload_files/candidate_tracker/94245926809_Dhivya Resume.docx', NULL, NULL, '2020-09-11', 30, 'subu', '5', '26', NULL, 0.00, '02:34 PM', '0', NULL, '1', 'her expected salary 74 k, According to us she is not matching with our spec and Excepted salary also high.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 02:23:14', 1, '2020-09-11 02:35:31', 0, NULL, 1),
(272, '', '0', '8825708819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009110016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 09:04:24', 0, NULL, 0, NULL, 1),
(273, '', '0', '7890654321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009110017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-11 10:24:18', 0, NULL, 0, NULL, 1),
(274, '', '0', '9121906605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:13:02', 0, NULL, 0, NULL, 1),
(275, 'V. Saktheeswari', '4', '8124280809', '9514084844', 'Sakthisri2018@gmail.com', '1998-04-25', 22, '2', '2', 'E. Venkatesan', 'Cooli', 15000.00, 2, 12000.00, 15000.00, 'triplicane', 'Sanatorium', '2009120002', '1', '2', 'upload_files/candidate_tracker/7822506684_Resume-24-Mar-2019.pdf', NULL, NULL, '2020-09-15', 15, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 10:14:15', 50, '2020-09-15 09:35:09', 0, NULL, 1),
(276, 'Shahul hameed imran', '5', '8838475783', '9940614966', 'imransahar1989@gmail.com', '1985-12-01', 34, '2', '1', 'Rajeeruddin ansari', 'Nil', 25000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2009120003', '3', '2', 'upload_files/candidate_tracker/4474530393_imran resume.doc', NULL, NULL, '2020-10-01', 1, '', '3', '8', '2020-11-05', 252000.00, '11:41 AM', '2', '1970-01-01', '1', '21K for rajkumar team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:27:04', 7, '2020-10-31 03:06:25', 0, NULL, 1),
(277, '', '0', '9789489528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:34:21', 0, NULL, 0, NULL, 1),
(278, 'T. Sharmila', '4', '9080479601', '9710468360', 'sharmilatamil87@gmail.com', '2000-07-08', 20, '5', '2', 'P. Tamilarasu', 'Ration shop', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009120005', '', '1', 'upload_files/candidate_tracker/10250424109_new Sharmila .docx', NULL, NULL, '2020-09-14', 0, '', '8', '8', NULL, 0.00, '03:00 PM', '0', NULL, '2', 'assigned to test. ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:49:40', 1, '2020-09-12 11:24:51', 0, NULL, 1),
(279, '', '0', '9025622653', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 10:59:35', 0, NULL, 0, NULL, 1),
(280, '', '0', '9384424525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:07:48', 0, NULL, 0, NULL, 1),
(281, '', '0', '9884509418', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:09:40', 0, NULL, 0, NULL, 1),
(282, '', '0', '9962030090', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:14:32', 0, NULL, 0, NULL, 1),
(283, 'Mary Lavanya .U', '4', '9677179289', '8754426278', 'lavanyamary21@gmail.com', '1996-04-21', 24, '2', '2', 'Uthiriyadass. A', 'Ironing', 10000.00, 0, 10500.00, 11000.00, 'St.Thomas mount', 'St.Thomas mount', '2009120010', '4', '2', 'upload_files/candidate_tracker/12552403650_Lavanya Resume.docx', NULL, NULL, '2020-09-14', 0, '', '3', '8', '2020-09-17', 10500.00, '10:00 AM', '2', '1970-01-01', '2', 'for priyanka jenit team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:21:35', 7, '2020-10-07 05:44:03', 0, NULL, 1),
(284, '', '0', '8056071104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:24:56', 0, NULL, 0, NULL, 1),
(285, 'Test Jaffer', '13', '9840349400', '', 'moonsat08@gmail.com', '1985-09-12', 35, '2', '2', 'anwar', 'Former', 5000.00, 2, 15000.00, 20000.00, 'Tuticorin', 'chennai', '2009120012', '1', '2', 'upload_files/candidate_tracker/82613173816_dummy.pdf', NULL, NULL, '2020-09-12', 30, '', '3', '41', '2020-09-12', 20000.00, '11:44 AM', '2', '1970-01-01', '2', 'nill', '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 11:42:34', 1, '2020-09-12 02:58:47', 48, '2020-09-23 03:20:44', 0),
(286, 'Franka I', '4', '9080540255', '9092383964', 'frankpinky81143@gmail.com', '1997-11-08', 22, '2', '2', 'Uruguayan C R', 'Ironing', 10000.00, 1, 10000.00, 10500.00, 'St.Thomas mount', 'St.Thomas mount', '2009120013', '4', '2', 'upload_files/candidate_tracker/16652769448_attachment.docx', NULL, NULL, '2020-09-14', 0, '', '5', '13', '1970-01-01', 0.00, '10:00 AM', '0', '1970-01-01', '2', 'expected salary high', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 11:53:31', 50, '2020-09-14 12:17:28', 0, NULL, 1),
(287, '', '0', '9626206362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 12:15:32', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(288, 'Saravanan.P', '4', '9150277375', '9176472146', 'Josaravana1998@gmail.com', '1998-03-14', 22, '1', '2', 'Paramasivam', 'cooli', 15000.00, 5, 0.00, 11000.00, 'Chennai', 'chennai', '2009120015', '', '1', 'upload_files/candidate_tracker/82170162957_resume pdf.pdf', NULL, NULL, '2020-09-12', 0, '', '5', '21', NULL, 0.00, '12:36 PM', '0', NULL, '1', 'fake details', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 12:25:58', 1, '2020-09-12 12:54:09', 0, NULL, 1),
(289, 'Bharat Singh', '6', '8056330474', '9443345103', 'bss17051995@gmail.com', '1995-05-17', 25, '2', '2', 'Bhagwan singh.K', 'Service', 65000.00, 1, 22500.00, 25000.00, '33, sai krupa nagar,janapachatram junction, ch-67', '33, Sai Krupa Nagar,Janapachatram Junction, Ch-67', '2009120016', '1', '2', 'upload_files/candidate_tracker/37687911240_1592844385784Resume_Bharat.pdf', NULL, NULL, '2020-09-14', 0, '', '3', '8', '2020-09-17', 20000.00, '11:00 AM', '2', '1970-01-01', '1', 'for Gaurav team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 01:00:06', 7, '2020-10-07 05:46:27', 0, NULL, 1),
(290, 'Rajesh karthik s', '5', '9500301220', '6384884106', 'karthikhira@gmail.com', '1988-11-20', 31, '2', '2', 'Sri ranganathan', 'A E.O', 30000.00, 0, 18000.00, 25000.00, 'Poonamalle', 'Poonamalle', '2009120017', '1', '2', 'upload_files/candidate_tracker/40802224142_karthik new res.docx', NULL, NULL, '2020-09-15', 26, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 02:16:13', 50, '2020-09-15 01:45:11', 0, NULL, 1),
(291, 'Kaviarasu', '6', '9629032759', '9629032759', 'Krishkavi.km@gmail.com', '1996-05-24', 24, '5', '2', 'Kalimuthu(late)', '-', 200000.00, 1, 0.00, 18000.00, 'Tenkasi', 'Chennai', '2009120018', '', '1', 'upload_files/candidate_tracker/26112903909_kavi resume perf.docx', NULL, NULL, '2020-09-12', 0, '', '6', '0', NULL, 0.00, '02:40 PM', '0', NULL, '2', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 02:37:28', 1, '2020-09-12 02:40:53', 0, NULL, 1),
(292, '', '0', '9600695071', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 03:13:19', 0, NULL, 0, NULL, 1),
(293, 'Devapriya M', '4', '7358751730', '9087835851', 'devasmile30aug@gmail.com', '1998-06-30', 22, '1', '2', 'Marimuthu K', 'Car driver', 20000.00, 2, 17000.00, 20000.00, 'No.10/4, Mosque Colony 17th St. Guindy, ch -32.', 'No 10/4, Mosque Colony 17th St. Guindy, Ch -32', '2009120020', '', '2', 'upload_files/candidate_tracker/23487968994_DEVAPRIYA M_RESUME.pdf', NULL, NULL, '2020-09-15', 15, 'sarathvimal', '5', '21', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '1', 'expected 18 k salary for crm', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 03:16:55', 50, '2020-09-15 11:15:29', 0, NULL, 1),
(294, 'Bharath R', '4', '7708446118', '', 'bharathtsr1498@gmail.com', '1998-02-14', 22, '2', '2', 'Rajan S', 'Kooli', 12000.00, 1, 0.00, 10000.00, 'Pammal', 'Pammal', '2009120021', '1', '1', 'upload_files/candidate_tracker/47261694392_Bharath R_Resume@Vels.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 03:30:13', 50, '2020-09-14 09:22:02', 0, NULL, 1),
(295, '', '0', '8072730713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009120022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 04:44:07', 0, NULL, 0, NULL, 1),
(296, 'abinaya p', '4', '8248722493', '', 'abinayasri626@gmail.com', '1997-10-04', 22, '2', '2', 'pandian m', 'driver', 30000.00, 1, 23500.00, 25000.00, 'chennai', 'chennai', '2009120023', '4', '2', 'upload_files/candidate_tracker/30245307306_Abi Resume.pdf', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '0', '1970-01-01', '2', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 05:16:01', 50, '2020-09-14 06:18:16', 0, NULL, 1),
(297, 'Priyadharshini', '9', '9677299143', '9940696477', 'priya1728ramesh@gmail.com', '1999-10-17', 20, '2', '2', 'Sivakumar', 'Press', 12000.00, 1, 0.00, 15000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2009120024', '1', '1', 'upload_files/candidate_tracker/27202464249_priyadharshini.s.docx', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 05:36:30', 50, '2020-10-06 09:42:08', 0, NULL, 1),
(298, 'priyanka', '4', '1234567891', '', '', '2000-09-12', 20, '2', '2', 'rajagopal', 'hr recruiter', 20000.00, 1, 0.00, 25000.00, 'chrompet', 'chrompet', '2009120025', '1', '1', 'upload_files/candidate_tracker/41959273079_dummy resume.docx', NULL, NULL, '2020-09-14', 0, '', '6', '0', NULL, 0.00, '09:40 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 06:31:57', 1, '2020-09-12 06:34:21', 0, NULL, 1),
(299, 'Karthika.R', '4', '9629701199', '9629701199', 'karthikar211198@gmail.com', '1998-11-02', 21, '2', '2', 'M.Ramesh', 'BE(Current)', 60000.00, 2, 0.00, 15000.00, 'Guindy,chennai', 'Guindy,chennai', '2009120026', '1', '1', 'upload_files/candidate_tracker/89477364171_Karthika[2].pdf', NULL, NULL, '2020-09-14', 0, '', '3', '8', '1970-01-01', 10000.00, '11:00 AM', '2', '1970-01-01', '2', '10K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 06:33:48', 7, '2020-10-06 01:09:32', 0, NULL, 1),
(300, 'banu', '4', '1234567892', '', '', '2005-09-12', 15, '1', '1', 'aaaaa', 'md', 70000.00, 1, 0.00, 25000.00, 'avadi', 'mathur', '2009120027', '', '1', 'upload_files/candidate_tracker/52705073060_dummy resume.docx', NULL, NULL, '2020-09-14', 0, 'ca', '6', '0', NULL, 0.00, '11:20 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 06:35:49', 1, '2020-09-12 06:37:31', 50, '2020-09-14 10:22:49', 0),
(301, 'qqqqqq', '4', '1234567893', '', '', '2005-09-12', 15, '2', '2', 'rajagopal', 'hr recruiter', 20000.00, 1, 0.00, 25000.00, 'chrompet', 'chrompet', '2009120028', '1', '1', 'upload_files/candidate_tracker/75374220061_dummy resume.docx', NULL, NULL, '2020-09-14', 0, '', '6', '0', NULL, 0.00, '11:20 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-12 06:44:41', 1, '2020-09-12 06:45:48', 0, NULL, 1),
(302, 'test sathish', '3', '9715880777', '', 'sathish@cafsinfotech.in', '1994-05-04', 26, '1', '2', 'sesb', 'sedbbs', 20000.00, 0, 0.00, 20000.00, 'd bsdd', 'svvsdv', '2009120029', '', '1', 'upload_files/candidate_tracker/67265589950_My_Resume.pdf', NULL, NULL, '2020-09-12', 0, '1234', '3', '41', '2020-09-12', 10000.00, '04:21 PM', '7', '2020-09-15', '2', 'nill', '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 07:20:33', 1, '2020-09-12 07:43:32', 0, NULL, 1),
(303, 'Karthika.R', '4', '9345273192', '9629701199', 'karthikar211198@gmail.com', '1998-11-02', 21, '4', '2', 'M.Ramesh', 'B.E(Current)', 4000.00, 2, 0.00, 15000.00, 'Guindy,chennai', 'Guindy,chennai', '2009120030', '', '1', 'upload_files/candidate_tracker/95732842980_Karthika[2].pdf', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '2', NULL, '1', '1', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-12 08:28:18', 50, '2020-09-14 06:17:46', 7, '2020-10-06 12:51:08', 0),
(304, 'Swathy anandan', '4', '7092218387', '9843145452', 'Swathylsanandan@gmail.com', '1997-05-20', 23, '2', '2', 'G.Anandan', 'driver', 10000.00, 1, 11000.00, 17000.00, 'Chennai', 'chennai', '2009130001', '1', '2', 'upload_files/candidate_tracker/82058233910_Resume.pdf', NULL, NULL, '2020-09-23', 15, '', '6', '0', NULL, 0.00, '02:35 PM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-13 02:31:13', 1, '2020-09-13 02:41:45', 0, NULL, 1),
(305, 'Abishek Prasanth', '4', '6361562996', '9742671857', 'abishekprasa@gmail.com', '1995-10-05', 24, '2', '2', 'Narasimhappa', 'employed', 10000.00, 1, 0.00, 14000.00, 'peenya', 'peenya', '2009130002', '7', '1', 'upload_files/candidate_tracker/21327383964_Abhishek_Telecaller_CAFS.docx', NULL, NULL, '2020-09-14', 0, '', '5', '38', '1970-01-01', 0.00, '11:30 AM', '0', '1970-01-01', '2', 'bad outlook xxamp he will not suit for our field ', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-13 03:04:03', 38, '2020-09-14 03:51:12', 0, NULL, 1),
(306, '', '0', '9148935943', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009130003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-13 03:57:55', 0, NULL, 0, NULL, 1),
(307, 'Anil kumar. V', '4', '9731289194', '', 'anil67312@gmail.com', '1993-03-19', 27, '2', '2', 'Venkatesh', 'labour', 12000.00, 1, 17000.00, 19000.00, 'kurubahalli', 'Venkatesh', '2009130004', '7', '2', 'upload_files/candidate_tracker/20276141678_Anil_Telecaller_CAFS.docx', NULL, NULL, '2020-09-14', 0, '', '5', '38', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'he dont know how to behave in office....', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-13 08:07:30', 1, '2020-09-13 08:28:25', 0, NULL, 1),
(308, 'GIRISH GOWDA. V', '4', '8105046024', '8217309183', 'Girishgowds567@email.com', '1998-05-19', 22, '2', '2', 'VENUGOPAL. R', 'Agriculture', 20000.00, 1, 18000.00, 20000.00, 'Kunchigarapalya tharlu post Bangalore 560082', 'Kaggalipura', '2009130005', '7', '2', 'upload_files/candidate_tracker/5333414275_Girish Gowda_Telecaller_CAFS.docx', NULL, NULL, '2020-09-14', 1, '', '5', '38', '1970-01-01', 0.00, '12:00 PM', '0', '1970-01-01', '1', 'will not sustain xxamp not good in communication', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-13 08:40:36', 50, '2020-09-14 11:51:42', 0, NULL, 1),
(309, '', '0', '7092028489', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 09:38:55', 0, NULL, 0, NULL, 1),
(310, 'Merlin Rajkumar', '4', '7904617195', '8148705568', 'merlinrajkumar@gmail.com', '1993-08-19', 27, '2', '2', 'Christopher.d', 'Civil Engineer', 20000.00, 0, 18000.00, 18000.00, 'CHENNAI', 'CHENNAI', '2009140002', '1', '2', 'upload_files/candidate_tracker/32136278453_Merlin Rajkumar resume.pdf.pdf', NULL, NULL, '2020-09-15', 0, '', '5', '21', '1970-01-01', 0.00, '11:30 AM', '0', '1970-01-01', '1', 'expecting 16 k for crm', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 10:08:59', 21, '2020-09-15 12:44:14', 0, NULL, 1),
(311, 'b dharani', '4', '8056211236', '9840801849', 'dhaaranibabu143@gmail.com', '1998-02-22', 22, '2', '2', 'v badbanaban', 'late', 20000.00, 2, 11000.00, 15000.00, 'westmambalam', 'westmambalam', '2009140003', '2', '2', 'upload_files/candidate_tracker/33489354666_BDharani.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '21', NULL, 0.00, '11:31 AM', '0', NULL, '1', 'not sustain long term,low voice ,', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:11:41', 1, '2020-09-16 12:25:01', 0, NULL, 1),
(312, 'Ms J Rupah', '7', '9962354195', '', 'Jayaramanbhavani20@gmail.com', '1996-09-16', 23, '1', '2', 'Mr N Jeyaraman', 'Prohit', 30000.00, 0, 12000.00, 18000.00, 'Chennai', 'Chennai', '2009140004', '', '2', 'upload_files/candidate_tracker/291550419_Rupah96.pdf', NULL, NULL, '2020-09-14', 1, '5177', '5', '35', NULL, 0.00, '10:23 AM', '0', NULL, '2', 'Communication Not Well, no about her Previous Company, ', '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:17:24', 1, '2020-09-14 10:26:08', 0, NULL, 1),
(313, '', '0', '9080716503', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:22:49', 0, NULL, 0, NULL, 1),
(314, '', '0', '9843796615', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:25:07', 0, NULL, 0, NULL, 1),
(315, 'Mathan S', '4', '8883832062', '8925328145', 'mathan.s011994@gmail.com', '1994-01-10', 26, '2', '2', 'Subramanian M', 'Farmer', 30000.00, 4, 0.00, 15000.00, 'Thiruvarur', 'Chennai', '2009140007', '1', '1', 'upload_files/candidate_tracker/73794269390_Madhvan Rsm.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '0', '1970-01-01', '1', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 10:43:47', 50, '2020-09-14 06:17:31', 0, NULL, 1),
(316, 'M.Karthik', '4', '8296128505', '8296128505', 'kachurao@gmail.com', '1989-10-25', 30, '2', '2', 'M.Mohanrao', 'eeo', 30000.00, 2, 14000.00, 16000.00, 'vidyaranipura', 'Vidyaranipura', '2009140008', '7', '2', 'upload_files/candidate_tracker/82077449999_Karthik_Telecaller_CAFS.doc', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '0', '1970-01-01', '1', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 10:57:35', 50, '2020-09-14 06:17:03', 0, NULL, 1),
(317, 'Khan Mohamed', '4', '6382063054', '9710116743', 'khan.km478@gmail.comkh', '1996-06-20', 24, '2', '2', 'Saluga banu', 'Nil', 15000.00, 1, 12500.00, 12500.00, 'Chrompet', 'Chrompet', '2009140009', '1', '2', 'upload_files/candidate_tracker/60930794905_Resume.pdf', NULL, NULL, '2020-09-14', 1, '', '5', '21', '1970-01-01', 0.00, '11:10 AM', '0', '1970-01-01', '2', 'low confidence,not bold', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 11:02:20', 21, '2020-09-14 02:31:55', 0, NULL, 1),
(318, 'Ramesh pillar', '4', '8056286705', '7904878211', 'r.rameshpillar@gmail.com', '1996-10-05', 23, '2', '2', 'RAJANGAM', 'Nil', 15000.00, 1, 15000.00, 12500.00, 'Chromepet', 'Chromepet', '2009140010', '10', '2', 'upload_files/candidate_tracker/94169394046_Ramesh resume 7-2020.pdf', NULL, NULL, '2020-09-14', 1, '', '5', '14', '1970-01-01', 0.00, '11:26 AM', '0', '1970-01-01', '1', 'not fit for this profile', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:03:33', 50, '2020-09-14 12:00:11', 0, NULL, 1),
(319, 'Akash A', '6', '9941106942', '9551636412', 'akashkavi1911@gmail.com', '1996-11-18', 23, '2', '2', 'Anbu V', 'Fisherman', 15000.00, 2, 0.00, 15000.00, 'Ennore', 'Ennore', '2009140011', '8', '1', 'upload_files/candidate_tracker/94320843575_CV_2020-09-13-014133.pdf', NULL, NULL, '2020-09-14', 0, '', '5', '15', '1970-01-01', 0.00, '11:17 AM', '0', '1970-01-01', '1', 'no sustainability need 18k salary', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:05:07', 15, '2020-09-14 02:43:26', 0, NULL, 1),
(320, '', '0', '9964255237', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:06:17', 0, NULL, 0, NULL, 1),
(321, 'Kaleeshwari.k', '4', '8925128023', '8925128023', 'Mallikakaleeshwari@gmail.com', '1999-06-11', 21, '2', '2', 'T.Kalidas', 'Coole', 4000.00, 1, 0.00, 15000.00, 'Thirisulam', 'Thirisulam', '2009140013', '1', '1', 'upload_files/candidate_tracker/25211795906_Kaleeshwari Resume.doc', NULL, NULL, '2020-09-14', 0, '', '5', '21', '1970-01-01', 0.00, '11:18 AM', '0', '1970-01-01', '2', 'not sustain long term', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 11:14:07', 50, '2020-09-14 11:41:06', 0, NULL, 1),
(322, 'Arun Kumar. B', '5', '9840400525', '', 'Arunneverlies@gmail.com', '1987-07-31', 33, '2', '2', 'Bhaskar', 'Driver', 20000.00, 0, 18000.00, 20000.00, 'Chennai', 'Nandanam', '2009140014', '8', '2', 'upload_files/candidate_tracker/37675245427_arun Pdf_14Sep20_6.pdf', NULL, NULL, '2020-09-14', 0, '', '3', '8', '2020-09-17', 21000.00, '11:44 AM', '6', '1970-01-01', '1', '21K. for Guru team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:19:45', 7, '2020-10-07 05:43:42', 0, NULL, 1),
(323, 'SILAMBARSAN M', '6', '9940587882', '9962101148', 'simbujothy@gmail.com', '1999-05-01', 21, '1', '2', 'MURUGAN', 'Daily wages', 15000.00, 1, 15000.00, 17000.00, 'TIRUVANNAMALAI', 'CHENNAI', '2009140015', '', '2', 'upload_files/candidate_tracker/30142023375_Sim.pdf', NULL, NULL, '2020-09-14', 0, '5616', '5', '24', '1970-01-01', 0.00, '11:33 AM', '0', '1970-01-01', '1', 'slary expc high', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:23:55', 50, '2020-09-14 12:34:29', 0, NULL, 1),
(324, 'KARTHICK A', '4', '9597988652', '9345769686', 'karthick7798@gmail.com', '1999-01-26', 21, '1', '2', 'APPAVU', 'DAILY wages', 15000.00, 2, 0.00, 18000.00, 'thiruvannmmalai', 'Chennai', '2009140016', '', '1', 'upload_files/candidate_tracker/5047512985_1599288746447_1599288746250_KARTHICK RESUME.pdf', NULL, NULL, '2020-09-14', 0, '5716', '8', '14', '1970-01-01', 0.00, '11:35 AM', '0', '1970-01-01', '2', 'Not attend the interview', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:24:09', 7, '2020-09-14 02:49:26', 0, NULL, 1),
(325, 'Srija T S', '5', '8637652750', '9176006594', 'Srijavaradha03@gmail.com', '1998-08-07', 22, '2', '2', 'Murali T S', 'Prohit', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2009140017', '8', '1', 'upload_files/candidate_tracker/92816085060_SRIJA TS RESUME.pdf', NULL, NULL, '2020-09-14', 0, '', '5', '18', '1970-01-01', 0.00, '11:55 AM', '0', '1970-01-01', '1', 'Not interested in sales', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:28:19', 8, '2020-09-14 01:13:17', 0, NULL, 1),
(326, 'G.jasminegracy', '4', '7397259019', '9841334119', 'jasminegracy000@gmail.com', '1998-04-11', 22, '2', '2', 'George.R', 'Lic (substaff)', 15000.00, 1, 0.00, 10000.00, 'No:14/8 18th st ashok ng ch-83', 'No:14/8 18th st Ashok ng ch-83', '2009140018', '2', '1', 'upload_files/candidate_tracker/38122707097_resume.docx', NULL, NULL, '2020-09-14', 0, '', '3', '8', '2020-09-17', 10000.00, '11:50 AM', '3', '2020-09-19', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:41:32', 7, '2020-10-07 05:45:03', 0, NULL, 1),
(327, 'ravi d c', '5', '7975697686', '', 'rtavidc35@gmail.com', '1992-05-19', 28, '2', '1', 'channachari', 'business', 25000.00, 1, 18000.00, 18000.00, 'yelanka', 'yelanka', '2009140019', '7', '2', 'upload_files/candidate_tracker/47064371888_Ravi D S_Telecaller_CAFS.docx', NULL, NULL, '2020-09-14', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 11:45:25', 50, '2020-09-14 06:16:50', 0, NULL, 1),
(328, 'Lakshmanan.T', '5', '7395984216', '9500195829', 'rainalux94@gmail.com', '1994-07-31', 26, '2', '2', 'Thanikachalam.R', 'Auto driver', 10000.00, 2, 3.00, 3.80, 'Chennai', 'Chennai', '2009140020', '3', '2', 'upload_files/candidate_tracker/54473771069_Update Resume31.pdf', NULL, NULL, '2020-09-14', 7, '', '5', '31', '1970-01-01', 0.00, '12:17 PM', '0', '1970-01-01', '1', 'will not fit for our profile', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 12:09:17', 31, '2020-09-15 01:01:32', 0, NULL, 1),
(329, 'G. Dinakaran', '6', '8939244366', '8939011708', 'allendina6295@gmail.com', '1997-01-13', 23, '1', '2', 'M. Govintharaj', 'Business', 15000.00, 1, 0.00, 16000.00, '9/A T. H Road 4th Lane Tondiarpet Chennai', '9/A T. H Road 4th Lane Tondiarpet Chennai', '2009140021', '', '1', 'upload_files/candidate_tracker/25166983055_bala frnd resume.pdf', NULL, NULL, '2020-09-14', 0, '5581', '3', '8', '2020-09-17', 13000.00, '12:51 PM', '5', '1970-01-01', '1', 'For ramesh team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 12:41:52', 7, '2020-10-07 05:45:32', 0, NULL, 1),
(330, 'Kuruba harish', '10', '9490684530', '', 'harikuruba44@gmail.com', '1996-04-10', 24, '1', '2', 'mallappa', 'agri', 40000.00, 1, 0.00, 16000.00, 'kandukuripallii roddam', 'kodhihalli bangalo', '2009140022', '', '1', 'upload_files/candidate_tracker/44859291744_new doc 2020-09-14 13:16:12.pdf', NULL, NULL, '2020-09-14', 0, '5490', '8', '', '1970-01-01', 0.00, '01:00 PM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 12:54:11', 50, '2020-09-14 06:16:41', 0, NULL, 1),
(331, 'guna sekar', '6', '9566242302', '', 'gunasekar1010@gmail.com', '1994-05-31', 26, '2', '2', 'jayapal', 'business', 25000.00, 2, 0.00, 16000.00, 'chennai', 'chennai', '2009140023', '1', '1', 'upload_files/candidate_tracker/95496975214_resume (2).pdf', NULL, NULL, '2020-09-15', 0, '', '5', '24', '1970-01-01', 0.00, '03:00 PM', '0', '1970-01-01', '1', 'voice of clarity is low average .. implement is poor for existing job ', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 01:23:49', 50, '2020-09-15 09:50:20', 0, NULL, 1),
(332, 'Sathish. S', '5', '9688729797', '8667889625', 'sathishastro57@gmail.com', '1993-05-20', 27, '1', '2', 'Sekar. A', 'Late', 15000.00, 2, 362000.00, 400000.00, 'Ariyalur', 'Chennai', '2009140024', '', '2', 'upload_files/candidate_tracker/44888984452_sathish.pdf', NULL, NULL, '2020-09-14', 7, '5570', '3', '8', '2020-09-28', 30000.00, '02:13 PM', '2', '1970-01-01', '1', '30K for Lokesh team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 01:45:51', 7, '2020-10-07 05:45:45', 0, NULL, 1),
(333, 'M.Rajeswari', '4', '7358228517', '9345785043', 'mraji1678@gmail.com', '1999-05-26', 21, '2', '2', 'P.Manoharan', 'Nil', 25000.00, 2, 12000.00, 18000.00, 'Chennai', 'Chennai', '2009140025', '1', '2', 'upload_files/candidate_tracker/57017036402_Resume.pdf', NULL, NULL, '2020-09-15', 26, '', '3', '8', '2020-09-17', 11500.00, '11:00 AM', '2', '1970-01-01', '2', 'for Dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 02:00:23', 7, '2020-10-07 05:47:26', 0, NULL, 1),
(334, 'Anusha T', '4', '9345785043', '7358228517', 'Anusha28.k.chn@gmail.com', '1996-08-28', 24, '2', '2', 'D.Thangapandian', 'Retired contractor', 25000.00, 1, 12500.00, 16000.00, 'Perambur', 'Chennai', '2009140026', '1', '2', 'upload_files/candidate_tracker/63211240783_Anusha T Resume.doc', NULL, NULL, '2020-09-15', 26, '', '8', '8', '1970-01-01', 0.00, '11:00 AM', '0', '1970-01-01', '2', 'left before interview', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 02:00:47', 50, '2020-09-14 04:04:43', 0, NULL, 1),
(335, 'A Jayanthi', '4', '9962683370', '7358562200', 'jayanthianand11@gmail.com', '1992-09-11', 28, '2', '2', 'R anandhan', 'Driver', 15000.00, 1, 16500.00, 21500.00, '36/5 puthirankanni amma koil st, TVMR, Che-41', '36/5 Puthirankanni Amma Koil St, TVMR, Che-41', '2009140027', '1', '2', 'upload_files/candidate_tracker/71535997075_jai.docx', NULL, NULL, '2020-09-15', 30, '', '5', '21', '1970-01-01', 0.00, '11:22 AM', '0', '1970-01-01', '2', 'cand gone before interview ', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 02:10:22', 50, '2020-09-14 04:04:53', 0, NULL, 1),
(336, 'Subash raj. G', '4', '9445146999', '6381341515', 'subashsubash1748@gmail.com', '1998-10-27', 21, '2', '2', 'Gopal. S', 'Real estate broker', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009140028', '2', '1', 'upload_files/candidate_tracker/3942067618_Subashraj.doc', NULL, NULL, '2020-09-15', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 02:11:09', 1, '2020-09-14 02:14:37', 0, NULL, 1),
(337, 'S Mohammed Jailani', '6', '9840951025', '9361230804', 'mjmohammedjailani@gmail.com', '1988-12-08', 31, '2', '2', 'k.s. shahul Hammed', 'business man', 35000.00, 1, 0.00, 25000.00, 'parrys', 'parrys', '2009140029', '1', '1', 'upload_files/candidate_tracker/44101676665_Jailani Resume .docx', NULL, NULL, '2020-09-15', 0, '', '8', '', '1970-01-01', 0.00, '11:08 AM', '0', '1970-01-01', '1', NULL, '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 03:03:31', 50, '2020-09-15 01:44:17', 0, NULL, 1),
(338, 'Subash Chandra bose', '4', '6380945472', '', 'subashranganathan1997@gmail.com', '1997-03-30', 23, '2', '2', 'Ranganathan.k', 'Farmer', 200000.00, 1, 0.00, 18.00, 'Chrompet', 'Chrompet', '2009140030', '1', '1', 'upload_files/candidate_tracker/32700368955_subash resume.docx', NULL, NULL, '2020-09-15', 0, '', '5', '8', '1970-01-01', 0.00, '03:00 PM', '0', '1970-01-01', '1', 'not speaking up will not suite for CRM.', '1', '1', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 04:02:24', 50, '2020-09-15 12:29:28', 0, NULL, 1),
(339, 'jaffer test', '2', '9840349412', '', 'moonsat08@gmail.com', '1986-09-14', 34, '2', '2', 'Sathik', 'Former', 5000.00, 2, 15000.00, 20000.00, 'Tuticorin', 'chennai', '2009140031', '1', '2', 'upload_files/candidate_tracker/10664110131_dummy.pdf', NULL, NULL, '2020-09-14', 0, '', '3', '41', '2020-09-14', 20000.00, '04:05 PM', '3', '2020-09-15', '2', NULL, '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 04:03:37', 1, '2020-09-14 04:11:24', 7, '2020-10-07 05:49:25', 0),
(340, 'Salman khan', '17', '8870595468', '', 'khansalman9697@gmail.com', '1996-06-01', 24, '2', '2', 'Rafi', 'Own business', 12000.00, 2, 400000.00, 470000.00, 'Chennai', 'Chennai', '2009140032', '1', '2', 'upload_files/candidate_tracker/36027484934_Salman khan.pdf', NULL, NULL, '2020-09-15', 15, '', '5', '29', NULL, 0.00, '01:00 PM', '0', NULL, '1', 'iS ON HIGHER CTC xxamp DOENxquotT HAVE CONVINCING SKILL, EXPERIENCE,WILL NOT BE SUITABLE FOR SALES', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-14 05:49:45', 1, '2020-09-14 06:05:42', 0, NULL, 1),
(341, '', '0', '3456789012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009140033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-14 05:55:17', 0, NULL, 0, NULL, 1),
(342, 'Prasannavenkatesh G', '4', '6374414841', '7358851331', 'vprasanna979@gmail.com', '1998-03-13', 22, '2', '2', 'Gunasekaran', 'Gunasekaran', 8500.00, 1, 10000.00, 11000.00, 'Erode', 'Thirumullaivoyal ,chennai', '2009150001', '2', '1', 'upload_files/candidate_tracker/79281482182_Resume 2.docx', NULL, NULL, '2020-09-15', 1, '', '3', '8', '2020-09-17', 11000.00, '11:00 AM', '3', '2020-09-30', '2', 'For Dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 08:48:33', 7, '2020-10-07 05:48:12', 0, NULL, 1),
(343, 'p.mohan', '6', '9597746988', '8754882524', 'mohanstr90@gmail.com', '1990-06-28', 30, '2', '2', 'g.parthasarathy', 'business', 25000.00, 1, 16000.00, 23000.00, 'thirukovilur', 'thiruvanmiyur', '2009150002', '3', '2', 'upload_files/candidate_tracker/67313812573_Resume Mohan.pdf', NULL, NULL, '2020-09-15', 0, '', '5', '16', '1970-01-01', 0.00, '11:34 AM', '0', '1970-01-01', '1', 'reason for Above age ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 10:17:11', 7, '2020-09-29 12:55:41', 0, NULL, 1),
(344, '', '0', '0000000000', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 10:20:03', 0, NULL, 0, NULL, 1),
(345, '', '0', '9941362805', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 10:38:37', 0, NULL, 0, NULL, 1),
(346, 'dinesh', '5', '9962745084', '', 'vm.dinesh@yahoo.com', '1988-01-23', 32, '2', '1', 'manoharan', 'ashok lyelanad', 25000.00, 3, 19500.00, 25000.00, 'manali new town', 'manali new town', '2009150005', '3', '2', 'upload_files/candidate_tracker/20345180716_Dinesh MBA update.docx', NULL, NULL, '2020-09-15', 0, '', '5', '29', '1970-01-01', 0.00, '11:20 AM', '0', '1970-01-01', '1', 'Not fir for sales', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 11:12:49', 29, '2020-09-15 01:04:57', 0, NULL, 1),
(347, 'abishek g', '6', '7397495823', '', 'daniel9791652840@gmail.com', '2000-02-20', 20, '2', '2', 'george s', 'maintenance managaer at apartments', 20000.00, 1, 0.00, 12000.00, 'moolakadai', 'moolakadai', '2009150006', '1', '1', 'upload_files/candidate_tracker/77950737258_Abishek Resume.docx', NULL, NULL, '2020-11-03', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit for RE', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-09-15 11:54:08', 58, '2020-12-29 09:49:19', 0, NULL, 1),
(348, '', '0', '8610676854', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 11:56:18', 0, NULL, 0, NULL, 1),
(349, '', '0', '9025010476', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 12:39:42', 0, NULL, 0, NULL, 1),
(350, 'Sanjay Kumar R', '13', '9941585743', '7904484611', 'sanjaykumarr06@gmail.com', '1997-06-14', 23, '2', '2', 'Renu Kumar', 'Late', 100000.00, 1, 0.00, 12000.00, '90/61 Kamarajapuram 3rd st Nungambakkam Chennai 34', '90/61 Kamarajapuram 3rd st Nungambakkam Chennai 34', '2009150009', '1', '1', 'upload_files/candidate_tracker/721930673_1579779571106Resume_sanjay.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '26', '1970-01-01', 0.00, '12:00 PM', '0', '1970-01-01', '1', 'he dont know the basic concepts in php', '2', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 12:59:11', 50, '2020-09-15 02:46:44', 0, NULL, 1),
(351, 'SATHISH KUMAR V', '13', '8072095029', '7401071774', 'Sathishcooll03@gmail.com', '1998-11-03', 21, '2', '2', 'VENKATESH BABU PM', 'Hp gas verification', 12000.00, 0, 0.00, 10000.00, 'Nungambakkam', 'Nungambakkam', '2009150010', '1', '1', 'upload_files/candidate_tracker/92883283935_Resume _Resume_Format5.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '26', '1970-01-01', 0.00, '11:24 AM', '0', '1970-01-01', '1', 'he dont know the Basics of c and c++, oops concepts ', '2', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 01:19:32', 50, '2020-09-15 02:46:54', 0, NULL, 1),
(352, '', '0', '9176323086', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 01:32:43', 0, NULL, 0, NULL, 1),
(353, 'SURESHKUMAR M', '1', '9789918267', '', 'suresh0288@rediffmail.com', '1990-08-31', 30, '2', '1', 'MAHALINGAM N', 'B.com', 28000.00, 1, 29400.00, 45000.00, 'Ennore', 'Ennore', '2009150012', '1', '2', 'upload_files/candidate_tracker/2367992661_CV.pdf', NULL, NULL, '2020-09-15', 15, '', '8', '41', '1970-01-01', 0.00, '11:37 AM', '0', '1970-01-01', '1', 'Quarantined for 21 days ', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 02:14:26', 50, '2020-09-15 06:51:16', 0, NULL, 1),
(354, 'S. Pooja preetha', '4', '7305209926', '7358524318', 'poojapreetha2697@gmail.com', '1997-07-26', 23, '2', '2', 'Sundar.m', 'Carpenter', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2009150013', '2', '2', 'upload_files/candidate_tracker/19943342403_RESUME.docx', NULL, NULL, '2020-09-15', 1, '', '3', '8', '2020-09-17', 12000.00, '03:00 PM', '1', '1970-01-01', '2', '12K for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 02:26:11', 1, '2020-09-23 11:54:16', 0, NULL, 1),
(355, 'Akash', '4', '8838784176', '9789625131', 'ak.cena55@gmail.com', '1998-06-01', 22, '2', '2', 'Amalraj', 'Business', 20000.00, 1, 0.00, 160000.00, 'No.10, balaji Nagar, Saligramam, Chennai - 93', 'Same as above', '2009150014', '1', '1', 'upload_files/candidate_tracker/43818782209_1599648943571_updated akash.docx', NULL, NULL, '2020-09-16', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '0', '1970-01-01', '1', 'will not suite for this profile.', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 02:48:58', 50, '2020-09-16 11:11:29', 0, NULL, 1),
(356, 'Nirmal raj', '4', '7010513263', '8489363713', 'Nirmalmaya@gmail.com', '1996-12-14', 23, '2', '2', 'Anthoniraj', 'Not working', 25000.00, 1, 0.00, 12000.00, 'Thiruvallur', 'adayar', '2009150015', '2', '1', 'upload_files/candidate_tracker/40099839574_1600233414422_NIRMALRAJ.docx', NULL, NULL, '2020-09-16', 0, '', '5', '21', '1970-01-01', 0.00, '10:55 AM', '', '1970-01-01', '1', 'not bold, very low voice , expecting high salary ....', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 05:21:29', 50, '2020-09-16 11:07:32', 0, NULL, 1),
(357, 'Daniel Raj A', '4', '7358716581', '9176971608', 'Danieldan.220898@gmail.com', '1998-08-22', 22, '2', '1', 'Antony Arokia Raj', 'Senior assistant (MTC)', 70000.00, 1, 0.00, 16000.00, 'NO:14/33 balaji nagar 2nd st,royapettah,chennai-14', 'NO:14/33 Balaji Nagar 2nd St,Royapettah,Chennai-14', '2009150016', '1', '1', 'upload_files/candidate_tracker/67207108196_daniel resume new.pdf', NULL, NULL, '2020-09-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 06:06:49', 50, '2020-09-16 01:54:36', 0, NULL, 1),
(358, '', '0', '9003142676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 06:12:59', 0, NULL, 0, NULL, 1),
(359, 'Mohamed Sahul Hameed', '4', '9385754893', '9176118385', 'Sahulhr99@gmail.com', '1993-11-25', 26, '2', '2', 'Haroon Rasheed', 'Fresh', 25000.00, 4, 0.00, 15000.00, 'Ramanathapuram', 'Mannady chennai', '2009150018', '1', '1', 'upload_files/candidate_tracker/23309694591_future 1.docx', NULL, NULL, '2020-09-16', 0, '', '5', '8', '1970-01-01', 0.00, '11:23 AM', '', '1970-01-01', '1', 'language is not good and will not suite for CAFS', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-15 06:20:25', 50, '2020-09-16 11:24:12', 0, NULL, 1),
(360, 'rubiya h', '11', '8939191081', '', 'RubiyaFathima62@gmail.com', '1999-05-30', 21, '2', '2', 'haamid sheriff a', 'computer service man', 10000.00, 2, 0.00, 12000.00, 'kodungaiyur chennai', 'kodungaiyur chennai', '2009150019', '1', '1', 'upload_files/candidate_tracker/27740132957_resume rubiya.docx', NULL, NULL, '2020-11-03', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'long distance', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-09-15 06:39:12', 58, '2020-12-23 12:18:39', 0, NULL, 1),
(361, 'Salome Jayaseeli', '4', '8124268044', '', 'chrisalo1620@gmail.com', '1996-12-16', 23, '2', '2', 'Vincent Christopher (late)', 'Exporter', 10000.00, 0, 0.00, 15000.00, 'No:29 A block MSNagar chetpet Chennai 31', 'No:29 A block MSNagar chetpet Chennai 31', '2009150020', '2', '1', 'upload_files/candidate_tracker/11492318391_sj res(1).pdf', NULL, NULL, '2020-09-16', 0, '', '5', '8', NULL, 0.00, '11:45 AM', '0', NULL, '2', 'Will Not Suite For Our Process. No Fluency While Speaking.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 06:44:54', 1, '2020-09-15 07:49:13', 0, NULL, 1),
(362, '', '0', '8839430916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009150021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 06:45:54', 0, NULL, 0, NULL, 1),
(363, 'jaffer test', '13', '9840349499', '', 'jagufersathik@cafsinfotech.in', '1986-09-15', 34, '3', '2', 'Sathik', 'Former', 5000.00, 2, 10000.00, 20000.00, 'Tuticorin', 'chennai', '2009150022', '', '2', 'upload_files/candidate_tracker/50169324191_dummy.docx', NULL, NULL, '2020-09-15', 0, '', '3', '41', '2020-09-15', 15000.00, '11:13 AM', '5', '2020-09-15', '2', NULL, '2', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 07:18:05', 1, '2020-09-17 03:21:42', 7, '2020-10-07 05:49:25', 0),
(364, 's.keerthiga', '4', '8939430916', '9585403583', 'keerthi19798@gmail.com', '1998-07-19', 22, '2', '2', 'subramani', 'bsnl', 20000.00, 1, 10000.00, 15000.00, 'chetpet chennai', 'chetpet', '2009150023', '2', '1', 'upload_files/candidate_tracker/47917812234_keerthi edited resume.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '8', '2020-09-17', 11000.00, '11:30 AM', '', '2020-09-18', '2', 'for Dhivya team', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 07:23:40', 1, '2020-09-16 07:59:37', 0, NULL, 1),
(365, 'SNEHA.B.S', '4', '9844706225', '', 'Snehasanny32@gmail.com', '1989-11-06', 30, '2', '1', 'suni kumar', 'advocate', 10000.00, 0, 9000.00, 15000.00, 'Vijayanagar', 'Vijayanagar', '2009150024', '7', '2', 'upload_files/candidate_tracker/60061465986_Sneha_Telecaller_CAFS.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '38', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'risk to hire her...why because shexquots spouse is a star health agent xxamp lawyer too', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-15 07:51:55', 1, '2020-09-16 12:32:00', 0, NULL, 1),
(366, 'Prabhakar j', '4', '8123000464', '9620956513', 'prabhakarprabu27@gmail.com', '1997-04-27', 23, '2', '2', 'John', 'Security', 10000.00, 4, 15000.00, 20000.00, 'Chandralayout', 'Chandralayout', '2009160001', '7', '2', 'upload_files/candidate_tracker/33210494119_Doc Sep 16 2020.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '38', NULL, 0.00, '01:00 PM', '0', NULL, '1', 'not good in communication', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 09:46:03', 1, '2020-09-16 11:51:03', 0, NULL, 1),
(367, 'saravanan', '13', '8248009219', '8248009219', 'saravanan.crokzz12@gmail.com', '1999-07-12', 21, '2', '2', 'sundar', 'realestate', 40000.00, 1, 0.00, 15000.00, 'old no 236 new no 80/1Rkmutt road mylapore Chennai', '20/14 venkatasamy street santhome chennai', '2009160002', '4', '1', 'upload_files/candidate_tracker/21875842319_CV of saravanan2.docx', NULL, NULL, '2020-09-16', 0, '', '5', '26', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'He Did A 6-Month Course In PHP Spent 25,000, But He Is Not Good At Even The Basics Of PHP.', '2', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 10:03:25', 50, '2020-09-16 10:25:39', 0, NULL, 1),
(368, 'Manda venkatasudheer Kumar', '13', '8688088368', '8688088368', 'venkatasudheermanda@gmail.com', '1995-07-01', 25, '2', '2', 'M Ravi', 'Business', 30000.00, 1, 190000.00, 300000.00, 'Gudivada', 'chennai', '2009160003', '4', '2', 'upload_files/candidate_tracker/18666595739_Resume-Manda-Venkatasudheerkumar.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '26', NULL, 0.00, '10:15 AM', '0', NULL, '2', 'He Is Having One Year 6 Months Of Experience But He Dont Know Basic Jquery Ajax Syntax And Basic MySQL Queries. have sent Assessment sheet to HR to check with consultancy.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 10:11:17', 1, '2020-09-16 10:15:24', 0, NULL, 1),
(369, 'S Mohammed Ali', '4', '9087069157', '9176365345', 'aliboysmd6@gmail.com', '1998-06-01', 22, '2', '2', 'A Sathik Ali', 'Daily wages', 17000.00, 2, 12500.00, 15000.00, 'Kovur', 'Kovur', '2009160004', '2', '2', 'upload_files/candidate_tracker/88220607447_1598983905648Resume_mohammed.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'worst attitude , no voice clarity language is not good , not sustain long term, also expecting high salary', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 10:51:20', 50, '2020-09-16 11:10:52', 0, NULL, 1),
(370, '', '0', '7299607980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 10:55:24', 0, NULL, 0, NULL, 1),
(371, 'Regina Mary l', '4', '9940236506', '8681938711', 'Reginamary110498@gmail.com', '1998-04-11', 22, '2', '2', 'Lawrence. G', 'Working', 15000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2009160006', '3', '2', 'upload_files/candidate_tracker/58184581773_RESUME.docx', NULL, NULL, '2020-09-16', 0, '', '5', '13', '1970-01-01', 0.00, '11:14 AM', '', '1970-01-01', '2', 'Not fit for tele filed', '1', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:05:23', 50, '2020-09-16 01:45:55', 0, NULL, 1),
(372, 'irshad pasha', '4', '8088044581', '', 'irshadpashats007@gmail.com', '1997-04-10', 23, '2', '2', 'sardar pasha', 'Business', 20000.00, 4, 0.00, 12000.00, 'vijayanagar', 'vijayanagar', '2009160007', '7', '1', 'upload_files/candidate_tracker/36849565935_Irashad Pasha_Telecaller_CAFS.docx', NULL, NULL, '2020-09-16', 0, '', '5', '38', NULL, 0.00, '03:04 PM', '0', NULL, '1', 'zero english communication', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:05:35', 1, '2020-09-16 12:04:37', 0, NULL, 1),
(373, '', '0', '8056211239', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:10:28', 0, NULL, 0, NULL, 1),
(374, 'rvn krishnan', '1', '8939398888', '9962997736', 'krishnanrvn@gmail.com', '1986-02-20', 34, '2', '1', 'r rajamani', 'salaried', 35000.00, 1, 35000.00, 38000.00, 'madipakkam', 'madipakkam', '2009160009', '1', '2', 'upload_files/candidate_tracker/95062718214_krishnan rvn resume 1.pdf', NULL, NULL, '2020-09-17', 15, '', '5', '8', '1970-01-01', 0.00, '09:43 AM', '', '1970-01-01', '1', 'exp CTC is 5.5L will not suite for AM.', '5', '2', '', '', '', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 11:18:27', 1, '2020-09-16 12:05:41', 0, NULL, 1),
(375, 'Tameem. S', '4', '6379603502', '', 'ansaritameem232@gmai.com', '1998-03-08', 22, '2', '2', 'Shabeer', 'Leather worker', 13000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2009160010', '1', '2', 'upload_files/candidate_tracker/19992724305_Resume(5).pdf', NULL, NULL, '2020-09-17', 1, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'will not handle pressure and not speaking up too.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 11:19:41', 50, '2020-09-17 09:24:24', 0, NULL, 1),
(376, 'Gowtham. V', '4', '6381453151', '9566110186', 'Gowthamvelayudham@gmail.com', '1999-01-07', 21, '2', '2', 'Velayudham', 'Driver', 15000.00, 1, 0.00, 10000.00, 'Chennai st.thomas mount', 'Chennai', '2009160011', '1', '1', 'upload_files/candidate_tracker/74891684232_V GOWTHAM(1)(1).docx', NULL, NULL, '2020-09-17', 0, '', '8', '', '1970-01-01', 0.00, '11:31 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 11:35:49', 50, '2020-09-17 05:30:38', 0, NULL, 1),
(377, '', '0', '9080759528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:40:02', 0, NULL, 0, NULL, 1),
(378, 'lakshmi narayanan', '4', '9087002390', '8754519940', 'lakshminarayanan839@gmail.com', '1995-10-15', 24, '2', '2', 'kannan', 'flower merchant', 35000.00, 0, 0.00, 14000.00, 'chennai', 'chennai', '2009160013', '3', '', 'upload_files/candidate_tracker/21590337797_vishnu .pdf', NULL, NULL, '2020-09-16', 0, '', '5', '21', NULL, 0.00, '12:41 PM', '0', NULL, '2', 'not fit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:46:15', 1, '2020-09-16 12:54:11', 0, NULL, 1),
(379, '', '0', '9677206032', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 11:57:57', 0, NULL, 0, NULL, 1),
(380, 'Yamuna.S', '4', '9176453036', '8825939795', 'yamunasri9176@gmail.com', '1998-09-27', 21, '1', '2', 'Srinivasan.R', 'Bussiness', 20000.00, 1, 10000.00, 11000.00, 'No:102 Jothi ammal ng saidapet', 'No:102 Jothi ammal ng saidapet', '2009160015', '', '2', 'upload_files/candidate_tracker/67103643464_yamuna.docx', NULL, NULL, '2020-09-16', 0, '5162', '3', '8', '2020-09-17', 11000.00, '12:12 PM', '3', '2020-09-18', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:08:57', 7, '2020-10-07 05:50:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(381, 'Swetha.s', '4', '9345260226', '9345260226', 'Kaviswetha304@gmail.com', '1998-12-27', 21, '2', '2', 'Shankar.p', 'wielding', 20000.00, 1, 12000.00, 13000.00, 'nandanam', 'nandanam', '2009160016', '2', '2', 'upload_files/candidate_tracker/86246650397_swe resume.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '13', NULL, 0.00, '02:00 PM', '0', NULL, '1', 'Not Suitable For Pressure Handling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:13:58', 1, '2020-09-16 01:39:01', 0, NULL, 1),
(382, 'M ramya', '4', '9514083740', '7299509845', 'evanjilin2830@gmail.com', '1997-08-30', 23, '2', '2', 'V Munusamy', 'Cooli', 15000.00, 1, 10000.00, 13000.00, '10/4 sudalai muthu street, new washermenpet, ch-81', '10/4 sudalai muthu street, new Washermenpt, Ch-81', '2009160017', '2', '2', 'upload_files/candidate_tracker/84391190435_ramya resume pdf.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '8', '2020-09-17', 11000.00, '01:15 PM', '2', '1970-01-01', '2', 'for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:15:32', 7, '2020-10-07 05:51:12', 0, NULL, 1),
(383, 'Aravinth P', '4', '8667433285', '8754740381', 'aravinthpandiyan27@gmail.com', '1995-05-27', 25, '2', '2', 'A.pandiyan', 'glass cutter', 17000.00, 1, 11500.00, 12000.00, '3/4 shanmuga Purm extrn 3rd street ,thiruvottiyur', '3/4 Shanmuga Purm Extrn 3rd Street ,Thiruvottiyur', '2009160018', '2', '2', 'upload_files/candidate_tracker/20090286898_aravinth pandiyan resume.pdf', NULL, NULL, '2020-09-16', 0, '', '5', '21', NULL, 0.00, '01:15 PM', '0', NULL, '1', 'low voice ,not bold, ,low confidence, ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:15:35', 1, '2020-09-16 01:04:16', 0, NULL, 1),
(384, 'test', '2', '9999998887', '', '', '1994-08-25', 26, '3', '2', 'hnfdjgdj', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'fdrn', 'fd n f n', '2009160019', '', '1', 'upload_files/candidate_tracker/21577452384_12345.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '0', NULL, 0.00, '02:03 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 12:42:07', 1, '2020-09-22 03:16:10', 0, NULL, 1),
(385, 'G. Monish kumar', '4', '9942221738', '7358517360', 'Monishkumargs1999@gmail.com', '1999-03-30', 21, '2', '2', 'M d gandhi', 'Car driver', 30000.00, 2, 0.00, 15000.00, 'Vandavasi', 'Jaffarkhanpet Chennai', '2009160020', '1', '1', 'upload_files/candidate_tracker/47410775071_1571465203888Resume_G.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit for voice process ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 12:42:18', 50, '2020-09-17 12:55:49', 0, NULL, 1),
(386, 'Praneesh P', '4', '9840424221', '', 'ppr.praneesh@gmail.com', '1997-07-24', 23, '2', '2', 'M Prem Kumar', 'Business', 15000.00, 0, 14000.00, 16000.00, 'Perungudi,Chennai', 'Perungudi,chennai', '2009160021', '1', '2', 'upload_files/candidate_tracker/3398420174_1592287159416Resume_Praneesh.pdf', NULL, NULL, '2020-09-17', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 01:16:40', 50, '2020-09-17 05:30:53', 0, NULL, 1),
(387, '', '0', '8754487564', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 01:33:01', 0, NULL, 0, NULL, 1),
(388, 'Pankajam', '13', '9345231069', '7868097027', 'pankajam.ml@gmail.com', '1996-03-27', 24, '2', '2', 'Muthamperumalpillai', 'Store manager', 21000.00, 1, 18000.00, 20000.00, 'Chennai', 'Triplicane', '2009160023', '4', '2', 'upload_files/candidate_tracker/72268240748_Pankajam may2020 resume updated (2).docx', NULL, NULL, '2020-09-16', 0, '', '5', '26', NULL, 0.00, '02:00 PM', '0', NULL, '2', 'She Is Having 2.5 Years but Dont Know The Basic (Array Concepts And Database Queries) . ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 01:44:18', 1, '2020-09-16 01:48:31', 0, NULL, 1),
(389, 'udhayakumar', '2', '9445732341', '', 'udhaya@cafsinfotech.in', '1991-09-16', 29, '3', '1', 'anandan', 'bussiness', 20000.00, 2, 20000.00, 30000.00, 'krishnagiri', 'chennai', '2009160024', '', '2', 'upload_files/candidate_tracker/48984376749_My_Resume.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '41', '2020-09-17', 20000.00, '01:56 PM', '3', '2020-09-16', '1', 'nill', '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 01:50:33', 1, '2020-09-16 02:20:59', 7, '2020-10-07 05:49:25', 0),
(390, 'gokulraj sankar', '2', '8608706154', '', 'sureshkumar@cafs.co.in', '2005-09-16', 15, '2', '2', 'sankar', 'farmer', 1000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2009160025', '1', '1', 'upload_files/candidate_tracker/26687610427_SFC-AMC Invoice 2020-2021.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '8', '2020-09-16', 1000000.00, '03:49 PM', '7', '1970-01-01', '1', 'Informed all terms and condition', '2', '2', '1', '1', '1', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 03:48:51', 7, '2020-09-16 04:19:29', 7, '2020-10-07 05:49:25', 0),
(391, '', '0', '9290274533', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 03:57:59', 0, NULL, 0, NULL, 1),
(392, 'Vinitha', '4', '9025876510', '9025876510', 'Vinithadu19@gamil.com', '1996-06-07', 24, '2', '1', 'Dharuman', 'Former', 10000.00, 3, 15000.00, 14000.00, 'Voolur', 'Kolathur', '2009160027', '2', '2', 'upload_files/candidate_tracker/79969975963_vinitha-19.docx', NULL, NULL, '2020-09-17', 1, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 04:07:35', 1, '2020-09-16 04:22:01', 0, NULL, 1),
(393, 'R JANAKIRAMN', '6', '9962459556', '8680859184', 'jaani.3888@gmail.com', '1988-08-03', 32, '2', '2', 'RADHAKRISHNAN S', 'SALES', 21000.00, 2, 21000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2009160028', '1', '2', 'upload_files/candidate_tracker/50556536103_Janakiraman.pdf', NULL, NULL, '2020-09-17', 15, '', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', 'will not suite for RM and will not Sustain. got update from GK ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 04:19:00', 50, '2020-09-17 09:26:02', 0, NULL, 1),
(394, 'Priyanka R', '4', '7401825381', '', 'rajasekaranpriyanka125@gmail.com', '1996-10-10', 23, '2', '2', 'Rajasekaran', 'Electrician', 19000.00, 2, 15000.00, 15000.00, 'Chennai', 'Chennai', '2009160029', '2', '2', 'upload_files/candidate_tracker/69752299146_0_RESUME Priyanka.docx', NULL, NULL, '2020-09-17', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 04:32:18', 1, '2020-09-16 04:36:47', 0, NULL, 1),
(395, '', '0', '8297063000', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 04:48:14', 0, NULL, 0, NULL, 1),
(396, '', '0', '9952056721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 05:03:05', 0, NULL, 0, NULL, 1),
(397, 'Vivekraj', '11', '8939333163', '', 'Vivekraj88@gmail.com', '1988-07-10', 32, '2', '1', 'V devaraj', 'Auditor', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2009160032', '1', '2', 'upload_files/candidate_tracker/61915277273_D.VivekRaj HR Recruiter.doc', NULL, NULL, '2020-09-17', 15, '', '5', '53', '1970-01-01', 0.00, '11:19 AM', '', '1970-01-01', '2', 'Pronounciation is nt good.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 05:16:29', 50, '2020-09-17 09:24:01', 0, NULL, 1),
(398, 'Vincy J', '11', '8939801069', '9444775368', 'Vincyj94@gmail.com', '1994-03-18', 26, '2', '1', 'Ugin M', 'Technical assistant', 30000.00, 1, 18000.00, 25000.00, 'Ambattur chennai', 'Ambattur chennai', '2009160033', '1', '2', 'upload_files/candidate_tracker/46333008253_vincy resume.docx', NULL, NULL, '2020-09-17', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'From Ambattur And Has 1yr Kid Will Not Sustain 2 Years Gap And Exp Is 20+ As Take Home.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 05:16:52', 8, '2020-09-17 02:59:13', 0, NULL, 1),
(399, 'Nethaji', '5', '7358524224', '9962074796', 'rakki222nethaji@gmail.com', '1992-10-01', 27, '2', '2', 'G.Balasubramani', 'Southern Railway (retired)', 20000.00, 2, 22000.00, 30000.00, 'kolathur', 'kolathur', '2009160034', '1', '2', 'upload_files/candidate_tracker/33656683629_B.Nethaji Resumae.pdf', NULL, NULL, '2020-09-17', 0, '', '3', '8', '2020-09-18', 23000.00, '11:00 AM', '3', '2020-09-21', '1', '23K for veben team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-16 05:29:49', 7, '2020-10-07 05:51:35', 0, NULL, 1),
(400, '', '0', '8939510190', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009160035', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 05:29:58', 0, NULL, 0, NULL, 1),
(401, 'K.soundriya', '4', '9094585141', '', 'ksoundriya@gmail.com', '1996-10-23', 23, '2', '2', 'S.kamaraj', 'Auto driver', 21000.00, 2, 15000.00, 15000.00, 'Kodungaiyur Chennai-600118', 'Kodungaiyur chennai-600118', '2009160036', '2', '2', 'upload_files/candidate_tracker/28541230453_Soundriya Resume.pdf', NULL, NULL, '2020-09-17', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Not Sustain Long Term , 45 Mins To 1 Hour Travel,,Expected 15 K Salary, She Not Have Voice Exp Also', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 05:54:03', 1, '2020-09-16 06:30:08', 0, NULL, 1),
(402, 'test', '13', '9840349411', '', 'jagufersathik@cafsinfotech.in', '1986-09-16', 34, '3', '2', 'test', 'Former', 5000.00, 2, 0.00, 20000.00, 'chennai', 'tuticorin', '2009160037', '', '1', 'upload_files/candidate_tracker/6833547381_dummy.pdf', NULL, NULL, '2020-09-16', 0, '', '3', '41', '2020-09-17', 20000.00, '04:16 PM', '7', '1970-01-01', '2', NULL, '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 06:15:01', 1, '2020-09-17 11:25:09', 7, '2020-10-01 12:58:39', 0),
(403, 'saqlain akir', '4', '7892346480', '', 'saqlainzakir7786@gmail.com', '1998-10-10', 21, '2', '2', 'ZAKIR BASHA', 'merchant', 20000.00, 1, 0.00, 15000.00, 'sivajnagar', 'sivajinagar', '2009160038', '7', '1', 'upload_files/candidate_tracker/29674973960_Saqlain Zakir_Telecaller_CAFS.docx', NULL, NULL, '2020-09-17', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 06:57:57', 50, '2020-09-17 05:31:11', 0, NULL, 1),
(404, 'adul', '5', '8073883515', '', 'shaikabul134@gmail.com', '2000-02-07', 20, '2', '2', 'fayaz ahmed', 'business man', 20000.00, 8, 18000.00, 20000.00, 'pnt cross', 'pnt cross', '2009160039', '7', '2', 'upload_files/candidate_tracker/46666552238_Abul_RM_CAFS.pdf', NULL, NULL, '2020-09-17', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-16 07:17:08', 1, '2020-09-16 07:25:45', 0, NULL, 1),
(405, 'Sundar', '4', '7299818675', '7010973109', 'sivasundar71@gmail.com', '1998-04-23', 22, '2', '2', 'Murugan', 'ITI', 20000.00, 1, 15000.00, 16000.00, 'Vadapalani', 'Vadapalani', '2009170001', '4', '2', 'upload_files/candidate_tracker/36775837711_SUNDAR RESUME-converted(1).docx', NULL, NULL, '2020-09-17', 0, '', '5', '11', NULL, 0.00, '10:21 AM', '0', NULL, '1', 'candidate is not interested in sales.he is not willing to work in pressure ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 05:41:52', 1, '2020-09-17 10:22:18', 0, NULL, 1),
(406, 'Eswaran G', '13', '9789590350', '', 'geswaran1041@gmail.com', '1996-06-02', 24, '2', '2', 'Ganesan A', 'Supervisor', 20000.00, 1, 0.00, 25000.00, 'Srivilliputtur', 'Vadapalani', '2009170002', '1', '1', 'upload_files/candidate_tracker/28936205020_Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '26', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he dont know the basic of c and c++', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 09:57:40', 50, '2020-09-17 12:55:13', 0, NULL, 1),
(407, 'Sabari Manikandan', '13', '9677047166', '', 'sabarivijay281099@gmail.com', '1999-10-28', 20, '2', '2', 'Maalaiammal', 'Baby sitter', 9000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2009170003', '4', '1', 'upload_files/candidate_tracker/26934769786_1600172776482Resume_Sabari.pdf', NULL, NULL, '2020-09-17', 0, '', '5', '27', NULL, 0.00, '10:03 AM', '0', NULL, '2', 'Task Incomplete. Gave 3 days time and given 2 time excuses. but he could not complete.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 09:59:43', 1, '2020-09-17 10:08:19', 0, NULL, 1),
(408, 'D Sumathy', '4', '8248368792', '', '', '1999-02-16', 21, '2', '2', 'K Dhamotharan', 'Driver', 60000.00, 2, 0.00, 12000.00, 'No 3 Sait Mohanlal Street choolai Chennai 600112', 'No 3 Sait Mohanlal Street Choolai Chennai 600112', '2009170004', '1', '1', 'upload_files/candidate_tracker/41846434013_sumo resume.docx', NULL, NULL, '2020-09-18', 0, '', '5', '8', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'will not handle Pressure, and target', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 10:15:10', 1, '2020-09-17 12:34:30', 0, NULL, 1),
(409, '', '0', '9962605641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 10:19:31', 0, NULL, 0, NULL, 1),
(410, 'Deepak M', '4', '9043134006', '9043134002', 'deepakmsd5798@gmail.com', '1998-07-05', 22, '2', '2', 'Muthukrishnan S', 'Sign board Business', 25000.00, 1, 0.00, 12000.00, 'No:28 indhra Gandhi salai old perungalatgur', 'No:28 Indhra Gandhi Salai Old Perungalatgur', '2009170006', '1', '1', 'upload_files/candidate_tracker/74947950293_Resume1.pdf', NULL, NULL, '2020-09-18', 0, '', '8', '', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 10:33:28', 50, '2020-09-18 04:01:18', 0, NULL, 1),
(411, 'V.shanmugam', '17', '9840387643', '8608427329', 'Shanmugam1711@gmail.com', '1987-11-17', 32, '2', '1', 'VEERARAGAVAN', 'NO MORE', 40000.00, 3, 25000.00, 30000.00, 'Chennai', 'Chennai', '2009170007', '8', '2', 'upload_files/candidate_tracker/50176442821_karthi.docx', NULL, NULL, '2020-09-17', 0, '', '3', '8', '2020-10-05', 276000.00, '11:40 AM', '6', '2021-03-26', '1', '23K by Gaurav. as sourcing BDM', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 10:48:01', 7, '2020-10-22 05:24:59', 0, NULL, 1),
(412, 'Nandhini.p', '11', '8248371995', '9944804548', 'Nandhu14892@gmail.com', '1992-08-14', 28, '2', '2', 'Pari.M', 'Farmer', 35000.00, 2, 17000.00, 19000.00, 'Villupuram', 'Pallikarani', '2009170008', '2', '2', 'upload_files/candidate_tracker/14837435721_Nandhini Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 10:54:30', 1, '2020-09-17 11:26:53', 0, NULL, 1),
(413, 'Mohan Raj', '16', '9080815635', '', 'mohanmis1996@gmail.com', '1996-10-10', 23, '2', '2', 'Dhanapal', 'Tailor', 15000.00, 0, 15000.00, 17000.00, 'Chennai', 'Chennai', '2009170009', '8', '2', 'upload_files/candidate_tracker/7327555640_Mohan Raj Resume MIS.doc', NULL, NULL, '2020-09-17', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not much experience in MIS. expected high sal abv 15k', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:00:37', 50, '2020-09-17 01:10:46', 0, NULL, 1),
(414, '', '0', '9962657330', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:05:00', 0, NULL, 0, NULL, 1),
(415, 'Santhosh', '6', '9941174362', '9941927243', 'Sandysanthosh19021995@gmail.com', '1995-02-19', 25, '2', '2', 'Govindhan', 'Real estate', 15000.00, 2, 16000.00, 18000.00, 'Chennai', 'Choolai', '2009170011', '8', '2', 'upload_files/candidate_tracker/61922770704_Resume - 2020.docx', NULL, NULL, '2020-09-17', 1, '', '5', '22', NULL, 0.00, '11:18 AM', '0', NULL, '1', 'candidate did not came for second round', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:11:34', 1, '2020-09-17 11:37:36', 0, NULL, 1),
(416, '', '0', '8524011463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:14:59', 0, NULL, 0, NULL, 1),
(417, 'Aravind B', '16', '8122720456', '', 'aravindlmj14@gmail.com', '1995-09-14', 25, '2', '2', 'Bhaskar', 'Business', 30000.00, 1, 15000.00, 17000.00, 'Royapuram', 'Royapuram', '2009170013', '8', '2', 'upload_files/candidate_tracker/84003109066_ARAVIND_RESUME_WORD.docx...doc', NULL, NULL, '2020-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '01:38 PM', '', '1970-01-01', '1', 'will not suite for MIS very lazy and will not suite for any profile.', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 11:36:33', 7, '2020-09-18 01:51:40', 0, NULL, 1),
(418, '', '0', '9618563417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 12:17:32', 0, NULL, 0, NULL, 1),
(419, 'A SURIYAN', '4', '6381565781', '9585690847', 'Srisuri17@gmail.com', '1994-06-17', 26, '2', '2', 'M Ashokan', 'Cooly', 7800.00, 1, 0.00, 15000.00, 'Pallipat', 'Chrnnai', '2009170015', '2', '1', 'upload_files/candidate_tracker/50207911093_RESUM-suriyan000.docx', NULL, NULL, '2020-09-17', 0, '', '5', '13', '1970-01-01', 0.00, '12:38 AM', '', '1970-01-01', '1', 'expecting high salary and not suitable for sales profile . ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 12:27:05', 50, '2020-09-17 01:50:29', 0, NULL, 1),
(420, '', '0', '7094319006', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 12:39:05', 0, NULL, 0, NULL, 1),
(421, 'AMALA GRACY.A', '4', '8428455263', '9952947119', 'amalagracyjw@gmail.com', '1997-08-18', 23, '2', '2', 'Sagayamary.A', 'House keeping', 120000.00, 1, 0.00, 12000.00, 'Pallikaranai', 'Pallikaranai', '2009170017', '1', '1', 'upload_files/candidate_tracker/65808187156_Amala Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-09-21', 10000.00, '11:00 AM', '5', '1970-01-01', '2', '10K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 12:52:36', 7, '2020-10-07 05:53:52', 0, NULL, 1),
(422, 'Gayathri R', '4', '8610789852', '9600172116', 'gayathrii2112@gmail.com', '1990-12-21', 29, '2', '1', 'Kamalesh', 'Private concern', 19000.00, 1, 11500.00, 13000.00, 'No.28/3 NANDHI LOOP STREET WEST CIT NAGAR', '600035', '2009170018', '1', '2', 'upload_files/candidate_tracker/16687939188_R.G-8.doc', NULL, NULL, '2020-09-17', 0, '', '8', '8', '1970-01-01', 0.00, '03:13 PM', '', '1970-01-01', '2', 'not attended', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 12:53:27', 50, '2020-09-17 03:19:22', 0, NULL, 1),
(423, '', '0', '9597498788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 12:54:16', 0, NULL, 0, NULL, 1),
(424, 'Shobana', '4', '9159975916', '9751658528', 'Shobanabca99@gmail.com', '1999-03-05', 21, '2', '2', 'Selvam', 'Telemarketing', 3000.00, 3, 12500.00, 12000.00, 'Thiruvannamalai', 'Amijikarai', '2009170020', '1', '2', 'upload_files/candidate_tracker/83285192601_shobi.docx', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-09-21', 11000.00, '11:00 AM', '3', '2020-09-23', '2', 'for Dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 01:08:01', 7, '2020-10-07 05:56:27', 0, NULL, 1),
(425, '', '0', '7449276525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:10:45', 0, NULL, 0, NULL, 1),
(426, 'suma c', '4', '9108554512', '8867122700', 'sannidhichinnu74364@gmail.com', '1999-08-04', 21, '2', '2', 'chinna', 'non', 30000.00, 1, 18000.00, 20000.00, 'hal', 'madiwala', '2009170022', '7', '2', 'upload_files/candidate_tracker/96086759038_SUMA_CRM_CAFS.pdf', NULL, NULL, '2020-09-17', 0, '', '3', '8', '2020-09-21', 20000.00, '03:30 PM', '5', '1970-01-01', '2', '20K as sourcing TL for Gowshick team', '1', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:19:30', 7, '2020-10-07 05:57:07', 0, NULL, 1),
(427, 'Varnambika S', '11', '9442429137', '', 'varnambika@gmail.com', '1996-10-27', 23, '2', '2', 'Senthilvel Sadasivam', 'Agent', 40000.00, 1, 2.16, 2.50, 'Erode', 'Chennai', '2009170023', '2', '2', 'upload_files/candidate_tracker/77875511696_Varnambika CV(2020).pdf', NULL, NULL, '2020-09-18', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'no relevant exp. rejected in telephonic. fake information.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:24:49', 1, '2020-09-18 10:11:22', 0, NULL, 1),
(428, 'dummy three', '16', '6600660066', '', 'aa@gmail.com', '1997-01-29', 23, '3', '2', 'aa', 'biz', 600000.00, 2, 0.00, 11111.00, 'aa', 'aaa', '2009170024', '', '1', 'upload_files/candidate_tracker/89190143426_Super-Surplus-Brochure.pdf', NULL, NULL, '2020-09-17', 0, '', '5', '32', '1970-01-01', 0.00, '02:37 PM', '', '1970-01-01', '1', 'Not Opted for CRM', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:28:32', 7, '2020-09-17 04:13:02', 52, '2020-11-04 03:12:38', 0),
(429, 'Aravinth', '8', '8939772024', '', 'aravinth2402@gmail.com', '1999-02-24', 21, '2', '2', 'S.palanisamy', 'Salesman', 8000.00, 0, 0.00, 18000.00, 'Royapuram', 'Royapuram', '2009170025', '8', '1', 'upload_files/candidate_tracker/30833907917_as resume.pdf', NULL, NULL, '2020-09-17', 0, '', '8', '35', NULL, 0.00, '11:45 AM', '0', NULL, '1', 'Candidate Not Available We Try To Reach But Hexquots Disconnecting The Call', '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:30:41', 1, '2020-09-17 01:34:32', 0, NULL, 1),
(430, 'dummy nine', '4', '8876665465', '', '', '1990-07-10', 30, '2', '2', 'baren', 'work', 40000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2009170026', '2', '1', 'upload_files/candidate_tracker/61427394590_CLAIMFORM.pdf', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '01:33 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:32:16', 1, '2020-09-17 02:33:08', 52, '2020-11-04 03:12:38', 0),
(431, 'dummy five', '16', '7358742599', '', 'suren.cafs@gmail.com', '1991-09-20', 28, '1', '2', 'andrew', 'sales exicutive', 400000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2009170027', '', '1', 'upload_files/candidate_tracker/55967159801_PORTOBLITY.pdf', NULL, NULL, '2020-09-18', 0, 'sam007', '3', '8', '2020-09-17', 18000.00, '01:37 PM', '7', '1970-01-01', '1', 'for dummy surender', '3', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:36:00', 7, '2020-09-17 05:26:05', 7, '2020-10-07 05:59:02', 0),
(432, 'dummy six', '2', '8610233675', '', 'kayal.abelia@yahoo.com', '1995-04-06', 25, '1', '2', 'jhonson', 'sales exicutive', 500000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2009170028', '', '1', 'upload_files/candidate_tracker/94130180445_Medi-Classic-Individual-Brochure-v2 new.pdf', NULL, NULL, '2020-09-18', 0, 'don', '3', '8', '2020-09-21', 10000.00, '01:40 PM', '7', '1970-01-01', '1', 'for banu team', '2', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:39:09', 7, '2020-09-17 05:55:36', 7, '2020-10-07 05:59:02', 0),
(433, '', '0', '9095011289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:43:10', 0, NULL, 0, NULL, 1),
(434, 'M.Ranjithkumar', '4', '9841428710', '', 'ranjithpavi98414@', '1996-05-18', 24, '2', '2', 'Pushpa', 'Home maker', 13000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2009170030', '4', '2', 'upload_files/candidate_tracker/6444830850_Ranjith Kumar.M11.docx', NULL, NULL, '2020-09-17', 0, '', '5', '13', '1970-01-01', 0.00, '01:53 PM', '', '1970-01-01', '2', 'not fit for this telecalling profile . expected salary high ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:44:58', 50, '2020-09-17 02:13:13', 0, NULL, 1),
(435, '', '0', '9150747136', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:49:13', 0, NULL, 0, NULL, 1),
(436, 'R.Dinesh Kumar', '4', '9841311418', '9941794702', 'r.dinesh2811', '1997-11-28', 22, '1', '2', 'T.Ravikumar', 'Tailor', 20000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2009170032', '', '2', 'upload_files/candidate_tracker/84535174895_Dinesh.27...pdf.pdf', NULL, NULL, '2020-09-17', 0, '5156', '5', '8', NULL, 0.00, '02:02 PM', '0', NULL, '2', 'not speaking up and no relevant exp. exp is 15K', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:49:57', 1, '2020-09-17 02:04:47', 0, NULL, 1),
(437, 'C saran', '4', '7358181190', '8072386608', 'saransekar786@gmail.com', '1998-07-22', 22, '1', '2', 'Chandrasekaran.u', 'Govt staff', 18000.00, 2, 13500.00, 16000.00, 'Chennai', 'Chennai', '2009170033', '', '2', 'upload_files/candidate_tracker/11103884571_SARAN.docx', NULL, NULL, '2020-09-17', 1, '5156', '5', '8', NULL, 0.00, '02:03 PM', '0', NULL, '2', 'will not suit for CRM. no relevant exp. and exp is 15K', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:51:22', 1, '2020-09-17 02:07:49', 0, NULL, 1),
(438, 'S.balaji', '4', '6383768215', '9790923653', 'Balaji214702@gmail.com', '1997-03-26', 23, '1', '2', 'P.sathiyanarayanan', 'driver', 20000.00, 2, 14000.00, 15000.00, 'Chennai', 'Pozhichalur', '2009170034', '', '2', 'upload_files/candidate_tracker/81546065826_Balaji_Professional Resume – 01(1)(1).docx', NULL, NULL, '2020-09-17', 2, 'Ravi m', '5', '21', NULL, 0.00, '02:02 PM', '0', NULL, '2', 'fake resume', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 01:56:00', 1, '2020-09-17 02:07:08', 0, NULL, 1),
(439, 'vignesh.r', '6', '9962908495', '', 'vicvicky715@gmail.com', '1997-07-02', 23, '2', '2', 'rajkumar', 'business', 12000.00, 3, 0.00, 12000.00, 'nerkundram', 'nerkundram', '2009170035', '1', '1', 'upload_files/candidate_tracker/76349545264_vicky resume.docx', NULL, NULL, '2020-09-18', 0, '', '5', '19', '1970-01-01', 0.00, '02:17 PM', '', '1970-01-01', '1', 'no working exp nd sustanbility ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 02:02:49', 8, '2020-09-18 11:35:37', 0, NULL, 1),
(440, 'Anusuya k', '4', '7448437912', '7448903840', 'anusuyakarthikeyan18@gmail.com', '1997-05-18', 23, '2', '2', 'Karthikeyan', 'Cooly', 20000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2009170036', '1', '2', 'upload_files/candidate_tracker/90455790312_1599384924205_ANUSUYA.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 02:08:17', 50, '2020-09-17 03:23:51', 0, NULL, 1),
(441, '', '0', '8867122700', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170037', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:23:36', 0, NULL, 0, NULL, 1),
(442, 'dummy ten', '11', '7644540012', '', '', '1988-05-10', 32, '2', '2', 'john', 'work', 40000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2009170038', '3', '1', 'upload_files/candidate_tracker/38772955330_CLAIMFORM.pdf', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '02:35 PM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:33:40', 1, '2020-09-17 02:36:49', 52, '2020-11-04 03:12:38', 0),
(443, 'dummy one', '16', '7373454565', '8989898989', 'kath@gmail.com', '1997-11-03', 22, '3', '2', 'nijam', 'auto driver', 15000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009170039', '', '1', 'upload_files/candidate_tracker/56968901525_EAadhaar_xxxxxxxx42421355_16092020160131_267771.pdf', NULL, NULL, '2020-09-17', 0, '', '2', '32', '1970-01-01', 0.00, '02:36 PM', '', '1970-01-01', '1', 'Candidate hold', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:34:08', 7, '2020-09-17 04:07:14', 52, '2020-11-04 03:12:38', 0),
(444, 'dummy two', '4', '7904493378', '8080809999', 'smart@com', '1997-11-10', 22, '3', '2', 'aaa', 'auto driver', 15000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009170040', '', '1', 'upload_files/candidate_tracker/85983422599_EAadhaar_xxxxxxxx42421355_16092020160131_267771.pdf', NULL, NULL, '2020-09-17', 0, '', '8', '8', NULL, 0.00, '02:38 PM', '0', NULL, '1', 'left before interview', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:37:37', 1, '2020-09-17 02:39:03', 8, '2020-10-13 11:45:55', 0),
(445, 'dummy four', '5', '7700770077', '', 'banupriya101290@gmail.com', '2000-02-07', 20, '2', '2', 'aa', 'biee', 11111.00, 0, 12000.00, 13000.00, 'aa', 'aaa', '2009170041', '3', '2', 'upload_files/candidate_tracker/65303633559_Star-Super-Surplus-Floater-Brochure.pdf', NULL, NULL, '2020-09-17', 11, '', '3', '8', '2020-09-17', 18000.00, '02:50 PM', '7', '1970-01-01', '1', 'for gokul team', '5', '1', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:39:32', 7, '2020-09-17 05:08:18', 7, '2020-10-07 05:59:02', 0),
(446, '', '0', '9150995677', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170042', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:45:06', 0, NULL, 0, NULL, 1),
(447, 'Deekshita', '4', '8072904858', '', 'banu.cafs@gmail.com', '1994-07-05', 26, '2', '1', 'nikitha', 'nil', 30000.00, 0, 18000.00, 23000.00, 'Chennai', 'Chennai', '2009170043', '1', '2', 'upload_files/candidate_tracker/68391595294_Medi-Classic-Individual-Brochure-v2.pdf', NULL, NULL, '2020-09-26', 15, '', '3', '8', '2020-09-30', 15000.00, '10:30 AM', '1', '1970-01-01', '1', 'for Banu team', '1', '2', '1', '2', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:51:51', 52, '2020-09-26 03:21:44', 7, '2020-10-07 05:59:02', 0),
(448, 'dummy eight', '13', '9962869361', '', 'srini.yyy@gmail.com', '1990-01-08', 30, '4', '2', 'karthich', 'bank manager', 75000.00, 1, 25000.00, 35000.00, 'Chennai', 'Chennai', '2009170044', '', '2', 'upload_files/candidate_tracker/34496386051_CHI Revised 2019 One Pager 2019 - SP (1).pdf', NULL, NULL, '2020-09-24', 30, '', '6', '0', NULL, 0.00, '11:03 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 02:59:23', 1, '2020-09-17 03:03:30', 7, '2020-09-24 01:55:54', 0),
(449, '', '0', '9940561292', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170045', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 03:00:57', 0, NULL, 0, NULL, 1),
(450, 'gokulraj sankar', '2', '8608706342', '', '', '2005-09-17', 15, '2', '2', 'sankar', 'farmer', 1000.00, 1, 0.00, 1000.00, 'chennao', 'chemnmnap', '2009170046', '1', '1', 'upload_files/candidate_tracker/57518129350_Resume (1).pdf', NULL, NULL, '2020-09-17', 0, '', '6', '0', NULL, 0.00, '03:18 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 03:17:45', 1, '2020-09-17 03:18:54', 0, NULL, 1),
(451, '', '0', '9514317395', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009170047', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 03:18:03', 0, NULL, 0, NULL, 1),
(452, 'Jaffer sathik', '13', '9840349491', '', '', '1980-09-17', 40, '3', '2', 'Sathik', 'Former', 5000.00, 2, 0.00, 20000.00, 'chennnai', 'Chennnai', '2009170048', '', '1', 'upload_files/candidate_tracker/42476977667_dummy.pdf', NULL, NULL, '2020-09-17', 0, '', '5', '41', '1970-01-01', 0.00, '03:39 PM', '', '1970-01-01', '2', NULL, '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 03:37:34', 1, '2020-09-17 05:28:49', 0, NULL, 1),
(453, 'vinoth', '11', '9994562302', '9655217492', 'mathivino@gmail.com', '1985-06-01', 35, '1', '1', 'mathivanan', 'govertment employee', 40.00, 1, 4.50, 5.00, 'chennai', 'chennai', '2009170049', '', '2', 'upload_files/candidate_tracker/10924622016_Vinoth Updated Resume.docx', NULL, NULL, '2020-09-21', 0, '5152', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'will not sustain. will move if get better offer. has exp only in sourcing and rec.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 03:48:47', 1, '2020-09-19 11:26:16', 0, NULL, 1),
(454, 'Deepa.E', '4', '7305143383', '', 'dd22deepa@gmail.com', '1998-10-22', 21, '2', '2', 'Elumalai.M', 'Bus driver', 120000.00, 1, 0.00, 10000.00, 'Chengalpattu', 'Chennai', '2009170050', '1', '1', 'upload_files/candidate_tracker/92606956622_resume 2020-03-02 11.36.20.pdf', NULL, NULL, '2020-09-18', 0, '', '6', '', '1970-01-01', 0.00, '04:09 PM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 03:58:00', 50, '2020-09-17 04:46:37', 0, NULL, 1),
(455, 'Aishwarya R', '4', '8637461669', '7358700681', 'aishwarya210799@gmail.com', '1999-07-21', 21, '2', '2', 'Mother-Hema', 'Working', 25000.00, 0, 0.00, 10000.00, 'Madipakkam', 'Madipakkam', '2009170051', '1', '1', 'upload_files/candidate_tracker/28558318149_R Aishwarya _Color Format – 04.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'she is not sustain long term , interested in viscom field .... no job need for family ...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 04:03:54', 50, '2020-09-17 04:17:59', 0, NULL, 1),
(456, 'Aishwarya', '4', '7358343932', '', 'aishuanal1812@gmail.com', '1997-02-18', 23, '2', '2', 'Kumaresan', 'Tailor', 20000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2009170052', '1', '2', 'upload_files/candidate_tracker/833819364_Resume-converted.pdf', NULL, NULL, '2020-09-22', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'She said donxquott want voice process looking for non voice ..and not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 04:18:12', 50, '2020-09-22 11:40:35', 0, NULL, 1),
(457, 'MD OSMAN SHARIFF', '4', '6360188380', '', 'mohammedusmanshariff98@gmail.com', '1998-02-07', 22, '2', '2', 'MD AKBAR SHARIFF', 'self employee', 40000.00, 1, 15000.00, 15000.00, 'sivajinagar', 'sivajinagar', '2009170053', '7', '2', 'upload_files/candidate_tracker/73274886211_osman_CRM_CAFS.docx', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '03:00 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 05:11:10', 1, '2020-09-17 05:16:15', 0, NULL, 1),
(458, 'm.reshma', '4', '9677037229', '8610530775', 'reshusulthana1999@gmail.com', '1999-12-01', 20, '2', '2', 'maa basha.k', 'nil', 9000.00, 2, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2009170054', '1', '1', 'upload_files/candidate_tracker/76941960470_reshu .m resume.docx', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-09-28', 10000.00, '11:00 AM', '3', '2020-09-19', '2', '10K for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 05:11:21', 7, '2020-10-07 05:57:53', 0, NULL, 1),
(459, 'Victoriya.N', '11', '9791199698', '9791526505', 'Victsteve@gmail.com', '1997-05-25', 23, '2', '1', 'Stephen', 'Sales', 30000.00, 0, 10000.00, 15000.00, 'Chennai', 'Chennai', '2009170055', '1', '2', 'upload_files/candidate_tracker/94043385078_1599290194329_RESUME.pdf', NULL, NULL, '2020-09-18', 0, '', '8', '41', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Long distance not interested', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 05:52:47', 50, '2020-09-17 06:20:17', 0, NULL, 1),
(460, 'Ram Mithran', '4', '9884492952', '', 'rammithran95@gmail.com', '1999-05-08', 21, '2', '2', 'Rajavel R', 'Business', 25000.00, 0, 0.00, 12000.00, '32/1, Ragava street, choolai, Chennai-600112', '32/1, Ragava Street, Choolai, Chennai-600112', '2009170056', '4', '1', 'upload_files/candidate_tracker/56821817684_Resume_Ram Mithran R_Format4(2).pdf', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-09-21', 10000.00, '10:00 AM', '6', '2021-05-03', '1', 'for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-17 05:55:52', 7, '2020-10-06 12:49:34', 0, NULL, 1),
(461, 'dhanasekar', '13', '8608259038', '9884916446', 'jebaraj1040@gmail.com', '1995-05-13', 25, '2', '2', 'shanmugam', 'former', 30000.00, 0, 200000.00, 250000.00, 'chennai', 'chennai', '2009170057', '1', '2', 'upload_files/candidate_tracker/32522495011_dhanasekar-resume.doc', NULL, NULL, '2020-09-18', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 06:22:34', 1, '2020-09-17 06:30:17', 0, NULL, 1),
(462, 'pavithra k', '11', '8667801503', '9003245684', 'pavisusi123@gmail.com', '1995-03-24', 25, '2', '1', 'karthikeyan', 'testing engineer', 30000.00, 1, 13000.00, 20000.00, 'Mogappair', 'Mogappair', '2009170058', '1', '2', 'upload_files/candidate_tracker/7250825016_pavithra_cv.pdf', NULL, NULL, '2020-09-19', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Will Not Sustain And She Is Looking For HR Generalist And Doesnt Have Relevant Exp. She Was Getting 13K And Exp 20 A Salary Hike.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-17 07:00:30', 8, '2020-09-19 12:11:35', 0, NULL, 1),
(463, 'Manimaran. B', '4', '9942067447', '8667270649', '006maranmani@gmail.com', '1996-04-05', 24, '2', '2', 'Boomibalan. C', 'Farmer', 150000.00, 2, 0.00, 12000.00, 'Panruti', 'Poonamale', '2009180001', '1', '1', 'upload_files/candidate_tracker/19392710305_Resume_2020-09-03-17-06-51.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '10:56 AM', '', '1970-01-01', '2', 'not speaking up will not suite for calling and not int in sales.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 09:40:14', 50, '2020-09-18 11:42:37', 0, NULL, 1),
(464, 'Priyalakshmi', '4', '9344399447', '9445164238', 'Priyadayalan97@gmail.com', '1997-03-24', 23, '1', '2', 'C. Deenadayalan', 'Bsnl', 18000.00, 0, 0.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2009180002', '', '2', 'upload_files/candidate_tracker/57122711192_RESUME - Priya Lakshmi.pdf', NULL, NULL, '2020-09-18', 0, '5156', '3', '8', '2020-09-21', 10500.00, '10:00 AM', '5', '1970-01-01', '1', 'for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 10:04:31', 7, '2020-10-07 05:58:19', 0, NULL, 1),
(465, 'B.NITHYANANTHAM', '5', '8124332223', '', 'nithya.anand0209@gmail.com', '1984-09-02', 36, '2', '1', 'Sangamithra', 'Salaried', 25000.00, 0, 300000.00, 420000.00, 'Chennai', 'Chennai', '2009180003', '3', '2', 'upload_files/candidate_tracker/93859511592_UPADATED CV JULY20.docx', NULL, NULL, '2020-09-18', 0, '', '5', '31', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Dont have direct sales experience and his expectation salary is high', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 10:15:33', 1, '2020-09-18 10:39:33', 0, NULL, 1),
(466, 'komal kumari', '13', '8418865802', '', 'komalsinghaugust@gmail.com', '1995-10-04', 24, '2', '2', 'mr. narendra singh', 'farmer', 30000.00, 4, 2.50, 3.50, 'sasaram bihar', 'jafferkhanpet chennai', '2009180004', '4', '2', 'upload_files/candidate_tracker/5405091666_Resume.docx', NULL, NULL, '2020-09-18', 10, '', '5', '26', NULL, 0.00, '10:06 AM', '0', NULL, '2', 'she is having 10 month of Experience but she dont know the Basis of ajax ,scripts .', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 10:55:17', 1, '2020-09-18 11:33:21', 0, NULL, 1),
(467, '', '0', '7538867308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:06:00', 0, NULL, 0, NULL, 1),
(468, 'Aravind B', '28', '9789892200', '', 'aravindlmj14@gmail.com', '1995-09-14', 25, '2', '2', 'Bhasker', 'Business', 30000.00, 1, 16000.00, 18000.00, 'Chennai City North', 'Chennai City North', '2009180006', '1', '2', 'upload_files/candidate_tracker/23856472174_ARAVIND RESUME WORD.docx', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude, Just for time being looking for a job, Will not sustain ', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-09-18 11:14:41', 1, '2021-04-20 11:34:55', 0, NULL, 1),
(469, 'Mahamad Zameer Ahamad', '4', '8310358318', '8970071232', 'Zameerzams3@gmail. Com', '1992-12-22', 27, '2', '2', 'Abdul Rasool', 'Farmer', 20000.00, 1, 15000.00, 18000.00, 'E/2/3/75 Sarojina Area Deodurga karnataka 584111', '# muthaiya Kengutte Mallathalli Bangalore 560056', '2009180007', '7', '2', 'upload_files/candidate_tracker/32519083107_Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '38', NULL, 0.00, '11:46 AM', '0', NULL, '1', 'will not suit for our field', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:18:31', 1, '2020-09-18 12:37:35', 0, NULL, 1),
(470, 'Karthik E', '13', '9500624852', '', 'karthikms567@gmail.com', '1996-05-30', 24, '2', '2', 'Egambaram B', 'Farmer', 10000.00, 1, 2.40, 3.50, 'No. 4/30, Angasalai Street,Arcot', 'D-124, Santhosh colony,k.k Nagr, Chennai', '2009180008', '4', '2', 'upload_files/candidate_tracker/66876169950_karthik.docx', NULL, NULL, '2020-09-18', 15, '', '5', '26', NULL, 0.00, '11:27 AM', '0', NULL, '1', 'he is having more then 2 years of Experience but not good in mysql concepts.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:22:45', 1, '2020-09-18 11:28:21', 0, NULL, 1),
(471, 'Thangavel', '5', '9092826400', '', 'goldenanba@gmail.com', '1997-04-10', 23, '2', '2', 'T.Anna packiam', 'NIC agent', 15000.00, 1, 24300.00, 30000.00, 'Trichy', 'Trichy', '2009180009', '3', '2', 'upload_files/candidate_tracker/32241590337_Thangavel 2010.pdf', NULL, NULL, '2020-09-18', 0, '', '3', '8', '2020-10-05', 324000.00, '11:35 AM', '6', '2022-11-30', '1', '27K. for manivel team', '5', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:32:46', 7, '2020-10-22 05:23:43', 0, NULL, 1),
(472, 'Surendar Kumar S', '4', '8524053975', '9095462529', 'Surenkumar177@gmail.com', '1996-10-31', 24, '3', '2', 'Sugumar M', 'Security', 8000.00, 4, 10000.00, 14000.00, 'No:117 Pillaiyar kovil Street vadapathi mamandur', 'No:131 Dr.giriyappa salai street Teynampet', '2009180010', '', '2', 'upload_files/candidate_tracker/27173578630_Surendarkumar123.pdf', NULL, NULL, '2021-01-25', 2, '', '6', '0', NULL, 0.00, '12:10 PM', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-18 11:39:27', 1, '2021-01-25 12:49:02', 0, NULL, 1),
(473, '', '0', '7550164906', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 12:08:14', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(474, 'RESHMA. Y', '4', '8608530578', '8925647936', 'yyreshma@gmail.com', '1997-06-30', 23, '2', '2', 'I.S. YUSUF', 'Security', 5000.00, 1, 0.00, 11000.00, '5/44, P.P.D.Road,3rd Street, Thangal ,Thiruvottiy', '5/44 ,p P.D.Road,3rd Street, Thangal Thiruvottiyur', '2009180012', '1', '1', 'upload_files/candidate_tracker/13209325790_Resume.doc', NULL, NULL, '2020-09-21', 0, '', '5', '13', '1970-01-01', 0.00, '11:11 AM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 12:15:11', 50, '2020-09-21 10:01:23', 0, NULL, 1),
(475, 'i.anu saranya mary', '4', '9080645094', '', 'anusaranyamary@gmail.com', '1996-11-24', 23, '1', '2', 't.iruthaya raj', 'late', 200000.00, 3, 0.00, 15000.00, 'chennai', 'ambattur', '2009180013', '', '1', 'upload_files/candidate_tracker/52145476559_Anu Resume.docx', NULL, NULL, '2020-09-18', 0, '5174', '5', '14', NULL, 0.00, '12:37 PM', '0', NULL, '2', 'long distance . not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 12:23:46', 1, '2020-09-18 12:44:58', 0, NULL, 1),
(476, 'Shankareswaran Ulagasundaram', '11', '9962429542', '9940209002', 'waresh91@gmail.com', '1991-09-04', 29, '2', '2', 'Ulagasundaram', 'lic', 20000.00, 1, 26400.00, 28000.00, 'chennai', 'chennai', '2009180014', '2', '2', 'upload_files/candidate_tracker/76415496547_shankareswaran CV-converted-converted.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '53', '1970-01-01', 0.00, '03:46 PM', '', '1970-01-01', '1', 'He dont hve patience and lessoning capacity. He wont suit for HR', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 12:43:32', 50, '2020-09-18 03:42:51', 0, NULL, 1),
(477, 'Swati Mishra', '13', '8260030388', '', 'mishraswati.ms@gmail.com', '1987-09-29', 32, '2', '1', 'Suvendu Mishra', 'Software Engineer', 700000.00, 1, 252000.00, 420000.00, 'Bhubaneswar', 'Chennai', '2009180015', '11', '2', 'upload_files/candidate_tracker/27249175825_SwatiMishra__Resume.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '27', NULL, 0.00, '01:00 PM', '0', NULL, '2', 'Task Not Completed and no reply from her.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 12:54:14', 1, '2020-09-18 01:20:28', 0, NULL, 1),
(478, 'Ragul', '6', '6383013369', '', '', '1998-04-27', 22, '2', '2', 'Balasubramani', 'Masation', 15000.00, 1, 0.00, 15000.00, 'Karur', 'Tambaram, Chennai.', '2009180016', '1', '1', 'upload_files/candidate_tracker/21694620358_Ragul Resume.pdf', NULL, NULL, '2020-09-22', 0, '', '5', '19', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'sustainability doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 12:56:19', 8, '2020-09-22 02:59:52', 0, NULL, 1),
(479, 'S. RAJKUMAR', '4', '7010553013', '9962769911', '', '1994-06-27', 26, '2', '2', 'K. SOUNDARAJAN', 'WORKING', 250000.00, 1, 0.00, 16000.00, 'Ambattur, chennai', 'Ambattur', '2009180017', '1', '1', 'upload_files/candidate_tracker/9605125860_rajj RES con.docx', NULL, NULL, '2020-09-19', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 01:07:21', 50, '2020-09-19 02:27:46', 0, NULL, 1),
(480, 'Manjula.v', '4', '6361820543', '9900087680', 'manjulavemulapalli27@mail.com', '1990-06-20', 30, '2', '2', 'Venkateshwaralu.v', 'Business', 6000000.00, 1, 15000.00, 18000.00, 'Hebbal', 'Hebbal', '2009180018', '7', '2', 'upload_files/candidate_tracker/15207341358_JD for CS Team.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '38', NULL, 0.00, '01:13 PM', '0', NULL, '2', 'zero in communication xxamp attitude', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 01:07:41', 1, '2020-09-18 01:53:30', 0, NULL, 1),
(481, 'J. Jenifer', '4', '8124488718', '7397429288', 'Jeniferjio111@gmail.com', '1999-12-03', 20, '2', '2', 'P. Jayaraman', 'Painter', 3000.00, 0, 13000.00, 14000.00, 'Athhipet', 'Atthipet', '2009180019', '1', '2', 'upload_files/candidate_tracker/63104156649_1600415774285_J.pdf', NULL, NULL, '2020-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '01:44 PM', '', '1970-01-01', '2', '1:30 mins traveling aprox. and will not suite for our process.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 01:22:33', 50, '2020-09-18 01:53:58', 0, NULL, 1),
(482, 'Mohana Devan R', '11', '8940090413', '', 'devan4097@gmail.com', '1996-07-15', 24, '2', '2', 'Radha Krishnan C', 'Farmer', 200000.00, 3, 0.00, 216000.00, 'Chennai', 'Gerugambakkam Porur', '2009180020', '1', '1', 'upload_files/candidate_tracker/91721058606_Mohana Devan R Resume Mba.doc', NULL, NULL, '2020-09-23', 0, '', '8', '41', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 01:42:32', 50, '2020-09-23 04:47:27', 0, NULL, 1),
(483, 'nagarajan s', '4', '8939140596', '9790564188', 'naanhbk8@gmail.com', '1997-09-11', 23, '2', '2', 'swamynadar t', 'cooli', 30000.00, 0, 9500.00, 12000.00, 'tamparam', 'tamparam', '2009180021', '1', '2', 'upload_files/candidate_tracker/18596915315_naga new resume.copy.pdf', NULL, NULL, '2020-09-19', 0, '', '5', '21', NULL, 0.00, '12:20 PM', '0', NULL, '2', 'already he worked non voice process, he is not sustain long term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:02:35', 1, '2020-09-19 12:23:52', 0, NULL, 1),
(484, 'Aravindan S', '5', '9042379501', '9884135110', 'aravindan1911@gmail.com', '1995-11-19', 24, '2', '2', 'Singaram R', 'cook', 250000.00, 1, 20000.00, 22000.00, 'Perambur', 'Perambur', '2009180022', '1', '2', 'upload_files/candidate_tracker/1991472625_ARAVINDAN RESUME (3).pdf', NULL, NULL, '2020-09-19', 0, '', '5', '51', '1970-01-01', 0.00, '11:33 AM', '', '1970-01-01', '1', 'he cant work on leave ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:05:37', 8, '2020-09-19 12:38:09', 0, NULL, 1),
(485, 'Soniya', '4', '7397358651', '', 'soniyadeven98@gmail.com', '0998-01-23', 1022, '2', '2', 'A. Devendran', 'Gardner', 15000.00, 1, 12000.00, 15000.00, 'Perungudi, chennai', 'Perungudi Chennai', '2009180023', '1', '2', 'upload_files/candidate_tracker/91980667206_1585540353439Resume_D.pdf', NULL, NULL, '2020-09-19', 0, '', '8', '', '1970-01-01', 0.00, '03:25 PM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:11:03', 50, '2020-09-19 04:08:37', 0, NULL, 1),
(486, 'Satheesh S', '4', '7550209510', '', 'satheeshanand1729@gmail.com', '2000-03-08', 20, '2', '2', 'Selvaraj M', 'MTC Bus Conductor', 50000.00, 1, 0.00, 13000.00, 'Plot number 50A, PTC Quarters, Chennai-600097', 'Plot Number 50A, PTC Quarters, Chennai-600097', '2009180024', '1', '1', 'upload_files/candidate_tracker/93586059268_applicant resume.docx', NULL, NULL, '2020-09-19', 0, '', '5', '8', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'Pronunciation Is Not Good', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:15:18', 50, '2020-09-18 04:07:24', 0, NULL, 1),
(487, '', '0', '8148631239', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 02:16:47', 0, NULL, 0, NULL, 1),
(488, 'ABUL HASAN. A', '6', '9843121177', '9843321177', 'hasanalmuharib@gmail.com', '1994-05-18', 26, '2', '1', 'ABUKKALAM. A', 'BUSINESS', 115000.00, 1, 100000.00, 25000.00, 'MADURAI', 'CHENNAI', '2009180026', '1', '2', 'upload_files/candidate_tracker/95169684176_RESUME - Abul.pdf', NULL, NULL, '2020-09-19', 0, '', '5', '16', '1970-01-01', 0.00, '02:15 PM', '', '1970-01-01', '1', 'he is expect more salary and sustain doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 02:42:03', 50, '2020-09-19 02:49:24', 0, NULL, 1),
(489, '', '0', '9551748737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 03:53:59', 0, NULL, 0, NULL, 1),
(490, 'Jeyasakthi', '4', '9500715138', '6381645193', 'jeyasakthi461@gmail.com', '1999-04-24', 21, '2', '2', 'Kannan', 'Farmer', 5000.00, 1, 0.00, 20000.00, 'Madurai', 'Tambaram', '2009180028', '1', '1', 'upload_files/candidate_tracker/11553581667_Jeyasakthi.docx', NULL, NULL, '2020-09-19', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'will not sustain. doing his degree and looking for part time job.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 04:33:18', 50, '2020-09-19 09:30:01', 0, NULL, 1),
(491, 'AKASH K', '5', '7358597379', '9344044766', 'akashakee1199@gmail.com', '1999-03-01', 21, '2', '2', 'Karnan M', 'Driver', 16.00, 1, 15.00, 15.00, 'No 124 Rottary Nagar 11th Street Triplicane ch-5', 'No 124 Rottary Nagar 11th Street Triplicane Ch-5', '2009180029', '1', '2', 'upload_files/candidate_tracker/91081351705_akash resume(1).pdf', NULL, NULL, '2020-09-19', 0, '', '5', '51', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'product knowldege is poor', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 04:33:49', 8, '2020-09-19 12:24:46', 0, NULL, 1),
(492, '', '0', '0000000021', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 04:53:26', 0, NULL, 0, NULL, 1),
(493, 'Janani', '11', '7358233067', '', 'Jananij587@gmail.com', '1997-12-31', 22, '1', '2', 'Sivakumar', 'Sales Executive', 25000.00, 1, 14000.00, 14000.00, 'Ashok nagar', 'Ashok Nagar', '2009180031', '', '2', 'upload_files/candidate_tracker/10556500542_Janani S_Exp 0.8 months_HR Recruiter_Chennai. (1).pdf', NULL, NULL, '2020-09-19', 10, '5152', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'selected, but not joined. and no response', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 05:12:31', 8, '2020-09-19 01:08:56', 0, NULL, 1),
(494, 'Santhosh', '11', '9003322471', '9361600495', 'Santhoshprofessionals@gmail.com', '1994-08-21', 26, '2', '2', 'Dhanasekar', 'Own business', 2.00, 2, 2.55, 3.50, 'Vellore', 'Chennai', '2009180032', '1', '2', 'upload_files/candidate_tracker/80549521481_HR Professional.docx', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', NULL, '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-18 05:41:55', 50, '2020-09-19 02:54:30', 0, NULL, 1),
(495, '', '0', '8608539578', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009180033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-18 11:25:51', 0, NULL, 0, NULL, 1),
(496, '', '0', '8124582804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 12:14:31', 0, NULL, 0, NULL, 1),
(497, '', '0', '9600932072', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 10:03:08', 0, NULL, 0, NULL, 1),
(498, 'S DIVAKAR', '16', '9551943368', '9080261467', 'divakarsekar2@gmail.com', '1991-10-19', 28, '2', '2', 'M.D.SEKAR', 'Tailor', 15000.00, 1, 29000.00, 15000.00, 'Chennai', 'Chennai', '2009190003', '1', '2', 'upload_files/candidate_tracker/89146688219_DIVAKAR RESUME MBA', NULL, NULL, '2021-03-10', 0, '', '5', '53', '1970-01-01', 0.00, '10:39 AM', '', '1970-01-01', '2', 'hvng little knowledge in MIS, he dont know Macro and spreadsheet. Wont sustain also.', '3', '2', '', '', '', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-09-19 10:21:30', 7, '2021-03-10 12:26:27', 0, NULL, 1),
(499, 'vigneshwaran', '1', '8489386970', '', '', '1996-02-03', 24, '2', '2', 'kumar', 'supervisor', 35000.00, 1, 20000.00, 25000.00, 'ponneri', 't nagar', '2009190004', '1', '2', 'upload_files/candidate_tracker/4934189650_Vigneshnew updated.docx', NULL, NULL, '2020-09-21', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 10:38:25', 50, '2020-09-21 11:53:11', 0, NULL, 1),
(500, 'nisha', '6', '7358897610', '9489364600', 'nisha2nibu@gmail.com', '1995-05-15', 25, '2', '1', 'murugesan', 'driver', 15000.00, 0, 0.00, 16000.00, '8 kanyakumari', '69 ambathkar nagar kolathur', '2009190005', '1', '1', 'upload_files/candidate_tracker/96413051034_1600237248986_M Nisha Resume.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '8', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '1', 'will not sustain.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 10:43:53', 52, '2020-09-21 10:27:53', 0, NULL, 1),
(501, 'Vijayalakashmi P', '4', '8220947768', '', 'Viji154086@gmail.com', '1998-06-10', 22, '2', '2', 'Palanisamy', 'Driver', 10000.00, 1, 13500.00, 16000.00, 'Rajapalayam', 'Tnagar', '2009190006', '1', '2', '', NULL, NULL, '2020-09-19', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Sustainability less', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 10:56:58', 13, '2020-10-06 03:31:58', 0, NULL, 1),
(502, 'johndavid', '4', '9489364600', '7092298200', 'johndavidjo9865@zohomail.in', '1992-04-29', 28, '2', '1', 'George', 'farmer', 1500.00, 3, 0.00, 16000.00, '16 old bhuvanagiri road chidambaram', '36 ambathkar nagar 1st cross street kolathur', '2009190007', '1', '1', 'upload_files/candidate_tracker/46937103824_john new resume.docx', NULL, NULL, '2020-09-25', 0, '', '6', '0', NULL, 0.00, '11:15 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 11:10:51', 1, '2020-09-19 11:15:37', 0, NULL, 1),
(503, '', '0', '8489386979', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 11:22:39', 0, NULL, 0, NULL, 1),
(504, 'N.kumari', '4', '9003231892', '9884757699', 'nkumari38931@gmail.com', '1999-09-24', 20, '2', '2', 'M.nandha kumar', 'Coolie', 15000.00, 1, 0.00, 11000.00, 'Velachery', 'Velachery', '2009190009', '2', '1', 'upload_files/candidate_tracker/23693842237_imgtopdf_generated_1709201624009.pdf', NULL, NULL, '2020-09-19', 0, '', '3', '8', '2020-09-28', 10000.00, '11:57 AM', '6', '2021-03-26', '2', 'she can join oct. selected for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 11:53:53', 52, '2020-09-30 12:38:01', 0, NULL, 1),
(505, 'R.naren Kumar', '4', '7871705887', '8940177881', 'Narenrobert1998@gmail.com', '1999-05-16', 21, '2', '2', 'N.ramu (died)', '10th', 5000.00, 0, 0.00, 10000.00, 'Ayanavaram', 'Ayanavaram', '2009190010', '1', '1', 'upload_files/candidate_tracker/58869496354_resume-1.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '13', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'he is intersted on only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 11:56:20', 50, '2020-10-09 11:30:39', 0, NULL, 1),
(506, 'Shanthini Priya', '4', '6380039702', '7639442902', 'shaanthini03@gmail.com', '1998-05-30', 22, '2', '2', 'Yesu patham', 'Cooli', 20000.00, 2, 0.00, 12000.00, 'Vettavalam, Tiruvannamalai dt', 'Teynampet', '2009190011', '1', '1', 'upload_files/candidate_tracker/11319812703_03shaayah.docx.pdf', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '12:33 PM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 12:29:49', 50, '2020-09-19 04:44:41', 0, NULL, 1),
(507, 'Ramkumar', '4', '9047135404', '8667406709', 'ramramble007@gmail.com', '1996-04-26', 24, '2', '2', 'Sekar', 'Farmer', 10000.00, 2, 10.80, 15.00, 'Kallakurichi', 'VELACHERRY', '2009190012', '1', '2', 'upload_files/candidate_tracker/19502986828_CV ram-2.pdf', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '10:51 AM', '', '1970-01-01', '1', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 12:47:37', 50, '2020-09-19 04:27:05', 0, NULL, 1),
(508, 'nivetha', '11', '9791216260', '', 'niveraj99@gmail.com', '1994-03-25', 26, '1', '2', 'raja.o', 'sub inspector', 100000.00, 1, 10000.00, 20000.00, 'Madurai', 'Madurai', '2009190013', '', '2', 'upload_files/candidate_tracker/65860358978_Nivetha 4years HR Experience Resume.pdf', NULL, NULL, '2020-09-19', 0, '55566', '5', '8', NULL, 0.00, '03:00 PM', '0', NULL, '2', 'hold for telephonic but she is not Responding.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 12:49:17', 1, '2020-09-19 01:10:14', 0, NULL, 1),
(509, '', '0', '8695121023', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 01:04:05', 0, NULL, 0, NULL, 1),
(510, 'k.Sivaramakrishnan', '13', '7397410306', '8681930259', 'sivasiva10236@gmail.com', '1995-03-26', 25, '1', '2', 'm.karuppasamy', 'weaver', 18000.00, 1, 12000.00, 20000.00, 'theni', 'chennai', '2009190015', '', '2', 'upload_files/candidate_tracker/46619616470_SIVARAMAKRISHNAN.pdf', NULL, NULL, '2020-09-21', 10, '55566', '3', '8', '2020-10-05', 14200.00, '10:30 AM', '2', '1970-01-01', '2', 'For PHP developer.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 01:11:56', 7, '2020-10-07 06:00:45', 0, NULL, 1),
(511, 'manikandan', '11', '6385153710', '', 'maniluu.lsd@gmail.com', '1992-05-22', 28, '1', '2', 'thulasibai', 'home maker', 50000.00, 3, 300000.00, 400000.00, 'peramber', 'perambur', '2009190016', '', '2', 'upload_files/candidate_tracker/77772939237_Manikandan Resume - pdf.pdf', NULL, NULL, '2020-09-21', 0, '55566', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He will not sustain, because his brother running own consultancy. he worked few months and due to personal Reason he left the company.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 01:17:14', 1, '2020-09-19 04:26:04', 0, NULL, 1),
(512, 'tilsy esther', '11', '9789697933', '', '', '1993-03-08', 27, '1', '2', 'k k durai', 'sales manager', 600000.00, 2, 3.32, 4.00, 'chennai', 'chennai', '2009190017', '', '2', 'upload_files/candidate_tracker/5659048056_Tilsy Esther - 2019.pdf', NULL, NULL, '2020-09-21', 15, '55566', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Well settled, there is no need for job.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 01:38:14', 1, '2020-09-19 01:42:34', 0, NULL, 1),
(513, 'Usha p', '11', '7397449955', '', '', '1995-04-10', 25, '2', '2', 'Palani', 'Business', 30000.00, 1, 10.00, 22000.00, 'Virugambakkkam', 'Virugambakkkam', '2009190018', '1', '2', 'upload_files/candidate_tracker/89591738511_0_1575708207262Resume_Usha.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '53', NULL, 0.00, '11:56 AM', '0', NULL, '1', 'exp high sal, thinking reg bond', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 01:55:46', 1, '2020-09-21 11:56:28', 0, NULL, 1),
(514, '', '0', '9941949711', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 02:50:37', 0, NULL, 0, NULL, 1),
(515, 'Priya', '4', '9025790981', '', 'Shawnpriya1907@gmail.com', '1998-12-19', 21, '2', '2', 'G. Ganeshan', 'Welder', 12000.00, 1, 12000.00, 15000.00, 'Avadi, Chennai -600071', 'Avadi, Chennai -600071', '2009190020', '1', '2', 'upload_files/candidate_tracker/92693381359_Priya resume .docx', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 03:12:10', 50, '2020-09-19 04:54:29', 0, NULL, 1),
(516, 'Selvi.s', '4', '9629889009', '', 'selvihania@gmail.com', '1993-06-05', 27, '2', '1', 'Nandakumar.m', 'Service engineer', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009190021', '1', '1', 'upload_files/candidate_tracker/5074805500_selvi shankar.docx', NULL, NULL, '2020-09-21', 0, '', '5', '14', '1970-01-01', 0.00, '12:43 PM', '', '1970-01-01', '2', 'not suitable for tele calling..communication not good ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 03:23:58', 50, '2020-09-21 12:57:32', 0, NULL, 1),
(517, '', '0', '8122257485', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 03:27:25', 0, NULL, 0, NULL, 1),
(518, '', '0', '7338770122', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 03:33:31', 0, NULL, 0, NULL, 1),
(519, 'Gulbanu', '4', '9500185212', '9500185186', 'Gulbanuali@gmail.com', '1983-02-05', 37, '3', '1', 'Md hussain', 'Nil', 1000.00, 1, 18000.00, 20000.00, 'Royapettah', 'Royapettah', '2009190024', '', '2', 'upload_files/candidate_tracker/79651456438_gulbanu resume-2.doc', NULL, NULL, '2020-09-19', 0, '', '10', '0', NULL, 0.00, '04:47 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 04:05:10', 1, '2020-09-19 07:52:50', 50, '2020-12-21 11:39:30', 0),
(520, 'Simon Samson raj b', '4', '8838465447', '9043289521', 'simonsamsonraj621@gmail.com', '1995-05-17', 25, '2', '2', 'Babu', 'Research analyst', 60000.00, 4, 16000.00, 20000.00, 'Thiruninravur', 'Thiruninravur', '2009190025', '1', '2', 'upload_files/candidate_tracker/3267244376_1599750484201_1599464529328_Simon Samson Raj B(603270).pdf', NULL, NULL, '2020-09-21', 15, '', '6', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 04:07:26', 50, '2020-09-19 04:23:59', 0, NULL, 1),
(521, 'V.bhuvaneswar', '4', '9566270547', '', 'Bhuvi.v1999@gmail.com', '1999-07-26', 21, '2', '2', 'T.vijay ramgalima', 'Chennai', 35000.00, 1, 0.00, 15000.00, 'Chennai vadapalani', 'Chennai vadapalani', '2009190026', '4', '1', 'upload_files/candidate_tracker/64534668375_NEW resume (1).pdf', NULL, NULL, '2020-09-21', 0, '', '5', '21', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'words pronuncation problem ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 04:13:04', 50, '2020-09-21 11:44:36', 0, NULL, 1),
(522, 'Dinesh.K', '4', '9791012713', '', 'dineshk19979@gmail.com', '1996-09-26', 23, '2', '2', 'Kumar', 'Cable operator', 20000.00, 0, 0.00, 15000.00, 'West tambaram', 'West tambaram', '2009190027', '1', '1', 'upload_files/candidate_tracker/98275335170_resume_1594906460420.pdf', NULL, NULL, '2020-09-21', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 04:24:41', 50, '2020-09-19 04:41:16', 0, NULL, 1),
(523, '', '0', '7550124052', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 05:11:22', 0, NULL, 0, NULL, 1),
(524, 'Jothilakshmi.s', '11', '9345490182', '9944008615', 'Jothijoe1095@gmail.com', '1995-07-10', 25, '2', '2', 'Samikannu.E', 'Driver', 20000.00, 2, 13700.00, 20000.00, 'Chennai', 'Chennai', '2009190029', '1', '2', 'upload_files/candidate_tracker/69373440171_Jothi Recruiter _2 6Yes_live Connections_Chennai.doc', NULL, NULL, '2020-09-21', 10, '', '5', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'she will not sustain and dont have a patince.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 05:24:32', 50, '2020-09-21 11:09:29', 0, NULL, 1),
(525, '', '0', '9629771366', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009190030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 06:41:45', 0, NULL, 0, NULL, 1),
(526, 'sandhya shree.s', '11', '9962842737', '9092448466', 'sandhya93.shree@gmail.com', '1993-07-08', 27, '1', '2', 'srinivasan', 'CARPENTER', 30000.00, 2, 4500000.00, 550000.00, 'chennai', 'chennai', '2009190031', '', '2', 'upload_files/candidate_tracker/49051696620_Resume_Sandhya-14 sep.docx', NULL, NULL, '2020-09-21', 0, '55566', '5', '53', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'Not suit for CAFS, switching the jo frequently, she s not like to work cycling process, wants to explore her knowledge thts y switching the job countineously', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 07:03:01', 1, '2020-09-19 07:41:54', 0, NULL, 1),
(527, 'Nandhini Gs', '11', '9962282424', '', 'nandhini.aries@gmail.com', '1991-08-30', 29, '2', '1', 'jagadish pranav', 'sr. immigration consultant', 30000.00, 1, 0.00, 325000.00, 'chennai', 'mogapp West', '2009190032', '1', '1', 'upload_files/candidate_tracker/64229084831_Nandhini 26 Aug.docx', NULL, NULL, '2020-09-19', 0, '', '3', '54', '2020-09-28', 22000.00, '10:00 AM', '5', '1970-01-01', '1', 'Selected, he is having good exprience in screening and calling.', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 07:07:48', 7, '2020-10-07 06:01:16', 0, NULL, 1),
(528, 'neela t', '11', '9345269621', '8220640079', 'neelathiru13@gmail.com', '1996-07-13', 24, '2', '2', 'thirugnanam', 'teacher', 40000.00, 2, 0.00, 25000.00, 'VILLUPURAM', 'VILLUPURAM', '2009190033', '1', '1', 'upload_files/candidate_tracker/52316285020_Neela Resume - HR 001.pdf', NULL, NULL, '2020-09-21', 0, '', '3', '54', '2020-09-28', 11000.00, '12:30 PM', '2', '1970-01-01', '2', 'having good attitude, but we must train sometime.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-19 07:38:31', 7, '2020-10-07 06:01:30', 0, NULL, 1),
(529, 'haritha', '11', '8056064950', '', 'itsmeharithah@gmail.com', '1993-05-28', 27, '1', '2', 'harinarayanan', 'cini field', 50000.00, 1, 30000.00, 36000.00, 'chennai', 'chennai', '2009190034', '', '2', 'upload_files/candidate_tracker/74801221925_Resume.pdf', NULL, NULL, '2020-09-21', 0, '55566', '5', '53', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'Exp high salary, dnt hve relevant exp in Hr. he s oly handling manifacture nd bubai candidates', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-19 08:25:26', 1, '2020-09-20 03:23:27', 0, NULL, 1),
(530, 'Murugesan', '5', '8344717574', '8148431106', 'murugeshamr777@gmail.com', '1995-06-10', 25, '2', '2', 'Muthu raj', 'Retired government servant', 30000.00, 2, 22000.00, 25000.00, 'Vembakottai', 'Vembakottai', '2009200001', '3', '2', 'upload_files/candidate_tracker/95303379702_Resume .pdf', NULL, NULL, '2020-09-22', 0, '', '5', '33', NULL, 0.00, '02:23 PM', '0', NULL, '1', 'HE IS NOT GOOD PROFILE FOR RM CATEGORY', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-20 11:17:56', 1, '2020-09-22 02:57:01', 0, NULL, 1),
(531, 'E Akash', '3', '7358384090', '9176584664', 'akashashh602@gmail.com', '2000-10-20', 19, '1', '2', 'S Elumalai', 'Buisness', 15000.00, 1, 0.00, 12000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2009200002', '', '1', 'upload_files/candidate_tracker/35357344062_BO- UNIT 3.docx', NULL, NULL, '2020-09-21', 0, 'Akash', '6', '', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', NULL, '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-20 02:26:40', 1, '2020-09-26 05:48:50', 0, NULL, 1),
(532, '', '0', '6383887198', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009200003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-20 09:36:10', 0, NULL, 0, NULL, 1),
(533, 'venugopal.p', '13', '9840445295', '', 'venugopalpadmanabhan68@gmail.com', '1996-07-13', 24, '2', '2', 'padmanabhan.v', 'salesman', 30000.00, 0, 17000.00, 24000.00, 'vadapalani', 'vadapalani', '2009210001', '1', '2', 'upload_files/candidate_tracker/17085322304_venugopal resume.pdf', NULL, NULL, '2020-09-22', 30, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'This Candidate donxquott know the things what exactly we expected. He knows only wordpress development.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 10:09:20', 50, '2020-09-22 09:43:53', 0, NULL, 1),
(534, 's vinodh kumar', '5', '9940079652', '', 's.vinodhkumar89@gmail.com', '1989-06-12', 31, '2', '1', 's sethu', 'cook', 40000.00, 1, 33000.00, 36000.00, 'teynampet chennai', 'teynampet chennai', '2009210002', '3', '2', 'upload_files/candidate_tracker/91419445628_1572593969328_Vinodh12 Resume.docx', NULL, NULL, '2020-09-21', 0, '', '3', '8', '2020-09-28', 27000.00, '11:01 AM', '5', '1970-01-01', '1', '27K for GK team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 10:24:56', 7, '2020-10-07 06:03:29', 0, NULL, 1),
(535, 'dhanu david d', '11', '9566742178', '9176854354', 'dhanudavids@gmail.com', '1994-08-10', 26, '2', '2', 'david p', 'famer', 30000.00, 2, 21000.00, 27000.00, 'iyyapanthangal', 'chennai', '2009210003', '2', '2', 'upload_files/candidate_tracker/44045839235_Dhanu David Resume.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '8', NULL, 0.00, '02:00 PM', '0', NULL, '1', 'will not sustain and his pronunciation and language is not good.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 10:40:19', 1, '2020-09-21 11:26:51', 0, NULL, 1),
(536, 'Logu m', '5', '8438322603', '9962776615', 'logum2019@gmail.com', '1992-06-26', 28, '2', '2', 'Construction', 'Mation', 40000.00, 1, 15000.00, 20000.00, 'No: 7, kakkanji st,Perungudi, chennai - 600096', 'Perungudi,omr', '2009210004', '8', '2', 'upload_files/candidate_tracker/63233717379_15-10-2018.pdf', NULL, NULL, '2020-09-21', 1, '', '5', '33', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'candidate facing stammering problem he is not fit for sales ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 10:40:30', 1, '2020-09-21 10:49:50', 0, NULL, 1),
(537, 'karthick', '6', '7395919074', '', 'Karthishine932@gmail.com', '1995-10-14', 25, '2', '2', 'sathayanarayanan', 'optician', 20000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2009210005', '2', '1', 'upload_files/candidate_tracker/96808820817_karthi.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'already Attended interview and rejected on 2020 oct', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-21 11:02:44', 1, '2021-06-21 06:08:35', 0, NULL, 1),
(538, 'Archana N', '11', '9994840230', '', '', '1996-09-11', 24, '2', '2', 'Narayanan R', 'Sales consultant', 50000.00, 1, 16000.00, 18000.00, 'Triplicane', 'Triplicane', '2009210006', '8', '2', 'upload_files/candidate_tracker/48338646013_Final Resume.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '53', NULL, 0.00, '11:15 AM', '0', NULL, '2', 'low voice nt suit fr hr profile', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:22:47', 1, '2020-09-21 11:31:12', 0, NULL, 1),
(539, 'g ramkumar', '5', '9677211434', '9566419625', 'agramkumar14@gmail.com', '1996-05-14', 24, '2', '2', 'n gajendrababu', 'real estate', 50000.00, 2, 28000.00, 32000.00, 'vadapalani', 'vadapalani', '2009210007', '3', '2', 'upload_files/candidate_tracker/92443442304_RAM KUMAR NEW.pdf', NULL, NULL, '2020-09-21', 0, '', '3', '8', '2020-09-28', 264000.00, '11:45 AM', '4', '2020-11-23', '1', '22K for Shanmugam Team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:27:32', 7, '2020-10-22 05:14:44', 0, NULL, 1),
(540, 'samala balaji', '5', '7331101632', '9703737196', 'balaji1992samala@gmail.com', '1993-06-05', 27, '1', '2', 's venkatesh', 'weaver', 15000.00, 2, 3.50, 4.00, 'kadapa ap', 'marathahalli bangalore', '2009210008', '', '2', 'upload_files/candidate_tracker/43922914551_1597667604100_balaji samala.docx', NULL, NULL, '2020-09-21', 0, '5490', '3', '8', '2020-09-28', 25000.00, '12:00 PM', '6', '2021-08-11', '1', '25K for Manivel Team', '5', '2', '4', '2', '2', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:33:13', 7, '2020-10-22 05:11:56', 0, NULL, 1),
(541, 'VISAGAN M', '11', '8248381260', '9442883174', 'visaganmanoharan96@gmail.com', '1996-06-11', 24, '2', '2', 'MANOHARAN K', 'Central govt staff (NLC INDIA LIMITED)', 600000.00, 1, 0.00, 18000.00, 'Neyveli', 'Chennai', '2009210009', '1', '1', 'upload_files/candidate_tracker/23927133817_Visagan resume DM.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '8', '1970-01-01', 0.00, '11:44 AM', '', '1970-01-01', '1', 'Got offer ', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 11:35:40', 7, '2020-09-21 03:01:47', 0, NULL, 1),
(542, 'MURALIDHARAN.A', '4', '7904993611', '9176157332', 'dmurali196@gmail.com', '1999-03-30', 21, '2', '2', 'ARUMUGAM.A.P', 'Land agent', 20000.00, 1, 0.00, 14000.00, '11/37,3rd Street,tSM.nagar,T.V.T,CH-19', 'NO:11/37,3rd Street,TSM.Nagar,T.V.T,CH-19', '2009210010', '1', '1', 'upload_files/candidate_tracker/74830161860_murali resume.doc', NULL, NULL, '2020-09-28', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 11:42:33', 50, '2020-09-29 04:37:06', 0, NULL, 1),
(543, 'A. Matilda Mercy Suvitha', '5', '6369273699', '9962819065', 'matildajoel05@gmail.com', '1981-12-16', 38, '2', '1', 'S.Jayaraj', 'Civil engineer', 35000.00, 2, 425000.00, 450000.00, 'Chennai', 'Chennai', '2009210011', '3', '2', 'upload_files/candidate_tracker/230195917_30th Jan 2020.docx', NULL, NULL, '2020-09-21', 0, '', '5', '8', NULL, 0.00, '12:00 PM', '0', NULL, '1', 'no sales exp. exp salary is 4L and will not suite for calling too.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:57:44', 1, '2020-09-21 12:19:55', 0, NULL, 1),
(544, 'Geetha.N', '4', '9655308366', '', 'geethadharshu23@gmail.com', '1994-05-12', 26, '2', '2', 'A. Nagarajan', 'Fresher', 20000.00, 3, 0.00, 10000.00, 'Kovilpatti', 'Urapakkam', '2009210012', '1', '1', 'upload_files/candidate_tracker/51456160238_resume amazon-converted-converted-converted (2).pdf', NULL, NULL, '2020-09-22', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:03:37', 50, '2020-09-22 09:44:01', 0, NULL, 1),
(545, 'sarathkumar.r', '4', '9025154625', '8056242043', 'sarathrose2211@gmail.com', '1998-04-22', 22, '2', '2', 'rajendran.m', 'mason', 30000.00, 2, 0.00, 15000.00, 'manali chennai', 'manali chennai', '2009210013', '1', '1', 'upload_files/candidate_tracker/86144905293_Sarath_Resume_Format2 (1).pdf', NULL, NULL, '2020-09-21', 0, '', '5', '14', NULL, 0.00, '12:29 PM', '0', NULL, '2', 'want to continue the higher studies . so he is not able to sustain', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:24:11', 1, '2020-09-21 12:49:13', 0, NULL, 1),
(546, 'Akash.R', '4', '8778332729', '', 'Akashwillow26@gmail.com', '2000-03-26', 20, '2', '2', 'Ramesh.V', 'Carpenter', 27000.00, 0, 0.00, 15000.00, 'Vyasarpadi,Chennai-39', 'Chennai-39', '2009210014', '1', '1', 'upload_files/candidate_tracker/69691202327_Akash_Resume_Format2.pdf', NULL, NULL, '2020-09-21', 0, '', '5', '14', NULL, 0.00, '12:40 PM', '0', NULL, '1', 'not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:33:52', 1, '2020-09-21 12:50:11', 0, NULL, 1),
(547, 'naveenkumar r', '6', '8122266622', '8122238306', 'naveenraja1494@gmail.com', '1994-04-01', 26, '2', '2', 'rajan b', 'farmer', 10000.00, 1, 18000.00, 20000.00, 'kalamanagar kutta karai uthiramerur kanchipuram', 'kvn puram Kilpauk chennai', '2009210015', '1', '2', 'upload_files/candidate_tracker/89829038085_Naveen Resume-converted to PDF.pdf', NULL, NULL, '2020-09-22', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he is not willing to field work. salary expectation also 20k.. so not suitable for CRM', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:44:33', 50, '2020-09-22 09:44:29', 0, NULL, 1),
(548, '', '0', '9025432266', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 12:54:54', 0, NULL, 0, NULL, 1),
(549, 'S.VIJAYA RANI', '4', '9629904403', '', 'Nitheeshk8922@gmail.com', '1998-02-06', 22, '2', '2', 'V.Subiramaniyan', 'Farmer', 4000.00, 2, 11000.00, 15000.00, 'Ramanathapuram', 'Thamparam camproad chennai', '2009210017', '1', '2', 'upload_files/candidate_tracker/78557168790_ammu nehish).pdf', NULL, NULL, '2020-09-22', 0, '', '6', '', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 12:55:51', 50, '2020-09-22 06:06:29', 0, NULL, 1),
(550, 'Indumathi', '4', '9360572368', '7845935745', 'indushankar509@gmail.com', '1994-05-15', 26, '2', '2', 'Father', 'Driver', 10000.00, 2, 13500.00, 15000.00, 'Chennai', 'Chennai', '2009210018', '1', '2', 'upload_files/candidate_tracker/38054401559_Resume (2) (1) (2).pdf', NULL, NULL, '2020-09-22', 0, '', '5', '21', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', 'long distance 1; 30 hrs travel , expected 15 k for crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 01:26:18', 50, '2020-09-22 11:30:51', 0, NULL, 1),
(551, 'Ganesh', '4', '9361857713', '8778699268', 'Ganesh8595@gmail.com', '1995-05-08', 25, '2', '1', 'Anbalagan', 'Karate master', 15000.00, 0, 12500.00, 15000.00, 'Gkm colony perambur chennai', 'Chennai', '2009210019', '1', '2', 'upload_files/candidate_tracker/18867229178_New ganesh 2020.docx', NULL, NULL, '2020-09-22', 1, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 01:31:53', 50, '2020-09-22 05:25:36', 0, NULL, 1),
(552, '', '0', '6374523712', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 02:02:18', 0, NULL, 0, NULL, 1),
(553, '', '0', '9345499614', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 02:18:15', 0, NULL, 0, NULL, 1),
(554, 'M.Nishanthi', '4', '7358553524', '9710488726', 'nishanthi.m735855@gmail.com', '1999-08-20', 21, '2', '2', 'V.Mani vannan', 'Auto driver', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009210022', '4', '1', 'upload_files/candidate_tracker/637973924_new resume.docx', NULL, '1', '2020-09-21', 0, '', '5', '8', '2020-09-28', 10000.00, '03:47 PM', '2', '1970-01-01', '2', 'Offered in the month of Sept,but she didnxquott joined and appeared again for the interview on 5-July-2021,Got selected for Suriya Elite Team.Will join on 8-July-2021 offered her in the cash mode', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-21 03:38:18', 8, '2021-08-19 05:45:09', 0, NULL, 1),
(555, 'YAMUNA.M', '4', '8056284873', '9789960058', 'yamunashan229@gmail.com', '2000-04-22', 20, '2', '2', 'MICHAEL.K', 'No', 8000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009210023', '4', '1', 'upload_files/candidate_tracker/44446056902_CamScanner 09-21-2020 15.51.25.pdf', NULL, NULL, '2020-09-21', 0, '', '3', '8', '2020-09-28', 10000.00, '03:47 PM', '3', '2020-09-29', '2', '10K for priyanka team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 03:42:43', 7, '2020-10-07 06:11:00', 0, NULL, 1),
(556, 'gowsalya m', '4', '9025151571', '', '', '2000-01-04', 20, '4', '2', 'marimuthu', 'chief', 4000.00, 1, 11000.00, 15000.00, '7/205c, East mangaleshwari nagar, Mayakulam.', 'YRN LADIES HOSTEL AND PG Camp road, selaiur', '2009210024', '', '2', 'upload_files/candidate_tracker/42203035147_Gowsalya Resume.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '0', NULL, 0.00, '12:30 PM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 06:06:44', 1, '2020-09-22 12:02:51', 50, '2020-09-22 12:30:23', 0),
(557, 'A.Muthu vijaya rani', '4', '6385711241', '', 'Vijirani39@Gmail.com', '1999-04-28', 21, '2', '2', 'A.ayyakkannu', 'Farmer', 4000.00, 2, 11000.00, 15000.00, 'Ramanathapuram', 'Thamparam camproad chennai', '2009210025', '1', '2', 'upload_files/candidate_tracker/68613331753_muthuvijayarani.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '', '1970-01-01', 0.00, '11:32 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-21 06:43:53', 50, '2020-09-22 06:06:44', 0, NULL, 1),
(558, '', '0', '6381118536', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 07:51:05', 0, NULL, 0, NULL, 1),
(559, '', '0', '9629904493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 08:00:48', 0, NULL, 0, NULL, 1),
(560, '', '0', '9791335176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009210028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 08:05:29', 0, NULL, 0, NULL, 1),
(561, 'gowsalya m', '6', '9025521615', '', '', '2000-01-04', 20, '2', '2', 'marimuthu', 'chief', 4000.00, 1, 11000.00, 15000.00, '7/205c, East mangaleshwari nagar, Mayakulam', 'YRN LADIES HOSTEL AND PG Camp road, selaiur', '2009210029', '2', '2', 'upload_files/candidate_tracker/1074291318_Gowsalya Resume.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', NULL, '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 08:20:31', 50, '2020-09-22 12:30:37', 0, NULL, 1),
(562, 'Santhoshkumar G', '4', '6374930274', '7358208212', 'santosmuray@gmail.com', '1996-06-06', 24, '2', '2', 'Gunasekaran S', 'Fishing', 12000.00, 1, 14000.00, 15000.00, 'No;3/142, bajanai koil Street.kovalam,603112', 'No;3/142, Bajanai Koil Street.Kovalam,603112', '2009210030', '2', '2', 'upload_files/candidate_tracker/54556595830_New Doc 2020-01-10 15.44.05.pdf', NULL, NULL, '2020-09-22', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-21 11:44:36', 1, '2020-09-21 11:58:27', 0, NULL, 1),
(563, 'Ashwini D L', '11', '8870371028', '', 'dlashwini28@gmail.com', '1995-05-28', 25, '2', '2', 'Lakshmi Narayanan M D', 'Rice merchant', 120000.00, 1, 15000.00, 18000.00, 'No.25, Muthumani street, kodambakkam', 'Kodambakkam, chennai', '2009220001', '2', '2', 'upload_files/candidate_tracker/23065732932_ASHWINI D L.docx', NULL, NULL, '2020-09-22', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'will not suite for our process. already we hold 3.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 12:36:20', 1, '2020-09-22 12:40:07', 0, NULL, 1),
(564, '', '0', '9952947119', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009220002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 07:42:16', 0, NULL, 0, NULL, 1),
(565, 'SOMA SUNDARAM R', '5', '8940379238', '8939721640', 'somursv@gmail.com', '1993-01-02', 27, '2', '2', 'Ramsamy m', 'Farmer', 20000.00, 1, 29867.00, 30.00, 'Vellore', 'Saidepet', '2009220003', '3', '2', 'upload_files/candidate_tracker/35479481055_Resume-1.pdf', NULL, NULL, '2020-09-22', 0, '', '5', '33', NULL, 0.00, '10:08 AM', '0', NULL, '1', 'Not qualified for sales ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 10:04:43', 1, '2020-09-22 10:09:34', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(566, 'Mohammed Nabi', '5', '9176780835', '', 'rafiq14332@gmail.com', '1988-04-03', 32, '2', '1', 'Kajamaideen', 'Hotiler', 480000.00, 2, 50000.00, 20000.00, 'Avadi', 'Avadi', '2009220004', '8', '2', 'upload_files/candidate_tracker/98740373632_Mohammed Nabi.docx', NULL, NULL, '2020-09-22', 0, '', '3', '8', '2020-09-24', 240000.00, '10:12 AM', '6', '2021-09-27', '1', '20K for sarath team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 10:08:10', 7, '2020-10-22 05:59:13', 0, NULL, 1),
(567, 'J.Amirtharaj Praveen', '6', '8754335990', '9443106249', 'jamirth03@gmail.com', '1990-08-13', 30, '1', '2', 'S.John', 'Politician', 25000.00, 1, 13000.00, 15000.00, 'kumbakonam', 'Chennai', '2009220005', '', '2', 'upload_files/candidate_tracker/95696915282_resume.docx', NULL, NULL, '2020-09-22', 0, '5581', '3', '8', '2020-09-24', 13500.00, '10:17 AM', '5', '1970-01-01', '1', '13.5K for Ramesh team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 10:10:37', 7, '2020-10-07 06:11:43', 0, NULL, 1),
(568, 'G. Kumaresan', '5', '6380770648', '8825734109', 'gkumaresan19@gmail.com', '1983-04-08', 37, '2', '1', 'Aarthi.cl', 'Home maker', 25000.00, 2, 25000.00, 30000.00, 'T. Nagar', 'T. Nagar', '2009220006', '3', '2', 'upload_files/candidate_tracker/13301660512_resume.docx', NULL, NULL, '2020-09-22', 0, '', '5', '44', NULL, 0.00, '10:48 AM', '0', NULL, '2', 'Not fit for sales and He is having Lic agent code', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 10:33:49', 1, '2020-09-22 10:49:21', 0, NULL, 1),
(569, 'Vishal V', '1', '9952939905', '', 'Vishalvenkataperumal@gmail.com', '1994-01-23', 26, '2', '2', 'Venkataperumal V', 'Agriculture', 200000.00, 1, 216000.00, 300000.00, 'Chennai', 'Chennai', '2009220007', '1', '2', 'upload_files/candidate_tracker/44123168847_Vishal V - Resumee.docx', NULL, NULL, '2020-09-23', 45, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'he asked time time to think and not turned up', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 10:39:34', 8, '2020-09-23 12:31:53', 0, NULL, 1),
(570, 'Amudha.a', '4', '8015219296', '8667660108', 'amudha.neela2014@gmail.com', '1996-02-27', 24, '2', '2', 'Anbazhagan.c', 'Building work', 25000.00, 1, 12000.00, 12000.00, 'Madambakkam', 'Madambakkam', '2009220008', '1', '2', 'upload_files/candidate_tracker/4595269916_amudha resume.docx', NULL, NULL, '2020-09-23', 0, '', '6', '0', NULL, 0.00, '11:27 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 11:19:30', 1, '2020-09-22 11:30:47', 0, NULL, 1),
(571, 'E.nirmala', '4', '7358690112', '7445820902', 'Nirmalaammu277@gmail.com', '1999-07-27', 21, '2', '2', 'Elayamurugan', 'Watchman', 15000.00, 1, 0.00, 15000.00, '5/440 Mariyamman kovil 8th St. s.kolathur', '5/440 Mariyamman kovil 8th St. s.kolathur', '2009220009', '1', '1', 'upload_files/candidate_tracker/25006523186_Nirmala resume b.com.pdf', NULL, NULL, '2020-09-23', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 11:24:32', 50, '2020-09-23 09:52:35', 0, NULL, 1),
(572, 'Danny john', '8', '9884559879', '', 'dannydj7777@gmail.com', '1995-07-20', 25, '2', '2', 'John F', 'Building contractor', 40000.00, 1, 14000.00, 21000.00, 'Chennai', 'Chennai', '2009220010', '1', '2', 'upload_files/candidate_tracker/90700657761_DANNY J.pdf', NULL, NULL, '2020-09-23', 0, '', '5', '35', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'we given a time for 2nd Round Candidate Not Responding so that am Rejecting. ', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 11:57:41', 50, '2020-09-23 11:14:12', 0, NULL, 1),
(573, 'gokulraj sankar', '2', '8608706348', '', '', '2005-09-22', 15, '1', '2', 'sankar', 'farmer', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2009220011', '', '1', 'upload_files/candidate_tracker/9309256964_Ramya-HR-resume.pdf', NULL, NULL, '2020-09-22', 0, '55566', '5', '27', '1970-01-01', 0.00, '12:28 PM', '', '1970-01-01', '1', 'nil', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 12:26:30', 1, '2020-09-22 12:54:44', 0, NULL, 1),
(574, 'L Thomas', '6', '9677221090', '8681921794', 'tomthomas657@gmail.com', '1996-03-03', 24, '2', '2', 'S. Lawrence', 'Manager', 25000.00, 2, 21000.00, 23000.00, 'Chennai', 'Chennai', '2009220012', '1', '2', 'upload_files/candidate_tracker/93812693800_Tom resume.docx', NULL, NULL, '2020-09-23', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 12:34:51', 50, '2020-09-23 04:47:13', 0, NULL, 1),
(575, 'ANBARASAN P', '4', '7448329246', '8939745844', 'anbu04061999@gmail.com', '1999-07-19', 21, '2', '2', 'Perumal', 'Wages', 15000.00, 1, 0.00, 20000.00, 'Madipakkam', 'Madipakkam', '2009220013', '1', '1', 'upload_files/candidate_tracker/30746370609_ANBU.pdf', NULL, NULL, '2020-09-23', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 12:48:39', 50, '2020-09-23 09:53:00', 0, NULL, 1),
(576, 'abelia', '8', '8220508781', '', '', '1987-12-09', 32, '2', '2', 'Sambantham', 'Farmer', 10000.00, 1, 0.00, 30000.00, 'Egmore', 'KK nagar', '2009220014', '1', '1', 'upload_files/candidate_tracker/10005098587_32700368955_subash resume.docx', NULL, NULL, '2020-09-22', 0, '', '6', '0', NULL, 0.00, '01:49 PM', '0', NULL, '1', NULL, '7', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 01:46:44', 1, '2020-09-25 04:26:07', 0, NULL, 1),
(577, 'Masood Ahmed', '4', '7530098631', '8122460626', 'masoodahmedbilali@gmail.com', '1996-06-08', 24, '2', '2', 'Mohammed Ismail', '-', 60000.00, 0, 0.00, 12000.00, 'Vellore', 'Chennai', '2009220015', '2', '1', 'upload_files/candidate_tracker/53419278309_RESUME.pdf', NULL, NULL, '2020-09-23', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 03:07:49', 1, '2020-09-22 03:17:55', 0, NULL, 1),
(578, 'Subha', '4', '7358212166', '7092524698', 'subhasoundharajan@gmail.com', '1996-11-19', 23, '2', '2', 'Soundharajan', 'Book binder', 8000.00, 1, 13.00, 15.00, 'urappakkam, pin code:603202', 'Urappakkam', '2009220016', '1', '2', 'upload_files/candidate_tracker/46273081784_1600678877122Resume_Subha.docx', NULL, NULL, '2020-09-23', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 03:31:13', 50, '2020-09-23 04:47:43', 0, NULL, 1),
(579, 'J rajaram', '4', '8754681936', '8270408938', 'rajaram9750@gmail.com', '1994-09-17', 26, '2', '2', 'N.Jayakumar', 'Working in a private agri shop', 10000.00, 1, 0.00, 11000.00, 'melathukurich,kumbakonam , Thanjavur 612501', 'Keelkattalai', '2009220017', '1', '1', 'upload_files/candidate_tracker/9398997319_1600772040928_ram resume.pdf', NULL, NULL, '2020-09-24', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-22 04:05:20', 7, '2020-09-24 07:24:57', 0, NULL, 1),
(580, '', '0', '9789075210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009220018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 04:13:15', 0, NULL, 0, NULL, 1),
(581, '', '0', '9514517926', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009220019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 09:26:00', 0, NULL, 0, NULL, 1),
(582, 'Sudarshan K', '4', '9611810764', '9945103889', 'sudarshan2524@gmail.com', '1994-09-22', 26, '2', '2', 'Kandhan M', 'Own business', 30000.00, 1, 23000.00, 24000.00, 'Btm 2nd stage 7th main', 'Btm 2nd stage', '2009220020', '7', '2', 'upload_files/candidate_tracker/21643272867_SUDARSHAN CV edited .docx', NULL, NULL, '2020-09-23', 0, '', '5', '38', NULL, 0.00, '12:07 PM', '0', NULL, '1', 'he is looking high package xxamp he will not ready to go out for Appointment', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-22 09:56:42', 1, '2020-09-23 12:05:55', 0, NULL, 1),
(583, 'Bala Venkat bhargav P', '5', '6382448242', '9790747257', 'balabhargav220@gmail.com', '1996-09-20', 24, '2', '2', 'Subramaniyam', 'Fabrics design', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2009230001', '8', '1', 'upload_files/candidate_tracker/66712447054_BALA BB EXP RESUME.docx', NULL, NULL, '2020-09-23', 0, '', '3', '8', '2020-09-28', 216000.00, '10:10 AM', '4', '2020-12-16', '1', '18K for guru team.', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 10:08:24', 7, '2020-10-22 05:35:57', 0, NULL, 1),
(584, 'preethi', '4', '7305830603', '9840521110', 'patumapreethi30@gmail.com', '1997-08-30', 23, '2', '2', 'saravanan', 'carpenter', 120000.00, 1, 20000.00, 22000.00, 'chennnai', 'chennai', '2009230002', '3', '2', 'upload_files/candidate_tracker/33155600708_resume_preethi f.pdf', NULL, NULL, '2020-09-23', 1, '', '5', '8', '1970-01-01', 0.00, '10:21 AM', '', '1970-01-01', '1', 'was rejected by Kannan and srikanth. no sales pitch but good communication', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 10:16:56', 8, '2020-09-24 06:20:08', 0, NULL, 1),
(585, '', '0', '9894127280', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 11:01:47', 0, NULL, 0, NULL, 1),
(586, '', '0', '7010381390', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 11:02:51', 0, NULL, 0, NULL, 1),
(587, 'brindha chandran', '4', '6382016354', '9788726914', 'brindhabindhu63@gmail.com', '1997-12-01', 22, '2', '2', 'm.chandran', 'mechanic', 40000.00, 1, 0.00, 15000.00, 'virudhunagar', 't.nagar chennai', '2009230005', '1', '1', 'upload_files/candidate_tracker/87686383232_Bhuvanasundari Resume (1).pdf', NULL, NULL, '2020-09-23', 0, '', '6', '0', NULL, 0.00, '11:42 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 11:10:15', 1, '2020-09-23 12:09:06', 0, NULL, 1),
(588, '', '0', '7010780977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 11:35:37', 0, NULL, 0, NULL, 1),
(589, 'Shashi Sagar', '4', '9964876192', '', '', '1994-09-25', 25, '2', '2', '(late) Nagaraj', 'Forest department', 30000.00, 0, 20000.00, 23000.00, 'Kodichikkanahalli', 'Kodichikkanahalli', '2009230007', '7', '2', 'upload_files/candidate_tracker/78436125227_Resume shashi.docx', NULL, NULL, '2020-09-23', 0, '', '5', '38', NULL, 0.00, '12:15 PM', '0', NULL, '1', 'I Ask To Wait For Next Round But Is Not Available.......Worst In Patience ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 12:10:52', 1, '2020-09-23 12:15:44', 0, NULL, 1),
(590, 'Amudha', '4', '9677081821', '7904596595', 'amudhadevaraj05@gmail.com', '1999-10-05', 20, '2', '2', 'Devaraj', 'Daily wages', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009230008', '1', '1', 'upload_files/candidate_tracker/29101921493_Resume-converted.pdf', NULL, NULL, '2020-09-24', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'pronouncation problem', '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 12:22:07', 1, '2020-09-23 02:00:40', 0, NULL, 1),
(591, 'govarthanam', '5', '9566752210', '', 'govaa08@gmail.com', '1989-09-29', 30, '2', '1', 'veerasamy', 'post master', 40000.00, 0, 35000.00, 45000.00, 'tiruttani', 'chennai', '2009230009', '3', '2', 'upload_files/candidate_tracker/19777035278_Gova Resume Feb_2020.pdf', NULL, NULL, '2020-09-23', 1, '', '3', '8', '2020-09-28', 33000.00, '12:37 PM', '6', '2022-01-03', '1', '33K for lokesh team, shortlisted by Sriram.', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 12:33:08', 7, '2020-10-22 05:11:27', 0, NULL, 1),
(592, 'Pushpalatha M', '4', '8618930698', '', 'pushpamanims@gmail.com', '1995-11-13', 24, '2', '2', 'Mani', 'No', 20000.00, 2, 12000.00, 18000.00, '#88 1st main road LR Nagar bangalore-47', '#5/2,7th cross rose garden, Bangalore-47', '2009230010', '7', '2', 'upload_files/candidate_tracker/95312445412_pushpa reume experience.docx', NULL, NULL, '2020-09-23', 0, '', '3', '8', '2020-09-28', 14000.00, '01:05 PM', '0', NULL, '2', '14K for Gowshick team.', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 12:58:20', 1, '2020-09-23 01:29:39', 0, NULL, 1),
(593, '', '0', '9080039656', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 01:04:51', 0, NULL, 0, NULL, 1),
(594, 'Reshma C R', '4', '9902478181', '9880920952', 'reshmacrmay191998@gmail.com', '1998-05-19', 22, '2', '2', 'Ravindran C V', 'Driver', 200000.00, 1, 16000.00, 13000.00, 'BENGALURU', 'BENGALURU', '2009230012', '1', '2', 'upload_files/candidate_tracker/96611039589_CURRICULUM VITAE final.pdf', NULL, NULL, '2020-09-24', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 01:12:44', 7, '2020-09-24 07:25:18', 0, NULL, 1),
(595, 'HABEEBULLAH SHERIF S', '4', '9840341968', '9566097531', 'habeebsherif98@gmail.com', '1997-09-21', 23, '2', '2', 'Shafiullah sheriff', 'Auto driver', 35000.00, 4, 0.00, 20000.00, 'Perambur', 'Chennai Perambur', '2009230013', '1', '1', 'upload_files/candidate_tracker/6158741992_CV_2020-09-23-015226.pdf', NULL, NULL, '2020-09-23', 0, '', '6', '', '1970-01-01', 0.00, '02:50 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 01:41:07', 7, '2020-09-23 06:07:44', 0, NULL, 1),
(596, 'Deepa S', '4', '9148314138', '', 'adhideepapuvideepa@gmail.com', '1994-05-27', 26, '2', '2', 'Suse', 'No', 15000.00, 0, 15000.00, 18000.00, 'Narayanappa garden kodihalli KGA road', 'Narayanappa garden kodihalli KGA Road', '2009230014', '7', '2', 'upload_files/candidate_tracker/14410603066_deepa s.p.docx', NULL, NULL, '2020-09-23', 0, '', '5', '38', NULL, 0.00, '02:06 PM', '0', NULL, '2', 'will not suit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 01:50:32', 1, '2020-09-23 02:09:26', 0, NULL, 1),
(597, '', '0', '8056210640', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 01:55:43', 0, NULL, 0, NULL, 1),
(598, 'Dhanalakshmi', '4', '9360277532', '9780331601', 'imaha5714@gmail.com', '2000-05-10', 20, '2', '2', 'Arumugam', 'Daily wages', 12000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009230016', '1', '1', 'upload_files/candidate_tracker/59326030765_Untitled document.pdf', NULL, NULL, '2020-09-24', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'double minded ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-23 02:25:46', 1, '2020-09-23 03:04:03', 0, NULL, 1),
(599, '', '0', '7397243413', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009230017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 03:44:48', 0, NULL, 0, NULL, 1),
(600, 'dhinakaran.d', '4', '9962303801', '8796856453', 'nandhini1526@gmail.com', '1991-03-27', 30, '1', '1', 'ravikumar t', 'house wife', 25000.00, 0, 0.00, 30000.00, 'coimbatore', 'thiruvottiyur', '2009230018', '', '2', 'upload_files/candidate_tracker/58813222256_tamil.docx.pdf', NULL, NULL, '2021-03-30', 7, 'jobs', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-23 03:52:34', 1, '2021-03-29 02:48:21', 0, NULL, 1),
(601, 'Jaffer', '13', '9840349492', '', 'moonsat08@gmail.com', '1987-09-23', 33, '3', '2', 'Sathik', 'Former', 5000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2009230019', '', '1', 'upload_files/candidate_tracker/60829185595_dummy.pdf', NULL, NULL, '2020-09-23', 0, '', '3', '41', '2020-09-23', 15000.00, '03:30 PM', '7', '1970-01-01', '2', '', '2', '2', '1', '1', '1', '2', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 07:29:48', 1, '2020-09-23 07:37:25', 7, '2020-10-07 06:08:57', 0),
(602, 'test sathish', '2', '9715880880', '', 'sathish@cafsinfotech.in', '2005-09-22', 15, '3', '2', 'srbsf', 'ss', 20000.00, 0, 0.00, 20000.00, 'ch', 'fdff', '2009230020', '', '1', 'upload_files/candidate_tracker/92900631949_12579932.sat.pdf', NULL, NULL, '2020-09-23', 0, '', '3', '41', '2020-09-23', 20000.00, '01:36 PM', '7', '1970-01-01', '2', 'nill', '2', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-23 07:34:02', 1, '2020-09-23 07:44:13', 7, '2020-10-07 06:08:57', 0),
(603, 'Gayathri', '4', '7904862175', '8870701224', 'Gayupmu336@gmail.com', '2000-08-18', 20, '2', '2', 'Tamilvanan', 'farmer', 20000.00, 1, 0.00, 20000.00, 'chennai', 'thanjavur', '2009240001', '1', '1', 'upload_files/candidate_tracker/9859870198_gayupallavi123.docx', NULL, NULL, '2020-09-24', 0, '', '5', '54', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'she dont know the basics of c and C++', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 08:34:16', 1, '2020-09-24 08:49:53', 0, NULL, 1),
(604, 'MANIKANDAN P', '4', '9843776728', '8489517549', 'manikandan4993@gmail.com', '1993-06-28', 27, '1', '2', 'Palani ammal', 'Match works industry, sivakasi', 5000.00, 0, 17000.00, 18000.00, 'Virudhunagar', 'Saidapet', '2009240002', '', '2', 'upload_files/candidate_tracker/14775713560_resume 2020.docx', NULL, NULL, '2020-09-24', 0, 'Jobs', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no voice exp, exp high salary , not sustain long term', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 10:42:01', 7, '2020-09-24 12:45:18', 0, NULL, 1),
(605, 'Satish. S', '1', '9884801139', '8939098872', 'satsub1980@gmail.com', '1980-06-08', 40, '2', '1', 'K. Subramanian', 'Regional business head', 100000.00, 1, 14.50, 16.00, 'Chennai', 'Chennai', '2009240003', '1', '2', 'upload_files/candidate_tracker/76295089830_satish resume updated.docx', NULL, NULL, '2020-09-24', 0, '', '5', '8', NULL, 0.00, '11:15 AM', '0', NULL, '1', 'for testing', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 11:00:07', 1, '2020-09-24 11:05:00', 0, NULL, 1),
(606, 'Nivedha', '4', '6381048346', '9384612443', 'Nive1999bala@gmail.com', '1999-01-14', 21, '1', '2', 'Balaraman', '10th', 150000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009240004', '', '1', 'upload_files/candidate_tracker/96273196467_1560322744852Resume_Nivedha(1).pdf', NULL, NULL, '2020-09-24', 0, 'Jobs', '3', '8', '2020-10-05', 11000.00, '11:00 AM', '6', '2021-03-26', '2', 'for Srikath team. 11K.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 11:02:17', 7, '2020-10-06 12:41:32', 0, NULL, 1),
(607, '', '0', '7708048335', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009240005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 11:14:51', 0, NULL, 0, NULL, 1),
(608, 'V.purushothaman', '6', '7397388661', '9840832409', 'Purushothvj03@gmail.com', '1998-04-18', 22, '2', '2', 'E.venkatesan', 'Painter', 12000.00, 1, 0.00, 12000.00, 'Velachery', 'Velachery', '2009240006', '1', '2', 'upload_files/candidate_tracker/56928325913_purusho.PDF', NULL, NULL, '2020-09-24', 0, '', '3', '8', '2020-10-05', 168000.00, '11:33 AM', '2', '2020-10-26', '1', '14K for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 11:19:32', 7, '2020-10-06 12:48:14', 0, NULL, 1),
(609, '', '0', '9840507721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009240007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 11:42:07', 0, NULL, 0, NULL, 1),
(610, 'Elakkiya M', '11', '7639350060', '9361259692', 'sweetyelakiya@gmail.com', '1994-06-16', 26, '2', '2', 'Maniyarasan', 'Farmer', 7000.00, 1, 25000.00, 20000.00, 'Cuddalore', 'Chennai', '2009240008', '2', '2', 'upload_files/candidate_tracker/87233165252_Elakkiya HR Recruiter.pdf', NULL, NULL, '2020-09-25', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'poor communication and no HR skills, and no portal knowledge.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 11:50:43', 1, '2020-09-24 12:16:04', 0, NULL, 1),
(611, '', '0', '7305406084', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009240009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:18:29', 0, NULL, 0, NULL, 1),
(612, 'Manugandhi', '5', '9150934540', '9087960005', 'manugandhijegan@gmail.com', '1984-08-27', 36, '2', '1', 'Jegan', 'Executive', 25000.00, 1, 18000.00, 25000.00, 'Ashoknagar', 'Ashoknagar', '2009240010', '3', '2', 'upload_files/candidate_tracker/4600687493_0_Resume...JManugandhi.docx', NULL, NULL, '2020-09-24', 0, '', '5', '51', NULL, 0.00, '01:00 PM', '0', NULL, '1', 'she is not willing to travel long distance to meet the clients ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:24:07', 1, '2020-09-24 01:45:40', 0, NULL, 1),
(613, 'M.ARUNKUMAR', '11', '9786776490', '', 'arunkumar925292@gmail.com', '1992-02-05', 28, '2', '1', 'K mathiyazhagan', 'business', 30000.00, 2, 25000.00, 25000.00, 'No 22 Marai Malainagar velrampet Pondicherry', 'Chennai kodambakkam', '2009240011', '2', '2', 'upload_files/candidate_tracker/63232875587_0_Arun resume 10(2).docx', NULL, NULL, '2020-09-24', 0, '', '5', '53', NULL, 0.00, '12:27 PM', '0', NULL, '1', 'He is having oly co ordinating exp in HR nd also expecting high salry, and suggested for RM but he s nt intrested in field work.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:24:31', 1, '2020-09-24 12:27:52', 0, NULL, 1),
(614, 'Nidhin Mohan', '4', '9633544146', '8086681850', 'nidhinmohan999@gmail.com', '1992-11-29', 27, '2', '1', 'mohanan', 'acrylic designing', 100000.00, 1, 20000.00, 22000.00, 'Chennai', 'chrompet', '2009240012', '2', '2', 'upload_files/candidate_tracker/30968369527_NIDHIN MOHAN CV.doc', NULL, NULL, '2020-09-25', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'he dont know tamil.....', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:52:35', 1, '2020-09-24 01:10:04', 0, NULL, 1),
(615, 'Selva Raj.j', '4', '7708582420', '8124043006', 'Bellay20488@gamil.com', '1988-04-20', 32, '1', '2', 'Jaganathan.', 'Bussiness', 500000.00, 2, 23000.00, 30000.00, '8A sanjeeva chetty street ,bargur,', '2/342 Veera sivaji street ,,mugallivakkam', '2009240013', '', '2', 'upload_files/candidate_tracker/57445210363_selvaraj ........j.pdf', NULL, NULL, '2020-09-24', 1, 'Ehr008', '5', '14', NULL, 0.00, '01:11 PM', '0', NULL, '1', 'Expecting high salary not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 12:59:45', 1, '2020-09-24 01:22:48', 0, NULL, 1),
(616, 'Naveen Kumar S', '4', '9962422332', '9442310799', 'snkumar6391@gmail.com', '1991-03-06', 29, '2', '2', 'P C Selvan', 'Retired State Government employee', 50000.00, 2, 15000.00, 15000.00, 'Kovilambakkam', 'Kovilambakkam', '2009240014', '1', '2', 'upload_files/candidate_tracker/13511395644_Naveen_Resume chennai.docx', NULL, NULL, '2020-09-24', 0, '', '5', '14', NULL, 0.00, '01:23 PM', '0', NULL, '2', 'not suitable for telecalling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 01:15:50', 1, '2020-09-24 01:23:50', 0, NULL, 1),
(617, 'Nishanth', '11', '7010854624', '9750041481', 'nishanth28feb@gmail.com', '1990-06-05', 30, '2', '2', 'Mother-Shanthi', 'Neyveli', 100000.00, 0, 12000.00, 15000.00, 'Velachearry Chennai', 'Velachearry Chennai', '2009240015', '2', '2', 'upload_files/candidate_tracker/48094689469_1600914212661Resume_Nishanth.pdf', NULL, NULL, '2020-09-25', 0, '', '5', '8', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Not active, Switched company ever 3 months will not sustain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 05:22:49', 1, '2020-09-24 05:34:36', 0, NULL, 1),
(618, '', '0', '9678563417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009240016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-24 05:39:41', 0, NULL, 0, NULL, 1),
(619, 'k.k.imthiaz banu', '4', '9840480408', '', 'imthu.chill2998@gmail.com', '1998-09-29', 21, '2', '2', 'k.a.khader meeran', 'sofa liner', 9000.00, 2, 9000.00, 14000.00, 'Chennai', 'Chennai', '2009240017', '1', '2', 'upload_files/candidate_tracker/31249843106_imthiaz banu.k.k.resume NEW.docx', NULL, NULL, '2020-09-25', 3, '', '3', '8', '2020-09-28', 10500.00, '10:00 AM', '3', '2020-09-29', '2', '10.5K Fro Dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-24 06:40:56', 7, '2020-10-07 06:13:49', 0, NULL, 1),
(620, 'S logeshwari', '4', '7708118128', '7538889541', 'Logeshwari.s29@gmail.com', '1999-09-29', 20, '1', '2', 'Shanmugam', 'Daily wage', 10000.00, 1, 0.00, 20000.00, 'Vandavasi', 'Vandabasi', '2009250001', '', '1', 'upload_files/candidate_tracker/20637669101_chaaru.docx', NULL, NULL, '2020-09-25', 0, '0229', '8', '', '1970-01-01', 0.00, '10:45 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 10:36:21', 50, '2020-09-25 11:00:28', 0, NULL, 1),
(621, 'christy christudas', '4', '8891175680', '8086003710', 'christyg68@gmail.com', '1994-02-23', 26, '2', '2', 'christudas', 'farmer', 20000.00, 2, 18000.00, 20000.00, 'trivandrum', 'madiwala', '2009250002', '7', '2', 'upload_files/candidate_tracker/42490311251_CV_20-07-20- updated .pdf', NULL, NULL, '2020-09-25', 0, '', '5', '38', NULL, 0.00, '10:40 AM', '0', NULL, '2', 'will not suit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 10:37:00', 1, '2020-09-25 10:44:49', 0, NULL, 1),
(622, '', '0', '7095153666', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 10:37:13', 0, NULL, 0, NULL, 1),
(623, 'Balaji', '4', '8667347989', '', 't.s.g.bala@gmail.com', '1989-05-08', 31, '2', '2', 'Gunasekaran', 'Massion labour', 10000.00, 2, 17000.00, 17000.00, 'Arumuganeri', 'Choolaimedu', '2009250004', '1', '2', 'upload_files/candidate_tracker/47692047321_Resume.doc', NULL, NULL, '2020-09-25', 7, '', '5', '8', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '1', 'will not suite for MIS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 10:44:26', 50, '2020-09-25 11:57:13', 0, NULL, 1),
(624, '', '0', '6381433264', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 10:45:03', 0, NULL, 0, NULL, 1),
(625, 'SOUNDAR K', '4', '9159915329', '9159916329', 'soundarksr765@gmail.com', '1994-06-13', 26, '2', '2', 'kumar', 'farmer', 80000.00, 2, 400000.00, 400000.00, 'chennai', 'chennai', '2009250006', '1', '2', 'upload_files/candidate_tracker/21349615303_Soundar .Naukri.docx', NULL, NULL, '2020-09-26', 0, '', '8', '14', '1970-01-01', 0.00, '10:55 AM', '', '1970-01-01', '2', 'candidate not attended the interview', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 10:52:10', 50, '2020-09-26 09:12:55', 0, NULL, 1),
(626, 'Ramya.B', '20', '9790810308', '8939481359', 'ramyabalu1321@gmail.com', '1998-06-13', 22, '2', '2', 'Balu .S', 'Cooli', 10000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2009250007', '1', '2', 'upload_files/candidate_tracker/24441741446_Ramya Resume.docx', NULL, NULL, '2020-09-26', 0, '', '5', '24', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'SHE IS LOOKING FOR 6MONTH OR 1YRS JOB ONLY.. NEXT SHE WILL STUDY UPSC EXAM.. SO SUSTAINABILITY IS DOUBT', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 11:31:15', 50, '2020-09-26 11:38:17', 0, NULL, 1),
(627, 'Sabarinathan', '4', '8015066176', '', 'sabarish0993@gmail.com', '1993-07-22', 27, '2', '1', 'Malini', 'Team Leader', 17000.00, 1, 17000.00, 2000.00, 'Uthangarai,, Krishnagiri', 'Guindy,chennai', '2009250008', '1', '2', 'upload_files/candidate_tracker/12038739009_CV_2020-07-19-125446.pdf', NULL, NULL, '2020-09-26', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 11:38:12', 50, '2020-09-26 04:58:31', 0, NULL, 1),
(628, 'SOORAJ.P', '4', '8123262559', '9964578492', 'sooraj_p35@yahoo.com', '1977-01-06', 43, '2', '1', 'K.C.R. Nambiar', 'retair it employee', 17000.00, 2, 16000.00, 17000.00, 'Ramamurthy Nagar', 'Ramamurthy Nagar', '2009250009', '7', '2', 'upload_files/candidate_tracker/43724507928_Sooraj_Telecaller_CAFS.docx', NULL, NULL, '2020-09-25', 0, '', '5', '38', NULL, 0.00, '12:30 PM', '0', NULL, '1', 'i trIed for RM But he is having health issue xxamp he is looking for office work', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 11:54:58', 1, '2020-09-25 12:58:11', 0, NULL, 1),
(629, 'Surya. M', '20', '7871638730', '', 'suryamadhavi3005@gmail.com', '1999-05-30', 21, '2', '2', 'K. Mayakannan', 'Farming', 5000.00, 1, 0.00, 16000.00, 'Cuddalore', 'T. Nagar', '2009250010', '1', '1', 'upload_files/candidate_tracker/83517001154_M.S.Surya CV.doc', NULL, NULL, '2020-09-26', 0, '', '3', '8', '2020-09-29', 132000.00, '11:00 AM', '6', '2021-03-26', '2', '11K for Srikanth Team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 12:08:24', 7, '2020-10-09 02:54:22', 0, NULL, 1),
(630, '', '0', '9840872845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 12:10:15', 0, NULL, 0, NULL, 1),
(631, 'Thinakaran', '4', '7708426479', '9087189893', 'Thinakaran024@gmail.com', '1997-11-01', 22, '2', '2', 'Kulanthai vel', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009250012', '1', '1', 'upload_files/candidate_tracker/50288605302_Thinakaran Resume.docx', NULL, NULL, '2020-09-26', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 12:14:05', 50, '2020-09-26 04:58:42', 0, NULL, 1),
(632, 'Ezhilarasu', '5', '9500305600', '9790794100', 'ezhilleaf@gmail.com', '1989-04-10', 31, '1', '2', 'Madhu', 'Farmer', 10000.00, 2, 400000.00, 500000.00, 'Salem', 'Chennai', '2009250013', '', '2', 'upload_files/candidate_tracker/57066469560_1601018391502_Resume.docx', NULL, NULL, '2020-09-25', 0, '5266', '5', '51', '1970-01-01', 0.00, '01:40 PM', '', '1970-01-01', '1', 'looking for more salary', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 12:45:25', 1, '2020-09-25 01:15:51', 0, NULL, 1),
(633, 'Akila.M', '4', '9176369544', '8939064274', 'akilamurugesan2804@gmail.com', '1998-04-28', 22, '2', '2', 'Murugesan.s', 'Nil', 8000.00, 1, 0.00, 11000.00, 'New perungalthur', 'New perungalathur', '2009250014', '1', '1', 'upload_files/candidate_tracker/64199678857_Akila.M.docx', NULL, NULL, '2020-09-26', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Sustain Long Term , She I Il Come Only With Friends....', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 01:08:11', 50, '2020-09-26 09:13:34', 0, NULL, 1),
(634, 'J sivaramachandran', '4', '9884676927', '9840336094', 'sivaram10JR96@gmail.com', '1996-09-10', 24, '2', '2', 'R Jayasankar', 'auto driver', 15000.00, 1, 0.00, 15000.00, 'Chennai, New perungalathur', 'new perungalathur', '2009250015', '1', '1', 'upload_files/candidate_tracker/90303459949_sivaramachandran.J.doc', NULL, NULL, '2020-09-26', 0, '', '5', '14', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'not good in communication not suitable for voice ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 01:16:21', 1, '2020-09-25 01:47:20', 0, NULL, 1),
(635, '', '0', '9003037459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 01:40:17', 0, NULL, 0, NULL, 1),
(636, 'Durgadevi', '4', '9042246263', '9566146956', 'hashiniramesh96@gmail.com', '1996-06-07', 24, '2', '2', 'Ramesh', 'Coolie', 15000.00, 1, 0.00, 11000.00, 'Chennai', 'West mambalam Chennai', '2009250017', '1', '1', 'upload_files/candidate_tracker/52934897344_resume.docx', NULL, NULL, '2020-09-26', 0, '', '5', '13', '1970-01-01', 0.00, '11:03 AM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 01:44:55', 50, '2020-09-26 05:03:07', 0, NULL, 1),
(637, 'M sarath kumar', '4', '9940201156', '7904694351', 'Spreak1910@gmail.com', '1991-10-19', 28, '4', '2', 'Mohan', 'L.i.c retierd', 40000.00, 0, 12500.00, 13000.00, 'Broadway', 'Broadway', '2009250018', '', '2', 'upload_files/candidate_tracker/29966673434_Resume_2020aug.pdf', NULL, NULL, '2020-09-28', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 01:46:05', 1, '2020-09-28 09:06:07', 50, '2020-09-29 04:33:06', 0),
(638, 'harikaran.b', '4', '9940538154', '', 'b.harikarann@gmail.com', '1996-02-03', 24, '2', '2', 'a. barani', 'senior attender in crescent university', 25000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2009250019', '1', '2', 'upload_files/candidate_tracker/98474854513_DOC-20190516-WA0001.docx', NULL, NULL, '2020-09-26', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'expecting high salary 15 k above', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 02:08:50', 50, '2020-09-26 09:26:59', 0, NULL, 1),
(639, '', '0', '9003386360', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009250020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-25 02:22:59', 0, NULL, 0, NULL, 1),
(640, 'Sathya R', '4', '9789747438', '9940518054', 'sathyasamu1998@gmail.com', '1997-06-07', 23, '2', '2', 'Raja.P', 'Farmer', 150000.00, 2, 18000.00, 20000.00, 'No.68 T.M road,Desur, Vandhavasi.', 'No.2/7, Venkateswara Nagar, Ramapuram, Chennai.', '2009250021', '1', '2', 'upload_files/candidate_tracker/3925892168_sathya resume new2.docx', NULL, NULL, '2020-09-26', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'expected salary high', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-09-25 02:39:40', 58, '2020-12-23 12:13:49', 0, NULL, 1),
(641, 'sathya karthik', '4', '7904742040', '9600320328', 'jagsathyakarthik@gmail.com', '1991-02-16', 29, '2', '1', 'karthik jaganathan', 'Costumer validation analyst', 12000.00, 0, 12000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2009250022', '1', '2', 'upload_files/candidate_tracker/98647457248_SATHYA RESUME 2020.docx', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '2', 'Not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 02:44:40', 50, '2020-09-26 09:47:36', 0, NULL, 1),
(642, 'KAARTHIC T', '4', '8428765860', '8610199193', 'tkaarthic5@gmail.com', '1999-09-05', 21, '2', '2', 'THANU P', 'Supervisor', 17000.00, 1, 0.00, 12000.00, 'No 20,maraimalai adigal street Chitlapakkam', 'Chennai', '2009250023', '1', '1', 'upload_files/candidate_tracker/94129346237_kaarthic resume pdf corrected.pdf', NULL, NULL, '2020-09-26', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 02:48:22', 50, '2020-09-26 04:58:52', 0, NULL, 1),
(643, 'TharakRaman', '4', '9952949368', '6379739627', 'tharakraman96@gmail.com', '1997-11-10', 23, '2', '2', 'Ethiraj', 'Driver', 50000.00, 0, 13000.00, 13000.00, 'Kovilambakkam', 'Kovilambakkam', '2009250024', '1', '2', 'upload_files/candidate_tracker/28263576709_Lockdown Conformed.pdf', NULL, NULL, '2021-04-30', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 03:04:29', 50, '2021-04-30 11:26:39', 0, NULL, 1),
(644, 'Praveena', '20', '6374915175', '9176124216', 'praveenasweety1996@gmail.com', '1997-06-08', 23, '2', '2', 'Poopathi', 'Farmer', 50000.00, 2, 0.00, 180000.00, 'Chennai', 'Anna Nagar', '2009250025', '1', '1', 'upload_files/candidate_tracker/66570787043_pravs new resume-1.docx', NULL, NULL, '2020-09-26', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'LOW VOICE .. NOT SUITABLE FOR TELECALLING JOB', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 03:27:20', 7, '2020-09-26 11:03:09', 0, NULL, 1),
(645, 'arokyamerlin j', '4', '6369882795', '', 'arokyamerlin29@gmail.com', '2000-02-29', 20, '2', '2', 'john peter', 'watchman', 10000.00, 1, 0.00, 12000.00, 'ambattur', 'ambattur', '2009250026', '1', '1', 'upload_files/candidate_tracker/83204713250_RESUME .pdf', NULL, NULL, '2020-09-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'long distance and not suitable for voice', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 04:24:35', 50, '2020-09-26 09:14:20', 0, NULL, 1),
(646, 'R.Ramya', '4', '8680031185', '9841359758', 'ramyapappa2718@gmail.com', '1999-05-27', 21, '2', '2', 'Father - v.Ramesh', 'Loading', 15000.00, 1, 0.00, 15000.00, 'No .1 logaiya naidu street mannurpet chennai 50', 'Chennai , Ambattur industrial estate', '2009250027', '1', '1', 'upload_files/candidate_tracker/6673149055_1597723178800_0_1595232899406Resume_Ramya.pdf', NULL, NULL, '2020-09-26', 0, '', '8', '', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 04:59:56', 50, '2020-09-29 04:37:32', 0, NULL, 1),
(647, 'N.karthika', '4', '6379771987', '7448306653', 'Karthikakkr16@gmail.com', '2000-04-16', 20, '2', '2', 'R.Nagaraj', 'Self employee', 42000.00, 5, 0.00, 10000.00, 'T.Nagar', 'T.Nagar', '2009250028', '1', '1', 'upload_files/candidate_tracker/93732260130_karthima resume.pdf', NULL, NULL, '2020-09-26', 0, '', '5', '21', NULL, 0.00, '11:54 AM', '0', NULL, '2', 'Not Sustain Long Term Becz She Ill Come With Friends Only', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 05:31:55', 1, '2020-09-26 11:57:31', 0, NULL, 1),
(648, 'Hajara Banu.M', '4', '9150103267', '7200303650', 'hajara.banum2000@gmail.com', '2000-03-20', 20, '2', '2', 'Mohammed Farook.M', 'Self employee', 8000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2009250029', '1', '1', 'upload_files/candidate_tracker/37570869824_resume.pdf', NULL, NULL, '2020-09-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for telecalling ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-25 05:45:20', 1, '2020-09-26 11:09:31', 0, NULL, 1),
(649, '', '0', '7397033874', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009260001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 09:25:00', 0, NULL, 0, NULL, 1),
(650, 'sathya', '4', '9962364488', '', 'banupriya101290@gmail.com', '1990-12-10', 29, '1', '1', 'banupriya', 'salaried', 50000.00, 1, 75000.00, 100000.00, 'mugappair west', 'mugappair west', '2009260002', '', '2', 'upload_files/candidate_tracker/12947844057_Updated Resume - banu priya.docx', NULL, NULL, '2020-09-26', 30, '5152', '3', '8', '2020-09-30', 14000.00, '11:30 AM', '4', '2020-09-26', '1', 'For CRM 14K', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 10:20:23', 7, '2020-09-26 10:44:09', 0, NULL, 1),
(651, 'kayalabelia', '8', '9500357788', '', 'kayal.abelia@yahoo.com', '1987-12-09', 32, '3', '1', 'Sambantham', 'Farmer', 25000.00, 0, 0.00, 25000.00, 'Perambur', 'Pudupet', '2009260003', '', '1', 'upload_files/candidate_tracker/95715326946_32700368955_subash resume (1).docx', NULL, NULL, '2020-09-26', 0, '', '3', '8', '2020-09-30', 18000.00, '10:27 AM', '5', '1970-01-01', '1', '18K for TL', '7', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 10:20:31', 7, '2020-09-26 10:44:29', 50, '2020-09-29 04:37:55', 0),
(652, 'Anitha.S', '4', '8428291408', '7200303650', 'Anitha1498ani@gmai.com', '1998-08-14', 22, '2', '2', 'Susai Raj.K', 'Self employee', 8000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2009260004', '1', '1', 'upload_files/candidate_tracker/92714635168_Anu anitha.pdf', NULL, NULL, '2020-09-26', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Long Distance (Perungaluthur)', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 10:37:44', 1, '2020-09-26 12:29:31', 0, NULL, 1),
(653, 'Chandru D', '1', '9677061399', '', '', '1981-05-08', 39, '2', '1', 'K Durai', 'Retired', 38000.00, 1, 600000.00, 650000.00, 'Chennai', 'Chennai', '2009260005', '1', '2', 'upload_files/candidate_tracker/79880360965_Chandru CV- 2020.pdf', NULL, NULL, '2020-09-26', 7, '', '5', '8', '1970-01-01', 0.00, '11:20 AM', '', '1970-01-01', '1', 'not Interested in insurance. looking for job in health care', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 11:15:41', 50, '2020-09-29 04:38:12', 0, NULL, 1),
(654, 'IYER RAMACHANDRAN B', '4', '8754616875', '8754616874', 'radhakannan555@gmail.com', '1996-04-05', 24, '2', '2', 'Radha balasubramanian', 'Catering', 18000.00, 2, 8500.00, 9000.00, 'Chennai', 'Chennai', '2009260006', '1', '2', 'upload_files/candidate_tracker/75586512755_Ram.docx', NULL, NULL, '2020-09-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:41 AM', '', '1970-01-01', '1', 'not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 11:33:17', 50, '2020-09-29 04:38:21', 0, NULL, 1),
(655, 'Mageshwari.V', '4', '9677230766', '', 'Mahi22599@gmail.com', '1999-05-22', 21, '1', '1', 'Rajasekaran', '-', 175000.00, 0, 15000.00, 18000.00, 'thiruverkadu,CHENNAI,77', 'Thiruverkadu', '2009260007', '', '2', 'upload_files/candidate_tracker/57172979270_resume_1588865954409.pdf', NULL, NULL, '2020-09-26', 0, '01', '6', '0', NULL, 0.00, '11:56 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 11:38:23', 1, '2020-09-26 11:59:25', 0, NULL, 1),
(656, '', '0', '9952955231', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009260008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 11:52:46', 0, NULL, 0, NULL, 1),
(657, '', '0', '6379053092', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009260009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 11:54:39', 0, NULL, 0, NULL, 1),
(658, '', '0', '6380165257', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009260010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-26 02:12:41', 0, NULL, 0, NULL, 1),
(659, 'Safrin Abisha.V', '4', '8903540574', '9942806955', 'safrinabisha@gmail.com', '1997-07-12', 23, '2', '2', 'C.varuvel raj', 'Daily wages', 10000.00, 2, 10000.00, 12000.00, 'Kanyakumari district', 'Guindy', '2009260011', '1', '2', 'upload_files/candidate_tracker/15422369340_resume.pdf', NULL, NULL, '2020-09-29', 15, '', '5', '13', '1970-01-01', 0.00, '11:57 AM', '', '1970-01-01', '2', 'person not attend the call ringing only ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 02:27:42', 50, '2020-09-29 04:29:59', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(660, 'G Eswari', '4', '9940905165', '9176379100', 'gmageswari15@gmail.com', '1998-12-15', 21, '2', '2', 'G', 'R. Gopi', 20000.00, 4, 15000.00, 16000.00, 'No 1 Pillaiyar Kovi St, Kanagan,Taramani,Ch - 113', 'No 1 Pillaiyar Kovi St, Kanagan,Taramani,Ch - 113', '2009260012', '1', '2', 'upload_files/candidate_tracker/52813306719_Eswari Resume.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '13', '1970-01-01', 0.00, '02:16 PM', '', '1970-01-01', '2', 'Communication skills poor so not fit for this profile', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-26 04:38:29', 50, '2020-10-03 03:17:18', 0, NULL, 1),
(661, '', '0', '9361657707', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009270001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-27 03:34:34', 0, NULL, 0, NULL, 1),
(662, 'S.kowsalya', '4', '6380618685', '8883319616', 'sivinkowsalya@gmail.com', '1998-01-05', 22, '2', '2', 'C.sesuraj', 'Farmer', 60000.00, 1, 0.00, 15000.00, 'Kollukkadu', 'Valasaravakkam chennai', '2009280001', '1', '1', 'upload_files/candidate_tracker/25588586178_1599984033446Resume_Kowsalya.docx', NULL, NULL, '2020-10-21', 0, '', '3', '8', '2020-10-22', 120000.00, '01:00 PM', '3', '2020-11-10', '2', '10K For dhivya team. Already Attended interview for HR and rejected.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 08:46:29', 7, '2020-10-21 06:13:21', 0, NULL, 1),
(663, 'sharmila banu.m', '4', '9080606898', '7397421003', 'sharmilab031@gmail.com', '1998-11-04', 21, '2', '2', 'sheriff', 'driver', 14000.00, 1, 0.00, 12000.00, 'thiruvottriyur', 'thiruvottriyur', '2009280002', '1', '1', 'upload_files/candidate_tracker/44320399349_sharmi Resume.pdf', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10000.00, '10:25 AM', '2', '1970-01-01', '2', '10K for dhivya team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 09:50:55', 7, '2020-10-07 06:09:59', 0, NULL, 1),
(664, 'S.swetha', '4', '9884772380', '', 'Swethasuresh136@gmail.com', '2000-06-13', 20, '2', '2', 'T.suresh', 'Sales executive', 30000.00, 1, 0.00, 20000.00, 'Triplicane', 'Triplicane', '2009280003', '1', '1', 'upload_files/candidate_tracker/93203182782_RESUME SWETHA.docx', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 10:52:22', 50, '2020-09-29 04:33:24', 0, NULL, 1),
(665, 'M C utherkumar', '4', '9677240234', '6238510574', 'ukutherkumar70@gmail.com', '1988-06-04', 32, '2', '2', 'K M chinnathambi', 'Business', 2000.00, 2, 13500.00, 18000.00, 'Narippayur', 'Velachery', '2009280004', '1', '2', 'upload_files/candidate_tracker/689536153_UTHERKUMAR_Resume.docx', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '11:21 AM', '', '1970-01-01', '2', 'will not suite for CRM.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:12:19', 50, '2020-09-29 04:33:30', 0, NULL, 1),
(666, 'Daras sharmila', '5', '8939845300', '', 'Sharmiladaras@gmail.com', '1989-04-26', 31, '1', '1', 'Sathish raj', 'It', 40000.00, 2, 35000.00, 35000.00, 'Chennai', 'Chennai', '2009280005', '', '2', 'upload_files/candidate_tracker/18975154243_daras sharmi resume new.pdf', NULL, NULL, '2020-09-28', 0, '5401', '3', '8', '2020-10-05', 372000.00, '11:17 AM', '6', '2020-12-10', '1', '31K. for veben team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:13:25', 7, '2020-10-22 05:13:20', 0, NULL, 1),
(667, 'Sarath Kumar.M', '4', '7401777405', '9941680737', 'sarathkumarbcom30@gmail.com', '1997-05-30', 23, '2', '2', 'Krishna Kumar.M', 'Tea shop', 15000.00, 2, 14000.00, 17000.00, 'Tondairpet', 'Tondairpet', '2009280006', '1', '2', 'upload_files/candidate_tracker/75144925801_Sarath Kumar Resume(1)(1).pdf', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10500.00, '11:24 AM', '2', '1970-01-01', '2', '10.5K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:17:00', 7, '2020-10-07 06:14:24', 0, NULL, 1),
(668, 'Logeshwari R', '4', '8056182652', '', 'logeshwariraja1497@gmail.com', '1997-06-14', 23, '2', '2', 'S. Raja', 'Farmar', 20.00, 2, 0.00, 12000.00, 'No.1/12, Manthoppu street velam, Vellore district.', 'No.36/61Thangal erikarai street Virugambakkam.', '2009280007', '1', '1', 'upload_files/candidate_tracker/50243805291_0_LOGESHWARI R(1).pdf', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '11:24 AM', '', '1970-01-01', '2', 'not bold,no confidence', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:17:42', 50, '2020-09-29 04:33:47', 0, NULL, 1),
(669, 'K JEBADURAI', '4', '8056252058', '9080180536', 'jebadurai2196bcom@gmail.com', '1996-09-21', 24, '1', '2', 'J KOILRAJ', 'Provision Shop', 10000.00, 1, 14000.00, 17000.00, 'Chennai', 'Chennai', '2009280008', '', '2', 'upload_files/candidate_tracker/5012718756_Jeba CV.pdf', NULL, NULL, '2020-09-28', 0, 'Cafs', '5', '21', NULL, 0.00, '11:36 AM', '0', NULL, '1', 'not sustain long term, salary exp 17 k above for crm, already have offer in 2comp', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:19:38', 1, '2020-09-28 11:39:05', 0, NULL, 1),
(670, 'Balaji.s', '6', '9566207832', '', '', '1993-11-18', 26, '2', '1', 'V selvam', 'Not working', 200000.00, 0, 15000.00, 15000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2009280009', '3', '2', 'upload_files/candidate_tracker/31706013022_balaji (2) resume jjjj.docx', NULL, NULL, '2020-09-28', 0, '', '5', '19', NULL, 0.00, '11:33 AM', '0', NULL, '1', 'dress ccode not good nd lookwise also not good', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:29:23', 1, '2020-09-28 11:33:26', 0, NULL, 1),
(671, 'Yuvaraj B', '4', '9790602623', '', '143yuvayuvi@gmail.com', '2000-07-13', 20, '2', '2', 'Babu', 'Office Assistant', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009280010', '2', '1', 'upload_files/candidate_tracker/31096239489_Yuvaraj.docx', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:30:39', 50, '2020-09-29 03:59:12', 0, NULL, 1),
(672, 'Dilliraj.S', '4', '9566136194', '7358754332', 'vijaydilliraj@gmail.com', '1997-08-31', 23, '2', '2', 'Suresh. B', 'Driver', 16000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2009280011', '1', '2', 'upload_files/candidate_tracker/41222231512_resume krish.doc', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '11:48 AM', '', '1970-01-01', '1', 'not sustain long time', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:43:37', 50, '2020-09-29 04:33:57', 0, NULL, 1),
(673, 'Muthu siva . M', '4', '8189840852', '', 'muthusiva0604@gmail.com', '1998-04-06', 22, '2', '2', 'Muthukaruppan . R', 'Cooldrinks shop', 14000.00, 1, 14000.00, 16000.00, 'Chennai', 'Chennai', '2009280012', '1', '2', 'upload_files/candidate_tracker/1104469542_SIVE.doc', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '11:55 AM', '', '1970-01-01', '1', 'he dont have voice exp, also not sustain long term', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:43:47', 50, '2020-09-29 04:36:34', 0, NULL, 1),
(674, 'Sathish', '6', '9566245935', '', 'Ssathish232@gmail.com', '1993-05-24', 27, '1', '2', 'Selvam', 'Oriental Insurance', 45000.00, 1, 16000.00, 16000.00, 'Sri Kandaswamy kovil street Mata Chennai -12', 'Sri Kandaswamy Kovil Street Mata Chennai', '2009280013', '', '2', 'upload_files/candidate_tracker/36016332902_1600937327844_Income tax law and practice II(1).pdf', NULL, NULL, '2020-09-28', 0, '5626', '5', '19', NULL, 0.00, '11:53 AM', '0', NULL, '1', 'dress code not good nd no sustainability', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:44:56', 1, '2020-09-28 12:23:10', 0, NULL, 1),
(675, 'Vijay Kumar p. S', '6', '8681844146', '7397411355', 'Vijaykumarps512@gmail.com', '1996-12-23', 23, '1', '2', 'P. L. Srinivasalu', 'Hvf tank factory (retired)', 45000.00, 4, 14000.00, 16000.00, 'No:30,dasari street mettupalayam perambur ch 12', 'No:30,Dasari Street Mettupalayam Perambur Ch 12', '2009280014', '', '2', 'upload_files/candidate_tracker/44277256520_convert-jpg-to-pdf.net_2020-09-28_09-08-06 (2).pdf', NULL, NULL, '2020-09-28', 0, '5626', '5', '20', NULL, 0.00, '12:39 PM', '0', NULL, '1', 'communication not good and no convincing skills.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 11:46:08', 1, '2020-09-28 12:51:29', 0, NULL, 1),
(676, 'D. saranya', '4', '9094751791', '7397654245', 'saramanjal@gmail.com', '1996-12-19', 23, '2', '2', 'Dass', 'Security', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2009280015', '1', '1', 'upload_files/candidate_tracker/27739443563_SARANYA RESUME.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '11:51 AM', '', '1970-01-01', '2', 'not sustain long term xxamp also long distance 1.5 hrs travel', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:49:01', 50, '2020-09-29 04:34:12', 0, NULL, 1),
(677, 'Stephy princyR', '4', '9677531873', '', 'steffiprinzr2@gmail.com', '1993-11-26', 26, '2', '2', 'RubanJ', 'Retried', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2009280016', '1', '1', 'upload_files/candidate_tracker/72443944142_stef webdeveloper.docx', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '12:07 PM', '', '1970-01-01', '2', 'Not Bold ,Cant Sustain Long Term', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 11:53:30', 50, '2020-09-29 04:36:43', 0, NULL, 1),
(678, 'Mohammed Meeran', '6', '7904780799', '9884283813', 'smilewithmomeeran@gmail.com', '1990-12-28', 29, '2', '2', 'Shagul ameed', 'Finace', 5000.00, 2, 18000.00, 20000.00, 'No 894 s.a colony 9th street sarmanagar Chennai', 'No 894 S.A Colony 9th Street Sarmanagar Chennai', '2009280017', '3', '2', 'upload_files/candidate_tracker/32329531705_MEERAN.docx', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '12:29 PM', '', '1970-01-01', '1', 'no sales exp, gave negative feedback about insurance. will not suite for RM profile. No degree to.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 12:02:58', 50, '2020-09-28 01:28:55', 0, NULL, 1),
(679, 'Yogeshwari k', '4', '8072266916', '7904922151', 'ammu922016@gmail.com', '1998-10-27', 21, '1', '2', 'Kannan', 'Document executive', 15000.00, 1, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2009280018', '', '1', 'upload_files/candidate_tracker/85306822665_Resume_Yogeshwari_Format6(1).pdf', NULL, NULL, '2020-09-28', 0, '5445', '3', '8', '2020-10-01', 120000.00, '12:09 PM', '6', '2020-12-02', '2', '10K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 12:04:55', 7, '2020-10-06 03:58:32', 0, NULL, 1),
(680, 'Vajakath Ali', '4', '9042198904', '9840658509', 'Vajamech@gmail.com', '1994-12-19', 25, '2', '2', 'A.Abdul kadher', 'Tailor', 16000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280019', '1', '1', 'upload_files/candidate_tracker/34202673494_A.Vajakath_Ali_CV (13).pdf', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 11000.00, '12:12 PM', '2', '1970-01-01', '1', '11K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:07:51', 7, '2020-10-07 05:58:43', 0, NULL, 1),
(681, 'venugopal k', '4', '9094455617', '9551277985', 'venu33977@gamil.com', '1997-10-31', 22, '2', '2', 'kesavan', 'cooli', 20000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2009280020', '1', '1', 'upload_files/candidate_tracker/68846501849_Venu gopal_Resume_Format1.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '12:20 PM', '', '1970-01-01', '1', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:09:11', 50, '2020-09-29 04:34:30', 0, NULL, 1),
(682, 'J santhoshkumar', '4', '9962303391', '6369555281', 'santhoshjayakumar12@gmail.com', '1998-12-29', 21, '2', '2', 'G jayakumar', 'Cooli', 17000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280021', '1', '1', 'upload_files/candidate_tracker/67964718783_santh.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '12:19 PM', '', '1970-01-01', '2', 'will not suite for CRM.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:10:14', 50, '2020-09-29 04:34:38', 0, NULL, 1),
(683, 'Ashok Kumar', '4', '7092947309', '', '', '1997-06-07', 23, '2', '2', 'Ayyasamy', 'Building contractor', 20000.00, 2, 12000.00, 15000.00, 'No.1851, Dr.Ambedkar Nager, Adambakkam, Chennai-88', 'No.1851, Dr.Ambedkar Nager, Adambakkam, Chennai-88', '2009280022', '1', '2', 'upload_files/candidate_tracker/999486755_Ashok kumar - Resume.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '12:22 PM', '', '1970-01-01', '2', 'will not handle pressure.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:13:49', 50, '2020-09-29 04:34:45', 0, NULL, 1),
(684, 'M.R.Dhinesh', '4', '9940693595', '8072553148', 'dhinedhjeyam1996@gmail.com', '1996-11-20', 23, '2', '2', 'M.Ravi', '+2', 20000.00, 1, 12500.00, 15000.00, 'Madipakkam', 'Madipakkam', '2009280023', '1', '2', 'upload_files/candidate_tracker/7699340918_dinesh resume.docx', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '12:23 PM', '', '1970-01-01', '2', 'will not sustain', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:18:56', 50, '2020-09-29 04:34:53', 0, NULL, 1),
(685, 'Gayathri', '4', '7904922151', '8148567103', 'gayathripinky16@gmail.com', '2000-04-10', 20, '1', '2', 'Suresh', 'Catering service', 15000.00, 0, 0.00, 14000.00, 'Chennai', 'Porur', '2009280024', '', '1', 'upload_files/candidate_tracker/71902121619_gayathri resume.docx', NULL, NULL, '2020-09-28', 0, '5562', '5', '8', '1970-01-01', 0.00, '12:37 PM', '', '1970-01-01', '2', 'not selected in telephonic interview', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 12:24:02', 50, '2020-09-28 12:50:29', 0, NULL, 1),
(686, 'Felicia reni.M', '4', '9384615575', '9094749918', 'feliciareni836@gmail.com', '2000-10-09', 19, '2', '2', 'Maria Michael.V', 'Cool', 10000.00, 1, 0.00, 11000.00, 'Chennai', 'Sholinganallur', '2009280025', '1', '1', 'upload_files/candidate_tracker/16072083592_RESUME_Reni - Revised.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '01:02 PM', '', '1970-01-01', '2', 'not speaking up', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 12:39:43', 50, '2020-09-29 04:35:00', 0, NULL, 1),
(687, 'Keerthana.N', '13', '9976596449', '9443571514', 'nskeerthana27@gmail.com', '1997-12-30', 22, '2', '2', 'C. Namburajan', 'BSNL employee', 35000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2009280026', '1', '1', 'upload_files/candidate_tracker/47135186094_mine2.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '26', '1970-01-01', 0.00, '01:08 PM', '', '1970-01-01', '2', 'she dont know basics', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:04:36', 50, '2020-09-29 04:35:08', 0, NULL, 1),
(688, 'M.Ajay', '4', '7867981574', '8903540574', 'ajaym06021999@gmail.com', '1999-02-06', 21, '2', '2', 'Murugesan', 'Daily wages', 10000.00, 1, 0.00, 10000.00, 'Kanyakumari district', 'Velachery', '2009280027', '1', '1', 'upload_files/candidate_tracker/65428852759_1601284894341_resume.pdf', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '02:09 PM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:06:59', 50, '2020-09-29 04:30:08', 0, NULL, 1),
(689, 'Mahalakshmi.S', '13', '7305121567', '9976596449', 'Smahalakshmi197@gmail.com', '1997-11-22', 22, '2', '2', 'Subramaniyan.k', 'Driver', 20000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2009280028', '1', '1', 'upload_files/candidate_tracker/96198658021_RESUME....docx', NULL, NULL, '2020-09-28', 0, '', '5', '26', '1970-01-01', 0.00, '01:20 PM', '', '1970-01-01', '2', 'She dont know basics of c and c++', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:12:17', 50, '2020-09-29 04:35:17', 0, NULL, 1),
(690, 'Pradeep R', '4', '9043503055', '7904787212', 'Pradeepstr6@gmail.com', '1992-12-22', 27, '2', '2', 'RadhaKrishnan', 'late', 10000.00, 2, 14500.00, 18000.00, '19 B Lakshmane servai lane thirupparankundram', 'No 80 kattabomman street taramani chennai', '2009280029', '1', '2', 'upload_files/candidate_tracker/28236685953_1_1600611956963_CURRICULAM VITAE2.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '01:27 PM', '', '1970-01-01', '1', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:24:02', 50, '2020-09-29 04:35:25', 0, NULL, 1),
(691, 'aravindan', '4', '8124281808', '8610050632', 'aravindan8124@gmail.com', '1995-09-20', 25, '2', '2', 'balamurugan', 'vegetable shop', 18000.00, 1, 12000.00, 14000.00, 'no: 80 kattapoman street , Tharamani, chennai', 'no:80 kattapoman street, Tharamani', '2009280030', '1', '2', 'upload_files/candidate_tracker/27702836591_1_my resume 2 (1).pdf', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '01:45 PM', '', '1970-01-01', '1', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 01:24:19', 50, '2020-09-29 04:35:35', 0, NULL, 1),
(692, 'Ayyasamy .R', '4', '9025337729', '7200605980', 'ayyasamy1999@gmail.com', '1999-08-20', 21, '2', '2', 'Ramasamy', 'Farmer', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280031', '1', '1', 'upload_files/candidate_tracker/26602688197_Ayyasamy.R.docx', NULL, NULL, '2020-09-28', 0, '', '5', '13', '1970-01-01', 0.00, '03:15 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:18:34', 50, '2020-09-29 04:35:42', 0, NULL, 1),
(693, 'P saranraj', '7', '9789910809', '8248987071', 'Vjsaran0110@gmail.com', '1993-10-01', 26, '2', '2', 'N panner selvam', 'Auto driver', 10000.00, 1, 16000.00, 20000.00, 'No2006 3rd Street Anna nagar ch-40', 'No2006 3rd Street Anna nagar ch-40', '2009280032', '1', '2', 'upload_files/candidate_tracker/50196861696_0_1584617347592_RESUME HD1.2 - Copy.docx', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '02:41 PM', '', '1970-01-01', '1', 'already Attended interview on sep 2020, no knowledge in MF, poor eng. comm. will not suite for our process.', '7', '2', '', '', '', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:19:24', 7, '2021-03-31 11:48:42', 0, NULL, 1),
(694, 'Shivasundar', '4', '8825926214', '', 'shivasundar315@gmail.com', '1999-06-03', 21, '2', '2', 'Rajendran', 'Business executive', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280033', '1', '1', 'upload_files/candidate_tracker/9534390510_Shivasundar Copy Copy_Resume_Format4.pdf', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10500.00, '02:26 PM', '2', '1970-01-01', '1', '10.5K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:23:20', 7, '2020-10-07 06:15:38', 0, NULL, 1),
(695, 'Deva chanthru A', '4', '9025008462', '9092155756', 'devachanthru8555@gmail.com', '1999-04-16', 21, '2', '2', 'Ayyanar', 'Farmer', 10000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2009280034', '1', '1', 'upload_files/candidate_tracker/13660381875_deva.docx', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10000.00, '03:00 PM', '2', '1970-01-01', '1', '10K for health team.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:29:48', 7, '2020-10-07 06:15:58', 0, NULL, 1),
(696, 'Ramya K', '4', '7538857724', '', 'ramyamswhr2019@gmail.com', '1998-06-11', 22, '2', '2', 'Kalaivanan A', 'Car Servicer', 20000.00, 1, 9000.00, 12000.00, 'Ramanathapuram', 'Chennai', '2009280035', '1', '2', 'upload_files/candidate_tracker/81744466568_Ramya Resume.pdf', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '02:40 PM', '', '1970-01-01', '2', 'she is interested in hr traniee, also not sustain long term', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 02:34:59', 50, '2020-09-29 04:36:12', 0, NULL, 1),
(697, '', '0', '7022330009', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009280036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-28 03:05:35', 0, NULL, 0, NULL, 1),
(698, 'Indhumathi', '4', '9629647066', '8072673087', 'indhumurugesan1004@gmail.com', '1997-04-10', 23, '2', '2', 'Murugesan', 'Farmer', 6000.00, 1, 0.00, 15000.00, 'Erode', 'Arumbakkam', '2009280037', '1', '2', 'upload_files/candidate_tracker/12722679920_Indhumathi Resume (R).pdf', NULL, NULL, '2020-09-28', 0, '', '5', '21', '1970-01-01', 0.00, '03:17 PM', '', '1970-01-01', '2', 'She Is Searching Mail Process xxamp Also Expected 14 K Above For Crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 03:14:34', 50, '2020-09-29 04:36:22', 0, NULL, 1),
(699, 'Nandha kumar', '4', '9176120578', '', 'nandhatamil1234@gmail.com', '1998-06-10', 22, '2', '2', 'Srinivasan', 'Farmer', 8000.00, 3, 13000.00, 15000.00, 'Chennai', 'Chennai', '2009280038', '1', '2', 'upload_files/candidate_tracker/10594318077_NANDHA KUMAR resume.docx', NULL, NULL, '2020-09-28', 0, '', '3', '8', '2020-10-05', 10500.00, '04:17 PM', '2', '1970-01-01', '2', '10.5K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-28 03:35:32', 7, '2020-10-07 06:16:12', 0, NULL, 1),
(700, 'E.BAlakumar', '6', '9962204014', '', 'Prakashdhanush1997@gmail.com', '1997-01-28', 23, '1', '2', 'S.Elumalai', 'Vegetable merchant', 10000.00, 1, 13000.00, 16000.00, 'Chennai', 'Chennai', '2009290001', '', '2', 'upload_files/candidate_tracker/33182296468_BALAKUMAR (2)-converted.docx', NULL, NULL, '2020-09-29', 0, '5625', '5', '24', NULL, 0.00, '10:55 AM', '0', NULL, '1', 'Sustainability Is Doubt', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 10:51:50', 1, '2020-09-29 10:58:30', 0, NULL, 1),
(701, 'arun kumar', '5', '9597408729', '9003152857', 'arunkumarmanoharan1992@gmail.com', '1992-06-14', 28, '2', '2', 'manoharan', 'farmer', 9000.00, 0, 19500.00, 23000.00, 'theni', 'chennai', '2009290002', '1', '2', 'upload_files/candidate_tracker/49003535757_coolpad.pdf', NULL, NULL, '2020-09-29', 0, '', '3', '8', '2020-10-05', 276000.00, '11:45 AM', '6', '2021-03-26', '1', '23K, fro RM. shortlisted by sriram', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 10:52:13', 7, '2020-10-22 05:14:11', 0, NULL, 1),
(702, 'Swetha', '4', '9940168581', '', 'Swetha.viswanathan1995@gmail.com', '1995-04-01', 25, '2', '1', 'Durgai selvan', 'Special assistant in UCO bank', 32000.00, 0, 15000.00, 20000.00, 'Tnagar', 'Tnagar', '2009290003', '1', '2', 'upload_files/candidate_tracker/81405249137_swetha resume updated 1.docx', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 10:57:21', 50, '2020-09-29 04:30:36', 0, NULL, 1),
(703, 'Durgadevi.R', '4', '9943071429', '9025872050', 'durgadd1429@gmail.com', '1999-08-29', 21, '2', '2', 'Ramesh', 'Late', 20000.00, 1, 13800.00, 16000.00, 'Chennai', 'Chennai', '2009290004', '1', '2', 'upload_files/candidate_tracker/82618125565_DURGA DEVI R.docx', NULL, NULL, '2020-09-29', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not sustain long term xxamp also expecting high salary 18k for crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 11:02:46', 50, '2020-09-29 04:30:44', 0, NULL, 1),
(704, 'Indhumathi N', '4', '8098902977', '9626930291', 'mathi25indhu@gmail.com', '1999-04-18', 21, '2', '2', 'Nagarajan S G', 'Late', 13800.00, 2, 13800.00, 16000.00, 'Chennai', 'Chennai', '2009290005', '1', '2', 'upload_files/candidate_tracker/12533595446_resume new 2020-converted (1).pdf', NULL, NULL, '2020-09-29', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not sustain long term, xxamp also expecting high salry for crm above 18k ...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 11:04:30', 50, '2020-09-29 04:30:52', 0, NULL, 1),
(705, 'Dharani v', '13', '8610986251', '6381776855', 'Veeradharani98@gmail.com', '1998-01-21', 22, '2', '2', 'Veeramani G', 'Government job', 18000.00, 1, 0.00, 20000.00, '2/35,West St,kattakudi,thiruvarur(dt)', 'Near by j j police station', '2009290006', '1', '1', 'upload_files/candidate_tracker/65554290840_dharanisailesh.pdf', NULL, NULL, '2020-09-29', 0, '', '5', '27', '1970-01-01', 0.00, '11:18 AM', '', '1970-01-01', '2', 'not interested for bond.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 11:09:55', 50, '2020-09-29 04:40:23', 0, NULL, 1),
(706, '', '0', '9514482681', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 11:11:59', 0, NULL, 0, NULL, 1),
(707, 'Arunkumar', '4', '8668141853', '', 'Arunzpulsar@gmail.com', '1997-05-12', 23, '2', '2', 'P nanda gopal', 'Tnsc bank manager', 60000.00, 1, 0.00, 11000.00, 'Chennai', 'Chennai', '2009290008', '1', '1', 'upload_files/candidate_tracker/73109711893_Arun resume (1).docx', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', 'NOT SUITABLE FOR PRESSURE HANDLING', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 11:42:03', 50, '2020-09-29 04:31:09', 0, NULL, 1),
(708, 'Sangavi', '4', '9962663838', '9500075354', 'san95.sangavi@gmail.com', '1995-08-15', 25, '2', '2', 'Mohan', 'Chennai port trust', 900000.00, 1, 13500.00, 16000.00, 'No TV/8,Chennai port trust Villa quaters', 'No TV 8 Chennai port trust Villa quaters', '2009290009', '1', '2', 'upload_files/candidate_tracker/26989007885_sangavi updated cv-1.pdf', NULL, NULL, '2020-09-29', 6, '', '5', '13', '1970-01-01', 0.00, '12:07 PM', '', '1970-01-01', '2', 'not fit for tele sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:02:07', 50, '2020-09-29 04:31:17', 0, NULL, 1),
(709, '', '0', '7358057407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 12:05:44', 0, NULL, 0, NULL, 1),
(710, 'Hari priya J', '4', '7871566007', '9551483592', 'priya81405.j@gmail.com', '1998-04-06', 22, '2', '2', 'B Jagadeeswaran', 'Engineer', 10000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2009290011', '1', '1', 'upload_files/candidate_tracker/13743688426_imagepdf-1-1.pdf', NULL, NULL, '2020-09-29', 0, '', '3', '8', '2020-10-05', 10000.00, '12:24 PM', '2', '1970-01-01', '2', '10K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:21:16', 7, '2020-10-07 06:16:59', 0, NULL, 1),
(711, 'Sandhiya V', '4', '6374865070', '8678991095', 'sandhiyavijayakumar29@gmail.com', '1999-10-29', 20, '2', '2', 'Vijayakumar', 'Driver', 15000.00, 1, 0.00, 14000.00, 'Mylapore', 'Mylapore', '2009290012', '1', '1', 'upload_files/candidate_tracker/54881652651_9_Sandhiya resume.pdf', NULL, NULL, '2020-09-29', 0, '', '3', '8', '2020-10-05', 10000.00, '12:25 PM', '2', '1970-01-01', '2', '10K for Muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:23:13', 7, '2020-10-07 06:17:31', 0, NULL, 1),
(712, 'Harini', '4', '6374757321', '8056106626', 'Sathishharini36@gmail.com', '1997-10-20', 22, '2', '1', 'S. Sathish Kumar', 'Zonal principal', 25000.00, 1, 0.00, 13000.00, 'Manali new town', 'Parry\'s', '2009290013', '1', '1', 'upload_files/candidate_tracker/60589017254_CURRICULUM VITAE HARINI - Google Docs.pdf', NULL, NULL, '2020-09-29', 0, '', '6', '0', NULL, 0.00, '01:13 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:30:27', 1, '2020-09-29 01:19:24', 0, NULL, 1),
(713, 'Gomathi.M', '4', '9884876850', '7448553304', 'mohangomathi97@gmail.com', '1997-10-22', 22, '2', '2', 'M.sumathi', 'Coppular', 20000.00, 2, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2009290014', '1', '1', 'upload_files/candidate_tracker/74231767126_Gomathi.docx', NULL, NULL, '2020-09-29', 0, '', '5', '13', '1970-01-01', 0.00, '12:40 PM', '', '1970-01-01', '2', 'she is not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:35:22', 50, '2020-09-29 04:31:45', 0, NULL, 1),
(714, 'VIDHYA VANMATHY S', '4', '9080295232', '', '', '2000-02-14', 20, '2', '2', 'Saravanan (late) mother-malathi', 'Labour', 7000.00, 1, 0.00, 12000.00, 'Chennai', 'No.6/13 Tondiar Nagar,Tondiar Pet , Chennai-600081', '2009290015', '1', '1', 'upload_files/candidate_tracker/30879708532_VIDHYA VANMATHY Resume.docx', NULL, NULL, '2020-09-30', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for tele sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:49:29', 50, '2020-09-30 01:22:43', 0, NULL, 1),
(715, 'Anitha .E', '4', '8870062486', '9962703557', 'anitharajan91128@gmail.com', '1997-12-12', 22, '2', '2', 'A.s.Emarajan', 'Own business', 35000.00, 2, 0.00, 11000.00, 'Kodugaiyur', 'Kodugaiyur', '2009290016', '1', '1', 'upload_files/candidate_tracker/47551112581_E.ANITHA.doc', NULL, NULL, '2020-09-29', 0, '', '6', '0', NULL, 0.00, '01:06 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:51:31', 1, '2020-09-29 01:18:18', 0, NULL, 1),
(716, 'arivuselvan gnanaprakasam', '4', '7397068159', '8098212166', 'arivurahi12@gmail.com', '1999-06-03', 21, '2', '2', 's gnanprakasam', 'cooli', 15000.00, 1, 0.00, 12000.00, 'vadapalani', 'vadapalani', '2009290017', '1', '1', 'upload_files/candidate_tracker/24772690291_ARIVU RESUME.docx', NULL, NULL, '2020-09-30', 0, '', '5', '14', '1970-01-01', 0.00, '01:13 PM', '', '1970-01-01', '2', 'looking for non voice process ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 12:52:39', 50, '2020-09-30 01:24:33', 0, NULL, 1),
(717, 'M. Jothika', '4', '9710551757', '', 'jothikamani112@gmail.com', '2000-06-12', 20, '2', '2', 'R. Mani', 'Security', 8000.00, 3, 0.00, 11000.00, 'Chennai', 'Chennai', '2009290018', '1', '1', 'upload_files/candidate_tracker/86896547704_resume.j.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '41', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Will not sustain long travel distance,dependent on her friend', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 01:20:46', 50, '2020-09-30 09:33:45', 0, NULL, 1),
(718, 'Mohanapriya G', '4', '9551364039', '9345363759', 'mohanapriyas2703@gmail.com', '2002-03-27', 18, '2', '2', 'Sabarinathan G', 'Painter', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chrompet', '2009290019', '1', '1', 'upload_files/candidate_tracker/40835893711_IMG-20200901-WA0003.pdf', NULL, NULL, '2020-09-30', 0, '', '3', '8', '2020-10-05', 10500.00, '11:00 AM', '3', '2021-02-02', '2', '10.5K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 01:24:27', 7, '2020-10-06 12:43:36', 0, NULL, 1),
(719, 'BARATH.K', '5', '9080605104', '7824042335', 'sasibarath12@gmail.com', '1995-02-24', 25, '2', '2', 'Kothandaraman', 'Business', 15000.00, 0, 12900.00, 20000.00, '11/306 j.j nagar mogappair east', '11/306 j.j nagar mogappair east', '2009290020', '3', '2', 'upload_files/candidate_tracker/62408858657_Barath -3.pdf', NULL, NULL, '2020-09-29', 1, '', '3', '18', '2020-10-12', 18000.00, '01:41 PM', '', '1970-01-01', '1', 'check for RM', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 01:35:28', 7, '2020-10-12 04:31:15', 0, NULL, 1),
(720, '', '0', '9791026569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 01:38:02', 0, NULL, 0, NULL, 1),
(721, 'Ramachandran . S', '4', '8056218721', '9514956425', 'ajithram415@gmail.com', '1998-01-18', 22, '2', '2', 'Valli', 'House wife', 75000.00, 0, 11000.00, 11000.00, 'Chennai', 'Chennai kilpauk', '2009290022', '1', '2', 'upload_files/candidate_tracker/54423311229_0_Raam(2).pdf', NULL, NULL, '2020-09-30', 15, '', '5', '41', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'will not sustain', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 01:47:47', 50, '2020-09-30 12:06:10', 0, NULL, 1),
(722, 'Roshini', '11', '7397264176', '9789090715', 'roshinik444@gmail.com', '1997-11-27', 22, '2', '2', 'kumar', 'general manager', 120000.00, 1, 1.40, 2.20, 'chennai', 'chennai', '2009290023', '1', '2', 'upload_files/candidate_tracker/47635634390_1594360230738Resume_Roshini.docx', NULL, NULL, '2020-10-03', 20, '', '5', '8', NULL, 0.00, '03:00 PM', '0', NULL, '1', '20 days notice yet to put paper and will nit sustain. exp 50% hike + inc.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 02:51:01', 1, '2020-09-29 04:09:12', 0, NULL, 1),
(723, 'J Divyalakshmi', '4', '9003203742', '', 'j.divyalakshmi221@gmail.com', '2000-01-22', 20, '2', '2', 'Jaisankar', 'Security', 75000.00, 1, 0.00, 11000.00, 'Chennai', 'Chennai', '2009290024', '1', '1', 'upload_files/candidate_tracker/46068976315_divyanewprint.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '41', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not sustain,will not handle pressure,will not sustain', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 02:51:14', 50, '2020-09-30 09:33:55', 0, NULL, 1),
(724, 'K.m.Priyanka', '11', '9841246723', '9677174457', 'priyankam429@gmail.com', '1985-11-30', 34, '2', '2', 'K.Muthuramalingam (Late)', 'Advocate', 30000.00, 0, 360000.00, 468000.00, 'Chennai', 'Chennai', '2009290025', '1', '2', 'upload_files/candidate_tracker/99682650430_Priyanka CV - Updated.doc', NULL, NULL, '2020-10-03', 7, '', '5', '8', NULL, 0.00, '02:30 PM', '0', NULL, '2', 'she will not suite for us and will not suatain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 03:18:15', 1, '2020-09-29 03:59:38', 0, NULL, 1),
(725, '', '0', '9940370307', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 03:24:59', 0, NULL, 0, NULL, 1),
(726, 'Venkattgiri.v', '4', '8344413493', '', 'venkattagiri181@gmail.com', '1996-08-13', 24, '2', '2', 'Vedharaman.v', 'he was bulding contractor', 40000.00, 0, 0.00, 13000.00, '24/9kuayaver street nagore', 'k.k.nagar', '2009290027', '1', '1', 'upload_files/candidate_tracker/25675161812_1576740820076_0_venkattagiri Resume.docx', NULL, NULL, '2020-09-30', 0, '', '3', '8', '1970-01-01', 10500.00, '01:40 PM', '2', '1970-01-01', '1', '10.5K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 03:45:33', 7, '2020-10-06 12:44:16', 0, NULL, 1),
(727, 'Srinivasan', '5', '9941982651', '6381431834', 'Shanthiaravindh499@gmail.com', '1994-07-26', 26, '2', '2', 'Ravikumar', 'Business', 15000.00, 0, 13500.00, 18000.00, '32/52 mufti Amerulla Street Triplicane Chennai', '32/52 Mufti Amerulla Street Triplicane Chennai', '2009290028', '8', '2', 'upload_files/candidate_tracker/27436993593_1590157344492_1590157080305_1583832873280_1583832862531_1583832855592_1583832845215_1583832841649_today update srinivasan.docx', NULL, NULL, '2020-10-05', 0, '', '5', '36', NULL, 0.00, '10:48 AM', '0', NULL, '1', 'Not fit for RM', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 03:57:16', 1, '2020-10-05 10:50:28', 0, NULL, 1),
(728, 'Abdul Gaffoor J', '11', '7010229252', '9791755837', 'abdul.gaffoor8@gmail.com', '1990-05-23', 30, '2', '1', 'Fathima Akthar', 'Business Analyst', 40000.00, 1, 317000.00, 325000.00, 'Chennai', 'Trichy', '2009290029', '1', '2', 'upload_files/candidate_tracker/97493392723_Abdul Gaffoor J - Updated - Profile.doc', NULL, NULL, '2020-09-30', 13, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 04:05:41', 50, '2020-09-30 04:49:21', 0, NULL, 1),
(729, 'mohamed abdullah shariff s', '11', '7200751775', '', 'abdulshariff95@gmail.com', '1995-09-24', 25, '2', '2', 'mohamed saifullah shariff a', 'security', 30000.00, 1, 0.00, 28000.00, 'ayanavaram', 'ayanavaram', '2009290030', '1', '1', 'upload_files/candidate_tracker/39601181185_Abdul Resume 1.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '53', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'He dont have experience n Hr profile, hvng experience n NV oly. Moreover he will not suit for RE nd CRM also.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 04:46:48', 50, '2020-10-01 10:53:27', 0, NULL, 1),
(730, 'K. Keerthana', '4', '7550263720', '9445057562', 'Keerthana12kumar@gmail.com', '1997-10-12', 22, '2', '2', 'R. J Kumar', 'Driver', 80000.00, 1, 8000.00, 10000.00, 'Rampuram', 'Rampuram', '2009290031', '2', '2', 'upload_files/candidate_tracker/51507537394_CV Keerthana (2).pdf', NULL, NULL, '2020-09-30', 0, '', '5', '41', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '2022 graduate correspondence,will not sustain,can not handle pressure,not convincing and not a good listener', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 05:09:55', 50, '2020-09-30 11:36:02', 0, NULL, 1),
(731, 'M Sarath Kumar', '4', '9940201156', '7904694351', 'Spreak1910@gmail.com', '1991-10-19', 28, '2', '2', 'Mohan G', 'L.I.C Retried', 40000.00, 3, 12000.00, 13000.00, 'chennai broadway', 'chennai broadway', '2009290032', '1', '2', 'upload_files/candidate_tracker/29987997505_Resume_2020aug.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '14', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'expecting high salary he is not even to sustain . not suitable for voice', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 05:11:17', 50, '2020-09-30 09:35:12', 0, NULL, 1),
(732, '', '0', '6381060390', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 05:17:20', 0, NULL, 0, NULL, 1),
(733, '', '0', '8825941332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290034', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 05:28:10', 0, NULL, 0, NULL, 1),
(734, 'balaji v m', '11', '7200080255', '', 'balajimaikadasivam@gmail.com', '1987-08-10', 33, '2', '2', 'maikandasivam v s', 'nil', 25000.00, 0, 250000.00, 300000.00, 'chennai', 'chennai', '2009290035', '1', '2', 'upload_files/candidate_tracker/11395264698_Balaji V M.doc', NULL, NULL, '2020-10-01', 0, '', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He is doing freelance,he is looking for a job because of his marriage and will not sustain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 05:47:53', 1, '2020-09-29 05:52:13', 0, NULL, 1),
(735, 'Dinesh kumar', '4', '6379432022', '9176167304', 'Velmurugandinesh47@gmail.com', '1999-08-18', 21, '2', '2', 'Velmurugan.S', 'Tea stall', 10000.00, 1, 0.00, 15000.00, 'Ullagaram, madippakkam', 'Ullagaram, madippakkam', '2009290036', '1', '1', 'upload_files/candidate_tracker/31729227637_Dinesh - Resume-1.doc', NULL, NULL, '2020-10-01', 0, '', '3', '8', '2020-10-08', 120000.00, '11:00 AM', '6', '2020-11-30', '1', '10K. for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 05:52:54', 7, '2020-10-08 03:12:53', 0, NULL, 1),
(736, 'raghavi.r', '11', '7092362904', '', 'raghavir176@gmail.com', '1997-10-03', 22, '2', '2', 'ravichandran.m', 'fitter', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2009290037', '1', '1', 'upload_files/candidate_tracker/35251302015_resumess 1.docx', NULL, NULL, '2020-10-05', 0, '', '5', '41', NULL, 0.00, '03:00 PM', '0', NULL, '1', 'Pursuing MBA Corres Saturday and Sunday classes', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 06:02:34', 1, '2020-09-30 01:18:06', 0, NULL, 1),
(737, 'A. Nisha', '11', '6381497745', '9884643037', 'angelnisha1272000@gmail.com', '2000-07-12', 20, '2', '2', 'D. Andrews', 'Driver', 15000.00, 1, 0.00, 15000.00, 'No:15/8 Murugesan street Shenoy nagar Chennai -30', 'No:15/8 Murugesan street Shenoy nagar Chennai -30', '2009290038', '1', '1', 'upload_files/candidate_tracker/6304404997_Nisha Andrews resume (1).docx', NULL, NULL, '2020-10-03', 0, '', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'communication not good.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 06:13:34', 1, '2020-09-29 06:30:41', 0, NULL, 1),
(738, 'selva jayanthi t', '11', '8667757559', '', 'jayanthiselva97@gmail.com', '1997-09-21', 23, '2', '2', 'thangavel c', 'sales agent', 15000.00, 1, 0.00, 20000.00, 'kolathur', 'kolathur', '2009290039', '1', '1', 'upload_files/candidate_tracker/99025834565_common resume(3).pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:51 AM', '', '1970-01-01', '1', 'hold for intern but not turned up', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 06:24:47', 50, '2020-10-03 11:59:02', 0, NULL, 1),
(739, 'Chandru', '11', '9442954699', '', 'chandru24sss@gmail.com', '1988-10-24', 31, '2', '2', 'Perumalsamy', 'He is past', 22000.00, 1, 264000.00, 320000.00, 'Chennai', 'Chennai', '2009290040', '1', '2', 'upload_files/candidate_tracker/70437288120_Chandru Resume.docx', NULL, NULL, '2020-10-01', 3, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Long distance, nt suit fr HR rec, dnt hve portal knowledge also', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 06:47:21', 1, '2020-09-29 10:42:24', 0, NULL, 1),
(740, '', '0', '6383180233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290041', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 07:10:59', 0, NULL, 0, NULL, 1),
(741, '', '0', '8667388737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009290042', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-29 08:54:37', 0, NULL, 0, NULL, 1),
(742, 'r prem kumar', '20', '9840877352', '', 'ramesh.premkumar@gmail.com', '1988-11-29', 31, '2', '1', 'v annapurarni', 'executive', 50000.00, 1, 35000.00, 35000.00, 'chennai', 'chennai', '2009290043', '1', '2', 'upload_files/candidate_tracker/33537152788_Prem Kumar Resume-02.08.2020.pdf', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '10:01 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-29 09:16:51', 50, '2020-10-03 05:35:34', 0, NULL, 1),
(743, 'Prathiksha', '4', '8883013491', '6385845925', 'prathikshapreethi40@gmail.com', '1999-04-14', 21, '2', '2', 'Sivanantham', 'Former', 10000.00, 0, 0.00, 11000.00, '147, East st, kothattai, cuddalor', '7, thukkaram st, t.nagar', '2009300001', '1', '1', 'upload_files/candidate_tracker/56222419640_Preethi Resume.docx', NULL, NULL, '2020-09-30', 0, '', '3', '8', '1970-01-01', 10500.00, '12:37 PM', '2', '1970-01-01', '2', '10.5K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 08:50:06', 7, '2020-10-06 12:44:52', 0, NULL, 1),
(744, 'Vignesh Franklin c', '20', '7305575853', '7502620533', 'vicam101012@gmail.com', '1997-01-10', 23, '2', '2', 'Chinnaparaj', 'Cooli', 48000.00, 2, 0.00, 13000.00, 'Cuddalore District', 'Cuddalore District', '2009300002', '1', '1', 'upload_files/candidate_tracker/10839538576_15UCO54.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '14', '1970-01-01', 0.00, '11:48 AM', '', '1970-01-01', '2', 'looking for data entry ..not fit for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 10:44:42', 50, '2020-09-30 01:34:12', 0, NULL, 1),
(745, 'F.UMAR FAROOK', '4', '9087468459', '', 'Farooku05@gmail.com', '2000-03-12', 20, '1', '2', 'FAIZAL RAHMAN K', 'Business', 15000.00, 1, 0.00, 10000.00, 'No-9 d-block ice house', 'Triplicane, chennai', '2009300003', '', '1', 'upload_files/candidate_tracker/52711045092_umar new resume.pdf', NULL, NULL, '2020-09-30', 0, '5618', '3', '8', '1970-01-01', 10000.00, '11:08 AM', '2', '2020-10-06', '1', '10K for Priyanka jenit', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 10:59:45', 7, '2020-10-06 01:10:43', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(746, 'Thameem Ansari', '6', '9080766240', '9941255270', 'ansarithameem004@gmail.com', '1999-04-03', 21, '1', '2', 'Rahim', 'Police', 30000.00, 2, 0.00, 10000.00, 'D-9 ice house Police quarters,Dr.besant road', 'D-9 ice house Police quarters,Dr.besant road', '2009300004', '', '1', 'upload_files/candidate_tracker/19153111082_THAMEEM new resume.pdf', NULL, NULL, '2020-09-30', 0, '5618', '5', '15', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'he will not sustain', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 10:59:49', 8, '2020-09-30 12:31:31', 0, NULL, 1),
(747, 'dhilip anand', '11', '9790782841', '8610755794', 'dhilip.kkb@gmail.com', '1987-10-24', 32, '2', '1', 'k k baratharajan', 'business', 1500000.00, 1, 750000.00, 1000000.00, 'chennai', 'chennai', '2009300005', '1', '2', 'upload_files/candidate_tracker/49046420116_CV-Dhilip Payroll Lead.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '53', NULL, 0.00, '02:33 PM', '0', NULL, '1', 'Good n communication, hvng knowledge in all fields, he s suitable for hr but expected high salary around 60k', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 11:29:29', 1, '2020-09-30 11:34:07', 0, NULL, 1),
(748, 'Bharathi', '4', '7299002052', '9840883075', 'bharathis.dec06@gmail.com', '1994-12-06', 25, '2', '2', 'Shankar', 'Cooli', 12000.00, 2, 15200.00, 18000.00, 'Kattupakkam, poonamalle', 'Kattupakkamm , poonamalle', '2009300006', '1', '2', 'upload_files/candidate_tracker/75329249991_Bharathi Resume final 4.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '14', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'Expecting high salary and long distance ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 11:33:39', 50, '2020-10-03 10:32:25', 0, NULL, 1),
(749, 'Nirmala devi', '4', '8870059808', '8428877753', 'Sainimi1711@gmail.com', '1994-09-11', 26, '2', '2', 'Srinivasan', 'Driver', 15000.00, 1, 15100.00, 18000.00, 'Urapakkam , chennai', 'Urapakkam , chennai', '2009300007', '1', '2', 'upload_files/candidate_tracker/53215037779_45056.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'ok but expected salary high', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 11:33:52', 50, '2020-10-03 10:32:35', 0, NULL, 1),
(750, '', '0', '8344413494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 11:41:18', 0, NULL, 0, NULL, 1),
(751, 'Praveen S', '6', '8825979893', '', 'praveensebastin16@gmail.com', '1999-09-16', 21, '2', '2', 'Sebastian Raj S', 'Business', 40000.00, 1, 0.00, 2.40, 'No:771,15th Street,sastri nagar, Chennai-39', 'No:771,15th Street,Sastri Nagar, Chennai-39', '2009300009', '1', '1', 'upload_files/candidate_tracker/24291036473_praveen resume updated-converted.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '19', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'sustainability zero', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 11:45:13', 8, '2020-09-30 01:41:35', 0, NULL, 1),
(752, 'K.Anusuya', '4', '7358672990', '8925601614', 'Anusuyakarnan99@gmail.com', '1999-08-15', 21, '2', '2', 'S.Karnan', 'Collie', 75000.00, 1, 0.00, 12000.00, 'Chennai', 'Saidapet', '2009300010', '1', '1', 'upload_files/candidate_tracker/25816666757_1596100948108Resume_Anusuya.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '13', '1970-01-01', 0.00, '12:24 PM', '', '1970-01-01', '2', 'not suitable for tele sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:05:36', 50, '2020-09-30 01:09:00', 0, NULL, 1),
(753, 'Ranjitha.V', '4', '7305341149', '7338916381', 'Vranjitha96@gmail.com', '1996-05-30', 24, '2', '2', 'Veeramani.S', 'Driver', 15000.00, 2, 0.00, 11000.00, 'Velachery', 'Velachery', '2009300011', '1', '1', 'upload_files/candidate_tracker/39008928671_RANJITHA RESUME.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '13', '1970-01-01', 0.00, '12:29 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:06:31', 50, '2020-09-30 12:40:03', 0, NULL, 1),
(754, '', '0', '9025245364', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 12:13:05', 0, NULL, 0, NULL, 1),
(755, 'M. Bhavani', '4', '6382032241', '8056250225', 'bm1861688@gmail.com', '1999-10-19', 20, '2', '2', 'Murugan', 'No', 8000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai saidapet', '2009300013', '1', '1', 'upload_files/candidate_tracker/69585679903_new resume.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '14', '1970-01-01', 0.00, '12:25 PM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:19:19', 8, '2020-09-30 01:07:01', 0, NULL, 1),
(756, 'Geetha.s', '11', '9942106253', '9566538085', 'sgeethanpr95@gmail.com', '1995-08-02', 25, '2', '1', 'Sasikumar', 'Software engineer', 41000.00, 1, 14000.00, 20000.00, 'Chennai', 'Chennai', '2009300014', '1', '2', 'upload_files/candidate_tracker/70855947328_Geetha_Resume.docx', NULL, NULL, '2020-10-02', 30, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:22:10', 1, '2020-09-30 12:38:27', 0, NULL, 1),
(757, 'Devi prasanna P', '11', '8056167952', '9677285235', 'devigreen55@yahoo.com', '1983-07-05', 37, '2', '1', 'Prabaharan', 'Civil engineer', 20000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2009300015', '1', '2', 'upload_files/candidate_tracker/37717515176_DEVIPRASANNA....laks.doc', NULL, NULL, '2020-10-01', 20, '', '5', '8', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', 'will not suite for this profile', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:29:32', 52, '2020-12-14 10:34:30', 0, NULL, 1),
(758, 'Banu priya', '4', '9092948974', '8681874325', 'Priyavanam22@gmail.com', '1994-11-22', 25, '2', '2', 'Karuppiah', 'Own business', 25000.00, 2, 15100.00, 18000.00, 'Maduravoyal, chennai', 'Maduravoyal ,chennai', '2009300016', '1', '2', 'upload_files/candidate_tracker/66283084432_2020 banu.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '14', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'expecting high salary 18k to 20k not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:40:30', 50, '2020-10-03 10:32:41', 0, NULL, 1),
(759, 'Nithishkumar S', '4', '9940681514', '', '', '2000-05-18', 20, '2', '2', 'Selvaraj P', 'Business', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2009300017', '1', '1', 'upload_files/candidate_tracker/46690243292_snkumar resume.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'NOT SUITABLE FOR TELESALES', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 12:54:09', 50, '2020-10-01 09:31:54', 0, NULL, 1),
(760, 'Supraja MC', '11', '9742221931', '9900414944', 'supraja.eh@gmail.com', '1990-08-02', 30, '2', '1', 'Aravindhan R', 'Housewife', 50000.00, 1, 0.00, 4.00, 'Bangalore', 'Bangalore', '2009300018', '1', '1', 'upload_files/candidate_tracker/14755468526_IT Project Coordinator.pdf', NULL, NULL, '2020-10-01', 0, '', '6', '0', NULL, 0.00, '12:04 PM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:02:22', 1, '2020-09-30 01:04:48', 0, NULL, 1),
(761, 'Renukadevi Muthukumar', '6', '9710966064', '7397386286', 'renukadevimsa@gmail.com', '1998-10-21', 21, '2', '2', 'Muthukumar', 'Chennai', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2009300019', '1', '1', 'upload_files/candidate_tracker/84132036484_Renukadevi.M RESUME.pdf', NULL, NULL, '2020-10-31', 0, '', '8', '', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:13:04', 7, '2020-10-31 04:11:44', 0, NULL, 1),
(762, '', '0', '6385845925', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 01:15:19', 0, NULL, 0, NULL, 1),
(763, 'Ishwarya Rajan', '11', '7708893583', '9791190065', 'Ishwaryarajan412@gmail.com', '1996-12-04', 23, '2', '2', 'Soundarajan (late)', 'Police', 20000.00, 1, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2009300021', '1', '1', 'upload_files/candidate_tracker/79028649192_ISHWARYA S NEW CV-converted.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', NULL, 0.00, '02:30 PM', '0', NULL, '2', 'fresher exp is 18-20K. Avg communication, will not sustain.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:16:33', 1, '2020-09-30 01:28:48', 0, NULL, 1),
(764, 't dinesh', '4', '7305350515', '', '', '1985-10-16', 34, '2', '2', 'a thirumalai samy', 'death', 10000.00, 0, 10000.00, 12000.00, 'mylapore', 'mylapore', '2009300022', '1', '2', 'upload_files/candidate_tracker/19781591461_Dinesh SVM (1) (1).doc', NULL, NULL, '2020-09-30', 0, '', '5', '41', NULL, 0.00, '02:57 PM', '0', NULL, '2', 'Memory loss patient,We can not handle, 1985 born,But High job need', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:18:23', 1, '2020-09-30 01:58:06', 0, NULL, 1),
(765, 'ignacius nilofer', '11', '8056339519', '9952407696', 'j.ignacius95@gmail.com', '1995-04-19', 25, '2', '2', 'john ravi', 'business man', 200000.00, 2, 26808.00, 35000.00, 'chennai', 'madurai', '2009300023', '1', '2', 'upload_files/candidate_tracker/79893771373_J. IGNACIUS NILOFER.pdf', NULL, NULL, '2020-10-03', 30, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 01:49:42', 50, '2020-10-03 05:35:44', 0, NULL, 1),
(766, 'Vidhyalakshmi', '4', '9087709320', '', 'vlakshmivbca@gmail.com', '1996-01-03', 24, '2', '2', 'Vishnu', 'Tailor', 9000.00, 1, 0.00, 10000.00, 'Avadi', 'Avadi', '2009300024', '1', '1', 'upload_files/candidate_tracker/56744341205_Carreer Objective.docx', NULL, NULL, '2020-10-01', 0, '', '3', '8', '1970-01-01', 10000.00, '03:10 PM', '2', '1970-01-01', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 02:09:01', 7, '2020-10-09 07:02:21', 0, NULL, 1),
(767, '', '0', '9940205169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 02:32:28', 0, NULL, 0, NULL, 1),
(768, 'chandramouleeswaran', '4', '8248791352', '8939311318', 'srigupta12592@gmail.com', '1992-05-12', 28, '2', '2', 'kunjaram', '-', 15000.00, 1, 0.00, 10000.00, 'kodambakkam chennai', 'chennai', '2009300026', '1', '1', 'upload_files/candidate_tracker/17818239863_New Resume-1.pdf', NULL, NULL, '2020-09-30', 0, '', '5', '41', '1970-01-01', 0.00, '02:49 PM', '', '1970-01-01', '2', 'will not sustain,will not suite for any profile with CAFS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 02:45:00', 50, '2020-09-30 03:08:21', 0, NULL, 1),
(769, 'kiruthika j', '11', '8248376466', '7639657768', 'mcckirthika@gmail.com', '1996-03-16', 24, '2', '2', 'jayathevan sv', 'technicion', 50000.00, 1, 0.00, 15000.00, 'chennai', 'tambaram', '2009300027', '1', '1', 'upload_files/candidate_tracker/14059622882_kiruthika(W) resume PDF.pdf', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 02:55:15', 50, '2020-10-03 05:33:50', 0, NULL, 1),
(770, 'Manju Matha', '11', '8939292465', '', 'mmanjumatha@gmail.com', '1997-10-16', 22, '2', '2', 'Jaga Jothi', 'Driver', 20000.00, 1, 10000.00, 16000.00, 'Chennai', 'Chennai', '2009300028', '1', '2', 'upload_files/candidate_tracker/14971135185_Manju_Resume .pdf', NULL, NULL, '2020-10-03', 15, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 03:54:59', 50, '2020-10-03 05:33:59', 0, NULL, 1),
(771, '', '0', '9566078571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 04:31:50', 0, NULL, 0, NULL, 1),
(772, 'Sushmitha subramani', '11', '9003216409', '9047415119', 'sushmisubramani@gmail.com', '1994-10-13', 25, '2', '2', 'Subramani', 'No more', 15000.00, 2, 30600.00, 32000.00, 'Chennai', 'Chennai', '2009300030', '1', '2', 'upload_files/candidate_tracker/66197568773_1601465850210_sumi resume.docx', NULL, NULL, '2020-10-05', 0, '', '5', '54', '1970-01-01', 0.00, '01:20 PM', '', '1970-01-01', '2', 'she is not Interested\n', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 05:03:06', 50, '2020-10-20 06:36:10', 0, NULL, 1),
(773, 'Sivaranjani Arumugam', '4', '9790148923', '6382063226', 'sivaranjanibeece987@gmail.com', '1995-04-27', 25, '2', '2', 'Anjalidevi', '-', 50000.00, 0, 17000.00, 18000.00, 'Thanjavur', 'saidapet', '2009300031', '1', '2', 'upload_files/candidate_tracker/72952571874_Sivaranjini resume.pdf', NULL, NULL, '2020-10-01', 0, '', '3', '8', '2020-10-08', 12000.00, '11:36 AM', '', '1970-01-01', '2', '12K fro muthu team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 05:06:51', 7, '2020-10-07 06:19:20', 0, NULL, 1),
(774, '', '0', '8668142180', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 05:22:56', 0, NULL, 0, NULL, 1),
(775, '', '0', '8825708631', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 05:35:30', 0, NULL, 0, NULL, 1),
(776, 'mohamed mubarak', '11', '8220106069', '', 'mubarakhr96@yahoo.com', '1996-04-29', 24, '2', '1', 'peer mohamed', 'warden manager', 40000.00, 1, 24000.00, 29000.00, 'tirunelveli', 'triplicane chennai', '2009300034', '1', '2', 'upload_files/candidate_tracker/59864105506_Mohmed Mubarak HR resume.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'Will Not Suite For Our Process. Will Not Sustain. Exp Sal Is 25K', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 05:44:37', 1, '2020-09-30 06:56:06', 0, NULL, 1),
(777, 'Ramkumar A', '11', '9566018029', '', 'ramashok2996@gmail.com', '1996-05-29', 24, '1', '2', 'Ashokkumaran R', 'Private Company employee', 40000.00, 0, 220000.00, 325000.00, 'Chennai', 'Chennai', '2009300035', '', '2', 'upload_files/candidate_tracker/70608586461_RAM ASHOK 1.pdf', NULL, NULL, '2020-10-03', 0, 'Cafs', '8', '', '1970-01-01', 0.00, '03:30 PM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 05:50:52', 50, '2020-10-03 05:34:10', 0, NULL, 1),
(778, 'meenakshi .d', '11', '8428647828', '9841248653', 'meenakshikrishna6598@gmail.com', '1998-05-06', 22, '2', '2', 'k. Devaraju', 'highways department', 96000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2009300036', '1', '1', 'upload_files/candidate_tracker/42420523042_meenakshi resume 2020.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '53', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'gud communication, but hvng kid nd sick mother, she wants to go home early. ', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 05:52:34', 1, '2020-09-30 06:01:03', 0, NULL, 1),
(779, 'Anith.M', '11', '9942843958', '', 'anithgleaming23@gmail.com', '1996-03-23', 24, '2', '2', 'Marappan', 'Business', 50000.00, 1, 0.00, 200000.00, 'Namakkal', 'Namakkal', '2009300037', '1', '1', 'upload_files/candidate_tracker/32223305794_Resu.pdf', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 06:07:23', 50, '2020-10-03 05:34:21', 0, NULL, 1),
(780, '', '0', '9003253724', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2009300038', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 06:09:27', 0, NULL, 0, NULL, 1),
(781, 'Philomena Princy E', '11', '9566043413', '8438882799', 'phil.princy95@gmail.com', '1995-10-21', 24, '2', '2', 'Ebenezer Selvaraj P', 'Business', 60000.00, 1, 0.00, 18000.00, 'Maraimalai nagar', 'Maraimalai nagar', '2009300039', '1', '1', 'upload_files/candidate_tracker/79418736272_Resume - Philomena PrincyE.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'she will not join bcoz of salary split up', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 06:10:51', 1, '2020-09-30 06:18:42', 0, NULL, 1),
(782, 'Preethi J', '11', '8870529197', '9566362532', 'preethi.jsreddy@Gmail.com', '1997-11-25', 22, '1', '2', 'Jaishankar P', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2009300040', '', '1', 'upload_files/candidate_tracker/20478479578_Preethi JS - Resume.pdf', NULL, NULL, '2020-10-03', 0, 'CAFS', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-09-30 06:23:57', 50, '2020-10-03 05:34:32', 0, NULL, 1),
(783, 'Ajay avinash .G', '4', '8825804447', '8883168967', 'Ajayavinash9944@gmail.com', '1999-06-02', 21, '2', '2', 'Ganapathy .k', 'business', 50000.00, 0, 0.00, 15000.00, 'gokela hall street sivagangai', 'Srinivasan st.poonamali', '2009300041', '1', '1', 'upload_files/candidate_tracker/34502683418_Ajay resume.doc', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '12:59 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-09-30 06:54:41', 1, '2020-10-01 02:19:02', 0, NULL, 1),
(784, 'pappitha', '4', '9047988628', '', 'pappirj28@gmail.com', '1998-09-28', 23, '2', '1', 'murugan', 'cooli', 15000.00, 0, 12000.00, 13000.00, 'chennai', 'chennai', '2009300042', '2', '2', 'upload_files/candidate_tracker/61332728579_PAPPITHA CV RESUME_pappitha.docx', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-09-30 09:55:43', 1, '2022-03-22 05:17:37', 0, NULL, 1),
(785, 'Meenushri', '11', '9566115762', '', '', '1994-10-26', 25, '2', '2', 'P.G Pani Shanlar', 'business', 3000000.00, 1, 233000.00, 290000.00, 'Chennai', 'chennai', '2010010001', '1', '2', 'upload_files/candidate_tracker/25565392000_Meenushri - Junior Hr Executive.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '53', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', 'she s not for HR rec, exp high salary', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 12:17:55', 50, '2020-10-05 12:43:29', 0, NULL, 1),
(786, 'Thangarasu', '4', '9940814547', '', 'thangaraj12gt@gmail.com', '1998-05-17', 22, '2', '2', 'Elumalai', 'Porur', 8000.00, 1, 17000.00, 24000.00, 'Tiruvannamalai', 'Porur', '2010010002', '1', '2', 'upload_files/candidate_tracker/17596724557_MY RESUME.pdf', NULL, NULL, '2020-10-01', 15, '', '5', '14', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'not suitable for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 09:02:38', 50, '2020-10-01 10:47:28', 0, NULL, 1),
(787, 'SATISH KUMAR .p', '6', '9176141294', '9176412125', 'sathishsmarter0105@gmail.com', '2000-10-01', 20, '1', '2', 'PRABAKARAN TS', 'DRIVER', 20000.00, 1, 0.00, 15000.00, 'Kundrathur', 'Kundrathur', '2010010003', '', '1', 'upload_files/candidate_tracker/29109433357_SATZ (1).pdf', NULL, NULL, '2020-10-01', 0, '5174', '3', '8', '2020-10-05', 13000.00, '10:30 AM', '6', '2021-03-26', '1', '13K for Thiyagu team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 09:53:10', 7, '2020-10-06 12:46:05', 0, NULL, 1),
(788, 'Jaculinjesika', '5', '8124650029', '8681052529', 'jesi1994lingaa@gmail.com', '1994-10-09', 25, '2', '2', 'Sivalingam', 'expired', 10000.00, 1, 23000.00, 25000.00, 'No 415 a adhiyaman street, Cheyyar', 'no 1 jasper apartment Gayathri nagar Sembakkam', '2010010004', '3', '2', 'upload_files/candidate_tracker/82853311924_JaculinJesika_Six_Years_Experience _Resume.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '44', NULL, 0.00, '10:23 AM', '0', NULL, '2', 'She is not fit for our company', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:16:42', 1, '2020-10-01 10:28:50', 0, NULL, 1),
(789, 'S.shyamala', '4', '6374505041', '7604829354', 'keerthiselv898@gmail.com', '2000-07-02', 20, '2', '2', 'M. Shanmugam', 'Painter', 15000.00, 1, 0.00, 10000.00, 'T.nagar', 'T.nagar', '2010010005', '2', '1', 'upload_files/candidate_tracker/13528352028_resume shyamala new format.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '13', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'Communication skills ok but Sustainability is low', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:22:43', 1, '2020-10-01 10:48:25', 0, NULL, 1),
(790, 'JR. PREMALATHA', '4', '9551678069', '9908428661', 'Premlatha1309@gmail.com', '1999-09-13', 21, '2', '2', 'J. RAJAIAH', 'Handicapped', 8000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2010010006', '1', '1', 'upload_files/candidate_tracker/39505873772_Resume(2020) .docx', NULL, NULL, '2020-10-01', 0, '', '5', '13', '1970-01-01', 0.00, '10:37 AM', '', '1970-01-01', '2', 'Confidence Level very low so not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:29:29', 50, '2020-10-01 10:51:37', 0, NULL, 1),
(791, 'S. MANICKAM', '4', '7904493035', '', 'manickam02072000@gmail.com', '1999-10-06', 20, '2', '2', 'MCR SAKTHIVELUH', 'Light Man', 1.00, 2, 0.00, 12000.00, 'No 86, SEERANI PURAM, KODAMBAKKAM HIGH ROAD,', 'No 86, SEERANI PURAM, KODAMBAKKAM HIGH ROAD', '2010010007', '2', '1', 'upload_files/candidate_tracker/34328810539_Manickam Resume.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '14', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'not fit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:30:28', 1, '2020-10-01 10:49:54', 0, NULL, 1),
(792, '', '0', '9176141394', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:31:17', 0, NULL, 0, NULL, 1),
(793, 'SUDHAKAR S', '4', '9080348076', '7339200338', 'viratsudha3@gmail.com', '2000-09-26', 20, '1', '2', 'SELVARAJ S', 'Farmer', 15000.00, 2, 0.00, 12000.00, 'Senthamiz Nagar,5th Street,Kottaimedu, Tindivanam', 'Senthamiz Nagar,5th Street Kottaimedu, Tindivanam', '2010010009', '', '1', 'upload_files/candidate_tracker/41602687495_dresume.doc', NULL, NULL, '2020-10-01', 0, 'Ajay', '5', '14', '1970-01-01', 0.00, '10:50 AM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:32:28', 50, '2020-10-01 11:35:50', 0, NULL, 1),
(794, 'Uthayakumar.s', '4', '7904467115', '8870609351', 'Uthayakohli18@gmail.com', '2000-01-05', 20, '1', '2', 'Sekar.p', 'Farmar', 12000.00, 2, 0.00, 15000.00, '434,palla street,kottikuppam', '434,Palla Street,Kottikuppam', '2010010010', '', '1', 'upload_files/candidate_tracker/85244261069_UGGG Resume.pdf', NULL, NULL, '2020-10-01', 0, 'Ajay', '5', '13', NULL, 0.00, '11:38 AM', '0', NULL, '1', 'Convincing Skills very poor so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:34:03', 1, '2020-10-01 11:38:55', 0, NULL, 1),
(795, 'Thiruselvi', '4', '6382759347', '', 'Thiruselvip3@gmail.com', '1995-04-19', 25, '2', '2', 'Paulmurugan. P', 'Conductor', 25000.00, 0, 0.00, 14000.00, 'Madurai', 'Poonthamalle', '2010010011', '1', '1', 'upload_files/candidate_tracker/14229551560_RESUME THIRUSELVI 5.docx', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:34:10', 50, '2020-10-07 06:37:48', 0, NULL, 1),
(796, 'n.buvanesree', '4', '7401350406', '9551001569', 'buvanesree@gmail.com', '2000-01-26', 20, '2', '2', 'm.nandakumar', 'owns shop', 10000.00, 1, 0.00, 15000.00, 'visaga thottam west saidapet', 'Visaga Thottam West Saidapet', '2010010012', '1', '1', 'upload_files/candidate_tracker/57404829172_resume.pdf.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '14', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'looking for data entry', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:36:30', 50, '2020-10-03 11:28:58', 0, NULL, 1),
(797, 'A.veeramuthu', '4', '8220105314', '9025514660', 'hardikveera07@gmail.com', '2000-08-23', 20, '1', '2', 'G.Ayyanar', 'Farmar', 15000.00, 2, 0.00, 12000.00, '156 nelliyamman Kovil street T.nallalam', '156 nelliyamman Kovil street T.nallalam', '2010010013', '', '1', 'upload_files/candidate_tracker/2988261640_Veeramutuh Resume.docx', NULL, NULL, '2020-10-01', 0, 'Ajay', '5', '13', NULL, 0.00, '11:03 AM', '0', NULL, '1', 'Communication xxamp Confidence Level Very Low So Not Suitable For This Field', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:39:05', 1, '2020-10-01 11:03:54', 0, NULL, 1),
(798, 'VIGNESH.E', '4', '6380099684', '7010988599', 'vignesh.ealumalai307@gmail.com', '1999-04-14', 21, '1', '2', 'ELUMALAI.G', 'FARMER', 15000.00, 1, 0.00, 12000.00, '230/4,mettu Street,Vadanerkunam Post,marakkanam tk', '230/4,Mettu Street,Vadanerkunam Post,Marakkanam Tk', '2010010014', '', '1', 'upload_files/candidate_tracker/55212933026_VICKY RESUME.......docx', NULL, NULL, '2020-10-01', 0, 'Ajay', '5', '14', '1970-01-01', 0.00, '10:50 AM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:39:10', 50, '2020-10-01 11:11:36', 0, NULL, 1),
(799, 'Tamil selvan', '4', '9360676849', '9943634355', 'Tamilafro8@gmail.com', '1995-02-21', 25, '2', '2', '21 021995', 'Driver', 300000.00, 2, 0.00, 15000.00, 'Coimbatore', 'Tambaram', '2010010015', '1', '1', 'upload_files/candidate_tracker/57819867845_CV_2020-09-30-115509.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Communication xxamp Observation Skills very poor so nalesot suitable for this telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:45:06', 50, '2020-10-01 03:19:19', 0, NULL, 1),
(800, 'Demetrius Abu', '11', '7868877453', '', 'dtsabu@gmail.com', '1990-11-06', 29, '2', '1', 'vetrivel', 'business', 50.00, 0, 4.20, 5.50, 'rajapalayam', 'chennai', '2010010016', '1', '2', 'upload_files/candidate_tracker/72181754660_Demetrius Profile!.docx', NULL, NULL, '2020-10-03', 20, '', '5', '54', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'He Dont know about HRMS and will not Listen. keep on telling same. will not Sustain longtime. ', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:52:23', 1, '2020-10-01 11:18:04', 0, NULL, 1),
(801, 'Imran', '4', '8015432874', '', 'jimran77777@gmail.com', '1992-06-19', 28, '2', '2', 'M.jalal', 'Retd central government employee', 16000.00, 1, 15000.00, 16000.00, 'Dharmapuri', 'T.nagar', '2010010017', '1', '2', 'upload_files/candidate_tracker/13931817571_Document (1).docx', NULL, NULL, '2020-10-01', 0, '', '5', '14', '1970-01-01', 0.00, '10:55 AM', '', '1970-01-01', '2', 'not interested to this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 10:52:59', 50, '2020-10-01 12:37:11', 0, NULL, 1),
(802, 'D. Shobana', '4', '7010398095', '7010623238', 'shobanarukmani65@gmail.com', '1999-08-28', 21, '2', '2', 'R dhananchezyan', 'Tailor', 80000.00, 2, 0.00, 14000.00, 'No4 Roja street kilambakkam vandalur', 'Vandalur', '2010010018', '1', '1', 'upload_files/candidate_tracker/93456041179_shobana resume 08.docx', NULL, NULL, '2020-10-03', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 11:03:14', 50, '2020-10-03 11:07:21', 0, NULL, 1),
(803, 'Jayabharath', '5', '9940530059', '6380226627', 'jayabharath.k555@gmail.com', '1983-07-03', 37, '2', '1', 'Arshiya', 'Nil', 25000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2010010019', '3', '2', 'upload_files/candidate_tracker/962031503_Resume jayabharath-1.docx', NULL, NULL, '2020-10-01', 0, '', '6', '0', NULL, 0.00, '11:31 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 11:05:16', 1, '2020-10-01 11:35:27', 0, NULL, 1),
(804, '', '0', '8248651691', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 12:13:05', 0, NULL, 0, NULL, 1),
(805, 'ARUN PANDIYAN R', '4', '8489990813', '8110880082', 'arunkrish811088@gmail.com', '1997-01-01', 23, '2', '2', 'RAVICHANDRAN R', 'DRIVER', 18000.00, 1, 0.00, 15000.00, 'COLONY STREET,THIRUMALNATHAM,MADURAI.', ',SRINIVASAN NAGAR,POONAMALLEE.', '2010010021', '1', '1', 'upload_files/candidate_tracker/39081637152_Arunpandiyan-Resume.docx', NULL, NULL, '2020-10-01', 0, '', '5', '14', '1970-01-01', 0.00, '01:09 PM', '', '1970-01-01', '2', 'not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 12:23:48', 50, '2020-10-01 01:27:24', 0, NULL, 1),
(806, 'Monisha. B', '4', '8610935045', '9840443838', 'monishaboddapati17@gmail.com', '1999-07-17', 21, '2', '2', 'Suneel. b', 'Accountant', 25000.00, 1, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2010010022', '1', '1', 'upload_files/candidate_tracker/53057399362_Monisha.B resume.pdf', NULL, NULL, '2020-10-01', 0, '', '5', '14', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '2', 'not interested to this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 12:40:05', 50, '2020-10-01 12:56:36', 0, NULL, 1),
(807, '', '0', '9611288227', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 12:40:25', 0, NULL, 0, NULL, 1),
(808, 'Shivani Upadhyay', '11', '9644870811', '', '', '1994-12-04', 25, '2', '2', 'S.c. Upadhyay', 'Govt.job', 90000.00, 1, 22000.00, 28000.00, 'Gwalior', 'Gwalior', '2010010024', '1', '2', 'upload_files/candidate_tracker/2351614100_shivani+resume.doc', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '02:07 PM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 01:05:06', 50, '2020-10-03 05:34:52', 0, NULL, 1),
(809, '', '0', '9884267828', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:11:13', 0, NULL, 0, NULL, 1),
(810, 'Arun Kumar b', '5', '9176040420', '9789027620', 'arunlesnar@gmail.com', '1991-05-30', 29, '2', '2', 'Balaraman', 'Banking sales', 85000.00, 2, 70000.00, 40000.00, 'Chennai', 'Chennai', '2010010026', '3', '2', 'upload_files/candidate_tracker/45580437178_0_Arun uae resume (1).pdf', NULL, NULL, '2020-10-01', 0, '', '5', '33', NULL, 0.00, '02:30 PM', '0', NULL, '1', 'not fit for rm and sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:25:38', 1, '2020-10-01 01:36:32', 0, NULL, 1),
(811, 'Gayathri.M', '4', '9941858260', '9500094612', 'gayathri081197@gmail.com', '1997-11-08', 22, '1', '2', 'Meiyazhagan.G', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010010027', '', '1', 'upload_files/candidate_tracker/9286550981_Gayu resume.docx', NULL, NULL, '2020-10-01', 0, 'stage vu', '5', '41', '1970-01-01', 0.00, '01:36 PM', '', '1970-01-01', '2', 'Will Not Sustain Looking For Job To Pay Her Govt Exam Coaching Fee', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:31:06', 50, '2020-10-01 03:19:40', 0, NULL, 1),
(812, 'Bhuvaneswari B', '4', '9445819480', '9087289318', 'bhuvaneswari991105@gmail.com', '1999-11-05', 20, '1', '2', 'Babu R', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2010010028', '', '1', 'upload_files/candidate_tracker/99545892083_BHUVANA RESUME.docx', NULL, NULL, '2020-10-01', 0, 'stage vu', '5', '41', '1970-01-01', 0.00, '01:35 PM', '', '1970-01-01', '2', 'Will not sustain,Preparing for Govt job to pay for the coaching center looking for job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:31:27', 50, '2020-10-01 02:52:28', 0, NULL, 1),
(813, '', '0', '9176873101', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:36:58', 0, NULL, 0, NULL, 1),
(814, 'G. Pooja', '4', '9080824006', '', '', '1999-11-10', 20, '2', '2', 'P. Gopi', 'Archakar', 90000.00, 1, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2010010030', '2', '1', 'upload_files/candidate_tracker/24649216677_80338468996_Resume_.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Pressure Handling low so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 01:37:46', 1, '2020-10-03 08:22:37', 0, NULL, 1),
(815, 'D ABISHEK EZEKIAL RAJ', '4', '9150148608', '', 'dabishek2000@gmail.com', '2000-05-28', 20, '2', '2', 'DAVID RAJ M', 'Auto driver', 20000.00, 1, 0.00, 15000.00, 'Anna nagar', 'Anna nagar', '2010010031', '1', '1', 'upload_files/candidate_tracker/45500258692_Abishek resume.pdf', NULL, NULL, '2020-10-01', 0, '', '3', '8', '2020-10-08', 10500.00, '01:51 PM', '', '1970-01-01', '1', '10.5K for priyanka team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 01:46:52', 50, '2020-10-01 03:19:50', 0, NULL, 1),
(816, 'Daisy Rani', '4', '9952911743', '', 'daisypeter12@gmail.com', '1996-09-12', 24, '2', '2', 'Peter lawrance', 'Tailor', 10000.00, 1, 16000.00, 18000.00, 'No.405/B,7th street, sastri nagar, perambur', 'No.405/B,7th Street, Sastri Nagar, Perambur', '2010010032', '1', '2', 'upload_files/candidate_tracker/21934968778_2020 daisy', NULL, NULL, '2020-10-03', 15, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 01:51:22', 50, '2020-10-03 05:35:01', 0, NULL, 1),
(817, '', '0', '8110880082', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 02:01:56', 0, NULL, 0, NULL, 1),
(818, 'Deepak kumar', '4', '6382155310', '9710042707', 'deepu42707@gmail.com', '2000-01-02', 20, '2', '2', 'K.Gopu rao', 'Tailor', 10000.00, 0, 0.00, 13000.00, 'Villivakkam', 'Villivakkam', '2010010034', '1', '1', 'upload_files/candidate_tracker/99084331788_Deepak resume new.docx', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 02:11:05', 50, '2020-10-03 05:35:11', 0, NULL, 1),
(819, 'ramya s', '4', '7871209948', '', 'karisbanu19@gmail.com', '1998-10-19', 21, '2', '2', 'shanmugam k', 'electrician', 10000.00, 2, 0.00, 12000.00, 'selaiyur e tambaram', 'selaiyur e tambaram', '2010010035', '1', '1', 'upload_files/candidate_tracker/59974476417_S.docx', NULL, NULL, '2020-10-03', 0, '', '5', '13', '1970-01-01', 0.00, '11:40 AM', '', '1970-01-01', '2', 'Sustainability low so not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 02:16:00', 50, '2020-10-03 11:46:28', 0, NULL, 1),
(820, 'SELLAPPA', '4', '9791775201', '8248963282', 'Sellappas01@gmail.com', '1994-07-28', 26, '2', '2', 'SUPPAIYAN', 'Farmers', 15000.00, 1, 15000.00, 15000.00, 'Kumbakonam', 'Chennai', '2010010036', '1', '2', 'upload_files/candidate_tracker/88697887617_new resume_01-Nov-18_23-09-11.docx', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 02:35:46', 50, '2020-10-03 04:23:27', 0, NULL, 1),
(821, 'Suganya', '11', '9566434878', '9884109392', 'rocking.sugan@gmail.com', '1992-03-08', 28, '2', '1', 'Ashwath Kumar', 'Salaried', 1000000.00, 0, 240000.00, 350000.00, 'Chennai', 'Chennai', '2010010037', '1', '2', 'upload_files/candidate_tracker/9063526455_SUGANYA S-1.pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '10:15 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 03:01:06', 50, '2020-10-06 09:42:28', 0, NULL, 1),
(822, 'c.manikandan', '17', '9789957092', '', 'manichandru24@gmail.com', '1990-03-07', 30, '2', '1', 'n.chandran', 'auto driver', 432000.00, 2, 36000.00, 40000.00, 'chennai', 'chennai', '2010010038', '12', '2', 'upload_files/candidate_tracker/45390819371_manichandru24.docx', NULL, NULL, '2020-10-01', 0, '', '5', '36', '1970-01-01', 0.00, '03:24 PM', '', '1970-01-01', '1', 'Not fit for rM', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 03:18:28', 7, '2020-10-06 12:08:23', 0, NULL, 1),
(823, '', '0', '9108937310', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010039', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 04:20:49', 0, NULL, 0, NULL, 1),
(824, 'Ravichandran. P', '4', '9344586716', '9688403138', 'Mgravichandran. 2033@gmail.com', '1990-02-15', 30, '2', '2', 'Palanivel. S', 'Coolie', 50000.00, 0, 0.00, 20000.00, 'Poonamalle', 'Poonamalle', '2010010040', '1', '1', 'upload_files/candidate_tracker/25479560879_Ravichandran.docx', NULL, NULL, '2020-10-05', 0, '', '5', '21', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'not sustain long , 2015 passed out he dont have exper in voice @ other field also ... not fit for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-01 04:43:56', 50, '2020-10-05 09:52:30', 0, NULL, 1),
(825, 'likitha mungara', '11', '9381588195', '', 'likitha.likkhi@gmail.com', '1996-01-28', 24, '1', '2', 'bhaskar rao', 'business', 50000.00, 1, 0.00, 17000.00, 'Chennai', 'chennai', '2010010041', '', '2', 'upload_files/candidate_tracker/95337018595_Mungara Likitha.docx', NULL, NULL, '2020-10-03', 0, '174', '5', '8', NULL, 0.00, '12:10 PM', '0', NULL, '2', 'will not Sustain native is AP. salary exp is high. ', '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 06:23:19', 1, '2020-10-03 12:14:39', 0, NULL, 1),
(826, '', '0', '8939124265', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010010042', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-01 10:46:33', 0, NULL, 0, NULL, 1),
(827, 'Vidhyabharathi .K', '11', '9952925559', '9840872946', 'Vidhyabharathik1995@gmail.com', '1995-08-19', 25, '2', '2', 'Kumar .T', 'Teacher', 25000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2010020001', '1', '2', 'upload_files/candidate_tracker/92501915251_VIDHU.docx', NULL, NULL, '2020-10-05', 0, '', '5', '53', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'Exp high sal, dnt knw use portal also', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 08:52:03', 1, '2020-10-05 12:26:54', 0, NULL, 1),
(828, 'Ranjitha j', '5', '8015414984', '7448574243', 'ranjithajayavel4@gmail.com', '1998-08-27', 22, '2', '2', 'Jayavel L', 'Carpenter', 25000.00, 2, 18000.00, 20000.00, 'Tambaram sanatorium', 'Tambaram sanatorium', '2010020002', '3', '2', 'upload_files/candidate_tracker/71146215663_Ranjitha Resume 1.pdf', NULL, NULL, '2020-10-02', 0, '', '5', '8', NULL, 0.00, '12:25 PM', '0', NULL, '1', 'will not suite for sales and calling to. her voice is not bold and she will not sustain and her exp sal is 18+.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 11:54:26', 1, '2020-10-02 12:25:29', 0, NULL, 1),
(829, 'Balaji. P', '13', '8248261931', '9524297012', 'balajipugazhendhi7@gmail.com', '1998-06-16', 22, '2', '2', 'V. Pugazhendhi', 'Business', 30000.00, 1, 10000.00, 15000.00, 'Madhuranthakam', 'Chennai', '2010020003', '1', '2', 'upload_files/candidate_tracker/27989956602_updated resume aug21.docx', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 01:08:04', 50, '2020-10-06 09:42:37', 0, NULL, 1),
(830, 'Hari Sankar K', '13', '7200575573', '6374042070', 'harisankar1028krish@gmail.com', '1999-12-10', 20, '2', '2', 'Krishnan s', 'Late', 3500.00, 0, 0.00, 20000.00, 'Tenkasi', 'Tenkasi', '2010020004', '1', '1', 'upload_files/candidate_tracker/22538977531_Hari.pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 01:36:52', 50, '2020-10-06 09:42:47', 0, NULL, 1),
(831, 'venkateswaran', '11', '9750949777', '9750331563', 'venkates1929@gmail.com', '1989-06-19', 31, '2', '2', 'Arumugam', 'retired employee', 25000.00, 1, 30000.00, 35000.00, 'tenkasi', 'maduravoyal', '2010020005', '4', '2', 'upload_files/candidate_tracker/55948449510_Venkat updated.docx', NULL, NULL, '2020-10-02', 20, '', '5', '53', NULL, 0.00, '02:40 PM', '0', NULL, '2', 'dnt hve relevant exp', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 01:39:11', 1, '2020-10-02 01:45:39', 0, NULL, 1),
(832, '', '0', '9629223676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010020006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 01:39:52', 0, NULL, 0, NULL, 1),
(833, 'muppudathi', '11', '9629443676', '8124999309', 'sureshaadhi1@gmail.com', '1990-05-20', 30, '2', '2', 'veeraputhiran', 'farmer', 20000.00, 1, 20000.00, 25000.00, 'tenkasi', 'chennai', '2010020007', '4', '2', 'upload_files/candidate_tracker/19437270499_1.2.19.docx', NULL, NULL, '2020-10-02', 15, '', '5', '53', NULL, 0.00, '02:45 PM', '0', NULL, '1', 'dnt hve exp in ths field. exp high sal', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 02:10:06', 1, '2020-10-02 02:12:48', 0, NULL, 1),
(834, '', '0', '9791190065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010020008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 02:23:18', 0, NULL, 0, NULL, 1),
(835, 'Kushagra Ankit', '13', '9798894705', '', 'kushagraankit05@gmail.com', '1997-11-30', 22, '2', '2', 'Amit Verma', 'Government service', 50000.00, 0, 0.00, 6.00, 'patna', 'patna', '2010020009', '1', '1', 'upload_files/candidate_tracker/23260297698_Kushagra Ankit - Resume (2).pdf', NULL, NULL, '2020-10-03', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 03:27:37', 50, '2020-10-03 05:35:24', 0, NULL, 1),
(836, 'JAYAPRAKASH K', '13', '9524233880', '', 'prakashjayajp08@gmail.com', '1998-04-06', 22, '2', '2', 'Kesavan M G', 'Weaver', 25000.00, 1, 0.00, 3.50, 'Tiruvannamalai', 'Tiruvannamalai', '2010020010', '1', '1', 'upload_files/candidate_tracker/843193315_My - Resume.docx', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 04:23:28', 50, '2020-10-06 09:42:55', 0, NULL, 1),
(837, 'Premkumar R', '13', '9789405520', '', '', '1998-02-14', 22, '2', '2', 'Rajendran D', 'Security', 150000.00, 1, 0.00, 15000.00, 'Vellore', 'Vellore', '2010020011', '1', '1', 'upload_files/candidate_tracker/26209993891_PREMKUMAR.pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 06:31:41', 50, '2020-10-06 09:43:04', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(838, 'Sai Vignesh M', '13', '8072787387', '', 'sai3125.be@gmail.com', '1999-01-31', 21, '2', '2', 'Gowri Ambigai M', 'Agriculture', 200000.00, 2, 0.00, 18000.00, 'Chengalpattu', 'Chengalpattu', '2010020012', '1', '1', 'upload_files/candidate_tracker/82693037695_Sai Resume.pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 07:58:29', 50, '2020-10-06 05:20:42', 0, NULL, 1),
(839, 'LOKESH B', '13', '8072234957', '7094680466', 'lokeshyadav28998@gmail.com', '1998-07-01', 22, '2', '2', 'Balaji k', 'Daily wages', 10000.00, 1, 0.00, 240000.00, 'Vellore', 'Vellore', '2010020013', '1', '1', 'upload_files/candidate_tracker/7820268780_LOKESHB (1).pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-02 08:49:36', 50, '2020-10-06 09:43:13', 0, NULL, 1),
(840, 'G. Kavitha', '4', '9789939683', '7397462191', 'kavithasarvesh709@gmail.com', '1994-06-06', 26, '2', '2', 'G. Nagaiah', 'Security', 15000.00, 4, 16000.00, 16000.00, 'Saidapet', 'Saidapet', '2010020014', '2', '2', 'upload_files/candidate_tracker/44103660616_New Doc 2018-11-09 16.08.26.pdf', NULL, NULL, '2020-10-03', 2, '', '5', '13', NULL, 0.00, '01:05 PM', '0', NULL, '2', 'Confidence Level very low so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-02 10:29:19', 1, '2020-10-03 01:26:54', 0, NULL, 1),
(841, '', '0', '8610433289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:07:42', 0, NULL, 0, NULL, 1),
(842, 'Sathesh Kumar', '13', '8190878480', '', 'unleashsathesh@gmail.com', '1990-05-20', 30, '2', '1', 'Jeevarekha', 'Working', 300000.00, 1, 0.00, 300000.00, 'Chennai', 'Dindigul', '2010030002', '1', '2', 'upload_files/candidate_tracker/52994286439_1600684929578_Sathesh (1).doc', NULL, NULL, '2020-11-02', 0, '', '8', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is not attend the interview.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 07:06:01', 50, '2020-11-02 12:29:55', 0, NULL, 1),
(843, 'raj kumar', '6', '9043579764', '9176535424', 'rk.111.rk.007@gmail.com', '1997-05-02', 23, '2', '2', 'krishna moorthy', 'binder', 20000.00, 0, 0.00, 22000.00, 'chennai', 'Chennai', '2010030003', '3', '2', 'upload_files/candidate_tracker/84007929984_rajkumar 2.pdf', NULL, NULL, '2020-10-03', 0, '', '8', '8', NULL, 0.00, '11:20 AM', '0', NULL, '1', 'not attended', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 10:11:14', 1, '2020-10-03 11:25:39', 0, NULL, 1),
(844, 'm.dhinesh kannan', '6', '9787503214', '', 'dhineshkannan69329@gmail.com', '1998-04-12', 22, '1', '2', 'mangalasamy', 'farmer', 15000.00, 1, 12000.00, 15000.00, 'ramanathapuram', 'vadapalani', '2010030004', '', '2', 'upload_files/candidate_tracker/29800448126_DEENESH-1.doc', NULL, NULL, '2020-10-03', 1, '5581', '5', '24', '1970-01-01', 0.00, '11:05 AM', '', '1970-01-01', '1', 'not suitable for our profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 10:48:12', 50, '2020-10-03 12:09:58', 0, NULL, 1),
(845, 'Naresh kumar', '5', '9849566144', '', 'Naresh.eee11@gmail.com', '1989-07-14', 31, '2', '2', 'Baskarreddy', 'Worker', 700000.00, 0, 30000.00, 33000.00, 'Chennai', 'Ennore', '2010030005', '3', '2', 'upload_files/candidate_tracker/94149603624_0_NARESH KUMAR REDDY - Copy.pdf', NULL, NULL, '2020-10-03', 0, '', '5', '29', NULL, 0.00, '10:54 AM', '0', NULL, '1', 'not selected', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 10:51:28', 1, '2020-10-03 10:58:51', 0, NULL, 1),
(846, 'ARTHI. V', '4', '9566048769', '7871252047', 'arthi030897@gmail.com', '1997-08-03', 23, '2', '2', 'Malar. V', 'Cooli', 12000.00, 2, 0.00, 12000.00, 'NO-43 Radhakrishna puram, R a puram, chennai-28', 'Adyar', '2010030006', '1', '1', 'upload_files/candidate_tracker/85048823982_IMG_20201003_115945_a.pdf', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 10:58:40', 50, '2020-10-06 09:43:31', 0, NULL, 1),
(847, 'Srinath s', '5', '8056172941', '9600163262', 'srinaths17101994@gmail.com', '1994-10-17', 25, '1', '1', 'Samuel', 'Driver', 35000.00, 1, 20000.00, 24000.00, '32/30 moovendhar 1st Street pallikaranai', '32/30 Moovendhar 1st Street Pallikaranai', '2010030007', '', '2', 'upload_files/candidate_tracker/28027447346_Srinath S Resume.pdf', NULL, NULL, '2020-10-03', 0, '5369', '3', '8', '2020-10-08', 21000.00, '11:01 AM', '', '1970-01-01', '1', '21K for Sarath team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 11:01:21', 7, '2020-10-03 06:56:16', 0, NULL, 1),
(848, '', '0', '8985583609', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 11:20:32', 0, NULL, 0, NULL, 1),
(849, '', '0', '9500202035', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 11:25:27', 0, NULL, 0, NULL, 1),
(850, 'Heena.K', '11', '7397408703', '9080269973', 'heenaraheja03@gmail.com', '1998-05-03', 22, '2', '2', 'Kanayala', '12th', 30000.00, 1, 0.00, 18000.00, 'Bhawan Villa No 59/ 25 V.S.V koil Street mylapore', 'Bhawan Villa No 59/ 25 V.S.V Koil Street Mylapore', '2010030010', '1', '1', 'upload_files/candidate_tracker/99295484801_Heena Resume.docx', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 11:28:50', 50, '2020-10-06 05:20:54', 0, NULL, 1),
(851, 'Kanthakumar', '5', '9884448098', '7010248957', 'kantha_kumar2@yahoo.co.in', '1981-01-18', 39, '2', '1', 'Dhanasekaran', 'Operation manager', 700000.00, 1, 60000.00, 1.00, 'Chennai', 'Chennai', '2010030011', '1', '2', 'upload_files/candidate_tracker/88139608047_kanthan resume 1 (1).doc (1) (5) (1) (1).pdf', NULL, NULL, '2020-10-03', 0, '', '5', '8', NULL, 0.00, '11:40 AM', '0', NULL, '1', 'not selected in BAxa', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 11:36:54', 1, '2020-10-03 11:59:14', 0, NULL, 1),
(852, 'EZRAPRAISE T', '6', '8778813556', '9941987058', 'ezrapraise3@gmail.com', '1992-04-14', 28, '2', '2', 'THEOPHILUS', 'Chicken shop', 20000.00, 1, 15000.00, 20000.00, 'Chennai', 'chennai', '2010030012', '1', '2', 'upload_files/candidate_tracker/41876820131_EZRA', NULL, NULL, '2020-10-05', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 11:54:49', 50, '2020-10-06 09:43:45', 0, NULL, 1),
(853, 'Priya.s', '4', '9884567100', '7094718129', 'sathishpriya1031@gmail.com', '1990-05-31', 30, '2', '1', 'Sathish Kumar', 'Assistant director', 20000.00, 1, 20000.00, 20000.00, 'Thiruverkadu,Chennai.', 'Thiruverkadu,Chennai.', '2010030013', '2', '2', 'upload_files/candidate_tracker/48450682912_CURRICULUM VITAE.docx', NULL, NULL, '2020-10-03', 0, '', '3', '8', '2020-10-05', 11000.00, '12:20 PM', '2', '1970-01-01', '1', '11K for Muthu team.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:05:26', 7, '2020-10-07 06:23:41', 0, NULL, 1),
(854, 'sakthikumaran.v', '4', '9710572426', '8056231300', 'sakthikumaran110@gmail.com', '1995-03-21', 25, '2', '2', 'vetrieswaran', 'security', 13500.00, 0, 14000.00, 18000.00, 'tondiarpet', 'tondiarpet', '2010030014', '2', '2', 'upload_files/candidate_tracker/90065531814_Sakthikumaran CV.docx', NULL, NULL, '2020-10-05', 7, '', '5', '14', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'not suitable for voice xxamp expecting high salary for crm', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:05:28', 1, '2020-10-04 12:09:31', 0, NULL, 1),
(855, '', '0', '9790091819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:21:00', 0, NULL, 0, NULL, 1),
(856, '', '0', '7397543636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 12:57:58', 0, NULL, 0, NULL, 1),
(857, '', '0', '8220828817', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:05:00', 0, NULL, 0, NULL, 1),
(858, 'T. Durgadevi', '4', '9094627973', '9940247684', 'durgatamil1998@gmail.com', '1998-10-28', 21, '2', '2', 'R. Tamilarsun', 'Building Contractor', 18000.00, 4, 15000.00, 16000.00, 'No.30 TVK - 1st, Kazhikundram, Taramani,Ch - 113', 'No.30 TVK - 1st, Kazhikundram, Taramani,Ch - 113', '2010030018', '1', '2', 'upload_files/candidate_tracker/92676171290_durga.doc', NULL, NULL, '2020-10-03', 0, '', '5', '14', '1970-01-01', 0.00, '01:38 PM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 01:09:09', 50, '2020-10-03 03:17:31', 0, NULL, 1),
(859, 'Gomathi m', '4', '9092887179', '8220641494', 'gomathim2597@gmail.com', '1997-05-25', 23, '1', '2', 'Mani', 'Society management', 20000.00, 2, 12000.00, 13000.00, 'Adambakkam', 'Adambakkam', '2010030019', '', '2', 'upload_files/candidate_tracker/33484054831_CSE 3 (2).pdf', NULL, NULL, '2020-10-03', 0, '5541', '5', '14', '1970-01-01', 0.00, '01:16 PM', '', '1970-01-01', '2', 'expecting high salary and not suitable for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:11:57', 50, '2020-10-03 01:35:07', 0, NULL, 1),
(860, 'Ramesh.R', '4', '6381178977', '7373463164', 'remoramesh558@gmail.com', '1999-11-09', 20, '2', '2', 'Rajendhiran.M', 'Farmer', 20000.00, 2, 10500.00, 12000.00, 'Kallakurichi', 'Chennai', '2010030020', '2', '2', 'upload_files/candidate_tracker/86877036112_rameshhhhh.pdf', NULL, NULL, '2020-10-05', 0, '', '3', '8', '2020-10-08', 10500.00, '10:40 AM', '0', NULL, '1', '10.5K for Muthu team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:16:26', 1, '2020-10-05 12:41:40', 0, NULL, 1),
(861, 'Mamatha Rani', '4', '8095646826', '9066231113', 'mamatharanimamatha7@gmail.com', '1999-05-31', 21, '2', '2', 'Anil kumar', 'Builder', 20.00, 2, 0.00, 15.00, 'Ibbalur Sarjapur road Bangalore 560102', 'Ibbalur', '2010030021', '1', '1', 'upload_files/candidate_tracker/60901761682_mamatha resume.docx', NULL, NULL, '2020-10-03', 0, '', '3', '8', '2020-10-06', 11000.00, '02:30 PM', '3', '2020-10-07', '1', '11K for gowshick team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 01:26:03', 7, '2020-10-07 06:20:28', 0, NULL, 1),
(862, 'Snadhya.M', '4', '9620669757', '', 'sandhya.2016ammu@gmail.com', '1999-12-17', 20, '2', '2', 'Mallikarjun', 'Welder', 10.00, 1, 0.00, 15.00, 'Ibbalur Sarjapur road', 'Ibbalur', '2010030022', '1', '1', 'upload_files/candidate_tracker/74988886322_Sandhya resume.docx', NULL, NULL, '2020-10-03', 0, '', '3', '8', '2020-10-06', 11000.00, '02:30 PM', '3', '2020-10-07', '1', '11K for gowshick team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 01:27:44', 7, '2020-10-07 06:20:43', 0, NULL, 1),
(863, 'Arunkumar', '4', '7373463164', '9095422762', 'arunbca882@gmail.com', '1997-06-06', 23, '2', '2', 'Velumani', 'Farmer', 15000.00, 1, 11000.00, 14000.00, 'Thanjavur', 'Guindy', '2010030023', '2', '2', 'upload_files/candidate_tracker/57995724591_ARUNKUMAR resume-1.pdf', NULL, NULL, '2020-10-05', 1, '', '5', '13', NULL, 0.00, '01:55 PM', '0', NULL, '1', 'Confidence Level low', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:50:28', 1, '2020-10-05 02:26:58', 0, NULL, 1),
(864, 'DANIEL S', '13', '8012254197', '8610147637', 'kewindaniel7@gmail.com', '1997-12-14', 22, '4', '2', 'Samuthira pandi', 'Daily wages', 30000.00, 4, 23000.00, 35000.00, 'Tirunelveli', 'Chennai', '2010030024', '', '2', 'upload_files/candidate_tracker/84628597316_Resume updated.pdf', NULL, NULL, '2020-10-07', 1, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:52:36', 50, '2020-10-07 06:37:58', 0, NULL, 1),
(865, 'Vijay.R', '4', '6382633933', '6381178977', 'vijay633933@gmail.com', '2001-08-01', 19, '2', '2', 'Raj.p', 'Farmer', 15000.00, 1, 0.00, 10000.00, 'Kallakurichi', 'Chennai', '2010030025', '2', '1', 'upload_files/candidate_tracker/34307802903_VIJAY RESUME.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', NULL, 0.00, '10:40 AM', '0', NULL, '2', 'not fit for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 01:53:53', 1, '2020-10-05 12:22:33', 0, NULL, 1),
(866, '', '0', '7358764789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 02:53:37', 0, NULL, 0, NULL, 1),
(867, '', '0', '7397243513', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 03:55:44', 0, NULL, 0, NULL, 1),
(868, '', '0', '9384654505', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 04:06:57', 0, NULL, 0, NULL, 1),
(869, 'srinithi.b', '4', '9514192030', '7810087517', 'nithisribalajie19@gmail.com', '2000-06-19', 20, '2', '2', 's.m balajie', 'student', 30000.00, 1, 0.00, 15000.00, 'chennai', 'nanganallur', '2010030029', '1', '1', 'upload_files/candidate_tracker/37423771237_srinithi resume.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'Communication skills very poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-03 04:22:15', 50, '2020-10-05 01:07:17', 0, NULL, 1),
(870, 'shijin', '13', '8848072457', '9746172208', 'shijinsubramanniam@gmail.com', '1997-07-30', 23, '3', '2', 'subramannian t', 'php developer', 20000.00, 2, 0.00, 15000.00, 'malappuram', 'malappuram', '2010030030', '', '1', 'upload_files/candidate_tracker/64884839071_shijinsubramanniam0 (1) (2).pdf', NULL, NULL, '2020-10-03', 0, '', '6', '0', NULL, 0.00, '05:00 PM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 05:41:59', 1, '2020-10-03 05:55:04', 0, NULL, 1),
(871, '', '0', '9092995515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010030031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 07:12:56', 0, NULL, 0, NULL, 1),
(872, 'Mithun Kumar', '13', '6379978410', '8148539346', 'mithunesh11@gmail.com', '1998-06-01', 22, '3', '2', 'Balakrishnan', '-', 10000.00, 1, 0.00, 15000.00, 'Sivaganga', 'Chennai', '2010030032', '', '1', 'upload_files/candidate_tracker/87759796300_Updated - Resume (2).pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 07:13:53', 50, '2020-10-06 05:28:46', 0, NULL, 1),
(873, 'Mithun Kumar', '13', '8148539346', '6379978410', 'mithunesh9628@gmail.com', '1998-06-01', 22, '4', '2', 'Balakrishnan', '-', 10000.00, 1, 0.00, 15000.00, 'Sivaganga', 'Chennai', '2010030033', '', '1', 'upload_files/candidate_tracker/92433242211_Updated - Resume (2).pdf', NULL, NULL, '2020-10-05', 0, '', '6', '', '1970-01-01', 0.00, '11:01 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-03 08:22:07', 1, '2020-10-10 01:25:59', 0, NULL, 1),
(874, 'Guru.s', '4', '9360663818', '6381178977', 'guruevr8@gmail.com', '1997-05-26', 23, '2', '2', 'Selvam.s', 'Farmer', 10000.00, 2, 10500.00, 13000.00, 'Mannargudi', 'Chennai', '2010040001', '2', '2', 'upload_files/candidate_tracker/97145681401_guru resume.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Communication poor but expected salary', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-04 09:00:11', 1, '2020-10-05 02:24:44', 0, NULL, 1),
(875, 'naveenkumar a', '13', '8523989616', '', 'naveenarumugam143@gmail.com', '1999-03-07', 21, '3', '2', 'vennila a', 'daily wage worker', 6000.00, 3, 0.00, 15000.00, 'Salem', 'Salem', '2010040002', '', '1', 'upload_files/candidate_tracker/67884230866_Naveenkumar (Php).pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '12:08 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-04 09:02:44', 50, '2020-10-06 05:27:43', 0, NULL, 1),
(876, 'M.Sakthi vel', '6', '8667665627', '8098522047', 'Sakthivel30798@gmail.com', '1998-07-30', 22, '2', '2', 'V.murugaiya', 'Guli', 8000.00, 2, 12000.00, 15000.00, 'Tirunelveli', 'Chennai', '2010040003', '1', '2', 'upload_files/candidate_tracker/91715388588_sakthivel resume (1).pdf', NULL, NULL, '2020-10-06', 0, '', '3', '8', '1970-01-01', 156000.00, '11:30 AM', '2', '1970-01-01', '2', '13K for Syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-04 05:46:33', 7, '2020-10-09 07:07:39', 0, NULL, 1),
(877, 'R. Ramkumar', '4', '9840783118', '9003827034', 'ramkumar.rc99@gmail.com', '1999-09-23', 21, '2', '2', 'J. Radhakrishnan', 'Labour', 8000.00, 1, 0.00, 15000.00, 'Guduvancherry', 'Guduvancherry', '2010050001', '2', '1', 'upload_files/candidate_tracker/78723300521_1601789787193_Resume-converted.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'Communication skills poor so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 06:17:11', 1, '2020-10-05 06:40:05', 0, NULL, 1),
(878, 'Mohan Raman', '5', '9566238378', '9499929309', 'mraman10595@gmail.com', '1995-05-10', 25, '2', '2', 'Govindaraman V', 'Electrician', 20000.00, 1, 15500.00, 18000.00, 'Chennai', 'Chennai', '2010050002', '1', '2', 'upload_files/candidate_tracker/20420891298_CamScanner 10-05-2020 10.57.39-compressed.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Suitable For Calling Profile.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 09:37:49', 50, '2020-10-05 12:29:01', 0, NULL, 1),
(879, 'Kiran Kumar .Y', '4', '9962086542', '8248596840', 'kirankumarhmcs@gmail.com', '1993-12-03', 26, '2', '2', 'Venkata Ramana .Y', 'Nill', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010050003', '1', '1', 'upload_files/candidate_tracker/89902817910_kiran Resume.docx', NULL, NULL, '2020-10-05', 0, '', '5', '14', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'Expecting high salary and not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 09:47:40', 50, '2020-10-06 09:45:44', 0, NULL, 1),
(880, 'Radhakrishnan', '13', '7868828611', '7339424731', 'RADHAKRISHNANSEEMAN610@GMAIL', '1998-05-15', 22, '2', '2', 'Seeman', 'Daily wages', 4000.00, 3, 0.00, 12000.00, 'Ariyalur', 'Chennai', '2010050004', '3', '1', 'upload_files/candidate_tracker/217027496_Radhakrishnan_resume(new).doc', NULL, NULL, '2020-10-05', 0, '', '5', '28', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'He Struggle In Basic Frontend Validation Jquery Or Javascript. Not coming next time interview Schedule time', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 09:53:17', 1, '2020-10-05 11:41:36', 0, NULL, 1),
(881, 'Karthick Raja', '5', '8220038934', '9043208118', 'gkr82200@gmail.com', '1994-01-08', 26, '2', '2', 'VASANTHA', 'Formar', 3.50, 0, 16000.00, 20000.00, 'Nilgiris', 'Velachari', '2010050005', '8', '2', 'upload_files/candidate_tracker/85669314071_Karthick raja resume.docx', NULL, NULL, '2020-10-05', 0, '', '5', '44', NULL, 0.00, '10:02 AM', '0', NULL, '1', 'He is not fit for a life sales ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 09:57:43', 1, '2020-10-05 10:03:08', 0, NULL, 1),
(882, 'Abinaya.s', '4', '8248202027', '', 'abinayasudhagar18@gmail.com', '1999-11-18', 20, '2', '2', 'Sudhagar.k', 'Pharmacist', 18000.00, 1, 0.00, 10000.00, 'Triplicane', 'Triplicane', '2010050006', '2', '1', 'upload_files/candidate_tracker/1157043819_resume_1591861589593.pdf', NULL, NULL, '2020-10-06', 0, '', '3', '8', '2020-10-08', 120000.00, '11:00 AM', '3', '2021-01-31', '2', '10K for Dhivya team.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 10:31:44', 7, '2020-10-22 05:50:13', 0, NULL, 1),
(883, 'sivakumar rs', '5', '8072342287', '', 'ksiva8294@gmail.com', '1994-07-10', 26, '2', '2', 'sakthivel r', 'retried', 20000.00, 4, 16130.00, 18000.00, 'avadi', 'avadi', '2010050007', '2', '2', 'upload_files/candidate_tracker/3003685106_CV_SIVAKUMAR RS.pdf', NULL, NULL, '2020-10-05', 0, '', '3', '8', '2020-10-12', 216000.00, '02:30 PM', '0', NULL, '1', '18K for lokesh team', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 10:41:46', 1, '2020-10-05 02:53:08', 0, NULL, 1),
(884, 'suja nanthini p', '4', '9487430544', '8778547987', 'sujananthini21@gmail.com', '1998-07-21', 22, '2', '2', 'panduregan', 'working', 20000.00, 1, 0.00, 11000.00, 'nagapattinam', 'tambaram', '2010050008', '2', '1', 'upload_files/candidate_tracker/35015023838_sujaresumeedited.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Confidence Level Very Low', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 10:42:27', 1, '2020-10-06 12:59:40', 0, NULL, 1),
(885, 'Prathipa. A', '4', '9841496731', '', 'graceprathipa@gmail.com', '1999-11-11', 20, '2', '2', 'Arul doss. A', 'Daily wages', 11000.00, 1, 0.00, 10000.00, 'Ayyapakkam', 'Ayyapakkam', '2010050009', '1', '1', 'upload_files/candidate_tracker/81988242471_RESUME.docx', NULL, NULL, '2020-10-06', 0, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 10:44:09', 50, '2020-10-06 11:46:15', 0, NULL, 1),
(886, 'DURGADEVI', '4', '9361702755', '9385643525', 'durgamurugandd97@gmail.com', '1997-12-19', 22, '2', '2', 'Velmurugan', 'Vandriver', 15000.00, 1, 0.00, 12.00, 'Tirunelveli', 'Tambaram sanitorium,Chennai', '2010050010', '2', '1', 'upload_files/candidate_tracker/48502518884_DD02 RESUME.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '01:01 PM', '', '1970-01-01', '2', 'not sustain long term ... seeking alliance ..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 10:44:26', 1, '2020-10-06 01:38:23', 0, NULL, 1),
(887, '', '0', '6380719648', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010050011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 11:09:55', 0, NULL, 0, NULL, 1),
(888, 'Varadharajan', '13', '8939101522', '8300661507', 'svrajan222@gmail.com', '1997-03-18', 23, '3', '2', 'Dhavamani', 'Agricultural', 10000.00, 2, 0.00, 120000.00, 'Villupuram', 'Chennai', '2010050012', '', '1', 'upload_files/candidate_tracker/898457106_Resume.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '28', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'basic skill is not enough', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 11:26:30', 1, '2020-10-05 11:29:22', 0, NULL, 1),
(889, 'Rajeshwaran j', '4', '7338991582', '9677214732', 'rajesh86waran@gmail.com', '1985-06-27', 35, '2', '2', 'Jayakumar', 'Retried', 20000.00, 1, 17500.00, 20000.00, 'Chennai', 'Chennai', '2010050013', '3', '2', 'upload_files/candidate_tracker/62223009952_Resume July 2019 RAJESHWARAN (1).pdf', NULL, NULL, '2020-10-05', 5, '', '3', '8', '2020-10-08', 144000.00, '11:42 AM', '4', '2020-11-05', '1', '12K for Muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 11:31:22', 7, '2020-10-08 03:13:28', 0, NULL, 1),
(890, 'Hannah paulin', '4', '6381956772', '7904742670', 'paulinepeace777@gmail.com', '1999-07-09', 21, '2', '2', 'Poulose', 'Business', 13000.00, 1, 0.00, 11000.00, 'No65/77 Bajanaii Koil Street Choolaimedu', 'No65/77 Bajanaii Koil Street Choolaimedu', '2010050014', '1', '1', 'upload_files/candidate_tracker/1807410050_RESUME.docx', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '11:43 AM', '', '1970-01-01', '1', 'She Is Not Work With Pressure', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 11:35:51', 50, '2020-10-06 11:49:52', 0, NULL, 1),
(891, 'Ranjitha M', '4', '8197016033', '', 'ranjitha121999@gmail.com', '1999-09-12', 21, '2', '2', 'Madesh v', 'Graduate', 15000.00, 2, 0.00, 14000.00, 'Chikka begur main road ambedkar nagar Bangalore 68', 'Chikka begur main road ambedkar nagar Bangalore 68', '2010050015', '1', '1', 'upload_files/candidate_tracker/43418935407_RANJITHA M (1).doc', NULL, NULL, '2020-10-05', 0, '', '3', '8', '2020-10-08', 132000.00, '01:01 PM', '', '1970-01-01', '2', '11K for Gowshick team', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 11:37:57', 50, '2020-10-06 09:46:12', 0, NULL, 1),
(892, 'Velavan N', '5', '6381953049', '9710469108', 'velasd143@gmail.com', '1989-12-26', 30, '1', '2', 'Navamani', 'Passed away', 35000.00, 1, 20000.00, 25000.00, 'Chennai. Redhills', 'Chennai Redhills', '2010050016', '', '2', 'upload_files/candidate_tracker/14206562462_3068823458D1ECA62339D2AAC9D630688234260320042213827_.pdf', NULL, NULL, '2020-10-05', 30, '5177', '7', '', NULL, 0.00, '12:07 PM', '0', NULL, '1', 'He will join on 1st week of November', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 11:58:49', 1, '2020-10-05 02:53:22', 0, NULL, 1),
(893, 'Sangavi', '4', '9952929740', '9025006311', 'sangavi3237@gmail.com', '1997-11-11', 22, '2', '2', 'Ramesh', 'Security office', 100000.00, 0, 15000.00, 15000.00, '33vannai pandian street Vyasarpadi Chennai 39', '33vannai pandian street Vyasarpadi Chennai 39', '2010050017', '1', '2', 'upload_files/candidate_tracker/67154249154_Rahul-1.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no Pressure Handling xxamp Sustainability low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 11:59:43', 50, '2020-10-05 01:20:56', 0, NULL, 1),
(894, 'rahul rao', '4', '7010864279', '7200002399', 'rahulddkx1@gmail.com', '1994-11-26', 25, '2', '2', 'Jaya rao', 'Business', 50.00, 1, 11.00, 12.00, 'No 24 sivalingham street nesapakkam ch -78', 'No 24 Sivalingham Street Nesapakkam Ch -78', '2010050018', '1', '2', 'upload_files/candidate_tracker/8401546911_Rahul-1.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '12:19 PM', '', '1970-01-01', '1', 'Attitude poor', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-05 12:16:34', 58, '2020-12-29 10:03:56', 0, NULL, 1),
(895, 'Karthika', '4', '9150461475', '7092731765', 'Karthikachristina241196@gmail.com', '1996-11-24', 23, '2', '2', 'Kumar', 'Parsl office', 100000.00, 0, 13000.00, 14000.00, 'No16 new labour line Kathabada chennai21', 'No16 New Labour Line Kathabada Chennai21', '2010050019', '1', '2', 'upload_files/candidate_tracker/25367858887_karthika.docx', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Confidence Level low so not fit for telesales', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 12:34:50', 50, '2020-10-05 02:50:06', 0, NULL, 1),
(896, 'Revathy', '11', '8939173557', '9080869286', 'revaseenu44@gmail.com', '1995-08-31', 25, '2', '1', 'Krishna', 'Team lead', 6.00, 0, 1.50, 18000.00, 'Chennai', 'Chennai', '2010050020', '2', '2', 'upload_files/candidate_tracker/1670864095_Reva resume 2020.docx', NULL, NULL, '2020-10-07', 7, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 12:34:59', 50, '2020-10-07 06:38:09', 50, '2020-10-15 10:30:27', 0),
(897, 'sai shiva sakthi ca', '4', '8778340400', '9080605104', 'saishivasakthi19cs@gmail.com', '1995-12-19', 24, '2', '2', 'Sairam ca', 'retried', 10000.00, 1, 0.00, 20000.00, 'chennai', 'thirumullaivayol', '2010050021', '3', '1', 'upload_files/candidate_tracker/51177958013_i9zus-tsat9.pdf', NULL, NULL, '2020-10-05', 0, '', '5', '13', '1970-01-01', 0.00, '12:51 PM', '', '1970-01-01', '2', 'Communication low so rejected', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 12:43:06', 50, '2020-10-05 01:39:08', 0, NULL, 1),
(898, 'ebinesh t', '4', '9444405078', '8122615875', 'ebineshebi0708@gmail.com', '1997-08-07', 23, '1', '2', 'thangamani p', 'Accountant', 25000.00, 1, 18000.00, 25000.00, 'avadi chennai', 'Avadi chennai', '2010050022', '', '2', 'upload_files/candidate_tracker/62429291459_resume 2020 ebi.pdf', NULL, NULL, '2020-10-05', 0, '5177', '5', '13', '1970-01-01', 0.00, '12:15 PM', '', '1970-01-01', '1', 'Sustainability less', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 12:52:02', 50, '2020-10-05 03:19:46', 0, NULL, 1),
(899, 'Aarthi', '11', '9791096681', '', 'aarthiadc.25@gmail.com', '1997-07-25', 23, '2', '2', 'Chenguttuvan', 'Cashuer', 500000.00, 1, 0.00, 14000.00, 'Ayanavaram', 'Ayavanaram', '2010050023', '1', '1', 'upload_files/candidate_tracker/86963987663_RESUME AARTHI.docx', NULL, NULL, '2020-10-07', 0, '', '5', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'She will not sustain, if she got any other better offer she will switch.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 01:04:43', 50, '2020-10-07 03:21:11', 0, NULL, 1),
(900, 'Sam v cherian', '5', '9496998154', '8431385745', 'vcsam034@gmail.com', '1990-10-14', 29, '1', '1', 'V s cherian', 'Social worker', 30000.00, 1, 26000.00, 26000.00, 'Kerala', 'Koramangala 1 st block', '2010050024', '', '2', 'upload_files/candidate_tracker/45991886160_Sam V Cherian New CV(1) (1ka07)-converted (1).pdf', NULL, NULL, '2020-10-05', 0, '5490', '3', '8', '2020-10-07', 330000.00, '01:20 PM', '0', NULL, '1', '27.5K for Sathish team', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 01:11:12', 1, '2020-10-05 01:22:12', 0, NULL, 1),
(901, 'Shahul Hameed', '5', '9710538785', '8668099950', 'shahul2885@gmail.com', '1992-09-30', 28, '1', '2', 'Rajar ali', 'Own business', 20000.00, 3, 30000.00, 27000.00, 'Chennai', 'Chennai', '2010050025', '', '2', 'upload_files/candidate_tracker/59076079744_Shahul Hameed R.pdf', NULL, NULL, '2020-10-05', 0, '5172', '3', '8', '2020-10-08', 312000.00, '01:40 PM', '6', '2021-07-01', '1', '26K . For rajkumar team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 01:36:30', 7, '2020-10-22 05:26:21', 0, NULL, 1),
(902, 'durga devi v', '4', '9385643525', '', 'durgamurugandd97@gmail.com', '1997-12-19', 22, '2', '2', 'vel murugan', 'van driver', 10000.00, 0, 0.00, 11000.00, 'thirunelveli', 'tambaram sanitorium', '2010050026', '2', '1', 'upload_files/candidate_tracker/95500651823_Durga 19resume.docx', NULL, NULL, '2020-10-06', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 02:43:43', 1, '2020-10-05 02:50:32', 50, '2020-10-06 01:27:20', 0),
(903, 'Pretheesa Nayahi', '4', '7871182092', '8056289618', 'Pretheesha1992@gmail.com', '1992-08-20', 28, '2', '1', 'Sathish', 'Proffesion', 25000.00, 1, 0.00, 15000.00, 'Chennai pallikaranai', 'Chennai pallikaranai', '2010050027', '1', '2', 'upload_files/candidate_tracker/77806608209_Copyofpretheesaresume.docx(3)(1).pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 03:50:28', 50, '2020-10-06 05:28:02', 0, NULL, 1),
(904, 'prathiba', '4', '8608947391', '9941671655', 'prathiba.3997@gmail.com', '1997-09-03', 23, '2', '2', 'parthiban', 'office assisstant', 20000.00, 1, 14000.00, 18000.00, 'Chennai', 'Chennai', '2010050028', '1', '2', 'upload_files/candidate_tracker/63898188722_prathiba CV (1).pdf', NULL, NULL, '2020-10-22', 0, '', '8', '21', '1970-01-01', 0.00, '01:25 PM', '', '1970-01-01', '2', 'candidate gone', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 03:55:06', 50, '2020-10-22 02:28:09', 0, NULL, 1),
(905, 'M. Saroja', '5', '9841208717', '', 'sarojamoses898@gmail.com', '1998-09-16', 22, '2', '2', 'D/O A. Muthu krishnan', 'Auto Drive', 13000.00, 1, 0.00, 15000.00, 'Anna nagar', 'Anna nagar', '2010050029', '1', '1', 'upload_files/candidate_tracker/18804400472_SAROJA RESUME.pdf', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-05 04:13:12', 50, '2020-10-06 05:28:12', 0, NULL, 1),
(906, '', '0', '7094944434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010050030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-05 04:32:27', 0, NULL, 0, NULL, 1),
(907, 'K.saron ruba', '4', '6381151449', '9176534748', 'saronruba771@gmail.com', '1998-07-17', 22, '2', '2', 'Nill', 'Nill', 200000.00, 4, 15000.00, 15000.00, 'Thoothukudi', 'Thambaram sanatorium', '2010060001', '1', '2', 'upload_files/candidate_tracker/36848464606_saron .pdf', NULL, NULL, '2020-10-07', 5, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'rejected ,not sustain long term bcz expecting high salary 15 k above ', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 01:11:45', 50, '2020-10-07 12:19:11', 0, NULL, 1),
(908, 'Murugalakshmi G', '4', '7639221305', '', 'Lakshmirosy18@gmail.com', '1998-05-25', 22, '2', '2', 'Gurusamy', 'Daily wages', 12000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Chromepet', '2010060002', '1', '1', 'upload_files/candidate_tracker/73163545029_Selvalaxmi resume.pdf', NULL, NULL, '2020-10-07', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Observation Skills low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 09:55:04', 50, '2020-10-07 01:19:48', 0, NULL, 1),
(909, 'PERUMAL G', '5', '9943827528', '9952920032', 'Perumalg33@gmail.com', '1995-05-12', 25, '2', '2', 'GOVINDHARAJ', 'Sales and marketing', 5000.00, 2, 23000.00, 28000.00, 'Chennai', 'Chennai', '2010060003', '3', '2', 'upload_files/candidate_tracker/55084025550_RESUME_perumal.pdf', NULL, NULL, '2020-10-06', 1, '', '5', '34', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'rejected not sutable for our job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:57:15', 1, '2020-10-06 10:22:01', 0, NULL, 1),
(910, '', '0', '7299250043', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:59:55', 0, NULL, 0, NULL, 1),
(911, 'A.jesintha mary', '4', '8754269571', '', 'jesinthamary245@gmail.com', '2000-02-15', 20, '1', '2', 'J. Arokia doss', 'Driver', 72000.00, 1, 0.00, 10000.00, 'Triplicane', 'Ice house', '2010060005', '', '1', 'upload_files/candidate_tracker/40277297480_Adobe Scan Oct 06, 2020.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '13', NULL, 0.00, '10:45 AM', '0', NULL, '1', 'not bold and not Sustain long term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 10:18:32', 1, '2020-10-06 11:02:12', 0, NULL, 1),
(912, 'Mohammed Ibrahim', '5', '8056680015', '', 'Ibrahimmech.dxb@gmail.com', '1995-05-19', 25, '1', '2', 'Hythar ali', 'Fishing', 200000.00, 1, 18000.00, 21000.00, 'Thanjavur', 'Chennai', '2010060006', '', '2', 'upload_files/candidate_tracker/33792358073_Ibrahim 8056.docx', NULL, NULL, '2020-10-06', 0, '5388', '3', '8', '2020-10-15', 252000.00, '11:31 AM', '2', '1970-01-01', '1', '21K for Veben team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 10:19:10', 7, '2020-10-22 06:08:01', 0, NULL, 1),
(913, 'Jayasri R', '4', '7395967640', '8825440629', 'Jayasriraman1997@gmail.com', '1997-08-05', 23, '2', '2', 'Raman P', 'Sales mentor', 10000.00, 1, 0.00, 10000.00, 'Medavakkam', 'Medavakkam', '2010060007', '1', '1', 'upload_files/candidate_tracker/75837253819_1601820892792_sowmiya resume.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '10:57 AM', '', '1970-01-01', '2', 'long distance 1 hr travel,Not Sustain Long Term, She Is Intrested In Lecture Job , Tnpsc Exam', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 10:32:12', 50, '2020-10-06 11:01:46', 0, NULL, 1),
(914, 'JONAOF ARC C', '4', '8531025248', '7395967640', 'Jo151197@gmail.com', '1997-11-15', 22, '2', '2', 'CHARLES M', 'Labour', 10000.00, 2, 0.00, 10000.00, 'Villupuram', 'Medavakkam', '2010060008', '1', '1', 'upload_files/candidate_tracker/20053483995_jo pdf 1.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '13', '1970-01-01', 0.00, '10:46 AM', '', '1970-01-01', '2', 'Communication skills not well so rejected', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 10:33:24', 50, '2020-10-06 10:54:30', 0, NULL, 1),
(915, 'Sowmiya. V', '4', '9597690074', '8825440629', 'Vsowmiammu@gmail.com', '1997-10-14', 22, '2', '2', 'Venkateson. M', 'Travells manager', 50000.00, 1, 0.00, 2.00, 'Medavakkam', 'Medavakkam', '2010060009', '1', '1', 'upload_files/candidate_tracker/16272248077_1601820892792_sowmiya resume.pdf', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '10:46 AM', '', '1970-01-01', '2', 'no need for job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 10:43:21', 50, '2020-10-06 11:09:14', 0, NULL, 1),
(916, 'Balaji M', '5', '9597419319', '', 'balajimurugesanms@gmail.com', '1992-10-31', 27, '1', '2', 'Murugesan L', 'B', 30000.00, 1, 22000.00, 27000.00, 'Coimbatore', 'Coimbatore', '2010060010', '', '2', 'upload_files/candidate_tracker/78383864711_0_Balaji Resume.pdf', NULL, NULL, '2020-10-06', 0, '5361', '3', '8', '2020-10-07', 312000.00, '11:13 AM', '6', '2023-08-19', '1', '26K for Sathish team', '5', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:08:13', 7, '2020-10-22 05:25:44', 0, NULL, 1),
(917, 'yuvaraj a c', '13', '7996059084', '', 'yuvarajac9611@gmail.com', '1999-02-11', 21, '2', '2', 'chandrashekar a', 'former', 2000.00, 1, 0.00, 21000.00, 'Shimoga', 'Shimoga', '2010060011', '1', '1', 'upload_files/candidate_tracker/40183565328_yuvaraj_a_c - updated1.pdf', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 11:12:23', 50, '2020-10-07 06:38:16', 0, NULL, 1),
(918, 'S.vinetha', '4', '8428657513', '7397334443', 'Esthervinecathy@gmail.com', '1999-08-06', 21, '2', '2', 'C.siva', 'Daily wages', 12000.00, 1, 0.00, 10000.00, 'No:165,m.t.h,road ,villivakkam,chennai-600049', 'No:165,M.T.H,Road ,Villivakkam,Chennai-600049', '2010060012', '1', '1', 'upload_files/candidate_tracker/2913879297_Magal_Resume.docx v.docx', NULL, NULL, '2020-10-06', 0, '', '5', '21', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', 'she dont want presure job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 11:30:48', 50, '2020-10-06 11:40:28', 0, NULL, 1),
(919, 'sakthivel m', '4', '9360826839', '8667665627', 'sakthivel30798@gmail.com', '1998-07-30', 22, '2', '2', 'murgaiya m', 'shop', 10000.00, 0, 12000.00, 13000.00, 'velacherry', 'velacherry', '2010060013', '2', '2', 'upload_files/candidate_tracker/595198086_sakthivel resume (1).pdf', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:35:44', 1, '2020-10-06 11:40:27', 7, '2020-10-09 07:07:47', 0),
(920, 'Thoufeek TKS', '5', '8072043742', '', 'johnthofiqcena@gmail.com', '1994-04-05', 26, '2', '1', 'Abubucker siddiq', 'Business', 25000.00, 1, 21000.00, 21000.00, 'Chennai', 'Chennai', '2010060014', '1', '2', 'upload_files/candidate_tracker/37123695809_Resume.docx', NULL, NULL, '2020-10-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'told no int in insurance', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 11:36:49', 50, '2020-10-07 11:03:18', 0, NULL, 1),
(921, 'SUBRAHMANYA C', '4', '9964334791', '6361942379', 'mani.sc527@gmail.com', '1993-12-20', 26, '2', '2', 'H chandraiah', 'retair government', 70000.00, 2, 20000.00, 20000.00, 'tumkur', 'garebavipalya', '2010060015', '7', '2', 'upload_files/candidate_tracker/74980148302_Subrhmanya C_CRM_CAFS.docx', NULL, NULL, '2020-10-06', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:45:38', 50, '2020-10-06 05:28:35', 0, NULL, 1),
(922, 'SYED AMEER SOHAIL', '13', '9108234874', '9108751334', 'syedameersohail1@gmail.com', '1997-04-24', 23, '2', '2', 'SYED SHOUKATH ALI', 'Self employee', 20000.00, 3, 0.00, 350000.00, 'Workers colony kavalettu kumarpatnum post', 'Workers colony kavalettu kumarpatnum post', '2010060016', '1', '1', 'upload_files/candidate_tracker/25823999927_Syed_Ameer_Sohail final resume.pdf', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 11:50:01', 50, '2020-10-07 06:38:47', 0, NULL, 1),
(923, 'usha m', '4', '8072145141', '', 'ushachintu@ymail.com', '1991-01-15', 29, '2', '1', 'mohan', 'late', 10000.00, 0, 12000.00, 13000.00, 'neelankari', 'neelankarai', '2010060017', '2', '2', 'upload_files/candidate_tracker/55176787731_usha resume-old-2.docx', NULL, NULL, '2020-10-07', 0, '', '5', '21', NULL, 0.00, '10:45 AM', '0', NULL, '1', 'She Dont Have Voice Exp , Alreadyhave Exp In Email Chat Process ...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:54:30', 1, '2020-10-07 10:27:01', 0, NULL, 1),
(924, 'soma sundaram', '5', '9380735529', '9551626784', 'somusunddar.p@gmail.com', '1987-08-06', 33, '2', '1', 'rubin selvarani', 'house wife', 30000.00, 1, 20000.00, 23000.00, 'Chennai', 'avadi chennai', '2010060018', '8', '2', 'upload_files/candidate_tracker/29347598701_Somasundaram_CV(2).doc', NULL, NULL, '2020-10-06', 0, '', '5', '29', NULL, 0.00, '12:37 PM', '0', NULL, '1', 'not selected', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 12:31:35', 1, '2020-10-06 01:02:03', 0, NULL, 1),
(925, 'Indhumathi.k', '4', '8248022701', '9962902270', 'Indhumathi.19111998@gmail.com', '1998-07-10', 22, '2', '2', 'Kandhasami.P', 'Marketing field', 12000.00, 2, 13000.00, 15000.00, 'Purasaiwakkam', 'Purasaiwakkam', '2010060019', '1', '2', 'upload_files/candidate_tracker/34863621666_INDHU RESUME.pdf', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '01:06 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 12:48:08', 50, '2020-10-07 06:38:56', 0, NULL, 1),
(926, '', '0', '7810027033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 12:49:44', 0, NULL, 0, NULL, 1),
(927, 'Priya.v', '4', '9003234982', '7550114530', 'priyavenseslaus2340@gmail.com', '2000-04-23', 20, '2', '2', 'P.venseslaus', 'Driver', 12000.00, 1, 9000.00, 11000.00, 'ayappakkam', 'ayappakkam', '2010060021', '1', '2', 'upload_files/candidate_tracker/88832795107_priyaresume.docx', NULL, NULL, '2020-10-07', 0, '', '3', '8', '1970-01-01', 120000.00, '12:30 PM', '2', '1970-01-01', '2', '10K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 01:11:22', 7, '2020-10-09 07:05:10', 0, NULL, 1),
(928, '', '0', '9390905933', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 01:22:46', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(929, 'saron ruba k', '4', '9176534748', '', 'saronruba771@gmail.com', '1998-07-17', 22, '2', '2', 'karneson p', 'not working', 10000.00, 1, 12000.00, 13000.00, 'thoothukudi', 'tambaram sanitorium', '2010060023', '2', '2', 'upload_files/candidate_tracker/24298417358_saron ruba.pdf', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 01:25:13', 1, '2020-10-07 12:15:30', 0, NULL, 1),
(930, 'parthiban', '13', '8870901951', '6382025053', 'parthibannatesan2698@gmail.com', '1998-01-26', 22, '2', '1', 'natesan', 'business', 7000.00, 1, 6000.00, 20000.00, 'salem', 'salem', '2010060024', '1', '2', 'upload_files/candidate_tracker/18784539799_PARTHIBAN.pdf', NULL, NULL, '2020-10-07', 2, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 02:41:36', 50, '2020-10-07 06:39:07', 0, NULL, 1),
(931, 'saranaya r', '4', '6374860537', '7299718479', 'wwwsaranya026@gmail.com', '1998-06-17', 22, '2', '2', 'rajasekar p', 'carpenter', 10000.00, 1, 12000.00, 13000.00, 'chennai', 'velacherry', '2010060025', '2', '2', 'upload_files/candidate_tracker/97057771851_saranya r.pdf', NULL, NULL, '2020-10-07', 0, '', '5', '21', NULL, 0.00, '10:31 AM', '0', NULL, '2', 'interested only in cus support', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 03:28:10', 1, '2020-10-07 11:53:51', 0, NULL, 1),
(932, 'Dhanalakshmi K', '13', '9710412381', '9677171871', 'dhana.wpt@gmail.com', '1993-11-17', 26, '2', '1', 'Shanmugam S', 'Admin in indian additives private limoted', 20000.00, 2, 12500.00, 18000.00, 'Kodungaiyur, chennai', 'Kodungaiyur, chennai', '2010060026', '1', '2', 'upload_files/candidate_tracker/24408076200_Dhana_Resume_2_1.doc', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '03:37 PM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 03:29:46', 1, '2020-10-06 03:49:10', 0, NULL, 1),
(933, 'malvitha r', '4', '9176416016', '', 'raveemalv2426@gmail.com', '2000-01-24', 20, '2', '2', 'raveendran s', 'working', 15000.00, 0, 0.00, 11000.00, 'chennai', 'ashok pillar', '2010060027', '2', '1', 'upload_files/candidate_tracker/30339009416_Malvitha R resume.docx', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 03:53:22', 50, '2020-10-07 06:39:17', 0, NULL, 1),
(934, '', '0', '9344254604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:00:33', 0, NULL, 0, NULL, 1),
(935, 'tharunika srinivasan', '4', '7904376884', '', 'tharunika.srinivasan@gmail.com', '2000-12-06', 19, '2', '2', 'srinivasan k', 'working', 20000.00, 1, 0.00, 11000.00, 'chennai', 'kodambakkam', '2010060029', '2', '1', 'upload_files/candidate_tracker/68838188359_Tharunika Srinivasan resume.docx', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:00:48', 1, '2020-10-06 04:04:09', 0, NULL, 1),
(936, 'nivash k', '4', '8428615291', '9791797701', 'danialnivash@gmail.com', '1996-11-12', 23, '2', '2', 'kamlanathan b', 'business', 20000.00, 2, 12000.00, 13000.00, 'salem', 'sozhinganallur', '2010060030', '2', '2', 'upload_files/candidate_tracker/80282144746_1600139273443_Nivash RESUME-1824.docx', NULL, NULL, '2020-10-08', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Not Sustain Long Term xxamp Also Last Salry 18k ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:09:16', 1, '2020-10-07 04:23:45', 0, NULL, 1),
(937, '', '0', '7449265582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:16:43', 0, NULL, 0, NULL, 1),
(938, '', '0', '9150718591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:17:04', 0, NULL, 0, NULL, 1),
(939, 'karthikeyan.', '6', '9123555155', '', 'b.karthickeyancool@ymail.com', '1994-12-20', 25, '2', '2', 'baskar t', 'nill', 325000.00, 2, 26000.00, 27000.00, 'no ten sakthivel nagar seventh street', 'puzhal', '2010060033', '3', '2', 'upload_files/candidate_tracker/97718071972_karthik Resume 2.docx', NULL, NULL, '2020-10-06', 0, '', '5', '18', NULL, 0.00, '04:39 PM', '0', NULL, '2', 'Non degeree holder and an average guy', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:34:52', 1, '2020-10-06 05:11:41', 0, NULL, 1),
(940, 'arun kumar a', '4', '7397433023', '7401812358', 'arunrakesh1997@gmail.com', '1997-08-10', 23, '2', '2', 'ananda jothi r', 'real estate', 35000.00, 2, 0.00, 12000.00, 'poonamalle', 'poonamalle', '2010060034', '2', '1', 'upload_files/candidate_tracker/27624375385_ArunKumar_Resume.docx', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 04:39:36', 1, '2020-10-06 04:43:55', 0, NULL, 1),
(941, 'aman saxena', '13', '9452665596', '', '', '1996-09-26', 24, '2', '2', 'mr. arvind kumar saxena', 'accounts officer at bsnl', 40000.00, 1, 0.00, 15000.00, 'sharda hills colony antia tal', 'jhansi', '2010060035', '1', '2', 'upload_files/candidate_tracker/70716467835_resume_copy.docx', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 04:43:14', 1, '2020-10-06 07:03:27', 0, NULL, 1),
(942, 'Dineshkumar', '13', '8248031284', '9786613769', 'DhDhinesh805@gmail.com', '1992-07-05', 28, '2', '2', 'Pushparaj', 'Coolie', 16000.00, 1, 0.00, 18000.00, 'Namakkal', 'Gummidipondi', '2010060036', '1', '1', 'upload_files/candidate_tracker/86331126480_DINESH KUMAR P - RESUME.docx', NULL, NULL, '2020-10-07', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He Is Not Strong In Php Basic . ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 04:54:29', 50, '2020-10-07 01:24:59', 0, NULL, 1),
(943, 'Subha', '4', '7092524698', '7358212166', 'subhasoundharajan@gmail.com', '1996-11-19', 23, '2', '2', 'Soundharajan', 'Book binder', 9000.00, 1, 13000.00, 14000.00, 'Urappakkam', 'Urappakkam', '2010060037', '1', '2', 'upload_files/candidate_tracker/88702204724_subhasoundharajan.docx', NULL, NULL, '2020-10-07', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'She Is Interested In Customer Support ', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 05:11:46', 50, '2020-10-07 11:17:55', 0, NULL, 1),
(944, 'priya r', '4', '7305327553', '9003032899', 'priyasasi2202@gmail.com', '2000-02-22', 20, '2', '2', 'raja rao b', 'security', 10000.00, 0, 12000.00, 13000.00, 'chennai', 'velacherry', '2010060038', '2', '2', 'upload_files/candidate_tracker/96903106395_rrrrrrr.pdf', NULL, NULL, '2020-10-07', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'intrested only for data entry so not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 05:13:25', 1, '2020-10-07 12:12:51', 0, NULL, 1),
(945, 'venkatesan r', '13', '8903875523', '', 'venkatsaran59@gmail.com', '1994-03-16', 26, '2', '2', 'ramesh r', 'fish sale', 12000.00, 1, 40000.00, 42000.00, 'nagapattinam', 'chennai', '2010060039', '1', '2', 'upload_files/candidate_tracker/98023873902_Venkat Resume.pdf', NULL, NULL, '2020-10-07', 15, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 05:32:27', 50, '2020-10-07 06:39:28', 0, NULL, 1),
(946, 's mohamed shuaeb', '13', '9884732468', '7871442242', 'smdshuaeb96@gmail.com', '1996-12-10', 23, '2', '1', 'p mohamed shamsudeen', 'salesman', 10000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2010060040', '1', '1', 'upload_files/candidate_tracker/48653746978_mdshuaed CV.pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '02:00 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 06:04:28', 1, '2020-10-06 07:26:01', 0, NULL, 1),
(947, 'nancy kavitha s', '4', '8056977173', '9677280595', 'nancclemen31@gmail.com', '1995-05-31', 25, '2', '2', 'shankar', 'not working', 15000.00, 0, 12000.00, 14000.00, 'chennai', 'royapuram', '2010060041', '2', '2', 'upload_files/candidate_tracker/67543447949_CV_2020-09-19-033359.pdf', NULL, NULL, '2020-10-07', 0, '', '3', '8', '2020-10-08', 132000.00, '10:30 AM', '0', NULL, '2', '11K for dhivya team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 06:18:38', 1, '2020-10-07 01:18:58', 0, NULL, 1),
(948, 'franklin m', '4', '8608095127', '9043213939', 'Candyboi99@gmail.com', '2000-09-17', 20, '2', '2', 'doss m', 'harbour employer', 25000.00, 1, 12000.00, 14000.00, 'chennai', 'thiruvanmiyur', '2010060042', '2', '2', 'upload_files/candidate_tracker/89222085384_resume .pdf', NULL, NULL, '2020-10-07', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Communication skills very poor', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 06:25:21', 1, '2020-10-07 11:51:25', 0, NULL, 1),
(949, '', '0', '9884401652', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010060043', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 07:33:08', 0, NULL, 0, NULL, 1),
(950, 'shalini', '4', '9940123766', '6382002476', 'Babyshalini22699@gmail.com', '1999-06-22', 21, '2', '1', 'Panner selvam p', 'Tailor', 8000.00, 1, 13000.00, 14000.00, 'chennai', 'porur', '2010060044', '2', '2', 'upload_files/candidate_tracker/53158778499_shalini resume.docx', NULL, NULL, '2020-10-07', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:00:32', 50, '2020-10-07 03:15:24', 0, NULL, 1),
(951, 'gowri m', '4', '9952007532', '8778661426', 'gowri0120@gmail.com', '1998-10-20', 21, '2', '1', 'murugesan d', 'electrician', 13000.00, 1, 13000.00, 14000.00, 'chennai', 'shenoy nagar', '2010060045', '2', '2', 'upload_files/candidate_tracker/39088258946_GOWRI.M[1]new resume (1).pdf', NULL, NULL, '2020-10-07', 0, '', '3', '8', '2020-10-15', 126000.00, '10:30 AM', '2', '1970-01-01', '2', '10.5K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:13:16', 7, '2020-10-16 11:47:09', 0, NULL, 1),
(952, 'abirami m', '4', '7092497149', '7550182797', 'Suryabi14@gmail.com', '1998-02-21', 22, '2', '1', 'murugasan', 'working', 10000.00, 1, 0.00, 10000.00, 'chennai', 'anna nagar east', '2010060046', '2', '1', 'upload_files/candidate_tracker/65717098395_Resume Format 2 page.pdf', NULL, NULL, '2020-10-07', 0, '', '3', '8', '1970-01-01', 126000.00, '10:30 AM', '2', '1970-01-01', '2', '10.5K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 09:23:49', 7, '2020-10-12 12:39:57', 0, NULL, 1),
(953, 'Sandhiya', '3', '8438010227', '', 'Sandhiyasaranya95@gmail.com', '1997-07-31', 23, '2', '2', 'Sankar', 'self employee', 12000.00, 1, 0.00, 280000.00, 'Chennai', 'chennai', '2010060047', '1', '1', 'upload_files/candidate_tracker/16781047575_Sandhiyaresume-sql.pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-06 09:37:47', 1, '2020-10-06 09:51:29', 0, NULL, 1),
(954, 'chithra m', '4', '9884696144', '', 'chithra29041999@gmail.com', '1999-04-24', 21, '2', '2', 'muthukumar r s', 'painter', 10000.00, 1, 11000.00, 12000.00, 'chennai', 'mylapore', '2010060048', '2', '2', 'upload_files/candidate_tracker/96564208037_chithra M.docx', NULL, NULL, '2020-10-07', 0, '', '5', '13', '1970-01-01', 0.00, '10:25 AM', '', '1970-01-01', '2', 'Communication poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-06 11:22:11', 50, '2020-10-07 11:43:58', 0, NULL, 1),
(955, 'Vageesh R g', '4', '9940478904', '6383261687', 'vageeshrg@gmail.com', '2000-02-15', 20, '1', '2', 'Gunasekaran R', 'P.W.D CIVIL', 200000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2010070001', '', '1', 'upload_files/candidate_tracker/93367078825_vageesh resume.pdf', NULL, NULL, '2020-10-07', 0, '5620', '5', '8', '1970-01-01', 0.00, '10:38 AM', '', '1970-01-01', '2', 'will not suite for calling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 10:35:51', 8, '2020-10-07 12:52:42', 0, NULL, 1),
(956, 'Arif Ahamed.A', '4', '9840411627', '9962895377', 'Arifahamed785@gmail.com', '1996-06-20', 24, '2', '2', 'Althaf Ahamed', 'Graphics', 20000.00, 1, 15000.00, 25000.00, 'No:5 old 47/2 3rd street Nsk nagar Arumbakkam', 'No:5 Old No:47/2 3rd Street Nsk Nagar Arumbakkam', '2010070002', '1', '2', 'upload_files/candidate_tracker/55892570324_ARIF_M.A[1].docx', NULL, NULL, '2020-10-08', 0, '', '3', '8', '2020-10-12', 240000.00, '11:30 AM', '', '1970-01-01', '1', '20K for Lokesh team', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 10:39:54', 50, '2020-10-09 04:27:24', 0, NULL, 1),
(957, 'Shenbagavalli M', '4', '8122215622', '9356325064', 'shenbha25021996@gmail.com', '1996-02-25', 24, '1', '2', 'Muppidari G', 'Business', 50000.00, 2, 12000.00, 12000.00, 'Saidpet', 'Saidpet', '2010070003', '', '2', 'upload_files/candidate_tracker/99133381843_doc00351120190516202319.pdf', NULL, NULL, '2020-10-07', 1, '5497', '5', '13', NULL, 0.00, '11:04 AM', '0', NULL, '2', 'Communication skills low', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 10:55:35', 1, '2020-10-07 11:36:52', 0, NULL, 1),
(958, '', '0', '7402589930', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 11:18:07', 0, NULL, 0, NULL, 1),
(959, 'Swetha.s', '4', '9789887061', '9710817007', 'swethasasikumar27@gmail.com', '2001-07-09', 19, '2', '2', 'Sasi Kumar.r', 'Electrician', 20000.00, 1, 0.00, 10000.00, '6, Rajasekar lane Mylapore Chennai 5', '6,Rajasekar lane Mylapore Chennai 5', '2010070005', '1', '1', 'upload_files/candidate_tracker/88325395277_S Swetha.docx', NULL, NULL, '2020-10-07', 0, '', '5', '21', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '2', 'She Wants 3 Month Only Full Time Job, After She Went To Colleage ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 11:21:33', 50, '2020-10-07 12:26:31', 0, NULL, 1),
(960, 'KRESAN. R', '4', '7358689024', '9710817007', 'Jackkresan2001@gamil.com', '2001-08-27', 19, '2', '2', 'Vijayalashmi', 'Export tailor', 10000.00, 1, 0.00, 10000.00, 'No.21/thulukkama thoot Thriplicane chennai. 05', 'No. 21/thulukkama thoot Thriplicane Chennai- 05', '2010070006', '1', '1', 'upload_files/candidate_tracker/63509013127_R.Kresan.docx', NULL, NULL, '2020-10-07', 0, '', '5', '13', '1970-01-01', 0.00, '12:12 PM', '', '1970-01-01', '2', 'Confidence Level Skills low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 11:26:30', 50, '2020-10-07 12:25:32', 0, NULL, 1),
(961, '', '0', '9626436586', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 11:31:53', 0, NULL, 0, NULL, 1),
(962, 'pavithra m', '4', '9941677828', '', 'rcmchitra29@gmail.com', '1999-06-03', 21, '2', '2', 'marriyappan', 'not working', 10000.00, 1, 0.00, 12000.00, 'koyembedu', 'koyembedu', '2010070008', '1', '1', 'upload_files/candidate_tracker/96545106138_DocScanner 07-October-2020 12_24_24.pdf', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '12:50 PM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 11:33:16', 1, '2020-10-07 02:59:40', 0, NULL, 1),
(963, 'v.magesh kumar', '5', '7402899330', '', 'magesh.mk24@gmail.com', '1994-01-01', 26, '1', '2', 'k.vilvanathan', 'Investigation officer', 40000.00, 1, 23000.00, 26000.00, 'madurai', 'Bangalore', '2010070009', '', '2', 'upload_files/candidate_tracker/96860087797_Magesh Resume.pdf', NULL, NULL, '2020-10-07', 0, '5361', '3', '8', '2020-10-12', 276000.00, '11:36 AM', NULL, '2025-11-25', '1', '23K for manivel team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 11:33:26', 7, '2020-10-22 05:27:00', 0, NULL, 1),
(964, 'u.jayapriya', '4', '8122016159', '', 'jayapriyak059@gmail.com', '1999-11-14', 20, '1', '2', 'a udayakumar', 'water business', 10000.00, 0, 0.00, 12000.00, 'mylapore', 'mylapore', '2010070010', '', '1', 'upload_files/candidate_tracker/73715561699_jayapriya.pdf', NULL, NULL, '2020-10-07', 0, '5277', '5', '13', NULL, 0.00, '12:08 PM', '0', NULL, '2', 'Sustainability less', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 12:01:57', 1, '2020-10-07 12:09:52', 0, NULL, 1),
(965, 'Celine.n', '4', '7305287992', '9087550626', 'celinenavies@gmail.com', '1997-06-03', 23, '2', '2', 'Navis', 'Farmer', 12000.00, 2, 8000.00, 11000.00, 'ayappakkam', 'ayappakkam', '2010070011', '1', '2', 'upload_files/candidate_tracker/34101526228_imgtopdf_generated_0710201223014celin.pdf', NULL, NULL, '2020-10-07', 0, '', '5', '21', '1970-01-01', 0.00, '12:27 PM', '', '1970-01-01', '2', 'Not Sustain Long term xxamp Also Double Minded ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 12:07:31', 50, '2020-10-07 12:44:49', 0, NULL, 1),
(966, 's.arulmozhi', '4', '7871178200', '', 'arulmozhi0184@gmail.com', '2000-04-18', 20, '1', '2', 's.sathish', 'fisherman', 12000.00, 2, 0.00, 12000.00, 'santhome', 'santhome', '2010070012', '', '1', 'upload_files/candidate_tracker/90326731975_arul.pdf', NULL, NULL, '2020-10-07', 0, '5277', '5', '21', NULL, 0.00, '12:17 PM', '0', NULL, '2', 'Low Voice ,Not Bold ,Not Sus Long Term', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 12:12:23', 1, '2020-10-07 12:18:24', 0, NULL, 1),
(967, 'lokesh kumr c', '5', '9384513563', '9944608692', 'lokshsnazzy96@gmail.com', '1996-07-09', 24, '2', '2', 'b g chennaiyan', 'buisnes', 30000.00, 0, 290000.00, 350000.00, 'bargur', 'madiwala', '2010070013', '3', '2', 'upload_files/candidate_tracker/91555976623_Lokesh resume 2020.pdf', NULL, NULL, '2020-10-07', 0, '', '3', '8', '2020-10-12', 228000.00, '12:48 PM', '4', '2021-01-17', '1', '18050K for Muppudathy team', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 12:16:18', 7, '2020-10-22 06:11:27', 0, NULL, 1),
(968, '', '0', '9789887071', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 12:27:47', 0, NULL, 0, NULL, 1),
(969, 'SAHAYA SAJEN ABISHEK', '4', '8098394057', '', 'abiabi1419@gmail.com', '1996-08-19', 24, '2', '2', 'DEVA SAHAYAM', 'FISHERMAN', 20000.00, 1, 15000.00, 18000.00, 'NAGERCOIL', 'CHENNAI', '2010070015', '1', '2', 'upload_files/candidate_tracker/33583801312_Abishesk Resume.pdf', NULL, NULL, '2020-10-09', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 12:39:47', 50, '2020-10-09 07:14:54', 0, NULL, 1),
(970, 'Sakthi saravanan', '14', '6379001361', '', '', '2000-07-26', 20, '2', '2', 'Nandhini', 'Professor', 15000.00, 3, 0.00, 15000.00, 'Arni', 'Arni', '2010070016', '1', '1', 'upload_files/candidate_tracker/76972139587_Sakthi saravanan Resume - Copy.docx', NULL, NULL, '2020-10-07', 0, '', '5', '27', NULL, 0.00, '01:21 PM', '0', NULL, '1', 'Task Incomplete', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 01:17:35', 1, '2020-10-07 01:23:42', 0, NULL, 1),
(971, 'Kowsalya', '4', '8760556552', '', '', '1997-12-23', 22, '2', '2', 'Mohan.k', 'Centring Contractor', 20000.00, 1, 14000.00, 15000.00, 'Ariyalur', 'Chennai', '2010070017', '1', '2', 'upload_files/candidate_tracker/35641441187_Kowsalya CV.pdf', NULL, NULL, '2020-10-08', 0, '', '5', '21', '1970-01-01', 0.00, '01:36 PM', '', '1970-01-01', '2', 'Not Sustain Long Term , Bcz She Have Offer And Expecting High Salary ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 01:17:55', 50, '2020-10-08 02:57:30', 0, NULL, 1),
(972, '', '0', '6380441472', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 02:29:57', 0, NULL, 0, NULL, 1),
(973, '', '0', '6383896801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010070019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 02:37:23', 0, NULL, 0, NULL, 1),
(974, 'Flora priyadharshini', '4', '9043011484', '7358258955', 'Florakuttypriya@gmail.com', '1998-01-10', 22, '2', '2', 'J.Lazar', 'Daily wages', 10000.00, 1, 0.00, 12000.00, 'No:35pushpanagar 2nd street', 'Nungambakkam', '2010070020', '1', '1', 'upload_files/candidate_tracker/75342875089_FloraLazar.pdf', NULL, NULL, '2020-10-07', 0, '', '8', '', '1970-01-01', 0.00, '03:32 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 03:24:54', 50, '2020-10-07 06:39:40', 0, NULL, 1),
(975, 'Sangavi.S', '4', '9789809120', '9940392034', 'ammukavi1813@gmail.com', '1997-12-18', 22, '2', '2', 'S.sankar', 'Dailywage', 10000.00, 1, 0.00, 12000.00, 'No:6/4pushanagar 2nd', 'Nungambakkam chennai 34', '2010070021', '1', '1', 'upload_files/candidate_tracker/9401489511_SANGAVI RESUME.pdf', NULL, NULL, '2020-10-07', 0, '', '6', '0', NULL, 0.00, '03:41 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 03:25:17', 1, '2020-10-07 03:42:49', 0, NULL, 1),
(976, 'Deepalakshmi. m', '20', '7338990475', '', '', '2000-05-28', 20, '2', '2', 'S. Mahalingam', 'Driver', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2010070022', '2', '1', 'upload_files/candidate_tracker/56630039088_Gmail.pdf', NULL, NULL, '2020-10-08', 0, '', '8', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'candidate not attend the interview', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 04:35:32', 1, '2020-10-08 12:04:44', 0, NULL, 1),
(977, 'B.vijayalakshmi', '4', '7010132969', '9841525016', 'Viji1232000@gmail.com', '2000-03-12', 20, '1', '2', 'S.Babu', '266666', 15000.00, 1, 0.00, 12000.00, 'Plot no. 142, EVP Prabu Avehennai 600 122', 'Plot No. 142, EVP Prabu A, Chennai 600 122', '2010070023', '', '1', 'upload_files/candidate_tracker/45499704125_VIJI RESUME-1.docx', NULL, NULL, '2020-10-08', 0, '66673', '3', '8', '1970-01-01', 120000.00, '11:17 AM', '2', '1970-01-01', '2', 'she is from ambatur need to check.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 06:01:48', 7, '2020-10-12 11:57:18', 0, NULL, 1),
(978, 'R.Hemalatha', '4', '8838674347', '9790721087', 'lhema5626@gmail.com', '2000-04-12', 20, '1', '2', 'D.rajendran', 'Water chemical operater', 15000.00, 1, 0.00, 12000.00, 'shi Amman nager, alwarthirunager Chennai_600087', 'man nager Alwarthirunager Chennai _ 600087', '2010070024', '', '1', 'upload_files/candidate_tracker/70143102153_Document-WPS Office.pdf', NULL, NULL, '2020-10-08', 0, '66673', '5', '13', NULL, 0.00, '11:16 AM', '0', NULL, '2', 'Convincing level poor', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-07 06:03:09', 1, '2020-10-08 11:37:10', 0, NULL, 1),
(979, 'Sharfunissa begum', '16', '9566096925', '', 'nisharehana9@gmail.com', '1997-01-19', 23, '2', '2', 'Muktheir', 'Auto driver', 30000.00, 0, 15000.00, 30000.00, 'Chennai', 'Chennai', '2010070025', '1', '2', 'upload_files/candidate_tracker/59350649671_1_My resume.docx', NULL, NULL, '2020-10-11', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-07 10:33:56', 1, '2020-10-08 09:00:17', 0, NULL, 1),
(980, '', '0', '6381452271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 12:25:25', 0, NULL, 0, NULL, 1),
(981, '', '0', '8438917131', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:00:13', 0, NULL, 0, NULL, 1),
(982, '', '0', '8125650029', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:22:27', 0, NULL, 0, NULL, 1),
(983, '', '0', '9952941541', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:25:21', 0, NULL, 0, NULL, 1),
(984, 'J. HEMANTH KUMAR', '4', '9739318196', '', 'hemanth.jawaji9999@gmail.com', '1993-11-07', 26, '2', '2', 'j. sreenivasulu', 'business', 15.00, 1, 23000.00, 20000.00, 'arekara', 'arekara', '2010080005', '7', '2', 'upload_files/candidate_tracker/32808836010_hemanth jawaji_CRM_CAFS.pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '02:00 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 10:43:45', 1, '2020-10-08 12:08:14', 0, NULL, 1),
(985, 'Saranya.D', '4', '6369608984', '8072266916', 'saara24101999@gmail.com', '1999-10-24', 20, '1', '2', 'Devarajan.D', 'Driver', 25000.00, 1, 0.00, 10000.00, 'Saidapet', 'Saidapet', '2010080006', '', '1', 'upload_files/candidate_tracker/11098326476_66049389053_Final Resume of Saranya (7).docx', NULL, NULL, '2020-10-08', 0, '5419', '3', '8', '2020-10-12', 120000.00, '10:58 AM', '4', '2020-11-21', '2', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 10:50:11', 7, '2020-10-12 01:22:52', 0, NULL, 1),
(986, 'Esakkiyappan Sankar M', '4', '6385114214', '7200504004', 'sankaresk@gmail.com', '1991-07-26', 29, '2', '2', 'Muthiah A', 'Farmar', 30000.00, 1, 8000.00, 15000.00, '21 south st Urkad, Ambasamudram, Tirunelveli', 'Chennai', '2010080007', '1', '2', 'upload_files/candidate_tracker/22127653976_biodata(1).doc', NULL, NULL, '2020-10-08', 0, '', '5', '13', NULL, 0.00, '12:05 PM', '0', NULL, '2', 'he is intrested only nonvoice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 11:08:30', 1, '2020-10-08 01:11:19', 0, NULL, 1),
(987, 'Sathiskumar', '16', '8220928879', '', 'sathiskumar2008@ymail.com', '1989-06-01', 31, '2', '1', 'Dinakaran', 'Sales', 20000.00, 3, 17000.00, 23000.00, 'Chennai', 'Chennai', '2010080008', '1', '2', 'upload_files/candidate_tracker/220973929_Sathis Kumar -bank-1-1.docx', NULL, NULL, '2020-12-10', 30, '', '5', '8', '1970-01-01', 0.00, '11:12 AM', '', '1970-01-01', '1', 'already Attended interview for MIS. now as RM, will not suite for sales.', '3', '2', '', '', '', '', '2', '1970-01-01', '3', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-08 11:09:12', 58, '2020-12-23 02:50:52', 0, NULL, 1),
(988, 'D.praveen kumar', '5', '9087832300', '9566150845', 'kuttypraveen25@gmail.com', '1992-09-25', 28, '1', '1', 'G.Dayalan', 'Fisher Department', 20000.00, 1, 17000.00, 23000.00, 'Nanganallur', 'Nanganallur', '2010080009', '', '2', 'upload_files/candidate_tracker/40235076340_praveenkumar.2514(2).pdf', NULL, NULL, '2020-10-08', 15, 'Arun Kumar (RM)', '5', '36', NULL, 0.00, '11:36 AM', '0', NULL, '1', 'na', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:31:10', 1, '2020-10-08 11:37:17', 0, NULL, 1),
(989, 'M.balamurugan', '5', '9176751179', '9843660268', 'bala14jayam@gmail.com', '1988-10-20', 31, '2', '1', 'Uma maheshwari', 'House wife', 40000.00, 1, 360000.00, 450000.00, 'Chennai', 'Chennai', '2010080010', '3', '2', 'upload_files/candidate_tracker/63566003360_RESUME 2020 MAY.doc', NULL, NULL, '2020-10-08', 0, '', '5', '51', NULL, 0.00, '01:05 PM', '0', NULL, '1', 'given information by him is fake', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:31:50', 1, '2020-10-08 11:37:11', 0, NULL, 1),
(990, '', '0', '7204939678', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:46:58', 0, NULL, 0, NULL, 1),
(991, '', '0', '9789817259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:47:06', 0, NULL, 0, NULL, 1),
(992, '', '0', '8608742453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:47:46', 0, NULL, 0, NULL, 1),
(993, 'M. Aakila banu', '4', '9498350885', '8608248302', 'aakilathuslim@gmail.com', '1999-09-07', 21, '2', '2', 'G. Mohammed Ali', 'Turner', 15000.00, 1, 0.00, 11000.00, 'Surapet', 'Shanmugapuram', '2010080014', '7', '1', 'upload_files/candidate_tracker/60207259782_ aakila aakilathuslim resume.pdf', NULL, NULL, '2020-10-08', 0, '', '5', '8', '1970-01-01', 0.00, '12:13 PM', '', '1970-01-01', '2', 'will not suite for CRM. not speaking up', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 11:48:17', 8, '2020-10-09 11:25:01', 0, NULL, 1),
(994, 'M.priya', '4', '6382171055', '8056010684', 'priyalekha1999@gmail.com', '1999-07-08', 21, '2', '2', 'M.muthu', 'Construction helper', 10000.00, 2, 0.00, 12000.00, 'Ambattur', 'Ambattur', '2010080015', '1', '1', 'upload_files/candidate_tracker/30219492243_Resume-2.pdf', NULL, NULL, '2020-10-08', 0, '', '5', '8', '1970-01-01', 0.00, '11:57 AM', '', '1970-01-01', '2', 'will not suite for CRM, not speaking up', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 11:48:19', 8, '2020-10-09 11:25:47', 0, NULL, 1),
(995, 'M MOHAMMED ALI', '6', '6380714403', '8682869743', 'ucantcme131@gmail.com', '1997-12-13', 22, '1', '2', 'M MOHAMMED YUSUF', 'Biscuit sales', 10000.00, 1, 13000.00, 16000.00, 'No 38 Palani Andavar koil Street Ayanavaram', 'Chennai 600023', '2010080016', '', '2', 'upload_files/candidate_tracker/72221664719_Cv.docx', NULL, NULL, '2020-10-08', 0, '5626', '5', '22', NULL, 0.00, '12:32 PM', '0', NULL, '1', 'appearance and comunication is not good', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 12:15:30', 1, '2020-10-08 12:45:39', 0, NULL, 1),
(996, 'manojkumar r', '14', '9003116732', '9444940994', 'manoj.ravi94@gmail.com', '1994-09-04', 26, '2', '2', 'ravi r', 'mechanic', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2010080017', '1', '1', 'upload_files/candidate_tracker/95340467870_MANOJKUMAR\'s Resume (6).pdf', NULL, NULL, '2020-10-08', 0, '', '6', '0', NULL, 0.00, '01:45 PM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 01:05:51', 1, '2020-10-08 01:46:05', 0, NULL, 1),
(997, '', '0', '8608742465', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:10:11', 0, NULL, 0, NULL, 1),
(998, '', '0', '8838093239', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 01:11:29', 0, NULL, 0, NULL, 1),
(999, 'K. Ramya', '4', '9940254031', '', 'krkramya1998@gmail.com', '1998-04-20', 22, '2', '2', 'E. Kalidasan', 'Aachi ASM', 35000.00, 2, 0.00, 15000.00, 'Tambaram', 'East tambaram', '2010080020', '1', '1', 'upload_files/candidate_tracker/35663320325_RAMYA ECE.docx', NULL, NULL, '2020-10-12', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Convincing Skills low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 01:28:22', 50, '2020-10-12 11:51:30', 0, NULL, 1),
(1000, 'VIGNESH SARAVANAN', '13', '9597986596', '9894111580', 'Vigneshvickycse51@gmail.com', '1998-04-02', 22, '2', '2', 'Saravanan', 'Office admin', 20000.00, 1, 0.00, 10000.00, 'Coimbatore', 'Coimbatore', '2010080021', '1', '1', 'upload_files/candidate_tracker/95155520797_101627.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '', '1970-01-01', 0.00, '01:37 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 01:42:14', 50, '2020-10-10 06:21:20', 0, NULL, 1),
(1001, 'Prabu', '16', '6381849520', '8056380307', 'Prabu198@yahoo.co.in', '1984-05-23', 36, '2', '1', 'Angammal', 'Home maker', 25000.00, 3, 25000.00, 20000.00, '29, mariyamman koil st, semmedu, panruti', 'Cruz stays, somasundaram Avenue, porur, chennai', '2010080022', '1', '2', 'upload_files/candidate_tracker/31944381416_Prabu (1).docx', NULL, NULL, '2020-10-09', 0, '', '8', '', '1970-01-01', 0.00, '02:10 PM', '', '1970-01-01', '2', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 02:02:24', 50, '2020-10-09 12:28:45', 0, NULL, 1),
(1002, 'pooja.p', '4', '9902206807', '', 'pooja3151997gmail.com', '1998-05-31', 22, '2', '2', 'puttaraju m', 'civilcontractor', 20000.00, 1, 0.00, 20000.00, 'Bangalore', 'Bangalore', '2010080023', '1', '1', 'upload_files/candidate_tracker/93938292069_POOJA.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '38', NULL, 0.00, '04:28 PM', '0', NULL, '2', 'she will handle pressure and will not suit for our field', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 03:15:25', 1, '2020-10-09 04:30:05', 0, NULL, 1),
(1003, '', '0', '8722747018', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010080024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-08 03:16:25', 0, NULL, 0, NULL, 1),
(1004, 'sabarish kumar k', '6', '9840255796', '', 'skumar18@live.com', '1990-02-18', 30, '2', '2', 'kuppan c', 'other', 43000.00, 1, 23000.00, 30000.00, 'chennai', 'chennai', '2010080025', '1', '2', 'upload_files/candidate_tracker/38838685207_sabari.resume.docx_ live.docx', NULL, NULL, '2020-10-08', 0, '', '5', '15', NULL, 0.00, '03:28 PM', '0', NULL, '2', 'not sustain', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 03:24:47', 1, '2020-10-08 03:44:40', 0, NULL, 1),
(1005, 'varadharajan s', '13', '8300661507', '', '', '1997-03-18', 23, '2', '2', 'saravanan', 'former', 8000.00, 2, 0.00, 13000.00, 'villupuram', 'chennai', '2010080026', '1', '1', 'upload_files/candidate_tracker/97180310827_Resume.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 06:17:43', 50, '2020-10-10 06:21:05', 0, NULL, 1),
(1006, 'Geetha', '4', '8526751065', '7397308386', 'Geethaelumalai10@gmail.com', '2000-01-10', 20, '2', '2', 'Elumalai', 'No need', 50000.00, 0, 13000.00, 14000.00, 'Tambaram', 'Tambaram', '2010080027', '1', '2', 'upload_files/candidate_tracker/38283694934_1602218562392_Microsoft Word - geetha.pdf', NULL, NULL, '2020-10-09', 0, '', '3', '8', '1970-01-01', 120000.00, '12:00 PM', '2', '1970-01-01', '2', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-08 07:59:12', 7, '2020-10-09 07:08:17', 0, NULL, 1),
(1007, '', '0', '8838792188', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 06:15:34', 0, NULL, 0, NULL, 1),
(1008, '', '0', '7975060583', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 06:47:14', 0, NULL, 0, NULL, 1),
(1009, '', '0', '6374563978', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 08:29:14', 0, NULL, 0, NULL, 1),
(1010, '', '0', '9344483625', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 08:50:02', 0, NULL, 0, NULL, 1),
(1011, 'N.SUSILA', '4', '7871181622', '8428643445', 'susila6049@gmail.com', '1998-12-22', 21, '2', '2', 'P.Nallathambi', 'Water can supply', 9000.00, 3, 0.00, 12000.00, 'Camp road', 'Camp road', '2010090005', '1', '1', 'upload_files/candidate_tracker/96681604455_SUSILA N.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '21', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'Not Sustain Long Term Bcz Of Family Backround', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 09:12:47', 50, '2020-10-12 11:51:40', 0, NULL, 1),
(1012, 'D. Manikandan', '16', '6382576633', '9840969335', 'Manithalarasigan1995@gmail.com', '1995-10-30', 24, '1', '2', 'M. Durairaj', 'Barbur', 30000.00, 0, 12000.00, 15000.00, 'No.164/9 S. Puram foreshore estate Chennai 600028', 'No. 164/9 s. Puram foreshore estate Chennai 600028', '2010090006', '', '2', 'upload_files/candidate_tracker/69717692348_New Doc 2020-10-09 10.34.29.pdf', NULL, NULL, '2020-10-09', 0, '5277', '5', '53', NULL, 0.00, '10:26 AM', '0', NULL, '2', 'he wont suit for any profile in cafs', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 09:58:29', 1, '2020-10-09 12:57:00', 0, NULL, 1),
(1013, 'M. Gopi', '4', '9080465687', '8428988692', 'billagopi17@gmail.com', '1999-08-09', 21, '1', '2', 'E. Maari', 'Driver', 30000.00, 1, 0.00, 15000.00, '144,bojaraja nagar, korukkupet, chennai 600021', 'No1, egappan street, korukkupet, chennai 600021', '2010090007', '', '1', 'upload_files/candidate_tracker/11868721112_default.pdf', NULL, NULL, '2020-10-09', 0, '5551', '3', '8', '2020-10-12', 120000.00, '10:20 AM', '3', '2020-11-02', '1', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 10:13:00', 7, '2020-10-09 07:09:15', 0, NULL, 1),
(1014, '', '0', '8778350186', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 10:24:59', 0, NULL, 0, NULL, 1),
(1015, 'Aswin', '7', '9176468084', '8939622938', 'aswinkumar096@gmail.com', '1997-04-10', 23, '1', '2', 'Vijaya Kumar', 'Watchman', 9000.00, 1, 13000.00, 19500.00, 'Chennai', 'Chennai', '2010090009', '', '2', 'upload_files/candidate_tracker/67822626018_RESUME-V. Aswin_Final_21-Oct-19_11.56.48.docx', NULL, NULL, '2020-10-09', 0, '5277', '5', '35', '1970-01-01', 0.00, '10:20 AM', '', '1970-01-01', '1', 'Candidate Dont Have A Knowledge About Mutual Fund. And He Looking A Operational Job, Not Okay For Sales.', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 10:25:53', 50, '2020-10-09 10:58:33', 0, NULL, 1),
(1016, 'Suresh', '16', '9600116707', '', 'nagasuresh013@gmail.com', '1991-06-05', 29, '2', '1', 'Nagarajan', 'Farmer', 10000.00, 0, 20000.00, 20000.00, 'Ariyalur', 'Chennai', '2010090010', '1', '2', 'upload_files/candidate_tracker/21569215979_suresh MIS profile .doc', NULL, NULL, '2020-10-09', 0, '', '5', '54', '1970-01-01', 0.00, '11:17 AM', '', '1970-01-01', '1', 'He left office, no information', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 10:39:40', 50, '2020-10-09 11:24:58', 0, NULL, 1),
(1017, 'B.kaladhar vara kumar', '16', '8489875309', '', 'kaladharboppuri@gmail.com', '1996-08-20', 24, '2', '2', 'Shyam', 'Teacher', 20000.00, 2, 17000.00, 22000.00, 'Bestawaripeta Andhra Pradesh', 'Chennai', '2010090011', '1', '2', 'upload_files/candidate_tracker/83407062126_B. KALADHAR CV.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '53', '1970-01-01', 0.00, '10:43 AM', '', '1970-01-01', '2', 'Sustain issue. he s not ok with bonds', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 10:40:34', 50, '2020-10-09 11:14:12', 0, NULL, 1),
(1018, 'Praveen Kumar', '16', '9894129053', '8072441739', 'Pparrikumar@gmail.com', '1994-09-13', 26, '2', '2', 'Mr.a.pasupathi', 'Working in men\'s parlour', 10000.00, 1, 21000.00, 25000.00, 'Chennai', 'Chennai', '2010090012', '1', '2', 'upload_files/candidate_tracker/9537552507_PRAVEEN KUMAR 21.docx', NULL, NULL, '2020-10-09', 0, '', '5', '54', NULL, 0.00, '10:58 AM', '0', NULL, '1', 'Task Incomplete', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 10:53:57', 1, '2020-10-09 11:04:18', 0, NULL, 1),
(1019, 'P uma Maheswari', '4', '9514063597', '7871705887', 'umaboomi06@gmail.com', '2000-02-13', 20, '2', '2', 'Prakasam', 'Cooli', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Moolakadai', '2010090013', '1', '1', 'upload_files/candidate_tracker/43737362408_Uma.docx', NULL, NULL, '2020-10-09', 0, '', '5', '21', '1970-01-01', 0.00, '11:06 AM', '', '1970-01-01', '2', 'she is interested in data entry job ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 11:02:49', 50, '2020-10-09 11:13:51', 0, NULL, 1),
(1020, 'Suseela munusamy', '7', '9710290805', '8939138395', 'Susila871@gmail.com', '1995-03-05', 25, '2', '2', 'Munusamy', 'Carpenter', 35000.00, 1, 17000.00, 20000.00, 'Teynampet', 'Teynanpet', '2010090014', '1', '2', 'upload_files/candidate_tracker/50399725862_Resume-Suseela AML M.docx', NULL, NULL, '2020-10-09', 45, '', '5', '53', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '1', 'She s looking fro mis or any non voice process, but she dont have exp in excel even she dont hve basic knowledge in excel', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 11:12:20', 50, '2020-10-09 11:48:27', 0, NULL, 1),
(1021, 'B.sivapriya', '4', '9791340201', '', 'sivapriyabaskaran98@gmail.com', '1998-10-15', 21, '2', '2', 'Kothai ammal', 'Home maker', 100000.00, 1, 0.00, 10000.00, 'Tindivanam', 'Chennai', '2010090015', '1', '1', 'upload_files/candidate_tracker/75931458763_file1_1602223483507.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '21', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'She Is Not Sustain Long Term Bcz,Already In Accounts Field xxampAlso Expecting Above 12k Salary', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 11:18:50', 1, '2020-10-09 12:21:52', 0, NULL, 1),
(1022, '', '0', '9884968587', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 11:30:49', 0, NULL, 0, NULL, 1),
(1023, 'Deepak. S', '4', '7358646923', '9444346110', 'Saideepaks1996@gmail.com', '1996-02-02', 24, '1', '2', 'K. P. M. Shankar', 'Advocate', 40000.00, 1, 0.00, 25000.00, 'Kodambakkam', 'Choolaimedu', '2010090017', '', '1', 'upload_files/candidate_tracker/10658762677_New Doc 2020-10-09 13.01.38.pdf', NULL, NULL, '2020-10-09', 0, 'Stephenraj', '5', '13', '1970-01-01', 0.00, '01:20 PM', '', '1970-01-01', '1', 'not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 11:42:46', 50, '2020-10-09 01:44:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1024, 'venkatesan.c', '4', '7401520704', '8870704841', 'venkatesan.cka07@gmail.com', '1992-05-04', 28, '1', '2', 'cahkkaravarthi', 'mother', 150000.00, 2, 18000.00, 15000.00, 'chennai', 'chennai', '2010090018', '', '2', 'upload_files/candidate_tracker/46992448441_venkat_resume-converted (1).docx', NULL, NULL, '2020-10-09', 2, 'mbp079', '5', '14', NULL, 0.00, '03:05 PM', '0', NULL, '1', 'not suitable for this profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 11:45:20', 1, '2020-10-09 03:18:38', 0, NULL, 1),
(1025, 'Mayadevi.s', '4', '8870748422', '6379293116', 'mayadevi2306@gmail.com', '1995-06-23', 25, '1', '2', 'Sethupathi', 'Driver', 100000.00, 2, 0.00, 12000.00, 'Madurai', 'Chennai', '2010090019', '', '1', 'upload_files/candidate_tracker/67493433145_file1_1602225178508.pdf', NULL, NULL, '2020-10-09', 0, 'Tellecaller', '6', '0', NULL, 0.00, '12:15 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 11:57:06', 1, '2020-10-09 12:16:42', 50, '2020-10-09 07:15:11', 0),
(1026, '', '0', '8939594298', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 12:00:18', 0, NULL, 0, NULL, 1),
(1027, 'Shalini', '4', '6369131450', '8682864681', 'shalnitabi8235@gmail.com', '1999-12-23', 20, '2', '2', 'Thulasingam', 'Driver', 20000.00, 1, 0.00, 10000.00, 'Kundrathur', 'Kundrathur', '2010090021', '1', '1', 'upload_files/candidate_tracker/65190839182_1601901643255Resume_Shalini.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '14', '1970-01-01', 0.00, '12:29 PM', '', '1970-01-01', '1', 'looking for data entry not suitable for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 12:00:44', 50, '2020-10-09 12:34:36', 0, NULL, 1),
(1028, 'Tamilarasi.N', '4', '7358519583', '', 'tamizharasinehru22@gmail.com', '2000-05-22', 20, '2', '2', 'Nehru', 'Ironing shop', 15000.00, 1, 0.00, 10000.00, 'Porur', 'Porur', '2010090022', '1', '1', 'upload_files/candidate_tracker/98913927205_TAMILARASI Resume 3.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '21', '1970-01-01', 0.00, '12:07 PM', '', '1970-01-01', '1', 'Not Bold , Not Fit For Sales..Long Distance', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 12:01:20', 50, '2020-10-09 12:29:37', 0, NULL, 1),
(1029, '', '0', '9884968784', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 12:08:49', 0, NULL, 0, NULL, 1),
(1030, 'Mayadevi.s', '4', '6379293116', '', 'mayadevi2306@gmail.com', '1995-06-23', 25, '2', '2', 'Sethupathy', 'Driver', 100000.00, 2, 0.00, 10000.00, 'Madurai', 'Chennai', '2010090024', '1', '1', 'upload_files/candidate_tracker/29066102801_file1_1602225178508.pdf', NULL, NULL, '2020-10-09', 0, '', '5', '13', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'she is not suitable for pressure handling', '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 12:23:47', 1, '2020-10-09 12:25:31', 0, NULL, 1),
(1031, 'Sandhiya.E', '4', '7305725655', '', 'priyabaskaransakthi@g.mail.com', '1999-11-17', 20, '2', '2', 'Elangovan', 'Driver', 100000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2010090025', '1', '1', 'upload_files/candidate_tracker/44624512459_file1_1602227407077.pdf', NULL, NULL, '2020-10-09', 0, '', '3', '8', '1970-01-01', 120000.00, '12:00 PM', '2', '1970-01-01', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 12:30:30', 7, '2020-10-09 07:09:51', 0, NULL, 1),
(1032, 'adhava raj t', '16', '9080310398', '9962033505', 'adhavraj1992@gmail.com', '1992-09-08', 28, '2', '2', 'thangaraj', 'father', 35000.00, 3, 0.00, 35000.00, 'Chennai', 'chennai', '2010090026', '1', '2', 'upload_files/candidate_tracker/80730698270_1602066417712_Adhava Raj T VBA Resume New.docx', NULL, NULL, '2020-10-09', 0, '', '5', '53', '1970-01-01', 0.00, '01:34 PM', '', '1970-01-01', '2', 'not suit for mis', '3', '2', '', '', '', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-09 01:31:06', 58, '2020-12-29 10:21:26', 0, NULL, 1),
(1033, '', '0', '9080310498', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 01:41:07', 0, NULL, 0, NULL, 1),
(1034, 'mariappan j', '16', '8344718016', '9677747138', 'mariappan8344@gmail.com', '1993-05-25', 27, '2', '2', 'jothimurugan a', 'late', 10000.00, 1, 30000.00, 20000.00, 'virudhunagar', 'potheri', '2010090028', '1', '2', 'upload_files/candidate_tracker/54584071354_Mariappan Resume.docx', NULL, NULL, '2020-10-09', 0, '', '5', '53', '1970-01-01', 0.00, '02:24 PM', '', '1970-01-01', '2', 'dont hve exp in excel\n', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 02:20:59', 50, '2020-10-09 02:53:32', 0, NULL, 1),
(1035, 'sneha rani b s', '4', '6363652537', '', 'snehabs055@gmail.com', '1999-03-16', 21, '2', '2', 'suresh', 'farmer', 11000.00, 0, 0.00, 14000.00, 'tumkur', 'bangalore', '2010090029', '1', '1', 'upload_files/candidate_tracker/48861376471_Sneha Resume.pdf', NULL, NULL, '2020-10-09', 0, '', '3', '8', '2020-10-14', 132000.00, '04:13 PM', '0', NULL, '2', '11K for gowshick team', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 04:10:49', 1, '2020-10-09 04:22:18', 0, NULL, 1),
(1036, '', '0', '7338630714', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010090030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 04:13:54', 0, NULL, 0, NULL, 1),
(1037, 'Livingston', '4', '9789891026', '', 'Libingstonliving1999@gmail.com', '1999-07-09', 21, '2', '2', 'Sagayaraj A', 'Driver', 15000.00, 0, 0.00, 13000.00, 'Tambaram', 'Tambaram', '2010090031', '1', '1', 'upload_files/candidate_tracker/1169010645_LIVINGSTON RESUME.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Sustain Long Term xxamp Also Joining It Course , xxampNow He Want Data Entry Job.. ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 05:26:59', 50, '2020-10-10 11:30:11', 0, NULL, 1),
(1038, 'S.Ruban Raj', '16', '9087845662', '9080315277', 'Ruban5662@gmail.com', '1995-07-17', 25, '2', '2', 'A.Sathya Nathan', 'Electrisian', 20000.00, 1, 14400.00, 15000.00, 'Puliyanthope', 'Puliyanthope', '2010090032', '3', '2', 'upload_files/candidate_tracker/79642187806_RubanResume-2020.docx', NULL, NULL, '2020-10-10', 0, '', '5', '53', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'He dont knw basic functions nd formulas also. he ll not suit fr MIS', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 07:25:08', 1, '2020-10-09 07:39:07', 0, NULL, 1),
(1039, 'Manibharathi', '13', '8973644490', '', 'pmanibharathi1998@gmail.com', '1998-04-07', 22, '2', '2', 'Periyasamy', 'Driver', 45000.00, 1, 0.00, 15000.00, 'Namakkal', 'Chennai', '2010090033', '1', '1', 'upload_files/candidate_tracker/12976171174_MANIBHARATHI.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '54', NULL, 0.00, '11:40 AM', '0', NULL, '2', 'not Attended', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 07:39:35', 1, '2020-10-09 07:43:28', 0, NULL, 1),
(1040, 'R.Ranjith Kumar', '16', '9710040011', '9710040051', 'Ranjithloyola467@gmail.com', '1995-12-31', 24, '2', '2', 'S.Rajendran', 'Carpenter', 20000.00, 2, 14400.00, 15000.00, 'Puliyanthope', 'Puliyanthope', '2010090034', '3', '2', 'upload_files/candidate_tracker/12026685060_RanjithResume-2020.docx', NULL, NULL, '2020-10-10', 0, '', '5', '53', NULL, 0.00, '10:10 AM', '0', NULL, '1', 'dont hve knowledge in excel, even he doesnt knw the functions nd basic formulas.', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 08:14:20', 1, '2020-10-09 08:17:52', 0, NULL, 1),
(1041, 'Jagannathan S', '4', '9677528970', '', 'Srijagan95@gmail.com', '1995-05-06', 25, '2', '2', 'Srinuvasan', 'Painter labour', 6000.00, 1, 18000.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2010090035', '3', '2', 'upload_files/candidate_tracker/61181977664_jagan.docx', NULL, NULL, '2020-10-12', 0, '', '5', '53', NULL, 0.00, '11:34 AM', '0', NULL, '2', 'in excel he dont know the basic formulas also', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-09 08:35:19', 1, '2020-10-12 11:35:18', 0, NULL, 1),
(1042, 'Rajeshwari P', '4', '9791010287', '9551363609', 'rajeshwarikp2000@gmail.com', '2000-03-28', 20, '2', '2', 'Pakkirisamy K', 'Cooli', 15000.00, 1, 0.00, 13000.00, 'Perungalathur', 'Perungalathur', '2010090036', '1', '1', 'upload_files/candidate_tracker/17955888070_1597286803595_current resume for raji.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 08:35:42', 50, '2020-10-10 06:20:56', 0, NULL, 1),
(1043, 'Barkathulla basha s', '4', '9500696511', '', 'barkathulla9500@gmail.com', '1990-09-21', 30, '2', '2', 'S.jameeludin', 'Egg business', 15000.00, 0, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2010090037', '1', '1', 'upload_files/candidate_tracker/90941718599_barkathulla basha s RESUME.docx', NULL, NULL, '2020-10-10', 0, '', '5', '14', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-09 09:07:25', 50, '2020-10-10 10:30:22', 0, NULL, 1),
(1044, 'Nedunchezhiyan.s', '5', '9524290069', '9095958165', 'Nedunchezhiyan34@gmail.com', '1996-01-17', 24, '1', '2', 'P.c.selladurai', 'Former', 85000.00, 1, 20000.00, 22000.00, 'Kolli hills Namakkal', 'Alandur Chennai', '2010100001', '', '2', 'upload_files/candidate_tracker/72014799022_Nedu-converted.pdf', NULL, NULL, '2020-10-10', 0, 'G.ramkumar', '3', '8', '2020-10-19', 264000.00, '11:11 AM', '3', '2020-12-01', '1', '22K for Sarath team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 10:25:48', 7, '2020-10-22 05:27:55', 0, NULL, 1),
(1045, 'K Naresh', '13', '6383241307', '9597884711', 'muralinaresh2000@gmail.com', '2000-01-28', 20, '2', '2', 'K Chandiran', 'Driver', 12000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2010100002', '1', '1', 'upload_files/candidate_tracker/10841404150_NareshK1.pdf', NULL, NULL, '2020-10-10', 0, '', '8', '54', '1970-01-01', 0.00, '11:18 AM', '', '1970-01-01', '2', 'not Attended\n', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:15:44', 50, '2020-10-10 11:30:55', 0, NULL, 1),
(1046, 'Pravin b', '13', '6382575653', '', 'Pravinb274999@gmail.com', '1999-04-27', 21, '2', '2', 'Ayyammal b', 'Business', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2010100003', '1', '1', 'upload_files/candidate_tracker/12674877041_pravin-PDF2020.docx', NULL, NULL, '2020-10-10', 0, '', '8', '54', '1970-01-01', 0.00, '11:26 AM', '', '1970-01-01', '2', 'not attended', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:20:27', 50, '2020-10-10 11:31:06', 0, NULL, 1),
(1047, 'Palanivel E', '16', '9659723316', '7871931781', 'Pazhanivel7hills@gmail.com', '1992-11-05', 27, '2', '2', 'Elumalai N', 'Daily wage earner', 16250.00, 2, 18000.00, 23400.00, 'Vilupuram', 'Chennai', '2010100004', '3', '2', 'upload_files/candidate_tracker/59711086630_Palanivel Curriculam vitae.doc', NULL, NULL, '2020-10-10', 30, '', '5', '53', '1970-01-01', 0.00, '11:33 AM', '', '1970-01-01', '1', 'he dont hve much knowledge in excel nd powerpoint presentation. exp abv 20k ', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 11:28:24', 50, '2020-10-10 11:44:44', 0, NULL, 1),
(1048, 'Pavithra.s', '4', '7358725953', '9790960516', 'Pavithrasivabaskar@gmail.com', '1998-01-22', 22, '2', '2', 'Sivabaskar.A', 'Formar', 10000.00, 3, 0.00, 10000.00, 'Iyyapanthagal chennai', '12/1342,Pillaiyar Kovil St,Iyyapanthagal', '2010100005', '1', '1', 'upload_files/candidate_tracker/99353041576_pavit.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '14', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:36:39', 50, '2020-10-10 01:03:09', 0, NULL, 1),
(1049, 'Ananthanathan N', '4', '9786031363', '', 'ANANTHANATHAN26@GMAIL.COM', '1996-06-02', 24, '2', '2', 'Natarajan', 'Farmer', 15000.00, 2, 0.00, 20000.00, '233,ammankoil Street,Viruthangan&post,Cuddalore DT', 'Chennai,Annanagar', '2010100006', '1', '1', 'upload_files/candidate_tracker/21385432868_ananthanathan 1.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '21', '1970-01-01', 0.00, '12:01 PM', '', '1970-01-01', '1', 'Not Sustain Bcz, He Have More 10 Yrs Experienced In Front Office Asst In Hotel xxamp Resorts ...Also Expecting 15 K Above For Crm ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:51:45', 50, '2020-10-10 01:01:16', 0, NULL, 1),
(1050, 'seetharaman r', '16', '7598620500', '8220562257', 'seetharamankadayam@gmail.com', '1991-06-01', 29, '2', '2', 'raveendran o', 'tm bsnl retired', 27000.00, 5, 20000.00, 25000.00, 'kadayam tenkasi', 'thirumangalam chennai', '2010100007', '1', '2', 'upload_files/candidate_tracker/54639328021_Resume SeethaRaman.R -10Oct20200954Am.pdf', NULL, NULL, '2020-10-10', 5, '', '5', '53', '1970-01-01', 0.00, '11:55 AM', '', '1970-01-01', '1', 'did system round but sustainability issue.', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 11:54:27', 50, '2020-10-10 12:47:25', 0, NULL, 1),
(1051, 'Mohamed khalid', '4', '9344673548', '9840499721', 'khalidmohamed221@gmail.com', '1999-02-26', 21, '2', '2', 'Mohamed moideen', 'Driver', 15000.00, 2, 21500.00, 25000.00, 'Perambur', 'Perambur', '2010100008', '1', '2', 'upload_files/candidate_tracker/55718532251_20201008_233147-converted.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '13', '1970-01-01', 0.00, '12:11 PM', '', '1970-01-01', '1', 'Sustainability less', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 12:07:32', 50, '2020-10-10 12:34:36', 0, NULL, 1),
(1052, 'M suganthi', '16', '7338908983', '9840501466', 'Lakshmansuganthi@gmail.com', '1988-05-25', 32, '2', '1', 'D lakshman', 'Office assistant', 17000.00, 0, 22000.00, 25000.00, 'Taramani', 'IIT adyar chennai', '2010100009', '1', '2', 'upload_files/candidate_tracker/45447735182_Resume.docx', NULL, NULL, '2020-10-12', 0, '', '5', '53', NULL, 0.00, '12:00 PM', '0', NULL, '1', 'she dont know the basic Excel also, hvng 5 yrs exp but not in this field.. ', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 12:33:21', 1, '2020-10-10 02:56:46', 0, NULL, 1),
(1053, 'Manikandan', '5', '9840757153', '', 'manikalappan05@gmail.com', '1994-02-20', 26, '2', '2', 'M kalappan', 'Business', 300000.00, 2, 19000.00, 25000.00, 'Chennai', 'Chennai', '2010100010', '1', '2', 'upload_files/candidate_tracker/95012528219_manikandank05k-1.pdf', NULL, NULL, '2020-10-13', 10, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 12:39:01', 7, '2020-10-14 03:04:30', 0, NULL, 1),
(1054, 'Nandhini.p', '4', '9790960516', '9940452447', 'Nandhininan@gmail.com', '1998-09-26', 22, '2', '2', 'Palani.b', 'Driver', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2010100011', '1', '1', 'upload_files/candidate_tracker/74823638458_nanadhani.pdf', NULL, NULL, '2020-10-10', 0, '', '5', '21', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '2', 'Not Sustain Long Term Becz, She Already Worked Courier Process Related System Work..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 01:02:21', 50, '2020-10-10 01:56:22', 0, NULL, 1),
(1055, 'S. Kavitha', '4', '9629248053', '8270532517', 'Kavithasellapa99@gmail.com', '1999-07-07', 21, '2', '2', 'Sellappa', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Tanjore (DT)', 'Tambaram', '2010100012', '1', '1', 'upload_files/candidate_tracker/19729332133_1596561873674_kavitha sellapa.docx', NULL, NULL, '2020-10-10', 0, '', '5', '14', NULL, 0.00, '01:19 PM', '0', NULL, '2', 'expecting high salary and not suitable for this profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 01:14:26', 1, '2020-10-10 01:33:45', 0, NULL, 1),
(1056, 'Vignesh V', '13', '9080424559', '9003113036', 'vickyvaradharajan555@gmail.com', '1999-05-25', 21, '2', '2', 'Varadharajan', 'Driver', 35000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2010100013', '1', '1', 'upload_files/candidate_tracker/81726481962_Resume.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '54', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'He will not sustain, Package is high ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 01:37:26', 1, '2020-10-10 01:42:15', 0, NULL, 1),
(1057, 'Rajesh', '5', '7401399174', '', '', '1998-02-17', 22, '2', '2', 'Murali', 'Metro water Retire man', 14000.00, 0, 12000.00, 140000.00, 'Kilpauk garden road kilpauk', 'Kilpauk garden Rord kilpauk', '2010100014', '1', '2', 'upload_files/candidate_tracker/20220970480_Rajesh resume.docx', NULL, NULL, '2020-10-10', 7, '', '5', '44', NULL, 0.00, '01:52 PM', '0', NULL, '1', 'He looking for data entry Job', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 01:48:48', 1, '2020-10-10 01:54:53', 0, NULL, 1),
(1058, '', '0', '7305174685', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 02:07:03', 0, NULL, 0, NULL, 1),
(1059, '', '0', '7338909883', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 02:24:13', 0, NULL, 0, NULL, 1),
(1060, '', '0', '6374641590', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 02:58:32', 0, NULL, 0, NULL, 1),
(1061, '', '0', '8608049359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 03:46:16', 0, NULL, 0, NULL, 1),
(1062, 'Ranjith', '13', '9566127215', '9840076368', 'velusamyranjith@gmail.com', '1998-01-20', 22, '2', '2', 'Elango', 'Employee', 800000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2010100019', '1', '1', 'upload_files/candidate_tracker/84620957454_RANJITH', NULL, NULL, '2020-10-12', 0, '', '5', '54', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '1', 'he is Completely Interested in java so he will not sustain', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 05:53:56', 50, '2020-10-12 02:13:48', 0, NULL, 1),
(1063, '', '0', '7092044903', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 05:57:36', 0, NULL, 0, NULL, 1),
(1064, 'jaffer test', '13', '9840349400', '', 'moonsat08@gmail.com', '1985-10-10', 35, '2', '2', 'Sathik', 'Former', 10000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2010100021', '1', '1', 'upload_files/candidate_tracker/53144078555_dummy.pdf', NULL, NULL, '2020-10-10', 0, '', '3', '28', '2020-10-13', 10000.00, '04:05 PM', '6', '2020-12-24', '1', 'Ok', '2', '2', '4', '1', '1', '2', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 06:20:13', 1, '2020-10-10 06:27:40', 0, NULL, 1),
(1065, 'Sanjana.R', '4', '9344375941', '9840138381', 'sanjanaramalingam1110@gmail.com', '1999-05-10', 21, '2', '2', 'Ramalingam.M(late)', 'No', 8000.00, 1, 0.00, 12000.00, '7/7 South boag road, t.nagar ch-17', 'saradeuz ecstasy nesamani nagar perubakkam, ch-100', '2010100022', '1', '1', 'upload_files/candidate_tracker/85470582538_Profile of Sanjana(1).doc', NULL, NULL, '2020-10-13', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-10 08:33:04', 7, '2020-10-14 10:23:46', 0, NULL, 1),
(1066, '', '0', '8939781411', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010100023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-10 09:27:41', 0, NULL, 0, NULL, 1),
(1067, 'K.Charishma', '4', '7989099319', '', 'kcherishma96@gmail.com', '1995-06-01', 25, '2', '2', 'K.Satyanarayana reddy', 'agriculture', 30000.00, 1, 13000.00, 15000.00, 'kadapa', 'silkboard', '2010110001', '7', '2', 'upload_files/candidate_tracker/83420207652_K Charishma_CRM_CAFS.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '38', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'Her Voice Is Too Low and will not suit for our field', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 06:13:22', 1, '2020-10-11 06:19:25', 0, NULL, 1),
(1068, 'K.THEJASREE', '4', '9701044987', '', 'thejasree777@gmail.com', '1996-06-10', 24, '2', '2', 'k venkatramana', 'farmer', 15000.00, 1, 16000.00, 15000.00, 'andraha', 'btm', '2010110002', '7', '2', 'upload_files/candidate_tracker/94111990502_K Thejasree_CRM_CAFS.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '38', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'She Is Looking For Non Voice Process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 06:24:34', 50, '2020-10-12 10:42:45', 0, NULL, 1),
(1069, '', '0', '8939079246', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010110003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 06:26:37', 0, NULL, 0, NULL, 1),
(1070, '', '0', '9941278402', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010110004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 06:54:48', 0, NULL, 0, NULL, 1),
(1071, '', '0', '8838577174', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010110005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 08:30:47', 0, NULL, 0, NULL, 1),
(1072, '', '0', '7904200402', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010110006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-11 08:47:54', 0, NULL, 0, NULL, 1),
(1073, 's.suji', '4', '9842408576', '9360616466', 'sureshsuji965@gmail.com', '1998-07-12', 22, '2', '2', 'ramadevi', 'house keeping', 20000.00, 2, 12500.00, 15000.00, 'vadapalani', 'vadapalani', '2010120001', '2', '2', 'upload_files/candidate_tracker/71105728113_1573963895791_1573963894788_1573963893553_1573963892544_0_RESUME.docx', NULL, NULL, '2020-10-12', 0, '', '3', '8', '2020-10-15', 132000.00, '10:30 AM', '6', '2021-03-26', '2', '11K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 09:20:07', 7, '2020-10-13 12:56:52', 0, NULL, 1),
(1074, 'L.Mahalakshmi', '4', '9384642611', '9789864722', 'maha0411lakshmi@gmail.com', '1999-11-04', 20, '1', '2', 'G.Loganathana', 'Tailor', 12000.00, 1, 0.00, 10000.00, '9,Agneswaran kovil street ,Moondram kattalai.', '9,Agneswaran kovil street,Moondram katttali.', '2010120002', '', '1', 'upload_files/candidate_tracker/42459890733_Scan Oct 12, 2020.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '8', NULL, 0.00, '10:25 AM', '0', NULL, '2', 'will not join', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 09:57:37', 1, '2020-10-12 10:31:49', 0, NULL, 1),
(1075, 'E.pavithra', '4', '9176204582', '9791187757', 'Pavielumalai29@gmail.com', '2000-05-29', 20, '1', '2', 'D.Elumalai', 'Painting', 13000.00, 0, 0.00, 10000.00, '59.thiruvaluvar ng Vallalar st kundrathur', '59.thiruvaluvar nagar Vallalar street kundrathur', '2010120003', '', '1', 'upload_files/candidate_tracker/93663422079_Adobe Scan Oct 12, 2020.pdf', NULL, NULL, '2020-10-12', 0, 'Jobs', '5', '21', NULL, 0.00, '10:22 AM', '0', NULL, '2', 'long distance 2 hrs travel...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 09:58:29', 1, '2020-10-12 10:23:10', 0, NULL, 1),
(1076, 'Sudhakar. R', '6', '7708325012', '9659491316', 'moonsudha95@gmail.com', '1995-06-06', 25, '1', '2', 'Ranganathan', 'BE. Aeronautical', 13000.00, 1, 0.00, 15000.00, 'Tiruvannamalai', 'Thambaram, chennai', '2010120004', '', '1', 'upload_files/candidate_tracker/60476517347_Sudhakar resume(1).pdf', NULL, NULL, '2020-10-12', 0, '5562', '3', '8', '2020-10-15', 180000.00, '10:30 AM', '4', '2021-01-22', '1', '15K for saravana team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:23:33', 7, '2020-10-13 01:51:26', 0, NULL, 1),
(1077, 'Farvin', '4', '9884196804', '', 'fmehboofbasha@gmail.com', '1999-11-24', 20, '1', '2', 'Mehboof basha( late)', 'Late', 10000.00, 0, 0.00, 12000.00, 'No 42 missa Abraham street mgr Nagar Chennai 78', '42 missa Abraham street mgr Nagar Chennai 78', '2010120005', '', '1', 'upload_files/candidate_tracker/95983810353_New Doc 2020-10-12 13.04.00.pdf', NULL, NULL, '2020-10-12', 0, '5174', '5', '14', '1970-01-01', 0.00, '10:31 AM', '', '1970-01-01', '2', 'not fit for this job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:24:15', 50, '2020-10-12 01:45:48', 0, NULL, 1),
(1078, 'C.GOUTHAMI', '4', '8179702726', '', 'cgouthamimahi@gmail.com', '1994-10-24', 25, '2', '1', 'sudershan', 'sales', 16000.00, 2, 16000.00, 18000.00, 'willsongarden', 'willsongarden', '2010120006', '7', '2', 'upload_files/candidate_tracker/42023720349_Gowthami_CRM_CAFS.pdf', NULL, NULL, '2020-10-12', 0, '', '3', '8', '2020-10-14', 180000.00, '10:40 AM', '4', '2020-12-23', '2', '15K for gowshick team', '1', '2', '1', '2', '2', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:33:07', 7, '2020-10-13 02:05:35', 0, NULL, 1),
(1079, 'Bhavani.H', '4', '8838252141', '7550245853', 'Bhavanih31@gmail.com', '1998-10-31', 21, '1', '2', 'Hari.G', 'Bpo', 20000.00, 2, 80000.00, 15000.00, 'Patrician clg opp', 'Gandhinagar adyar', '2010120007', '', '2', 'upload_files/candidate_tracker/4421444841_BHAVANI.docx', NULL, NULL, '2020-10-12', 0, '5266', '3', '8', '2020-10-15', 120000.00, '10:52 AM', '', '2023-03-13', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:45:38', 7, '2020-10-13 01:35:07', 0, NULL, 1),
(1080, 'Hariharasudhan S', '13', '7339109635', '8838421193', 'harivel1998@gmail.com', '1998-07-23', 22, '2', '2', 'E. Senthilvel', 'Carpenter', 120000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Chennai', '2010120008', '1', '1', 'upload_files/candidate_tracker/36342860504_Hariharasudhan S-RESUME(1).pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not attended\n', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 10:58:55', 50, '2020-10-12 12:02:33', 0, NULL, 1),
(1081, 'R.Divya', '4', '7092701814', '9551441834', 'divyarajaram6@gmail.com', '1998-06-06', 22, '1', '2', 'J.Rajaram(late)', 'nil', 200000.00, 2, 0.00, 15000.00, 'valasaravakkam', 'chennai', '2010120009', '', '1', 'upload_files/candidate_tracker/59753768188_RESUME without Photo.pdf', NULL, NULL, '2020-10-12', 0, '2010120009', '5', '14', NULL, 0.00, '11:13 AM', '0', NULL, '1', 'not fit for this profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:10:00', 1, '2020-10-12 11:32:00', 0, NULL, 1),
(1082, 'R.priya dharshini', '4', '9384621895', '9789877991', 'deepriya09021999@gamil.com', '1999-06-02', 21, '1', '2', 'M.Raja', 'Cooli', 1500.00, 1, 8000.00, 10500.00, 'CHENNAI', 'CHENNAI', '2010120010', '', '2', 'upload_files/candidate_tracker/48602269853_RESUME PRIYADHARSHINI.docx', NULL, NULL, '2020-10-12', 0, 'Priya Lakshmi', '5', '14', '1970-01-01', 0.00, '11:55 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:15:25', 50, '2020-10-12 01:25:35', 0, NULL, 1),
(1083, 'S.deepika', '4', '9789877991', '9962143126', 'Deepika0901999gmail.com', '1998-01-09', 22, '1', '2', 'S.samarapuri', '10', 900000.00, 3, 11000.00, 11500.00, 'Chennai', 'Chennai', '2010120011', '', '2', 'upload_files/candidate_tracker/2030391204_RESUME DEEPIKA.pdf', NULL, NULL, '2020-10-12', 0, 'D.priya Lakshmi', '5', '14', '1970-01-01', 0.00, '11:24 AM', '', '1970-01-01', '1', 'not fit for sales ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:18:39', 50, '2020-10-12 12:24:05', 0, NULL, 1),
(1084, 'SATHISH KUMAR M', '4', '9626791968', '', '', '1992-04-14', 28, '1', '2', 'MOORTHY', 'Farmer', 15000.00, 2, 0.00, 20000.00, 'Maduranthakam', 'Maduranthakam', '2010120012', '', '1', 'upload_files/candidate_tracker/62450475347_MS(1) Resume .pdf', NULL, NULL, '2020-10-12', 0, '5388', '5', '21', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '1', 'already he worked in mobile showroom , paintshop , not profiled also expecting 20 k salary ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:19:13', 50, '2020-10-12 01:25:26', 0, NULL, 1),
(1085, 'Keerthivasan', '13', '7548890095', '6379019239', 'keerthivasan.e.1999@gmail.com', '1999-05-09', 21, '2', '2', 'K. Elangovan', 'Business', 40000.00, 1, 0.00, 15000.00, 'No.18/25 vallalar street nilamangai nagar', 'No.18/25 Vallalar Street Nilamangai Nagar', '2010120013', '1', '1', 'upload_files/candidate_tracker/11436894223_keerthivasan resume.pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '11:27 AM', '', '1970-01-01', '1', 'Not attendend', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 11:23:36', 50, '2020-10-12 11:36:59', 0, NULL, 1),
(1086, 'B.Abirami', '13', '7339221198', '7092670953', 'Abisharm2001@gmail.com', '1995-09-20', 25, '2', '2', 'V.Babu', 'Mason', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2010120014', '1', '1', 'upload_files/candidate_tracker/53347710295_Abi resume-converted.pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '12:07 PM', '', '1970-01-01', '2', 'not Attended', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 11:27:03', 50, '2020-10-12 12:31:13', 0, NULL, 1),
(1087, '', '0', '8825913982', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010120015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:28:17', 0, NULL, 0, NULL, 1),
(1088, 'farhana', '4', '8095456325', '', 'farhanas.1992@gmail.com', '1993-01-20', 27, '2', '2', 'syed', 'auto driver', 20000.00, 3, 15000.00, 17000.00, 'hal', 'hal', '2010120016', '7', '2', 'upload_files/candidate_tracker/21870650561_Farhana_CRM_CAFS.docx', NULL, NULL, '2020-10-12', 20, '', '5', '38', NULL, 0.00, '12:15 PM', '0', NULL, '2', 'kannada language problem for her and she will not suit for this kannada calling process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:29:24', 1, '2020-10-12 12:15:26', 0, NULL, 1),
(1089, 'Ramkumar.r', '5', '9940348471', '9841760616', 'blizardramkumar@gmail.com', '1995-02-28', 25, '1', '2', 'Ravi .s', 'Survayor', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2010120017', '', '1', 'upload_files/candidate_tracker/47104552721_Ram resume.2020(1)(1).pdf', NULL, NULL, '2020-10-12', 0, '5388', '5', '44', NULL, 0.00, '11:33 AM', '0', NULL, '1', 'Not fit for life sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:30:16', 1, '2020-10-12 11:33:55', 0, NULL, 1),
(1090, 'Ganeshbabu D', '13', '7708543106', '8778314762', 'ganeshdbabu11@gmail.com', '1994-11-11', 25, '2', '2', 'Dhakshinamoorth', 'lecturare', 10000.00, 1, 0.00, 15000.00, 'Thirukoilur', 'perungalathur', '2010120018', '1', '1', 'upload_files/candidate_tracker/71602352307_New Resume Update.docx', NULL, NULL, '2020-10-13', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is not strong in php basic', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 11:32:02', 7, '2020-10-14 03:04:10', 0, NULL, 1),
(1091, 'Nirmal', '6', '8428238687', '9884854627', 'nirmalvadivel1998@gmail.com', '1998-06-09', 22, '1', '2', 'D. Vadivel', 'Steel worker', 40000.00, 2, 0.00, 13.00, 'Thiruvottiyur', 'Thiruvottiyur', '2010120019', '', '1', 'upload_files/candidate_tracker/24667053882_Nirmal_pdf.pdf', NULL, NULL, '2020-10-12', 0, '5174', '3', '8', '1970-01-01', 156000.00, '11:50 AM', '2', '1970-01-01', '2', '13K for thiyagu team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:47:12', 7, '2020-10-13 12:59:16', 0, NULL, 1),
(1092, 'Dhivya', '4', '9176293907', '9043202520', 'Dhivyabharathi2271@gamil.com', '1993-05-16', 27, '2', '1', 'Arun kumar', 'Slesa Officer', 18000.00, 1, 18640.00, 20000.00, 'Ooteri street puzhuthivakkam', 'Ooteri street puzhithivakkam', '2010120020', '1', '2', 'upload_files/candidate_tracker/27245425041_dhivya resume.pdf', NULL, NULL, '2020-10-12', 3, '', '6', '', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 11:47:27', 50, '2020-10-12 03:27:13', 0, NULL, 1),
(1093, '', '0', '9840404223', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010120021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 11:51:18', 0, NULL, 0, NULL, 1),
(1094, 'S.rajadurai', '13', '9087772206', '', 'rajaduraicudd@gmail.com', '1997-11-06', 22, '2', '2', 'K.sivakumar', 'Driver', 7000.00, 1, 0.00, 15000.00, '68, magilamboo street,pennai garden,u.c.chavadi', 'Chennai', '2010120022', '1', '1', 'upload_files/candidate_tracker/18594975632_RAJADURAI.pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '12:10 PM', '', '1970-01-01', '1', 'not attended', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:06:19', 50, '2020-10-12 01:00:31', 0, NULL, 1),
(1095, 'Jyoti yaragatti', '4', '8151038857', '7204439779', 'princessjyoti200@gmail.com', '1998-07-22', 22, '2', '2', 'Nilappa', 'Barber', 8000.00, 5, 0.00, 15000.00, 'Belgaum', 'Belgaum', '2010120023', '1', '1', 'upload_files/candidate_tracker/66977741535_CV Jyo-converted.pdf', NULL, NULL, '2020-10-12', 0, '', '3', '8', '2020-10-14', 132000.00, '12:11 PM', '6', '2020-11-03', '2', '11K for gowshick team', '1', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:06:43', 7, '2020-10-13 03:23:26', 0, NULL, 1),
(1096, 'Abdul Hathi', '13', '6383527549', '9790282277', 'abdulhadhi223@gmail.com', '1999-03-22', 21, '2', '2', 'Jabarulla', 'Labour', 7000.00, 1, 0.00, 12000.00, 'No:117/39,East anna street, villupuram', 'Chennai', '2010120024', '1', '1', 'upload_files/candidate_tracker/75779399963_Abdul.cv.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '54', '1970-01-01', 0.00, '12:11 PM', '', '1970-01-01', '2', 'he is Interested in java', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:07:01', 1, '2020-10-12 01:01:48', 0, NULL, 1),
(1097, 'SARANRAJ K', '6', '9094985317', '8838558208', 'sraj1425@gmail.com', '1998-10-01', 22, '1', '2', 'KUMAR G', 'Driver', 18000.00, 4, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2010120025', '', '1', 'upload_files/candidate_tracker/61790900132_RESUME1.pdf', NULL, NULL, '2020-10-12', 0, '5174', '5', '16', NULL, 0.00, '12:16 PM', '0', NULL, '1', 'NO COMUNICATION SKLIIS, SUSTAIN DOUBT', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 12:12:21', 1, '2020-10-12 12:17:43', 0, NULL, 1),
(1098, 'Priyanga.M', '4', '8778781830', '7401264156', 'priyamurugan2312@gmail.com', '1999-07-25', 21, '1', '2', 'Murugan.k', 'Kooli', 60000.00, 2, 0.00, 12000.00, 'Jafferkhan pet', 'Saidapet', '2010120026', '', '1', 'upload_files/candidate_tracker/13984048033_RESUME-PRIYA 21787.pdf', NULL, NULL, '2020-10-12', 0, '5541', '5', '13', '1970-01-01', 0.00, '12:26 PM', '', '1970-01-01', '2', 'Confidence Level very low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 12:21:21', 50, '2020-10-12 12:49:11', 0, NULL, 1),
(1099, 'Praveen kumar', '7', '9994630197', '8610117670', 'apkumar29 @gmail.com', '1989-06-08', 31, '2', '1', 'Rajeshwari', 'Process Associate', 170000.00, 0, 160000.00, 20000.00, 'Vellore', 'Chennai', '2010120027', '1', '2', 'upload_files/candidate_tracker/66058239548_praveen kumar 2020.docx', NULL, NULL, '2020-10-14', 1, '', '5', '53', '1970-01-01', 0.00, '12:38 PM', '', '1970-01-01', '1', 'gvn task, but not truned up.', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:27:53', 50, '2020-10-14 01:59:06', 0, NULL, 1),
(1100, 'Mohamed Riyas', '13', '8754787453', '7708428808', 'mriyasm1997@gmail.com', '1997-02-19', 23, '2', '2', 'Mohaideen Abdul Kader', 'Working Cheppal shop', 1000.00, 2, 6000.00, 12000.00, 'Broadway', 'Broadway', '2010120028', '1', '2', 'upload_files/candidate_tracker/59086323955_Resume-converted.docx', NULL, NULL, '2020-10-12', 30, '', '5', '54', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'he dont Have basic idea in php and he is not active', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:39:37', 50, '2020-10-12 01:23:25', 0, NULL, 1),
(1101, 'Dharani prasanth .s', '4', '7299342756', '', 'dharaniprasanth125@gmail.com', '1997-02-05', 23, '2', '2', 'Santhanlingam.g', 'Teledata admin', 40000.00, 1, 0.00, 14000.00, 'No 6/11 naval hospital road periyameat 6 th lane', 'No 6/11 naval hospital road periyameat 6 th lane', '2010120029', '2', '1', 'upload_files/candidate_tracker/4414886441_resume .pdf', NULL, NULL, '2021-01-13', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Will Not Suite For Sales Calling And Not Interested In Sales. Will Not Sustain.', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-10-12 12:42:39', 8, '2021-01-13 12:00:46', 0, NULL, 1),
(1102, 'Sundharamoorthy R', '13', '9943220357', '6380965757', 'Sundramoorthy5259@gmail.com', '1998-03-25', 22, '2', '2', 'Rajendran', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Perambalur', 'Chennai', '2010120030', '1', '1', 'upload_files/candidate_tracker/60197725765_Moorthy.pdf', NULL, NULL, '2020-10-12', 0, '', '8', '54', '1970-01-01', 0.00, '12:50 PM', '', '1970-01-01', '2', 'not attented', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:46:08', 50, '2020-10-12 01:52:04', 0, NULL, 1),
(1103, 'Keerthivasan', '13', '6379019239', '7548890095', 'keerthivasan.E.1999@gmail.com', '1999-05-09', 21, '2', '2', 'Elangovan', 'Business', 40000.00, 1, 0.00, 15000.00, 'No.18/25 vallalar street nilamangai nagar', 'No.18/25 Vallalar Street Nilamangai Nagar', '2010120031', '1', '1', 'upload_files/candidate_tracker/65260823655_keerthivasan resume.pdf', NULL, NULL, '2020-10-12', 0, '', '6', '', '1970-01-01', 0.00, '11:27 AM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 12:48:58', 50, '2020-10-12 01:02:53', 50, '2020-10-12 01:03:21', 0),
(1104, 'rajeswari kandasamy', '4', '9976788798', '', 'rajeswari96k@gmail.com', '1996-06-03', 24, '2', '2', 'kandasamy', 'farmer', 90000.00, 1, 0.00, 15000.00, 'namakkal', 'pour', '2010120032', '1', '1', 'upload_files/candidate_tracker/14592448015_Rajeswari - Resume(1).pdf', NULL, NULL, '2020-10-12', 0, '', '5', '14', '1970-01-01', 0.00, '12:56 PM', '', '1970-01-01', '2', 'not suitable for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 12:54:52', 50, '2020-10-12 01:22:28', 0, NULL, 1),
(1105, 'Harini S', '14', '9344827793', '', 'hharini235@gmail.com', '1998-12-06', 21, '2', '2', 'Senthil K', 'Business', 35000.00, 2, 0.00, 15000.00, 'No.276 muthunagar melmanamedu chennai 600124', 'Poonamalle', '2010120033', '1', '1', 'upload_files/candidate_tracker/47190407983_Harini CAFS 2020 resume.docx', NULL, NULL, '2020-10-12', 0, '', '8', '54', NULL, 0.00, '02:24 PM', '0', NULL, '2', 'Not Attended', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 02:18:39', 1, '2020-10-12 02:48:13', 0, NULL, 1),
(1106, 'somasundaram', '2', '9094386564', '9626896032', 'somasundaram l1101@gmail.com', '1997-01-11', 23, '2', '2', 'kesavan r', 'daily wages', 15000.00, 1, 0.00, 18000.00, 'cheyyar', 'chrnnai', '2010120034', '1', '1', 'upload_files/candidate_tracker/22349212743_Somasundaramkesavan.pdf', NULL, NULL, '2020-10-12', 0, '', '5', '54', NULL, 0.00, '02:33 PM', '0', NULL, '1', 'He is looking job in sql. but we are looking php.\nprofile not matched', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 02:28:37', 1, '2020-10-12 02:37:05', 0, NULL, 1),
(1107, 'Kalaiselvi', '11', '9791054214', '', 'n.kalaiselvi7@gmail.com', '1996-07-12', 24, '2', '2', 'Nandagopal', 'Labour', 20000.00, 0, 240000.00, 400000.00, 'Chennai', 'Chenmai', '2010120035', '1', '2', 'upload_files/candidate_tracker/72972951288_Kalaiselvi Nandagopal Resume - ETL Developer.docx', NULL, NULL, '2020-10-12', 40, '', '5', '53', '1970-01-01', 0.00, '03:29 PM', '', '1970-01-01', '1', 'sustainability issue', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 03:24:14', 50, '2020-10-12 03:43:43', 0, NULL, 1),
(1108, 'Guruprasad k G', '4', '9600066365', '7010080397', 'guru1220@gmail.com', '1995-12-20', 24, '2', '2', 'Gurunadham KV', 'Driver', 300000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai à ', '2010120036', '2', '1', 'upload_files/candidate_tracker/42382639025_Guru (1).docx', NULL, NULL, '2020-10-13', 0, '', '5', '14', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'not fit for sales he looking for data entry ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 03:41:35', 1, '2020-10-12 03:45:52', 0, NULL, 1),
(1109, 'Mahendran M', '14', '9710244582', '', 'mahendranbtech7@gmail.com', '1999-02-23', 21, '2', '2', 'P.Muthumani', 'Self employee', 15000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2010120037', '1', '1', 'upload_files/candidate_tracker/99860301607_Mahendran M-converted.pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-12 04:52:09', 50, '2020-10-16 05:16:15', 0, NULL, 1),
(1110, 'E.Dhsnalakshmi', '4', '8189965518', '8608012766', 'dhanaelu123@gmail.com', '1998-11-22', 21, '2', '2', 'R.Elumalai', 'Driver', 19000.00, 1, 0.00, 12000.00, 'Madhavaram', 'Madhavaram', '2010120038', '2', '1', 'upload_files/candidate_tracker/38352814527_dhanaelu123@gmail.com.docx', NULL, NULL, '2020-10-13', 0, '', '3', '8', '1970-01-01', 120000.00, '10:30 AM', '2', '1970-01-01', '2', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 05:26:51', 7, '2020-10-14 05:19:21', 0, NULL, 1),
(1111, 'K.logeshwari', '4', '8190074267', '9940126648', 'logikannan293@gmail.com', '1999-04-17', 21, '2', '2', 'K.kannan', 'Colli', 20000.00, 1, 0.00, 12000.00, 'Koduingaiyur', 'Koduingaiyur', '2010120039', '2', '1', 'upload_files/candidate_tracker/51134488307_LOGESWARI RESUME.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '21', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'she is from kodungaiyur 1;30 hrs above travelxxamp also no maturity', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 05:28:03', 1, '2020-10-12 06:49:38', 0, NULL, 1),
(1112, 'MOHANDOSS E', '4', '9710664504', '8072213886', 'Mohandoss7799@gmail.com', '1993-06-03', 27, '2', '2', 'ELUMALAI S', 'TELEMARKETING', 20000.00, 2, 12000.00, 15000.00, 'THINDIVANAM', 'PALAVANTHANGAL', '2010120040', '2', '2', 'upload_files/candidate_tracker/57716715528_mohan resume.docx', NULL, NULL, '2020-10-13', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Not Sustain Long Term bcz he exp 15 k above sal ,dont have 2 wheeler , no reliving , payslip also', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 07:18:50', 1, '2020-10-12 07:47:20', 0, NULL, 1),
(1113, '', '0', '8825970508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010120041', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:33:35', 0, NULL, 0, NULL, 1),
(1114, '', '0', '8122676255', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010120042', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-12 10:58:18', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1115, 'S logeshwari', '4', '9566219541', '7708118128', 'Logeshwari.s29@gmail.com', '1999-09-29', 21, '2', '2', 'Shanmugam', 'Daily wage', 36000.00, 1, 0.00, 15000.00, 'Vandavasi', 'Vandabasi', '2010130001', '1', '1', 'upload_files/candidate_tracker/85351813862_chaaru.docx', NULL, NULL, '2020-10-13', 0, '', '5', '8', '1970-01-01', 0.00, '02:35 PM', '', '1970-01-01', '2', 'no response from her', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 09:40:15', 7, '2020-10-16 05:38:30', 0, NULL, 1),
(1116, 'Vishnu Kumar T', '13', '8870963981', '', 'tvishnukumar6@gmail.com', '1995-12-06', 24, '2', '2', 'Thangavel M', 'Cutting Master', 25000.00, 1, 0.00, 25000.00, 'Tirupur', 'Chennai', '2010130002', '1', '1', 'upload_files/candidate_tracker/91533061595_1576147260731Resume_VISHNUKUMAR.docx', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:15:09', 7, '2020-10-14 05:04:07', 0, NULL, 1),
(1117, 'Thomas', '11', '9566177821', '7904108260', 'thomas240620@gmail.com', '1990-11-21', 29, '2', '1', 'Stella', 'Working in pharma company', 25000.00, 4, 468000.00, 250000.00, 'Chennai', 'Royapuram', '2010130003', '1', '2', 'upload_files/candidate_tracker/26937722401_Thomas Resume.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '54', '1970-01-01', 0.00, '04:00 PM', '', '1970-01-01', '1', 'Not Attended', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:28:28', 50, '2020-10-13 10:38:19', 0, NULL, 1),
(1118, 'Magesh R', '13', '9787272642', '8124188820', 'mageshraja216@gmail.com', '1997-07-31', 23, '2', '2', 'Raja K', 'Conductor', 23000.00, 1, 0.00, 15000.00, 'Gingee, Villupuram', 'Chrompet,chennai', '2010130004', '1', '1', 'upload_files/candidate_tracker/37466554919_MAGESH.docx', NULL, NULL, '2020-10-13', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not ans basic php questions', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:46:44', 7, '2020-10-13 11:47:24', 0, NULL, 1),
(1119, 'Thanighai velan E', '13', '8098029544', '', 'karthivelan125@gmail.com', '1998-07-10', 22, '2', '2', 'Ezhil maran D', 'Self employed', 25000.00, 1, 0.00, 15000.00, '1/37 North Street ,Manalapadi -604151,Gingee', 'Tambaram', '2010130005', '1', '1', 'upload_files/candidate_tracker/63721149676_Thanighai', NULL, NULL, '2020-10-13', 0, '', '5', '28', '1970-01-01', 0.00, '10:53 AM', '', '1970-01-01', '1', 'Not ans basic php questions', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:48:01', 7, '2020-10-13 11:47:44', 0, NULL, 1),
(1120, 'e.kirthika', '4', '9080307906', '', '', '1998-04-02', 22, '2', '2', 'c.elangovan', 'Formar', 30000.00, 0, 10000.00, 15000.00, 'chennai', 'valechery', '2010130006', '1', '2', 'upload_files/candidate_tracker/54907520280_kirthika.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '21', '1970-01-01', 0.00, '12:57 PM', '', '1970-01-01', '2', 'Not Sustain Long Term Bcz , She Compl B.Ed , Due To Covid Schools Are Not Opened Now, Once Open She Went', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 10:51:44', 50, '2020-10-13 03:40:31', 0, NULL, 1),
(1121, 'Vishnu', '16', '9566125061', '', 'Vishnuaekullu95@gmail.com', '1995-10-10', 25, '2', '2', 'ramanaiah', 'no business', 30.00, 5, 15000.00, 20000.00, 'chennai', 'Kodungaiyur', '2010130007', '1', '2', 'upload_files/candidate_tracker/35759321179_Vishnu Aekullu4.pdf', NULL, NULL, '2020-10-13', 15, '', '5', '54', '1970-01-01', 0.00, '11:17 AM', '', '1970-01-01', '1', 'not good in technical', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 11:12:31', 50, '2020-10-13 03:40:44', 0, NULL, 1),
(1122, 'Dhivyalakshmi', '16', '8489746546', '7904597985', 'lakshmidivya68@gmail.com', '1992-04-03', 28, '2', '1', 'Alagarsamy', 'Farmer', 5000.00, 1, 6000.00, 16000.00, 'Karaikudi', 'Chennai', '2010130008', '1', '2', 'upload_files/candidate_tracker/78678341051_1587609991650Resume_Dhivya.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '53', '1970-01-01', 0.00, '11:35 AM', '', '1970-01-01', '2', 'she s hvng oly exp in billing. she wont suit for any profile at cafs', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 11:29:30', 50, '2020-10-13 03:40:52', 0, NULL, 1),
(1123, 'Deepika B', '6', '9176265056', '', 'Deepikadeepi2767@gmail.com', '1997-09-27', 23, '1', '2', 'Babu k', 'Chef', 25000.00, 1, 14000.00, 16000.00, '3/59 Muthu Mariamman Kovil street neelangarai', '3/59 Muthu Mariamman Kovil street neelangarai', '2010130009', '', '2', 'upload_files/candidate_tracker/28270417095_deepika b resume.docx', NULL, NULL, '2020-10-13', 0, '5570', '5', '15', NULL, 0.00, '11:47 AM', '0', NULL, '2', 'not sustain', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:31:34', 1, '2020-10-13 12:06:50', 0, NULL, 1),
(1124, 'V.suganya', '4', '8144284960', '', 'www.sugasuganya1998@gmail.com', '1998-05-07', 22, '1', '1', 'Vengkat', 'Match move Artest', 25000.00, 4, 0.00, 15000.00, 'Vadapalani', 'Vadapalni', '2010130010', '', '1', 'upload_files/candidate_tracker/50651659588_Suganya_Resume.pdf', NULL, NULL, '2020-10-13', 0, '5174', '5', '13', NULL, 0.00, '11:43 AM', '0', NULL, '1', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:38:06', 1, '2020-10-13 12:20:20', 0, NULL, 1),
(1125, '', '0', '8610432337', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:38:49', 0, NULL, 0, NULL, 1),
(1126, 'Asmitha T', '11', '9940196090', '', 'asmimithu1998@gmail.com', '1998-07-19', 22, '2', '2', 'Thangaswamy S', 'Sales representative', 22000.00, 0, 0.00, 15000.00, 'No.1Thiruvalluvar street,M.E.Sroad,east tambaram', 'No 1 thiruvalluvar street,M.E.S road,east tambaram', '2010130012', '1', '1', 'upload_files/candidate_tracker/8558865267_ASMITHA RESUME.pdf', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', 'fresher, she dnt know anything abt rec, exp min 15k salary', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 11:44:04', 50, '2020-10-14 11:50:36', 0, NULL, 1),
(1127, '', '0', '9080643524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:47:15', 0, NULL, 0, NULL, 1),
(1128, '', '0', '8754103619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 11:53:49', 0, NULL, 0, NULL, 1),
(1129, 'S.Angelin Sangeetha', '4', '7530031326', '9861095397', 'Sangeethastalin96@gmail.com', '1996-06-01', 24, '2', '2', 'Sahaya stalin', 'Business', 10000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Chennai', '2010130015', '1', '1', 'upload_files/candidate_tracker/70091541019_Angelin Sangeetha .pdf', NULL, NULL, '2020-10-14', 0, '', '5', '13', '1970-01-01', 0.00, '12:55 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 11:55:28', 50, '2020-10-14 01:59:14', 0, NULL, 1),
(1130, 'Poovarasan A', '4', '9786089465', '', 'Poovarasann1191@gmail.com', '1999-09-11', 21, '2', '2', 'Arul', 'Agree culture', 10000.00, 0, 0.00, 15000.00, 'T.nagar', 'T.nagar', '2010130016', '1', '1', 'upload_files/candidate_tracker/67821434918_Poovarasan Resume.docx', NULL, NULL, '2020-10-13', 0, '', '5', '14', '1970-01-01', 0.00, '12:11 PM', '', '1970-01-01', '1', 'looking for data entry not interested in sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:00:49', 7, '2020-10-14 11:53:19', 0, NULL, 1),
(1131, 'Yogapriyadharshini N', '11', '9952837946', '', 'yogapriyadharshinin12@gmail.com', '1994-12-24', 25, '2', '1', 'Mr .Varun Priyan. R', 'Societe generale bank', 40000.00, 0, 15.00, 15.00, '5/9secomd St,Vedatham colony, Tambaram sanatorium', '5/9secomd St,Vedatham colony, Tambaram sanatorium', '2010130017', '1', '2', 'upload_files/candidate_tracker/42588271139_cv yogapriya 2020.docx', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'very low voice, not convincing', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:01:42', 50, '2020-10-14 11:50:44', 0, NULL, 1),
(1132, 'Vishali', '11', '9566249083', '', 'vishaliraji0498@gmail.com', '1998-04-01', 22, '2', '2', 'Kuppan', 'Temple Priest', 13000.00, 1, 11250.00, 14000.00, 'Chennai', 'Chennai', '2010130018', '1', '2', 'upload_files/candidate_tracker/78886336369_Vishali-IT resume.pdf', NULL, NULL, '2020-10-14', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'no communication. no previous job analysis and not very clear about her topic.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:02:25', 50, '2020-10-14 11:50:51', 0, NULL, 1),
(1133, 'Jennifer', '11', '9150723319', '9003922492', 'Jenniferted0208@gmail.com', '1994-01-02', 26, '2', '2', 'D. John Bosco', 'Ship repairs', 0.00, 1, 160000.00, 200000.00, 'Royapuram', 'Royapuram', '2010130019', '1', '2', 'upload_files/candidate_tracker/50370461570_Jennifer C.V.docx', NULL, NULL, '2020-10-14', 0, '', '3', '8', '2020-10-19', 163800.00, '11:00 AM', '5', '1970-01-01', '2', '13K as TH', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:10:47', 7, '2020-11-09 12:01:00', 0, NULL, 1),
(1134, 'N J Lokesh Kumar', '4', '6305211063', '9542032584', 'njlokesh143@gmail.com', '2000-06-27', 20, '2', '2', 'N Jagadeesh', 'Farmer', 15000.00, 1, 0.00, 15000.00, '17-90 Vinobanagar(v) Nagalapuram(M)', 'Madhavaram Chennai', '2010130020', '2', '1', 'upload_files/candidate_tracker/17090534700_Surya Resume1.docx', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '10:33 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 12:14:53', 7, '2020-10-14 05:03:57', 0, NULL, 1),
(1135, 'Umamaheswari', '11', '9940138029', '', 'umamahejo@gmail.com', '1989-09-08', 31, '2', '2', 'Govindaraj', 'Store incharge-retired', 18000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2010130021', '1', '2', 'upload_files/candidate_tracker/97610615728_Umamaheswari HR Resume (1).doc', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'not bold, not ok with bond', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:14:59', 50, '2020-10-14 11:51:09', 0, NULL, 1),
(1136, '', '0', '9585901047', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 12:18:04', 0, NULL, 0, NULL, 1),
(1137, 'Kavitha.P', '11', '7845005752', '7092769662', 'Kavithavinopanneer02@gmail.com', '1998-01-02', 22, '2', '2', 'Panneerselvam.G', 'Shop keeper', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010130023', '1', '1', 'upload_files/candidate_tracker/34895822626_kavitha MBA resume..docx', NULL, NULL, '2020-10-14', 0, '', '5', '8', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', 'hold for HR- will not join. long distance.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:25:09', 50, '2020-10-14 02:00:27', 0, NULL, 1),
(1138, 'N. Subashini', '11', '9042708670', '', 'Suba.pavi4@gmail.com', '1994-12-13', 25, '2', '2', 'K. Nagaraju', 'Business', 18000.00, 1, 0.00, 15000.00, 'Old washermen pet Chennai', 'Old washermen pet Chennai', '2010130024', '1', '1', 'upload_files/candidate_tracker/96323237954_Suba N (3).pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:35:33', 7, '2020-10-14 05:03:49', 0, NULL, 1),
(1139, '', '0', '9176718301', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 12:37:35', 0, NULL, 0, NULL, 1),
(1140, 'Vivek Kumar B', '11', '9655152733', '9629243103', 'vivecbala@gmail.com', '1996-01-28', 24, '2', '2', 'Balshanmugam', 'Chef', 30000.00, 2, 20000.00, 26000.00, 'Chennai', 'Chennai', '2010130026', '1', '2', 'upload_files/candidate_tracker/95816450157_VivekB - Updated (2).pdf', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'he is not ok for HR profile, but exp sal is 30k', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 12:47:38', 7, '2020-10-14 03:09:24', 0, NULL, 1),
(1141, 'Sharmila', '4', '8056103835', '9790984775', 'sharmilakutton50@gmail.com', '1998-01-30', 22, '2', '2', 'Peter', 'Retired EB staf', 15000.00, 2, 0.00, 13000.00, 'Ayanavaram', 'Ayanavaram', '2010130027', '2', '1', 'upload_files/candidate_tracker/1309466560_resume document.pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 01:02:56', 7, '2020-10-14 05:03:11', 0, NULL, 1),
(1142, '', '0', '7824979713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 01:03:05', 0, NULL, 0, NULL, 1),
(1143, 'tajudeen j', '13', '9751708784', '', 'tajudeen2696@gmail.com', '1996-08-26', 24, '2', '2', 'jahir hussain', 'driver', 15000.00, 1, 0.00, 18000.00, 'pudukottai', 'chennai', '2010130029', '1', '1', 'upload_files/candidate_tracker/96742521023_Tajudeen03 (1).pdf', NULL, NULL, '2020-10-14', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He Struggle In Basic Skill sets. Not Coming Next Time Interview Schedule ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 01:11:03', 50, '2020-10-14 01:59:50', 0, NULL, 1),
(1144, '', '0', '9551170070', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 01:27:12', 0, NULL, 0, NULL, 1),
(1145, 'Dhamini.S.p', '11', '0789053836', '9789053836', 'Dhaminipremanand@gmail.com', '1998-01-22', 22, '2', '2', 'Prem anand', 'Real estate', 30000.00, 1, 0.00, 15000.00, 'Varadharajan Street, t.nagar, chennai-17', 'T.nagar', '2010130031', '1', '1', 'upload_files/candidate_tracker/47509967962_Resume.doc', NULL, NULL, '2020-10-14', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 01:52:32', 1, '2020-10-13 02:09:40', 7, '2020-10-14 12:42:36', 0),
(1146, 'Dhamini.S.p', '11', '9789053836', '9962962710', 'Dhaminipremanand@gmail.com', '1998-01-22', 22, '2', '2', 'Prem anand', 'Real estate', 30000.00, 1, 0.00, 15000.00, 'Varadharajan Street, t.nagar, Chennai-17', 'T.nagar', '2010130032', '1', '1', 'upload_files/candidate_tracker/7012096231_Resume.doc', NULL, NULL, '2020-10-14', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'will not suite for HR, no understanding, no listening and avg,. comm. No job need.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 02:15:51', 7, '2020-10-14 12:43:54', 0, NULL, 1),
(1147, 'Naveen kumar k', '14', '7094672543', '8925949496', 'Naveenhitler40@gmail.com', '1998-04-05', 22, '2', '2', 'Karunanithi r', 'ac mechanic', 30.00, 2, 0.00, 25000.00, 'mayiladuthurai', 'Chennai', '2010130033', '1', '1', 'upload_files/candidate_tracker/33879038581_naveen .pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 02:16:08', 7, '2020-10-14 05:02:59', 0, NULL, 1),
(1148, 'suganya s', '16', '9677246597', '8220278385', 'suganyasr97@gmail.com', '1997-02-06', 23, '1', '2', 'j sundar rajan', 'late', 20000.00, 1, 13773.00, 15000.00, 'Chennai', 'Chennai', '2010130034', '', '2', 'upload_files/candidate_tracker/59212908271_1591523087642Resume_SUGANYA.docx', NULL, NULL, '2020-10-14', 0, 'jobs', '5', '53', '1970-01-01', 0.00, '11:46 AM', '', '1970-01-01', '2', 'dnt have knowledge in excel', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 02:20:57', 7, '2020-10-14 05:02:50', 0, NULL, 1),
(1149, 'mohammed rafeek.a', '13', '8838445378', '9524216462', 'mohammedrafeek1768@gmail.com', '1997-04-15', 23, '2', '2', 'abdhul huq.a', 'labour', 15000.00, 1, 0.00, 18000.00, 'thondi', 'chennai', '2010130035', '1', '1', 'upload_files/candidate_tracker/36460561325_rafeek-1.docx', NULL, NULL, '2020-10-14', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 02:24:45', 50, '2020-10-14 02:00:03', 0, NULL, 1),
(1150, 'Sangeetha', '4', '8754826442', '', 'Sangeetharamesh967@gmail.com', '1997-12-16', 22, '2', '2', 'Ramesh', 'Painter', 20000.00, 1, 13000.00, 13000.00, 'Medavakkam', 'Medavakkam', '2010130036', '1', '2', 'upload_files/candidate_tracker/81610596383_sangeetha ramesh.pdf', NULL, NULL, '2020-10-13', 2, '', '5', '21', '1970-01-01', 0.00, '03:15 PM', '', '1970-01-01', '2', 'Rejected Bcz, She Worked In Personal Loan At Last 6 Months , She Quit Bcz Of Target xxamp Job Pressure , Also Expecting 13 K Salary ..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:09:15', 7, '2020-10-14 11:52:49', 0, NULL, 1),
(1151, 'Benita.V', '4', '9094003877', '', 'benitabeni08@gmail.com', '1998-08-01', 22, '2', '2', 'Velan.E', 'Coolie', 15000.00, 2, 13000.00, 13000.00, 'Adambakkam', 'Adambakkam', '2010130037', '1', '2', 'upload_files/candidate_tracker/89736589802_1599370233161Resume_Benita.docx', NULL, NULL, '2020-10-13', 0, '', '5', '13', '1970-01-01', 0.00, '03:15 PM', '', '1970-01-01', '2', ' not suitable for pressure handling so Sustainability Low', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:09:16', 7, '2020-10-14 10:27:50', 0, NULL, 1),
(1152, 'S.Ishwarya', '4', '7092089403', '', 'Ishumilk70@gmail.com', '1999-05-25', 21, '2', '2', 'Sampath', 'Security', 25000.00, 4, 13000.00, 13000.00, 'Sholavaram Redhills', 'Sholavaram Redhills', '2010130038', '1', '2', 'upload_files/candidate_tracker/45634709567_ishu resume.pdf', NULL, NULL, '2020-10-13', 0, '', '5', '14', '1970-01-01', 0.00, '03:22 PM', '', '1970-01-01', '1', 'long distance and not even to handle the pressure', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:09:34', 7, '2020-10-14 10:26:05', 0, NULL, 1),
(1153, 'Bhuvaneshwari', '4', '8678976322', '', 'bhuvanabalu1998@gmail.com', '1998-03-23', 22, '2', '2', 'Balakrishnan', 'Coolie', 10000.00, 2, 13000.00, 13000.00, 'Camp road', 'Camp road', '2010130039', '1', '2', 'upload_files/candidate_tracker/753836369_1602583751663_Bhuvana.pdf', NULL, NULL, '2020-10-13', 2, '', '5', '21', '1970-01-01', 0.00, '03:36 PM', '', '1970-01-01', '2', 'Rejected Bcz, She Worked In Personal Loan At Last 6 Months , She Quit Bcz Of Target xxamp Job Pressure , Also Expecting 13 K Salary ..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:09:36', 7, '2020-10-14 10:25:53', 0, NULL, 1),
(1154, 'Safia.m', '11', '9025323887', '9092755054', 'Safia.khan2622@gmail.com', '1996-09-26', 24, '2', '2', 'Muneer basha', 'Tailor', 30000.00, 1, 13000.00, 18000.00, 'bangaru naicker Street, mount road, Chennai-02', 'Bangaru naicker Street, mount road, chennai-02', '2010130040', '1', '2', 'upload_files/candidate_tracker/68933924167_1575296724389_Safia (1).pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:12:09', 7, '2020-10-14 05:09:27', 0, NULL, 1),
(1155, 'Dhivya Raghuraman', '11', '8870487196', '', 'dhivyaraghuraman257@gmail.com', '1998-07-25', 22, '2', '2', 'Father - Raghuraman', 'Driver', 11000.00, 1, 180000.00, 280000.00, 'Chennai', 'Chennai', '2010130041', '1', '2', 'upload_files/candidate_tracker/99765620188_CV_2020-10-07-105212.pdf', NULL, NULL, '2020-10-15', 15, '', '5', '8', '1970-01-01', 0.00, '03:30 PM', '', '1970-01-01', '2', 'salary exp is high. 18K and looking for job change (salary)', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 03:15:52', 50, '2020-10-15 03:27:58', 0, NULL, 1),
(1156, 'Vijayalakshmi r', '4', '9047061772', '', '03vijiravi@gmail.com', '1998-03-03', 22, '2', '2', 'Ravi p', 'Late', 20000.00, 1, 12000.00, 13000.00, 'Trichy', 'T nagar', '2010130042', '2', '2', 'upload_files/candidate_tracker/79027350646_imgtopdf_generated_1310201640017.pdf', NULL, NULL, '2020-10-14', 0, '', '3', '8', '2020-10-15', 144000.00, '10:07 AM', '2', '1970-01-01', '2', '12K for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 03:44:30', 7, '2020-10-14 06:27:48', 0, NULL, 1),
(1157, 'R.HARISH', '4', '9003231424', '', 'harishradhakrishnan1995@gmail.com', '1995-12-11', 24, '2', '2', 'C.RADHAKRISHNAN', 'CHECKING INSPECTOR', 25000.00, 1, 12000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2010130043', '2', '2', 'upload_files/candidate_tracker/5288595471_0_harish.resume5.pdf', NULL, NULL, '2020-10-14', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'He Is Doing MBA , Week End Class Have ,and also low confidence , not sustain long term also...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 04:42:39', 1, '2020-10-14 11:02:57', 0, NULL, 1),
(1158, 'Narayana kumar p', '4', '7338948261', '', 'Narenbba2401@gmail.com', '1998-01-24', 22, '2', '2', 'Parathasarathy', 'Driver', 15000.00, 2, 12000.00, 12000.00, 'Chennai', 'Porur', '2010130044', '2', '2', 'upload_files/candidate_tracker/42366086497_kumar resume.docx', NULL, NULL, '2020-10-14', 0, '', '8', '14', NULL, 0.00, '01:30 PM', '0', NULL, '2', 'not attend the interview', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 04:50:56', 1, '2020-10-14 01:04:40', 0, NULL, 1),
(1159, 'Sriram.s', '4', '9841018670', '9344872020', 'Eyekiller1207@gmail.com', '2001-07-12', 19, '2', '2', 'Sankar.p', 'Shipping line', 30000.00, 1, 14000.00, 16000.00, 'Old washermenpet', 'Old Washermenpet', '2010130045', '2', '2', 'upload_files/candidate_tracker/52818439920_sri2.pdf', NULL, NULL, '2020-11-20', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 05:07:15', 50, '2020-11-20 06:08:37', 0, NULL, 1),
(1160, 'S.Mageshkumar', '16', '7904390814', '9176095733', 'rajmagesh14@gmail.com', '1995-11-16', 24, '2', '2', 'K.Santhkumar', 'B.com', 12000.00, 0, 14000.00, 19000.00, 'Navalur', 'Navalur', '2010130046', '1', '2', 'upload_files/candidate_tracker/59449900722_MAGESHKUMAR.S Raj1.doc', NULL, NULL, '2020-10-15', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 05:17:23', 1, '2020-10-13 08:46:40', 0, NULL, 1),
(1161, 'Tharani', '4', '8778159758', '9841816149', 'Tharani07032000@gmail.com', '2000-03-07', 20, '2', '2', 'Dhinakar Babu', 'Business', 15000.00, 2, 0.00, 15000.00, 'No. 46 Perumal mudali street', 'Chennai', '2010130047', '1', '1', 'upload_files/candidate_tracker/91505898218_thara.resume.pdf', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 05:21:40', 7, '2020-10-14 05:02:07', 0, NULL, 1),
(1162, '', '0', '9789854795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130048', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 05:25:10', 0, NULL, 0, NULL, 1),
(1163, 'Sandhya C', '4', '9710937413', '9710416514', 'Sandysandhya85597@gmail.com', '1999-01-06', 21, '2', '2', 'Chandran', 'Electrician', 200000.00, 1, 0.00, 15000.00, '63 pnk garden 5th street mylapore ch-4', '63 pnk garden 5th street mylapore Ch-4', '2010130049', '1', '1', 'upload_files/candidate_tracker/72421185789_RESUME 1.docx', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 05:31:59', 7, '2020-10-14 05:01:57', 0, NULL, 1),
(1164, 'Kerthic vasan', '4', '6374112764', '', 'Bskamalakannan@gmail.com', '2002-06-01', 18, '2', '1', 'Ak pari', 'Farmers', 20000.00, 1, 0.00, 180000.00, 'Arakkkomam', 'Chennai', '2010130050', '1', '1', 'upload_files/candidate_tracker/46605328557_CamScanner 10-19-2020 14.29.46.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '14', '1970-01-01', 0.00, '02:33 PM', '', '1970-01-01', '1', 'not suitable for sales looking for data entry', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 06:04:47', 50, '2020-10-19 02:39:16', 0, NULL, 1),
(1165, '', '0', '7395941646', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130051', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 07:10:26', 0, NULL, 0, NULL, 1),
(1166, '', '0', '9677235826', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010130052', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-13 07:28:32', 0, NULL, 0, NULL, 1),
(1167, 'sonali', '4', '8807371996', '8122628436', 'sonalisona9790@gmail.com', '1999-12-15', 20, '2', '2', 'umapathy', 'southern railway', 35000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2010130053', '1', '1', 'upload_files/candidate_tracker/21962386305_10-13-2020-20.17.36.pdf', NULL, NULL, '2020-10-13', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-13 07:45:09', 7, '2020-10-14 10:25:33', 0, NULL, 1),
(1168, '', '0', '9884537251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 10:04:15', 0, NULL, 0, NULL, 1),
(1169, '', '0', '9047275494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 10:05:18', 0, NULL, 0, NULL, 1),
(1170, 'M P Karthikeyan', '5', '9444212340', '', 'karthikeyanpandiyan668@gmail.com', '1979-06-23', 41, '1', '1', 'M.Pandiyan', 'NA', 50000.00, 1, 650000.00, 600000.00, 'Perambur', 'Chennai', '2010140003', '', '2', 'upload_files/candidate_tracker/13379608169_Karthik_updatednewv1_1_.doc', NULL, NULL, '2020-10-14', 0, 'NA', '5', '8', NULL, 0.00, '10:33 AM', '0', NULL, '1', 'looking for job in Accounts.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 10:27:50', 1, '2020-10-14 10:37:12', 0, NULL, 1),
(1171, 'S. Santhiya', '4', '9790332534', '9047275494', 'Ranisanthiya2000@gmail.com', '2000-08-20', 20, '1', '2', 'E. Samikannu', 'Farmer', 10000.00, 2, 0.00, 12000.00, 'Kalpattu', 'Kodambakkam', '2010140004', '', '1', 'upload_files/candidate_tracker/5086758134_Sandhiya.pdf', NULL, NULL, '2020-10-14', 0, '5474', '5', '13', NULL, 0.00, '10:46 AM', '0', NULL, '2', 'Communication very poor so not fit for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 10:41:40', 1, '2020-10-14 10:55:31', 0, NULL, 1),
(1172, 'V.srija', '4', '8489576831', '6379015034', 'srijajaya45@gmail.com', '1998-06-08', 22, '2', '2', 'K.venkatachalam', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Tiruvannamlai', 'Chennai', '2010140005', '1', '1', 'upload_files/candidate_tracker/95966544102_attachment.docx', NULL, NULL, '2020-10-14', 0, '', '5', '13', '1970-01-01', 0.00, '11:03 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 10:44:15', 50, '2020-10-14 01:59:24', 0, NULL, 1),
(1173, 'Ragasudha.M', '4', '7708592266', '7448993149', 'msudha100199@gmail.com', '1998-06-06', 22, '1', '2', 'Muruganantham.G', 'Driver', 15000.00, 3, 0.00, 10000.00, 'Vellore', 'Chennai', '2010140006', '', '1', 'upload_files/candidate_tracker/13951956531_sudha resume.pdf', NULL, NULL, '2020-10-14', 0, '5266', '3', '8', '2020-10-19', 120000.00, '11:05 AM', '6', '2021-02-27', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 11:01:07', 7, '2020-10-14 06:28:14', 0, NULL, 1),
(1174, 'Ajmal khan S', '4', '7395958649', '', 'ajmalshanawaz@gmail.com', '1993-03-08', 27, '2', '2', 'Shanawaz', 'Late', 1.00, 2, 0.00, 13000.00, 'Chennai', 'Kodambakkam', '2010140007', '2', '1', 'upload_files/candidate_tracker/92867323587_ajmal resume.doc', NULL, NULL, '2020-10-16', 0, '', '3', '8', '2020-10-19', 126000.00, '11:10 AM', '6', '2020-12-11', '1', '10.5K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 11:04:58', 7, '2020-10-16 04:46:20', 0, NULL, 1),
(1175, 'Epciba.D', '11', '9940085761', '', 'epsidevanesan1997@gmail.com', '1997-06-20', 23, '2', '2', 'Devanesan', 'Real estate', 300000.00, 2, 0.00, 20000.00, 'Chennai', 'Tamabaram', '2010140008', '1', '1', 'upload_files/candidate_tracker/36038321096_EPCIBA RESUME.docx', NULL, NULL, '2020-10-14', 0, '', '5', '53', '1970-01-01', 0.00, '11:53 AM', '', '1970-01-01', '1', 'not intrested in bond', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 11:43:13', 50, '2020-10-14 01:59:40', 0, NULL, 1),
(1176, 'Jayakodi', '11', '9176803113', '', 'jayakodisomu0@gmail.com', '1995-12-23', 24, '2', '2', 'K.Somu', 'Driver', 20000.00, 1, 0.00, 13000.00, '10/11 pudupet garden lane Royapettah Chennai', 'Chennai', '2010140009', '1', '1', 'upload_files/candidate_tracker/39547851391_JAYAKODI-RESUME.docx', NULL, NULL, '2020-10-15', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not okay with bond and will not suite for our HR process', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 11:57:14', 50, '2020-10-15 11:15:01', 0, NULL, 1),
(1177, 'Ahmed Hussain.k', '4', '6380832773', '7358230213', 'hussainkader2017@gmail.com', '2000-08-10', 20, '2', '2', 'Kader Gani.s', 'Self employee', 20000.00, 1, 0.00, 15000.00, 'Mogappair east', 'No 2/79,TNHB, Metro park,padikuppam', '2010140010', '2', '1', 'upload_files/candidate_tracker/14128349019_AHMED HUSSAIN RESUME (2).docx', NULL, NULL, '2020-10-15', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Not Sustain Bcz , He Is Interested In Customer Support Proces, Dont Want Sales Profile, Also Interested In IT Prof', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 11:57:57', 1, '2020-10-14 12:01:59', 0, NULL, 1),
(1178, '', '0', '6369366484', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 12:28:47', 0, NULL, 0, NULL, 1),
(1179, 'Siranjeevi', '4', '9789808273', '8072662521', 'sivasiranjeevi123@gmail.com', '1997-05-12', 23, '2', '2', 'Sivanantham', 'Saidapet', 15000.00, 3, 15000.00, 15000.00, 'Saidapet', 'Saidapet', '2010140012', '2', '2', 'upload_files/candidate_tracker/10591605268_siranjeevi.doc', NULL, NULL, '2020-10-14', 0, '', '3', '8', '1970-01-01', 132000.00, '02:00 PM', '2', '1970-01-01', '1', '11K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 12:51:02', 7, '2020-10-16 11:46:31', 0, NULL, 1),
(1180, '', '0', '6383557934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 01:20:09', 0, NULL, 0, NULL, 1),
(1181, 'Jithendra Sainath', '11', '8122087939', '', 'djsainath.sainath@gmail.com', '1994-05-01', 26, '1', '2', 'Narasimha rao', 'Fresher', 40000.00, 2, 0.00, 2.50, 'Chennai', 'Chennai', '2010140014', '', '1', 'upload_files/candidate_tracker/10578368672_djsainath resume(1)(1).pdf', NULL, NULL, '2020-10-14', 0, 'Jobs', '8', '53', NULL, 0.00, '01:29 PM', '0', NULL, '2', 'he left frm office', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 01:26:06', 1, '2020-10-14 01:33:53', 0, NULL, 1),
(1182, 'Vanaja kesavan', '11', '9884764273', '9345085155', 'vanikesavan1630@gmail.com', '1996-10-18', 23, '2', '2', 'E.kesavan', 'Coolie', 15000.00, 2, 17000.00, 20000.00, 'Teynampet, chennai', 'Teynampet, chennai', '2010140015', '1', '2', 'upload_files/candidate_tracker/44441678986_resume_1599057469790.pdf', NULL, NULL, '2020-10-15', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 01:28:42', 50, '2020-10-15 04:53:59', 0, NULL, 1),
(1183, 'Charan raj', '4', '9043680193', '9789808273', 'sivasiranjeevi123@gmail.com', '1997-08-28', 23, '2', '2', 'Dhamodharan', 'Saidapet', 15000.00, 1, 14000.00, 15000.00, 'Saidapet', 'Saidapet', '2010140016', '1', '2', 'upload_files/candidate_tracker/34392749498_charanraj Resumee-1(3).pdf', NULL, NULL, '2020-10-14', 0, '', '5', '21', NULL, 0.00, '02:00 PM', '0', NULL, '1', 'Not Sustain 2 Comp Quit In Last 1 Yr Bec Of Personal Reason , ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 01:38:13', 1, '2020-10-14 01:49:02', 0, NULL, 1),
(1184, '', '0', '9345085155', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 01:47:57', 0, NULL, 0, NULL, 1),
(1185, 'selvaprakash R', '11', '9962307976', '', 'selva.prakash912@gmail.com', '1997-07-30', 23, '2', '2', 'ramar s', 'senior legal Executive', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2010140018', '1', '1', 'upload_files/candidate_tracker/5781825368_selva prakash.R MSW ).pdf', NULL, NULL, '2020-10-15', 0, '', '5', '53', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '1', 'poor communication, he dont hve exp in hr bt looking 15k minimum', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 01:49:15', 50, '2020-10-15 12:35:43', 0, NULL, 1),
(1186, 'Syed Faheem', '11', '9994614088', '', 'faheemsyed89@gmail.com', '1989-11-21', 30, '2', '1', 'Syed Abdullah', 'Nil', 15000.00, 2, 18.00, 22.00, 'Vellore', 'Chennai', '2010140019', '1', '2', 'upload_files/candidate_tracker/99653291809_FAHEEM-1.pdf', NULL, NULL, '2020-10-15', 15, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 01:50:22', 50, '2020-10-15 04:54:16', 0, NULL, 1),
(1187, '', '0', '7358737948', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 02:29:00', 0, NULL, 0, NULL, 1),
(1188, 'Tamil selvi G', '4', '9092734271', '8637636244', 'gunamalar3123@gmail.com', '1998-11-23', 21, '2', '2', 'Guna sekaran K', 'Daily wages', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Perungudi', '2010140021', '1', '1', 'upload_files/candidate_tracker/91517926689_TAMILSELVI.doc', NULL, NULL, '2020-10-15', 0, '', '5', '14', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'looking for data entry not fit for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 02:47:09', 50, '2020-10-15 12:36:35', 0, NULL, 1),
(1189, 'Sunilkumar', '11', '9750726364', '', '', '1994-06-09', 26, '2', '2', 'Shankar', 'Farmer', 5000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2010140022', '1', '2', 'upload_files/candidate_tracker/9124877349_sunil modified resume.doc', NULL, NULL, '2020-10-14', 0, '', '8', '', '1970-01-01', 0.00, '11:35 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 02:47:48', 7, '2020-10-14 05:01:39', 0, NULL, 1),
(1190, 'Nasreen binti sahul hameed', '11', '9962218913', '7904674975', 'nasreenbinti98@gmail.com', '1998-09-22', 22, '2', '2', 'Sahul hameed', 'Business', 15000.00, 0, 0.00, 20000.00, 'Nungambakkam', 'Nungambakkam', '2010140023', '1', '1', 'upload_files/candidate_tracker/99583105553_Resume_Nasreen.pdf', NULL, NULL, '2020-10-31', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'not okay with our terms and conditions', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 03:04:47', 7, '2020-10-31 02:52:06', 0, NULL, 1),
(1191, 'Suthan P', '13', '9840870631', '9944142890', 'suthan1981996@gmail.com', '1996-08-19', 24, '2', '2', 'M.Petchimuthu', 'labour', 8000.00, 0, 0.00, 7000.00, 'Chennai', 'Chennai', '2010140024', '1', '1', 'upload_files/candidate_tracker/63367924984_SUTHAN Resume.pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 03:08:22', 50, '2020-10-16 05:16:27', 0, NULL, 1),
(1192, '', '0', '8870894220', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 03:16:48', 0, NULL, 0, NULL, 1),
(1193, 'Gayathri S', '11', '7338985183', '', 'gayathriharini4@gmail.com', '1996-07-14', 24, '2', '2', 'N Sampathkumar', 'Retired Govt staff', 60000.00, 0, 170000.00, 250000.00, 'Chennai', 'Chennai', '2010140026', '1', '2', 'upload_files/candidate_tracker/86916801105_1587387750582Resume_Gayathri.pdf', NULL, NULL, '2020-10-15', 0, '', '3', '8', '2020-10-28', 163800.00, '12:30 PM', '', '1970-01-01', '1', '13K as TH with out det. ', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 03:33:18', 50, '2020-10-15 12:31:30', 0, NULL, 1),
(1194, '', '0', '9790931703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 03:34:38', 0, NULL, 0, NULL, 1),
(1195, 'Arun Dhanarajan', '11', '9443536302', '9080902529', 'arunderose@gmail.com', '1991-01-25', 29, '2', '2', 'Dhanarajan', 'Business', 40000.00, 1, 26000.00, 26000.00, 'Chennai', 'Chennai', '2010140028', '1', '2', 'upload_files/candidate_tracker/42331114628_Arun Dhanarajan Derose_HR-converted.pdf', NULL, NULL, '2020-10-14', 0, '', '3', '8', '2020-10-19', 337776.00, '04:00 PM', '5', '1970-01-01', '1', 'with Ded. 23211 as take home. for HR-G', '6', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 03:48:06', 7, '2020-10-19 04:16:45', 0, NULL, 1),
(1196, 'BALAJI', '11', '7013711857', '', 'Balajisurya12358@gmail.com', '1995-02-24', 25, '2', '2', 'Ravi', 'Bussiness', 4800000.00, 0, 15000.00, 20000.00, 'Chennai', 'Chennai', '2010140029', '1', '2', 'upload_files/candidate_tracker/1257273_Balaji24.docx', NULL, NULL, '2021-03-29', 25, '', '5', '41', '1970-01-01', 0.00, '09:40 AM', '', '1970-01-01', '2', 'sALARY DEMAND AND WILL NOT SUSTAIN', '6', '1', '', '', '', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 04:07:18', 50, '2021-03-29 12:31:35', 0, NULL, 1),
(1197, 'gokul', '13', '8667016082', '9025665606', 'gokulnathan4@gmail.com', '1997-04-14', 23, '2', '2', 'ekanathan', 'farmer', 11000.00, 2, 0.00, 12500.00, 'arcot', 'chennai', '2010140030', '1', '1', 'upload_files/candidate_tracker/74996395922_GOKUL.E..pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'He is not strong in basic php', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 05:08:42', 1, '2020-10-14 05:32:36', 0, NULL, 1),
(1198, 'Manikandan. S', '5', '7401451453', '8838846212', 'mani12344.ms@gmail.com', '1996-04-09', 24, '2', '2', 'Srinivasan. T', 'Retail shop', 12000.00, 2, 0.00, 17000.00, 'Chennai', 'Korukkupet', '2010140031', '3', '2', 'upload_files/candidate_tracker/33807999415_Document 2.docx', NULL, NULL, '2020-10-15', 0, '', '5', '36', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'Not fit', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 05:10:35', 1, '2020-10-15 11:32:54', 0, NULL, 1),
(1199, 'Revathy', '11', '9080869286', '9500044555', 'Revakrishna@outlook.com', '1995-08-31', 25, '2', '1', 'Srinivasan', 'Traffic inspector', 6.00, 0, 1.50, 18000.00, 'Chennai', 'Chennai', '2010140032', '4', '2', 'upload_files/candidate_tracker/91478092378_Reva resume 2020.docx', NULL, NULL, '2020-10-15', 0, '', '3', '8', '2020-10-19', 163800.00, '10:30 AM', '', '1970-01-01', '1', '13K as TH.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 05:11:56', 50, '2020-10-15 10:30:34', 0, NULL, 1),
(1200, '', '0', '8608065351', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 06:39:53', 0, NULL, 0, NULL, 1),
(1201, 'Lilly Margreat Mary A', '4', '9344079600', '9840161582', 'lillymargreatmary3@gmail.com', '1997-10-03', 23, '2', '2', 'KR anthonyraj', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Avadi,chennai-71', 'Avadi,chennai-71', '2010140034', '1', '1', 'upload_files/candidate_tracker/75968786174_Lillymargreatmary Resume.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'Pressure Handling very poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 06:45:00', 50, '2020-10-15 12:37:28', 0, NULL, 1),
(1202, 'jayashree', '11', '7338757951', '', '', '1995-10-30', 24, '2', '2', 'maheaswaran', 'land lord', 45000.00, 2, 0.00, 15000.00, 'Chennai', 'chennai', '2010140035', '1', '1', 'upload_files/candidate_tracker/89262008180_resume (2).pdf', NULL, NULL, '2020-10-16', 0, '', '5', '8', '1970-01-01', 0.00, '01:18 PM', '', '1970-01-01', '1', 'not okay with bond. will not join.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-14 06:47:56', 50, '2020-10-16 02:02:32', 0, NULL, 1),
(1203, '', '0', '9345098317', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010140036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-14 07:03:54', 0, NULL, 0, NULL, 1),
(1204, '', '0', '8122526637', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:26:40', 0, NULL, 0, NULL, 1),
(1205, 'yokeshwaran', '11', '8056270523', '', 'yogiwaran11@gmail.com', '1996-12-11', 23, '2', '2', 'manikkam', 'warden', 75000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2010150002', '1', '2', 'upload_files/candidate_tracker/64119585108_CV - YOKESHWARAN.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '53', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'he s thinking to take calls. he wont take 80 calls per day', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 08:17:46', 50, '2020-10-15 11:45:13', 0, NULL, 1),
(1206, 'Srikanth S', '13', '7010925245', '', 'embarsrikanth@gmail.com', '1996-10-07', 24, '2', '2', 'Srinivasan', 'Teacher', 50000.00, 1, 0.00, 20000.00, 'Sirkali', 'Sirkali', '2010150003', '1', '1', 'upload_files/candidate_tracker/36595259244_MyResume2020.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', '1970-01-01', 0.00, '09:31 AM', '', '1970-01-01', '1', 'He is not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 09:29:13', 50, '2020-10-15 10:15:37', 0, NULL, 1),
(1207, 'Howsalya', '4', '9489842482', '', 'howsicivil@gmail.com', '1998-05-06', 22, '2', '2', 'Vinayagamoorthy', 'Contractor', 6000.00, 1, 0.00, 10000.00, '415, Perumal Kovil StreetRajapalayam', 'Madhurathagam', '2010150004', '1', '1', 'upload_files/candidate_tracker/39766799566_HOWSI resume-2.pdf', NULL, NULL, '2020-10-15', 0, '', '3', '8', '2020-10-19', 120000.00, '10:05 AM', '3', '2021-01-07', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 09:55:36', 7, '2020-10-15 03:06:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1208, 'Karthikeyan Gopalakrishnan', '13', '8012341435', '9597199509', 'karthikeyang289@gmail.com', '1995-07-28', 25, '2', '2', 'Gopalakrishnan', 'Kooli', 30000.00, 2, 0.00, 15000.00, 'namakkal', 'Alwarpet', '2010150005', '1', '1', 'upload_files/candidate_tracker/8072152163_Resume.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 09:56:03', 50, '2020-10-15 01:08:46', 0, NULL, 1),
(1209, 'A.kulanthai yesu micheal', '4', '9600981586', '9751386473', '1994micheala@gmail.com', '1994-07-23', 26, '1', '2', 'M.Arokiadass', 'Instrument Technician', 35000.00, 0, 0.00, 15000.00, 'Thiruvannamalai', 'Chennai', '2010150006', '', '1', 'upload_files/candidate_tracker/17921790666_CV 2020.pdf', NULL, NULL, '2020-10-15', 0, '5474', '3', '8', '2020-10-19', 126000.00, '10:08 AM', '6', '2020-11-05', '2', '10.5K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 10:00:54', 7, '2020-10-15 03:07:24', 0, NULL, 1),
(1210, 'Janarthanam', '13', '8838620692', '9790373264', 'jana.mech2018@gmail.com', '1995-12-24', 24, '2', '2', 'R.Alagesan', 'Bus Driver', 120000.00, 1, 0.00, 15000.00, 'Kalpakkam', 'Kalpakkam', '2010150007', '1', '1', 'upload_files/candidate_tracker/73868815794_jana.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'He Struggle In Basic Skill Sets. Not Coming Next Time Interview Schedule ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 10:01:35', 1, '2020-10-15 10:09:06', 0, NULL, 1),
(1211, 'Jabakumari v', '13', '8870800945', '', 'jabakumarivcse@gmail.com', '1995-12-20', 24, '2', '2', 'Vincent Cross Mani', 'None', 20.00, 2, 0.00, 12000.00, 'Redhills,chennai', 'Redhills,chennai', '2010150008', '1', '1', 'upload_files/candidate_tracker/45862228400_PHP Resume (1).docx', NULL, NULL, '2020-10-15', 0, '', '3', '8', '2020-10-26', 101052.00, '10:10 AM', '5', '1970-01-01', '2', '8421 and IT tean', '2', '2', '2', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 10:07:04', 7, '2020-10-23 05:36:51', 0, NULL, 1),
(1212, 'C.p.THIRUNAVUKARASU', '5', '9840791762', '', 'THIRUNAVUKARASU.c.p@gmail.com', '1992-03-05', 28, '1', '2', 'C.R.PARTHASARATHY', 'Electrician', 20000.00, 0, 30000.00, 30.00, 'Chennai', 'Chennai', '2010150009', '', '2', 'upload_files/candidate_tracker/29980304374_Thirunavukarasu Updated CV (07.05.19).docx', NULL, NULL, '2020-10-15', 0, '5589', '5', '22', NULL, 0.00, '10:27 AM', '0', NULL, '1', 'not satisfied', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 10:22:06', 1, '2020-10-15 10:38:25', 0, NULL, 1),
(1213, 'r. s. padmavathy', '16', '8870219963', '9092443869', 'rsnppb1993@gmail.com', '1993-03-20', 27, '2', '2', 'r.selvaraj', 'cooli', 10000.00, 2, 18500.00, 20000.00, 'porur', 'porur', '2010150010', '1', '2', 'upload_files/candidate_tracker/61760582610_padma.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '54', '1970-01-01', 0.00, '12:15 PM', '', '1970-01-01', '2', 'will not complete the task\n', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 10:35:13', 50, '2020-10-15 01:05:01', 0, NULL, 1),
(1214, 'swamyvel chandar', '4', '7010765389', '9444996379', 'samvelchandarpomaul@51gmail.c', '1998-07-09', 22, '1', '2', 'udayachandran', 'electrition', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2010150011', '', '1', 'upload_files/candidate_tracker/43059832321_RESUME (1).pdf', NULL, NULL, '2020-10-15', 0, 'ram mithran', '5', '13', NULL, 0.00, '12:50 PM', '0', NULL, '1', 'not suitable for tele sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 10:47:41', 1, '2020-10-15 12:56:00', 0, NULL, 1),
(1215, 'm jagatheswaran', '4', '9940326161', '', 'chat2jagan@gmail.com', '1991-08-22', 29, '2', '2', 'y d.manoharan', 'Business', 30000.00, 0, 14000.00, 16000.00, 'Chennai', 'chennai', '2010150012', '1', '2', 'upload_files/candidate_tracker/27690188942_ Resume .docx', NULL, NULL, '2020-10-15', 0, '', '5', '21', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'He Is Interested In Father Buisness, Current Situtation Only Need Job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:02:15', 50, '2020-10-15 11:59:29', 0, NULL, 1),
(1216, '', '0', '9092443869', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 11:07:25', 0, NULL, 0, NULL, 1),
(1217, 'Pavithran', '13', '9043621711', '', 'pavithranajayaj@gmail.com', '1994-05-29', 26, '2', '2', 'Ayyanar', 'Farmer', 20000.00, 0, 15000.00, 15000.00, 'Ramanathapuram district', 'Kannadasan nagar , kodungiyur', '2010150014', '1', '2', 'upload_files/candidate_tracker/79829036411_CV1.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '27', '1970-01-01', 0.00, '11:38 AM', '', '1970-01-01', '2', 'Not Completed the system task. ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:35:52', 50, '2020-10-15 11:43:43', 0, NULL, 1),
(1218, 'riyanka', '11', '9585313697', '8428973369', 'priyankarsp23@gmail.com', '1993-11-18', 26, '2', '2', 'ravichandran', 'supervisor', 25000.00, 1, 0.00, 20000.00, 'bharathidasan street ashok nagar lawspet', 'bhuvaneshwari nagar second main road velacherry', '2010150015', '1', '2', 'upload_files/candidate_tracker/46447913573_PRI Resume.pdf', NULL, NULL, '2020-10-16', 1, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:37:55', 50, '2020-10-16 05:16:37', 0, NULL, 1),
(1219, 'Durga', '4', '9514771709', '', 'durgavenkatesan43999@gmail.com', '1999-04-14', 21, '2', '2', 'Arumugam', 'Late', 15000.00, 0, 0.00, 15000.00, '56A subha shree nagar, 4th MR, muglivakkam, ch125', '56Asubha shree nagar, 4th mR ,muglivakkam ,Ch125', '2010150016', '1', '1', 'upload_files/candidate_tracker/402549609_durga resume.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '14', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'not fit for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:38:08', 50, '2020-10-15 12:39:54', 0, NULL, 1),
(1220, 'v.rajalakshmi', '4', '8939160551', '7550255234', 'rajalakshmiv35@gmail.com', '1999-09-13', 21, '2', '2', 'M.venketsan', 'Labour', 18000.00, 2, 0.00, 15000.00, '2/568 v.v kovil streets Muglivakkam Chennai', '2/568 v.v kovil streets Muglivakkam Chennai', '2010150017', '1', '1', 'upload_files/candidate_tracker/86964315517_RAJALAKSHMI.docx', NULL, NULL, '2020-10-15', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'Not Bold Not Sustain Bcz, 1;30 Hrs Travel', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:40:13', 50, '2020-10-15 12:38:34', 0, NULL, 1),
(1221, 'K leela', '5', '6302551085', '', 'Neelusri989@gmail.com', '1992-04-12', 28, '1', '2', 'K sreenivasulu', 'Passed away', 0.00, 2, 3.40, 4.00, 'Hindupur', 'Madivala', '2010150018', '', '2', 'upload_files/candidate_tracker/90825109921_updated resume 2018 october.pdf', NULL, NULL, '2020-10-15', 0, '5535', '3', '8', '2020-10-19', 288000.00, '11:50 AM', '0', NULL, '1', '24k for RM', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 11:45:19', 1, '2020-10-15 11:53:02', 0, NULL, 1),
(1222, 'tejasri', '11', '8682914057', '6374919653', 'tejapraksh@gmail.com', '1997-12-26', 22, '2', '2', 'prakash late', 'clothes wahser mother', 4495.00, 0, 0.00, 10000.00, 'no./ dr.vijaya ragavulu road old washermenpet', 'mint', '2010150019', '1', '1', 'upload_files/candidate_tracker/7593002679_Resume_P.pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 11:47:56', 50, '2020-10-16 05:16:48', 0, NULL, 1),
(1223, '', '0', '8122439112', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 11:59:27', 0, NULL, 0, NULL, 1),
(1224, '', '0', '9344079609', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:15:33', 0, NULL, 0, NULL, 1),
(1225, '', '0', '8870800645', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:41:32', 0, NULL, 0, NULL, 1),
(1226, 'R.Pooja', '4', '7397484880', '9840843219', 'poojaramachandar2000@gmail.com', '2000-01-20', 20, '1', '2', 'M.Ramachandar', 'Coolie', 20000.00, 2, 0.00, 15000.00, 'Sathyamurthi nagar', 'Sathyamurthi Nagar', '2010150023', '', '1', 'upload_files/candidate_tracker/97963037107_Pooja.R.pdf', NULL, NULL, '2020-10-15', 0, '5264', '3', '8', '1970-01-01', 120000.00, '12:51 PM', '2', '1970-01-01', '2', '10K for Priyanka team', '1', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:46:08', 7, '2020-10-15 06:16:13', 0, NULL, 1),
(1227, 'Kumaresan', '5', '8608966358', '9791100211', 'Kumaresankumaresan088@gmail.com', '1996-03-12', 24, '2', '1', 'Balan', 'Coole', 12000.00, 5, 15000.00, 18000.00, 'Thirumullaivoly', 'Thirumullaivoly', '2010150024', '3', '2', 'upload_files/candidate_tracker/7583771871_Dinesh,BCA new.pdf', NULL, NULL, '2020-10-15', 0, '', '5', '8', '1970-01-01', 0.00, '02:34 PM', '', '1970-01-01', '1', 'wrongly updated. candidate is not selected.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 12:49:04', 50, '2020-10-15 01:54:15', 0, NULL, 1),
(1228, 'Muthuramar', '4', '9597287926', '8098935047', 'ram405557@gmail.com', '1997-04-02', 23, '2', '2', 'R.Rayappan', 'Office assistant', 25000.00, 2, 0.00, 20000.00, 'Tenkasi', 'Chennai', '2010150025', '1', '1', 'upload_files/candidate_tracker/20828493366_resume_1600581539713.pdf', NULL, NULL, '2020-10-16', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he is intrested only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 12:54:43', 50, '2020-10-16 11:03:55', 0, NULL, 1),
(1229, 'Aishwarya Sasikumar', '11', '9445115441', '8124365579', 'aishwaryasasikumark@gmail.com', '1999-11-12', 20, '2', '2', 'K.Sasikumar', 'Corporation of Chennai', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010150026', '1', '1', 'upload_files/candidate_tracker/33204223492_RESUME Aishwarya.pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 12:58:56', 50, '2020-10-16 05:16:56', 0, NULL, 1),
(1230, 'Haribabu', '11', '8686110787', '', 'tallapaneniharibabu@gmail.com', '1997-06-10', 23, '2', '2', 'Narayana', 'Farmer', 25000.00, 0, 15000.00, 20000.00, 'Andhra Pradesh', 'Tambaram sanatorium', '2010150027', '1', '2', 'upload_files/candidate_tracker/51846314365_HARI updated RESSUME (1)-converted.pdf', NULL, NULL, '2020-10-16', 15, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 01:00:42', 50, '2020-10-16 05:17:05', 0, NULL, 1),
(1231, 'Naveen kumar k', '14', '8925949496', '7094672543', 'Naveenhitler40@gmail.com', '1998-04-05', 22, '2', '2', 'Karunanithi r', 'ac mechanic', 30.00, 2, 0.00, 25000.00, 'mayiladuthurai', 'Chennai', '2010150028', '1', '1', 'upload_files/candidate_tracker/7768610798_naveen .pdf', NULL, NULL, '2020-10-15', 0, '', '5', '28', '1970-01-01', 0.00, '01:20 PM', '', '1970-01-01', '2', 'He is not know android and Php basic', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 01:17:42', 50, '2020-10-15 01:38:40', 0, NULL, 1),
(1232, 'Sarathkumar.A', '4', '9150915350', '9176063215', 'sarathkumar.11sep@gmail.com', '1995-09-11', 25, '1', '2', 'N.Adhikesavan', 'Ro technician', 20000.00, 3, 15000.00, 15000.00, 'Alandur', 'Alandur', '2010150029', '', '2', 'upload_files/candidate_tracker/73621835486_1560764569407_RESUME 22.09.18.doc', NULL, NULL, '2020-10-15', 0, 'Ehrs008', '6', '0', NULL, 0.00, '01:32 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 01:21:26', 1, '2020-10-15 01:39:49', 0, NULL, 1),
(1233, '', '0', '7397420131', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 01:23:10', 0, NULL, 0, NULL, 1),
(1234, 'Kishore kumar', '13', '7397464978', '', '', '1998-07-20', 22, '2', '2', 'Venkat', 'Engineer', 90000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2010150031', '1', '1', 'upload_files/candidate_tracker/11362074327_kishore uodate res.docx', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 01:25:02', 50, '2020-10-16 05:17:17', 0, NULL, 1),
(1235, 'Nagajothi j', '11', '8072077180', '9962880258', 'Jothikajagan99@gmail.com', '1999-07-29', 21, '2', '2', 'Jagan N', 'Clerk', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010150032', '1', '1', 'upload_files/candidate_tracker/50720200418_NAGAJOTHI edit .docx', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 01:30:29', 50, '2020-10-16 05:17:24', 0, NULL, 1),
(1236, '', '0', '7829335436', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010150033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 01:34:18', 0, NULL, 0, NULL, 1),
(1237, 'prianka.r', '11', '8220095548', '9445350118', 'priankaramachandran@gmail.com', '1996-11-21', 23, '2', '2', 'ramachandran.m', '-', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2010150034', '1', '1', 'upload_files/candidate_tracker/18377601079_resume online updated.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Okay With Our Terms And Conditions.', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2020-10-15 01:36:00', 60, '2020-12-24 10:44:50', 0, NULL, 1),
(1238, 'Sophia T', '11', '7358753645', '', 'Sophiatamizh@gmail.com', '1997-03-15', 23, '2', '2', 'Tamilselvan R', 'Retired S.I', 25000.00, 1, 0.00, 15000.00, 'No, 37 tirunagar 2nd street thiruvottiyur', 'No, 37 tirunagar 2nd street thiruvottiyur', '2010150035', '1', '1', 'upload_files/candidate_tracker/79094947988_UPDATED RESUME.docx', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 02:00:43', 50, '2020-10-16 05:17:32', 0, NULL, 1),
(1239, 'Subin P K', '11', '9003443012', '', 'subinjan@gmail.com', '1993-05-03', 27, '2', '2', 'Mr. S Perumal Pillai', 'Nil', 20000.00, 0, 0.00, 360000.00, 'Thiruvithamcode, Kanyakumari Dist.', 'Jafferkhanpet, Chennai.', '2010150036', '1', '2', 'upload_files/candidate_tracker/88841456801_Subin_Resume.pdf', NULL, NULL, '2020-10-20', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 02:27:04', 50, '2020-10-20 01:24:37', 0, NULL, 1),
(1240, 'Monisha.M', '11', '9566146883', '9444800653', 'mmonisha96monisha@gmail.com', '1996-12-30', 23, '2', '2', 'Madhava murthy.T.K', 'electrical works', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2010150037', '1', '1', 'upload_files/candidate_tracker/14802848464_Monisharesum', NULL, NULL, '2020-10-16', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Okay With Bond. Will Not Join.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 02:47:17', 50, '2020-10-16 09:47:16', 0, NULL, 1),
(1241, 'Chusma.B', '11', '7092547380', '6383769958', 'chusmaraj112@gmail.com', '1997-10-16', 22, '2', '2', 'Babu Raj.N', 'ICF', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2010150038', '1', '1', 'upload_files/candidate_tracker/63030483492_Resume.pdf', NULL, NULL, '2020-10-16', 0, '', '3', '8', '2020-10-19', 151800.00, '12:00 PM', '', '1970-01-01', '2', '12650 as CTC', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 03:08:19', 50, '2020-10-16 10:55:05', 0, NULL, 1),
(1242, 'Jagadeesh pandi m', '4', '9384984743', '', 'Jegadeeshpandi99@gmail.com', '1999-04-15', 21, '2', '2', 'Marimuthu C', 'Farmer', 10000.00, 2, 10000.00, 11000.00, 'Virudhunagar', 'Valluvar kottam', '2010150039', '2', '2', 'upload_files/candidate_tracker/6343344863_1602566312683_1602304426394_1602155653830_RESUME 2.docx', NULL, NULL, '2020-10-16', 0, '', '3', '8', '2020-10-23', 120000.00, '10:30 AM', '2', '1970-01-01', '2', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 03:22:55', 7, '2020-10-16 04:46:00', 0, NULL, 1),
(1243, 'Kani Priya', '4', '9677524230', '', 'Bkanipriya2000@gmail.com', '2000-02-06', 20, '2', '2', 'Balaiah k', 'Farmer', 10000.00, 3, 0.00, 10000.00, 'Virudhunagar', 'Valluvar kottam', '2010150040', '2', '1', 'upload_files/candidate_tracker/66065104610_1602156329576_RESUME 2.docx', NULL, NULL, '2020-10-16', 0, '', '5', '21', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'Not Sustain, Low Confidence , Not Bold, Noflow In Words ,Come With Friend Only..', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 03:40:39', 1, '2020-10-15 03:43:04', 0, NULL, 1),
(1244, 'sumathi.r', '11', '8438233296', '9159725249', 'sumathir120@gmail.com', '1994-05-25', 26, '2', '2', 'ramasamy', 'hr', 30000.00, 0, 0.00, 20000.00, 'dindigul', 'west mambalam', '2010150041', '1', '2', 'upload_files/candidate_tracker/89004995155_Sumathi.R - HR Resume-converted.docx', NULL, NULL, '2020-10-15', 0, '', '5', '8', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '2', 'will not suite for rec. not completely in to rec. exp sal is high', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 04:07:41', 50, '2020-10-15 04:42:21', 0, NULL, 1),
(1245, 'Veera raja m', '4', '9080489268', '', 'Veeraraja2030@gmail.com', '1996-07-20', 24, '2', '2', 'Mani', 'Late', 5000.00, 3, 15000.00, 13000.00, 'Pudhukottai', 'Tambaram', '2010150042', '2', '2', 'upload_files/candidate_tracker/29913315342_Raja resume.docx', NULL, NULL, '2020-10-16', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'NOT SUITABLE FOR TELESALES', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 04:20:24', 1, '2020-10-15 04:28:10', 0, NULL, 1),
(1246, 'Balaji j g', '14', '9688776875', '', 'Balajiraoo567@gmail.com', '1993-07-05', 27, '2', '2', 'Govindhan', 'Wewing', 18000.00, 1, 22000.00, 26000.00, 'Paramakudi', 'Kovalam', '2010150043', '2', '2', 'upload_files/candidate_tracker/41071839431_BALAJIJG[2_8].pdf', NULL, NULL, '2020-10-16', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 04:56:42', 50, '2020-10-16 05:17:41', 0, NULL, 1),
(1247, 'Lohith. Y', '13', '8838280997', '8056029062', 'Lohithyk@gmail.com', '1999-10-26', 24, '6', '2', 'Krishna murthy', 'Retired clerk', 28000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010150044', '', '1', 'upload_files/candidate_tracker/69010196565_Resume-4.pdf', NULL, '1', '2023-12-16', 0, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-10-15 05:22:02', 1, '2023-12-16 07:47:35', 0, NULL, 1),
(1248, 'Deepak R', '13', '9789850490', '', 'deepak8196@gmail.com', '1996-01-08', 24, '2', '2', 'Rajendran', 'Painter', 10000.00, 2, 15000.00, 15000.00, 'Chennai', 'Old washernmpet', '2010150045', '2', '2', 'upload_files/candidate_tracker/90835374841_Deepak nova Resume.pdf', NULL, NULL, '2020-10-16', 0, '', '5', '27', NULL, 0.00, '10:45 AM', '0', NULL, '1', 'Task Not Completed.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-15 05:43:08', 1, '2020-10-15 05:46:43', 0, NULL, 1),
(1249, 'mowleshwaran. B8', '6', '7358502226', '7358407142', 'mowleshwaran24@gmail.com', '1999-09-09', 21, '2', '2', 'Balamurugan. G', 'business', 18000.00, 1, 0.00, 15000.00, '3/171,Rajalakshmi nagar panguni Street,porur', '1/121,Anna Street,periyapnicheri, porur', '2010150046', '1', '1', 'upload_files/candidate_tracker/10531296019_Mowleshwaran resume 01-1.docx', NULL, NULL, '2020-10-28', 0, '', '5', '20', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'voice and communication not good', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-15 05:48:09', 8, '2020-10-28 02:36:47', 0, NULL, 1),
(1250, 'V.mageshkumar', '4', '7540069543', '', 'Velayutham30@gmail.com', '2001-06-07', 19, '2', '2', 'S.velayutham', 'Teacher', 10000.00, 1, 0.00, 18000.00, 'Arakkonam', 'Chennai', '2010160001', '1', '1', 'upload_files/candidate_tracker/73523582723_CamScanner 10-19-2020 14.16.40.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '13', '1970-01-01', 0.00, '02:24 PM', '', '1970-01-01', '1', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 08:50:20', 50, '2020-10-19 02:39:23', 0, NULL, 1),
(1251, 'm.naveen kumar', '4', '7358556186', '7358318946', 'smartnaveensargunam@gmail.com', '1998-05-12', 22, '2', '2', 'k.murugan', 'no', 6000.00, 3, 0.00, 13000.00, 'k.k.nagar', 'k.k.nagar', '2010160002', '1', '1', 'upload_files/candidate_tracker/85520683608_naveen.docx', NULL, NULL, '2020-10-16', 0, '', '3', '8', '1970-01-01', 120000.00, '11:22 AM', '2', '1970-01-01', '1', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 10:31:13', 7, '2020-10-16 04:47:02', 0, NULL, 1),
(1252, 'Manikandan M', '13', '9566286996', '7639561591', 'manikandan3706@gmail.com', '1990-05-20', 30, '2', '2', 'Manivannan R', 'Farmer', 15000.00, 2, 0.00, 25000.00, 'Kallakurichi', 'Guindy', '2010160003', '1', '1', 'upload_files/candidate_tracker/20013670069_Resume - Php.docx', NULL, NULL, '2020-10-16', 0, '', '5', '28', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'He is not Know basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 10:45:52', 1, '2020-10-16 11:02:02', 0, NULL, 1),
(1253, 'rishitha', '11', '9059213025', '', 'rishitha981213@gmail.com', '1998-12-13', 21, '2', '2', 'ramakrishna', 'advocate', 70000.00, 1, 0.00, 25000.00, 'tirupati', 'Chennai', '2010160004', '1', '1', 'upload_files/candidate_tracker/62046900278_rishithaa.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Pronounced that she will move if she get better offer. not okay with bond. no knowledge in HR process and time being looking for job.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 10:47:26', 50, '2020-10-17 04:49:16', 0, NULL, 1),
(1254, 'Sandhiya prabha a', '13', '8270160970', '', 'Sandyshai1315@gmail.com', '1998-07-13', 22, '2', '2', 'Arumugam', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Madhurai', 'Kodambakkam', '2010160005', '2', '1', 'upload_files/candidate_tracker/15480936252_sandy-1.docx', NULL, NULL, '2020-10-17', 0, '', '5', '28', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', 'She is not Know basic Php skills', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 10:50:24', 50, '2020-10-17 10:52:57', 0, NULL, 1),
(1255, 'V. Madan Kumar', '4', '7200587848', '9444586953', 'madanchella86@gmail.com', '1986-04-01', 34, '2', '1', 'S.M. Veeraraghavan', 'Job search', 20000.00, 1, 0.00, 15000.00, '19,kamarajar salai, teynampet,ch-18.', '68/70,c-15,Adam st, Mylapore,ch_4.', '2010160006', '1', '1', 'upload_files/candidate_tracker/25273546684_file1_1602911431403.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'communication skill average but expected salary High', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 10:54:48', 58, '2020-12-23 04:54:54', 0, NULL, 1),
(1256, 'Manoj santhanam', '5', '7810095921', '', 'manojsanthanam717@gmail.com', '1995-06-06', 25, '1', '2', 'Santhanam', 'Business', 50000.00, 1, 52000.00, 25000.00, 'Namakkal', 'Bangalore', '2010160007', '', '2', 'upload_files/candidate_tracker/27744398015_CV_2020-10-16-122134.pdf', NULL, NULL, '2020-10-16', 0, '5631', '5', '56', '1970-01-01', 0.00, '11:24 AM', '', '1970-01-01', '1', 'he will not suit for this field', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 11:04:09', 50, '2020-10-16 12:57:59', 0, NULL, 1),
(1257, 'yamini.R', '4', '7092346419', '', 'yamini28200@gmail.com', '2000-02-28', 20, '1', '2', 'ramesh', 'electrician', 120000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2010160008', '', '1', 'upload_files/candidate_tracker/6468511961_RESUME.docx', NULL, NULL, '2020-10-16', 0, '5618', '5', '21', '1970-01-01', 0.00, '11:43 AM', '', '1970-01-01', '1', 'Not Sustain Bez His Brother Also Work In Lic ...,Already Teeth Pain ...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 11:29:25', 50, '2020-10-16 11:47:58', 0, NULL, 1),
(1258, 'thennarasi', '11', '9789809549', '9500013559', 'thennarasi25@gmail.com', '1993-06-25', 27, '2', '2', 'sambasivam', 'late', 500000.00, 1, 0.00, 8000.00, 'velacherry', 'velacherry', '2010160009', '1', '1', 'upload_files/candidate_tracker/12963655723_Thennarasi resume.docx', NULL, NULL, '2020-10-19', 0, '', '5', '53', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', 'having just 2 months experience. not suit for recruiter profile..', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 11:48:57', 50, '2020-10-19 01:29:29', 0, NULL, 1),
(1259, 'M.ANUSHA', '11', '9952004546', '', 'anushajoice607@gmail.com', '1997-09-10', 23, '2', '2', 'M.MANUVEL', 'OFFICE PERSONAL ASSISTANT', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2010160010', '1', '1', 'upload_files/candidate_tracker/39327250335_AnushA Resume_M(FM).docx', NULL, NULL, '2020-10-17', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 11:50:16', 1, '2020-10-16 11:57:15', 0, NULL, 1),
(1260, 'Mahalakshmi ramalingam', '3', '8667364180', '9360798178', 'Maha.shree.ram.r@gmail.com', '1997-08-14', 23, '2', '2', 'Ramalingam', 'Lecture', 30000.00, 1, 0.00, 180000.00, 'Vellore', 'Chennai', '2010160011', '1', '1', 'upload_files/candidate_tracker/37706418474_downloadfile.pdf', NULL, NULL, '2020-10-17', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 12:06:49', 1, '2020-10-16 06:29:23', 0, NULL, 1),
(1261, 'Lokesh babu', '4', '8825557385', '', 'lokeshlee185@gmail.com', '1997-01-17', 23, '2', '2', 'Guna sekar k', 'Driver', 10000.00, 1, 0.00, 11000.00, 'Chennai', 'Sozhinganalur', '2010160012', '2', '1', 'upload_files/candidate_tracker/20646373978_Ss lokesh-resume updated.docx', NULL, NULL, '2020-10-16', 0, '', '5', '21', NULL, 0.00, '01:30 PM', '0', NULL, '1', 'He Is Interested In Customer Care Base Or Cus Support', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 12:20:56', 1, '2020-10-16 12:24:14', 0, NULL, 1),
(1262, 'thomas', '11', '9962215311', '', 'thomas57raj@gmail.com', '1997-04-05', 23, '2', '2', 'selvaraj j', 'electrician', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'chennai', '2010160013', '1', '1', 'upload_files/candidate_tracker/82311632499_1594545990953_Resume.pdf', NULL, NULL, '2020-10-16', 0, '', '5', '8', '1970-01-01', 0.00, '02:15 PM', '', '1970-01-01', '2', 'told him to attend interview and he not turned back', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 02:07:29', 50, '2020-10-16 02:27:03', 0, NULL, 1),
(1263, 'S. SUBBULAKSHMI', '4', '6369027326', '8344252343', 'mssubasakthi57@gmail.com', '1994-11-07', 25, '1', '2', 'M. Subbaiyan', 'Farmer', 18.00, 1, 13.00, 15.00, 'Nagapattinam', 'T. Nagar', '2010160014', '', '2', 'upload_files/candidate_tracker/28301089396_CV_2020-10-04-115831.pdf', NULL, NULL, '2020-10-16', 30, '5419', '5', '13', NULL, 0.00, '02:32 PM', '0', NULL, '2', 'communication low and expected salary High', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 02:26:54', 1, '2020-10-16 03:19:38', 0, NULL, 1),
(1264, '', '0', '9071548320', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010160015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 02:35:52', 0, NULL, 0, NULL, 1),
(1265, '', '0', '8056199613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010160016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 03:13:21', 0, NULL, 0, NULL, 1),
(1266, '', '0', '8124974345', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010160017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 03:29:39', 0, NULL, 0, NULL, 1),
(1267, 'P.Pon Esakki Muthu', '16', '9500093119', '', 'saastha18@yahoo.co.in', '1985-05-13', 35, '2', '1', 'A.Paramasivan', 'Rtd.,Govt. Employee', 35000.00, 1, 15963.00, 20000.00, 'Maraimalai Nagar, Chengalpattu dist.', 'Maraimalai Nagar, Chengalpattu Dist.', '2010160018', '1', '2', 'upload_files/candidate_tracker/14765046520_Esakki - CV.pdf', NULL, NULL, '2020-10-16', 0, '', '5', '53', '1970-01-01', 0.00, '04:07 PM', '', '1970-01-01', '2', 'completed the mis task for two members comparing to him mohamed hve macros better knowledge and better communication', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-16 04:00:43', 50, '2020-10-16 05:08:52', 0, NULL, 1),
(1268, 'Snehalatha s', '3', '7358449317', '', 'Snehashalu@gmail.com', '1996-08-13', 24, '2', '2', 'Soundarrajans', 'Leather', 20000.00, 3, 20000.00, 22000.00, 'Chennai', 'Chrompet', '2010160019', '2', '2', 'upload_files/candidate_tracker/89782294168_SnehaLatha.docx', NULL, NULL, '2020-10-17', 10, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 04:14:12', 1, '2020-10-16 04:20:52', 0, NULL, 1),
(1269, 'Vishnu B', '13', '9677113434', '', 'Vishnuftp6@gmail.com', '1996-09-03', 24, '2', '2', 'Ba', 'Electrician', 25000.00, 2, 10000.00, 15000.00, 'Chennai', 'Perungulathur', '2010160020', '2', '2', 'upload_files/candidate_tracker/11839411819_VISHNUB.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '54', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'He will not sustain', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 04:42:19', 1, '2020-10-16 04:45:41', 0, NULL, 1),
(1270, 'Mohammed Azarudeen M', '13', '9123516024', '', 'Azarudeen48@gmail.com', '1997-06-09', 23, '2', '2', 'Mohammed ismail E', 'Tneb', 15000.00, 1, 14000.00, 15000.00, 'Chennai', 'Perambur', '2010160021', '2', '2', 'upload_files/candidate_tracker/21068195994_MOHAMED AZARUDEEN M (1).pdf', NULL, NULL, '2020-10-17', 0, '', '5', '28', NULL, 0.00, '11:10 AM', '0', NULL, '1', 'He is Dont Know Basic skills, PHP, Mysql and JavaScript ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 05:06:37', 1, '2020-10-16 05:09:47', 0, NULL, 1),
(1271, 'Madhumitha C', '13', '7092027853', '', 'Cmadhumithachella26@gmail.com', '1998-10-26', 21, '2', '2', 'Chelladurai', 'Market', 20000.00, 2, 0.00, 14000.00, 'Madhurai', 'Kodambakkam', '2010160022', '2', '1', 'upload_files/candidate_tracker/78270898774_Madhumitha - Resume.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '28', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'She is not Know basic skill in php', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 06:13:38', 1, '2020-10-16 06:16:25', 0, NULL, 1),
(1272, '', '0', '8653278921', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010160023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-16 10:35:32', 0, NULL, 0, NULL, 1),
(1273, '', '0', '8270852122', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 09:41:34', 0, NULL, 0, NULL, 1),
(1274, '', '0', '9585520600', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 10:31:18', 0, NULL, 0, NULL, 1),
(1275, 'V.g.rekha', '5', '9940670144', '9025380338', 'adlynrekha23@gmail.com', '1994-11-05', 25, '1', '1', 'George stevenson', 'Cine actor', 20000.00, 1, 0.00, 13000.00, 'Kodambakkam', 'Kodambakkam', '2010170003', '', '1', 'upload_files/candidate_tracker/36504935169_Resume.docx', NULL, NULL, '2020-10-17', 0, 'Job', '8', '8', '1970-01-01', 0.00, '10:39 AM', '', '1970-01-01', '2', 'check for rm', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 10:35:09', 8, '2020-10-26 04:21:16', 0, NULL, 1),
(1276, 'Sandhiya prabha A', '13', '9025669002', '9943624171', 'sandyshai1315@gmail.com', '1998-07-13', 22, '2', '2', 'Arumugam L', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Madurai', 'Chennai', '2010170004', '2', '1', 'upload_files/candidate_tracker/24956656417_sandy-1.docx', NULL, NULL, '2020-10-17', 0, '', '6', '0', NULL, 0.00, '10:48 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 10:44:59', 1, '2020-10-17 10:52:12', 0, NULL, 1),
(1277, 'DIYA CHANDHOK', '11', '9677039791', '9003286688', 'diyachandhok@gmail.com', '1998-03-21', 22, '2', '2', 'MR.ARUN KUMAR CHANDHOK', 'VICE PRESIDENT MARKETING', 300000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010170005', '1', '1', 'upload_files/candidate_tracker/52301825988_Resume-Diya Chandhok PDF.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Se will not Sustain because willing to join indian army.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 10:46:43', 50, '2020-10-17 04:50:01', 0, NULL, 1),
(1278, 'Mohamed Riyas A', '13', '9790071158', '6369160768', 'riyasulfath26212126@gmail.com', '2000-05-26', 20, '2', '2', 'S. M Ahamed kabeer', 'Coolie', 12000.00, 3, 0.00, 10000.00, '189/45 pudhumani 2nt street tenkasi', 'Guindy', '2010170006', '1', '1', 'upload_files/candidate_tracker/22352379365_Riyas.docx', NULL, NULL, '2021-01-27', 0, '', '5', '27', '1970-01-01', 0.00, '12:09 PM', '', '1970-01-01', '2', 'not completed the task', '2', '1', '', '', '', '', '2', '2021-01-27', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-10-17 12:00:52', 7, '2021-01-27 12:49:51', 0, NULL, 1),
(1279, 'Mohamed Musthafa Kamal.S', '13', '9789529348', '9361946149', 'smmusthafakamal@gmail.com', '2000-07-10', 20, '1', '2', 'Syed Sulaiman.M', 'Coolie', 12000.00, 2, 0.00, 10000.00, 'Tenkasi', 'Guindy', '2010170007', '', '1', 'upload_files/candidate_tracker/74521353513_Musthafakamal.docx', NULL, NULL, '2020-10-17', 0, 'Jobs', '5', '28', NULL, 0.00, '12:11 PM', '0', NULL, '2', 'He Is Not Strong Basic Skill Set', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 12:03:03', 1, '2020-10-17 12:15:28', 0, NULL, 1),
(1280, 'Karthickraja', '6', '9790668337', '9176238187', 'karthickrj94@gmail.com', '1994-06-28', 26, '2', '2', 'Dayalan', 'Driver', 20000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2010170008', '1', '2', 'upload_files/candidate_tracker/4090018311_karthickraja Resume PDF.pdf', NULL, NULL, '2020-10-17', 0, '', '5', '16', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '1', 'no comunication skills ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 12:33:00', 50, '2020-10-17 04:50:15', 0, NULL, 1),
(1281, 'J. Ruby', '4', '7550271082', '9080086017', 'rubinaruby5598@gmail.com', '1998-05-05', 22, '1', '2', 'Arokiyamary', 'Tailor', 25000.00, 3, 0.00, 15000.00, 'Villupuram', 'Guindy', '2010170009', '', '1', 'upload_files/candidate_tracker/55093750424_file1_1602920852059.pdf', NULL, NULL, '2020-10-17', 0, '5177', '3', '8', '2020-10-19', 132000.00, '01:41 PM', '3', '2020-11-30', '2', '11K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 12:46:24', 7, '2020-10-17 04:13:21', 0, NULL, 1),
(1282, 'Umamaheshwari', '4', '9994642924', '9659098979', 'saisriuma68@gmail.com', '1992-06-27', 28, '1', '2', 'Shanthal', 'Farmer', 7000.00, 1, 0.00, 15000.00, 'Erode', 'Guindy', '2010170010', '', '1', 'upload_files/candidate_tracker/18690712195_umaResume.pdf', NULL, NULL, '2020-10-17', 0, '5177', '3', '8', '2020-10-19', 126000.00, '01:01 PM', '2', '1970-01-01', '2', '10.5K for Muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 12:48:36', 7, '2020-10-17 04:13:40', 0, NULL, 1),
(1283, '', '0', '9710374851', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 01:31:29', 0, NULL, 0, NULL, 1),
(1284, 'masilamani', '4', '8940845954', '', 'mmasila37@gmail.com', '1999-02-13', 21, '2', '2', 'manickam', 'farmer', 10000.00, 2, 0.00, 15000.00, 'pudukottai', 'chennai', '2010170012', '1', '1', 'upload_files/candidate_tracker/73394637907_mass resume.docx', NULL, NULL, '2020-10-17', 0, '', '5', '21', '1970-01-01', 0.00, '01:46 PM', '', '1970-01-01', '2', 'he Is Come With Friend Only xxampalso Not Bold...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 01:43:00', 50, '2020-10-17 01:50:55', 0, NULL, 1),
(1285, 'Abirami', '4', '9791863707', '', 'abirami99balraj@gmail.com', '1999-11-23', 20, '2', '2', 'Balraj', 'Spinning mill supervisor', 12000.00, 2, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2010170013', '1', '1', 'upload_files/candidate_tracker/93508598376_abi resume.docx', NULL, NULL, '2020-10-17', 0, '', '5', '21', '1970-01-01', 0.00, '01:48 PM', '', '1970-01-01', '2', 'Not Bold ,No Voice Clarity, She Is Come With His Friend ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 01:43:37', 50, '2020-10-17 01:51:02', 0, NULL, 1),
(1286, 'Mohabu Reshma Banu. f', '11', '8610651934', '9514726777', 'Reshmaferoze@gmail', '1996-12-15', 23, '2', '1', 'Imran khan', 'Business', 20000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2010170014', '1', '1', 'upload_files/candidate_tracker/97797640947_Mohabu', NULL, NULL, '2020-10-19', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no exp in HR and exp is 14-15K as TH. will not suite for REc.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:05:38', 50, '2020-10-19 11:19:47', 0, NULL, 1),
(1287, 'priya', '13', '7358200153', '', 'priyammmsp@gmail.com', '1996-01-10', 24, '2', '1', 'subash', 'private job', 30000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2010170015', '1', '1', 'upload_files/candidate_tracker/41090496954_Priya.docx', NULL, NULL, '2020-10-27', 0, '', '5', '28', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', 'She is Not Strong In basic Php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:09:40', 50, '2020-10-27 11:27:44', 0, NULL, 1),
(1288, 'Fathima', '4', '7397129932', '9739847312', 'fathimad74@gmail.com', '1998-03-04', 22, '2', '2', 'Devasagayam.A', 'Farmer', 20000.00, 2, 18000.00, 18000.00, 'Vellore', 'Thynampet', '2010170016', '1', '2', 'upload_files/candidate_tracker/81743060140_RESUME.pdf', NULL, NULL, '2020-10-17', 1, '', '5', '13', '1970-01-01', 0.00, '02:22 PM', '', '1970-01-01', '2', 'she is looking for the job temporary only', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:16:26', 50, '2020-10-17 04:49:44', 0, NULL, 1),
(1289, 'venkatesh. s', '13', '9840508430', '', 'abishekabraham3@gmail.com', '2000-01-18', 20, '2', '2', 'saravanan', 'auto painter', 18000.00, 1, 0.00, 13000.00, 'porur', 'porur', '2010170017', '1', '1', 'upload_files/candidate_tracker/15200828706_VENKATESH RESUME new.docx', NULL, NULL, '2020-10-19', 0, '', '5', '28', NULL, 0.00, '12:30 PM', '0', NULL, '2', 'He is not strong in basic php', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:34:10', 1, '2020-10-19 12:19:42', 0, NULL, 1),
(1290, 'Suresh S', '13', '9962162112', '', 'sureshsivakumar.n@gmail.com', '1998-09-09', 22, '2', '2', 'SIVAKUMAR', 'Film distribution', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2010170018', '1', '1', 'upload_files/candidate_tracker/92109143367_1602174961657_Sureshsivakumar.pdf', NULL, NULL, '2020-10-19', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 02:50:41', 50, '2020-10-19 06:54:27', 0, NULL, 1),
(1291, 'remya', '13', '7339240230', '9361652213', 'ramya08rk@gmail.com', '1995-08-08', 25, '2', '2', 'rajan', 'watchman', 20000.00, 1, 0.00, 15000.00, 'kanya kuamri', 'chennai', '2010170019', '1', '1', 'upload_files/candidate_tracker/8903279914_RESUME PDF 1-1.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'She is Not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 03:09:10', 50, '2020-10-19 10:58:14', 0, NULL, 1),
(1292, 'Arunachalam S', '13', '9486604957', '', 'arunindra18@gmail.com', '1998-10-24', 21, '2', '2', 'Sukumar P', 'Senior Draughtsman (Rtd.)', 20000.00, 2, 0.00, 350000.00, 'Tiruvannamalai', 'Chennai', '2010170020', '1', '1', 'upload_files/candidate_tracker/74688624827_RESUME-ARUN.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He is not strong in php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 03:39:17', 50, '2020-10-19 01:05:58', 0, NULL, 1),
(1293, 'bharathkumar. r', '13', '7401569165', '', 'bharathkumar3929@gmail.com', '1999-09-19', 21, '2', '2', 'ravikumar. r', 'driver', 20000.00, 3, 0.00, 13000.00, 'poonamallee', 'poonamallee', '2010170021', '1', '1', 'upload_files/candidate_tracker/17167773150_BHARATHKUMAR RESUME.docx', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'He is not strong in basic php and html', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 03:42:11', 50, '2020-10-19 12:05:26', 0, NULL, 1),
(1294, 'Vasanth', '13', '6380282430', '', 'vasanth039998@gmail.com', '1998-09-03', 22, '2', '2', 'Vadivel', 'Wages', 20000.00, 1, 0.00, 13000.00, 'Poonamallee', 'Poonamallee', '2010170022', '1', '1', 'upload_files/candidate_tracker/55165836947_Resume.docx', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-17 03:42:31', 50, '2020-10-19 12:20:42', 0, NULL, 1),
(1295, 'Indumathi J', '4', '8056086752', '', 'indhujai2311@gmail.com', '1994-11-23', 25, '2', '1', 'Jayachandran L', 'Business', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010170023', '3', '1', 'upload_files/candidate_tracker/34459426636_Resume.docx', NULL, NULL, '2020-10-19', 0, '', '5', '53', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'she know oly vlookup.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 05:23:26', 50, '2020-10-19 01:07:37', 0, NULL, 1),
(1296, '', '0', '7548844491', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 05:28:47', 0, NULL, 0, NULL, 1),
(1297, '', '0', '8056118085', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010170025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-17 06:43:01', 0, NULL, 0, NULL, 1),
(1298, '', '0', '7639734876', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010180001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-18 07:15:36', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1299, 'Mohankumar k', '4', '9092768591', '6369640128', 'mohankumar1998k@gmail.com', '1998-10-17', 22, '2', '2', 'Kanneeswaran', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Theni', 'Chennai', '2010180002', '2', '1', 'upload_files/candidate_tracker/44715926600_Mohan Kumar new resume.pdf', NULL, NULL, '2020-10-21', 0, '', '3', '8', '2020-10-22', 120000.00, '11:00 AM', '3', '2021-02-02', '2', '10K for Muthu team.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-18 07:51:16', 7, '2020-10-21 06:12:31', 0, NULL, 1),
(1300, 'Yougeshwari', '4', '7397464528', '', '', '1997-12-29', 22, '2', '2', 'Natarajan', 'Travels', 15000.00, 2, 0.00, 12000.00, 'Nedunkundram', 'Nedunkundram', '2010190001', '1', '1', 'upload_files/candidate_tracker/77067060731_Yogi Cv.pdf', NULL, NULL, '2020-10-20', 0, '', '6', '', '1970-01-01', 0.00, '11:05 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 10:42:31', 50, '2020-10-20 01:23:19', 0, NULL, 1),
(1301, 'Suryaprakash', '4', '6385425259', '9500970791', 'Sp5259nb@gmail.com', '1999-08-06', 21, '2', '2', 'Natesan', 'Ex crpf', 15000.00, 1, 0.00, 9000.00, 'Villivakkam', 'Villivakkam', '2010190002', '1', '1', 'upload_files/candidate_tracker/45816600758_SURYA PRAKASH.docx', NULL, NULL, '2020-10-19', 0, '', '3', '8', '2020-10-22', 120000.00, '11:16 AM', '2', '1970-01-01', '1', '10K for priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 11:07:17', 7, '2020-10-19 04:25:42', 0, NULL, 1),
(1302, 'Eswari', '4', '7401562397', '9940510896', 'Veswari2106@gmail.com', '1998-09-21', 22, '2', '2', 'Venugopal', 'Driver', 15000.00, 2, 0.00, 9000.00, 'Ambattur', 'Ambattur', '2010190003', '1', '1', 'upload_files/candidate_tracker/25793911144_ags 2.pdf', NULL, NULL, '2020-10-19', 0, '', '3', '8', '2020-10-22', 120000.00, '11:30 AM', '5', '1970-01-01', '1', '10K for Dhivya team.', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 11:08:12', 7, '2020-10-19 04:26:04', 0, NULL, 1),
(1303, 'Praveen', '13', '9500585175', '', 'praveen.pravin6@gmail.com', '2005-10-19', 15, '2', '2', 'Muralidharan', 'Business', 1.00, 1, 408000.00, 440000.00, 'chennai', 'chennai', '2010190004', '1', '2', 'upload_files/candidate_tracker/93551578655_Final Resume PV.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '27', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '1', 'Task Incompleted and there is no response from him.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 11:33:26', 50, '2020-10-19 12:03:09', 0, NULL, 1),
(1304, 'ramasupramaniyan', '13', '8778214217', '7639712567', 'ramkumardev8778@gmail.com', '1999-06-16', 21, '2', '2', 'kumaresan', 'farmer', 10000.00, 1, 0.00, 12000.00, 'Pudukkottai', 'Pudukkottai', '2010190005', '1', '1', 'upload_files/candidate_tracker/33743422850_Ramasupramaniyan', NULL, NULL, '2020-10-19', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He is not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 11:42:04', 50, '2020-10-19 12:03:00', 0, NULL, 1),
(1305, 'PRADHAP CHANDAR', '5', '9597418500', '6381918128', 'pradhapchandar@gmail.com', '1986-07-12', 34, '2', '1', 'Mohanasundari P', 'Salaried', 45000.00, 0, 26000.00, 30000.00, 'Pattukkottai', 'Aynavaaram Chennai', '2010190006', '3', '2', 'upload_files/candidate_tracker/76954562357_Pradhap_Resume ).docx', NULL, NULL, '2020-10-19', 1, '', '5', '8', NULL, 0.00, '12:16 PM', '0', NULL, '1', 'no update from his end.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 12:07:08', 1, '2020-10-19 12:16:49', 0, NULL, 1),
(1306, 'J .Mageswari', '4', '9841123916', '9941212414', 'magej0601@gmail.com', '1999-01-06', 21, '1', '2', 'Jothi .v', 'Daily wages', 60000.00, 1, 0.00, 11000.00, 'Velachery', 'Velachery', '2010190007', '', '1', 'upload_files/candidate_tracker/12672446848_Mageswari resume.docx', NULL, NULL, '2020-10-19', 0, '5198', '5', '14', '1970-01-01', 0.00, '12:34 PM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 12:19:29', 50, '2020-10-19 12:48:52', 0, NULL, 1),
(1307, 'Snehalatha.K', '11', '9444038127', '8838036536', 'snehavkannan@gmail.com', '1998-05-06', 22, '2', '2', 'Kannan.A', 'Executive Assistant', 80000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2010190008', '1', '1', 'upload_files/candidate_tracker/69556662345_Snehalatha Resume.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'no job need and will not suite for cafs', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 12:27:18', 50, '2020-10-20 10:14:27', 0, NULL, 1),
(1308, 'Heman B', '4', '9597013827', '', 'heman.hem10@gmail.com', '1999-04-23', 21, '2', '2', 'Bharathi S', 'Business', 50000.00, 1, 0.00, 12000.00, '4/87, Vellalar Street kaattorani ramanathapuram', 'Kalyan Nagar Second Street West Thambaram', '2010190009', '1', '1', 'upload_files/candidate_tracker/41096721805_Heman Resume 1.docx', NULL, NULL, '2020-10-19', 0, '', '5', '13', '1970-01-01', 0.00, '12:35 PM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 12:31:50', 50, '2020-10-19 12:47:12', 0, NULL, 1),
(1309, 'hariharan', '11', '8668005815', '', 'Harihas25@gmail.com', '1990-07-25', 30, '2', '1', 'suhashini', 'homemaker', 25.00, 1, 0.00, 18.00, 'chennai', 'chennai', '2010190010', '1', '1', 'upload_files/candidate_tracker/98910692028_Hariharan G_1598090844.doc', NULL, NULL, '2020-10-21', 0, '', '5', '53', NULL, 0.00, '12:46 PM', '0', NULL, '1', 'nt suit for rec. Asked to go for field but he s not intrested in firls allso, last job he quit due to pressure', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 12:42:57', 1, '2020-10-19 07:28:55', 0, NULL, 1),
(1310, 'G.sindhu', '4', '9360377695', '', 'WWW.karthickrajesh@gmail.com', '2000-07-20', 20, '2', '2', 'A.govindharaj', 'Former', 7000.00, 1, 0.00, 17500.00, 'Thiruttani', 'Chennai', '2010190011', '1', '1', 'upload_files/candidate_tracker/51381250325_CamScanner 10-19-2020 13.45.16.pdf', NULL, NULL, '2020-10-19', 0, '', '5', '21', '1970-01-01', 0.00, '02:11 PM', '', '1970-01-01', '1', 'Not bold, Low Confidence ,She Is Interested In Data entry', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 01:33:54', 50, '2020-10-19 02:26:21', 0, NULL, 1),
(1311, 'Prabu', '5', '9944874844', '7010111521', 'prabuadeva@gmail.com', '1997-05-23', 23, '2', '2', 'Krishnamoorthy', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'TIRUVANNAMALAI', 'Chennai', '2010190012', '1', '1', 'upload_files/candidate_tracker/41995985658_RESUME PRABU K.pdf', NULL, NULL, '2020-10-20', 0, '', '6', '0', NULL, 0.00, '11:36 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 01:39:21', 1, '2020-10-19 01:43:59', 0, NULL, 1),
(1312, '', '0', '9940273322', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010190013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 03:48:59', 0, NULL, 0, NULL, 1),
(1313, 'Siva', '11', '8248086468', '9884911564', 'sivarasture@gmail.com', '1996-06-04', 24, '2', '2', 'Selvam', 'Self', 20000.00, 1, 23000.00, 25000.00, 'Chennai', 'Chennai', '2010190014', '1', '2', 'upload_files/candidate_tracker/40120684235_1605959552056_23988.pdf', NULL, NULL, '2020-11-27', 0, '', '6', '0', NULL, 0.00, '12:01 PM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 04:40:48', 1, '2020-11-27 09:38:35', 0, NULL, 1),
(1314, 'mary lourdu rebeka l', '4', '8939039431', '9790711815', 'rebekaxavier1503@gmail.com', '1997-03-15', 23, '2', '2', 'lourdu xavier j g s', 'Business', 40000.00, 1, 18000.00, 15000.00, 'No 224/A Kalainar St, Tv Nagar, Ayanavaram, Ch 23', 'No 224/A Kalainar St, Tv Nagar, Ayanavaram, Ch 23', '2010190015', '1', '2', 'upload_files/candidate_tracker/86749360533_Final RESUME rebeka-converted.pdf', NULL, NULL, '2020-10-20', 15, '', '5', '53', '1970-01-01', 0.00, '12:41 PM', '', '1970-01-01', '2', 'not suit fr telecalling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 04:40:50', 50, '2020-10-20 01:22:09', 0, NULL, 1),
(1315, 'S Muthukrishnan', '6', '7010323196', '', 'brendonmuthu3025@gmail.com', '1997-08-25', 23, '2', '2', 'K Subramanian', 'Assistant bank manager', 80000.00, 1, 0.00, 13000.00, 'Palani', 'Palani', '2010190016', '1', '1', 'upload_files/candidate_tracker/74825435216_muthukrishnan.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '24', NULL, 0.00, '11:38 AM', '0', NULL, '2', 'voice not bold.. not convince for sale field.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 04:58:06', 1, '2020-10-20 11:42:22', 0, NULL, 1),
(1316, 'JAFFAR.U', '5', '8124197221', '', 'jaffar2312u2000@gmail.com', '2000-01-09', 20, '2', '2', 'Umayun basha.s', 'Auto driver', 15000.00, 1, 17000.00, 22000.00, 'Chennai , perambur', 'Chennai , perambur', '2010190017', '1', '2', 'upload_files/candidate_tracker/90480027344_Jaffar (resume)new.docx', NULL, NULL, '2020-10-20', 30, '', '5', '31', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'Candidate expecting accountant of finance department. Not interested in sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 04:59:50', 50, '2020-10-20 06:35:26', 0, NULL, 1),
(1317, 'S.rahul', '4', '7358565609', '', 'riskrahul30@gmail.com', '1999-11-04', 20, '2', '2', 'S.sundar', 'Tamil', 8000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2010190018', '1', '1', 'upload_files/candidate_tracker/40621651827_rahul resumes.docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'Not Sustain ,He Searched Data Entry Job ...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 05:13:33', 50, '2020-10-20 01:22:22', 0, NULL, 1),
(1318, 'H. NIVEDHITHA', '4', '9080500687', '', 'nivethakrish712@gmail.com', '1999-12-07', 20, '2', '2', 'S. B. HARI KRISHNAN', 'Business', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Avadi', '2010190019', '1', '1', 'upload_files/candidate_tracker/37429170486_Resume.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'already she went training in consultancy .. xxamp also long distance ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 05:14:34', 50, '2020-10-20 01:22:30', 0, NULL, 1),
(1319, 'Anis Fathima', '14', '9943565381', '8870644118', 'anisrahmaniya@gmail.com', '1998-08-17', 22, '3', '2', 'Abdul rahuman', 'Farmer', 25000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2010190020', '', '1', 'upload_files/candidate_tracker/55949517229_Anis[1].pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 05:57:24', 7, '2020-10-21 05:54:37', 50, '2020-10-26 02:12:23', 0),
(1320, '', '0', '7358437743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010190021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-19 06:32:03', 0, NULL, 0, NULL, 1),
(1321, 'salabha p s', '11', '8754545661', '9884113272', 'imshalabha.ps@gmail.com', '1994-03-21', 26, '2', '1', 'anand p k', 'it professional', 100000.00, 1, 18000.00, 22000.00, 'chennai', 'chennai', '2010190022', '1', '2', 'upload_files/candidate_tracker/11469474069_Salabha HR Executive.docx', NULL, NULL, '2020-10-20', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'exp sal is 20+ and with one year exp', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 06:41:41', 50, '2020-10-20 10:37:53', 0, NULL, 1),
(1322, 'S. Ramya', '11', '9840441894', '', 'ramyasharmi1997@gmail.com', '1997-08-09', 23, '2', '2', 'E. Sugumaran', 'Productive executive', 20000.00, 1, 0.00, 12000.00, 'Triplicane', 'Triplicane', '2010190023', '1', '1', 'upload_files/candidate_tracker/1139567248_0_Ramya cv.pdf', NULL, NULL, '2020-10-20', 0, '', '8', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'left before interview', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 06:47:18', 50, '2020-10-20 01:23:45', 0, NULL, 1),
(1323, 'p.thilagavathy', '14', '9786602569', '9943565381', 'thilaxraj1108@gmail.com', '1998-08-11', 22, '2', '2', 'p.lakshmi', 'business', 20000.00, 2, 0.00, 15000.00, 'virudhunagar', 'chennai', '2010190024', '1', '1', 'upload_files/candidate_tracker/35702115071_thilax.pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 06:51:54', 7, '2020-10-21 05:54:48', 0, NULL, 1),
(1324, 'Kavya', '4', '8754226652', '', 'Kavya99ravi@gmail.com', '1999-01-21', 21, '2', '2', 'Ravi', 'Kooly', 9500.00, 1, 0.00, 15000.00, 'Aruppukottai', 'Aruppukottai', '2010190025', '1', '1', 'upload_files/candidate_tracker/1384457154_Update resume.pdf', NULL, NULL, '2020-10-27', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 07:14:23', 7, '2020-10-27 04:34:00', 0, NULL, 1),
(1325, 'Kavya', '4', '8753226652', '', 'Kavya99ravi@gmail.com', '1999-01-21', 21, '2', '2', 'Ravi', 'Kooly', 9500.00, 1, 0.00, 15000.00, 'Aruppukottai', 'Chennai', '2010190026', '1', '1', 'upload_files/candidate_tracker/72288701244_KAVYA Resume.docx', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '01:39 PM', '', '1970-01-01', '2', 'not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 07:19:27', 50, '2020-10-26 04:23:00', 0, NULL, 1),
(1326, 'L n meenatchi', '11', '7871366348', '', 'Meenatchi0329@gmail.com', '1997-03-29', 23, '2', '2', 'M lakshmi narayanan', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Vadapalani', 'Vadapalani', '2010190027', '1', '2', 'upload_files/candidate_tracker/67551250269_resume.docx', NULL, NULL, '2020-10-20', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not suite for rec. no knowledge in portal and sal exp is 15K+', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-19 08:26:45', 50, '2020-10-20 01:24:05', 0, NULL, 1),
(1327, 'Karthic kumar c', '4', '7358811581', '', 'Karthisekar696@gmail.com', '1999-01-06', 21, '2', '2', 'Chandhirasekran k', 'Transport business', 15000.00, 0, 0.00, 12000.00, 'Thoothukudi', 'Perungulathur', '2010200001', '2', '1', 'upload_files/candidate_tracker/32347072796_Resume.docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '10:45 AM', '', '1970-01-01', '2', 'he have 18 arrears xxamp also not fit for our process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 08:54:06', 7, '2020-10-20 12:30:21', 0, NULL, 1),
(1328, 'Karan raj selvam a', '4', '9952342579', '', 'Net. Selvam98@gmail.com', '1998-07-10', 22, '2', '2', 'Anbu selvam', 'Farmer', 15000.00, 1, 0.00, 12000.00, 'Nagalapuram', 'Perungulathur', '2010200002', '2', '1', 'upload_files/candidate_tracker/22491358545_karan resume11111 (1).docx', NULL, NULL, '2020-10-20', 0, '', '5', '13', NULL, 0.00, '10:45 AM', '0', NULL, '2', 'not suitable for pressure handling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 09:37:14', 1, '2020-10-20 09:39:44', 0, NULL, 1),
(1329, 'Dinesh T', '4', '8608894623', '', 'Dineshthiyagu99@gmail.com', '1999-09-13', 21, '2', '2', 'Thiyagarajan v', 'Dailywages', 10000.00, 1, 0.00, 12000.00, 'Sankaralingapuram', 'Perungulathur', '2010200003', '2', '1', 'upload_files/candidate_tracker/52678691531_DINESH.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 09:41:46', 7, '2020-10-20 11:59:41', 0, NULL, 1),
(1330, 'Nagapandi k', '15', '8825485954', '', 'Pandi14796@gmail.com', '1996-07-11', 24, '2', '2', 'Karunakaran n', 'Farmer', 20000.00, 0, 12000.00, 15000.00, 'Dindugal', 'Nanmangalam', '2010200004', '2', '2', 'upload_files/candidate_tracker/12725576988_Nagapandi Resume.doc', NULL, NULL, '2020-10-24', 0, '', '5', '28', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'He dont Know frame work like wordpress.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 09:48:39', 1, '2020-10-23 12:07:52', 0, NULL, 1),
(1331, 'sudhakar.a', '6', '8610959720', '7092857234', 'sudhakartamil007@gmail.com', '1993-07-19', 27, '1', '2', 'arumugam', 'late', 16000.00, 0, 12000.00, 16000.00, 'vadapalani', 'vadapalani', '2010200005', '', '2', 'upload_files/candidate_tracker/43406142479_Sudhakar Resume 1-1.doc', NULL, NULL, '2020-10-20', 0, '5631', '3', '8', '1970-01-01', 168000.00, '11:29 AM', '2', '1970-01-01', '1', '14K for Syed team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 10:31:16', 7, '2020-10-21 05:53:54', 0, NULL, 1),
(1332, 'Timothy Andrew Yates', '5', '9962912882', '9962343707', 'Timothyyates5@gmail.com', '1991-05-27', 29, '2', '1', 'Celine Yates', 'Homemaker', 20000.00, 1, 19500.00, 20000.00, 'Chennai', 'Chennai', '2010200006', '1', '2', 'upload_files/candidate_tracker/90434806467_Timothy Resume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '31', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Expecting service based job. not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 10:37:28', 50, '2020-10-21 12:16:14', 0, NULL, 1),
(1333, 'Sabeha Tasleem . S', '11', '7708604511', '9940854511', 'sabehathasleem@gmail.com', '1997-09-18', 23, '3', '2', 'Shajahan', 'Business', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010200007', '', '1', 'upload_files/candidate_tracker/5839406645_IMG-20200924-WA0041-converted.pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:09:52', 7, '2020-10-21 05:55:01', 7, '2020-10-27 11:53:38', 0),
(1334, '', '0', '9884844050', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:17:29', 0, NULL, 0, NULL, 1),
(1335, 'Buvaneshwari', '4', '9566000519', '9500338851', 'boovi1996k@gmail.com', '1995-05-24', 25, '2', '2', 'Kaliyamoorthy', 'Former', 500000.00, 2, 2.00, 14.50, 'Kumbakonam', 'Perungalathur', '2010200009', '1', '2', 'upload_files/candidate_tracker/30080551873_Pdf_10Sep20_5.pdf', NULL, NULL, '2020-10-20', 3, '', '5', '21', '1970-01-01', 0.00, '11:39 AM', '', '1970-01-01', '2', 'not fit for our process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 11:18:49', 50, '2020-10-20 01:22:40', 0, NULL, 1),
(1336, 'Saravana kumar s', '4', '8667600579', '', 'Saisaravanakumar123@gmail.com', '1994-09-13', 26, '2', '2', 'Siva kumar g', 'Pertrol bunk cashier', 12000.00, 1, 10500.00, 12500.00, 'Karaikal', 'Sozhinganalur', '2010200010', '2', '2', 'upload_files/candidate_tracker/95043701975_saran_update[1].docx', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:24:06', 7, '2020-10-21 05:55:17', 0, NULL, 1),
(1337, '', '0', '8946082712', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:28:21', 0, NULL, 0, NULL, 1),
(1338, 'Varun Santhakumar', '6', '9597995913', '', 'varun21496@gmail.com', '1996-04-21', 24, '2', '2', 'Santhakumar', 'agriculture', 20000.00, 0, 0.00, 13000.00, 'chennai', 'chennai', '2010200012', '1', '1', 'upload_files/candidate_tracker/24265590549_FResume.pdf', NULL, NULL, '2020-10-20', 0, '', '5', '57', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '1', 'he is not sales profile .. voice is not clear ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 11:32:28', 7, '2020-10-20 02:33:37', 0, NULL, 1),
(1339, '', '0', '9445750523', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 11:46:06', 0, NULL, 0, NULL, 1),
(1340, 'YUVARAJ J', '6', '8248172989', '9092617705', 'yuviyaathu15@gmail.com', '1998-04-16', 22, '1', '2', 'JAYACHANDRAN K', 'Driver', 10000.00, 1, 0.00, 15000.00, '2419, Kannadasan Street boomadevi nagar', 'T.Nagar', '2010200014', '', '1', 'upload_files/candidate_tracker/9146795212_J YUVARAJ.pdf', NULL, NULL, '2020-10-20', 0, '5172', '5', '19', NULL, 0.00, '12:28 PM', '0', NULL, '1', 'no longer sustain', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 12:25:45', 1, '2020-10-20 12:40:26', 0, NULL, 1),
(1341, 's.mohan raj', '4', '9176788414', '', 'deejaymo29@gmail.com', '1998-06-29', 22, '1', '2', 'm.sugumar', 'leather cooli', 9000.00, 1, 0.00, 15000.00, 'chrompet', 'chrompet', '2010200015', '', '1', 'upload_files/candidate_tracker/98398682795_test.pdf', NULL, NULL, '2020-10-20', 0, '5266', '5', '21', NULL, 0.00, '01:13 PM', '0', NULL, '1', 'kannan met this candidate, not ok for crm', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 12:27:31', 1, '2020-10-20 01:24:31', 0, NULL, 1),
(1342, 'Manikandan S', '6', '9952087355', '', 'manikandanshsh@gmail.com', '1993-11-01', 26, '2', '2', 'Shanmugam kS', 'Retired', 30000.00, 3, 17000.00, 19000.00, 'Mogappair west', 'Mogappair west', '2010200016', '1', '2', 'upload_files/candidate_tracker/95973068980_Mani RESUME-converted (1).pdf', NULL, NULL, '2020-10-21', 0, '', '3', '8', '1970-01-01', 192000.00, '11:00 AM', '2', '1970-01-01', '1', '16k for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 12:32:50', 7, '2020-10-23 05:37:34', 0, NULL, 1),
(1343, 'Nagamuthuraja S', '13', '9600628608', '', 'nagamuthu.unique@gmail.com', '1992-08-06', 28, '2', '2', 'Sanakarapandian G (late)', 'NA', 1.00, 0, 21000.00, 35000.00, 'Chennai', 'Chennai', '2010200017', '1', '2', 'upload_files/candidate_tracker/59339581112_Naga Resume.pdf', NULL, NULL, '2020-10-20', 10, '', '5', '28', '1970-01-01', 0.00, '01:03 PM', '', '1970-01-01', '1', 'He is not strong in technically and not sustain. Interview Taken by Gokul Sir.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 12:54:28', 50, '2020-10-20 01:24:23', 0, NULL, 1),
(1344, 'Manivannan N', '16', '9566228892', '', '', '1985-09-21', 35, '2', '1', 'Vijayalakshmi M', 'Homemaker', 35000.00, 2, 36000.00, 35000.00, 'Chennai', 'Chennai', '2010200018', '1', '2', 'upload_files/candidate_tracker/34622402931_Curriculum Vitae - Manivannan - MIS.docx', NULL, NULL, '2020-10-21', 0, '', '5', '54', '1970-01-01', 0.00, '12:58 AM', '', '1970-01-01', '1', 'Slow, Task Incomplete.', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:06:01', 7, '2020-10-21 12:43:24', 0, NULL, 1),
(1345, 'M kokila', '4', '7092597703', '', 'Kokilakokila528@gmail.com', '2000-07-23', 20, '2', '2', 'K Muniyan', 'Billing work', 15000.00, 2, 0.00, 18000.00, 'Perambur', 'Perambur', '2010200019', '1', '1', 'upload_files/candidate_tracker/4513435584_kokila (resume)(1).docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '01:59 PM', '', '1970-01-01', '2', 'she said data entry job only interest', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:22:25', 50, '2020-10-20 06:36:55', 0, NULL, 1),
(1346, 'S Muthukumari', '4', '9840620446', '', 'Muthukumarys767@gmail.com', '2000-08-06', 20, '2', '2', 'A Sekar', 'Helth issue', 8000.00, 1, 0.00, 18000.00, 'Perambur', 'Perambut', '2010200020', '1', '1', 'upload_files/candidate_tracker/53842282819_muthu (resume)(1).docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '02:56 PM', '', '1970-01-01', '2', 'she is come with friends only....', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:24:38', 50, '2020-10-20 06:37:06', 0, NULL, 1),
(1347, 'E kowsalya', '4', '7358211523', '', 'nabikowsalya123@gmail.com', '2000-01-15', 20, '2', '2', 'Elumaliyan', 'Auto driver', 15000.00, 2, 0.00, 18000.00, 'Perambut', 'Perambur', '2010200021', '1', '1', 'upload_files/candidate_tracker/23095402792_kowsi (resume)(1).docx', NULL, NULL, '2020-10-20', 0, '', '5', '21', '1970-01-01', 0.00, '02:31 PM', '', '1970-01-01', '2', 'Not Sustain , She Is Interested In Non Voice Job xxampAlso Come With His Friend Only', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:25:20', 50, '2020-10-20 06:37:18', 0, NULL, 1),
(1348, 'Thenmozhi R', '4', '6380837304', '9514922773', 'thenmozhimrt1502@gmail.com', '1998-02-15', 22, '2', '2', 'Rangan', 'Tele caller', 36000.00, 1, 17500.00, 17000.00, '392,L Block, S. V. M. Nagar, otteri, ch-12', '392,L Block, S. V. M. Nagar, Otteri, Ch-12', '2010200022', '1', '2', 'upload_files/candidate_tracker/84312229882_updated resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Need To Check Bcz ,She Already Worked 3 Companies In Last 4 Yrs xxamp Also Expecting High Salary For Crm 18k Above ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:26:00', 1, '2020-10-21 11:03:10', 0, NULL, 1),
(1349, 'Vijay vasudevan', '4', '8940819973', '', 'Vijaybcom2011@gmail.com', '1992-03-12', 28, '2', '2', 'Vasudevan t', 'Farmer', 10000.00, 3, 12000.00, 13000.00, 'Mayiladurai', 'Mandavelli', '2010200023', '2', '2', 'upload_files/candidate_tracker/23371236092_VIJAY RESUME-converted.pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 01:36:09', 7, '2020-10-21 05:55:26', 0, NULL, 1),
(1350, 'Akash Anirudh', '4', '8428843461', '9840419651', 'akashanirudhcv98@gmail.com', '1998-10-02', 22, '2', '2', 'C V Murali', 'Temple Management', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Kolathur,Chennai', '2010200024', '1', '1', 'upload_files/candidate_tracker/48020275033_Akash Anirudh Resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 01:45:44', 50, '2020-10-21 10:10:37', 0, NULL, 1),
(1351, 'Kumara guru j', '13', '7448644500', '', 'Gururandy239@gmail.com', '1999-03-25', 21, '2', '2', 'Janakiraman b s', 'Mtc driver', 20000.00, 1, 12000.00, 15000.00, 'Chennai', 'Mogappiar west', '2010200025', '1', '2', 'upload_files/candidate_tracker/55351793685_Kumara guru(2).docx', NULL, NULL, '2021-03-08', 0, '', '5', '27', '1970-01-01', 0.00, '10:45 AM', '', '1970-01-01', '1', 'i am not sure he will sustain. He told salary problem in his company. He got a hike in current month. now he expected more from that. i asked him is it ok if we offer the same salary. he is not ready to accept.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-10-20 02:04:10', 60, '2021-03-08 05:36:22', 0, NULL, 1),
(1352, 'Monisha R', '5', '9566813108', '', 'Monishavani95@gmail.con', '1995-04-13', 25, '2', '2', 'Ramalingam k', 'Former', 10000.00, 3, 13000.00, 17000.00, 'Sirkali', 'Saidapet', '2010200026', '4', '2', 'upload_files/candidate_tracker/5776795595_Resume.docx', NULL, NULL, '2020-10-20', 0, '', '5', '29', NULL, 0.00, '02:38 PM', '0', NULL, '2', 'Will not sustain for longer term', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 02:35:14', 1, '2020-10-20 02:39:44', 0, NULL, 1),
(1353, 'Gokulnath E', '4', '9551977524', '9080504873', 'Gokulnath2913@gmail.com', '1995-03-29', 25, '2', '2', 'K Elamparithi', 'Fising', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2010200027', '1', '1', 'upload_files/candidate_tracker/38017963843_0_Gokul resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '21', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'Already Relived In Credit Card Sales Due To Pressure ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 02:52:52', 50, '2020-10-21 12:20:32', 0, NULL, 1),
(1354, 'Divya', '11', '9500094258', '9150979606', 'divyadharshini310@gmail.com', '1996-03-10', 24, '2', '2', 'J kumar', 'retired', 15000.00, 1, 15000.00, 15000.00, 'Perambur', 'Perambur', '2010200028', '1', '2', 'upload_files/candidate_tracker/57971856262_Divya K Updated Resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'will not sustain, left previous 2 org due to Personal issues.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 03:13:44', 50, '2020-10-21 12:20:55', 0, NULL, 1),
(1355, 'Kalaiyarasan r', '4', '6374832128', '8220711976', 'Kalaibca2000@gmail.com', '2000-06-14', 20, '2', '2', 'Rajendran', 'Farmer', 4000.00, 2, 0.00, 10000.00, 'Villupuram', 'Ramapuram', '2010200029', '2', '1', 'upload_files/candidate_tracker/4303155738_kalairesume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 04:06:55', 1, '2020-10-20 04:09:39', 0, NULL, 1),
(1356, 'Marimuthu G', '4', '8344883632', '8220711976', 'Marimuthug577@gmail.com', '1998-02-10', 22, '2', '2', 'Gopi', 'Civil worker', 4500.00, 1, 0.00, 10000.00, 'Villupuram', 'Ramapuram', '2010200030', '2', '1', 'upload_files/candidate_tracker/76551531279_marireaume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', NULL, 0.00, '10:45 AM', '0', NULL, '1', 'communication skill poor', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 04:23:44', 1, '2020-10-21 11:36:06', 0, NULL, 1),
(1357, '', '0', '9345140665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 04:36:20', 0, NULL, 0, NULL, 1),
(1358, 'Rajasekar', '6', '8754125780', '8248295347', 'rajaskr628@gmail.com', '1993-05-31', 27, '2', '2', 'M.nagappan', 'Driver', 20000.00, 1, 14700.00, 14000.00, 'Thiruverkadu', 'Thiruverkadu', '2010200032', '4', '2', 'upload_files/candidate_tracker/23330701910_Rajsekar Resume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '19', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'will not sustain for long term', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 05:30:05', 1, '2020-10-20 05:37:00', 0, NULL, 1),
(1359, 'N Balaji', '4', '9003232221', '6383605405', 'Balajirahul2707@gmail.com', '1999-07-27', 21, '2', '2', 'D. Nagarajan', 'Business', 10000.00, 1, 0.00, 10000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2010200033', '1', '1', 'upload_files/candidate_tracker/6861866585_balaji resume (1).doc', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he is intrested only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:11:04', 50, '2020-10-21 05:50:56', 0, NULL, 1),
(1360, 'SYED AKTHAR RUMI A', '4', '8637489010', '8637488010', 'rumilast6@gmail.com', '1999-11-03', 20, '2', '2', 'Ahmed shehinsha', 'Retired', 20000.00, 2, 0.00, 30000.00, 'Chennai-02', 'Pudupet, Chennai-02', '2010200034', '1', '1', 'upload_files/candidate_tracker/52764746346_caf resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'not suit for our process, xxamphe is expecting 20 k for crm (fresher)', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:13:58', 1, '2020-10-20 08:18:49', 0, NULL, 1),
(1361, 'Keerthika', '4', '9025282324', '7603899859', 'keerthijothi09021998@gmail.com', '1998-02-09', 22, '2', '2', 'Ravi', 'Tailor', 120000.00, 1, 15.00, 15.00, 'Chennai', 'T.nagar', '2010200035', '1', '2', 'upload_files/candidate_tracker/48963771427_keerthika Resume 1.pdf', NULL, NULL, '2020-10-22', 0, '', '3', '8', '2020-10-26', 126000.00, '11:56 AM', '5', '1970-01-01', '2', '10.5K for Muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-20 06:17:34', 58, '2020-12-23 12:12:31', 0, NULL, 1),
(1362, 'N.R.Ranjith', '5', '9566226784', '', 'ranjith18ramu18@gmail.com', '1996-12-08', 23, '2', '2', 'N. ramu', 'Auto mechanic', 10000.00, 1, 21196.00, 21196.00, 'Kundrathur', 'Kundrathur', '2010200036', '1', '2', 'upload_files/candidate_tracker/83497693672_18Resume (1).pdf', NULL, NULL, '2020-10-21', 0, '', '5', '44', '1970-01-01', 0.00, '11:58 AM', '', '1970-01-01', '1', 'Not fit for life sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:20:43', 50, '2020-10-21 12:21:56', 0, NULL, 1),
(1363, 'nandhini', '4', '9361790145', '', 'nandhinisekaar17@gmail.com', '1996-07-17', 24, '2', '2', 'sekar', 'welder', 40000.00, 1, 14000.00, 17000.00, 'chennai', 'chennai', '2010200037', '1', '2', 'upload_files/candidate_tracker/69076062810_RESUME NANDHINI 17.docx', NULL, NULL, '2020-10-21', 0, '', '3', '8', '2020-12-22', 156000.00, '11:00 AM', '2', '1970-01-01', '2', '13K for Dhivya team', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-20 06:21:49', 58, '2020-12-23 12:58:01', 0, NULL, 1),
(1364, 'Ramkumar', '4', '6381648516', '8939709328', 'ramkumar271097@gmail.com', '1998-05-27', 22, '2', '2', 'Udhayakumar', 'Fresher', 25000.00, 1, 0.00, 15000.00, 'PERAMBALUR', 'AMBATTUR', '2010200038', '1', '1', 'upload_files/candidate_tracker/73986140396_resume_1597812218837.pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:23:22', 7, '2020-10-21 05:55:36', 0, NULL, 1),
(1365, 'J.Gopinath', '13', '7871665337', '', 'Gopinath123j@gmail.com', '1997-01-16', 23, '2', '2', 'S.jayaraman', 'Walder', 12000.00, 1, 0.00, 10000.00, 'Moulivakkam', 'Moulivakkam', '2010200039', '1', '1', 'upload_files/candidate_tracker/52666195532_GOPINATH.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'He is Not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:26:41', 50, '2020-10-21 05:50:34', 0, NULL, 1),
(1366, '', '0', '9176313301', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200040', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 06:34:24', 0, NULL, 0, NULL, 1),
(1367, 'Santhanam s', '4', '8610986902', '9600165861', 'santhanam245@gmail.com', '1991-06-05', 29, '2', '2', 'Sagadevan k', 'Agriculture', 75000.00, 1, 9500.00, 10000.00, 'Thiruvannamalai', 'Alwarthirunagar,chennai', '2010200041', '1', '2', 'upload_files/candidate_tracker/60773622552_SANTHANAM.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 06:39:28', 8, '2020-10-21 05:50:44', 0, NULL, 1),
(1368, 'Monisha B', '6', '8838289646', '9514436262', 'monishababu1999@gmail.com', '1999-12-01', 20, '2', '2', 'Babu K', 'Clerk', 2500000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2010200042', '1', '1', 'upload_files/candidate_tracker/65931657429_1602837200395_Monisha B (RESUME).pdf', NULL, NULL, '2020-10-21', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 07:52:34', 7, '2020-10-21 05:55:48', 0, NULL, 1),
(1369, '', '0', '8667081174', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200043', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 08:11:03', 0, NULL, 0, NULL, 1),
(1370, 'SYED AKTHAR RUMI A', '4', '8637488010', '9445929189', 'rumilast6@gmail.com', '1999-11-03', 20, '3', '2', 'Ahmed shehinsha', 'Retired', 20000.00, 2, 0.00, 30000.00, 'Chennai-02', 'Pudupet, Chennai-02', '2010200044', '', '1', 'upload_files/candidate_tracker/16836816043_caf resume.pdf', NULL, NULL, '2020-10-21', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 08:20:13', 7, '2020-10-21 01:05:11', 7, '2020-10-21 01:05:21', 0),
(1371, '', '0', '9514436262', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010200045', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 08:21:00', 0, NULL, 0, NULL, 1),
(1372, 'Santhosh v', '4', '6385624589', '9597154077', 'Santhosasa984@gmail.com', '1999-06-19', 21, '2', '2', 'Venkatesan', 'Agriculture', 5000.00, 2, 0.00, 10000.00, 'Villupuram', 'Ramapuram', '2010200046', '2', '1', 'upload_files/candidate_tracker/2597002172_santhosh.vm.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', NULL, 0.00, '10:30 AM', '0', NULL, '2', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-20 09:07:12', 1, '2020-10-20 09:12:31', 0, NULL, 1),
(1373, 'Saratha', '4', '9940664985', '9940271535', 'sarathavisu2000@gmail.com', '2000-11-09', 19, '2', '2', 'Viswanathan', 'Office boy', 12000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2010200047', '1', '1', 'upload_files/candidate_tracker/44814230495_Resume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'she is come with her friend only ,xxamp not bold ...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 09:24:11', 1, '2020-10-21 11:41:01', 0, NULL, 1),
(1374, 'Sindhuja', '4', '9791013668', '8124720567', 'Sindhujak772@gmail.com', '2000-06-26', 20, '2', '2', 'Karuppasamy', 'Loading man', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2010200048', '1', '1', 'upload_files/candidate_tracker/11884712849_SINDHUJA KARUPPASAMY.docx', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '11:31 AM', '0', NULL, '2', 'not suit for our process, she is come with her friend only...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-20 09:35:40', 1, '2020-10-21 11:31:47', 0, NULL, 1),
(1375, '', '0', '9789092917', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 08:33:21', 0, NULL, 0, NULL, 1),
(1376, 'susan sunitha a', '4', '8190949698', '9789052142', 'sunithaandrew54@gmail.com', '1998-03-30', 22, '2', '2', 'andrews j', 'security', 18000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2010210002', '1', '2', 'upload_files/candidate_tracker/77592536727_Susan Sunitha PDF.pdf', NULL, NULL, '2020-10-21', 0, '', '3', '8', '2020-10-22', 189600.00, '11:14 AM', '4', '2022-03-09', '2', '15010 as take home. for renewal', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 08:38:24', 7, '2020-10-21 06:41:11', 0, NULL, 1),
(1377, 'Dineshkumar S', '6', '7550256323', '8667045731', 'dineshkumarsmart59@gmail.com', '1999-01-04', 21, '2', '2', 'Sridhar T', 'Security', 13000.00, 1, 0.00, 15000.00, '8/9 periyar street ramapuram ambattur', 'Chennai', '2010210003', '1', '1', 'upload_files/candidate_tracker/98706735322_dinesh one page resume.pdf', NULL, NULL, '2020-10-21', 0, '', '3', '8', '1970-01-01', 156000.00, '11:00 AM', '2', '1970-01-01', '1', '13k for suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 08:46:28', 7, '2020-10-23 05:38:12', 0, NULL, 1),
(1378, 'anand', '13', '9940378715', '6380567442', 'anandrago.18r@gmail.com', '1999-11-18', 20, '2', '1', 'ragothaman', 'mason', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010210004', '1', '1', 'upload_files/candidate_tracker/35266461211_Anand Resume.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '27', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', 'Task Given for this candidate. Task Incomplete. He did not complete even 50%.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 10:03:59', 7, '2020-10-21 02:41:16', 0, NULL, 1),
(1379, 'Jeevitha', '4', '7397678111', '9042804072', 'jeevaraj8156@gmail.com', '1991-06-15', 29, '2', '2', 'Sekar', 'Farmer', 10000.00, 2, 0.00, 14000.00, 'Thiruthuraipoondi', 'Koyambedu', '2010210005', '1', '1', 'upload_files/candidate_tracker/21590490901_Jeevitha_S_Updated(1)(1)(1).pdf', NULL, NULL, '2020-10-21', 0, '', '5', '21', '1970-01-01', 0.00, '02:15 PM', '', '1970-01-01', '2', 'already worked team leader in non voice process....', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-21 10:24:54', 58, '2020-12-23 12:20:05', 0, NULL, 1),
(1380, 'Sobana V', '4', '8939023718', '7904089235', 'sofibana9192@gmail.com', '1988-06-12', 32, '2', '1', 'Sathish Kumar S', 'Aadhar Opretor', 15000.00, 0, 12000.00, 15000.00, 'Saidapet', 'Saidapet', '2010210006', '1', '2', 'upload_files/candidate_tracker/1785258162_RESUME.docx', NULL, NULL, '2020-10-21', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'she s nt opening her mouth also', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 10:31:58', 50, '2020-10-21 12:17:36', 0, NULL, 1),
(1381, 'Gokul', '4', '8248900745', '', 'gokulkrish410@gmail.com', '1995-12-10', 24, '2', '2', 'Sarachandran', 'Fishing', 18000.00, 1, 0.00, 13000.00, 'Triplicane', 'Triplicane', '2010210007', '1', '1', 'upload_files/candidate_tracker/87232226299_Resume.docx', NULL, NULL, '2020-10-21', 0, '', '5', '21', NULL, 0.00, '11:02 AM', '0', NULL, '1', 'He Already Relived Credit Card Job Bcz Not Able To Handle Pressure...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 10:59:29', 1, '2020-10-21 11:05:12', 0, NULL, 1),
(1382, 'vijay e', '4', '9003662892', '8248610462', 'vj1997@gmail.com', '1997-06-02', 23, '2', '2', 'elumalai v', 'farmer', 4000.00, 1, 0.00, 10000.00, 'villupuram', 'ramapuram', '2010210008', '2', '1', 'upload_files/candidate_tracker/72364142996_Arun.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', NULL, 0.00, '11:13 AM', '0', NULL, '1', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:08:49', 1, '2020-10-21 11:12:05', 0, NULL, 1),
(1383, 'Jayapriya', '16', '6382647144', '', 'jayapriya57@gmail.com', '1991-07-28', 29, '1', '1', 'Venkatraman', 'Bank car loan manager', 35000.00, 1, 24600.00, 24000.00, 'Ambattur', 'Ambattur', '2010210009', '', '2', 'upload_files/candidate_tracker/47194398308_Resume - Jaya Priya-Fresh (1).pdf', NULL, NULL, '2020-10-21', 15, '5208', '5', '53', NULL, 0.00, '11:12 AM', '0', NULL, '1', 'not suit fr mis', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:10:05', 1, '2020-10-21 11:19:37', 0, NULL, 1),
(1384, 'dinesh kumar', '16', '8939678943', '9884398883', 'dhhineshkumar@gmail.com', '1989-07-06', 31, '2', '2', 'dhanasekar d', 'security manager', 50000.00, 1, 18500.00, 25000.00, 'Potheri', 'Potheri', '2010210010', '1', '2', 'upload_files/candidate_tracker/57585287766_D Dinesh kumar 4D.docx', NULL, NULL, '2020-10-22', 15, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'too long he dnt knw abt PPT', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:10:52', 50, '2020-10-22 11:50:33', 0, NULL, 1),
(1385, '', '0', '8072192693', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:15:13', 0, NULL, 0, NULL, 1),
(1386, 'Priyanka. L', '4', '7358275355', '9791161627', 'priyankals142@ gmail.com', '2000-05-14', 20, '1', '2', 'Loganathan. S', 'Driver', 12000.00, 2, 0.00, 13000.00, 'Koyambed, Chennai.', 'Koyambed, Chennai.', '2010210012', '', '1', 'upload_files/candidate_tracker/16921004679_RESUME priya.docx', NULL, NULL, '2020-10-22', 0, '66673', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:15:19', 50, '2020-10-22 05:44:35', 0, NULL, 1),
(1387, '', '0', '9884558879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 11:28:19', 0, NULL, 0, NULL, 1),
(1388, 'malathi', '13', '9003689924', '', 'malathiramasamyp@gmail.com', '1993-03-07', 27, '2', '2', 'ramasamy', 'coolie', 10000.00, 2, 17600.00, 25000.00, 'tenkasi', 'chennai', '2010210014', '1', '2', 'upload_files/candidate_tracker/94383203863_R Malathi_ECE.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '28', '1970-01-01', 0.00, '11:54 AM', '', '1970-01-01', '2', 'She is not answering basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:37:35', 50, '2020-10-21 12:19:10', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1389, 'thalavai subramanian', '4', '7200267164', '', 'thalavaisubramanian@gmail.com', '1997-05-09', 23, '2', '2', 'vannamuthu c', 'postal dept', 25000.00, 1, 12.50, 16000.00, 'tirunelveli', 'guindy', '2010210015', '1', '2', 'upload_files/candidate_tracker/4565295426_Process associate.pdf', NULL, NULL, '2020-10-22', 0, '', '3', '8', '2020-10-26', 132000.00, '11:45 AM', '6', '2021-01-19', '1', '11K muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:42:53', 7, '2020-10-23 05:38:46', 0, NULL, 1),
(1390, 'mohan v', '4', '9094669791', '8667743646', 'mohanmogi3@gmail.com', '1992-03-19', 28, '2', '2', 'venkatasan', 'labour', 12000.00, 2, 14000.00, 18000.00, 'kovilambakkam', 'kovilambakkam', '2010210016', '1', '2', 'upload_files/candidate_tracker/66469487121_Mohan resume. Bactrak matrix.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '11:51 AM', '', '1970-01-01', '1', 'communication not well but expected salary very high', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:45:53', 50, '2020-10-21 05:49:14', 0, NULL, 1),
(1391, 'Govindharaj L', '4', '8248825362', '9500013750', 'Govigreen777@gmail.com', '1997-11-29', 22, '2', '2', 'Lakshmanan k', 'cooli', 15000.00, 2, 0.00, 15000.00, 'Sivakasi,virudhunagar', 'ekkatuthangal,Chennai', '2010210017', '1', '1', 'upload_files/candidate_tracker/13846591447_govi.pdf', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'he is intrested only non-voice process so not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:46:02', 50, '2020-10-21 05:48:38', 0, NULL, 1),
(1392, 'Nathiya C', '16', '7550125137', '7358228974', 'Nathinila1995@gmail.com', '1995-05-02', 25, '2', '2', 'Chinnasamy', 'Farmer', 20000.00, 3, 15000.00, 25000.00, 'Krishnagiri', 'Chennai', '2010210018', '1', '2', 'upload_files/candidate_tracker/96156301279_Resume Nathiya.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', ' she knows oly basics, exp 2ok', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:54:33', 50, '2020-10-22 10:59:33', 0, NULL, 1),
(1393, 'vinoth', '11', '9025339323', '', 'vinoth.j.vino@gmail.com', '1989-03-15', 31, '2', '2', 'janardhan', 'business', 20000.00, 1, 21000.00, 25000.00, 'chennai', 'chennai', '2010210019', '1', '2', 'upload_files/candidate_tracker/50811218093_Vinoth Profile.docx', NULL, NULL, '2020-10-22', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'he s not opening his mouth', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 11:56:11', 50, '2020-10-22 12:04:57', 0, NULL, 1),
(1394, 'R.Aravindhan', '6', '7092732482', '9962165248', 'Aravindhanashwin2000@gmail.com', '2000-07-19', 20, '1', '2', 'A.Ravi', 'Daily wage', 15000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2010210020', '', '1', 'upload_files/candidate_tracker/7507184625_aravindhan resume.pdf', NULL, NULL, '2020-10-21', 0, '5581', '5', '24', NULL, 0.00, '12:33 PM', '0', NULL, '1', 'NOT FIT FOR OUR PROFILE', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 12:20:52', 1, '2020-10-21 12:54:17', 0, NULL, 1),
(1395, 'Meganathan.b', '6', '9962165248', '7092732482', 'meganathanb1629@gmail.com', '1999-11-29', 20, '1', '2', 'Babu.b', 'Auto driver', 12000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2010210021', '', '1', 'upload_files/candidate_tracker/19301266274_MEGANATHAN.docx', NULL, NULL, '2020-10-21', 0, '5581', '3', '8', '2020-10-22', 150000.00, '12:34 PM', '6', '2020-10-30', '1', '12.5K fotr syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 12:23:46', 7, '2020-10-22 12:37:47', 0, NULL, 1),
(1396, 'Ramu v', '4', '9500596253', '', 'Ramuv405@gmail.con', '1999-06-05', 21, '2', '2', 'Vadivelu', 'Contractor', 6000.00, 3, 0.00, 10000.00, 'Villupuram', 'Perungulathur', '2010210022', '2', '1', 'upload_files/candidate_tracker/23032849272_resume.docx', NULL, NULL, '2020-10-22', 0, '', '8', '', '1970-01-01', 0.00, '02:35 PM', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 12:29:37', 50, '2020-10-22 06:16:47', 0, NULL, 1),
(1397, 'Suresh N', '16', '9566295676', '', 'nagasuresh013@gmail.com', '1991-06-05', 29, '2', '1', 'Nagarajan', 'Farmer', 3000.00, 2, 20000.00, 20000.00, 'Ariyalur', 'Virugambakkam', '2010210023', '1', '2', 'upload_files/candidate_tracker/54088197272_suresh MIS profile .doc', NULL, NULL, '2020-10-21', 0, '', '6', '0', NULL, 0.00, '01:53 PM', '0', NULL, '1', NULL, '3', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 12:51:32', 1, '2020-10-21 01:05:52', 0, NULL, 1),
(1398, 'Sathish T', '6', '9047155598', '9176074178', 'sathishhathish@gmail.com', '1986-06-02', 34, '1', '1', 'Thirupathirajan', 'Retired Accountant', 25000.00, 0, 16000.00, 17000.00, 'Nandampakkam, Chennai', 'Nandampakkam, Chennai', '2010210024', '', '2', 'upload_files/candidate_tracker/85811028537_Sat Res CRM(1)(1).pdf', NULL, NULL, '2020-10-21', 30, 'Thiyagu', '5', '24', '1970-01-01', 0.00, '01:15 PM', '', '1970-01-01', '1', 'not fit for our profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 01:05:19', 7, '2020-10-21 01:25:09', 0, NULL, 1),
(1399, 'N GUNA SEELAN', '4', '8190076146', '9941022211', 'gunanandy@gmail.com', '1994-08-04', 26, '2', '2', 'Nandhakumar', 'Business', 90000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2010210025', '1', '2', 'upload_files/candidate_tracker/59838174753_Resume Guna - ME V.docx', NULL, NULL, '2020-10-24', 0, '', '5', '13', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 01:06:38', 50, '2020-10-24 10:09:31', 0, NULL, 1),
(1400, '', '0', '9500597253', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 01:14:09', 0, NULL, 0, NULL, 1),
(1401, '', '0', '8939351805', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 02:03:06', 0, NULL, 0, NULL, 1),
(1402, 'Harini subramani', '4', '9384642859', '', 'hathasa.harini.1998@gmail.com', '1998-06-06', 22, '2', '2', 'G.subramani', 'Private employee', 72000.00, 2, 10000.00, 15000.00, 'Chennai', 'Chennai', '2010210028', '1', '2', 'upload_files/candidate_tracker/49749358933_HARINI SUBRAMANI-RESUME.docx', NULL, NULL, '2020-10-24', 10, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'not siutable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 02:11:11', 50, '2020-10-24 12:06:17', 0, NULL, 1),
(1403, 'Venkatraj s', '4', '8754645854', '9787733021', 'Venkat14051997@gmail.com', '1997-05-14', 23, '2', '2', 'Sanskar m', 'Former', 15000.00, 1, 11000.00, 13500.00, 'Siruvangunam village', 'Kandhanchavadi', '2010210029', '1', '2', 'upload_files/candidate_tracker/60943608100_venkat update resume 2.docx', NULL, NULL, '2020-10-21', 0, '', '5', '21', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', 'He Is Expected 13 K Above For Crm.....', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 02:26:25', 50, '2020-10-22 10:07:36', 0, NULL, 1),
(1404, 'Ramu v', '4', '7358266610', '', 'Ramuv405@gmail.con', '1999-06-05', 21, '2', '2', 'Vadivelu', 'Contractor', 6000.00, 3, 0.00, 10000.00, 'Villupuram', 'Perungulathur', '2010210030', '2', '1', 'upload_files/candidate_tracker/76977064026_resume-2.docx', NULL, NULL, '2020-10-21', 0, '', '5', '13', '1970-01-01', 0.00, '02:40 PM', '', '1970-01-01', '1', 'not well communication so not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 02:26:33', 7, '2020-10-21 05:56:11', 0, NULL, 1),
(1405, 'Madhankumar.C', '4', '7010946577', '', 'madhanraina556@gmail.com', '1995-04-11', 25, '2', '2', 'Chandrasekar.K', 'Driver', 150000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2010210031', '1', '2', 'upload_files/candidate_tracker/76199895118_1598960254427Resume_madhankumar.docx', NULL, NULL, '2020-10-24', 10, '', '5', '13', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'he is looking for non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 02:40:47', 50, '2020-10-24 10:09:51', 0, NULL, 1),
(1406, '', '0', '7401394211', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 03:36:18', 0, NULL, 0, NULL, 1),
(1407, 'Dhinakaran', '16', '8124648558', '9514526068', 'dhinakarandhina777@gmail.com', '1994-08-14', 26, '2', '2', 'N.Kumar', 'Tiles business', 25000.00, 0, 12000.00, 16000.00, 'Minjur', 'Minjur', '2010210033', '1', '2', 'upload_files/candidate_tracker/77852195018_dhinakaran resume.docx', NULL, NULL, '2020-10-22', 30, '', '5', '53', '1970-01-01', 0.00, '11:48 AM', '', '1970-01-01', '2', 'too long as well as he dnt knw PPT and all', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 03:43:39', 50, '2020-10-22 05:19:30', 0, NULL, 1),
(1408, 'K.vivek', '3', '8610978835', '9380057194', 'viveklakshmi564@gmail.com', '1999-05-17', 21, '2', '2', 'S.karthick', 'Car driving', 14000.00, 1, 0.00, 11000.00, 'Guduvanchery', 'Guduvanchery', '2010210034', '1', '1', 'upload_files/candidate_tracker/40695659072_Vivek resume.pdf', NULL, NULL, '2020-10-23', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 03:52:19', 50, '2020-10-23 06:20:01', 0, NULL, 1),
(1409, '', '0', '9087675445', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210035', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 04:05:12', 0, NULL, 0, NULL, 1),
(1410, 'Usharani', '4', '9486769771', '', 'ushasivashanmugam24@gmail.com', '1994-10-24', 25, '2', '2', 'Sivashanmugam', 'Salesman', 150000.00, 1, 10000.00, 12000.00, 'Rotary nagar, vallampadugai, Chidambaram', '9, shree sai nivas, senthil avenue, ponniammanmedu', '2010210036', '1', '2', 'upload_files/candidate_tracker/10280735269_usharani_resume.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'pronouncation problem, xxamp no flow in words', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 04:19:14', 50, '2020-10-22 11:24:27', 0, NULL, 1),
(1411, 'A Kiruthighaa', '2', '7305633549', '9551178798', 'kiruthighaaanand99@gmail.com', '1999-10-26', 20, '2', '2', 'B anandakumar', 'Company supervisor', 15000.00, 1, 0.00, 15000.00, 'Madipakkam', 'Keelakatalai', '2010210037', '1', '1', 'upload_files/candidate_tracker/71121762683_Kiruthighaa Resume.docx', NULL, NULL, '2020-10-22', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 04:27:32', 50, '2020-10-22 05:28:51', 0, NULL, 1),
(1412, 'D.shalini Deu', '4', '6380919123', '9566206985', 'shalinishalu12241@gmail.com', '1998-12-13', 21, '2', '2', 'C.Dhanasekaran', 'Civil Engineer', 25000.00, 1, 0.00, 10000.00, 'Alandur', 'Alandur', '2010210038', '1', '1', 'upload_files/candidate_tracker/18527730973_SHALINI RESUME (1).pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '18 age running ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 04:53:01', 50, '2020-10-22 11:42:43', 0, NULL, 1),
(1413, 'Manimaran.m', '4', '9524960067', '8122335499', 'joelsam321@gmail.com', '1996-02-28', 24, '2', '2', 'Murugan', 'Working', 20000.00, 1, 12000.00, 14000.00, 'No-42 bharathidhasan street,kilambakkam,ch-603210', 'Tambaram', '2010210039', '1', '2', 'upload_files/candidate_tracker/66209247610_MANIMARAN resume - updated (2) (1).pdf', NULL, NULL, '2020-10-22', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 05:17:29', 50, '2020-10-22 05:29:07', 0, NULL, 1),
(1414, 'Thenmozhi', '4', '7358446416', '', 'thenu044@gmail.com', '1999-02-04', 21, '2', '2', 'Selvam', 'Provisional store', 40000.00, 1, 10000.00, 12000.00, 'Chennai', 'Chennai', '2010210040', '1', '2', 'upload_files/candidate_tracker/32640204029_thenmozhi update resume.docx', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Non Voice Job In Cognazant, she said data entry ill be ok ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 05:37:26', 50, '2020-10-22 11:04:38', 0, NULL, 1),
(1415, 'Faizan Basha .N', '5', '9677292973', '8553344466', 'faizanbasha77@gmail.com', '1996-06-06', 24, '2', '2', 'Nazeer Basha .H', 'Business', 360000.00, 1, 30000.00, 20000.00, 'Mylapore ,Chennai - 600028', 'Mylapore,Chennai _- 600028', '2010210041', '1', '2', 'upload_files/candidate_tracker/3912768627_FAIZAN CV.pdf', NULL, '1', '2020-10-22', 0, '', '6', '8', '2024-04-04', 204000.00, '11:00 AM', '2', '1970-01-01', '1', '17K for RE suthagar team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1022', '', NULL, NULL, NULL, 1, '2020-10-21 06:01:53', 126, '2024-04-04 12:16:47', 0, NULL, 1),
(1416, 'Balakumar.s', '16', '9176339263', '', 'balakumar.mba@gmail.com', '1987-06-18', 33, '2', '1', 'Sekaran.k', 'Rtd adm in Oriental insurance company', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2010210042', '1', '2', 'upload_files/candidate_tracker/62043549856_recent bala resume (1).docx', NULL, NULL, '2020-10-22', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'exp 25k, knw hve tht much knowledge', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 06:13:37', 50, '2020-10-22 11:16:39', 0, NULL, 1),
(1417, 'Sathasivam', '4', '9384304371', '', '1511satha@mail.com', '1994-11-15', 25, '2', '2', 'Radhakrishnan', 'Farmer', 6000.00, 1, 0.00, 13000.00, 'Cuddalore', 'Chennai', '2010210043', '1', '1', 'upload_files/candidate_tracker/31818261211_', NULL, NULL, '2020-10-23', 0, '', '5', '13', '1970-01-01', 0.00, '03:05 PM', '', '1970-01-01', '1', 'not suitable for telesales', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-21 06:58:48', 58, '2020-12-23 12:26:52', 0, NULL, 1),
(1418, '', '0', '8220814427', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010210044', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-21 07:56:30', 0, NULL, 0, NULL, 1),
(1419, 'Sowmya', '4', '8838267608', '9176094182', 'sowmyasowmya2912@gmail.com', '1998-12-29', 21, '2', '2', 'M jayaseelan', 'Electriction', 150000.00, 2, 0.00, 10000.00, 'Old washermanpet', 'Old washermanpet', '2010210045', '1', '1', 'upload_files/candidate_tracker/80199707746_sowmya resume.docx', NULL, NULL, '2020-10-23', 0, '', '5', '8', '1970-01-01', 0.00, '11:24 AM', '', '1970-01-01', '2', 'hold for Star and will not suite for CAFS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 08:13:06', 50, '2020-10-23 02:50:41', 0, NULL, 1),
(1420, 'Heena Mujeeb M', '4', '7904463239', '9677070954', 'heenamujeeb21@gmail.com', '2002-03-21', 18, '2', '2', 'Mujeebudeen.P.U.S', '-', 12000.00, 1, 0.00, 15000.00, 'Avadi, Pattabiram', 'Avadi, pattabiram', '2010210046', '1', '1', 'upload_files/candidate_tracker/50257628847_Resume.docx', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not bold,also interested in data entry...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-21 10:01:12', 50, '2020-10-22 11:34:36', 0, NULL, 1),
(1421, 'Sylvia', '4', '7299908675', '', 'sylvialazar14@gmail.com', '1998-12-14', 21, '2', '2', 'Lazar', 'Provisional store', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2010210047', '1', '1', 'upload_files/candidate_tracker/27756105394_Sylvia resume.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Bold xxamp Low Confidence Last 1 Year She Not Went for Any Job,,,', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-21 10:24:42', 58, '2020-12-23 04:50:50', 0, NULL, 1),
(1422, 'R. Priya', '4', '9940692467', '', 'priyapriya1751998@gmail.com', '1998-05-17', 22, '2', '2', 'M. Ramachandran', 'Cooli', 15000.00, 1, 0.00, 12000.00, 'Guduvancheri', 'Guduvancheri', '2010220001', '6', '1', 'upload_files/candidate_tracker/9069606644_RESUME2(1)(1).pdf', NULL, NULL, '2020-10-22', 0, '', '5', '13', '1970-01-01', 0.00, '10:36 AM', '', '1970-01-01', '2', 'NOT SUITABLE FOR TELESALES', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 09:42:19', 50, '2020-10-22 11:59:51', 0, NULL, 1),
(1423, 'P. Srimathy', '4', '9092646257', '', 'pavisrisucess100@gamil.com', '2000-02-09', 20, '1', '2', 'M. Paranthman', 'Cooli', 20000.00, 1, 0.00, 12000.00, 'Vandular', 'Vandular', '2010220002', '', '1', 'upload_files/candidate_tracker/26181074601_Srimathy Resume-Final.pdf', NULL, NULL, '2020-10-22', 0, 'Job\'s', '5', '13', NULL, 0.00, '10:08 AM', '0', NULL, '2', 'not suitable for pressure handling', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 09:52:15', 1, '2020-10-22 10:42:50', 0, NULL, 1),
(1424, 'VIGNESH M', '13', '6380036837', '', 'vigneshtpt321@gmail.com', '1999-05-09', 21, '2', '2', 'MANI R', 'Coolie', 4500.00, 2, 0.00, 10000.00, 'Tirupattur', 'Tirupattur', '2010220003', '1', '1', 'upload_files/candidate_tracker/6133941789_VIGNESH.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '28', '1970-01-01', 0.00, '10:33 AM', '', '1970-01-01', '2', 'He is not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 10:13:32', 50, '2020-10-22 10:58:33', 0, NULL, 1),
(1425, 'Indumathi', '4', '8610394629', '9943970075', 'indimathi1417@gmail.com', '1996-04-15', 24, '2', '2', 'B.Thangavel', 'Clerk', 15000.00, 3, 0.00, 10000.00, 'Pillaiyar kovil st,Periyakalur,Thiruvannamalai.', 'B.s ladies hostal nungampakkam', '2010220004', '1', '1', 'upload_files/candidate_tracker/46627759965_1603343715838_Document (4)(1)(2).pdf', NULL, NULL, '2020-10-22', 0, '', '5', '13', '1970-01-01', 0.00, '11:16 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 10:17:48', 50, '2020-10-22 12:29:53', 0, NULL, 1),
(1426, 'Karthick', '6', '8508119812', '', 'karthicksms16@gmail.com', '1993-02-01', 27, '2', '2', 'Alagar', 'Retired person', 500000.00, 1, 300000.00, 350000.00, '85/11 shanmugaNagar periya palam kulithalai 639146', '1406lig1TNHB colony 10 th Street Velachery', '2010220005', '1', '2', 'upload_files/candidate_tracker/39098086186_karthicknewresume.pdf', NULL, NULL, '2020-10-23', 0, '', '8', '', '1970-01-01', 0.00, '10:32 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 10:25:25', 50, '2020-10-23 06:20:13', 0, NULL, 1),
(1427, 'Geetha J', '4', '6379959543', '8939185379', 'geethanj1994@gmail.com', '1994-11-14', 25, '1', '2', 'Jithu', 'Nil', 17000.00, 0, 17500.00, 20000.00, 'Harur, Dharmapuri', '18/26 namashivaya street, old washermenpet,chennai', '2010220006', '', '2', 'upload_files/candidate_tracker/26502751201_Geetha Resume 1-1.doc', NULL, NULL, '2020-10-22', 30, '5172', '5', '53', NULL, 0.00, '10:00 AM', '0', NULL, '2', 'dnt knw basic excel also', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 10:42:14', 1, '2020-10-22 11:01:18', 0, NULL, 1),
(1428, 'Pradeep Kumar A', '20', '8854388269', '8610422779', 'pradeepronny123@gmail.com', '1997-09-26', 23, '1', '2', 'N ARUMUGAM', 'Supervising', 2.50, 2, 15000.00, 18000.00, 'Padi', 'Padi', '2010220007', '', '2', 'upload_files/candidate_tracker/40774207492_pradeep resume updated.doc', NULL, NULL, '2020-10-22', 2, '5153', '5', '15', NULL, 0.00, '12:00 PM', '0', NULL, '1', '...', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 10:44:11', 1, '2020-10-22 10:53:42', 0, NULL, 1),
(1429, 'M.Elavarasan', '20', '9176041218', '', 'Kingelavarasan409@ Gmail.com', '2000-08-23', 20, '1', '2', 'M.murugesan', 'Coconut', 15000.00, 0, 13000.00, 15000.00, 'K.k.Nagar sivalingapuram Chennai', 'K.k.Nagar sivalingapuram Chennai', '2010220008', '', '2', 'upload_files/candidate_tracker/87714529171_Ela_Resume_Format2.pdf', NULL, NULL, '2020-10-22', 0, '5174', '5', '16', '1970-01-01', 0.00, '11:28 AM', '', '1970-01-01', '2', 'NO COMUNICATION SKILLS,LOW PROFILE', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 10:45:41', 50, '2020-10-22 12:11:24', 0, NULL, 1),
(1430, 'Elayabharathi', '6', '9965789115', '9655648858', '0612bharathi@gmail.com', '1998-06-18', 22, '1', '2', 'Elangovan', 'Agriculture', 20000.00, 1, 0.00, 15000.00, 'Mannargudi', 'Mannargudi', '2010220009', '', '1', 'upload_files/candidate_tracker/12136375796_E.Bharathi resume.PDF', NULL, NULL, '2020-10-22', 0, '5266', '3', '8', '2020-10-29', 168000.00, '10:51 AM', '5', '1970-01-01', '1', '14K for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 10:46:27', 7, '2020-10-28 05:59:55', 0, NULL, 1),
(1431, '', '0', '9940388936', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 11:14:41', 0, NULL, 0, NULL, 1),
(1432, 'manikandan m', '13', '8973344338', '', 'mailtovivekmani@gmail.com', '1997-12-15', 22, '2', '2', 'murugesan m', 'agriculture', 18500.00, 1, 18500.00, 30000.00, 'Tiruvarur', 'chennai', '2010220011', '1', '2', 'upload_files/candidate_tracker/25550813553_Manikandan_CV.pdf', NULL, NULL, '2020-10-23', 45, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He is Not strong in basic Php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 11:15:23', 50, '2020-10-23 10:42:32', 0, NULL, 1),
(1433, 'Varsha', '4', '9840130334', '9003466514', 'varsha14696@gmail.com', '1996-06-14', 24, '2', '1', 'M.parthiban', 'Unemployed', 30000.00, 1, 0.00, 8000.00, 'Chennai', 'Chennai', '2010220012', '1', '1', 'upload_files/candidate_tracker/23803115124_Varsha Cv.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '11:20 AM', '', '1970-01-01', '1', 'married she need work from xxamp data entry ill be ok with it..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 11:19:01', 50, '2020-10-22 11:33:47', 0, NULL, 1),
(1434, 'C Sankar', '4', '9942517245', '6382028183', 'Cpsankar1996@gmail.com', '1996-04-13', 24, '2', '2', 'R chelladurai', 'Vegetable sales', 10000.00, 2, 11000.00, 15000.00, 'Perumbakkam', 'Perumbakkam', '2010220013', '1', '2', 'upload_files/candidate_tracker/94554530513_sankar.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '13', '1970-01-01', 0.00, '12:14 PM', '', '1970-01-01', '1', 'he is intrested only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 11:43:38', 50, '2020-10-22 12:23:57', 0, NULL, 1),
(1435, 'Yamini Devi g', '4', '6383174854', '8682904263', 'myaminidevi333@gmail.com', '2000-08-09', 20, '2', '2', 'Gopinath', 'Fresher', 25000.00, 1, 0.00, 12000.00, 'Thandayarpet', 'Thandayarpet', '2010220014', '1', '1', 'upload_files/candidate_tracker/75627122678_Yamini_Resume.doc', NULL, NULL, '2020-10-23', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'NOT SUITABLE FOR VOICE PROCESS', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 12:37:27', 50, '2020-10-23 10:42:18', 0, NULL, 1),
(1436, 'Soundarya', '4', '9551502850', '', 'Soundaryalaxman@gmail.com', '2000-06-09', 20, '2', '2', 'T. Lakshmanan', 'Autodriver', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010220015', '1', '1', 'upload_files/candidate_tracker/83761528523_my resume for account2 new.docx', NULL, NULL, '2020-10-24', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not int to join', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 12:40:51', 50, '2020-10-24 01:10:24', 0, NULL, 1),
(1437, '', '0', '8682904263', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 12:44:55', 0, NULL, 0, NULL, 1),
(1438, '', '0', '9962661233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 01:01:40', 0, NULL, 0, NULL, 1),
(1439, '', '0', '9384013745', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 01:15:35', 0, NULL, 0, NULL, 1),
(1440, 'G Rakesh', '20', '9941081827', '6382842608', 'thalarakesh57@gmail.com', '2000-07-10', 20, '1', '2', 'G Hajarathiah', 'Sales man', 15.00, 1, 14.00, 16.00, 'No 15/63 nRS road thiryvattiyur Chennai 1o', 'no 15/63 NRS Road Thiryvattiyur Chennai 1o', '2010220019', '', '2', 'upload_files/candidate_tracker/82353894917_Rakesh 2 _resum.doc', NULL, NULL, '2020-10-22', 0, 'Balaji', '5', '19', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 01:50:38', 50, '2020-10-22 02:32:11', 0, NULL, 1),
(1441, 'saroja', '4', '6380818149', '9841208717', 'sarojamoses898@gmail.com', '1998-10-16', 22, '2', '2', 'muthukrishnan', 'driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2010220020', '1', '1', 'upload_files/candidate_tracker/58344956608_SAROJA RESUME.pdf', NULL, NULL, '2020-10-22', 0, '', '8', '21', '1970-01-01', 0.00, '02:45 PM', '', '1970-01-01', '2', 'gone', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 01:58:12', 50, '2020-10-22 02:27:18', 0, NULL, 1),
(1442, 'Deepika s', '4', '9789030829', '8056152027', 'deepikasasikumar37@gmail.com', '1999-09-15', 21, '2', '2', 'Jeeva', 'Food organizer', 6500.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010220021', '1', '1', 'upload_files/candidate_tracker/38531675756_Resume_Deepika_Format5.pdf', NULL, NULL, '2020-10-23', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 03:23:16', 1, '2020-10-22 10:53:47', 0, NULL, 1),
(1443, 'Thabrez Ali Rahamani', '16', '8678965072', '', 'thabrezali.rahamani@gmail.com', '1990-05-17', 30, '2', '1', 'Ayaz khader', 'Retired person from private organization', 300000.00, 1, 700000.00, 20.00, 'Avadi, Chennai', 'Avadi, Chennai', '2010220022', '1', '2', 'upload_files/candidate_tracker/4165276128_0_Resume_Quality.pdf', NULL, NULL, '2020-10-23', 1, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 03:26:15', 50, '2020-10-23 06:20:48', 0, NULL, 1),
(1444, '', '0', '7094572650', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 03:34:26', 0, NULL, 0, NULL, 1),
(1445, 'Kowsalya', '4', '9080767705', '9710652765', 'kowsi.51539@gmail.com', '1998-11-01', 21, '2', '2', 'Ettiyappan', 'Bus driver', 10000.00, 2, 0.00, 10000.00, 'Chennai', 'Arumbakkam', '2010220024', '1', '1', 'upload_files/candidate_tracker/14114444753_My resume.pdf', NULL, NULL, '2020-10-22', 0, '', '5', '21', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '2', 'she is come with her friend only..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 03:36:42', 50, '2020-10-22 04:39:48', 0, NULL, 1),
(1446, 'BALAKUMAR', '16', '9597192737', '9655185016', 'Balakumarg4@gmail.com', '1992-01-04', 28, '2', '1', 'Ganapathy', 'Head cook', 10000.00, 1, 19000.00, 23000.00, 'Thiruporur', 'Thiruporur', '2010220025', '1', '2', 'upload_files/candidate_tracker/35744365495_Balakumar banking operations - Resume.docx', NULL, NULL, '2020-10-23', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 04:05:11', 50, '2020-10-23 06:20:58', 0, NULL, 1),
(1447, 'Vindhiya. P', '4', '9444703830', '9123567117', 'Indirapurushothamen0810@gmail.com', '1999-10-27', 20, '2', '2', 'Purushothamen', 'Eb', 25000.00, 1, 0.00, 10000.00, 'Triplicane', 'Thiruvanmyur', '2010220026', '1', '1', 'upload_files/candidate_tracker/69141214358_52959612320_Resume.docx', NULL, NULL, '2020-10-23', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'she is Stumbling to speak and her pronunciation is not clear. will not suite for CRM', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-22 04:24:39', 58, '2020-12-23 04:57:43', 0, NULL, 1),
(1448, 'kowsalya', '4', '8056479122', '9600992868', 'kausi1713@gmail.com', '1998-12-19', 21, '2', '2', 's.muthupandiyan', 'cooli', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'chennai', '2010220027', '1', '1', 'upload_files/candidate_tracker/30178554471_kausalya.pdf', NULL, NULL, '2020-10-23', 0, '', '3', '8', '2020-10-26', 120000.00, '11:00 AM', '6', '2020-12-01', '2', '10K for Muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-22 04:45:31', 58, '2020-12-23 12:58:49', 0, NULL, 1),
(1449, 'j.revathi', '4', '9789952298', '8838328178', 'reyrevathi07@g.mail.com', '1995-09-11', 25, '2', '2', 'father jabaraj.m', 'supervisor', 25000.00, 1, 0.00, 25000.00, 'chennai', 'Chennai', '2010220028', '1', '1', 'upload_files/candidate_tracker/48198152902_REVATHI RESUME MAIN.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'for cafs hold for star', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 05:33:47', 7, '2020-10-23 11:39:42', 0, NULL, 1),
(1450, '', '0', '9840302635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010220029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-22 06:23:01', 0, NULL, 0, NULL, 1),
(1451, 'anithalakshmi', '16', '9884269712', '9688714701', 'vardhini92puppy@gmail.com', '1990-02-25', 30, '2', '1', 'radhakrishnan', 'nill', 250000.00, 2, 24000.00, 30000.00, 'maduravoyal', 'maduravoyal', '2010220030', '1', '2', 'upload_files/candidate_tracker/72554378712_Anitha - Resume.docx', NULL, NULL, '2020-10-23', 8, '', '5', '54', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'task not completed', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-22 08:57:56', 50, '2020-10-23 10:41:42', 0, NULL, 1),
(1452, 'Kavitha.k', '4', '9710164578', '9941630820', 'kamarajkavitha57@gmail.com', '1999-12-06', 20, '2', '2', 'Kamaraj.g', 'Driver', 12000.00, 1, 0.00, 12000.00, 'Tondairpet', 'Tondairpet', '2010230001', '1', '1', 'upload_files/candidate_tracker/34825631956_kavi resume.docx', NULL, NULL, '2020-10-23', 0, '', '3', '8', '2020-10-26', 120000.00, '11:00 AM', '4', '2021-01-08', '2', '10K for muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 08:15:18', 7, '2020-10-23 05:39:39', 0, NULL, 1),
(1453, 'Manikandan', '4', '9488934218', '8667468879', 'manikandan21635@gmail.com', '1994-05-10', 26, '2', '2', 'SELVARAJ', 'Farmer', 10000.00, 2, 12000.00, 14000.00, 'Perambalur', 'Guindy', '2010230002', '1', '2', 'upload_files/candidate_tracker/95072756678_1601354119118_MANIKANDAN.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '13', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'not suitable for tele sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 09:59:41', 8, '2020-10-23 02:30:57', 0, NULL, 1),
(1454, '', '0', '9884411889', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 10:21:03', 0, NULL, 0, NULL, 1),
(1455, 'Gopalakrishnan Saravanan', '4', '8148361771', '7397400984', 'Gopalvicky09@gmail.com', '1999-10-21', 21, '2', '2', 'Saravanan', 'Machine operator', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Pammal', '2010230004', '2', '1', 'upload_files/candidate_tracker/48242468967_9A Gopalakrishnan Resume.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '13', NULL, 0.00, '10:45 AM', '0', NULL, '2', 'not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 10:33:55', 1, '2020-10-23 10:37:44', 0, NULL, 1),
(1456, '', '0', '9123567117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 11:10:40', 0, NULL, 0, NULL, 1),
(1457, 'Suderson D R', '16', '8056192390', '', 'suderson45@gmail.com', '1994-07-02', 26, '2', '2', 'D S Ramesh babu', 'Electriction', 20000.00, 1, 20000.00, 35000.00, 'Chennai', 'Chennai', '2010230006', '1', '2', 'upload_files/candidate_tracker/67858577056_Suderson_CV_3+ years experience.pdf', NULL, NULL, '2020-10-24', 30, '', '5', '53', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'exp sal 30k min, last package 20k, due to his personal reason he need tht much slary, nd more over he cannot join immediately', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 11:16:08', 52, '2020-10-24 11:34:07', 0, NULL, 1),
(1458, 'Manikandan p', '6', '9025043024', '7094583321', 'mani1006kandam@gmail.com', '1999-06-10', 21, '2', '2', 'Palanisamy', 'Catering', 11000.00, 3, 0.00, 13000.00, 'Coimbatore', 'Chennai', '2010230007', '1', '1', 'upload_files/candidate_tracker/57382121999_manikandan.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '20', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '1', 'absconded after 1st round', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 12:01:06', 50, '2020-10-23 02:50:24', 0, NULL, 1),
(1459, 'Santhosh Kumar.G', '6', '8681887058', '9094218285', 'santhoshkumarg710@gmail.com', '1999-10-07', 21, '1', '2', 'Ganesan.P', 'Painter', 15000.00, 4, 0.00, 15000.00, '17, Myilai Sivan Muthu St., MGR Nagar, Chennai-78', '17, Myilai Sivan Muthu St., MGR Nagar, Chennai-78', '2010230008', '', '1', 'upload_files/candidate_tracker/55362388930_Adobe Scan Oct 23, 2020.pdf', NULL, NULL, '2020-10-23', 0, '5174', '5', '16', '1970-01-01', 0.00, '12:46 PM', '', '1970-01-01', '1', 'no comunication skill local slaung', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 12:15:41', 8, '2020-10-23 02:27:48', 0, NULL, 1),
(1460, 'S.dinesh', '4', '8680829572', '9884225447', 'dinubob46@gmail.com', '1999-11-18', 20, '1', '2', 'Sekar.s', 'Painter', 16000.00, 4, 0.00, 13000.00, '17/A Shekkilar 2nd Street mgr nagar chennai-78', '17/A Shekkilar 2nd Street Mgr Nagar Chennai-78', '2010230009', '', '1', 'upload_files/candidate_tracker/24878925023_Adobe Scan Oct 23, 2020 (1).pdf', NULL, NULL, '2020-10-23', 0, '5174', '5', '13', '1970-01-01', 0.00, '12:32 PM', '', '1970-01-01', '1', 'not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 12:15:43', 7, '2020-10-23 01:18:48', 0, NULL, 1),
(1461, 'Nisha r', '4', '9025249272', '', 'nisharamanathan099@gmail.com', '1999-09-16', 21, '2', '1', 'Ramanadhan', 'Medical rep', 20000.00, 1, 7500.00, 12000.00, 'Chennai', 'Valasaravakkam', '2010230010', '2', '2', 'upload_files/candidate_tracker/51177819241_New Document(1).pdf', NULL, NULL, '2020-10-23', 0, '', '5', '13', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 12:56:20', 7, '2020-10-23 02:21:55', 0, NULL, 1),
(1462, 'neviya.d', '4', '9444891350', '9840302635', 'neviya12@gmail.com', '1996-12-09', 23, '2', '2', 'dhayalan.cs', 'tea shop', 15000.00, 2, 13000.00, 13000.00, 'icf chennai', 'icf chennai', '2010230011', '1', '2', 'upload_files/candidate_tracker/99482760284_Neviya.pdf', NULL, NULL, '2020-10-23', 0, '', '5', '13', NULL, 0.00, '01:14 PM', '0', NULL, '1', 'not fit for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 01:05:13', 1, '2020-10-23 01:26:47', 0, NULL, 1),
(1463, '', '0', '9962863594', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 01:06:24', 0, NULL, 0, NULL, 1),
(1464, '', '0', '9789951814', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 01:07:57', 0, NULL, 0, NULL, 1),
(1465, 'Sangeetha Elangovan', '16', '6382286772', '6382296771', 'sangeethaelangovan2703@gmail.com', '1997-03-29', 23, '2', '2', 'Elangovan', 'Nil', 25000.00, 1, 27000.00, 30000.00, 'Madhuravoyal', 'Madhuravoyal', '2010230014', '1', '2', 'upload_files/candidate_tracker/54939235444_Resume_Sangeetha-PMO.docx', NULL, NULL, '2020-10-27', 15, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'she know basics oluy', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 01:31:49', 7, '2020-10-27 11:48:11', 0, NULL, 1),
(1466, 'Sangeetha Elangovan', '16', '6382296771', '9092949541', 'sangeethaelangovan2703@gmail.com', '1997-03-29', 23, '2', '2', 'Elangovan', 'Nil', 25000.00, 1, 27000.00, 30000.00, 'Madhuravoyal', 'Madhuravoyal', '2010230015', '1', '2', 'upload_files/candidate_tracker/54115144748_Resume_Sangeetha-PMO.docx', NULL, NULL, '2020-10-24', 15, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '3', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 01:53:50', 50, '2020-10-24 10:11:43', 7, '2020-10-27 11:48:05', 0),
(1467, 'Vinoth kumar N', '16', '7904301443', '9677995266', 'vvino211@gmail.com', '1993-03-12', 27, '2', '2', 'Nithyanandham', 'Driver', 38000.00, 1, 24500.00, 26000.00, 'Tambaram', 'Tambaram', '2010230016', '1', '2', 'upload_files/candidate_tracker/37770901604_Vinoth Kumar Resume New (1).pdf', NULL, NULL, '2020-10-24', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 03:14:52', 50, '2020-10-24 10:11:53', 0, NULL, 1),
(1468, 'Gopinath M', '13', '8807020392', '6383413930', 'gopinath92cs@gmail.com', '1992-04-06', 28, '2', '2', 'Murugan P', 'Farmer', 10000.00, 1, 3.40, 4.70, 'Theni', 'chennai', '2010230017', '1', '2', 'upload_files/candidate_tracker/81446496510_Gopinath_Murugan (1).pdf', NULL, NULL, '2020-10-27', 1, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 04:22:04', 7, '2020-10-27 04:34:09', 0, NULL, 1),
(1469, 'suganthi', '13', '8825796209', '9444432838', 'suganthikannan536@gmail.com', '2000-05-31', 20, '2', '2', 'kannan', 'painter', 10000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2010230018', '1', '1', 'upload_files/candidate_tracker/63918983872_Resume(1) (1).pdf', NULL, NULL, '2020-10-24', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 04:23:47', 50, '2020-10-24 01:12:17', 0, NULL, 1),
(1470, 'Dinesh .R', '16', '9840595393', '', 'dineshravi385@gmail.com', '1995-06-14', 25, '2', '2', 'B.Ravi', 'Corpender', 35000.00, 2, 14650.00, 20000.00, 'Kelambakkam', 'Kelambakkam', '2010230019', '1', '2', 'upload_files/candidate_tracker/71669242453_Dinesh Resume.docx', NULL, NULL, '2020-10-24', 10, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'stammering. he wont suit fr mis', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 04:41:07', 50, '2020-10-24 10:12:02', 0, NULL, 1),
(1471, 'Kalaivani S', '16', '8939032754', '', 'kalailatha6@gmail.com', '1995-06-20', 25, '2', '2', 'Sivasami K', 'working at departmental store', 30000.00, 1, 17000.00, 22000.00, 'Porur - Chennai', 'porur - Chennai', '2010230020', '1', '2', 'upload_files/candidate_tracker/81233612653_Kalai CV.pdf', NULL, NULL, '2020-10-24', 0, '', '8', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not attended', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 05:09:05', 50, '2020-10-24 10:12:11', 0, NULL, 1),
(1472, '', '0', '7358302581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 05:24:04', 0, NULL, 0, NULL, 1),
(1473, 'M.venugopal', '4', '9962381146', '9092462088', 'vgvenu1146@gmail.com', '1999-07-25', 21, '2', '2', 'P.muthuvel', 'Company labour', 15000.00, 650, 0.00, 16000.00, 'Chennai', 'Chennai', '2010230022', '1', '1', 'upload_files/candidate_tracker/75620852560_RESUME - VENUGOPAL.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-23 05:24:36', 58, '2020-12-23 11:02:05', 0, NULL, 1),
(1474, 'Manikandan R', '6', '7708872357', '', 'Manikandan29th@gmail.com', '1998-09-29', 22, '2', '2', 'Rajendran', 'Driver', 20000.00, 2, 0.00, 10500.00, 'Chennai', 'Chennai', '2010230023', '1', '1', 'upload_files/candidate_tracker/5934140600_CV_2020-08-03-073856.pdf', NULL, NULL, '2020-10-24', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Worth For any profile. not even explaining his graduation', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 05:26:12', 50, '2020-10-24 11:19:51', 0, NULL, 1),
(1475, 'GOWTHAMKUMAR PR', '4', '9698617286', '9080161058', 'prgowthamkumar0@gmail.com', '1994-06-20', 26, '2', '2', 'RAVI SP', 'NO MORE', 9500.00, 1, 12000.00, 14000.00, 'MADURAI', 'CHENNAI', '2010230024', '1', '2', 'upload_files/candidate_tracker/83459062454_gowthamkumar res.pdf', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'looking for data entry non voice process not suitable for voice process', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-23 05:30:08', 58, '2020-12-23 11:05:33', 0, NULL, 1),
(1476, 'Padmavathy. B', '4', '8637615451', '9789823902', 'padma220899@gmail.com', '1999-08-22', 21, '2', '2', 'Baskar. P', 'Painter', 80.00, 1, 0.00, 10.00, 'Chennai', 'Chennai', '2010230025', '1', '1', 'upload_files/candidate_tracker/79588878557_DOC-20200311-WA0000.pdf', NULL, NULL, '2020-10-24', 0, '', '3', '8', '1970-01-01', 120000.00, '11:00 AM', '2', '1970-01-01', '2', '10K for Muthu team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-23 05:30:15', 7, '2020-11-07 05:53:45', 0, NULL, 1),
(1477, '', '0', '7989099391', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 06:52:33', 0, NULL, 0, NULL, 1),
(1478, '', '0', '9080656892', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010230027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-23 06:56:20', 0, NULL, 0, NULL, 1),
(1479, 'Prema G', '13', '9710045206', '9710045207', 'prema07181999@gmail.com', '1999-07-18', 21, '2', '2', 'S Guna sekaran', 'Auto driver', 9000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2010240001', '1', '1', 'upload_files/candidate_tracker/28605683498_0_prema new.docx', NULL, NULL, '2020-10-24', 0, '', '5', '28', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'He is not strong in basic php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 07:09:55', 50, '2020-10-24 10:12:29', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1480, 'Charles', '6', '9500186697', '8523971565', 'charlesece14@gmail.com', '1994-06-12', 26, '1', '2', 'john', 'sub-inspector', 700000.00, 2, 18000.00, 20000.00, '4/70 mela kovil street ,Annamangalam(p.o),', 'H9O ponnambalam colony k.k .nagar', '2010240002', '', '2', 'upload_files/candidate_tracker/40699593130_CHARLES sales.docx', NULL, NULL, '2020-10-24', 0, '5643', '5', '44', NULL, 0.00, '10:40 AM', '0', NULL, '1', 'He is not fit ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 10:35:28', 1, '2020-10-24 10:52:38', 0, NULL, 1),
(1481, 'Sheerin', '5', '7092622936', '', 'banuafsar111197@gmail.com', '1997-06-11', 24, '2', '2', '.Afsar Basha.N', 'not working', 17000.00, 2, 17000.00, 18000.00, 'chennai', 'Chennai', '2010240003', '1', '2', 'upload_files/candidate_tracker/8077225011_Sheerinresume.pdf2.docx', NULL, '2', '2022-02-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2020-10-24 10:48:14', 1, '2022-02-12 04:28:44', 0, NULL, 1),
(1482, 'B.vani sree', '4', '7397452805', '9840123174', 'vanisreeusha@gmail.com', '1998-06-02', 22, '2', '2', 'K.babu', 'Car driver', 45000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2010240004', '1', '1', 'upload_files/candidate_tracker/43531980945_vanisree resume.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '12:35 PM', '', '1970-01-01', '1', 'looking for non voice process not suitable for telecalling', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-24 10:50:40', 58, '2020-12-23 11:02:25', 0, NULL, 1),
(1483, '', '0', '8124264643', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 11:02:09', 0, NULL, 0, NULL, 1),
(1484, 'Sharmila mary T', '11', '9524737545', '', 'sharmithomas003@gmail.com', '1998-03-14', 22, '2', '2', 'S.selvi', 'Cooli', 7000.00, 3, 0.00, 18000.00, 'Sellampattidai', 'Sunguvarchathram,molachur', '2010240006', '1', '1', 'upload_files/candidate_tracker/77083314636_Sharmi Resume 1.docx', NULL, NULL, '2020-10-24', 0, '', '5', '53', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'poor communication, she is thinking for targets, she s not ok with the targets', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:02:52', 50, '2020-10-24 12:37:49', 0, NULL, 1),
(1485, 'Anis Fathima', '4', '8870644118', '9943565381', 'anisrahmaniya@gmail.com', '1998-08-17', 22, '2', '2', 'Abdul rahuman', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2010240007', '1', '1', 'upload_files/candidate_tracker/32755430248_Anis[1].pdf', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:13 AM', '', '1970-01-01', '2', 'looking for non voice process not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:08:50', 50, '2020-10-26 04:22:53', 0, NULL, 1),
(1486, 'Premkumar.k', '4', '9159891159', '', 'Rajnipremtheboss1998@gmail.com', '1998-07-09', 22, '2', '2', 'Kumarasan. C', 'Fresher', 12.00, 2, 0.00, 12.00, 'Chennai', 'Chennai', '2010240008', '1', '1', 'upload_files/candidate_tracker/1415945064_K.prem kumar.pdf', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '11:14 AM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:09:43', 50, '2020-10-24 12:38:30', 0, NULL, 1),
(1487, 'Krithika', '4', '7092656122', '8681843495', 'Krithikanarayanababu@gmail.com', '2000-03-12', 20, '2', '2', 'Narayanababu', 'Student', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2010240009', '1', '1', 'upload_files/candidate_tracker/27504264706_krithika resume updated.docx', NULL, NULL, '2020-10-24', 0, '', '5', '13', '1970-01-01', 0.00, '11:20 AM', '', '1970-01-01', '2', 'she is intrested only non-voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:15:00', 50, '2020-10-24 12:38:07', 0, NULL, 1),
(1488, 'Karthika J', '4', '8428874671', '9840146952', 'jkarthika78@gmail.com', '2000-12-09', 19, '2', '2', 'Jayaseelan', 'Carpenter', 10000.00, 1, 0.00, 12000.00, 'Porur', 'Porur', '2010240010', '1', '1', 'upload_files/candidate_tracker/71317565063_karthika.docx', NULL, NULL, '2020-10-24', 0, '', '3', '8', '1970-01-01', 102000.00, '11:41 AM', '2', '1970-01-01', '2', '10k for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:17:41', 7, '2020-10-24 05:25:44', 0, NULL, 1),
(1489, 'K.Divya', '4', '9094436033', '9092324476', 'divyadivi1507@gmail.com', '1997-07-15', 23, '2', '2', 'C.karunanithi', 'Tailor', 10000.00, 1, 14000.00, 15000.00, '97,sivan Kovil street, Kodambakkam,chennai-600024', '97,sivan Kovil street, Kodambakkam,chennai-600024', '2010240011', '1', '2', 'upload_files/candidate_tracker/12462730295_resume.pdf', NULL, NULL, '2020-10-24', 8, '', '5', '14', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', 'expecting high salary and sustainability less ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 11:26:41', 50, '2020-10-24 11:57:24', 0, NULL, 1),
(1490, 'M.Priyadarshini', '4', '6379996537', '7338900580', 'priyadharshinim707@gmail.com', '2000-07-07', 20, '2', '2', 'B.v.muthukrishnan', 'Security', 8000.00, 0, 0.00, 10000.00, 'Broadway', 'No.18 .venkatesan street, Broadway, chennai-1.', '2010240012', '1', '1', 'upload_files/candidate_tracker/11511279865_1603512497059_priya resume.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '02:23 PM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 01:09:11', 50, '2020-10-24 02:47:30', 0, NULL, 1),
(1491, 'Pavithra. R', '4', '6383094233', '8925624975', 'Ssripavithra@gmail.com', '2000-04-24', 20, '2', '2', 'L. Radha krishnan', 'Salesman', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Korrukupet', '2010240013', '1', '1', 'upload_files/candidate_tracker/73416774979_Resume.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '02:36 PM', '', '1970-01-01', '2', 'not fit for this profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 01:21:18', 50, '2020-10-24 02:47:37', 0, NULL, 1),
(1492, 'Poornima. E', '4', '9790771496', '9444043201', 'poorni15052000@gmail.com', '2000-05-15', 20, '2', '2', 'A. Eswaran', 'Driver', 20000.00, 1, 0.00, 10000.00, 'Chennai', '427, mint street, Sowcarpet, chennai-01', '2010240014', '1', '1', 'upload_files/candidate_tracker/35458350464_resume.docx', NULL, NULL, '2020-10-24', 0, '', '5', '14', '1970-01-01', 0.00, '02:21 PM', '', '1970-01-01', '2', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 02:17:47', 50, '2020-10-24 02:47:43', 0, NULL, 1),
(1493, '', '0', '9384638813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 03:28:34', 0, NULL, 0, NULL, 1),
(1494, '', '0', '9384638796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 05:42:43', 0, NULL, 0, NULL, 1),
(1495, '', '0', '9841371737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 06:27:05', 0, NULL, 0, NULL, 1),
(1496, '', '0', '9962984987', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 07:41:35', 0, NULL, 0, NULL, 1),
(1497, 'Joseline Sanchana', '4', '7397286239', '9345155873', 'joselinesanchana@gmail.com', '1998-10-05', 22, '2', '2', 'Raveendran', 'Business', 100000.00, 1, 10000.00, 15000.00, 'Chrompet', 'chennai', '2010240019', '1', '2', 'upload_files/candidate_tracker/89006729050_Joseline update(experience).docx', NULL, NULL, '2020-10-27', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-24 07:44:03', 7, '2020-10-27 04:34:18', 0, NULL, 1),
(1498, '', '0', '9962635328', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010240020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-24 08:32:34', 0, NULL, 0, NULL, 1),
(1499, 'jaya bharathi', '4', '9790460219', '', 'jayasri.sri27@gmail.com', '1986-08-10', 34, '2', '1', 'mohan', 'retired', 10000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2010250001', '1', '1', 'upload_files/candidate_tracker/51621530612_Jaya Bharathi.docx', NULL, NULL, '2020-10-26', 0, '', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', 'NOT FIT FOR TELESALES', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-25 10:07:59', 58, '2020-12-23 11:12:29', 0, NULL, 1),
(1500, 'subhashini g', '4', '6369182934', '7397349783', 'subhakaviyashree2024@gmail.com', '1999-10-20', 21, '2', '2', 'ganesan', 'a.h.o', 25000.00, 2, 0.00, 15000.00, 'babustreet teynampet chennai', 'chennai', '2010260001', '1', '1', 'upload_files/candidate_tracker/22523812391_subha .pdf', NULL, NULL, '2020-10-26', 0, '', '5', '13', '1970-01-01', 0.00, '11:05 AM', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-26 07:45:05', 58, '2020-12-23 11:22:03', 0, NULL, 1),
(1501, 'priya', '4', '7305869430', '9962467034', 'riyapriyanka81@gmail.com', '1998-09-21', 22, '2', '2', 'selvam', 'coolie', 45000.00, 0, 13000.00, 15000.00, 'choolia', 'choolia', '2010260002', '1', '2', 'upload_files/candidate_tracker/96184115405_priya resume (2).pdf', NULL, NULL, '2020-10-26', 0, '', '5', '8', '1970-01-01', 0.00, '12:24 PM', '', '1970-01-01', '2', 'will not sustain', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-26 07:54:51', 58, '2020-12-23 11:07:30', 0, NULL, 1),
(1502, 'vimal raj j', '6', '7092609947', '7010885336', 'jvimalkamal@gmail.com', '1998-07-14', 22, '2', '2', 'john son j', 'tailor', 9000.00, 1, 0.00, 12000.00, 'pallavaram', 'pallavaram', '2010260003', '1', '1', 'upload_files/candidate_tracker/88672405852_Raj J.pdf', NULL, NULL, '2020-10-26', 0, '', '5', '16', '1970-01-01', 0.00, '11:54 AM', '', '1970-01-01', '1', 'No communication ,sustain doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 09:08:30', 8, '2020-10-26 01:02:33', 0, NULL, 1),
(1503, 'Suwetha.s', '4', '9551405022', '7338896644', 'suwethaswea@gmail.com', '1996-06-17', 24, '2', '2', 'Selvaraj.A', 'Coolie', 65000.00, 0, 0.00, 13000.00, 'Pulianthope', 'Pursawalkam', '2010260004', '1', '1', 'upload_files/candidate_tracker/52518349497_suwetha.s resume.pdf', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'looking for data entry not fit for voice', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 09:31:19', 50, '2020-10-26 02:38:16', 0, NULL, 1),
(1504, 'G vinothini', '4', '9003127642', '8428390928', 'Vinopop1911@gmail.com', '1997-11-20', 22, '2', '2', 'Gajendran', 'Tele caller', 13000.00, 2, 13.50, 15000.00, 'Old Perungalathur', 'Old Perungalathur', '2010260005', '1', '2', 'upload_files/candidate_tracker/6620400042_vinothini 20.docx', NULL, NULL, '2020-10-27', 0, '', '6', '0', NULL, 0.00, '11:35 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 11:01:59', 1, '2020-10-27 11:12:36', 0, NULL, 1),
(1505, 'Mohammedgoushbasha', '16', '7299670174', '8825983852', 'maddybasha46@gmail.com', '1992-06-18', 28, '2', '2', 'Ashwaka', 'Late', 18000.00, 2, 19000.00, 24000.00, 'Chennai', 'Chennai', '2010260006', '1', '2', 'upload_files/candidate_tracker/99947559116_Mohammed goush basha (Resume).docx', NULL, NULL, '2020-10-26', 0, '', '3', '8', '2020-11-02', 258000.00, '02:30 PM', '4', '2021-02-15', '1', '21292 as take home for MIS', '3', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 11:09:38', 7, '2020-10-28 06:00:44', 0, NULL, 1),
(1506, 'vignesh', '4', '8072923397', '', 'pvvigneshraj16@gmail.com', '1993-06-16', 27, '2', '2', 'vinaya babu', 'rest at home', 14000.00, 1, 24355.00, 27800.00, 'chennai', 'chennai', '2010260007', '1', '2', 'upload_files/candidate_tracker/69243486906_Vignesh CV.docx', NULL, NULL, '2020-10-26', 0, '', '3', '8', '2020-11-02', 300000.00, '01:30 PM', '2', '1970-01-01', '1', '25K for Lokesh team', '1', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-26 11:20:29', 58, '2020-12-23 12:11:19', 0, NULL, 1),
(1507, 'muruga pandi k', '13', '8825849165', '7708203445', 'murugapandi6832@gmail.com', '1998-10-13', 22, '2', '2', 'krishna samy.k', 'cooking', 20000.00, 2, 0.00, 12000.00, 'thoothukudi', 'tambaram chennai', '2010260008', '1', '1', 'upload_files/candidate_tracker/65488783156_murugan .pdf', NULL, NULL, '2020-10-26', 0, '', '3', '8', '2020-10-26', 101052.00, '12:28 PM', '', '1970-01-01', '2', '8K take home', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 12:24:52', 50, '2020-10-26 04:23:13', 0, NULL, 1),
(1508, 'sathish kumar.d', '4', '8778396954', '9789919069', 'sathiskumarecmaile98@gmail.com', '1999-07-06', 21, '2', '2', 'n.dhanraj', 'security', 10000.00, 2, 0.00, 15000.00, 'kelambakkam', 'kelambakkam', '2010260009', '1', '1', 'upload_files/candidate_tracker/77954196868_Sathish.doc', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '12:55 PM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 12:24:58', 50, '2020-10-26 01:36:15', 0, NULL, 1),
(1509, 'imran khan', '13', '9486819549', '9486782150', 'imrankhanik11111@gmail.com', '1999-02-22', 21, '2', '2', 'syed abuthahir', 'worker', 20000.00, 2, 0.00, 12000.00, 'ammapattinam', 'chennai', '2010260010', '1', '1', 'upload_files/candidate_tracker/10759675544_imranresume.pdf', NULL, NULL, '2020-10-26', 0, '', '3', '8', '2020-10-26', 101052.00, '11:30 AM', '', '1970-01-01', '2', '8K take home', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 12:25:16', 50, '2020-10-26 04:23:21', 0, NULL, 1),
(1510, 'Rajesh das. C', '6', '9003279796', '', 'rajeshdasd3@gmail.com', '2000-05-24', 20, '2', '2', 'Chandu das', 'Gold Smith', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010260011', '1', '1', 'upload_files/candidate_tracker/32753248481_Rajesh Das Resume - 01.10.2020 (1).pdf', NULL, NULL, '2020-10-27', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'he got better offer will not join', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 12:51:37', 7, '2020-10-27 11:27:39', 0, NULL, 1),
(1511, 'A. JAIKARTHICK', '6', '7358345127', '', 'legendjai021@gamil.com', '2000-04-26', 20, '2', '2', 'G. Ashokkumar', 'Tailor', 10000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2010260012', '1', '1', 'upload_files/candidate_tracker/75616958679_JAI KARTHICK - Copy - Copy-converted.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '19', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 01:05:54', 50, '2020-10-27 05:42:43', 0, NULL, 1),
(1512, 'Vishal', '4', '8838461523', '9043565529', 'vishal.m.2016.ece@rajalakshmi.edu.in', '1999-06-02', 21, '2', '2', 'Murali', 'Goldsmith', 15000.00, 0, 0.00, 15000.00, 'Kanchipuram', 'Chennai', '2010260013', '4', '1', 'upload_files/candidate_tracker/53630749207_VISHAL,-converted.pdf', NULL, NULL, '2020-10-26', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 01:19:08', 50, '2020-10-26 05:40:33', 7, '2020-10-27 12:28:08', 0),
(1513, 'Thilagavathi', '4', '9789966208', '9786602569', 'Thilaxraj1108@gmail', '1998-08-11', 22, '2', '2', 'Kesavakumar', 'Working in seimen', 15000.00, 2, 0.00, 15000.00, 'Virudhunagar', 'Chennai', '2010260014', '1', '1', 'upload_files/candidate_tracker/52873268033_thilax.pdf', NULL, NULL, '2020-10-26', 0, '', '5', '14', '1970-01-01', 0.00, '01:37 PM', '', '1970-01-01', '2', 'looking for data entry not suitable for sales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 01:29:02', 50, '2020-10-26 02:10:54', 0, NULL, 1),
(1514, 'M.Gopal', '6', '7639131709', '9629149533', 'gopal4053639@gmail.com', '1999-01-21', 21, '2', '2', 'S.Muruganandham', 'Weaver', 76000.00, 1, 0.00, 14000.00, 'Kanchipuram', 'Kanchipuram', '2010260015', '4', '1', 'upload_files/candidate_tracker/88053763456_Gopal Resume.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '20', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'not suitable for any voice process.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 01:34:48', 7, '2020-10-27 10:55:09', 0, NULL, 1),
(1515, '', '0', '8667642553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 01:43:38', 0, NULL, 0, NULL, 1),
(1516, 'Sathish kumar m', '6', '9790727147', '9790731662', 'sathishpja18@gmail.com', '1996-09-25', 24, '2', '2', 'Mohan s', 'Carpenter', 20.00, 1, 12000.00, 20000.00, 'Purasaiwalkkam', 'Purasaiwalkkam', '2010260017', '1', '2', 'upload_files/candidate_tracker/66617775564_sha exp resume.pdf', NULL, NULL, '2020-10-27', 30, '', '5', '57', '1970-01-01', 0.00, '11:37 AM', '', '1970-01-01', '1', 'he is not ok for sales and voice process', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 02:04:10', 50, '2020-10-27 05:42:35', 0, NULL, 1),
(1517, 'Ruben Christy', '6', '8667622962', '9344929926', 'rc7760280@gmail.com', '1999-07-18', 21, '2', '2', 'Martin m', 'Labour', 30000.00, 1, 0.00, 18000.00, 'Gingee', 'Padappai', '2010260018', '1', '1', 'upload_files/candidate_tracker/19138983100_Ruben RESUME.docx', NULL, NULL, '2020-10-28', 0, '', '5', '24', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'no bike and also long distance so not suitable for CRM and RE', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 03:19:15', 7, '2020-10-28 12:57:23', 0, NULL, 1),
(1518, 'Prakash c', '6', '8754714575', '8778277217', 'prakashcse95@gmail.com', '1995-05-03', 25, '2', '2', 'Chakkaravarthi j', 'Senior citizens', 10000.00, 0, 14000.00, 16000.00, '165,Raganvendhra nagar, Cuddalore dist,vadalur', '87,14th street mahalakshimi nagar, guduvancheery', '2010260019', '4', '2', 'upload_files/candidate_tracker/21323662683_Prakash Resume.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '19', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '1', 'no longer sustain', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 03:26:23', 7, '2020-10-27 10:06:03', 0, NULL, 1),
(1519, '', '0', '7397052054', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 04:13:52', 0, NULL, 0, NULL, 1),
(1520, 'V Jayaraj', '4', '8072111522', '9840141982', 'Jayaraj3993@gmail.com', '1993-03-09', 27, '2', '2', 'S VASUDEVAN', 'Tailor', 15000.00, 2, 0.00, 16000.00, 'kolathur, chennai', 'Chennai', '2010260021', '1', '1', 'upload_files/candidate_tracker/24897188758_jayaraj05 01 2020.docx', NULL, NULL, '2020-10-28', 0, '', '5', '21', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'he is interested international voice ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 04:23:54', 1, '2020-10-28 01:18:55', 0, NULL, 1),
(1521, 'T.Devi', '4', '6381968109', '8610394629', 'bthangavel071964@gmail.com', '1997-05-15', 23, '2', '2', 'B.Thangavel', 'Clerk', 15000.00, 3, 0.00, 10000.00, 'Pillaiyar kovil st,Periyakalur,Thiruvannamalai.', 'Nungampakkam', '2010260022', '1', '1', 'upload_files/candidate_tracker/52816289149_New doc Oct 23, 2020 11.41 AM.pdf', NULL, NULL, '2020-10-27', 0, '', '3', '8', '2020-11-02', 120000.00, '11:00 AM', '3', '2020-11-30', '2', '10K for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 04:33:51', 7, '2020-10-29 03:02:03', 0, NULL, 1),
(1522, '', '0', '8610557655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 04:51:29', 0, NULL, 0, NULL, 1),
(1523, 'Gokilan.r', '6', '8248325934', '', 'Gokilan.r007x@Gmail. Com', '1996-07-10', 24, '2', '2', 'Rajendran', 'Driver', 15000.00, 2, 0.00, 16000.00, 'Chennai', 'Kolathur', '2010260024', '1', '1', 'upload_files/candidate_tracker/25280670957_gokilan.r resume-2.docx', NULL, NULL, '2020-10-28', 0, '', '5', '57', '1970-01-01', 0.00, '11:50 AM', '', '1970-01-01', '1', 'communication and sustainability level worst ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 05:01:01', 7, '2020-10-28 12:46:42', 0, NULL, 1),
(1524, '', '0', '7904493386', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 05:11:32', 0, NULL, 0, NULL, 1),
(1525, 'J manikandan', '5', '7010880742', '9092627002', 'manikandanj2222@gmail.com', '1996-12-01', 23, '2', '1', 'Jayakumar', 'Wages', 20000.00, 1, 3.00, 21000.00, 'Chennai', 'Chennai', '2010260026', '3', '2', 'upload_files/candidate_tracker/60663815258_MANI RESUME JAN 2020.pdf', NULL, NULL, '2020-10-28', 30, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 05:21:04', 1, '2020-10-26 05:28:14', 0, NULL, 1),
(1526, '', '0', '8056120496', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 07:01:33', 0, NULL, 0, NULL, 1),
(1527, 'M. Jayashree', '20', '6383419611', '', 'shreej2697@gmail.com', '1997-06-02', 23, '2', '2', 'M. Murugan', 'Provisional store', 15000.00, 2, 0.00, 15000.00, 'Vandalur near by kolapakkam', 'Vandalur near by kolapakkam', '2010260028', '1', '1', 'upload_files/candidate_tracker/67298749591_JAYASHREE M resume.pdf', NULL, NULL, '2020-10-27', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 07:34:53', 1, '2020-10-26 07:47:23', 0, NULL, 1),
(1528, '', '0', '8754419249', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 08:08:14', 0, NULL, 0, NULL, 1),
(1529, '', '0', '8608410178', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 08:22:41', 0, NULL, 0, NULL, 1),
(1530, 'Dinesh R N', '6', '9715919913', '', '', '1990-12-06', 29, '2', '2', 'P Nanda kumaran Nair', 'Ex military', 20000.00, 1, 20000.00, 20000.00, 'Kanyakumari', 'Otteri', '2010260031', '1', '2', 'upload_files/candidate_tracker/85257725840_Resume-2.doc', NULL, NULL, '2020-10-27', 0, '', '6', '0', NULL, 0.00, '12:45 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-26 08:36:28', 1, '2020-10-26 08:47:32', 0, NULL, 1),
(1531, '', '0', '9600057008', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010260032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-26 11:14:56', 0, NULL, 0, NULL, 1),
(1532, '', '0', '9789824089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 09:19:34', 0, NULL, 0, NULL, 1),
(1533, 'V.latha', '4', '7550253271', '7550243005', 'lathavsneha@gmail.com', '1999-08-04', 21, '1', '2', 'T.vijayakumar', 'Car driver', 20000.00, 1, 0.00, 13000.00, 'No.138 7th Cross street t.p.chathiram chennai-10', 'No.138 7th Cross Street T.P.Chathiram Chennai-10', '2010270002', '', '1', 'upload_files/candidate_tracker/41716394264_Latha.pdf', NULL, NULL, '2020-10-27', 0, '5382', '5', '21', '1970-01-01', 0.00, '10:17 AM', '', '1970-01-01', '1', 'She Ill Come With Her Friend Only', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 10:05:35', 7, '2020-10-27 10:33:14', 0, NULL, 1),
(1534, 'Akshaya.R', '4', '8754459187', '7550128313', 'Akshayaravi7500@gmail.com', '2000-02-01', 20, '1', '2', 'Ravi', 'Business', 60000.00, 1, 0.00, 13000.00, 'No.5A,bharathi colony,nesapkkam,chennai', 'No.42/1,rangappa street.ayanavaram.chennai-23', '2010270003', '', '1', 'upload_files/candidate_tracker/38586579334_Akshaya.docx', NULL, NULL, '2020-10-27', 0, '5382', '5', '21', NULL, 0.00, '10:13 AM', '0', NULL, '2', 'Not Sustain Bcz She Need Non Voice Job..xxamp also come with her friend only', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 10:06:58', 1, '2020-10-27 10:21:04', 0, NULL, 1),
(1535, 'Mohamed ashwaq', '20', '9962725793', '', 'mohamedashwaq5@gmail.com', '1999-06-27', 21, '2', '2', 'Sadiq ahamed', 'Not working', 25000.00, 2, 0.00, 13000.00, 'Cmrl staff Quarters Residency Chennai 600107', 'Cmrl Staff Quarters Residency Chennai 600107', '2010270004', '1', '1', 'upload_files/candidate_tracker/11626822414_mohamed ashwaq resume.docx', NULL, NULL, '2020-10-28', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 10:39:38', 7, '2020-10-28 05:53:21', 0, NULL, 1),
(1536, 'Sabeha Tasleem . S', '11', '9940854511', '7708604511', 'sabehathasleem@gmail.com', '1997-09-18', 23, '2', '2', 'Shajahan', 'Business', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010270005', '1', '1', 'upload_files/candidate_tracker/29340200342_sabeha resume-converted.pdf', NULL, NULL, '2020-10-27', 0, '', '3', '8', '2020-11-09', 151800.00, '10:43 AM', '5', '1970-01-01', '1', '12K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 10:41:31', 7, '2020-11-09 12:15:44', 0, NULL, 1),
(1537, 'Sharan Kumar P C', '4', '9900834572', '9108474164', 'sharanpc@hotmail.com', '1979-02-10', 41, '2', '1', 'NA', 'B. com', 22000.00, 2, 0.00, 20000.00, 'JP Nagar 7th phase', 'Indiranagar', '2010270006', '1', '1', 'upload_files/candidate_tracker/5441992686_SHARAN KUMAR - PC (1).docx', NULL, NULL, '2020-10-27', 0, '', '5', '38', '1970-01-01', 0.00, '01:06 PM', '', '1970-01-01', '2', 'he wil not suit for CRM profile', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 10:58:20', 50, '2020-10-27 02:24:07', 0, NULL, 1),
(1538, 'Ajith Kumar .M', '6', '8754507500', '9445608246', 'ajithkana007@gmail.com', '2000-05-07', 20, '2', '2', 'Ananda kumar .p.v.', 'B.com', 20000.00, 0, 0.00, 15000.00, 'Kodungaiyur', 'Kodungaiyur', '2010270007', '1', '1', 'upload_files/candidate_tracker/65755204706_AJITHCCV2 -converted.pdf', NULL, NULL, '2020-10-27', 0, '', '3', '8', '1970-01-01', 168000.00, '11:04 AM', '2', '1970-01-01', '1', '14K for Kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 11:00:00', 7, '2020-10-28 05:56:09', 0, NULL, 1),
(1539, 'Yogesh. V', '6', '9003214673', '9710468124', 'aswindon15@gmail.com', '2000-06-16', 20, '2', '2', 'T. Venkatesh', 'Photo grapher. Lab technician', 35000.00, 1, 0.00, 15000.00, 'No.84/1 km nagar', 'No. 84 /1 km nagar', '2010270008', '1', '1', 'upload_files/candidate_tracker/24516781351_V. Yogesh 27oct.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '57', '1970-01-01', 0.00, '11:07 AM', '', '1970-01-01', '1', 'sustainability and sales ... not good', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 11:01:18', 50, '2020-10-27 05:42:53', 0, NULL, 1),
(1540, 'Bhuvaneshwari', '4', '9445332415', '9566060630', 'bhuvanaramalingam31299@gmail.com', '1999-12-03', 20, '2', '2', 'K. Ramalingam', 'Carpenter', 12000.00, 1, 0.00, 10000.00, 'Kundrathur', 'Kundrathur', '2010270009', '1', '1', 'upload_files/candidate_tracker/91709326953_My Resume.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '21', '1970-01-01', 0.00, '11:14 AM', '', '1970-01-01', '2', 'long distance ,she is from kundrathur,already worked accountent 3 months ...', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-27 11:09:14', 58, '2020-12-29 09:47:42', 0, NULL, 1),
(1541, 'Deva s', '6', '8682854172', '7401210953', 'deva442000@gmail.com', '2000-04-04', 20, '1', '2', 'K.subramani', 'Corpanter', 25000.00, 1, 0.00, 15000.00, 'Tambram', 'Camp road rajakilpakam', '2010270010', '', '1', 'upload_files/candidate_tracker/84717871975_Deva S Resume-converted.pdf', NULL, NULL, '2020-10-27', 0, '66673', '5', '19', NULL, 0.00, '11:17 AM', '0', NULL, '1', 'ot fit for sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 11:09:22', 1, '2020-10-27 11:20:03', 0, NULL, 1),
(1542, 'Jayachandran', '6', '9840706312', '9500006016', 'kaaaaar007@gmail.com', '1998-10-01', 22, '2', '2', 'T.ramesh', 'Southern railway', 25000.00, 1, 0.00, 13000.00, '18/44,rajeswari street ,metha Nagar, Chennai-29', 'Aminjikarai , Chennai 29', '2010270011', '6', '1', 'upload_files/candidate_tracker/4031580602_resume Jayachandran.pdf', NULL, NULL, '2020-10-27', 0, '', '3', '8', '2020-10-30', 156000.00, '11:27 AM', '2', '1970-01-01', '1', '13K for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 11:24:04', 7, '2020-10-28 05:56:26', 0, NULL, 1),
(1543, 'subash chandira bose', '13', '9944601686', '', 'subashdevaraji87@gmail.com', '1987-05-22', 33, '2', '1', 'priya', 'private job', 30000.00, 0, 30000.00, 40000.00, 'Chennai', 'Chennai', '2010270012', '1', '2', 'upload_files/candidate_tracker/554653073_Subash.doc', NULL, NULL, '2020-10-27', 15, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 11:30:22', 1, '2020-10-27 12:00:36', 0, NULL, 1),
(1544, 'Vishal', '6', '9043565529', '8838461523', 'vishal.m.2016.ece@rajalakshmi.edu.in', '1999-06-02', 21, '2', '2', 'Murali', 'Goldsmith', 15000.00, 0, 0.00, 15000.00, 'Kanchipuram', 'Chennai', '2010270013', '4', '1', 'upload_files/candidate_tracker/14922266786_VISHAL,-converted.pdf', NULL, NULL, '2020-10-27', 0, '', '5', '19', '1970-01-01', 0.00, '11:55 AM', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 11:53:22', 7, '2020-10-27 12:27:32', 0, NULL, 1),
(1545, 'M. Ganesh', '6', '9361635210', '7401177331', 'Ganeshbob2000@gmail.com', '2000-03-26', 20, '1', '2', 'N. Murthy', 'Coolie', 15000.00, 1, 0.00, 12000.00, 'Perungalathur', 'Perungalathur', '2010270014', '', '1', 'upload_files/candidate_tracker/16852974661_gr.pdf', NULL, NULL, '2020-10-28', 0, '66673', '5', '24', '1970-01-01', 0.00, '12:28 PM', '', '1970-01-01', '1', 'Not Fit For Sales Field ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 12:21:28', 7, '2020-10-28 12:54:47', 0, NULL, 1),
(1546, 'K gopinath', '6', '9444857965', '9600942878', 'Kgnipog@gmail', '1987-05-31', 33, '2', '2', 'V krishnan', 'Retd AL', 18000.00, 1, 150000.00, 18000.00, 'No 21 5th cross street Ennore chennai', 'Ennore chennai', '2010270015', '3', '2', 'upload_files/candidate_tracker/29000383168_gopinath Resume.docx', NULL, NULL, '2020-10-27', 0, '', '5', '22', '1970-01-01', 0.00, '12:47 PM', '', '1970-01-01', '1', 'voice bad', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 12:37:27', 8, '2020-11-07 04:31:31', 0, NULL, 1),
(1547, 'Manikandan', '4', '9551645670', '9884952560', 'mani 3330mm@gmail.com', '1993-03-11', 27, '2', '2', 'Munusamy', 'Cooli', 8000.00, 0, 15000.00, 18000.00, 'Madhavaram', 'Madhavaram', '2010270016', '3', '2', 'upload_files/candidate_tracker/98157871764_CamScanner 10-19-2020 13.55.14_1.pdf', NULL, NULL, '2020-10-27', 0, '', '8', '21', NULL, 0.00, '01:20 PM', '0', NULL, '1', 'canditate gone', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 12:38:04', 1, '2020-10-27 02:41:32', 0, NULL, 1),
(1548, 'Boominathan.s', '6', '7358096562', '9840059363', 'boomiremo4647@gmail.com', '1997-04-19', 23, '2', '2', 'Suburamani', 'Leather industry', 15000.00, 5, 0.00, 12000.00, 'Chennai', 'Chrompet', '2010270017', '1', '1', 'upload_files/candidate_tracker/45662795748_1601376548938Resume_Boominathan.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '19', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 01:11:04', 7, '2020-10-28 12:42:13', 0, NULL, 1),
(1549, '', '0', '9790817562', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 02:35:22', 0, NULL, 0, NULL, 1),
(1550, 'akash kumar r', '11', '9791101848', '', 'akashkumarr@outlook.in', '1998-01-15', 22, '2', '2', 's ravikumar', 'sub - inspector of police tamil nadu', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'chennai', '2010270019', '1', '1', 'upload_files/candidate_tracker/31666778114_Akash Resume.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no response', '6', '2', '', '', '', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-27 03:20:53', 58, '2020-12-29 10:00:30', 0, NULL, 1),
(1551, 'V. Surya', '11', '6380117708', '', '', '1997-08-22', 23, '2', '2', 'S. Velayutham', 'Mission', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2010270020', '1', '1', 'upload_files/candidate_tracker/94630520696_Surya resume.docx', NULL, NULL, '2020-10-27', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 03:22:45', 1, '2020-10-27 03:43:54', 0, NULL, 1),
(1552, '', '0', '7299751668', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 03:23:42', 0, NULL, 0, NULL, 1),
(1553, 'Merlin Benjamin', '11', '8754438815', '', '', '1991-09-15', 29, '2', '2', 'Benjamin PK', 'Passed away', 1000000.00, 4, 240000.00, 300000.00, 'Medavakkam', 'Medavakkam', '2010270022', '1', '2', 'upload_files/candidate_tracker/41981088601_Merlin Resume.docx', NULL, NULL, '2020-10-28', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 03:28:47', 1, '2020-10-27 03:32:25', 0, NULL, 1),
(1554, 'sujitha', '11', '6374143383', '', 'sujipuni1512@gmail.com', '1999-12-15', 20, '2', '2', 'ramesh', 'job seeker', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2010270023', '1', '1', 'upload_files/candidate_tracker/2601187778_Sujitha Resume.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'fresher bt exp high sal', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 04:04:58', 7, '2020-10-28 12:59:26', 0, NULL, 1),
(1555, 'GOKULAKRISHNAN S', '11', '7358531230', '', 'gokulkrish1711@gmail.com', '1999-11-17', 20, '2', '2', 'SELVAKUMAR R', 'Junior assistant', 21000.00, 1, 0.00, 17999.00, 'Chennai', 'Chennai', '2010270024', '1', '1', 'upload_files/candidate_tracker/90338145875_GOKULAKRISHNAN', NULL, NULL, '2020-10-29', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 04:34:02', 7, '2020-10-29 04:18:53', 0, NULL, 1),
(1556, 'Kalaiselvan M', '11', '9094971689', '9941388657', 'kalaiselvanm890@gmail.com', '1998-03-10', 22, '2', '2', 'Murugaiyan', 'Guest lecturer', 25000.00, 1, 0.00, 20000.00, 'Porur', 'Chennai', '2010270025', '1', '1', 'upload_files/candidate_tracker/26286200888_Kalaiselvan RESUME 2020.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'nt suit fr hr', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 04:43:15', 1, '2020-10-27 04:55:58', 0, NULL, 1),
(1557, '', '0', '7395953193', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 04:49:08', 0, NULL, 0, NULL, 1),
(1558, 'santhosh.k', '4', '8682929109', '9884100656', 'santhoshkay1999@gmail.com', '1999-07-05', 21, '2', '2', 'kumar.m.g', '-', 200000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2010270027', '1', '1', 'upload_files/candidate_tracker/14968570698_santhosh.k resume.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not interested in field , ok for crm but he is expecting 18 k ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 04:58:42', 7, '2020-10-28 11:39:46', 0, NULL, 1),
(1559, 'Ragesh Bhagavath', '4', '9176662358', '', 'ragesh.bhagavath@gmail.com', '1997-05-16', 23, '2', '2', 'Lakshmanan', 'General Manager', 60000.00, 1, 15000.00, 17000.00, 'South Chennai', 'South Chennai', '2010270028', '1', '2', 'upload_files/candidate_tracker/1687487741_RB Resume.doc', NULL, NULL, '2020-10-28', 2, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'he is interested in customer support process. not for sales ..', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-27 06:01:14', 58, '2020-12-23 12:45:48', 0, NULL, 1),
(1560, 'Vignesh R', '4', '7401246261', '9941460008', 'saranyavignesh82@gmail.com', '1997-06-25', 23, '1', '2', 'Ramesh G', 'Painter', 27000.00, 0, 9500.00, 13500.00, 'No 11587 Kannaginagar thuraipakkam chennai 97', 'No 11587 Kannaginagar thuraipakkam chennai 97', '2010270029', '', '2', 'upload_files/candidate_tracker/49215353327_resume vignesh.docx', NULL, NULL, '2020-10-29', 0, 'Jenifer', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 06:38:09', 7, '2020-10-29 04:18:42', 0, NULL, 1),
(1561, '', '0', '9629777497', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 06:42:46', 0, NULL, 0, NULL, 1),
(1562, '', '0', '9080320258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010270031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 06:56:03', 0, NULL, 0, NULL, 1),
(1563, 'Abhishek', '4', '9514403954', '9514403954', 'sabhishek12101@gmail.com', '1999-10-28', 20, '2', '1', 'N.Shanmugam', 'fitter', 9000.00, 1, 0.00, 13000.00, '7/107 ,5th mutumariyman Kovil Street, Perumbakkam', '7/107 ,5th mutumariyaman Kovil street, perumbakkam', '2010270032', '1', '1', 'upload_files/candidate_tracker/87219907168_abhishek.docx', NULL, NULL, '2020-10-28', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 07:15:09', 7, '2020-10-28 05:53:07', 0, NULL, 1),
(1564, 'Rathinavel', '5', '9551430214', '', 'rathinavel.pandian24@gmail.com', '1996-11-24', 23, '2', '2', 'S Ramakrishnan', 'Business', 50000.00, 2, 31000.00, 21000.00, 'Chennai', 'Chennai', '2010270033', '1', '2', 'upload_files/candidate_tracker/18758603463_New Doc 2019-11-24 13.17.23.pdf', NULL, NULL, '2020-10-28', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 08:18:10', 7, '2020-10-28 05:52:56', 0, NULL, 1),
(1565, 'Pugazhendhi', '16', '9344326157', '8754551829', 'thalapathypugalthalapathy@gmail.com', '2000-03-21', 20, '1', '2', 'Srinivasan', 'Van driver', 25000.00, 2, 0.00, 15000.00, 'No.1,3rd Street potroom madhavaram milk colony', 'Potroom madhavaram milk colony', '2010270034', '', '1', 'upload_files/candidate_tracker/67098510711_Resume_Pugazhendhi_Format1.pdf', NULL, NULL, '2020-10-28', 0, '2010270034', '8', '', '1970-01-01', 0.00, '02:18 PM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-27 09:26:08', 7, '2020-10-28 05:52:45', 0, NULL, 1),
(1566, 'sai gayathri m b', '11', '9884571755', '9043871424', 'saigayathri1112@gmail.com', '1998-05-12', 22, '2', '2', 'balaji m v', 'railways', 75000.00, 1, 0.00, 240000.00, 'Chennai', 'chennai', '2010270035', '1', '1', 'upload_files/candidate_tracker/97138392041_SAIGAYATHRI_RESUME.pdf', NULL, NULL, '2020-10-28', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'No response', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-27 10:44:04', 7, '2020-10-28 11:23:45', 0, NULL, 1),
(1567, '', '0', '8939247391', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 09:42:55', 0, NULL, 0, NULL, 1),
(1568, 'Madhuvanthi B', '4', '7358207635', '6380419545', 'bmadhuvanthi1217@Gmail.com', '1999-08-12', 21, '1', '2', 'GOPALA Krishna Reddy.B', 'Driver', 10000.00, 1, 0.00, 10000.00, 'J4,J5,Shanthi colony,Ring Road,Madhavaram, Ch-60.', 'J4,J5,Shanthi Colony,Ring Road,Madhavaram, Ch-60.', '2010280002', '', '1', 'upload_files/candidate_tracker/53566519267_Copy of Madhuvanthi.docx', NULL, NULL, '2020-10-28', 0, '55600', '5', '21', NULL, 0.00, '11:20 AM', '0', NULL, '1', 'not bold low confidence, no flow in words', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:20:21', 1, '2020-10-28 11:34:40', 0, NULL, 1),
(1569, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:49:47', 0, NULL, 0, NULL, 1),
(1570, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:52:13', 0, NULL, 0, NULL, 1),
(1571, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:54:43', 0, NULL, 0, NULL, 1),
(1572, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:55:46', 0, NULL, 0, NULL, 1),
(1573, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:56:13', 0, NULL, 0, NULL, 1),
(1574, 'J.raghuram', '4', '9445077267', '', 'raghujagan8@gmail.com', '1999-10-10', 21, '1', '2', 'k.jaganathan', 'Transport', 25000.00, 1, 0.00, 12000.00, 'Kilpauk garden', 'Kilpauk garden', '2010280008', '', '1', 'upload_files/candidate_tracker/1018700096_Resume-converted.docx', NULL, NULL, '2020-10-28', 0, '5620', '5', '21', NULL, 0.00, '11:33 AM', '0', NULL, '1', 'he is interested in data entry ', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:56:26', 1, '2020-10-28 11:43:54', 0, NULL, 1),
(1575, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 10:58:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1576, '', '0', '7358207635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:00:18', 0, NULL, 0, NULL, 1),
(1577, 'Jeevitha. R', '4', '9176617482', '9094354921', 'Jeevirajendran1997@gmail.com', '1997-01-09', 23, '1', '2', 'Bhueshwari', 'House keeping', 8000.00, 1, 16000.00, 18000.00, 'Tondiarpet', 'Chennai', '2010280011', '', '2', 'upload_files/candidate_tracker/9900276550_Resume Jeevitha.docx', NULL, NULL, '2020-10-28', 0, 'Jobs', '3', '8', '1970-01-01', 168000.00, '11:19 AM', '2', '1970-01-01', '2', '14K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:05:37', 7, '2020-10-28 06:52:44', 0, NULL, 1),
(1578, 'Y .Maggi manro', '4', '7397496340', '9884049289', 'maggimanro.1234@gmail.com', '2000-06-13', 20, '2', '2', 'V.yesurathinam', 'Daliy wages', 10000.00, 2, 0.00, 15000.00, 'Tharamani', 'Tharmani', '2010280012', '1', '1', 'upload_files/candidate_tracker/22206556657_Maggi manro cv.pdf', NULL, NULL, '2020-10-28', 0, '', '3', '8', '2020-11-02', 120000.00, '11:38 AM', '4', '2020-11-09', '1', '10K for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 11:09:52', 7, '2020-10-29 03:01:09', 0, NULL, 1),
(1579, '', '0', '9361635210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:11:03', 0, NULL, 0, NULL, 1),
(1580, 'Mohan. G', '4', '9080174247', '8678958331', 'Mohangopal097@gmail.com', '2000-08-02', 20, '1', '2', 'Gopal. K', 'Coolie', 14000.00, 1, 0.00, 12000.00, 'Perungalathur', 'Perungalathur', '2010280014', '', '1', 'upload_files/candidate_tracker/4335570397_1601602636510Resume_Mohan.pdf', NULL, NULL, '2020-10-28', 0, '66673', '5', '21', NULL, 0.00, '11:18 AM', '0', NULL, '1', 'perungaluthur long distance also not suit for our process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:11:41', 1, '2020-10-28 11:25:25', 0, NULL, 1),
(1581, 'D. Suriya prakash', '6', '9952078422', '9884978429', 'suriya78422@gmail.com', '1999-11-20', 20, '1', '2', 'S. Devaraj', 'Painter', 15000.00, 2, 0.00, 12000.00, 'Perungalathur', 'Perungalathur', '2010280015', '', '1', 'upload_files/candidate_tracker/42444144543_surya.pdf', NULL, NULL, '2020-10-28', 0, '66673', '5', '20', '1970-01-01', 0.00, '12:22 PM', '', '1970-01-01', '1', 'not fit, doubt in sustainability', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:12:39', 7, '2020-10-28 12:44:32', 0, NULL, 1),
(1582, 'R pavithra', '11', '7550278573', '9789912627', 'rpavithra1610@gmail.com', '1999-10-16', 21, '1', '2', 'V ravichandran', 'Tailor', 8000.00, 0, 0.00, 20000.00, '77/45 sowri street alandur chennai 16', '77/45 Sowri Street Alandur Chennai', '2010280016', '', '1', 'upload_files/candidate_tracker/37255058359_Pavithra Resume.pdf', NULL, NULL, '2020-10-28', 0, '2010280016', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'exp high sal', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 11:15:41', 1, '2020-10-28 11:22:42', 0, NULL, 1),
(1583, 'Rajesh', '6', '9551176181', '8610551009', 'marirajesh96@gmail.com', '1996-04-06', 24, '2', '2', 'Ezhumalai', 'Cooli', 13500.00, 4, 14000.00, 15000.00, 'No.437 gothamedu saidapet Chennai 600015', 'No.437 Gothamedu Saidapet Chennai 600015', '2010280017', '1', '2', 'upload_files/candidate_tracker/79409762767_0_raji resume(1).docx', NULL, NULL, '2020-10-30', 1, '', '5', '20', '1970-01-01', 0.00, '12:09 PM', '', '1970-01-01', '1', 'looking for job Temporarily, plans to start own business, also studying graphic designing for carrier option.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 12:26:38', 7, '2020-10-30 12:31:56', 0, NULL, 1),
(1584, '', '0', '9841149573', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 12:32:21', 0, NULL, 0, NULL, 1),
(1585, 'Mithun. V', '6', '7358408601', '9841159541', 'Mithunruby45@gmail.com', '2000-03-22', 20, '2', '2', 'Vijayasandhakumar. B', 'Driver', 80000.00, 1, 0.00, 10000.00, 'Chennai', 'medavakkam', '2010280019', '1', '1', 'upload_files/candidate_tracker/11658311775_mithun.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '19', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'NOT FIT FOR SALES', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 12:32:47', 7, '2021-03-15 06:02:05', 0, NULL, 1),
(1586, '', '0', '9092467847', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 12:38:06', 0, NULL, 0, NULL, 1),
(1587, '', '0', '9551594732', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 12:57:32', 0, NULL, 0, NULL, 1),
(1588, 'F.Vinnarasi', '4', '8925363808', '', 'stassissifrancis@gmail.com', '1995-08-19', 25, '2', '2', 'Sr.Vimala Thuya Mary', 'Nun', 10000.00, 4, 0.00, 15000.00, 'T.nagar', 'Adyar', '2010280022', '1', '1', 'upload_files/candidate_tracker/49881529286_F.Vinnarasi Resume.pdf', NULL, NULL, '2020-10-29', 0, '', '5', '21', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', 'she is not interested in long term ,just time being only ...', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-28 01:07:10', 58, '2020-12-29 09:50:54', 0, NULL, 1),
(1589, '', '0', '7305277070', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010280023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 01:33:27', 0, NULL, 0, NULL, 1),
(1590, 'narendrakumar r', '6', '8610551009', '', '', '1996-09-01', 24, '2', '2', 'ravichandran k', 'office assitant', 15000.00, 1, 11500.00, 18000.00, 'chennai', 'thousand lights', '2010280024', '3', '2', 'upload_files/candidate_tracker/71308868893_file_1604043446736.pdf', NULL, NULL, '2020-10-30', 1, '', '5', '20', '1970-01-01', 0.00, '01:13 PM', '', '1970-01-01', '2', 'communication not good enough and doesnxquott know to drive bikes.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 03:12:13', 7, '2020-10-30 02:40:36', 0, NULL, 1),
(1591, 'Subhaanand', '5', '6382132855', '', '', '1976-09-08', 44, '2', '1', 'Sandhya', 'Team leader', 20000.00, 0, 25000.00, 28000.00, 'No.12/27 jeya complex Balaji nagar royapettah', 'No.4 senthil avenue,thiru vi ka nagar', '2010280025', '3', '2', 'upload_files/candidate_tracker/95854017995_subha.pdf', NULL, NULL, '2020-11-02', 15, '', '5', '31', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'dont have sales experience', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-28 04:46:46', 1, '2020-10-28 04:55:01', 0, NULL, 1),
(1592, 'Bharath B', '6', '9962404169', '7358401517', 'Kumarbk3497@gmail.com', '1997-04-03', 23, '2', '2', 'Baskar R', 'Salaried', 35000.00, 1, 17000.00, 21000.00, 'Chennai', 'Chennai', '2010280026', '1', '2', 'upload_files/candidate_tracker/48160789376_resume.pdf', NULL, NULL, '2020-10-30', 15, '', '3', '8', '2020-11-02', 192000.00, '11:00 AM', '3', '2020-12-02', '1', '16K for Kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 06:14:23', 7, '2020-10-30 04:27:16', 0, NULL, 1),
(1593, 'Yasar arafath mustafa', '20', '8778236202', '', '', '1989-02-09', 31, '2', '1', 'Kathija', 'Sales Manager', 55000.00, 2, 35000.00, 40000.00, 'Chennai', 'Chennai', '2010280027', '1', '2', 'upload_files/candidate_tracker/8464852016_CV.pdf.pdf', NULL, NULL, '2020-10-29', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-28 07:04:40', 7, '2020-10-29 04:18:22', 0, NULL, 1),
(1594, '', '0', '9840246396', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 12:36:54', 0, NULL, 0, NULL, 1),
(1595, 'ARUNKUMAR', '11', '9443205267', '8438000478', 'arunmba9193@gmail.com', '1993-11-20', 26, '2', '2', 'ARUMUGAM', 'No father', 100000.00, 1, 18000.00, 20000.00, 'Dindigul', 'Chennai', '2010290002', '1', '2', 'upload_files/candidate_tracker/60311734824_ARUNKUMAR_A_1601735224312.pdf', NULL, NULL, '2020-10-30', 0, '', '6', '0', NULL, 0.00, '11:10 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 11:07:05', 1, '2020-10-29 11:10:47', 0, NULL, 1),
(1596, 'LM Prasanna', '5', '9566112128', '8939482128', 'prasannakviswa@gmail.com', '1986-10-15', 34, '2', '2', 'LVMani', 'Doing pooja in baba temple', 35000.00, 0, 22000.00, 25000.00, 'Chennai', 'chennai', '2010290003', '1', '2', 'upload_files/candidate_tracker/68210463037_28908916283_1577947896841Resume_Prasanna-1 (1).pdf', NULL, NULL, '2020-10-30', 0, '', '8', '29', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'wrongly mapped to me', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 12:26:47', 58, '2020-12-29 09:52:55', 0, NULL, 1),
(1597, 'Aishwarya.S', '11', '9176494928', '7010949291', 'aishu6999@gmail.com', '1999-09-06', 21, '2', '2', 'S.Sekarpandian', 'Astrology', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010290004', '1', '1', 'upload_files/candidate_tracker/21294688443_resume.docx', NULL, NULL, '2020-10-29', 0, '', '5', '8', '1970-01-01', 0.00, '02:38 PM', '', '1970-01-01', '2', 'will not suite for rec profile and no comm. and idea about the profile.', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 12:28:22', 58, '2020-12-29 09:51:28', 0, NULL, 1),
(1598, 'P subash', '6', '9080155168', '', 'subashperumal74@gmail.com', '1999-09-27', 21, '2', '2', 'G perumal', 'Provision store', 18000.00, 2, 0.00, 12000.00, 'Pallikaranai', 'Pallikaranai', '2010290005', '1', '1', 'upload_files/candidate_tracker/11160105508_Subash27.docx', NULL, NULL, '2021-03-15', 0, '', '5', '19', '1970-01-01', 0.00, '12:56 PM', '', '1970-01-01', '2', 'not fit for sale', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 12:48:04', 8, '2021-03-15 06:10:22', 0, NULL, 1),
(1599, 'S.abhishek', '4', '9176435847', '', 'sabhishek12101@gmail.com', '1999-10-27', 21, '1', '2', 'N.shanmugam', 'Fitter', 10000.00, 1, 0.00, 10000.00, 'Perumbakkam', 'Perumbakkam', '2010290006', '', '1', 'upload_files/candidate_tracker/86447506736_abhishek.docx', NULL, NULL, '2020-10-29', 0, 'JOBS', '6', '0', NULL, 0.00, '01:12 PM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 01:10:23', 1, '2020-10-29 01:13:32', 7, '2020-10-29 03:21:50', 0),
(1600, 'kulasekaran.s', '5', '8939728728', '', 'gowthamkulasekaran1212@gmail.com', '1991-12-12', 28, '2', '2', 'gh hospital', 'clark', 30000.00, 2, 285000.00, 300000.00, 'kolathur', 'chennai', '2010290007', '1', '2', 'upload_files/candidate_tracker/38907453025_kulasekaran.s-7 (1).doc', NULL, NULL, '2020-10-29', 0, '', '5', '51', '1970-01-01', 0.00, '01:29 PM', '', '1970-01-01', '1', 'HE IS LOOKING FOR NON SALES JOBS', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 01:24:25', 58, '2020-12-29 09:52:06', 0, NULL, 1),
(1601, 'S.abhishek', '6', '9276435847', '', 'sabhishek12101@gmail.com', '1999-10-27', 21, '1', '2', 'N.shanmugam', 'Fitter', 10000.00, 1, 0.00, 10000.00, 'PERUMBAKKAM', 'Perumbakkam', '2010290008', '', '1', 'upload_files/candidate_tracker/58320033430_abhishek.docx', NULL, NULL, '2020-10-29', 0, 'JOBS', '5', '20', '1970-01-01', 0.00, '01:33 PM', '', '1970-01-01', '2', 'did not attend. candidate is missing.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 01:30:35', 7, '2020-10-29 03:21:57', 0, NULL, 1),
(1602, '', '0', '6380733463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 01:39:51', 0, NULL, 0, NULL, 1),
(1603, 'Sargin O', '4', '8682954360', '7094867870', 'sarginouseph1993@gmail.com', '1993-02-10', 27, '2', '2', 'Ouseph A', 'Fishing', 12000.00, 5, 0.00, 15000.00, 'Kanniyakumari', 'Madiwala, Bangalore', '2010290010', '1', '1', 'upload_files/candidate_tracker/97697728270_Resume S2.pdf', NULL, NULL, '2020-10-29', 0, '', '5', '38', NULL, 0.00, '02:57 PM', '0', NULL, '2', 'he will not suit for CRM', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 02:32:47', 1, '2020-10-29 02:57:29', 0, NULL, 1),
(1604, 'Sujinvictor', '4', '9384783889', '7094867870', 'sujinvictor19@gmail.com', '1995-06-15', 25, '2', '2', 'Johnvictor', 'Fisher man', 10000.00, 3, 0.00, 15000.00, 'Kollemcode,kanyakumari', 'Madivalla bengalore', '2010290011', '1', '1', 'upload_files/candidate_tracker/59041972546_sujin resume.pdf', NULL, NULL, '2020-10-29', 0, '', '5', '38', NULL, 0.00, '02:58 PM', '0', NULL, '2', 'he will not suite for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 02:40:24', 1, '2020-10-29 03:02:55', 0, NULL, 1),
(1605, 'YOGALAKSHMI.S.', '4', '8608413419', '9789021235', 'priyakanchana44@gmail.com', '1999-10-15', 21, '2', '2', 'SELVARAJ.V.', 'Tailor', 68.00, 1, 0.00, 12.00, 'Padavettamman kovil street, kaspapuram.', 'Padavettamman kovil street, kaspapuram.', '2010290012', '1', '1', 'upload_files/candidate_tracker/95554969038_YOGALAKSHMI RESUME.pdf', NULL, NULL, '2020-10-30', 0, '', '5', '21', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'long distance 2 hrs travel', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-29 03:27:57', 7, '2020-10-30 11:05:45', 0, NULL, 1),
(1606, '', '0', '7299503481', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 03:30:23', 0, NULL, 0, NULL, 1),
(1607, 'K.KOWSALYA', '21', '9384610365', '7401650297', 'Kowsalyakowsi613@gmail.com', '2000-03-07', 20, '1', '2', 'O.KARUPPAIYA', 'DRIVER', 13000.00, 0, 0.00, 10000.00, '8/348 INDRA NAGAR MAIN ROAD NANMANGALAM', '8/348 INDRA NAGAR MAIN ROAD NANMANGALAM', '2010290014', '', '1', 'upload_files/candidate_tracker/574005959_KOWSALYA', NULL, NULL, '2020-11-02', 0, 'B.com bank management', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '3', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 03:38:40', 50, '2020-11-02 05:15:36', 0, NULL, 1),
(1608, 'PRIYADHARSHINI', '21', '8838993770', '9940214566', 'Priyaqueen12121998@gmail.com', '1998-12-12', 21, '1', '2', 'Rajendran', 'Painter', 20000.00, 2, 0.00, 10000.00, 'Tharamani', 'Tharamani', '2010290015', '', '1', 'upload_files/candidate_tracker/43201284112_PRIYADHARSHINI. R resume.pdf', NULL, NULL, '2020-11-02', 0, 'B.com bank management', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 03:38:55', 50, '2020-11-02 05:15:45', 0, NULL, 1),
(1609, '', '0', '6382747442', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 04:17:17', 0, NULL, 0, NULL, 1),
(1610, 'Saran. T', '4', '7904024288', '', 'sarankonvict98@gmail', '1998-04-24', 22, '1', '2', 'Tamilarasan. M', 'Private employee', 8000.00, 1, 0.00, 14000.00, '1st street, VKN Nagar, Ikkadu, Thiruvallure', '1st Street, VKN Nagar, Ikkadu, Thiruvallure', '2010290017', '', '1', 'upload_files/candidate_tracker/66136286758_Saran resume .docx', NULL, NULL, '2020-10-29', 0, 'Jobs', '6', '0', NULL, 0.00, '04:42 PM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 04:38:16', 1, '2020-10-29 04:43:39', 0, NULL, 1),
(1611, '', '0', '7358695934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 04:40:12', 0, NULL, 0, NULL, 1),
(1612, '', '0', '7305803771', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010290019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 04:51:32', 0, NULL, 0, NULL, 1),
(1613, 'ZEBA ARJUMAN', '21', '9087591208', '', '', '2001-06-05', 19, '1', '2', 'SALAUDDIN', 'Business', 6000.00, 2, 0.00, 20000.00, 'Redhills', 'Redhills', '2010290020', '', '1', 'upload_files/candidate_tracker/23643625556_ cv.PDF', NULL, NULL, '2020-10-29', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-29 05:28:51', 1, '2020-10-29 05:42:47', 0, NULL, 1),
(1614, 'Suresh V', '11', '8883739138', '8248085428', 'sureshvenket123@gmail.com', '1997-06-02', 23, '2', '2', 'Venkatesh S', 'Cooli', 100000.00, 3, 0.00, 15000.00, 'Namakkal', 'Chennai Porur', '2010290021', '1', '1', 'upload_files/candidate_tracker/13482397573_Suresh.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:16 AM', '', '1970-01-01', '1', 'no comm, and not speaking up, will not suite for HR', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 06:40:45', 58, '2020-12-23 11:26:17', 0, NULL, 1),
(1615, 'Ganesh S', '6', '8144735852', '', '', '1998-09-03', 22, '2', '2', 'Singaravelan E', 'Daily wages', 16000.00, 2, 13500.00, 17000.00, 'Urappakkam', 'Urappakkam', '2010290022', '1', '2', 'upload_files/candidate_tracker/43576889994_Resume (2).docx', NULL, NULL, '2020-10-30', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not suitable for profile..', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 07:38:40', 58, '2020-12-29 09:50:24', 0, NULL, 1),
(1616, 'Martina Madhumitha', '11', '9791178108', '6383771147', 'martinamadhumitha98@gmail.com', '1998-10-08', 22, '2', '2', 'Ravi kumar', 'driver', 144000.00, 1, 0.00, 15000.00, 'porur,chennai', 'porur, chennai', '2010290023', '1', '1', 'upload_files/candidate_tracker/96381884930_20 RESUME.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:45 AM', '', '1970-01-01', '2', 'not speaking up, no Relevant exp and will not suite for HR', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-29 08:36:02', 58, '2020-12-23 12:08:39', 0, NULL, 1),
(1617, 'Shrini G S', '4', '9894477464', '', 'shriniseethaaraaman@gmail.com', '1996-11-19', 23, '2', '2', 'Seethaaraaman G', 'Working in private company', 25000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2010300001', '1', '1', 'upload_files/candidate_tracker/52242126484_my resume.docx', NULL, NULL, '2020-11-02', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 08:56:42', 50, '2020-11-02 05:15:53', 0, NULL, 1),
(1618, 'DINESHRAJ M', '6', '9080987489', '', 'www.dineshraj10455@gmail.com', '1999-06-07', 21, '1', '2', 'MOORTHY V', 'DRIVER', 15000.00, 1, 0.00, 15000.00, 'KANCHIPURAM', 'MANALI', '2010300002', '', '1', 'upload_files/candidate_tracker/33946928128_ANBU.docx', NULL, NULL, '2020-10-30', 0, 'JOBS', '5', '20', '1970-01-01', 0.00, '10:51 AM', '', '1970-01-01', '2', 'sustainability.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 10:45:21', 7, '2020-10-30 11:08:44', 0, NULL, 1),
(1619, 'Md Shahid Shariff', '16', '7904331463', '8220535239', 'Mdshahidshariff@gmail.com', '1983-06-10', 37, '2', '1', 'Afifa', 'Housewife', 3000.00, 5, 0.00, 15000.00, 'VANIYAMBADI', 'Palavakkam', '2010300003', '3', '1', 'upload_files/candidate_tracker/3498535456_shahidresume1.pdf', NULL, NULL, '2020-10-30', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '2', '7 yrs exp as accountant exe. completely i to billing and data enter. profile will not match for MIS exe.No knowledge in Macros and Spreadsheets.', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 10:49:27', 1, '2020-10-30 11:27:13', 0, NULL, 1),
(1620, 'Vasanth Kumar .s', '6', '7904500245', '9176363691', 'vasanthsenthilkumar@gmail.com', '1998-11-23', 21, '1', '2', 'Senthil Kumar.v', 'Car driver', 20000.00, 1, 10000.00, 13000.00, 'Tharamani', 'Tharamani', '2010300004', '', '2', 'upload_files/candidate_tracker/68082319320_S.VASANRH KUMAR RESUME-1.doc', NULL, NULL, '2020-10-30', 0, 'Jobs', '3', '8', '1970-01-01', 156000.00, '11:27 AM', '2', '1970-01-01', '1', '13K for Suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 11:10:49', 7, '2020-10-30 04:27:34', 0, NULL, 1),
(1621, 'Yuvaraj', '6', '7418077163', '9551176181', 'yuva78537@gail.com', '1996-09-19', 24, '2', '2', 'Nagaraj', 'Cooli', 13500.00, 6, 14000.00, 15000.00, 'B67 idpl colony nandambakkam Chennai', 'B67 Idpl Colony Nandambakkam Chennai', '2010300005', '1', '2', 'upload_files/candidate_tracker/86234670064_yuvaraj resume(1).pdf', NULL, NULL, '2020-10-30', 0, '', '5', '19', '1970-01-01', 0.00, '01:18 PM', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 11:59:08', 7, '2020-10-30 02:39:40', 0, NULL, 1),
(1622, 'Sarath Kumar.m', '6', '8608518083', '7639352004', 'smartsarath1005@gmail.com', '1998-05-10', 22, '1', '2', 'Murugan.S', 'Chef', 20000.00, 2, 11000.00, 13000.00, 'Tharamani law colleage', 'Tharamani law colleage', '2010300006', '', '2', 'upload_files/candidate_tracker/39101442377_M.SARATHKUMAR RESUME-2.doc', NULL, NULL, '2020-10-30', 0, 'Jobs', '5', '16', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no communication skills ,low profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 11:59:45', 7, '2020-10-30 12:59:18', 0, NULL, 1),
(1623, 'LM Prasanna', '5', '8939482128', '9566112128', 'prasannakviswa@gmail.com', '1986-10-15', 34, '1', '2', 'LV Mani', 'Doing Pooja in Saibaba Temple', 35000.00, 0, 22000.00, 25000.00, 'Chennai', 'Chennai', '2010300007', '', '2', 'upload_files/candidate_tracker/44707404472_28908916283_1577947896841Resume_Prasanna-1 (1).pdf', NULL, NULL, '2020-10-30', 0, 'Jobs', '6', '0', NULL, 0.00, '12:11 PM', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 12:08:06', 1, '2020-10-30 12:12:34', 7, '2020-10-30 12:19:24', 0),
(1624, '', '0', '8939021799', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 12:08:36', 0, NULL, 0, NULL, 1),
(1625, '', '0', '8939482128', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 12:20:09', 0, NULL, 0, NULL, 1),
(1626, 'Jeni subin', '4', '6374296414', '7598231392', 'jemosubin1999@gmail.com', '1999-05-10', 21, '1', '2', 'Jeyasingh', 'Abroad', 20000.00, 1, 0.00, 13000.00, 'Velachery', 'Velachery', '2010300010', '', '1', 'upload_files/candidate_tracker/96159147865_CV_2020-09-28-011016.pdf', NULL, NULL, '2020-10-30', 0, 'Jobs', '5', '21', '1970-01-01', 0.00, '03:30 PM', '', '1970-01-01', '1', 'he is interested in data entry xxamp not interested in pressured job', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 03:28:33', 7, '2020-10-30 03:38:27', 0, NULL, 1),
(1627, 'Ajith n', '4', '6382159369', '8939164299', 'Ajithooei@gmail.com', '1999-06-22', 21, '1', '2', 'Narayanan', 'Daily wager', 13000.00, 2, 0.00, 13000.00, 'Tharamani', 'Tharamani', '2010300011', '', '1', 'upload_files/candidate_tracker/40544028018_file_1604053733121.pdf', NULL, NULL, '2020-10-30', 0, 'Jobs', '5', '21', '1970-01-01', 0.00, '04:05 PM', '', '1970-01-01', '2', 'he is expecting 20k for crm,also not sustain long term ..not suitable for our process', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 03:41:55', 7, '2020-10-30 04:18:30', 0, NULL, 1),
(1628, '', '0', '7550120399', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 04:03:14', 0, NULL, 0, NULL, 1),
(1629, 'D.Jeeva Nandhini', '11', '9385845453', '6384588138', 'jeevacrazy97@gmail.com', '1997-09-13', 23, '2', '2', 'V.Durairaj', 'Retired mill worker', 15000.00, 1, 0.00, 15000.00, 'Pondicherry', 'T.nagar', '2010300013', '1', '1', 'upload_files/candidate_tracker/40202122860_jeeva resume-compressed.pdf', NULL, NULL, '2020-10-31', 0, '', '3', '8', '2020-11-09', 151800.00, '11:00 AM', '', '1970-01-01', '1', '12K for REC', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-10-30 04:19:29', 58, '2020-12-23 12:09:59', 0, NULL, 1),
(1630, 'Sivasanju S', '11', '6383450310', '7871111835', 'Sivasanju08@gmail.com', '1998-03-08', 22, '2', '2', 'Sankararajan S', 'Driver', 18000.00, 1, 0.00, 13000.00, 'No.10,vijayalakshmiflat,Madipakkam, chennai-600091', 'No.10,Vijayalakshmiflat,Madipakkam, Chennai-600091', '2010300014', '1', '1', 'upload_files/candidate_tracker/31226551351_Sivasanju_cv.pdf', NULL, NULL, '2020-10-31', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 04:47:59', 7, '2020-10-31 04:11:35', 0, NULL, 1),
(1631, 'Lakshmi priya', '11', '7010884939', '7868853920', 'Laxme.04795@gmail.com', '1995-07-04', 25, '1', '2', 'Pandiaraj', 'Farmar', 12000.00, 1, 10000.00, 15000.00, 'Sattur, Viruthunagar', 'T nagar', '2010300015', '', '2', 'upload_files/candidate_tracker/26019244530_Lakshmi priya resume.docx', NULL, NULL, '2020-10-31', 0, 'Job', '5', '8', NULL, 0.00, '11:46 AM', '0', NULL, '1', 'From Hectadata, No Comm And Doesnxquott Have Previous Org Analysis. and doesnt know her rxxampR.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 04:58:25', 1, '2020-10-31 11:46:42', 0, NULL, 1),
(1632, 'vinod', '11', '9894109646', '9566505751', 'balavinod03@gmail.com', '1994-06-25', 26, '1', '2', 'thambidurai', 'fresher', 70000.00, 1, 0.00, 30000.00, 'pondicherry', 'Chennai', '2010300016', '', '1', 'upload_files/candidate_tracker/60975304900_vinod resume.pdf', NULL, NULL, '2020-10-31', 0, 'jennifer', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'not speaking up and will not suite for rec profile.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 05:02:08', 1, '2020-10-30 08:06:46', 0, NULL, 1),
(1633, 'Vijayalakshmi.S', '11', '9940580289', '9940247053', 'vijiv012842@gmail.com', '1997-09-23', 23, '2', '2', 'P.siva', 'Flower decorator', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010300017', '1', '1', 'upload_files/candidate_tracker/46666761084_cv viji.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Profile Will Not Match For \nHR, avg comm. ', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 06:54:54', 50, '2020-11-02 11:10:09', 0, NULL, 1),
(1634, '', '0', '9495787282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 06:59:20', 0, NULL, 0, NULL, 1),
(1635, '', '0', '9791399503', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010300019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 06:59:33', 0, NULL, 0, NULL, 1),
(1636, 'Nandhini P', '11', '6381946359', '9176744659', '', '1996-08-31', 24, '2', '2', 'Parthiban c', 'Plumber', 18000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2010300020', '1', '1', 'upload_files/candidate_tracker/28504227676_Resume.pdf', NULL, NULL, '2020-10-31', 0, '', '5', '8', '1970-01-01', 0.00, '11:27 AM', '', '1970-01-01', '2', 'not speaking up and poor comm.', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 07:05:49', 60, '2020-12-24 10:44:10', 0, NULL, 1),
(1637, 'Arputhavalli S', '11', '9791498583', '6381234866', 'sjemima007@gmail.com', '1992-06-07', 28, '1', '2', 'Selvaraj', 'Retired', 30000.00, 2, 18000.00, 24000.00, 'Sattur', 'Chennai', '2010300021', '', '2', 'upload_files/candidate_tracker/28183154317_Arputhavalli_ 3.8 Years.docx', NULL, NULL, '2020-10-31', 15, 'Job', '5', '8', NULL, 0.00, '04:37 PM', '0', NULL, '2', 'from hectadata, no comm and Doesnxquott have previous org analysis', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-30 08:28:41', 1, '2020-10-31 11:23:24', 0, NULL, 1),
(1638, 'Sathish T', '6', '8657853383', '8355953946', 'Satish.viji1996@gmail.com', '1996-08-28', 24, '2', '2', 'Thanikaivel', 'Contractor', 20000.00, 0, 14000.00, 17000.00, 'Purasaivakkam', 'Purasaivakkam', '2010300022', '1', '2', 'upload_files/candidate_tracker/40202274968_1604301441112a6449761_pdf.pdf', NULL, NULL, '2020-11-02', 0, '', '3', '8', '2020-11-04', 180000.00, '12:44 PM', '6', '2021-02-23', '1', '15K for re Srikanth team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 09:24:32', 7, '2020-11-03 05:13:03', 0, NULL, 1),
(1639, 'SUFIYAN', '5', '9080401084', '8122245102', 'sufiji18@gmail.com', '1993-07-18', 27, '2', '2', 'Ameerul haq', 'suitcase business', 25000.00, 2, 22000.00, 25000.00, 'Broadway', 'Broadway', '2010300023', '1', '2', 'upload_files/candidate_tracker/7415866358_Sufiyan Resume.pdf', NULL, NULL, '2020-11-13', 1, '', '5', '31', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not satisfied', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-30 10:43:18', 7, '2020-11-13 11:51:17', 0, NULL, 1),
(1640, 'Lavanya.M', '11', '7305697376', '', '', '1995-01-11', 25, '3', '2', 'Meganathan.P', 'Leather technichian', 40000.00, 1, 12000.00, 13000.00, 'Chennai', 'Chennai', '2010310001', '', '2', 'upload_files/candidate_tracker/15776530458_Resume.pdf', NULL, NULL, '2020-10-31', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'no response from her end', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-10-31 06:03:25', 60, '2020-12-24 10:43:02', 0, NULL, 1),
(1641, 'Sangeetha.K', '4', '7338914110', '9360710344', 'sangeekumarkumar@gmail.com', '1999-09-27', 21, '1', '2', 'Kumaravel.M', 'Cooli', 13000.00, 1, 8000.00, 11000.00, 'No:8/12 Bharathi Nagar 10 th At, Korukkupet,Ch-21', 'No:8/12 Bharathi Nagar 10 th St, Korukkupet,Ch_21', '2010310002', '', '2', 'upload_files/candidate_tracker/61866740263_sangee resume.pdf', NULL, NULL, '2020-10-31', 0, 'Jobs', '3', '8', '2020-11-03', 120000.00, '11:32 AM', '6', '2020-11-05', '2', '10K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 10:31:25', 7, '2020-10-31 04:13:22', 0, NULL, 1),
(1642, 'Ruby evanjalin', '11', '8124020425', '7092530425', 'Rhenieva@Gmail.Com', '1995-08-05', 25, '1', '2', 'Poulraj', 'Advocate clerk', 35000.00, 2, 17.00, 22000.00, 'Thuthukudi', 'Thuthukudi', '2010310003', '', '2', 'upload_files/candidate_tracker/83520789948_Ruby Evanjalin P (3).docx', NULL, NULL, '2020-10-31', 5, 'Job', '5', '8', NULL, 0.00, '11:26 AM', '0', NULL, '2', 'Very low voice and salary exo is 20+ ', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 11:22:46', 1, '2020-10-31 11:26:46', 0, NULL, 1),
(1643, '', '0', '7868853920', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 11:24:14', 0, NULL, 0, NULL, 1),
(1644, 'hari sri sandhya', '20', '8428771228', '7305667316', 'harisrisandhya99@gmail.com', '1999-08-28', 21, '1', '2', 'rajagopal', 'sales manger', 15000.00, 1, 0.00, 15000.00, 'porur', 'porur', '2010310005', '', '1', 'upload_files/candidate_tracker/4979811456_sandhya resume.pdf', NULL, NULL, '2020-10-31', 0, 'p1113', '5', '16', '1970-01-01', 0.00, '11:17 AM', '', '1970-01-01', '2', 'Sustain doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 11:48:28', 7, '2020-10-31 01:38:10', 0, NULL, 1),
(1645, '', '0', '9150272008', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 12:13:44', 0, NULL, 0, NULL, 1),
(1646, 'Arafath Roja', '13', '8667872198', '9500435175', 'arafathroja7@gmail.com', '1995-08-08', 25, '2', '2', 'Mohammed Magthoom', 'Grocer', 25000.00, 2, 285000.00, 350000.00, 'Chennai', 'Chennai', '2010310007', '1', '2', 'upload_files/candidate_tracker/78156996290_Arafath_Resume.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '28', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'She is not so much skill in php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 12:26:17', 50, '2020-11-02 11:43:31', 0, NULL, 1),
(1647, 'Gokul Raj', '13', '9894380790', '', 'gokulraj.gk95@gmail.com', '1997-11-09', 23, '2', '2', 'Parent', 'Business', 50000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2010310008', '1', '1', 'upload_files/candidate_tracker/48237497235_gokul97 updated.doc', NULL, '2', '2021-05-27', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task not completed.', '2', '1', '', '1', '1', '', '2', '2021-06-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-10-31 12:43:54', 7, '2021-05-27 03:41:55', 0, NULL, 1),
(1648, 'K Dhananjaneyulu', '5', '9398890272', '9052839041', 'kdhana039@gmail.com', '1997-05-09', 23, '1', '2', 'Late k venkataramana', 'Agriculture', 25000.00, 1, 14900.00, 20000.00, 'B. Kotha kota', 'Madiwala', '2010310009', '', '2', 'upload_files/candidate_tracker/4956948746_Dhana new resume-converted (1).pdf', NULL, NULL, '2020-10-31', 0, '5490', '3', '8', '2020-11-05', 17000.00, '12:58 PM', '4', '2021-05-04', '1', '17k for Manivel team', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 12:52:33', 7, '2020-11-04 06:53:02', 0, NULL, 1),
(1649, 'Karthikeyan Selvaraj', '4', '9994535367', '', 'sjkkarthikn@gmail.com', '1996-01-02', 24, '2', '2', 'Selvaraj', 'Formar', 80000.00, 2, 0.00, 24000.00, 'Sunnambukkaran Patti, Trichy', 'Sunnambukkaran Patti, Trichy', '2010310010', '1', '1', 'upload_files/candidate_tracker/745989235_KARTHIK RESUME 2 2020 18.pdf', NULL, NULL, '2020-11-02', 0, '', '8', '', '1970-01-01', 0.00, '11:20 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 01:36:55', 50, '2020-11-02 05:16:01', 0, NULL, 1),
(1650, 'sai vignesh kumar', '11', '8056223249', '', 'Vsai78709@gmail.com', '1997-08-04', 23, '2', '2', 'shanmugam m', 'Sales manager', 30000.00, 1, 0.00, 17000.00, 'No 43 abith nagar choolaimedu chennai 600094', 'No 43 abith nagar choolaimedu chennai 600094', '2010310011', '1', '1', 'upload_files/candidate_tracker/67657705627_RESUME FINAL .pdf', NULL, NULL, '2020-11-02', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 03:50:29', 50, '2020-11-02 05:17:10', 0, NULL, 1),
(1651, 'sathish kumar.', '6', '9597431628', '9629754067', 'sathishsankar@gmail.com', '2000-01-09', 20, '2', '2', 'sankar', 'farmer', 10000.00, 1, 0.00, 15000.00, 'kodur', 'kodur', '2010310012', '1', '1', 'upload_files/candidate_tracker/63455433110_Bharat Scanner3 (1).pdf', NULL, NULL, '2020-11-02', 0, '', '5', '20', '1970-01-01', 0.00, '01:47 PM', '', '1970-01-01', '2', 'not fit,, interview by sudhakar', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 04:10:47', 7, '2020-11-02 06:23:32', 0, NULL, 1),
(1652, 'Sriniketh V', '13', '9004261816', '', 'srinikethvenkatesh@gmail.com', '1997-05-01', 23, '2', '2', 'Venkatesh R', 'Fresher', 100000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2010310013', '1', '1', 'upload_files/candidate_tracker/83995736671_Resume_2020-08-26.pdf', NULL, NULL, '2020-11-02', 0, '', '8', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'left before interview', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 04:34:05', 50, '2020-11-02 12:30:50', 0, NULL, 1),
(1653, '', '0', '9003272607', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 05:33:22', 0, NULL, 0, NULL, 1),
(1654, '', '0', '9092810343', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 05:50:47', 0, NULL, 0, NULL, 1),
(1655, 'M.Deepa priya', '11', '9080324060', '7200726711', 'deepapriya2k16@gmail.com', '1996-07-03', 24, '2', '2', 'G.Makunthu', 'MBA', 25000.00, 1, 18000.00, 18000.00, 'Tiruvannamalai', 'Chennai', '2010310016', '1', '2', 'upload_files/candidate_tracker/89608626551_DEEPA_Resume.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'Not Okay With Our Terms And Conditions', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 06:05:35', 50, '2020-11-02 11:49:39', 0, NULL, 1),
(1656, '', '0', '7092274951', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 06:06:38', 0, NULL, 0, NULL, 1),
(1657, 'Chandru. P', '11', '8838508437', '6384352633', 'Pmchandru1999@gmail.com', '1999-03-10', 21, '1', '2', 'Palani. K', 'Farmar', 5000.00, 2, 0.00, 15000.00, 'Keezhkothapakkam', 'Keezhkothapakkam', '2010310018', '', '1', 'upload_files/candidate_tracker/80850437604_ file name.PDF', NULL, NULL, '2020-11-02', 0, '6673', '5', '24', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', 'not fit for our profile', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 06:26:45', 1, '2020-11-02 01:11:21', 0, NULL, 1),
(1658, 'bala murugan', '3', '8870753937', '9894297367', 'vrbala123@gmail.com', '1989-05-17', 31, '2', '1', 'rajavelu', 'farmer', 30000.00, 1, 25000.00, 27000.00, 'periyakulam', 'velacherrychennai', '2010310019', '1', '2', 'upload_files/candidate_tracker/42110043042_CV.docx', NULL, NULL, '2020-11-02', 20, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 06:26:59', 50, '2020-11-02 05:17:20', 0, NULL, 1),
(1659, 'kanimozhi c', '11', '9789899317', '', 'kani.981213@gmail.com', '1998-12-13', 21, '2', '2', 'chelladurai a', 'business', 20000.00, 4, 0.00, 13000.00, 'tondiarpet', 'tondiarpet', '2010310020', '1', '1', 'upload_files/candidate_tracker/20806535727_kaniresumec.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'fresher and no idea about the profile and no knowledge. ', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-10-31 06:27:48', 50, '2020-11-02 11:05:01', 0, NULL, 1),
(1660, 'Sathish kumar', '6', '9507431628', '9629754067', 'Sathishsankar524@gmail.com', '2000-01-09', 20, '2', '2', 'Sankar', 'Farmar', 5000.00, 1, 0.00, 15000.00, 'Kodur', 'Kodir', '2010310021', '1', '1', 'upload_files/candidate_tracker/32190835986_ss.pdf', NULL, NULL, '2020-11-02', 0, '', '6', '', '1970-01-01', 0.00, '12:35 PM', '', '1970-01-01', '2', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 06:38:40', 50, '2020-11-02 02:52:02', 50, '2020-11-02 03:05:46', 0),
(1661, 'Nandhini Karthikeyan', '11', '7904181974', '9551513874', 'nandhinikarthikeyan0@gmail.com', '1998-02-20', 22, '2', '2', 'Karthikeyan P', 'Employee', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2010310022', '1', '1', 'upload_files/candidate_tracker/96926269927_Nandhu resume.docx', NULL, '1', '2021-12-23', 0, '', '10', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2020-10-31 07:25:16', 64, '2021-12-22 06:17:15', 0, NULL, 1),
(1662, '', '0', '7094701653', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2010310023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 08:20:45', 0, NULL, 0, NULL, 1),
(1663, 'Ramesh k', '13', '9080440049', '', 'kramesh101999@gmail.com', '1999-04-10', 21, '1', '2', 'Kandasamy', 'Wage worker', 12000.00, 2, 0.00, 10000.00, '52,EastStreet,Uppidamangalam,(po),Karur-639114', '52,EastStreet,Uppidamangalam,(Po),Karur-639114', '2010310024', '', '1', 'upload_files/candidate_tracker/36127834682_ramesh.pdf', NULL, NULL, '2020-11-05', 0, 'Nandhini', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-10-31 10:02:18', 50, '2020-11-05 06:12:42', 0, NULL, 1),
(1664, '', '0', '6382801917', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011010001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-01 11:46:47', 0, NULL, 0, NULL, 1),
(1665, 'aswin balasundaran', '11', '9994574149', '', 'aswindfgg@gmail.com', '1994-01-03', 26, '2', '2', 'balasundaran', 'retired teacher', 600000.00, 1, 0.00, 1.00, 'chennai', 'chennai', '2011020001', '1', '1', 'upload_files/candidate_tracker/56315816715_Aswin-B.pdf', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Profile Will Not Match For \nHR, No Relevant Exp And Exp Sal Is 15K+', '6', '2', '', '', '', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2020-11-02 07:44:04', 60, '2020-12-24 10:45:39', 0, NULL, 1),
(1666, 'Helka selvam', '11', '9344895425', '9943443855', 'helkaselvi1997@gmail.com', '1997-05-16', 23, '2', '2', 'Selvam K', 'Farmer', 100000.00, 1, 17500.00, 20000.00, 'No.358, Nookambadi, Chennai-606 752.', 'No.2/7, Ramapuram, Chennai-600 086.', '2011020002', '1', '2', 'upload_files/candidate_tracker/87035509786_Helka Resume.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Profile Will Not Match For \nHR, No Relevant Exp And Exp Sal Is 15K+', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-02 09:58:01', 58, '2020-12-23 12:14:38', 0, NULL, 1),
(1667, 'Pavithra k', '4', '9940272961', '9600165399', 'pavithrakumar888@gmail.com', '2000-05-17', 20, '1', '2', 'Kumar k', 'Mechanic', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2011020003', '', '1', 'upload_files/candidate_tracker/38834090516_pavithra resume.docx', NULL, NULL, '2020-11-02', 0, '5621', '3', '8', '2020-11-05', 120000.00, '11:00 AM', '6', '2021-03-26', '2', '10k for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 10:00:47', 7, '2020-11-03 05:18:05', 0, NULL, 1),
(1668, 'D. Monisha', '4', '8754559461', '7010986238', 'Monishadandapanimonisha07@gmail.com', '1999-01-07', 21, '1', '2', 'S. Dhandapani', 'Driver', 15000.00, 1, 0.00, 18000.00, 'No16/28, kannanstreet, korukkupet, ch-21', 'No16/28,kannanstreet korukkupet, ch-21', '2011020004', '', '1', 'upload_files/candidate_tracker/90733073687_Monisha Resume..doc', NULL, NULL, '2020-11-02', 0, 'P1092', '5', '8', '1970-01-01', 0.00, '10:31 AM', '', '1970-01-01', '2', 'no response will not join', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 10:18:29', 50, '2020-11-02 10:42:45', 0, NULL, 1),
(1669, 'Chandrasekar', '21', '9940258569', '6382286772', 'ncschandra7797@gmail.com', '1997-07-07', 23, '2', '2', 'Niranjan', 'Security', 10000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2011020005', '1', '2', 'upload_files/candidate_tracker/92289669810_Sekar-Resume Nov2020.docx', NULL, NULL, '2020-11-03', 0, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He know basics but expecting 25k gross', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 10:26:48', 1, '2020-11-02 10:32:02', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1670, 'Dharani M', '4', '7449107439', '9380909462', 'dharums3@gmail.com', '1999-05-05', 21, '2', '2', 'Murali N', 'Self employer', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011020006', '1', '1', 'upload_files/candidate_tracker/63458488028_RESUME_DHARANI M.pdf', NULL, NULL, '2020-11-03', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Sustain Because She Already Have Offer In Tech Mahindra 16 K Salary..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 10:45:07', 50, '2020-11-03 02:02:24', 0, NULL, 1),
(1671, 'JAYAVIGNESH', '6', '9840276258', '8667246446', 'jaivignesh80@gmail.com', '1995-05-20', 25, '1', '2', 'R.VEERAMANI', 'Security', 25000.00, 1, 16000.00, 18000.00, 'Thirunindravur', 'Nungambakkam', '2011020007', '', '2', 'upload_files/candidate_tracker/59677729375_1604295884619_CV-1.doc', NULL, NULL, '2020-11-02', 0, '5523', '3', '8', '2020-11-03', 216000.00, '11:15 AM', '6', '2021-04-01', '1', '18K for Suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 11:08:28', 7, '2020-11-02 06:08:22', 0, NULL, 1),
(1672, 'seethapathi', '11', '7397418357', '', 'seethapathiselvaraj@gmail.com', '1996-12-07', 23, '2', '2', 'selvaraj', 'driving', 20000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2011020008', '1', '1', 'upload_files/candidate_tracker/73641497661_Sample PDF.pdf', NULL, NULL, '2020-11-07', 0, '', '3', '8', '2020-11-09', 151800.00, '11:22 AM', '5', '1970-01-01', '1', '12K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 11:15:54', 7, '2020-11-08 01:51:26', 0, NULL, 1),
(1673, 'Jayavarshini Manoharan', '11', '9944705264', '', 'jaya.varshini19@gmail.com', '1994-01-19', 26, '3', '2', 'Homemaker', 'Business', 10000.00, 2, 12000.00, 15000.00, 'Chennai', 'Saligramam', '2011020009', '', '2', 'upload_files/candidate_tracker/880644627_jayresume1020.pdf', NULL, NULL, '2020-11-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:31 AM', '', '1970-01-01', '1', 'will not join', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-02 11:24:07', 60, '2020-12-24 10:46:55', 0, NULL, 1),
(1674, 'Kirthika', '4', '7305450453', '9840351192', 'Kirthikaparthiban05@gmail.com', '1999-05-17', 21, '2', '2', 'Parthiban', 'Fresher', 150000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2011020010', '1', '1', 'upload_files/candidate_tracker/70322928715_kirthika', NULL, NULL, '2020-11-03', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'she already have offer in tech mahindra flipcart process 16 salary..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 11:31:55', 8, '2020-11-03 12:04:39', 0, NULL, 1),
(1675, 'Kannan', '5', '9597111449', '9042194406', 'ckannanias11@gmail.com', '1986-07-30', 34, '1', '2', 'Chandran', 'Passed away', 60000.00, 0, 30000.00, 30000.00, '71 kanniyapurm post natham road Dindgul 624308', '4 labbai street, alandur 16', '2011020011', '', '2', 'upload_files/candidate_tracker/53642356722_kannan resume.idfc(1).docx', NULL, NULL, '2020-11-04', 0, 'Nedunheliyan employee', '5', '51', NULL, 0.00, '03:16 PM', '0', NULL, '1', 'rejected', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 11:32:38', 1, '2020-11-04 01:17:21', 0, NULL, 1),
(1676, 'Sathya R', '11', '8939662382', '9789747438', 'sathyasamu1998@gmail.com', '1997-06-08', 23, '2', '2', 'Raja p', 'Farmer', 100000.00, 2, 18000.00, 20000.00, 'No.68,T.M Road,Desur- 604 501', 'No.2/7, Ramapuram, Chennai-600 086.', '2011020012', '1', '2', 'upload_files/candidate_tracker/49457198204_sathya resume new2.docx', NULL, NULL, '2020-11-02', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'profile will not match for \nHR, no relevant exp and exp sal is 15K+', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-02 11:46:24', 58, '2020-12-23 12:14:09', 0, NULL, 1),
(1677, 'R. Jansirani', '4', '7358655468', '8056774748', 'Ravijansiraniruku@gmail.com', '1997-06-23', 23, '2', '2', 'R. Ravi', 'Daily wager', 10000.00, 2, 0.00, 13000.00, 'Perungudi', 'Perungudi', '2011020013', '1', '2', 'upload_files/candidate_tracker/68828864929_1604301859930a47896858_pdf.pdf', NULL, NULL, '2020-11-02', 0, '', '3', '8', '2020-11-05', 132000.00, '01:01 PM', '6', '2020-11-30', '2', '11k for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 12:03:14', 7, '2020-11-03 05:22:30', 0, NULL, 1),
(1678, 'Roshini', '11', '9551449760', '', 'roshiniejothi@gmail.com', '1998-06-07', 22, '1', '2', 'Jothi', 'Driver', 180000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2011020014', '', '1', 'upload_files/candidate_tracker/38588760923_0_Resume.pdf', NULL, NULL, '2020-11-03', 0, 'Jobs', '5', '8', '2020-11-09', 151800.00, '11:04 AM', '2', '1970-01-01', '1', 'not okay with bond', '6', '2', '3', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 12:18:55', 7, '2020-11-09 01:36:33', 0, NULL, 1),
(1679, '', '0', '8355953946', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 12:29:17', 0, NULL, 0, NULL, 1),
(1680, '', '0', '9677297253', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 12:34:14', 0, NULL, 0, NULL, 1),
(1681, 'BALAJI P', '11', '7904055148', '9629313750', 'balajisanthoshbabu@gmail.com', '1995-12-23', 24, '2', '2', 'Parthasarathy', 'Business', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2011020017', '1', '1', 'upload_files/candidate_tracker/84617071027_Balaji RESUME.pdf', NULL, NULL, '2020-11-03', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 12:56:31', 7, '2020-11-03 05:12:09', 0, NULL, 1),
(1682, 'Dharani babu L', '5', '7395962774', '', 'dharani4246@gmail.com', '1986-11-15', 34, '1', '1', 'Saranya', 'Salarried', 20000.00, 0, 13000.00, 20000.00, 'Chennai City North', 'Chennai City North', '2011020018', '', '2', 'upload_files/candidate_tracker/22970352814_dharani.pdf', NULL, '1', '2021-11-01', 0, 'Jobs', '3', '59', '2021-12-03', 274000.00, '', '4', '2022-02-11', '1', 'Selected for RM Profile - Shanmugam Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Link sent to upload the documents', '', '', '', NULL, NULL, NULL, 1, '2020-11-02 02:40:06', 60, '2021-11-29 03:19:38', 0, NULL, 1),
(1683, 'Thippu Sulthan', '21', '7502760526', '', 'thippusulthan002@gmail.com', '1995-09-26', 25, '1', '2', 'Mohammad Sickandar', 'Business', 20000.00, 1, 10000.00, 15000.00, 'Tirunelveli', 'Chennai', '2011020019', '', '2', 'upload_files/candidate_tracker/68958481419_Thippu Sulthan 1.pdf', NULL, NULL, '2020-11-03', 0, '1', '5', '53', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', 'he know oly windows but expecting high sal', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 02:56:27', 7, '2020-11-03 12:08:53', 0, NULL, 1),
(1684, 'Velmurugan', '21', '9884955488', '9655931012', 'gvelmurugancs1996@gmail.com', '1996-06-12', 24, '2', '2', 'Govindasamy', 'Formar', 13000.00, 3, 13000.00, 15000.00, 'Ariyalur', 'Chennai, vadapalani', '2011020020', '1', '2', 'upload_files/candidate_tracker/89056216882_CVR.docx', NULL, NULL, '2020-11-04', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 04:44:10', 1, '2020-11-02 04:50:55', 0, NULL, 1),
(1685, '', '0', '8660523315', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 05:01:15', 0, NULL, 0, NULL, 1),
(1686, 'Yogapriyadharshini N', '11', '9626645097', '', 'yogapriyadharshinin12@gmail.com', '1994-12-24', 25, '2', '1', 'Mr .Varun Priyan. R', 'Societe generale bank', 40000.00, 0, 15000.00, 15000.00, '5/9secomd St,Vedatham colony, Tambaram sanatorium', '5/9secomd St,Vedatham colony, Tambaram', '2011020022', '1', '2', 'upload_files/candidate_tracker/49049952419_cv yogapriya 2020.docx', NULL, NULL, '2020-11-03', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '6', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-02 05:06:56', 1, '2020-11-02 05:22:34', 0, NULL, 1),
(1687, 'pavithra', '4', '6363025592', '', 'pavisunil711@gmail.com', '1996-05-11', 24, '2', '1', 'sunil raj', 'delivery executive', 40000.00, 0, 24000.00, 24000.00, 'ulssor', 'ulsoor', '2011020023', '7', '2', 'upload_files/candidate_tracker/9119297341_Pavithra-CRM-CAFS.pdf', NULL, NULL, '2020-11-03', 0, '', '3', '8', '2020-11-09', 264000.00, '03:00 PM', '5', '1970-01-01', '2', '22K for Sathish team', '1', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 05:09:49', 7, '2020-11-07 05:52:03', 0, NULL, 1),
(1688, 'Padmavathy', '11', '7395907691', '7358184727', 'sakshisakshi511@gmail.com', '1996-05-11', 24, '3', '2', 'Sankaran', 'Temple priest', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2011020024', '', '1', 'upload_files/candidate_tracker/69578468628_New updated resume.pdf', NULL, NULL, '2020-11-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'will not suite for REc, her reason for relieving is not convincing.', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-02 06:03:10', 60, '2020-12-24 10:48:10', 0, NULL, 1),
(1689, 'Ashwini Ravi', '4', '6374089477', '', 'Ashwiniravi1121@gmail.com', '1998-11-29', 21, '1', '2', 'Ravi', 'Interior designer', 40000.00, 1, 13000.00, 18000.00, 'Velachery', 'Velachery', '2011020025', '', '2', 'upload_files/candidate_tracker/74462981803_CV_2020-08-20-124806.pdf', NULL, NULL, '2020-11-03', 0, 'Ehrs008', '5', '21', NULL, 0.00, '11:30 AM', '0', NULL, '2', '18k above sal exp , for crm...', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 07:09:58', 1, '2020-11-02 07:23:54', 0, NULL, 1),
(1690, '', '0', '8220306474', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 07:33:00', 0, NULL, 0, NULL, 1),
(1691, '', '0', '8778909027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011020027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-02 07:52:46', 0, NULL, 0, NULL, 1),
(1692, '', '0', '9941165713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 10:28:25', 0, NULL, 0, NULL, 1),
(1693, 'Balamurugan.s', '6', '9344823465', '9489302011', 'balamuruganrsooo@gmail.com', '2000-02-12', 20, '1', '2', 'Shetu.v', 'Farmer', 30000.00, 1, 0.00, 16000.00, 'Kallakurichi', 'Choolai medu', '2011030002', '', '1', 'upload_files/candidate_tracker/25787921555_bala Resume Final.pdf', NULL, NULL, '2020-11-03', 0, '5451', '5', '19', NULL, 0.00, '11:01 AM', '0', NULL, '1', 'looking for Crm', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 10:52:47', 1, '2020-11-03 11:01:57', 0, NULL, 1),
(1694, 'Latha', '13', '7092286353', '9677289220', 'platha343@gmail.com', '1995-05-07', 25, '2', '2', 'Poovan (late)', 'Late', 12000.00, 2, 8000.00, 16000.00, 'Ramanathapuram', 'Chennai', '2011030003', '1', '2', 'upload_files/candidate_tracker/25365267646_Latha_resume.pdf', NULL, NULL, '2020-11-03', 0, '', '3', '8', '2020-11-27', 168000.00, '11:56 AM', '', '1970-01-01', '2', '14k ctc for it', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 11:26:55', 1, '2020-11-27 01:28:00', 0, NULL, 1),
(1695, 'K. Rubalakshmi', '4', '7708575871', '8610941130', 'rubysparkle97@gmail.com', '1997-12-24', 22, '2', '2', 'K. Kannan', 'Tailor', 15000.00, 1, 0.00, 12000.00, 'Triplcane', 'Triplcane', '2011030004', '1', '1', 'upload_files/candidate_tracker/22449531211_updated ruby resume .pdf', NULL, NULL, '2020-11-03', 0, '', '5', '21', '1970-01-01', 0.00, '11:38 AM', '', '1970-01-01', '2', 'pronounciation problem , no flow in words', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-03 11:28:54', 58, '2020-12-29 10:01:08', 0, NULL, 1),
(1696, 'Vignesh', '11', '9952849469', '', 'Viki.key.1997@gmail.com', '1997-09-13', 23, '3', '2', 'Sureshkumar', 'Business', 25000.00, 1, 0.00, 15000.00, 'No:204 Shanthi nagar 4th Street chrompet', 'Chennai', '2011030005', '', '1', 'upload_files/candidate_tracker/70206596472_viki,.docx', NULL, NULL, '2020-11-03', 0, '', '5', '8', '1970-01-01', 0.00, '12:05 PM', '', '1970-01-01', '1', 'his pronunciation is not good and will not suite for rec.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 11:51:42', 7, '2020-11-03 12:19:39', 0, NULL, 1),
(1697, 'PERUMAL R', '21', '9345817880', '', 'perumalrathinavel98@gmail.com', '1997-10-12', 23, '2', '2', 'RATHINAVEL', 'Working in HEF GROUPS', 27000.00, 1, 15000.00, 18000.00, 'maraimalaiNagar, chengalpattu-603209 district', 'alaiNagar, chengalpattu-603209 district', '2011030006', '1', '2', 'upload_files/candidate_tracker/74458249496_PERUMAL.pdf', NULL, NULL, '2020-11-03', 0, '', '5', '8', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '1', 'no update for his profile ', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 11:52:26', 7, '2020-11-03 12:50:30', 0, NULL, 1),
(1698, 'Brahadeesh Kumar', '11', '9444213249', '', 'cskcpcl@gmail.com', '1998-05-06', 22, '3', '2', 'Suresh kumar', 'Business', 20000.00, 1, 0.00, 10000.00, 'No. 9 munsamy street chrompet chennai', 'Chennai', '2011030007', '', '1', 'upload_files/candidate_tracker/65446790151_brahadeesh sap certified resume.pdf', NULL, NULL, '2020-11-03', 0, '', '3', '8', '2020-11-09', 1518000.00, '12:10 PM', '5', '1970-01-01', '1', '12K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 12:07:02', 7, '2020-11-08 01:50:57', 0, NULL, 1),
(1699, 'test', '11', '9080902529', '', '', '1991-01-29', 29, '2', '2', 'test', 'test', 25000.00, 2, 0.00, 20000.00, 'kodambakkam', 'chennai', '2011030008', '1', '2', 'upload_files/candidate_tracker/93610049344_Plain.docx', NULL, NULL, '2020-11-03', 30, '', '6', '0', NULL, 0.00, '03:31 PM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 01:31:19', 1, '2020-11-03 03:13:53', 0, NULL, 1),
(1700, 'Vignesh waran', '13', '8760171335', '', 'Iamvickyveerasoft@gmail.com', '1991-05-20', 29, '2', '2', 'Sellakkannu', 'Driver', 15000.00, 1, 40000.00, 60000.00, 'NAGAPATTINAM', 'Chennai', '2011030009', '1', '2', 'upload_files/candidate_tracker/43026990919_Resume (1).pdf', NULL, NULL, '2020-11-04', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 02:57:33', 50, '2020-11-04 06:15:53', 0, NULL, 1),
(1701, 'jeni test', '11', '0123456789', '9876543210', 'jungleted0294', '1998-02-08', 22, '1', '2', 'john', 'teacher', 475000.00, 1, 0.00, 15000.00, 'chennai', 'Chennai', '2011030010', '', '1', 'upload_files/candidate_tracker/51619871014_NAUKRI timing.docx', NULL, NULL, '2020-12-03', 0, 'jennifer', '6', '0', NULL, 0.00, '02:46 PM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 03:10:21', 1, '2020-12-03 02:47:05', 0, NULL, 1),
(1702, '', '0', '9962170422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 03:17:52', 0, NULL, 0, NULL, 1),
(1703, '', '0', '7397294569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 03:27:37', 0, NULL, 0, NULL, 1),
(1704, 'Asha Devi', '11', '8667374810', '9841567052', 'K.ashadevi1997@gmail.com', '1997-09-21', 23, '2', '2', 'Kamaraj', 'Sales man', 180000.00, 1, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2011030013', '1', '1', 'upload_files/candidate_tracker/73032214832_Asha resume.docx', NULL, NULL, '2020-11-04', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-03 04:49:20', 50, '2020-11-04 06:23:57', 0, NULL, 1),
(1705, '', '0', '9791105651', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 05:28:47', 0, NULL, 0, NULL, 1),
(1706, 'Jayashanthi', '5', '9384188127', '9941107705', 'Jayashanthi57@gmail.com', '1998-02-08', 23, '2', '2', 'Gandhimathi', 'Working', 14000.00, 1, 13000.00, 15000.00, 'Kotivakam', 'Kotivakam', '2011030015', '1', '2', 'upload_files/candidate_tracker/64695902528_CV-JAYASHANTHI.pdf', NULL, '1', '2021-07-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-03 06:13:13', 1, '2021-07-13 11:05:49', 0, NULL, 1),
(1707, '', '0', '8072424163', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 06:15:14', 0, NULL, 0, NULL, 1),
(1708, 'Anuja', '6', '9597637140', '7305690845', 'Anuja.sjm1998@gmail.com', '1998-07-17', 22, '2', '2', 'Pannir selvam M', 'Telecaller', 25000.00, 4, 13000.00, 16000.00, '13 pudhu colony Elavanasurkottai villupuram 607202', '47 ranga street, tambaram sanatorium Chennai 47', '2011030017', '3', '2', 'upload_files/candidate_tracker/78854589527_Anuja .pdf', NULL, NULL, '2020-11-04', 0, '', '5', '19', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'not fit for sale', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 06:47:49', 7, '2020-11-04 11:41:51', 0, NULL, 1),
(1709, 'Suganya s', '11', '9080142448', '7358164548', 'swethadazzling22@gmail.com', '1996-11-22', 23, '3', '2', 'Sankar.s', 'Harbor contractor', 100000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2011030018', '', '2', 'upload_files/candidate_tracker/97311920825_Suganya.docx', NULL, NULL, '2020-11-05', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 08:33:22', 50, '2020-11-05 06:12:50', 0, NULL, 1),
(1710, '', '0', '8925600360', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011030019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-03 09:08:21', 0, NULL, 0, NULL, 1),
(1711, 'TAMILARASAN', '6', '8072259468', '', 'Mtamilarasan70@gmail.com', '1997-10-13', 23, '1', '2', 'Murugan', 'Daily wages', 9000.00, 2, 13700.00, 18000.00, 'Chengalpet', 'Chengalpet,padalam', '2011040001', '', '2', 'upload_files/candidate_tracker/95718964305_Tamilarasan.pdf', NULL, NULL, '2020-11-04', 0, '2011040001', '6', '0', NULL, 0.00, '03:00 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 08:13:39', 1, '2020-11-04 08:22:58', 0, NULL, 1),
(1712, 'tarwin sa', '21', '9159650110', '', 'tarwin.mani@gmail.com', '1995-05-18', 25, '2', '2', 'allexander s', 'dinamalar - reporter', 30000.00, 1, 0.00, 15000.00, 'vadugarpet - trichy', 'guindy - chennai', '2011040002', '1', '1', 'upload_files/candidate_tracker/62389012683_Resume_tarwin.pdf', NULL, NULL, '2020-11-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 11:18:57', 50, '2020-11-05 05:47:03', 0, NULL, 1),
(1713, 'Ameer Sulthan S', '6', '9791142952', '9710472994', 'ameersulthan3896@gmail.com', '1996-08-07', 24, '2', '2', 'Dilshed bagum D', 'House keeper', 3000.00, 0, 10000.00, 15000.00, 'Chennai', 'Chennai', '2011040003', '1', '2', 'upload_files/candidate_tracker/71781356255_AMEER NEW RESUME UPDATED 21-04-19.docx', NULL, NULL, '2020-11-04', 0, '', '5', '57', '1970-01-01', 0.00, '12:45 PM', '', '1970-01-01', '2', 'he is not good for sales .. voice is not clear ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 11:45:30', 7, '2020-11-04 01:49:02', 0, NULL, 1),
(1714, 'Abdul Rehman', '6', '9092058959', '', 'abdulrehman85509@gmail.com', '1999-07-07', 21, '1', '2', 'Umar Farook', 'Nil', 20000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2011040004', '', '2', 'upload_files/candidate_tracker/33278495342_Document (2).pdf', NULL, NULL, '2020-11-04', 0, '2506', '3', '8', '2020-11-09', 204000.00, '11:56 AM', '3', '2021-01-02', '2', '17K for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 11:52:56', 7, '2020-11-07 05:51:20', 0, NULL, 1),
(1715, 'Jeevitha', '4', '9944959159', '', 'Kaavijeeva1987@gmail.com', '1992-01-06', 28, '2', '2', 'Sekar v', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Thiruthuraipoondi', 'Koyambedu', '2011040005', '1', '1', 'upload_files/candidate_tracker/4692813701_Jeevitha_S_Updated(1)(1)(1).pdf', NULL, NULL, '2020-11-04', 0, '', '5', '21', NULL, 0.00, '12:03 PM', '0', NULL, '2', 'already rejected candidate', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 12:00:27', 1, '2020-11-04 12:04:25', 0, NULL, 1),
(1716, 'Annamalai Rupesh Kumar', '5', '8939434609', '', 'tharun12317@gmail.com', '1993-05-19', 27, '2', '2', 'Ramesh kumar', 'Cheif mechanic', 70000.00, 1, 20000.00, 20000.00, 'Chennai', 'Chennai', '2011040006', '1', '2', 'upload_files/candidate_tracker/36127499973_1601651880301_Annamalai', NULL, NULL, '2020-11-04', 0, '', '3', '8', '2020-11-16', 258000.00, '12:21 PM', '5', '1970-01-01', '1', '21.5K for lokesh team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 12:16:34', 7, '2020-11-12 03:51:51', 0, NULL, 1),
(1717, 'B. abirami', '13', '7092670953', '7339221198', 'abisharm2001@gmail.com', '1995-09-20', 25, '2', '2', 'V. Babu', 'Mason', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2011040007', '1', '1', 'upload_files/candidate_tracker/71822991031_Abi resume-converted.pdf', NULL, NULL, '2020-11-05', 0, '', '5', '27', '1970-01-01', 0.00, '10:31 AM', '', '1970-01-01', '2', 'Task Incompleted.', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 01:05:51', 50, '2020-11-05 10:37:01', 0, NULL, 1),
(1718, 'Praveenraj', '13', '9600666387', '8148615843', 'praveenrajgold96@gmail.com', '1996-05-04', 24, '2', '2', 'Thangaraj', 'Farmer\'s', 10000.00, 1, 0.00, 10000.00, 'Tiruvannamalai', 'Chennai', '2011040008', '1', '1', 'upload_files/candidate_tracker/39842517080_praveenraj php.pdf', NULL, NULL, '2020-11-04', 0, '', '5', '28', NULL, 0.00, '01:22 PM', '0', NULL, '1', 'Not strong in Basic Php skills', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 01:10:28', 1, '2020-11-04 01:16:00', 0, NULL, 1),
(1719, 'Vigneshwari M', '11', '9894581477', '7397458175', 'vigneshwarimani08@gmail.com', '1997-08-23', 23, '2', '2', 'P. K. Mani', 'Farmer', 25000.00, 3, 0.00, 15000.00, 'Pennakonam, Perambalure (D. t)', 'Nagalakshmi Salai, Pallavaram, Chennai', '2011040009', '1', '1', 'upload_files/candidate_tracker/27126759769__Vigneshwari resume07.docx', NULL, NULL, '2020-11-05', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'will not join bcoz of bond', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2020-11-04 01:38:53', 60, '2020-12-24 10:49:21', 0, NULL, 1),
(1720, 'Rehan maniyar', '5', '8310281258', '8904401724', 'rehaanmaniyar1234@gmail.com', '1994-07-08', 26, '1', '2', 'Riyaz maniyar', 'Business man', 40000.00, 1, 0.00, 25000.00, 'Sultanpalya main road banglore', 'Sultanpalya main Road banglore', '2011040010', '', '1', 'upload_files/candidate_tracker/18752348439_mba 2019 resume_09-Dec-19_16.27.57.docx', NULL, NULL, '2020-11-04', 0, '5326', '5', '8', NULL, 0.00, '01:30 PM', '0', NULL, '1', 'no response', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 01:52:35', 1, '2020-11-04 02:18:58', 0, NULL, 1),
(1721, 'k.vijaya kumar', '4', '9944022573', '8220297909', 'kv2902@gmail.com', '1996-02-29', 24, '2', '2', 'father kanni kumar', 'cooli', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2011040011', '1', '1', 'upload_files/candidate_tracker/22455459887_update resume K. VIJAYA KUMAR.doc', NULL, NULL, '2020-11-04', 0, '', '5', '21', '1970-01-01', 0.00, '02:01 PM', '', '1970-01-01', '2', 'he worked at hotel industry .. he is not sui ', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 01:56:00', 50, '2020-11-04 02:55:04', 0, NULL, 1),
(1722, 'Sriniketh V', '20', '8778374880', '', 'sriniketh.vr@gmail.com', '1997-05-01', 23, '2', '2', 'Venkatesh R', 'Fresher', 100000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2011040012', '1', '1', 'upload_files/candidate_tracker/54403976303_Resume-CV- 2020-11-04.pdf', NULL, NULL, '2020-11-05', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 02:26:23', 50, '2020-11-05 06:12:59', 0, NULL, 1),
(1723, '', '0', '6382760058', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011040013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 03:10:03', 0, NULL, 0, NULL, 1),
(1724, '', '0', '9361453182', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011040014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 04:59:22', 0, NULL, 0, NULL, 1),
(1725, 'rosheni', '11', '9840096863', '9840788248', 'riyarosh04@gmail.com', '1998-07-04', 22, '1', '2', 'venkata subramaniam', 'financial Consultant', 80000.00, 1, 0.00, 20000.00, 'vadapalani', 'Vadapalani', '2011040015', '', '1', 'upload_files/candidate_tracker/96586589074_resume 1-converted.pdf', NULL, NULL, '2020-11-05', 0, 'Levelup STC', '3', '8', '2020-11-09', 151800.00, '11:00 AM', '5', '1970-01-01', '2', '12k for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 05:50:29', 7, '2020-11-09 01:35:43', 0, NULL, 1),
(1726, 'Shipravani RH', '11', '9080468402', '', 'shipravanirh@gmail.com', '1997-10-02', 23, '2', '2', 'Harianandan RK', 'Retired JE', 16000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2011040016', '1', '1', 'upload_files/candidate_tracker/86493201261_Shipravani R H (RESUME).pdf', NULL, NULL, '2020-11-05', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not join long distance.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 06:00:38', 50, '2020-11-05 10:25:50', 0, NULL, 1),
(1727, 'divya arun prabhakaran', '11', '9344264506', '', 'divya.srinivasan1606@gmail.com', '1996-06-16', 24, '3', '1', 'arun prabhakaran', 'senior sales advisor', 25000.00, 1, 0.00, 18000.00, 'tambaram', 'Tambaram', '2011040017', '', '1', 'upload_files/candidate_tracker/56434204962_Divya8.resume(1).pdf', NULL, NULL, '2020-11-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 06:07:31', 50, '2020-11-05 06:13:06', 0, NULL, 1),
(1728, 'Aparnna PR', '5', '9941247307', '9080142358', 'aparnna.pr1@gmail.com', '1985-11-07', 34, '1', '1', 'P Ramachandran', 'Retired', 2000.00, 2, 490000.00, 650000.00, 'Selaiyur', 'Selaiyur', '2011040018', '', '2', 'upload_files/candidate_tracker/85337348834_Aparnna PR - Resume.docx', NULL, NULL, '2020-11-05', 0, 'Jayakumar, levelup consultancy', '8', '', '1970-01-01', 0.00, '11:33 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 06:08:51', 50, '2020-11-05 06:13:16', 0, NULL, 1),
(1729, 'K.Elakya', '11', '9941060620', '8838086990', 'elakyaraj94@gmail.com', '1994-12-03', 25, '1', '2', 'R.Kanagaraj', 'Clearing clerk', 10000.00, 2, 25000.00, 30000.00, 'Tambaram', 'Tambaram', '2011040019', '', '2', 'upload_files/candidate_tracker/69959837587_Elakya Resume.docx', NULL, NULL, '2020-11-05', 0, 'Levelup STC', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'No relevant experience, but expected 30k', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 06:14:27', 50, '2020-11-05 12:33:45', 0, NULL, 1),
(1730, 'Madhan S', '11', '7010541810', '', 'madhankrish48@gmail.com', '1995-10-19', 25, '2', '2', 'Suresh KB', 'clerk', 20000.00, 0, 17500.00, 20000.00, 'Chennai', 'Chennai', '2011040020', '1', '2', 'upload_files/candidate_tracker/52807821988_MadhanS_TalentAcquisitionIT.pdf', NULL, NULL, '2020-11-05', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-04 06:48:10', 1, '2020-11-04 06:54:27', 0, NULL, 1),
(1731, 'KEERTHANA RAMESH', '11', '6382949037', '6383242188', 'keerthurmsh@gmail.com', '1999-01-24', 21, '2', '2', 'Ramesh', 'Auto driver', 20000.00, 1, 13300.00, 15000.00, 'Chennai', 'Chennai', '2011040021', '1', '2', 'upload_files/candidate_tracker/49033556512_RESUME.pdf', NULL, NULL, '2020-11-05', 3, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2020-11-04 07:02:14', 60, '2020-12-24 10:50:06', 0, NULL, 1),
(1732, 'amana salih navas', '11', '8129579696', '', '', '1997-02-16', 23, '2', '1', 'aboobacker siddique', 'general manager', 50000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2011040022', '13', '1', 'upload_files/candidate_tracker/59051501966_160275759505739.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '2', 'Will not sustain for a long', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 10:47:34', 7, '2020-11-07 03:42:41', 0, NULL, 1),
(1733, 'Nivetha V', '11', '7558158611', '9597239122', 'nivethavjkumar@gmail.com', '1997-09-09', 23, '2', '2', 'Vijayakumar J', 'Building contractor', 30000.00, 1, 18000.00, 20000.00, 'Urapaakam', 'Urapaakam', '2011040023', '1', '2', 'upload_files/candidate_tracker/13958751011_CV.pdf', NULL, '1', '2022-04-29', 0, '', '5', '59', NULL, 0.00, '02:00 PM', '0', NULL, '2', 'Communication ok, Too long Distance she is from urapakkam around 56 KMS up and down, she left the previous exp due to the long distance(Teynampet),will not sustain for a long,have a plan to go with PHD in abroad', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2020-11-04 11:21:40', 1, '2022-04-28 02:01:41', 0, NULL, 1),
(1734, 'Uma T', '11', '9789960155', '7550135708', 'Uma.thangaiyan@Gmail.Com', '1992-09-15', 28, '2', '1', 'Sathish', 'Accounting and finance', 100000.00, 1, 250000.00, 330000.00, 'Chennai', 'Chennai', '2011040024', '13', '2', 'upload_files/candidate_tracker/53395207807_Uma_Resume-converted.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'will not join, exp is 21 TH', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-04 11:44:15', 50, '2020-11-06 01:03:12', 0, NULL, 1),
(1735, '', '0', '9176244232', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011050001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 12:20:59', 0, NULL, 0, NULL, 1),
(1736, 'Sai rubini', '11', '9677016529', '', 'saisweety1108@gmail.com', '1997-08-11', 23, '2', '2', 'Baskaran s', 'Electrician', 30000.00, 1, 0.00, 15000.00, '11/162L.B.S street, G.K.Mcolony, Chennai-82', 'Chennai', '2011050002', '1', '1', 'upload_files/candidate_tracker/19526817298_sairubini resume.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '12:01 PM', '', '1970-01-01', '1', 'fresher, not fir for recruiter', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 01:24:28', 50, '2020-11-06 01:28:55', 0, NULL, 1),
(1737, 'Karthick', '11', '8778429892', '7299631422', 'smartkarthick5894@gmail.com', '1994-08-05', 26, '2', '2', 'Nandhakumar.r', 'Police', 45000.00, 3, 0.00, 18000.00, 'Chennai', 'Chennai', '2011050003', '13', '1', 'upload_files/candidate_tracker/60440315174_final resume-converted.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Exp salary is high and already holds 2 offer', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 05:29:03', 50, '2020-11-07 01:24:03', 0, NULL, 1),
(1738, '', '0', '7892897328', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011050004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 09:47:12', 0, NULL, 0, NULL, 1),
(1739, 'Sabasteen kumar', '5', '9884496292', '9962010217', 'Sabasteenhaaj@gmail.com', '1991-08-13', 29, '2', '2', 'Sekar', 'Retired', 26000.00, 1, 300000.00, 400000.00, 'Cuddalore', 'Chennai', '2011050005', '3', '2', 'upload_files/candidate_tracker/88937071724_Resume_Sabasteen-2020.pdf', NULL, NULL, '2020-11-05', 15, '', '8', '44', NULL, 0.00, '11:06 AM', '0', NULL, '1', 'Please check with him', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 10:53:17', 1, '2020-11-05 11:08:35', 0, NULL, 1),
(1740, 'Hariharan C B', '4', '9789831807', '', 'thecbhari@gmail.com', '1997-10-06', 23, '2', '2', 'Bala Subramanian.C.S', 'Business', 20000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2011050006', '1', '1', 'upload_files/candidate_tracker/61430063391_RESUME _cb2020(sept).pdf', NULL, NULL, '2020-11-06', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'expecting 18 k for crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 10:57:49', 50, '2020-11-06 05:54:39', 0, NULL, 1),
(1741, 'Daniel Sylvester', '11', '6383028204', '7299805329', 'sylvesterdaniel77@gmail.com', '1994-07-01', 26, '2', '1', 'Kezia karolina', 'Teacher', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2011050007', '1', '1', 'upload_files/candidate_tracker/48718267494_Updated Resume new.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'he s thnking for bond', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 11:52:16', 1, '2020-11-05 11:58:31', 0, NULL, 1),
(1742, 'Suganthi', '11', '9791437567', '9080678018', 'blessyspark24@yahoo.com', '1994-06-24', 26, '2', '2', 'MUNUSAMY', 'Driver', 40000.00, 0, 14175.00, 17000.00, 'CHENNAI', 'CHENNAI', '2011050008', '1', '2', 'upload_files/candidate_tracker/1984606009_0_SuganthiM _Recruitment consultant _RESUME.docx', NULL, NULL, '2020-11-06', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 12:05:47', 50, '2020-11-06 06:10:11', 0, NULL, 1),
(1743, 'Ramesh M', '11', '9840974005', '9080787645', 'ramesh98409740@gmail.com', '1998-03-12', 22, '2', '2', 'Mohan k', 'Barbershop', 25000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2011050009', '1', '1', 'upload_files/candidate_tracker/91128191619_my resume-converted.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Lake of communication, no confidence on speech', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 12:17:21', 50, '2020-11-06 10:51:40', 0, NULL, 1),
(1744, 'Gokul D', '6', '6381592451', '9445750823', 'gokul08761@gmail.com', '1996-08-13', 24, '2', '2', 'DuraiRaju', 'Icf', 15000.00, 1, 12000.00, 12000.00, 'Kolathur, Chennai', 'Kolathur, Chennai', '2011050010', '1', '2', 'upload_files/candidate_tracker/92531424730_GOKUL.pdf', NULL, NULL, '2020-11-05', 3, '', '5', '20', '1970-01-01', 0.00, '12:38 PM', '', '1970-01-01', '1', 'didnt respond for Telephonic interview', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 12:36:46', 50, '2020-11-05 12:50:45', 0, NULL, 1),
(1745, '', '0', '7708045413', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011050011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 01:04:58', 0, NULL, 0, NULL, 1),
(1746, 'B. Padma', '4', '9940566807', '', 'Pp8880094@Gmail.com', '2000-01-06', 20, '2', '2', 'P. Balaraman', 'Daily wager', 10000.00, 2, 0.00, 13000.00, 'N0.6/7, MGR Nagar Main road, Kovilambakam, Ch-129', 'N0.6/7, MGR Nagar Main Road, Kovilambakam, Ch-129', '2011050012', '1', '1', 'upload_files/candidate_tracker/71487300617_Padhma.pdf', NULL, NULL, '2020-11-05', 0, '', '5', '14', NULL, 0.00, '01:16 PM', '0', NULL, '2', 'not fit for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 01:06:19', 1, '2020-11-05 01:19:58', 0, NULL, 1),
(1747, 'K. Priyadharshni', '11', '8838219018', '8608203234', '', '1999-06-20', 21, '2', '2', 'R.Karthikeyan', 'Office admin', 50000.00, 0, 0.00, 15000.00, 'Ayapakkam', 'Ayapakkam', '2011050013', '1', '1', 'upload_files/candidate_tracker/41571503495_pd resume.docx', NULL, NULL, '2020-11-06', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 01:20:21', 50, '2020-11-06 06:10:23', 0, NULL, 1),
(1748, 'Rohini. P', '4', '6385103789', '', 'Rohinirohini22092@Gmail.com', '2000-04-19', 20, '2', '2', 'Planner Selvam. S', '100000', 10000.00, 2, 0.00, 13000.00, 'Perumbakkam', 'Chrompet', '2011050014', '1', '1', 'upload_files/candidate_tracker/1086383594_Rohi.pdf', NULL, NULL, '2020-11-05', 0, '', '5', '14', NULL, 0.00, '01:31 PM', '0', NULL, '2', 'looking for non voice or data entry .not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 01:21:57', 1, '2020-11-05 01:36:37', 0, NULL, 1),
(1749, 'Divya', '11', '7092417020', '', '', '1994-04-08', 26, '2', '2', 'Balakrishnan', 'Private gym manager', 40000.00, 1, 15000.00, 15000.00, 'Velachery', 'Madipakkam', '2011050015', '1', '2', 'upload_files/candidate_tracker/12046566046_Divya L B .pdf', NULL, NULL, '2020-11-06', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 02:31:30', 50, '2020-11-06 06:10:32', 0, NULL, 1),
(1750, 'Abdul nizamuddin Thoula', '20', '6383830556', '9500160655', 'mazinaalam@gmail.com', '1985-03-28', 35, '1', '1', 'Meeran mohideen', 'Sales', 40000.00, 0, 30000.00, 30000.00, 'Chennai', 'Chennai', '2011050016', '', '2', 'upload_files/candidate_tracker/38774486990_Nizam 2019 DEC 1.docx', NULL, NULL, '2021-02-11', 3, 'N', '8', '', '1970-01-01', 0.00, '10:33 AM', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-05 03:04:47', 50, '2021-02-11 04:44:47', 0, NULL, 1),
(1751, 'Encilatra Rajesh', '11', '7397458253', '', 'encilatra26@gmail.com', '1999-01-26', 21, '2', '2', 'rajesh', 'business', 30000.00, 1, 12000.00, 15000.00, 'madipakkam', 'madipakkam', '2011050017', '1', '2', 'upload_files/candidate_tracker/85145443061_Updated.pdf', NULL, NULL, '2020-11-06', 0, '', '3', '8', '2020-11-09', 151800.00, '11:00 AM', '5', '1970-01-01', '2', '12K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 03:35:44', 1, '2020-11-07 06:26:21', 0, NULL, 1),
(1752, 'Sunitha S', '11', '7010537064', '', 'Sunithasuresh41292@gmail.com', '1992-12-04', 27, '2', '1', 'Naveenkumar k', 'Admin Executive', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2011050018', '1', '2', 'upload_files/candidate_tracker/48160766997_sunitha resume.pdf', NULL, NULL, '2020-11-07', 0, '', '6', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 03:52:33', 50, '2020-11-06 06:08:44', 0, NULL, 1),
(1753, 'Dharanidharan', '11', '6374082715', '9659499878', 'dharaniece097@gmail.com', '1997-02-27', 23, '2', '2', 'Krishnamoorthy', 'Weaver', 40000.00, 1, 12000.00, 15000.00, 'No.2/198, saliyar street, Mokshakulam, Villupuram.', 'Creative homes, mudichur road, Tambaram.', '2011050019', '1', '2', 'upload_files/candidate_tracker/91541400408_dharanresumeupdated2.1.docx', NULL, NULL, '2020-11-06', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-05 04:14:47', 1, '2020-11-05 04:22:02', 0, NULL, 1),
(1754, '', '0', '9940157642', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011050020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 05:55:55', 0, NULL, 0, NULL, 1),
(1755, 'kishore', '5', '7871747409', '', 'kishore.bking@gmail.com', '1994-03-19', 26, '2', '2', 'Subramanian', 'Factory incharge', 40000.00, 0, 0.00, 27000.00, 'Chennai', 'Chennai', '2011050021', '3', '2', 'upload_files/candidate_tracker/34621841683_My Resume 2020- November .pdf', NULL, NULL, '2020-11-06', 0, '', '8', '29', NULL, 0.00, '12:07 PM', '0', NULL, '1', 'i have not met, dropped candidate ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-05 11:59:53', 1, '2020-11-06 12:08:31', 0, NULL, 1),
(1756, 'Dhayani', '11', '7338974695', '', 'dhayadevdd@gmail.com', '1996-06-05', 24, '2', '2', 'Devaraj', 'Welder', 30000.00, 1, 20000.00, 23000.00, 'Chennai', 'Chennai', '2011060001', '1', '2', 'upload_files/candidate_tracker/25092403200_dhayani resume pg.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'Not fir for this profile', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:33:51', 50, '2020-11-06 01:04:38', 0, NULL, 1),
(1757, 'Deepika harish', '11', '8056090404', '8925290906', 'rathinadeepika89@gmail.com', '1989-05-19', 31, '2', '1', 'harish', 'manager', 35000.00, 1, 216000.00, 312000.00, 'Chennai', 'Chennai', '2011060002', '13', '2', 'upload_files/candidate_tracker/32404444417_H.DEEPIKA.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '1', 'sustainability issue, 4yrs gap, UG, 21k demanding', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 09:01:12', 50, '2020-11-06 01:04:12', 0, NULL, 1),
(1758, 'N. Blessin Vimala', '11', '9840170590', '', 'Blessinvimala91@gmail.com', '1991-02-20', 29, '2', '1', 'A. Johnson', 'Team monitor-Operations', 20000.00, 0, 19000.00, 21000.00, '61/2 Adam shahib street', 'Chennai', '2011060003', '1', '2', 'upload_files/candidate_tracker/17012209908_Blessin Vimala N--Updated.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'no relevant experience', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 09:15:40', 50, '2020-11-06 01:12:57', 0, NULL, 1),
(1759, 'Vaishali Srinivasan', '11', '9710666955', '', 'vichitrasri1692@gmail.com', '1992-10-16', 28, '2', '1', 'umeshwar', 'cts', 150000.00, 0, 375000.00, 550000.00, 'chennai', 'chennai', '2011060004', '1', '2', 'upload_files/candidate_tracker/61415028051_VAISHALI SRINIVASAN- Resume.docx', NULL, NULL, '2020-11-07', 60, '', '5', '59', NULL, 0.00, '01:52 PM', '0', NULL, '1', 'Not ready for bond. High CTC exp,60 days notice', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 10:00:47', 1, '2020-11-07 01:52:44', 0, NULL, 1),
(1760, '', '0', '8072432063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 10:15:05', 0, NULL, 0, NULL, 1),
(1761, 'SELVA GOPAL G', '11', '9840246238', '8248039520', 'selvagopal84@gmail.com', '1984-05-25', 36, '2', '1', 'Gopal G', 'BUSINESS', 45000.00, 3, 45000.00, 50000.00, 'Madurai, Thirumangalam', 'Santhosa Puram , Chennai', '2011060006', '1', '2', 'upload_files/candidate_tracker/23532085208_Resume.docx', NULL, NULL, '2020-11-06', 15, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'not suit for our expectation', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 10:50:10', 1, '2020-11-06 11:05:39', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1762, 'pravin kumar', '11', '9840382864', '', 'pravinfreddy94@gmail.com', '1994-05-04', 26, '2', '2', 'mahalingam / late', 'supervisor', 40000.00, 2, 22000.00, 30000.00, 'poonamallee', 'poonamallee', '2011060007', '13', '2', 'upload_files/candidate_tracker/63758742636_Pravin kumar RESUME.docx', NULL, NULL, '2020-11-07', 0, '', '6', '0', NULL, 0.00, '01:30 PM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 11:04:50', 1, '2020-11-06 11:11:28', 0, NULL, 1),
(1763, 'Ranjith Kumar B', '11', '9094193102', '', 'ranjithsmartboy2@gmail.com', '1993-12-22', 26, '2', '2', 'Babu', 'Not working', 23200.00, 0, 23200.00, 25500.00, 'CHENNAI', 'CHENNAI', '2011060008', '13', '2', 'upload_files/candidate_tracker/9564389414_RK-HR.docx', NULL, NULL, '2020-11-07', 15, '', '5', '8', NULL, 0.00, '11:30 AM', '0', NULL, '1', 'SAlary exp is high and already holds 2 offer.', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 11:27:08', 1, '2020-11-06 11:32:49', 0, NULL, 1),
(1764, 'S Arulraj', '4', '8220695249', '', 'arul1893@gmail.com', '1993-06-30', 27, '1', '2', 'Sekaran', 'Retired person', 15.00, 1, 12.00, 14.00, 'Mannargudi', 'Pallikarunai', '2011060009', '', '2', 'upload_files/candidate_tracker/49380637544_Resume Arul.- SLS.pdf', NULL, NULL, '2020-11-06', 0, '5644', '5', '14', NULL, 0.00, '11:34 AM', '0', NULL, '1', 'Already working in non voice process only and not suitable for voice process', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 11:31:08', 1, '2020-11-06 11:38:36', 0, NULL, 1),
(1765, 'Revathi.S', '4', '9787565329', '', 'revathisankar44@gmail.com', '1999-04-04', 21, '2', '2', 'S.umamashewari', 'Housekeeping', 10000.00, 1, 0.00, 15000.00, 'Ammaiyagaram, chinnasalem', 'Alandur, Chennai', '2011060010', '1', '1', 'upload_files/candidate_tracker/51374157330_REVATHI SIVASANKARAN.docx', NULL, NULL, '2020-11-06', 0, '', '3', '8', '1970-01-01', 126000.00, '11:36 AM', '2', '1970-01-01', '2', '10.5K for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 11:32:22', 7, '2020-11-07 05:50:31', 0, NULL, 1),
(1766, 'Gayathri.V', '4', '8778708498', '9941804994', 'gayathrivelu2901@gmai.com', '1999-01-29', 21, '2', '2', 'Velu.C', 'Accountant', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011060011', '1', '1', 'upload_files/candidate_tracker/37931648708_GAYU RESUME-1.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '13', NULL, 0.00, '11:50 AM', '0', NULL, '2', 'ok but long distance', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 11:33:18', 1, '2020-11-06 11:51:29', 0, NULL, 1),
(1767, 'r.bhuvana', '11', '7010881298', '9176697527', 'bhuvanalovely@gmail.com', '1988-03-08', 32, '2', '1', 'c.mohan', 'civil', 50000.00, 0, 30000.00, 30000.00, 'pallavaram', 'pallavaram', '2011060012', '13', '2', 'upload_files/candidate_tracker/70404097846_Bhuvana. R.docx', NULL, NULL, '2020-11-07', 0, '', '5', '59', NULL, 0.00, '12:12 PM', '0', NULL, '1', 'High CTC exp. Hold 1 offer', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:01:24', 1, '2020-11-07 12:28:20', 0, NULL, 1),
(1768, 'Sheeba clarin C', '11', '8672432063', '', 'sheebaclarin@gmail.com', '1993-05-18', 27, '2', '2', 'Clarence.M', 'Tailor', 10000.00, 1, 274000.00, 400000.00, 'Chennai', 'Chennai', '2011060013', '13', '2', 'upload_files/candidate_tracker/50474983322_Resume.pdf', NULL, NULL, '2020-11-06', 0, '', '5', '53', NULL, 0.00, '12:08 PM', '0', NULL, '2', 'gud communication, not o wit bond', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:03:08', 1, '2020-11-06 12:09:12', 0, NULL, 1),
(1769, 'Vijayalakshmi', '11', '9710672387', '', 'vijayalakshmijayabaland25@gmail.com', '1998-11-25', 21, '2', '2', 'Jayabalan', 'Artist', 20000.00, 2, 10000.00, 10000.00, 'tank Bund Road, Otteri, Chennai-12', 'Chennai', '2011060014', '1', '2', 'upload_files/candidate_tracker/26170606012_My resume-3.docx', NULL, NULL, '2020-11-07', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:11:04', 1, '2020-11-06 12:30:01', 0, NULL, 1),
(1770, 'Tamilarasan', '6', '9962928029', '8428308230', 'tamizhmanoj7@gmail.com', '1997-11-24', 22, '2', '2', 'Manoharab', 'own business', 50000.00, 2, 16500.00, 20000.00, 'Chennai', 'Chennai', '2011060015', '1', '2', 'upload_files/candidate_tracker/70732442907_Adobe Scan 06 Nov 2020 (3).pdf', NULL, NULL, '2020-11-06', 0, '', '3', '8', '2020-11-19', 252000.00, '12:39 PM', '5', '1970-01-01', '1', 'with esi and pf for gk team.', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:12:46', 7, '2020-11-18 06:09:03', 0, NULL, 1),
(1771, 'p clement prince', '11', '9176272502', '', 'clementprince37@gmail.com', '1998-11-13', 21, '1', '2', 's prabhu', 'icf employee', 700000.00, 0, 0.00, 22000.00, 'chennai', 'chennai', '2011060016', '', '1', 'upload_files/candidate_tracker/83326524573_08AFD418-6D29-4E57-AD17-127CE2729386-converted.pdf', NULL, NULL, '2020-11-07', 0, '66673', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:12:57', 1, '2020-11-06 12:26:36', 0, NULL, 1),
(1772, 'nivedha j', '11', '9840515365', '', 'nivedha1597@gmail.com', '1991-09-15', 29, '2', '2', 'joseph s', 'retired police', 500000.00, 1, 25000.00, 28000.00, 'chennai', 'chennai', '2011060017', '1', '2', 'upload_files/candidate_tracker/84188973734_Nivedha (1).doc', NULL, NULL, '2020-11-07', 10, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:18:10', 1, '2020-11-06 03:05:53', 0, NULL, 1),
(1773, '', '0', '7358302027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:27:12', 0, NULL, 0, NULL, 1),
(1774, 'Alka mary xaxa', '11', '8939659864', '', 'alkamary15@gmail.com', '1993-04-15', 27, '2', '2', 'Robert xaxa', 'Retd. Govt. Servant', 30000.00, 2, 0.00, 30000.00, 'Port blair, A & N Islands', 'Velachery, Chennai', '2011060019', '1', '1', 'upload_files/candidate_tracker/31362957368_UPDATED RESUME.docx', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'no local lang and exp salary is 28K. fresher for HR', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:31:44', 50, '2020-11-07 10:52:49', 0, NULL, 1),
(1775, 'Saravanan', '11', '7010380249', '9551022748', 'Saravanankanagaraj7@gmail.com', '1997-08-22', 23, '2', '2', 'Kanagaraj', 'Auto Driver', 30000.00, 1, 0.00, 16000.00, 'Anna nagar', 'Anna nagar', '2011060020', '1', '1', 'upload_files/candidate_tracker/89260530623_Resume-converted.docx', NULL, NULL, '2020-11-06', 0, '', '5', '53', '1970-01-01', 0.00, '12:45 PM', '', '1970-01-01', '1', 'sustainability issue', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 12:40:17', 50, '2020-11-06 02:48:31', 0, NULL, 1),
(1776, 'Saidharan', '6', '9398145371', '', 'saisaidharani8@gmail.com', '1998-09-29', 22, '2', '2', 'Radhakrishna', 'late.', 20000.00, 2, 0.00, 15000.00, 'chittoor', 'kodambakam', '2011060021', '2', '1', 'upload_files/candidate_tracker/37635397532_S R SAI DHARANI-1.docx', NULL, NULL, '2020-11-06', 0, '', '5', '19', '1970-01-01', 0.00, '12:55 PM', '', '1970-01-01', '1', 'not even try to convince', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 12:50:12', 50, '2020-11-06 01:05:44', 0, NULL, 1),
(1777, 'Abarna S Nair', '11', '9442593607', '7418638661', 'abarnanair11@gmail.com', '1996-05-13', 24, '2', '1', 'Sabarish', 'Business development Manager', 35000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2011060022', '1', '1', 'upload_files/candidate_tracker/86631965451_Abarna Resume.docx', NULL, NULL, '2020-11-07', 0, '', '3', '8', '2020-11-16', 151800.00, '12:00 PM', '5', '1970-01-01', '1', '12K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 01:11:56', 7, '2020-11-12 03:45:50', 0, NULL, 1),
(1778, 'Leandan', '11', '6374463651', '', 'ehasleandan1995@gmail.com', '1995-04-03', 25, '2', '2', 'Joseph', 'Farming', 15000.00, 0, 25000.00, 20000.00, 'Coimbatore', 'Chennai', '2011060023', '1', '2', 'upload_files/candidate_tracker/5099953901_J LEANDAN.pdf', NULL, NULL, '2020-11-07', 7, '', '5', '8', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'salary exp is high and will not sustain .', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 01:13:43', 50, '2020-11-07 10:44:21', 0, NULL, 1),
(1779, '', '0', '8428182664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 01:32:28', 0, NULL, 0, NULL, 1),
(1780, 'Pradhap', '5', '8610581171', '', 'Pradhapsingh9495@gmail.com', '1995-08-01', 25, '2', '2', 'Palanisamy', 'Sales executive', 25000.00, 0, 0.00, 20000.00, 'Salem', 'Anna nagar Chennai', '2011060025', '1', '1', 'upload_files/candidate_tracker/13081600424_Pradhap_Resume.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '20', '1970-01-01', 0.00, '01:29 PM', '', '1970-01-01', '1', 'doesnt fiit for voice process', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 02:11:31', 50, '2020-11-07 01:46:30', 0, NULL, 1),
(1781, 'Venkatesan s', '11', '9791755163', '', 'Srinivasanvenkatesan96@outlook.com', '1996-10-18', 24, '1', '2', 'Srinivasan', 'Cooli', 10000.00, 2, 0.00, 15000.00, 'Chennai central', 'Chennai central', '2011060026', '', '2', 'upload_files/candidate_tracker/84472231383_venkatesan cv.docx', NULL, NULL, '2020-11-07', 0, 'Jobs', '5', '59', '1970-01-01', 0.00, '02:11 PM', '', '1970-01-01', '1', 'no Communication. No knowledge on the role', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 02:27:34', 7, '2020-11-07 03:43:42', 0, NULL, 1),
(1782, 'Naga Arjun', '11', '9600185880', '', 'nagaarjunan0975@gmail.com', '1996-09-28', 24, '2', '2', 'nagarajan.c', 'Business', 20000.00, 1, 0.00, 15000.00, 'porur', 'porur', '2011060027', '1', '1', 'upload_files/candidate_tracker/17689158762_naga resume 1.docx', NULL, NULL, '2020-11-07', 0, '', '3', '8', '2020-11-09', 163800.00, '11:00 AM', '2', '1970-01-01', '1', '13K for rec', '6', '2', '3', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 02:44:41', 7, '2020-11-08 08:07:18', 0, NULL, 1),
(1783, 'Manoj SanthoshB', '11', '7708339852', '9787392356', 'manojsanthosh82@gmail.com', '1996-10-08', 24, '2', '2', 'Baskaran K', 'supervisor', 10000.00, 0, 10000.00, 15000.00, 'chennai', 'chennai', '2011060028', '1', '2', 'upload_files/candidate_tracker/4287665794_Resume.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'Will not sustain, not ready for bond No communication', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 02:47:18', 50, '2020-11-07 12:25:54', 0, NULL, 1),
(1784, 'debashree sen', '11', '9176276804', '', 'debsri13@gmail.com', '1983-01-12', 37, '2', '1', 'udayakumar', 'service', 25000.00, 1, 300000.00, 3.20, 'chennai', 'chennai', '2011060029', '1', '2', 'upload_files/candidate_tracker/67246653196_Resume of Debashree Sen.docx', NULL, NULL, '2020-11-07', 0, '', '6', '0', NULL, 0.00, '01:00 PM', '0', NULL, '2', NULL, '6', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 02:57:11', 1, '2020-11-06 03:04:17', 0, NULL, 1),
(1785, 'Rajalakshmi.R', '11', '6369647138', '7448551323', 'rrlakshmi678@gmail.com', '1997-01-09', 23, '2', '2', 'Rajkumar.S', 'Sub Inspector Of Police', 50000.00, 1, 0.00, 15000.00, 'Kilpauk Garden,Chennai', 'Kilpauk Garden,Chennai', '2011060030', '1', '1', 'upload_files/candidate_tracker/42865529624_RESUME -RAJI.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'no response. will not join', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 03:17:22', 50, '2020-11-07 12:58:56', 0, NULL, 1),
(1786, 'jerina taj', '11', '9789839109', '', 'jerina_lal@yahoo.co.in', '1980-04-07', 40, '2', '1', 'nazeerdeen', 'business', 50000.00, 2, 35000.00, 37000.00, 'chennai', 'chennai', '2011060031', '13', '2', 'upload_files/candidate_tracker/34113345022_JT CV.doc', NULL, NULL, '2020-11-07', 0, '', '5', '54', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'She worked end to end hr cycle but incomplete skill all vertical', '6', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 03:20:56', 1, '2020-11-06 03:35:27', 0, NULL, 1),
(1787, '', '0', '6385137018', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 03:24:22', 0, NULL, 0, NULL, 1),
(1788, 'Sri Hari', '4', '7358321565', '6385137018', 'srhr185@gmail.com', '1996-04-25', 24, '2', '2', 'Murugan', 'Private company', 20000.00, 1, 0.00, 12500.00, 'Peter\'s Colony, Royapettah, Chennai-14', 'Chennai', '2011060033', '1', '2', 'upload_files/candidate_tracker/45046719333_Document.pdf', NULL, NULL, '2020-11-07', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 03:38:14', 1, '2020-11-06 03:58:42', 0, NULL, 1),
(1789, '', '0', '9790911197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060034', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 06:09:35', 0, NULL, 0, NULL, 1),
(1790, 'GAYATHRI S', '11', '9551316146', '', 'saragayu1975@gmail.com', '1998-05-17', 22, '2', '2', 'Selvamani M', 'Domestic worker', 6000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2011060035', '1', '1', 'upload_files/candidate_tracker/61943846257_Resume .docx', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:29 AM', '', '1970-01-01', '2', 'no response and RNR will not join', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-06 06:18:30', 50, '2020-11-07 11:43:10', 0, NULL, 1),
(1791, '', '0', '9952636225', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011060036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 06:26:23', 0, NULL, 0, NULL, 1),
(1792, 'Sarath Kumar', '11', '9884787975', '8124507401', 'idofsarath@gmail.com', '1996-08-31', 24, '2', '2', 'Velayutham', 'Police', 26000.00, 1, 18000.00, 23000.00, 'Chennai', 'Chennai', '2011060037', '13', '2', 'upload_files/candidate_tracker/24044885452_Sarath - Resume 2020.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not ok for agreement', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-06 07:15:42', 50, '2020-11-07 01:14:00', 0, NULL, 1),
(1793, 'Poovarasan', '5', '7339577897', '8667333273', 'Poovapapa1904@gmail.com', '1996-04-30', 25, '2', '2', 'Kanagavalli', 'Cooly', 12000.00, 2, 0.00, 23000.00, 'Chennai', 'Mogappair', '2011060038', '3', '2', 'upload_files/candidate_tracker/38666650572_resume 16.03.doc', NULL, '1', '2021-11-30', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'rejected', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-06 07:28:38', 1, '2021-11-30 02:21:10', 0, NULL, 1),
(1794, 'Subha.S', '11', '8939416813', '', '', '1997-08-19', 23, '2', '2', 'd.suriyamoorthy', 'Welding supervisor', 40000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2011070001', '1', '1', 'upload_files/candidate_tracker/90870222615_updated Resume-SUBHA2.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:40 AM', '', '1970-01-01', '2', 'not okay with bond.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 08:38:35', 50, '2020-11-07 11:08:35', 0, NULL, 1),
(1795, 'VISAL C', '5', '9380399084', '', 'Vishaloptimistic6june@gmail.com', '1994-06-06', 26, '2', '2', 'Chinnadurai L', 'Insurance', 40000.00, 3, 33000.00, 37000.00, 'Chennai', 'Thiruvanmiyur', '2011070002', '1', '2', 'upload_files/candidate_tracker/23390476327_VISAL Updated Resume 15_9_20.docx', NULL, NULL, '2020-11-07', 0, '', '5', '44', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'He is Lic Agent and His mother also LIC Agent', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 08:56:19', 50, '2020-11-07 11:45:24', 0, NULL, 1),
(1796, 'Senthilkumar', '4', '8270053846', '9585110414', 'Senthilnallayan@gmail.com', '1999-07-26', 21, '2', '2', 'Mariappan', 'former', 3000.00, 0, 0.00, 13000.00, 'Tenkasi', 'Sriperumpudur', '2011070003', '1', '1', 'upload_files/candidate_tracker/55606019132_RESUME FINAL ATTACHEMENT.docx', NULL, NULL, '2020-11-09', 0, '', '5', '14', '1970-01-01', 0.00, '10:11 AM', '', '1970-01-01', '1', 'long distance 2 hour and not suitable for this profile', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-07 10:04:38', 58, '2020-12-23 11:57:21', 0, NULL, 1),
(1797, 'Akshaya L', '11', '8939351940', '8939351540', 'akshayabritto@gmail.com', '1994-03-06', 26, '2', '2', 'Loganthan M', 'Insurance', 1.50, 2, 0.00, 15000.00, 'PALLIKARANAI', 'Pallikaranai', '2011070004', '1', '1', 'upload_files/candidate_tracker/22232193652_Interview-Letter (1).pdf', NULL, NULL, '2020-11-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '1', 'not speaking up and said dont know for more than 3 times in interview.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 11:46:03', 1, '2020-11-07 12:19:02', 0, NULL, 1),
(1798, 'Vincy.M', '6', '9976352274', '6382064953', 'vincyfrancis528@gmail.com', '1998-11-05', 22, '2', '2', 'Maria Francis', 'Machine operator', 30000.00, 2, 0.00, 15000.00, 'Jeyankondam', 'Pallikaranai, chennai', '2011070005', '1', '1', 'upload_files/candidate_tracker/54448478070_VINCY RESUME (1) (1) (1).pdf', NULL, NULL, '2020-11-07', 0, '', '5', '16', '1970-01-01', 0.00, '11:56 AM', '', '1970-01-01', '1', 'sustain doubt long distance', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 11:55:09', 8, '2020-11-07 03:46:22', 0, NULL, 1),
(1799, 'Ashik mohammed.A', '6', '6379156560', '9840743772', 'aashiqmohammed2002@gmail.com', '2002-08-01', 18, '1', '2', 'Ajji MOHIDEEN', 'Shop', 70000.00, 1, 0.00, 12000.00, '1/21 Cs,colony 3rd lane indra NagarAdyar ch-20', '1/21 Cs,Colony 3rd Lane Indra NagarAdyar Ch-20', '2011070006', '', '1', 'upload_files/candidate_tracker/87135308552_Ashik Mohammed.pdf', NULL, NULL, '2020-11-07', 0, 'P1114', '5', '57', '1970-01-01', 0.00, '12:39 PM', '', '1970-01-01', '1', 'he is looking for part time job... just now join for college', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-07 12:13:22', 50, '2020-11-07 12:53:36', 0, NULL, 1),
(1800, 'R.divya', '4', '9840743772', '6379156560', 'divyaram0615@gmail.com', '1998-06-15', 22, '1', '2', 'M.ramachandran', 'Chief', 12000.00, 2, 0.00, 12000.00, '1/15 c.s colony 3rd lane adyar Chennai 20', '1/15 C.S Colony 3rd Lane Adyar Chennai', '2011070007', '', '1', 'upload_files/candidate_tracker/73176066283_divya.pdf', NULL, NULL, '2020-11-07', 0, 'P114', '3', '8', '1970-01-01', 120000.00, '12:21 PM', '2', '1970-01-01', '2', '10K for Priyanka team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-07 12:15:47', 7, '2020-11-10 06:42:28', 0, NULL, 1),
(1801, 'Selvarani. S', '4', '6383574785', '6383473354', 'Selvasofi2606@gmail.com', '1999-06-26', 21, '1', '2', 'Selvaraj. R', 'Security', 12000.00, 3, 0.00, 12000.00, '6/14 Arunachalapuram 2nd Street adyar Ch-20', 'No. 6/14 Arunachalapuram 2nd street adyar Ch-20', '2011070008', '', '1', 'upload_files/candidate_tracker/59256105796_selvarani .docx.resume.pdf', NULL, NULL, '2020-11-07', 0, 'P1114', '5', '14', NULL, 0.00, '12:25 PM', '0', NULL, '2', 'not fit for sales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-07 12:18:42', 1, '2020-11-07 12:33:42', 0, NULL, 1),
(1802, 'GOPINATH K', '6', '8056682252', '9629615855', 'gopinathcsea@gmail.com', '1992-08-26', 28, '2', '1', 'KESAVAN', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Villupuram', 'Porur', '2011070009', '1', '1', 'upload_files/candidate_tracker/82028135480_GK-Updated Resume.docx', NULL, NULL, '2020-11-07', 0, '', '3', '8', '2020-11-09', 162000.00, '12:28 PM', '', '2023-01-25', '1', '13.5K for thiyagu team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 12:24:56', 7, '2020-11-09 12:21:23', 0, NULL, 1),
(1803, 'Deepika.M', '4', '7338918224', '8056097753', 'Deepisumideepisumi@gmail.com', '2000-08-18', 20, '2', '2', 'Murugan.V', 'Driver', 30000.00, 1, 0.00, 10000.00, 'North usman road panagal park', 'Murugan idly shop Opposite', '2011070010', '1', '1', 'upload_files/candidate_tracker/76777933626_Deepika.M.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '13', '1970-01-01', 0.00, '01:55 PM', '', '1970-01-01', '2', 'not suitable for this filed', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 01:08:09', 50, '2020-11-07 02:56:02', 0, NULL, 1),
(1804, 'Sumathi.k', '4', '7010651311', '8939696685', 'Sumathisumi2110@gmail.com', '2000-10-21', 20, '2', '2', 'Kannan', 'Painter', 25000.00, 1, 0.00, 10000.00, 'T.nagar north Usman road', 'Murugan idly shop opposite', '2011070011', '1', '1', 'upload_files/candidate_tracker/73870244734_sumathi.k.pdf', NULL, NULL, '2020-11-07', 0, '', '5', '13', '1970-01-01', 0.00, '01:24 PM', '', '1970-01-01', '2', 'Sustainability less', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 01:10:10', 50, '2020-11-07 02:55:18', 0, NULL, 1),
(1805, '', '0', '8220674570', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011070012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-07 01:41:05', 0, NULL, 0, NULL, 1),
(1806, 'mohanraj', '21', '9789399659', '', 'mohanrajkceit@gmai.com', '1991-05-05', 29, '2', '2', 'dhanapal', 'passewd away', 500000.00, 2, 18000.00, 25000.00, 'namakkal', 'tambaram', '2011070013', '1', '2', 'upload_files/candidate_tracker/79252248328_Resume_Mohanraj[1].docx', NULL, NULL, '2020-11-09', 7, '', '5', '53', '1970-01-01', 0.00, '03:25 PM', '', '1970-01-01', '2', 'asked to call after 10 days but he didnt call', '3', '2', '', '', '', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-07 02:14:13', 58, '2020-12-23 03:39:34', 0, NULL, 1),
(1807, 'A.arun', '4', '9791327667', '', '', '1993-01-26', 27, '2', '2', 'Arulmozhi', 'Driver', 20000.00, 2, 0.00, 12000.00, 'Karur', 'Teynampet', '2011070014', '1', '1', 'upload_files/candidate_tracker/50497073918_arun resume1.docx', NULL, NULL, '2020-11-09', 0, '', '5', '14', '1970-01-01', 0.00, '11:38 AM', '', '1970-01-01', '1', 'not suitable for voice process', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-07 03:29:39', 58, '2020-12-23 12:59:52', 0, NULL, 1),
(1808, 'Karthikeyan', '11', '9789507341', '6380702997', 'mbskarthik1597@gmail.com', '1997-05-01', 23, '2', '2', 'Balasubramanian', 'Retired bank manager', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011070015', '1', '1', 'upload_files/candidate_tracker/10016367673_Karthik_MBA_Fresher_2020.pdf', NULL, NULL, '2020-11-09', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '6', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-07 05:39:31', 50, '2020-11-09 05:22:20', 0, NULL, 1),
(1809, '', '0', '9876543267', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011080001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-08 08:13:08', 0, NULL, 0, NULL, 1),
(1810, '', '0', '6379348867', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011090001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 10:04:51', 0, NULL, 0, NULL, 1),
(1811, 'SANDHIYA.L', '4', '7548824132', '9751115312', 'sandhiyaseetha4@gmail.com', '2000-06-09', 20, '1', '2', 'Lakshmanan', 'Weaver', 60000.00, 1, 10000.00, 13000.00, 'Adayar', 'Adayar', '2011090002', '', '2', 'upload_files/candidate_tracker/38348651572_Resume_SANDHIYA_Format1-1.pdf', NULL, NULL, '2020-11-09', 0, 'Jobs', '5', '13', '1970-01-01', 0.00, '10:27 AM', '', '1970-01-01', '2', 'Communication poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 10:23:52', 50, '2020-11-09 11:01:42', 0, NULL, 1),
(1812, 'Srinath.k', '4', '9884393499', '9841321357', 'Srisrinath941@Gmail.com', '1998-04-25', 22, '1', '2', 'Krishnamoorthy.g', 'Business', 30000.00, 1, 10000.00, 15000.00, 'Perambur', 'Perambur', '2011090003', '', '2', 'upload_files/candidate_tracker/57236781656_file1_1604899488864.pdf', NULL, NULL, '2020-11-09', 1, '5630', '5', '21', '1970-01-01', 0.00, '11:16 AM', '', '1970-01-01', '1', 'exp 16 k above for crm', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 10:31:45', 8, '2020-11-09 01:01:43', 0, NULL, 1),
(1813, 'Jayalakshmi. B', '20', '7338992204', '9884827666', 'bjayalakshmi923@gmail.com', '2000-09-23', 20, '1', '2', 'Balakrishnan', 'Real estate business', 15000.00, 1, 0.00, 15000.00, 'No. 5/ periyar street, royapettah', 'Royapettah', '2011090004', '', '1', 'upload_files/candidate_tracker/63067878668_RESUME Jaya(1).pdf', NULL, NULL, '2020-11-09', 0, '5174', '5', '16', '1970-01-01', 0.00, '11:09 AM', '', '1970-01-01', '2', 'sustain doubt', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 11:00:34', 50, '2020-11-09 11:19:41', 0, NULL, 1),
(1814, 'J.abdul gani', '13', '8300286065', '9486090868', 'abdhulghaani@gmail.com', '1999-07-28', 21, '2', '2', 'Ms Jafar ali', 'Business man', 70000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011090005', '1', '1', 'upload_files/candidate_tracker/77287186975_abdhul Resume.docx', NULL, NULL, '2020-11-09', 0, '', '5', '28', '1970-01-01', 0.00, '11:11 AM', '', '1970-01-01', '2', 'Not Strong In basic Php', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 11:07:11', 50, '2020-11-09 01:00:04', 0, NULL, 1),
(1815, 'Sanjay kumar P', '21', '9042351174', '', '', '1998-11-27', 21, '2', '2', 'Panchatcharam R', 'Car mechanic', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2011090006', '1', '1', 'upload_files/candidate_tracker/94578093615_1604926356641_Sanjay Resume.docx', NULL, NULL, '2020-11-10', 0, '', '5', '53', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'not suit for admin', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 11:21:03', 1, '2020-11-09 10:02:37', 0, NULL, 1),
(1816, 'A. Rajesh', '11', '9941732059', '9444475618', 'A. Rajesh2059@gmail.com', '1987-07-19', 33, '2', '2', 'Arulanandham', 'Retired Govt Staff', 40000.00, 2, 20000.00, 20000.00, 'Chennai', 'Chennai', '2011090007', '1', '2', 'upload_files/candidate_tracker/23181499114_A.Rajesh.docx', NULL, NULL, '2020-11-09', 0, '', '5', '8', '1970-01-01', 0.00, '12:09 PM', '', '1970-01-01', '1', '6+ yr exp in rec. switched more than 6 company and xp is 20K. in between worked as BDM.', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 12:00:47', 50, '2020-11-09 12:57:06', 0, NULL, 1),
(1817, 'yogeshwari', '4', '8925037518', '', 'yogebala2814@gmail.com', '1996-05-06', 24, '2', '2', 'bala', 'cook', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2011090008', '1', '1', 'upload_files/candidate_tracker/76396868159_file1_1604911031639.pdf', NULL, NULL, '2020-11-09', 0, '', '3', '8', '2020-11-12', 144000.00, '03:32 PM', '5', '1970-01-01', '2', 'For Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 12:21:32', 7, '2020-11-10 06:42:52', 0, NULL, 1),
(1818, 'MOHAMED SALAWATHULLA', '13', '9047055030', '', 'salawathulla.asw@gmail.com', '1995-01-08', 25, '2', '2', 'Sirajudeen', 'Business', 25000.00, 1, 20000.00, 28000.00, 'Thiruvadur', 'Pallavaram', '2011090009', '1', '2', 'upload_files/candidate_tracker/40639083493_MOHAMED_SALAWATHULLA.docx', NULL, NULL, '2020-11-10', 0, '', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'He is not ready to sign a service contract.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 12:44:31', 1, '2020-11-09 01:09:12', 0, NULL, 1),
(1819, 'Karunai Fathima', '5', '8925259449', '7845557772', 'fatima454.basheer@gmail.com', '1991-09-30', 29, '2', '1', 'Sowthri S', 'Sr VFX Artist', 18.00, 1, 0.00, 22.00, 'Ramanathapuram', 'Chennai', '2011090010', '3', '2', 'upload_files/candidate_tracker/97186614692_Resume_2020.pdf', NULL, NULL, '2020-11-10', 0, '', '3', '8', '2020-11-16', 168000.00, '12:00 PM', '4', '2021-03-24', '2', '14K CTC for Kannan team', '5', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 01:29:47', 7, '2020-11-16 10:19:57', 0, NULL, 1),
(1820, 'Ashwath kumar.B', '6', '6380627941', '9940503108', 'Ashwath.bkooh@gmail.com', '1994-03-22', 26, '2', '2', 'K.balashanmugam', 'Nil', 30000.00, 0, 20000.00, 30000.00, '69/3,4th street,I.c.f east Colony ,chennai-38', 'Icf', '2011090011', '1', '2', 'upload_files/candidate_tracker/16701669122_Ashwath Resume (2)(2).pdf', NULL, NULL, '2020-11-10', 0, '', '5', '24', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'he organise part time coaching class. so hexquots rejected', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 01:32:08', 7, '2020-11-10 11:39:31', 0, NULL, 1),
(1821, 'Karthikeyan R', '22', '9500908914', '', 'karthikeyank599@gmail.com', '1997-09-15', 23, '2', '2', 'Ramnath', 'Manager', 40000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2011090012', '1', '1', 'upload_files/candidate_tracker/54351522284_Karthikeyan- Digital Marketing.pdf', NULL, NULL, '2020-11-10', 0, '', '5', '54', NULL, 0.00, '12:00 PM', '0', NULL, '1', 'No replay from the candidate.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 06:24:06', 1, '2020-11-10 11:51:56', 0, NULL, 1),
(1822, 'Vignesh Shankar', '22', '9677052550', '', 'vviku92@gmail.com', '1992-12-02', 27, '2', '2', 'han', 'shankar', 60000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2011090013', '1', '1', 'upload_files/candidate_tracker/14099266449_Vignesh Resume Digital marketing.pdf', NULL, NULL, '2020-11-10', 0, '', '5', '54', NULL, 0.00, '12:00 PM', '0', NULL, '1', 'no replay from the candidate.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-09 06:24:15', 1, '2020-11-10 11:51:42', 0, NULL, 1),
(1823, '', '0', '9751978210', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011090014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-09 06:27:22', 0, NULL, 0, NULL, 1),
(1824, 'harikrishnan', '3', '9940624449', '', 'arumuha90@gmail.com', '1990-10-11', 30, '2', '2', 'arumugam', 'tailor', 20000.00, 0, 0.00, 18000.00, 'No142, sangodai amman streeUthandi, Chennai-119', 'No142, Sangodai Amman StreeUthandi, Chennai-119', '2011090015', '1', '1', 'upload_files/candidate_tracker/95928475025_Hari resume.doc', NULL, NULL, '2020-11-11', 0, '', '5', '54', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'He is not completed the given task', '2', '2', '', '', '', '', '2', '2020-12-24', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-09 07:25:55', 65, '2020-12-24 02:33:52', 0, NULL, 1),
(1825, 'Vignesh N', '5', '9003229033', '9841249777', 'kavi.arasan.ns@gmail.com', '1989-09-22', 31, '1', '1', 'Aswini', 'Journal Adminstrator', 25000.00, 1, 400000.00, 450000.00, 'Chennai', 'Chennai', '2011100001', '', '2', 'upload_files/candidate_tracker/82925505556_Vignesh resume.docx', NULL, NULL, '2020-11-10', 0, '5266', '3', '8', '1970-01-01', 372000.00, '10:34 AM', '2', '1970-01-01', '1', 'for lokesh team as consultant RM', '5', '1', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 10:16:49', 7, '2020-11-12 03:46:59', 0, NULL, 1),
(1826, 'NC RANJITH', '6', '7871119274', '', 'Ranjithrn08@gmail.com', '1999-08-16', 21, '1', '2', 'N CHINNA VENGAIAH', 'Office boy', 30000.00, 1, 0.00, 16000.00, 'Ambattur', 'Ambattur', '2011100002', '', '1', 'upload_files/candidate_tracker/83529990504_Resume.docx', NULL, NULL, '2020-11-10', 0, '55548', '3', '8', '2020-11-12', 151800.00, '11:00 AM', '6', '2021-03-26', '1', '12K For Srikanth team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 10:38:07', 7, '2020-11-10 06:43:26', 0, NULL, 1),
(1827, 'Febin skariah varghese', '6', '8943027570', '9847535245', 'febinzach@gmail.com', '1992-05-09', 28, '1', '2', 'P t varghese', 'Agriculture', 5000.00, 2, 0.00, 15000.00, 'Kerala', 'Avadi', '2011100003', '', '1', 'upload_files/candidate_tracker/77220100497_CV-Febin.pdf', NULL, NULL, '2020-11-10', 0, '5392', '5', '20', '1970-01-01', 0.00, '11:23 AM', '', '1970-01-01', '2', 'doesnxquott know tamil or english', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 11:18:50', 7, '2020-11-10 12:34:25', 0, NULL, 1),
(1828, 'Samuel anselm david .E', '6', '9840633050', '', '', '2000-03-08', 20, '1', '2', 'Er david', 'student', 1.00, 1, 0.00, 15000.00, 'Thiruvatriyur', 'thiruvattriyur', '2011100004', '', '1', 'upload_files/candidate_tracker/12962562446_SAMUEL ANSELM DAVID - RESUME.doc', NULL, NULL, '2020-11-10', 0, 'P1065', '5', '57', '1970-01-01', 0.00, '11:25 AM', '', '1970-01-01', '1', 'voice is not good', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 11:22:55', 7, '2020-11-10 11:36:28', 0, NULL, 1),
(1829, 'Augustin Paul', '13', '9047909568', '', 'augustinpaul1212@gmail.com', '1995-07-11', 25, '1', '2', 'M.Selvaraj', 'Tailor', 13000.00, 2, 25000.00, 30000.00, 'Tirunelveli', 'Poonamallee', '2011100005', '', '2', 'upload_files/candidate_tracker/44606633315_augustin_new_11.docx', NULL, NULL, '2020-11-10', 0, 'Priyanka', '5', '28', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'technically Not strong and Sustainability Issue.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 11:27:26', 1, '2020-11-10 11:44:20', 0, NULL, 1),
(1830, 'Arockiya Vijay.C', '6', '7338956096', '9677180368', 'carockiyavijay@gmail.com', '1992-07-07', 28, '2', '1', 'Cimiyon raj.A', 'Bsc,DCH', 20000.00, 2, 15000.00, 18000.00, 'No: 663.Agineshpuram, koovathur post, Ariyalur dt', '52/25 Anbildharmalingam street, Velachery, Chennai', '2011100006', '1', '2', 'upload_files/candidate_tracker/66136897423_ExportersList.pdf', NULL, NULL, '2020-11-10', 0, '', '5', '24', '1970-01-01', 0.00, '11:42 AM', '', '1970-01-01', '1', 'NOT QUALIFIED FOR TELECALLING', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-10 11:33:46', 50, '2020-11-10 05:57:59', 0, NULL, 1),
(1831, 'Vasudevan', '6', '9994294360', '7092065733', 'Vasuneeha23@gmail.com', '1987-09-03', 33, '1', '1', 'Rajendran', 'Teilcaller', 20000.00, 0, 15000.00, 15000.00, 'Ambattur', 'Ambttur', '2011100007', '', '2', 'upload_files/candidate_tracker/21778633467_083401010000001e02990_ESTATEMENT_092020_083401010000001e-1.pdf', NULL, NULL, '2020-11-10', 0, '5174', '5', '16', '1970-01-01', 0.00, '11:54 AM', '', '1970-01-01', '1', 'low profile,no communication skill', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 11:48:19', 7, '2020-11-10 12:35:35', 0, NULL, 1),
(1832, 'Divya', '4', '8807706292', '9841302741', 'divyarbca18@gmail.com', '1992-02-18', 28, '2', '1', 'Ramu', 'Supervisor', 12000.00, 1, 15000.00, 16000.00, '5/46, krishnappa street west Mambalam Chennai-33', '5/46, krishnappa street west Mambalam Chennai-33', '2011100008', '1', '2', 'upload_files/candidate_tracker/97141276351_Divya Resume mba.pdf', NULL, NULL, '2020-11-10', 0, '', '5', '21', '1970-01-01', 0.00, '12:06 PM', '', '1970-01-01', '1', 'expecting high salary for crm,16000', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-10 11:54:43', 58, '2020-12-29 10:16:22', 0, NULL, 1),
(1833, 'Yuvanesh kumar', '13', '9003033282', '', 'yuvanboyka@gmail.com', '1996-09-19', 24, '3', '2', 'Pushpalingam', 'Tneb', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011100009', '', '1', 'upload_files/candidate_tracker/26311675924_YUVANESH Resume.pdf', NULL, NULL, '2021-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', 'Will not sustain 3months before attended and not open for the agreements', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-10 12:03:51', 7, '2021-05-06 10:21:30', 0, NULL, 1),
(1834, '', '0', '7418384842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011100010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 01:25:54', 0, NULL, 0, NULL, 1),
(1835, 'G. Sheela', '4', '7395867662', '7373656931', 'gsheelasheg@gmail.com', '1996-05-02', 24, '2', '2', 'W. Gnanadoss', 'Trading', 30.00, 4, 15000.00, 15000.00, 'Thiruvika nagar', 'Thiruvika Nagar, Chennai', '2011100011', '1', '2', 'upload_files/candidate_tracker/49545291453_G.SHE DATA.doc', NULL, NULL, '2020-11-10', 0, '', '5', '21', '1970-01-01', 0.00, '02:56 PM', '', '1970-01-01', '2', 'expecting 16 k above for crm', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-10 02:52:00', 58, '2020-12-29 09:54:04', 0, NULL, 1),
(1836, '', '0', '9677180368', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011100012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 03:34:04', 0, NULL, 0, NULL, 1),
(1837, 'Mohammed siddiq ali', '13', '9361613607', '9840559642', 'sa941996@gmail.com', '1996-04-09', 24, '1', '2', 'Mydeen kasim', 'Building demolition', 25000.00, 3, 13000.00, 15000.00, 'Chennai', 'Chennai', '2011100013', '', '2', 'upload_files/candidate_tracker/34549735941_Moha.docx', NULL, NULL, '2020-11-11', 10, 'Priyanka', '5', '54', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is having skills in Asp.net but not good in php.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 03:49:34', 7, '2020-11-11 01:00:34', 0, NULL, 1),
(1838, 'sujeesh t', '6', '8610918215', '', 'sujesh8608@gmail.com', '1996-11-16', 23, '2', '1', 'thulasidasan k', 'sales man', 15000.00, 1, 16000.00, 18000.00, 'chennai', 'vadapalani', '2011100014', '2', '2', 'upload_files/candidate_tracker/34027734507_SUJESH RESUME 2.docx', NULL, NULL, '2020-11-11', 0, '', '8', '', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 04:15:19', 7, '2020-11-11 06:21:49', 0, NULL, 1),
(1839, 'Manjula', '13', '9843882426', '9791107382', 'manjulasathi24@gmail.com', '1996-02-02', 24, '3', '1', 'Sathish', 'Driver', 25000.00, 1, 12000.00, 15000.00, 'Kodambakkam chennai', 'Kodambakam chennai', '2011100015', '', '2', 'upload_files/candidate_tracker/43786670494_todayresume.pdf', NULL, NULL, '2020-11-11', 1, '', '5', '54', '1970-01-01', 0.00, '11:06 AM', '', '1970-01-01', '2', 'System task not completed', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 04:28:47', 7, '2020-11-11 03:12:34', 0, NULL, 1),
(1840, '', '0', '7550138039', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011100016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-10 05:02:23', 0, NULL, 0, NULL, 1),
(1841, 'Y. Monisha', '4', '9962721773', '9962661017', '125monisha@gmail.com', '2000-05-12', 20, '1', '2', 'S. Yuvaraj', 'Coolie', 7000.00, 1, 0.00, 12000.00, 'Old washermenpet', 'Old washermenpet', '2011110001', '', '1', 'upload_files/candidate_tracker/31030233984_09-23-2020-08.55.59.pdf', NULL, NULL, '2020-11-11', 0, 'P1139', '5', '13', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'not suitable for telesales', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 08:16:01', 1, '2020-11-11 12:28:51', 0, NULL, 1),
(1842, 'Akash B', '6', '6379502731', '', 'Akashaaki 11021999@gmail.com', '1999-02-11', 21, '1', '2', 'Baskar V', 'Fish export', 25000.00, 1, 0.00, 15000.00, 'No.17 vinayagapuram main street tondaiarpet', 'Chennai', '2011110002', '', '1', 'upload_files/candidate_tracker/4778761030_Akash Resume.pdf', NULL, NULL, '2020-11-11', 0, 'P1065', '5', '57', '1970-01-01', 0.00, '12:02 PM', '', '1970-01-01', '1', 'voice is not good ..', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 08:28:33', 7, '2020-11-11 03:05:48', 0, NULL, 1),
(1843, 'Logesh', '5', '7811833833', '', 'Logeshvp@gmail.com', '1994-09-23', 26, '2', '1', 'Seshamalini', 'Nil', 22000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2011110003', '1', '2', 'upload_files/candidate_tracker/93105976943_Resume-231.docx', NULL, NULL, '2020-11-12', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 10:24:01', 7, '2020-11-12 05:15:03', 0, NULL, 1),
(1844, 'Vinothkumar', '13', '8667200847', '9940361682', 'vinothkumar1682@gmail.com', '1994-12-31', 25, '3', '2', 'Velu D', 'Web developer', 50000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2011110004', '', '2', 'upload_files/candidate_tracker/34560200727_Vinoth_resume.pdf', NULL, NULL, '2020-11-12', 30, '', '5', '54', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He will not sustain ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 10:48:36', 1, '2020-11-11 10:54:54', 0, NULL, 1),
(1845, 'santhosh', '13', '9865574603', '', 'santhoshandro95@gmail.com', '1995-11-05', 25, '3', '2', 'maheshwaran', 'tailor', 20000.00, 1, 475000.00, 800000.00, 'tirupur', 'chennai', '2011110005', '', '2', 'upload_files/candidate_tracker/95140360424_Santhosh_CV.pdf', NULL, NULL, '2020-12-04', 45, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 11:03:36', 7, '2020-12-04 05:45:40', 0, NULL, 1),
(1846, 'DHANALAKSHMI', '4', '9150603233', '', '', '2000-03-08', 20, '2', '2', 'G.ELAGOVAN', 'Sales man', 10000.00, 1, 0.00, 12000.00, 'old pallavaram', 'Old Pallavaram', '2011110006', '1', '1', 'upload_files/candidate_tracker/56252725996_Dhanalakshmi resume.docx', NULL, NULL, '2020-11-11', 0, '', '5', '21', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'she is interested in data entry job..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 11:32:15', 7, '2020-11-11 11:59:25', 0, NULL, 1),
(1847, 'padmanaban', '6', '7358488332', '8939197866', 'padhu.mani098@gmail.com', '1999-08-23', 21, '2', '2', 'ramesh', 'auto driver', 12000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2011110007', '1', '1', 'upload_files/candidate_tracker/31485207400_resume (2).doc', NULL, NULL, '2020-11-12', 0, '', '5', '24', NULL, 0.00, '12:42 PM', '0', NULL, '1', 'not fil for telecalling', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 11:32:34', 1, '2020-11-12 12:50:59', 0, NULL, 1),
(1848, '', '0', '8939197866', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:07:08', 0, NULL, 0, NULL, 1),
(1849, '', '0', '8248411581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:08:52', 0, NULL, 0, NULL, 1),
(1850, 'Ajay nair', '6', '9498000913', '8015588779', 'ajayvenugopal13@gmail.com', '1998-10-21', 22, '2', '2', 'P.R.Venugopal', 'Business', 100000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2011110010', '1', '1', 'upload_files/candidate_tracker/26942813636_Ajay', NULL, NULL, '2020-11-12', 0, '', '3', '8', '1970-01-01', 168000.00, '11:00 AM', '2', '1970-01-01', '1', '14K for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 12:11:55', 7, '2020-11-12 03:47:18', 0, NULL, 1),
(1851, 'magesh s', '6', '9710016596', '9551522438', 'mageshirock@gmail.com', '1995-12-28', 24, '2', '2', 'subbarao t', 'chef', 70000.00, 1, 18000.00, 20000.00, 'chennai', 'moolakadai', '2011110011', '2', '2', 'upload_files/candidate_tracker/21761339294_magesh 2020 resume(1).docx', NULL, NULL, '2020-11-11', 0, '', '3', '8', '1970-01-01', 204000.00, '02:30 PM', '2', '1970-01-01', '1', '17K for Syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:14:33', 7, '2020-11-11 04:23:02', 0, NULL, 1),
(1852, '', '0', '8883838799', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:29:22', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1853, 'Sathish S', '6', '9176403515', '8248411581', 'Ssathish232@gmail.com', '1993-05-24', 27, '1', '2', 'Selvam M', 'Oriental insurance', 45000.00, 1, 14000.00, 16000.00, 'Sri kandhaswami Koil Street', 'Sri kandhaswami Koil Street', '2011110013', '', '2', 'upload_files/candidate_tracker/89517961150_sathish resume.pdf', NULL, NULL, '2020-11-11', 0, 'P1065', '5', '57', NULL, 0.00, '12:40 PM', '0', NULL, '1', 'voice not good ', '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 12:36:13', 1, '2020-11-11 12:41:23', 0, NULL, 1),
(1854, 'Vijay S', '6', '9444119887', '9606538298', 'vijayias11100@gmail.com', '1997-09-27', 23, '1', '2', 'Settu P', 'Farmer', 13500.00, 1, 0.00, 15000.00, 'DHARMAPURI', 'DHARMAPURI', '2011110014', '', '1', 'upload_files/candidate_tracker/80740821511_RESUME VJ correc.docx', NULL, NULL, '2020-11-11', 0, '5392', '5', '20', '1970-01-01', 0.00, '02:36 PM', '', '1970-01-01', '2', 'not fit for voice process', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 02:30:58', 7, '2020-11-11 03:03:10', 0, NULL, 1),
(1855, 'Rajesh', '6', '8681069881', '9790777819', 'Rajesh02kutty@gmail.com', '1994-03-17', 26, '2', '2', 'Kalidass', 'Bsc', 20000.00, 0, 17000.00, 25000.00, '4/102 ambethkar street,palavakkam', 'Chennai', '2011110015', '1', '2', 'upload_files/candidate_tracker/75220206933_file1_1605509244361.pdf', NULL, NULL, '2020-11-16', 0, '', '5', '20', '1970-01-01', 0.00, '12:10 PM', '', '1970-01-01', '1', '4 years experienced in service. not fit for sales', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-11 02:48:35', 58, '2020-12-23 03:34:56', 0, NULL, 1),
(1856, 'prithiviraj E', '6', '9962848478', '', 'prithivirajelango18@gmail.com', '1999-03-18', 21, '2', '2', 'Elangovan v', 'Driver', 10000.00, 1, 14500.00, 17000.00, 'Puliyanthope', 'Puliyanthope', '2011110016', '1', '2', 'upload_files/candidate_tracker/18920700423_1605089479173Resume_Prithiviraj.pdf', NULL, NULL, '2020-11-13', 0, '', '5', '57', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', 'voice is not good .. ', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 03:32:34', 50, '2020-11-13 11:26:53', 0, NULL, 1),
(1857, '', '0', '8778205449', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 04:18:27', 0, NULL, 0, NULL, 1),
(1858, 'Anu krishna', '6', '9962320896', '8667623374', 'anukrishna98@gmail.com', '1997-06-17', 23, '2', '2', 'Siva kumar', 'Business', 120000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2011110018', '1', '2', 'upload_files/candidate_tracker/23702385466_ANU KRISHNA cv-1.pdf', NULL, NULL, '2020-11-12', 0, '', '3', '8', '1970-01-01', 189600.00, '03:27 PM', '2', '1970-01-01', '1', '15K for Kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 05:01:31', 7, '2020-11-12 05:15:35', 0, NULL, 1),
(1859, 'Karthik', '13', '9840040980', '', 'karthickrose1255@gmail.com', '1996-03-25', 24, '2', '2', 'Rose', 'Barber', 400000.00, 1, 350000.00, 500000.00, 'Chennai', 'Chennai', '2011110019', '1', '2', 'upload_files/candidate_tracker/66804679657_Karthik', NULL, NULL, '2020-11-13', 15, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He is strong in .net. But not Know php.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 06:16:17', 50, '2020-11-13 10:24:45', 0, NULL, 1),
(1860, '', '0', '7502363874', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011110020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-11 06:41:44', 0, NULL, 0, NULL, 1),
(1861, 'Nandhini', '6', '9344487826', '9514552590', 'nandhini199723@gmail.com', '1997-05-23', 23, '2', '2', 'Arjunan', 'Coolie', 20000.00, 2, 0.00, 18000.00, 'Thiruvottiyur', 'Tvt hight road', '2011110021', '1', '2', 'upload_files/candidate_tracker/93831573794_Nandhini cc.doc', NULL, NULL, '2020-11-13', 10, '', '5', '24', '1970-01-01', 0.00, '11:14 AM', '', '1970-01-01', '2', 'rE Profile Not suitable', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 07:46:33', 7, '2020-11-13 11:57:12', 0, NULL, 1),
(1862, 'LA Vijayeshwaran', '6', '8838098020', '', 'eshwaranvijay@gmail.com', '1997-08-18', 23, '2', '2', 'N.loganathan', 'Sales executive', 50000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2011110022', '1', '2', 'upload_files/candidate_tracker/67950386964_CV_2020-09-15-114857.pdf', NULL, NULL, '2020-11-12', 0, '', '3', '8', '1970-01-01', 189600.00, '11:00 AM', '2', '1970-01-01', '1', '15K for Syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 09:03:11', 7, '2020-11-12 05:16:04', 0, NULL, 1),
(1863, 'JABEZSH P', '6', '8248599543', '', 'jabezshj@gmail.com', '1998-02-05', 22, '2', '2', 'A.prem sugumar', 'Driver', 40.00, 0, 17.00, 18.00, '8/1464b poombugar nagar 9th cross street Kolathur', 'Chennai', '2011110023', '1', '2', 'upload_files/candidate_tracker/79541359337_Curriculum Vitae - jabezsh p.docx', NULL, NULL, '2020-11-13', 0, '', '5', '24', '1970-01-01', 0.00, '11:43 AM', '', '1970-01-01', '1', 'candidate not come for 2nd round', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-11 11:38:21', 52, '2020-11-13 02:17:50', 0, NULL, 1),
(1864, 'shaik mahammed ilyas', '5', '9177386483', '9966934841', 'smdilyas4841@gmail.com', '1993-08-20', 27, '2', '2', 'shaik jamal vali', 'marketing in sales', 30000.00, 5, 18000.00, 20000.00, 'andhara pradesh', 'Bangalore', '2011120001', '3', '2', 'upload_files/candidate_tracker/85668773977_CV 2019.docx', NULL, NULL, '2020-11-17', 7, '', '3', '8', '1970-01-01', 216000.00, '10:30 AM', '2', '1970-01-01', '1', 'CTC-18K/TH - 17100', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-12 10:19:09', 7, '2020-11-21 06:22:57', 0, NULL, 1),
(1865, 'anand', '6', '8825617018', '', 'anandmuthu388@gmail.com', '1999-09-12', 21, '2', '2', 'yagamuthu', 'chef', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2011120002', '1', '1', 'upload_files/candidate_tracker/98731825041_abcd.pdf', NULL, NULL, '2020-11-16', 0, '', '5', '8', '1970-01-01', 0.00, '12:40 PM', '', '1970-01-01', '2', 'will no suite for crm', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 12:03:41', 50, '2020-11-16 01:06:12', 0, NULL, 1),
(1866, 'K.Deepa', '4', '9500537509', '', 'deepakumar231199@gmail.com', '1999-11-23', 20, '2', '2', 'P.Kumar', 'Fruit seller', 8000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2011120003', '1', '1', 'upload_files/candidate_tracker/16894210539_deepa .k.pdf', NULL, NULL, '2020-11-12', 0, '', '5', '13', '1970-01-01', 0.00, '02:31 PM', '', '1970-01-01', '2', 'not suitable for telesales', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:15:31', 7, '2020-11-12 03:43:23', 0, NULL, 1),
(1867, 'S.yamini', '4', '8300109924', '', 'Yammisri99@gmail.com', '1999-01-14', 21, '2', '2', 'N.srinivasan', 'Auto driver', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011120004', '1', '1', 'upload_files/candidate_tracker/92396164800_1604929598328_S YAMINI.docx', NULL, NULL, '2020-11-12', 0, '', '5', '13', '1970-01-01', 0.00, '02:18 PM', '', '1970-01-01', '2', 'not suitable for pressure handling', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:15:33', 7, '2020-11-12 03:43:41', 0, NULL, 1),
(1868, 'Meenakshi u', '4', '8754246096', '', 'Meena22111999@gmail.com', '1999-11-22', 20, '2', '2', 'R k umasankar', 'Working in private comapany', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011120005', '1', '1', 'upload_files/candidate_tracker/33109262562_MEENAKSHI.U Resume.docx', NULL, NULL, '2020-11-12', 0, '', '5', '21', NULL, 0.00, '02:42 PM', '0', NULL, '2', 'she is not sustain long term bcz she is with her friend only..', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:15:37', 1, '2020-11-12 02:45:49', 0, NULL, 1),
(1869, 'Ganesh Kumar S', '5', '9003770823', '', 'ganesh219023@gmail.com', '1990-10-21', 30, '2', '2', 'NS Prakash', 'Business', 20000.00, 0, 21350.00, 27750.00, 'Chennai', 'Chennai', '2011120006', '1', '2', 'upload_files/candidate_tracker/19248628354_Ganesh_new updated_resume.pdf', NULL, NULL, '2020-11-13', 0, '', '3', '8', '2020-11-16', 312000.00, '11:00 AM', '5', '1970-01-01', '1', 'With ESI an PF. net is 22192 and gross is 26000', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:27:10', 7, '2020-11-14 07:50:23', 0, NULL, 1),
(1870, 'V jansi', '4', '8754475657', '', 'Jansivimal0128@gmail.com', '1999-07-28', 21, '2', '2', 'V s vimalanathan', '10', 17000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011120007', '1', '1', 'upload_files/candidate_tracker/91629491415_CV_2020-10-24-083544.pdf', NULL, NULL, '2020-11-12', 0, '', '3', '8', '2020-11-16', 120000.00, '02:34 PM', '2', '1970-01-01', '2', '10K for Dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 02:30:19', 7, '2020-11-14 07:50:55', 0, NULL, 1),
(1871, 'Tamil Selvan', '6', '9066417649', '', 'tamilselvan7649@gmail.com', '1997-10-09', 23, '2', '2', 'Anandan', 'Late Army', 11000.00, 1, 0.00, 20000.00, 'Chikkalasandra', 'Chikkalasandra', '2011120008', '1', '1', 'upload_files/candidate_tracker/45705755194_Resume.docx', NULL, NULL, '2020-11-13', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not join. cant arrange 2 wheeler', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 03:19:46', 50, '2020-11-13 10:24:53', 0, NULL, 1),
(1872, '', '0', '7702414094', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011120009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-12 04:52:17', 0, NULL, 0, NULL, 1),
(1873, 'Mohammed suhail', '6', '9976478628', '7708887987', 'mohammedsuhail.95@gmail.com', '1995-01-18', 25, '2', '2', 'Nazar', 'business', 35000.00, 1, 16000.00, 18000.00, 'Salem', 'Madiwala', '2011120010', '1', '2', 'upload_files/candidate_tracker/33063087335_mohammed suhail.pdf', NULL, NULL, '2020-11-13', 1, '', '5', '39', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'he will not suit for this field', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-12 05:55:36', 50, '2020-11-13 10:25:02', 0, NULL, 1),
(1874, '', '0', '9841037338', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011120011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-12 06:14:08', 0, NULL, 0, NULL, 1),
(1875, 'sudalai raman a', '5', '9600589690', '', 'sudalairaman2@gmail.com', '1991-03-29', 29, '2', '1', 'akkinimuthu', 'farmer', 20000.00, 1, 4.20, 5.50, 'chennai', 'chennai', '2011120012', '3', '2', 'upload_files/candidate_tracker/90402637891_Sudalai Raman - Resume 2020.pdf', NULL, NULL, '2020-11-13', 15, '', '5', '31', NULL, 0.00, '11:22 AM', '0', NULL, '1', 'expecting higher package and not match for that level', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-12 06:52:48', 1, '2020-11-13 11:24:34', 0, NULL, 1),
(1876, 'Kartheswari', '13', '9566673188', '9444538626', 'ammukarthisakthi@gmail.com', '1998-11-07', 22, '1', '2', 'Murugesa pandian', 'Shop keeper', 20000.00, 2, 8000.00, 12000.00, 'No.2/14, Gandhiji street, Nazarathpet', 'No.2/14, Gandhiji street, Nazarathpet', '2011130001', '', '2', 'upload_files/candidate_tracker/88439899707_KARTHI RESUME.PDF.docx', NULL, NULL, '2020-11-16', 2, 'Sabera', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not So Much Skill In Basic Php.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 11:04:55', 50, '2020-11-16 11:06:55', 0, NULL, 1),
(1877, 'Shaik mohideen', '5', '7401475140', '9962222102', 'shaikmohideen1231@gmail.com', '1996-06-12', 24, '1', '1', 'Tajunnisha', 'Housewife', 50000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2011130002', '', '2', 'upload_files/candidate_tracker/29197371302_Shaik-Mohideen-H (1).pdf', NULL, NULL, '2020-11-13', 28, '5638', '3', '8', '2020-11-26', 276000.00, '11:16 AM', '5', '1970-01-01', '1', '23k as ctc, 208 ded. for lokesh team.', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 11:12:44', 7, '2020-11-24 10:20:55', 0, NULL, 1),
(1878, 'Sathishkumar', '6', '6380576491', '8939088310', 'Sakthisathish470@gmail.com', '1997-12-09', 22, '2', '2', 'Dilliraj', 'Buffer', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Thiruvottiyur', '2011130003', '1', '1', 'upload_files/candidate_tracker/52185586490_Document from Sathishkumar 👨ðŸ»â€ðŸŽ“MBA👨ðŸ»â€ðŸŽ“.pdf', NULL, NULL, '2020-11-13', 0, '', '5', '20', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 11:24:53', 7, '2020-11-13 11:46:40', 0, NULL, 1),
(1879, 'gayathri', '4', '6364081916', '', 'gayathrimallesh7@gmail.com', '1997-11-07', 23, '2', '2', 'mallesh', 'farmer', 10000.00, 0, 0.00, 15000.00, 'ballari', 'banglore', '2011130004', '1', '1', 'upload_files/candidate_tracker/86279624936_Gayathri Resume-2 (1).docx', NULL, NULL, '2020-11-19', 0, '', '3', '8', '2020-11-23', 139200.00, '03:50 PM', '3', '2021-02-02', '2', '11020 as tH.For CRM-PC', '1', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 11:34:14', 7, '2020-11-19 05:32:43', 0, NULL, 1),
(1880, 'Vadivel', '13', '8668000426', '9791198236', 'vadivelbe94@gmail.com', '1996-04-15', 24, '2', '2', 'Pichandi', 'Labour', 50000.00, 2, 19.00, 25.00, 'Chennai', 'Tiruvanna', '2011130005', '1', '2', 'upload_files/candidate_tracker/55816145286_Vadivel P(Resume).pdf', NULL, NULL, '2020-11-16', 3, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 12:03:56', 7, '2020-11-16 06:17:42', 0, NULL, 1),
(1881, '', '0', '7904335872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011130006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 12:10:24', 0, NULL, 0, NULL, 1),
(1882, 'DHANDAPANI.k', '6', '8072063634', '', 'dhandapani.k14@gmail.com', '1994-11-14', 25, '2', '2', 'KARUNANITHI .A', 'Railway', 30000.00, 2, 13500.00, 15000.00, 'Chennai', 'Chennai', '2011130007', '1', '2', 'upload_files/candidate_tracker/76072548286_dhandapani.docx', NULL, NULL, '2020-11-13', 0, '', '3', '8', '2020-11-16', 177000.00, '12:17 PM', '2', '1970-01-01', '1', '14K as TH. Thiyagarajan team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-13 12:12:27', 58, '2020-12-29 09:55:17', 0, NULL, 1),
(1883, '', '0', '8825528593', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011130008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 12:50:51', 0, NULL, 0, NULL, 1),
(1884, 'Yogalakshmi K', '13', '9655693833', '', '', '1996-09-02', 24, '2', '2', 'Kulasekaran KS', 'Small Grams Merchant business', 6000.00, 2, 0.00, 18000.00, 'Tirupattur', 'Tirupattur', '2011130009', '1', '1', 'upload_files/candidate_tracker/97227793654_0_RESUME - YOGALAKSHMI K.pdf', NULL, NULL, '2020-11-17', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 01:31:34', 7, '2020-11-17 05:16:57', 0, NULL, 1),
(1885, 'Vignesh P', '6', '9944707200', '7305508442', 'Vignzvicky46@gmail.com', '1996-12-22', 23, '1', '2', 'M.Padmanaban', 'Vetnary Doctor Asst.', 35000.00, 1, 15000.00, 17000.00, '12/66, Padappai 60301', '12/66 padappai kanchipuram 601301', '2011130010', '', '2', 'upload_files/candidate_tracker/96729182772_Vignz Resume Nov.pdf', NULL, NULL, '2020-11-13', 1, 'Priyanka', '5', '16', NULL, 0.00, '01:20 PM', '0', NULL, '1', 'low profile ,no communication skills', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-13 01:31:36', 1, '2020-11-13 01:41:55', 0, NULL, 1),
(1886, 'yuvaraj b', '13', '7904739974', '', 'yuviyuva3150@gmail.com', '1996-06-02', 24, '2', '2', 'balaji', 'aluminium fabrication', 12000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2011130011', '1', '1', 'upload_files/candidate_tracker/564478955_Yuvaraj RESUME (1).docx', NULL, NULL, '2020-11-16', 0, '', '5', '28', '1970-01-01', 0.00, '05:26 PM', '', '1970-01-01', '1', 'Not Know basic skills.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 02:38:32', 7, '2020-11-16 05:40:01', 0, NULL, 1),
(1887, 'A. Nicholas athishta prabhu', '13', '7540020230', '6382030616', 'prabhunicholas79@gmail.com', '1990-12-28', 30, '2', '2', 'antony durairaj', 'Fiaherman', 10.00, 0, 14000.00, 20000.00, '1/13 meenvar colony tharuvaikulam, thoothukudi.', 'Vadapalani', '2011130012', '1', '2', 'upload_files/candidate_tracker/51810271975_updated7-01.pdf', NULL, NULL, '2021-01-09', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He is not completed the Task and no response from him.', '2', '1', '0', '1', '1', '0', '2', '2021-01-11', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-13 03:47:00', 1, '2021-01-07 01:25:14', 0, NULL, 1),
(1888, 'Mohanbabu', '4', '9944009372', '8778205440', 'Nokia10338241@gmail.com', '1992-06-16', 28, '2', '2', 'Vanmathi', 'Tyler', 5000.00, 0, 12000.00, 15000.00, 'No', 'No', '2011130013', '1', '2', 'upload_files/candidate_tracker/42844691348_Mohan babu.docx', NULL, NULL, '2020-11-16', 0, '', '5', '13', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'communication skill not well and expected salary high', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-13 04:03:34', 58, '2020-12-23 12:30:11', 0, NULL, 1),
(1889, 'c raghavendra', '13', '9444224492', '9445482010', 'raghavendrasrme@gmail.com', '1994-10-18', 26, '2', '2', 'c venkatesh', 'retired', 20000.00, 1, 300000.00, 300000.00, 'Chennai.', 'Chennai.', '2011130014', '1', '2', 'upload_files/candidate_tracker/54742602511_My New Resume.docx', NULL, NULL, '2020-11-16', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Hearing xxamp Speaking disability. Will not sustain for a long', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-13 04:45:57', 64, '2020-12-28 02:54:23', 0, NULL, 1),
(1890, 'Jagan', '21', '9003045051', '', 'Jaganperumal5555@gmail.com', '1998-03-22', 22, '2', '2', 'Perumal', 'Own', 50000.00, 1, 15000.00, 17000.00, 'Ambattur', 'Ambattur', '2011130015', '1', '2', 'upload_files/candidate_tracker/85448621234_jagan resume.pdf', NULL, NULL, '2020-11-17', 1, '', '8', '', '1970-01-01', 0.00, '11:59 AM', '', '1970-01-01', '2', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-13 11:51:02', 7, '2020-11-17 05:16:47', 0, NULL, 1),
(1891, '', '0', '9962019908', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-14 01:58:12', 0, NULL, 0, NULL, 1),
(1892, 'SALAHUDDIN K', '13', '7904910390', '', 'syedsalahuddin065@gmail.com', '1997-07-10', 23, '2', '2', 'KAMRUDDIN', 'PLASTIC MERCHANT', 22000.00, 3, 22000.00, 25000.00, '39f perambur high road jamalia chennai', '39f Perambur High Road Jamalia Chennai', '2011150001', '1', '2', 'upload_files/candidate_tracker/86543963625_salahuddin_od_resume.pdf', NULL, NULL, '2020-11-16', 0, '', '5', '27', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'Task Incomplete. He dont know how to handle the errors.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-15 07:07:42', 65, '2020-12-24 01:23:30', 0, NULL, 1),
(1893, 'Mahesh v', '13', '9025280137', '', 'mahesh41840@gmail.com', '2000-05-04', 20, '2', '2', 'Venkatesan s', 'Mazoor(ch.p.t)', 200000.00, 1, 0.00, 12000.00, '2/403, muthamizh Nagar, kodungaiyur, che-118', '2/403, Muthamizh Nagar, Kodungaiyur, Che-118', '2011150002', '1', '1', 'upload_files/candidate_tracker/95599115287_1605449729119_Mahesh Resume.docx', NULL, NULL, '2020-11-16', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not strong in basic skill.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-15 07:49:07', 64, '2020-12-23 01:11:29', 0, NULL, 1),
(1894, 'Sanjeev Kannan', '13', '8681892849', '', '', '1995-02-04', 25, '3', '2', 'Venkatachalam', 'Supervisor in hotel', 7000.00, 1, 300000.00, 400000.00, 'Salem', 'Salem', '2011150003', '', '2', 'upload_files/candidate_tracker/1329753006_Sanjeev Resume-converted.pdf', NULL, NULL, '2020-11-16', 90, '', '8', '', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-15 08:38:35', 7, '2020-11-16 06:17:33', 0, NULL, 1),
(1895, 'Jinesh E', '13', '8056036186', '8608268127', 'jine.jinesh23@gmail.com', '1998-03-23', 22, '2', '1', 'Ellaiyan K', 'Fisher Man', 32500.00, 3, 32500.00, 37500.00, 'chennai', 'chennai', '2011150004', '1', '2', 'upload_files/candidate_tracker/86757808854_1603793485955_Jinesh E.pdf', NULL, NULL, '2020-11-16', 15, '', '5', '28', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'Not strong in basic skillset.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-15 09:52:33', 65, '2020-12-24 12:44:04', 0, NULL, 1),
(1896, 'yokesh m', '6', '8838381056', '', 'yokeshkumar907@gmail.com', '1999-09-18', 21, '1', '2', 'moorthy', 'tailor', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2011160001', '', '1', 'upload_files/candidate_tracker/32028106017_pqrs.pdf', NULL, NULL, '2020-11-16', 0, 'jobs', '5', '57', '1970-01-01', 0.00, '12:53 PM', '', '1970-01-01', '2', 'he is looking govt job .. and voice is not good', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 10:50:53', 50, '2020-11-16 01:07:02', 0, NULL, 1),
(1897, 'Harfath', '13', '9597240885', '8838142511', 'Harfath90@gmail.com', '1998-06-22', 22, '3', '2', 'Karimullah', 'Passed away', 12000.00, 1, 13000.00, 15000.00, 'Velacherry', 'Thiruvannamalai', '2011160002', '', '2', 'upload_files/candidate_tracker/41206925397_1598510237373Resume_Harfath.pdf', NULL, NULL, '2020-11-17', 0, '', '8', '', '1970-01-01', 0.00, '03:01 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 11:46:08', 7, '2020-11-17 05:16:39', 0, NULL, 1),
(1898, 'Somasundaram', '5', '9087405390', '7299176163', 'sundaramsoma11@gmail.com', '1991-12-23', 28, '1', '2', 'Veeeiaha', 'Self employed', 10000.00, 0, 21000.00, 23000.00, 'North Chennai', 'North Chennai', '2011160003', '', '2', 'upload_files/candidate_tracker/12226957093_Resume.docx', NULL, NULL, '2020-11-16', 0, '5181', '3', '8', '2020-11-19', 300000.00, '12:06 PM', '5', '1970-01-01', '1', '21192 th and for lokesh team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 12:01:58', 7, '2020-11-17 05:22:22', 0, NULL, 1),
(1899, 'john britto', '6', '9080013278', '', 'johnbrito1806@gmail.com', '2000-06-18', 20, '2', '2', 'johnson', 'attender', 9500.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2011160004', '1', '1', 'upload_files/candidate_tracker/30696189109_efgh.pdf', NULL, NULL, '2020-11-16', 0, '', '3', '8', '1970-01-01', 156000.00, '12:46 PM', '2', '1970-01-01', '2', '13K ctc for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 12:17:23', 7, '2020-11-16 06:16:54', 0, NULL, 1),
(1900, 'Naveen Kumar G', '13', '9444900261', '9894527297', 'Konaveenkumar777@gmail.com', '1998-02-19', 22, '2', '2', 'Gopalakrishnan R', 'Self employed', 5000.00, 1, 0.00, 10000.00, 'Arakkonam', 'Arakkonam', '2011160005', '1', '1', 'upload_files/candidate_tracker/59626944250_Naveen_Kumar_G_Resume.docx', NULL, NULL, '2020-11-17', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Know basic skill set.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-16 12:29:15', 64, '2020-12-28 03:05:24', 0, NULL, 1),
(1901, 'Thameem Shahul Hameed', '13', '7904788499', '', 'thameemsha12@gmail.com', '1995-11-21', 24, '3', '2', 'Abdul Rahim', 'Buisness', 15000.00, 1, 0.00, 13000.00, 'Tenkasi', 'Tenkasi', '2011160006', '', '1', 'upload_files/candidate_tracker/81541405226_ThameemCV.pdf', NULL, NULL, '2020-11-21', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 12:39:16', 50, '2020-11-21 06:15:49', 0, NULL, 1),
(1902, 'Kumaravel', '13', '9677783765', '', 'P.kumaravel1990@gmail.com', '1990-02-24', 30, '3', '1', 'Priya', 'Spouse', 22500.00, 1, 0.00, 30000.00, 'A.agaram, Thittakuty (tk), Cuddalore (dt) 606304', 'A.Agaram, Thittakuty (Tk), Cuddalore (Dt) 606304', '2011160007', '', '2', 'upload_files/candidate_tracker/23643934274_kumaravel 2020.pdf', NULL, NULL, '2020-11-17', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 01:13:50', 1, '2020-11-16 01:55:10', 0, NULL, 1),
(1903, 'Anandhan', '5', '9159359630', '', 'videalanand@gmail.com', '1998-07-17', 22, '2', '2', 'Palani', 'Farmer', 5.00, 0, 15.00, 20.00, 'Tiruvannamalai', 'Chennai', '2011160008', '1', '2', 'upload_files/candidate_tracker/2167389355_Anandhan Resume 2.doc', NULL, NULL, '2020-11-17', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '5', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 01:15:29', 1, '2020-11-16 01:20:28', 0, NULL, 1),
(1904, 'ajith kumar', '6', '8098662485', '8754963180', 'thalaajith895@gmail.com', '1997-05-09', 23, '2', '2', 'shanmugam', 'farmer', 20000.00, 1, 18000.00, 20000.00, 'thiruvallur', 'vadapalani', '2011160009', '3', '2', 'upload_files/candidate_tracker/48653740559_ajithkumar.pdf', NULL, NULL, '2020-11-16', 0, '', '5', '8', '1970-01-01', 0.00, '02:32 PM', '', '1970-01-01', '1', 'holds offer in JIO, still serving in sbi cards and lic in part time. pronunciation is also not clear.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 01:23:41', 50, '2020-11-16 02:56:02', 0, NULL, 1),
(1905, 'Sandhiya', '13', '9094660315', '7708839012', 'sandhiyaganesh95@gmail.com', '1995-07-01', 25, '3', '2', 'Ganesan', 'Bus conductor', 50000.00, 1, 400000.00, 480000.00, 'Chennai', 'Chennai', '2011160010', '', '2', 'upload_files/candidate_tracker/43519348626_SandhiyaGanesan02112020.pdf', NULL, NULL, '2020-11-16', 2, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 01:32:09', 7, '2020-11-16 06:17:24', 0, NULL, 1),
(1906, 'Kishore M', '6', '8608703816', '9003041713', 'Kishorekumar071196@gmail.com', '1996-11-07', 24, '1', '2', 'Murugesan', 'Coconut sales in tricycle', 12000.00, 2, 11500.00, 15000.00, 'Kknagar', 'Kknagar', '2011160011', '', '2', 'upload_files/candidate_tracker/31534748976_Resume (1).pdf', NULL, NULL, '2020-11-16', 0, '5741', '5', '16', NULL, 0.00, '03:12 PM', '0', NULL, '1', 'low profile ,no sales knowledge', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 02:47:57', 1, '2020-11-16 03:18:49', 0, NULL, 1),
(1907, 'sivakumar', '13', '6383239466', '7558181337', 'siva1105kumar@gmail.com', '1999-11-05', 21, '2', '2', 'Arumugapandian', 'former', 12000.00, 2, 0.00, 10000.00, 'thoothukudi', 'CHENNAI', '2011160012', '1', '1', 'upload_files/candidate_tracker/53408195189_sivakumar-resume 2.0.PDF.pdf', NULL, NULL, '2020-11-20', 0, '', '3', '8', '2020-12-02', 101400.00, '11:00 AM', '5', '1970-01-01', '2', '8k ctc for it', '2', '2', '2', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-16 03:10:16', 64, '2020-12-23 01:17:56', 0, NULL, 1),
(1908, 'anand kengal', '6', '8867032564', '9986103258', 'anandkengal03@gmail.com', '1998-06-05', 22, '2', '2', 'appanna kengla', 'good communication', 20000.00, 4, 0.00, 20000.00, 'kalaburgi', 'banglore', '2011160013', '1', '1', 'upload_files/candidate_tracker/71146341491_WhatsApp Image 2020-11-17 at 2.55.41 PM-converted.pdf', NULL, NULL, '2020-11-17', 0, '', '5', '30', '1970-01-01', 0.00, '02:59 PM', '', '1970-01-01', '2', 'he will not suit for this field and he donxquott know basic english', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 03:33:47', 50, '2020-11-17 03:21:00', 0, NULL, 1),
(1909, 'Ganesh Kumar', '6', '8825694812', '', 'gk676636@gmail.com', '1999-11-16', 21, '2', '2', 'Johnraj', 'Own business', 20000.00, 2, 0.00, 16.00, 'Chennai', 'Chennai', '2011160014', '1', '1', 'upload_files/candidate_tracker/9238979694_RESUME .pdf', NULL, NULL, '2020-11-17', 0, '', '5', '16', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'low profile ,no communication skills', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 04:23:52', 50, '2020-11-17 10:34:47', 0, NULL, 1),
(1910, '', '0', '9551505206', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011160015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 04:25:14', 0, NULL, 0, NULL, 1),
(1911, 'sujay simha', '6', '6363587894', '', 'ssimha28@gmail.com', '1996-12-17', 23, '2', '2', 'a. raghavendrachar', 'retired accountant', 9000.00, 0, 0.00, 4.12, 'hospet', 'banglore', '2011160016', '1', '2', 'upload_files/candidate_tracker/8166291295_WhatsApp Image 2020-11-18 at 11.16.56-converted.pdf', NULL, NULL, '2020-11-18', 0, '', '5', '30', '1970-01-01', 0.00, '11:13 AM', '', '1970-01-01', '1', 'he is looking for high package and he will not suite for our process', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 05:32:18', 7, '2020-11-18 06:18:54', 0, NULL, 1),
(1912, 'vellaisamy c', '6', '8838321671', '', 'vellaisamy087@gmail.com', '1995-12-28', 24, '2', '2', 'chinnaiya p', 'former', 35000.00, 3, 27000.00, 27000.00, 'trichy', 'chennai', '2011160017', '1', '2', 'upload_files/candidate_tracker/50557184611_resume new.pdf', NULL, NULL, '2020-11-17', 15, '', '5', '36', NULL, 0.00, '11:38 AM', '0', NULL, '1', 'NOT FIT', '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-16 06:33:40', 1, '2020-11-17 12:02:12', 0, NULL, 1),
(1913, 'Vinoth Kumar', '5', '6379660697', '9791293415', 'saivino9110@gmail.com', '1991-09-10', 29, '2', '2', 'Palani.m', 'Expired', 25000.00, 1, 25000.00, 30000.00, 'Tiruvallure', 'Chennai', '2011160018', '3', '2', 'upload_files/candidate_tracker/50731132776_Vinoth Resume.docx', NULL, NULL, '2020-11-17', 15, '', '3', '8', '2020-11-23', 276000.00, '12:00 PM', '6', '2021-03-31', '1', '23K CTC,PT - 208, for GK team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 07:19:14', 7, '2020-11-23 01:02:23', 0, NULL, 1),
(1914, 'swetha', '13', '8778254075', '8144639941', 'swethavelsjz@gmail.com', '1999-05-29', 21, '3', '2', 'jeyarani', 'beedi employee', 18000.00, 2, 15000.00, 25000.00, 'vickramasingapuram', 'coimbatore', '2011160019', '', '2', 'upload_files/candidate_tracker/87928415447_resume2.pdf', NULL, NULL, '2020-11-17', 10, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-16 07:53:53', 7, '2020-11-17 05:16:23', 0, NULL, 1),
(1915, 'hreyans', '13', '9962685851', '', 'shs@live.in', '1994-08-30', 26, '2', '2', 'ttam', 'own', 200000.00, 1, 365000.00, 600000.00, 'hennai', 'hennai', '2011170001', '1', '2', 'upload_files/candidate_tracker/24540655704_Camera.pdf', NULL, NULL, '2020-11-18', 0, '', '5', '27', '1970-01-01', 0.00, '11:52 AM', '', '1970-01-01', '2', 'Not Good in Technical. Already attended before 6 Months.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-17 08:43:21', 64, '2020-12-23 01:13:27', 0, NULL, 1),
(1916, 'harishkumar m.p', '6', '9535352421', '8050705939', 'harishkumarmph69@gmail.com', '1995-11-10', 25, '1', '2', 'purushotham m.s', 'F.D.A', 35000.00, 1, 17000.00, 25000.00, 'K.r.pete', 'mysore', '2011170002', '', '2', 'upload_files/candidate_tracker/66455980821_Harish-converted-1.pdf', NULL, NULL, '2020-11-18', 10, '50016685', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 09:54:40', 1, '2020-11-17 10:05:50', 0, NULL, 1),
(1917, '', '0', '8277418218', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 10:06:08', 0, NULL, 0, NULL, 1),
(1918, 'santhiyagu haris', '13', '9206307441', '', 'ariscareer@gmail.com', '1995-04-28', 25, '3', '2', 'james', 'farmer', 10000.00, 2, 5.00, 7.00, 'Dindigul', 'Dindigul', '2011170004', '', '2', 'upload_files/candidate_tracker/12042890730_ArisRegan_resume.docx.pdf', NULL, NULL, '2020-11-17', 40, '', '8', '', '1970-01-01', 0.00, '10:37 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 10:10:23', 7, '2020-11-17 05:16:14', 0, NULL, 1),
(1919, '', '0', '8667272116', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 10:18:29', 0, NULL, 0, NULL, 1),
(1920, 'R.Anandhan', '6', '8778673516', '9176355562', 'ranandhan60@gmail.com', '1997-01-07', 23, '2', '2', 'Ranganathan', 'Labour', 15000.00, 1, 19000.00, 20000.00, 'Chennai', 'Pallavaram', '2011170006', '1', '2', 'upload_files/candidate_tracker/39004225409_2 pages resume 2222222.docx', NULL, NULL, '2020-11-18', 15, '', '5', '57', NULL, 0.00, '02:15 PM', '0', NULL, '1', 'voice is not good ..', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-17 11:52:26', 1, '2020-11-18 02:22:14', 0, NULL, 1),
(1921, 'D. Ajitha', '4', '8838729003', '6381643281', 'ajidevakumar16@gmail.com', '1998-05-16', 22, '1', '2', 'Devakumar', 'Marketing', 16000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011170007', '', '1', 'upload_files/candidate_tracker/60917763308_RESUME Ajitha.docx.pdf', NULL, NULL, '2020-11-17', 0, 'P1122', '3', '8', '1970-01-01', 120000.00, '12:04 PM', '2', '1970-01-01', '2', '10K for Muthu team', '1', '2', '1', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 11:59:10', 7, '2020-11-18 06:24:53', 0, NULL, 1),
(1922, 'rajasekar m', '13', '8807909900', '', 'mymailrajasekar@gmail.com', '1994-02-02', 26, '3', '2', 'madankumar s', 'weaver', 10000.00, 1, 240000.00, 360000.00, 'salem', 'salem', '2011170008', '', '2', 'upload_files/candidate_tracker/30465156066_Rajasekar M RESUME 2020.pdf', NULL, NULL, '2020-11-19', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'will not join', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:09:25', 1, '2020-11-17 12:27:48', 0, NULL, 1),
(1923, 'Sandhya.a.srinivasan', '5', '9360689741', '9789853364', 'aasandhya2812@gmail.com', '1993-12-28', 26, '3', '2', 'A.srinivasan', 'Insurance Consultant', 100000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2011170009', '', '2', 'upload_files/candidate_tracker/63194749197_Sandhya\'s Resume.pdf', NULL, NULL, '2020-11-17', 0, '', '5', '36', NULL, 0.00, '12:27 PM', '0', NULL, '1', 'Not fit', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:23:31', 1, '2020-11-17 12:33:25', 0, NULL, 1),
(1924, '', '0', '6360304073', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:53:18', 0, NULL, 0, NULL, 1),
(1925, 'k. asha', '13', '7598433877', '9442204833', 'ashalaughlin@gmail.com', '1990-10-31', 30, '4', '1', 'c. laughlindhas', 'php developer', 20000.00, 2, 20000.00, 25000.00, 'kanyakumari', 'chennai', '2011170011', '', '2', 'upload_files/candidate_tracker/51581766174_ASHA RESUME.docx', NULL, NULL, '2020-11-19', 0, '', '5', '27', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'Telephonic interview taken. She is not good in technical. ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:55:31', 1, '2020-11-17 01:15:25', 0, NULL, 1),
(1926, 'vigneswaran.v', '6', '8608179491', '', 'vickyvignesh8889@gmail.com', '1998-08-23', 22, '2', '2', 'venkatesh.g', 'private employee', 30000.00, 3, 25000.00, 25000.00, 't.nagar', 't.nagar', '2011170012', '3', '2', 'upload_files/candidate_tracker/53561252679_VICKY RESUME.docx', NULL, NULL, '2020-11-17', 15, '', '5', '57', NULL, 0.00, '01:14 PM', '0', NULL, '1', 'voice and appearance very bad.. ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 12:57:21', 1, '2020-11-17 01:49:16', 0, NULL, 1),
(1927, 'akash r', '5', '9360499910', '7358784106', 'akashribaroo@gmail.com', '1998-08-05', 22, '2', '2', 'ravichandhiran k', 'farmer', 45000.00, 4, 25000.00, 30000.00, 'chennai', 'chennai', '2011170013', '3', '2', 'upload_files/candidate_tracker/36043487710_Akash R(2) (1).docx', NULL, NULL, '2020-11-23', 0, '', '3', '8', '2020-12-03', 312000.00, '01:30 PM', '5', '1970-01-01', '1', '26k ctc for lokesh team', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 01:31:49', 7, '2020-12-02 04:24:00', 0, NULL, 1),
(1928, 'Sriman', '22', '8526365801', '', '', '1995-07-22', 25, '2', '2', 'Sivanraj', 'Business', 20000.00, 1, 13000.00, 18000.00, 'Tirunelveli', 'Chennai', '2011170014', '1', '2', 'upload_files/candidate_tracker/67205581950_Sriman Resume.docx', NULL, NULL, '2020-11-19', 0, '', '6', '0', NULL, 0.00, '02:23 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-17 02:20:07', 1, '2020-11-17 02:23:44', 0, NULL, 1),
(1929, 'D.Vimal Raj', '5', '9840455175', '9840234178', 'Vimalprop@gmail.com', '1991-01-16', 29, '1', '2', 'Dhivyanathan', 'Business', 300000.00, 1, 25000.00, 28000.00, 'Chennai', 'Chennai', '2011170015', '', '2', 'upload_files/candidate_tracker/42415945482_Vimal_Resume_2020.docx', NULL, NULL, '2020-11-17', 0, '5369', '3', '8', '2020-12-03', 276000.00, '02:38 PM', '3', '2025-02-11', '1', '23k for sarath team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 02:30:19', 7, '2020-11-27 02:31:19', 0, NULL, 1),
(1930, 'T. R. Karthick Prasanna', '13', '9629643157', '', 'krishvicky97@gmail.com', '1997-12-07', 22, '2', '2', 'T. R. Ramesh', 'Medical oxygen dealer', 35000.00, 1, 0.00, 15000.00, 'Madurai', 'Madurai', '2011170016', '1', '1', 'upload_files/candidate_tracker/56591084226_kARTHICK RESUME-converted.pdf', NULL, NULL, '2020-11-19', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-17 02:32:36', 1, '2020-11-17 02:35:27', 0, NULL, 1),
(1931, '', '0', '8867032664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 02:37:30', 0, NULL, 0, NULL, 1),
(1932, 'Selvam P', '13', '8610740624', '9042543852', 'selva.kec.cse@gmail.com', '1991-04-13', 29, '3', '2', 'Parthiban M', 'Farmer', 25000.00, 1, 240000.00, 360000.00, 'Krishnagiri', 'Krishnagiri', '2011170018', '', '2', 'upload_files/candidate_tracker/62045832065_1605508870340Resume_selvam.docx', NULL, NULL, '2020-11-21', 30, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 02:43:06', 50, '2020-11-21 06:15:58', 0, NULL, 1),
(1933, 'Naveenkumar V', '13', '9442551589', '', 'naveenvelu49@gmail.com', '1995-06-12', 25, '1', '2', 'Velu K', 'Farmer', 20000.00, 2, 21000.00, 30000.00, 'Krishnagiri', 'Chennai', '2011170019', '', '2', 'upload_files/candidate_tracker/58121581240_Naveen resume3.pdf', NULL, NULL, '2020-11-18', 0, '58', '8', '27', NULL, 0.00, '03:33 PM', '0', NULL, '2', 'this candidate wrongly mapped. he is not attended', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 03:30:27', 1, '2020-11-17 03:35:17', 0, NULL, 1),
(1934, 'K.r.arun', '5', '8939495837', '', 'arunrajesh1108@gmail.com', '1998-10-01', 22, '2', '2', 'K.g.ramesh', 'Clerk', 15000.00, 1, 0.00, 17000.00, 'Tiruvootriyur', 'Chennai', '2011170020', '1', '1', 'upload_files/candidate_tracker/64390925395_my resume.doc', NULL, NULL, '2020-11-18', 0, '', '5', '31', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '1', 'Not interested in sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-17 03:49:22', 7, '2020-11-18 11:27:26', 0, NULL, 1),
(1935, 'Aravinthraj', '13', '7502853922', '', 'aravinthrajrpm003@gmail.com', '2001-01-20', 19, '2', '2', 'Ramalingam', 'Farmer', 16000.00, 3, 0.00, 15000.00, 'Sirkazhi', 'Sirkazhi', '2011170021', '1', '1', 'upload_files/candidate_tracker/4873368706_Aravinthraj_resume.pdf', NULL, NULL, '2020-11-20', 0, '', '5', '28', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not strong in basic skillset.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-17 05:24:55', 64, '2020-12-23 01:24:49', 0, NULL, 1),
(1936, 'shaji m kurup', '5', '9840133908', '9382315268', 'shaji.madhusudana@gmail.com', '1968-05-31', 52, '2', '1', 't k madhusudana kurup', 'farmer', 50000.00, 2, 50000.00, 60000.00, 'chennai', 'chennai', '2011170022', '3', '2', 'upload_files/candidate_tracker/49353345214_SHAJI MADHUSUDANA KURUP 2020(2) (1).docx', NULL, NULL, '2020-11-18', 7, '', '5', '29', NULL, 0.00, '10:00 AM', '0', NULL, '1', 'aged and not fit for our profile', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 05:30:52', 1, '2020-11-17 06:52:35', 0, NULL, 1),
(1937, 'Azarudeen', '5', '9962414617', '8072147278', 'itsmeazar@gmail.com', '1991-07-03', 29, '2', '2', 'Raja Rahim', 'BUSINESS', 30000.00, 2, 300000.00, 375000.00, 'Chennai', 'Chennai', '2011170023', '1', '2', 'upload_files/candidate_tracker/55895134280_1605507748334_current resume.pdf', NULL, NULL, '2020-11-19', 0, '', '5', '36', '1970-01-01', 0.00, '12:20 PM', '', '1970-01-01', '1', 'Not fit', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-17 06:08:37', 58, '2020-12-29 10:17:20', 0, NULL, 1),
(1938, '', '0', '9600353962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011170024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-17 08:42:15', 0, NULL, 0, NULL, 1),
(1939, '', '0', '7358604677', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 09:38:18', 0, NULL, 0, NULL, 1),
(1940, 'arul prakash g', '5', '9943908728', '9025356371', 'arul2global@gmail.com', '1990-02-09', 30, '2', '2', 'govindasamy m', 'farmer', 10000.00, 2, 3.20, 4.20, 'Krishnagiri', 'CHENNAI', '2011180002', '1', '2', 'upload_files/candidate_tracker/24676810694_UPDATED RESUME.pdf', NULL, NULL, '2020-11-21', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'will not join.', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-18 10:31:50', 58, '2020-12-23 01:36:13', 0, NULL, 1),
(1941, '', '0', '9447608324', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 10:33:29', 0, NULL, 0, NULL, 1),
(1942, 'Akshy ST', '5', '8248841810', '7448322508', 'akshy00000@gmail.com', '2000-07-16', 20, '2', '2', 'Latha', 'Tilor', 9500.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011180004', '8', '1', 'upload_files/candidate_tracker/12825272508_AKSHY RESUME OG.docx', NULL, NULL, '2020-11-18', 0, '', '3', '8', '2020-11-23', 189600.00, '10:54 AM', '6', '2021-03-26', '1', '15800 CTC,15010 TH', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 10:44:57', 7, '2020-11-21 06:20:55', 0, NULL, 1),
(1943, 'Karutha pandian', '5', '7448322508', '8248841810', 'karuthapandian.kp15@gmail.com', '1999-06-15', 21, '2', '2', 'Thanga mari', 'Government employee', 23000.00, 2, 0.00, 15000.00, 'Velachery', 'Velachery', '2011180005', '8', '1', 'upload_files/candidate_tracker/76895640264_R.KARUTHA PANDIAN_RESUME_2-5464.pdf', NULL, NULL, '2020-11-18', 0, '', '3', '8', '2020-11-23', 227400.00, '10:55 AM', '4', '2021-05-06', '1', 'CTC-18950/TH - 18002.50', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 10:45:57', 7, '2020-11-21 06:21:51', 0, NULL, 1),
(1944, 'shanthi', '16', '7305442641', '', 'shanus1964@gmail,com', '1985-01-17', 35, '1', '2', 'ttam', 'na', 200000.00, 2, 365000.00, 380000.00, 'chennai', 'chennai', '2011180006', '', '2', 'upload_files/candidate_tracker/85786757659_Shanthi CV_2020.pdf', NULL, NULL, '2020-11-18', 0, '55600', '5', '8', NULL, 0.00, '11:18 AM', '0', NULL, '2', 'not upto the level for mis', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 11:11:59', 1, '2020-11-18 12:20:47', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(1945, 'Velmurugan', '5', '9940305223', '', 'vels83murugan@gamail.com', '1981-07-27', 39, '2', '1', 'Gomathi', 'SENIOR SALES OFFICER', 15000.00, 5, 15000.00, 20000.00, 'Chennai', 'Chennai', '2011180007', '3', '2', 'upload_files/candidate_tracker/85172421554_Central_Employment_Exchange.pdf', NULL, NULL, '2020-11-23', 0, '', '5', '29', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'not selected', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 11:23:22', 50, '2020-11-23 10:54:25', 0, NULL, 1),
(1946, 'g.vinoth kumar', '13', '7338762667', '8883416696', 'gvinoth293@gmail.com', '1995-05-07', 25, '2', '2', 'c.ganesan', 'tailor', 10000.00, 1, 25000.00, 25000.00, 'panruti', 'velachery', '2011180008', '1', '2', 'upload_files/candidate_tracker/70860622168_VinothResnew.pdf', NULL, NULL, '2020-11-20', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Task Incomplete.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-18 12:14:35', 64, '2020-12-23 01:25:48', 0, NULL, 1),
(1947, 'Sankar', '13', '8248600342', '', '', '1995-05-28', 25, '2', '2', 'Uoorkavalaperumal', 'Farmer', 10000.00, 0, 13000.00, 20000.00, 'Tirunelveli', 'Chennai', '2011180009', '1', '2', 'upload_files/candidate_tracker/80817702614_Sankar_Resume.doc', NULL, NULL, '2020-11-20', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He is Not Good in Technical, Attitude is not good.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-18 12:38:06', 64, '2020-12-23 01:26:56', 0, NULL, 1),
(1948, 'Dhanalakshmi. D', '5', '8015267694', '8682095120', 'dhanadivya1311@gmail.com', '1994-11-13', 26, '2', '2', 'P.Dhamodaran ( late)', 'Nil', 72000.00, 1, 18000.00, 25000.00, '23/11 3rd lane khana baghtriplicane chennai 600005', 'Same as above', '2011180010', '1', '2', 'upload_files/candidate_tracker/61034061103_dhana 2020.pdf', NULL, NULL, '2020-11-19', 30, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-18 01:06:57', 1, '2020-11-18 01:12:44', 0, NULL, 1),
(1949, 'Naveen Kumar.G', '6', '9344882895', '9600847360', 'naveennkas@gmail.com', '1996-06-28', 24, '2', '2', 'P.Govinda samy', 'Auto driver', 15000.00, 1, 10000.00, 10000.00, '29/2 rathasabavathy street oldwashermenpet', '29/2 rathasabavathy street oldwashermenpet', '2011180011', '1', '2', 'upload_files/candidate_tracker/36660798794_naveen resume.docx', NULL, NULL, '2020-11-18', 0, '', '3', '8', '2020-11-20', 156000.00, '01:40 PM', '5', '1970-01-01', '2', '13K for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-18 01:34:49', 7, '2020-11-19 06:18:41', 0, NULL, 1),
(1950, 'Raja Raja cholan', '13', '8344222832', '', 'vrrcholan@gmail.com', '1997-07-04', 23, '2', '2', 'Venkatesan', 'Advocate', 20000.00, 1, 1.50, 18000.00, 'Chennai', 'Chennai', '2011180012', '1', '2', 'upload_files/candidate_tracker/54800807086_PHP-Developer-Rajarajacholan-2020.docx', NULL, NULL, '2020-11-21', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-18 02:46:30', 50, '2020-11-21 06:16:05', 0, NULL, 1),
(1951, '', '0', '8344892241', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 04:21:55', 0, NULL, 0, NULL, 1),
(1952, 'nirmal', '5', '8148161597', '', 'nimiricky@gmail.com', '1990-05-11', 30, '2', '2', 'natarajan c', 'retried person', 600000.00, 0, 24800.00, 27000.00, 'new washermenpet', 'new washermenpet', '2011180014', '1', '2', 'upload_files/candidate_tracker/75016158534_UpdatedResume.doc', NULL, NULL, '2020-11-20', 30, '', '3', '8', '2020-12-03', 360000.00, '12:30 PM', '5', '1970-01-01', '2', '30k ctc for sarath team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-18 04:22:05', 58, '2020-12-23 01:04:50', 0, NULL, 1),
(1953, 'thangadurai', '13', '9659330778', '', 'beemadurai@gmail.com', '1988-07-19', 32, '2', '1', 'papitha', 'education consultant', 160000.00, 2, 1020000.00, 1600000.00, 'chennai', 'chennai', '2011180015', '1', '2', 'upload_files/candidate_tracker/13548654533_Thangadurai_9yrExp.pdf', NULL, NULL, '2020-11-20', 10, '', '5', '27', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'System Task Not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-18 04:54:46', 65, '2020-12-24 10:07:52', 0, NULL, 1),
(1954, '', '0', '9360506641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 05:25:32', 0, NULL, 0, NULL, 1),
(1955, '', '0', '8052469502', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 05:31:30', 0, NULL, 0, NULL, 1),
(1956, '', '0', '8710871181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 05:42:25', 0, NULL, 0, NULL, 1),
(1957, '', '0', '9600102129', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 06:58:25', 0, NULL, 0, NULL, 1),
(1958, '', '0', '9003104475', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011180020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-18 09:31:25', 0, NULL, 0, NULL, 1),
(1959, 'Ponnusamy', '13', '8825808329', '7397598932', 'ponnusamy8798@gmail.com', '1998-07-08', 22, '2', '2', 'Murugesan', 'Chef', 10000.00, 2, 0.00, 10000.00, 'Namakkal', 'Namakkal', '2011180021', '1', '1', 'upload_files/candidate_tracker/20732855874_1_ponnusamy_resume.docx', NULL, NULL, '2020-11-19', 0, '', '3', '8', '2020-11-23', 120000.00, '10:00 AM', '0', NULL, '2', '9.5K for IT team', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-18 10:02:08', 1, '2020-11-18 10:08:53', 0, NULL, 1),
(1960, 'prabakaran', '13', '9003321250', '', 'prabakar.php@gmail.cm', '1991-06-05', 29, '2', '1', 'balasubramanian', 'not working', 100000.00, 1, 5.04, 7.50, 'trichy', 'chennai', '2011190001', '1', '2', 'upload_files/candidate_tracker/33861823223_Prabakaran 5+.docx', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 08:44:36', 65, '2020-12-24 01:08:06', 0, NULL, 1),
(1961, 'Arthy.b', '5', '9790371401', '8489879121', 'Arthibala2013@gmail.com', '1992-06-05', 28, '2', '2', 'Balakrishnan', 'Bala', 50000.00, 2, 300000.00, 400000.00, 'Mannargudi', 'Chennai', '2011190002', '1', '2', 'upload_files/candidate_tracker/56033938345_Art resume.pdf', NULL, NULL, '2020-11-19', 0, '', '5', '29', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'rejected', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-19 10:22:35', 58, '2020-12-29 10:20:11', 0, NULL, 1),
(1962, 'srinivasan k', '6', '9962718831', '', 'smartseenu10@gmail.com', '1998-06-19', 22, '2', '2', 'kuppan', 'book binder', 15000.00, 0, 0.00, 25000.00, 'chennai', 'chennai', '2011190003', '1', '1', 'upload_files/candidate_tracker/3979251282_Seenu(1).docx', NULL, NULL, '2020-11-19', 0, '', '5', '57', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'voice bad', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 10:48:44', 7, '2020-11-19 05:08:48', 0, NULL, 1),
(1963, 'Jayanthi p', '13', '9751946371', '', 'Jaikutty1411@gmail.com', '1999-11-14', 21, '2', '2', 'Pachaiappan', 'Electrician', 12000.00, 1, 0.00, 20000.00, 'Kundrathur', 'Kundrathur', '2011190004', '1', '1', 'upload_files/candidate_tracker/85903631209_RESUME-1.docx', NULL, NULL, '2020-11-19', 0, '', '5', '28', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', 'She is not strong in basic php.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-19 11:54:36', 64, '2020-12-23 01:23:55', 0, NULL, 1),
(1964, 'Gurunathan', '5', '9345325569', '8754811894', 'guruchinnu28@gmail.com', '1996-11-03', 24, '2', '2', 'Jaganathan', 'Business', 15000.00, 1, 3.70, 3.70, 'RAJAPALAYAM', 'Madipakkam', '2011190005', '1', '2', 'upload_files/candidate_tracker/42416013001_GURU.docx', NULL, NULL, '2020-11-20', 0, '', '5', '51', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'rejected', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 11:58:52', 1, '2020-11-19 12:05:36', 0, NULL, 1),
(1965, 'Ajith Kumar M', '6', '9710063579', '7305218724', 'ajithkumar050516@gmail.com', '1997-05-05', 23, '1', '2', 'Manoharan', 'Rickshaw driver', 20000.00, 2, 13000.00, 15000.00, 'Chennai kodungaiyur', 'Chennai kodungaiyur', '2011190006', '', '2', 'upload_files/candidate_tracker/65030361396_1605771050571_1605771050382_M.AJITH KUMAR resume.doc', NULL, NULL, '2020-11-19', 0, 'P1065', '3', '8', '2020-11-23', 182700.00, '01:00 PM', '3', '2021-03-06', '1', '15225 CTC,14500 TH', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 12:41:48', 7, '2020-11-21 06:19:15', 0, NULL, 1),
(1966, 'Puneeth M', '6', '9066642981', '9845102572', 'punithmukund007@gmail.com', '1999-06-22', 21, '2', '2', 'Mukundhachar', 'Fresher', 300000.00, 1, 0.00, 300000.00, 'Mandya', 'Kengeri', '2011190007', '1', '1', 'upload_files/candidate_tracker/86997550089_puneethresume.pdf', NULL, NULL, '2020-11-19', 0, '', '8', '38', '1970-01-01', 0.00, '01:50 PM', '', '1970-01-01', '1', 'WORST BEHAVIOUR', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-19 01:48:21', 58, '2020-12-23 01:35:28', 0, NULL, 1),
(1967, 'PraveenRaj B', '6', '9790832930', '9791718473', 'rajpraveen347@gmail.com', '1998-04-12', 22, '1', '2', 'Babu S', 'Welding', 54000.00, 1, 15000.00, 16000.00, 'Tondiarpet', 'Thiruvottiyur', '2011190008', '', '2', 'upload_files/candidate_tracker/69864349848_stc praveen resume.docx', NULL, NULL, '2020-11-19', 0, 'P1065', '3', '8', '2020-11-20', 180000.00, '02:40 PM', '6', '2021-12-31', '1', '15k ctc for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 02:35:51', 7, '2020-11-19 06:12:13', 0, NULL, 1),
(1968, '', '0', '9962196312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011190009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 04:23:14', 0, NULL, 0, NULL, 1),
(1969, 'Rameez basheer', '6', '9495506202', '', 'rmz.bshr@gmail.com', '1991-03-23', 29, '2', '1', 'Hamna Shirin T', 'Ayurveda Doctor', 50000.00, 2, 25000.00, 25000.00, 'Kottayam', 'Chennai', '2011190010', '1', '2', 'upload_files/candidate_tracker/6436949470_Rameez Basheer.pdf', NULL, NULL, '2020-11-20', 0, '', '5', '51', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 04:37:36', 50, '2020-11-20 11:27:54', 0, NULL, 1),
(1970, 'Sudhakaran V', '6', '9940281280', '8248554228', 'sudhakaranveerappan009@gmail.com', '1996-01-18', 24, '2', '2', 'Veerappan P', 'Accounts officer, IOC', 70000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2011190011', '1', '1', 'upload_files/candidate_tracker/39236549822_sudhakaran resume.docx', NULL, NULL, '2020-11-20', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-19 04:53:20', 50, '2020-11-20 06:09:02', 0, NULL, 1),
(1971, '', '0', '9894302719', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011190012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 08:45:17', 0, NULL, 0, NULL, 1),
(1972, '', '0', '9962096311', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011190013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-19 08:59:39', 0, NULL, 0, NULL, 1),
(1973, 'prusthothaman s', '6', '9944436619', '', 'vnbprushoth97@gmail.com', '1997-05-18', 23, '2', '2', 'saravanan s', 'electrical engineer', 10000.00, 1, 0.00, 15000.00, 'chennai', 'cmbt', '2011200001', '2', '1', 'upload_files/candidate_tracker/76702377358_Prushotaman_S_CV.pdf', NULL, NULL, '2020-11-20', 0, '', '5', '19', '1970-01-01', 0.00, '11:08 AM', '', '1970-01-01', '2', 'not fit for sale', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 11:04:21', 50, '2020-11-20 11:14:12', 0, NULL, 1),
(1974, 'Mohamed Ali', '13', '9042725327', '9551313239', 'Mohammedaliece21@gmail.com', '1998-07-31', 22, '1', '2', 'Jabar. S', 'Shop keeper', 30000.00, 4, 0.00, 12000.00, 'Chennai', 'Chennai', '2011200002', '', '1', 'upload_files/candidate_tracker/21428232608_resumemohamed2.docx', NULL, NULL, '2020-11-20', 0, 'P1123', '5', '28', NULL, 0.00, '11:14 AM', '0', NULL, '1', 'He is not good in basic skillset', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 11:10:39', 1, '2020-11-20 11:18:44', 0, NULL, 1),
(1975, '', '0', '8519838840', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011200003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 11:29:12', 0, NULL, 0, NULL, 1),
(1976, 'gokulrajan', '6', '8681034776', '7358336043', 'gokulrajanrajan6957@gmail.com', '1998-05-19', 22, '2', '2', 'thangavel', 'security', 20000.00, 2, 15000.00, 17000.00, 'villupuram', 'kottivakkam chennai', '2011200004', '1', '2', 'upload_files/candidate_tracker/8361273155_T Gokul Rajan New Resume 2020 Word.docx', NULL, NULL, '2020-11-21', 1, '', '3', '8', '2020-11-27', 192000.00, '01:26 PM', '6', '2021-03-26', '1', '16k ctc 12464 TH with esixxampPf', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-20 11:48:05', 7, '2020-11-27 10:17:13', 0, NULL, 1),
(1977, '', '0', '9944582280', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011200005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 11:58:30', 0, NULL, 0, NULL, 1),
(1978, '', '0', '9524415107', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011200006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 12:02:01', 0, NULL, 0, NULL, 1),
(1979, 'c jyothi', '5', '8520049567', '', 'jyothichalamakunta@gmail.com', '1994-06-20', 26, '2', '2', 'c rama mohan reddy', 'farmer', 10000.00, 1, 2.80, 3.70, 'andhra pradesh', 'bangalore', '2011200007', '1', '2', 'upload_files/candidate_tracker/8642781023_JYOTHI C (1) (1).docx', NULL, NULL, '2020-11-21', 0, '', '3', '8', '2020-11-27', 312000.00, '11:00 AM', '6', '2021-11-29', '2', '26k ctc no esi and pf', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-20 01:50:31', 58, '2020-12-23 12:31:19', 0, NULL, 1),
(1980, 'n ganesh', '6', '9581291529', '8519838840', 'nanchariganesh459@gmail.com', '1996-06-10', 24, '2', '2', 'raghu', 'former', 5000.00, 1, 17000.00, 20000.00, 'Chittoor', 'Chittoor', '2011200008', '1', '2', 'upload_files/candidate_tracker/55153173809_Gani2.docx', NULL, NULL, '2020-11-20', 0, '', '5', '39', '1970-01-01', 0.00, '10:57 AM', '', '1970-01-01', '1', 'He is not suitable for our profile. Communication is too bad', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-20 03:17:23', 58, '2020-12-23 01:38:49', 0, NULL, 1),
(1981, 'Deva. K', '13', '8939734013', '9176167013', 'Devasmart000@gmail.com', '1998-05-23', 22, '2', '2', 'Kannan', 'Leather company', 100000.00, 2, 10000.00, 12000.00, 'chennai', 'chennai', '2011200009', '', '2', 'upload_files/candidate_tracker/84527762042_deva_resume.docx', NULL, NULL, '2020-11-24', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 04:00:27', 1, '2020-11-20 04:09:59', 0, NULL, 1),
(1982, 'Pugazh', '13', '9500000159', '', 'pugazhkovan83@gmail.com', '1983-06-08', 37, '2', '1', 'Thamizhazhagan', 'Red teacher', 100000.00, 1, 0.00, 300000.00, 'Washermanpet chennai', 'Washermanpet chennai', '2011200010', '1', '2', 'upload_files/candidate_tracker/11007632203_Resume.doc', NULL, NULL, '2021-02-19', 0, '', '5', '28', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '1', 'He is not strong in technically.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-20 04:56:50', 1, '2021-02-19 05:21:42', 0, NULL, 1),
(1983, 'Mythrayee', '13', '8838564174', '9362828131', 'm.mythrayee@gmail.com', '1990-05-25', 30, '2', '2', 'Murugesan', 'Business', 200000.00, 2, 10000.00, 150000.00, 'Chennai', 'Chennai', '2011200011', '1', '2', 'upload_files/candidate_tracker/19570757890_0_Resume_Mythrayee.docx', NULL, NULL, '2020-11-24', 15, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-20 04:57:22', 1, '2020-11-20 05:02:07', 0, NULL, 1),
(1984, '', '0', '7406909976', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011200012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-20 07:18:00', 0, NULL, 0, NULL, 1),
(1985, 'siva venkata sai s', '5', '8122840298', '9789976375', 'sgoutham36@gmail.com', '1994-09-03', 26, '2', '1', 'nimisha', 'house wife', 25000.00, 0, 25000.00, 32000.00, 'Chennai', 'Chennai', '2011200013', '1', '2', 'upload_files/candidate_tracker/607087299_SIVA VENKATA SAI. S.docx', NULL, NULL, '2020-11-23', 2, '', '5', '18', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'no response from the candidate.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-20 07:31:31', 50, '2020-11-23 11:41:54', 0, NULL, 1),
(1986, '', '0', '7305578589', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011210001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 02:02:58', 0, NULL, 0, NULL, 1),
(1987, 'ARUMUGASAMY', '5', '9176786223', '7871990930', 'aarumalathi90@gmail.com', '1993-10-18', 27, '2', '2', 'GURUSAMY', 'COOLI', 10000.00, 0, 23500.00, 28000.00, 'Tirunelveli', 'Chennai', '2011210002', '3', '2', 'upload_files/candidate_tracker/45968411211_1605854860958_1605768040704_Aaru2 Resume.docx', NULL, NULL, '2020-11-21', 0, '', '5', '51', NULL, 0.00, '10:30 AM', '0', NULL, '1', 'Convicing Skill Is Poor', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 09:27:13', 1, '2020-11-21 09:54:41', 0, NULL, 1),
(1988, 'Ravikumar Rathinam', '5', '9884087535', '', 'ravikumarrathanam94@gmail.com', '1994-09-20', 26, '2', '2', 'Rathinam k', 'Farmer', 15000.00, 2, 240000.00, 300000.00, 'Dharmapuri', 'Chennai', '2011210003', '1', '2', 'upload_files/candidate_tracker/60582880721_Ravikumar Rathinam resume nov 2020.pdf', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-21 10:39:36', 7, '2020-11-23 06:18:26', 0, NULL, 1),
(1989, 'Sai siva chandran', '4', '7358535569', '8754144301', 'saisiva115@gmail.com', '1995-04-27', 25, '1', '2', 'N.Pichamani', 'Silver business', 15000.00, 0, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2011210004', '', '2', 'upload_files/candidate_tracker/23891724744_Siva resume.pdf', NULL, NULL, '2020-11-21', 0, '5369', '5', '13', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'Expected Salary High And Long Distance', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 10:57:47', 50, '2020-11-21 11:27:19', 0, NULL, 1),
(1990, 'sathish b', '6', '9080589670', '8682010490', 'sathishkarthick1999@gmail.com', '2000-05-30', 20, '1', '2', 'baskar d', 'molding worker', 18000.00, 1, 0.00, 12000.00, 'kundrathur', 'kundrathur', '2011210005', '', '1', 'upload_files/candidate_tracker/64178714549_sathish.B resume_11.pdf', NULL, NULL, '2020-11-21', 0, 'p1605', '3', '8', '2020-11-23', 156000.00, '11:12 AM', '6', '2020-12-25', '1', '13K cCTC TH-12350 - TEAM SYED BY arun', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 10:58:36', 7, '2020-11-21 06:23:58', 0, NULL, 1),
(1991, 'B. M. Benya', '13', '9442067639', '9787765795', 'benyabenz1999@gmail.com', '1999-03-17', 21, '2', '2', 'S. Ben Alexander', 'Xerox shop', 6500.00, 2, 0.00, 20000.00, 'Marthandam', 'Marthandam', '2011210006', '14', '1', 'upload_files/candidate_tracker/10617691264_1010.pdf', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 11:15:25', 7, '2020-11-23 06:18:35', 0, NULL, 1),
(1992, 'Lavanya', '13', '8310977987', '', '', '1997-05-06', 23, '2', '2', 'MS Anand', 'Artist', 60000.00, 1, 0.00, 35000.00, 'Mysore', 'Mysore', '2011210007', '14', '1', 'upload_files/candidate_tracker/77527297896_lavanya_resume.pdf', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 11:18:49', 7, '2020-11-23 06:18:57', 0, NULL, 1),
(1993, '', '0', '9894914912', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011210008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 11:36:04', 0, NULL, 0, NULL, 1),
(1994, 'mohammed thameem isthiak', '5', '9003102833', '', '', '1993-08-08', 27, '2', '2', 'ahamed ali', 'auto driver', 25000.00, 2, 21000.00, 31000.00, 'chennai', 'chennai', '2011210009', '1', '2', 'upload_files/candidate_tracker/74515225463_Resume Thameem2020.pdf', NULL, NULL, '2020-11-21', 30, '', '5', '8', '1970-01-01', 0.00, '12:42 PM', '', '1970-01-01', '1', 'will not join. exp is 28k and current 21.5k', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-21 11:50:50', 58, '2020-12-23 01:05:43', 0, NULL, 1),
(1995, 'porrselvan', '5', '6380677457', '', 'porrselvant@gmail.com', '1996-02-04', 24, '2', '2', 'thangaraj. c', 'senior engineer', 35000.00, 1, 22000.00, 28000.00, 'kolathur', 'kolathur', '2011210010', '1', '2', 'upload_files/candidate_tracker/69735266165_Resume.pdf', NULL, NULL, '2020-11-23', 0, '', '3', '8', '2020-11-27', 276000.00, '11:00 AM', '6', '2021-03-26', '1', '23K ctc no esi and pf.', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 12:24:12', 7, '2020-11-27 10:19:06', 0, NULL, 1),
(1996, 'umadevi', '13', '7010140801', '9500112217', 'umadevidevi284@gmail.com', '1997-07-09', 23, '2', '2', 'naveenkumar', 'purchase supervisor', 20000.00, 0, 12000.00, 15000.00, 'vandalur.', 'vandalur', '2011210011', '14', '2', 'upload_files/candidate_tracker/71486294724_Resume.docx', NULL, NULL, '2020-11-23', 15, '', '3', '8', '2020-12-02', 192000.00, '11:30 AM', '', '1970-01-01', '2', '16kctc for it team', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 12:29:30', 7, '2020-11-23 06:19:08', 0, NULL, 1),
(1997, 'jayasree.k', '13', '9940661930', '', 'konkkantijayashreesrinivasulu@gmail.com', '2000-03-30', 20, '2', '2', 'srinivasulu.k', 'b.tech', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2011210012', '14', '1', 'upload_files/candidate_tracker/87467792692_JAYASREE_RESUME1.pdf', NULL, NULL, '2020-11-23', 0, '', '5', '28', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'Not strong in basic skills', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 12:42:03', 1, '2020-11-22 07:33:58', 0, NULL, 1),
(1998, 'Jilson', '13', '9042121560', '', 'jilsonjildas@gmail.com', '1997-06-30', 23, '3', '2', 'K.s jipret jildas', 'Fisherman', 8000.00, 2, 180000.00, 240000.00, 'Chennai', 'Vadapalani', '2011210013', '', '2', 'upload_files/candidate_tracker/61059260236_Resume_jilson .pdf', NULL, NULL, '2020-11-21', 2, '', '8', '', '1970-01-01', 0.00, '12:47 PM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 12:43:24', 50, '2020-11-21 06:16:13', 0, NULL, 1),
(1999, 'Sachin Manoj', '13', '7012398799', '7736120684', 'achusachi333@gmail.com', '1997-04-01', 23, '4', '2', 'Manoj', 'Bussines', 10000.00, 1, 0.00, 10000.00, 'Kerala', 'Kerala', '2011210014', '', '1', 'upload_files/candidate_tracker/86169519351_Sachin Manoj_Fresher.pdf', NULL, NULL, '2020-11-27', 0, '', '6', '0', NULL, 0.00, '02:10 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 01:43:11', 1, '2020-11-21 02:11:10', 0, NULL, 1),
(2000, 'Vishnu Kumar G R', '14', '9976633152', '8248594807', 'Vishnugrkumar@gmail.com', '1996-09-13', 24, '4', '2', 'Ravindran G R', 'Business', 30000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2011210015', '', '2', 'upload_files/candidate_tracker/27356068864_my resume.pdf', NULL, NULL, '2020-11-23', 25, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 01:57:08', 7, '2020-11-23 06:19:19', 0, NULL, 1),
(2001, 'Vishnu Kumar G R', '14', '8248594807', '', 'Vishnugrkumar@gmail.com', '1996-09-13', 24, '2', '2', 'G R Ravindran', 'Textile', 30000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2011210016', '14', '2', 'upload_files/candidate_tracker/12221020698_my resume.pdf', NULL, NULL, '2020-11-23', 30, '', '8', '', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 02:10:00', 7, '2020-11-23 06:19:41', 0, NULL, 1),
(2002, 'U bhavani', '13', '9476004615', '9679558561', 'bhavaniu487@gmail.com', '1997-01-07', 23, '2', '2', 'U Dinesh Kumar', 'Goverment servent', 30000.00, 1, 0.00, 20000.00, '2nd cross street, Gandhi nagar, kodungaiyur', 'No :5/31, 2nd cross street, Gandhi nagar', '2011210017', '14', '1', 'upload_files/candidate_tracker/33478543152_Bhavani.pdf', NULL, NULL, '2020-11-23', 0, '', '5', '28', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'Not strong in basic skillsets.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 02:57:09', 7, '2020-11-24 02:43:07', 0, NULL, 1),
(2003, '', '0', '9943938012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011210018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 03:11:52', 0, NULL, 0, NULL, 1),
(2004, 'devanathan r', '5', '8870365251', '', 'devanathanr14@gmail.com', '1994-11-15', 26, '2', '2', 'rajamanickam k', 'defence', 30000.00, 1, 16.00, 18.00, 'thiruvallur', 'thiruvallur', '2011210019', '3', '2', 'upload_files/candidate_tracker/85758129356_deva resume (1).docx', NULL, NULL, '2020-11-23', 0, '', '5', '29', '1970-01-01', 0.00, '11:58 AM', '', '1970-01-01', '2', 'rejected', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 05:59:33', 50, '2020-11-23 12:11:45', 0, NULL, 1),
(2005, 'R dinesh prabhu', '5', '8148243010', '8608203010', 'dineshdinu0108@gmail.com', '1994-08-11', 26, '2', '1', 'M Hemamalini', 'House wives', 20000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2011210020', '3', '2', 'upload_files/candidate_tracker/55889922104_DineshPrabhu New(3).pdf', NULL, NULL, '2020-11-23', 0, '', '3', '8', '2020-12-03', 288000.00, '11:30 AM', '5', '1970-01-01', '1', '24K ctc and no esi and pf', '5', '2', '4', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 06:30:05', 7, '2020-11-24 03:19:08', 0, NULL, 1),
(2006, 'Nithya N', '13', '9626713348', '9080654233', 'nithyanatesan@gmail.com', '1984-11-12', 36, '2', '1', 'natesan g', 'developer', 15000.00, 2, 180000.00, 300000.00, 'cuddalore', 'cuddalore', '2011210021', '14', '2', 'upload_files/candidate_tracker/39486139302_nithya new resume.doc', NULL, NULL, '2020-12-10', 5, '', '10', '0', NULL, 0.00, '12:03 PM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-21 07:01:16', 1, '2020-11-21 07:07:22', 0, NULL, 1),
(2007, 'l baba farook', '5', '8050143398', '9866001566', 'farookbaba23@gmail.com', '1989-07-01', 31, '2', '1', 'l fakruddin', 'teacher', 55000.00, 1, 25000.00, 35000.00, 'pulivendula', 'bangalore', '2011220001', '1', '2', 'upload_files/candidate_tracker/48456832480_RESUME IN PDF.pdf', NULL, NULL, '2020-11-30', 0, '', '3', '8', '2020-12-17', 360000.00, '11:00 AM', '', '1970-01-01', '1', '30k ctc for mani team', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-22 09:41:37', 58, '2020-12-23 01:04:22', 0, NULL, 1),
(2008, 'balaji', '13', '8754430804', '', 'balajibasker0205@gmail.com', '1998-02-22', 22, '2', '2', 'basker c', 'business', 30000.00, 2, 0.00, 15000.00, 'chennai', 'Chennai', '2011220002', '14', '1', 'upload_files/candidate_tracker/65080760011_balaji cv.pdf', NULL, NULL, '2020-11-23', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-22 12:23:22', 7, '2020-11-23 06:19:56', 0, NULL, 1),
(2009, 'Naresh Kumar', '13', '9688551656', '8667750438', 'nareshnirmal27@gmail.com', '1997-04-02', 23, '2', '2', 'Pachaiyappan', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Tindivanam', 'Pondicherry', '2011220003', '14', '1', 'upload_files/candidate_tracker/51925218110_Resume1.pdf', NULL, NULL, '2020-11-23', 0, '', '5', '28', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', 'Not strong in basic skill set.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-22 12:44:09', 50, '2020-11-23 03:07:45', 0, NULL, 1),
(2010, '', '0', '8072998191', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011220004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-22 01:28:00', 0, NULL, 0, NULL, 1),
(2011, 'Kumaran S', '27', '6381914305', '7845608477', 'tvmalaikumaran15@gmail.com', '1993-07-05', 28, '2', '2', 'Sampath K', 'Farmer', 5000.00, 0, 0.00, 12000.00, 'Tiruvannamalai', 'Velachery', '2011220005', '1', '1', 'upload_files/candidate_tracker/13626597059_new chni pg resume.docx', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Relevant Exp xxamp no knowledge in .NEt C#,not suits for the client openings', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-22 02:22:40', 1, '2021-07-20 10:58:50', 0, NULL, 1),
(2012, '', '0', '9884498673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011220006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-22 10:25:38', 0, NULL, 0, NULL, 1),
(2013, 'K.w.PAUL SILVESTER', '6', '8056946267', '9150452353', 'kwpaulsilvester@gmail.com', '2000-05-20', 20, '1', '2', 'K.W.WILLIAMS', 'Mechanic', 10000.00, 0, 0.00, 15000.00, '20/23 ezhil Nagar,thoraipakkam Chennai 600097', '20/23 ezhil nagar,thoraipakkalam, Chennai 600097', '2011230001', '', '1', 'upload_files/candidate_tracker/8092383177_Document-WPS Office.pdf', NULL, NULL, '2020-11-23', 0, '5277', '3', '8', '2020-11-26', 156000.00, '10:15 AM', '3', '2021-01-02', '1', '13K CTC FOR THIYAGU TEAM', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 10:19:49', 7, '2020-11-24 10:22:45', 0, NULL, 1),
(2014, 'G.ThangaManoja', '4', '8939636220', '9176500720', 'manoja0812@gmail.com', '1998-12-08', 21, '1', '2', 'R.Gopalakrishnan', 'Driver', 25000.00, 2, 0.00, 12000.00, 'Teynampet', 'Teynampet', '2011230002', '', '1', 'upload_files/candidate_tracker/59651201723_Manoja resume 2.docx', NULL, NULL, '2020-11-23', 0, '5588', '5', '21', NULL, 0.00, '10:38 AM', '0', NULL, '2', 'she is not suitable for our process bcz, no flow in speaking..', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 10:33:32', 1, '2020-11-23 10:55:29', 0, NULL, 1),
(2015, 'Manivannan P', '13', '8015473634', '8124206986', 'manikkr6688@gmail.com', '1997-06-06', 23, '2', '2', 'Parasuraman', 'Weaver', 10000.00, 5, 12000.00, 15000.00, 'Poonamalle', 'Poonamalle', '2011230003', '1', '2', 'upload_files/candidate_tracker/79975272340_Manivannan.pdf', NULL, NULL, '2020-11-27', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Donxquott have a Basic Knowledge. He knows only Wordpress.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-23 10:48:07', 64, '2020-12-23 01:29:37', 0, NULL, 1),
(2016, 'Mohammed Harfan Basha', '13', '8754778475', '6381114682', 'mohammedharfan26@gmail.com', '1998-06-26', 22, '2', '2', 'Chan basha', 'Butcher', 30000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2011230004', '1', '1', 'upload_files/candidate_tracker/92763609036_harfans resume.docx', NULL, NULL, '2020-11-26', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Task not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-23 01:09:56', 64, '2020-12-28 03:06:09', 0, NULL, 1),
(2017, '', '0', '8922055054', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 02:15:29', 0, NULL, 0, NULL, 1),
(2018, '', '0', '8807380459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 02:39:12', 0, NULL, 0, NULL, 1),
(2019, '', '0', '8939347453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 02:51:02', 0, NULL, 0, NULL, 1),
(2020, '', '0', '9566232893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 03:07:51', 0, NULL, 0, NULL, 1),
(2021, '', '0', '9962228829', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 05:42:15', 0, NULL, 0, NULL, 1),
(2022, 'Nancy', '11', '7824026242', '9841982458', 'Jnancy305@Gmail.com', '1999-05-30', 21, '2', '2', 'jeevaraj', 'Business', 10000.00, 0, 0.00, 1.00, 'Chennai', 'Chennai', '2011230010', '15', '1', 'upload_files/candidate_tracker/45137323811__Resume-1.docx', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'pronunciation is not clear and will not suite for crm', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 05:48:57', 50, '2020-11-30 12:31:29', 0, NULL, 1),
(2023, 'Senthil KUMAR.R', '6', '9025788433', '8939094674', 'Senthilkumar971999@gmail.com', '1999-07-09', 21, '2', '2', 'M.Ramesh', 'Labour', 15000.00, 0, 0.00, 15.00, 'Teynampet', 'Teynampet', '2011230011', '15', '1', 'upload_files/candidate_tracker/20731184650_RESUME senthil 2 _3_ (1).pdf', NULL, NULL, '2020-12-01', 0, '', '5', '59', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'Will not sustain for a long', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 05:57:49', 50, '2020-12-01 03:38:48', 0, NULL, 1),
(2024, 'Lavanya', '11', '7358234387', '8610829950', 'lavanyavinisha@gmail.com', '2000-03-10', 20, '2', '2', 'SELVARAJ', 'Electrician', 24000.00, 2, 0.00, 12000.00, 'No 36, Balaji Nagar mangadu Chennai-122', 'Chennai', '2011230012', '15', '1', 'upload_files/candidate_tracker/73970720787_Lavanya Selvaraj.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '11:10 AM', '', '1970-01-01', '2', 'Not fit. Location Constraint', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:06:03', 50, '2020-11-30 12:32:01', 0, NULL, 1),
(2025, 'S. KAVITHA', '11', '7092745281', '8637660693', 'kavishree202000@gmail.com', '2000-01-20', 20, '2', '2', 'SenthilVelan. S', 'Welder', 35000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011230013', '15', '1', 'upload_files/candidate_tracker/50207627046_Resume.KAVITHA.doc.docx', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'will not suite for crm', '6', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:08:49', 50, '2020-11-30 11:02:44', 0, NULL, 1),
(2026, 'Sharmila Lakshmi. V', '20', '8637695197', '9087823697', 'sharmilalakshmi11925@gmail.com', '1999-10-09', 21, '2', '2', 'Vasanth. S', 'Tailor', 80000.00, 1, 16500.00, 17000.00, 'Chennai', 'Chennai', '2011230014', '15', '2', 'upload_files/candidate_tracker/83834743866_imgtopdf_generated_1111201205051.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Location Constraint', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:09:43', 50, '2020-11-30 10:55:45', 0, NULL, 1),
(2027, 'S.Geethanjali', '4', '8072189922', '6380258833', 'geethanjali05101999@gmail.com', '1999-10-05', 21, '2', '2', 'Father', 'Daily labour', 10000.00, 2, 0.00, 15000.00, 'Porur', 'Porur', '2011230015', '15', '1', 'upload_files/candidate_tracker/81931426417_', NULL, NULL, '2020-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Fit. Looking for Non voice', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:24:28', 50, '2020-11-30 11:01:26', 0, NULL, 1),
(2028, '', '0', '9884821361', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:27:56', 0, NULL, 0, NULL, 1),
(2029, '', '0', '7397408060', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:29:02', 0, NULL, 0, NULL, 1),
(2030, '', '0', '9043098658', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:33:47', 0, NULL, 0, NULL, 1),
(2031, '', '0', '7845218885', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:33:54', 0, NULL, 0, NULL, 1),
(2032, '', '0', '9360428761', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:34:00', 0, NULL, 0, NULL, 1),
(2033, '', '0', '8220596972', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:34:25', 0, NULL, 0, NULL, 1),
(2034, '', '0', '', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:35:26', 0, NULL, 0, NULL, 1),
(2035, 'S.SURESH', '6', '7094097698', '', 'benjiaft@gmail.com', '1985-12-21', 34, '1', '1', 'B.Senthamarai', 'Nil', 22000.00, 1, 0.00, 15000.00, 'Vellore', 'Vellore', '2011230023', '', '1', 'upload_files/candidate_tracker/3801492629_BENJI RESUME .pdf', NULL, NULL, '2020-11-30', 0, 'ZENFY', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:42:14', 1, '2020-11-24 06:51:51', 0, NULL, 1),
(2036, '', '0', '9003304053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:46:45', 0, NULL, 0, NULL, 1),
(2037, 'JEYACHANDRAN L', '4', '7871116248', '8825783488', 'jeyachandran012@gmail.com', '1999-09-11', 21, '2', '2', 'LOGANATHAN K', 'Auto driver', 30000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2011230025', '15', '1', 'upload_files/candidate_tracker/8284922040_Resume.Jeyachandran.docx', NULL, NULL, '2020-11-30', 0, '', '8', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Left without attending', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:47:39', 50, '2020-11-30 12:56:15', 0, NULL, 1),
(2038, '', '0', '9962485535', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 06:48:33', 0, NULL, 0, NULL, 1),
(2039, 'BABU', '4', '8072086426', '9597046528', 'babu18041996@gmail.com', '1996-04-18', 24, '2', '2', 'CHELLAMUTHU', 'NLCIL Employee', 45000.00, 1, 0.00, 15000.00, 'NEYVELI', 'NEYVELI', '2011230027', '15', '1', 'upload_files/candidate_tracker/87290965631_BABU NEW.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 07:01:07', 1, '2020-11-23 07:09:13', 0, NULL, 1),
(2040, 'Kavitha.M', '4', '7397289715', '7299978070', 'kavithasumathi2000@gmail.com', '2000-02-17', 20, '2', '2', 'S.Muthuvel', 'Building Contractor', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011230028', '15', '1', 'upload_files/candidate_tracker/25743248774_imgtopdf_23112020085818.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '14', NULL, 0.00, '12:20 PM', '0', NULL, '2', 'not suitable for this profile', '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 07:22:46', 1, '2020-11-30 11:22:22', 0, NULL, 1),
(2041, 'V.Aswin kumar', '4', '6301840520', '8686014510', 'aswinkumar1278@gmail.com', '1999-03-26', 21, '2', '2', 'M.Venkatesh', 'Late', 10000.00, 1, 0.00, 12000.00, 'Redhills', 'Redhills', '2011230029', '15', '1', 'upload_files/candidate_tracker/89894288810_New doc Nov 23, 2020 7.56 PM.pdf', NULL, NULL, '2020-11-26', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 07:43:02', 1, '2020-11-28 05:52:52', 0, NULL, 1),
(2042, 'Keerthiga', '4', '7448578364', '', 'keerthipandu19@gmail.com', '2000-11-20', 20, '2', '2', 'Pandu Rangan', 'Business', 30000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2011230030', '15', '1', 'upload_files/candidate_tracker/36128227108_keerthiga.P (1).pdf', NULL, NULL, '2020-11-26', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 07:55:25', 1, '2020-11-23 08:03:52', 0, NULL, 1),
(2043, '', '0', '9677421804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 08:10:17', 0, NULL, 0, NULL, 1),
(2044, 'Aswini .G', '4', '7448550607', '8428724119', 'aswini06071999@gmail.com', '1999-07-09', 21, '2', '2', 'Guna .S', 'Cendring', 70000.00, 1, 0.00, 15000.00, 'Medavakkam ,Chennai', 'Medavakkam, Chennai', '2011230032', '15', '1', 'upload_files/candidate_tracker/92366873954_Pdf_23Nov20_7.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'language is not good. will not suite for our process.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 08:25:11', 50, '2020-11-30 11:01:33', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2045, '', '0', '9176386783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011230033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 09:23:05', 0, NULL, 0, NULL, 1),
(2046, 'M.SARALA', '4', '7397240165', '9514002240', 'saralam1652000@gmail.com', '2000-05-16', 20, '2', '2', 'K.MURUGAN', 'Wages', 20000.00, 1, 0.00, 15000.00, 'Gerugambakkam', 'Gerugambakkam', '2011230034', '15', '1', 'upload_files/candidate_tracker/86001179237_1603247585322_SARALA 2-Resume.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Location Constraint', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 09:32:39', 50, '2020-11-30 02:19:47', 0, NULL, 1),
(2047, 'Sankara Narayanan', '21', '9894883562', '8190021353', 'sankar.mek@gmail.com', '1991-03-30', 29, '2', '1', 'ganesan', 'business', 10000.00, 1, 0.00, 18000.00, 'madurai', 'madurai', '2011230035', '15', '1', 'upload_files/candidate_tracker/52098807969_Sankar', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', '', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-23 10:21:33', 50, '2020-12-04 06:06:07', 0, NULL, 1),
(2048, 'M.SANDHIYA', '6', '9176469889', '9094708896', 'sandym1709@gmail.com', '1999-09-17', 21, '2', '2', 'V.MAGESH', 'Carpenter', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2011230036', '1', '1', 'upload_files/candidate_tracker/53259225445_Sandy Resume.pdf', NULL, NULL, '2020-11-25', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '4', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-23 10:27:21', 1, '2020-11-23 11:17:52', 0, NULL, 1),
(2049, 'S.gokul', '6', '7358242429', '9841343888', 'gokulsaravanan619@gmail.com', '1999-11-26', 20, '2', '2', 'D.saravanan', 'Fresher', 18000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2011240001', '15', '1', 'upload_files/candidate_tracker/71420827935_Gokul resume.pdf', NULL, NULL, '2020-11-30', 0, '', '8', '8', '1970-01-01', 0.00, '09:52 AM', '', '1970-01-01', '1', 'left before interview\n', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 06:27:08', 50, '2020-11-30 01:08:28', 0, NULL, 1),
(2050, 'Maheswari', '13', '9597242547', '9345269928', 'Mahebe48@gmail.com', '1991-02-28', 29, '3', '1', 'Jothiram', 'Software Tester', 45000.00, 1, 30000.00, 40000.00, 'Trichy', 'Chennai, pallavaram', '2011240002', '', '2', 'upload_files/candidate_tracker/96334988865_Maheswari M_PHP Developer_4_Yrs_Exp.doc', NULL, NULL, '2020-11-24', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'Task Not Completed.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 09:32:46', 1, '2020-11-24 09:37:39', 0, NULL, 1),
(2051, 'Madhusudhan C', '5', '9738113556', '', 'thoreleusis@gmail.com', '1988-09-08', 32, '2', '1', 'B Chandrappa', 'Agriculture', 10000.00, 2, 610000.00, 610000.00, 'Bangalore', 'Bangalore', '2011240003', '1', '2', 'upload_files/candidate_tracker/53335516221_Madhusudhan Resume5.docx', NULL, NULL, '2020-12-01', 0, '', '5', '39', '1970-01-01', 0.00, '11:01 AM', '', '1970-01-01', '1', 'He will not sustain and he will not suit for our Field', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-24 09:58:18', 58, '2020-12-23 03:27:01', 0, NULL, 1),
(2052, 'Jenifer. P', '13', '9361064950', '9514214433', 'Cjenifer. 1995@gmail.com', '1995-04-28', 25, '3', '1', 'Gnana Kirubakaran', 'Electrical engineer', 36000.00, 1, 240000.00, 400000.00, 'Chennai', 'Chennai', '2011240004', '', '2', 'upload_files/candidate_tracker/30619471772_Jenifer_Resume.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 10:35:56', 1, '2020-11-24 10:43:13', 0, NULL, 1),
(2053, '', '0', '7358644012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 11:12:27', 0, NULL, 0, NULL, 1),
(2054, '', '0', '8072260605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 11:36:09', 0, NULL, 0, NULL, 1),
(2055, '', '0', '7305553280', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 11:45:27', 0, NULL, 0, NULL, 1),
(2056, 'Akashram S', '6', '9944696290', '7010456379', 'akashram597@gmail.com', '1998-03-23', 22, '2', '2', 'R.SIVAKUMAR', 'Head constable', 30000.00, 2, 0.00, 12000.00, 'No.47/ 37th street, GKM colony ,kolathur ,chennai', 'No.47/37th street,GKM colony ,kolathur,Chennai', '2011240008', '1', '1', 'upload_files/candidate_tracker/6026368895_1597990605947Resume_AKASHRAM.doc', NULL, NULL, '2020-11-28', 0, '', '3', '8', '2020-11-30', 156000.00, '11:00 AM', '6', '2021-08-05', '1', '13k for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 11:54:44', 7, '2020-12-01 12:32:07', 0, NULL, 1),
(2057, 'Unni Krishnan. M', '6', '9360382017', '9952938091', 'krishofficial2104@gmail.com', '2001-04-25', 19, '2', '2', 'Mohan. S', 'MTC Senior Driver', 35000.00, 1, 0.00, 15000.00, 'MMDA Colony, Arumbakkam', 'MMDA Colony, Arumbakkam', '2011240009', '1', '1', 'upload_files/candidate_tracker/5877754223_1588063754577Resume_Unni.pdf', NULL, NULL, '2020-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '12:29 PM', '', '1970-01-01', '1', 'Not much communicative, will not be fit', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 02:16:56', 50, '2020-11-29 09:38:15', 0, NULL, 1),
(2058, '', '0', '9786023868', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 04:48:06', 0, NULL, 0, NULL, 1),
(2059, 'Abdul Kuddus', '14', '8610456088', '9952484686', 'abdulkuddusmca@gmail.com', '1993-08-19', 27, '2', '2', 'Mohammad Salahudeen', 'Mechanic', 250000.00, 1, 250000.00, 350000.00, 'Chennai', 'Coimbatore', '2011240011', '14', '2', 'upload_files/candidate_tracker/64385924444_Abdulkuddus_CV.pdf', NULL, NULL, '2020-11-25', 15, '', '6', '0', NULL, 0.00, '11:15 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 08:12:36', 1, '2020-11-24 08:24:53', 0, NULL, 1),
(2060, '', '0', '8925146343', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011240012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 08:31:43', 0, NULL, 0, NULL, 1),
(2061, 'Anush M', '14', '7598866218', '6380364589', 'anushkmd27@gmail.com', '1997-08-27', 23, '2', '2', 'Mohandoss K', 'Agricultrist', 150000.00, 1, 264000.00, 300000.00, 'Mayiladuthurai', 'Chennai', '2011240013', '14', '2', 'upload_files/candidate_tracker/44755292938_ANUSH Resume.doc', NULL, NULL, '2020-11-25', 15, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-24 09:13:01', 1, '2020-11-24 09:26:25', 0, NULL, 1),
(2062, 'GOWTHAM M', '13', '9087187547', '', 'liogowtham5@gmail.com', '1999-07-14', 21, '3', '2', 'MUNIYAN A', 'Load Man', 15000.00, 1, 0.00, 17000.00, 'No:56 A-Block Dr.Ambethkar Nagar ICF chennai', 'No:56 A-Block Dr.Ambethkar Nagar ICF Chennai', '2011250001', '', '1', 'upload_files/candidate_tracker/46983944347_lio.pdf', NULL, NULL, '2021-01-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-25 10:58:14', 50, '2021-01-07 05:21:51', 0, NULL, 1),
(2063, '', '0', '8124954785', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011250002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-25 11:31:18', 0, NULL, 0, NULL, 1),
(2064, 'Akash. A', '6', '9080527633', '8939212938', 'akashjohn@gmail.com', '1998-06-19', 22, '2', '2', 'Arjunan.k', 'Driver', 8000.00, 1, 0.00, 13000.00, '7/33 neelakadal street uthandi chennai 600119', '7/33 Neelakadal Street Uthandi Chennai 600119', '2011250003', '1', '1', 'upload_files/candidate_tracker/59207683066_Akash.pdf', NULL, NULL, '2020-11-30', 0, '', '3', '8', '1970-01-01', 164400.00, '12:54 PM', '2', '1970-01-01', '1', '13700ctc and net 13k for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-25 02:53:57', 7, '2020-12-02 04:24:47', 0, NULL, 1),
(2065, 'Stalin R', '13', '8870173003', '', 'Stalinprt@gmail.com', '1989-05-08', 31, '3', '1', 'Radhakrishnan P', 'Farmer', 20000.00, 3, 20000.00, 23000.00, 'Cuddalore', 'Ramapuram', '2011260001', '', '2', 'upload_files/candidate_tracker/43320265321_Stalin_Resume (1).docx', NULL, NULL, '2020-11-30', 1, '', '5', '27', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', 'Task Not Completed', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-26 08:09:09', 50, '2020-11-30 02:51:47', 0, NULL, 1),
(2066, 'Balamurugan S', '3', '6383331204', '7502445035', 'Mechbala.307@gmail.com', '1990-08-26', 30, '4', '2', 'Alagu S', 'Farmer', 60000.00, 3, 19890.00, 25000.00, 'Madurai', 'Chennai', '2011260002', '', '2', 'upload_files/candidate_tracker/31174920989_Bala- Resume (2).PDF', NULL, NULL, '2020-12-01', 10, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-26 08:19:27', 1, '2020-11-26 11:45:25', 0, NULL, 1),
(2067, 'rameswara rao', '13', '8015655361', '', 'dsurya2198@gmail.com', '1998-10-21', 22, '2', '2', 'srinivasa kumar', 'accountant retired', 200000.00, 2, 0.00, 360000.00, 'chennai', 'chennai', '2011270001', '1', '1', 'upload_files/candidate_tracker/51714090977_Resume.pdf', NULL, NULL, '2020-11-27', 0, '', '5', '27', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '1', 'Looking More Experienced Profile.', '2', '2', '', '', '', '', '2', '2020-12-23', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-27 10:32:54', 64, '2020-12-28 03:11:34', 0, NULL, 1),
(2068, '', '0', '9498315663', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 10:42:16', 0, NULL, 0, NULL, 1),
(2069, 'M.Karthik raja', '6', '9940535209', '7550228152', 'karthik28primates@gmail.com', '2000-08-04', 20, '1', '2', 'T.Madasamy', 'Wholesale marketing', 20000.00, 1, 0.00, 16000.00, 'Dr.ambedkar nagar,Adambakkam,chennai', 'Dr.ambedkar nagar, Adambakkam,chennai', '2011270003', '', '1', 'upload_files/candidate_tracker/11022840209_CV_2020-09-15-014019.pdf', NULL, NULL, '2020-11-27', 0, 'KARUTHAPANDY', '3', '8', '2020-11-30', 168000.00, '11:26 AM', '3', '2021-02-08', '1', '14k for syed team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 11:19:31', 7, '2020-11-27 04:09:26', 0, NULL, 1),
(2070, 'Mukesh.m', '6', '7550228152', '9940535209', 'mukeshgnc@gmail.com', '2000-06-07', 20, '1', '2', 'Murugan.m', 'Building contractor', 30000.00, 1, 12500.00, 15000.00, 'Chennai', 'Chennai', '2011270004', '', '2', 'upload_files/candidate_tracker/87496131464_resume mukesh (1).docx', NULL, NULL, '2020-11-27', 0, 'KARUTHAPANDY', '3', '8', '2020-11-30', 168000.00, '11:26 AM', '2', '1970-01-01', '1', '14k for Suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 11:20:53', 7, '2020-11-27 04:10:00', 0, NULL, 1),
(2071, '', '0', '7201990250', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 11:26:59', 0, NULL, 0, NULL, 1),
(2072, 'M.Iyswariya', '14', '7904130912', '7092614647', 'lakshmiriyaharan@gmail.com', '1999-06-29', 21, '3', '2', 'S.N.Manoharan', 'Passed away', 0.00, 0, 0.00, 200000.00, 'Chennai', 'Saidapet', '2011270006', '', '1', 'upload_files/candidate_tracker/89825902185_Iyswariya.pdf', NULL, NULL, '2020-11-28', 0, '', '5', '28', NULL, 0.00, '12:00 PM', '0', NULL, '2', 'Not strong in basic skillset', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 11:48:51', 1, '2020-11-27 12:00:41', 0, NULL, 1),
(2073, 'manivannan', '7', '9715861220', '', 'manicsecse@gmail.com', '1992-11-11', 28, '2', '1', 'subramaniyan', 'farmer', 1000.00, 4, 350000.00, 500000.00, 'perambalur', 'chennai', '2011270007', '1', '2', 'upload_files/candidate_tracker/87645947145_Manivannan.docx', NULL, NULL, '2020-11-27', 0, '', '5', '59', '1970-01-01', 0.00, '12:04 PM', '', '1970-01-01', '1', 'Not good in communication, High CTC expectations', '7', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 12:02:01', 50, '2020-11-27 12:30:13', 0, NULL, 1),
(2074, '', '0', '8072444574', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 12:18:19', 0, NULL, 0, NULL, 1),
(2075, 'Ajay M', '6', '9538806242', '8088057020', 'ajaysreddy76342@gmail.com', '1995-07-28', 25, '2', '2', 'Munireddy', 'self employed', 40000.00, 1, 0.00, 20000.00, 'anekal', 'Neralure', '2011270009', '1', '1', 'upload_files/candidate_tracker/82288307130_Ajay Resume-converted.pdf', NULL, NULL, '2020-11-30', 0, '', '3', '8', '2020-12-02', 214800.00, '11:00 AM', '4', '2020-12-25', '1', '17900 ctc and net 17K for gowshick team', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 12:21:47', 7, '2020-12-01 01:37:06', 0, NULL, 1),
(2076, 'jahir hussain', '6', '7530099054', '', 'jahirmunnahussain@gmail.com', '1995-07-11', 25, '2', '2', 'musthafa kamaal', 'expired', 20000.00, 3, 20000.00, 30000.00, 'chidambaram', 'chennai', '2011270010', '1', '2', 'upload_files/candidate_tracker/42337716952_Resume new (3).pdf', NULL, NULL, '2020-11-27', 0, '', '3', '8', '2020-12-02', 252000.00, '12:42 PM', '6', '2021-05-21', '1', '21K ctc for kannan team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 12:39:47', 7, '2020-12-02 09:51:03', 0, NULL, 1),
(2077, 'Ashic V A', '5', '9567555303', '6238384554', 'ashic654va@gmail.com', '1996-08-29', 24, '2', '2', 'Arjunan', 'Driver', 0.00, 0, 1.30, 2.00, 'Thrissur', 'Bangalore', '2011270011', '1', '2', 'upload_files/candidate_tracker/84392674253_cv word file aaaaa.docx', NULL, NULL, '2020-11-30', 0, '', '5', '38', NULL, 0.00, '11:32 AM', '0', NULL, '1', 'he Quited Previous Job Because Of Roaming Outside, So He Will Not Sustain In Our Field.....', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 01:52:33', 1, '2020-11-30 11:41:52', 0, NULL, 1),
(2078, '', '0', '9482133031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 03:54:25', 0, NULL, 0, NULL, 1),
(2079, 'R. Thenmozhi', '4', '9840482636', '8778873055', 'thenmozhirajasekar@yahoo.com', '1984-09-25', 36, '1', '1', 'M. Rajasekar', 'Supervisor', 25000.00, 2, 30000.00, 25000.00, 'Teynampet', 'Teynampet', '2011270013', '', '2', 'upload_files/candidate_tracker/55509990660_Thenmozhi Resume.pdf', NULL, NULL, '2020-12-02', 1, 'P 1029', '3', '8', '2020-12-07', 202200.00, '11:00 AM', '4', '2021-01-26', '1', '16k th and 16850 ctc for dhivya team', '1', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 04:00:00', 7, '2020-12-05 04:33:46', 0, NULL, 1),
(2080, '', '0', '8015469735', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 04:16:54', 0, NULL, 0, NULL, 1),
(2081, 'rahul', '13', '9840967913', '', 'rahulmks395@gmail.com', '1999-04-29', 21, '3', '2', 'murthy', 'driver', 20000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2011270015', '', '1', 'upload_files/candidate_tracker/29568731135_Resume1.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:15 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 04:17:18', 1, '2020-11-28 11:17:35', 0, NULL, 1),
(2082, 'Michael jerom knight', '4', '9600159657', '', 'Michealjerom1999@gmail.com', '1999-05-21', 21, '2', '2', 'Jeffery antony knight', 'hotel manager', 30000.00, 1, 0.00, 15000.00, 'tambaram', 'Tambaram', '2011270016', '1', '1', 'upload_files/candidate_tracker/10210409962_MICHAEL JEROME KNIGHT.docx', NULL, NULL, '2020-11-28', 0, '', '6', '0', NULL, 0.00, '12:44 PM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-27 04:50:52', 1, '2020-11-27 05:00:49', 0, NULL, 1),
(2083, 'Nithosh Arokia raj', '5', '7395950204', '8056264266', 'nithoshraj@gmail.com', '1992-07-10', 28, '2', '2', 'Cecili', 'SCM in private company', 30000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2011270017', '1', '1', 'upload_files/candidate_tracker/53507330206_CV NITHOSH UPDATED.DOCX', NULL, NULL, '2020-11-30', 0, '', '3', '8', '2020-12-01', 276000.00, '10:00 AM', '6', '2021-03-26', '1', '23k ctc for veben team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-27 04:57:17', 58, '2020-12-29 10:25:03', 0, NULL, 1),
(2084, '', '0', '9676721964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011270018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 05:12:24', 0, NULL, 0, NULL, 1),
(2085, 'sunil kumar m.s', '6', '9739647315', '9741377215', 'sunilms61978@gmail.com', '1998-07-01', 22, '2', '2', 'shivareddy', 'accountent', 20.00, 2, 0.00, 15.00, 'SAINAGAR', 'SAINAGAR', '2011270019', '1', '1', 'upload_files/candidate_tracker/42244228164_sunil kumar Resume.docx', NULL, NULL, '2020-11-30', 0, '', '3', '8', '1970-01-01', 189600.00, '12:30 PM', '2', '1970-01-01', '1', '15k th for gowshick team', '5', '2', '1', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 05:19:20', 7, '2020-12-03 05:15:21', 0, NULL, 1),
(2086, 'Kaviya.S', '13', '9787287093', '8682832418', 'kavyakalai2727@gmail.com', '1998-11-07', 22, '1', '2', 'Sivaramalingam.C', 'Farmer', 22000.00, 1, 10000.00, 15000.00, 'Tanjore', 'Chennai', '2011270020', '', '2', 'upload_files/candidate_tracker/7644614860_kaviya sivaramalingam.docx', NULL, NULL, '2020-11-28', 0, 'Seetha', '5', '27', '1970-01-01', 0.00, '11:36 AM', '', '1970-01-01', '1', 'Task Not Completed. Even she is not ready to Complete the Task.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 05:59:06', 7, '2020-11-28 11:59:15', 0, NULL, 1),
(2087, 'R. Dillibabu', '13', '7871070480', '', 'rdillibabu1999@gmail.com', '1999-05-21', 21, '3', '2', 'Ramesh. S', 'Farmer', 20000.00, 0, 0.00, 20000.00, 'Thiruporur, chennai', 'Thiruporur, chennai', '2011270021', '', '1', 'upload_files/candidate_tracker/33209666792_Babu Resume.WORD. new. db. pdf.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 06:03:38', 1, '2020-11-29 05:23:50', 0, NULL, 1),
(2088, 'Arun VS', '13', '6374573062', '9444169123', 'Arunlee852@gmail.com', '1998-10-26', 22, '2', '2', 'V selwyn samuel', 'Teacher', 70000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2011270022', '1', '1', 'upload_files/candidate_tracker/90567131019_arun resume.docx', NULL, NULL, '2020-11-28', 0, '', '5', '28', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'He is not strong in basic php.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-27 08:35:47', 64, '2020-12-28 03:06:55', 0, NULL, 1),
(2089, 'MURUGAN L', '13', '9444425130', '', 'murugansj95@gmail.com', '1998-05-31', 22, '3', '2', 'LAKSHMANAN', 'Passed away', 10000.00, 0, 0.00, 15000.00, 'Kallkurichi', 'Chennai', '2011270023', '', '1', 'upload_files/candidate_tracker/51034194671_murug.pdf', NULL, NULL, '2020-11-28', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-27 09:12:39', 1, '2020-11-27 09:17:12', 0, NULL, 1),
(2090, '', '0', '8197663299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 08:23:38', 0, NULL, 0, NULL, 1),
(2091, 'N.karthikeyan', '6', '9344679823', '7092170452', 'riokarthy07@gmail.com', '1997-04-16', 23, '1', '2', 'S.Nagaraj', 'Electrician', 10000.00, 1, 0.00, 12000.00, 'No:30/15 15th Street Nehru Colony Nanganallur', 'No:30/15 15th Street Nehru colony Nanganallur', '2011280002', '', '1', 'upload_files/candidate_tracker/81511223411_DOC-20190829-WA0003.pdf', NULL, NULL, '2020-11-28', 0, '5392', '3', '7', '2020-12-28', 0.00, '10:15 AM', '6', '2021-03-26', '1', 'Shortlisted For 12650 CTC As RE For Srikanthxquots Team, Joining By Monday 28th DEC', '5', '2', '1', '1', '1', '2', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-28 09:54:38', 7, '2020-12-26 04:17:56', 0, NULL, 1),
(2092, '', '0', '9529882301', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 10:05:54', 0, NULL, 0, NULL, 1),
(2093, 'Divakar', '13', '9677287596', '', 'divakar227@yahoo.com', '1999-07-22', 21, '2', '2', 'VIJAYALAKSHMI', 'Fresher', 70000.00, 0, 0.00, 23000.00, 'Chennai', 'Chennai', '2011280004', '14', '1', 'upload_files/candidate_tracker/88958438739_divakar_resume.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:15 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 10:38:34', 1, '2020-11-28 10:43:31', 0, NULL, 1),
(2094, 'Paulraj Y', '6', '9087299898', '9360790938', 'ypaulraj21 @gmail. Com', '1997-05-21', 23, '1', '2', 'Yesuraj K', 'Nill', 20.00, 1, 0.00, 15.00, 'Thiruvotiyur', 'Mathur', '2011280005', '', '1', 'upload_files/candidate_tracker/62510620977_paulraj.docx', NULL, NULL, '2020-11-28', 0, '1065', '5', '19', '1970-01-01', 0.00, '12:02 PM', '', '1970-01-01', '1', 'not fit for sale', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 11:43:22', 7, '2020-11-28 12:21:30', 0, NULL, 1),
(2095, '', '0', '9087299808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 12:05:23', 0, NULL, 0, NULL, 1),
(2096, '', '0', '9150292539', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 03:28:10', 0, NULL, 0, NULL, 1),
(2097, '', '0', '9844009779', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:26:27', 0, NULL, 0, NULL, 1),
(2098, 'Ramya', '4', '6380477706', '', 'ramyanagappan0610@gmail.com', '1996-05-29', 24, '2', '2', 'Nagappan', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Sriperumbudur', 'Sriperumbudur', '2011280009', '15', '1', 'upload_files/candidate_tracker/77891493111_ramya.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '8', '1970-01-01', 0.00, '10:45 AM', '', '1970-01-01', '2', 'too long. from sriperambur', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:36:55', 8, '2020-12-02 11:14:52', 0, NULL, 1),
(2099, '', '0', '7871768841', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:37:30', 0, NULL, 0, NULL, 1),
(2100, 'Sarathkumar s', '6', '9551194284', '9444868223', 'sarath.suresh1106@gmail.com', '1996-06-11', 24, '2', '2', 'Suresh', '-', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2011280011', '15', '2', 'upload_files/candidate_tracker/58809552627_6825_Sarath Kumar.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '8', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', 'was hold for next round but no response', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:38:40', 50, '2020-12-02 11:39:30', 0, NULL, 1),
(2101, '', '0', '9789983268', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 04:57:15', 0, NULL, 0, NULL, 1),
(2102, 'sathiya', '4', '8760211355', '7397557056', 'sathyapandian2404@gmail.com', '1996-04-24', 24, '2', '1', 'pandian', 'driver', 20000.00, 1, 17000.00, 17000.00, 'audipatty theni', 'medavakkam', '2011280013', '15', '2', 'upload_files/candidate_tracker/94327765267_sathya exp resume nov1 (1).pdf', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 05:05:16', 1, '2020-11-29 02:33:48', 0, NULL, 1),
(2103, '', '0', '8925749534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 05:32:11', 0, NULL, 0, NULL, 1),
(2104, 'Jayprakash', '13', '9080081455', '9655801909', 'smartjp604@gmail.com', '1998-02-13', 22, '2', '2', 'Kumar', 'Farmer', 60000.00, 1, 0.00, 20000.00, 'Tindivanam', 'Velachery', '2011280015', '1', '1', 'upload_files/candidate_tracker/73496279686_Resume new.docx', NULL, NULL, '2020-11-30', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He knows only Java. He dont have an idea in PHP Basics.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-28 07:10:43', 64, '2020-12-23 02:36:07', 0, NULL, 1),
(2105, 'M.k.priyadharshini', '13', '9597509971', '9345326934', 'Kpriyaadharshini97@gmail.com', '1997-06-20', 23, '3', '2', 'M.karnan', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'Chennai', '2011280016', '', '1', 'upload_files/candidate_tracker/3919083274_Priya.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 07:18:44', 1, '2020-11-28 07:29:39', 0, NULL, 1),
(2106, 'Nivedhitha', '13', '9597353775', '9840940560', 'nivedhitha.srinivas2231@gmail.com', '1998-08-31', 22, '1', '2', 'Srinivasan', 'Military man', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Trichy', '2011280017', '', '1', 'upload_files/candidate_tracker/13827557565_Resume.pdf', NULL, NULL, '2020-11-30', 0, 'HR7M', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 07:53:13', 1, '2020-11-28 08:02:30', 0, NULL, 1),
(2107, '', '0', '9900375158', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011280018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-28 11:37:46', 0, NULL, 0, NULL, 1),
(2108, '', '0', '8610647851', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 12:07:52', 0, NULL, 0, NULL, 1),
(2109, '', '0', '8610513811', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 08:28:17', 0, NULL, 0, NULL, 1),
(2110, 'Sriram. P', '20', '9629043386', '9790573386', 'ramsrip19@gmail.com', '1994-06-19', 26, '2', '2', 'Poongavanam(late)', 'Cooli', 15000.00, 2, 15000.00, 15000.00, 'Arakkonam', 'Arakkonam', '2011290003', '15', '2', 'upload_files/candidate_tracker/58404667689_October month resume .pdf', NULL, NULL, '2020-12-03', 0, '', '6', '0', NULL, 0.00, '10:34 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 10:26:57', 1, '2020-11-29 01:24:44', 0, NULL, 1),
(2111, 'yuvaraj B', '13', '9600129626', '', 'yuvarajvignesh55@gmail.com', '1998-03-20', 22, '2', '2', 'bhuvaneswaran', 'driver', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2011290004', '14', '1', 'upload_files/candidate_tracker/15099397861_Yuvaraj resume.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', 'Donxquott have a basic knowledge in PHP', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 11:27:27', 50, '2020-12-01 11:09:26', 0, NULL, 1),
(2112, 'Elavarasan B', '21', '9840927218', '9789005538', 'elaarajan@gmail.com', '1993-10-14', 27, '2', '2', 'Bojanrajan T', 'Late', 1.60, 1, 14000.00, 23000.00, '20/5 RV Nagar 6th Street Annanagar East Chennai', '20/5 RV Nagar 6th Street Annanagar East Chennai', '2011290005', '14', '2', 'upload_files/candidate_tracker/77065689967_Resume - Elavarasan.pdf', NULL, NULL, '2020-11-30', 1, '', '5', '59', NULL, 0.00, '12:08 PM', '0', NULL, '1', 'Not ok for bond, will not sustain for a long', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 12:05:04', 1, '2020-11-29 12:09:31', 0, NULL, 1),
(2113, 'Nagenthiran', '21', '6380293487', '', 'nagenthiran916@gmail.com', '1998-02-12', 22, '2', '2', 'Sivakumar', 'Driver', 20000.00, 1, 12000.00, 15000.00, 'Namakkal', 'Perungudi', '2011290006', '14', '2', 'upload_files/candidate_tracker/47582435545_nagenthiran- resume-converted-converted.pdf', NULL, NULL, '2020-11-30', 15, '', '8', '59', NULL, 0.00, '02:01 PM', '0', NULL, '2', 'Left without attending', '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 01:23:29', 1, '2020-11-29 01:26:38', 0, NULL, 1),
(2114, '', '0', '9551391991', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 02:04:37', 0, NULL, 0, NULL, 1),
(2115, 'Mahalakshmi S', '11', '7550021712', '8526193852', 'mahalakshmiselvaraj1712@gmail.com', '1999-12-17', 20, '2', '2', 'Selvaraj P', 'Daily wages', 100000.00, 3, 0.00, 12000.00, '6/67_8 north Silver street ,st Thomas mount ,Ch-16', '6/67_8 North Silver Street ,St Thomas Mount ,Ch-16', '2011290008', '15', '1', 'upload_files/candidate_tracker/56386587192_Document from Maha.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '02:01 PM', '0', NULL, '2', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 02:46:51', 1, '2020-11-30 02:01:45', 0, NULL, 1),
(2116, 'Prasad N', '5', '9986477255', '', 'Prasadnagaraj991@gmail.com', '1991-04-22', 29, '1', '1', 'B R Nagaraj', 'Expired', 30000.00, 2, 0.00, 25000.00, 'Bangalore', 'Bangalore', '2011290009', '', '1', 'upload_files/candidate_tracker/43270609045_prasad resume.pdf', NULL, NULL, '2020-11-30', 0, '0123456', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 03:39:09', 1, '2020-11-29 04:01:20', 0, NULL, 1),
(2117, 'Vignesh', '13', '7358451500', '8122185814', 'vigneshkannadasan77@gmail.com', '1995-07-07', 25, '2', '2', 'Kannadasan', 'Conductor', 25000.00, 1, 0.00, 2.50, 'Medavakkam', 'Medavakkam', '2011290010', '1', '1', 'upload_files/candidate_tracker/62003664466_vignesh web developer resume.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Donxquott Have A Basic Knowledge In PHP. But he is ready for 3 Years Bond.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-29 04:05:56', 64, '2020-12-23 02:38:11', 0, NULL, 1),
(2118, 'logesh karthik s', '13', '9551783347', '9003046684', 's.logeshkarthik@gmail.com', '1999-07-08', 21, '2', '2', 'selvaraju v', 'govt employee', 100000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2011290011', '14', '1', 'upload_files/candidate_tracker/31102684321_LOGESH KARTHIK S-resume.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '27', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'He is Looking for an internship. He is not good in technical.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 04:14:09', 50, '2020-11-30 11:41:12', 0, NULL, 1),
(2119, 'Balaji', '6', '6383330451', '7358292493', 'balajiravi0018@gmail.com', '2000-10-01', 20, '2', '2', 'P.Ravi', 'Rmkv sales representive', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2011290012', '14', '1', 'upload_files/candidate_tracker/5928235911_BALAJI RESUME.pdf', NULL, NULL, '2020-11-29', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 04:33:27', 1, '2020-11-29 06:27:14', 0, NULL, 1),
(2120, 'masood ahmed a', '2', '6379460938', '9840927404', 'ayishanaznee@gmail.com', '1999-11-15', 21, '2', '2', 'abdul aleem', 'leather business', 0.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2011290013', '14', '1', 'upload_files/candidate_tracker/10443060244_Resume_MasoodAhmed-CSE.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'internship ', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 05:15:42', 50, '2020-11-30 11:39:32', 0, NULL, 1),
(2121, 'm.maheswari', '13', '9159277057', '9344798064', 'mahimurugan56@gmail.com', '1995-05-22', 25, '3', '1', 'g.murugan', 'farmer', 25000.00, 1, 0.00, 25000.00, 'pudhukkotai', 'nandhampakkam', '2011290014', '', '1', 'upload_files/candidate_tracker/36899311911_mahi (1).docx', NULL, NULL, '2020-11-30', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'Dont Know The Basics. ', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 05:17:40', 1, '2020-11-29 05:35:22', 0, NULL, 1),
(2122, 'V.sharon', '4', '9445325057', '9445010911', 'sharongracy07@gmail.com', '1999-08-25', 21, '2', '2', 'M.vetriselvam', 'Private Contract', 20000.00, 1, 0.00, 18000.00, 'No.6/10,aziz mulk 6th street,thousand lights', 'No.6/10,Aziz Mulk 6th Street,Thousand Lights', '2011290015', '14', '1', 'upload_files/candidate_tracker/80989542215_RESUME sharon.docx', NULL, NULL, '2020-11-30', 0, '', '5', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Sustain Long Term Bcz She Is Planning Mba For Abroad...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 06:13:48', 8, '2020-11-30 05:07:02', 0, NULL, 1),
(2123, '', '0', '9444100528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 06:20:42', 0, NULL, 0, NULL, 1),
(2124, 'KRIBAKARAN V', '6', '9444100558', '8248907663', 'kripakaran10@yahoo.com', '1998-04-19', 22, '2', '2', 'VETRISELVAM M', 'Contract labour', 20000.00, 1, 0.00, 18000.00, 'NO:-6/10,AZIZ MULK,6TH STREET, THOUSANDLIGHTS,', 'NO:-6/10,AZIZ MULK,6TH STREET, THOUSANDLIGHTS,', '2011290017', '14', '1', 'upload_files/candidate_tracker/16792320569_V.KRIBA\'s Resume.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '59', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'No Bike. Will not sustain', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 06:32:30', 1, '2020-11-29 06:36:15', 0, NULL, 1),
(2125, '', '0', '6374280675', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011290018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 06:45:13', 0, NULL, 0, NULL, 1),
(2126, 'shubham gupta', '5', '8189886009', '9840030816', 'sgpg99@gmail.com', '1999-08-13', 21, '2', '2', 'pravin gupta', 'business', 60000.00, 2, 0.00, 325000.00, 'kilpauk', 'kilpauk', '2011290019', '1', '1', 'upload_files/candidate_tracker/1010512221_Shubham Gupta CV-converted.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-29 07:44:52', 1, '2020-11-29 07:56:59', 0, NULL, 1),
(2127, 'Mani.N.a', '5', '9841315091', '8072175462', 'namani9841@gmail.com', '1995-06-08', 25, '2', '2', 'N.D.anthony', 'Cooli', 10000.00, 7, 180000.00, 250000.00, 'No-3/46 Perumal koil Street chinna Nolambur ch-95', 'No-3/46 Perumal Koil Street Chinna Nolambur Ch-95', '2011290020', '3', '2', 'upload_files/candidate_tracker/41160897960_MANI_RESUME.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '36', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not fit', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 08:09:26', 50, '2020-12-01 12:05:32', 0, NULL, 1),
(2128, 'Sasidhar V J', '13', '9514821001', '', '', '2000-05-01', 20, '2', '2', 'Jayachandran V', 'Business', 30000.00, 1, 0.00, 30000.00, 'Tiruttani', 'Tiruttani', '2011290021', '14', '1', 'upload_files/candidate_tracker/4350437288_2021_PEC_CSE_SASIDHAR.V.J.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '8', NULL, 0.00, '11:30 AM', '0', NULL, '2', 'intership', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 09:23:27', 1, '2020-11-29 09:26:19', 0, NULL, 1),
(2129, 'Ashok thapa', '6', '9094302011', '', 'mashokthapa1@gmail.com', '1998-04-20', 22, '1', '2', 'Man Bahadur Thapa', 'Driver', 17000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2011290022', '', '1', 'upload_files/candidate_tracker/67603417799_ashok3res.pdf', NULL, NULL, '2020-11-29', 0, 'Priyanka -HR', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-29 09:46:44', 1, '2020-11-29 11:30:10', 0, NULL, 1),
(2130, 'm.preethi', '4', '7358733976', '9677024347', 'harshikaa0528@gmail.com', '1989-04-08', 31, '2', '1', 'e.rajesh kumar', 'diplamo', 30000.00, 1, 0.00, 15000.00, 'ponni amman koil street kottur', 'Chennai', '2011300001', '3', '1', 'upload_files/candidate_tracker/74206678935_RESUME (7).pdf', NULL, NULL, '2020-12-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and will not suite for sales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-11-30 08:04:03', 1, '2020-12-19 12:46:32', 0, NULL, 1),
(2131, 'Kirubakarasi. S', '4', '6383961121', '9840323754', 'Kirubakarasi@gmail.com', '1992-05-19', 28, '2', '2', 'Singarayar', 'Farmer', 15000.00, 2, 20000.00, 25000.00, '68 c annai illam indra nagar ilayankudi road east', 'No 24 thiruvalluvapuram 2nd chookaimedu methanagar', '2011300002', '3', '2', 'upload_files/candidate_tracker/87436190321_1606305060361_1602837770249_Kirubakarasi resume (1).docx', NULL, NULL, '2020-11-30', 0, '', '5', '21', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '2', '25k Above Salary Expected ..', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 08:56:16', 7, '2020-12-01 10:06:05', 0, NULL, 1),
(2132, 'Amarnath', '6', '8639984711', '9618861649', 'Amarnathgoudsk@gmail.com', '1998-05-06', 22, '2', '2', 'Muddanna', 'Farmer', 15000.00, 2, 0.00, 2.50, 'Andhra Pradesh', 'Madiwala', '2011300003', '1', '1', 'upload_files/candidate_tracker/63882392627_Amar G_Resume_Format1-1.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '38', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '1', 'he will not suit for our process and not good in communication', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 09:53:03', 50, '2020-11-30 02:41:55', 0, NULL, 1),
(2133, 'LOGANATHAN D', '5', '9941448550', '', 'gokulakannan6090@gmail.com', '1994-12-09', 25, '2', '2', 'Dinakaran B', 'Police', 38000.00, 1, 18500.00, 22000.00, 'TONDAIYARPET CH-81', 'Tondaiyarpet', '2011300004', '1', '2', 'upload_files/candidate_tracker/21021263474_Loganathan Finance.docx', NULL, NULL, '2020-11-30', 0, '', '3', '8', '2020-12-01', 252000.00, '10:30 AM', '2', '1970-01-01', '1', '21k ctc for suthagar team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 10:45:22', 7, '2020-12-01 10:02:11', 0, NULL, 1),
(2134, 'M. Santhosh Kumar', '11', '8610021757', '8680919550', 'santhoshsunil148@gmail.com', '1998-02-08', 22, '2', '2', 'C.murali', 'MTC Conductor', 30000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2011300005', '1', '1', 'upload_files/candidate_tracker/25902378963_Santhosh Resume.pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '10:59 AM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 10:51:01', 1, '2020-11-30 11:00:48', 0, NULL, 1),
(2135, 'vasanth kumar', '5', '7401335199', '9025183858', 'itsmeallen5729@gmail.com', '1995-10-01', 25, '2', '2', 'ram kumar', 'travels', 40000.00, 1, 18000.00, 20000.00, 'chennai', 'vadapalani', '2011300006', '14', '2', 'upload_files/candidate_tracker/80983092498_resume_1606109856815.pdf', NULL, NULL, '2020-11-30', 15, '', '6', '0', NULL, 0.00, '02:00 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 11:25:20', 1, '2020-11-30 12:07:22', 0, NULL, 1),
(2136, 'narendaran', '5', '8608749409', '9941810974', 'narenemailid@gmail.com', '1990-12-15', 29, '2', '2', 'shanmugam', 'govt employee', 30000.00, 1, 17000.00, 22000.00, 'tondiarpet', 'tondiarpet', '2011300007', '1', '2', 'upload_files/candidate_tracker/94492268354_narenresume.docx', NULL, NULL, '2020-11-30', 0, '', '5', '8', NULL, 0.00, '12:47 PM', '0', NULL, '1', 'will not suite for sales.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 11:28:34', 1, '2020-11-30 12:49:22', 0, NULL, 1),
(2137, 'Giridharan.V', '4', '9080307445', '7092781611', 'giridharan1611@gmail.com', '1999-11-16', 21, '1', '2', 'Vedhachalam.E', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Vanagaram , Chennai - 95', 'Vanagaram , Chennai -95', '2011300008', '', '1', 'upload_files/candidate_tracker/9597474951_garidharan two pages resume 11.12.2019.docx', NULL, NULL, '2020-11-30', 0, 'P1113', '6', '0', NULL, 0.00, '12:30 PM', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:03:08', 1, '2020-11-30 12:11:55', 0, NULL, 1),
(2138, 'M.BAVANESH VISHVA', '6', '8248461995', '', 'mvishva0@gmail.com', '2000-07-16', 20, '1', '2', 'P.muthu kumar', 'Business', 100000.00, 1, 0.00, 15000.00, '2/128 , balamurgan street, SRS nager,kovur, ch', '2/128, balamurgan Street, SRS NAGER, KOVUR,CH', '2011300009', '', '1', 'upload_files/candidate_tracker/91448361897_vishva Resume .pdf', NULL, NULL, '2020-11-30', 0, 'P1113', '6', '', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:04:22', 50, '2020-11-30 12:46:05', 0, NULL, 1),
(2139, 'Md Farhad', '14', '6383162304', '', 'mohdfarhad7755@gmail.com', '1999-04-02', 21, '1', '2', 'Md israil', 'Service', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2011300010', '', '1', 'upload_files/candidate_tracker/13809075894_Md\'s Resume.pdf', NULL, NULL, '2020-11-30', 0, 'P1113', '6', '0', NULL, 0.00, '12:30 PM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:13:54', 1, '2020-11-30 12:22:34', 0, NULL, 1),
(2140, 'Sabari J', '21', '8056279698', '9840965318', 'sabarijothi2000@gmail.com', '2000-06-16', 20, '1', '2', 'Jothi c', 'late', 15000.00, 2, 0.00, 13000.00, 'porur', 'porur', '2011300011', '', '1', 'upload_files/candidate_tracker/85547260144_CV_2020-11-12-070100.pdf', NULL, NULL, '2020-11-30', 0, 'jobs', '5', '32', '1970-01-01', 0.00, '12:21 PM', '', '1970-01-01', '1', 'Not accepted for Bond', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:17:48', 50, '2020-11-30 01:24:51', 0, NULL, 1),
(2141, '', '0', '9344724710', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:18:18', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2142, 'Sathyaseelan', '2', '7448708780', '', 'Sathyaseelan S', '2000-04-05', 20, '1', '2', 'D subramani', 'Car driver', 18000.00, 1, 0.00, 18000.00, 'chennai', 'Mangadu, Chennai', '2011300013', '', '1', 'upload_files/candidate_tracker/94895972979_resume.docx', NULL, NULL, '2020-11-30', 0, '0', '5', '27', NULL, 0.00, '12:22 PM', '0', NULL, '1', 'Dont know the Basics. he is interested in Python Only.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:18:20', 1, '2020-11-30 12:23:57', 0, NULL, 1),
(2143, 'Prasanna Venkatesh', '13', '8870973340', '9943218200', 'venkateshan3340@gmail.com', '1997-10-27', 23, '2', '2', 'R. Azhagiri', 'Security', 120000.00, 1, 18000.00, 18000.00, 'Trichy', 'Chennai', '2011300014', '1', '2', 'upload_files/candidate_tracker/58738047951_Prasanna_resume.docx', NULL, NULL, '2020-12-14', 15, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 12:30:47', 50, '2020-12-14 11:48:12', 0, NULL, 1),
(2144, 'MUGESH BASENTRAN', '6', '8015669788', '8939212938', 'jimugesh@gmail.com', '2000-04-09', 20, '2', '2', 'BASENTRAN V', 'DAILY WAGE', 12000.00, 4, 0.00, 14000.00, 'NO: 441/ 196B ANNAITHERES STREET KANNATHUR CHENNAI', 'NO: 441/ 196B ANNAITHERES STREET KANNATHUR CHENNAI', '2011300015', '1', '1', 'upload_files/candidate_tracker/19263158929_1604766946584Resume_MUGESH.pdf', NULL, NULL, '2020-11-30', 0, '', '5', '8', '1970-01-01', 0.00, '12:49 PM', '', '1970-01-01', '1', 'will not sustain. no language and no 2 wheeler', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:41:32', 7, '2020-11-30 05:00:10', 0, NULL, 1),
(2145, '', '0', '9943137216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 12:43:17', 0, NULL, 0, NULL, 1),
(2146, '', '0', '9786337898', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 01:01:04', 0, NULL, 0, NULL, 1),
(2147, 'sameer soumya ranjan jena', '13', '7008392889', '7381883483', 'sameerjena5596@gmail.com', '1996-05-05', 24, '2', '2', 'gopal chandra jena', 'teacher', 40000.00, 0, 4.50, 5.50, 'odisha', 'chennai', '2011300018', '1', '2', 'upload_files/candidate_tracker/69916420259_sameer.docx', NULL, NULL, '2020-12-02', 0, '', '5', '27', '1970-01-01', 0.00, '11:34 AM', '', '1970-01-01', '2', 'Got Another Job.', '2', '2', '', '', '', '', '2', '2020-12-24', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-30 01:06:16', 65, '2020-12-24 12:01:44', 0, NULL, 1),
(2148, 'Thalabady Kabalane', '17', '9585851979', '9840455175', 'Thala.cs@gmail.com', '1988-01-03', 32, '1', '2', 'Kabalane', 'Government organization', 50000.00, 1, 30000.00, 35000.00, 'No .2,1 st cross , muthamizh nagar, pondicherry', 'No 2/40, kaveri street, iyyapanthangal.', '2011300019', '', '2', 'upload_files/candidate_tracker/59149803257_CV_2020-08-23-101937.pdf', NULL, NULL, '2020-12-01', 5, '5369', '5', '51', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'fake info', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 01:08:06', 1, '2020-11-30 02:07:29', 0, NULL, 1),
(2149, 'lakshmi narayanan s', '13', '9003037274', '9445295208', 'lakshminarayananonly@gmail.com', '1998-03-11', 22, '2', '2', 'shanmugavel m', 'daily wages', 20000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2011300020', '1', '1', 'upload_files/candidate_tracker/22140979526_resume.docx', NULL, NULL, '2020-12-02', 0, '', '3', '8', '2020-12-03', 158400.00, '11:00 AM', '5', '1970-01-01', '1', '12540 th and 13200 ctc for it', '2', '2', '2', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-11-30 01:27:45', 65, '2020-12-24 10:13:14', 0, NULL, 1),
(2150, '', '0', '8778934756', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 01:34:26', 0, NULL, 0, NULL, 1),
(2151, '', '0', '9972028714', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 01:36:26', 0, NULL, 0, NULL, 1),
(2152, 'deepa.k', '4', '9750679884', '', 'deepa91117@gmail.com', '1997-06-13', 23, '2', '2', 'karuppaiyan', 'farmer', 15000.00, 2, 0.00, 15000.00, 'kumbakonam', 'nungabakkam', '2011300023', '1', '1', 'upload_files/candidate_tracker/1891264986_Deepa11111111111111111 resume.docx', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain much interested into Non Voice\n', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-11-30 01:38:06', 50, '2021-02-13 03:31:46', 0, NULL, 1),
(2153, 'samuel ebinezer y', '5', '7299275580', '9080307369', 'samchinne733848@gmail.com', '1996-06-25', 24, '2', '2', 'yosuva g', 'tailor', 20000.00, 1, 22000.00, 26000.00, '27/20 Bhagavathi Ammal street,kolathur,chennai-99', '27/20 Bhagavathi Ammal street,kolathur,chennai-99', '2011300024', '1', '2', 'upload_files/candidate_tracker/43822501251_Sam Resume.pdf', NULL, NULL, '2020-12-03', 0, '', '3', '8', '2020-12-07', 264000.00, '11:00 AM', '6', '2021-03-26', '1', '22k ctc for sarath team no esi/pf', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-11-30 01:50:25', 58, '2020-12-23 04:18:36', 0, NULL, 1),
(2154, '', '0', '9535508372', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 03:23:05', 0, NULL, 0, NULL, 1),
(2155, 'Akaskar.M', '13', '8525879125', '', '', '1998-12-30', 21, '2', '2', 'Mani Raj.K', 'Farmer', 100000.00, 1, 0.00, 18000.00, 'Alangulam,Tenkasi dist', 'Velachery chennai', '2011300026', '15', '1', 'upload_files/candidate_tracker/22873797305_M.Akaskar 1-converted.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'not Complete the System Task.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 03:35:58', 50, '2020-12-01 10:32:20', 0, NULL, 1),
(2156, '', '0', '8056627687', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 03:44:51', 0, NULL, 0, NULL, 1),
(2157, 'Tamilmani', '13', '9688668629', '6383243138', 'tamilmani3107@gmail.com', '1998-07-31', 22, '2', '2', 'Murugesan', 'Weaver', 7000.00, 1, 0.00, 14000.00, 'Namakkal', 'Namakkal', '2011300028', '1', '1', 'upload_files/candidate_tracker/79849058129_RESUME(1).pdf', NULL, NULL, '2020-12-02', 0, '', '3', '59', '2021-02-16', 101053.00, '03:00 PM', '5', '1970-01-01', '2', 'CTC 8K TH ,Will be trained in Mern Stack', '2', '2', '2', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-30 03:53:09', 60, '2021-02-16 10:20:24', 0, NULL, 1),
(2158, 'Ebinesar R', '13', '7825825190', '9790755350', 'ebinesarjohn123@gmail.com', '1995-08-28', 25, '2', '2', 'Robert D', 'Driver', 120000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2011300029', '15', '1', 'upload_files/candidate_tracker/18563077255_EBINESAR R fresher resume(1).pdf', NULL, NULL, '2020-11-30', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:01:02', 1, '2020-11-30 04:04:10', 0, NULL, 1),
(2159, 'Hemanth sriram', '13', '7299664737', '8939645060', 'Hemanthsriram97@gmail.com', '1997-11-20', 23, '2', '2', 'Vijaya kumar', 'Business', 20000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2011300030', '15', '1', 'upload_files/candidate_tracker/21049170642_Hemanthsriram_resume.pdf', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '12:00 PM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:01:12', 1, '2020-11-30 04:20:23', 0, NULL, 1),
(2160, 'Prabhakaran', '13', '9150766328', '8940857834', 'prabakaranm8376@gmail.com', '1995-04-27', 25, '2', '2', 'Muruganantham', 'Bussiness', 10000.00, 1, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2011300031', '15', '1', 'upload_files/candidate_tracker/47890017822_my resume.docx', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:15:16', 50, '2020-12-01 12:49:12', 0, NULL, 1),
(2161, 'dhivya bharathi', '4', '9566179140', '', 'dhivyaeswaraiah@gmail.com', '1992-01-11', 28, '2', '1', 'vivek krishnan', 'service engineer', 35000.00, 1, 17000.00, 20000.00, 'ambattur', 'ambattur', '2011300032', '15', '2', 'upload_files/candidate_tracker/31569874853_Resume.docx', NULL, NULL, '2020-12-01', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:17:27', 1, '2020-11-30 05:01:46', 0, NULL, 1),
(2162, '', '0', '9944392516', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300033', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 04:38:11', 0, NULL, 0, NULL, 1),
(2163, 'SIVA RAMA KRISHNAN', '3', '9551977454', '', 'sivakrish3108@gmail.com', '1996-08-31', 24, '2', '2', 'Kannan', 'Late', 8000.00, 2, 8000.00, 12000.00, 'Pallavaram', 'Pallavaram', '2011300034', '1', '2', 'upload_files/candidate_tracker/81978430498_Siva Resume.pdf', NULL, NULL, '2020-12-01', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Couldnxquott meet our expectations.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-11-30 05:25:03', 64, '2020-12-23 02:40:45', 0, NULL, 1),
(2164, 'Ramkumar', '21', '9787063837', '', 'ramkumargopal10@gmail.com', '1995-11-20', 25, '2', '1', 'Gopal A', 'Retired', 40000.00, 2, 17000.00, 20000.00, 'Namakkal', 'Chennai', '2011300035', '14', '2', 'upload_files/candidate_tracker/55189571566_resume.pdf', NULL, NULL, '2020-12-01', 1, '', '6', '0', NULL, 0.00, '11:30 AM', '0', NULL, '1', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 05:50:39', 1, '2020-11-30 05:54:58', 0, NULL, 1),
(2165, '', '0', '8939240309', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2011300036', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 05:50:51', 0, NULL, 0, NULL, 1),
(2166, 'Jyothi n', '20', '8296848541', '8431847807', 'jyothiraj956@gmail.com', '1999-04-12', 21, '2', '2', 'Nagarajaih', 'Farmer', 50.00, 1, 12.50, 16.00, 'Haralahalli tarikere', 'Bommasandra', '2011300037', '7', '2', 'upload_files/candidate_tracker/33123786559_Jyothi N.pdf', NULL, NULL, '2020-12-01', 0, '', '3', '8', '2020-12-16', 177000.00, '11:09 AM', '2', '1970-01-01', '2', '14k th for crm sathish team', '5', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 07:35:32', 7, '2020-12-03 05:15:39', 0, NULL, 1),
(2167, 'Sujipriya R', '2', '7868076669', '9989708972', 'sujipriya1997@gmail.com', '1997-01-12', 23, '2', '1', 'Venkatesh N', 'Software engineer', 100000.00, 1, 0.00, 300000.00, 'Tiruvallur', 'Tiruvallur', '2011300038', '1', '1', 'upload_files/candidate_tracker/63090389487_SUJIPRIYA.pdf', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-11-30 10:43:46', 1, '2020-11-30 10:51:41', 0, NULL, 1),
(2168, 'Vivek Sharma', '11', '8248185579', '', '', '1997-08-23', 23, '2', '2', 'Prem Kumar Sharma', 'Brush agent', 30.00, 2, 0.00, 2.40, 'JTN, Thattankulam Road, Madhavaram, Chennai 600060', 'JTN, Thattankulam Road, Madhavaram ch-600060', '2012010001', '1', '1', 'upload_files/candidate_tracker/79596512428_Resume .docx', NULL, NULL, '2020-12-01', 0, '', '6', '0', NULL, 0.00, '11:17 AM', '0', NULL, '1', NULL, '6', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 05:33:28', 1, '2020-12-01 05:45:06', 0, NULL, 1),
(2169, 'Ranjith', '13', '9940060437', '9791166895', 'ranjithm8687@gmail.com', '1985-06-02', 35, '2', '2', 'Manokaran', 'Farmer', 2000.00, 1, 3.36, 500000.00, 'Namakkal', 'Chennai', '2012010002', '1', '2', 'upload_files/candidate_tracker/99181928593_Resume.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '10:31 AM', '', '1970-01-01', '2', 'Joined in another Company', '2', '2', '', '', '', '', '2', '2020-12-22', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-01 10:27:00', 64, '2020-12-28 03:17:23', 0, NULL, 1),
(2170, '', '0', '8072469269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:27:38', 0, NULL, 0, NULL, 1),
(2171, 'Kishore Kumar', '6', '9710532228', '9094348057', 'kishoresmartgks@gmail.com', '2000-07-28', 20, '2', '2', 'Somu', 'Corporation worker', 11000.00, 1, 0.00, 15000.00, '11/21 hospital road t.nagar Chennai . 17', '11/21 hospital road Chennai .17', '2012010004', '1', '1', 'upload_files/candidate_tracker/48302314513_RESUME kesavan.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '16', '1970-01-01', 0.00, '10:52 AM', '', '1970-01-01', '1', 'low profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:44:46', 50, '2020-12-03 11:57:03', 0, NULL, 1),
(2172, 'Pooja', '13', '8189976842', '', 'subramanianpoojas@gmail.com', '1999-10-09', 21, '2', '2', 'D. Subramanian', 'Ironer', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2012010005', '15', '1', 'upload_files/candidate_tracker/50142340652_Pooja Resume.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:50:36', 50, '2020-12-04 06:01:36', 0, NULL, 1),
(2173, '', '0', '9585302349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:50:37', 0, NULL, 0, NULL, 1),
(2174, '', '0', '9042080728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:52:28', 0, NULL, 0, NULL, 1),
(2175, '', '0', '8825911714', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 11:00:13', 0, NULL, 0, NULL, 1),
(2176, 'Karthika', '2', '9080811135', '7010978108', 'mkarthika456@gmail.com', '1997-07-07', 23, '2', '2', 'Muthukumar', 'Distributor', 7000.00, 1, 15000.00, 25000.00, 'Dindigul', 'Chennai', '2012010009', '1', '2', 'upload_files/candidate_tracker/58898917847_Karthika UI Resume-1.pdf', NULL, NULL, '2020-12-01', 15, '', '5', '27', '1970-01-01', 0.00, '03:00 PM', '', '1970-01-01', '2', 'Task not up to our level. Even she is not did what am telling', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-01 11:28:15', 64, '2020-12-23 02:42:36', 0, NULL, 1),
(2177, '', '0', '9789589619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 11:33:56', 0, NULL, 0, NULL, 1),
(2178, 'boobalan', '23', '8940922797', '7904980781', 'boobalan27197@gmail.com', '1999-04-10', 21, '2', '2', 'muthukrishnan', 'salesman', 15000.00, 1, 15000.00, 16000.00, 'tirunelveli', 'velachery', '2012010011', '1', '2', 'upload_files/candidate_tracker/81387301404_Boonewresume.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont have an experience in UX', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-01 11:50:59', 64, '2020-12-23 02:41:41', 0, NULL, 1),
(2179, '', '0', '9679558561', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 11:58:07', 0, NULL, 0, NULL, 1),
(2180, 'Ashok.A', '13', '9551778959', '9361566364', 'ashok.red007@gmail.com', '1995-10-21', 25, '2', '2', 'Aadhimoolam', 'Security', 7000.00, 1, 0.00, 10000.00, 'Thoraipakkam', 'Thoraipakkam', '2012010013', '1', '1', 'upload_files/candidate_tracker/80128781999_A resume.doc', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 12:21:42', 1, '2020-12-01 12:33:07', 0, NULL, 1),
(2181, 'RANJINI', '5', '7904376439', '8344888115', 'ranjini9132@gmail.com', '1995-08-30', 25, '2', '2', 'SRIDHARAN', 'Salt merchant', 30000.00, 1, 12000.00, 18000.00, '83 Perumal Street, new colony, Thoothukudi', 'No 21 /2 Ponnani puram1st Street, Nungambakkam', '2012010014', '14', '2', 'upload_files/candidate_tracker/64549778635_Ranji resume New 1.docx', NULL, NULL, '2020-12-01', 0, '', '5', '59', NULL, 0.00, '03:00 PM', '0', NULL, '2', 'Not Fit,will not sustain ', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 12:25:02', 1, '2020-12-01 12:46:21', 0, NULL, 1),
(2182, 'P.Arunkumar', '4', '6374150223', '9080695599', 'arunk964897@gmail.com', '2000-05-04', 20, '2', '2', 'I.Palpandi', 'None', 96000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2012010015', '1', '1', 'upload_files/candidate_tracker/98462275692_file1.PDF', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 12:25:52', 1, '2020-12-01 12:35:41', 0, NULL, 1),
(2183, 'Surya R', '6', '6369567009', '9787669908', 'Samsurya143r@gmail.com', '1996-12-20', 23, '2', '2', 'Ramadas', 'Farmer', 18000.00, 2, 0.00, 12000.00, 'No. 107 Nehru bazaar uthukottai 602026 thiruvallur', 'No. 14 Nyniappan Street Park Town Chennai 600003', '2012010016', '1', '1', 'upload_files/candidate_tracker/55239583229_Suryacv.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 12:41:00', 50, '2020-12-04 06:05:04', 0, NULL, 1),
(2184, '', '0', '7904332490', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 12:44:10', 0, NULL, 0, NULL, 1),
(2185, 'mohammed aslam', '13', '9751687874', '8940175919', 'maslamubaid95@gmail.com', '1995-10-08', 25, '2', '2', 'ahamadullah', 'driver', 20000.00, 1, 0.00, 10000.00, 'Pondicherry', 'Pondicherry', '2012010018', '1', '1', 'upload_files/candidate_tracker/33332947646_Aslam cv- Final.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 01:19:27', 50, '2020-12-04 06:05:12', 0, NULL, 1),
(2186, 'Sabari kb', '6', '7401355165', '8939165354', 'anokbrucelee@gmail.com', '1995-07-10', 25, '1', '2', 'Balu k', 'Self employed', 15000.00, 4, 15000.00, 17000.00, '698 j block seniyamman koil st Thondaiyarpet81', '698 J Block Seniyamman Koil Street Thondaiyarpet', '2012010019', '', '2', 'upload_files/candidate_tracker/39950971632_SABARI updated resume-converted.docx', NULL, NULL, '2020-12-01', 15, '5558', '5', '24', '1970-01-01', 0.00, '01:50 PM', '', '1970-01-01', '1', 'not fit our profile', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 01:39:37', 50, '2020-12-01 03:01:45', 0, NULL, 1),
(2187, '', '0', '9176477549', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 03:17:48', 0, NULL, 0, NULL, 1),
(2188, 'Gopinath M', '13', '9159622523', '8344265792', 'gopinathgopi3421@gmail.com', '1999-04-21', 21, '2', '2', 'Murugesan', 'Farmer', 10000.00, 3, 10000.00, 12000.00, 'Trichy', 'Trichy', '2012010021', '15', '2', 'upload_files/candidate_tracker/74743322381_GOPI _M resume.docx', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Good in Technical.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 03:19:30', 50, '2020-12-03 10:54:51', 0, NULL, 1),
(2189, 'Abdul hameed A', '23', '8148467324', '', 'Abdulhameed2904@gmail.com', '1998-04-29', 22, '2', '2', 'Asan Gani K S', 'PWD Retired', 100000.00, 1, 0.00, 16000.00, 'No 20 kareem subedhar street Royapettah Chennai-14', 'No 20 Kareem Subedhar Street Royapettah Chennai-14', '2012010022', '1', '1', 'upload_files/candidate_tracker/71265213701_Hammu Resume.docx', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont know the Basics', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-01 03:26:50', 65, '2020-12-24 11:30:21', 0, NULL, 1),
(2190, 'Karthikeyan Umapathy', '5', '9941903803', '8124131049', 'karthikeyanumapathy43@gmail.com', '1999-10-28', 21, '1', '2', 'Umapathy gandhi', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012010023', '', '1', 'upload_files/candidate_tracker/87340870601_Resume-Karthikeyan Umapathy.docx', NULL, NULL, '2020-12-01', 0, '55598', '3', '8', '2020-12-03', 189600.00, '03:40 PM', '2', '1970-01-01', '1', '15800 ctc and 15th for logesh team', '5', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 03:36:16', 7, '2020-12-02 04:25:29', 0, NULL, 1),
(2191, 'Sanjeev keshavrao Joshi', '17', '9480120778', '9844009779', 'sanjeevj22@gmail.com', '1977-07-16', 43, '2', '1', 'Keshavrao', 'RTD', 50000.00, 0, 550000.00, 700000.00, 'Sriram Hanumant nagar attikolla Dharwad', 'T r nagar bengalore', '2012010024', '1', '2', 'upload_files/candidate_tracker/96959114315_SANJEEV JOSHI C V New.pdf', NULL, NULL, '2020-12-01', 30, '', '3', '8', '2020-12-07', 650000.00, '12:44 PM', '6', '2021-04-01', '1', '50359 th and with esi/pf', '5', '2', '4', '2', '2', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 03:40:06', 7, '2020-12-03 12:44:43', 0, NULL, 1),
(2192, '', '0', '8056492563', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012010025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 03:49:48', 0, NULL, 0, NULL, 1),
(2193, 'Nandhakumar N', '13', '9943169177', '8825911714', 'Nandhusweet1415@gmail.com', '1996-11-10', 24, '2', '2', 'Nagaraj', 'Coolie', 12000.00, 2, 0.00, 10000.00, 'Thiruvarur', 'Thiruvarur', '2012010026', '1', '1', 'upload_files/candidate_tracker/47835865688_nandhamsc.docx', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-01 04:20:48', 50, '2020-12-04 06:05:20', 0, NULL, 1),
(2194, 'Niveatha J', '11', '9080760927', '', 'niveatha1995@gmail.com', '1995-05-15', 25, '2', '2', 'Jayaraj D', 'Retired', 240000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Egmore, chennai', '2012010027', '1', '1', 'upload_files/candidate_tracker/50416111332_NiVi fnlResume 2020.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'No much ok with agreement, will not sustain for a long', '6', '2', '', '', '', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-01 04:24:25', 58, '2020-12-23 03:21:11', 0, NULL, 1),
(2195, 'Karthik C s', '14', '9940647185', '', 'karthidhoni12@gmail.com', '1997-04-12', 23, '2', '2', 'Srinivasan', 'Fitter', 25000.00, 2, 13800.00, 25000.00, 'Chennai', 'Chennai', '2012010028', '14', '2', 'upload_files/candidate_tracker/80725891433_CSK_Resume.docx', NULL, NULL, '2020-12-03', 15, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'He knows only UI. donxquott have an experience in UX.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 08:35:41', 1, '2020-12-01 08:41:07', 0, NULL, 1),
(2196, 'Udayakumar', '5', '6381068576', '9789057190', 'Udkr1995@gmail.com', '1995-09-14', 25, '2', '2', 'A.chellappan', 'tailor (late)', 15000.00, 1, 17000.00, 19000.00, 'Chennai', 'Kaladipet', '2012010029', '3', '2', 'upload_files/candidate_tracker/75168203322_udaya resume new.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '33', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'NOT FIT FOR SALES AND RM', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 09:05:14', 50, '2020-12-03 12:51:19', 0, NULL, 1),
(2197, 'Karthick', '5', '9840751979', '', 'kartzzlak6609@gmail.com', '1990-07-19', 30, '2', '1', 'Chandrasekhar', 'Contract', 25000.00, 1, 23000.00, 30009.00, 'Avad', 'Avadi', '2012010030', '3', '2', 'upload_files/candidate_tracker/34072162159__.CVV (1).pdf', NULL, NULL, '2020-12-02', 30, '', '6', '0', NULL, 0.00, '12:31 PM', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-01 10:27:48', 1, '2020-12-01 10:34:29', 0, NULL, 1),
(2198, 'Angel Gunaseeli', '20', '8148935331', '9003349097', 'angelgabi0706@gmail.com', '1998-12-16', 21, '2', '2', 'Rajan', 'Nil', 10000.00, 1, 12000.00, 15000.00, 'No.12/13 L.D.G Road Little Mount Saidapet Chennai', 'No.12/13 L.D.G Road Little Mount Saidapet Chennai', '2012020001', '14', '2', 'upload_files/candidate_tracker/43949497883_ANGELGUNASEELI RESUME.docx', NULL, NULL, '2020-12-02', 0, '', '5', '8', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'will not suite for calling and sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 08:11:31', 1, '2020-12-02 08:38:55', 0, NULL, 1),
(2199, 'saranraj b', '20', '8248435656', '9940464168', 'saran.sr365@gmail.com', '1991-04-14', 29, '1', '1', 'baskaran', 'driver', 12000.00, 0, 18000.00, 21000.00, 'ambattur', 'ambattur', '2012020002', '', '2', 'upload_files/candidate_tracker/65734973419_SARAN.Diploma.doc (1).pdf', NULL, NULL, '2020-12-02', 0, '5300', '3', '8', '2020-12-03', 288000.00, '10:23 AM', '4', '2021-05-06', '1', '24k ctc and no esi/pf for logesh team', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 09:52:41', 7, '2020-12-03 10:16:33', 0, NULL, 1),
(2200, '', '0', '8072412550', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:19:33', 0, NULL, 0, NULL, 1),
(2201, '', '0', '9176436623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:40:34', 0, NULL, 0, NULL, 1),
(2202, '', '0', '9176731795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:41:42', 0, NULL, 0, NULL, 1),
(2203, '', '0', '8072638965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:47:13', 0, NULL, 0, NULL, 1),
(2204, 'gunasekaran', '5', '9176221557', '', 'hsh25050@gmail.com', '1996-02-01', 24, '2', '2', 'ilson', 'ailways', 40000.00, 1, 17500.00, 19000.00, 'illivakkam', 'illivakkam', '2012020007', '1', '2', 'upload_files/candidate_tracker/68050710465_GUNA.docx', NULL, NULL, '2020-12-03', 0, '', '5', '51', '1970-01-01', 0.00, '01:30 PM', '', '1970-01-01', '1', 'Low In Pressure Handling', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-02 10:51:47', 58, '2020-12-23 03:18:20', 0, NULL, 1),
(2205, 'praveenkumar s', '13', '9688866967', '8248470072', 'praveenkumarspkms@gmail.com', '1998-05-28', 22, '2', '2', 'selvam k', 'teashop', 10000.00, 2, 0.00, 15000.00, 'aruppukottai', 'kandanchavadi', '2012020008', '15', '1', 'upload_files/candidate_tracker/71737378662_Praveenkumar.S.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '04:00 PM', '', '1970-01-01', '2', 'he is not coming.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 10:54:02', 50, '2020-12-03 10:35:54', 0, NULL, 1),
(2206, 'Vignesh', '4', '9080920591', '', 'vignesh240893@gmail.com', '1993-08-23', 27, '2', '2', 'Jothikumar', 'Lift operator', 20000.00, 1, 14000.00, 20000.00, 'Morai', 'Morai', '2012020009', '15', '2', 'upload_files/candidate_tracker/40344680957_Vignesh[1].doc', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 11:17:06', 50, '2020-12-04 06:05:33', 0, NULL, 1),
(2207, '', '0', '9500448985', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 11:18:58', 0, NULL, 0, NULL, 1),
(2208, 'Surya v', '22', '8056284566', '9840598901', 'vsurya3933@gmail.com', '1999-11-17', 21, '2', '2', 'Veera chandran.d', 'Accountant', 150000.00, 1, 0.00, 13000.00, 'Perambur, Chennai', 'Perambur, Chennai', '2012020011', '1', '1', 'upload_files/candidate_tracker/56116285354_CV_2020-12-02-114835.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-02 11:22:45', 50, '2020-12-04 06:06:17', 0, NULL, 1),
(2209, 'Vignesh', '13', '9940655307', '9894336361', 'vikkicharan17@gmail.com', '1995-12-02', 25, '2', '2', 'Govindhasamy', 'Formar', 15.00, 1, 20.00, 28.00, 'Avadi', 'Avadi', '2012020012', '1', '2', 'upload_files/candidate_tracker/46337834219_Vignesh G-Resume.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '27', '1970-01-01', 0.00, '11:42 AM', '', '1970-01-01', '1', 'He already got job.', '2', '2', '', '', '', '', '2', '2020-12-10', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-02 11:37:25', 65, '2020-12-24 10:12:06', 0, NULL, 1),
(2210, '', '0', '9003349097', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 11:44:34', 0, NULL, 0, NULL, 1),
(2211, 'Ragavan', '20', '9940577185', '7305838715', 'sundarragavant@gmail.com', '1986-06-04', 34, '2', '1', 'Sundaramurthy', 'Nil', 3000.00, 2, 70000.00, 60000.00, 'Chennai', 'Chennai', '2012020014', '1', '2', 'upload_files/candidate_tracker/21482498127_Resume - FPS.pdf', NULL, NULL, '2020-12-02', 0, '', '5', '44', NULL, 0.00, '12:03 PM', '0', NULL, '1', 'Not fit for Sales', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-02 11:52:22', 1, '2020-12-02 12:03:58', 0, NULL, 1),
(2212, '', '0', '7010497421', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 11:54:30', 0, NULL, 0, NULL, 1),
(2213, '', '0', '7005845633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 12:18:10', 0, NULL, 0, NULL, 1),
(2214, 'Vineeth Gowtham', '23', '9843846647', '8072478836', 'Vineethgowtham123@gmail.com', '1998-03-05', 22, '2', '2', 'Vijayakumar', 'Ex-ServiceMan', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2012020017', '1', '1', 'upload_files/candidate_tracker/22041841138_vineeth ciru.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Task not completed', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-02 12:27:11', 64, '2020-12-23 02:44:41', 0, NULL, 1),
(2215, 'priyadarshini.p', '4', '9742636580', '', '', '1994-09-14', 26, '2', '2', 'pandu', 'plumbler', 8000.00, 2, 0.00, 15000.00, 'bangalore', 'bangalore', '2012020018', '1', '1', 'upload_files/candidate_tracker/83434955830_2020 resume.docx', NULL, NULL, '2020-12-04', 0, '', '8', '', '1970-01-01', 0.00, '01:00 PM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-02 12:43:11', 7, '2020-12-04 05:45:52', 0, NULL, 1),
(2216, 'Swaraj shekhar', '6', '6383842997', '', 'swarajsekhar1994@gmail.com', '1996-03-22', 24, '2', '2', 'Krushna chandra patajoshi', 'Self employeed', 30000.00, 1, 18000.00, 22000.00, 'No-364,jeypore,koraput,odisha,764002', 'No-5,ground floor,pandiyan street,chennai-600044', '2012020019', '1', '2', 'upload_files/candidate_tracker/94834010484_swaraj pdf cv November-2020 pdf.pdf', NULL, NULL, '2020-12-02', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 01:52:23', 1, '2020-12-02 01:59:32', 0, NULL, 1),
(2217, 'VAISHALI', '4', '9003057397', '9092275345', 'N.vaishu2303@gmail.com', '1999-03-23', 21, '2', '2', 'Narayana moorthy', 'BE ECE', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai, ayanavaram', '2012020020', '14', '1', 'upload_files/candidate_tracker/98601705111_resume vaishali.docx', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 02:05:54', 50, '2020-12-04 06:05:42', 0, NULL, 1),
(2218, 'VENKATESH S', '13', '9597568777', '', 'venkateshmani13@gmail.com', '1998-06-13', 22, '2', '2', 'SUBRAMANI', 'Mason', 16000.00, 2, 0.00, 12000.00, '21/15 Anandeeswaran koil Street Chidambaram-608001', 'Door No. 1 Walmeegi Street Perungalathur-600063', '2012020021', '15', '1', 'upload_files/candidate_tracker/21293044827_S.Venkatesh_resume.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Task not completed.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 02:35:57', 50, '2020-12-03 11:00:18', 0, NULL, 1),
(2219, 'Mohamed Rawan', '23', '9487391727', '9994240203', 'alrawanhope@gmail.com', '1999-03-21', 21, '2', '2', 'Abdul kareem', 'Salesman', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2012020022', '1', '1', 'upload_files/candidate_tracker/49023347778_final45.docx', NULL, NULL, '2020-12-05', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'System Task not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-02 04:43:09', 65, '2020-12-24 10:20:03', 0, NULL, 1),
(2220, '', '0', '7397241447', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 05:01:01', 0, NULL, 0, NULL, 1),
(2221, 'Aakash R', '21', '9626484361', '', 'rmasaakash12@gmail.com', '1998-12-16', 21, '2', '2', 'Ravi P', 'Daily Wages', 8000.00, 1, 0.00, 12000.00, 'Madurai', 'Chennai', '2012020024', '1', '1', 'upload_files/candidate_tracker/93129020874_Aakash Resume.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '32', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '2', 'Not Accepted for Bond', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 05:15:46', 50, '2020-12-03 03:41:44', 0, NULL, 1),
(2222, '', '0', '0981302371', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012020025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 05:34:26', 0, NULL, 0, NULL, 1),
(2223, 'Sivapriya', '14', '6374598161', '9598427352', 'sivapriyarajendran1510@gmail.com', '1997-06-01', 23, '2', '2', 'Rajendran', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2012020026', '14', '2', 'upload_files/candidate_tracker/97322879384_CV_2020-11-20-091610.pdf', NULL, NULL, '2020-12-04', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 05:47:35', 7, '2020-12-04 05:46:01', 0, NULL, 1),
(2224, 'Archana', '13', '7708359523', '', 'msarchana1996@gmail.com', '1996-09-22', 24, '2', '2', 'Selvaraj', 'Retair Head master', 60.00, 2, 205000.00, 305000.00, 'Thanjavur', 'Chennai', '2012020027', '1', '2', 'upload_files/candidate_tracker/65821886550_ArchanaResume-converted.pdf', NULL, NULL, '2020-12-05', 30, '', '8', '', '1970-01-01', 0.00, '11:41 AM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-02 06:36:17', 7, '2020-12-05 04:40:04', 0, NULL, 1),
(2225, 'Akhil Kumar', '23', '6381886243', '9715495642', 'akil9vball@gmail.com', '1997-02-25', 23, '2', '2', 'Santhanam', 'Chef', 30.00, 1, 30.00, 40.00, 'Chennai', 'Chennai', '2012020028', '14', '2', 'upload_files/candidate_tracker/90085175554_AKHIL KUMAR.pdf', NULL, NULL, '2020-12-03', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '2', 'UI not Satisfied', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 08:29:52', 1, '2020-12-02 08:35:21', 0, NULL, 1),
(2226, 'P M Mohammed Ansari', '23', '7358501151', '', 'Ansarimohamed754@gmail.com', '1998-01-16', 22, '2', '2', 'M Naseera Begum', 'house wife', 50000.00, 1, 0.00, 16000.00, 'No 14, subbaraya street,triplicane,chennai 600 005', 'No 14, subbaraya street,triplicane,chennai 600 005', '2012020029', '1', '1', 'upload_files/candidate_tracker/43455934279_RESUME.docx', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont know the Basics', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-02 09:40:10', 50, '2020-12-07 11:47:54', 0, NULL, 1),
(2227, '', '0', '7397338544', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 07:34:13', 0, NULL, 0, NULL, 1),
(2228, 'PRASANTH M', '21', '7845588810', '7010959442', 'Prasanthvel77@gmail.com', '1993-12-24', 26, '2', '2', 'MURUGAVEL K', 'POLICE', 30000.00, 0, 22000.00, 20000.00, 'Chennai', 'Chennai', '2012030002', '1', '2', 'upload_files/candidate_tracker/13216520493_interview.pdf', NULL, NULL, '2020-12-04', 0, '', '5', '32', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Expected Salary is High', '3', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-03 10:24:55', 50, '2020-12-04 12:20:04', 0, NULL, 1),
(2229, 'saranya damodaran', '5', '8754190653', '8248066865', 'saranyadamu22@gmail.com', '1996-08-11', 24, '2', '2', 'damodaran', 'business', 20000.00, 1, 0.00, 16000.00, 'chengelpet', 'chengelpet', '2012030003', '1', '1', 'upload_files/candidate_tracker/43220306618_cv (6).pdf', NULL, NULL, '2020-12-05', 0, '', '5', '44', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'She is Looking OPS or HR Job', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-03 11:55:33', 64, '2020-12-23 02:46:26', 0, NULL, 1),
(2230, '', '0', '9597994449', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 12:11:37', 0, NULL, 0, NULL, 1),
(2231, '', '0', '7338756314', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 12:14:46', 0, NULL, 0, NULL, 1),
(2232, 'a naveenkumar', '13', '8524818461', '8523989616', 'naveenarumugam143@gmail.com', '1999-03-07', 21, '2', '2', 'k arumugam', 'daily workers', 6000.00, 3, 0.00, 15000.00, 'salem', 'chennai', '2012030006', '1', '1', 'upload_files/candidate_tracker/83238391126_NK_PHP.pdf', NULL, NULL, '2020-12-05', 0, '', '8', '', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-03 02:12:18', 7, '2020-12-05 04:39:42', 0, NULL, 1),
(2233, 'Shankar anand SM', '5', '9789951857', '9445252597', 'anand7594@gmail.com', '1994-05-07', 26, '2', '1', 'Mani s', 'Retired govt.', 30000.00, 1, 26000.00, 28000.00, 'Avadi', 'Avadi', '2012030007', '1', '2', 'upload_files/candidate_tracker/86352426518_Shankar Resume.docx', NULL, NULL, '2020-12-04', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-03 02:41:49', 58, '2020-12-29 10:19:25', 0, NULL, 1),
(2234, 'ANKIT KUMAR LOHAR', '13', '7727933171', '7014327757', '7727ankit@gmail.com', '1999-04-16', 21, '2', '2', 'DILIP KUMAR', 'Nothing', 50000.00, 3, 0.00, 15000.00, 'Sirohi, rajasthan', 'Chennai', '2012030008', '15', '1', 'upload_files/candidate_tracker/10738246198_ANKIT CV.pdf', NULL, NULL, '2020-12-04', 0, '', '5', '27', '1970-01-01', 0.00, '10:30 AM', '', '1970-01-01', '2', 'He dont have a knowledge in PHP.', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 02:42:29', 50, '2020-12-04 11:00:08', 0, NULL, 1),
(2235, '', '0', '9884955446', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 02:47:18', 0, NULL, 0, NULL, 1),
(2236, 'rahul', '13', '8870148773', '9025612455', 'rahulm031097@gmail.com', '1997-06-03', 23, '2', '2', 'muniyandi v', 'fisherman', 10000.00, 3, 10000.00, 15000.00, 'ramnathapuram', 'chennai', '2012030010', '1', '2', 'upload_files/candidate_tracker/833593014_resume.pdf', NULL, NULL, '2020-12-04', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Having 5 months experience. last 7 month gap. he dont have a knowledge in PHP.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-03 02:48:48', 64, '2020-12-23 02:47:26', 0, NULL, 1),
(2237, 'SELVARAJ G', '4', '7358083837', '7448668373', 'Selvarajg684@gmail.com', '1997-12-09', 22, '2', '2', 'GOVINDARAJAN V', 'Private employe', 15000.00, 1, 0.00, 15000.00, 'Perambhur, Chennai', 'Perambhur, Chennai', '2012030011', '1', '1', 'upload_files/candidate_tracker/13737482372_resume_1580621923458.pdf', NULL, NULL, '2020-12-03', 0, '', '8', '', '1970-01-01', 0.00, '04:30 PM', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-03 02:54:54', 50, '2020-12-04 06:05:58', 0, NULL, 1),
(2238, 'wilson raj', '13', '8807621678', '', 'awilsonraj@gmail.com', '1994-06-30', 26, '2', '1', 'alex', 'ex army', 15000.00, 0, 0.00, 15000.00, 'Krishnagiri', 'Krishnagiri', '2012030012', '15', '1', 'upload_files/candidate_tracker/25165884722_wilson', NULL, NULL, '2020-12-04', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 02:59:05', 7, '2020-12-04 05:46:21', 0, NULL, 1),
(2239, 'Manjunath', '6', '7892080788', '9743356195', 'manjapnp11@gmail.com', '1999-09-28', 21, '2', '2', 'Nagendra', 'Own business', 30000.00, 3, 16000.00, 17000.00, 'Mysore Road bangalore', 'Mysore Road bangalore', '2012030013', '1', '2', 'upload_files/candidate_tracker/36515858763_CURICULUM manjunath N.docx', NULL, NULL, '2020-12-04', 15, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-03 03:02:50', 58, '2020-12-23 03:22:21', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2240, 'Mohammed ijaz', '4', '6369211462', '7395935326', 'ijazrockmsn@gmail.com', '1999-08-27', 21, '1', '2', 'Kaja moideen', 'Car driver', 30000.00, 1, 0.00, 18000.00, 'Ambattur', 'Ambattur', '2012030014', '', '1', 'upload_files/candidate_tracker/97016504704_ejaz resume .pdf', NULL, NULL, '2020-12-04', 0, 'Priyanka', '8', '', '1970-01-01', 0.00, '03:07 PM', '', '1970-01-01', '1', '', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 03:03:09', 7, '2020-12-04 05:47:06', 0, NULL, 1),
(2241, '', '0', '9080974561', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 04:50:51', 0, NULL, 0, NULL, 1),
(2242, '', '0', '9036888612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 05:16:24', 0, NULL, 0, NULL, 1),
(2243, 'Balaji A', '6', '8248715073', '9884691213', 'Samuelbalaji98@gmail.com', '1997-12-30', 22, '2', '2', 'ARISTOTLE', 'Business', 45000.00, 1, 0.00, 12000.00, 'No2 gurusamy nagar 1st street anakapthur Chennai70', 'No2 Gurusamy Nagar 1st Street Anakapthur Chennai70', '2012030017', '15', '1', 'upload_files/candidate_tracker/4058016685_balaji resume updated.docx', NULL, NULL, '2020-12-11', 0, '', '3', '8', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', '13k ctc and for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 05:45:50', 7, '2020-12-11 06:10:37', 0, NULL, 1),
(2244, '', '0', '9626489106', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 07:11:33', 0, NULL, 0, NULL, 1),
(2245, 'Malaiyarasi M', '4', '9095181271', '8939114899', 'Malaiarasi136@gmail.com', '1992-04-29', 28, '2', '2', 'Mahalingam E', 'Agriculture And own business', 20000.00, 1, 15000.00, 15000.00, 'Virudhunagar', 'Chennai', '2012030019', '1', '2', 'upload_files/candidate_tracker/30606502666_resume new.docx', NULL, NULL, '2020-12-04', 0, '', '5', '11', '1970-01-01', 0.00, '11:15 AM', '', '1970-01-01', '2', 'communication is poor', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 07:52:47', 50, '2020-12-04 11:33:40', 0, NULL, 1),
(2246, '', '0', '7708122916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012030020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-03 08:10:07', 0, NULL, 0, NULL, 1),
(2247, 'Vinoth kumar.l', '6', '8072443921', '9962101343', 'vinothdce9@gmail.com', '1995-11-09', 25, '1', '2', 'Loganathan.v', 'employee in Hardware Business(s k tools)', 30000.00, 0, 0.00, 15000.00, 'Iyyapanthangal', 'Iyyapanthangal', '2012040001', '', '1', 'upload_files/candidate_tracker/78702809704_RESUME.pdf', NULL, NULL, '2021-01-06', 0, 'Jobs', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' Sustain doubt', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-04 09:16:09', 8, '2021-01-06 03:17:46', 0, NULL, 1),
(2248, 'kishorekumar', '23', '7550226236', '', 'kishorekumarchess81@gmail.com', '1996-06-15', 24, '2', '2', 'sivakuar', 'bussinessman', 40000.00, 0, 0.00, 250000.00, 'chennai', 'chennai', '2012040002', '1', '2', 'upload_files/candidate_tracker/46899370480_Kishore resume.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:30 AM', '', '1970-01-01', '1', 'Not Upto the Level', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-04 10:24:17', 64, '2020-12-28 03:07:31', 0, NULL, 1),
(2249, 'M aziz ishrath', '5', '9490197979', '', '', '1995-08-30', 25, '2', '2', 'M noor mohammad', 'Master\'s in management', 50000.00, 0, 0.00, 3.50, 'Anantapur', 'Banglore', '2012040003', '1', '1', 'upload_files/candidate_tracker/10529809977_M AZIZ ISHRATH-1.pdf', NULL, NULL, '2020-12-04', 0, '', '5', '38', NULL, 0.00, '01:00 PM', '0', NULL, '1', 'expecting high package but he is fresher', '5', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 10:36:12', 1, '2020-12-04 10:55:47', 0, NULL, 1),
(2250, 'rajalakshmi t r', '14', '9544973446', '', 'mails2rajalakshmi@gmail.com', '1995-10-30', 25, '2', '2', 'rajan t', 'android developer', 40000.00, 1, 15000.00, 28000.00, 'thrissur kerela', 'kochi kerela', '2012040004', '14', '2', 'upload_files/candidate_tracker/85947197848_rajalakshmi_tr_.pdf', NULL, NULL, '2020-12-05', 15, '', '8', '', '1970-01-01', 0.00, '02:00 PM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 10:48:11', 7, '2020-12-05 04:39:32', 0, NULL, 1),
(2251, 'probin', '2', '9566209971', '7448613500', 'e.probin49@gmail.com', '1987-04-03', 33, '2', '2', 'elias', 'software engineer', 10000.00, 2, 16000.00, 40000.00, 'kanyakumari tamil nadu', 'chennai', '2012040005', '14', '2', 'upload_files/candidate_tracker/96249874930_Resume.doc', NULL, NULL, '2020-12-04', 27, '', '8', '', '1970-01-01', 0.00, '11:32 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:07:27', 7, '2020-12-04 05:46:47', 0, NULL, 1),
(2252, '', '0', '9047303304', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:09:21', 0, NULL, 0, NULL, 1),
(2253, 'karthik s', '8', '9526241247', '', 'karthiksaravanan1994@gmail.com', '1994-12-10', 25, '2', '2', 'saravanan r', 'sales man', 500000.00, 0, 3000.00, 300000.00, 'kerala', 'chennai', '2012040007', '1', '2', 'upload_files/candidate_tracker/22659695787_Karthik resume.pdf', NULL, NULL, '2020-12-05', 0, '', '3', '8', '2020-12-08', 216000.00, '10:00 AM', '4', '2021-03-15', '2', '18k ctc for raghu team', '7', '2', '1', '1', '1', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:18:08', 7, '2020-12-07 06:46:22', 0, NULL, 1),
(2254, '', '0', '7200486093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:26:47', 0, NULL, 0, NULL, 1),
(2255, 'Sarathkumar B', '14', '7502782895', '8328646240', 'sarathkumardr5@gmail.com', '1993-07-03', 27, '2', '2', 'Baskaran B', 'Business', 15000.00, 2, 725000.00, 850000.00, 'Arani', 'Chennai', '2012040009', '1', '2', 'upload_files/candidate_tracker/27667277768_SarathResume_5.docx', NULL, NULL, '2020-12-05', 30, '', '8', '', '1970-01-01', 0.00, '05:00 PM', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 11:30:18', 7, '2020-12-05 04:39:21', 0, NULL, 1),
(2256, 'Sathish Kumar', '4', '9514552931', '', 'sathishkumar29213@gmail.com', '1998-06-26', 22, '2', '2', 'Govindhan', 'Daily wages', 25000.00, 3, 15000.00, 17000.00, 'No.10 barracks street sevenwells Chennai', 'Chennai.600001', '2012040010', '1', '2', 'upload_files/candidate_tracker/91497767586_SK 123.docx', NULL, NULL, '2020-12-05', 0, '', '3', '8', '2020-12-16', 202200.00, '11:49 AM', '2', '1970-01-01', '2', '16850 ctc and th 16k.', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 11:46:16', 7, '2020-12-10 03:14:30', 0, NULL, 1),
(2257, 'P.sankaranarayanan', '13', '8778685369', '7397447022', 'sankarparthasarathy19@gmail.com', '1999-06-08', 21, '2', '2', 'R.parthasarathy', 'Mtc', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2012040011', '1', '1', 'upload_files/candidate_tracker/40189454676_SANKAR_Resume - Copy.docx', NULL, NULL, '2020-12-09', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'He donxquott know the Basics', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-04 12:01:58', 64, '2020-12-23 02:48:10', 0, NULL, 1),
(2258, 'Pandiyan', '5', '8700261130', '', 'dpandiyan553@gmail.com', '1988-06-12', 32, '2', '2', 'Deivasigamani', 'Former', 10000.00, 1, 20000.00, 25000.00, 'Ariyalur', 'Chennai thoraipakkam', '2012040012', '14', '2', 'upload_files/candidate_tracker/62876583900_pandi 3.pdf', NULL, NULL, '2020-12-04', 1, '', '8', '', '1970-01-01', 0.00, '03:30 PM', '', '1970-01-01', '1', '', '5', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 12:13:15', 7, '2020-12-04 05:46:56', 0, NULL, 1),
(2259, 'R.VIJAY ADITHYEN', '13', '9790782493', '9094195737', 'r.vijay2799@gmail.com', '1999-01-27', 21, '2', '2', 'S.Rajasekaran', 'Retired', 20000.00, 1, 15000.00, 22000.00, 'Chennai', 'Chennai', '2012040013', '1', '2', 'upload_files/candidate_tracker/83508352388_Vijay-Adithyen-Resume.pdf', NULL, NULL, '2020-12-05', 15, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not Completed Task.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-04 12:20:12', 64, '2020-12-23 02:45:22', 0, NULL, 1),
(2260, 'Saravanan', '6', '9884188478', '9740030218', 'r.sarvan@hotmail.com', '1993-11-19', 27, '2', '2', 'Rajendran', 'Farmer', 25000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2012040014', '14', '2', 'upload_files/candidate_tracker/28389650398_Saravanan resume.docx', NULL, NULL, '2020-12-04', 0, '', '3', '8', '2020-12-07', 300000.00, '03:00 PM', '6', '2021-09-03', '1', '25k ctc for GK team. no esi/pf', '5', '2', '4', '1', '1', '1', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 12:30:46', 7, '2020-12-05 12:29:13', 0, NULL, 1),
(2261, 'Karthikeyan. P', '5', '9094971550', '', 'karthi2628@gmail.com', '1994-07-29', 26, '1', '1', 'KIRTHIKA', 'Teacher', 20000.00, 1, 0.00, 22000.00, 'Royapeattha', 'Royapeattha', '2012040015', '', '1', 'upload_files/candidate_tracker/26622614769_Karthikyan.doc03.doc', NULL, NULL, '2020-12-07', 0, 'Nithosh vebin team', '3', '8', '2020-12-10', 288000.00, '11:00 AM', '2', '1970-01-01', '1', '24k ctc and no esi/pf, for rajkumar team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 12:55:56', 7, '2020-12-08 11:37:09', 0, NULL, 1),
(2262, '', '0', '0987654321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 01:05:26', 0, NULL, 0, NULL, 1),
(2263, '', '0', '8610808437', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 01:31:19', 0, NULL, 0, NULL, 1),
(2264, 's.vigneshwari', '13', '9080809495', '9715761752', 'vigneshwari1197@gmail.com', '1997-11-05', 23, '2', '2', 'p.shanmugasundaram', 'flower merchant', 150000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2012040018', '1', '1', 'upload_files/candidate_tracker/8262433590_VIGNESHWARI.S_Profile.pdf', NULL, NULL, '2020-12-10', 0, '', '6', '0', NULL, 0.00, '10:01 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 02:33:07', 1, '2020-12-04 03:04:00', 0, NULL, 1),
(2265, 'Yadavendhiran Oddashetty', '6', '9987829747', '9892662977', 'oddashettyyadu@gmail.com', '2003-01-01', 17, '2', '2', 'Thanigasalam Oddashetty', 'Worker', 10000.00, 1, 0.00, 12000.00, '153,Poonamallee Avadi Main Road, CH-77', '153, Poonamallee Avadi Main Road, CH-77', '2012040019', '14', '1', 'upload_files/candidate_tracker/10560941847_20200718_195451-converted.pdf', NULL, NULL, '2020-12-05', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 02:35:50', 7, '2020-12-05 04:39:11', 0, NULL, 1),
(2266, '', '0', '8098979841', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 03:02:12', 0, NULL, 0, NULL, 1),
(2267, '', '0', '7871790099', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 03:15:17', 0, NULL, 0, NULL, 1),
(2268, 'Kirthiga.E', '4', '7358289466', '9791084946', 'peacemaker_441@outlook.com', '1992-01-08', 28, '2', '2', 'M.Elanthirayan', 'CSR,Coperative subregister', 70000.00, 1, 0.00, 12000.00, 'No-103,thilkar Avenue,Balaiya garden,Madipakkam', 'No-103,Thilkar Avenue,Balaiya garden,Madipakkam', '2012040022', '1', '1', 'upload_files/candidate_tracker/23501064611_Kirthiga.pdf', NULL, NULL, '2020-12-08', 0, '', '8', '21', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'candidate gone', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-04 03:28:56', 58, '2020-12-29 09:54:41', 0, NULL, 1),
(2269, 'Abinesh S', '26', '8754282394', '', 'abineshmahi7@gmail.com', '1999-03-02', 24, '2', '2', 'Senthilkumar s', 'Late', 20000.00, 2, 19.50, 27000.00, 'THIRUVALLUR DT', 'THIRUVALLUR DT', '2012040023', '1', '2', 'upload_files/candidate_tracker/72863928600_Abi.02.pdf', NULL, '1', '2023-12-14', 30, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2020-12-04 03:34:16', 104, '2023-12-14 01:27:13', 0, NULL, 1),
(2270, 'shameem chittara', '13', '8838452072', '', 'shameemchittara@gmail.com', '1998-05-01', 22, '3', '2', 'shamsudeen', 'daily wages', 5000.00, 2, 0.00, 15000.00, 'trichy', 'Chennai', '2012040024', '', '1', 'upload_files/candidate_tracker/16420988816_shameem resume.docx', NULL, NULL, '2020-12-10', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 04:39:08', 1, '2020-12-04 06:06:52', 0, NULL, 1),
(2271, 'S. Subash', '6', '6380472892', '8056131282', 'zensubash44@gmail.com', '2000-05-03', 20, '2', '2', 'B. Sekar', 'Medical Marketing', 20.00, 1, 0.00, 13.00, 'No. 46 New farrance road, pattalam, chennai 600012', 'No. 44 pachaikal veeraswamy street, Aynavaram ch14', '2012040025', '14', '1', 'upload_files/candidate_tracker/4741300021_Resume.pdf', NULL, NULL, '2020-12-07', 0, '', '3', '8', '1970-01-01', 156000.00, '11:00 AM', '2', '1970-01-01', '1', '13k for Saravana team.', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 05:43:55', 7, '2020-12-09 04:32:19', 0, NULL, 1),
(2272, 'karthikeyan k', '14', '8778339120', '9551411913', 'karthikanniyappan0506@gmail.com', '1999-06-05', 21, '2', '2', 'kanniappan', 'private company supervisor', 500000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2012040026', '1', '1', 'upload_files/candidate_tracker/14185268529_resumeupdated.docx', NULL, NULL, '2020-12-05', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He had an offer in infosys. he will not sustain with us.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-04 06:01:59', 65, '2020-12-24 10:17:24', 0, NULL, 1),
(2273, 'Jaisugan', '13', '8667339950', '', 'sugan2899@gmail.com', '1999-07-28', 21, '2', '2', 'Gunabalan', 'Business', 200000.00, 1, 0.00, 400000.00, 'Tiruchirappalli', 'Chennai', '2012040027', '1', '1', 'upload_files/candidate_tracker/75190617004_Yellow Confetti Teacher Creative Resume (1).pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'He dont have a knowledge in which position he applied.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-04 06:46:49', 65, '2020-12-24 11:54:52', 0, NULL, 1),
(2274, 'Priyanka', '23', '8608689950', '8870113566', 'Priyankaharini8@gmail.com', '1998-07-01', 22, '2', '2', 'Ohm prakash', 'Hotel manager', 9000.00, 1, 0.00, 20000.00, 'Villlupuram', 'Chennai', '2012040028', '1', '1', 'upload_files/candidate_tracker/66809562678_PRIYANKA. resume (1)-converted (2).pdf', NULL, NULL, '2020-12-08', 0, '', '6', '0', NULL, 0.00, '10:00 AM', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 06:53:12', 1, '2020-12-04 06:58:09', 0, NULL, 1),
(2275, '', '0', '7397265626', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012040029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-04 07:41:21', 0, NULL, 0, NULL, 1),
(2276, 'Patric Richard', '5', '8870330109', '9176255464', 'Patricdurairaj@gmail.com', '1991-01-10', 29, '2', '1', 'Anitha', 'Medical billing', 31.00, 1, 19500.00, 21000.00, 'Chennai', 'Chennai', '2012040030', '1', '2', 'upload_files/candidate_tracker/72890548661_PATRIC NEW 001.doc', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '10:07 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-04 07:57:49', 7, '2020-12-07 06:28:33', 0, NULL, 1),
(2277, '', '0', '9944932339', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 09:59:00', 0, NULL, 0, NULL, 1),
(2278, 'A.Yuva', '13', '9500134967', '9841409253', 'beanyuva@gmail.com', '1993-07-02', 27, '2', '2', 'R.Arivanandam', 'Hime', 20000.00, 1, 0.00, 8000.00, 'Chennai', 'Adambakkam', '2012050002', '1', '1', 'upload_files/candidate_tracker/84905568167_yuva resume.docx', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-05 11:06:36', 7, '2020-12-07 06:17:29', 0, NULL, 1),
(2279, 'Jeeva.T', '2', '9176266079', '9789535050', 'jeevat0123@gmail.con', '1999-01-23', 21, '2', '2', 'THANGARAJ.K', 'Senior Assistant & cashier', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2012050003', '1', '1', 'upload_files/candidate_tracker/62640539510_Resume_Jeeva19-nov2020.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont have a knowledge in PHP', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-05 11:11:18', 64, '2020-12-28 03:08:33', 0, NULL, 1),
(2280, '', '0', '7871167696', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 11:21:02', 0, NULL, 0, NULL, 1),
(2281, 'tamizhselvan g', '6', '7200421296', '7871315210', 'tamizhsmart30@gmail.com', '1997-05-04', 23, '1', '2', 'n. gowdhaman', 'cooly', 6000.00, 10, 12000.00, 15000.00, 'chennai', 'chennai', '2012050005', '', '2', 'upload_files/candidate_tracker/33086811229_Thamizh selvan-4.pdf', NULL, NULL, '2020-12-05', 0, 'jobs', '5', '8', NULL, 0.00, '12:41 PM', '0', NULL, '1', 'will not suite for rE. no communication and not speaking up.', '5', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 11:28:30', 1, '2020-12-05 12:46:52', 0, NULL, 1),
(2282, 'Deepika Sri', '13', '6384662049', '8526022049', 'deepu deepi39@gmail.com', '1999-03-27', 21, '2', '2', 'Chandrasekaran', 'Operator', 30000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2012050006', '1', '1', 'upload_files/candidate_tracker/81655318830_Doc 30-11-2020 8.03.28 PM.pdf', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '2', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-05 11:34:56', 7, '2020-12-07 06:28:08', 0, NULL, 1),
(2283, 'Laxmi kumari', '5', '7484919523', '8618268525', 'vyahutluxsah29@gmail.com', '1996-01-01', 24, '2', '2', 'Munna parsad', 'Bussines', 50.00, 2, 16.00, 23.00, 'Madhwapur', 'Bangalore', '2012050007', '1', '2', 'upload_files/candidate_tracker/12362626352_Curriculum Vitae_Laxmi sah-converted.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '8', '1970-01-01', 0.00, '01:10 PM', '', '1970-01-01', '2', 'no response', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-05 11:39:54', 58, '2020-12-23 12:32:49', 0, NULL, 1),
(2284, 'sharmila', '4', '9159713809', '8072344317', 'shakidev1993@gmail.com', '1998-04-06', 22, '2', '2', 'vijayakumar g', 'site supervisor', 15000.00, 4, 11000.00, 15000.00, 'kallakurichi', 'saitapet', '2012050008', '1', '2', 'upload_files/candidate_tracker/20861969482_sharmi resume .pdf', NULL, NULL, '2020-12-05', 0, '', '5', '21', '1970-01-01', 0.00, '01:03 PM', '', '1970-01-01', '2', 'she have experienced in credit card collection process.. she dont have sales skill . but expecting 18k above xxamp also she is not sustain long term , bcz 6 month only she planned working...', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 12:01:42', 50, '2020-12-05 01:30:22', 0, NULL, 1),
(2285, 'Prabakaran R', '5', '9710013610', '', 'prabhakaran2594@gmail.com', '1994-05-25', 26, '1', '2', 'Ravi', 'Nil', 30000.00, 1, 30000.00, 30000.00, 'Korattur, Chennai', 'Kodambakkam, Chennai', '2012050009', '', '2', 'upload_files/candidate_tracker/84578814328_RESUME - Praba(1).pdf', NULL, NULL, '2020-12-05', 0, 'sarth3369', '5', '29', '1970-01-01', 0.00, '12:22 PM', '', '1970-01-01', '1', 'NOT SELECTED', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 12:16:02', 50, '2020-12-05 12:30:38', 0, NULL, 1),
(2286, '', '0', '7871317363', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 12:55:41', 0, NULL, 0, NULL, 1),
(2287, 'Bharath', '5', '7299975992', '9941916943', 'bharathmohanraj92@gmail.com', '1992-07-14', 28, '2', '1', 'Mohanraj', 'Buliding contractors', 1.00, 1, 20000.00, 23000.00, 'Villivakkam', 'Villivakkam', '2012050011', '15', '2', 'upload_files/candidate_tracker/12880110383_1601705323069_Bharath_Latest_Resume.docx', NULL, NULL, '2020-12-07', 0, '', '5', '44', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'He is not fit for life sales', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 12:58:55', 50, '2020-12-07 03:33:43', 0, NULL, 1),
(2288, 'Sushmitha N', '5', '9790792466', '9080684914', 'sushmi049@gmail.com', '1995-08-10', 25, '2', '1', 'R. Natarajan', 'Business', 60000.00, 2, 27500.00, 30000.00, 'Chennai', 'Chennai', '2012050012', '1', '2', 'upload_files/candidate_tracker/43471920627_N SUSHMITHA RESUME .pdf', NULL, NULL, '2020-12-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'not int in field sales. as CRM she is exp 20K.', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-05 01:37:48', 58, '2020-12-23 12:33:26', 0, NULL, 1),
(2289, 'Kavitha', '4', '7397412443', '9360454166', 'kavithnk081801@gmail.com', '1999-07-01', 21, '2', '2', 'Raja', 'Plumber', 24000.00, 2, 0.00, 14000.00, 'Ayanavaram', 'Ayanavaram', '2012050013', '1', '1', 'upload_files/candidate_tracker/37392416931_KAVITHA.R.doc', NULL, NULL, '2020-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not much communicative', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-05 02:44:40', 58, '2020-12-23 12:35:09', 0, NULL, 1),
(2290, 'Tejaswi chavali', '2', '9491647808', '9492689370', 'tejaswichavali9@gmail.com', '1998-04-14', 22, '4', '2', 'Valeswararao', 'Compounder', 25000.00, 1, 15750.00, 28000.00, 'Andhra Pradesh', 'Chennai', '2012050014', '', '2', 'upload_files/candidate_tracker/6676811016_Teja_Resume (1).pdf', NULL, NULL, '2020-12-07', 15, '', '8', '', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 03:37:28', 7, '2020-12-07 06:17:00', 0, NULL, 1),
(2291, 'balaganesh', '6', '9884893368', '7904472720', 'jeffbala27@gmail.com', '1990-06-29', 30, '2', '2', 'nil', 'mba', 300000.00, 0, 18000.00, 18000.00, 'Chennai', 'Chennai', '2012050015', '1', '2', 'upload_files/candidate_tracker/82000667380_RESUME2.docx', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-05 04:31:38', 7, '2020-12-07 06:17:10', 0, NULL, 1),
(2292, 'VANITHAMANI.S', '13', '8667450755', '7904654825', 'vanithasampath1010@gmail.com', '1988-07-10', 32, '2', '1', 'K.G.Sampathkumar', 'Design engineer', 30000.00, 1, 0.00, 25000.00, 'Tirupur', 'Chennai', '2012050016', '1', '1', 'upload_files/candidate_tracker/91081804332_vanitha resume.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Task Not completed', '2', '2', '', '', '', '', '2', '2020-12-10', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-05 04:40:03', 64, '2020-12-23 02:49:53', 0, NULL, 1),
(2293, '', '0', '9551177020', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 04:40:45', 0, NULL, 0, NULL, 1),
(2294, '', '0', '9566621951', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 05:18:55', 0, NULL, 0, NULL, 1),
(2295, 'vaishnavi kalidhasan', '4', '9087539292', '8939464660', 'vaishadhasan97@gmail.com', '1997-11-18', 23, '2', '2', 'n.kalidhasan', 'mtc', 20000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2012050019', '1', '1', 'upload_files/candidate_tracker/28252769613_1607322757140a84450143_pdf.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '8', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'fresher, no job need, time being she is looking for job.', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-05 05:26:08', 58, '2020-12-23 12:36:11', 0, NULL, 1),
(2296, 'Manikandan', '13', '8668187314', '9600437474', 'harit.kriss@gmail.com', '1997-01-24', 23, '2', '2', 'Rajaram', 'realestate', 12000.00, 1, 0.00, 20000.00, 'Dindigul', 'chennai', '2012050020', '1', '1', 'upload_files/candidate_tracker/30932065837_manikandan resume-converted.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'dont know the Basics.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-05 07:20:53', 64, '2020-12-23 02:52:47', 0, NULL, 1),
(2297, '', '0', '7339111433', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 09:15:30', 0, NULL, 0, NULL, 1),
(2298, '', '0', '9789535050', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012050022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-05 11:28:15', 0, NULL, 0, NULL, 1),
(2299, 'A.Yuva', '13', '9841409253', '9884809356', 'beanyuva002@gmail.com', '1993-07-02', 27, '3', '2', 'R.Arivanandam', 'home', 20000.00, 1, 0.00, 8000.00, 'Chennai', 'Adambakkam', '2012060001', '', '1', 'upload_files/candidate_tracker/42360712845_yuva resume.docx', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Not good in technical', '2', '1', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 08:42:14', 50, '2020-12-08 10:29:48', 0, NULL, 1),
(2300, '', '0', '7904446517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012060002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 11:13:26', 0, NULL, 0, NULL, 1),
(2301, 'Tagore', '6', '8593921263', '9645921263', 'tagorerasheed98@gmail.com', '1998-10-30', 22, '2', '2', 'Abdul rasheed', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Gudvanjeri', 'Gudvanjeri', '2012060003', '14', '1', 'upload_files/candidate_tracker/12543305874_CV NEW.pdf', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', '', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 11:50:50', 7, '2020-12-07 06:16:41', 0, NULL, 1),
(2302, 'R.shanmuga priya', '4', '9094730062', '', 'preetharajansp23@gmail.com', '1998-03-25', 22, '2', '2', 'S.rajendran', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Chennai', 'No.35/3 Brahmin street korattur Chennai-80', '2012060004', '14', '1', 'upload_files/candidate_tracker/92405966168_RESUME SHNMU.docx', NULL, NULL, '2020-12-07', 0, '', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', 'applied for RE. fresher, will not suite for calling and sales profile. no 2 wheeler and too long from paadi.', '1', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 12:09:14', 7, '2020-12-07 03:18:38', 0, NULL, 1),
(2303, 'Yuvashree M', '21', '9791176610', '9789247698', 'yuvashreemuthuraman13116@gmail.com', '1996-11-13', 24, '4', '2', 'Muthuraman M', 'Plumber', 30000.00, 1, 0.00, 13000.00, 'Shanmugapuram, Chennai', 'Shanmugapuram, chennai', '2012060005', '', '1', 'upload_files/candidate_tracker/3767700558_yresume.docx', NULL, NULL, '2020-12-07', 0, '', '8', '', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '2', '', '3', '1', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 01:09:39', 7, '2020-12-07 06:16:28', 0, NULL, 1),
(2304, 'Abarna J', '23', '9384471722', '7397440017', 'abarnamaha93@gmail.com', '1993-08-28', 27, '2', '1', 'Krishnamoorthi v', 'Media', 30000.00, 0, 0.00, 20000.00, 'SE1/1,TNPH,Melakottaiyur,Kandigai-600127', 'SE1/1,TNPH,Melakottaiyur,Kandigai-600127', '2012060006', '1', '1', 'upload_files/candidate_tracker/16296890985_Abarna Resume.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '27', NULL, 0.00, '11:00 AM', '0', NULL, '1', 'Design is not good.', '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-06 06:05:50', 1, '2020-12-06 06:13:03', 0, NULL, 1),
(2305, 'Barani', '6', '8437869925', '6385869772', 'bbaranirangarajan@gmail.com', '1997-03-03', 23, '2', '2', 'Rangarajan', 'Sweet moster', 25.00, 1, 15.00, 15.00, '201 north street tittaggudi', 'Saidapet', '2012060007', '15', '2', 'upload_files/candidate_tracker/26314643380_barani new resume.pdf', NULL, NULL, '2020-12-07', 1, '', '3', '8', '1970-01-01', 228000.00, '10:00 AM', '2', '1970-01-01', '1', '19k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 06:26:50', 7, '2020-12-09 04:32:42', 0, NULL, 1),
(2306, '', '0', '8610141858', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012060008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 08:09:59', 0, NULL, 0, NULL, 1),
(2307, '', '0', '9551347276', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012060009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-06 08:40:56', 0, NULL, 0, NULL, 1),
(2308, 'Kansul arif', '13', '8778532677', '9941945020', 'kansularif@gmail.com', '1998-10-29', 22, '2', '2', 'SIKKANTHAR BASHA', 'Shop keeper', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai PERAMBUR', '2012060010', '1', '1', 'upload_files/candidate_tracker/81332354054_0_CV_2020-07-19-124745.pdf', NULL, NULL, '2020-12-07', 0, '', '6', '0', NULL, 0.00, '10:30 AM', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-06 09:28:11', 1, '2020-12-06 09:31:40', 0, NULL, 1),
(2309, 'Manikandan M', '13', '9688464327', '', '', '1990-05-15', 30, '2', '2', 'Muthu', 'Tea shop', 15000.00, 1, 0.00, 20000.00, '177, arisipalayam, Salem', 'Velachery, Chennai', '2012070001', '1', '1', 'upload_files/candidate_tracker/40600274700_Manikandan_2k20.pdf', NULL, NULL, '2020-12-07', 0, '', '5', '27', '1970-01-01', 0.00, '11:39 AM', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-07 10:35:22', 64, '2020-12-28 03:09:09', 0, NULL, 1),
(2310, 'Uma Shankar Gobu', '13', '9791340972', '9176537401', 'umashankargobuins@gmail.com', '1999-09-02', 21, '2', '2', 'Gobu', 'Tv Mechanic', 13000.00, 1, 0.00, 16000.00, 'Mayiladuthurai', 'Chennai', '2012070002', '1', '1', 'upload_files/candidate_tracker/43030526137_RESUME LATEST.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Need much experience on it.', '2', '2', '', '', '', '', '2', '2020-12-10', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-07 11:08:10', 64, '2020-12-23 02:54:08', 0, NULL, 1),
(2311, 'Jeevapriya Vijayakumar', '13', '9176537401', '9597018266', 'jeevathamil11@gmail.com', '1998-07-11', 22, '2', '2', 'Vijayakumar A', 'Medical Representative', 10000.00, 0, 0.00, 16000.00, 'Mayiladuthurai', 'Chennai', '2012070003', '1', '1', 'upload_files/candidate_tracker/81237304946_new jeevapriya 2020 resume.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'Not Good in technical.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-07 11:10:12', 64, '2020-12-23 02:56:05', 0, NULL, 1),
(2312, 'Saravanan V', '5', '7418417347', '8056269626', 'manikanda92@gmail.com', '1992-07-21', 28, '2', '2', 'Late', 'Kerosene supply', 20000.00, 2, 21500.00, 27500.00, 'Kolathur', 'Kolathur', '2012070004', '1', '2', 'upload_files/candidate_tracker/10142198229_saravanan_resume.docx', NULL, NULL, '2020-12-07', 1, '', '5', '8', '1970-01-01', 0.00, '11:35 AM', '', '1970-01-01', '1', 'he is struggling to speak. will not suite for RM.', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:26:44', 50, '2020-12-07 11:53:22', 0, NULL, 1),
(2313, 'Tharani', '4', '9361011210', '', 'Balatharini2020@gmail.com', '1996-06-02', 24, '2', '2', 'Balasubramaniyan', 'Taxi driver', 15000.00, 0, 16000.00, 20000.00, 'Pudukkottai district', 'Saidapet', '2012070005', '1', '2', 'upload_files/candidate_tracker/41168626977_1607323460342_Tharani.docx', NULL, NULL, '2020-12-08', 0, '', '3', '8', '2020-12-10', 216000.00, '12:00 PM', '2', '1970-01-01', '2', '18k ctc for dhivya team esale', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:34:08', 7, '2020-12-09 04:32:59', 0, NULL, 1),
(2314, 'Duraivasanthi', '4', '8838444755', '9789718841', 'duraivasanthi1996@gmail.com', '1996-03-14', 24, '2', '2', 'Inbasekaran', 'No', 14000.00, 1, 12500.00, 15000.00, 'Pudukkottai (dT)', 'Saidapet', '2012070006', '1', '2', 'upload_files/candidate_tracker/65007902102__$sume 2 (1)VASANTHI-1.docx', NULL, NULL, '2020-12-08', 0, '', '5', '21', '1970-01-01', 0.00, '10:00 AM', '', '1970-01-01', '2', 'pronounciation problem', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:37:24', 50, '2020-12-08 01:16:48', 0, NULL, 1),
(2315, 'RATHIKA . C', '4', '9787047808', '7695978042', 'chandraboseradhika97@gmail.com', '1996-03-11', 24, '2', '2', 'V . Chandrabose', 'Farmer', 15000.00, 1, 12500.00, 15000.00, 'Pudukkottai', 'Saidapet', '2012070007', '1', '2', 'upload_files/candidate_tracker/11908135892_1607324808885_RATHIKA.docx', NULL, NULL, '2020-12-08', 0, '', '5', '8', '1970-01-01', 0.00, '12:30 PM', '', '1970-01-01', '2', 'will not suit for our process. voice is very low and not bold', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:41:21', 50, '2020-12-08 12:43:48', 0, NULL, 1),
(2316, 'Sasi kumar', '6', '9080614205', '8015980998', 'sasikumar1882000@gmail.com', '2000-08-18', 20, '1', '2', 'Gopal j', 'Labour', 120000.00, 1, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2012070008', '', '1', 'upload_files/candidate_tracker/97542470689_sasikumar.pdf', NULL, NULL, '2020-12-07', 0, '5392', '5', '8', '1970-01-01', 0.00, '12:00 PM', '', '1970-01-01', '1', 'can try for crm', '5', '2', '', '', '', '', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:55:37', 8, '2020-12-07 04:18:21', 0, NULL, 1),
(2317, 'siddharth agarwal', '20', '9012173048', '', 'siddharth.agarwal1327@gmail.com', '1997-10-27', 23, '2', '2', 'anil kumar agarwal', 'businessmen', 300000.00, 2, 300000.00, 350000.00, 'rampur uttar pradesh', 'bangalore', '2012070009', '1', '2', 'upload_files/candidate_tracker/68027033946_SiddharthAgarwal_Resume.pdf', NULL, NULL, '2020-12-11', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will sustain and bad in communication', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 12:18:43', 50, '2020-12-11 01:00:29', 0, NULL, 1),
(2318, 'Shashi kumar', '5', '9901505443', '', '', '1991-03-08', 29, '2', '2', 'Ramamurthy k', 'Agriculture', 10000.00, 2, 30000.00, 33000.00, 'Chikkaballapura', 'Bangalore', '2012070010', '1', '2', 'upload_files/candidate_tracker/66136206611_Document.docx', NULL, NULL, '2020-12-07', 0, '', '10', '', '1970-01-01', 0.00, '02:30 PM', '', '1970-01-01', '1', '', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-07 01:02:44', 58, '2020-12-29 10:18:21', 0, NULL, 1),
(2319, 'Naveen kumar', '6', '9025652558', '9791408052', 'Naveenvj143@gmail.com', '1994-11-25', 26, '2', '2', 'Swaminathan', 'Driver', 15000.00, 1, 12000.00, 15000.00, 'Namakkal', 'Ashok pillar', '2012070011', '1', '2', 'upload_files/candidate_tracker/32156424676_Naveen.docx', NULL, NULL, '2020-12-08', 0, '', '3', '8', '1970-01-01', 192000.00, '', '2', '1970-01-01', '2', '16k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 01:28:47', 7, '2020-12-09 04:33:19', 0, NULL, 1),
(2320, '', '0', '7358056387', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012070012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 01:49:05', 0, NULL, 0, NULL, 1),
(2321, 'ABUBACKERSIDDIQ', '6', '7401224341', '9566097270', 'Siddiqsantii777@gmail.com', '2000-02-07', 20, '2', '2', 'Working shop', 'Sales', 17000.00, 1, 0.00, 16000.00, 'Saidapet', 'Saidapet', '2012070013', '1', '1', 'upload_files/candidate_tracker/69009645244_Abu Resume.pdf', NULL, NULL, '2020-12-07', 0, '', '3', '8', '1970-01-01', 156000.00, '02:50 PM', '2', '1970-01-01', '1', '13k for saravana team', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 02:46:59', 7, '2020-12-09 04:35:18', 0, NULL, 1),
(2322, 'Ramakrishnan', '13', '7373224112', '', 'rkmuthaiyan1997@gmail.com', '1997-02-11', 23, '2', '2', 'MUTHAIYAN', 'Farmer', 50000.00, 1, 0.00, 12.00, 'ARIYALUR', 'CHENNAI', '2012070014', '1', '1', 'upload_files/candidate_tracker/89379168251_Ramakrishnan RESUME-2.docx', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-07 02:48:18', 1, '2020-12-07 02:54:27', 0, NULL, 1),
(2323, 'Martin raj', '2', '9543021656', '', 'Asirmart@gmail.com', '1993-03-17', 27, '2', '2', 'Mariammal', 'Beedi cooli', 300000.00, 1, 20000.00, 25000.00, '23/56kannar south st kadayanallur', 'Tiruvanmiyur', '2012070015', '1', '2', 'upload_files/candidate_tracker/47004334083_MARTIN RAJ A.pdf', NULL, NULL, '2020-12-07', 30, '', '5', '27', '1970-01-01', 0.00, '03:55 PM', '', '1970-01-01', '1', 'He knows only Java. dont have a knowledge in PHP.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-07 02:52:44', 65, '2020-12-24 10:18:44', 0, NULL, 1),
(2324, 'Janakiraman. M', '6', '9344618851', '7397331156', 'johnnyraja06@gmail.com', '1991-06-15', 29, '1', '1', 'Omegachristy.E. C', 'Wife', 114000.00, 3, 25000.00, 28000.00, 'Chennai', 'Chennai', '2012070016', '', '2', 'upload_files/candidate_tracker/85698713745_jonhy (1)raj.docx', NULL, NULL, '2020-12-09', 0, 'Priyanka', '6', '0', NULL, 0.00, '10:45 AM', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '1', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 03:39:38', 1, '2020-12-08 10:34:57', 0, NULL, 1),
(2325, 'Aswin V', '2', '7401636222', '', 'mail.aswin22@gmail.com', '1997-02-22', 23, '2', '2', 'Viswanathan', 'Ex-Accountant', 1.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2012070017', '1', '1', 'upload_files/candidate_tracker/16309508196_AswinIT.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '1', 'Dont Have a knowledge in PHP Mysql', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-07 04:50:32', 64, '2020-12-23 02:51:43', 0, NULL, 1),
(2326, 'SAMPATH KUMAR K', '6', '9551100727', '9087999665', 'smartsam217.sk@gmail.com', '1996-09-28', 24, '2', '2', 'Kumar', 'Tools maker', 30000.00, 1, 10000.00, 19000.00, 'Chrompet, chennai', 'Chrompet, chennai', '2012070018', '1', '2', 'upload_files/candidate_tracker/36124054641_My resume .doc1.docx', NULL, NULL, '2020-12-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up. will not suite for calling.', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-07 04:54:37', 50, '2020-12-09 12:25:46', 0, NULL, 1),
(2327, 'Prasanth', '22', '8667259465', '8940548524', 'prashanthsrk77@gmail.com', '1994-07-03', 26, '1', '1', 'C Ravichandran', 'Business', 50000.00, 1, 19860.00, 25000.00, 'No 26 narayana Swamy Avenue near Ac office', 'Thiruvallur', '2012070019', '', '2', 'upload_files/candidate_tracker/9269582941_Prasanth resume 2 (1).pdf', NULL, NULL, '2020-12-08', 0, '000000', '6', '0', NULL, 0.00, '11:00 AM', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:07:28', 1, '2020-12-07 05:16:04', 0, NULL, 1),
(2328, '', '0', '9094651842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012070020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:24:33', 0, NULL, 0, NULL, 1),
(2329, 'Sharmila V', '23', '8189953601', '8124823695', 'vsharmilaui@gmail.com', '1993-10-04', 27, '2', '2', 'Velsami', 'Shopkeeper', 120000.00, 1, 3.50, 6.00, 'Chengalpattu', 'Chengalpattu', '2012070021', '1', '2', 'upload_files/candidate_tracker/67413326144_Sharmila_Resume.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '27', '1970-01-01', 0.00, '11:00 AM', '', '1970-01-01', '2', 'UI Design Not Good.', '2', '2', '', '', '', '', '2', '2020-12-09', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-07 05:24:46', 65, '2020-12-24 10:06:47', 0, NULL, 1),
(2330, '', '0', '8608587088', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012070022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:43:45', 0, NULL, 0, NULL, 1),
(2331, 'karthik raja', '4', '8695492005', '8956007355', 'karthikraja1802@gmail.com', '1999-02-18', 21, '2', '2', 'dassan', 'supervisor', 200000.00, 1, 10000.00, 13000.00, 'CHENNAI', 'CHENNAI', '2012070023', '15', '2', 'upload_files/candidate_tracker/71256728233_karthik resume.docx', NULL, NULL, '2020-12-08', 0, '', '6', '0', NULL, 0.00, '10:53 AM', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:48:49', 1, '2020-12-07 05:54:41', 0, NULL, 1),
(2332, '', '0', '8754812934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012070024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 05:59:09', 0, NULL, 0, NULL, 1),
(2333, 'test sathish', '3', '1010101010', '', '', '2005-12-04', 15, '2', '2', 'hnfdjgdj', 'jedjtjtj', 20000.00, 0, 0.00, 20000.00, 'dnfn fd', 'ch', '2012070025', '1', '1', 'upload_files/candidate_tracker/92295841728_E_M_KUMARAN(Resume).pdf', NULL, NULL, '2020-12-08', 0, '', '3', '41', '2020-11-30', 101900.00, '', '0', NULL, '2', 'Test \nDummy entry', '2', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-07 08:09:25', 1, '2020-12-07 08:10:30', 0, NULL, 1),
(2334, 'Ramachandran', '5', '9790806938', '', '', '1995-09-22', 25, '2', '2', 'Duraisamy', 'Catering', 400000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2012070026', '1', '2', 'upload_files/candidate_tracker/36305837500_RAMACHANDRAN EXPERIENCE RESUME.pdf', NULL, NULL, '2020-12-08', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'conveying most irrelevant things', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-07 11:40:00', 50, '2020-12-08 11:37:50', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2335, 'Sridhar', '5', '8056492027', '', 'sridharv2027@gmail.com', '1990-11-27', 30, '1', '2', 'Vadivelu', 'Worker', 350000.00, 1, 325000.00, 420000.00, 'Tiruttani, Tamil Nadu', 'T- dasarahalli, Bangalore', '2012080001', '', '2', 'upload_files/candidate_tracker/9921634546_SridharResume.docx', NULL, NULL, '2020-12-08', 0, 'Arun', '3', '8', '2020-12-24', 360000.00, '', '5', '1970-01-01', '1', '26192 th and with pf for sanjeev team', '5', '2', '4', '2', '2', '', '2', '2020-12-10', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-08 07:51:20', 7, '2020-12-23 11:17:24', 0, NULL, 1),
(2336, 'Vinayaka v', '5', '8971971066', '8310088208', 'Vinayakvinay48@gmail.com', '1994-04-27', 26, '1', '2', 'Venkatachala N', 'Retired', 3000.00, 0, 25000.00, 32000.00, 'Keelukote anthargange Road kolar', 'Kr purm', '2012080002', '', '2', 'upload_files/candidate_tracker/70039256984_VINAYAKA RESUME.pdf', NULL, NULL, '2020-12-11', 0, '55564', '3', '8', '2020-12-21', 394000.00, '', '6', '2021-08-09', '1', '29k for Sanjeev team with esi/pf', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-08 08:41:02', 7, '2020-12-16 05:54:27', 0, NULL, 1),
(2337, 'Elakkiya s', '13', '9092457813', '9003121129', 'paulkavikingthrone@gmail.com', '1996-08-16', 24, '2', '2', 'Sivakumar.M', 'Carpenter', 11000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2012080003', '1', '2', 'upload_files/candidate_tracker/8643396006_Elakkiya sivakumar-converted.pdf', NULL, NULL, '2020-12-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-08 09:19:53', 1, '2020-12-08 10:08:18', 0, NULL, 1),
(2338, 'Dilip kumar m', '6', '7010641989', '', 'reignsdilip77@gmail.com', '1997-10-04', 23, '2', '2', 'Madurai veeran k', 'Security', 30000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2012080004', '1', '1', 'upload_files/candidate_tracker/53932008072_Dilip Resume new.pdf', NULL, NULL, '2020-12-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for any profile. knows nothing.', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-08 10:47:46', 50, '2020-12-09 12:26:59', 0, NULL, 1),
(2339, '', '0', '8838845518', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 10:48:31', 0, NULL, 0, NULL, 1),
(2340, 'G.Veerasanthosh', '4', '9025350075', '9790602736', 'santhoshgv363@gmail.com', '1999-07-15', 21, '2', '2', 'Gurusamy', 'Sales', 15000.00, 1, 10500.00, 16000.00, 'Theni', 'Pallikarnai', '2012080006', '1', '2', 'upload_files/candidate_tracker/8470170124_Veerasanthosh resume-111.docx', NULL, NULL, '2020-12-08', 0, '', '3', '8', '2020-12-14', 156000.00, '', '2', '1970-01-01', '2', '13k for esale dhivya team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 10:58:43', 7, '2020-12-10 03:13:05', 0, NULL, 1),
(2341, 'manimaran k', '6', '8072683685', '8056220036', 'maranmiru06@gmail.com', '1995-07-30', 25, '2', '2', 'kalaiselvan', 'shop', 50000.00, 1, 15000.00, 17000.00, 'thiruvottiyur', 'chennai', '2012080007', '2', '2', 'upload_files/candidate_tracker/13163350448_manoj resume.docx', NULL, NULL, '2020-12-08', 0, '', '3', '8', '2020-12-10', 216000.00, '', '2', '1970-01-01', '1', '18k ctc for suthagar team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:29:47', 7, '2020-12-09 04:36:32', 0, NULL, 1),
(2342, '', '0', '7397357909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:35:40', 0, NULL, 0, NULL, 1),
(2343, '', '0', '9901505433', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:38:05', 0, NULL, 0, NULL, 1),
(2344, 'ASHWIN KUMAR', '6', '9566252923', '9094340763', 'ashwinkumarperumal@gmail.com', '1999-09-28', 21, '1', '2', 'Perumal', 'Driver', 30000.00, 2, 10000.00, 13000.00, 'Chennai', 'Chennai', '2012080010', '', '2', 'upload_files/candidate_tracker/40877975109_file1_1607411833258.pdf', NULL, NULL, '2020-12-08', 0, '5206', '3', '8', '2020-12-10', 156000.00, '', '3', '2020-12-29', '1', '13k ctc for saravana team', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:38:33', 7, '2020-12-09 04:37:00', 0, NULL, 1),
(2345, 'Rakkesh', '6', '9344471886', '9566377367', 'mailatrakkesh@gmail.com', '2001-07-17', 19, '1', '2', 'Mani', 'Finace', 25000.00, 1, 10000.00, 13000.00, 'Saidapet', 'Saidapet', '2012080011', '', '2', 'upload_files/candidate_tracker/20825971231_RESUME.pdf', NULL, NULL, '2020-12-08', 1, '5206', '3', '8', '2020-12-10', 156000.00, '', '4', '2021-09-16', '1', '13k for ramesh team', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:40:21', 7, '2020-12-09 04:37:19', 0, NULL, 1),
(2346, 'Gopinath.a', '6', '9003831543', '9176680293', 'gnath0734@gmail.com', '1995-11-02', 25, '2', '2', 'Arunachalam.k', 'Own shop', 20000.00, 1, 18000.00, 20000.00, 'VYASARPADI', 'VYASARPADI', '2012080012', '1', '2', 'upload_files/candidate_tracker/24867520402_GOPINATH.pdf', NULL, NULL, '2020-12-08', 0, '', '3', '8', '2020-12-14', 264000.00, '', '2', '1970-01-01', '1', '22k ctc no esi/pf for shanmugam team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:42:22', 7, '2020-12-10 03:35:18', 0, NULL, 1),
(2347, 'Surya b', '4', '8754647558', '7397335664', 'Suryadextor@gmail.com', '1997-06-20', 23, '2', '1', 'BALAJI', 'Died', 30000.00, 0, 13500.00, 17000.00, 'Chennai NUNGAMBAKKAM', 'Chennai NUNGAMBAKKAM', '2012080013', '1', '2', 'upload_files/candidate_tracker/31429080983_B.SURYA RESUME.docx', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:43:27', 1, '2020-12-08 11:46:53', 0, NULL, 1),
(2348, '', '0', '8072267256', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:55:04', 0, NULL, 0, NULL, 1),
(2349, 'STEPHEN RAJ', '6', '9344757922', '9176884222', 'stephennive26@gmail.com', '1993-04-14', 27, '1', '2', 'PAUL RAJ M', 'Business', 30000.00, 1, 15000.00, 16000.00, 'Sivaganga', 'Chennai', '2012080015', '', '2', 'upload_files/candidate_tracker/86844781526_STEPHEN RESUME new.pdf', NULL, NULL, '2020-12-08', 1, '5206', '3', '8', '2020-12-10', 189600.00, '', '3', '2021-02-26', '1', '15k ctc for ramesh team', '5', '2', '1', '1', '3', '', '2', '2020-12-08', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 11:55:04', 7, '2020-12-09 04:48:53', 0, NULL, 1),
(2350, 'devika', '4', '7200207189', '', 'mailto:devikamuniyasami1999@gmail.com', '1998-05-30', 22, '2', '2', 'muniyasamy', 'cooli', 11000.00, 1, 0.00, 10000.00, 'chennai', 'nadiyambakkam', '2012080016', '2', '1', 'upload_files/candidate_tracker/89859079471_RESUME Devika.docx', NULL, NULL, '2020-12-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, no communication and will not suite for crm/re.', '1', '2', '', '', '', '', '2', '1970-01-01', '3', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 12:31:27', 50, '2020-12-08 12:39:51', 0, NULL, 1),
(2351, 'Santhosh Kumar. P', '6', '7448726934', '', 'christinasandysantho@gmail.com', '1998-05-21', 22, '2', '2', 'Perumal', 'Advocate', 15000.00, 1, 14500.00, 15000.00, 'T. Nagar', 'T. Nagar', '2012080017', '1', '2', 'upload_files/candidate_tracker/10729288391_1605694865856Resume_Santhosh.docx', NULL, NULL, '2020-12-09', 0, '', '3', '8', '2020-12-10', 168000.00, '', '2', '1970-01-01', '1', '14k ctc for srikanth team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 12:32:12', 7, '2020-12-10 10:14:40', 0, NULL, 1),
(2352, 'Naveen kumar', '6', '9791408052', '7845010940', 'naveenvn143@gmail.com', '1994-11-25', 26, '1', '2', 'Kavin kumar', 'Studied', 25000.00, 1, 10000.00, 15000.00, 'Namakkal', 'Jafferkhanpet', '2012080018', '', '2', 'upload_files/candidate_tracker/93810578268_naveen resume.pdf', NULL, '1', '2021-08-11', 15, '5555599', '3', '59', '1970-01-01', 198000.00, '', '2', '1970-01-01', '2', 'Selected for Guru Team with CTC 198000 includes PF/ESI deductions.Guru reference and manager round has been taken by Syed abthali', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2020-12-08 12:32:31', 60, '2021-08-11 11:22:46', 0, NULL, 1),
(2353, '', '0', '9790602736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 12:48:25', 0, NULL, 0, NULL, 1),
(2354, 'S hajavasim', '6', '7871102681', '7871618176', 'hajavasimsd714383@gmail.com', '1999-10-08', 21, '2', '2', 'B sheik Abdul kather', 'Salesman', 90000.00, 3, 0.00, 15000.00, 'Kulasekaranpatnam', 'Palavakkam, chennai', '2012080020', '1', '1', 'upload_files/candidate_tracker/96395299420_resume_1598162777510.pdf', NULL, NULL, '2020-12-09', 0, '', '8', '20', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'didnt attend', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 01:12:53', 8, '2020-12-09 02:55:26', 0, NULL, 1),
(2355, 'Kesevraj', '2', '8608145404', '', '', '1998-04-19', 22, '2', '2', 'G. Kamal', 'Engineer', 200000.00, 1, 180000.00, 360000.00, 'Chennai', 'Chennai', '2012080021', '1', '2', 'upload_files/candidate_tracker/7550868994_Kesevraj (Front end developer) resume .docx', NULL, NULL, '2020-12-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 01:32:39', 1, '2020-12-08 01:36:55', 0, NULL, 1),
(2356, '', '0', '7401141545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 01:55:49', 0, NULL, 0, NULL, 1),
(2357, 'Sasikala', '5', '9042535349', '', 'sasikalpana12@gmail.com', '1994-07-02', 26, '2', '2', 'Soloman', 'Chennai', 50000.00, 2, 22000.00, 30000.00, 'Chennai', 'Chennai', '2012080023', '1', '2', 'upload_files/candidate_tracker/41703692927_file1_1607418967037 (1).pdf', NULL, NULL, '2020-12-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response from her end. not interested.', '5', '2', '', '', '', '', '2', '2020-12-14', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-08 02:11:41', 58, '2020-12-23 12:37:11', 0, NULL, 1),
(2358, 'Sasikala', '5', '9042635349', '', 'sasikalpana12@gmail.com', '1994-07-02', 26, '2', '2', 'Soloman', 'Chennai', 60000.00, 2, 22000.00, 30000.00, 'Chennai', 'Chennai', '2012080024', '1', '2', 'upload_files/candidate_tracker/47856952936_sasikala soloman_CCR201011CR948161216.pdf', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '1', NULL, '3', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 02:27:01', 1, '2020-12-08 02:58:36', 0, NULL, 1),
(2359, '', '0', '9642535349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 02:36:50', 0, NULL, 0, NULL, 1),
(2360, 'Senthil Raj M', '6', '9344475904', '', '', '1988-02-09', 32, '2', '2', 'Mannar Swamy P', 'Retired', 25000.00, 1, 250000.00, 270000.00, 'Chennai', 'Chennai', '2012080026', '1', '2', 'upload_files/candidate_tracker/42356900671_4566_Resume Sep 2020.docx', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-08 02:41:35', 1, '2020-12-08 02:45:08', 0, NULL, 1),
(2361, '', '0', '9171766845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 03:10:38', 0, NULL, 0, NULL, 1),
(2362, 'chitti babu', '6', '8667744558', '', 'chittirobo1998@gmail.com', '1998-02-11', 22, '1', '2', 'mohan', 'security', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2012080028', '', '1', 'upload_files/candidate_tracker/26410860313_1607421294601_1598247620964_CHITTI[1].docx', NULL, NULL, '2020-12-08', 0, '5276', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'low profile,sustain doubt', '5', '2', '0', '0', '0', '0', '2', NULL, '3', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 03:43:23', 1, '2020-12-08 03:51:13', 0, NULL, 1),
(2363, '', '0', '8015003393', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 03:47:33', 0, NULL, 0, NULL, 1),
(2364, 'test sathish', '3', '9003599224', '', '', '1994-05-04', 26, '2', '1', 'hnfdjgdj', 'dfnsdfnsdf', 20000.00, 1, 0.00, 20000.00, 'dnfn fd', 'ewcvfewrf', '2012080030', '1', '1', 'upload_files/candidate_tracker/36023499786_Hike Module Screen.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dummy\nTest', '2', '1', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-08 03:50:17', 50, '2020-12-14 11:18:44', 0, NULL, 1),
(2365, '', '0', '9360773419', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012080031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 04:57:47', 0, NULL, 0, NULL, 1),
(2366, 'Suresh.S', '17', '8124130969', '7299426546', 'S.suresh.1990@gmail.com', '1990-11-02', 30, '2', '2', 'Sekar.R', 'reired', 35000.00, 4, 35000.00, 40000.00, 'Chennai', 'chennai', '2012080032', '1', '2', 'upload_files/candidate_tracker/28576949091_SURESH Resume.doc', NULL, NULL, '2020-12-09', 30, '', '8', '45', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Attended', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-08 06:03:02', 58, '2020-12-29 09:48:31', 0, NULL, 1),
(2367, 'jennifer', '6', '1122334455', '1234567890', 'jennifercafsjobs@gmail.com', '1991-03-08', 29, '2', '2', 'john', 'teacher', 10000.00, 0, 0.00, 15000.00, 'chennai', 'Chennai', '2012080033', '1', '1', 'upload_files/candidate_tracker/73753993432_Gopi cv(1).pdf', NULL, NULL, '2021-02-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-08 06:05:03', 1, '2021-02-12 01:05:45', 50, '2021-02-13 05:20:11', 0),
(2368, 'M VELLAIPANDIAN', '4', '8124501605', '', '', '1992-03-05', 28, '2', '1', 'Neela lekshmi', 'House wife', 18500.00, 2, 18500.00, 25000.00, 'Maduravoyal,Chennai', 'Maduravoyal, Chennai', '2012080034', '14', '2', 'upload_files/candidate_tracker/33350414969_CV_2020-09-03-071704.pdf', NULL, NULL, '2020-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 06:34:28', 1, '2020-12-08 06:38:07', 0, NULL, 1),
(2369, 'R.Anish', '4', '9150657886', '', 'Anishrajendran96@gmail.com', '1996-10-28', 24, '2', '2', 'R.Rajendran Father', 'Retired bank staff', 130000.00, 4, 15000.00, 20000.00, 'Nungambakkam', 'Nungambakkam', '2012080035', '1', '2', 'upload_files/candidate_tracker/28876629504_Anish C.V.docx', NULL, NULL, '2020-12-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not Interested in sales', '1', '2', '', '', '', '', '2', '2020-12-10', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-08 09:10:29', 50, '2020-12-09 11:16:41', 0, NULL, 1),
(2370, '', '0', '9677073269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 10:47:41', 0, NULL, 0, NULL, 1),
(2371, 'Veeramani', '13', '9840398905', '', 'veeramani131197@gmail.com', '1997-11-13', 23, '2', '2', 'Ganesan', 'Business', 25000.00, 2, 0.00, 15000.00, 'Ayanavaram, chennai', 'Ayanavaram, chennai', '2012090002', '1', '1', 'upload_files/candidate_tracker/50470383170_Resume_veera(1).pdf', NULL, NULL, '2020-12-10', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not good in mysql queries.', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-09 11:29:24', 64, '2020-12-28 03:09:50', 0, NULL, 1),
(2372, 'Selvabharathi', '4', '9080147748', '', 'selvamechon96@gmail.com', '1996-06-11', 24, '2', '2', 'Nagarajan.V', 'Self-employed', 150000.00, 1, 14000.00, 21000.00, 'Omr-Chennai', 'Omr-Chennai', '2012090003', '1', '2', 'upload_files/candidate_tracker/99214686836_1606988870673.pdf', NULL, NULL, '2020-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He asked for a time to think, but No Response ', '1', '2', '', '', '', '', '2', '2020-12-11', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 11:38:32', 50, '2020-12-10 11:02:19', 0, NULL, 1),
(2373, '', '0', '7871409274', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 11:41:50', 0, NULL, 0, NULL, 1),
(2374, 'Shalini.R', '4', '8056155861', '9042560335', 'shaliniswetha6@gmail.com', '1998-05-08', 22, '1', '2', 'Raja.k', 'Carpenter', 25000.00, 1, 12000.00, 15000.00, 'Avadi', 'Avadi', '2012090005', '', '2', 'upload_files/candidate_tracker/95793849283_shalini resume.docx', NULL, NULL, '2020-12-09', 0, '5162', '3', '8', '1970-01-01', 168000.00, '', '2', '1970-01-01', '2', '14k ctc for dhivya team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 11:59:00', 7, '2020-12-10 03:35:35', 0, NULL, 1),
(2375, 'A.riyaz', '4', '7299291247', '', 'riyazhussain664@gmail.com', '1999-07-30', 21, '2', '2', 'E.akbar', 'Own shop', 90000.00, 1, 0.00, 1400.00, 'Tharamani', 'Tharamai', '2012090006', '1', '1', 'upload_files/candidate_tracker/73115450904_riyaz new resume.docx', NULL, NULL, '2020-12-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 12:26:58', 1, '2020-12-09 01:12:59', 0, NULL, 1),
(2376, 'M. Shyam Kumar', '4', '9150755067', '7092324467', 'shyamstrange656@gmail.com', '1999-12-16', 20, '2', '2', 'K. Manogaran', 'Salesman', 30000.00, 1, 0.00, 10000.00, 'Chennai', '4/1065gandhi st, iyyappanthangal', '2012090007', '1', '1', 'upload_files/candidate_tracker/56703492271_shyam.doc', NULL, NULL, '2020-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '0', '0', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-09 12:28:19', 1, '2020-12-09 12:39:56', 0, NULL, 1),
(2377, '', '0', '9551040781', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 12:39:39', 0, NULL, 0, NULL, 1),
(2378, '', '0', '8110929591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 12:41:13', 0, NULL, 0, NULL, 1),
(2379, '', '0', '7904110159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 12:46:20', 0, NULL, 0, NULL, 1),
(2380, 'Premalatha k', '13', '9751474931', '9788553320', 'prema.jasmine@gmail.com', '1989-05-03', 31, '2', '1', 'Mahendran A', 'Farmer', 25000.00, 1, 25000.00, 35000.00, 'Udumalpet', 'Udumalpet', '2012090011', '1', '2', 'upload_files/candidate_tracker/19191072882_K.PREMALATHA.doc', NULL, NULL, '2020-12-14', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-09 12:47:21', 1, '2020-12-09 12:52:50', 0, NULL, 1),
(2381, 'Saranya devi', '5', '9710265489', '', 'saran_988@yahoo.co.in', '1988-07-09', 32, '1', '1', 'Gurumoorthy', 'IT', 30000.00, 0, 30000.00, 30000.00, 'Chromepet', 'Thiruninravur', '2012090012', '', '2', 'upload_files/candidate_tracker/57561856179_Saranya updated CV-1.docx', NULL, NULL, '2020-12-09', 0, '55600', '3', '8', '2020-12-21', 360000.00, '', '4', '2021-05-06', '1', '30k ctc and no pf and pt alone', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-09 01:01:43', 7, '2020-12-17 05:34:56', 0, NULL, 1),
(2382, 'Abbas baig A', '5', '7092341194', '7200585058', 'abbasvikram21@gmail.com', '1995-09-21', 25, '2', '2', 'Mumtaj begum', 'Home work', 6000.00, 1, 20000.00, 22000.00, '49,valluvan street,otteri,chennai', 'Chennai', '2012090013', '1', '2', 'upload_files/candidate_tracker/57044240204_ABBAS BAIG resume updated LAST DA.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'salary exceptation too high', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-09 01:02:34', 50, '2020-12-14 10:28:53', 0, NULL, 1),
(2383, '', '0', '9514092500', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 01:07:50', 0, NULL, 0, NULL, 1),
(2384, 'Sindhu', '5', '7397436356', '', 'Sindhudevi098@gmail.com', '1995-02-09', 25, '1', '2', 'Father', 'Eb', 20000.00, 2, 16000.00, 18000.00, 'Thiruninravur', 'Thiruninravur', '2012090015', '', '2', 'upload_files/candidate_tracker/58433666796_cv sind.docx', NULL, NULL, '2020-12-09', 0, '55600', '5', '33', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 01:08:13', 8, '2020-12-09 05:03:33', 0, NULL, 1),
(2385, '', '0', '7200700422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 01:10:04', 0, NULL, 0, NULL, 1),
(2386, '', '0', '8610258334', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 01:20:49', 0, NULL, 0, NULL, 1),
(2387, 'Vijay.p', '6', '7092088939', '7092341194', 'vijayraina578@gmail.com', '1999-11-24', 21, '2', '2', 'Perumal', 'Driver', 12000.00, 1, 0.00, 13000.00, '38,valluvan street otteri Chennai', '38,valluvan street otteri Chennai', '2012090018', '1', '1', 'upload_files/candidate_tracker/65224346863_resumeimgtopdf_09122020033742.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-09 02:40:13', 50, '2020-12-14 10:24:34', 0, NULL, 1),
(2388, '', '0', '9080911125', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 03:25:24', 0, NULL, 0, NULL, 1),
(2389, 'Dinesh Kanna. p', '4', '8489821322', '9159344695', 'dineshcivil565@gmail.com', '1995-07-20', 25, '2', '2', 'Panchu. K', 'Farmer', 12000.00, 2, 14000.00, 19000.00, 'Ramanathapuram', 'Nandanam', '2012090020', '1', '2', 'upload_files/candidate_tracker/12880745979_resume_1591243456453.pdf', NULL, NULL, '2020-12-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-09 03:49:10', 1, '2020-12-09 03:59:13', 0, NULL, 1),
(2390, 'R. SATHYA PRIYA', '4', '7601070760', '', 'rsathiyapriya012@gmail.com', '2000-02-09', 20, '2', '2', 'VRP. RAYHINASAMY', 'LIC AGENT', 20000.00, 1, 0.00, 13000.00, '10/7 mutual reddy street alandur chennai', 'Chennai', '2012090021', '1', '1', 'upload_files/candidate_tracker/58970016849_R.SATHYA Resume.pdf', NULL, NULL, '2020-12-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-09 03:54:41', 1, '2020-12-09 04:05:59', 0, NULL, 1),
(2391, '', '0', '8189881836', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 03:56:20', 0, NULL, 0, NULL, 1),
(2392, 'Harisundar', '13', '6380109782', '9597897388', '', '1998-03-09', 22, '2', '2', 'Kannan', 'Tailor', 9000.00, 1, 0.00, 12000.00, '237,kpks street, RAJAPALAYAM', 'C2,thamarai apartment.medavakam,chennai', '2012090023', '15', '1', 'upload_files/candidate_tracker/2066961606_Sundar-converted.pdf', NULL, NULL, '2020-12-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He donxquott have a basic knowledge. its a first interview. He didnxquott prepared anything.', '2', '2', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:23:08', 1, '2020-12-09 04:27:42', 0, NULL, 1),
(2393, '', '0', '7401188662', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:29:18', 0, NULL, 0, NULL, 1),
(2394, '', '0', '9597116508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:29:49', 0, NULL, 0, NULL, 1),
(2395, 'ARUN RAJ D', '22', '9176701686', '', 'arundraj31@gmail.com', '1990-08-31', 30, '2', '1', 'Durai Raj', 'TNSTC', 30000.00, 1, 20000.00, 28000.00, 'Sholinganallur, chennai', 'Chennai', '2012090026', '1', '2', 'upload_files/candidate_tracker/56152594661_Resume.doc', NULL, NULL, '2020-12-10', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication not good.', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:34:12', 50, '2020-12-10 11:20:12', 0, NULL, 1),
(2396, '', '0', '9843664082', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 04:40:32', 0, NULL, 0, NULL, 1),
(2397, '', '0', '9092943593', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012090028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 06:09:19', 0, NULL, 0, NULL, 1),
(2398, 'Rakesh C', '2', '9047473912', '', '', '1996-05-30', 24, '2', '1', 'Chandrasekaran R', 'Full Stack Developer', 40000.00, 1, 22000.00, 37000.00, 'Trichy', 'Chennai', '2012090029', '1', '2', 'upload_files/candidate_tracker/87486004908_rakesh_resume.docx', NULL, NULL, '2020-12-13', 45, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '3', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 06:42:12', 1, '2020-12-09 06:46:19', 0, NULL, 1),
(2399, 'Devakumar.N', '11', '8608510403', '6383789524', 'dsdeva0007@gmail.com', '1999-05-01', 21, '2', '1', 'Soniya', 'House wife', 15000.00, 5, 0.00, 20000.00, '345, PILLAIYAR KOVIL STREET PADIYAMPATTU,606803', '2264,TNHB, Ayappakkam Chennai-77', '2012090030', '', '2', 'upload_files/candidate_tracker/97448689786_Resume-1.pdf', NULL, NULL, '2020-12-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-09 10:11:10', 1, '2020-12-09 10:57:29', 0, NULL, 1),
(2400, '', '0', '9789050876', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 11:10:49', 0, NULL, 0, NULL, 1),
(2401, '', '0', '9176800529', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 11:40:42', 0, NULL, 0, NULL, 1),
(2402, '', '0', '7338788736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 11:46:03', 0, NULL, 0, NULL, 1),
(2403, '', '0', '9791579552', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 11:55:54', 0, NULL, 0, NULL, 1),
(2404, 'Sakthivel', '6', '7010838723', '9710275647', 'sakthivini1168@gmail.com', '1997-05-11', 23, '2', '2', 'Muralidharan', 'Mechanic (Died)', 15000.00, 1, 16500.00, 20000.00, 'Chennai', 'Chennai', '2012100005', '1', '2', 'upload_files/candidate_tracker/98835735705_Sakthivel Resume.pdf', NULL, NULL, '2020-12-12', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 12:05:18', 1, '2020-12-10 12:21:46', 0, NULL, 1),
(2405, 'Zubairul hassan', '20', '9080485692', '8940047013', '', '1996-03-18', 24, '2', '1', 'Shafiullah', 'Fse', 15000.00, 0, 0.00, 15000.00, 'Urapakkam', 'Urapakkam', '2012100006', '1', '2', 'upload_files/candidate_tracker/51963437190_null.pdf', NULL, NULL, '2020-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for the role', '5', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-10 12:05:52', 1, '2020-12-10 12:39:39', 0, NULL, 1),
(2406, '', '0', '9655812375', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 12:26:33', 0, NULL, 0, NULL, 1),
(2407, 'Jeevanandham T', '6', '7010021138', '8220696869', 'jeevachelam8@gmail.com', '2000-01-08', 20, '1', '2', 'Thulasiraman G', 'Photographer', 12000.00, 1, 2.45, 3.50, 'Arakkonam', 'Chennai', '2012100008', '', '2', 'upload_files/candidate_tracker/13756462067_jeeva resume.pdf', NULL, NULL, '2021-04-07', 7, 'Priyanka', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ni in sales', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-10 12:29:06', 50, '2021-04-07 11:56:27', 0, NULL, 1),
(2408, 'RAVI A', '21', '9597771616', '', 'ravi.athi91@gmail.com', '1991-07-18', 29, '2', '2', 'ATHITHAKARIKALAN R', 'Business', 20000.00, 1, 18.60, 30000.00, 'Namakkal District', 'Chennai', '2012100009', '1', '2', 'upload_files/candidate_tracker/20228081417_Ravi- Administration - 6.6 yrs exp.docx', NULL, NULL, '2020-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 12:38:55', 1, '2020-12-10 12:43:12', 50, '2020-12-15 04:47:53', 0),
(2409, 'RAVI A', '5', '9629961824', '9597771616', 'ravi.athi91@gmail.com', '1991-07-18', 29, '2', '2', 'ATHITHAKARIKALAN R', 'Business', 38000.00, 1, 18.60, 30000.00, 'Komarapalayam, Namakkal District', 'Ambattur, chennai', '2012100010', '1', '2', 'upload_files/candidate_tracker/47111772065_Ravi- Administration - 6.6 yrs exp.docx', NULL, NULL, '2020-12-15', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not a convincing candidate for sales. interested in HR', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-10 01:21:25', 58, '2020-12-23 02:45:19', 0, NULL, 1),
(2410, '', '0', '8072156347', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 01:53:04', 0, NULL, 0, NULL, 1),
(2411, '', '0', '8825492383', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 02:01:49', 0, NULL, 0, NULL, 1),
(2412, '', '0', '7338795867', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 02:33:57', 0, NULL, 0, NULL, 1),
(2413, '', '0', '9940434015', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 02:47:10', 0, NULL, 0, NULL, 1),
(2414, '', '0', '8547446341', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 02:50:21', 0, NULL, 0, NULL, 1),
(2415, 'Ashok. T', '13', '9962658051', '8838982884', 'Ashokthirumalai8@gmail.com', '1996-10-23', 24, '2', '2', 'Thirumalai. V', 'Agriculture', 35000.00, 1, 0.00, 15000.00, 'Selaiyur', 'Selaiyur', '2012100016', '15', '1', 'upload_files/candidate_tracker/57117717348_Resume A.doc', NULL, NULL, '2020-12-11', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He donxquott have a basic knowledge. ', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 03:48:18', 8, '2020-12-11 03:16:05', 0, NULL, 1),
(2416, '', '0', '8056606211', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 03:58:04', 0, NULL, 0, NULL, 1),
(2417, '', '0', '1234567123', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 04:29:47', 0, NULL, 0, NULL, 1),
(2418, 'Vigneshwaran s', '6', '8939174006', '', 'Svickywaran30@gmail.com', '1999-09-30', 21, '2', '2', 'Se kar s', 'B. Com genreal', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Ambatur', '2012100019', '15', '1', 'upload_files/candidate_tracker/31353668593_resume vicky.docx', NULL, NULL, '2020-12-14', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not attended to second round', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-10 04:59:58', 50, '2020-12-14 10:41:44', 0, NULL, 1),
(2419, '', '0', '8148267080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 05:07:51', 0, NULL, 0, NULL, 1),
(2420, 'DINESH S', '6', '9600022516', '', 'dineshkarthick25397@gmail.com', '1997-03-25', 23, '2', '2', 'SEVUGAN U', 'CAR PAINTER', 12000.00, 1, 0.00, 14000.00, 'CHENNAI', 'CHENNAI', '2012100021', '15', '1', 'upload_files/candidate_tracker/56636490915_Resume - DINESH.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR TELECALLING AND RE', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-10 05:17:31', 50, '2020-12-14 10:40:46', 0, NULL, 1),
(2421, '', '0', '9629384462', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012100022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-10 05:17:42', 0, NULL, 0, NULL, 1),
(2422, 'Venkadesh', '13', '9047674161', '', '', '1996-03-22', 24, '2', '2', 'Chinnadurai', 'Farmer', 80000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2012100023', '1', '1', 'upload_files/candidate_tracker/90253330135_venkat resume(2).pdf', NULL, NULL, '2020-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-10 08:51:01', 1, '2020-12-10 08:53:45', 0, NULL, 1),
(2423, '', '0', '7339085938', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 10:39:37', 0, NULL, 0, NULL, 1),
(2424, 'Ahilesh', '4', '9698857250', '8778671886', 'ahilesh1998@gmail.com', '1998-09-19', 22, '1', '2', 'R Thangapaul', 'Lic agent', 16000.00, 1, 0.00, 12000.00, 'Kuzhithurai kanyakumari', 'Minjur chennai', '2012110002', '', '1', 'upload_files/candidate_tracker/95868718158_1595473687789Resume_Ahiles.pdf', NULL, NULL, '2020-12-19', 0, '2012110002', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain, already applied job in UAE and waiting for visa.', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-11 10:53:48', 50, '2020-12-19 12:01:45', 0, NULL, 1),
(2425, 'test sathish', '14', '1313131313', '', 'sat@gmail.com', '1994-08-25', 26, '2', '2', 'Menon', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'dnfn fd', 'Kallakurichi', '2012110003', '1', '1', 'upload_files/candidate_tracker/79094768483_E_M_KUMARAN(Resume).pdf', NULL, NULL, '2020-12-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:14:49', 1, '2020-12-14 06:56:19', 0, NULL, 1),
(2426, 'test sathis', '23', '1414141414', '', 'sat@gmail.com', '1994-08-25', 26, '2', '1', 'Menon', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'dnfn fd', 'Kallakurichi', '2012110004', '1', '1', 'upload_files/candidate_tracker/39019097491_E_M_KUMARAN(Resume).pdf', NULL, NULL, '2020-12-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:15:53', 1, '2020-12-14 06:59:33', 0, NULL, 1),
(2427, 'abishek', '5', '8754518255', '', 'abishekmurali1994@gmail.com', '1994-11-03', 26, '2', '2', 'murali', 'fresher', 50000.00, 1, 0.00, 25000.00, 'chennai', 'Chennai', '2012110005', '1', '1', 'upload_files/candidate_tracker/28236461851_Abishek Marketing Resume.pdf', NULL, NULL, '2020-12-11', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for life sales', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:22:48', 8, '2020-12-11 12:40:26', 0, NULL, 1),
(2428, '', '0', '7401588875', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:39:13', 0, NULL, 0, NULL, 1),
(2429, 'S siva surya kumar', '22', '9003214654', '', 'sivasurya0@gmail.com', '1995-05-25', 25, '2', '2', 'A Srinivasan', 'Associate professor', 150000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2012110007', '1', '2', 'upload_files/candidate_tracker/64911445022_Siva Surya Kumar Resume.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Exp in SEO /SEM, but no content writing', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-11 11:44:11', 64, '2020-12-23 03:00:25', 0, NULL, 1),
(2430, '', '0', '9941357993', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 12:17:11', 0, NULL, 0, NULL, 1),
(2431, '', '0', '9789051783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 12:50:58', 0, NULL, 0, NULL, 1),
(2432, 'Saran Kumar', '21', '9597698075', '9487816279', 'K. Saranku@gmail.com', '1998-07-29', 22, '2', '2', 'Kandasamy', 'Driver', 10000.00, 1, 15000.00, 18000.00, 'Karaikal', 'Chennai', '2012110010', '14', '2', 'upload_files/candidate_tracker/27603104956_1605694298626Resume_K.docx', NULL, NULL, '2020-12-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 12:55:02', 1, '2020-12-11 01:40:43', 0, NULL, 1),
(2433, 'banu', '4', '9384338770', '1234567891', 'banukbt1988@gmail.com', '2000-12-11', 20, '2', '2', 'Ghouse basha', 'Nil', 15000.00, 1, 10000.00, 18000.00, 'chennai', 'thiruvallur', '2012110011', '1', '2', 'upload_files/candidate_tracker/25730323733_banu.pdf', NULL, NULL, '2020-12-11', 10, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for esales', '1', '2', '', '', '', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-11 01:01:07', 58, '2020-12-23 02:48:25', 0, NULL, 1),
(2434, 'Nukul', '6', '9566219884', '7358460091', 'nukuldon24@gmail.com', '1999-07-24', 21, '2', '2', 'Manak chand', 'Bussiness', 100000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2012110012', '1', '1', 'upload_files/candidate_tracker/6253967180_NUK.docx', NULL, NULL, '2020-12-12', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR TELECALLING AND RE', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 01:07:46', 50, '2020-12-12 11:42:12', 0, NULL, 1),
(2435, 'ranjith s', '22', '8973255764', '', 'ranjithranjan1221@gmail.com', '1994-05-04', 26, '2', '2', 'savarakodi p', 'farmer', 15000.00, 2, 300000.00, 400000.00, 'gummidipoondi', 'velacherry', '2012110013', '1', '2', 'upload_files/candidate_tracker/15357402043_Update Resume.pdf', NULL, NULL, '2020-12-11', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No good communication', '2', '2', '', '', '', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-11 01:22:48', 65, '2020-12-24 11:28:30', 0, NULL, 1),
(2436, '', '0', '1234567898', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 01:32:41', 0, NULL, 0, NULL, 1),
(2437, 'E.G.Adithya', '4', '8760037235', '9677155153', 'adithya1181996@gmail.com', '1996-08-11', 24, '2', '2', 'E.R.Gurubalachandran', 'Advacate', 50000.00, 1, 17000.00, 17000.00, 'West mambambalam', 'West mambambalam', '2012110015', '1', '2', 'upload_files/candidate_tracker/24643152106_Adithya CV(1).pdf', NULL, NULL, '2020-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 01:37:47', 1, '2020-12-11 01:45:07', 0, NULL, 1),
(2438, 'syed reyaz ahmed', '24', '9884678888', '', 'sreyazahmed@hotmail.com', '1977-04-11', 43, '2', '1', 'sameena m a', 'business analyst', 2000000.00, 5, 1200000.00, 1200000.00, 'chennai', 'chennai', '2012110016', '1', '2', 'upload_files/candidate_tracker/74675095224_SRA_CV (3).doc', NULL, NULL, '2020-12-11', 0, '', '3', '8', '2020-12-16', 1000000.00, '', '6', '2021-03-26', '1', '83333 ctc and 79525 is net.', '8', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 02:27:42', 7, '2020-12-11 04:24:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2439, 'E.Saravanan', '4', '8778409574', '9940517582', 'saravanavelu121@gmail.com', '1998-08-18', 22, '2', '2', 'G.Ekambaram', 'Plumber', 10000.00, 2, 0.00, 12500.00, '88Veppampattu, thiruvallur district', 'Madhakhovil,5th Street,88veppampattu', '2012110017', '1', '1', 'upload_files/candidate_tracker/70558852178_saravana resume.pdf', NULL, '1', '2021-05-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm, no clarity in speech, not speaking up.', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 02:54:39', 50, '2021-05-07 10:50:48', 0, NULL, 1),
(2440, 'Venkatesh', '4', '9047568290', '', 'asalvenkat4213@gmail.com', '1999-02-04', 21, '2', '2', 'Rajpandiyan', 'Business', 25000.00, 2, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2012110018', '15', '1', 'upload_files/candidate_tracker/68939367608_VenkatResume.pdf.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain and will not suite for RE', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 02:55:25', 50, '2020-12-12 10:22:53', 0, NULL, 1),
(2441, '', '0', '6369351623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 03:02:34', 0, NULL, 0, NULL, 1),
(2442, 'Ananth', '14', '9345620716', '', 'ananth09121998@gmail.com', '1998-12-09', 22, '2', '2', 'Rasu', 'Former', 13000.00, 2, 0.00, 7000.00, 'Trichy', 'Chennai', '2012110020', '1', '1', 'upload_files/candidate_tracker/44700977077_pluggins.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'confused in his technology. applied android developer. but he donxquott have a knowledge in this.', '2', '2', '', '', '', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-11 03:28:35', 50, '2020-12-12 02:45:43', 0, NULL, 1),
(2443, '', '0', '6384906541', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 04:04:00', 0, NULL, 0, NULL, 1),
(2444, 'Ganesh kumar', '6', '7449253156', '7010398386', 'Uganesh43@gmail.com', '1999-01-19', 21, '2', '2', 'K. Ulaganathab', 'Housekeeping supervisor', 100000.00, 2, 0.00, 14000.00, '17/9 nakkerran street west mambalam chennai-33', '17/9 Nakkerran Street West Mambalam Chennai-33', '2012110022', '1', '1', 'upload_files/candidate_tracker/5956014576_GANESH KUMAR Resume.docx', NULL, NULL, '2020-12-14', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'HE IS NOT INRESTED FOR SALES', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-11 04:14:16', 50, '2020-12-14 11:50:33', 0, NULL, 1),
(2445, 'Ahamed Meeran', '22', '9952050554', '', 'ahamedmeeran705@gmail.com', '1999-09-04', 21, '2', '2', 'mohamed yusuf', 'imam in mosque', 25000.00, 3, 0.00, 16000.00, 'lakshmi nagar chrompet chennai', 'Lakshmi Nagar Chrompet Chennai', '2012110023', '1', '1', 'upload_files/candidate_tracker/38503985000_Ahamed_Meeran_Resume.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No experience in Digital Marketing', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-11 04:29:38', 64, '2020-12-28 03:10:28', 0, NULL, 1),
(2446, 'Nivedha S V', '6', '8072717648', '', 'madhunivi34449@gmail.com', '1999-01-13', 24, '2', '2', 'Senthamil selvi S', 'Fresher', 75000.00, 0, 0.00, 17000.00, 'Chennai', 'Chennai', '2012110024', '1', '1', 'upload_files/candidate_tracker/3958859213_nivedha new resume.pdf', NULL, '1', '2023-05-27', 0, '', '5', '105', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT RESPONSE, ALSO LOOKING HIGN SALARY PACKAGE', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2020-12-11 04:29:51', 85, '2023-05-30 05:36:15', 0, NULL, 1),
(2447, 'M.vishwa', '6', '9790470883', '8939708834', 'Vishwadfc22@gmail.com', '1999-02-22', 21, '2', '2', 'R.muthuraman', 'NLC', 25000.00, 1, 0.00, 18000.00, '7/53 6th Street,therkkuvellore,Neyveli 2', 'Vinobaj nagar , Hasthinapuram, chrompet', '2012110025', '1', '1', 'upload_files/candidate_tracker/99751133490_vishwadfc.docx', NULL, NULL, '2020-12-12', 0, '', '3', '8', '2020-12-14', 156000.00, '', '2', '1970-01-01', '2', '13k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-11 04:50:20', 7, '2020-12-12 04:05:22', 0, NULL, 1),
(2448, 'r.s.hemachandran', '22', '7010307077', '7395944166', 'hemachandran0072737@gmail.com', '1997-07-23', 23, '2', '2', 'ravi', 'digital marketing executive', 200000.00, 1, 25000.00, 30000.00, 'ramapuram', 'ramapuram', '2012110026', '1', '2', 'upload_files/candidate_tracker/28875635253_Hemachandran_Resume.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Content Written is not upto the standard', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-11 05:00:52', 64, '2020-12-23 03:02:26', 0, NULL, 1),
(2449, '', '0', '9566094694', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 05:04:07', 0, NULL, 0, NULL, 1),
(2450, 'SRINIVASAN V', '22', '7299842358', '', 'srisrini52@gmail.com', '1998-01-31', 22, '1', '2', 'VENKATESAN', 'Carpenter', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Thiruvottiyur', '2012110028', '', '1', 'upload_files/candidate_tracker/34567180267_Srini Re.docx', NULL, NULL, '2020-12-14', 0, 'Zenfy consultancy services', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '0', '0', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 05:54:42', 1, '2020-12-11 06:00:01', 0, NULL, 1),
(2451, 'Soundarya', '4', '6369352623', '', 'soundaryasoundarrajan4213@gmail.com', '1999-02-13', 21, '2', '2', 'Soundarrajan', 'Painter', 20000.00, 1, 0.00, 15000.00, 'Tanjore', 'Chennai', '2012110029', '15', '1', 'upload_files/candidate_tracker/76471918941_CV_2020-10-13-112108.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, will not suite for our process.', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-11 07:45:55', 50, '2020-12-12 11:20:16', 0, NULL, 1),
(2452, 'Ali Ibrahim B', '22', '9790285583', '', '', '1993-10-18', 27, '2', '1', 'A. Zamira', 'Research analyst in content writing', 35000.00, 1, 0.00, 40000.00, 'Kanchipuram', 'Chennai', '2012110030', '1', '2', 'upload_files/candidate_tracker/96955390860_1604071769701Resume_Ali.pdf', NULL, NULL, '2020-12-14', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much into content only no exp in SEO/SEM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-11 08:00:04', 65, '2020-12-24 11:16:50', 0, NULL, 1),
(2453, 'Asif', '8', '7401695979', '', 'arnavasif007@gmail.com', '1996-12-31', 23, '2', '2', 'Amanullah A', 'Own Business', 20000.00, 2, 180000.00, 220000.00, 'Chennai', 'Chennai', '2012110031', '1', '2', 'upload_files/candidate_tracker/44878778740_Asif resume.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not Interested to join', '7', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-11 08:02:34', 8, '2020-12-12 02:30:32', 0, NULL, 1),
(2454, '', '0', '8248558418', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110032', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-11 11:59:28', 0, NULL, 0, NULL, 1),
(2455, 'Y. Rajashekhara', '5', '9705098975', '', 'yellarthyrajashekhara@gmail.com', '1997-07-07', 23, '2', '2', 'Y Narasappa', 'Agriculture', 75000.00, 1, 0.00, 20000.00, 'Yellarthy village', 'Bengalor', '2012120001', '1', '1', 'upload_files/candidate_tracker/64648625729_rajashekhar7s.docx', NULL, NULL, '2020-12-12', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'bad in communication and he is expecting high salary', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-12 10:08:36', 58, '2020-12-29 10:20:32', 0, NULL, 1),
(2456, 'Vignesh', '22', '9789592242', '', 'vsvignesh00@gmail.com', '1996-08-24', 24, '2', '2', 'Dinesh Babu', 'Business', 30000.00, 1, 27630.00, 30000.00, 'Chennai', 'Chennai', '2012120002', '1', '2', 'upload_files/candidate_tracker/14177407308_VIGNESH Resume 1 (1).pdf', NULL, NULL, '2020-12-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-12 10:09:48', 65, '2020-12-24 11:25:20', 0, NULL, 1),
(2457, 'l.dhineshraj', '13', '7010037981', '', 'ldhinesehwag44@gmail.com', '1999-01-11', 21, '2', '2', 'a.lakshmanan', 'weaver', 10000.00, 1, 0.00, 12000.00, 'namakkal', 'chennai', '2012120003', '1', '1', 'upload_files/candidate_tracker/64774126259_IT DHINESHRAJ L RESUME.pdf', NULL, NULL, '2020-12-05', 0, '', '3', '8', '2020-12-11', 101400.00, '', '1', '1970-01-01', '2', '8k th for IT', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-12 10:26:41', 64, '2020-12-28 03:12:31', 0, NULL, 1),
(2458, 'Sathish', '6', '8825963613', '7200682888', 'kalasys77@gmail.com', '1995-07-14', 25, '1', '1', 'Logeshwari', 'Logistics executive', 27000.00, 2, 0.00, 18000.00, 'Mandaiveli', 'Mandaiveli', '2012120004', '', '2', 'upload_files/candidate_tracker/75680092044_Resume.docx', NULL, NULL, '2020-12-12', 0, '', '8', '20', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-12 10:34:58', 50, '2020-12-12 11:21:57', 0, NULL, 1),
(2459, 'vinitha', '22', '7871202264', '6384906541', 'devavinilee265@gmail.com', '1998-05-26', 22, '1', '2', 'deventhiran', 'digital marketing', 10000.00, 2, 0.00, 16000.00, 'ariyalur', 'velacherry', '2012120005', '', '2', 'upload_files/candidate_tracker/11203758599_Viveksundarraj87.docx', NULL, NULL, '2020-12-12', 0, 'jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication xxamp no experience in Digital Marketing', '2', '2', '0', '0', '0', '0', '2', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 11:01:59', 1, '2020-12-12 11:53:33', 0, NULL, 1),
(2460, 'test latha', '13', '6764543567', '9999988888', 'latha@cafsinfotech.in', '2005-08-01', 15, '2', '2', 'Test Latha', 'Test Latha', 12000.00, 2, 0.00, 10000.00, 'Test Latha', 'Test Latha', '2012120006', '1', '1', 'upload_files/candidate_tracker/46695132358_Attendance Register.pdf', NULL, NULL, '2020-12-12', 0, '', '6', '63', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-12 11:02:29', 1, '2020-12-12 12:13:43', 0, NULL, 1),
(2461, 'shankaranarayanan rk.', '6', '5379600006', '', 'shankarstark67@gmail,com', '1997-06-14', 23, '1', '2', 'kamalanathan r', 'school teachere', 10000.00, 0, 20000.00, 20000.00, 'chennai', 'chennai', '2012120007', '', '2', 'upload_files/candidate_tracker/11631013584_shankar R.docx', NULL, NULL, '2020-12-12', 0, '5392', '8', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate left without attending the interview', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-12 11:02:50', 50, '2020-12-12 11:38:46', 0, NULL, 1),
(2462, 'Paramasivam', '6', '7401439676', '8610985182', 'Paramasm1@gmaill.com', '1998-07-05', 22, '4', '2', 'Iyyanar', 'No', 10000.00, 3, 0.00, 18000.00, 'Mylapore Chennai', 'Ramakrishna Puram Street Mylapore Chennai 600004', '2012120008', '', '1', 'upload_files/candidate_tracker/11459802497_PARAMA RESUME NEW.docx', NULL, NULL, '2020-12-12', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-12 11:14:05', 8, '2020-12-12 02:34:06', 0, NULL, 1),
(2463, 'N. Devi', '4', '6379197360', '6379186979', 'Clmdevideviclm@mail.com', '1999-08-31', 21, '2', '1', 'N. Elumalai', 'Daily weges', 15000.00, 3, 0.00, 13000.00, 'Mgr nager, 30th street, kovilambakkkam', 'Mgr nager, 30th street, kovilambakkam', '2012120009', '1', '1', 'upload_files/candidate_tracker/39682115782_Resume.pdf', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up will not suite for CRM', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 11:29:54', 50, '2020-12-12 12:12:13', 0, NULL, 1),
(2464, '', '0', '9361584550', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 11:31:12', 0, NULL, 0, NULL, 1),
(2465, 'Saravanan Muralidharan', '4', '9360412090', '7299870917', 'saravananmurali70@gmail.com', '1998-09-08', 22, '2', '2', 'S.muralidharan', 'Building contractor', 25000.00, 1, 0.00, 18000.00, 'Vinobaj nagar, hasthinapuram,chrompet', 'Vinobaj nagar , Hasthinapuram, chrompet', '2012120011', '1', '1', 'upload_files/candidate_tracker/79341361828_saran resume.docx', NULL, NULL, '2020-12-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for any profile', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 11:32:37', 50, '2020-12-12 11:51:10', 0, NULL, 1),
(2466, 'A. Umamageshwari', '4', '9087599851', '9361584550', 'mageshwariuma779@gmail.com', '1999-11-23', 21, '2', '2', 'K. Arumugam', 'Daily weges', 15.00, 2, 10.00, 13.00, 'No 3/67 anna nagar 4 th street echangaduu', 'No 3/67 anna nagar 4th street echangadu', '2012120012', '1', '2', 'upload_files/candidate_tracker/66336764091_PRIYA.docx', NULL, NULL, '2020-12-12', 2, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, will not suite for esale. ', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-12 12:03:36', 50, '2020-12-12 12:31:12', 0, NULL, 1),
(2467, '', '0', '7299870917', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 12:06:32', 0, NULL, 0, NULL, 1),
(2468, '', '0', '4545454321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 12:10:44', 0, NULL, 0, NULL, 1),
(2469, 'kuralarasupm', '20', '7094681616', '6380404372', 'kuralarasupm@gmail.com', '2000-10-17', 20, '2', '2', 'Pandiyan', 'painter', 70000.00, 1, 0.00, 18000.00, 'Chennai', 'mugappair', '2012120015', '1', '2', 'upload_files/candidate_tracker/38064853719_1607432030575.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability doubt, For CRM high CTC expectation', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 12:23:31', 50, '2021-02-26 11:09:59', 0, NULL, 1),
(2470, '', '0', '1029384756', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 01:01:27', 0, NULL, 0, NULL, 1),
(2471, '', '0', '8680952956', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 01:05:10', 0, NULL, 0, NULL, 1),
(2472, '', '0', '7890675646', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 01:25:28', 0, NULL, 0, NULL, 1),
(2473, 'aakash', '4', '8838344479', '8838345623', 'aakashgiant25@gmail.com', '2000-06-05', 20, '2', '2', 'vijayakumar', 'private concern', 20000.00, 0, 0.00, 18000.00, 'Chennai', 'madipakkam', '2012120019', '1', '1', 'upload_files/candidate_tracker/7345267031_aakash resume(CV).pdf', NULL, NULL, '2020-12-15', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interested in accounts field ', '1', '2', '', '1', '1', '', '2', '2020-12-16', '3', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-12 01:32:13', 8, '2020-12-15 04:41:23', 0, NULL, 1),
(2474, '', '0', '1597534682', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 01:35:28', 0, NULL, 0, NULL, 1),
(2475, 'parjith', '4', '8939591299', '', 'parjith76145@gmail.com', '1999-12-10', 21, '2', '2', 'narayanan', 'cooly', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012120021', '1', '1', 'upload_files/candidate_tracker/18388996914_Parjith resume 2.pdf', NULL, NULL, '2020-12-12', 0, '', '3', '8', '1970-01-01', 180000.00, '', '2', '1970-01-01', '2', '15k ctc for Esale', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 02:18:56', 7, '2020-12-14 04:49:08', 0, NULL, 1),
(2476, '', '0', '8754849477', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 03:01:44', 0, NULL, 0, NULL, 1),
(2477, '', '0', '9831671488', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 03:21:27', 0, NULL, 0, NULL, 1),
(2478, '', '0', '7358973234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012120024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-12 03:33:48', 0, NULL, 0, NULL, 1),
(2479, 'Ummesalma', '4', '9445607267', '', 'Aummesalmas@gmail.com', '1997-05-10', 23, '2', '2', 'Arifullah hussaini', 'BBA, BA History', 50000.00, 3, 180000.00, 250000.00, 'No. 1 Ps street tirupattur tamilnadu', '46/1,garvebhavipalya Bengaluru Karnataka - 560068', '2012120025', '1', '2', 'upload_files/candidate_tracker/43595118623_resume experience .pdf', NULL, NULL, '2020-12-18', 1, '', '3', '8', '2020-12-22', 210000.00, '', '6', '2021-03-26', '2', '17500 Ctc and sathish team.', '1', '2', '1', '2', '2', '1', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-12 03:45:15', 58, '2020-12-23 01:22:46', 0, NULL, 1),
(2480, 'SAKTHIVEL A', '4', '8072452646', '8056552621', 'sakthidism77@gmail.com', '1995-05-08', 25, '2', '2', 'Jothi', 'Telecalling Executive', 40000.00, 2, 15000.00, 17000.00, 'No 204b irumathur dharmapuri', 'BlockB no 106 , Pavalam appartment, saidapet', '2012120026', '1', '2', 'upload_files/candidate_tracker/9227308984_CV_2020-12-04-060245.pdf', NULL, NULL, '2020-12-13', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-12 03:48:45', 1, '2020-12-12 03:58:07', 0, NULL, 1),
(2481, 'Prakash', '22', '8939922662', '9080660814', 'prakashravichandran@outlook.com', '1990-10-16', 30, '2', '2', 'ravichandran', 'ex- army man', 60000.00, 1, 35000.00, 45000.00, 'chennai', 'chennai', '2012120027', '1', '2', 'upload_files/candidate_tracker/77822593599_Resume.docx.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Stability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-12 05:04:45', 64, '2020-12-28 03:11:03', 0, NULL, 1),
(2482, 'Praveen Kumar P', '16', '8667407795', '', 'vgpraveen1@gmail.com', '1995-10-22', 25, '2', '2', 'Panneer selvam', 'Business', 100000.00, 1, 180000.00, 250000.00, 'Pallavaram, Chennai', 'Pallavaram, chennai', '2012140001', '1', '2', 'upload_files/candidate_tracker/39619671582_ResumeDocumentupdated.pdf', NULL, NULL, '2020-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-14 09:34:11', 1, '2020-12-14 09:40:40', 0, NULL, 1),
(2483, 'Sarah mercy. H', '11', '7358502184', '7358084816', 'Sarahmercy997@gmail.com', '1997-08-09', 23, '3', '2', 'Henry. A', 'operator', 30000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2012140002', '', '1', 'upload_files/candidate_tracker/13680195365_Sarah resume.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location Constraint', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 10:31:35', 50, '2020-12-14 04:53:59', 0, NULL, 1),
(2484, 'E Sam daniel', '22', '9790863872', '', 'samdani188@gmail.com', '1994-08-30', 26, '2', '2', 'SP ESA selvaraj', 'License inspector', 30000.00, 1, 351000.00, 460000.00, 'Pallavaram', 'chennai', '2012140003', '1', '2', 'upload_files/candidate_tracker/65826711416_Sam Daniel. Resume.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Frequent Job Changes, no content exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-14 11:00:21', 64, '2020-12-23 02:59:52', 0, NULL, 1),
(2485, 'Emishper Raj', '21', '7373141425', '', 'Emishperraj@gmail.com', '1992-12-21', 27, '2', '2', 'Geetha', 'System administrator', 20000.00, 2, 20000.00, 20000.00, 'Kanniyakumari', 'Chennai', '2012140004', '14', '2', 'upload_files/candidate_tracker/47805372628_Emishper Raj.pdf', NULL, NULL, '2020-12-16', 0, '', '5', '32', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expected Salary is High', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-14 11:09:52', 50, '2020-12-16 02:41:33', 0, NULL, 1),
(2486, 'K.Bhakya', '4', '8754421801', '8939211968', 'bhakijashu96@gmail.com', '1996-01-16', 24, '1', '2', 'K.Krishnakumar', 'Security guard', 18000.00, 1, 0.00, 11000.00, 'Vadapalani', 'Vadapalani', '2012140005', '', '1', 'upload_files/candidate_tracker/26454875324_Resume - Bhakya.docx', NULL, NULL, '2020-12-14', 0, '5300', '5', '11', NULL, 0.00, '', '0', NULL, '2', 'she wont suitable for e sales ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 11:12:23', 1, '2020-12-14 11:33:53', 0, NULL, 1),
(2487, 'Kumar', '13', '9500292483', '', 'kumarweb1@gmail.com', '1990-03-05', 30, '2', '1', 'Subbiramaniyan', 'Professionals', 15000.00, 0, 0.00, 27000.00, 'Chennai- T Nagar', 'T Nagar', '2012140006', '14', '2', 'upload_files/candidate_tracker/67130094422_Resume.docx', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 11:16:23', 50, '2020-12-15 04:49:11', 0, NULL, 1),
(2488, '', '0', '9176180872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 11:16:33', 0, NULL, 0, NULL, 1),
(2489, 'ganapathy', '4', '7550246528', '8056257165', 'ganapathyganu1998@gmail.com', '1998-05-28', 22, '1', '2', 'sujatha', 'tailor', 12000.00, 0, 0.00, 15000.00, 'Chennai', 'chennai', '2012140008', '', '1', 'upload_files/candidate_tracker/91870853347_Ganapathy_Resume (1).docx', NULL, NULL, '2020-12-14', 0, '5431', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for crm, fresher not int in RE.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 11:34:52', 50, '2020-12-14 12:44:23', 0, NULL, 1),
(2490, 'arul sibi v', '22', '8056147224', '', 'arulsibi89@gmail.com', '1989-03-25', 31, '2', '2', 'vibul anath', 'sbi manager', 180000.00, 1, 300000.00, 35000.00, 'chennai', 'Chennai', '2012140009', '1', '2', 'upload_files/candidate_tracker/66435958632_CamScanner 12-16-2020 11.17.54.pdf', NULL, NULL, '2020-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Exp in PPC, content writing', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-14 11:48:44', 1, '2020-12-16 11:50:46', 0, NULL, 1),
(2491, 'M.narasimman', '4', '8122768385', '7338922334', 'Narasimman1197@gmail.com', '1997-07-30', 23, '2', '2', 'K.madhanagopal', 'No', 18000.00, 1, 18000.00, 23000.00, 'No 66/46 periyanna st seven wells Chennai 600001', 'No 66/46 Periyanna St Seven Wells Chennai 600001', '2012140010', '1', '2', 'upload_files/candidate_tracker/18049343466_Resume 3 docx.docx', NULL, NULL, '2020-12-14', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not join. not okay with the salary package.', '1', '2', '', '1', '1', '', '2', '2021-01-04', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-14 12:06:10', 8, '2020-12-14 03:06:48', 0, NULL, 1),
(2492, '', '0', '8124238469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 12:36:01', 0, NULL, 0, NULL, 1),
(2493, 'Monica.D', '4', '9094848661', '', 'Kamalmoni031@gmail.com', '1999-03-30', 21, '1', '2', 'R.Durai', 'Carpenter', 25000.00, 1, 12000.00, 13000.00, '9, raja raja cholan street, MGR nagar, Chennai 78', '9,raja raja cholan street, MGR nagar, Chennai 78', '2012140012', '', '2', 'upload_files/candidate_tracker/42448558586_20201115_073308.pdf', NULL, NULL, '2020-12-14', 0, '5558', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, will not suite for calling, no communication.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 12:42:11', 50, '2020-12-14 01:02:46', 0, NULL, 1),
(2494, 'Astalakshmi', '4', '6380394913', '9789918768', 'Lachukathavarayan@gmail.com', '1997-11-05', 23, '1', '2', 'Kathavarayan', 'Milkman', 10000.00, 0, 12000.00, 12000.00, 'Ekkatuthangal', 'Ekkatuthangal', '2012140013', '', '2', 'upload_files/candidate_tracker/28863110712_MEENA.docx', NULL, NULL, '2020-12-14', 0, '5558', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will Not Suite For esale. may be for health.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 12:44:11', 50, '2020-12-14 01:21:26', 0, NULL, 1),
(2495, 'Balaji A', '4', '9080013063', '9551529399', 'bala.am93@gmail.com', '1993-10-27', 27, '2', '2', 'A', 'BPO', 50000.00, 2, 19500.00, 17000.00, 'Medavakkam Chennai', 'Chennai', '2012140014', '15', '2', 'upload_files/candidate_tracker/34728119667_Balaji Resume..docx', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 12:53:46', 1, '2020-12-14 01:02:08', 0, NULL, 1),
(2496, 'Muruganantham.p', '4', '9344328819', '7339289097', 'Sathish1234@gmail.com', '1998-12-08', 22, '2', '2', 'Pannerselvam muruganayaki', 'Mechanical', 15000.00, 1, 0.00, 8000.00, 'Radhanarasimmapuram', 'Radhanarasimmapuram', '2012140015', '1', '1', 'upload_files/candidate_tracker/38290628456_Scanned_20180627-2125.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, will not suite for calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-14 01:27:09', 50, '2020-12-14 02:38:39', 0, NULL, 1),
(2497, 'Imayavarman', '6', '9384339307', '8778814936', 'Imayanseenu@gmail.com', '1996-12-10', 24, '2', '2', 'No', 'No', 18000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2012140016', '1', '1', 'upload_files/candidate_tracker/7955874320_CamScanner 12-14-2020 14.12.28.pdf', NULL, NULL, '2020-12-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up and no communication. will not suite for calling. ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-14 02:04:05', 50, '2020-12-14 02:39:47', 0, NULL, 1),
(2498, '', '0', '7305883002', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 03:03:29', 0, NULL, 0, NULL, 1),
(2499, 'Akash.s', '4', '7401725650', '', 'akashak242000@gmail.com', '2000-04-02', 20, '1', '2', 'sekar.c', 'farmer', 20000.00, 1, 0.00, 15000.00, 'kattan kulathur', 'Sholinganallur', '2012140018', '', '1', 'upload_files/candidate_tracker/84051406164_Resume akash.pdf', NULL, NULL, '2020-12-16', 0, '2012140018', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 03:47:23', 50, '2020-12-16 04:57:11', 0, NULL, 1),
(2500, '', '0', '9360472838', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 04:03:23', 0, NULL, 0, NULL, 1),
(2501, 'sathish sampathkumar', '22', '9150928922', '', 'sathish.dropyourmail@gmail.com', '1986-01-04', 34, '2', '1', 'spouce- divya sathish', 'reelancer', 60000.00, 2, 40000.00, 60000.00, 'chennai', 'chennai', '2012140020', '1', '2', 'upload_files/candidate_tracker/38737447864_Sathish- Digital Marketing new (3) (1).docx', NULL, NULL, '2020-12-16', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-14 04:11:34', 50, '2020-12-16 04:57:53', 0, NULL, 1),
(2502, '', '0', '7904735872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 04:13:31', 0, NULL, 0, NULL, 1),
(2503, '', '0', '1212121212', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 06:53:11', 0, NULL, 0, NULL, 1),
(2504, '', '0', '1111111111', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012140023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-14 06:53:39', 0, NULL, 0, NULL, 1),
(2505, 'test', '2', '1515151515', '', '', '1994-08-25', 26, '2', '2', 'test', 'dfnsdfnsdf', 20000.00, 0, 0.00, 20000.00, 'dnfn fd', 'ch', '2012140024', '1', '1', 'upload_files/candidate_tracker/55840616180_sriram_tax.pdf', NULL, NULL, '2020-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-14 07:07:04', 1, '2020-12-28 05:19:55', 0, NULL, 1),
(2506, 'Jayasurya', '14', '9514135767', '', 'jayasurya127@gmail.com', '1998-07-12', 22, '4', '2', 'Srinivasan', 'Van Driver', 25000.00, 1, 0.00, 25000.00, 'No . 2, Lakshmi Ammal Street, Arumbakkam', 'Chennai', '2012140025', '', '1', 'upload_files/candidate_tracker/38424070401_Final+resume+2020+(2)+(2).pdf', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-14 10:29:07', 50, '2020-12-15 04:51:03', 0, NULL, 1),
(2507, 'Sathiyaruphan', '13', '8667755277', '8940166995', 'ramsankarruphan@gmail.com', '1999-06-24', 21, '2', '2', 'Ramsankar', 'TNEB Employe', 40000.00, 0, 0.00, 18000.00, 'Tirukoilur', 'Vadapalani', '2012150001', '15', '1', 'upload_files/candidate_tracker/79961707787_Sathiyaruphan\'s CV.pdf', NULL, NULL, '2020-12-15', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He donxquott have a basic knowledge.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 10:17:17', 1, '2020-12-15 10:25:51', 0, NULL, 1),
(2508, 'Venkatesh', '13', '9786053737', '', 'asalvenkat4230@gmail.com', '1999-02-04', 21, '2', '2', 'Rajpandiyan', 'Business', 25000.00, 2, 0.00, 16000.00, 'Kallakurichi', 'Chennai', '2012150002', '15', '1', 'upload_files/candidate_tracker/62977104494_VenkatResume.pdf.pdf', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 10:28:40', 50, '2020-12-15 04:51:24', 0, NULL, 1),
(2509, '', '0', '8098777516', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 10:30:00', 0, NULL, 0, NULL, 1),
(2510, 'P.H.UPENDRA KUMAR', '6', '8790019010', '', 'Upendra.ph816@gmail.com', '1997-06-04', 23, '2', '2', 'P.H.RENUKA DEVI', 'BEAUTICIAN', 25000.00, 0, 0.00, 4.50, 'Chittoor', 'Boomanhalli', '2012150004', '1', '1', 'upload_files/candidate_tracker/60389788164_Upendra Kumar (Resume).docx', NULL, NULL, '2020-12-16', 0, '', '5', '8', '1970-01-01', 227400.00, '', '2', '1970-01-01', '2', '18k th for RE gowshick team', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-15 10:34:22', 58, '2020-12-29 10:17:54', 0, NULL, 1),
(2511, 'Vignesh. S', '5', '7299094193', '', '', '1997-07-30', 23, '2', '2', 'S. Soundarajan', 'ADDITION TOOLS PVT LTD', 20000.00, 1, 18000.00, 20000.00, '3/13 kattaboman 7th street kodungaiyur', '3/13 Kattaboman 7th Street Kodungaiyur', '2012150005', '8', '2', 'upload_files/candidate_tracker/77662197828_CV_2020-11-25-053034.pdf', NULL, NULL, '2020-12-15', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'his priority in event management. still he is doing this business', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 10:52:18', 50, '2020-12-15 11:20:44', 0, NULL, 1),
(2512, 'Santhosh. K', '4', '6381796645', '9444270723', 'santhoshneymar2@gmail.com', '1999-10-22', 21, '2', '2', 'Kumar', 'Welding', 18000.00, 1, 0.00, 12000.00, 'No. 17,Lalitha Garden, madhavaram, chennai-600060', 'No. 17,Lalitha Garden ,Madhavaram, Chennai-600060', '2012150006', '1', '1', 'upload_files/candidate_tracker/92228381509_Santhosh_RESUME_[1].pdf', NULL, NULL, '2020-12-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-15 11:08:55', 50, '2020-12-16 04:58:20', 0, NULL, 1),
(2513, 'naveen patil', '5', '9845255480', '6360632808', 'np227228@gmail.com', '1997-09-24', 23, '2', '2', 'chandragouda patil', 'diploma', 100000.00, 1, 18000.00, 28000.00, 'degaon', 'bangalore/ ramamurthy nagar', '2012150007', '1', '2', 'upload_files/candidate_tracker/23480056138_NAVEEN RESUME (1).docx', NULL, NULL, '2020-12-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Mismatch in payslip. will not join. salary exp is high', '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-15 11:28:32', 1, '2020-12-15 11:39:01', 0, NULL, 1),
(2514, 'Sahana Shankar Moger', '20', '6360632808', '', 'sahanamoger57@gmail.com', '1998-06-16', 22, '2', '2', 'Anusuya', 'Tailor', 10000.00, 0, 16000.00, 25000.00, 'Siddapura Uttara kannada', 'Shantinagara, bangalore', '2012150008', '1', '2', 'upload_files/candidate_tracker/45280192784_sahana Moger resume.docx', NULL, NULL, '2020-12-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Mismatch In Payslip. Will Not Join. Salary Exp Is High', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-15 11:50:42', 58, '2020-12-23 01:23:35', 0, NULL, 1),
(2515, 'vignesh n', '6', '7449074424', '', 'wanted3014@gmail.com', '1999-07-04', 21, '2', '2', 'nandha gopal', 'lorry driver', 13000.00, 0, 13000.00, 15000.00, 'pallavaram', 'pallavaram', '2012150009', '15', '2', 'upload_files/candidate_tracker/36859068996_Vicky Resume.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '34', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'HE IS LOOKING FOR AN SI POST IN POLICE ONCE HE CLEARS THE EXAM HE WILL MOVE OUT FROM OUR COMPANY', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 12:09:23', 8, '2020-12-21 05:33:06', 0, NULL, 1),
(2516, 'Syed ali', '13', '8807442225', '', 'Syedmech79@gmail.com', '1991-07-05', 29, '3', '2', 'Abdul jabbar', 'Worker', 25000.00, 1, 18000.00, 25000.00, 'Tenkasi', 'Chennai', '2012150010', '', '2', 'upload_files/candidate_tracker/67386579538_Syed (1).docx', NULL, NULL, '2020-12-15', 10, '', '8', '27', NULL, 0.00, '', '0', NULL, '2', 'he is not attended.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 12:13:04', 1, '2020-12-15 12:18:03', 0, NULL, 1),
(2517, '', '0', '8098732939', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 12:16:27', 0, NULL, 0, NULL, 1),
(2518, 'J Nagoor meeran', '4', '9080862527', '7092156624', 'nagoorstunner70@gmail.com', '1996-08-01', 24, '3', '2', 'Jamaldeen', 'Grocery shop', 20000.00, 1, 10000.00, 12000.00, 'Perambur', 'Chennai', '2012150012', '', '2', 'upload_files/candidate_tracker/36011085577_Resume ccv 2020.doc', NULL, NULL, '2020-12-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for customer support and not interested in sales.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 12:48:42', 1, '2020-12-16 11:57:57', 0, NULL, 1),
(2519, 'Manimekala', '13', '6379242847', '', 'Mekala92@gmail.com', '1992-04-03', 28, '2', '2', 'Perumal', 'Farmer', 15000.00, 1, 445000.00, 550000.00, 'Erode', 'Erode', '2012150013', '14', '2', 'upload_files/candidate_tracker/78913211303_Mekala_Resume_new.pdf', NULL, NULL, '2020-12-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 01:19:29', 50, '2020-12-16 04:59:15', 0, NULL, 1),
(2520, 'Sheema Sultana', '4', '7406712798', '8317373327', 'ruhi56605@gmail.com', '1998-07-08', 22, '2', '1', 'Mohammad istekhar', 'Team Leader at wipro', 25000.00, 2, 17000.00, 20000.00, '# 22 Sophia convent Rose garden Neelasandra', '#22 Sophia convent rose garden Neelasandra', '2012150014', '1', '2', 'upload_files/candidate_tracker/51722218710_Sheema sultana Resume.pdf', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-15 01:28:55', 50, '2020-12-15 04:53:42', 0, NULL, 1),
(2521, 'test latha', '13', '8888800000', '9090090090', 'latha@cafsinfotech.in', '2005-11-30', 15, '2', '1', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2012150015', '2', '1', 'upload_files/candidate_tracker/7404277749_chart.pdf', NULL, NULL, '2020-12-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 01:35:44', 50, '2020-12-15 04:52:12', 0, NULL, 1),
(2522, 'bernotsingh k', '22', '9566155490', '', 'Justinbernod@gmail.com', '1995-07-01', 25, '2', '2', 'kanagaraj', 'having tea shop', 60000.00, 1, 12000.00, 15000.00, 'chennai', 'chennai', '2012150016', '1', '2', 'upload_files/candidate_tracker/97513290745_Resume new.docx', NULL, NULL, '2020-12-18', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much exp in Digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-15 02:37:10', 65, '2020-12-24 11:19:25', 0, NULL, 1),
(2523, 'DHARMA RAJ', '6', '7305332903', '', 'dharmaraj.p2013@gmail.com', '2000-03-01', 20, '2', '2', 'T.pondurai', 'Business', 16000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2012150017', '1', '1', 'upload_files/candidate_tracker/92296841562_DHARMARAJ. P Resume .pdf', NULL, NULL, '2021-02-10', 0, '', '8', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Left without attending the interview', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-15 02:54:13', 1, '2021-02-10 01:17:21', 0, NULL, 1),
(2524, '', '0', '4524563453', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 02:59:35', 0, NULL, 0, NULL, 1),
(2525, '', '0', '6380159347', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 03:04:31', 0, NULL, 0, NULL, 1),
(2526, '', '0', '9159534289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 03:45:29', 0, NULL, 0, NULL, 1),
(2527, 'KARTHIKEYAN K', '4', '7339490366', '7339490364', 'karthikeyankbd@gmail.com', '1999-10-11', 21, '2', '2', 'KOLANCHI S', 'SECURITY', 20000.00, 2, 0.00, 12000.00, 'No.9 MAIN ROAD THITTAKUDI CUDDALORE (D.T)', 'URAPAKKAM', '2012150021', '1', '1', 'upload_files/candidate_tracker/73875216749_my resume new.docx', NULL, NULL, '2020-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested for Sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-15 05:05:33', 50, '2020-12-16 09:46:03', 0, NULL, 1),
(2528, '', '0', '6369934684', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 05:07:22', 0, NULL, 0, NULL, 1),
(2529, 'Murali Dharan', '4', '7871632610', '', '', '1999-10-26', 21, '1', '2', 'Jayachanderan', 'farmer', 20000.00, 1, 0.00, 12000.00, 'Chengalpattu', 'sholing', '2012150023', '', '1', 'upload_files/candidate_tracker/75427033457_Resume_murali.docx', NULL, NULL, '2020-12-16', 0, '2012150023', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 05:26:11', 50, '2020-12-16 04:59:50', 0, NULL, 1),
(2530, 'Karthick R', '4', '8072279343', '8939365270', 'karthickramu66@gmail.com', '1998-11-29', 21, '2', '2', 'Ramu', 'Own business', 250000.00, 1, 0.00, 12000.00, 'Velachery', 'Velachery', '2012150024', '15', '1', 'upload_files/candidate_tracker/42415012575_Karthik.pdf', NULL, NULL, '2020-12-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-15 05:31:23', 50, '2020-12-16 05:01:49', 0, NULL, 1),
(2531, '', '0', '9941311249', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 05:54:04', 0, NULL, 0, NULL, 1),
(2532, 'abinaya', '22', '8148276551', '', 'abinayalakshman23@gmail.com', '1993-04-23', 27, '2', '1', 'vignesh', 'programmer', 18500.00, 1, 3.50, 4.20, 'thanjavur', 'poonamalle', '2012150026', '1', '2', 'upload_files/candidate_tracker/99385610164_Abinaya Resume.pdf', NULL, NULL, '2020-12-16', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-15 05:57:57', 1, '2020-12-15 06:31:21', 0, NULL, 1),
(2533, '', '0', '7358008459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012150027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-15 06:00:01', 0, NULL, 0, NULL, 1),
(2534, '', '0', '9361128747', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 08:48:36', 0, NULL, 0, NULL, 1),
(2535, 'Pavithra R', '22', '7373627685', '9791170164', 'pavikarthi2794@gmail.com', '1994-05-27', 26, '2', '1', 'Mahendran', 'Developer', 30000.00, 1, 23500.00, 25000.00, 'Chennai', 'Chennai', '2012160002', '1', '2', 'upload_files/candidate_tracker/769944496_My CV2020.pdf', NULL, NULL, '2020-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Only SEO Exp, No PPC xxamp Content exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-16 10:26:51', 64, '2020-12-23 03:07:23', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2536, '', '0', '9597470686', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 11:22:06', 0, NULL, 0, NULL, 1),
(2537, '', '0', '9380012300', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 11:22:43', 0, NULL, 0, NULL, 1),
(2538, 'P.pradeep', '6', '7338706427', '8608499832', 'pp2535434@gmail.com', '1995-04-14', 25, '1', '2', 'S.palani', 'Chennai', 2400.00, 0, 13000.00, 13000.00, 'Marakkanam', 'Chennai', '2012160005', '', '2', 'upload_files/candidate_tracker/4361405713_CamScanner 12-16-2020 11.43.36.pdf', NULL, NULL, '2020-12-16', 0, 'jobs', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'not fit for telecalling and re profile', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 11:27:39', 1, '2020-12-16 12:18:12', 0, NULL, 1),
(2539, 'KP Abdul Sathar', '5', '7338911172', '8838530021', 'abdulsatr11gmail.Com', '1993-12-15', 27, '2', '2', 'KP Aboobacker', 'Govt servant', 50000.00, 1, 17000.00, 25000.00, 'Port blair, Andaman & nicobar islands', 'Porur, chennai.', '2012160006', '14', '2', 'upload_files/candidate_tracker/64894433391_Sathar CV2.pdf', NULL, NULL, '2020-12-16', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not okay with the salary package', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 11:40:25', 8, '2020-12-16 03:00:53', 0, NULL, 1),
(2540, 'Praveen V', '5', '9786331301', '8248506602', 'Praviin22@yahoo.in', '1989-05-22', 31, '2', '1', 'Sowmiya Natarajan', 'House wife', 30000.00, 0, 280000.00, 300000.00, 'Chennai', 'Chennai', '2012160007', '14', '2', 'upload_files/candidate_tracker/10382435220_updated Resume_Praveen.doc', NULL, NULL, '2020-12-17', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 11:55:11', 50, '2020-12-17 05:13:03', 0, NULL, 1),
(2541, 'Aman Yadav', '17', '7042447852', '9315800376', 'yadavaman808@gmail.com', '1995-09-18', 25, '2', '2', 'Jagbir Singh Yadav', 'Businessman', 80000.00, 2, 0.00, 350000.00, 'Gurgaon', 'Bangalore', '2012160008', '1', '1', 'upload_files/candidate_tracker/85303532714_Aman Yadav Resume.doc', NULL, NULL, '2020-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-16 11:58:17', 1, '2020-12-16 12:27:48', 0, NULL, 1),
(2542, 'Karthika paneer', '22', '7904642454', '', 'Karthika221095@gmail.com', '1995-10-22', 25, '2', '2', 'Paneer selvam', 'Retired', 20000.00, 1, 0.00, 3.70, 'Chennai', 'Chennai', '2012160009', '1', '2', 'upload_files/candidate_tracker/13779519476_Karthika Paneer Resume.pdf', NULL, NULL, '2020-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good in Communication, High CTC expectation', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-16 12:12:28', 65, '2020-12-24 11:21:46', 0, NULL, 1),
(2543, 'Parvez alom', '5', '6364051780', '7892008683', 'parvesbeast@gmail.com', '1998-02-17', 22, '2', '2', 'Abdul anish', 'ELECTRICIAN', 30000.00, 0, 20000.00, 25000.00, 'Bangalore', 'Bangalore', '2012160010', '1', '2', 'upload_files/candidate_tracker/26621708535_null.docx', NULL, NULL, '2020-12-16', 0, '', '5', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will not suit for our filed and he donxquott have patience ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-16 12:22:28', 50, '2020-12-16 04:28:33', 0, NULL, 1),
(2544, '', '0', '9626860496', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 01:10:10', 0, NULL, 0, NULL, 1),
(2545, '', '0', '8083577303', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 02:00:53', 0, NULL, 0, NULL, 1),
(2546, 'Radhika', '4', '8904341602', '9902792721', 'radhikapmsmgr@gmail.com', '1995-12-06', 25, '2', '2', 'Manjunatha', 'Agriculture', 80000.00, 2, 0.00, 20.00, 'Kolar', 'Nagawara Bangalore', '2012160013', '7', '1', 'upload_files/candidate_tracker/24566406276_radhika resume-2.docx', NULL, NULL, '2020-12-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not join. salary exp is high.', '1', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 02:13:20', 50, '2020-12-16 02:48:53', 0, NULL, 1),
(2547, '', '0', '7904814911', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 02:57:23', 0, NULL, 0, NULL, 1),
(2548, '', '0', '8828099176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 04:01:00', 0, NULL, 0, NULL, 1),
(2549, 'Latha test', '13', '1234554321', '', 'Latha@gmail.com', '2005-12-14', 15, '4', '2', 'Latha Test', 'Latha Test', 12000.00, 2, 0.00, 10000.00, 'Latha Test', 'Latha Test', '2012160016', '', '1', 'upload_files/candidate_tracker/54000183245_Latharesume.pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 04:38:44', 1, '2020-12-16 05:55:32', 0, NULL, 1),
(2550, 'latha test', '13', '6789054321', '', 'latha@cafsinfotech.in', '2005-12-16', 15, '2', '1', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test Latha', 'Test Latha', '2012160017', '1', '1', 'upload_files/candidate_tracker/11848647702_11761 (1).pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-16 04:45:17', 1, '2020-12-16 04:47:01', 0, NULL, 1),
(2551, '', '0', '1234543215', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012160018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-16 04:48:05', 0, NULL, 0, NULL, 1),
(2552, 'kavitha', '22', '8056175454', '', 'kavishri.mano@gmail.com', '1992-01-06', 28, '2', '1', 'praveen kumar', 'private', 50000.00, 1, 400000.00, 520000.00, 'chennai', 'chennai', '2012160019', '1', '2', 'upload_files/candidate_tracker/65537214167_Kavitha DM_Resume.pdf', NULL, NULL, '2020-12-19', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Stability issues,High CTC exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-16 05:14:01', 64, '2020-12-23 03:08:12', 0, NULL, 1),
(2553, 'Imran Ali', '4', '6374417074', '', 'Imranalikingdom@gmail.com', '1997-06-19', 23, '3', '2', 'Mohammed Ali', 'Auto driver', 180000.00, 2, 0.00, 12000.00, 'Pallavaram', 'Pallavaram', '2012160020', '', '1', 'upload_files/candidate_tracker/38597738889_RESUME imran ali(1).pdf', NULL, NULL, '2020-12-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 05:45:02', 50, '2020-12-17 05:13:58', 0, NULL, 1),
(2554, 'test latha', '13', '3456789876', '', 'latha@cafsinfotech.in', '2005-12-16', 15, '2', '2', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2012160021', '1', '1', 'upload_files/candidate_tracker/96466624419_11761.pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-16 05:50:20', 1, '2020-12-16 05:52:14', 0, NULL, 1),
(2555, 'test latha', '13', '7687890897', '', 'latha@cafsinfotech.in', '2005-12-16', 15, '3', '2', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2012160022', '', '1', 'upload_files/candidate_tracker/17943951462_11761.pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-16 05:52:52', 1, '2020-12-16 05:53:56', 0, NULL, 1),
(2556, 'Latha test', '13', '6789034678', '', 'Latha@gmail.com', '2005-12-16', 15, '2', '2', 'Test', 'Test', 12000.00, 0, 0.00, 12000.00, 'Latha Test', 'Test', '2012160023', '1', '1', 'upload_files/candidate_tracker/42286093263_Latharesume.pdf', NULL, NULL, '2020-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-16 05:58:53', 1, '2020-12-16 06:01:06', 0, NULL, 1),
(2557, 'Praveen kumar', '6', '7695912770', '9003714457', 'Praveenvaithi42@gmail.com', '1998-08-21', 22, '2', '2', 'K. Vaithilingam', 'Catering service', 50000.00, 1, 12000.00, 16000.00, 'Panruti', 'Velachery', '2012160024', '1', '2', 'upload_files/candidate_tracker/39512237205_2020.pdf', NULL, NULL, '2020-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-16 06:11:17', 1, '2020-12-16 06:16:01', 0, NULL, 1),
(2558, 'K.divya', '4', '7904319791', '9940243354', 'divyadoll0114@gmail.com', '1997-08-14', 23, '2', '2', 'K.Lalita', 'Ccs', 300000.00, 1, 3.00, 22000.00, 'Vip road agency house Andaman & Nicobar', '109/38, East Vanniyar Street, west k k nagar', '2012160025', '1', '2', 'upload_files/candidate_tracker/86298757592_RESUME(1).docx', NULL, NULL, '2020-12-22', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-16 07:34:46', 1, '2020-12-16 07:42:26', 0, NULL, 1),
(2559, 'subhash', '6', '9361155049', '9444728493', 'SubhashPanchavarnam@gmail.com', '1993-01-03', 27, '2', '2', 'panchavarnam', 'retired', 30000.00, 1, 14500.00, 20000.00, 'chennai', 'chennai', '2012170001', '1', '2', 'upload_files/candidate_tracker/81331727592_Subhash 1512.doc', NULL, NULL, '2020-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-17 12:32:06', 1, '2020-12-17 11:26:03', 0, NULL, 1),
(2560, 'Saranya', '4', '7708664282', '8778166179', 'Saranyasekar2595@gmail.com', '1995-07-25', 25, '1', '1', 'Vijaya kumar', 'Telecom service', 20000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2012170002', '', '2', 'upload_files/candidate_tracker/74993086052_Saranya Resume.docx', NULL, NULL, '2020-12-17', 0, '5300', '5', '21', NULL, 0.00, '', '0', NULL, '2', 'not fit for our process', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 11:05:28', 1, '2020-12-17 11:14:15', 0, NULL, 1),
(2561, '', '0', '9591973592', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 11:11:47', 0, NULL, 0, NULL, 1),
(2562, '', '0', '9591517870', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 11:26:11', 0, NULL, 0, NULL, 1),
(2563, 'JEGADESAN', '14', '9080622322', '6384105531', 'jegadesans9@gmail.com', '1999-05-20', 21, '3', '2', 'Sukumar s', 'Auto driver', 10.00, 2, 0.00, 20.00, '106/2 mettucolony, dalapathisamudram, tirunelveli', 'Santhosapuram,vijayanagaram,medavakkam,chennai', '2012170005', '', '1', 'upload_files/candidate_tracker/61910813528_Jegadesan_s_CV.pdf', NULL, NULL, '2020-12-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 11:40:43', 50, '2020-12-17 05:13:21', 0, NULL, 1),
(2564, 'SARAN.D', '6', '8220530659', '8667306672', 'danceforlife0907@gmail.com', '1998-02-27', 22, '2', '2', 'DHANASEKAR E', 'Club barrer', 12000.00, 1, 15000.00, 17000.00, 'F 30 S.S.PURAM M.K.RADHA NAGAR TEYNAMPET CH-60006', 'TEYNEMPET', '2012170006', '1', '2', 'upload_files/candidate_tracker/15616345682_1601959673726_SARAN RESUME.docx', NULL, NULL, '2020-12-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales and not interested too', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-17 12:24:12', 1, '2020-12-18 11:48:59', 0, NULL, 1),
(2565, 'Pagadala Meghana', '4', '9866923973', '', '', '1999-07-16', 21, '2', '2', 'Pagadala narasimulu', 'Physical education teacher', 120000.00, 0, 0.00, 30000.00, 'Bangalore', 'Bangalore', '2012170007', '1', '1', 'upload_files/candidate_tracker/10297337366_CV_2020-11-19-115847.pdf', NULL, NULL, '2020-12-19', 0, '', '5', '42', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she willnot suit for crm\nbad communication and she will not sustain', '1', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-17 12:40:19', 50, '2020-12-19 10:10:03', 0, NULL, 1),
(2566, '', '0', '9094110289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 12:58:41', 0, NULL, 0, NULL, 1),
(2567, '', '0', '8778697195', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 03:19:43', 0, NULL, 0, NULL, 1),
(2568, 'saranya damodaran', '4', '8248066865', '8754190653', 'saranyadamu22@gmail.com', '1996-08-11', 24, '2', '2', 'damodaran', 'business', 20000.00, 1, 0.00, 16000.00, 'chennai', 'chengelpet', '2012170010', '1', '1', 'upload_files/candidate_tracker/83113740040_cv (6).pdf', NULL, NULL, '2020-12-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not relocate. will not join.', '1', '1', '', '1', '1', '', '2', '2020-12-18', '1', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-17 04:36:43', 64, '2020-12-23 03:09:58', 0, NULL, 1),
(2569, 'Ramkumar', '25', '8973129470', '', 'Ramkutty8124@gmail.com', '1997-01-24', 23, '2', '2', 'Balakrishnan', 'Business', 35000.00, 1, 0.00, 20000.00, 'Padappai', 'old perungalathur', '2012170011', '1', '1', 'upload_files/candidate_tracker/89734109825_Ramkumar_resume.docx', NULL, NULL, '2020-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Exp and not fit for digital Marketing', '8', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-17 04:38:53', 64, '2020-12-26 10:42:48', 0, NULL, 1),
(2570, '', '0', '9786701289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 04:59:58', 0, NULL, 0, NULL, 1),
(2571, 'Jebaraj Pernatshaw', '13', '9629239295', '', 'bernadshaw1996@outlook.com', '1996-11-22', 24, '2', '2', 'bhavani christy', 'farmer', 28000.00, 1, 15500.00, 25000.00, 'Tirunelveli', 'chennai', '2012170013', '15', '2', 'upload_files/candidate_tracker/27052475663_shaw_phpDeveloper (1).pdf', NULL, NULL, '2020-12-19', 60, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 05:05:50', 50, '2020-12-19 04:23:10', 0, NULL, 1),
(2572, 'Jyothi B v', '13', '9840283117', '', 'jyothibv8@gmail.com', '1993-07-07', 27, '3', '2', 'B r venkatesan', 'Php developer', 25000.00, 0, 300000.00, 400000.00, 'Nagari', 'Velacherry', '2012170014', '', '2', 'upload_files/candidate_tracker/26353782152_Updated_Resume.docx', NULL, NULL, '2020-12-19', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'task not Completed.', '2', '2', '0', '1', '1', '0', '2', '2020-12-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 05:08:44', 1, '2020-12-17 05:12:22', 0, NULL, 1),
(2573, 'Thamizh vanan', '13', '8940371518', '', 'vananmca22@gmail.com', '1996-06-22', 24, '3', '2', 'Settu', 'Farmer', 10000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2012170015', '', '2', 'upload_files/candidate_tracker/32577500593_Tamilresume.pdf', NULL, NULL, '2020-12-18', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 05:24:49', 1, '2020-12-17 05:28:22', 0, NULL, 1),
(2574, '', '0', '3432156789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 05:30:10', 0, NULL, 0, NULL, 1),
(2575, '', '0', '0236987452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012170017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-17 05:50:19', 0, NULL, 0, NULL, 1),
(2576, 'Vajith raguman', '22', '8870786857', '', 'vajithraguman@gmail.com', '1999-03-15', 21, '2', '2', 'I.Mohamed Sulthan', 'Business', 20000.00, 2, 0.00, 10000.00, 'Theni', 'Chennai', '2012170018', '1', '1', 'upload_files/candidate_tracker/46762748583_VRResume.doc', NULL, NULL, '2020-12-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, no Exp in Digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'I1000', '0', NULL, NULL, NULL, 1, '2020-12-17 05:56:32', 50, '2020-12-18 10:35:05', 0, NULL, 1),
(2577, 'saikrishna', '13', '7207650532', '8297207843', 'skrishnasaip@gmail.com', '1993-07-15', 27, '2', '1', 'swetha', 'software engineer', 40000.00, 1, 300000.00, 500000.00, 'chennai', 'chennai', '2012170019', '15', '2', 'upload_files/candidate_tracker/1372343792_Sai_Krishna_Profile_3.10.pdf', NULL, NULL, '2020-12-22', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-17 06:21:37', 1, '2020-12-21 11:04:39', 0, NULL, 1),
(2578, 'Vignesh. V', '13', '9698169650', '9786081296', 'vigneshswemig@gmail.com', '1993-01-21', 27, '2', '2', 'Veeramani', 'Former', 20000.00, 1, 18.00, 25.00, 'CHENNAI', 'Chennai', '2012170020', '5', '2', 'upload_files/candidate_tracker/40581546733_php _26-Oct-17_19:19:21.docx', NULL, NULL, '2020-12-18', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-17 07:36:55', 1, '2020-12-18 01:44:23', 0, NULL, 1),
(2579, 'T.Pramodh', '6', '9972988985', '7483509032', 'pramodhkumarpk01@gmail.com', '1998-11-14', 22, '2', '2', 'M.Thyagarajan', 'Business', 20000.00, 1, 0.00, 20000.00, 'No.11, 1st A cross Madiwala', 'No.11, 1st A cross Madiwala', '2012180001', '1', '1', 'upload_files/candidate_tracker/40682275089_Pramodh.docx', NULL, NULL, '2020-12-18', 0, '', '5', '39', NULL, 0.00, '', '0', NULL, '1', 'HE WILL NOT SUSTAIN IN SALES FIELD', '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-18 10:15:48', 1, '2020-12-18 02:53:00', 0, NULL, 1),
(2580, 'Kavitha. R', '4', '9841530297', '9941530297', 'Rajamkavi30@gmail.com', '1994-05-30', 26, '1', '1', 'Spouse', 'Supervisor', 60000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2012180002', '', '2', 'upload_files/candidate_tracker/97977558218_Kavitha.R.doc', NULL, NULL, '2020-12-18', 15, '5300', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected due to long distance', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:03:03', 8, '2020-12-18 02:39:05', 0, NULL, 1),
(2581, 'Naveen Shettimani', '17', '8088122200', '8884084560', 'naveenshettimani1008@gmail.com', '1997-08-27', 23, '2', '2', 'Ravindra', 'Fresher', 50000.00, 1, 0.00, 25000.00, 'Sankeshwar, belagavi', 'Kengeri satellite town, Bangalore', '2012180003', '1', '1', 'upload_files/candidate_tracker/89488985524_NAVEEN SHETTIMANI(RESUME)-converted-2.pdf', NULL, NULL, '2020-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-18 11:08:41', 1, '2020-12-18 11:38:36', 0, NULL, 1),
(2582, 'Shyamala', '4', '9080835323', '9566252923', 'Shyamubaby28@gmail.com', '1999-10-24', 21, '1', '2', 'Parthiban', 'Driver', 8000.00, 1, 10000.00, 13000.00, 'L.30 pushapangar nungambakkam chennai 600034', 'L.30 pushapangar nungambakkam chennai 600034', '2012180004', '', '2', 'upload_files/candidate_tracker/82842978870_imgtopdf_12122020092743.pdf', NULL, NULL, '2020-12-18', 1, '5153', '3', '8', '2020-12-21', 144000.00, '', '2', '1970-01-01', '2', '12k ctc and for keerthiga team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:15:36', 7, '2020-12-19 05:25:33', 0, NULL, 1),
(2583, '', '0', '8220430659', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 11:23:50', 0, NULL, 0, NULL, 1),
(2584, 'J Thiruppathi', '5', '9123518151', '9092288850', 'jthirulakshan18@gmail.com', '1985-04-05', 35, '2', '1', 'Savitri', 'House wife', 40000.00, 5, 32000.00, 40000.00, 'TAMBARAM', 'TAMBARAM', '2012180006', '3', '2', 'upload_files/candidate_tracker/59415666922_THIRUPPATHI thiru.docx', NULL, NULL, '2020-12-18', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile\n', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:44:36', 1, '2020-12-18 12:00:02', 0, NULL, 1),
(2585, 'Imran Khan', '5', '9092288850', '7871393398', 'imran.308154@gmail.com', '1992-08-30', 28, '2', '2', 'Mohamad Ismail', 'Labour', 40000.00, 2, 360000.00, 450000.00, 'Aranthangi', 'Adambakkam', '2012180007', '3', '2', 'upload_files/candidate_tracker/50892598295_imran_resume(AP) .pdf', NULL, NULL, '2020-12-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'we offered 26k. no response from his end. will not join.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:44:43', 1, '2020-12-18 11:55:35', 0, NULL, 1),
(2586, 'V. Sathiyamoorthy', '6', '7401380477', '8778190205', 'Sathiyuva1997@gmail.com', '1997-11-11', 23, '1', '2', 'Vengadesan', 'Cooli', 120000.00, 2, 0.00, 15000.00, '19/65 pudhumanai Kuppam 5th st royapuram Ch 13', '19/65 pudhumanai Kuppam 5th st royapuram Ch.13', '2012180008', '', '1', 'upload_files/candidate_tracker/72472509313_V.SATHIYAMOORTHY-1.docx', NULL, NULL, '2020-12-18', 0, 'P1065', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up and will not suite for calling', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 11:45:50', 50, '2020-12-18 12:14:01', 0, NULL, 1),
(2587, '', '0', '8746829623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 11:50:59', 0, NULL, 0, NULL, 1),
(2588, '', '0', '9941530297', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 11:57:28', 0, NULL, 0, NULL, 1),
(2589, 'Mercy', '4', '9940206196', '7358298335', 'Ewangelinmercy@gmAil.com', '2000-06-08', 20, '1', '2', 'A.mohan', 'Traitor', 80000.00, 1, 0.00, 12000.00, '587\'v\'block poondithangammal st new washermenpet', '587\'v\'block poondithangammal st new washermenpet', '2012180011', '', '1', 'upload_files/candidate_tracker/83623807448_My_CV (5)(1).pdf', NULL, NULL, '2020-12-18', 0, 'P1065', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 12:28:35', 1, '2020-12-18 01:36:17', 0, NULL, 1),
(2590, 'Priyadharshini P', '4', '8072782656', '9444231218', 'priyadharshinishaba@gmail.com', '1997-05-17', 23, '3', '2', 'Parthipan', 'Driver', 120000.00, 1, 0.00, 15000.00, 'T.nagar', 'T.nagar', '2012180012', '', '1', 'upload_files/candidate_tracker/53824508738_priya resume1234-1.pdf', NULL, NULL, '2020-12-18', 0, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not bold ...', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-18 12:49:35', 8, '2020-12-18 02:40:28', 0, NULL, 1),
(2591, 'Sarthak p r', '6', '9480219037', '', 'sarthakpr1997@gmail.com', '1997-03-08', 23, '2', '2', 'Rajashekar M E', 'Agriculture', 10000.00, 1, 0.00, 18000.00, 'Bangalore', 'Bangalore', '2012180013', '1', '1', 'upload_files/candidate_tracker/61466454838_Sarthak Resume_05-Dec-20_19.52.14.pdf', NULL, NULL, '2020-12-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-18 01:06:51', 50, '2020-12-19 04:23:37', 0, NULL, 1),
(2592, 'Parthiban', '22', '7358643323', '8754473624', 'talktoparthi@gmail.com', '1990-02-08', 30, '2', '1', 'Paskaran', 'Central Government', 40000.00, 2, 500000.00, 800000.00, 'Chennai', 'Chennai', '2012180014', '1', '2', 'upload_files/candidate_tracker/64897294740_Parthiban resume.docx', NULL, NULL, '2020-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is in Govt employment, looking for freelance High budget exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-18 01:43:13', 65, '2020-12-24 11:09:43', 0, NULL, 1),
(2593, 'Mohamed sayeed afrith', '6', '7358729143', '', 'shahithafridi19@gmail.com', '1998-08-06', 22, '2', '2', 'Naina mohamed', 'Sales manager in co operative society', 40000.00, 3, 0.00, 18000.00, 'Tenkasi', 'Guindy', '2012180015', '1', '1', 'upload_files/candidate_tracker/7072246452_Resume_18_12_2020_1_29_505.pdf', NULL, NULL, '2020-12-22', 0, '', '3', '8', '2020-12-28', 151800.00, '', '3', '2021-01-04', '1', '12k th for srikanth team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-18 03:24:13', 7, '2020-12-24 03:54:10', 0, NULL, 1),
(2594, '', '0', '8682872566', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 05:04:02', 0, NULL, 0, NULL, 1),
(2595, 'Rajkumar', '13', '9750826613', '', 'rajkumar.vca30@gmail.com', '1990-04-26', 30, '2', '2', 'Velmurugan', 'Farmer', 10000.00, 1, 3.85, 4.50, 'Virudhachalam', 'Chennai', '2012180017', '15', '2', 'upload_files/candidate_tracker/80753893755_rajkumar_resume.pdf', NULL, NULL, '2020-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-18 05:07:06', 1, '2020-12-18 05:24:03', 0, NULL, 1),
(2596, '', '0', '9791800833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012180018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-18 05:31:18', 0, NULL, 0, NULL, 1),
(2597, 'b.c.nivethika', '22', '9677170043', '9600102208', 'bcnive@gmail.com', '1986-05-23', 34, '2', '1', 'ashokkumar', 'fit technologist', 40000.00, 1, 20000.00, 25000.00, 'chrompet', 'hastinapuram', '2012180019', '1', '2', 'upload_files/candidate_tracker/31058263550_Nivethika bc -PDF.docx', NULL, NULL, '2020-12-21', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-18 05:50:49', 64, '2020-12-23 03:11:45', 0, NULL, 1),
(2598, 'Jeyalaxmi Kathiresan', '22', '8367362110', '9840057357', 'jeyalaxmi7@gmail.com', '1996-11-06', 24, '2', '1', 'Vivek Ramasamy', 'Business', 45000.00, 1, 25000.00, 30000.00, 'Trichirapalli', 'Trichirapalli', '2012180020', '1', '2', 'upload_files/candidate_tracker/69924272002_Resume (JV) (3).pdf', NULL, NULL, '2020-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good Profile, but high Exp xxamp not ok for Agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-18 05:52:58', 64, '2020-12-23 03:09:12', 0, NULL, 1),
(2599, 'ramya', '22', '9003726496', '', 'ramyamurugan98@gmail.com', '1998-07-03', 22, '2', '2', 'murugan', 'senior digital marketer', 100000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2012180021', '1', '2', 'upload_files/candidate_tracker/9837859471_Resume (2).docx', NULL, NULL, '2020-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Freelance only not much exp and very high Package Exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-18 06:37:46', 65, '2020-12-24 11:11:07', 0, NULL, 1),
(2600, 'Arun ladu', '22', '9941338737', '', 'arun3737pc@gmail.com', '1991-02-18', 29, '2', '2', 'Paul Sudhakar', 'Retired Businessman', 40000.00, 1, 144000.00, 240000.00, 'Kodambakkam, Chennai', 'Kodambakkam, Chennai', '2012180022', '1', '2', 'upload_files/candidate_tracker/18449377249_Resume 07-11-2020.pdf', NULL, NULL, '2020-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable,less exp high exp', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-18 06:38:55', 64, '2020-12-23 03:01:18', 0, NULL, 1),
(2601, 'Manikandan', '13', '9344591281', '', 'tmanikandan0122@gmail.com', '1989-07-20', 31, '2', '1', 'Nandhini', 'Housewife', 25000.00, 1, 300000.00, 420000.00, 'No 97, South Street, PAGAIVENDRI, Ramanathapuramdt', '12/273,12th Block, Mogappair', '2012190001', '15', '2', 'upload_files/candidate_tracker/87322390548_mani_resume.pdf', NULL, NULL, '2021-01-08', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 09:15:32', 60, '2021-01-08 06:54:35', 0, NULL, 1),
(2602, 'Sai Sathvik Pola', '5', '9035976725', '7892572643', 'polasatvik@gmail.com', '1995-09-07', 25, '2', '2', 'Govinda rajulu pola', 'Business', 100000.00, 1, 0.00, 400000.00, 'Bengaluru', 'Bengaluru', '2012190002', '1', '1', 'upload_files/candidate_tracker/71266100933_Sathvik Pola.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He Will Not Sustain....He Will Not Handle Sales Pressure', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-19 11:27:27', 50, '2020-12-21 05:35:31', 0, NULL, 1),
(2603, '', '0', '7892572643', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 11:39:57', 0, NULL, 0, NULL, 1),
(2604, 'I Abdul Bari', '25', '8428239473', '', 'abdulbari0072@gmail.com', '1997-03-21', 23, '2', '2', 'J Ibrahim', 'Labor', 20000.00, 1, 0.00, 15000.00, '12b north kadaya st,tenkasi', 'Guindy', '2012190004', '1', '1', 'upload_files/candidate_tracker/60352523623_Abdul Bari resume.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up. will not suite for sales', '8', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-19 11:43:10', 64, '2020-12-23 03:12:20', 0, NULL, 1),
(2605, '', '0', '7019466531', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 01:20:16', 0, NULL, 0, NULL, 1),
(2606, 'kishore k', '6', '9791098415', '', 'kishorevelu1999@gmail.com', '1999-07-30', 21, '2', '2', 'kandavelu', 'driver', 30000.00, 1, 13000.00, 18000.00, 'Chennai', 'chenn', '2012190006', '1', '2', 'upload_files/candidate_tracker/75992685978_Kishore new 2.0.docx', NULL, NULL, '2020-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for RE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-19 01:57:52', 58, '2020-12-23 02:42:30', 0, NULL, 1),
(2607, 'GOPINATH S', '4', '9850209105', '9551688852', 'jerryvelvet0503@gmailcom', '1998-07-13', 22, '1', '2', 'SELVAM', 'Salaried', 60000.00, 1, 20000.00, 20000.00, 'Gopalapuram', 'Gopalapuram', '2012190007', '', '2', 'upload_files/candidate_tracker/45101206197_gopinath resume.docx', NULL, NULL, '2020-12-19', 1, 'Riyaz', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up and IRDA code active in exide. zero pdt knowledge.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 02:42:10', 50, '2020-12-19 03:10:16', 0, NULL, 1),
(2608, '', '0', '8086923961', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 02:50:01', 0, NULL, 0, NULL, 1),
(2609, 'Jagadeesh . S', '4', '7397348848', '6381358266', 'jagadeeshmagician220@gmail.com', '1996-10-19', 24, '1', '1', 'Selvam', 'Business', 60000.00, 1, 20000.00, 250000.00, 'Chennai', 'Chennai', '2012190009', '', '2', 'upload_files/candidate_tracker/95138863261_Jagadeesh resum.pdf', NULL, NULL, '2020-12-19', 1, 'Job', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'IRDA active in exide, wife working in aegon. zero pdt knowledge. exp 25k', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 03:21:32', 1, '2020-12-19 03:38:39', 0, NULL, 1),
(2610, 'Mohamed Mansoor', '6', '9600054937', '6380061319', 'mansoormd98474@gmail.com', '1998-04-30', 22, '2', '2', 'Mohammed Hussain', 'Dhobi', 20000.00, 1, 15000.00, 19000.00, 'Chennai', 'Chennai', '2012190010', '1', '2', 'upload_files/candidate_tracker/24087168128__mansoor resume.doc', NULL, NULL, '2020-12-25', 15, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'looking non voice process', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-19 03:42:44', 1, '2020-12-25 11:16:22', 0, NULL, 1),
(2611, 'Nithish', '5', '9500036515', '', 'Nithishwins13@gmail.com', '1999-10-13', 21, '2', '2', 'UDAYA SHANKAR', 'Salesman', 300000.00, 1, 0.00, 16000.00, 'Velachery', 'Velachery', '2012190011', '1', '1', 'upload_files/candidate_tracker/65238329433_CV%2019-10-2019.docx', NULL, NULL, '2020-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-19 03:47:07', 1, '2020-12-19 03:55:18', 0, NULL, 1),
(2612, 'Sameer. S', '6', '9790593213', '', 'Sameershariffjunaidshariff@gmail.com', '2000-03-15', 20, '2', '2', 'Shabeer', 'Labour', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2012190012', '1', '1', 'upload_files/candidate_tracker/37603795560_New%20resume.docx', NULL, NULL, '2020-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-19 04:01:16', 1, '2020-12-19 04:13:10', 0, NULL, 1),
(2613, '', '0', '9962292632', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 04:37:51', 0, NULL, 0, NULL, 1),
(2614, 'Manoj Pandi', '5', '9080350769', '', 'manojmariner999@gmail.com', '1999-06-19', 21, '2', '2', 'Manoj Pandi', 'business devleopment', 30.00, 0, 0.00, 24000.00, 'madurai', 'chennai', '2012190014', '3', '2', 'upload_files/candidate_tracker/98134686726_Manoj 1.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for RM. fresher and salary exp is high 25K. no convincing skill.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 05:56:19', 8, '2020-12-21 05:44:35', 0, NULL, 1),
(2615, 'Sangeetha.V', '4', '9940149414', '', 'sangeethaviswanathan03@gmail.com', '1998-10-03', 22, '1', '2', 'B.viswanathan', 'Employee', 20000.00, 1, 0.00, 13000.00, 'Thousand lights', 'Thousand lights', '2012190015', '', '1', 'upload_files/candidate_tracker/50771772946_DOS.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '67', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'nOT WILLING TO SIGN AGREEMENT AS HER INTENTION WAS TO STAY FOR LESSER PERIOD OF TIME.', '1', '2', '', '1', '1', '', '2', '2020-12-26', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-19 06:15:32', 8, '2020-12-23 12:23:40', 0, NULL, 1),
(2616, '', '0', '9840209105', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012190016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-19 08:11:48', 0, NULL, 0, NULL, 1),
(2617, 'JEYA KUMAR', '22', '9790067224', '', 'officiallooking@outlook.com', '1991-04-07', 29, '2', '2', 'Paulraj', 'Tailor', 25000.00, 1, 24000.00, 30000.00, 'TIRUPPUR', 'Alandur', '2012190017', '1', '2', 'upload_files/candidate_tracker/60005531957_JEYAKUMAR - RESUME DMC-12.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No fluent in english\nNot good in content', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-19 08:20:20', 64, '2020-12-26 11:14:50', 0, NULL, 1),
(2618, 'Antony King Thomson A', '22', '9941858617', '', 'antonykingthomson@gmail.com', '1995-11-07', 25, '3', '2', 'A Antony Selvaraj', 'Rtd. A. E (TNHB)', 100000.00, 4, 25000.00, 40000.00, 'Chennai', 'Chennai', '2012200001', '', '2', 'upload_files/candidate_tracker/2343530609_Thomson Resume 2020.pdf', NULL, NULL, '2020-12-21', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Issue', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-20 08:17:05', 1, '2020-12-20 08:23:58', 0, NULL, 1),
(2619, 'reyaz ahmed', '22', '8939589539', '', 'reyazahm89@gmail.com', '1997-07-21', 23, '2', '2', 'ahmad', 'retired', 600000.00, 1, 0.00, 585000.00, 'chennai', 'chennai', '2012200002', '1', '2', 'upload_files/candidate_tracker/94636458720_Reyaz ahmed.pdf', NULL, NULL, '2020-12-21', 0, '', '3', '8', '2020-12-30', 306000.00, '', '', '1970-01-01', '1', 'for it. 25.5k', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-20 09:00:14', 50, '2020-12-30 04:10:17', 0, NULL, 1),
(2620, 'K. Varshini', '6', '8189914826', '9940382154', 'vsai42106@gmail.com', '2000-03-13', 20, '2', '2', 'Kumar chitra', 'Fresher', 75000.00, 1, 0.00, 12500.00, 'Chennai', 'Virugambakkam', '2012200003', '14', '1', 'upload_files/candidate_tracker/89955534929_Varshini resume.pdf', NULL, NULL, '2020-12-21', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-20 06:50:32', 50, '2020-12-21 05:39:49', 0, NULL, 1),
(2621, 'U Gopal Reddy', '11', '9573789652', '7019466531', 'ugopalreddy1997@gmail.com', '1997-05-12', 23, '2', '2', 'U Hanumantha Reddy', 'Farmer', 10000.00, 0, 0.00, 15.00, 'Anantapur', 'Bangalore', '2012200004', '1', '1', 'upload_files/candidate_tracker/96076087818_Gopal Reddy.docx', NULL, NULL, '2020-12-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-20 10:02:41', 50, '2020-12-24 03:42:46', 0, NULL, 1),
(2622, 'K Imthiyaz', '4', '9952082490', '', 'imthiyasrockzz@gmail.com', '1992-06-18', 28, '2', '1', 'seema', 'housewife', 150000.00, 2, 16500.00, 20000.00, 'andhra pradesh', 'pudupet', '2012210001', '1', '2', 'upload_files/candidate_tracker/535186587_imthiyaz job new copy.docx', NULL, NULL, '2020-12-21', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for RM. no convincing skill. not active too', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-21 10:04:17', 58, '2020-12-23 01:18:24', 0, NULL, 1),
(2623, 'Deva Prasad M', '6', '8008640554', '9550089232', 'mudhigolamdeva06@gmail.com', '1996-07-22', 24, '2', '2', 'M Bhaskar', 'Agriculture', 10000.00, 1, 0.00, 18000.00, 'Chittoor', 'KR puram', '2012210002', '1', '1', 'upload_files/candidate_tracker/34420974565_1608092636797Resume_Deavaprasad.doc', NULL, NULL, '2020-12-21', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'HE WILL NOT SUIT FOR OUR PROFILE xxamp COMMUNICATION IS TOO WORST', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-21 10:45:53', 50, '2020-12-21 11:14:16', 0, NULL, 1),
(2624, 'jakeer hussain', '6', '8309259156', '7288076066', 'jakeerjs43@gmail.com', '1999-06-01', 21, '2', '2', 'meharaj ali', 'farmer', 60000.00, 2, 0.00, 200000.00, 'rayachoty', 'marthalli', '2012210003', '1', '1', 'upload_files/candidate_tracker/62738545063_Jakeer.docx', NULL, NULL, '2020-12-24', 0, '', '5', '38', NULL, 0.00, '', '0', NULL, '2', 'HE DONT HAVE BIKE AND HE CANT ARRANGE SO HE WILL NOT SUIT FOR OUR FIELD', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 10:53:32', 1, '2020-12-24 01:46:43', 0, NULL, 1),
(2625, 'syed ahmed', '13', '9940018065', '9841163787', 'syeda5343@gmail.com', '1993-12-28', 26, '2', '2', 'syed attaur rahman', 'clerk', 40000.00, 1, 250000.00, 200000.00, 'chennai', 'Chennai', '2012210004', '1', '2', 'upload_files/candidate_tracker/44572647287_RESUME.DOCX', NULL, NULL, '2020-12-21', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not completed the Task', '2', '2', '', '1', '1', '', '2', '2020-12-25', '1', '2', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-21 11:11:28', 50, '2020-12-21 11:37:03', 0, NULL, 1),
(2626, 'vigneshwaran n', '6', '9514060289', '', 'vickynagaraj1999@gmail.com', '1999-02-03', 21, '2', '2', 'nagarajan', 'site supervisor', 13000.00, 2, 0.00, 15000.00, 'chromepet', 'chromepet', '2012210005', '15', '1', 'upload_files/candidate_tracker/58556084377_Vigneshwaran.docx', NULL, NULL, '2020-12-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales, looking for admin job. will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 11:31:11', 1, '2020-12-21 11:39:53', 0, NULL, 1),
(2627, 'Gulbanu', '4', '9500185186', '9500185212', 'Gulbanuali@gmail.com', '1983-02-05', 37, '2', '1', 'Zeeshaan', 'Businesssman', 14000.00, 1, 16000.00, 20000.00, 'Royapettah', 'Royapettah', '2012210006', '1', '2', 'upload_files/candidate_tracker/87353254949_GLU1.docx', NULL, NULL, '2020-12-21', 0, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not interested in sales ...looking for operations ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'I1031', '0', NULL, NULL, NULL, 1, '2020-12-21 11:31:50', 8, '2020-12-21 05:25:22', 0, NULL, 1),
(2628, 'Jamal mohamed shajahan', '20', '9159964371', '8012335454', 'shajahanjamal8@gmail.com', '1983-01-23', 37, '3', '1', 'S. Peer mohamed', 'SRLY Rtd.', 30000.00, 3, 50000.00, 20000.00, 'Tenkasi', 'Mannadi', '2012210007', '', '2', 'upload_files/candidate_tracker/57676464321_1603901182110_CURRICULAUM VITAE.docx', NULL, NULL, '2020-12-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '37+ will not suite for sales. no sales exp. NRI', '5', '2', '0', '1', '1', '0', '2', '2020-12-23', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 12:13:46', 1, '2020-12-21 12:19:31', 0, NULL, 1),
(2629, 'KUMARAN B', '6', '9710112800', '9840279606', 'kumaran.bst@gmail.com', '1996-11-27', 24, '2', '2', 'M BASKARAN', 'DRIVER', 15000.00, 2, 0.00, 15000.00, 'KODAMBAKKAM', 'KODAMBAKKAM', '2012210008', '1', '1', 'upload_files/candidate_tracker/50398208192_KUMARAN RESUME NEW.docx', NULL, NULL, '2020-12-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling and sales', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-21 12:26:25', 1, '2020-12-22 11:33:13', 0, NULL, 1),
(2630, 'Sharmili', '4', '7339495634', '9003215988', 'sharmilak.9694@gmail.com', '1994-09-20', 26, '2', '2', 'Lakshmanan', 'Security', 10000.00, 0, 20000.00, 20000.00, 'Chennai', 'Chennai', '2012210009', '1', '2', 'upload_files/candidate_tracker/78957208945_1608520458902_SHARMILI RESUME.pdf', NULL, NULL, '2020-12-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response from her end. will not join.\n', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 12:36:04', 8, '2020-12-22 01:27:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2631, 'N Rajesh', '6', '8978883846', '8978203662', 'rajeshabsr@gmail.com', '1998-05-18', 22, '2', '2', 'N Anandamandadi', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Chittoor, Andhra Pradesh', 'Banashankari, Bangalore', '2012210010', '1', '2', 'upload_files/candidate_tracker/3565861604_Rajesh Post Graduate Resume.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '38', NULL, 0.00, '', '0', NULL, '2', 'no bike....he will not suit for our profile and ixquotm not satisfied with his communication ', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 12:38:05', 1, '2020-12-21 01:04:45', 0, NULL, 1),
(2632, 'Krishnapuram Rajasekhar reddy', '6', '8096736392', '9390092026', 'krishnapuramrajasekhar350@gmail.com', '1999-04-14', 21, '2', '2', 'K thambi reddy', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Chittoor, Andhrapradesh , 517582', 'Banashankari', '2012210011', '1', '1', 'upload_files/candidate_tracker/11242570533_Raja resume new.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Bike....He Will Not Suit For Our Profile And Ixquotm Not Satisfied With His Communication ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 12:38:37', 50, '2020-12-23 11:25:02', 0, NULL, 1),
(2633, 'M Antony Pratheep', '5', '9566085147', '9884522889', 'Antonypratheep19@gmail.com', '1991-05-19', 29, '1', '2', 'Micheal Anthony', 'Retired', 20000.00, 1, 20000.00, 25000.00, '#38/18 Antoniyar Koil Street, Chennai 70', '#38/18 Antoniyar Koil Street, Chennai 70', '2012210012', '', '2', 'upload_files/candidate_tracker/89604143665_Ant (1).pdf', NULL, NULL, '2020-12-21', 0, '55616', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '5', '2', '0', '1', '1', '0', '2', '2020-12-23', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 12:51:51', 1, '2020-12-21 12:59:07', 0, NULL, 1),
(2634, 'Raghunath P S', '22', '7299163339', '', 'psraghunath@live.com', '1981-10-12', 39, '2', '2', 'sivasubramaniyan', 'salaried', 40000.00, 0, 40000.00, 55000.00, 'chennai', 'chennai', '2012210013', '1', '2', 'upload_files/candidate_tracker/23927898737_76c221b9-1f0e-478b-a63c-483cb424638a.pdf', NULL, NULL, '2020-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High CTC xxamp Not in content Writing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-21 02:02:50', 64, '2020-12-23 03:19:10', 0, NULL, 1),
(2635, 'Arulmani', '4', '8438356169', '9751705088', 'maniarulmca@GMAIL.COM', '1993-06-30', 27, '2', '2', 'Swetha', 'Home meker', 20000.00, 1, 0.00, 20000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2012210014', '1', '1', 'upload_files/candidate_tracker/72781741578_Resume Arul PDF.pdf', NULL, NULL, '2020-12-21', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain not interested in sales', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-21 02:35:55', 1, '2020-12-21 02:45:03', 0, NULL, 1),
(2636, 'Dinesh. V', '3', '7092720168', '', 'Denadinesh2k@gmail.com', '2000-12-05', 20, '1', '2', 'Durga v', 'Sales', 82000.00, 1, 0.00, 12000.00, 'Porur chennai', 'Porur chennai', '2012210015', '', '1', 'upload_files/candidate_tracker/12069365138_Dinesh-Resume.docx', NULL, NULL, '2020-12-22', 0, '22/12/2020 12pm', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 04:19:22', 1, '2020-12-21 04:24:12', 0, NULL, 1),
(2637, '', '0', '7010773501', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 04:39:36', 0, NULL, 0, NULL, 1),
(2638, 'SURENDHAR.J', '21', '7092695644', '9840090352', 'surendharduke08@gmail.com', '1999-07-08', 21, '2', '2', 'Jagadeesh.k', 'Employee', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2012210017', '1', '1', 'upload_files/candidate_tracker/51297291581_Surendhar_Resume_2020.pdf', NULL, NULL, '2020-12-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '3', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 05:01:04', 50, '2020-12-28 05:01:45', 0, NULL, 1),
(2639, 'Pavan Kumar', '7', '9940358602', '', 'pavanragu98@gmail.com', '1998-10-01', 22, '3', '2', 'raghu Ramaiah', 'Housekeeping', 175000.00, 2, 0.00, 100000.00, '1/14 THIRUVALLUVAR STREET AMBAL NAGAR RAMAPURAM', 'Chennai', '2012210018', '', '1', 'upload_files/candidate_tracker/53697849910_pavan kumar-Resume.docx', NULL, NULL, '2020-12-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 05:52:10', 50, '2020-12-24 03:43:00', 0, NULL, 1),
(2640, '', '0', '8220629009', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 06:04:34', 0, NULL, 0, NULL, 1),
(2641, '', '0', '8428701131', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 06:26:16', 0, NULL, 0, NULL, 1),
(2642, 'Naveen.R', '25', '8825553401', '', '', '1999-09-16', 21, '3', '2', 'B.ravi', 'IT', 20000.00, 1, 0.00, 15000.00, '31/40 srinivasa iyengar street west mambalam', '31/40 srinivasa iyengar street west mambalam', '2012210021', '', '1', 'upload_files/candidate_tracker/33052789278_1595924364434_0_naveen Resume (1).pdf', NULL, NULL, '2020-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 06:28:40', 1, '2020-12-21 06:33:41', 0, NULL, 1),
(2643, '', '0', '7305441737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 06:36:15', 0, NULL, 0, NULL, 1),
(2644, 'Gopinath', '5', '9940542193', '', 'Gopi.july31@gmail.com', '1988-07-31', 32, '2', '2', 'SHANTHI baskaran', 'Home maker', 25000.00, 2, 25000.00, 27000.00, '36 a Brahmin street', 'Korattur', '2012210023', '1', '2', 'upload_files/candidate_tracker/73110399858_resume july 19.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'exp 32k and he will not join.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-21 06:45:24', 8, '2020-12-23 06:52:55', 0, NULL, 1),
(2645, '', '0', '8825984694', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 07:21:26', 0, NULL, 0, NULL, 1),
(2646, 'GB Saravanan', '22', '9952925206', '9840434251', 'gbsaravanan00@gmail.com', '2000-06-17', 20, '1', '2', 'Sasikala B', 'House keeping', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2012210025', '', '1', 'upload_files/candidate_tracker/3069736117_Saravanan_resume_IT_1605511504497.pdf', NULL, NULL, '2020-12-22', 0, 'Jennifer', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 07:46:39', 1, '2020-12-21 08:04:39', 0, NULL, 1),
(2647, 'Kiruthika. G', '7', '7358335076', '8870973582', 'kiruthikakiruthi10847@gmail.com', '1999-12-13', 21, '1', '2', 'Govindharaj. P', 'Cooli', 15000.00, 1, 0.00, 12000.00, 'Velachery', 'Velachery', '2012210026', '', '1', 'upload_files/candidate_tracker/53418056804_Kiruthika Resume new alter.doc', NULL, NULL, '2020-12-24', 0, '2012210026', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 07:51:29', 50, '2020-12-24 03:43:13', 0, NULL, 1),
(2648, '', '0', '9514521463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 08:10:54', 0, NULL, 0, NULL, 1),
(2649, '', '0', '7824047742', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 09:04:39', 0, NULL, 0, NULL, 1),
(2650, '', '0', '9487658522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-21 09:40:26', 0, NULL, 0, NULL, 1),
(2651, 'Sandhiya', '7', '9123518082', '9789924205', 'sandydhiya2000@gmail.com', '2000-01-20', 20, '3', '2', 'Yasodha', 'Business', 72000.00, 2, 0.00, 15000.00, 'Adambakkam', 'Adambakkam', '2012210030', '', '1', 'upload_files/candidate_tracker/95801861722_new resume.pdf', NULL, NULL, '2020-12-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-21 10:00:52', 1, '2020-12-21 10:06:48', 0, NULL, 1),
(2652, 'Vinoth A', '22', '9344775436', '9514614224', 'Vinodambikapathy@gmail.com', '1992-03-24', 28, '2', '2', 'Ambikapathy', 'Farmer', 45000.00, 2, 24000.00, 28000.00, 'Mannargudi', 'Chennai', '2012210031', '1', '2', 'upload_files/candidate_tracker/50256548238_Vinoth New Resume.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Exp and Sustainability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-21 10:44:27', 64, '2020-12-26 10:42:11', 0, NULL, 1),
(2653, '', '0', '7358444405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 08:52:39', 0, NULL, 0, NULL, 1),
(2654, 'R Seetha Lakshmi', '22', '7904765373', '', 'rseetha91@gmail.com', '1991-06-18', 29, '2', '1', 'Ramu', 'Turner', 12000.00, 1, 30000.00, 35000.00, 'Chennai', 'Chennai', '2012220002', '1', '2', 'upload_files/candidate_tracker/50625631045_Seetha Resume.docx', NULL, NULL, '2020-12-23', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-22 10:04:04', 1, '2020-12-22 10:47:20', 0, NULL, 1),
(2655, '', '0', '6565656565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 10:39:11', 0, NULL, 0, NULL, 1),
(2656, 'Sundaramahalingam T', '6', '7845694529', '8248424715', 'sundar15794@gmail.com', '1994-07-15', 26, '4', '1', 'Meena', 'Home maker', 15000.00, 1, 3.25, 4.00, 'CHENNAI', 'CHENNAI', '2012220004', '', '2', 'upload_files/candidate_tracker/163733672_Sundar Sales.pdf', NULL, NULL, '2020-12-22', 15, '', '3', '8', '2021-01-04', 288000.00, '', '6', '2021-01-21', '1', '24ctc for rajkumar team and no pf', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 10:39:56', 7, '2020-12-31 03:43:09', 0, NULL, 1),
(2657, '', '0', '6305050025', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 10:49:37', 0, NULL, 0, NULL, 1),
(2658, '', '0', '9790829654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 11:04:47', 0, NULL, 0, NULL, 1),
(2659, 'Praveen kumar', '6', '9585965204', '8940066803', 'spraveenkumar04081998@gmail.com', '1998-08-04', 22, '2', '2', 'Shiva Kumar', 'Foot wear shop', 15.00, 1, 0.00, 16.00, 'Ambadhkar nagara near passport office kormangala', 'Near passport office kormangala', '2012220007', '1', '1', 'upload_files/candidate_tracker/66962039571_0_Praveen Kumar_Color Format – 02.pdf', NULL, NULL, '2020-12-22', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will not sustain xxamp he will not suit for our field', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-22 11:18:48', 50, '2020-12-22 02:36:47', 0, NULL, 1),
(2660, 'Patan zubher khan', '5', '7349744048', '8050268662', 'Zubherpatan 1998@gmail.com', '1998-07-05', 22, '2', '2', 'Patan sardhar khan, patan shahnaz', 'Gandhinagar kpr road banglore.', 20.00, 1, 12.00, 15.00, 'Ap', 'Ghandinagar', '2012220008', '1', '2', 'upload_files/candidate_tracker/69088525014_2PAGE.docx', NULL, NULL, '2020-12-25', 1, '', '5', '39', NULL, 0.00, '', '0', NULL, '2', 'he will not suit for our field bcs not good in communication', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-22 11:24:58', 1, '2020-12-25 01:12:23', 0, NULL, 1),
(2661, '', '0', '7337774999', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 11:48:18', 0, NULL, 0, NULL, 1),
(2662, 'sathish kumar', '6', '7397456144', '', 'edwindu7576@gmail.com', '1995-10-09', 25, '2', '2', 'krishnan', 'building contractor', 20000.00, 0, 13000.00, 15000.00, 'villupuram', 'medavakkam', '2012220010', '2', '2', 'upload_files/candidate_tracker/22933495306_Share sathish Kumar (1).doc', NULL, NULL, '2020-12-22', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not come for 2nd round so rejected my side..', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 12:01:33', 8, '2020-12-22 01:10:29', 0, NULL, 1),
(2663, 'Nishanth', '4', '9566328911', '9894062247', 'nishanthpriyan@gmail.com', '1994-12-03', 26, '2', '2', 'Murugesh', 'Gold smith', 20000.00, 1, 0.00, 13000.00, 'Vadapalani', 'Vadapalani', '2012220011', '15', '1', 'upload_files/candidate_tracker/27042229135_Resume.docx', NULL, NULL, '2020-12-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 12:49:00', 1, '2020-12-22 01:00:02', 0, NULL, 1),
(2664, 'Shiva', '9', '8940066803', '9585964204', 'sshivaa449@gmail.com', '1998-12-25', 21, '2', '2', 'Madhuu', 'Driver', 15000.00, 1, 0.00, 17.00, 'Ambadhkar nagara near passport office kormangala', 'Near passport office kormangala', '2012220012', '1', '1', 'upload_files/candidate_tracker/55186728336_0_Praveen Kumar_Color Format – 02.pdf', NULL, NULL, '2020-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-22 01:44:48', 1, '2020-12-22 01:52:32', 0, NULL, 1),
(2665, '', '0', '7339442244', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 03:04:35', 0, NULL, 0, NULL, 1),
(2666, '', '0', '9003070530', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 03:54:59', 0, NULL, 0, NULL, 1),
(2667, 'loganathan r', '8', '8754390551', '', 'rloganathan98@gmail.com', '1998-07-25', 22, '2', '2', 'chinnakulanthai', 'housewife', 12000.00, 1, 165000.00, 220000.00, 'tiruvannamalai', 'chennai', '2012220015', '1', '2', 'upload_files/candidate_tracker/68445400768_NEW RESUME l.docx', NULL, NULL, '2020-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-22 03:56:05', 1, '2020-12-22 04:01:58', 0, NULL, 1),
(2668, '', '0', '6363229179', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 04:04:22', 0, NULL, 0, NULL, 1),
(2669, '', '0', '8428777928', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 04:12:26', 0, NULL, 0, NULL, 1),
(2670, 'Vijayalakshmi S', '16', '8778085194', '', 'vijistefi@gmail.com', '1999-12-21', 22, '2', '2', 'Senthil S', 'Driver', 300000.00, 1, 232000.00, 1.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2012220018', '1', '2', 'upload_files/candidate_tracker/93493817045_Vijayalakshmi S New Resume 2022.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Multiple offers with night shift,Good in communication,Salary Exp is high,1,5 yrs 2 companies travelled,Will not sustain in a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2020-12-22 04:19:01', 85, '2022-07-23 10:49:37', 0, NULL, 1),
(2671, '', '0', '9677195404', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 04:22:25', 0, NULL, 0, NULL, 1),
(2672, '', '0', '9962804446', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 05:14:23', 0, NULL, 0, NULL, 1),
(2673, 'Mahesh G', '20', '9551558253', '8939701902', 'magidhoni1997@gmail.com', '1997-04-19', 23, '2', '2', 'Ganesh', 'Mazon', 18000.00, 1, 17500.00, 22000.00, 'Alwarthirunagar', 'Chennai', '2012220021', '3', '2', 'upload_files/candidate_tracker/47123899627_Resume 2029.doc', NULL, NULL, '2020-12-23', 20, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 05:15:27', 8, '2020-12-23 06:52:21', 0, NULL, 1),
(2674, 'Vinoth Kumar S', '20', '9551542717', '', 'Vinothkumar.1050@ Gmail.com', '1993-06-16', 27, '2', '2', 'Sampath R', 'Bussiness', 20000.00, 2, 17500.00, 22000.00, 'Manali', 'Chennai', '2012220022', '3', '2', 'upload_files/candidate_tracker/55182226462_VK resume.pdf', NULL, NULL, '2020-12-23', 20, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 05:33:32', 8, '2020-12-23 06:52:10', 0, NULL, 1),
(2675, 'S magimai selvam', '20', '7401364664', '', 'Clinton.magimai.@gamil.com', '1995-02-01', 25, '2', '2', 'L siluvai raj', 'Auto driver', 18000.00, 2, 17500.00, 22000.00, 'Santhome', 'Chennai', '2012220023', '3', '2', 'upload_files/candidate_tracker/5134193164_Magimai_Resume.pdf', NULL, NULL, '2020-12-23', 20, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 05:38:09', 8, '2020-12-23 06:52:00', 0, NULL, 1),
(2676, 'Saisuriya R', '1', '9344910496', '8428777928', 'saisuriya7777@gmail.com', '1999-03-16', 21, '3', '2', 'Raji A', 'Fresher', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012220024', '', '1', 'upload_files/candidate_tracker/10275518651_Job resume.docx', NULL, NULL, '2020-12-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-22 05:50:57', 50, '2020-12-24 03:43:34', 0, NULL, 1),
(2677, '', '0', '8754465553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 06:02:14', 0, NULL, 0, NULL, 1),
(2678, 'Suriya Murali', '5', '9551590512', '9444949767', 'suriyabeivers@gmail.com', '1998-02-02', 22, '2', '2', 'Murali', 'cheif office superiendent', 40000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2012220026', '1', '1', 'upload_files/candidate_tracker/17582131655_SIST-PG-MBA-38410248- suriya-.docx', NULL, NULL, '2020-12-23', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not selected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-22 06:44:31', 50, '2020-12-26 01:12:14', 0, NULL, 1),
(2679, '', '0', '9790978823', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012220027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-22 06:44:58', 0, NULL, 0, NULL, 1),
(2680, 'rhaksha h', '22', '9840858813', '8838029224', 'rhaksha13@gmail.com', '1997-05-13', 23, '2', '2', 'sairani', 'housewife', 20000.00, 0, 23000.00, 32000.00, 'chennai korattur', 'chennai', '2012220028', '1', '2', 'upload_files/candidate_tracker/59610522414_Resume Rhaksha.doc', NULL, NULL, '2020-12-23', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much exp in Digital Marketing', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-22 07:03:05', 1, '2020-12-22 07:09:06', 0, NULL, 1),
(2681, 'Shaheen Siddiqa', '22', '9994930716', '', 'shaheensiddiqa98@gmail.com', '1998-03-18', 22, '2', '2', 'Mohamed Siddiq', 'Private service', 40000.00, 1, 300000.00, 350000.00, 'Chennai', 'Chennai', '2012220029', '1', '2', 'upload_files/candidate_tracker/56375979922_Shaheen_updatedresume_page-0001.pdf', NULL, NULL, '2020-12-24', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-22 07:07:04', 50, '2020-12-24 03:43:54', 0, NULL, 1),
(2682, 'S. Monish Raj', '22', '8056030940', '', 'monishraj85@gmail.com', '1995-07-30', 25, '2', '2', 'D. Soundarjan', 'Real Estate', 18000.00, 1, 10000.00, 20000.00, 'No 9, Iyyappan St, venkateshwara Na, Ambattur', 'No 9, Iyyappan St, Venkateshwara Na, Ambattur', '2012220030', '1', '2', 'upload_files/candidate_tracker/71810091353_Monish resume.docx', NULL, NULL, '2020-12-23', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much exp sustainability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-22 09:12:32', 64, '2020-12-26 10:56:04', 0, NULL, 1),
(2683, 'Parthiban.s', '22', '8220101531', '', 'parthiyeshwanth@gmail.com', '1996-01-18', 24, '2', '2', 'K. Shanmungam', 'Driver', 25000.00, 1, 18000.00, 22000.00, '1/84 a post office street thuraipakkm Chennai 97', '1/84 A Post Office Street Thuraipakkm Chennai 97', '2012220031', '1', '2', 'upload_files/candidate_tracker/17465038843_Parthiban Resume.pdf', NULL, NULL, '2020-12-23', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good Profile,only in seo and Exp in more', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-22 11:30:22', 50, '2020-12-23 12:23:59', 0, NULL, 1),
(2684, 'C.gomathi', '4', '9003070266', '', 'sangeethaviswanathan03@gmail.com', '1998-01-30', 22, '1', '2', 'K.chadrasekar', 'Chemical industries', 20000.00, 1, 0.00, 13000.00, 'Thousand lights', 'Thousand lights', '2012230001', '', '1', 'upload_files/candidate_tracker/73718122744_Check out this file: file1_1608703260338.pdf', NULL, NULL, '2020-12-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suit for calling, no convincing skill.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 05:10:25', 8, '2020-12-23 05:35:31', 0, NULL, 1),
(2685, '', '0', '9841416121', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 08:33:01', 0, NULL, 0, NULL, 1),
(2686, 'karthika.', '17', '9025357056', '9025618810', 'lkarthika64@gmail.com', '1991-06-01', 29, '3', '1', 'venkatesh', 'salaried', 35000.00, 1, 10000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2012230003', '', '2', 'upload_files/candidate_tracker/71205674159_Updated Resume - karthika (1).docx', NULL, NULL, '2020-12-23', 0, '', '3', '8', '2020-10-26', 300000.00, '', '5', '1970-01-01', '2', '25ctc with pf', '8', '2', '4', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 10:26:14', 7, '2020-12-24 12:11:07', 0, NULL, 1),
(2687, '', '0', '7975095883', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 10:49:10', 0, NULL, 0, NULL, 1),
(2688, 'K.Rupamalini', '4', '7358229263', '', 'rupamalini07@gmail.com', '1999-11-07', 21, '3', '2', 'Kathiravan', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012230005', '', '1', 'upload_files/candidate_tracker/83217772992_K.Rupamalini07 resume 07.docx', NULL, NULL, '2021-01-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '4', '2', '', '1', '1', '', '2', '1970-01-01', '2', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 11:02:01', 60, '2021-01-04 10:23:27', 0, NULL, 1),
(2689, '', '0', '9019471969', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 11:54:07', 0, NULL, 0, NULL, 1),
(2690, 'Abid nawaz', '4', '9740895032', '7022403166', '', '1997-02-22', 23, '2', '2', 'Nazim pasha', 'Old scrap moter', 20.00, 3, 15.00, 18.00, '#57,9th main,4th cross, btm layout, Bangalore', '#57,9th main,4th cross,btm layout ,Bangalore', '2012230007', '1', '2', 'upload_files/candidate_tracker/39075001263_single page resume ABID.docx', NULL, NULL, '2020-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-23 11:57:59', 1, '2020-12-23 12:11:26', 0, NULL, 1),
(2691, 'babu', '5', '9159712478', '', 'babu08061994@gmail.com', '1994-06-08', 26, '2', '1', 'shanthini', 'salaried', 20000.00, 1, 22000.00, 26000.00, 'ambattur', 'ambattur', '2012230008', '1', '2', 'upload_files/candidate_tracker/89299849627_BABU U NEW (1).pdf', NULL, NULL, '2020-12-23', 0, '', '5', '36', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit RM\nExpected pay very high so RE also not possible', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-23 01:11:15', 8, '2020-12-23 06:48:55', 0, NULL, 1),
(2692, 'Arul kumar', '11', '9677503411', '7904806441', 'Arulmeena74@gmail.com', '1996-06-12', 24, '3', '2', 'Kothandam', 'Accounts', 20000.00, 2, 20000.00, 23000.00, 'Chengalpattu', 'Chengalpattu', '2012230009', '', '2', 'upload_files/candidate_tracker/51868794517_CV - Resume.pdf', NULL, NULL, '2020-12-28', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 01:16:28', 1, '2020-12-23 01:24:49', 0, NULL, 1),
(2693, 'srivatsan', '5', '9884616468', '9789855901', 'masterdirector86@gmail.com', '1986-09-22', 34, '2', '2', 'ngarajan', 'lic agent', 25000.00, 0, 0.00, 27000.00, 'chennai', 'chennai', '2012230010', '1', '2', 'upload_files/candidate_tracker/48178089521_About Srivatsan (1).docx', NULL, NULL, '2020-12-23', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He donxquott want RM profile or sales profile, he wants BPO service', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-23 02:12:51', 8, '2020-12-23 05:36:32', 0, NULL, 1),
(2694, 'Prashanth M', '22', '9677157896', '', 'prashanth27jul@gmail.com', '1992-07-28', 28, '2', '2', 'Murugan', 'Contractor', 30000.00, 2, 23000.00, 28000.00, 'Chennai', 'Chennai', '2012230011', '1', '2', 'upload_files/candidate_tracker/58549836271_Prashanth Update Res.pdf', NULL, NULL, '2020-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for digital Marketing,', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-23 02:27:02', 64, '2020-12-26 11:01:33', 0, NULL, 1),
(2695, '', '0', '9962901254', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 02:49:12', 0, NULL, 0, NULL, 1),
(2696, 'sreeraj', '6', '8248126968', '', 'vishnuloofz@gmail.com', '1995-08-14', 25, '1', '2', 'radha krishnan', 'salaried', 20000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2012230013', '', '2', 'upload_files/candidate_tracker/1020449449_IMG_20201223_163020_pdf.pdf', NULL, NULL, '2020-12-23', 0, 'stephen raj', '3', '8', '2020-12-28', 198000.00, '', '3', '2022-05-03', '1', '16500k as ctc for saravana team.', '5', '2', '1', '1', '3', '1', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 02:59:36', 7, '2021-01-02 12:35:04', 0, NULL, 1),
(2697, '', '0', '7358521025', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 03:27:14', 0, NULL, 0, NULL, 1),
(2698, 'Selvam', '4', '9976172838', '8667329477', 'selvamtamil1992@gmail.com', '1992-06-19', 28, '2', '2', 'Tamilkovalan', 'Weaver', 40000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2012230015', '1', '2', 'upload_files/candidate_tracker/75727970676_1600421266447_SELVAM-converted.pdf', NULL, NULL, '2020-12-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sales skill , and no relevant exp.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-23 03:52:09', 64, '2020-12-26 11:04:01', 0, NULL, 1),
(2699, 's balasubramaniam', '4', '6383705922', '9994928389', 'bala904321@gmail.com', '1999-02-12', 21, '2', '2', 'r shanmugma', 'rtrd bhel officer', 70000.00, 2, 0.00, 15000.00, 'chennai', 'Chennai', '2012230016', '14', '1', 'upload_files/candidate_tracker/27528411073_Resume.pdf', NULL, NULL, '2020-12-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and not interested in sales. fresher', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-23 04:02:33', 1, '2020-12-28 12:38:49', 0, NULL, 1),
(2700, 'Rupesh', '4', '8610899310', '8428899636', 'rupeshmsdvenkatesh@gmaHyil.com', '1998-08-27', 22, '2', '2', 'Uma Devi', 'House wife', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2012230017', '1', '1', 'upload_files/candidate_tracker/4431241874_rupesh resume .doc', NULL, NULL, '2020-12-24', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-23 04:03:17', 50, '2020-12-24 03:44:09', 0, NULL, 1),
(2701, '', '0', '8248128968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012230018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-23 04:09:34', 0, NULL, 0, NULL, 1),
(2702, 'Thanigaiarasu', '5', '9787367473', '', 'dgthanigai21@gmail.com', '1998-06-10', 22, '2', '2', 'Devaraj', 'Weaving industry', 8000.00, 2, 0.00, 22.00, 'Arakkonam', 'Gundy', '2012240001', '', '2', 'upload_files/candidate_tracker/30112607885_THANIGAIARASU RESUME.docx', NULL, NULL, '2020-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability issue', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-24 10:13:52', 50, '2020-12-24 11:20:43', 0, NULL, 1),
(2703, 'Kalluru Haramouli', '5', '7780706060', '', 'kalluruharamouli9@gmail.com', '1996-11-01', 24, '2', '2', 'K moulali', 'Business', 60000.00, 4, 0.00, 20000.00, '29-332-6/d Suddulapeta Nandyal kurnool (Dt) A P', 'Sivabalaji boyspg 1 crosskiadb layout ecity phase2', '2012240002', '1', '1', 'upload_files/candidate_tracker/53967264666_K H M ( new ).pdf', NULL, NULL, '2020-12-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-24 10:56:58', 1, '2020-12-24 11:09:05', 0, NULL, 1),
(2704, '', '0', '9095668389', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 10:58:10', 0, NULL, 0, NULL, 1),
(2705, 'Sankar.S', '6', '8428656275', '9884687015', 'Sankarbala135@gmail.com', '1997-06-03', 23, '2', '2', 'Shanmugam p', 'Working', 23000.00, 2, 0.00, 15000.00, 'Tambaram chennai', 'Tambaram chennai', '2012240004', '15', '1', 'upload_files/candidate_tracker/7741467454_29184.pdf', NULL, NULL, '2020-12-28', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR RE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-24 11:06:57', 8, '2020-12-28 12:56:46', 0, NULL, 1),
(2706, '', '0', '7603804715', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 11:30:14', 0, NULL, 0, NULL, 1),
(2707, '', '0', '9025143042', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 11:50:59', 0, NULL, 0, NULL, 1),
(2708, 'Lakshmi narayanan', '21', '9962998393', '', 'lakshfamily75@gmail.com', '1999-11-19', 21, '2', '2', 'Balasubramaniyam', 'Carpentor', 80000.00, 1, 0.00, 15000.00, 'Mangadu,chennai', 'Mangadu,chennai', '2012240007', '15', '1', 'upload_files/candidate_tracker/85570964067_1608793599923_LAKSH (RESUME).doc', NULL, NULL, '2020-12-28', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-24 12:30:26', 50, '2020-12-28 04:58:20', 0, NULL, 1),
(2709, 'kiran palkuru', '6', '7013276371', '8309259156', 'kirank14514@gmail.com', '1999-07-06', 21, '2', '2', 'ravi', 'farmer', 40000.00, 1, 0.00, 200000.00, 'chittor', 'marthalli', '2012240008', '1', '1', 'upload_files/candidate_tracker/88695391262_5_6310009824927023424.pdf', NULL, NULL, '2020-12-24', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he dont have bike, he cant arrange.', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-24 12:57:40', 50, '2020-12-24 01:54:18', 0, NULL, 1),
(2710, '', '0', '8754599369', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 01:28:44', 0, NULL, 0, NULL, 1),
(2711, 'Seenivasan', '6', '9360796874', '', 'S.seenivasanmba5@gmail.com', '1999-06-04', 21, '2', '2', 'M.sankarapandian', 'Autodriver', 15000.00, 3, 0.00, 17000.00, 'Chennai', 'Chennai', '2012240010', '1', '1', 'upload_files/candidate_tracker/4455785856_RESUME (1).pdf', NULL, NULL, '2020-12-25', 0, '', '3', '8', '2021-01-04', 165000.00, '', '5', '1970-01-01', '1', '13750ctc and for kannan team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-24 02:48:10', 7, '2020-12-31 03:43:34', 0, NULL, 1),
(2712, '', '0', '8608805806', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012240011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-24 03:33:45', 0, NULL, 0, NULL, 1),
(2713, 'Ponsiva.m', '22', '7358666206', '', 'Ponsiva97@gmail.com', '2000-04-07', 20, '3', '2', 'Marimuthu', 'Provisional store', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2012240012', '', '1', 'upload_files/candidate_tracker/70501045720_1597313164243Resume_Ponsiva2.docx', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for the core openings only', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-24 03:39:30', 50, '2020-12-26 11:02:56', 0, NULL, 1),
(2714, 'vinoth kumar', '5', '9790395815', '', 'raivinoth92@gmail.com', '1992-05-05', 28, '2', '1', 'moorthy', 'driver', 40000.00, 1, 18000.00, 20000.00, 'salem', 'chennai', '2012240013', '1', '2', 'upload_files/candidate_tracker/54147274035_vinoth kumar.doc', NULL, NULL, '2020-12-25', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suit our profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-24 04:22:40', 52, '2020-12-25 01:18:15', 0, NULL, 1),
(2715, 'sundar raj s', '22', '8754873716', '8667505359', 'sundar13raj@gmail.com', '1993-07-13', 27, '2', '2', 'suresh kumar g', 'tneb', 50000.00, 0, 12000.00, 15000.00, 'chennai', 'chennai', '2012240014', '1', '2', 'upload_files/candidate_tracker/56205667873_Sundar', NULL, NULL, '2020-12-28', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much exp in digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-24 05:07:47', 65, '2020-12-28 04:38:51', 0, NULL, 1),
(2716, 'Pavithra. S', '25', '7358636190', '9176174965', 'Pavithra. Kingdom 1998@gmail.com', '1998-08-28', 22, '2', '2', 'Sekaran. A', 'Security', 10000.00, 1, 12000.00, 15000.00, 'Chennai', 'Medavakkam', '2012240015', '1', '2', 'upload_files/candidate_tracker/52401945564_pavima(2).docx', NULL, NULL, '2020-12-26', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability Issue,will not fit for esales', '8', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-24 05:47:52', 58, '2020-12-26 02:33:29', 0, NULL, 1),
(2717, '', '0', '8778104122', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 07:09:35', 0, NULL, 0, NULL, 1),
(2718, 'Prathap', '6', '9003441920', '', 'prathapautomobile97@gmail.com', '1997-09-03', 23, '2', '2', 'Cinnu', 'Daily Wages', 30000.00, 1, 0.00, 13000.00, 'Salem', 'Chennai', '2012250002', '1', '1', 'upload_files/candidate_tracker/39060382184_prathap resume.doc', NULL, NULL, '2020-12-25', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresh nd new for chennai, no proper pronounciation nd confidence.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-25 11:59:57', 58, '2020-12-25 12:30:59', 0, NULL, 1),
(2719, 'Balaji.V', '6', '9025379903', '8680079667', 'balajiv1528@gmail.com', '2001-04-15', 19, '2', '2', 'A.Vairavan', 'Book printer', 15000.00, 2, 0.00, 15000.00, 'Subramaniya swamy nagar,valasaravakkam,chennai-87', 'Cafs info', '2012250003', '1', '1', 'upload_files/candidate_tracker/6309296529_RESUME BALAJI.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested in sales. Looking for bank openings ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-25 12:31:18', 1, '2020-12-26 11:02:46', 0, NULL, 1),
(2720, '', '0', '8217718978', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 01:07:28', 0, NULL, 0, NULL, 1),
(2721, '', '0', '8056058705', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 01:34:23', 0, NULL, 0, NULL, 1),
(2722, 'Sabarigirishan.S', '6', '9176300961', '9382151764', 'Sabarigirishan.S', '2000-04-03', 20, '2', '2', 'M selvaraj', 'Car driver', 15000.00, 2, 0.00, 13000.00, 'Valsarawakkam', 'Valsarawakkam', '2012250006', '1', '1', 'upload_files/candidate_tracker/30295357306_SABARIGIRISHAN Resume.docx', NULL, NULL, '2020-12-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Student. he ll complete the course in the month of april only', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-25 02:54:18', 58, '2020-12-26 11:55:54', 0, NULL, 1),
(2723, '', '0', '8608067882', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 03:04:25', 0, NULL, 0, NULL, 1),
(2724, 'G Hari prasanth', '6', '7397463566', '9080106096', 'Harigangadharan1@gmail.com', '2000-11-16', 20, '2', '2', 'A Gangadharan', 'driver', 15000.00, 1, 0.00, 12000.00, 'Velachery', 'Cafs info', '2012250008', '1', '1', 'upload_files/candidate_tracker/58728780430_Hari-Resume.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested for sales, Looking for bank openings only\n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-25 06:35:42', 50, '2020-12-26 12:45:30', 0, NULL, 1),
(2725, '', '0', '7502363246', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012250009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-25 08:10:25', 0, NULL, 0, NULL, 1),
(2726, 'Mareshwaran M', '6', '8098010354', '', 'Mareshynaz@gmail.com', '1997-06-24', 23, '1', '2', 'Murugappan', 'Mechanic (Two Wheeler)', 15000.00, 1, 0.00, 12000.00, 'Do. No. 1262,8th street, burma colony Karaikudi.', 'Guindy race course 3th street, chennai', '2012260001', '', '1', 'upload_files/candidate_tracker/82546545814_MARESH new design1.pdf', NULL, NULL, '2020-12-26', 0, 'P1141', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Core openings,for time being looking for a job', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-26 09:46:58', 1, '2020-12-26 09:53:40', 0, NULL, 1),
(2727, 'vijayakumar.b', '22', '9952034865', '', 'vijaykumar281996@gmail.com', '1996-05-26', 24, '2', '2', 'balakrishna', 'farmer', 10000.00, 2, 0.00, 15000.00, 'chennai', 'ramapuram', '2012260002', '1', '1', 'upload_files/candidate_tracker/40686274848_Vijayakumar B updated resume.pdf', NULL, NULL, '2020-12-26', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-26 09:57:57', 50, '2020-12-26 03:30:07', 0, NULL, 1),
(2728, 'krishnamoorthy', '22', '8610599834', '9786485563', 'seooptimizer9786@gmail.com', '1997-04-11', 23, '2', '2', 'killiyazha', 'business', 40000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2012260003', '1', '2', 'upload_files/candidate_tracker/80034167995_Krishna- Resume.docx', NULL, NULL, '2020-12-29', 45, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability Issue and not fit for DM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-26 10:03:01', 64, '2020-12-29 06:04:56', 0, NULL, 1),
(2729, 'Irfana fathima', '4', '9600174791', '9551345402', 'Irfanafathima0798@gmail.com', '1998-07-04', 22, '2', '2', 'Ameerun begum', 'Home maker', 400000.00, 2, 15000.00, 30000.00, '37/9,washermen street,Chintadripet ,chennai-2', '37/9,washermen street,chintadripet, chennai-2', '2012260004', '1', '2', 'upload_files/candidate_tracker/50793681441_Irfana fathima.U _Entry Level Resume – 01.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got offer will not join.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-26 10:25:47', 50, '2020-12-28 10:00:58', 0, NULL, 1),
(2730, '', '0', '8870707900', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012260005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-26 10:33:34', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2731, 'Gokul.s', '4', '6379984168', '9894831559', 'gokulspt9@gmail .com', '2000-07-25', 20, '3', '2', 'Ramya', 'BBA', 10000.00, 2, 0.00, 10000.00, 'Namakkal', 'Theenampet', '2012260006', '', '1', 'upload_files/candidate_tracker/69943111391_S.GOKUL resume.docx', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not fit for sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-26 10:36:12', 50, '2020-12-26 11:07:37', 0, NULL, 1),
(2732, 'Akashnithish K M', '5', '9600124782', '', 'sksmakash1000@gmail.com', '1997-09-16', 23, '2', '2', 'Murugan V S', 'Site engineer', 60000.00, 1, 0.00, 15000.00, 'SHOLLINGANALLUR', 'SHOLLINGANALLUR', '2012260007', '1', '1', 'upload_files/candidate_tracker/24096895972_my resume.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-26 10:51:51', 64, '2020-12-26 06:02:00', 0, NULL, 1),
(2733, 'kirupa shankar.a', '4', '7550245130', '7358415129', 'kirupashakar652@gmail.com', '2001-06-12', 19, '2', '2', 'anna durai .r', 'salesman', 20000.00, 1, 0.00, 16000.00, 'chimmaya nagar', 'chimmaya nagar', '2012260008', '1', '1', 'upload_files/candidate_tracker/12842947040_kiruba.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Student. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 11:20:24', 50, '2020-12-26 11:53:46', 0, NULL, 1),
(2734, 'D.Niresh', '6', '7871357898', '7871708802', 'saranniresh06@gmail.com', '2000-06-16', 20, '2', '2', 'Dhaveethu.K', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Gandhi street,Chinna Porur,Chennai-600116', 'Cafs info', '2012260009', '1', '1', 'upload_files/candidate_tracker/76357521385_RESUME Niresh.pdf', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 11:26:06', 50, '2020-12-26 12:46:54', 0, NULL, 1),
(2735, 'Subashini', '4', '9080275547', '9566088597', 'Subashini51093@gmail.com', '1993-10-05', 27, '2', '1', 'Prasad', 'Baking', 40000.00, 1, 240000.00, 270000.00, 'Arumbakkam', 'Arumbakkam', '2012260010', '1', '2', 'upload_files/candidate_tracker/66148306597_Suba Resume 1.docx', NULL, NULL, '2020-12-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no sales experience. but will try', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 11:36:19', 50, '2020-12-26 12:24:00', 0, NULL, 1),
(2736, 'P. Sivasankar', '6', '9791080194', '9884140194', 'P. Sivasanker2001@gmail.com', '2001-03-14', 19, '2', '2', 'K. Panneer Selvam', 'Rice shop', 15000.00, 1, 0.00, 15000.00, 'Velachery Chennai', 'Cafs info', '2012260011', '1', '1', 'upload_files/candidate_tracker/36634433824_subash1.docx', NULL, NULL, '2020-12-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'student', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 11:38:40', 50, '2020-12-26 12:43:56', 0, NULL, 1),
(2737, 'Bharathkumar v', '5', '9150684146', '8668009010', 'bharathkumar6096v@gmail.com', '1995-01-28', 25, '2', '2', 'Rathnakumari v', 'RM', 18000.00, 4, 23000.00, 30000.00, 'St.thomas mount', 'St.thomas mount', '2012260012', '1', '2', 'upload_files/candidate_tracker/37547146895_BHARATH RESUME NEW (1)-converted(1).pdf', NULL, NULL, '2020-12-26', 0, '', '3', '8', '2021-01-04', 258000.00, '', '6', '2021-06-15', '1', '21500 ctc, no pf for Rajkumar team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 12:00:17', 7, '2020-12-31 03:43:49', 0, NULL, 1),
(2738, 'r. varadarajan', '22', '9360703029', '', 'varada3029@gmail.com', '1982-12-28', 37, '2', '1', 'rajendraprasath', 'Retired', 40000.00, 1, 60000.00, 60000.00, 'Tiruchirappalli', 'chennai', '2012260013', '1', '2', 'upload_files/candidate_tracker/76361211941_Varad_DM.docx', NULL, NULL, '2020-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability issue, Worked into various positions', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-26 12:09:23', 1, '2020-12-26 12:25:52', 0, NULL, 1),
(2739, 'magesh kumar', '4', '9841174857', '9840209035', 'mageshkumar0112@gmail.com', '1985-12-22', 35, '2', '1', 'mageshwari', 'other', 30000.00, 0, 0.00, 35000.00, 'chennai', 'chennai', '2012260014', '1', '2', 'upload_files/candidate_tracker/40655566203_0_0_0_0_mcn9e-lgn3k.pdf', NULL, NULL, '2020-12-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '10 years in cs, looking for inside sales. exp sal is 4L. age and salary will not match as CRM/esale', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 12:22:48', 1, '2020-12-28 12:16:52', 0, NULL, 1),
(2740, '', '0', '9790479152', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012260015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-26 12:28:34', 0, NULL, 0, NULL, 1),
(2741, 'Deepak. M', '6', '9176616445', '', 'deepakmee1236@gmail.com', '1997-11-29', 23, '2', '2', 'Murali', 'Painter', 150000.00, 1, 15000.00, 18000.00, 'Thiruverkadu', 'Thiruverkadu', '2012260016', '1', '2', 'upload_files/candidate_tracker/15145241551_deepak resume.docx', NULL, NULL, '2020-12-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not ready to go for field sales', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-26 12:34:49', 58, '2020-12-26 04:37:23', 0, NULL, 1),
(2742, 'shivaraj n', '5', '8970450876', '9535315024', 'kumarshivaraj676@gmail.com', '1996-09-08', 24, '2', '2', 'nagaraju tk bharathi bp', 'salaried', 10000.00, 1, 23000.00, 25000.00, 'vidyapeeta layout', 'vidyapeeta layout', '2012260017', '1', '2', 'upload_files/candidate_tracker/58435869239_SUNIL.docx', NULL, NULL, '2021-02-26', 15, '', '3', '59', '2021-03-01', 300000.00, '', '5', '1970-01-01', '1', 'Selected for sanjeev - Bangalore team 25000 Gross with PF xxamp PT', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-26 12:42:32', 60, '2021-02-27 02:36:42', 0, NULL, 1),
(2743, 'Saravanan', '5', '9840544143', '9791141285', 'sarandhanush15@gmail.com', '1996-01-15', 24, '1', '2', 'T. Balaraman', 'Corrent Not Working', 18000.00, 1, 0.00, 22000.00, 'No 46 RamNagar 8th Street Triplican ch -05', 'Triplicane', '2012260018', '', '1', 'upload_files/candidate_tracker/79200266394_RESUME Saran.docx', NULL, NULL, '2020-12-26', 0, '55618', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Please reschedule\n', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-26 04:25:06', 1, '2020-12-26 04:38:20', 0, NULL, 1),
(2744, 'Sathish Kumar J', '5', '9941947696', '8428852277', 'sathishjsg26@gmail.com', '1999-06-11', 21, '2', '2', 'K.Jayaraman', 'Taylor', 20000.00, 2, 14000.00, 20000.00, '2/116 Munusamy street Ponmar Chengalpattu district', '2/116 Munusamy street Ponmar Chengalpattu district', '2012260019', '3', '2', 'upload_files/candidate_tracker/72823723634_IMG_20201218_102615.docx', NULL, NULL, '2020-12-28', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR RE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-26 06:15:23', 50, '2020-12-28 11:22:19', 0, NULL, 1),
(2745, '', '0', '6369464736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012260020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-26 06:37:35', 0, NULL, 0, NULL, 1),
(2746, 'kayalvizhi m', '22', '9094746596', '', 'connect2kayal@gmail.com', '1989-01-07', 31, '2', '2', 'mathivana g', 'nill', 35000.00, 2, 15500.00, 20000.00, 'chidambaram', 'chennai', '2012260021', '1', '2', 'upload_files/candidate_tracker/36794219617_kayal-resume.doc', NULL, NULL, '2020-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable much into IT positions only few exp in DM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-26 06:46:54', 64, '2020-12-28 04:46:50', 0, NULL, 1),
(2747, '', '0', '9789821108', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012260022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-26 07:22:30', 0, NULL, 0, NULL, 1),
(2748, '', '0', '7401551966', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012270001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-27 08:10:59', 0, NULL, 0, NULL, 1),
(2749, '', '0', '8428815794', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012270002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-27 10:36:35', 0, NULL, 0, NULL, 1),
(2750, '', '0', '8608501332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 09:56:03', 0, NULL, 0, NULL, 1),
(2751, 'VASANTH V', '6', '9629147628', '9841611030', 'vstar8878@gmail.com', '1998-06-04', 22, '1', '2', 'VIJAYAKUMAR M', 'former', 10000.00, 1, 0.00, 15000.00, 'Thiruvannmalai', 'Porur,chennai', '2012280002', '', '1', 'upload_files/candidate_tracker/42869466316_TapScanner 12-28-2020-11.52.pdf', NULL, NULL, '2020-12-28', 0, 'Jobs', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOT FIT FOR RE PROFILE. LOOK LIKE PULLINGO', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 11:15:54', 50, '2020-12-28 12:21:11', 0, NULL, 1),
(2752, 'dinesh babu', '22', '9840259704', '9003026725', 'dineshbabuone366@gmail.com', '2005-12-28', 15, '2', '2', 'k venkatesan', 'seo analyst', 50000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2012280003', '1', '2', 'upload_files/candidate_tracker/54676940663_Dinesh Babu Resume.docx', NULL, NULL, '2020-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much exp in digital Marketing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-28 11:41:29', 7, '2020-12-30 12:02:38', 0, NULL, 1),
(2753, 'D.mohanraj', '4', '9840483880', '6379822565', 'Mohanrajsigamani@gmail.com', '2001-05-30', 19, '1', '2', 'E.deivasigamani', 'Business', 15000.00, 0, 0.00, 15000.00, 'No 5/7 Anjaneyar koil street west saidapet', 'Chennai', '2012280004', '', '1', 'upload_files/candidate_tracker/11287989003_resume.pdf', NULL, NULL, '2020-12-28', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 12:22:43', 1, '2020-12-28 12:53:00', 0, NULL, 1),
(2754, 'Akash', '6', '6383099526', '9345465831', 'd.akash2798@gmail', '1998-05-27', 22, '2', '2', 'Durai raj', 'Business', 70000.00, 1, 0.00, 18.00, 'Maduravoyal', 'Maduravoyal', '2012280005', '1', '1', 'upload_files/candidate_tracker/38794250947_d.Akash_resume (2).pdf', NULL, NULL, '2020-12-29', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-28 12:30:53', 50, '2020-12-29 12:17:05', 0, NULL, 1),
(2755, 'r.manojkumar', '4', '7299151268', '9094971940', 'manoj.mk2312@gmail.com', '1994-12-23', 26, '2', '2', 'jaya', 'housewife', 40000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2012280006', '15', '1', 'upload_files/candidate_tracker/26559749725_manoj resume 2.pdf', NULL, NULL, '2020-12-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain and time being looking for job.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 12:57:02', 1, '2020-12-29 01:30:46', 0, NULL, 1),
(2756, '', '0', '9965451878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 01:13:17', 0, NULL, 0, NULL, 1),
(2757, '', '0', '6381327822', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 03:19:14', 0, NULL, 0, NULL, 1),
(2758, '', '0', '8122838385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 03:27:35', 0, NULL, 0, NULL, 1),
(2759, '', '0', '9940587620', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 04:33:01', 0, NULL, 0, NULL, 1),
(2760, 'sarath surendran', '22', '7904301984', '', 'sarathsurendran642@gmail.com', '1998-02-08', 22, '2', '2', 'surendra kumar', 'freelancing', 30000.00, 1, 15000.00, 20000.00, 'chennai', 'Chennai', '2012280011', '1', '2', 'upload_files/candidate_tracker/37464349601_Sarath resume DM EXP.pdf', NULL, NULL, '2020-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much exp in DM', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-28 05:08:43', 64, '2020-12-29 04:46:58', 0, NULL, 1),
(2761, 'Muhammad Waseem E', '4', '8610380096', '8940148202', 'boomwaseem26@gmail.com', '1998-06-07', 22, '2', '2', 'Ahmed basha', 'Business', 50000.00, 0, 0.00, 12000.00, 'Periyament Chennai', 'Vellore', '2012280012', '1', '1', 'upload_files/candidate_tracker/4565032221_RESUME (3) (1) (1) (1).docx', NULL, NULL, '2020-12-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2020-12-28 05:37:06', 50, '2020-12-30 04:54:31', 0, NULL, 1),
(2762, 'Soundar', '13', '6383552842', '7530061256', 'ragulmca2013@gmail.com', '1991-04-16', 29, '2', '2', 'Santhi', 'Software Developer', 12000.00, 0, 10000.00, 16000.00, 'Namakkal', 'Namakkal', '2012280013', '15', '2', 'upload_files/candidate_tracker/46334172156_SOUNDAR_RESUME.docx', NULL, NULL, '2020-12-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 05:41:16', 50, '2020-12-30 04:54:47', 0, NULL, 1),
(2763, 'I Farhath Matheen', '6', '7448377204', '', 'farhathmatheen91@gmail.com', '1991-09-19', 29, '2', '1', 'Syed Iqbal', 'Clerk', 12000.00, 2, 0.00, 15000.00, 'Kodungaiyur', 'Kodungaiyur', '2012280014', '14', '1', 'upload_files/candidate_tracker/14221027353_RESUME.docx', NULL, NULL, '2020-12-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, will not suite for callind, and long distance too. 2hrs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-28 06:31:25', 50, '2020-12-29 12:21:40', 0, NULL, 1),
(2764, '', '0', '9176926258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 06:35:27', 0, NULL, 0, NULL, 1),
(2765, 's.dilli avinash', '6', '7299707122', '8925434981', 'dilli1999avinash@gmail.com', '1999-12-26', 21, '2', '2', 't.n.sathiyanarayanan', 'supervisor', 13000.00, 1, 0.00, 20000.00, 'Chennai', 'chennai', '2012280016', '1', '1', 'upload_files/candidate_tracker/83537150673_AVINASH RESUME.pdf', NULL, NULL, '2020-12-29', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'He is not willing to work weekends including saturday..', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-28 07:13:15', 1, '2020-12-29 11:36:38', 0, NULL, 1),
(2766, '', '0', '8870079302', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012280017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-28 07:59:24', 0, NULL, 0, NULL, 1),
(2767, 'Abdul ravoof', '5', '8870820579', '', 'aravoof208@gmail.com', '1997-02-09', 23, '2', '2', 'Thurapsha', 'Business', 20000.00, 3, 0.00, 18000.00, 'Tenkasi', 'Tenkasi', '2012280018', '1', '1', 'upload_files/candidate_tracker/80333412359_My_Resume 123.docx', NULL, NULL, '2020-12-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, fresher will not suite for RE.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-28 08:48:12', 1, '2020-12-28 09:07:39', 0, NULL, 1),
(2768, 'prasanth', '6', '9551721233', '', 'kprasanth685@gmail.com', '1999-07-26', 21, '2', '2', 'Krishna', 'Carpenter', 15000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2012290001', '1', '1', 'upload_files/candidate_tracker/92953587525_SamplePDF.pdf', NULL, NULL, '2020-12-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, Will Not Suite For Calling And Sales. Not Speaking Up And Language Is Not Good.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 10:11:08', 7, '2020-12-29 02:29:18', 0, NULL, 1),
(2769, 'Manikandan v', '6', '9840514701', '9551721233', 'maniappu786@gmail.com', '1999-11-28', 21, '2', '2', 'Thenmozhi', 'Kotak Mahindra', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2012290002', '1', '1', 'upload_files/candidate_tracker/27291656825_Manikandan resume.docx', NULL, NULL, '2020-12-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for any profile', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 10:15:29', 1, '2020-12-29 10:22:55', 0, NULL, 1),
(2770, 'Sangeetha', '13', '7448354838', '', 'Sangithaselvaraj@gmail.com', '1996-09-06', 24, '3', '2', 'P.selvaraj', 'Helper', 10000.00, 0, 12000.00, 20000.00, 'Trichy', 'Trichy', '2012290003', '', '2', 'upload_files/candidate_tracker/87854023873_Sangeetha _Resume.pdf', NULL, NULL, '2020-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 10:19:16', 1, '2020-12-29 10:23:28', 0, NULL, 1),
(2771, '', '0', '9952977409', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 10:28:46', 0, NULL, 0, NULL, 1),
(2772, '', '0', '7299282616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 10:33:34', 0, NULL, 0, NULL, 1),
(2773, 's dinesh', '5', '9840807479', '', 'dineshkarthi4618dg@gmail.com', '1994-04-20', 26, '2', '2', 'none', 'none', 23000.00, 0, 23000.00, 25000.00, 'chennai', 'chennai', '2012290006', '3', '2', 'upload_files/candidate_tracker/87324978002_din resume bb.pdf', NULL, NULL, '2021-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 10:35:32', 1, '2021-01-11 09:22:52', 0, NULL, 1),
(2774, 'rajesh r', '5', '8667303913', '9940587620', 'rajeshsai02524@gmail.com', '1997-12-25', 23, '2', '2', 'n ragu', 'security', 10000.00, 1, 0.00, 20000.00, 'k k nagar', 'k k nagar', '2012290007', '1', '1', 'upload_files/candidate_tracker/32344338753_Rajesh Resume.pdf', NULL, NULL, '2020-12-29', 0, '', '9', '7', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate looking for crm or esales kindly check with particular managere thanks ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 10:41:01', 8, '2020-12-29 01:43:35', 0, NULL, 1),
(2775, 'maria nayaga thanaraj', '14', '7200030379', '7904298327', 'thanaraj.maria53@gmail.com', '1994-10-23', 26, '2', '2', 'maria sagaya pushparaj', 'teacher', 300000.00, 3, 380000.00, 450000.00, 'gingee', 'gingee', '2012290008', '15', '2', 'upload_files/candidate_tracker/12892560286_MariaUpdateResume(12102020).pdf', NULL, NULL, '2021-01-02', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '2', '2', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 11:49:32', 60, '2021-01-04 10:24:07', 0, NULL, 1),
(2776, 'naveen Kumar', '6', '9566145880', '', 'naveenspeed365@gmail.com', '1998-10-23', 22, '2', '2', 'dhatshana murthy', 'working in a market', 25000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2012290009', '1', '1', 'upload_files/candidate_tracker/70842014671_Copy-naveen.docx', NULL, NULL, '2020-12-29', 0, '', '8', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the interview', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-29 12:16:03', 50, '2020-12-29 12:47:49', 0, NULL, 1),
(2777, 'Naveen Kumar JP', '5', '9597043251', '8056667513', 'jpnaveen619@gmail.com', '1997-01-06', 23, '2', '2', 'J palani', 'Contract', 900000.00, 1, 400000.00, 400000.00, 'Tiruppur', 'Chennai', '2012290010', '1', '2', 'upload_files/candidate_tracker/26429149295_1609143734491Resume_Naveen.pdf', NULL, NULL, '2020-12-31', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-29 12:18:13', 1, '2020-12-29 12:23:06', 0, NULL, 1),
(2778, '', '0', '8778277408', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 12:55:17', 0, NULL, 0, NULL, 1),
(2779, 'vignesh', '14', '9698885142', '', 'Vigneshusasv@gmail.com', '1996-11-28', 24, '2', '2', 'uthirapathy', 'musician', 420000.00, 2, 420000.00, 550000.00, 'Nagapattinam', 'Nagapattinam', '2012290012', '15', '2', 'upload_files/candidate_tracker/50114948470_vigneshu.pdf', NULL, NULL, '2020-12-31', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 12:55:46', 1, '2020-12-29 12:58:30', 0, NULL, 1),
(2780, '', '0', '7010656525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 01:06:53', 0, NULL, 0, NULL, 1),
(2781, '', '0', '8508813213', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 01:07:07', 0, NULL, 0, NULL, 1),
(2782, 'Brindha', '14', '8526180339', '7019432750', 'brindhaayyamperumal@gmail.com', '1994-06-01', 26, '2', '1', 'Jayakumar', 'IT', 40000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2012290015', '15', '2', 'upload_files/candidate_tracker/50902073524_Brindha.A_CV.pdf', NULL, NULL, '2021-01-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 01:17:38', 60, '2021-01-04 10:24:20', 0, NULL, 1),
(2783, 'Gladwin R', '5', '9940673236', '', 'gladwin.sangeetharajan@gmail.com', '1993-06-22', 27, '2', '2', 'rajamani', 'junior engineer - retired', 30000.00, 0, 0.00, 25000.00, 'perungudi', 'chennai', '2012290016', '1', '2', 'upload_files/candidate_tracker/52615261636_GLADWIN.docx', NULL, NULL, '2020-12-30', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join. hold more than 1month.', '5', '2', '', '1', '1', '', '2', '2021-01-20', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2020-12-29 01:29:17', 8, '2020-12-30 04:36:27', 0, NULL, 1),
(2784, 'sam sornaraj n j', '23', '9361748416', '9840354729', 'njsam3010@gmail.com', '1997-10-30', 23, '2', '2', 'n.s.joseph-father', 'driver', 30000.00, 1, 0.00, 264000.00, 'chennai', 'chennai', '2012290017', '15', '2', 'upload_files/candidate_tracker/98763467176_Resume (1).pdf', NULL, NULL, '2021-01-11', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '1', '1', '', '2', '2021-01-12', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 02:26:44', 60, '2021-01-11 03:17:27', 0, NULL, 1),
(2785, 'Kiruthika.K', '14', '8220773969', '', 'kiruthikaanu95@gmail.com', '1995-01-04', 25, '2', '2', 'Karunakaran.D', 'VAO(Rtd)', 20000.00, 1, 11000.00, 30000.00, 'Gudiyatham, Vellore district', 'Gudiyatham, Vellore district', '2012290018', '1', '2', 'upload_files/candidate_tracker/89837547586_Kiruthika_Updated_Resume-1.docx', NULL, NULL, '2020-12-30', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2020-12-29 02:53:31', 50, '2020-12-30 04:55:22', 0, NULL, 1),
(2786, 'gowtham', '14', '9791373631', '9788940834', 'gwtm.srsh@gmail.com', '1994-04-25', 26, '2', '2', 'sureshkumar', 'android developer', 15000.00, 1, 30000.00, 45000.00, 'chennai', 'chenni', '2012290019', '15', '2', 'upload_files/candidate_tracker/54651401126_Gowtham Resume updated_10-10-20.docx', NULL, NULL, '2020-12-29', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 03:10:17', 1, '2020-12-29 03:14:39', 0, NULL, 1),
(2787, 'Sathya', '3', '8531913058', '', 'sathyasekaran1201@gmail.com', '1994-05-10', 26, '2', '2', 'Sekaran', 'Farmer', 12000.00, 2, 20000.00, 35000.00, 'Ambalavananendal', 'Chennai', '2012290020', '15', '2', 'upload_files/candidate_tracker/25184395755_sathya_Resume.pdf', NULL, NULL, '2020-12-30', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 03:26:01', 50, '2020-12-30 04:55:39', 0, NULL, 1),
(2788, 'Sathish Kumar', '14', '8807311149', '8610737059', 'sathishkumark748@gmail.com', '1994-10-18', 26, '2', '2', 'Kanagaraj', 'Retired', 400000.00, 0, 400000.00, 800000.00, 'Chennai', 'Chennai', '2012290021', '15', '2', 'upload_files/candidate_tracker/36694542316_Sathish Kumar -Android Developer-3.pdf', NULL, NULL, '2020-12-30', 60, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 03:31:56', 50, '2020-12-30 04:55:54', 0, NULL, 1),
(2789, 'saravanan', '14', '9962595450', '', 'samtoupm@gmail.com', '1997-10-29', 23, '2', '2', 'nirmala', 'house wife', 30000.00, 2, 15000.00, 20000.00, 'chennai', 'chennai', '2012290022', '1', '2', 'upload_files/candidate_tracker/10947901340_SARAVANAN R.pdf', NULL, NULL, '2021-01-09', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2020-12-29 03:56:20', 1, '2020-12-29 04:19:41', 0, NULL, 1),
(2790, '', '0', '9742959419', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 04:03:11', 0, NULL, 0, NULL, 1),
(2791, 'Saravanabalan S R', '22', '7904069982', '9043747276', 'saravanakarthi4321@gmail.com', '1999-01-22', 21, '4', '2', 'Ramanathan', 'Daily labour', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2012290024', '', '1', 'upload_files/candidate_tracker/93331129143_saravanacv.pdf', NULL, NULL, '2020-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-29 04:18:33', 1, '2020-12-29 04:22:59', 0, NULL, 1),
(2792, '', '0', '9944925087', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012290025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-29 05:03:52', 0, NULL, 0, NULL, 1),
(2793, 'ovaiz', '5', '7708301724', '', 'ovaiz786@gmail.com', '1992-12-08', 28, '2', '2', 'zubair', 'retired', 10000.00, 3, 25000.00, 30000.00, 'vellore', 'chennai', '2012290026', '1', '2', 'upload_files/candidate_tracker/79286416692_CV ( Assistant Operation Manager ) (1).pdf', NULL, NULL, '2020-12-30', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suit for our profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 05:05:13', 8, '2020-12-30 04:38:10', 0, NULL, 1),
(2794, 'Lokesh.v', '4', '7358420663', '7708975603', 'lokeshleo838@gmail.com', '1998-08-14', 22, '2', '2', 'M.vetrivel', 'Retired Chennai port trust', 12000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2012290027', '1', '1', 'upload_files/candidate_tracker/83073937427_LOKESH RESUME.pdf', NULL, NULL, '2020-12-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'time being looking for job. will join in his father office soon.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 07:55:56', 50, '2020-12-31 03:32:03', 0, NULL, 1),
(2795, 'dhanushya s', '6', '8925663970', '', 'dhanu3025@gmail.com', '1999-09-25', 21, '2', '2', 'senthilnathan', 'carpenter', 100000.00, 1, 12000.00, 15000.00, 'kodungaiyur', 'kodungaiyur', '2012290028', '1', '2', 'upload_files/candidate_tracker/74973694416_Dhanu CV.pdf', NULL, NULL, '2021-01-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no sales exp. will not suite for calling. prefers admin job. will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-29 10:32:33', 1, '2021-01-04 12:21:24', 0, NULL, 1),
(2796, 'm pavithra', '20', '8939626563', '9159189116', 'pavisha419@gmail.com', '1995-07-04', 25, '2', '1', 'sathish babu', 'supervisor', 22000.00, 0, 0.00, 17000.00, 'ambattur', 'ambattur', '2012300001', '2', '2', 'upload_files/candidate_tracker/24218377649_pavithra resume.pdf', NULL, NULL, '2020-12-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for esale', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-30 08:57:12', 7, '2020-12-30 06:37:13', 0, NULL, 1),
(2797, '', '0', '8328007370', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012300002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-30 11:32:32', 0, NULL, 0, NULL, 1),
(2798, 'Tamil Selvam S', '6', '7358656450', '9710267229', 'tamil8404@gmail.com', '1999-01-11', 21, '1', '2', 'Sekar S', 'Auto driver', 15000.00, 1, 0.00, 15000.00, 'No 52/35 5th Street Ezhil Nagar kodungaiyur', 'No 52/35 5th Street Ezhil Nagar Kodungaiyur', '2012300003', '', '1', 'upload_files/candidate_tracker/35213073636_2 Best Resum format.docx', NULL, NULL, '2020-12-30', 0, 'P1065', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much communicative, will not fit for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-30 11:42:36', 50, '2020-12-30 04:56:52', 0, NULL, 1),
(2799, 'prashanth c', '5', '8056652364', '6382568640', 'ckprashanth11404@gmail.com', '1996-07-25', 24, '2', '2', 'chandra sekar', 'centring', 25000.00, 0, 12000.00, 18000.00, 'erukkancherry', 'erukkancherry', '2012300004', '1', '2', 'upload_files/candidate_tracker/64899013946_prashanth resume.pdf', NULL, NULL, '2020-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Field Sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-30 02:15:47', 50, '2020-12-30 03:18:12', 0, NULL, 1),
(2800, 'RAJESHKANNAN', '5', '9176160615', '8526784155', 'klu.rajesh90@gmail.com', '1990-03-08', 30, '2', '1', 'Gurusamy', 'Former', 72000.00, 0, 20500.00, 25000.00, 'Medavakkam', 'Medavakkam', '2012300005', '1', '2', 'upload_files/candidate_tracker/10169116944_RAJESHKANNAN_5YEARS_EXP-converted.pdf', NULL, NULL, '2020-12-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales, no sales exp too.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-30 02:37:55', 50, '2020-12-31 03:57:42', 0, NULL, 1),
(2801, '', '0', '9092382619', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012300006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-30 02:46:30', 0, NULL, 0, NULL, 1),
(2802, 'Nandhagopal V', '5', '9840571182', '', 'vngnandha03@gmail.com', '1993-08-03', 27, '1', '2', 'Vijayakumar V', 'Operater', 20000.00, 0, 280000.00, 350000.00, 'Chennai Kodungaiyur', 'Chennai Kodungaiyur', '2012300007', '', '2', 'upload_files/candidate_tracker/14392744810_Nandha Resume.doc', NULL, NULL, '2020-12-30', 0, '55593', '3', '8', '2021-01-04', 300000.00, '', '3', '2021-01-31', '1', '25k as ctc and for lokesh team.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-30 03:55:04', 7, '2021-01-02 05:26:51', 0, NULL, 1),
(2803, 'padma priya', '6', '9500067856', '', 'paviramesh0608@gmail.com', '1998-03-13', 22, '2', '2', 'ramesh', 'business', 20000.00, 1, 15000.00, 18000.00, 'broadway', 'broadway', '2012300008', '1', '2', 'upload_files/candidate_tracker/59713068425_RESUME PAVI2.docx', NULL, NULL, '2021-01-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sales Exp. . Prefers Admin Job. Will Not Sustain. quit her job bcoz of shift timing and Long distance. will not adapt easily and will not work in sales pressure. exp 15k+', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-30 04:28:34', 50, '2021-01-04 12:14:38', 0, NULL, 1),
(2804, 'Sivaraman C', '13', '8754060365', '', 'Shivasiva188@gmail.com', '1995-05-31', 25, '2', '2', 'Chinnadurai', 'Weaver', 25000.00, 2, 15000.00, 18000.00, 'Cuddalore', 'Cuddalore', '2012300009', '1', '2', 'upload_files/candidate_tracker/58858985260_sivaraman_resume.pdf', NULL, NULL, '2021-01-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2020-12-30 06:00:39', 1, '2020-12-30 06:50:41', 0, NULL, 1),
(2805, 'Nithiya bharathi R', '13', '8682075534', '9382113156', 'nithyaramesh1997@gmail.com', '1997-07-16', 23, '2', '2', 'Ramesh kumar K', 'Business', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2012300010', '1', '1', 'upload_files/candidate_tracker/24040644345_Nithya Resume.pdf', NULL, NULL, '2021-01-05', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-30 10:49:06', 7, '2021-01-05 04:38:16', 0, NULL, 1),
(2806, 'sarfraz nawaz', '14', '9962535551', '', 'informsarfu@gmail.com', '1998-09-10', 22, '2', '2', 'shahnawaz', 'business', 200000.00, 3, 0.00, 20000.00, 'chennai', 'chennai', '2012300011', '1', '1', 'upload_files/candidate_tracker/71707185215_updated resume.pdf', NULL, NULL, '2021-01-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2020-12-30 11:23:18', 60, '2021-01-04 10:25:09', 0, NULL, 1),
(2807, 'VISHNU S', '6', '9789278711', '', 'vishnuvish1195@gmail.com', '1995-11-11', 25, '1', '2', 'Sivaprakasam B', 'Bussiness', 30000.00, 1, 11000.00, 13.00, 'Vadapalani', 'Vadapalani', '2012310001', '', '2', 'upload_files/candidate_tracker/69569341225_vishnu resume new.doc', NULL, NULL, '2020-12-31', 0, 'P1165', '3', '8', '2021-03-08', 156000.00, '', '4', '2021-04-15', '1', '13k ctc and for ramesh team. first he was selected for guru team but not joined. Refereed by tamil mani.', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-31 10:59:04', 7, '2021-03-04 03:52:33', 0, NULL, 1),
(2808, 'Tamilmani s', '6', '9095203429', '9092909521', 'Strtamil39@gmail.com', '1994-06-30', 26, '1', '2', 'Tamilarasi s', 'Bussiness', 30000.00, 3, 11000.00, 15000.00, 'Nagapattinam', 'Vadapalani', '2012310002', '', '2', 'upload_files/candidate_tracker/45719522387_tamil (1).doc', NULL, NULL, '2020-12-31', 0, 'P1165', '3', '7', '2021-01-04', 176844.00, '', '4', '2022-07-01', '1', 'CTC - 176844 TH - 14000\nGross-14737', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2020-12-31 11:00:29', 7, '2021-01-02 04:51:54', 0, NULL, 1),
(2809, '', '0', '9025199089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 11:10:12', 0, NULL, 0, NULL, 1),
(2810, '', '0', '9080849637', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 11:32:53', 0, NULL, 0, NULL, 1),
(2811, 'Ruby', '4', '7305751986', '', 'Rubyjanu25@gmail.com', '1996-10-20', 24, '2', '2', 'Mothilal.d', 'Welder', 15000.00, 2, 12000.00, 15000.00, 'Thiruvittiyur', 'Thiruvottiyur', '2012310005', '1', '2', 'upload_files/candidate_tracker/5797249445_Ruby Cv.pdf', NULL, NULL, '2020-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ok for Service Agreement ,will not sustain for a long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-31 11:43:23', 8, '2020-12-31 03:34:17', 0, NULL, 1),
(2812, '', '0', '8883282968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 11:46:20', 0, NULL, 0, NULL, 1),
(2813, '', '0', '9994650518', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 12:29:18', 0, NULL, 0, NULL, 1),
(2814, 'G.Bharathraj', '6', '9600686729', '9600680096', 'bharathji1999@Gmail.com', '1998-01-10', 22, '2', '2', 'ganesan ramuthaye', 'chennai', 10000.00, 0, 12000.00, 13000.00, 'thirunelveli', 'chromepet', '2012310008', '1', '2', 'upload_files/candidate_tracker/40216236416_bharathrajkdconverted.pdf', NULL, NULL, '2021-01-02', 0, '', '3', '7', '2021-01-04', 146400.00, '', '3', '2021-01-07', '1', 'Shortlisted for Thiyagu Team CTC 146400 , Gross 12200 ,TH 11590', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-31 12:49:24', 50, '2021-01-04 12:34:03', 0, NULL, 1),
(2815, 'ajithkumar', '4', '9600162296', '9940084833', 'ajithkumar.1102995@gmail.com', '1995-09-29', 25, '2', '2', 'd.chithiraipandi', 'nothing', 38000.00, 3, 14000.00, 20000.00, 'ennore', 'ennore', '2012310009', '1', '2', 'upload_files/candidate_tracker/97279092429_0_AJITH RESUME.docx', NULL, NULL, '2021-01-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Insurance Sales\n', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-31 03:37:41', 1, '2020-12-31 04:04:42', 0, NULL, 1),
(2816, 'Ramajeyam', '20', '6383857946', '8012386956', 'rjsmart24@gmail.com', '1998-12-24', 22, '2', '2', 'Chithrai pandi', 'Kooli', 20000.00, 3, 0.00, 14000.00, 'Ennore', 'Ennore', '2012310010', '1', '1', 'upload_files/candidate_tracker/54083594276_CRT RESUME.docx', NULL, NULL, '2021-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No fit for Insurance Sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2020-12-31 03:38:58', 50, '2021-01-02 10:16:23', 0, NULL, 1),
(2817, '', '0', '9585932305', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 03:40:47', 0, NULL, 0, NULL, 1),
(2818, '', '0', '9952117233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012310012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2020-12-31 08:48:38', 0, NULL, 0, NULL, 1),
(2819, '', '0', '8144663995', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101010001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-01 06:02:26', 0, NULL, 0, NULL, 1),
(2820, '', '0', '9629412398', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101010002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-01 08:08:37', 0, NULL, 0, NULL, 1),
(2821, 'Tamilarasi', '4', '8939019270', '8939146155', 'Adaikkalammagesh950@gmail.com', '1993-10-31', 27, '2', '1', 'Magesh', 'Construction worker', 35000.00, 0, 0.00, 15000.00, 'Chennai', 'Redhills', '2101010003', '14', '1', 'upload_files/candidate_tracker/44969089417_resumeMon-Oct--1-08_34_05-2018.doc', NULL, NULL, '2021-01-02', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not relevant at all', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-01 09:15:40', 1, '2021-01-02 12:19:30', 0, NULL, 1),
(2822, '', '0', '8056160401', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 09:16:24', 0, NULL, 0, NULL, 1),
(2823, 'veera chinnu', '13', '6383370939', '', 'veerachinnu36@gmail.com', '1988-04-12', 32, '3', '2', 'chinnu', 'former', 20000.00, 2, 0.00, 15000.00, 'madurai', 'kodambakkam', '2101020002', '', '2', 'upload_files/candidate_tracker/10091035189_resume.doc.pdf', NULL, NULL, '2021-01-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-02 09:57:05', 1, '2021-01-02 10:14:51', 0, NULL, 1),
(2824, '', '0', '9886190281', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 10:39:37', 0, NULL, 0, NULL, 1),
(2825, 'Sumaiya.A', '4', '9344687467', '', 'sumaiya10dec1999@gmail.com', '1999-12-10', 21, '2', '2', 'R.m.Abdullah', 'Labour', 10000.00, 1, 0.00, 10000.00, 'Tambaram', 'Tambaram sanitorium', '2101020004', '1', '1', 'upload_files/candidate_tracker/94692959855_Sumaiya.A.pdf', NULL, NULL, '2021-01-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-02 10:43:07', 1, '2021-01-02 10:50:01', 0, NULL, 1),
(2826, 'A.NANCY SWATHY', '13', '8870566923', '', 'nanswathy@gmail.com', '1997-10-10', 23, '2', '2', 'S.ASKAR JEBA KUMAR', 'account', 40000.00, 1, 15000.00, 25000.00, 'chennai', 'chennai', '2101020005', '1', '2', 'upload_files/candidate_tracker/23126176905_NancySwathy.pdf', NULL, NULL, '2021-01-02', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-02 11:58:16', 50, '2021-01-02 12:49:51', 0, NULL, 1),
(2827, 'Riyazudeen', '23', '9566136057', '', 'Riyazudeenriyaz@gmail.com', '1994-12-27', 26, '2', '2', 'Mainudeen', 'Office assistent', 15000.00, 1, 12000.00, 15000.00, 'perambur , Chennai', 'Perambur , Chennai', '2101020006', '1', '2', 'upload_files/candidate_tracker/73807186273_resume-updated-web_03-Feb-20_01_35_50.docx', NULL, NULL, '2021-01-06', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Satisfied.', '2', '2', '', '1', '1', '', '2', '2021-01-07', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-02 12:20:56', 50, '2021-01-06 03:13:00', 0, NULL, 1),
(2828, 'M Vignesh Kumar', '5', '9150575211', '9841467243', 'vickymadhi94@gmail.com', '1994-05-16', 26, '2', '2', 'Parents : father name : k Mathiyalagan', 'Posts office retired', 20000.00, 3, 10000.00, 15000.00, 'Chennai', 'Villivakkam', '2101020007', '3', '2', 'upload_files/candidate_tracker/38622993256_CV_2020-12-17-085355.pdf', NULL, NULL, '2021-01-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very slow and after his degree 4yr he was Searching job. will not sustain.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-02 02:56:41', 8, '2021-01-04 03:07:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2829, '', '0', '7299335571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 04:08:45', 0, NULL, 0, NULL, 1),
(2830, 'Dilliganesh k', '13', '8825899092', '8148909036', 'dilliganeshk98@gmail.com', '1998-10-14', 22, '2', '2', 'Krishnamoorthy R', 'Labour', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2101020009', '1', '1', 'upload_files/candidate_tracker/45098193309_MY CV-1 new-1.docx', NULL, NULL, '2021-01-07', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He donxquott know the basics.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-02 05:18:31', 1, '2021-01-02 05:24:57', 0, NULL, 1),
(2831, 'sreeram', '23', '8124407091', '9789294496', 'sreeramdurairajan88@gmail.com', '1995-09-02', 25, '2', '2', 'kavitha d', 'house wife', 10000.00, 1, 0.00, 20000.00, 'thakkolam', 'poonamalle', '2101020010', '1', '1', 'upload_files/candidate_tracker/96810057872_Resume.docx', NULL, NULL, '2021-01-04', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Looking more Experienced.', '2', '2', '0', '1', '1', '0', '2', '2021-01-06', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-02 06:10:38', 1, '2021-01-03 01:06:14', 0, NULL, 1),
(2832, '', '0', '7358268031', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 06:43:45', 0, NULL, 0, NULL, 1),
(2833, '', '0', '9940586897', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 07:01:47', 0, NULL, 0, NULL, 1),
(2834, '', '0', '9360654580', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101020013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-02 10:36:26', 0, NULL, 0, NULL, 1),
(2835, 'S Hussain Meeran', '23', '8148752872', '', 'hussainmeeran05@gmail.com', '1995-02-05', 25, '2', '2', 'S Sulthan Maideen', 'Farmer', 7000.00, 2, 1.80, 3.20, 'Theni', 'Theni', '2101020014', '1', '2', 'upload_files/candidate_tracker/62417533967_Hussain Meeran1.docx', NULL, NULL, '2021-01-04', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much exp in UI UX, only into basics of HTML CSS,No Exp in Adobe tools', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-02 11:03:12', 50, '2021-01-04 12:01:52', 0, NULL, 1),
(2836, 'R. Neethikumar', '5', '7904624501', '9962587555', 'neethikumar38@gmail.com', '1992-07-05', 28, '3', '2', 'R v RAMAKRISHNAN', 'Self employed', 10000.00, 0, 0.00, 30000.00, 'Mogappair East', 'Mogappair East', '2101020015', '', '2', 'upload_files/candidate_tracker/98196350142_Neethi Update Resume 2.docx', NULL, NULL, '2021-01-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our profile, will not sustain. switched company for salary', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-02 11:21:33', 7, '2021-01-06 11:09:46', 0, NULL, 1),
(2837, 'Yogesh', '23', '9182270883', '', 'yogi12560@gmail.com', '1996-10-18', 24, '2', '2', 'Mahalaxmi', 'Housewife', 15000.00, 1, 10000.00, 12000.00, 'Palamaner', 'Chennai', '2101030001', '1', '2', 'upload_files/candidate_tracker/50699122682_yogesh_resume.pdf', NULL, NULL, '2021-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Exp in Adobe Tools, Not much exp into UI UX, will not sustain', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-03 06:57:56', 50, '2021-01-04 10:14:33', 0, NULL, 1),
(2838, 'anusha subramaniam', '23', '7200863546', '', 'anushacreativehi5@gmail.com', '1987-02-05', 33, '2', '2', 'r.subramaniam', 'rtd.gov officer', 40.00, 1, 20.00, 25.00, 'nungambakkam', 'madavakkam', '2101030002', '1', '2', 'upload_files/candidate_tracker/10409428001_Anusha Subramaniam Resume.doc', NULL, NULL, '2021-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-03 11:06:41', 1, '2021-01-03 11:19:40', 0, NULL, 1),
(2839, 'Manju. V', '4', '8667046821', '', 'lamanju282@gmail.com', '2000-03-23', 20, '1', '2', 'Venkatesan, Devi', 'Carpenter', 10000.00, 1, 0.00, 12000.00, '46/2 Ragava street, choolai, chennai-112', '46/2 Ragava street, choolai, chennai-112', '2101040001', '', '1', 'upload_files/candidate_tracker/89727769390_manju new.doc', NULL, NULL, '2021-01-04', 0, 'P1069', '5', '67', NULL, 0.00, '', '0', NULL, '1', 'aS THE CANDIDATE HAS 3 MONTHS EXPERIENCE IN SERVICE RELATED COMPANY. NOT APT FOR TELESALES.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 10:09:48', 1, '2021-01-04 10:19:15', 0, NULL, 1),
(2840, 'R Mohanraj', '23', '8056254846', '', 'mohannbtechit12@gmail.com', '1995-07-04', 25, '2', '2', 'R Rajendran', 'Driver', 10000.00, 2, 18000.00, 25000.00, 'Chennai', 'Chennai', '2101040002', '1', '2', 'upload_files/candidate_tracker/46760577171_1608558144417_1601001653977Resume_R.docx', NULL, NULL, '2021-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Exp in UX ', '2', '2', '', '1', '1', '', '2', '2021-01-07', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-04 10:18:55', 50, '2021-01-04 11:23:50', 0, NULL, 1),
(2841, '', '0', '9089861491', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 10:43:51', 0, NULL, 0, NULL, 1),
(2842, '', '0', '9500465161', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 10:51:36', 0, NULL, 0, NULL, 1),
(2843, 'M.priyadharshini', '4', '9080979153', '', 'M.priyadharshini62@gmail.com', '2000-02-06', 20, '1', '2', 'Mohan', 'Retired', 10000.00, 1, 10000.00, 15000.00, 'Chennai', 'T.nagar', '2101040005', '', '2', 'upload_files/candidate_tracker/12870303831_priyam res.docx', NULL, NULL, '2021-01-04', 0, 'Jobs', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for crm profile..sustainability is doubt', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 11:01:40', 8, '2021-01-04 03:05:37', 0, NULL, 1),
(2844, 'sharan', '5', '9884318428', '', 'Sharan.garla@gmail.com', '1996-10-04', 24, '2', '2', 'balaji', 'Business', 20000.00, 1, 300000.00, 400000.00, 'chennai', 'chennai', '2101040006', '1', '2', 'upload_files/candidate_tracker/12136463969_sharan cv 2020 edited .pdf', NULL, NULL, '2021-01-05', 0, '', '5', '29', NULL, 0.00, '', '0', NULL, '1', 'will not fit for any profile, has not worked for last 1 year, expecting higher salary, however zero skill ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 11:15:38', 1, '2021-01-05 12:23:07', 0, NULL, 1),
(2845, 'Najeeullah Toufeeq HN', '4', '9080506691', '', 'najeeullahtoufi@gmail.com', '2000-03-19', 20, '2', '2', 'Niyamathullah HG', 'Supervisor', 36000.00, 2, 0.00, 15000.00, 'Vaniyambadi', 'Periamet', '2101040007', '1', '1', 'upload_files/candidate_tracker/74586885486_TOUFI.pdf', NULL, NULL, '2021-01-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '2', '', '1', '1', '', '2', '2021-01-09', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 11:23:59', 7, '2021-01-06 11:20:34', 0, NULL, 1),
(2846, 'Pradeep Rs', '5', '9176342552', '9841147196', 'msdpradeep608@gmail.com', '1997-06-13', 23, '2', '2', 'Father: R Sridhar, mother: s chandra', 'Contractor', 30000.00, 2, 0.00, 9000.00, 'Ekkattuthangal', 'Ekkattuthangal', '2101040008', '1', '2', 'upload_files/candidate_tracker/26451534802_pradeep(1).docx', NULL, NULL, '2021-01-05', 0, '', '3', '8', '2021-01-07', 114000.00, '', '3', '2021-01-09', '1', '9k ctc for keerthika team.', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 11:28:23', 7, '2021-01-07 10:26:04', 0, NULL, 1),
(2847, 'Sudha K', '4', '6364696930', '9241066535', 'sudhachinnu322@gmail.com', '1997-03-30', 23, '2', '1', 'Praveen Kumar S', 'Field executive', 20000.00, 3, 20000.00, 20000.00, 'Adugodi, Mahalingeshwara Layout', 'Adugodi, mahalingeshdwara layout', '2101040009', '7', '2', 'upload_files/candidate_tracker/75255868192_Charniii documents.docx', NULL, NULL, '2021-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 11:39:28', 1, '2021-01-04 11:47:32', 0, NULL, 1),
(2848, 'Arunprasad', '2', '8939537568', '', 'arunprasadramasamyy@gmail.com', '1995-10-19', 25, '1', '2', 'Ramasamy', 'Supervisor', 16000.00, 2, 300000.00, 350000.00, 'Chennai', 'Chennai', '2101040010', '', '2', 'upload_files/candidate_tracker/45764715994_Arun_Resume.docx', NULL, NULL, '2021-01-05', 26, 'Seetha', '5', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task incomplete.', '2', '2', '', '1', '1', '', '2', '2021-01-09', '3', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 11:50:54', 7, '2021-01-05 06:40:53', 0, NULL, 1),
(2849, '', '0', '9790474911', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 11:52:17', 0, NULL, 0, NULL, 1),
(2850, 'A. Hari Karan', '22', '8667730142', '7092666841', 'hariflicks74@gmail.com', '1999-07-14', 21, '2', '2', 'S. Arasu', 'Driver', 74000.00, 1, 0.00, 250000.00, 'Chennai', 'Villivakkam Chennai', '2101040012', '1', '1', 'upload_files/candidate_tracker/25541395553_(Hari-Resume).pdf', NULL, NULL, '2021-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 03:49:38', 1, '2021-01-05 10:11:34', 0, NULL, 1),
(2851, 'Jeevanathan', '13', '7708090147', '', 'g.jeeva95@gmail.com', '1995-01-25', 25, '2', '2', 'Gajendran', 'Agriculture', 50000.00, 1, 300000.00, 450000.00, 'Chennai', 'Chennai', '2101040013', '1', '2', 'upload_files/candidate_tracker/68189600151_Resume_Jeevanathan .pdf', NULL, NULL, '2021-01-06', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-04 04:00:55', 50, '2021-01-06 05:27:27', 0, NULL, 1),
(2852, '', '0', '9566950729', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 04:52:53', 0, NULL, 0, NULL, 1),
(2853, '', '0', '9884492953', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 04:55:53', 0, NULL, 0, NULL, 1),
(2854, '', '0', '8148641771', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101040016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-04 05:44:08', 0, NULL, 0, NULL, 1),
(2855, 'v karthik', '13', '9952836382', '', 'karthiknathanresearch@gmail.com', '1989-12-14', 31, '3', '2', 'g venkatesan', 'sbi retried', 18000.00, 1, 600000.00, 900000.00, 'adambakkam chennai', 'adambakkam chennai', '2101040017', '', '2', 'upload_files/candidate_tracker/22263964946_karthik_resume.pdf', NULL, NULL, '2021-01-05', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Upto the Level. He is telling i am not recall the technologies.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-04 06:50:48', 1, '2021-01-05 10:52:16', 0, NULL, 1),
(2856, 'Praveenkumar', '4', '7708384827', '', 'jpraveenkumar263@gmail.com', '1999-07-27', 21, '2', '2', 'Jayapalan', 'Farmer', 125000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2101040018', '1', '1', 'upload_files/candidate_tracker/1780403936_Praveen resume.docx', NULL, NULL, '2021-01-05', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not attended', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-04 06:59:32', 50, '2021-01-05 11:41:40', 0, NULL, 1),
(2857, 'nandhini b', '11', '9962129197', '9043926876', 'sugu1710@gmail.com', '1998-12-17', 22, '3', '2', 'balaji', 'worker', 20000.00, 1, 11000.00, 20000.00, 'mangadu', 'mangadu', '2101050001', '', '2', 'upload_files/candidate_tracker/35171089822_B.Nandhini_Resume.pdf', NULL, NULL, '2021-01-18', 3, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 01:19:04', 7, '2021-01-21 01:44:54', 0, NULL, 1),
(2858, 'subramani .p', '23', '9940585759', '', 'subbu.logic@gmail.com', '1984-10-05', 36, '2', '1', 'pakkiriswamy', 'home', 30000.00, 3, 38000.00, 45000.00, 'Chennai', 'Chennai', '2101050002', '1', '2', 'upload_files/candidate_tracker/27347805892_Subramani UX UI Designer.pdf', NULL, NULL, '2021-01-06', 1, '', '5', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'we picked another candidate', '2', '2', '', '1', '1', '', '2', '2021-01-09', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 11:38:14', 50, '2021-01-06 02:33:39', 0, NULL, 1),
(2859, '', '0', '7667076341', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 11:55:24', 0, NULL, 0, NULL, 1),
(2860, 'Zuwairiya', '4', '8939270438', '9840956845', 'Zuwairiya1997@gmail.com', '1997-02-18', 23, '2', '2', 'Abdul huck', 'Self employed', 100000.00, 2, 18000.00, 20000.00, 'Parrys', 'Parrys', '2101050004', '1', '2', 'upload_files/candidate_tracker/4625501001_Zuwairiya Resume.docx', NULL, NULL, '2021-01-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'got offer and updated the same.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-05 12:01:20', 8, '2021-01-05 01:46:05', 0, NULL, 1),
(2861, 'N.SHARUKULLAH', '6', '6369338320', '9498400139', 'sharukss1015@gmail.com', '1999-11-10', 21, '1', '2', 'A.M.Noorullah', 'Driver', 100000.00, 2, 10000.00, 15000.00, 'Thiruvallur', 'Porur', '2101050005', '', '2', 'upload_files/candidate_tracker/29028772382_N.sharuk resume.pdf', NULL, NULL, '2021-01-05', 0, 'Jobs', '3', '8', '2021-01-11', 156000.00, '', '5', '1970-01-01', '1', '13k ctc for syed team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 12:11:49', 7, '2021-01-09 12:55:48', 0, NULL, 1),
(2862, 'jayaprakash', '23', '8825939355', '', 'jpdev0520@gmail.com', '1995-05-20', 25, '2', '2', 'dhamodharan', 'daily base', 30.00, 1, 22.00, 25.00, 'chennai', 'chennai', '2101050006', '1', '2', 'upload_files/candidate_tracker/22802654192_Jayaprakash_Frontend_developer_CV.docx', NULL, NULL, '2021-01-09', 0, '', '3', '60', '2021-01-18', 300000.00, '', '5', '1970-01-01', '1', 'Selected for IT,CTC 25K,No PF only PT', '2', '1', '2', '1', '1', '', '2', '2021-01-11', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 12:24:58', 60, '2021-01-19 03:21:09', 0, NULL, 1),
(2863, 'Nithiya bharathi R', '13', '9382113156', '8682075534', 'nithyaramesh1997@gmail.com', '1997-07-16', 23, '2', '2', 'Ramesh kumar K', 'Business', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101050007', '1', '1', 'upload_files/candidate_tracker/89292805199_Nithya Resume.pdf', NULL, NULL, '2021-01-05', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not Completed.', '2', '2', '', '1', '1', '', '2', '2021-01-08', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 12:44:23', 50, '2021-01-05 12:54:42', 0, NULL, 1),
(2864, 'ambrose kumar a', '6', '9940582603', '7299955757', 'ezhilambrose63@gmail.com', '1996-01-02', 25, '2', '2', 'anthony', 'daily wages', 30000.00, 1, 13500.00, 18000.00, 'chennai', 'chennai', '2101050008', '2', '2', 'upload_files/candidate_tracker/35547697679_Ambroo RES PDF.pdf', NULL, NULL, '2021-01-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 12:59:01', 50, '2021-01-06 05:27:45', 0, NULL, 1),
(2865, 'Ricardo MALCOM CABRAL', '5', '7358651752', '6369424820', 'ricardocabral9495@gmail.com', '1994-11-09', 26, '1', '1', 'Darron', 'Hotelier', 30000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2101050009', '', '2', 'upload_files/candidate_tracker/93646310219_Ricky', NULL, NULL, '2021-01-05', 0, '55615', '3', '8', '2021-01-11', 276000.00, '', '6', '2021-03-26', '1', '23 ctc and hike after 3 month.1.5l target. for shanmugam team', '5', '2', '4', '1', '1', '1', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 01:29:18', 60, '2021-01-09 04:50:25', 0, NULL, 1),
(2866, 'Bala Krishna mani', '23', '9003570339', '', 'balakrishnamani30@gmail.com', '1991-06-24', 29, '2', '2', 'Subbaiah N', 'Farmer', 300000.00, 2, 32700.00, 40000.00, 'Nagercoil', 'Chennai', '2101050010', '1', '2', 'upload_files/candidate_tracker/93740850655_bala-cv.doc', NULL, NULL, '2021-01-07', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UI not good. Looking Better Design.', '2', '2', '', '1', '1', '', '2', '2021-01-08', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 02:41:02', 60, '2021-01-07 02:51:03', 0, NULL, 1),
(2867, '', '0', '9677346359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 02:55:07', 0, NULL, 0, NULL, 1),
(2868, 'Jothi lakshmi', '23', '8122292890', '9500715682', 'Lakshmijo17@gmail.com', '1990-05-17', 30, '2', '2', 'Thirunavukarasu', 'Retired', 80.00, 2, 10000.00, 25000.00, 'Chennai-600006', 'Chennai-600006', '2101050012', '1', '2', 'upload_files/candidate_tracker/96604545012_Jothi_Resume_20210101_010722303.doc', NULL, NULL, '2021-01-08', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-05 03:03:37', 1, '2021-01-05 03:08:32', 0, NULL, 1),
(2869, 'suriya d', '5', '8428182301', '8610106845', 'msdsuriya6@gmail.com', '1997-09-23', 23, '2', '2', 'none', 'none', 30000.00, 0, 16000.00, 20000.00, 'chennai', 'chennai', '2101050013', '3', '2', 'upload_files/candidate_tracker/30085501617_suriya dddd resume (2)5675566.pdf', NULL, NULL, '2021-01-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 03:33:26', 7, '2021-01-11 05:30:10', 0, NULL, 1),
(2870, 'SURIYA D', '6', '8610106845', '8428182301', 'msdsuriya6@gmail.com', '1997-09-23', 23, '4', '2', 'DURAI', 'FARMER', 40000.00, 0, 25000.00, 25000.00, 'No 9 SATHANANTHAL VILLUPURAM DT', 'KOYAMBEDU', '2101050014', '', '2', 'upload_files/candidate_tracker/39657125601_suriya dddd resume (2)5675566.pdf', NULL, NULL, '2021-01-11', 1, '', '8', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Next Round, but not attended ', '5', '1', '', '1', '3', '', '2', '2021-01-12', '2', '4', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 04:08:24', 60, '2021-01-11 06:14:04', 0, NULL, 1),
(2871, '', '0', '9790805934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 04:49:58', 0, NULL, 0, NULL, 1),
(2872, 'LALITHA R', '7', '9626094573', '', 'lalitha1912suriya@gmail.com', '1992-11-09', 28, '4', '2', 'RAMGANATHAN', 'FARMER', 65000.00, 2, 20000.00, 25000.00, 'GINGEE', 'TARAMANI', '2101050016', '', '2', 'upload_files/candidate_tracker/18390607687_1609160388978_LALITHA (1).doc', NULL, NULL, '2021-01-11', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 04:51:54', 7, '2021-01-11 05:31:00', 0, NULL, 1),
(2873, '', '0', '8917594914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 04:58:40', 0, NULL, 0, NULL, 1),
(2874, 'shadrach r', '6', '8056260674', '7010407801', 'shadrach3697@gmail.com', '1997-06-03', 23, '2', '2', 'janathul firdaus', 'sole trade business', 20000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2101050018', '2', '2', 'upload_files/candidate_tracker/61976649246_Shadrach resume.docx', NULL, NULL, '2021-01-06', 0, '', '3', '8', '2021-01-11', 180000.00, '', '6', '2022-02-09', '1', '15k ctc for Suthagar team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 05:12:13', 7, '2021-01-09 12:56:08', 0, NULL, 1),
(2875, 'john stenies j', '6', '8807305578', '8825811156', 'johnstenies04@gmail.com', '1998-04-09', 22, '2', '2', 'john peter p', 'business man', 20000.00, 2, 0.00, 14000.00, 'chennai', 'chennai', '2101050019', '2', '1', 'upload_files/candidate_tracker/74323250267_John steni resume 2020.docx', NULL, NULL, '2021-01-06', 0, '', '3', '8', '2021-01-11', 151800.00, '', '3', '2021-01-22', '1', '12k th for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-05 05:18:40', 7, '2021-01-09 12:56:25', 0, NULL, 1),
(2876, '', '0', '7358096697', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 05:24:31', 0, NULL, 0, NULL, 1),
(2877, '', '0', '9962261013', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101050021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-05 05:33:46', 0, NULL, 0, NULL, 1),
(2878, '', '0', '8063141060', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 10:53:39', 0, NULL, 0, NULL, 1),
(2879, 'nivedha', '4', '7358419048', '8124268064', 'nivedhafernandes8@gmail.com', '1996-09-23', 24, '2', '2', 'babu fernnades', 'church employee', 20000.00, 1, 15000.00, 18000.00, 'Chennai', 'st.thomas mount', '2101060002', '15', '2', 'upload_files/candidate_tracker/75668132491_RESUME (3).doc', NULL, NULL, '2021-01-06', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for esale.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 11:06:47', 1, '2021-01-06 11:18:48', 0, NULL, 1),
(2880, '', '0', '7094854698', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 11:26:11', 0, NULL, 0, NULL, 1),
(2881, 'Vinoth kumar.l', '4', '8072443821', '', 'vinothdce9@gmail.com', '1995-11-09', 25, '1', '2', 'Loganathan.v', 'employee in Hardware Business(s k tools)', 30000.00, 1, 1.00, 15000.00, 'Iyyapanthangal', 'Iyyapanthangal', '2101060004', '', '2', 'upload_files/candidate_tracker/93240615606_RESUME.pdf', NULL, NULL, '2021-01-06', 0, 'Jobs', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 11:58:24', 50, '2021-01-06 05:28:56', 0, NULL, 1),
(2882, '', '0', '9655138505', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 12:13:22', 0, NULL, 0, NULL, 1),
(2883, 'Ashwini B D', '4', '9566138505', '8838775277', 'bdashwini@gmail.com', '1990-06-01', 30, '1', '1', 'Vijayan M', 'Busness', 20000.00, 1, 11500.00, 18000.00, 'Thiruverkadu', 'Thiruverkadu', '2101060006', '', '2', 'upload_files/candidate_tracker/16914720891_CamScanner 01-06-2021 12.32.42.pdf', NULL, NULL, '2021-01-06', 0, 'Jobs', '3', '8', '2021-01-20', 180000.00, '', '6', '2021-02-02', '2', '15k ctc for karthika team. esale', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 12:20:49', 7, '2021-01-12 04:47:33', 0, NULL, 1),
(2884, 'SHAFI B', '5', '9177422530', '7013606318', 'dilshafi1997@gmail.com', '1997-06-20', 23, '1', '2', 'Meruna B', 'Tailor', 12000.00, 1, 0.00, 18000.00, 'Hindupur', 'Bangalore', '2101060007', '', '1', 'upload_files/candidate_tracker/80921250591_Resume 2.pdf', NULL, NULL, '2021-01-06', 0, '55606', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 12:38:59', 7, '2021-01-06 01:22:54', 0, NULL, 1),
(2885, 'Manuprasath', '5', '8148345883', '', 'Manuprasathm@gmail.com', '1991-06-04', 29, '2', '2', 'Mohandas', 'Retired', 25000.00, 2, 300000.00, 360000.00, 'Erode', 'Chennai', '2101060008', '1', '2', 'upload_files/candidate_tracker/46253889976_Manu CURRICULUM VITAE.doc', NULL, NULL, '2021-01-06', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for Life sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-06 12:45:22', 50, '2021-01-06 04:16:44', 0, NULL, 1),
(2886, 'Edwin Albert', '5', '9087022265', '', 'albert.edwin22@gmail.com', '1991-10-26', 29, '2', '2', 'Arockiya Mary', 'House wife', 25000.00, 1, 25000.00, 27000.00, 'Chennai', 'Pour', '2101060009', '1', '2', 'upload_files/candidate_tracker/61240000154_Financial CV ED.docx', NULL, NULL, '2021-01-06', 0, '', '3', '8', '2021-01-07', 264000.00, '', '2', '1970-01-01', '1', '22k ctc for shanmugam team. no pf.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-01-06 12:47:00', 7, '2021-01-06 07:14:21', 0, NULL, 1),
(2887, 'Soma Sundaram M', '13', '8056705482', '8838423484', 'sureshsoma12351198@gmail.com', '1998-11-05', 22, '2', '2', 'Murugan S', '96000 per annum', 8000.00, 1, 0.00, 150000.00, 'Seydunganallur', 'Chrompet', '2101060010', '1', '1', 'upload_files/candidate_tracker/75411280658_0_RESUME1.pdf', NULL, NULL, '2021-01-06', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not satisfied.', '2', '2', '', '1', '1', '', '2', '2021-01-09', '3', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-06 01:41:59', 50, '2021-01-06 05:30:28', 0, NULL, 1),
(2888, 'Sunder', '5', '6383171196', '', 'sunder4699@gmail.com', '1999-06-04', 21, '2', '2', 'Mohan', 'Student', 25000.00, 0, 0.00, 15000.00, 'Periyapalayam', 'Ambattur', '2101060011', '', '1', 'upload_files/candidate_tracker/61899317298_sundar nov 2020.pdf', NULL, NULL, '2021-01-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 02:03:41', 1, '2021-01-06 02:27:57', 0, NULL, 1),
(2889, '', '0', '8939486243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 03:22:35', 0, NULL, 0, NULL, 1),
(2890, 'Ganesh', '23', '8870987507', '', 'ganesh94ec@gmail.com', '1994-05-02', 26, '2', '2', 'Sekar', 'Building work', 15000.00, 2, 216000.00, 350000.00, '2/120, mandhakarai street, puliyur, Nagapattinam', 'LIG-662 Gr floor , Sholinganallur Chennai-119', '2101060013', '1', '2', 'upload_files/candidate_tracker/56073043542_GaneshResume_2020.pdf', NULL, NULL, '2021-01-08', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'We are Looking more Experienced. He dont have much knowledge in Photoshop.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-06 03:39:06', 1, '2021-01-08 02:42:05', 0, NULL, 1),
(2891, 'Bharathraj A', '13', '8428306120', '9360729608', '22.barathraj@gmail.com', '1998-12-22', 22, '1', '2', 'ANANDRAJ', 'Sales representative', 15000.00, 0, 0.00, 15000.00, 'No 8 1st cross street Gomathipuram thiruninravur', 'No 8 1st Cross Street Gomathipuram Thiruninravur', '2101060014', '', '1', 'upload_files/candidate_tracker/57886992708_barathresume (2).pdf', NULL, NULL, '2021-01-07', 0, 'Job', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-06 04:41:55', 50, '2021-01-07 05:22:11', 0, NULL, 1),
(2892, 'sathya', '23', '7708812086', '', 'sathisub90@gmail.com', '1989-06-25', 31, '2', '1', 'saravanan', 'private', 30000.00, 2, 280000.00, 420000.00, 'chennai', 'chennai', '2101060015', '1', '2', 'upload_files/candidate_tracker/55823881926_Sathya-UIDevelop.doc', NULL, NULL, '2021-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-06 04:50:12', 1, '2021-01-06 04:55:36', 0, NULL, 1),
(2893, 'JANAKIRAMAN.E', '4', '8428366691', '', 'janakiraman.e99@gmail.com', '1999-12-11', 21, '2', '2', 'Elumalai', 'Daily wages', 20000.00, 1, 0.00, 15000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2101060016', '1', '1', 'upload_files/candidate_tracker/51332133570_J resume.pdf', NULL, NULL, '2021-01-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-06 05:02:21', 50, '2021-01-07 05:20:42', 0, NULL, 1),
(2894, 'SARATHKUMAR. D', '4', '8939358278', '9094745321', 'Sarath23.dk@gmail.com', '1999-10-23', 21, '2', '2', 'DILLIBABU', 'Cooli', 13000.00, 1, 0.00, 15000.00, 'THIRUVANMIYUR', 'THIRUVANMIYUR', '2101060017', '1', '1', 'upload_files/candidate_tracker/27888910797_resume_1609933978020.pdf', NULL, NULL, '2021-01-07', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-06 05:04:36', 50, '2021-01-07 05:20:51', 0, NULL, 1),
(2895, 'Jeevasurya L', '23', '8610559488', '', 'jeevasurya2016@gmail.com', '1996-09-22', 24, '2', '2', 'Lakshmanan c', 'Working in private company', 45000.00, 1, 13000.00, 22000.00, 'Chennai, Thiruvottiyur', 'Chennai, Thiruvottiyur', '2101060018', '1', '2', 'upload_files/candidate_tracker/25540197058_Jeevasurya\'s Resume (3).pdf', NULL, NULL, '2021-01-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-06 06:20:03', 1, '2021-01-06 06:42:19', 0, NULL, 1),
(2896, '', '0', '7092352663', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101060019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-06 08:20:33', 0, NULL, 0, NULL, 1),
(2897, 'G madan', '5', '7305022345', '7093031234', 'madan.divi90@gmail.com', '1983-01-02', 38, '2', '1', 'M divyalakshmi', 'Working', 30000.00, 1, 0.00, 40000.00, 'Chennai', 'Chennai', '2101070001', '3', '2', 'upload_files/candidate_tracker/76286347171_Madan Resume-2.doc', NULL, NULL, '2021-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 10:06:22', 1, '2021-01-07 10:09:03', 0, NULL, 1),
(2898, 'Naveeth ahmed', '6', '9751660370', '9629534237', 'rananaveeth3232@gmail', '1998-06-05', 22, '1', '2', 'Wasim', 'Work', 10000.00, 1, 14.00, 15.00, 'Kanadasan nagar', 'Kanadasan nagar', '2101070002', '', '2', 'upload_files/candidate_tracker/80496245854_NAVEETH AHMED.doc', NULL, NULL, '2021-01-07', 1, 'Jobs', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no sales skills', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 11:01:49', 50, '2021-01-07 05:48:57', 0, NULL, 1),
(2899, 'VIGNESH J', '6', '9841163830', '8608091913', 'vicky.jayaraman17@gmail.com', '1998-07-17', 22, '1', '2', 'JAYARAMAN K', 'Plumber', 120000.00, 2, 20000.00, 20000.00, 'Chennai', 'Chennai', '2101070003', '', '2', 'upload_files/candidate_tracker/84608522283_Vignesh_Resume.docx', NULL, NULL, '2021-01-07', 0, 'P1065', '3', '8', '2021-01-11', 216000.00, '', '6', '2022-01-31', '1', '18k ctc for syed team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 11:08:11', 7, '2021-01-09 12:56:41', 0, NULL, 1),
(2900, 'G.. Tamil Mani', '6', '8825737476', '9361042425', 'gowthamsmart32@gmail.com', '1999-07-26', 21, '2', '2', 'Lakshmi', 'House wife', 10000.00, 1, 0.00, 20000.00, 'Saidhapet', 'Saidhapet', '2101070004', '1', '1', 'upload_files/candidate_tracker/15073398535_tamilmani resume.docx', NULL, NULL, '2021-01-07', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:52:49', 8, '2021-01-07 05:29:49', 0, NULL, 1),
(2901, 'S Hariharan', '4', '6381122304', '9361042425', 'smarthari1816@gmail.com', '2000-02-18', 20, '2', '2', 'siva', 'painting condrator', 10000.00, 1, 0.00, 15000.00, 'Saidapet', 'saidapet', '2101070005', '1', '1', 'upload_files/candidate_tracker/61781334563_hari resume.docx', NULL, NULL, '2021-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much communicative, will not fir for sales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:53:03', 1, '2021-01-07 12:01:48', 0, NULL, 1),
(2902, 'Megharaj', '4', '9514291541', '', 'nk9841684492@gmail.com', '1999-12-29', 21, '2', '2', 'Gopi', 'Auto driver', 20000.00, 1, 0.00, 18000.00, '64/74 subramaniya mudalia street', 'Saidapet', '2101070006', '1', '1', 'upload_files/candidate_tracker/86869477384_naveen.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'bad attitude. chewing the chewing gum while interview and very lethargic', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:53:05', 1, '2021-01-07 11:58:05', 0, NULL, 1),
(2903, 'Kishore.v', '4', '9042383534', '6382163441', 'Kishorekv221299@gmail.com', '1999-12-22', 21, '2', '2', 'K.venkatesan', 'Electrician', 15000.00, 1, 0.00, 15.00, 'Saidapet', 'Saidapet', '2101070007', '1', '1', 'upload_files/candidate_tracker/14326567140_RESUME.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for Sales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:53:28', 1, '2021-01-07 11:59:29', 0, NULL, 1),
(2904, 'Praveen kumar', '4', '9940156208', '9361042425', 'praveenjane2000@gmail.com', '2000-01-05', 21, '2', '2', 'Balaji', 'Painter', 15000.00, 1, 0.00, 18000.00, 'No.1, subra maniya swami kovil street', 'Saidapet', '2101070008', '1', '1', 'upload_files/candidate_tracker/55622608568_Praveen Resume.docx', NULL, NULL, '2021-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit into sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:53:34', 50, '2021-01-07 01:09:16', 0, NULL, 1),
(2905, 'Ezhilarasan G', '4', '9361042425', '6381122304', 'ekarasan24@gmail.com', '1996-07-16', 24, '2', '2', 'Gopalakrishnan', 'Driver', 30000.00, 1, 15000.00, 15000.00, 'Saidapet', 'Saidapet', '2101070009', '1', '2', 'upload_files/candidate_tracker/82810381721_RESUME (1).pdf', NULL, NULL, '2021-01-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process looking for admin job', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-07 11:54:05', 50, '2021-01-07 01:22:11', 0, NULL, 1),
(2906, 'clamanciya', '4', '9789927066', '9790820408', 'clamanciya@gmail.com', '1995-09-04', 25, '3', '2', 'arokiyaraj', 'relationship officer', 15000.00, 7, 17000.00, 25000.00, 'saidapet', 'pallavaram', '2101070010', '', '2', 'upload_files/candidate_tracker/724376644_file1_1610003941274.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability Issue 2yrs 3 companies changed', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 12:17:00', 1, '2021-01-07 01:30:36', 0, NULL, 1),
(2907, 'Rajathi N', '4', '7639363312', '8189818664', 'madhurajima1995@gmail.com', '1995-02-20', 25, '3', '1', 'Prem Kumar K', 'Relationship officer', 20000.00, 1, 16500.00, 25000.00, 'Tondiarpet', 'Tondiarpet', '2101070011', '', '2', 'upload_files/candidate_tracker/5292154962_', NULL, NULL, '2021-01-07', 0, '', '5', '67', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She demanded for higher salary. (18K) We offered as per esales norms. Arun HR spoke to her over phone for her willingness but she refused our offer.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 12:18:29', 8, '2021-01-07 05:28:44', 0, NULL, 1),
(2908, '', '0', '9666496510', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101070012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-07 12:49:08', 0, NULL, 0, NULL, 1),
(2909, 'Logeshwaran R', '5', '7904581435', '8681018402', 'Logeshwaran1294@gmail.com', '1994-12-05', 26, '1', '2', 'Ramadoss p', 'Sales', 10000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2101070013', '', '2', 'upload_files/candidate_tracker/31106386140_Logeshwaran resume.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Exp,Will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 01:16:37', 1, '2021-01-07 01:32:15', 0, NULL, 1),
(2910, 'K.sathish kumar', '4', '8072547966', '', 'Sathishsatzz300@gmail.com', '1999-05-12', 21, '3', '2', 'B.krishna kumar', 'Southern railway', 40000.00, 1, 0.00, 12000.00, 'M.k.b nagar', 'Vyasarpadi', '2101070014', '', '1', 'upload_files/candidate_tracker/30566520727_Sathish Resume.pdf', NULL, NULL, '2021-01-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 04:50:55', 50, '2021-01-07 05:04:09', 0, NULL, 1),
(2911, 'A.Syed Mohammed Abbubakar', '4', '6369455614', '7397248967', 'syedabbubakar99@gmail.com', '1999-10-15', 21, '3', '2', 'A.S Abdul Rahim', 'Cooly', 25000.00, 3, 0.00, 12000.00, 'Tondiarpet', 'Tondiarpet', '2101070015', '', '1', 'upload_files/candidate_tracker/59748362229_Resume.syed.docx', NULL, NULL, '2021-01-07', 0, '', '3', '8', '2021-01-18', 126600.00, '', '3', '2021-01-21', '1', '10k th for keerthiga team.', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-07 04:51:44', 7, '2021-01-15 11:22:31', 0, NULL, 1),
(2912, 'Vignesh prabu', '23', '9043474747', '', 'Vigprabu@gmail.com', '1993-06-07', 27, '2', '2', 'Arumugam', 'Farmer', 20000.00, 1, 100.00, 22000.00, 'kumbakonam', 'aladhur', '2101070016', '1', '2', 'upload_files/candidate_tracker/2808921315_Resume_Vignesh.doc', NULL, NULL, '2021-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-07 06:08:05', 1, '2021-01-07 06:12:35', 0, NULL, 1),
(2913, 'akthivel', '23', '8072024750', '', 'ashvel65@gmail.com', '1993-05-06', 27, '2', '2', 'amulraj', 'daily wager', 9000.00, 1, 255000.00, 420000.00, 'chennai', 'chennai', '2101070017', '1', '2', 'upload_files/candidate_tracker/88183668323_Resume-6.docx', NULL, NULL, '2021-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-07 06:26:13', 1, '2021-01-07 06:31:19', 0, NULL, 1),
(2914, 'vylamgari desappa', '13', '7036671750', '', 'vylamgaridesappa71@gmail.com', '1996-08-06', 24, '2', '2', 'maneiah', 'fisherman', 35000.00, 2, 300000.00, 360000.00, 'Nellore', 'Nellore', '2101070018', '1', '2', 'upload_files/candidate_tracker/13832205432_Resume.pdf', NULL, NULL, '2021-01-08', 30, '', '3', '60', '2021-01-22', 240000.00, '', '5', '1970-01-01', '2', 'Selected. We can offer 20K CTC', '2', '2', '2', '1', '1', '', '2', '2021-01-09', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-07 11:23:45', 60, '2021-01-21 06:40:32', 0, NULL, 1),
(2915, 'Monika', '4', '9894646182', '', 'Monikavasu2931@gmail.com', '1999-06-29', 21, '1', '2', 'Vasu', 'Former', 12000.00, 0, 0.00, 15000.00, 'Minjur', 'T.nagar', '2101080001', '', '1', 'upload_files/candidate_tracker/97886081369_P1090.pdf', NULL, NULL, '2021-01-08', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '2', '', '1', '1', '', '2', '2021-01-11', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 10:11:02', 50, '2021-01-08 12:04:34', 0, NULL, 1),
(2916, 'M.Ruban Franklin', '4', '9941778248', '7401738881', 'rubanfrank21@gmail.com', '1999-03-21', 21, '1', '2', 'Jothi Kanchana.m', 'Uhn retired', 18000.00, 1, 0.00, 15000.00, 'No.41/73dasspuram KODAMBAKKAM ch-24', 'No.41/73dasspuram KODAMBAKKAM ch-24', '2101080002', '', '1', 'upload_files/candidate_tracker/4790876956_ruban reume.docx', NULL, NULL, '2021-01-08', 0, '5552', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling. not speaking up.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 10:20:04', 50, '2021-01-08 10:39:34', 0, NULL, 1),
(2917, 'Vinoth Kumar', '6', '9360049832', '9087842121', 'vinothvinoth6795@gmail.com', '1997-09-23', 23, '1', '2', 'Selvi R', 'Work', 20000.00, 0, 0.00, 15000.00, 'No 7 Burma colony 4th Street Ekkattuthangl Ch 89', 'No7 Burma colony 4 th Street ekkattuthangal Ch 89', '2101080003', '', '1', 'upload_files/candidate_tracker/76937925263_VINOTH RESUME 01.pdf', NULL, NULL, '2021-01-08', 0, '31120', '3', '60', '2021-02-15', 156000.00, '', '3', '2021-02-19', '1', '13K CTC 1 year Bond for Suthagar Team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 10:41:11', 60, '2021-02-13 01:16:28', 0, NULL, 1),
(2918, 'manoj kumar k', '5', '9880610646', '7013606618', 'kmanojkumar0071997@gmail.com', '1995-11-06', 25, '1', '2', 'k munirathnam', 'agriculture', 20000.00, 0, 38000.00, 38000.00, 'punganur', 'bangalore', '2101080004', '', '2', 'upload_files/candidate_tracker/15258154020_Manoj Kumar K.docx', NULL, NULL, '2021-01-08', 0, '55606', '3', '8', '2021-01-18', 300000.00, '', '3', '2021-02-11', '1', '25k ctc and no pf.', '5', '2', '4', '2', '2', '1', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 11:34:49', 60, '2021-01-18 12:26:14', 0, NULL, 1),
(2919, 'Hariharan', '13', '7373361517', '', 'Hariharan.avancer@gmail.com', '1996-05-12', 24, '2', '2', 'Balaiya', 'Farmer', 30000.00, 2, 2.50, 3.50, 'Kumbakonam', 'Guduvanchery', '2101080005', '1', '2', 'upload_files/candidate_tracker/53714267127_HARIHARAN B.docx', NULL, NULL, '2021-01-11', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-08 12:43:11', 7, '2021-01-11 05:32:30', 0, NULL, 1),
(2920, 'Raj kumar T', '4', '7397489035', '9940281154', 'rajrio582@gmail.com', '1999-04-21', 21, '3', '2', 'THANIVEL T', 'Driver', 20000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2101080006', '', '1', 'upload_files/candidate_tracker/85917894134_raj resume.docx', NULL, NULL, '2021-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit into sales, Not communicating', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 01:36:50', 1, '2021-01-08 02:49:39', 0, NULL, 1),
(2921, 'Sudharshan v', '5', '8940402020', '9344840410', 'sudharshanv246@gmail.com', '1998-07-11', 22, '1', '2', 'Venkatadurai', 'Business', 20000.00, 1, 0.00, 23000.00, '8/85 mariamman kovil kondayampalli,,salem(dt).', '85 ganga block , Bettadasanapura Bangalore.', '2101080007', '', '1', 'upload_files/candidate_tracker/48229095923_Sudharshan V resume.pdf', NULL, NULL, '2021-01-08', 0, '55599', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 01:46:18', 60, '2021-01-08 06:54:52', 0, NULL, 1),
(2922, 'Raj', '5', '8270965543', '', 'Postbox1507@gmail.com', '1998-01-05', 23, '1', '2', 'Nanjan', 'Former', 20000.00, 2, 15000.00, 23000.00, 'Gandhinagar,thalavadi,erode 638461', '85 ganga block , Bettadasanapura Bangalore.', '2101080008', '', '2', 'upload_files/candidate_tracker/40400414599_Tarkurippu.pdf', NULL, NULL, '2021-01-08', 0, '55599', '3', '8', '2021-01-18', 227400.00, '', '6', '2021-03-26', '1', '18k th for rm. while Negotiation candidate is okay 18k bcoz his previous package was 15k.', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 01:46:27', 7, '2021-01-16 12:43:47', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(2923, 'Namdhini', '21', '8778299478', '6384124793', 'nandhini041297@gmail.com', '1997-12-04', 23, '3', '2', 'Thamodharan', 'Cooli', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2101080009', '', '1', 'upload_files/candidate_tracker/72652439937_CV_2020-09-17-030812.pdf', NULL, NULL, '2021-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 01:47:55', 1, '2021-01-08 01:52:53', 0, NULL, 1),
(2924, 'Lakshmi', '16', '7358083710', '9361649459', 'lakshmirebe@gmail.com', '1991-08-15', 29, '3', '2', 'A. Vinayan', 'Nil', 150000.00, 1, 13000.00, 140000.00, 'Chennai', 'Chennai', '2101080010', '', '2', 'upload_files/candidate_tracker/91397505702_Lakshmi Resume PDF Format.pdf', NULL, NULL, '2021-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Admin positions, not open for Sales', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 02:23:26', 1, '2021-01-08 02:32:11', 0, NULL, 1),
(2925, 'Mehar Begum .Y', '4', '9941155708', '', 'meharbegum13@gmail.com', '1997-07-13', 23, '2', '2', 'Yousuf ali', 'Ashok Leyland worker', 13000.00, 2, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2101080011', '1', '2', 'upload_files/candidate_tracker/27548766684_Resume.pdf', NULL, NULL, '2021-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will Not sustain in Sales, Focus much into IT positions', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-08 02:24:48', 1, '2021-01-08 02:33:14', 0, NULL, 1),
(2926, 'Priyadharshini', '21', '6383639359', '', 'priyamr223@gmail.com', '1996-06-04', 24, '3', '2', 'Annadurai', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2101080012', '', '1', 'upload_files/candidate_tracker/7449006719_priya.pdf', NULL, NULL, '2021-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Sales, looking for voice process,but not for sales', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 02:31:12', 1, '2021-01-08 02:35:52', 0, NULL, 1),
(2927, '', '0', '9633448780', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101080013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-08 02:53:59', 0, NULL, 0, NULL, 1),
(2928, 'Rajeswari s', '25', '7305546630', '8056153775', 'rajie042018@gmail.com', '1994-06-06', 26, '3', '1', 'Sathyesh', 'Customs office', 70000.00, 1, 21000.00, 25000.00, 'Tiruvottiyur', 'Royal Enfield company', '2101080014', '', '2', 'upload_files/candidate_tracker/86926194074_RAJESWARI RESUME COPY 1.pdf', NULL, NULL, '2021-01-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 03:39:39', 50, '2021-02-02 02:59:04', 0, NULL, 1),
(2929, 'priya r', '4', '6379147744', '7338830392', 'vishwaprintha143@gmail.com', '1994-01-31', 26, '2', '1', 'vishanth m', 'process associate', 30000.00, 1, 10000.00, 15000.00, 'chennai', 'chennai', '2101080015', '3', '2', 'upload_files/candidate_tracker/29805285381_Priya resume.pdf', NULL, NULL, '2021-01-09', 0, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She Is Not Able To Sustain Long Term ,Bcz, She Have Family Problem With Husband.. Not Suit For Our Procees', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-08 07:00:30', 8, '2021-01-09 12:47:14', 0, NULL, 1),
(2930, 'Kavya', '13', '7639288367', '8754226652', 'Kavya99ravi@gmail.com', '1999-01-21', 21, '3', '2', 'Ravi', 'Kooly', 9000.00, 1, 0.00, 14000.00, 'Aruppukottai', 'Chennai', '2101090001', '', '1', 'upload_files/candidate_tracker/42535056088_1608008817095.pdf', NULL, NULL, '2021-01-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-09 05:40:52', 7, '2021-01-11 05:32:41', 0, NULL, 1),
(2931, '', '0', '8610756918', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101090002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-09 11:00:53', 0, NULL, 0, NULL, 1),
(2932, '', '0', '8438234818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101090003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-09 11:50:51', 0, NULL, 0, NULL, 1),
(2933, 'a peter', '5', '8754948763', '7010653276', 'rockpeter220@gmail.com', '1993-12-26', 27, '2', '2', 'none', 'none', 30000.00, 1, 20000.00, 21000.00, 'chennai', 'chennai', '2101090004', '3', '2', 'upload_files/candidate_tracker/23435418740_Rock Peter 2020 Dec.pdf', NULL, NULL, '2021-01-11', 0, '', '3', '8', '2021-01-20', 186000.00, '', '6', '2021-05-05', '1', '15.5k ctc and for guru team.', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-09 09:57:44', 7, '2021-01-12 04:47:59', 0, NULL, 1),
(2934, 'Harsh solanki', '5', '9449592379', '', 'harshsolanki301099@gmail.com', '1999-10-30', 21, '2', '2', 'Dinesh kumar jain', 'Business man', 30000.00, 1, 0.00, 20000.00, 'Near minverva circle', 'Minverva circle', '2101100001', '1', '1', 'upload_files/candidate_tracker/37445275012_Resume_Harsh solanki_Format1.pdf', NULL, NULL, '2021-01-11', 0, '', '3', '8', '2021-01-18', 204000.00, '', '6', '2021-01-27', '2', '17k ctc. for RM', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-10 10:34:48', 7, '2021-01-15 11:22:11', 0, NULL, 1),
(2935, 'p chellappan', '5', '9361828318', '9360004922', 'chellappan9bcom@gmail.com', '1988-07-11', 32, '2', '1', 'sangeetha c', 'process associate', 14500.00, 2, 14500.00, 18000.00, 'chennai', 'chennai', '2101100002', '3', '2', 'upload_files/candidate_tracker/11622086122_Resume.pdf', NULL, NULL, '2021-01-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-10 03:50:38', 7, '2021-01-11 05:32:01', 0, NULL, 1),
(2936, 'Micheal rolington.A', '5', '9597741687', '8428759083', 'michealrolington365@gmail.com', '1997-02-23', 23, '2', '2', 'Nivin', 'Client Acquisition Executive', 15000.00, 2, 16000.00, 23000.00, 'Chennai', 'Vadapalani', '2101100003', '3', '2', 'upload_files/candidate_tracker/58491500968_oct 24 resume (1)(1).pdf', NULL, NULL, '2021-01-11', 6, '', '3', '8', '2021-01-18', 192000.00, '', '6', '2021-08-02', '1', '16k ctc for kannan team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-10 06:36:49', 7, '2021-01-18 10:30:25', 0, NULL, 1),
(2937, 'BABU S', '10', '9688751149', '9742306018', 'S.BABU31296@GMAIL.COM', '1996-12-03', 24, '2', '2', 'Selvaraj', 'Sales executive', 40000.00, 2, 11000.00, 20000.00, 'VILUPPURAM', 'AVADI', '2101100004', '1', '2', 'upload_files/candidate_tracker/80434536705_RESUME BABU FINAL.pdf', NULL, NULL, '2021-01-11', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit into Insurance Sales', '5', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-10 09:24:01', 1, '2021-01-10 09:35:59', 0, NULL, 1),
(2938, 'Rishi Maruthi s', '6', '7358746523', '9384690823', 'rishimaruthi0823@gmail.com', '1998-09-23', 22, '2', '1', 'dharani priya', 'textile', 10000.00, 2, 0.00, 14000.00, 'chennai', 'chennai', '2101110001', '2', '1', 'upload_files/candidate_tracker/9316407496_RISHI MARUTHI.docx', NULL, NULL, '2021-01-11', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 09:37:22', 7, '2021-01-11 05:31:38', 0, NULL, 1),
(2939, '', '0', '9686489297', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 09:57:54', 0, NULL, 0, NULL, 1),
(2940, '', '0', '9677129967', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 10:21:43', 0, NULL, 0, NULL, 1),
(2941, '', '0', '7696608205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 10:32:54', 0, NULL, 0, NULL, 1),
(2942, '', '0', '7259792379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 11:00:55', 0, NULL, 0, NULL, 1),
(2943, 'RAMALINGAM D', '5', '9944615476', '8317334663', 'ramasd88@gmail.com', '1988-06-29', 32, '1', '1', 'Pavithra', 'Software Engineer', 40000.00, 1, 25000.00, 30000.00, 'No3673,13th cross,rs palya,Kammanahali,Bangalore33', 'No3673,13thcross,rs palya,Kammanahalli Bangalore33', '2101110006', '', '2', 'upload_files/candidate_tracker/65272765977_Ramalingam_resume.pdf', NULL, NULL, '2021-01-11', 0, '55567', '3', '8', '2021-02-01', 294000.00, '', '2', '1970-01-01', '1', '24.5k ctc and no pf. for sanjeev team', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 11:42:14', 7, '2021-01-16 02:37:13', 0, NULL, 1),
(2944, 'karthikeyan', '6', '7358745293', '8148671668', 'karthiksrinivasan28@gmail.com', '1996-06-06', 24, '2', '2', 'srinivasan', 'pwd', 25000.00, 1, 15000.00, 17000.00, 'Triplicane chennai', 'triplicane chennai', '2101110007', '1', '2', 'upload_files/candidate_tracker/23130185086_Resume_Karthikeyan.pdf', NULL, NULL, '2021-01-11', 0, '', '3', '8', '1970-01-01', 180000.00, '', '2', '1970-01-01', '2', '15k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-11 11:44:53', 7, '2021-01-12 04:47:14', 0, NULL, 1),
(2945, 'Balaji. D', '17', '9840996940', '', 'balajidivakar90@gmail.com', '1990-11-13', 30, '2', '2', 'Divakar', 'Salaried', 500000.00, 1, 1000000.00, 70000.00, 'Aminjikarai', 'Aminjikarai', '2101110008', '1', '2', 'upload_files/candidate_tracker/5992019791_Balaji_D_2020 April.docx', NULL, NULL, '2021-01-12', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for BDM profile. but no Relevant exp. and no response too.', '5', '2', '0', '1', '1', '0', '2', '2021-01-15', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-11 12:31:50', 1, '2021-01-11 12:38:17', 0, NULL, 1),
(2946, 'Padmanabhan S', '5', '7358554148', '9962418578', 'padmeshpadhu93@gmail.com', '1993-03-15', 27, '1', '2', 'P Suresh', 'Business', 30000.00, 1, 23000.00, 26000.00, 'Trivandrum', 'Chennai', '2101110009', '', '2', 'upload_files/candidate_tracker/6674024740_PADHU Resume NEW.docx', NULL, NULL, '2021-01-11', 0, '55625', '3', '8', '2021-01-12', 300000.00, '', '2', '1970-01-01', '1', '25k ctc for veben team.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 01:10:42', 7, '2021-01-11 06:36:21', 0, NULL, 1),
(2947, 'Vinothkumar', '13', '9600233969', '', 'vinothkumar.ad@outlook.com', '1990-11-09', 30, '4', '1', 'Arumugam', 'Carpenter', 25000.00, 1, 2.80, 4.00, 'Villupuram', 'Chennai', '2101110010', '', '2', 'upload_files/candidate_tracker/67354926334_vinothkumar 9600233969.pdf', NULL, NULL, '2021-01-13', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 03:49:08', 1, '2021-01-13 11:11:50', 0, NULL, 1),
(2948, 'balaji v', '23', '7448585608', '', 'balajivenkat639@gmail.com', '1998-09-20', 22, '2', '2', 'venkatesh r', 'digital marketing', 20000.00, 1, 0.00, 17000.00, 'valasarawakkam', 'valasarawakkam', '2101110011', '1', '1', 'upload_files/candidate_tracker/42784327847_bala resume.pdf', NULL, NULL, '2021-01-13', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Not satisfied.', '2', '2', '0', '1', '1', '0', '2', '2021-01-14', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-11 03:57:03', 1, '2021-01-13 10:44:51', 0, NULL, 1),
(2949, 'Arulazhagan', '13', '9677225958', '', 'sarulazhagan@gmail.com', '1983-06-28', 37, '2', '1', 'Subramaniyan', 'Former', 42000.00, 2, 42000.00, 70000.00, 'Thiruvarur', 'Chennai', '2101110012', '1', '2', 'upload_files/candidate_tracker/22728671487_arulazhagn.doc', NULL, NULL, '2021-01-12', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-11 04:21:51', 1, '2021-01-11 04:34:00', 0, NULL, 1),
(2950, 'v vignesh', '5', '8838640940', '', 'vsvignesh1993@gmail.com', '1993-06-11', 27, '2', '2', 'none', 'none', 22000.00, 1, 22000.00, 25000.00, 'chennai', 'chennai', '2101110013', '3', '2', 'upload_files/candidate_tracker/31019795327_Vignesh Resume.pdf', NULL, NULL, '2021-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 05:39:10', 1, '2021-01-11 05:47:41', 0, NULL, 1),
(2951, 'rishi maruthi s', '6', '9384690823', '7358746523', 'rishimaruthi0823@gmail.com', '1998-09-23', 22, '2', '1', 'dharani priya', 'textile', 10000.00, 2, 12000.00, 14000.00, 'chennai', 'parrys', '2101110014', '2', '2', 'upload_files/candidate_tracker/82585199385_RISHI MARUTHI.docx', NULL, NULL, '2021-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 06:40:06', 1, '2021-01-11 06:42:43', 0, NULL, 1),
(2952, 'balaganesh', '6', '9841525243', '', 'balaganesh302@Gmail.com', '1995-08-21', 25, '2', '2', 'kanagaraj', 'business', 20000.00, 0, 15000.00, 17000.00, 'chennai', 'chennai', '2101110015', '2', '2', 'upload_files/candidate_tracker/42895766478_balaganesh.pdf', NULL, NULL, '2021-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-11 06:48:33', 1, '2021-01-11 06:50:52', 0, NULL, 1),
(2953, '', '0', '7708374671', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101110016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-11 07:27:27', 0, NULL, 0, NULL, 1),
(2954, 'Aagash', '6', '8610882261', '', 'aagashtamizhan07@gmail.com', '1997-05-07', 23, '2', '2', 'Vivekanandan', 'Business', 30000.00, 1, 12000.00, 15000.00, 'Coimbatore', 'Chennai', '2101120001', '1', '2', 'upload_files/candidate_tracker/38423172270_Resume.pdf', NULL, NULL, '2021-01-13', 0, '', '3', '8', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', '13k ctc for guru team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-12 09:20:54', 7, '2021-01-16 12:47:01', 0, NULL, 1),
(2955, 'arunprasad', '13', '9487835920', '', 'arunsql@yahoo.com', '1974-02-12', 46, '1', '1', 'durairaj', 'software', 50000.00, 1, 500000.00, 600000.00, 'chennai', 'chennai', '2101120002', '', '2', 'upload_files/candidate_tracker/28229657746_Arun.doc', NULL, NULL, '2021-01-12', 15, 'hr', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain and very high CTC ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-12 10:33:45', 1, '2021-01-12 10:37:06', 0, NULL, 1),
(2956, '', '0', '9080660128', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101120003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-12 11:06:41', 0, NULL, 0, NULL, 1),
(2957, 'suraj kumar mandal', '5', '8608675639', '', 'surajkumarmandal781@gmail.com', '1992-07-17', 28, '2', '1', 'manisha evi', 'none', 20000.00, 2, 20000.00, 20000.00, 'chennai', 'chennai', '2101120004', '3', '2', 'upload_files/candidate_tracker/34308704333_IMG-20210112-WA0033.pdf', NULL, NULL, '2021-01-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process. he already Attended interview last year and rejected for the same reason', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-12 11:20:42', 1, '2021-01-12 11:25:39', 0, NULL, 1),
(2958, '', '0', '9003250798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101120005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-12 12:24:53', 0, NULL, 0, NULL, 1),
(2959, 'Suriya s', '5', '9551484660', '9500161990', 'Suryarap97@gmail.com', '1998-11-26', 22, '2', '2', 'K sundaramoorthy', 'Soil business', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2101120006', '1', '1', 'upload_files/candidate_tracker/40485281363_Surya’s CV.docx', NULL, NULL, '2021-01-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling and not interested in field sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-12 01:49:20', 8, '2021-01-12 04:21:33', 0, NULL, 1),
(2960, 'Vasanth kumar', '5', '9500161990', '9551484660', 'vasanthleo33@gmail.com', '1999-03-03', 21, '2', '2', 'm.kasi', 'Business', 20000.00, 1, 0.00, 15000.00, 'chennai', 'Chennai', '2101120007', '1', '2', 'upload_files/candidate_tracker/72388203545_resume.pdf', NULL, NULL, '2021-01-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales and calling.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-12 01:49:24', 8, '2021-01-12 04:20:03', 0, NULL, 1),
(2961, 'paul augustus', '2', '9535223276', '', 'pns.augustus@gmail.com', '1991-09-15', 29, '2', '2', 'richard augustus', 'n/a', 30000.00, 0, 180000.00, 300000.00, 'Chennai', 'Chennai', '2101120008', '1', '2', 'upload_files/candidate_tracker/29075848614_PaulNSA_CV.pdf', NULL, NULL, '2021-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not Fit for Mernstack, Much interest into Aero(drone).Recently started looking for IT openings', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-12 03:12:53', 7, '2021-01-18 05:04:43', 0, NULL, 1),
(2962, '', '0', '7598755215', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101120009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-12 03:25:33', 0, NULL, 0, NULL, 1),
(2963, 'Balaji Vijayakumar', '23', '9940338488', '', 'bvbalajivijay@gmail.com', '1997-06-21', 23, '2', '2', 'Vijayakumar', 'ni job', 16000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2101120010', '1', '1', 'upload_files/candidate_tracker/90958801549_Resume.pdf', NULL, NULL, '2021-01-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-12 03:51:11', 7, '2021-01-21 01:45:31', 0, NULL, 1),
(2964, 'j vikaram', '5', '8838910454', '9566107732', 'vikichamine@gmail.com', '1985-08-03', 35, '2', '1', 'vanitha', 'p', 35000.00, 1, 35000.00, 30000.00, 'chennai', 'chennai', '2101120011', '3', '2', 'upload_files/candidate_tracker/10196599082_Vikram Resume-2.pdf', NULL, NULL, '2021-01-13', 0, '', '8', '44', NULL, 0.00, '', '0', NULL, '1', 'please Reassign to GK Ji ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-12 04:05:31', 1, '2021-01-12 04:11:29', 0, NULL, 1),
(2965, '', '0', '9976714514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101120012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-12 05:36:14', 0, NULL, 0, NULL, 1),
(2966, 'shanmugaraj n', '6', '9176380898', '', 'shan1995rajjj@gmail.com', '1995-10-30', 25, '2', '2', 'nelliyappan k', 'machine operator', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2101130001', '2', '2', 'upload_files/candidate_tracker/11133065327_shan raj resume.docx', NULL, NULL, '2021-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 08:54:43', 1, '2021-01-13 08:58:00', 0, NULL, 1),
(2967, 'elango', '6', '8754238842', '', 'kuttyelango02021996@gmail.com', '1996-02-09', 24, '2', '2', 'chinnathambi', 'farmer', 10000.00, 4, 13000.00, 15000.00, 'chennai', 'chennai', '2101130002', '2', '2', 'upload_files/candidate_tracker/92519084179_elango.docx', NULL, NULL, '2021-02-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate will not sustain and looking much for semivoice only', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 09:04:13', 60, '2021-02-11 12:43:34', 0, NULL, 1),
(2968, 'Manikandan M', '13', '7094444337', '', 'manikandan.muthu.mca@gmail.com', '1990-05-15', 30, '4', '2', 'Muthu', 'Carpenter', 15000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2101130003', '', '1', 'upload_files/candidate_tracker/1667439650_Manikandan_2k20.pdf', NULL, NULL, '2021-01-14', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 10:45:45', 7, '2021-01-21 01:47:19', 0, NULL, 1),
(2969, '', '0', '9087678244', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101130004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-13 10:49:03', 0, NULL, 0, NULL, 1),
(2970, 'Deepak H S', '4', '9380034489', '', 'deepakshankar517@gmail.com', '1997-11-01', 23, '2', '2', 'Shankar H B', 'Private sector', 120000.00, 1, 0.00, 15000.00, 'BANGALORE URBAN', 'BANGALORE URBAN', '2101130005', '1', '1', 'upload_files/candidate_tracker/49679022464_0_1609555434350Resume_Deepak.doc', NULL, NULL, '2021-01-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-13 12:13:25', 7, '2021-01-21 01:46:48', 0, NULL, 1),
(2971, 'MD ASIFULLAH R', '6', '9087292010', '7448669526', 'md6677714@gmail.com', '1999-05-07', 21, '1', '2', 'Khatija', 'House wife', 30000.00, 2, 23000.00, 30000.00, 'Puliyanthope', 'Kosapet', '2101130006', '', '2', 'upload_files/candidate_tracker/82394558040_1610447406958_ASIFULLA RESUME.docx', NULL, NULL, '2021-01-13', 0, '55618', '3', '8', '2021-01-18', 253200.00, '', '', '1970-01-01', '1', '20k th for suthagar team. 21100ctc', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 01:35:18', 8, '2021-01-15 03:15:04', 0, NULL, 1),
(2972, '', '0', '8248827451', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101130007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-13 01:47:14', 0, NULL, 0, NULL, 1),
(2973, 'Sanjay', '5', '9176210047', '8667462995', 'sanjayrangarajan13@gmail.com', '1997-03-13', 23, '4', '2', 'Rangarajan TG', 'Retired', 20000.00, 1, 27500.00, 32000.00, 'Valasarvakkam', 'Valasarvakkam', '2101130008', '', '2', 'upload_files/candidate_tracker/71928671899_Sanjay Rangarajan CV.pdf', NULL, NULL, '2021-01-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Fit for Sales, will not sustain', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 01:55:02', 1, '2021-01-13 01:57:56', 0, NULL, 1),
(2974, 'Ranjith', '2', '7845399921', '', 'ranjithe44@gmail.com', '1994-09-08', 26, '2', '2', 'Eswaran', 'Business', 50000.00, 1, 23000.00, 35000.00, 'Salem', 'Chennai', '2101130009', '1', '2', 'upload_files/candidate_tracker/22320510985_Resume.pdf', NULL, NULL, '2021-01-23', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-13 03:48:37', 60, '2021-01-23 05:46:56', 0, NULL, 1),
(2975, 'S. Sam Rajan', '4', '7845138349', '7010043639', 'Samrajansj1999@gmail.com', '1999-02-23', 21, '1', '2', 'Subramanian', 'Business', 25000.00, 1, 0.00, 15000.00, '13/177 ,second street, Ajiees nager, Tondiarpet.', '13/171, Second Street, Ajiees Neger, Tondiarpet,.', '2101130010', '', '1', 'upload_files/candidate_tracker/42692057385_imgtopdf_13012021042056.pdf', NULL, NULL, '2021-01-13', 0, 'P1114', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 03:58:56', 1, '2021-01-13 04:32:46', 0, NULL, 1),
(2976, 'K.mahaganapathy', '4', '8667084752', '9445554848', 'luckyman9445554848@gmail.com', '1999-12-29', 21, '1', '2', 'S.krishnasamy', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2101130011', '', '1', 'upload_files/candidate_tracker/19267618976_RESUME -1.docx', NULL, NULL, '2021-01-13', 0, 'P114', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 04:00:42', 1, '2021-01-13 04:13:40', 0, NULL, 1),
(2977, 'v sai roshan babu', '5', '9962298499', '', 'sai98roshan@gmail.com', '1998-01-06', 15, '2', '2', 'none', 'none', 10000.00, 0, 0.00, 15000.00, 'chennai', 'Chennai', '2101130012', '3', '1', 'upload_files/candidate_tracker/8025165250_Sai Roshan Babu - Bio-data.pdf', NULL, NULL, '2021-01-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 04:57:43', 7, '2021-01-21 01:46:31', 0, NULL, 1),
(2978, 'r raghuveer', '5', '9500106734', '9150148608', 'ckraghu7@gmail.com', '1989-10-01', 31, '2', '1', 'southali', 'none', 38000.00, 0, 38000.00, 38000.00, 'chennai', 'chennai', '2101130013', '3', '2', 'upload_files/candidate_tracker/4572262379_raghu cv 1 oct 20.pdf', NULL, NULL, '2021-01-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Issue,Not much communicative', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-13 09:01:46', 1, '2021-01-13 09:10:15', 0, NULL, 1),
(2979, 'MOHAMMED SHAIK MOHIDEEN', '13', '7395983727', '9941659690', 'shaikmohideen09@gmail.com', '2000-05-09', 20, '2', '2', 'Habibullah', 'Scrap Business', 85000.00, 2, 0.00, 145000.00, 'Alappakkam MainRoad,Valasaravakkam , Chennai', 'Alappakkam MainRoad,Valasaravakkam , Chennai', '2101130014', '1', '1', 'upload_files/candidate_tracker/1338331333_Resume.docx', NULL, NULL, '2021-01-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Not open for agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-13 09:38:43', 1, '2021-01-13 09:43:34', 0, NULL, 1),
(2980, 'merin das', '2', '9645134252', '7012198349', 'merindas218@gmail.com', '1995-01-21', 25, '2', '2', 'arogyadas', 'farmer', 10000.00, 2, 25000.00, 30000.00, 'idukki', 'chennai', '2101150001', '1', '2', 'upload_files/candidate_tracker/82545593404_MERINDAS.docx', NULL, NULL, '2021-01-21', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She donxquott have a good knowledge in any technology.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-15 10:26:55', 1, '2021-01-15 10:35:43', 0, NULL, 1),
(2981, 'Barath Kumar S', '6', '7358184519', '', 'barathkumar9600@gmail.com', '2000-06-09', 20, '2', '2', 'Suresh Babu R', 'Retaired', 6000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101160001', '1', '1', 'upload_files/candidate_tracker/14578213737_Curriculum vitae barath 4.pdf', NULL, NULL, '2021-01-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for backend job. his pronunciation was not clear and good. will not suite for calling.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-16 08:15:04', 7, '2021-01-18 05:06:25', 0, NULL, 1),
(2982, '', '0', '8438311996', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101160002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-16 11:57:39', 0, NULL, 0, NULL, 1),
(2983, '', '0', '7092767448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101160003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-16 12:09:31', 0, NULL, 0, NULL, 1),
(2984, 'maiyazhagan.l', '6', '8438211996', '7418279917', 'maiydass01@gmail.com', '1996-12-01', 24, '2', '2', 'lakshmanan', 'driver', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2101160004', '1', '1', 'upload_files/candidate_tracker/52128721728_resume -M.pdf', NULL, NULL, '2021-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not ok for Sales, looking much for non voice', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-16 12:12:59', 7, '2021-01-18 05:08:02', 0, NULL, 1),
(2985, 'Mageshwari R', '5', '9884157164', '6385128821', 'mageedeeep21@gmail.com', '1997-03-21', 23, '2', '2', 'Rajkumar & Thriveni', 'Own business', 30000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2101160005', '1', '2', 'upload_files/candidate_tracker/26014694056_Mageshwari 2020 (1).docx', NULL, NULL, '2021-01-19', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join exp 25k+ and no response from her.', '5', '2', '', '1', '1', '', '2', '2021-01-27', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-16 06:13:27', 60, '2021-01-19 12:48:28', 0, NULL, 1),
(2986, 'goutham', '5', '8610729308', '', 'ayangowtham@gmail.com', '1994-02-07', 26, '2', '1', 'm pavithra', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2101170001', '3', '2', 'upload_files/candidate_tracker/14669096727_Goutham.docx', NULL, NULL, '2021-01-19', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-17 01:20:42', 7, '2021-01-21 01:43:18', 0, NULL, 1),
(2987, '', '0', '9710444415', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101170002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-17 06:36:28', 0, NULL, 0, NULL, 1),
(2988, 'Nafila', '2', '9597035866', '8825818414', 'nafila@outlook.com', '1998-02-19', 22, '2', '2', 'Jalideen', 'Mernstack Developer', 45000.00, 1, 25000.00, 28000.00, 'Chennai', 'Chennai', '2101170003', '1', '2', 'upload_files/candidate_tracker/46671849785_Resume--Nafi.pdf', NULL, NULL, '2021-01-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude not good. technically not good.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-17 07:59:16', 60, '2021-01-19 12:12:37', 0, NULL, 1),
(2989, 'Kalaivanan', '13', '9944471783', '', 'kvanan2429@gmail.com', '1988-06-15', 32, '2', '1', 'K.nandhini', 'Housemaker', 15000.00, 1, 600000.00, 730000.00, 'Kumbakonam', 'Tambaram', '2101180001', '1', '2', 'upload_files/candidate_tracker/41331192906_1608639432625Resume_kalaivanan.pdf', NULL, NULL, '2021-01-18', 2, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'this candidate Selected for next round. GS seen and Rejected. Donxquott have any experience in new technologies.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-18 10:43:29', 1, '2021-01-18 10:51:40', 0, NULL, 1),
(2990, 'Sandhiya.R', '4', '8870066306', '8438422246', 'sandyravi17.sr@gmail.com', '1999-01-01', 22, '1', '2', 'Ravi.E', 'Nil', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101180002', '', '1', 'upload_files/candidate_tracker/46387992706_Sandhiya 2.pdf', NULL, NULL, '2021-01-18', 0, 'Tl5553', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'in two months looking for job change bcoz of long distance. current 10k and exp is 15k. not confident and will not suite for our process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-18 10:53:19', 7, '2021-01-18 05:03:59', 0, NULL, 1),
(2991, 'Hariprakash', '21', '7448419916', '9176418604', 'hariprakashdude@gmail.com', '1996-10-05', 24, '1', '2', 'Rani', 'System Admin', 45000.00, 4, 13000.00, 15000.00, 'Chennai', 'Vyasarpadi', '2101180003', '', '2', 'upload_files/candidate_tracker/95128711965_hari.pdf', NULL, NULL, '2021-01-18', 30, '5153', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ok for Sys Admin,will not sustain.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-18 11:53:48', 7, '2021-01-18 05:01:59', 0, NULL, 1),
(2992, 'M.siva priya', '4', '6384182073', '7025207253', 'Sp4900672@gmail.coom', '1995-04-11', 25, '1', '2', 'Mr.k.mani kandan', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Idukki kerala', 'Chrompet', '2101180004', '', '1', 'upload_files/candidate_tracker/89694050558_P1090.pdf', NULL, NULL, '2021-01-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, not speaking up and will not suite for Esale/CRM.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-18 01:04:22', 60, '2021-01-19 11:59:04', 0, NULL, 1),
(2993, '', '0', '8838704108', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101180005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-18 03:03:49', 0, NULL, 0, NULL, 1),
(2994, 'raja marshal', '13', '6379149398', '', 'rajamarshal2014@gmail.com', '1990-02-02', 30, '2', '1', 'dhivya', 'bca', 50000.00, 1, 550000.00, 800000.00, 'thoriapakkam', 'thoraipakkam', '2101180006', '1', '2', 'upload_files/candidate_tracker/56175051937_Resume (4).doc', NULL, NULL, '2021-01-20', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'High Exp and High CTC expectation', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-18 06:14:39', 60, '2021-01-20 11:50:47', 0, NULL, 1),
(2995, 'Surya A', '6', '8190057517', '9094779601', 'Suryadazzy@gmail.com', '1998-01-18', 23, '2', '2', 'Mrs.Muthulakshmi', 'Home maker', 20000.00, 1, 0.00, 15000.00, 'Velachery', 'Velachery', '2101180007', '1', '1', 'upload_files/candidate_tracker/50211040431_New Resume.docx', NULL, NULL, '2021-01-19', 0, '', '3', '8', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', '13k ctc for kannan team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-18 07:00:31', 7, '2021-01-20 05:54:56', 0, NULL, 1),
(2996, 'Philip Benniz', '5', '9941299618', '', 'philipbenniz2@gmail.com', '1991-08-23', 29, '2', '1', 'Vedha', 'Lab Technology', 90000.00, 1, 350000.00, 350000.00, 'No : 3/7 , 34th vinobaji Street gkm colony chennai', 'Chennai', '2101180008', '14', '2', 'upload_files/candidate_tracker/98653241445_Resume 2.docx', NULL, NULL, '2021-01-20', 5, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '5', '2', '', '1', '3', '', '2', '2021-01-26', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-18 07:46:35', 60, '2021-01-20 11:49:20', 0, NULL, 1),
(2997, '', '0', '9483468788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101180009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-18 07:47:55', 0, NULL, 0, NULL, 1),
(2998, '', '0', '8825818414', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101180010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-18 08:03:02', 0, NULL, 0, NULL, 1),
(2999, 'Deepeshsiva M', '6', '8680882934', '6380686476', '1210.deepesh@gmail.com', '1999-10-12', 21, '2', '2', 'Murali k', 'Mtc', 35000.00, 5, 0.00, 12000.00, 'Chennai', 'Chennai', '2101190001', '2', '1', 'upload_files/candidate_tracker/26417296022_M. Deepeshsiva (Resume)....docx', NULL, NULL, '2021-01-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not interested in sales and will not suite for calling too.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-19 10:07:19', 1, '2021-01-19 10:22:16', 0, NULL, 1),
(3000, 'P. Kanmani', '4', '8056416824', '', 'Kanmanip9@gmail.com', '1999-03-24', 21, '1', '2', 'N. Pandiyan', 'Drive', 20000.00, 2, 0.00, 15000.00, 'Walajabad', 'Walajabad', '2101190002', '', '1', 'upload_files/candidate_tracker/22345882498_Kanmani. resume .pdf', NULL, NULL, '2021-01-19', 0, 'P115', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not join. fresher and exp sal is 12k+', '1', '2', '', '1', '1', '', '2', '2021-01-20', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-19 11:02:14', 8, '2021-01-19 01:40:30', 0, NULL, 1),
(3001, 'P. Manimekalai', '4', '9092414574', '6381890825', 'Manirithika1999@gmail.co', '1999-06-05', 21, '1', '2', 'P. Vijaylakshmi', 'Daily waker', 18000.00, 3, 0.00, 18000.00, 'Thirisulam', 'Thirisulam', '2101190003', '', '1', 'upload_files/candidate_tracker/71380018044_HSCC.pdf', NULL, NULL, '2021-01-19', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will Not Join. Fresher And Exp Sal Is 12k+', '1', '2', '', '1', '1', '', '2', '2021-01-20', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-19 11:13:20', 8, '2021-01-19 01:40:44', 0, NULL, 1),
(3002, '', '0', '9626104307', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101190004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-19 11:15:12', 0, NULL, 0, NULL, 1),
(3003, '', '0', '6380686476', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101190005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-19 11:26:34', 0, NULL, 0, NULL, 1),
(3004, 'Mohan', '5', '6382182557', '', 'mohanrampriya2000@gmail.com', '2000-06-08', 20, '3', '2', 'Duraibabu.A.K', 'Plumber', 100000.00, 1, 0.00, 18000.00, 'Vadapalani', 'Vadapalani', '2101190006', '', '1', 'upload_files/candidate_tracker/27837200134_MOHAN1-1.docx', NULL, NULL, '2021-01-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-19 11:27:48', 1, '2021-01-19 11:32:49', 0, NULL, 1),
(3005, 'Manoj Kumar v', '2', '8925462614', '', 'manoj501553@gmail.com', '1999-01-05', 22, '2', '2', 'Venkatesh', 'Dtp', 20.00, 1, 0.00, 10000.00, 'Tvk street ,mgr nagar,chennai', 'Tvk Street ,Mgr Nagar,Chennai', '2101190007', '1', '1', 'upload_files/candidate_tracker/64943296569_manojresume.pdf', NULL, NULL, '2021-01-20', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not completed the task.', '2', '2', '0', '1', '1', '0', '2', '2021-01-21', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-19 03:45:11', 1, '2021-01-19 03:50:36', 0, NULL, 1),
(3006, 'Anand E', '2', '8610581328', '9551661256', 'anandaravindh60@gmail.com', '1999-06-30', 21, '2', '2', 'Elumalai R', 'Auto driver', 120000.00, 2, 0.00, 3.50, 'Chennai', 'Chennai', '2101190008', '1', '1', 'upload_files/candidate_tracker/49152314279_resumee.pdf', NULL, NULL, '2021-01-22', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He is waiting for Wipro. He will not sustain.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-19 06:39:04', 1, '2021-01-19 06:43:04', 0, NULL, 1),
(3007, '', '0', '8015656173', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101190009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-19 08:29:06', 0, NULL, 0, NULL, 1),
(3008, 'Chidambararaja Boominathan', '2', '8682992677', '8657982600', 'chidambararaja97@gmail.com', '1997-08-04', 23, '2', '2', 'Boominathan', '-', 1.00, 0, 350000.00, 450000.00, '-', '-', '2101190010', '1', '2', 'upload_files/candidate_tracker/2483979518_passion.chidambararaja.pdf', NULL, NULL, '2021-01-23', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-19 08:42:57', 1, '2021-01-22 06:41:03', 0, NULL, 1),
(3009, 'Suriya S r', '4', '9629096810', '9566826270', 'suriya10998@gmail.com', '1998-09-10', 22, '1', '2', 'Santhamoorthy J', 'Mechanic', 8000.00, 1, 0.00, 12000.00, 'Gingee', 'Gingee', '2101200001', '', '1', 'upload_files/candidate_tracker/14955589907_suriya Resume.pdf', NULL, NULL, '2021-01-20', 0, 'P1087', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling. not speaking up. will not handle pressure and sustain.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-20 09:53:16', 60, '2021-01-20 10:20:45', 0, NULL, 1),
(3010, 'Devadharshni', '5', '9092870185', '8825436338', 'devadharshnikathirvel@gmail.com', '1999-04-03', 21, '1', '2', 'Kathirvel', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Villupuram', 'Chennai', '2101200002', '', '1', 'upload_files/candidate_tracker/77069658686_Share KB resume.pdf', NULL, NULL, '2021-01-20', 0, 'P1087', '3', '8', '2021-02-01', 126600.00, '', '5', '1970-01-01', '2', '10k take home for pargavi team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-20 09:55:32', 60, '2021-01-23 12:53:02', 0, NULL, 1),
(3011, 'Vinoth S', '25', '8778390910', '9884495042', 'rockybalbowa.rocky@gmail.com', '1987-08-23', 33, '1', '2', 'J v Sekar rao', 'Business', 30000.00, 1, 35000.00, 40000.00, 'No 406 danubae Flats pallikaranai chennai', 'Same above', '2101200003', '', '2', 'upload_files/candidate_tracker/13740625456_Vinoth_Resume.pdf', NULL, NULL, '2021-01-20', 1, 'HR7M', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-20 03:00:35', 8, '2021-01-20 05:13:05', 0, NULL, 1),
(3012, 'Sanjam navis', '25', '8870114896', '8248449839', 'sanjamnavis@gmail.com', '1993-07-25', 27, '1', '2', 'Maria Louis', 'Business', 20000.00, 2, 30000.00, 30000.00, 'No 11/28 sitaraman nagar 2nd street Velachery.', 'Same as above', '2101200004', '', '2', 'upload_files/candidate_tracker/75459567779_SANJAM RESUME.pdf', NULL, NULL, '2021-01-20', 1, 'HRM7', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for RM profile. sal exp is 4L+', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-20 03:19:41', 8, '2021-01-20 05:12:41', 0, NULL, 1),
(3013, 'Kishor Kumar.V', '2', '6380919558', '', 'kishorvel55@gmail.com', '1999-07-12', 21, '2', '2', 'Velmurugan.R', 'Shop keeper', 10000.00, 1, 0.00, 15000.00, 'Vriddhachalam', 'Saidapet,Chennai', '2101200005', '1', '1', 'upload_files/candidate_tracker/38631000528_kishor vel web dev.docx', NULL, NULL, '2021-01-29', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task not completed.', '2', '2', '', '1', '1', '', '2', '2021-01-29', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 03:24:06', 60, '2021-01-29 03:02:29', 0, NULL, 1),
(3014, 'akshay s', '2', '9894871449', '', 'akshayus27@gmail.com', '1995-04-27', 25, '2', '2', 'usha k', 'nil', 150000.00, 1, 0.00, 400000.00, 'chennai', 'chennai', '2101200006', '1', '1', 'upload_files/candidate_tracker/11645564365_Akshay_Resume.pdf', NULL, NULL, '2021-01-22', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not ready to join', '2', '2', '', '1', '1', '', '2', '2021-02-02', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 03:36:03', 60, '2021-01-22 02:42:03', 0, NULL, 1),
(3015, 'Yogesh R', '2', '7397395479', '', 'yogeshravi241998@gmail.com', '1998-01-24', 22, '2', '2', 'Ravi S', 'Private company', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101200007', '1', '1', 'upload_files/candidate_tracker/42643520353_Yogesh_Resume.pdf', NULL, NULL, '2021-01-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 04:02:53', 60, '2021-01-23 05:47:33', 0, NULL, 1),
(3016, 'kamalesh s', '2', '8778374997', '9962583299', 'kamaleshsaravanan99@gmail.com', '1999-01-28', 21, '2', '2', 'saravananan k', 'bussiness', 40000.00, 1, 0.00, 400000.00, 'chennai', 'chennai', '2101200008', '1', '1', 'upload_files/candidate_tracker/18591358418_kamalesh resume .pdf', NULL, NULL, '2021-01-22', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'Shortlisted. We can offer 10K.', '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 06:12:53', 1, '2021-01-20 06:19:20', 0, NULL, 1),
(3017, 'Pandiarajan', '2', '6379456289', '9629522376', 'srdpandi605@gmail.com', '1996-07-03', 24, '2', '2', 'Sadaiyandi', 'Daily wages', 15000.00, 1, 18000.00, 25.00, 'Madurai', 'Chennai', '2101200009', '1', '2', 'upload_files/candidate_tracker/1693611930_Resume06112020.pdf', NULL, NULL, '2021-01-23', 45, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-20 07:03:32', 60, '2021-01-23 05:47:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3018, 'kalaislevan', '2', '8675715184', '7010618078', 'skmkalaiselvan@gmail.com', '1996-06-04', 24, '2', '2', 'sabapathi', 'dailywages', 7500.00, 1, 0.00, 200000.00, 'salem', 'chennai', '2101210001', '1', '1', 'upload_files/candidate_tracker/28022535254_KALAI SE (1).pdf', NULL, NULL, '2021-01-23', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-21 10:53:03', 60, '2021-01-23 05:48:03', 0, NULL, 1),
(3019, 'Rajesh M R', '5', '9986513288', '', 'rajeshmr347@gmail.com', '1992-02-26', 28, '2', '2', 'Ramesh N', 'Electrician', 40000.00, 0, 30000.00, 35000.00, 'Valepura bangalore', 'Valepura bangalore', '2101210002', '1', '2', 'upload_files/candidate_tracker/12989623014_Resumecv.docx', NULL, NULL, '2021-01-21', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response from his end. not okay with salary.', '5', '2', '0', '2', '2', '0', '2', '2021-01-23', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-21 11:23:35', 1, '2021-01-21 11:31:34', 0, NULL, 1),
(3020, 'S.Divakar', '6', '7401699003', '', 'divakarsekarsekar08@gmail.com', '1997-12-08', 23, '1', '2', 'K.sekar', 'Coolie', 15000.00, 2, 14000.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2101210003', '', '2', 'upload_files/candidate_tracker/48277180051_RESUME.pdf', NULL, NULL, '2021-01-21', 0, '5266', '3', '8', '2021-01-25', 156000.00, '', '5', '1970-01-01', '1', '13k ctc for srikanth team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-21 11:43:44', 60, '2021-01-27 09:58:08', 0, NULL, 1),
(3021, 'Prasanth', '6', '9551925105', '8056270300', 'Prasanthrv1998@gmail.com', '1998-02-25', 22, '1', '2', 'K.ravi', 'Coolie', 14000.00, 2, 14000.00, 16000.00, 'Tondairpet', 'Tondairpet', '2101210004', '', '2', 'upload_files/candidate_tracker/47303977938_P25.pdf', NULL, NULL, '2021-01-21', 0, '5266', '5', '20', NULL, 0.00, '', '0', NULL, '1', 'Not sustainable', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-21 11:44:16', 1, '2021-01-21 12:49:03', 0, NULL, 1),
(3022, '', '0', '7904342859', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101210005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-21 01:07:28', 0, NULL, 0, NULL, 1),
(3023, 'balasubramaniyan', '13', '9344568096', '8088294651', 'bala3151994@gmail.com', '1994-04-05', 26, '2', '2', 'annadurai', 'former', 20000.00, 3, 10000.00, 15000.00, 'ramanathapuram', 'ramanathapuram', '2101210006', '1', '2', 'upload_files/candidate_tracker/52437187660_balaresume.pdf', NULL, NULL, '2021-01-22', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not completed the system task.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-21 01:09:19', 60, '2021-01-22 11:20:10', 0, NULL, 1),
(3024, 'mahendran', '13', '7200494939', '7904526297', 'mahendrasupramaniyan@gmail.com', '1992-11-07', 28, '2', '1', 'subramaniyan', 'retired revenue department', 20000.00, 2, 458400.00, 650000.00, 'Ramanathapuram', 'chennai', '2101210007', '1', '2', 'upload_files/candidate_tracker/77816630765_Mahendran', NULL, NULL, '2021-01-25', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-21 03:37:19', 60, '2021-01-25 04:44:36', 0, NULL, 1),
(3025, 'M.ragul', '15', '9677334048', '9080474289', 'Masitamil1901@gmail.com', '1996-06-26', 24, '3', '2', 'M.praveen', 'Developer', 25.00, 1, 15.00, 28.00, 'Chennai', 'Erode', '2101210008', '', '2', 'upload_files/candidate_tracker/30258249612_ragul resume.docx', NULL, NULL, '2021-01-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '2', '2', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-21 04:08:51', 60, '2021-01-29 07:25:34', 0, NULL, 1),
(3026, 'wiljan', '15', '8056512411', '', 'slojan07@gmail.com', '1994-07-24', 26, '2', '2', 'siluvainayagam', 'fisherman', 50000.00, 2, 25000.00, 35000.00, 'kanyakumari', 'kanyakumari', '2101210009', '15', '2', 'upload_files/candidate_tracker/73085412300_WILJAN RESUME.pdf', NULL, NULL, '2021-01-25', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-21 08:39:49', 60, '2021-01-25 04:49:36', 0, NULL, 1),
(3027, 'Ashok', '2', '9360351726', '', 'ashok.in62@gmail.com', '1994-02-09', 27, '2', '2', 'Udayakumar', 'Driver', 200000.00, 1, 200000.00, 500000.00, 'Chennai', 'Chennai', '2101220001', '1', '2', 'upload_files/candidate_tracker/91692136008_Ashok-9360351726.docx', NULL, NULL, '2021-02-11', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed.', '2', '2', '0', '1', '1', '0', '2', '2021-02-11', '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-01-22 10:21:41', 1, '2021-02-11 01:16:04', 0, NULL, 1),
(3028, 'navin kumar', '2', '8939347493', '', 'navink2015@gmail.com', '1996-07-26', 24, '2', '2', 'manoharan', 'clerk', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2101220002', '1', '1', 'upload_files/candidate_tracker/46767901102_NAVIN_2.pdf', NULL, NULL, '2021-01-24', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Incompleted.', '2', '2', '0', '1', '1', '0', '2', '2021-01-27', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-22 11:13:18', 1, '2021-01-22 11:17:56', 0, NULL, 1),
(3029, 'cithravel', '13', '7010702133', '', 'cithravel@gmail.com', '1990-06-02', 30, '2', '1', 'solai', 'formar', 70000.00, 2, 430000.00, 700000.00, 'chennai', 'chennai', '2101220003', '1', '2', 'upload_files/candidate_tracker/63925891191_Cithravel S.pdf', NULL, NULL, '2021-01-23', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response from him.', '2', '1', '', '1', '1', '', '2', '2021-01-30', '3', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-22 12:53:00', 7, '2021-01-22 05:15:17', 0, NULL, 1),
(3030, 'Seenivasan', '13', '9894411727', '', 'gsiva512@gmail.com', '1992-02-25', 28, '2', '2', 'Muthumariammal', 'Homemaker', 35000.00, 1, 4.20, 4.50, 'Sivakasi', 'Chennai', '2101220004', '1', '2', 'upload_files/candidate_tracker/42219366709_1611310597721_Resume.docx', NULL, NULL, '2021-01-23', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Issue, High CTC Expectation', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-22 03:49:46', 1, '2021-01-22 03:53:40', 0, NULL, 1),
(3031, 'Mohan raj', '13', '8754536151', '', 'mohan.smiles881@gmail.com', '1999-01-05', 22, '2', '2', 'Arumugam', 'Gas mechanic', 30000.00, 1, 15000.00, 25000.00, 'K.k.nagar chennai', 'K.k.nagar chennai', '2101220005', '1', '2', 'upload_files/candidate_tracker/78399595648_A.mohan raj resume.docx', NULL, NULL, '2021-01-23', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not fully completed. If he is ready to work with same salary we can offer.', '2', '1', '', '1', '1', '', '2', '2021-01-23', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-22 06:39:57', 60, '2021-01-23 10:20:46', 0, NULL, 1),
(3032, 'vigneshwaran a', '5', '9566639365', '', 'vigneshwara5665@gmail.com', '1995-09-12', 25, '2', '1', 'thaju nisha', 'none', 16000.00, 1, 16000.00, 18000.00, 'chennai', 'chennai', '2101220006', '3', '2', 'upload_files/candidate_tracker/77332023350_vicky updated resume.pdf', NULL, NULL, '2021-01-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Insurance based exp, High CTC Exp, Sustainability Issue', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-22 08:03:15', 1, '2021-01-22 08:07:17', 0, NULL, 1),
(3033, 'Lalitha', '4', '9710548336', '8072459442', 'plalitha15061994@gmail.com', '1994-04-15', 26, '2', '1', 'Ramen karki', 'admin', 20000.00, 3, 13000.00, 15000.00, 'No 29 vivekanandar street mgr Nagar chennai', 'mgr nagar', '2101230001', '1', '2', 'upload_files/candidate_tracker/33256659425_New Document 2021-0-23 10.17.41.pdf', NULL, NULL, '2021-01-23', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Relevant Exp will not fit to CRM/Esales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-23 10:07:44', 1, '2021-01-23 10:24:53', 0, NULL, 1),
(3034, 'Alagu Ayyappan P', '2', '9962445971', '9940321449', 'alaguayyappan8@gmail.com', '1997-08-28', 23, '2', '2', 'K Pasupathi', 'Manager', 70000.00, 0, 20000.00, 30000.00, 'B/2, Radial House, Jafferkhanpet, Chennai-600083', 'B/2, Radial House, Jafferkhanpet, Chennai-600083', '2101230002', '1', '2', 'upload_files/candidate_tracker/95281926063_1611129110270Resume_Alagu.pdf', NULL, NULL, '2021-01-24', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Incompleted. Getting Many Errors.', '2', '1', '0', '1', '1', '0', '2', '2021-01-25', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-23 11:34:55', 1, '2021-01-23 11:57:34', 0, NULL, 1),
(3035, '', '0', '9003300456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-23 01:41:09', 0, NULL, 0, NULL, 1),
(3036, 'Priyadharshini N', '2', '8825580189', '', 'Priyanatarajanbe@gmail.com', '1996-03-11', 24, '2', '1', 'Manigandan M', 'Medical coding', 60000.00, 2, 400000.00, 600000.00, 'Chennai', 'Chennai', '2101230004', '1', '2', 'upload_files/candidate_tracker/84566264057_resume_1598855168148.pdf', NULL, NULL, '2021-02-01', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-23 04:13:56', 1, '2021-01-23 04:32:34', 0, NULL, 1),
(3037, 'Manivannan K', '13', '9025594350', '', 'manivannan277@gmail.com', '1996-02-06', 24, '2', '2', 'Kasthuri Kannan', 'Daily Wages', 8000.00, 1, 0.00, 12000.00, 'Dindigul', 'Dindigul', '2101240001', '1', '1', 'upload_files/candidate_tracker/80420875546_My Resume.pdf', NULL, NULL, '2021-01-25', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Dont know the Basics.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-24 06:20:42', 1, '2021-01-24 06:24:27', 0, NULL, 1),
(3038, 'krishna vamsi', '13', '9361729458', '', 'krishdkv@gmail.com', '1998-05-19', 22, '2', '2', 'venkatesh', 'hostel manager', 20000.00, 1, 220000.00, 300000.00, 'chennai', 'royapettah', '2101240002', '1', '2', 'upload_files/candidate_tracker/84383508342_vamsiV7.3.pdf', NULL, NULL, '2021-01-28', 10, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He dont have a good knowledge in Technical', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-24 11:16:41', 60, '2021-01-28 11:59:08', 0, NULL, 1),
(3039, '', '0', '6369160768', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101250001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-25 10:11:41', 0, NULL, 0, NULL, 1),
(3040, 'Rajesh kumar k', '6', '8667879961', '7401553372', 'Krajeshkumar417@gmail.com', '1995-11-20', 25, '3', '2', 'Parents', 'Farmer', 10000.00, 4, 18500.00, 20000.00, 'Tirukkovilur', 'Chennai new Washermanpent', '2101250002', '', '2', 'upload_files/candidate_tracker/37722610029_RAJESH kumar....pdf', NULL, '1', '2021-08-07', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-25 11:42:17', 60, '2021-08-07 03:39:26', 0, NULL, 1),
(3041, 'rajesh kumar', '6', '7401553372', '7358336043', 'krajeshkumar417@gmail.com', '1995-11-20', 25, '1', '2', 'kathirvel', 'farmar', 15000.00, 1, 17000.00, 20000.00, 'villuppuram', 'tondaiyarpet', '2101250003', '', '2', 'upload_files/candidate_tracker/68820250313_TapScanner 01-25-2021-11.46 (1).pdf', NULL, NULL, '2021-01-25', 0, 'p1159', '8', '22', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'kindly allocate for second round ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-25 12:21:58', 60, '2021-01-25 12:44:57', 0, NULL, 1),
(3042, 'rakhesh dhevaraj ps', '2', '9791145114', '8072549729', 'rakheshdhevaraj@gmail.com', '1996-08-21', 24, '2', '2', 'shanmugam', 'railway coupler', 18000.00, 0, 200000.00, 400000.00, 'chennai', 'chennai', '2101250004', '1', '2', 'upload_files/candidate_tracker/51524300203_rakhesh dhevaraj resume.pdf', NULL, NULL, '2021-01-30', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude is not good.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-25 03:07:58', 60, '2021-01-30 10:00:24', 0, NULL, 1),
(3043, 'Kalimani M', '28', '9344551928', '', 'kalimanibbaaj@gmail.com', '1998-05-27', 23, '2', '2', 'Marimuthu', 'Clerk', 10000.00, 2, 0.00, 15000.00, 'Satchiyapuram, Sivakasi', 'Chennai, Tambaram', '2101250005', '1', '1', 'upload_files/candidate_tracker/82933308015_latest resume M. kalimani .pdf', NULL, '3', '2021-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-25 03:38:41', 1, '2021-09-30 04:17:13', 0, NULL, 1),
(3044, '', '0', '9097969261', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101250006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-25 04:54:22', 0, NULL, 0, NULL, 1),
(3045, 'Praveen', '3', '6382722665', '', 'praveenraina96@gmail.com', '1996-11-27', 24, '2', '2', 'rajendran', 'business', 10.00, 1, 4.00, 6.00, 'chennai', 'chennai', '2101250007', '1', '2', 'upload_files/candidate_tracker/94198755482_Praveen', NULL, NULL, '2021-01-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-25 07:37:49', 7, '2021-01-30 05:31:04', 0, NULL, 1),
(3046, 'Ashutosh', '2', '9500137193', '', 'awesumashu97@gmail.com', '1997-09-14', 23, '2', '2', 'Ranveer Pratap Singh', 'Production Manager', 8.00, 1, 1.44, 3.50, 'Chennai', 'Chennai', '2101260001', '1', '2', 'upload_files/candidate_tracker/40485314335_ashu_finalresume (1).pdf', NULL, NULL, '2021-01-28', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Donxquott get any response.', '2', '2', '', '2', '2', '', '2', '2021-02-02', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-26 02:05:52', 60, '2021-01-28 12:05:46', 0, NULL, 1),
(3047, 'S.hari krishnan', '23', '7904482403', '', 'Ranjithapr1699@gmail.com', '1999-04-16', 21, '2', '2', 'S.k.subbu raj', 'Former', 12000.00, 0, 0.00, 13000.00, 'Dindigul', 'Dindigul', '2101260002', '1', '1', 'upload_files/candidate_tracker/88319537605_hk resume.docx', NULL, NULL, '2021-01-27', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is Looking for an Internship.Intern for UI/UX not Required.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-26 11:24:54', 60, '2021-01-27 11:27:02', 0, NULL, 1),
(3048, '', '0', '6384601524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101260003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-26 01:51:13', 0, NULL, 0, NULL, 1),
(3049, 'Kaviraj K', '6', '7397483002', '8124897047', 'kavirajkumarasan@gmail.com', '1986-05-21', 34, '1', '1', 'Thavamani.M', 'Housewife', 15000.00, 3, 24000.00, 27000.00, 'Chennai', 'Chennai', '2101270001', '', '2', 'upload_files/candidate_tracker/21762114621_Kaviraj Resume .doc', NULL, NULL, '2021-01-27', 1, '55616', '5', '29', NULL, 0.00, '', '0', NULL, '1', 'will not suit', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-27 10:58:38', 1, '2021-01-27 11:13:19', 0, NULL, 1),
(3050, 'T.Beema', '4', '8925302953', '9047820877', 'beematamilarasan@gmail.com', '1998-03-26', 22, '1', '2', 'N.Tamilarasan', 'B.Sc.It', 30000.00, 3, 15000.00, 15000.00, 'No:113,mannampadi village,Vilankatur Post.Veppurtk', 'T.Nagar', '2101270002', '', '2', 'upload_files/candidate_tracker/34018530294_bema.pdf', NULL, NULL, '2021-01-27', 0, '5560', '5', '8', NULL, 0.00, '', '4', '2023-02-02', '2', 'not genuine lot of miss communication about her salary. absconded from last company. exp sal is 15k.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-27 11:12:06', 1, '2021-01-27 11:29:51', 0, NULL, 1),
(3051, 'Mahasum rizwan', '5', '8122170192', '8508234249', 'mahasoomrizwan@gmail.com', '1998-01-28', 23, '2', '2', 'Akbar Ali', 'Sales manager', 20000.00, 1, 0.00, 14000.00, 'Thiruvarur', 'Tambaram', '2101270003', '1', '1', 'upload_files/candidate_tracker/18081438894_MAHASUM RIZWAN A.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate didnt turned for the second round of Discussion', '5', '2', '', '1', '1', '', '2', '2021-02-09', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-27 12:31:39', 50, '2021-02-04 12:22:39', 0, NULL, 1),
(3052, 'Kanchana', '4', '7639663340', '9841189380', 'gurusrikanchana@gmail.com', '1990-03-04', 30, '3', '1', 'Kuberan', 'Carpenter', 10000.00, 2, 13000.00, 15000.00, 'Arignar Anna colony, north killambakkam', 'Vandalur zoo- otteri', '2101270004', '', '2', 'upload_files/candidate_tracker/75903162593_63506208869_4ad47b17930a97da1b6dcbb8813f858282b6b365.pdf', NULL, NULL, '2021-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'only non voice exp, Distance issue, will not fit for sales ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-27 01:10:55', 1, '2021-01-27 01:41:26', 0, NULL, 1),
(3053, 'Mahesh kumar', '5', '9962660319', '7010092715', 'rmahesh6@yahoo.com', '1994-11-06', 26, '2', '2', 'G.Ravi chandran', 'Retaied', 20000.00, 2, 20000.00, 26000.00, 'Kodungaiyur', 'Kodungaiyur', '2101270005', '1', '2', 'upload_files/candidate_tracker/2616251797_MAHESH-RESUME.docx', NULL, NULL, '2021-01-29', 60, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no Relevant exp, 60 days notice and not int in customer support. current th is 20k and exp 30%', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-27 02:35:33', 60, '2021-01-29 12:53:04', 0, NULL, 1),
(3054, 'vignesh', '2', '7397591198', '', 'poppyseed6464@gmail.com', '1998-08-26', 22, '2', '2', 'chandrasekaran', '.', 11000.00, 1, 0.00, 200000.00, 'Cuddalore', 'chennai', '2101270006', '1', '1', 'upload_files/candidate_tracker/9269963656_resume vignesh .pdf', NULL, NULL, '2021-01-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 02:53:37', 7, '2021-01-30 05:19:13', 0, NULL, 1),
(3055, 'Abhilash', '2', '9566041009', '', 'abiakhil69@gmail.com', '1997-12-03', 23, '2', '2', 'Lakshmaiah and pushpa', 'Attender', 10000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2101270007', '1', '1', 'upload_files/candidate_tracker/47913675131_abi cv.pdf', NULL, NULL, '2021-01-30', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not Completed.', '2', '2', '0', '1', '1', '0', '2', '2021-02-01', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 02:58:47', 1, '2021-01-27 03:06:31', 0, NULL, 1),
(3056, 'nanda kumar', '2', '7401508304', '', 'nandakumar18495@gmail.com', '1995-04-18', 25, '2', '2', 'mahesh', 'finance', 25000.00, 2, 300000.00, 650000.00, 'chennai', 'chennai', '2101270008', '1', '2', 'upload_files/candidate_tracker/95674508175_Nanda-Resume.docx', NULL, NULL, '2021-01-28', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 03:03:35', 1, '2021-01-27 03:17:43', 0, NULL, 1),
(3057, '', '0', '9884164463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101270009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-27 03:11:20', 0, NULL, 0, NULL, 1),
(3058, 'Harish', '5', '9381818205', '', 'harishram181818@gmail.com', '1988-11-01', 32, '2', '2', 'Ramachandra', 'Farmer', 10000.00, 0, 20.00, 30.00, 'Anantapur', 'Marathahalli', '2101270010', '1', '2', 'upload_files/candidate_tracker/66256012260_Harish Resume-(2020 ).doc', NULL, NULL, '2021-01-27', 0, '', '5', '68', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Back End Jobs, ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-27 05:12:27', 7, '2021-01-27 05:37:28', 0, NULL, 1),
(3059, 'Chanthiran', '13', '9942980143', '', 'chanthirane@gmail.com', '1997-06-05', 23, '2', '2', 'Elumalai', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Villupuram', 'Chennai', '2101270011', '1', '1', 'upload_files/candidate_tracker/56675075953_Chandru Resume-2.pdf', NULL, NULL, '2021-02-02', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed.', '2', '2', '', '1', '1', '', '2', '2021-02-05', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 05:54:04', 50, '2021-02-02 10:59:17', 0, NULL, 1),
(3060, 'lakshmi priya', '2', '9791726643', '9489705650', 'lakshpriya9392@gmail.com', '1992-03-09', 28, '2', '1', 'ashwin nandhakumar', 'home maker', 60000.00, 1, 0.00, 350000.00, 'vellore', 'chennai', '2101270012', '1', '1', 'upload_files/candidate_tracker/74917671695_Lakshmi_priyaresume.pdf', NULL, NULL, '2021-01-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Donxquott have an experience in MERN. She is a front end developer. ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 06:03:17', 1, '2021-01-27 10:08:01', 0, NULL, 1),
(3061, 'M.Rajeshwari', '2', '9176919821', '9514710106', 'rajeshwarimp.cse@gmail.com', '1997-01-30', 23, '2', '2', 'A.Mayavan', 'Book binding', 25000.00, 2, 13000.00, 20000.00, 'Chennai', 'Chennai', '2101270013', '1', '2', 'upload_files/candidate_tracker/86651711088_UpdatedResume.doc', NULL, NULL, '2021-02-03', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She donxquott have a basic knowledge.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 06:06:36', 50, '2021-02-03 10:57:01', 0, NULL, 1),
(3062, '', '0', '7660839787', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101270014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-27 06:09:07', 0, NULL, 0, NULL, 1),
(3063, 'r mohan raj', '6', '8667282087', '', 'manimohan1995@gmail.com', '1995-05-10', 25, '2', '2', 'none', 'none', 23000.00, 0, 23000.00, 25000.00, 'chennai', 'chennai', '2101270015', '3', '2', 'upload_files/candidate_tracker/47073106655_RESUME mohan final.docx', NULL, NULL, '2021-02-08', 0, '', '3', '8', '1970-01-01', 189480.00, '', '2', '1970-01-01', '1', 'For Guru Team, CTC 15790', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-27 06:26:39', 7, '2021-02-11 06:47:48', 0, NULL, 1),
(3064, 'Sureshkrishnan', '2', '8667638113', '', 'sureshkrishnan4771110@gmail.com', '1998-06-03', 22, '2', '2', 'Sudalai', 'Shop keeper', 500000.00, 2, 290000.00, 350000.00, 'Tirunelveli', 'Tirunelveli', '2101270016', '1', '2', 'upload_files/candidate_tracker/84982722516_Sureshkrishnan-Resume.pdf', NULL, NULL, '2021-01-30', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He donxquott know the React. But we required MERN', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 06:28:42', 60, '2021-01-30 09:49:22', 0, NULL, 1),
(3065, 'kumari n.m.', '2', '9940527528', '', 'kumari96sri@gmail.com', '1996-10-31', 24, '2', '2', 'mani n.g', 'wevers', 12000.00, 1, 10000.00, 30000.00, 'chennai', 'chennai', '2101270017', '1', '2', 'upload_files/candidate_tracker/26122380_updated resume (2).docx', NULL, NULL, '2021-01-29', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not completed the task.', '2', '2', '', '1', '1', '', '2', '2021-01-29', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 06:48:56', 60, '2021-01-29 09:58:49', 0, NULL, 1),
(3066, 'Gopi Kumar', '13', '9551527356', '', 'gopikumar28@gmail.com', '1998-10-28', 22, '2', '2', 'Sekar', 'Business', 30.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2101270018', '1', '1', 'upload_files/candidate_tracker/20844007567_myresume.pdf', NULL, NULL, '2021-01-28', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Couldnot completed the task.', '2', '2', '', '1', '1', '', '2', '2021-02-04', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-27 08:58:54', 60, '2021-01-28 01:01:03', 0, NULL, 1),
(3067, '', '0', '9791901997', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-28 12:11:04', 0, NULL, 0, NULL, 1),
(3068, '', '0', '7406909965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101280002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-28 08:28:39', 0, NULL, 0, NULL, 1),
(3069, 'kalaislevan', '2', '7010618078', '8675715184', 'skmmech04@gmail.com', '1996-06-04', 24, '2', '2', 'sabapathi', 'dailywages', 6500.00, 1, 0.00, 200000.00, 'salem', 'chennai', '2101280003', '1', '1', 'upload_files/candidate_tracker/6447072796_KALAI SE (1).pdf', NULL, NULL, '2021-01-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Exp in React, Focus on the salary Part, will not sustain', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-28 08:45:56', 60, '2021-01-28 12:13:10', 0, NULL, 1),
(3070, 'Nandhini G', '13', '7358280056', '9380197954', 'gnandy016@gmail.com', '1996-10-16', 24, '2', '2', 'KM.Ganesh', 'Turnering Business', 150000.00, 1, 0.00, 13000.00, 'No 43 ponmana chemmal Street kk nagar Chennai', 'No 43 ponmana chemmal street kk nagar Chennai', '2101280004', '1', '1', 'upload_files/candidate_tracker/27829718334_Nandhini.pdf', NULL, NULL, '2021-01-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She donxquott have a knowledge in PHP Mysql. ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-28 10:28:26', 1, '2021-01-28 11:29:17', 0, NULL, 1),
(3071, 'Mohammed Asif A', '5', '9790764819', '', 'amohammedasif200@gmail.com', '1997-09-20', 23, '1', '2', 'Almas A', 'Tailor', 25000.00, 0, 24000.00, 30000.00, 'Chennai', 'Chennai', '2101280005', '', '2', 'upload_files/candidate_tracker/9033519808_1611319938427_0_Asif Resume .docx', NULL, NULL, '2021-01-28', 0, '55598', '3', '8', '2021-02-01', 279276.00, '', '3', '2021-02-18', '1', '23273 gross sal. for rajkumar team. in patroniss.', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-28 10:36:15', 60, '2021-02-03 09:44:59', 0, NULL, 1),
(3072, 'Jagadeesh', '5', '9840806779', '7904955071', 'JAIJAGDEESH13@GMAIL.COM', '1994-10-13', 26, '1', '2', 'Sumathi', 'Supervisor', 20000.00, 2, 32000.00, 40000.00, 'Chennai', 'Chennai', '2101280006', '', '2', 'upload_files/candidate_tracker/51157980819_Jagdeesh Resumee.docx.pdf', NULL, NULL, '2021-01-28', 0, '55598', '3', '8', '2021-02-01', 328800.00, '', '5', '1970-01-01', '1', '27400 gross and 23592 as net with pf.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-28 10:36:41', 7, '2021-01-30 03:50:51', 0, NULL, 1),
(3073, '', '0', '9940798659', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101280007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-28 10:45:18', 0, NULL, 0, NULL, 1),
(3074, 'Dhivakar Srinivasan', '22', '8754552710', '9789958263', 'dhivakrishna1530@gmail.com', '1996-10-15', 24, '2', '2', 'Srinivasan.K', 'Driver', 20000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2101280008', '1', '1', 'upload_files/candidate_tracker/22316350249_1610955531534_Updated Resume Dhiva-180121.docx', NULL, NULL, '2021-02-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-01-28 11:00:16', 1, '2021-01-28 11:05:46', 0, NULL, 1),
(3075, '', '0', '9941671655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101280009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-28 11:12:09', 0, NULL, 0, NULL, 1),
(3076, 'karpagam', '13', '8681897170', '8754319188', 'karpgamviky@gmail.com', '1995-05-26', 25, '2', '2', 'muthusamy', 'ariyalur', 20000.00, 0, 13000.00, 25000.00, 'ariyalur', 'chennai', '2101280010', '1', '2', 'upload_files/candidate_tracker/16179833948_karpagamresume (1).pdf', NULL, NULL, '2021-01-30', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Latha taken the interview. She donxquott have that much knowledge in technical.', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-28 11:40:36', 7, '2021-01-30 05:30:39', 0, NULL, 1),
(3077, 'bharrhath h', '13', '9789709238', '', 'bharrhathbolt@gmail.com', '1999-01-17', 22, '2', '2', 'hareesh', '-', 15000.00, 1, 0.00, 15000.00, 'maduravoyal', 'maduravoyal', '2101280011', '1', '1', 'upload_files/candidate_tracker/93114857024_1610793675943Resume_Bharrhath.pdf', NULL, NULL, '2021-01-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Not attend the system task.', '2', '1', '0', '1', '1', '0', '2', '2021-01-29', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-28 01:08:02', 1, '2021-01-29 12:23:27', 0, NULL, 1),
(3078, 'Vishal', '23', '9962135401', '', 'vishalsowri007@gmail.com', '1998-07-12', 22, '3', '2', 'sowrirajan', 'area sales manager', 40000.00, 1, 0.00, 200000.00, 'Avadi', 'Avadi', '2101280012', '', '1', 'upload_files/candidate_tracker/97203626491_Vishal_profile.docx', NULL, NULL, '2021-01-30', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not meet our expectations', '2', '2', '', '1', '1', '', '2', '2021-02-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-28 01:10:28', 60, '2021-01-30 11:02:51', 0, NULL, 1),
(3079, 'Narasimman', '13', '9597261263', '', 'narasimmanchimu0@gmail.com', '1993-04-10', 27, '2', '2', 'Palanivel', 'Bank manager', 5.00, 2, 30000.00, 35000.00, 'Namakkal', 'Namakkal', '2101280013', '1', '2', 'upload_files/candidate_tracker/56023681234_NARASIMMAN P.docx', NULL, NULL, '2021-01-28', 1, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No response from him.', '2', '2', '0', '1', '1', '0', '2', '2021-01-29', '2', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-28 01:13:52', 1, '2021-01-28 01:17:51', 0, NULL, 1),
(3080, 'R.Ananthi', '4', '7448501768', '7358050079', 'ammuananthi16@gmail.com', '1999-05-15', 21, '2', '2', 'K.Raju', 'Farmer', 9000.00, 1, 0.00, 10000.00, 'Chennai', 'Thiruporur', '2101280014', '1', '1', 'upload_files/candidate_tracker/62511602717_Ananthi.docx', NULL, NULL, '2021-01-30', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2021-01-28 01:42:34', 7, '2021-01-30 05:19:47', 0, NULL, 1),
(3081, 'Sakthivel', '23', '9087936553', '', 'sakthiv3495@gmail.com', '1995-04-03', 25, '2', '2', 'Vijayan', 'Farmers', 25000.00, 2, 25000.00, 30000.00, 'Villupuram', 'Chennai', '2101280015', '1', '2', 'upload_files/candidate_tracker/55266887426_Sakthi_Updated Resume.pdf', NULL, NULL, '2021-01-30', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is a trainer. he dont know about the technologies which is required.\n', '2', '2', '', '2', '2', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-28 06:02:57', 60, '2021-01-30 11:08:46', 0, NULL, 1),
(3082, 'M Raghavendran', '6', '8637611859', '7358004915', 'ragavar17@gmail.com', '1995-08-02', 25, '2', '2', 'K Mohan', 'Catering', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai Villivakkam', '2101280016', '1', '1', 'upload_files/candidate_tracker/6249352302_Ragava resume .docx', NULL, NULL, '2021-01-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for non voice, Will Not Handle Pressure And Sustain And Will Not Suite For Re.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-28 06:46:55', 8, '2021-01-29 02:54:00', 0, NULL, 1),
(3083, 'Kuntrapakam yugandhar', '5', '9676765779', '9182144804', 'Pranamnuv26@gmail.com', '1996-09-05', 24, '1', '2', 'Nagaraju. K', 'Agriculture', 10000.00, 2, 0.00, 20000.00, 'Tirupathi', 'Madiwala', '2101290001', '', '1', 'upload_files/candidate_tracker/76463190874_Krupa Anna CV (1).pdf', NULL, NULL, '2021-01-29', 0, 'P1157', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-29 10:44:26', 60, '2021-01-29 07:26:41', 0, NULL, 1),
(3084, 'm.rajeswari', '25', '9487290710', '', 'rajimadhavan@gmail.com', '1998-06-05', 22, '2', '2', 'madhavan', 'banking', 50000.00, 2, 12500.00, 20000.00, 'krishnagiri', 'guindy', '2101290002', '1', '2', 'upload_files/candidate_tracker/61042555065_CV - Raji (1).docx', NULL, NULL, '2021-01-29', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CRM profile, fresher for calling, has exp in kyc. will not suite for esales. sis working in hdfc life. sal exp is too high will not handle pressure and sustain.', '8', '2', '', '1', '1', '', '2', '1970-01-01', '2', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-29 11:04:00', 8, '2021-01-29 02:49:00', 0, NULL, 1),
(3085, 'Daphine Rosary.C', '5', '8778910798', '', 'daphinerosary@gmail.com', '1999-10-08', 21, '1', '2', 'Christopher.K', 'Lawyer', 120000.00, 1, 0.00, 18000.00, 'Pallavaram', 'Pallavaram', '2101290003', '', '1', 'upload_files/candidate_tracker/73496228836_P1090.pdf', NULL, NULL, '2021-01-29', 0, 'P1122', '3', '8', '1970-01-01', 126600.00, '', '2', '1970-01-01', '2', '10k th for keerthiga team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-29 12:09:29', 60, '2021-02-01 11:08:02', 0, NULL, 1),
(3086, 'Venkatesh', '2', '8148914656', '', 'venkatdevit@gmail.com', '1994-06-25', 26, '2', '2', 'Devarajilu', 'Driver', 15000.00, 1, 250000.00, 500000.00, 'Chidambaram', 'Chennai', '2101290004', '1', '2', 'upload_files/candidate_tracker/98302202529_venkatesh_resume.pdf', NULL, NULL, '2021-01-30', 2, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not completed. he knows only front end.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 12:23:59', 60, '2021-01-30 09:58:15', 0, NULL, 1),
(3087, 'Marichandru M', '5', '9176744895', '8939712137', 'Harichandru00178@gmail.com', '1999-09-11', 21, '3', '2', 'Thangam', 'No', 15000.00, 0, 18000.00, 20000.00, 'Kolathur', 'Kolathur', '2101290005', '', '2', 'upload_files/candidate_tracker/37301296378_MARI.pdf', NULL, NULL, '2021-01-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sales Exp, will not sustain for a long', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-29 01:24:55', 60, '2021-01-29 02:40:48', 0, NULL, 1),
(3088, 'V mageshwaran', '5', '8056160507', '7358633130', 'vinayagamagesh0@gmail.com', '1997-08-05', 23, '2', '2', 'Vinayagamoorthy s k', 'Electrician', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2101290006', '1', '1', 'upload_files/candidate_tracker/77405263537_1598945252946Resume_mahesh.pdf', NULL, NULL, '2021-01-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response will not join', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-29 02:47:00', 50, '2021-02-05 04:43:14', 0, NULL, 1),
(3089, 'Kriston Fernando', '2', '9884395255', '', 'krisnithi.23@gmail.com', '1997-06-23', 23, '2', '2', 'Bryan Fernando', 'Buisness', 40000.00, 1, 4.20, 7.50, 'Chennai', 'Chennai', '2101290007', '1', '2', 'upload_files/candidate_tracker/70174896629_kristonresume (1).pdf', NULL, NULL, '2021-01-30', 60, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Upto our level.', '2', '2', '', '1', '1', '', '2', '2021-02-02', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 03:48:57', 60, '2021-01-30 11:42:05', 0, NULL, 1),
(3090, 'Kumarasen.s', '5', '7708739518', '9025696422', 'Kumarsubramani1995@gmail.com', '1995-10-15', 25, '2', '2', 'Subramani.k', 'Bussness', 70000.00, 1, 18600.00, 25000.00, 'No 59bharathi nagar veppampattu', 'Veppampattu', '2101290008', '1', '2', 'upload_files/candidate_tracker/1983425853_Kumar final.docx', NULL, NULL, '2021-02-01', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-29 04:03:07', 1, '2021-01-29 04:10:39', 0, NULL, 1),
(3091, 'yogeshwari', '2', '9566214468', '', 'yogeragavan@gmail.com', '1995-06-14', 25, '2', '2', 'veeraragavan', 'nil', 40000.00, 2, 300000.00, 370000.00, 'chennai', 'chennai', '2101290009', '1', '2', 'upload_files/candidate_tracker/63897871403_YOGESHWARI resume (2) (1).pdf', NULL, NULL, '2021-01-30', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'UI Design not Good.', '2', '2', '', '1', '1', '', '2', '2021-02-02', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 04:40:18', 60, '2021-01-30 10:30:05', 0, NULL, 1),
(3092, '', '0', '6380180308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101290010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-29 05:39:01', 0, NULL, 0, NULL, 1),
(3093, 'K S Arvind', '2', '7397355105', '', 'arvindks2697@gmail.com', '1997-10-26', 23, '2', '2', 'G Kannan', 'Self Employed', 70000.00, 1, 1.00, 350000.00, 'Chennai', 'Chennai', '2101290011', '1', '2', 'upload_files/candidate_tracker/79798800293_ResumeArvind13122020-SinglePage-Print.pdf', NULL, NULL, '2021-01-30', 45, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task Not working properly.', '2', '2', '', '1', '1', '', '2', '2021-02-02', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 06:34:58', 60, '2021-01-30 03:07:28', 0, NULL, 1),
(3094, 'vijay kandhasamy', '2', '9043823549', '', 'vijaymac01@gmail.com', '1997-08-26', 23, '2', '2', 'kandhasamy', 'weaver', 20000.00, 1, 2.60, 3.20, 'kanchipuram', 'chennai', '2101290012', '1', '2', 'upload_files/candidate_tracker/62300026445_Vijay K Re.pdf', NULL, NULL, '2021-02-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-29 07:55:58', 1, '2021-01-29 08:01:21', 0, NULL, 1),
(3095, 'iionel richard', '5', '9092782826', '', 'richpillais@gmail.com', '1993-09-07', 27, '4', '2', 'sivakumar pillai', 'retired', 6000000.00, 1, 0.00, 450000.00, 'chennai', 'chennai', '2101300001', '', '2', 'upload_files/candidate_tracker/29832443637_LR_CV_2021.pdf', NULL, NULL, '2021-01-30', 0, '', '3', '8', '2021-02-01', 312000.00, '', '2', '1970-01-01', '1', '26ctc with pf Shanmugam team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-30 10:27:24', 7, '2021-02-01 10:44:52', 0, NULL, 1),
(3096, 'Mythili raju', '4', '9790739676', '', 'mythiliravi3986@gmail.com', '1986-09-03', 34, '2', '1', 'Vimala', 'Working', 35000.00, 2, 20000.00, 20000.00, 'Chitlapakam', 'Chitlapakam', '2101300002', '1', '2', 'upload_files/candidate_tracker/59288366135_MYTHILI - Customer Service.docx', NULL, NULL, '2021-01-30', 15, '', '5', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is not suitable for sales process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-30 11:00:34', 8, '2021-01-30 11:56:05', 0, NULL, 1),
(3097, '', '0', '8056163126', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101300003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-30 11:12:25', 0, NULL, 0, NULL, 1),
(3098, 'Dinesh', '13', '7299432408', '', 'dineshp003@gmail.com', '1991-05-27', 29, '1', '2', 'Panneerselvam R', 'Farmer', 25000.00, 1, 20000.00, 35000.00, 'Chennai', 'Chennai', '2101300004', '', '2', 'upload_files/candidate_tracker/81539270299_DInesh.pdf', NULL, NULL, '2021-04-27', 1, 'Jobs', '6', '9', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not completed the task.', '2', '2', '', '1', '1', '', '2', '2021-01-30', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-30 11:19:42', 60, '2021-04-27 07:47:00', 0, NULL, 1),
(3099, '', '0', '9715356423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101300005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-30 12:38:03', 0, NULL, 0, NULL, 1),
(3100, 'B sathish kumar', '5', '7305305492', '9003280590', 'sathishkumr96@gmail.com', '1997-05-15', 23, '2', '1', 'Devi', 'Household', 16000.00, 2, 16000.00, 20000.00, 'Perambur, chennai', 'Perambur, chennai', '2101300006', '1', '2', 'upload_files/candidate_tracker/79119220874_Sathish Resume dec 2020.pdf', NULL, NULL, '2021-02-01', 2, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response. will not join', '5', '2', '', '1', '1', '', '2', '2021-02-02', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-01-30 03:48:53', 50, '2021-02-01 01:25:51', 0, NULL, 1),
(3101, '', '0', '8838502787', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101300007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-30 05:29:18', 0, NULL, 0, NULL, 1),
(3102, 'Anuraj ar', '5', '9591107371', '', 'ar.anuraj@yahoo.in', '1977-10-04', 43, '2', '2', 'Ayappan pillai', 'Kscdc', 20000.00, 0, 33000.00, 35000.00, 'Kerala', 'Bangalore', '2101310001', '14', '2', 'upload_files/candidate_tracker/50022914573_rabang.doc', NULL, NULL, '2021-02-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-31 11:21:31', 1, '2021-01-31 11:37:23', 0, NULL, 1),
(3103, '', '0', '8668028001', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2101310002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-01-31 02:55:35', 0, NULL, 0, NULL, 1),
(3104, 'mohana sundaram p', '5', '8124755847', '', 'sundarsen07@gmail.com', '1998-07-26', 22, '2', '2', 'none', 'none', 25000.00, 0, 15500.00, 18000.00, 'Chennai', 'Chennai', '2101310003', '3', '2', 'upload_files/candidate_tracker/39456069370_RESUME Mohana sundaram(1).pdf', NULL, NULL, '2021-02-02', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-31 02:59:48', 50, '2021-02-02 12:34:17', 0, NULL, 1),
(3105, 'sivakumar l', '13', '6381339278', '', 'sivakumarlingaraj18@gmail.com', '1999-08-18', 21, '2', '2', 'lingaraj p', 'na', 10000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2101310004', '1', '1', 'upload_files/candidate_tracker/6791792061_sivakumar.doc', NULL, NULL, '2021-02-01', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dont have a knowledge in PHP.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-01-31 05:55:11', 50, '2021-02-01 11:21:18', 0, NULL, 1),
(3106, 's parthian', '6', '7339067266', '', 'sparthian.randy@gmail.com', '1994-01-04', 27, '2', '1', 'malini', 'none', 15000.00, 3, 15000.00, 18000.00, 'chennai', 'chennai', '2101310005', '3', '2', 'upload_files/candidate_tracker/17310867683_PARTHIBAN RESUME.pdf', NULL, NULL, '2021-02-01', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sale', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-01-31 09:34:27', 8, '2021-02-01 01:18:33', 0, NULL, 1),
(3107, 'Arockia Prabu', '4', '9677507284', '', 'arockiyaprabu@gmail.com', '1995-05-10', 25, '2', '2', 'Alexander', 'Farmer', 7000.00, 2, 0.00, 16000.00, 'Muhilthagam,(po), Ramanad-623403', '24B, High School Rd Ambattur, Tamil Nadu 600053', '2102010001', '14', '2', 'upload_files/candidate_tracker/28558736636_Resume.docx', NULL, NULL, '2021-02-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, not interested in sales.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-01 09:00:45', 8, '2021-02-01 01:20:53', 0, NULL, 1),
(3108, 'S. Felix', '5', '7448320204', '9677285931', 'Anirudhprashanth400@gmail.com', '1996-07-04', 24, '2', '2', 'Jyothi', 'House wife', 15000.00, 3, 15500.00, 18000.00, 'Kodungaiyur', 'Kodungaiyur', '2102010002', '1', '2', 'upload_files/candidate_tracker/2797505385_ felix cv.pdf', NULL, NULL, '2021-02-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response will not join', '5', '2', '0', '1', '1', '0', '2', '2021-02-02', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-01 10:18:28', 1, '2021-02-01 10:27:19', 0, NULL, 1),
(3109, '', '0', '6379766649', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102010003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-01 10:21:25', 0, NULL, 0, NULL, 1),
(3110, '', '0', '9840563091', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102010004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-01 10:32:35', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3111, 'jagadish rajendran', '6', '8072785806', '8870000538', 'jagadishr27@gmail.com', '1991-07-27', 29, '2', '1', 'rajendran', 'farmer', 40000.00, 2, 14000.00, 20000.00, 'tirupattur', 'porur', '2102010005', '1', '2', 'upload_files/candidate_tracker/11237860562_j@g resume 1-converted.pdf', NULL, NULL, '2021-02-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not join. going to rejoin in old company.', '5', '2', '0', '1', '1', '0', '2', '2021-02-02', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-01 11:04:05', 1, '2021-02-01 01:38:14', 0, NULL, 1),
(3112, 'M V UDHAYAKRISHNAN', '6', '8610273078', '8015714211', 'malarvas728@gmail.com', '1995-07-30', 25, '2', '2', 'Vasudevan', 'None now', 6000.00, 3, 1.00, 25000.00, 'Vandavasi', 'Chrnnai', '2102010006', '1', '2', 'upload_files/candidate_tracker/24171169471_NOW_ON.pdf', NULL, NULL, '2021-02-01', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'left before interview', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-01 11:08:49', 50, '2021-02-01 11:48:44', 0, NULL, 1),
(3113, 'Sabees kumar', '5', '8903326619', '6381474325', 'sabeeskumar123@gmail.com', '1998-06-18', 22, '1', '2', 'Babiyans', 'Fisherman', 120000.00, 1, 200000.00, 200000.00, 'Kanyakumari', 'Perambur', '2102010007', '', '2', 'upload_files/candidate_tracker/71915655782_RESUME SABEES.pdf', NULL, NULL, '2021-02-01', 0, '55561', '5', '33', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for sales industry ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-01 11:29:35', 50, '2021-02-01 12:10:37', 0, NULL, 1),
(3114, 'Priyadharshini N', '2', '9025554984', '', 'priyanatarajanbe@gmail.com', '1996-03-11', 24, '2', '1', 'Manigandan M', 'Senior medical coder', 60000.00, 2, 400000.00, 600000.00, 'Chennai', 'Chennai', '2102010008', '1', '2', 'upload_files/candidate_tracker/16732105441_resume_1598855168148.pdf', NULL, NULL, '2021-02-06', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-01 12:12:02', 50, '2021-02-06 05:18:05', 0, NULL, 1),
(3115, 'Vignesh R', '5', '9080777610', '', 'ganesh.r2594@gmail.com', '1994-09-25', 26, '1', '2', 'Parent', 'Sales executive', 15000.00, 2, 17000.00, 20000.00, 'Saligramam', 'Saligramam', '2102010009', '', '2', 'upload_files/candidate_tracker/30219403662_ch.pdf', NULL, NULL, '2021-02-01', 0, '', '3', '8', '2021-02-03', 189600.00, '', '6', '2021-03-26', '1', '15k th for kannan team.', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-01 12:58:47', 60, '2021-02-03 10:00:29', 0, NULL, 1),
(3116, '', '0', '9362129963', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102010010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-01 03:14:10', 0, NULL, 0, NULL, 1),
(3117, '', '0', '7397343470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102010011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-01 03:36:20', 0, NULL, 0, NULL, 1),
(3118, 'Sundar Essakimuthu', '2', '7092421692', '', 'sundar.raj37@gmail.com', '1993-06-16', 27, '2', '2', 'S. Essakimuthu', 'Senior Application Developer', 42000.00, 1, 45000.00, 80000.00, 'Chennai', 'Chennai', '2102010012', '1', '2', 'upload_files/candidate_tracker/78316918434_Sundar Essakimuthu Skill Set.pdf', NULL, NULL, '2021-02-06', 90, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-01 04:35:55', 50, '2021-02-06 05:18:21', 0, NULL, 1),
(3119, 'R.Logesh', '2', '8667307843', '8148426592', 'lokmike626@gmail.com', '1994-03-16', 26, '2', '2', 'S.Rangababu', 'Business', 1000000.00, 1, 400000.00, 750000.00, 'Chennai', 'Chennai', '2102010013', '1', '2', 'upload_files/candidate_tracker/49581913945_Logesh-Resume-Web-Developer.pdf', NULL, NULL, '2021-02-13', 45, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-15', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-01 11:37:40', 50, '2021-02-13 01:36:19', 0, NULL, 1),
(3120, 'Abdul Rahuman', '6', '7092064560', '', 'abdulrahuman0588@gmai.com', '1997-10-23', 23, '2', '2', 'Syed Mohammed', 'Driver', 20000.00, 2, 0.00, 25000.00, 'Tirunelveli', 'Chennai', '2102020001', '1', '1', 'upload_files/candidate_tracker/85313507274_Abdul Rahman Resume-converted.pdf', NULL, NULL, '2021-02-02', 0, '', '5', '22', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate selected but exp Salary High 15k so rejected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-02 08:45:38', 8, '2021-02-02 03:01:10', 0, NULL, 1),
(3121, 'Kaja Hussain', '6', '9629698782', '9360731424', 'kaja.hussain97@gmail.com', '1998-02-07', 22, '2', '2', 'Jalal mohamed', 'Business', 75000.00, 3, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2102020002', '1', '1', 'upload_files/candidate_tracker/71705653029_kajaCV (1).pdf', NULL, NULL, '2021-02-02', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOT FIT FOR RE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-02 09:10:34', 50, '2021-02-02 12:25:29', 0, NULL, 1),
(3122, '', '0', '8825744071', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102020003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-02 09:15:24', 0, NULL, 0, NULL, 1),
(3123, '', '0', '8122522970', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102020004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-02 09:19:07', 0, NULL, 0, NULL, 1),
(3124, 'Gunasekar', '6', '9524626208', '9442926208', 'gunagowtham12@gmail.com', '1994-04-17', 26, '2', '2', 'Kanakaraj', 'Employee', 20.00, 0, 0.00, 25000.00, 'TIRUPUR', 'Chennai', '2102020005', '1', '2', 'upload_files/candidate_tracker/97147929378_resume ch guna-converted (1).pdf', NULL, NULL, '2021-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain, No relevant Exp', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-02 10:44:55', 50, '2021-02-02 02:48:25', 0, NULL, 1),
(3125, 'Priya', '4', '8825441278', '7092918037', 'Whitepriya29@gmail.com', '1999-01-29', 22, '2', '2', 'Shanmugam', 'Tailor', 150000.00, 4, 11500.00, 1300.00, 'Chrompet', 'Chrompet', '2102020006', '14', '2', 'upload_files/candidate_tracker/14640097553_S. PRIYA(2).pdf', NULL, NULL, '2021-02-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-02 11:01:10', 1, '2021-02-02 11:14:47', 0, NULL, 1),
(3126, 'Balachandran Arumugam', '2', '9962289506', '', 'chandranskyla96@gmail.com', '1996-07-28', 24, '2', '2', 'Arumugam', 'Employee', 5000.00, 2, 12500.00, 30000.00, 'Nagapattinam', 'Chennai', '2102020007', '1', '2', 'upload_files/candidate_tracker/33769986573_resume__.pdf', NULL, NULL, '2021-02-02', 25, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed and no response from him.', '2', '2', '', '1', '1', '', '2', '2021-02-02', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-02 11:08:23', 50, '2021-02-02 11:25:11', 0, NULL, 1),
(3127, 'Jayasri', '4', '9894816816', '', 'Jayasriknc98@gmail.com', '1998-05-20', 22, '2', '2', 'Mani', 'Work', 15000.00, 2, 0.00, 12000.00, '140,marriyaman kovil st, villupuram', 'Aminjikarai', '2102020008', '1', '1', 'upload_files/candidate_tracker/93548009231_Document 2.pdf', NULL, NULL, '2021-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable, will not sustain ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-02 12:05:14', 50, '2021-02-02 02:38:53', 0, NULL, 1),
(3128, 'B Dinesh', '21', '7299976478', '', 'dineshkarthick2guys@gmail.com', '1994-07-27', 26, '1', '1', 'T Boominathan', 'Tailor', 20000.00, 1, 22000.00, 25000.00, 'No 93 2nd Street b.V. colony vyasarpadi', 'Chennai', '2102020009', '', '2', 'upload_files/candidate_tracker/1790885665_B DINESH 2.pdf', NULL, NULL, '2021-02-02', 0, 'Jobs', '5', '32', NULL, 0.00, '', '0', NULL, '1', 'Expecting High Package', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-02 12:07:21', 1, '2021-02-02 12:16:53', 0, NULL, 1),
(3129, 'rebeccal', '4', '7708087266', '', 'rebeccalgrace99@gmail.com', '1999-05-11', 21, '3', '2', 'charles', 'wages', 13000.00, 2, 0.00, 12000.00, 'thanjavur', 'Chennai', '2102020010', '', '1', 'upload_files/candidate_tracker/136406862_Rebeccal.pdf', NULL, NULL, '2021-02-02', 0, '', '8', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate left without attending the interview', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-02 12:39:39', 1, '2021-02-02 02:40:00', 0, NULL, 1),
(3130, 'Vishnu Raja Prabu m', '4', '9791871006', '7868927299', 'vishnuvrp97@gmail.com', '1997-05-18', 23, '2', '2', 'Muthukumar', 'Goldsmith', 85000.00, 1, 0.00, 10000.00, '57/28,krishnan kovil street, shengottai,tenkasi', 'Taramani', '2102020011', '1', '1', 'upload_files/candidate_tracker/24152139040_vishnu updated resume 2.docx', NULL, NULL, '2021-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp, Will not sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-02 03:05:00', 50, '2021-02-02 03:14:30', 0, NULL, 1),
(3131, 'sanjeev kumar', '2', '9566221319', '', 'sanjeevelango96@gmail.com', '1996-05-13', 24, '2', '2', 'elango', 'driver', 60000.00, 1, 400000.00, 700000.00, 'chennai', 'chennai', '2102020012', '1', '2', 'upload_files/candidate_tracker/93866015139_Sanjeev_Resume.pdf', NULL, NULL, '2021-02-09', 60, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-10', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-02 03:35:05', 50, '2021-02-09 02:50:41', 0, NULL, 1),
(3132, 'Aakash Aravind k', '6', '7358437064', '9884653648', 'aakashsmartrock@gmail.com', '1999-11-15', 21, '2', '2', 'kumar a', 'librarian', 25000.00, 0, 0.00, 20000.00, 'arumbakkam chennai', 'arumbakkam chennai', '2102020013', '1', '1', 'upload_files/candidate_tracker/11943534071_Resume.docx', NULL, NULL, '2021-02-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response. will not join', '5', '2', '', '1', '3', '', '2', '2021-02-04', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-02 09:40:13', 50, '2021-02-03 11:27:56', 0, NULL, 1),
(3133, 'benedict camillus', '4', '8248281423', '', 'benedictcamillus85@gmail.com', '2000-07-09', 20, '2', '2', 'grace rita', 'personnel manager cmda', 85000.00, 2, 0.00, 15000.00, 'pillaiyar kovil street shenoy nagar chennai', 'pillaiyar kovil street shenoy nagar chennai', '2102020014', '1', '1', 'upload_files/candidate_tracker/16420019415_benny resume 2.pdf', NULL, NULL, '2021-02-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher will not suite for CRM.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-02 10:17:30', 8, '2021-02-03 05:53:53', 0, NULL, 1),
(3134, 'r t kameswari', '6', '9677182203', '8072910217', 'kameswari1989@gmail.com', '1989-06-04', 31, '2', '1', 'santhosh kumar', 'process associate', 30000.00, 3, 14000.00, 15000.00, 'chennai', 'chennai', '2102020015', '3', '2', 'upload_files/candidate_tracker/51859769348_kamu resume.pdf', NULL, NULL, '2021-02-04', 0, '', '3', '53', '1970-01-01', 204000.00, '', '2', '1970-01-01', '1', 'having 9 yrs exp in the two-wheeler loan process, even field exp in 6 yrs. CTC 17k. for guru team.', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-02 10:37:28', 7, '2021-02-05 05:57:57', 0, NULL, 1),
(3135, '', '0', '8248281423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 07:41:43', 0, NULL, 0, NULL, 1),
(3136, '', '0', '8248281423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 08:46:44', 0, NULL, 0, NULL, 1),
(3137, '', '0', '8248281423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 08:47:18', 0, NULL, 0, NULL, 1),
(3138, '', '0', '7358437064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 08:47:35', 0, NULL, 0, NULL, 1),
(3139, '', '0', '7358437064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 08:49:05', 0, NULL, 0, NULL, 1),
(3140, 'Kadhar nawaz', '6', '9952432634', '9176891191', 'rahaanawi30@gmail.com', '1996-10-25', 24, '1', '2', 'Nilopher', 'General manager', 96000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2102030006', '', '2', 'upload_files/candidate_tracker/97366010965_new update resume(2).pdf', NULL, NULL, '2021-02-03', 0, 'P1121', '3', '8', '2021-02-04', 192000.00, '', '3', '2021-02-18', '1', '16k ctc for srikanthteam', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-03 09:46:17', 60, '2021-02-04 09:43:39', 0, NULL, 1),
(3141, '', '0', '9952432634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 09:55:52', 0, NULL, 0, NULL, 1),
(3142, '', '0', '9952432634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 10:00:10', 0, NULL, 0, NULL, 1),
(3143, '', '0', '9952432634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 10:01:05', 0, NULL, 0, NULL, 1),
(3144, 'test Sathish', '13', '9715880780', '', 'sat@gmail.com', '1994-08-25', 26, '3', '1', 'fwegve', 'nrrtt', 767565.00, 1, 0.00, 10000.00, 'drfb', 'hebr', '2102030010', '', '1', 'upload_files/candidate_tracker/82147759487_denash_2020.docx', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-03 10:17:38', 1, '2021-04-08 11:08:40', 0, NULL, 1),
(3145, 'S.shalini', '11', '9384622576', '9176440936', 'shalinigeetha1999@gmail.com', '1999-12-24', 21, '2', '2', 'V.saravanan', 'Painter', 12000.00, 1, 0.00, 13000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2102030011', '1', '1', 'upload_files/candidate_tracker/60647858845_shalini resume-converted.docx', NULL, NULL, '2021-02-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 02:45:36', 1, '2021-02-03 05:56:50', 0, NULL, 1),
(3146, 'R kiran kumar', '5', '9440448771', '6302196187', 'nanikiran0707@gmail.com', '1994-12-07', 26, '2', '2', 'B Ramesh', 'Handloom worker', 40000.00, 1, 18500.00, 23000.00, '13-15-259 Vidya Nagar Hindupur', 'Bangalore', '2102030012', '1', '2', 'upload_files/candidate_tracker/73117218074_KIRAN RESUME.pdf', NULL, NULL, '2021-02-04', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-03 03:36:23', 50, '2021-02-04 05:34:54', 0, NULL, 1),
(3147, 'gayathri.k', '4', '9841464599', '9003250197', 'kgayathri0601@gmail.com', '2000-01-06', 21, '2', '2', 'kumar', 'wages', 13000.00, 3, 0.00, 15000.00, 'saidapet', 'saidapet', '2102030013', '1', '1', 'upload_files/candidate_tracker/34105152971_gayu.pdf', NULL, NULL, '2021-02-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very childish and will not suite for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-03 03:47:59', 50, '2021-02-03 04:23:47', 0, NULL, 1),
(3148, 'venkatesan', '6', '9710530422', '9841506378', 'vr059739@gmail.com', '1999-09-04', 21, '2', '2', 'rosy', 'housewife', 10000.00, 2, 0.00, 20000.00, 'madhavaram', 'madhavaram', '2102030014', '1', '1', 'upload_files/candidate_tracker/40395620124_venkat resume.docx', NULL, NULL, '2021-02-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, exp is 15k. left before 2nd round', '5', '2', '', '1', '1', '', '2', '2021-02-06', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 04:35:20', 50, '2021-02-05 11:44:46', 0, NULL, 1),
(3149, 'Priya.G', '4', '8610499249', '9080716879', 'Ppriyadiviss@gmail.com', '1999-05-25', 21, '2', '2', 'Gopal.B', 'painter', 8000.00, 3, 0.00, 15000.00, 'No.5 4th st 6th cross puliyanthope Ch-12', 'Puliyanthope', '2102030015', '1', '1', 'upload_files/candidate_tracker/13325493878_Resume.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sal exp is 15k. fresher, not speaking up and will not suite for our process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 05:08:58', 50, '2021-02-04 12:02:08', 0, NULL, 1),
(3150, 'GURUPRASATH P', '6', '9952884125', '', 'guru6675@gmail.com', '1999-07-02', 21, '2', '2', 'Purushothaman', 'Driver', 10000.00, 2, 0.00, 15000.00, '14/1 kaveri Street Kandasamy nagar poonamallee', 'Poonamallee', '2102030016', '1', '1', 'upload_files/candidate_tracker/88812396089_GURU-converted (1).pdf', NULL, NULL, '2021-02-04', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He s nt intrested in sales, looking for accounts related job.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 05:17:35', 8, '2021-02-04 01:44:25', 0, NULL, 1),
(3151, 'panimaya albert', '2', '8680092696', '8667329600', 'albertino0326@gmail.com', '1997-06-02', 23, '2', '2', 'saleth rajan', 'daily wages', 9000.00, 1, 0.00, 18000.00, 'theni', 'Chennai', '2102030017', '1', '1', 'upload_files/candidate_tracker/26806638824_Resume.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-03 05:22:13', 50, '2021-02-04 11:28:32', 0, NULL, 1),
(3152, 'Muthu Natha Narayanan', '2', '9500177909', '6369200492', 'amrmuthu10@gmail.com', '1997-01-11', 24, '2', '2', 'N Arumugaperumal', 'Software Engineer', 10000.00, 1, 27000.00, 50000.00, 'Chennai', 'Chennai', '2102030018', '1', '2', 'upload_files/candidate_tracker/99514943919_Muthu', NULL, NULL, '2021-02-12', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-03 05:25:09', 50, '2021-02-12 05:22:27', 0, NULL, 1),
(3153, '', '0', '9629070412', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102030019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-03 06:06:35', 0, NULL, 0, NULL, 1),
(3154, 'sri bharathi dass ak', '2', '6383631041', '', 'sri1999bharathi@gmail.com', '1999-11-19', 21, '2', '2', 'kalidass m a', 'social worker', 14000.00, 2, 0.00, 380000.00, 'chennai', 'chennai', '2102030020', '1', '1', 'upload_files/candidate_tracker/93491726577_RESUME 1.pdf', NULL, NULL, '2021-02-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Came for Internship and the Expectation is High', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-03 06:39:01', 50, '2021-02-08 10:08:57', 0, NULL, 1),
(3155, 'suganya', '4', '9514436728', '9003226175', 'suganyasuganya514@gmail.com', '1997-06-02', 23, '2', '2', 'nagalakshmi', 'amma unavagam labour', 9000.00, 1, 9000.00, 25000.00, 'madhavaram', 'madhavaram', '2102030021', '1', '2', 'upload_files/candidate_tracker/20903685577_sssr resume.docx', NULL, NULL, '2021-02-05', 4, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'exp high sal 15k . last sal is 10k but no sales exp.', '1', '2', '', '1', '3', '', '2', '2021-02-06', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-03 07:08:30', 50, '2021-02-05 11:46:28', 0, NULL, 1),
(3156, 'vishnu prasad t', '5', '8015573836', '8072967105', 'vishvaru97@gmail.com', '1997-09-22', 23, '1', '2', 'thirunavukarasu d rubavathi t', 'land movers', 100000.00, 1, 0.00, 20000.00, 'porur chennai', 'porur', '2102040001', '', '1', 'upload_files/candidate_tracker/54770261096_T Vishnu Prasad. Resume.pdf', NULL, NULL, '2021-02-04', 0, '55561', '3', '8', '2021-02-08', 216000.00, '', '4', '2021-05-15', '1', 'Candidate selected for Logesh Team 18kCTC', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-04 10:19:26', 7, '2021-02-08 10:13:10', 0, NULL, 1),
(3157, '', '0', '9884698787', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:00:36', 0, NULL, 0, NULL, 1),
(3158, '', '0', '8807488149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:02:56', 0, NULL, 0, NULL, 1),
(3159, '', '0', '9043624196', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:08:31', 0, NULL, 0, NULL, 1),
(3160, 'Deepak', '5', '8610696503', '8122323201', 'dharundeepak23@gmail.com', '1995-04-17', 25, '2', '1', 'Anandkumar', 'business', 30000.00, 2, 350000.00, 450000.00, 'CHENNAI', 'CHENNAI', '2102040005', '1', '2', 'upload_files/candidate_tracker/60474505713_resume.pdf', NULL, NULL, '2021-02-04', 30, '', '5', '44', NULL, 0.00, '', '0', NULL, '1', 'He is not fit and Attitude issues ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-04 11:13:20', 1, '2021-02-04 11:20:54', 0, NULL, 1),
(3161, 'Raveena thulasi.s', '5', '9080716879', '8610499249', 'Srthulasi.raven@gmail.com', '2000-07-09', 20, '2', '2', 'Sam path kumar.s', 'CRPF police', 30000.00, 1, 0.00, 15000.00, 'No.1110 24the block k.p.park demellous road cu-12', 'Pattalam', '2102040006', '1', '1', 'upload_files/candidate_tracker/2364737540_resume Raveena 2021 new.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fir for CRM\n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-04 11:36:40', 8, '2021-02-04 01:40:03', 0, NULL, 1),
(3162, '', '0', '8667329600', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:43:57', 0, NULL, 0, NULL, 1),
(3163, 'Swetha.v', '4', '7667815554', '8438356169', 'Swetha.mani555@gmail.com', '1995-12-03', 25, '2', '1', 'Arulmani', 'Allsec technology', 15000.00, 1, 17000.00, 15000.00, '29/57 Thambu chetty St mannady ch_1', 'Old e852_new_3,49 cross St Thiruvanmiyur', '2102040008', '1', '2', 'upload_files/candidate_tracker/74120799978_swetha_resume pdf.pdf', NULL, NULL, '2021-02-04', 0, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She Is Not Sustain Long Term, and also not able to take pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-04 11:55:42', 8, '2021-02-04 01:39:25', 0, NULL, 1),
(3164, '', '0', '9962340946', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 11:59:57', 0, NULL, 0, NULL, 1),
(3165, '', '0', '8682916154', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 01:55:15', 0, NULL, 0, NULL, 1),
(3166, '', '0', '9941416202', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:02:04', 0, NULL, 0, NULL, 1),
(3167, '', '0', '9566080707', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:04:45', 0, NULL, 0, NULL, 1),
(3168, '', '0', '8610027623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:08:21', 0, NULL, 0, NULL, 1),
(3169, '', '0', '9080695097', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:17:39', 0, NULL, 0, NULL, 1),
(3170, '', '0', '8438433890', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 02:37:42', 0, NULL, 0, NULL, 1),
(3171, '', '0', '7010831752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 03:04:00', 0, NULL, 0, NULL, 1),
(3172, 'Vasanth', '2', '8056093606', '9941188084', 'vasanthmohan1912@gmail.com', '1996-09-12', 24, '2', '2', 'P.Mohanavelu', 'Business', 15000.00, 1, 204000.00, 400000.00, 'Chennai', 'Chennai', '2102040017', '1', '2', 'upload_files/candidate_tracker/33109095209_VasanthM-PDF.pdf', NULL, NULL, '2021-02-06', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-04 03:05:25', 50, '2021-02-06 05:18:33', 0, NULL, 1),
(3173, '', '0', '8754872916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 03:50:05', 0, NULL, 0, NULL, 1),
(3174, 'Thoufeek Ahamed', '3', '9003369710', '8248045253', 'taufi781016@gmail.com', '1999-04-09', 21, '2', '2', 'Samsudeen', 'Business', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102040019', '1', '1', 'upload_files/candidate_tracker/49310819432_Thoufeek ahamed.pdf', NULL, NULL, '2021-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-04 04:28:09', 1, '2021-02-05 04:29:36', 0, NULL, 1),
(3175, '', '0', '7338962633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102040020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-04 06:34:38', 0, NULL, 0, NULL, 1),
(3176, 'DollyNisha Js', '2', '7708532955', '', 'dollydols.97@gmail.com', '1997-08-04', 23, '2', '2', 'K.john', 'Business', 30000.00, 1, 28000.00, 45000.00, 'chennai', 'chennai', '2102040021', '1', '2', 'upload_files/candidate_tracker/41590018142_res_2021.pdf', NULL, NULL, '2021-02-06', 35, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-04 08:52:59', 50, '2021-02-06 05:18:44', 0, NULL, 1),
(3177, 'Vishali', '2', '8870450705', '8248367580', 'vishalimeera09@gmail.com', '1997-07-08', 23, '2', '2', 'Meera Kumar', 'Business', 60000.00, 1, 375000.00, 700000.00, 'Mayiladuthurai', 'Chennai', '2102040022', '1', '2', 'upload_files/candidate_tracker/26070791984_Vishali-Resume.pdf', NULL, NULL, '2021-02-08', 60, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is not matching with our requirements.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-04 08:54:25', 50, '2021-02-08 11:51:49', 0, NULL, 1),
(3178, 'Arun Elanthamil', '2', '8825579642', '', 'arunet008@gmail.com', '1995-08-20', 25, '2', '2', 'Perumal V', 'Business', 45000.00, 2, 4.80, 6.50, 'Chennai', 'Chennai', '2102040023', '1', '2', 'upload_files/candidate_tracker/89445649288_Arun_original.pdf', NULL, NULL, '2021-02-13', 2, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-04 10:34:37', 50, '2021-02-13 04:27:32', 0, NULL, 1),
(3179, 'K.Jawahar', '6', '9087039077', '7358074410', 'jawaharrajmfevents@gmail.com', '1997-02-06', 24, '2', '2', 'No', 'Shriram transport finance company ltd', 15000.00, 1, 14500.00, 22000.00, 'Royapuram', 'Royapuram', '2102050001', '1', '2', 'upload_files/candidate_tracker/43220083265_JAWAHAR resume.docx', NULL, NULL, '2021-02-08', 1032021, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the 2nd round of interview', '5', '2', '', '1', '1', '', '2', '2021-02-08', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-05 08:25:19', 50, '2021-02-08 11:29:57', 0, NULL, 1),
(3180, 'Prabhu', '14', '9500517704', '7020146874', 'prabhuvkp88@gmail.com', '1989-05-10', 31, '2', '2', 'M.viswanathan', 'Weaver', 25000.00, 5, 0.00, 600000.00, '142,vellikuppampalayam,sirumugai-642302', '142,vellikuppampalayam,sirumugai-641302,cbe,TN', '2102050002', '1', '1', 'upload_files/candidate_tracker/81090685024_PRABHU VISWANATHAN1.doc (1) (1).docx', NULL, NULL, '2021-02-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-05 11:52:24', 50, '2021-02-09 05:57:10', 0, NULL, 1),
(3181, 'D Naresh', '5', '7975506391', '9844607212', 'nareshdhegu123@gmail.com', '1994-05-11', 26, '2', '2', 'D Balaji Naidu', 'Former', 10000.00, 1, 21000.00, 25000.00, 'Chittoor', 'Bangalore', '2102050003', '1', '2', 'upload_files/candidate_tracker/74662516773_Naresh naidu 666.docx', NULL, NULL, '2021-02-05', 10, '', '5', '68', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for insurance sales', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-05 12:06:42', 50, '2021-02-05 12:26:40', 0, NULL, 1),
(3182, 'Mohit golhar', '5', '9677232911', '9422114994', 'mohit14golhar@gmail.com', '1995-12-14', 25, '1', '2', 'Manohar golhar', 'Retired', 30000.00, 1, 30000.00, 32000.00, 'Nagpur', 'Chennai', '2102050004', '', '2', 'upload_files/candidate_tracker/28118003314_MOHIT GOLHAR Resume-.pdf', NULL, NULL, '2021-02-05', 0, 'Veben', '3', '8', '2021-03-01', 345696.00, '', '0', NULL, '1', 'TH 25K with PFxxamp PT 28808 Gross', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-05 12:24:05', 1, '2021-02-05 12:31:20', 0, NULL, 1),
(3183, 'thamaraiselvan', '13', '9094243235', '', 'acethamarai@gmail.com', '1984-05-20', 36, '2', '1', 'rajamani', 'teacher', 30000.00, 2, 30000.00, 50000.00, 'chennai', 'chennai', '2102050005', '1', '2', 'upload_files/candidate_tracker/20378805268_Thamaraiselvan_Resume_gl.pdf', NULL, NULL, '2021-02-06', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Not completed the system task.', '2', '2', '0', '1', '1', '0', '2', '2021-02-06', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-05 12:29:51', 1, '2021-02-05 01:44:39', 0, NULL, 1),
(3184, 'arunmozhi.c', '2', '9025486263', '', 'mozhicarun@gmail.com', '1997-11-03', 23, '2', '2', 'renukadevi', 'homemaker', 15000.00, 1, 188000.00, 325000.00, 'avadi', 'avadi', '2102050006', '1', '2', 'upload_files/candidate_tracker/31003610341_Arun_Resume.pdf', NULL, NULL, '2021-02-06', 2, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He Knows only testing. Dont have a knowledge in MERN Stack.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-05 04:48:42', 50, '2021-02-06 02:28:05', 0, NULL, 1),
(3185, 'malavika d', '2', '9790763187', '', 'malavikajee@gmail.com', '1997-10-27', 23, '2', '2', 'v s dasaprakaash', 'working partner', 150000.00, 0, 360000.00, 650000.00, 'chennai', 'chennai', '2102050007', '1', '2', 'upload_files/candidate_tracker/91568952901_Malavika-latest-resume.docx', NULL, NULL, '2021-02-06', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Potential Candidate only. but she donxquott have an experience in Node and Express Js. she will learn and come back after 3 months.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-05 05:05:24', 50, '2021-02-06 02:35:16', 0, NULL, 1),
(3186, '', '0', '7010640810', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102050008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-05 06:23:14', 0, NULL, 0, NULL, 1),
(3187, 'Goutham', '5', '7871818932', '7418955934', 'gouthammurali932@gmail.com', '1998-08-09', 22, '2', '2', 'Murali (father)', 'Supervisor', 30000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2102050009', '1', '2', 'upload_files/candidate_tracker/89709449330_Goutham M D Resume.docx', NULL, NULL, '2021-02-08', 7, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate will not join as he got another offer', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-05 08:18:17', 50, '2021-02-08 11:41:13', 0, NULL, 1),
(3188, 'naveen raj', '5', '9566393792', '', 'naveenfredy97@gmail.com', '1997-12-29', 23, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 15000.00, 'Chennai', 'Chennai', '2102050010', '3', '2', 'upload_files/candidate_tracker/8468202798_CV_2021-01-30-035218.pdf', NULL, NULL, '2021-02-06', 0, '', '3', '8', '2021-02-09', 270000.00, '', '5', '1970-01-01', '1', '22500 ctc with pf. for shanmugam team', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-05 08:47:34', 7, '2021-02-08 04:15:53', 0, NULL, 1),
(3189, 's rajalakshmi', '20', '7299935659', '9092495869', 'raja1997lakshmi@gmail.com', '1996-02-05', 25, '2', '2', 'none', 'none', 14000.00, 0, 14000.00, 15000.00, 'Chennai', 'Chennai', '2102050011', '3', '2', 'upload_files/candidate_tracker/97634019565_S.RAJALAKSHMI 1.pdf', NULL, NULL, '2021-02-06', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-05 09:12:23', 50, '2021-02-06 05:19:06', 0, NULL, 1),
(3190, 'hari haran', '14', '9677660196', '', 'hariharansbcajj@gmail.com', '1997-09-25', 23, '2', '2', 'selvam', 'oftware development', 270000.00, 2, 22000.00, 600000.00, 'dindigul', 'chennai', '2102060001', '1', '2', 'upload_files/candidate_tracker/42298761137_HariHaranResume.docx', NULL, NULL, '2021-02-06', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed.', '2', '2', '', '1', '1', '', '2', '2021-02-08', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-06 09:27:40', 60, '2021-02-06 06:16:51', 0, NULL, 1),
(3191, 'Peter Nelson Raj K', '2', '9715819558', '9840356404', 'kpeternelsonraj93@gmail.com', '1993-08-17', 27, '2', '1', 'Kaspaar Raj P', 'IT', 25000.00, 1, 25000.00, 30000.00, 'No 4 St\'Paul Quater, Neyveli 1 , pincode 607801', 'No 24, TRV nagar, Guduvancherry, pincode 603202', '2102060002', '1', '2', 'upload_files/candidate_tracker/26230607063_PETER NELSON RAJ K-React JS-fresher-1.pdf', NULL, NULL, '2021-02-06', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable,Not strong in React,Mongo,Node', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-06 10:08:06', 1, '2021-02-06 10:34:16', 0, NULL, 1),
(3192, 'alagar mannan akshy', '8', '6374822529', '9655169511', 'alagarmannanakshy@gmail.com', '1996-02-15', 24, '3', '2', 'kumanan', 'business', 300000.00, 1, 18800.00, 20000.00, 'tamilnadu', 'bangalore', '2102060003', '', '2', 'upload_files/candidate_tracker/70918370813_resume new.docx', NULL, NULL, '2021-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 10:37:14', 1, '2021-02-06 10:58:24', 0, NULL, 1),
(3193, 'Lingesh waran', '6', '9500031778', '', 'lingesh26101999@gmail.com', '1999-10-26', 21, '2', '2', 'Parents', 'Private employer', 20000.00, 1, 0.00, 15000.00, 'Chennai 64', 'Chennai 64', '2102060004', '1', '1', 'upload_files/candidate_tracker/88051480044_lingesh_resume.pdf', NULL, NULL, '2021-02-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for Sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 10:45:38', 50, '2021-02-06 11:05:25', 0, NULL, 1),
(3194, 'ARUNKUMAR AR', '5', '6360780439', '6360780539', 'arunkumarar2674@gmail.com', '1997-08-23', 23, '3', '2', 'Ramachandrappa', '....', 200000.00, 0, 22000.00, 30000.00, 'Bangalore', 'Bangalore', '2102060005', '', '2', 'upload_files/candidate_tracker/83193498820_ARUN RESUME.docx', NULL, NULL, '2021-02-08', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 10:47:03', 1, '2021-02-06 10:58:34', 0, NULL, 1),
(3195, 'Subasis Mallik', '5', '9337797736', '9658413946', 'subasis999@gmail.com', '1991-08-18', 29, '2', '2', 'Saroja kumar mallik', 'Job', 50000.00, 1, 2.77, 4.00, 'Odisha', 'Banglore', '2102060006', '1', '2', 'upload_files/candidate_tracker/93609511698_SUBASIS MALLIK....pdf', NULL, NULL, '2021-02-06', 0, '', '5', '39', NULL, 0.00, '', '0', NULL, '1', 'he will not suit for our process', '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 11:07:45', 1, '2021-02-06 11:16:35', 0, NULL, 1),
(3196, 'Kishore kumar', '5', '7904664070', '', 'kishorekumar0306@yahoo.in', '1991-07-01', 29, '2', '2', 'Anusuya', 'House wife', 20000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2102060007', '1', '2', 'upload_files/candidate_tracker/38032752733_kishore 2021.pdf', NULL, NULL, '2021-02-06', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Issue', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-06 11:29:29', 1, '2021-02-06 12:43:03', 0, NULL, 1),
(3197, 'M.KARTHICK', '6', '7092441678', '9003767155', 'Karkar66418@gmail.com', '1999-07-26', 21, '2', '1', 'G.MOHAN', 'Painter', 80000.00, 1, 0.00, 15000.00, 'Perumbakkam', 'Perumbakkam', '2102060008', '1', '1', 'upload_files/candidate_tracker/31548436209_0_resume model.docx', NULL, NULL, '2021-02-10', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not turned up', '5', '2', '', '1', '1', '', '2', '2021-02-11', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 11:51:39', 50, '2021-02-10 12:22:48', 0, NULL, 1),
(3198, 'Saravanan', '5', '7358776552', '9841499331', 'csaravanan578@gmail.com', '1997-04-07', 23, '2', '2', 'Kamalam', 'mother', 50000.00, 2, 0.00, 20000.00, 'kodungaiyur', 'kodungaiyur', '2102060009', '1', '1', 'upload_files/candidate_tracker/30607315041_918010070469360-09-12-2018to05-01-2019.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'From collection BG not interested in sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-06 11:53:21', 1, '2021-02-16 12:14:28', 0, NULL, 1),
(3199, 'Mythili.S', '20', '9841744014', '9710073609', 'mythu22ly@gmail.com', '1995-09-22', 25, '2', '2', 'Subramaniya bharathi', 'multi task staff r.l.i', 300000.00, 2, 15000.00, 20000.00, '2/7 R.L.I qtrs sardar patel road Adyar ch -113', '2/7 R.L.I qtrs sardar Patel road adyar ch-113', '2102060010', '1', '2', 'upload_files/candidate_tracker/70659829568_Mythili New Updated Resume 1 MBA.pdf', NULL, NULL, '2021-02-06', 2, '', '3', '8', '1970-01-01', 144000.00, '', '2', '1970-01-01', '1', 'Not open for the agreement. She agreed for 12k TH but not for the agreement. updated remarks: sriram said agreement is not required and confirm joining. for keerthika team.', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-06 12:49:32', 7, '2021-03-04 04:41:57', 0, NULL, 1),
(3200, 'r vijay', '5', '8098040535', '', 'vijayrvijayr44@gmail.com', '1995-04-20', 25, '2', '2', 'none', 'none', 18000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2102060011', '3', '1', 'upload_files/candidate_tracker/16624644901_VIJAY - RESUME.doc', NULL, NULL, '2021-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 02:05:14', 1, '2021-02-06 02:09:12', 0, NULL, 1),
(3201, 'Vignesh', '6', '9677154030', '', 'vicky31897@gmail.com', '1997-08-31', 23, '2', '2', 'Sathish', 'Cloth merchant', 20.00, 1, 12.00, 15.00, 'Chennai', 'Chennai', '2102060012', '1', '2', 'upload_files/candidate_tracker/49766954961_RESUME-vignesh-777.docx', NULL, NULL, '2021-02-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Relevant Exp,will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 02:14:25', 50, '2021-02-06 03:40:59', 0, NULL, 1),
(3202, 'Aravind G', '2', '6379295860', '9840620526', 'aravindgshanthi@gmail.com', '1998-08-29', 22, '2', '2', 'Gunasekaran', 'Ex serviceman', 40000.00, 1, 300000.00, 600000.00, 'Chennai', 'Chennai', '2102060013', '1', '2', 'upload_files/candidate_tracker/55392122047_Aravind G - 27_01_2021.pdf', NULL, NULL, '2021-02-09', 30, '', '8', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He came office. but not attended the interview.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-06 05:29:12', 50, '2021-02-09 02:33:10', 0, NULL, 1),
(3203, 'veeni jeyasri', '13', '9123573939', '', 'jeyasri1816@gmail.com', '1997-11-16', 23, '2', '2', 'dhanapal', 'nil', 20000.00, 1, 180000.00, 250000.00, 'chennai', 'chennai', '2102060014', '1', '2', 'upload_files/candidate_tracker/78277743018_Veeni Jeyasri resume.docx', NULL, NULL, '2021-02-08', 2, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-06 05:50:29', 60, '2021-02-08 09:56:49', 0, NULL, 1),
(3204, 'mohammed mustafa', '5', '7305426475', '', 'mustafasonu9@gmail.com', '1995-10-25', 25, '2', '2', 'none', 'none', 14500.00, 0, 14000.00, 15000.00, 'chennai', 'chennai', '2102060015', '3', '2', 'upload_files/candidate_tracker/5860531454_Mohammed Mustafa. M.doc', NULL, NULL, '2021-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 08:08:14', 1, '2021-02-06 08:16:42', 0, NULL, 1),
(3205, 'p shaileshvaran', '6', '9176258285', '', 'shailushailesh16279@gmail.com', '1996-10-08', 24, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102060016', '3', '2', 'upload_files/candidate_tracker/21304422509_shaileshwaran.doc', NULL, NULL, '2021-02-08', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustain doubt', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 08:23:53', 8, '2021-02-08 01:10:49', 0, NULL, 1),
(3206, 'Lingesh waran', '23', '9500031779', '9500031778', 'lingesh26101999@gmail.com', '1999-10-26', 21, '1', '2', 'Loganathan', 'Private employer', 20000.00, 1, 0.00, 15000.00, 'Chennai 64', 'Chennai 64', '2102060017', '', '1', 'upload_files/candidate_tracker/3229633271_lingesh_resume.pdf', NULL, NULL, '2021-02-15', 0, 'Job', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-06 09:56:53', 50, '2021-02-15 04:26:51', 0, NULL, 1),
(3207, '', '0', '8056017545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102070001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-07 11:53:02', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3208, 'Gopinath.k', '4', '8056017546', '7299793824', 'vijigopi2101@gmail.com', '1999-01-21', 22, '2', '2', 'Krishnamurthy.a', 'Security', 10000.00, 0, 0.00, 15000.00, 'Perambur', 'Perambur', '2102070002', '1', '1', 'upload_files/candidate_tracker/78215965716_GOPI.pdf', NULL, NULL, '2021-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not work under pressure and will not suite for esale/crm', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-07 11:57:38', 50, '2021-02-08 10:21:19', 0, NULL, 1),
(3209, 'Prakash Raj H', '5', '9551467327', '8778875445', 'prakashyuvi17@gmail.com', '1999-01-16', 22, '2', '2', 'Pramila H', 'Nil', 20000.00, 1, 0.00, 15000.00, 'No13/15 ,Ponnuvelpuram 3rd Street,Ayanam, Ch 23.', 'No13/15 ,Ponnuvelpuram 3rd Street,Ayanam, Ch 23', '2102080001', '1', '1', 'upload_files/candidate_tracker/25121566634_resume.pdf', NULL, NULL, '2021-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up, looking for acc job. will not suite for rm/crm', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-08 12:26:29', 8, '2021-02-08 03:01:36', 0, NULL, 1),
(3210, 'k.premkumar', '2', '8610823424', '8870576571', 'ajithpremkr98@gmail.com', '1998-07-24', 22, '2', '2', 'k.yoheswari', 'attender in private school', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2102080002', '1', '2', 'upload_files/candidate_tracker/80697916467_Preme Resume Updated 02022021.pdf', NULL, NULL, '2021-02-08', 1, '', '2', '54', NULL, 0.00, '', '0', NULL, '1', 'he joined as trainee.', '2', '2', '0', '1', '1', '0', '2', '2021-02-15', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-08 09:28:14', 1, '2021-02-08 12:41:17', 0, NULL, 1),
(3211, 'Benedict kiran', '5', '9344234816', '8248841810', 'Benedictkiran33@gmail.com', '2000-06-17', 20, '2', '2', 'Sujatha xavier', 'Accountant', 25000.00, 1, 0.00, 15000.00, '309 tnhb 2nd street,nehru nagar, velachery', '309,tnhb 2nd street nehru nagar velachery', '2102080003', '8', '1', 'upload_files/candidate_tracker/49614073623_Kiran resume 111.docx', NULL, NULL, '2021-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, not speaking up and will not suite for RM/CRM', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-08 09:55:23', 50, '2021-02-08 10:37:59', 0, NULL, 1),
(3212, 'Vijay S', '5', '8778177297', '', 'vijaysrinivas8793@gmail.com', '1993-07-09', 28, '2', '2', 'R srinivasan', 'Lic', 50000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2102080004', '1', '1', 'upload_files/candidate_tracker/5249701066_VIJAY RESUME 15102021 (1).pdf', NULL, '1', '2021-12-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have 4 months of Sales Exp, Career Gap, Can be trained for Relationship manager. Scheduled with GK sir for the 2nd level, but the candidate left without attending the interview', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-02-08 10:40:48', 50, '2021-12-18 11:11:23', 0, NULL, 1),
(3213, 'Keerthana', '4', '9003154254', '8682816688', 'keerthanasaravanan19@yahoo.com', '1999-01-19', 22, '1', '2', 'Saravanan', 'Photographer', 15.00, 1, 0.00, 15.00, '3/1a murugan street Kodambakkam road west saidapet', '3/1a murugan street Kodambakkam road west saidapet', '2102080005', '', '1', 'upload_files/candidate_tracker/92311787024_KEERTHANA.pdf', NULL, NULL, '2021-02-08', 0, 'P1122', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher and exp is 15k. will work if we offer 15k. her attitude will not suite for us.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-08 10:44:38', 50, '2021-02-08 11:03:12', 0, NULL, 1),
(3214, 'hari haran m', '6', '9003200153', '', 'hariharanmurugan166@gmail.com', '1996-04-19', 24, '2', '2', 'murugan', 'Business', 26000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2102080006', '14', '1', 'upload_files/candidate_tracker/67391032605_180921160538_0001.pdf', NULL, NULL, '2021-02-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-08 11:51:47', 50, '2021-02-09 05:56:38', 0, NULL, 1),
(3215, 'Sudhakar Nayak', '5', '7735370126', '', 'sudhakarnayak171@gmail.com', '1996-04-04', 24, '2', '2', 'Gadadhar nayak', 'Farmers', 10000.00, 3, 16.50, 17000.00, 'Odisha', 'Koramangala', '2102080007', '1', '2', 'upload_files/candidate_tracker/61727986957_sudhakar nayak cv (1) (1).pdf', NULL, NULL, '2021-02-08', 0, '', '5', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not suitable for our profile', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-08 01:07:19', 7, '2021-02-08 01:26:13', 0, NULL, 1),
(3216, 'Balasekaran', '6', '9600148923', '8248259454', 'cbsparthiban30@gmail.com', '1991-11-30', 29, '2', '2', 'Chandrasekaran', 'Networking managaer', 30000.00, 1, 15000.00, 18000.00, 'Madipakkam', 'Madipakkam', '2102080008', '1', '2', 'upload_files/candidate_tracker/2306090711_bala resume 2020.docx', NULL, NULL, '2021-02-13', 20, '', '3', '60', '2021-02-17', 180000.00, '', '3', '2021-02-23', '1', '15K CTC in Patroniss', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-08 01:41:22', 60, '2021-02-16 05:29:17', 0, NULL, 1),
(3217, '', '0', '8124959504', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102080009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-08 01:44:54', 0, NULL, 0, NULL, 1),
(3218, '', '0', '7358653435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102080010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-08 02:22:04', 0, NULL, 0, NULL, 1),
(3219, 'Sudhash kumar', '6', '8825809168', '', 'Sudhashkumar11@gmail.com', '1997-04-11', 23, '1', '2', 'Mani v', 'Baker', 10000.00, 1, 13000.00, 16000.00, 'Cherry street, I ayanavaram', 'Cherry street, I ayanavaram', '2102080011', '', '2', 'upload_files/candidate_tracker/34467708739_sudhash kumar resume 2021.pdf', NULL, NULL, '2021-02-08', 0, 'P1121', '3', '8', '2021-02-10', 189480.00, '', '6', '2021-03-26', '1', 'candidate selected .. suthagar team 15k Take home.. wednesday joining', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-08 02:30:57', 60, '2021-02-09 06:38:14', 0, NULL, 1),
(3220, 'Srivasthava M', '20', '8667253693', '7358424388', 'srivasthava18@gmail.com', '1998-02-10', 22, '2', '2', 'SRIDHAR', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102080012', '1', '1', 'upload_files/candidate_tracker/838063876_vasthava.pdf', NULL, NULL, '2021-02-09', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-08 03:11:21', 50, '2021-02-09 06:02:57', 0, NULL, 1),
(3221, '', '0', '7708839012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102080013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-08 03:59:27', 0, NULL, 0, NULL, 1),
(3222, 'Saurabh Rai', '17', '7290826049', '8303044952', 'saurabh.iimt09@gmail.com', '1991-01-01', 30, '2', '2', 'Vinod Rai', 'Retired', 20000.00, 2, 2.80, 3.00, 'Khalilabad', 'Khalilabad', '2102080014', '1', '2', 'upload_files/candidate_tracker/98773578419_saurabh.pdf', NULL, NULL, '2021-02-09', 0, '', '3', '7', '2021-02-10', 264000.00, '', '5', '1970-01-01', '1', 'Selected for Sanjeev Team,CTC 22k with PF PT', '5', '2', '4', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-08 05:15:25', 7, '2021-02-09 05:46:00', 0, NULL, 1),
(3223, 'aruldass', '2', '8098775692', '', 'aruldass767@gmail.com', '1998-07-10', 22, '2', '2', 'kulandai samy', 'farmer', 2.40, 2, 2.40, 5.00, 'thiruvanna malai', 'chennai', '2102090001', '1', '2', 'upload_files/candidate_tracker/32479433259_ArulDassCv.pdf', NULL, NULL, '2021-02-09', 24, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-10', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 09:04:40', 50, '2021-02-09 02:58:42', 0, NULL, 1),
(3224, 'Raima.R', '4', '8248399797', '9789964885', 'raimarajesh23@gmail.com', '1999-05-23', 21, '1', '2', 'S.Rajesh', 'Driver', 10000.00, 0, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2102090002', '', '1', 'upload_files/candidate_tracker/86124262447_Resume - Raima.pdf', NULL, NULL, '2021-02-09', 0, 'P1122', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice not suitable for voice process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 10:31:35', 7, '2021-02-09 05:54:24', 0, NULL, 1),
(3225, 'm.malathi', '13', '9791515644', '8838492686', 'malathi.michael98@gmail.com', '1998-12-07', 22, '2', '2', 'm.michael samy', 'electrical engineer', 25000.00, 1, 0.00, 15000.00, 'tenkasi', 'chennai', '2102090003', '1', '1', 'upload_files/candidate_tracker/34732701505_MALATHI 1 (1)-converted.pdf', NULL, NULL, '2021-02-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She donxquott have a good knowledge in technically.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 10:55:12', 1, '2021-02-09 11:05:24', 0, NULL, 1),
(3226, 'annapoorani', '2', '9994033148', '', 'appriya98@gmail.com', '1998-08-12', 22, '2', '2', 'selvakumar', 'business', 40000.00, 0, 20000.00, 25000.00, 'Sivakasi', 'chennai', '2102090004', '1', '2', 'upload_files/candidate_tracker/38918317731_resume (5).pdf', NULL, NULL, '2021-02-10', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'technically not good. Always telling i am not prepared well.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 10:58:49', 60, '2021-02-09 02:40:38', 0, NULL, 1),
(3227, 'thenmozhi', '2', '8939141319', '', 'thenmozhivij@gmail.com', '1999-01-25', 22, '2', '2', 'murugan', 'labour', 11000.00, 1, 0.00, 180000.00, 'chennai', 'chennai', '2102090005', '1', '1', 'upload_files/candidate_tracker/75639507885_Thenmozhi_Resume.pdf', NULL, NULL, '2021-02-11', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected by GS. we will see 1st 7 days. after that we will decide.', '2', '2', '0', '1', '1', '0', '2', '2021-02-12', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 12:18:57', 1, '2021-02-09 02:10:08', 0, NULL, 1),
(3228, '', '0', '9385605167', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102090006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-09 12:27:05', 0, NULL, 0, NULL, 1),
(3229, 'praveen kumar s', '2', '9600492252', '9361742001', 'praveensenthil1999@gmail.com', '1999-04-01', 21, '2', '2', 'senthikumar', 'electrician', 10000.00, 1, 13000.00, 23000.00, 'virudhunagar', 'Chennai', '2102090007', '1', '2', 'upload_files/candidate_tracker/89458366935_Praveen CV.pdf', NULL, NULL, '2021-02-12', 2, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He is from the Dot Net Domin. He dont have a knowledge in MERN.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 12:55:52', 1, '2021-02-09 01:00:36', 0, NULL, 1),
(3230, 'saranya v', '2', '9566254868', '9884898293', 'swasaranya@gmail.com', '1997-02-17', 23, '2', '2', 'venkatesan j', 'vegtable seller', 12000.00, 1, 10000.00, 25000.00, 'royapettah chennai', 'royapettah chennai', '2102090008', '1', '2', 'upload_files/candidate_tracker/90453932993_Saranya Exp1.pdf', NULL, NULL, '2021-02-11', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Could Not Meet Our Expectations', '2', '2', '0', '1', '1', '0', '2', '2021-02-12', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 02:12:22', 1, '2021-02-09 02:23:48', 0, NULL, 1),
(3231, 'anandajothi', '5', '9884900732', '', 'itelligence1976@gmail.com', '1976-10-24', 44, '2', '1', 'malar vizhi m', 'none', 40000.00, 0, 40000.00, 45000.00, 'chennai', 'chennai', '2102090009', '3', '2', 'upload_files/candidate_tracker/7449257393_2021-01.02.pdf', NULL, NULL, '2021-02-09', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suit our profile', '5', '2', '', '1', '1', '', '2', '2021-02-11', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 03:02:48', 60, '2021-02-09 03:11:53', 0, NULL, 1),
(3232, 'gnanaprakash s', '5', '9789924453', '', 'sprakash.ranjith@gmail.com', '1992-01-17', 29, '2', '2', 'none', 'none', 20000.00, 0, 20000.00, 22000.00, 'chennai', 'chennai', '2102090010', '3', '2', 'upload_files/candidate_tracker/11371244997_CV.docx', NULL, NULL, '2021-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 03:13:22', 1, '2021-02-09 03:17:20', 0, NULL, 1),
(3233, '', '0', '9884246119', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102090011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-09 03:30:24', 0, NULL, 0, NULL, 1),
(3234, 'MOHAMMED ASIF A', '2', '8870708252', '', 'mohammedaasif466@gmail.com', '1997-01-24', 24, '2', '2', 'Mohammed Farooque A', 'Leather Business', 200000.00, 2, 0.00, 1.80, 'Vellore', 'Vellore', '2102090012', '1', '1', 'upload_files/candidate_tracker/86328141377_updtres_29-Jan-21_00.01.10.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-22', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 03:30:26', 50, '2021-02-15 12:22:48', 0, NULL, 1),
(3235, '', '0', '9600492251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102090013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-09 03:40:51', 0, NULL, 0, NULL, 1),
(3236, '', '0', '9791091833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102090014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-09 04:02:47', 0, NULL, 0, NULL, 1),
(3237, 'Ravindra B', '5', '9390889259', '7702862128', 'ravindrabadugu1995@gmail.com', '1994-04-08', 26, '2', '2', 'Irmia B', 'Customer support Exicutive', 30000.00, 0, 8500.00, 15000.00, 'Mathikire', 'Mathikire', '2102090015', '1', '2', 'upload_files/candidate_tracker/22301520745_Ravindra Resume 2021.docx', NULL, NULL, '2021-02-10', 11, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'hes not good for sales', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-09 04:29:44', 50, '2021-02-10 10:50:33', 0, NULL, 1),
(3238, 'manikandan', '2', '9003570766', '', 'nmanikandan048@gmail.com', '1996-05-23', 24, '2', '2', 'natarajan', 'carpenter', 20000.00, 1, 15000.00, 20000.00, 'medavakkam', 'medavakkam', '2102090016', '1', '2', 'upload_files/candidate_tracker/87282264535_Manikandan_Resume.pdf', NULL, NULL, '2021-02-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 05:54:22', 50, '2021-02-13 04:27:58', 0, NULL, 1),
(3239, 'al hamid sultan', '2', '9789847880', '', 'alhameed66@hotmail.com', '1993-12-10', 27, '2', '2', 'fazal ahamed', 'nil', 20000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2102090017', '1', '1', 'upload_files/candidate_tracker/59130590365_Al Hamid Resume_.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He is not interested with out company policy.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 06:38:53', 1, '2021-02-09 07:01:22', 0, NULL, 1),
(3240, 'r rajesh', '5', '8015662229', '', 'rajeshrockr94@gmail.com', '1994-04-26', 26, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102090018', '3', '2', 'upload_files/candidate_tracker/12246446613_Rajesh final yuvi.pdf', NULL, NULL, '2021-02-11', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' sustain doubt', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 08:33:18', 50, '2021-02-11 12:37:56', 0, NULL, 1),
(3241, 'e mirunalini', '20', '8778449334', '', 'mirunalini9620@gmail.com', '1996-05-20', 24, '2', '2', 'none', 'none', 13000.00, 0, 13000.00, 14000.00, 'chennai', 'chennai', '2102090019', '3', '2', 'upload_files/candidate_tracker/75607317485_1606886203380.docx', NULL, NULL, '2021-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 08:57:12', 1, '2021-02-09 09:00:21', 0, NULL, 1),
(3242, 'S Dhivya', '2', '7550126887', '7708272480', 'dhivyashivakumar7@gmail.com', '1999-10-22', 21, '2', '2', 'J SIVAKUMAR', 'Framer', 60000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2102090020', '1', '1', 'upload_files/candidate_tracker/38566370742_RESUME DHIYA.docx', NULL, NULL, '2021-02-15', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She donxquott have a basic knowledge.', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-09 09:03:21', 1, '2021-02-09 09:11:46', 0, NULL, 1),
(3243, 'sriram gr', '5', '7401004416', '', 'sriramgr@hotmail.com', '1984-06-05', 36, '2', '1', 'durga s', 'process associate', 35000.00, 0, 35000.00, 40000.00, 'chennai', 'chennai', '2102090021', '3', '2', 'upload_files/candidate_tracker/35551184502_0_Sriram Resume.pdf', NULL, NULL, '2021-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-09 09:36:11', 1, '2021-02-10 09:35:45', 0, NULL, 1),
(3244, '', '0', '7904598316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102100001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-10 08:45:10', 0, NULL, 0, NULL, 1),
(3245, 'Gopalakrishnan M', '6', '7868906222', '9445994168', 'gopalkrishh07@gmail.com', '1998-07-13', 22, '2', '2', 'Murugan L', 'EX Army', 180000.00, 0, 0.00, 2.00, 'Tirupattur', 'Ambattur', '2102100002', '1', '1', 'upload_files/candidate_tracker/61286337302_gopal resume.docx', NULL, NULL, '2021-02-10', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no sustain doubt', '5', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 10:38:03', 50, '2021-02-10 10:57:31', 0, NULL, 1),
(3246, 'Syed asif ahamed', '6', '8778710081', '', 'Aashifahamed3013@gmail.com', '1997-10-30', 23, '2', '2', 'Dhilshat begum', 'Business', 30000.00, 1, 15000.00, 18000.00, 'Perambur venus', 'Perambur venus', '2102100003', '1', '2', 'upload_files/candidate_tracker/58514516308_latest resume asif.pdf', NULL, NULL, '2021-02-10', 0, '', '3', '8', '2021-02-15', 189480.00, '', '5', '1970-01-01', '1', 'CTC 15790', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 11:03:05', 60, '2021-02-11 06:41:10', 0, NULL, 1),
(3247, 'deepak f', '5', '8951573450', '', 'deepak98807@gmail.com', '1997-05-09', 23, '1', '2', 'paulina', 'house wife', 20000.00, 1, 0.00, 20000.00, 'near panchayath office basavannapura', 'near panchayath office basavannapura', '2102100004', '', '1', 'upload_files/candidate_tracker/80573659664_deepak', NULL, NULL, '2021-02-10', 0, '55599', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will not suit for our process', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-10 11:30:57', 60, '2021-02-10 06:55:17', 0, NULL, 1),
(3248, 'Mohammed zulwaqar', '5', '9597762115', '8667842656', 'mdzulwaqar@gmail.com', '1996-06-19', 24, '2', '2', 'Zainudeen', 'Business', 30000.00, 1, 14000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2102100005', '1', '2', 'upload_files/candidate_tracker/80691642066_ZUL_WAQAR my new resume.docx', NULL, NULL, '2021-02-10', 0, '', '3', '8', '2021-02-17', 216000.00, '', '3', '2021-02-22', '1', '18K CTC with PF PT Deductions for Shanmugam Team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:00:45', 60, '2021-03-05 11:46:07', 0, NULL, 1),
(3249, 'Vignesh', '6', '7904497217', '9790919347', 'Vigneshsep18nivin@gmail.com', '1999-09-18', 21, '2', '2', 'K.vijayakumar', 'Security', 100000.00, 1, 0.00, 13000.00, 'Palakkad', 'Thiruvencheri', '2102100006', '1', '1', 'upload_files/candidate_tracker/89134837053_vignesh current resume.docx', NULL, NULL, '2021-02-10', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'stammering can not speak continuously', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:01:13', 50, '2021-02-10 12:39:59', 0, NULL, 1),
(3250, 'Anish', '4', '9080758184', '', 'aareasanish9080@gmail.com', '1999-09-27', 21, '2', '2', 'Farookbasha', 'Self worker', 16000.00, 2, 0.00, 16000.00, '63,Darga street,big kanchipuram', '32, kizhkattalai, thambaram', '2102100007', '1', '1', 'upload_files/candidate_tracker/62487772548_Anish F Resume.pdf', NULL, NULL, '2021-02-10', 0, '', '3', '60', '2021-02-15', 126600.00, '', '3', '2021-02-16', '2', 'Candidate Shortlisted for Priyanka Jeni,CTC 10550', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:29:25', 60, '2021-03-05 11:45:26', 0, NULL, 1),
(3251, '', '0', '7385332903', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102100008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-10 12:36:06', 0, NULL, 0, NULL, 1),
(3252, 'V.arasu', '6', '8870938956', '9080758184', 'arasujesus01@gmail.com', '1999-06-14', 21, '2', '2', 'K.varadhan', 'Self worker', 17000.00, 1, 0.00, 16000.00, '36.dhamalvar street.kanchipuram', '32.kizhkattalai, thambaram', '2102100009', '1', '1', 'upload_files/candidate_tracker/14829117874_ARASU RESUME.pdf', NULL, NULL, '2021-02-10', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '2', 'Candidate Selected for Guru Team, CTC 13000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:39:34', 60, '2021-02-12 04:23:11', 0, NULL, 1),
(3253, 'Ajith. N', '6', '8939323749', '9092148044', 'davidaji143@gmail.com', '1998-11-20', 22, '2', '2', 'Kamala', 'House wife', 8500.00, 3, 15000.00, 22000.00, 'Chennai, Velachery', 'Velachery', '2102100010', '1', '2', 'upload_files/candidate_tracker/49476964208_Ajith N_Resume Updated-1.pdf', NULL, NULL, '2021-02-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-10 12:48:36', 1, '2021-02-10 01:06:50', 0, NULL, 1),
(3254, 'Vignesh.R', '6', '8220533127', '', 'Ramu.vignesh97@gmail.com', '1997-04-18', 23, '2', '2', 'Ramu.selvi', 'Sales', 13000.00, 1, 15000.00, 17000.00, 'Tambaram sanatorium', 'Tambaram sanatorium', '2102100011', '1', '2', 'upload_files/candidate_tracker/60271514233_resume-1.pdf', NULL, NULL, '2021-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-02-10 01:12:32', 1, '2021-02-10 02:41:54', 0, NULL, 1),
(3255, 'Lokesh', '5', '7358405797', '', 'ganigalokesh4@gmail.com', '1994-07-04', 26, '2', '2', 'Prabhakar G', 'Retired', 30000.00, 1, 16500.00, 20000.00, 'Chennai', 'Chennai', '2102100012', '1', '2', 'upload_files/candidate_tracker/47511900650_Lokesh Resume updated.docx', NULL, NULL, '2021-02-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Left without attending', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-10 01:38:17', 60, '2021-02-10 06:57:35', 0, NULL, 1),
(3256, '', '0', '8189894750', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102100013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-10 02:52:52', 0, NULL, 0, NULL, 1),
(3257, '', '0', '9566050010', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102100014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-10 05:47:14', 0, NULL, 0, NULL, 1),
(3258, 'SURENDER D.R', '6', '9600259429', '9500542705', 'suresharmi31@gmail.com', '1994-04-19', 26, '2', '2', 'RAVI D', 'BHEL Technician - retired', 20000.00, 1, 14000.00, 20000.00, '31-5A-1, Balaji Nagar, coimbatore-20', '31-5A-1, Balaji Nagar, coimbatore-20', '2102110001', '1', '2', 'upload_files/candidate_tracker/18921469616_Resume accounts.docx', NULL, NULL, '2021-02-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not fit into Sales.Not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-11 10:08:19', 60, '2021-02-11 06:56:56', 0, NULL, 1),
(3259, 'Harishma vengat', '4', '7598048655', '9080185836', 'harishmasathish@gmail.com', '1996-10-05', 24, '2', '2', 'Venkatachalapathy.v', 'Mechanic', 30000.00, 1, 280000.00, 300000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2102110002', '1', '2', 'upload_files/candidate_tracker/48994626013_resume pdf.pdf', NULL, NULL, '2021-02-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not Fit and sustain for our sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 11:58:27', 50, '2021-02-12 10:52:47', 0, NULL, 1),
(3260, '', '0', '9003995514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102110003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-11 12:12:17', 0, NULL, 0, NULL, 1),
(3261, 'Shashank shahi', '5', '9319414799', '', 'shashank_94@outlook.com', '1994-12-28', 26, '2', '2', 'Chandra Shekhar shahi', 'Business', 200000.00, 3, 13750.00, 20000.00, '45-f singhariya kunraghat Gorakhpur 273008', 'Spice garden ACES Layout marathalli 560037', '2102110004', '1', '2', 'upload_files/candidate_tracker/7106776439_ShashankshahiCV.pdf', NULL, NULL, '2021-02-11', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Expectation is very high and seems not to be genuine', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-11 12:15:27', 50, '2021-02-11 04:32:49', 0, NULL, 1),
(3262, 'MOHIT KRISHNA S S', '2', '9940420670', '', 'mohitkrishna.s.s12@gmail.com', '2000-05-12', 20, '2', '2', 'S SEKAR', 'TNHB - Bill Collector (retired)', 20000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2102110005', '1', '1', 'upload_files/candidate_tracker/35979498185_Mohit_resume-jan.docx', NULL, NULL, '2021-02-13', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude not good. ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 12:34:41', 50, '2021-02-13 11:52:22', 0, NULL, 1),
(3263, '', '0', '7305601796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102110006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-11 01:53:15', 0, NULL, 0, NULL, 1),
(3264, 'Ramki S', '5', '8056137418', '8778021601', 'ramki1027@gmail.com', '1993-04-19', 27, '2', '2', 'Sivaji', 'Salaried', 60000.00, 1, 22000.00, 32000.00, 'Vellanur', 'Vellanur', '2102110007', '1', '2', 'upload_files/candidate_tracker/30739807645_ramki resume.docx', NULL, NULL, '2021-02-11', 30, '', '5', '29', NULL, 0.00, '', '0', NULL, '1', 'not fit', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 02:14:27', 1, '2021-02-11 02:18:33', 0, NULL, 1),
(3265, 'Tamizazagan.R.ak', '6', '9791036472', '', 'tamilsaravanan699@gmail.com', '2000-09-30', 20, '2', '2', 'Kathiravan.R', 'Shopkeeper', 25000.00, 1, 12000.00, 18000.00, 'Chennai', 'Chennai', '2102110008', '1', '2', 'upload_files/candidate_tracker/24405556081_TAMIZAZAGAN.R.K.docx', NULL, NULL, '2021-02-22', 30, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not handle pressure', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 03:30:43', 50, '2021-02-22 10:29:38', 0, NULL, 1),
(3266, 'Arivu D', '5', '8667547854', '8526615185', 'Arivushyam@gmail.com', '1994-03-27', 26, '2', '2', 'Duraisamy M', 'controler', 25000.00, 2, 17500.00, 23000.00, 'kallakurichi', 'velachery', '2102110009', '1', '2', 'upload_files/candidate_tracker/69732678341_1601133854928Resume_Arivu.docx', NULL, NULL, '2021-02-12', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 03:53:23', 50, '2021-02-12 05:21:32', 0, NULL, 1),
(3267, 'Jagan.j', '6', '8939176733', '', 'jaganjaka1998@gmail.com', '1998-09-03', 22, '2', '2', 'Jeeva', 'Work is workship', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102110010', '1', '1', 'upload_files/candidate_tracker/59669950026_RESUME FORMAT 2 PAGE JAGAN.docx', NULL, NULL, '2021-02-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 03:56:07', 50, '2021-02-12 10:34:43', 0, NULL, 1),
(3268, 'Venkatesh S', '2', '8610569994', '9095558896', 'sr.venkatesh1324@gmail.com', '1996-11-10', 24, '2', '2', 'Sripriya', 'Housewife', 2.40, 0, 2.40, 4.50, '35/A2 vakkil nagarajan street, udumalpet 642126', '7/1f ceebros Park, Valasaravakkam, Chennai-87', '2102110011', '1', '2', 'upload_files/candidate_tracker/7946174159_Venkatesh S.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He dont have that much knowledge for what he is expected. ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 05:54:29', 50, '2021-02-16 11:58:25', 0, NULL, 1),
(3269, 'Seshambal R', '20', '9940577418', '', 'seshambalp@gmail.com', '1974-12-20', 46, '2', '2', 'not applicable', 'team leader', 28000.00, 1, 28000.00, 30000.00, 'Chennai', 'Chennai', '2102110012', '1', '2', 'upload_files/candidate_tracker/99478051161_Vidhya_2021.doc', NULL, NULL, '2021-02-12', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Relevant Exp in Sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-11 06:00:29', 1, '2021-02-11 06:51:48', 0, NULL, 1),
(3270, 'Sriram', '17', '9444087925', '', 'mvsriram11@yahoo.co.in', '1979-05-10', 41, '2', '2', 'Vasudevan', 'Late', 40000.00, 2, 360000.00, 480000.00, 'Chennai', 'Chennai', '2102110013', '1', '2', 'upload_files/candidate_tracker/93268896396_Sreeram21.doc', NULL, NULL, '2021-02-13', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Relevant Exp,Will not fit for our expectations', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 06:28:17', 1, '2021-02-11 09:03:32', 0, NULL, 1),
(3271, 'vibin p', '2', '9715657345', '6381558417', 'vibinparthiban1997@gmail.com', '1997-09-22', 23, '2', '2', 'parthiban a', 'agriculture', 40000.00, 1, 15000.00, 35000.00, 'uthamapalayam theni district', 'adambakkam chennai', '2102110014', '1', '2', 'upload_files/candidate_tracker/24317907854_vibinResume.pdf', NULL, NULL, '2021-02-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-23', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 07:26:40', 50, '2021-02-19 11:32:51', 0, NULL, 1),
(3272, 'PASUPATHI G', '2', '9524550148', '6380697669', 'gpasupathibe@gmail.com', '1998-07-05', 22, '2', '2', 'Gunasekaran', 'web Developer', 40000.00, 1, 25000.00, 40000.00, 'Trichy', 'Chennai', '2102110015', '1', '2', 'upload_files/candidate_tracker/23072470391_Pasupathi g.docx', NULL, NULL, '2021-02-13', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-13', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-11 11:03:24', 50, '2021-02-13 10:11:57', 0, NULL, 1),
(3273, 'Priyanka S', '4', '9894922703', '9300016733', 'Sivapriyanka29@gmail.com', '1998-06-08', 22, '1', '2', 'Siva', 'Formar', 15000.00, 1, 15000.00, 18000.00, 'Nattarampalli', 'Guindy', '2102120001', '', '2', 'upload_files/candidate_tracker/71267178817_CamScanner 02-12-2021 11.21.34_1.pdf', NULL, NULL, '2021-02-12', 0, 'P1070', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Relevant Exp, Expectation is high ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-12 11:02:23', 50, '2021-02-12 12:19:20', 0, NULL, 1),
(3274, 'A.V. KIRAN KUMAR', '6', '8838199153', '7305663807', 'kiranvicky73@gmail.com', '1996-06-16', 24, '2', '2', 'K.ANBARASU', 'Retired telecom mechanic', 300000.00, 1, 0.00, 10000.00, 'Ambattur', 'Ambattur', '2102120002', '1', '1', 'upload_files/candidate_tracker/54757794683_Kumar.docx', NULL, NULL, '2021-02-12', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'HE IS INTREST TELECALLNG MEAN ADMIN', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 11:35:57', 50, '2021-02-12 12:01:10', 0, NULL, 1),
(3275, 'Karthikeyan S', '17', '9600962692', '7338959778', 'kartikshanmenaofficial@gmail.com', '1991-09-30', 29, '2', '1', 'Devipriya', 'Salaried', 40.00, 0, 550000.00, 550000.00, 'Tanjor e', 'Chennai', '2102120003', '1', '2', 'upload_files/candidate_tracker/53415048492_KARTIK RESUME (1).docx', NULL, NULL, '2021-02-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good No Relevant Insurance Exp, High CTC Expectation', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 11:41:28', 50, '2021-02-12 11:59:56', 0, NULL, 1),
(3276, 'Prem Kumar s', '16', '9952991057', '', 'Fiatne118@gmail.com', '1989-04-01', 31, '2', '1', 'Kavitha N', 'Sale consultant', 12000.00, 0, 13500.00, 15000.00, 'Guindy', 'Guindy', '2102120004', '1', '2', 'upload_files/candidate_tracker/21336317848_Resume of s premkumar.docx', NULL, NULL, '2021-02-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will Not Fit for MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 11:43:11', 1, '2021-02-12 11:56:39', 0, NULL, 1),
(3277, 'Prakash I', '16', '9677120153', '', 'Prakashkariz@gmail.com', '1992-10-04', 28, '2', '1', 'Sharmila', 'House wife', 12000.00, 1, 14000.00, 15000.00, 'Saidapet', 'Saidapet', '2102120005', '1', '2', 'upload_files/candidate_tracker/9534299614_Prakash_Resume.docx', NULL, NULL, '2021-02-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for MIS ', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 11:44:51', 1, '2021-02-12 12:13:55', 0, NULL, 1),
(3278, '', '0', '8838299153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102120006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-12 11:54:05', 0, NULL, 0, NULL, 1),
(3279, 'Karthikeyan', '17', '7550048868', '', 'Karthik.300916@gmail.com', '1982-11-29', 38, '2', '1', 'Poonam Hiralal nijamkar', 'Freelancer makeup artist', 100000.00, 1, 625000.00, 800000.00, 'Chennai', 'Chembarabakkam', '2102120007', '1', '2', 'upload_files/candidate_tracker/1851233037_CV Karthik latest 2021.doc', NULL, NULL, '2021-02-12', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is a decent candidate but for a startup channel he is not adequate. Can keep his resume for a backup for future additon for additional manager', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 12:38:12', 50, '2021-02-12 01:04:38', 0, NULL, 1),
(3280, 'elsiya.j', '20', '6383076460', '9500133826', 'elsiyajoseph0505@gmail.com', '2000-05-05', 20, '2', '2', 'joseph.s', 'fresher', 12000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2102120008', '1', '1', 'upload_files/candidate_tracker/95824965109_ELSIYA.docx', NULL, NULL, '2021-02-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 12:55:31', 50, '2021-02-13 04:27:14', 0, NULL, 1),
(3281, 'anirudh', '5', '8075310542', '', 'anirudhkg.pro@gmail.com', '1998-04-04', 22, '2', '2', 'guru', 'sales', 500000.00, 0, 270000.00, 360000.00, 'bangalore', 'bangalore', '2102120009', '1', '2', 'upload_files/candidate_tracker/10860750790_null.pdf', NULL, NULL, '2021-02-12', 2, '', '5', '39', NULL, 0.00, '', '0', NULL, '1', 'he will not handle pressure and he will not sustain', '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-12 01:31:53', 1, '2021-02-12 01:51:56', 0, NULL, 1),
(3282, 'Louisa Merlin.L', '20', '9176275116', '9754423133', 'mathiyasmerlin72@gmail.com', '2000-06-28', 20, '2', '2', 'Louis mathiyas', 'No occupation', 8000.00, 0, 0.00, 13000.00, 'No.2/22 Dr.Ambetkar college road gramma ayyavu st', 'Vyasarpadi chennai_39', '2102120010', '1', '1', 'upload_files/candidate_tracker/11771165741_LOUSIA RESUME.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected by Keerthika, Will not Sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 05:42:44', 50, '2021-02-13 05:19:56', 0, NULL, 1),
(3283, 'V.praveen kumar', '4', '7904769791', '', 'Praveenkumar.v09062000@gmail.com', '2000-06-09', 20, '2', '2', 'S.vijayakumar', 'Private company', 25000.00, 1, 0.00, 13000.00, 'Chennai,villivakkam', 'Chennai,villivakkam', '2102120011', '1', '1', 'upload_files/candidate_tracker/3053481800_my resume.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Much communicative', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 05:42:50', 50, '2021-02-13 10:39:44', 0, NULL, 1),
(3284, '', '0', '9865053328', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102120012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-12 05:45:51', 0, NULL, 0, NULL, 1),
(3285, '', '0', '9025859332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102120013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-12 05:46:32', 0, NULL, 0, NULL, 1),
(3286, 'M. Charumathi', '4', '9940483358', '9941697893', 'charumathi358@gmail.com', '1999-12-23', 21, '2', '2', 'V.K.Murugesan(Father)', 'Salesman', 120000.00, 3, 0.00, 12000.00, 'Ambattur', 'Ambattur,oragadam', '2102120014', '1', '1', 'upload_files/candidate_tracker/14643422650_Charu resume (1).pdf', NULL, NULL, '2021-02-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 05:56:09', 50, '2021-02-13 04:28:15', 0, NULL, 1),
(3287, 'Ramesh G', '13', '9003854057', '', 'rameshshiv21@gmail.com', '1994-08-18', 26, '2', '2', 'Gunasekaran R', 'Retired electrician pvt company', 25000.00, 3, 16500.00, 25000.00, 'Madurai', 'Chennai', '2102120015', '1', '2', 'upload_files/candidate_tracker/97550791520_Ramesh_Resume.pdf', NULL, NULL, '2021-02-24', 3, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed perfectly.', '2', '2', '', '1', '1', '', '2', '2021-02-25', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-12 06:03:48', 50, '2021-02-24 05:59:34', 0, NULL, 1),
(3288, 'Logamalya. S', '4', '7397441064', '7305517211', 'Lokiloka278@gmail.com', '2000-05-04', 20, '2', '2', 'C.suresh', 'Mechanical engineer', 80000.00, 1, 0.00, 15000.00, '51 ponan kinaru street villivakkam chennai49', '51ponan kinaru street villivakkam chennai49', '2102120016', '1', '1', 'upload_files/candidate_tracker/93909590713_1613038568107_LOGAMALAYA.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not Fit our CRM Sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:04:39', 50, '2021-02-13 10:40:35', 0, NULL, 1),
(3289, 'sadam', '2', '8778306506', '9940296046', 'sadamshoukath@gmail.com', '1999-05-18', 21, '2', '2', 'shoukath ali', 'real estate', 70000.00, 2, 40000.00, 55000.00, 'Chennai', 'Chennai', '2102120017', '1', '2', 'upload_files/candidate_tracker/23596989612_Sadam\'s Resume.pdf', NULL, NULL, '2021-02-13', 25, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He is not suitable for us.', '2', '2', '0', '1', '1', '0', '2', '2021-02-15', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-12 06:22:56', 1, '2021-02-12 07:25:52', 0, NULL, 1),
(3290, 'MAHARAJAN E', '4', '9840645754', '', 'maharajan4822@gmail.com', '1998-11-14', 22, '2', '2', 'ESAKKIMUTHU m', 'OWN TEA SHOP', 15000.00, 2, 0.00, 13000.00, 'THIRUVERKADU', 'THIRUVERKADU', '2102120018', '1', '1', 'upload_files/candidate_tracker/7942415452_Maharajan Resume2.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'confident level very low so not suitable for telesales', '1', '2', '', '1', '1', '', '2', '2021-02-15', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:23:08', 50, '2021-02-15 04:17:33', 0, NULL, 1),
(3291, 'V.Iswarya', '20', '6382842590', '9940202977', 'Ishuvijayan@gmail.com', '2000-05-08', 20, '2', '2', 'A.Vijayan', 'Daily wages', 7000.00, 2, 0.00, 12000.00, 'Chennai', 'chennai', '2102120019', '1', '1', 'upload_files/candidate_tracker/46536680149_V. Iswarya.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Much Communicative', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:25:27', 1, '2021-02-12 07:44:15', 0, NULL, 1),
(3292, '', '0', '9884284233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102120020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-12 06:27:25', 0, NULL, 0, NULL, 1),
(3293, 'Francis Jeraldina Sowmiya.J', '20', '7305235868', '9150873350', 'francisjeraldinasowmiyaj@gmail.com', '2000-10-25', 20, '2', '2', 'Joseph Rajan.M', 'Provision store', 7000.00, 1, 0.00, 12000.00, 'No:47 Chinna Mathur Salai,Manali, Chennai-68', 'No:47Chinna Mathur Salai,Manali,chennai-68', '2102120021', '1', '1', 'upload_files/candidate_tracker/75984142325_sowmiya resume.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location Constraint', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:31:36', 1, '2021-02-12 06:43:25', 0, NULL, 1),
(3294, 'Ajay', '20', '6369817330', '', 'ajayaudacious@gmail.com', '1999-06-10', 21, '2', '2', 'A Kumaran', 'Astrologer', 25000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2102120022', '1', '1', 'upload_files/candidate_tracker/54452060157_Ajay resume.docx', NULL, '1', '2021-07-08', 0, '', '3', '60', '2021-07-12', 168000.00, '', '3', '2021-07-26', '2', 'Selected in Feb for Thiyagu team we offered but the candidate not joined.He came for the interview again and got selected for Syed Team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-12 06:32:50', 60, '2021-07-08 06:28:35', 0, NULL, 1),
(3295, 'Geetha D', '4', '8825629066', '9003222810', 'geetharaj297@gmail.com', '1999-07-29', 21, '2', '2', 'N. C. Dilliraj', 'Car painter', 100000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2102130001', '1', '1', 'upload_files/candidate_tracker/21499646871_geetha resume-1.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '1', '2', '', '1', '1', '', '2', '2021-03-26', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-13 10:38:05', 7, '2021-03-25 10:56:50', 0, NULL, 1),
(3296, 'Yasmin.I', '16', '6374332293', '', 'yasminismailbasha413@gmail.com', '2006-02-13', 15, '2', '2', 'Ismail Basha', 'Ac mechanic', 30000.00, 1, 10000.00, 15000.00, 'Saidapet', 'Saidapet', '2102130002', '1', '2', 'upload_files/candidate_tracker/43412104331_YASMIN-1.doc', NULL, NULL, '2021-02-13', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not fir for MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-13 10:55:30', 1, '2021-02-13 11:08:04', 0, NULL, 1),
(3297, 'Karthikeyan.S', '16', '7299286914', '9710152339', 'karthikeyan.yogesh@gmail.com', '1995-05-16', 25, '3', '2', 'Sakthivel.G', 'Electrician', 15000.00, 2, 13000.00, 16000.00, 'Chennai', 'Chennai', '2102130003', '', '2', 'upload_files/candidate_tracker/18371846607_Karthikeyan update resume.docx', NULL, NULL, '2021-02-13', 3, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Not fir for MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-13 11:44:59', 1, '2021-02-13 11:50:14', 0, NULL, 1),
(3298, 'Dinesh.R', '16', '8925243868', '7358496097', 'd2dinu2@gmail.com', '1987-07-02', 33, '4', '1', 'Devi.R', 'Housewife', 25000.00, 0, 18000.00, 18000.00, 'No.7 Nehru street, Karapakkam, chennai-600097', 'Near Tecci Park', '2102130004', '', '2', 'upload_files/candidate_tracker/27157188022_RESUME D.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fir for MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-13 11:47:56', 50, '2021-02-13 12:25:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3299, '', '0', '9925859332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102130005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-13 12:05:22', 0, NULL, 0, NULL, 1),
(3300, 'tamilselvan l', '16', '8124750486', '', 'tamil.ima.na@gmail.com', '1994-07-10', 26, '2', '2', 'lakshmanan', 'weaver', 14000.00, 1, 0.00, 20000.00, 'virudhunagar', 'velacherry', '2102130006', '1', '2', 'upload_files/candidate_tracker/41557873126_Tamilselvan .L - Resume.pdf', NULL, NULL, '2021-02-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Exp in pPT,Not much exp in MIS Activities', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-13 01:23:03', 50, '2021-02-13 02:28:58', 0, NULL, 1),
(3301, 'Danussh P', '2', '8608765113', '', 'pdanussh1997@gmail.com', '1997-06-22', 23, '2', '2', 'V Parthiban', 'Govt job', 70000.00, 1, 338000.00, 600000.00, 'Chennai', 'Chennai', '2102130007', '1', '2', 'upload_files/candidate_tracker/48495756072_DANUSSH_CV.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Could Not Meet Our Expectations', '2', '2', '0', '1', '1', '0', '2', '2021-02-18', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-13 02:44:36', 1, '2021-02-13 09:48:33', 0, NULL, 1),
(3302, '', '0', '8248690919', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102130008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-13 03:40:18', 0, NULL, 0, NULL, 1),
(3303, 'Pramela devi', '3', '8883239526', '', 'pramesanjeevi97@gmail.com', '1997-10-12', 23, '2', '2', 'sanjeevi', 'driver', 20000.00, 1, 10000.00, 15000.00, 'Trichy', 'velacheri', '2102130009', '1', '2', 'upload_files/candidate_tracker/86650205709_Prame-6-converted-converted.pdf', NULL, NULL, '2021-02-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-13 04:02:36', 1, '2021-02-13 04:09:47', 0, NULL, 1),
(3304, 'vaidhyanathan k s', '2', '9790922798', '7358206949', 'vaidyanathan.ks60@gmail.com', '1998-02-08', 23, '2', '2', 'kalpana s', 'research income', 1.00, 0, 264000.00, 360000.00, 'chennai', 'chennai', '2102130010', '1', '2', 'upload_files/candidate_tracker/42607661636_vaidhyanathan_ks.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed.', '2', '2', '', '1', '1', '', '2', '2021-02-18', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-13 04:21:37', 50, '2021-02-16 10:11:01', 0, NULL, 1),
(3305, '', '0', '8763167050', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102130011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-13 04:52:05', 0, NULL, 0, NULL, 1),
(3306, 'harishbabu palani', '16', '8667393913', '', 'babuharish527@gmail.com', '1994-12-21', 26, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102140001', '3', '2', 'upload_files/candidate_tracker/39421638766_Harish.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'No relevant exp', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-14 11:12:56', 1, '2021-02-14 11:16:09', 0, NULL, 1),
(3307, 'u gunasekar', '5', '9171818636', '', 'gunamech5196@gmail.com', '1996-01-05', 25, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102140002', '3', '2', 'upload_files/candidate_tracker/91878316897_guna resume new 2020.pdf', NULL, NULL, '2021-02-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-14 01:13:41', 50, '2021-02-15 04:27:14', 0, NULL, 1),
(3308, 'c dinesh', '5', '9150344338', '', 'dineshchals1998@gmail.com', '1995-05-16', 25, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102140003', '3', '2', 'upload_files/candidate_tracker/54607245421_DINESH RESUME.docx', NULL, NULL, '2021-02-15', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication and proper Pronunciation will not suite for RM', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-14 01:19:07', 50, '2021-02-15 03:51:38', 0, NULL, 1),
(3309, 'raviji r', '5', '8870634918', '', 'miltonveera3@gmail.com', '1991-12-04', 29, '2', '2', 'none', 'none', 20000.00, 0, 20000.00, 25000.00, 'chennai', 'chennai', '2102140004', '3', '2', 'upload_files/candidate_tracker/86417475434_Raviji.docx', NULL, NULL, '2021-02-15', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-14 08:34:48', 50, '2021-02-15 04:32:11', 0, NULL, 1),
(3310, '', '0', '9840308646', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-15 08:05:15', 0, NULL, 0, NULL, 1),
(3311, 'VIGNESH L', '25', '8122616120', '7395951271', 'vickey2502@gmail.com', '1996-02-25', 24, '2', '2', 'KARPAGAM', 'HOUSE WIFE', 30000.00, 1, 18000.00, 18000.00, 'CHENNAI', 'CHENNAI', '2102150002', '1', '2', 'upload_files/candidate_tracker/8643015244_25_VIGNESH L resume update2.2.docx', NULL, NULL, '2021-02-15', 15, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Can not handle pressure will not sustain', '8', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 10:08:57', 50, '2021-02-15 01:04:17', 0, NULL, 1),
(3312, 'sonalkumari jain', '5', '8148513314', '8825415171', 'sonaldinesh96@gmail.com', '1996-02-15', 25, '2', '2', 'dinesh kumar', 'self employed', 60000.00, 2, 360000.00, 450000.00, 'chennai', 'bangalore', '2102150003', '1', '2', 'upload_files/candidate_tracker/42555342230_SonalJ.pdf', NULL, NULL, '2021-02-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expected 4.5 LPA We offer 4 LPA,but she got an offer for 4.5 LPA', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-15 11:21:18', 50, '2021-02-15 11:46:17', 0, NULL, 1),
(3313, 'Mansurali s', '6', '7904234816', '9025006241', 'Mansurali2403@gmail.com', '1997-03-24', 23, '1', '2', 'Shanbasha s , mumtaj s', 'Cooli', 12000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2102150004', '', '1', 'upload_files/candidate_tracker/4120027521_MANSUR.docx', NULL, NULL, '2021-02-15', 0, 'P0165', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not at all speaking', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 11:22:42', 50, '2021-02-15 12:18:22', 0, NULL, 1),
(3314, 'santhana raj', '6', '9025006241', '7904234816', 'danidani6121@gmail.com', '1997-09-06', 23, '1', '2', 'Sagayaraj, A ,Sagayamary, s', 'Cooli', 12000.00, 0, 0.00, 13000.00, 'Roypuram', 'Roypuram', '2102150005', '', '1', 'upload_files/candidate_tracker/31629174820_RESUME Santhanara.docx', NULL, NULL, '2021-02-15', 0, 'P0165', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Not at all speaking', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 11:23:59', 1, '2021-02-15 12:03:30', 0, NULL, 1),
(3315, 'Rajkumar bharathi G', '23', '8248706626', '', 'Rajfriend582@gmail.com', '1994-02-02', 27, '1', '2', 'Selvi', 'House wife', 25000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2102150006', '', '1', 'upload_files/candidate_tracker/29947770706_1611726297750_Raj Resume Jan 2021.pdf', NULL, NULL, '2021-02-15', 0, '66680', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-16', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 11:35:01', 50, '2021-02-15 11:48:13', 0, NULL, 1),
(3316, 'Amos vijay', '6', '9361108775', '9444255955', 'amoskennedy04@gmail.com', '1999-07-04', 21, '2', '2', 'Mother P.K.Kavitha', 'Teacher', 13000.00, 2, 0.00, 15000.00, 'No 21 Yacob garden street patalam Chennai 12', 'No 21 Yacob Garden Street Patalam Chennai 12', '2102150007', '1', '1', 'upload_files/candidate_tracker/10691465685_RESUME-AMOS VIJAY CAFS.pdf', NULL, NULL, '2021-02-15', 0, '', '3', '60', '1970-01-01', 164220.00, '', '2', '1970-01-01', '1', 'CTC 13685 xxamp TH 13K', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-15 01:08:13', 60, '2021-02-16 05:40:32', 0, NULL, 1),
(3317, 'Celine daffney pooja', '4', '6382069398', '6381616232', 'celinedaffneypooja@gmail.com', '1999-12-02', 21, '1', '2', 'Ms . Angeline', 'CRM in infrastructure', 25000.00, 0, 0.00, 20000.00, '40/1 Subramani street purasaiwalkam Chennai 600007', '40/1 Subramani Street Purasaiwalkam Chennai 600007', '2102150008', '', '1', 'upload_files/candidate_tracker/82937143641_Celine Daffeny pooja. RESUME .pdf', NULL, NULL, '2021-02-15', 0, 'Jobs', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not bold rejected by Keerthi', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 01:14:04', 1, '2021-02-15 01:44:01', 0, NULL, 1),
(3318, 'Sam sundar.B', '6', '6382620454', '9514986432', 'sundarsam81@gmail.com', '1994-09-06', 26, '1', '2', 'Santhakumari', 'Housewife', 25000.00, 1, 18000.00, 23000.00, 'Chennai', 'Chennai', '2102150009', '', '2', 'upload_files/candidate_tracker/90102989819_samDocument..3(6).pdf', NULL, NULL, '2021-02-15', 15, 'Jobs', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for any profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-15 01:16:49', 60, '2021-02-26 05:27:10', 0, NULL, 1),
(3319, 'suhail muhammed', '2', '9384187400', '', 'ssuhail425@gmail.com', '1997-08-08', 23, '2', '2', 'mahaboob subhan', 'retired', 24500.00, 1, 24500.00, 45000.00, 'chennai', 'chennai', '2102150010', '1', '2', 'upload_files/candidate_tracker/29728328738_Resume-May-2019.pdf', NULL, NULL, '2021-02-20', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for agreement. High CTC expectation', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 04:47:21', 1, '2021-02-15 04:53:30', 0, NULL, 1),
(3320, 'Ajithanathan', '6', '9791159213', '9790836876', 'ajitht23463@gmail.com', '1996-07-15', 24, '2', '2', 'Chandranathan', 'Brother', 50000.00, 3, 20000.00, 25000.00, 'Chennai', 'Chennai', '2102150011', '1', '2', 'upload_files/candidate_tracker/33683146559_Resume - CHANDRANATHAN 2017. (1).docx', NULL, NULL, '2021-02-16', 1, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'From collection BG not interested in sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 04:55:28', 50, '2021-02-16 12:01:43', 0, NULL, 1),
(3321, 'vigneshwaran', '2', '9952058763', '9080481039', 'vignesh22101994@gmail.com', '1994-10-23', 26, '2', '2', 'ravi', 'farmer', 45000.00, 1, 360000.00, 460000.00, 'chennai', 'chennai', '2102150012', '1', '2', 'upload_files/candidate_tracker/24991700994_Vigneshwaran R.docx', NULL, NULL, '2021-02-20', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 04:58:09', 50, '2021-02-20 05:53:04', 0, NULL, 1),
(3322, 'Shanmugam', '3', '8688837649', '', 'mnshanmugam143@gmail.com', '1997-01-03', 24, '2', '2', 'nagalingam', 'weaver', 15000.00, 2, 0.00, 1.30, 'Tirupati', 'Tirupati', '2102150013', '1', '1', 'upload_files/candidate_tracker/72423768788_web Development resume.docx', NULL, '3', '2021-07-15', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Candidate Need To Be Scheduled For F2F,2nd Round Of Discussion. Communication Average. Based On F2F Oly Can Be Decided On The Position / Candidate attended interview and got selected for Intern cum employment', '2', '2', '0', '1', '1', '0', '2', '2021-07-26', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 05:03:11', 1, '2021-07-14 11:56:10', 0, NULL, 1),
(3323, 'B. Sumathi', '4', '7904300539', '7358629116', 'bsumathi2609@gmail.com', '1999-06-09', 21, '2', '2', 'Baskar', 'Driver', 12000.00, 1, 12500.00, 12000.00, 'Avadi', 'Avadi', '2102150014', '1', '2', 'upload_files/candidate_tracker/50253127522_Sumathi.B.docx', NULL, NULL, '2021-02-16', 1, '', '3', '59', '1970-01-01', 138960.00, '', '3', '2021-04-14', '2', '11k th and 11580ctc confirmed by arun. for muthu team', '1', '2', '1', '1', '1', '', '2', '2021-02-18', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 05:04:36', 7, '2021-03-09 06:59:33', 0, NULL, 1),
(3324, 'G munna', '23', '7395937455', '', 'niyaz.munna09@gmail.com', '1999-04-11', 21, '2', '2', 'Gulab basha', 'Gift Box manufacturers', 20000.00, 2, 15000.00, 20000.00, 'Chenni', 'Chenni', '2102150015', '1', '2', 'upload_files/candidate_tracker/43059212547_Resume-MUNNA.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'not good in basic level. he will not sustain.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 05:39:20', 1, '2021-02-15 07:48:55', 0, NULL, 1),
(3325, 'Divan thangapandian.P', '17', '9962832864', '', 'gooddivan@gmail.com', '1989-06-28', 31, '2', '1', 'Vimala.D', 'House wife', 40.00, 0, 40.00, 50.00, 'Ashok nagar', 'Ashok nagar', '2102150016', '1', '2', 'upload_files/candidate_tracker/50687833231_My Updated resume.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp. Will not fit for our sales profile', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 05:55:51', 50, '2021-02-17 11:40:52', 0, NULL, 1),
(3326, 'Fathima begum.M', '4', '8825702648', '7339227499', 'fathimabegum1802@gmail.com', '1999-02-18', 21, '2', '2', 'K.N.Mohammed moosa', 'Labour', 10000.00, 1, 0.00, 15000.00, 'D/17Dr.Thomas road,T.nagar, Chennai-17', 'D/17Dr.Thomas Road,T.Nagar, Chennai-17', '2102150017', '1', '2', 'upload_files/candidate_tracker/31772549477_1613393831870Resume_M.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication, will not fit for our sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 06:21:58', 50, '2021-02-16 10:12:50', 0, NULL, 1),
(3327, 'Arunkumar S', '13', '8883242522', '8098443092', 'syedarun333@gmail.com', '1997-10-01', 23, '2', '2', 'Selvaraj M', 'Tailor', 15000.00, 1, 15000.00, 18000.00, '1/2/37 2 nd Street Anaikulam, papanasapuram.', 'Medavakkam', '2102150018', '1', '2', 'upload_files/candidate_tracker/71529028676_Share S.Arun kumar RESUME.doc', NULL, NULL, '2021-02-16', 2, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He doesxquott have a knowledge in basics. even he is not answering for a freshers questions', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 06:49:41', 60, '2021-02-16 09:36:43', 0, NULL, 1),
(3328, 'John Joshua', '4', '7358405055', '', 'joshuajohn.johnpaul@gmail.com', '1995-08-27', 25, '2', '2', 'John Paul Magdalene Mary', 'Kodambakkam', 30000.00, 2, 0.00, 13000.00, 'CHENNAI', 'CHENNAI', '2102150019', '1', '1', 'upload_files/candidate_tracker/26815436278_resumejj.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit into Sales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-15 07:01:00', 1, '2021-02-17 10:30:40', 0, NULL, 1),
(3329, 'dineshkumar', '2', '7904793059', '', 'dineshmcait20@gmail.com', '1997-01-13', 24, '2', '2', 'ravichandran', 'farmer', 50000.00, 1, 0.00, 2.00, 'Thanjavur', 'Thanjavur', '2102150020', '1', '1', 'upload_files/candidate_tracker/76112541581_DineshCV.pdf', NULL, NULL, '2021-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-15 07:39:56', 1, '2021-02-15 07:43:09', 0, NULL, 1),
(3330, '', '0', '7550270316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102150021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-15 08:20:15', 0, NULL, 0, NULL, 1),
(3331, '', '0', '9080254093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102160001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-16 12:27:30', 0, NULL, 0, NULL, 1),
(3332, 'BOOPATHI p', '5', '9940852963', '9199950777', 'boopaapu@gmail.com', '1990-07-07', 30, '3', '1', 'Priyadarshini', 'Business', 30000.00, 1, 40000.00, 35000.00, 'Namakkal', 'Chennai', '2102160002', '', '2', 'upload_files/candidate_tracker/13534646017_boopathi word.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '33', NULL, 0.00, '', '0', NULL, '1', 'not sustainity in our system', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-16 10:26:49', 1, '2021-02-16 10:38:19', 0, NULL, 1),
(3333, 'Aravinth A', '5', '9894952324', '9566724934', 'arunaravinth12@gmai', '1994-08-28', 26, '2', '2', 'Arunachalam PL', 'Driver', 30000.00, 1, 25000.00, 30000.00, 'Karur', 'Chennai', '2102160003', '1', '2', 'upload_files/candidate_tracker/45703263283_Aravinth_NewResume.pdf', NULL, NULL, '2021-02-16', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not looking life sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-16 10:55:15', 50, '2021-02-16 11:16:55', 0, NULL, 1),
(3334, 'janani s', '2', '9176833302', '9994913894', 'jananiswami98@gmail.com', '1998-02-21', 22, '2', '2', 'swaminathan r', 'retired', 75000.00, 0, 4.40, 6.60, 'chennai', 'chennai', '2102160004', '1', '2', 'upload_files/candidate_tracker/37881990438_Janani resume-converted.pdf', NULL, NULL, '2021-02-27', 90, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 10:58:01', 1, '2021-02-16 11:18:22', 0, NULL, 1),
(3335, '', '0', '9786810479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102160005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-16 11:01:24', 0, NULL, 0, NULL, 1),
(3336, 'Sanjana Sajeev', '17', '9962264447', '9600619207', 'sanjanasajeev22@gmail.com', '1993-12-22', 27, '2', '1', 'Rahul Ilango', 'Restaurante Owner', 7.00, 3, 420000.00, 550000.00, 'Chennai', 'Chennai', '2102160006', '1', '2', 'upload_files/candidate_tracker/29049432479_SANJANA%20SAJEEV%20CV-Updated.docx', NULL, NULL, '2021-02-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attended final round of discussion with Mahadevan-Axa and got rejected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-16 11:15:25', 50, '2021-02-16 11:40:59', 0, NULL, 1),
(3337, 'NOWREEN', '4', '7010150499', '9500723013', 'nowreenab1995@gmail.com', '1995-02-11', 26, '2', '1', 'Abdul Ansar', 'B. Sc computer science', 12000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2102160007', '1', '2', 'upload_files/candidate_tracker/87502923419_Nowreen- Resume.doc', NULL, NULL, '2021-02-16', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Shortlisted and checked for CRM Appointment Fix - Keerthika team,But rejected ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-16 11:23:37', 1, '2021-02-16 11:33:57', 0, NULL, 1),
(3338, 'Jasmine', '6', '6380562584', '', 'jasminemichelraj@gmail.com', '1998-02-13', 23, '2', '2', 'Michael raj', 'Driver', 15000.00, 2, 12500.00, 15000.00, 'No 149 karkamangalam , pudukkottai', 'No 5,mudhaliyar 2street , saidapet', '2102160008', '1', '2', 'upload_files/candidate_tracker/83751138299_Jasmine resume 2021.pdf', NULL, NULL, '2021-02-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-16 11:25:27', 50, '2021-02-17 05:30:08', 0, NULL, 1),
(3339, '', '0', '9944978734', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102160009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-16 11:30:05', 0, NULL, 0, NULL, 1),
(3340, 'Shabeenabanu', '5', '8344609223', '', 'shabeenasalma1309@gmail.com', '1995-09-13', 25, '1', '1', 'Mohammad ishak', 'Business', 300000.00, 2, 265000.00, 350000.00, 'Thousands light', 'Thousands light', '2102160010', '', '2', 'upload_files/candidate_tracker/18692335021_P1090.pdf', NULL, NULL, '2021-02-16', 0, '0', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate holds an offer with 3.5 LPA and looks for high Pay', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-16 11:44:55', 1, '2021-02-16 11:54:31', 0, NULL, 1),
(3341, '', '0', '9360746624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102160011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-16 03:08:10', 0, NULL, 0, NULL, 1),
(3342, 'Subash p', '6', '9003216937', '8925628675', 'Subashpalani847@gmail.com', '1996-06-06', 24, '2', '2', 'Palani', 'Farmer', 25000.00, 0, 17000.00, 20000.00, 'Chennai', 'Chennai', '2102160012', '1', '2', 'upload_files/candidate_tracker/47330601248_P1090.pdf', NULL, NULL, '2021-02-24', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our sales,sustainability Issue', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-16 03:35:44', 50, '2021-02-24 11:22:34', 0, NULL, 1),
(3343, 's imran basha', '2', '8825901577', '', 'imranbashasid@gmail.com', '1993-12-09', 27, '2', '2', 's siddique basha', 'nil', 25000.00, 3, 0.00, 25000.00, 'Ambur', 'Ambur', '2102160013', '1', '1', 'upload_files/candidate_tracker/25267253079_Resume-4.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Got Another Offer', '2', '2', '', '2', '2', '', '2', '2021-03-15', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 03:38:26', 7, '2021-03-12 10:50:42', 0, NULL, 1),
(3344, 'Gayathri.v', '2', '7780363371', '', 'gayathrisreenivasulu99@gmail.com', '1999-06-05', 21, '2', '2', 'V.Sreenivasulu', 'Employee', 45000.00, 1, 0.00, 23000.00, 'Chennai', 'Kavangarai', '2102160014', '1', '1', 'upload_files/candidate_tracker/99753753267_resume.docx', NULL, NULL, '2021-02-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-19', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 03:39:14', 50, '2021-02-18 10:38:43', 0, NULL, 1),
(3345, 'naveen kumar.s', '2', '9003062561', '', 'naveensri1116@gmail.com', '1998-11-16', 22, '2', '2', 'sridharan', 'electrician', 12000.00, 0, 0.00, 16000.00, 'kelambakkam', 'kelambakkam', '2102160015', '1', '1', 'upload_files/candidate_tracker/17080729089_Interview resume.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'He donxquott have a good knowledge in tech. distance too long. he is from kelambakkam. will not suit for us.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 04:18:47', 1, '2021-02-17 01:38:42', 0, NULL, 1),
(3346, 'Vicky', '4', '8608135097', '9566200637', 'vickyrohit.m@gmail.com', '1995-10-28', 25, '2', '2', 'Gajalakshmi', 'Supervisor', 15000.00, 1, 16000.00, 19000.00, 'Perambur', 'Chennai', '2102160016', '1', '2', 'upload_files/candidate_tracker/90275208514_Vicky[0_0].pdf', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High Expectations', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-16 04:44:54', 50, '2021-02-17 01:20:47', 0, NULL, 1),
(3347, 'Preena Rashmi A', '2', '8438523899', '', 'preenarashmi@gmail.com', '1995-02-20', 25, '2', '2', 'D.Asogan', 'driver', 35000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2102160017', '1', '2', 'upload_files/candidate_tracker/506890301_PRENA RASHMI_A.pdf', NULL, NULL, '2021-02-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not good in technical.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 04:50:44', 50, '2021-02-19 03:11:57', 0, NULL, 1),
(3348, 'Ajaykrishna', '2', '9585165913', '', 'Krishnaajay0729@gmail.com', '1998-07-29', 22, '2', '2', 'Neelagandan M', 'Driver', 40000.00, 1, 300000.00, 350000.00, 'Vellore', 'Chennai', '2102160018', '1', '2', 'upload_files/candidate_tracker/41139613336_ajaykrishna.pdf', NULL, NULL, '2021-03-06', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Recently got Hike and looking for more. Will not sustain for a long, not open for agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 05:43:18', 50, '2021-03-06 01:09:01', 0, NULL, 1),
(3349, 'a p m muruganandam', '1', '9500056740', '9884234725', 'msp8085@gmail.com', '1980-05-12', 40, '2', '1', 'm srilatha', 'senior research analyst', 70000.00, 2, 40000.00, 50000.00, 'chennai', 'chennai', '2102160019', '1', '2', 'upload_files/candidate_tracker/63700538391_MURUGA RESUME.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He already holds agent code for LIC and Star Health.Will hold this profile for future Use', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-16 06:15:18', 1, '2021-02-16 06:54:29', 0, NULL, 1),
(3350, 'Doorafath Mohammed', '16', '9176295137', '', 'Doorahsr@gmail.com', '1993-02-02', 28, '2', '2', 'Mohammed zubaid', 'Driver', 20000.00, 0, 25000.00, 32000.00, 'Veppampattu', 'Veppampattu', '2102160020', '1', '2', 'upload_files/candidate_tracker/89379119769_Doorafath cv.pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 06:15:23', 1, '2021-02-16 06:19:25', 0, NULL, 1),
(3351, 'Mohamed Riyaz R', '2', '8220829517', '', 'mohdriyaz0807@gmail.com', '1997-07-08', 23, '2', '2', 'Raja Mohamed', 'Farmer', 300000.00, 2, 0.00, 350000.00, 'Trichy', 'Trichy', '2102160021', '1', '1', 'upload_files/candidate_tracker/42455219652_MyResume.pdf', NULL, NULL, '2021-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 06:15:35', 1, '2021-02-16 06:19:50', 0, NULL, 1),
(3352, 'Velusamy M', '2', '9159929379', '', 'velusmurugesan@gmail.com', '1995-04-25', 25, '2', '2', 'Murugesan', 'Farmer', 25000.00, 2, 3.50, 5.00, 'Karur', 'Chengalpattu', '2102160022', '1', '2', 'upload_files/candidate_tracker/41703014095_1612077029777Resume_Velusamy.pdf', NULL, NULL, '2021-02-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'could not meet our expectation.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 08:29:52', 60, '2021-02-19 10:11:02', 0, NULL, 1),
(3353, 'Lakshmi Narayanan L', '2', '6380725430', '', 'Sathyanarayanan1124@gmail.com', '1998-06-09', 22, '2', '2', 'Loganathan', 'Supervisor', 40000.00, 0, 375000.00, 650000.00, 'Chennai', 'Chennai', '2102160023', '1', '2', 'upload_files/candidate_tracker/89500736322_LAKSHMI NARAYANAN - RESUME.pdf', NULL, NULL, '2021-02-18', 90, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Notice period too long. He had experience in JAVA only. not in react. rejected by arun hR', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-16 10:42:57', 50, '2021-02-18 12:00:17', 0, NULL, 1),
(3354, 'Mohamed jueil M', '5', '9597224413', '', 'Jueilmohamed@gmail.com', '1996-02-07', 25, '2', '2', 'Ayisha kalina', 'Government teacher', 80000.00, 1, 0.00, 25000.00, 'Tenkasi', 'Tambaram', '2102170001', '1', '2', 'upload_files/candidate_tracker/48360373999_jueil new resume.pdf', NULL, NULL, '2021-02-17', 16022021, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Sales Exp. High CTC Expectation', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 09:31:51', 50, '2021-02-17 05:24:03', 0, NULL, 1),
(3355, 'Prakash S', '16', '8189928743', '', 'Prakashrajs1231@gmail.com', '1996-12-31', 24, '2', '2', 'E S sanker', 'Corporation work', 11000.00, 1, 0.00, 18000.00, '7/5, Ambattur Estate, Chennai - 600098', '2A, Pillayar Koil str, keelkattalai, chen - 600117', '2102170002', '1', '1', 'upload_files/candidate_tracker/78227387726_Prakash Resume.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is ok ,only excel exp', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 09:38:41', 50, '2021-02-17 10:14:13', 0, NULL, 1),
(3356, 'Meena P', '16', '9884169054', '', 'pameena555@gmail.com', '1995-12-20', 25, '2', '1', 'Purushothaman M', 'Accounts executive', 25000.00, 1, 0.00, 15000.00, 'Chrompet', 'Chrompet', '2102170003', '1', '2', 'upload_files/candidate_tracker/75847147331_Meena P.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit fr MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 09:44:11', 50, '2021-02-17 10:21:47', 0, NULL, 1),
(3357, 'POOJA', '16', '9080520167', '', 'Poojasri6467@gmail.com', '2000-08-11', 20, '2', '2', 'DHANDAPANI', 'Driver', 15000.00, 1, 0.00, 14000.00, 'Kanchipuram', 'Kanchipuram', '2102170004', '1', '1', 'upload_files/candidate_tracker/90314724319_POOJA.D-converted.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 09:46:13', 50, '2021-02-17 01:23:26', 0, NULL, 1),
(3358, '', '0', '7358243438', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 10:26:42', 0, NULL, 0, NULL, 1),
(3359, 'Sri Krishna', '16', '7358349754', '9444110886', 'krish.arts1997@gmail.com', '1997-11-20', 23, '2', '2', 'Paranthaman', 'GM', 70000.00, 0, 12000.00, 20000.00, 'Chennai', 'Chennai', '2102170006', '1', '2', 'upload_files/candidate_tracker/45484685054__Resume.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suite for mMIS profile', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:01:48', 50, '2021-02-17 11:25:40', 0, NULL, 1),
(3360, 'Dinesh YD', '16', '8778673979', '9789958136', 'Dineshyd6358@gmail.com', '1998-05-03', 22, '2', '2', 'Jayanthi', 'Self-employed', 15000.00, 2, 14000.00, 20000.00, 'Chennai', 'Chennai', '2102170007', '1', '2', 'upload_files/candidate_tracker/31037401570_My CV-1.docx', NULL, NULL, '2021-02-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Expectation i s very high and got another offer', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:02:37', 50, '2021-02-17 01:22:58', 0, NULL, 1),
(3361, 'Haroon Rashith A', '16', '6381107449', '8870894669', 'haroonrashith@outlook.com', '1996-05-06', 24, '2', '2', 'abdul khader', 'retired', 100000.00, 2, 20000.00, 30000.00, 'chennai', 'chennai', '2102170008', '1', '2', 'upload_files/candidate_tracker/12532672014_Haroon Rashith Resume (1).docx', NULL, NULL, '2021-02-18', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much exp in sales. looking for MIS but not much relevant', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 11:03:52', 50, '2021-02-18 10:36:53', 0, NULL, 1),
(3362, 'Divya R', '16', '9003177353', '9790205001', 'divyaravichandran04@gmail.com', '1990-07-04', 30, '2', '2', 'A Ravichandran', 'Not Working', 25000.00, 1, 2450000.00, 300000.00, 'Chennai', 'Chennai', '2102170009', '1', '2', 'upload_files/candidate_tracker/95843662031_Divya - Updated Resume.pdf', NULL, NULL, '2021-02-17', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Nt suit fr MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:16:08', 50, '2021-02-17 12:01:11', 0, NULL, 1),
(3363, 'P. Yuvaraj', '16', '9600139219', '8778897237', 'Yuvarajsudharshanmessi@gmail.com', '2000-09-05', 20, '2', '2', 'M. Palani', 'Gold smith', 20000.00, 1, 0.00, 16000.00, 'No. 44 vanniyampathy street, mandaveli, chennai 28', 'No. 44 vanniyampathy street, mandaveli, chennai 28', '2102170010', '1', '1', 'upload_files/candidate_tracker/79553881703_Yuvaraj P.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:18:18', 50, '2021-02-17 11:39:32', 0, NULL, 1),
(3364, 'Jeffy Jose', '16', '9884309658', '', 'jeffyjose2607@gmail.com', '1992-07-26', 28, '2', '1', 'Linu M Mathew', 'HR', 32000.00, 1, 250000.00, 350000.00, 'chennai', 'chennai', '2102170011', '1', '2', 'upload_files/candidate_tracker/64772097066_Jeffy_Jose_Resume_new.docx_FLEOC_135076_531181_Candidate_CV.docx', NULL, NULL, '2021-02-17', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not interested with agreement ', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 11:35:21', 1, '2021-02-17 11:55:55', 0, NULL, 1),
(3365, 'Gopinath K', '16', '8682805694', '', 'gopidoneee007@gmail.com', '1996-03-15', 24, '2', '2', 'Krishnan', 'Govt bus conductor', 30000.00, 1, 13600.00, 20000.00, 'Tiruvannamalai', 'Vadapalani', '2102170012', '1', '2', 'upload_files/candidate_tracker/14216788563_Gopi Resume.pdf', NULL, NULL, '2021-02-17', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Only excel knowledge', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 11:57:42', 1, '2021-02-17 12:05:57', 0, NULL, 1),
(3366, 'rajesh kumar.b', '6', '7550105811', '', 'rajeshkumar161993b@gmail.com', '1991-12-17', 29, '2', '1', 'mohammed imran', 'own business', 20000.00, 0, 15000.00, 15000.00, 'chennai', 'chennai', '2102170013', '1', '2', 'upload_files/candidate_tracker/8982768164_12132.pdf', NULL, NULL, '2021-02-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 12:29:47', 1, '2021-02-19 01:53:19', 0, NULL, 1),
(3367, 'Mohammed Aamir VT', '2', '7358379676', '9841806254', 'aamir.mohammed16@gmail.com', '1999-09-24', 21, '2', '2', 'Mushtaq Ahmed', 'Business', 50000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2102170014', '1', '1', 'upload_files/candidate_tracker/57312968989_Mohammed Aamir Resume.docx', NULL, NULL, '2021-02-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed.', '2', '2', '', '1', '1', '', '2', '2021-02-20', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 12:33:10', 50, '2021-02-19 11:49:49', 0, NULL, 1),
(3368, 'Aravind E', '16', '8939330063', '', 'Aravindaarthi14@gmaio.com', '1996-01-28', 25, '2', '2', 'Elumalai A', 'Car driver', 15000.00, 1, 280000.00, 400000.00, 'No:21/13, annai teresa nagar, greenways road Ch-28', 'Annai Teresa Nagar, Greenways Road Chennai-60002', '2102170015', '1', '2', 'upload_files/candidate_tracker/70128940600_Aravind E.docx', NULL, NULL, '2021-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much exp in MIS. Will not fit for our role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 12:54:19', 50, '2021-02-17 01:22:41', 0, NULL, 1),
(3369, 'Pearly B', '5', '9003053389', '9176903889', 'pearly28@ymail.com', '1989-09-28', 31, '2', '1', 'Arul Fernando', 'Executive', 30000.00, 1, 22000.00, 25000.00, 'Villivakkam, Chennai', 'Villivakkam, Chennai', '2102170016', '1', '2', 'upload_files/candidate_tracker/8112920562_B._PEARLY_RESUME (1) (1).doc', NULL, NULL, '2021-02-20', 15, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Will not suite for sales', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 01:41:43', 1, '2021-02-20 12:06:28', 0, NULL, 1),
(3370, 'b.abirami', '13', '9841325685', '', 'abiramibalamurugan8459@gmail.com', '2000-08-22', 20, '1', '2', 'c.balamurugan', 'massion', 20000.00, 1, 0.00, 15000.00, 'mathur', 'mathur', '2102170017', '', '1', 'upload_files/candidate_tracker/10449971766_abi resume.docx', NULL, NULL, '2021-02-18', 0, 'jobs', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'She dont know the basics. She will learn and come after 1 week may be.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-17 02:09:51', 1, '2021-02-17 11:05:33', 0, NULL, 1),
(3371, 'ravi s', '5', '8838108046', '', 'srvavi@gmail.com', '1991-03-12', 29, '2', '1', 'revathy', 'it', 10000.00, 0, 4.50, 6.00, 'urapakkam', 'urapakkam', '2102170018', '1', '2', 'upload_files/candidate_tracker/25761388093_Resume - Ravi (chennai).pdf', NULL, NULL, '2021-02-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for Field sales. Sustainability issues', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 02:22:28', 1, '2021-02-17 03:12:59', 0, NULL, 1),
(3372, '', '0', '8637477191', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 02:23:29', 0, NULL, 0, NULL, 1),
(3373, 'Narmadha', '16', '8220782570', '', 'narmadam81@gmail.com', '1994-01-08', 27, '2', '2', 'Margasamy', 'Nil', 65000.00, 2, 22000.00, 25000.00, 'Chennai', 'Chennai', '2102170020', '1', '2', 'upload_files/candidate_tracker/64457140484_P1090.pdf', NULL, NULL, '2021-02-17', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She didnt confirm on the Agreement.Overall her profile will not get matched with our MIS Role\n', '3', '2', '', '1', '1', '', '2', '2021-02-18', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-17 03:01:20', 50, '2021-02-17 03:11:45', 0, NULL, 1),
(3374, 'Dinesh', '1', '9677312317', '', 'dhina.dhina1@gmail.com', '1992-04-04', 28, '2', '2', 'Dhamotharan', 'Former', 400000.00, 1, 0.00, 500000.00, 'No 74 bajanai Kovil street siruvanjipattu village', 'Same as', '2102170021', '1', '1', 'upload_files/candidate_tracker/27114785159_Dinesh D1.doc', NULL, NULL, '2021-02-20', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for HNI client process', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-17 03:32:40', 50, '2021-02-20 11:51:43', 0, NULL, 1),
(3375, 'Tharshanaa D', '2', '9498066269', '7092391039', 'Tharshanaa57@gmail.com', '1999-07-05', 21, '2', '2', 'L Dillibabu', 'Chennai', 25000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2102170022', '1', '1', 'upload_files/candidate_tracker/949233915_RESUME THARSHANAA.docx', NULL, NULL, '2021-02-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Could Not Meet Our Expectations', '2', '2', '', '1', '1', '', '2', '2021-02-19', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 03:33:12', 50, '2021-02-18 10:37:54', 0, NULL, 1),
(3376, '', '0', '9840999999', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 04:15:59', 0, NULL, 0, NULL, 1),
(3377, 'sathiyaraj.l', '2', '8056279032', '8939105325', 'sakthi01k@gmail.com', '1992-08-07', 28, '2', '2', 'no', 'no', 35000.00, 0, 420000.00, 750000.00, 'chennai', 'pallavaram', '2102170024', '1', '2', 'upload_files/candidate_tracker/74363362362_SATHIYARAJL.pdf', NULL, NULL, '2021-02-19', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Technically not good.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 04:31:40', 1, '2021-02-17 04:39:24', 0, NULL, 1),
(3378, '', '0', '7708452083', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 05:37:37', 0, NULL, 0, NULL, 1),
(3379, '', '0', '9789879783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 09:00:52', 0, NULL, 0, NULL, 1),
(3380, 'Keerthi', '16', '8760504299', '9047335909', 'keerthi135smk@gmail.com', '1998-07-11', 22, '2', '2', 'Parent', 'Press worker', 2.00, 1, 2.00, 16000.00, 'Thambaram', 'Thambaram', '2102170027', '1', '2', 'upload_files/candidate_tracker/95091690511_keerthika RESUME.pdf', NULL, NULL, '2021-02-17', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-17 09:42:54', 1, '2021-02-17 09:49:39', 0, NULL, 1),
(3381, '', '0', '8925468623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102170028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-17 10:06:52', 0, NULL, 0, NULL, 1),
(3382, 'S. Divya jothi', '4', '9566750510', '', 'divyajothi27@gmail.com', '1994-04-27', 26, '2', '2', 'N. Shanmuga sundharam', 'Supervisor', 10000.00, 1, 20000.00, 25000.00, 'Arakonam', 'Moulivakkam', '2102170029', '1', '2', 'upload_files/candidate_tracker/44349769234_DIVYA resume.doc', NULL, NULL, '2021-02-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-02-17 10:18:26', 1, '2021-02-17 10:24:03', 0, NULL, 1),
(3383, 'Saravanan K', '4', '9094257689', '', 'sarosure18@gmail.com', '2000-01-05', 21, '1', '2', 'Karunakaran v', 'Student', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102170030', '', '1', 'upload_files/candidate_tracker/11066439842_saravanan resume.docx', NULL, NULL, '2021-02-18', 0, 'Jobs', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Location too long.will not sustain', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-17 10:49:30', 50, '2021-02-18 10:48:46', 0, NULL, 1),
(3384, '', '0', '9359960033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102180001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-18 09:16:51', 0, NULL, 0, NULL, 1),
(3385, 'Dinesh', '5', '7397294663', '', 'gdineshcs@gmail.com', '1992-06-10', 28, '2', '2', 'gnanasekaran', 'farmer', 10000.00, 1, 30000.00, 40000.00, 'Chennai', 'Chennai', '2102180002', '1', '2', 'upload_files/candidate_tracker/9146529098_DINESH G.pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High CTC expectations.Will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 10:43:48', 1, '2021-02-18 11:01:41', 0, NULL, 1),
(3386, 'Srijith', '17', '9840081944', '', 'srijithm8@gmail.com', '1991-07-11', 29, '2', '1', 'Muralidharan', 'Accountant', 100000.00, 0, 440000.00, 500000.00, 'Chennai', 'Chennai', '2102180003', '1', '2', 'upload_files/candidate_tracker/79706630214_Srijith.docx', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Relevant Experience. Will not fit for our BDM', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 11:15:20', 1, '2021-02-18 11:20:02', 0, NULL, 1),
(3387, 'Divya V K', '16', '7904311837', '', 'inboxdivyavk@gmail.com', '1988-09-14', 32, '2', '1', 'R. Srikanth', 'Technical Manager', 40000.00, 1, 0.00, 21000.00, 'Chennai', 'Chennai', '2102180004', '1', '1', 'upload_files/candidate_tracker/26651522360_Divya V K_Resume.docx', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability issue.No relevant Exp', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 11:16:17', 1, '2021-02-18 11:20:26', 0, NULL, 1),
(3388, '', '0', '9884336365', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102180005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-18 11:36:51', 0, NULL, 0, NULL, 1),
(3389, 'Ganesh Prabhu', '16', '7373625143', '', 'ganesh.prabhu2491@gmail.com', '1991-12-24', 29, '2', '2', 'Chanthanaselvam', 'Police rtd', 400000.00, 1, 340000.00, 400000.00, 'CHENNAI', 'CHENNAI', '2102180006', '1', '2', 'upload_files/candidate_tracker/98608047752_ganesh_resume.pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Full Exp in VBA,will not sustain in MIS and high CTC', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 11:49:33', 50, '2021-02-18 12:39:12', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3390, 'Mohamed Abeeth Ali A', '16', '9941482434', '9381184782', 'abeethclg15@gmail.com', '2000-05-15', 20, '2', '2', 'A Azam Basha', 'Electrition', 96000.00, 1, 11000.00, 13000.00, 'Chennai', 'Chennai', '2102180007', '1', '2', 'upload_files/candidate_tracker/70589048548_Abeeth_Resume.pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, Not fit for MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-18 12:22:21', 50, '2021-02-18 02:36:04', 0, NULL, 1),
(3391, 'keerthivasan', '16', '9841552669', '', 'keerthivasan1033@gmail.com', '1995-09-08', 25, '2', '2', 'C D Kumaraswamy', 'Post man', 30000.00, 1, 16000.00, 20000.00, 'Mylapore', 'Mylapore', '2102180008', '1', '2', 'upload_files/candidate_tracker/98057257594_My Resume.pdf', NULL, NULL, '2021-02-18', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'CMA Inter. Focus in to CA will not sustain in MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-18 01:19:49', 1, '2021-02-18 01:39:21', 0, NULL, 1),
(3392, 'Mohamed fysal', '5', '7639140765', '', 'Iammohamedfal@gmail.co', '1994-07-30', 26, '3', '2', 'M.faridhal begam', 'House wife', 10000.00, 2, 0.00, 14000.00, 'Salem', 'Tiruvallicani', '2102180009', '', '1', 'upload_files/candidate_tracker/47532839058_MOHAMED FYSAL (1).pdf', NULL, NULL, '2021-02-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Only excel knowledge, not ready for agreement', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-18 02:14:23', 1, '2021-02-18 02:27:05', 0, NULL, 1),
(3393, 'Shivapriya', '20', '7806993429', '8528357452', 'priyavasan1997@gmail.com', '1997-09-25', 23, '2', '2', 'Umadevi', 'house wife', 30000.00, 1, 23000.00, 25000.00, '1320c , kVN , 8th main road, vettuvankeni', 'Vettuvankeni', '2102180010', '1', '2', 'upload_files/candidate_tracker/77287977791_RESUME.docx', NULL, NULL, '2021-02-19', 1, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not be suitable for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-18 04:52:47', 50, '2021-02-19 01:31:23', 0, NULL, 1),
(3394, 'jenith', '2', '7339425535', '', 'jenith1999.jj@gmail.com', '1999-09-18', 21, '2', '2', 'james', 'business', 30000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2102180011', '1', '1', 'upload_files/candidate_tracker/10109708384_JenithJResume (3).pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High CTC expectation, holding an offer', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-18 05:08:43', 50, '2021-02-22 10:10:17', 0, NULL, 1),
(3395, 'roshan lal', '16', '9790813016', '', 'roshan.kvan@gmail.com', '1997-08-11', 23, '2', '2', 'shiv kumar', 'manager', 20000.00, 2, 0.00, 300000.00, 'urapakkam', 'urapakkam', '2102180012', '1', '1', 'upload_files/candidate_tracker/5992873153_Roshan lal RESUME.docx', NULL, NULL, '2021-02-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is having health issue(related to ear).Not ready for Agreement.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-18 07:05:33', 50, '2021-02-19 10:26:40', 0, NULL, 1),
(3396, '', '0', '8072329880', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 10:21:10', 0, NULL, 0, NULL, 1),
(3397, 'Joseph Robinson J', '16', '9884149137', '', 'joseph.robinson153@gmail.com', '1991-10-25', 29, '2', '2', 'Johnny', 'Retired officer', 25000.00, 1, 12800.00, 16000.00, 'CHENNAI', 'CHENNAI', '2102190002', '1', '2', 'upload_files/candidate_tracker/32518029343_resume for me (1)new - Copy.doc', NULL, NULL, '2021-02-19', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Candidate is handicapped, will not be able to handle our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 10:38:10', 1, '2021-02-19 10:57:17', 0, NULL, 1),
(3398, 'justin leo j', '6', '7010679611', '', 'justinleo1999.martin@gmail.com', '1999-04-01', 21, '2', '2', 'james martin', 'ashok leyland employee', 20000.00, 1, 0.00, 13000.00, 'chennai', 'nammalvarpet', '2102190003', '2', '1', 'upload_files/candidate_tracker/63676839010_Curriculum Vitae non Tech.pdf', NULL, NULL, '2021-02-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 10:47:22', 50, '2021-02-20 05:48:38', 0, NULL, 1),
(3399, 'Dinesh.S', '5', '9994978653', '', 'dineshprince2020@gmail.com', '1992-06-26', 28, '2', '1', 'Umadevi.D', 'BPO', 40000.00, 1, 499999.00, 499999.00, 'Namakkal', 'Chennai', '2102190004', '1', '2', 'upload_files/candidate_tracker/9501623967_Dinesh.resume.S.pdf', NULL, NULL, '2021-02-19', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'High CTC Exp.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 11:02:09', 50, '2021-02-19 11:31:49', 0, NULL, 1),
(3400, 'Shyam Sundar', '5', '7010872331', '8056663459', 'shyamsiddhu.d@gmail.com', '1995-11-20', 25, '2', '2', 'Anbu M', 'Councillor', 30000.00, 1, 360000.00, 450000.00, 'Ponneri', 'Ponneri', '2102190005', '1', '2', 'upload_files/candidate_tracker/29481703515_Shyam Resume.pdf', NULL, NULL, '2021-02-19', 0, '', '3', '8', '2021-02-22', 321696.00, '', '6', '2021-11-10', '1', '23000 TH with PF xxamp PT 26808 Gross', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 11:10:58', 7, '2021-02-20 11:35:04', 0, NULL, 1),
(3401, 'nelson richard', '5', '8056224488', '', 'nels0610@gmail.com', '1989-08-25', 31, '2', '2', 'none', 'none', 20000.00, 0, 20000.00, 23000.00, 'chennai', 'chennai', '2102190006', '3', '2', 'upload_files/candidate_tracker/72669877527_Nelson Resume.pdf', NULL, NULL, '2021-02-19', 0, '', '3', '8', '2021-03-15', 315792.00, '', '3', '2021-03-25', '1', 'Selected for RM - Shanmugam Team/25K TH Patroniss Gross 26316', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 11:11:44', 60, '2021-03-06 05:01:18', 0, NULL, 1),
(3402, 'Ganesh', '16', '7010889216', '', 'viratganesh1998@gmail.com', '1998-01-02', 23, '2', '2', 'Manjula', 'Housewife', 25000.00, 1, 14400.00, 18000.00, 'Chennai', 'Vandalur', '2102190007', '1', '2', 'upload_files/candidate_tracker/77407235976_Resume_G.docx', NULL, NULL, '2021-02-19', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in agreement', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 11:27:39', 50, '2021-02-19 11:55:34', 0, NULL, 1),
(3403, 'Anusha m c', '20', '9663408393', '9113279689', 'anushacoorg27@gmail.com', '1997-03-27', 23, '1', '2', 'Chandrashekar h r', 'Building Contractor', 20000.00, 1, 0.00, 15000.00, 'Somwarpet coorg', 'Rajajinagar', '2102190008', '', '1', 'upload_files/candidate_tracker/58380364262_ANUSHA%20RESUME1.docx', NULL, NULL, '2021-02-19', 0, '5397', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is expecting high salary....she will not sustain for long term...she is too far from our office location...', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 12:10:02', 50, '2021-02-19 12:38:30', 0, NULL, 1),
(3404, '', '0', '9360982762', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 12:12:57', 0, NULL, 0, NULL, 1),
(3405, 'sachin', '5', '9986600279', '', 'sachinsachi944@gmail.com', '1996-11-06', 24, '2', '2', 'suresh', 'farmer', 20000.00, 5, 21800.00, 26000.00, 'bidar bhalki bidar', 'kudlu gate chikka begur bangalore', '2102190010', '1', '2', 'upload_files/candidate_tracker/48069491595_Sachin Updated.2020 OCT-converted.pdf', NULL, NULL, '2021-02-19', 1, '', '5', '68', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '....', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 12:13:12', 50, '2021-02-19 12:37:21', 0, NULL, 1),
(3406, 'Lakshmi D R', '20', '7760625958', '9663408393', 'lakshmidr12@gamil.com', '1994-04-12', 26, '1', '2', 'Ramanaik D S', 'Farmer', 5000.00, 2, 0.00, 20000.00, 'Shimoga', 'Rajaji nagar', '2102190011', '', '1', 'upload_files/candidate_tracker/39714592673_Lakshmi resume1.docx', NULL, NULL, '2021-02-19', 0, '', '5', '38', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she will not suit for our process....she is expecting 20k salary and she will not handle pressure....', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 12:15:29', 50, '2021-02-19 12:45:44', 0, NULL, 1),
(3407, '', '0', '9841454237', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 01:02:15', 0, NULL, 0, NULL, 1),
(3408, 'manoj r', '16', '9524685559', '', 'mano96kavi@gmail.com', '1996-06-15', 24, '2', '2', 'raja', 'driver', 20000.00, 1, 14000.00, 16000.00, 'chennai', 'vysarpadi', '2102190013', '2', '2', 'upload_files/candidate_tracker/38480072750_mano resume.pdf', NULL, NULL, '2021-02-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 01:10:25', 50, '2021-02-20 05:48:57', 0, NULL, 1),
(3409, 'Rajesh kumar.b', '6', '7358535072', '', 'Rajeshkumar161993@gmail.com', '1993-06-01', 27, '3', '2', 'N.babu', 'Building contractor', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2102190014', '', '1', 'upload_files/candidate_tracker/87360815517_8982768164_12132.pdf', NULL, NULL, '2021-02-19', 0, '', '3', '8', '2021-02-22', 216000.00, '', '3', '2021-08-02', '1', '18K CTC 17100 TH in Patroniss for Ramesh Arumbakkam', '5', '2', '1', '1', '3', '1', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 01:11:50', 60, '2021-02-20 06:19:47', 0, NULL, 1),
(3410, 'arunkumar', '5', '9750353827', '', 'arun861990@gmail.com', '1990-06-08', 30, '2', '1', 'palanivel', 'salaried', 50000.00, 1, 25000.00, 35000.00, 'chennai', 'chennai', '2102190015', '1', '2', 'upload_files/candidate_tracker/99883996635_ARUN KUMAR hdfc life exp-converted (1).pdf', NULL, NULL, '2021-03-05', 15, '', '3', '8', '2021-03-29', 360000.00, '', '2', '1970-01-01', '1', '30k ctc with pf and pt', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-19 01:12:25', 7, '2021-03-09 06:59:11', 0, NULL, 1),
(3411, 'Priya dharshini', '20', '8428357452', '7806993429', 'Kannagisilai1999@gmail.com', '1999-06-13', 21, '2', '2', 'Uma Devi', 'house wife', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2102190016', '1', '1', 'upload_files/candidate_tracker/56203239564_darsini.pdf', NULL, NULL, '2021-02-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not join. couldnt share payslip and relieving', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-19 01:23:41', 60, '2021-02-22 07:10:32', 0, NULL, 1),
(3412, 'bharath', '6', '7708424604', '', 'barathu1100@gmail.com', '1990-08-21', 30, '2', '2', 'elumalai k', 'security officer', 5000.00, 0, 12000.00, 14000.00, 'chennai', 'thuraipakkam', '2102190017', '2', '2', 'upload_files/candidate_tracker/74430860859_Current Update CV.doc', NULL, NULL, '2021-02-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Exp.Medical Billing Exp not interested in field sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-19 01:45:27', 1, '2021-02-19 01:48:12', 0, NULL, 1),
(3413, '', '0', '9414579919', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 03:06:33', 0, NULL, 0, NULL, 1),
(3414, 'pavithranath', '2', '9514579919', '', 'pavithranathan77@gmail.com', '1997-04-18', 23, '2', '2', 't v karmegan', 'veterinary octor', 50000.00, 4, 5000.00, 15000.00, 'kancheepuram', 'kaancheepuram', '2102190019', '1', '2', 'upload_files/candidate_tracker/60745589868_Pavithranath_Karmegan_Resume.pdf', NULL, NULL, '2021-02-20', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate was not able to do the task', '2', '2', '', '1', '1', '', '2', '2021-02-22', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-19 03:38:07', 50, '2021-02-20 05:36:25', 0, NULL, 1),
(3415, 'p vignesh', '2', '9444364899', '9962860962', 'vicramvas@gmail.com', '1994-07-15', 26, '2', '2', 'k panneerselvam', 'bsnl chennai telphones', 40000.00, 2, 400000.00, 800000.00, 'chennai', 'chennai', '2102190020', '1', '2', 'upload_files/candidate_tracker/27736930873_Vignesh PANNEERSELVAM.pdf', NULL, NULL, '2021-02-20', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Technically not good.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-19 06:19:35', 50, '2021-02-20 05:36:37', 0, NULL, 1),
(3416, 'V.Bhuvaneswari', '4', '7397309718', '8072472671', 'bhuvana.vijay20@gmail.com', '1995-12-20', 25, '2', '2', 'Vijaykumar', 'Customer support executive officer', 20000.00, 1, 11500.00, 16000.00, 'No 3/945 SSL green park apt Madhanadhapuram', 'No 3/945 SSL Green Park Apt Madhanadhapuram', '2102190021', '1', '2', 'upload_files/candidate_tracker/48333171824_1613445911913_1613017138419_1611559217591_1608018382899_BHUVANESWARI RESUME.pdf', NULL, NULL, '2021-02-20', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-19 06:19:37', 50, '2021-02-20 05:49:13', 0, NULL, 1),
(3417, 'dharungokul', '22', '7904303221', '9841216887', 'dharungokul21@gmail.com', '1998-10-21', 22, '2', '2', 'marimuthu', 'business', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2102190022', '1', '1', 'upload_files/candidate_tracker/57063509977_RESUME2 M.DHARUNGOKUL (1) (1) (2).docx', NULL, NULL, '2021-02-20', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'lESS VERBAL SKILLS', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-19 06:38:04', 50, '2021-02-20 11:11:21', 0, NULL, 1),
(3418, 'pramodh waj', '22', '8072095811', '', 'jesuundmarie@gmail.com', '1999-10-15', 21, '2', '2', 'velmurugan', 'student', 30000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2102190023', '1', '1', 'upload_files/candidate_tracker/85985651619_resume (1).pdf', NULL, NULL, '2021-02-20', 0, '', '3', '59', '2021-02-22', 3000.00, '', '5', '1970-01-01', '2', 'Selected as a Intern for 1 month', '2', '2', '2', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-19 06:49:58', 60, '2021-02-22 09:48:43', 0, NULL, 1),
(3419, 'R. Rajesh', '6', '9884211251', '9751701173', 'rajeshr.2811@gmail.com', '1986-11-28', 34, '2', '1', 'Lalitha.R', 'Housewife', 25000.00, 1, 22000.00, 25000.00, 'Maraimalai nagar', 'Maraimalai nagar', '2102190024', '1', '2', 'upload_files/candidate_tracker/42455707146_R.Rajesh resume.pdf', NULL, NULL, '2021-02-25', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-19 06:52:37', 1, '2021-02-19 07:02:52', 0, NULL, 1),
(3420, '', '0', '9597502061', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102190025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-19 09:51:03', 0, NULL, 0, NULL, 1),
(3421, 'HARIKUMAR', '13', '9042748542', '', 'Rharikumarcse@gmail.com', '1995-07-20', 25, '2', '2', 'Kubendra(Mother)', 'Home maker', 25000.00, 1, 300000.00, 500000.00, 'Dindigul', 'Dindigul', '2102200001', '1', '2', 'upload_files/candidate_tracker/81765563759_HARIKUMAR.doc', NULL, NULL, '2021-02-23', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Looking forward only for Hike. He will not sustain. rejected by arun', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 07:32:35', 1, '2021-02-20 07:37:22', 0, NULL, 1),
(3422, 'saravanan r', '5', '7550281567', '', 'saravananrajasekar1996@gmail.com', '1996-08-04', 24, '2', '2', 'none', 'none', 21000.00, 0, 21000.00, 25000.00, 'chennai', 'chennai', '2102200002', '3', '2', 'upload_files/candidate_tracker/15161445540_CV_2019-12-13-111650.pdf', NULL, NULL, '2021-02-20', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'Candidates expectation is high on package', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-20 09:17:00', 1, '2021-02-20 09:19:43', 0, NULL, 1),
(3423, 'Lakshmapriya', '20', '8825688624', '9488348434', 'arivu98priya@gmail.com', '1998-04-19', 22, '2', '2', 'Mathivanan', 'No', 50000.00, 1, 0.00, 30000.00, 'Chennai,Redhills', 'Chennai', '2102200003', '1', '1', 'upload_files/candidate_tracker/89761279308_lakshmapriya resume new.docx', NULL, NULL, '2021-02-20', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SHE IS NOT INTERESTED FOR TELECALLING', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 09:22:16', 60, '2021-02-22 07:12:47', 0, NULL, 1),
(3424, 'murali mohan .k', '16', '9080593575', '7299012598', 'gurumurali786@gmail.com', '1988-02-02', 33, '2', '2', 'maliyathri .k', 'chennai', 12000.00, 0, 0.00, 25000.00, 'sembakkam', 'sembakkam', '2102200004', '1', '2', 'upload_files/candidate_tracker/32255991746_1613796974853_Murali_Resume.docx', NULL, NULL, '2021-02-20', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No proper communication, having 10 yrs experience but he dont have tht much of knowledge', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 10:21:52', 50, '2021-02-20 11:10:13', 0, NULL, 1),
(3425, '', '0', '7904809505', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102200005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-20 10:30:56', 0, NULL, 0, NULL, 1),
(3426, 'samir mali', '16', '9384684652', '', 'samirmali1994@gmail.com', '1994-06-23', 26, '2', '2', 'anjan mali', 'bussiness', 12000.00, 4, 17000.00, 24000.00, 'odisha', 'kodambakkam', '2102200006', '1', '2', 'upload_files/candidate_tracker/83685961275_Resume (10).pdf', NULL, NULL, '2021-02-20', 40, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Only Excel Exp,no communication as expected. Will not fit for our role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 11:09:02', 50, '2021-02-20 11:50:54', 0, NULL, 1),
(3427, 'Monisha affrin', '4', '7904347076', '6382274044', '97223affrin@gmail.com', '1997-02-23', 23, '2', '2', 'Edwin Prabhakaran', 'Railway employee', 400000.00, 0, 15000.00, 18000.00, 'Icf east colony colony chennai', 'Icf east colony chennai', '2102200007', '1', '2', 'upload_files/candidate_tracker/81562095241_resume.pdf', NULL, NULL, '2021-02-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for agreement', '1', '2', '', '1', '1', '', '2', '2021-02-22', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 11:19:58', 50, '2021-02-20 11:49:37', 0, NULL, 1),
(3428, 'Soundar. T', '5', '8939084545', '9962832837', 'andrewalphones29@gmail.com', '1995-06-29', 25, '2', '2', 'Tamilarasu', 'Ecg technician', 400000.00, 1, 288000.00, 360000.00, 'Chennai', 'Chennai', '2102200008', '1', '2', 'upload_files/candidate_tracker/56422230200_soundar resume new_compressed (1).pdf', NULL, NULL, '2021-02-20', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-20 11:42:44', 50, '2021-02-20 05:38:03', 0, NULL, 1),
(3429, 'Kelvin', '5', '6382165315', '8939084545', 'kelvinsimions0607@gmail.com', '1996-06-07', 24, '2', '2', 'Hendrypaul', 'Retired', 300000.00, 1, 22200.00, 28000.00, 'Chennai', 'Chennai', '2102200009', '1', '2', 'upload_files/candidate_tracker/99313565002_kelvins perfect resume format.pdf', NULL, NULL, '2021-02-20', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-20 11:43:50', 50, '2021-02-20 05:37:41', 0, NULL, 1),
(3430, 'ganesh s', '22', '6379996370', '', 'ganeshstudent01@gmail.com', '1999-04-11', 21, '2', '2', 'shanmugam', 'business', 30000.00, 2, 0.00, 200000.00, 'tindivanam', 'tindivanam', '2102200010', '1', '1', 'upload_files/candidate_tracker/46043801790_Ganesh-Resume.pdf', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 11:49:08', 1, '2021-02-20 11:53:16', 0, NULL, 1),
(3431, 'priyanka', '5', '7907089123', '', 'priyankababu0195@gmail.com', '1995-02-01', 26, '2', '2', 'babu rajendran', 'business', 20000.00, 1, 25000.00, 35000.00, 'kerala', 'Chennai', '2102200011', '1', '2', 'upload_files/candidate_tracker/71143942143_pinku (1) copy.doc', NULL, NULL, '2021-02-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not fit for our sales profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-20 11:50:40', 50, '2021-02-20 05:37:10', 0, NULL, 1),
(3432, 'K.goutham', '17', '9841512578', '9551456667', 'gouthampru@gmail.com', '1995-12-09', 25, '2', '2', 'V.meenakshi', 'Business', 6.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2102200012', '1', '2', 'upload_files/candidate_tracker/79484608334_8982768164_12132.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not at all a relevant profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 12:20:14', 60, '2021-02-22 04:28:05', 0, NULL, 1),
(3433, 'Raghu Ranjith R', '4', '7871407429', '', 'raghuranjith0106@gmail.com', '1999-10-09', 21, '1', '2', 'Ramesh p', 'Carpenter', 13000.00, 2, 0.00, 13000.00, 'No:20 EVK Sambath street,MGR Nagar Chennai 600078', 'No:20 EVK Sambath Street,MGR Nagar Chennai 600078', '2102200013', '', '2', 'upload_files/candidate_tracker/60670002873_Raghu Resume.docx', NULL, NULL, '2021-02-20', 0, '5174', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'can not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-20 12:56:52', 50, '2021-02-20 05:37:19', 0, NULL, 1),
(3434, '', '0', '8248516373', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102200014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-20 04:01:18', 0, NULL, 0, NULL, 1),
(3435, 'Karthick M', '6', '9551123628', '9003041580', 'karthih2r@gmail.com', '1995-09-06', 25, '2', '2', 'Muthu', 'Carpenter', 200000.00, 2, 27000.00, 30000.00, 'Chennai', 'Chennai', '2102200015', '1', '2', 'upload_files/candidate_tracker/4665557824_karthick M resume.pdf', NULL, NULL, '2021-02-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-20 04:26:37', 1, '2021-02-20 04:31:13', 0, NULL, 1),
(3436, 'Selvakumar', '23', '8883279006', '', 'selvakumar311997@gmail.com', '1996-01-03', 25, '2', '2', 'Gunasekaran', 'Telecom Mechanic', 20000.00, 1, 14000.00, 16000.00, 'Tirunelveli', 'Amabuttur', '2102200016', '1', '2', 'upload_files/candidate_tracker/99631302616_selvanew.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Technically not good. rejected by latha', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 04:57:16', 1, '2021-02-20 05:01:41', 0, NULL, 1),
(3437, 'abishek c', '22', '7397196298', '', 'abisheksaravanan24@gmail.com', '1998-04-24', 22, '2', '2', 'chellappan a', 'student', 60000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2102200017', '1', '1', 'upload_files/candidate_tracker/19299933307_Abishek resume.docx', NULL, NULL, '2021-02-24', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not okay with service agreement.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-20 05:50:05', 50, '2021-02-24 11:57:06', 0, NULL, 1),
(3438, 'saravanan m', '5', '9944504226', '7904771440', 'saravanankm4694@gmail.com', '1996-06-04', 24, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102210001', '3', '2', 'upload_files/candidate_tracker/49010578962_Saravanan M(3).pdf', NULL, NULL, '2021-02-22', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for life sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-21 07:04:42', 50, '2021-02-22 01:26:22', 0, NULL, 1),
(3439, 'Anusha. N', '16', '9710150941', '', 'anusha2354@gmail.com', '1997-07-30', 23, '2', '2', 'N. Vijya Kumar - Father', 'Electrition', 10000.00, 2, 13000.00, 25000.00, '6/19,2nd Kasthuribai Street,Coronation Nagar', 'Korukupet, Chennai', '2102210002', '1', '2', 'upload_files/candidate_tracker/54683974200_anu resume(1).pdf', NULL, NULL, '2021-02-22', 15, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not at all a relevant profile', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-21 01:11:38', 50, '2021-02-22 10:28:37', 0, NULL, 1),
(3440, 'narendaran s', '5', '8667465193', '', 'narendaran03@gmail.com', '1996-07-26', 24, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102210003', '3', '2', 'upload_files/candidate_tracker/90906529795_Narendran Cre.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have exp in Loan and collection, will not fit for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-21 02:43:35', 50, '2021-02-22 12:18:59', 0, NULL, 1),
(3441, 'Mario Manuel Miller', '22', '9789802162', '', 'mariomanuelm73@gmail.com', '2000-08-24', 20, '2', '2', 'Anita Martin', 'Student', 25000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2102210004', '1', '1', 'upload_files/candidate_tracker/11481548643_Resume.docx', NULL, NULL, '2021-02-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate is looking for a month Internship, His focus in on the Air Force Job. Doubtful on onboarding', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-21 03:14:25', 1, '2021-02-21 03:20:16', 0, NULL, 1),
(3442, 'antony nirmal', '5', '9514175050', '', 'noel8489@gmail.com', '1990-10-09', 30, '2', '2', 'none', 'none', 25000.00, 0, 25000.00, 27000.00, 'chennai', 'chennai', '2102210005', '3', '2', 'upload_files/candidate_tracker/62460323186_Antony_Nirmal_New_Resume.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for Job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-21 04:25:49', 7, '2021-03-06 12:07:32', 0, NULL, 1),
(3443, 'logesh babu', '3', '9894456040', '', 'blokesh171@gmail.com', '1997-01-17', 24, '2', '2', 'babu', 'carpenter', 200000.00, 2, 260000.00, 330000.00, 'K.K. Nagar', 'K.K. Nagar', '2102210006', '1', '2', 'upload_files/candidate_tracker/18899967903_resume-cv.pdf', NULL, NULL, '2021-02-27', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Could Not Meet Our Expectations', '2', '1', '', '1', '1', '', '2', '2021-03-06', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-21 07:38:37', 60, '2021-02-27 11:12:03', 0, NULL, 1),
(3444, 'B.umamaheshwari', '2', '9677043873', '9940504737', 'umabhoopathy93@gmail.com', '1993-10-05', 27, '2', '2', 'Parent', 'Security', 15000.00, 1, 1.20, 2.50, '10/146, New housing board, Godhamedu, saidapet', 'Chennai', '2102210007', '1', '2', 'upload_files/candidate_tracker/38665461355_Umamaheshwari_Resume.pdf', NULL, NULL, '2021-02-22', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much knowledge in React, Sustainability Doubt', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-21 08:10:00', 50, '2021-02-22 02:30:44', 0, NULL, 1),
(3445, 'Gopi B', '21', '9941980198', '9840141899', 'gopivj2306@gmail.com', '2000-06-23', 20, '2', '2', 'Jaganathan', 'Driver', 15000.00, 2, 0.00, 18.00, 'Urapakkam', 'Urapakkam', '2102210008', '1', '1', 'upload_files/candidate_tracker/52725510538_Gopi Resume-converted.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location constraint, Fresher profile, not interested in sales. No exp in System Admin', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-21 09:00:47', 50, '2021-02-22 12:17:47', 0, NULL, 1),
(3446, 'P.santhosh', '21', '6369917137', '', 'santhoshlogu888@gmail.com', '1999-07-18', 21, '2', '2', 'S.prabhu', 'Driver', 15000.00, 1, 0.00, 18000.00, 'Urapakkam', 'Urapakkam', '2102210009', '1', '1', 'upload_files/candidate_tracker/98322924462_Santhosh Resume.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication better, Location constraint', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-21 09:00:51', 50, '2021-02-22 12:20:04', 0, NULL, 1),
(3447, 'Subash Chandra Bose', '21', '8825722456', '9629896047', 'bosssubash05@gmail.com', '1998-03-02', 22, '2', '2', 'Raghupati', 'Daily wages', 10000.00, 2, 13000.00, 16000.00, 'NO. 2/20, Bharathi Nagar, Marrakanam-604303', 'No. 3/5Brindhavan street Koddambakkam -600027', '2102220001', '1', '2', 'upload_files/candidate_tracker/84963968498_CV_2021-01-26-125030.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'false information completely', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-22 10:40:46', 1, '2021-02-22 10:58:49', 0, NULL, 1),
(3448, 'Shweta kumari', '5', '8789735503', '7283045449', 'Shwetamishr09@gmail.com', '1998-10-05', 22, '2', '2', 'Umesh kumar mishra', 'Agent in sahara india', 30000.00, 1, 30000.00, 35000.00, 'Chennai', 'Chennai', '2102220002', '1', '2', 'upload_files/candidate_tracker/24001202329_1613969817515Resume (1).pdf', NULL, NULL, '2021-02-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 12:11:26', 50, '2021-02-22 02:34:49', 0, NULL, 1),
(3449, 'Karthikeyan', '5', '9361734409', '8789735503', 'karthikeyanmahalingam.official@gmail.com', '1995-09-06', 25, '2', '2', 'Mahalingam', 'Business', 40000.00, 1, 42000.00, 45000.00, 'Chennai', 'Chennai', '2102220003', '1', '2', 'upload_files/candidate_tracker/84672724695_Karthikeyan M _ Resume-2.pdf', NULL, NULL, '2021-02-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 12:13:16', 1, '2021-02-22 12:21:34', 0, NULL, 1),
(3450, 'Karthick B', '26', '8939311643', '8825664884', 'kthkarthick@gmail.com', '1994-10-21', 26, '3', '2', 'Baskar K', 'Electrician', 20000.00, 1, 16000.00, 22000.00, 'chennai', 'chennai', '2102220004', '', '2', 'upload_files/candidate_tracker/19342381408_KARTHI-GNG2 (1).pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication, not much in PPT. Will not fit for our MIS positions', '7', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 01:20:53', 1, '2021-02-22 01:26:17', 0, NULL, 1),
(3451, 'Sree Venkatakrishna', '23', '8939159197', '9445394462', 'Sreevenkatakrishna@gmail.com', '1999-03-18', 21, '3', '2', 'Sree', 'Graphic designer', 300000.00, 1, 0.00, 150000.00, 'Sowcarpat', 'Sowcarpat', '2102220005', '', '1', 'upload_files/candidate_tracker/95147013890_Cv Fd&Gd 2,21 CP.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our role, looking for internship ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 01:29:17', 50, '2021-02-22 02:42:26', 0, NULL, 1),
(3452, 'Bineesh Babu', '5', '8129354285', '9901444172', 'bineeshb421@gmail.com', '1993-10-16', 27, '2', '2', 'Bindhu', 'Nurse', 35000.00, 1, 0.00, 17000.00, 'Btm second stage', 'Btm second stage', '2102220006', '1', '1', 'upload_files/candidate_tracker/19368765704_BINEESH B 2(1) resume updated.pdf', NULL, NULL, '2021-02-22', 0, '', '5', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he will not suit for our process', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 01:36:03', 50, '2021-02-22 01:53:11', 0, NULL, 1),
(3453, 'Gokul Krishna v', '5', '9901444172', '8129354285', 'gokulrules28@gmail.com', '2000-05-07', 20, '2', '2', 'RAJESHWARI (MOTHER)', 'Home maker', 20000.00, 0, 0.00, 17000.00, 'Btm 2nd stage', 'Btm 2nd stage', '2102220007', '1', '1', 'upload_files/candidate_tracker/75766132565_Resume.docx', NULL, NULL, '2021-02-22', 0, '', '5', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he will not suit for our field\n', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 01:36:43', 50, '2021-02-22 01:52:49', 0, NULL, 1),
(3454, 'ajithkumar', '2', '7092933603', '9791187601', 'ajithanandan2306@gmail.com', '1996-04-23', 24, '2', '2', 'anandan', 'cooli', 30000.00, 2, 21000.00, 50000.00, 'chennai', 'chennai', '2102220008', '1', '2', 'upload_files/candidate_tracker/8574168147_Resume.pdf', NULL, NULL, '2021-02-24', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Looking for salary. he knows UI part alone.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 01:43:39', 1, '2021-02-22 01:49:40', 0, NULL, 1),
(3455, 'Malkraj', '22', '9003205212', '8248231961', 'malkrajac@gmail.com', '1997-05-10', 23, '2', '2', 'Chitra', 'House wife', 10000.00, 1, 0.00, 5000.00, 'Erukkencherry', 'Erukkencherry', '2102220009', '1', '1', 'upload_files/candidate_tracker/38310428993_malk ac2 resume(1).pdf', NULL, NULL, '2021-02-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our content writer position', '2', '1', '0', '1', '1', '0', '2', '2021-02-25', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 03:00:59', 1, '2021-02-22 03:19:20', 0, NULL, 1),
(3456, 'Athithya m', '6', '8825837261', '7845214740', 'athithyaktm76@gmail.com', '1999-05-16', 21, '2', '2', 'Murugan', 'Theatre supervisor', 25000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2102220010', '1', '1', 'upload_files/candidate_tracker/90944995604_imgtopdf_22022021044711.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'IMMATURED ,AND SUSTAIN ALSO DOUBT', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-22 04:30:34', 60, '2021-02-23 02:36:31', 0, NULL, 1),
(3457, 'R.jaganathan', '16', '9790194003', '', 'Jagrnathan@gmail.Com', '1984-11-28', 36, '2', '2', 'K.rajendiran', 'Labour', 400000.00, 1, 276000.00, 400000.00, 'Chennai', 'Chennai', '2102220011', '1', '2', 'upload_files/candidate_tracker/79270379633_1611038827825Resume_R.docx', NULL, NULL, '2021-02-24', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 04:38:05', 1, '2021-02-22 04:45:59', 0, NULL, 1),
(3458, 'ramya', '16', '8072575653', '', 'n.ramya31@gmail.com', '1988-05-10', 32, '2', '1', 'jaganathan', 'engineering', 20000.00, 3, 20000.00, 25000.00, 'perambur', 'chennai', '2102220012', '1', '2', 'upload_files/candidate_tracker/80770445922_Ramya Resume.doc', NULL, NULL, '2021-02-23', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is not upto the mark.Will not fit for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 04:39:57', 1, '2021-02-22 07:39:40', 0, NULL, 1),
(3459, 'G Mohana Prakash', '2', '9159659439', '9994635035', 'mohanareact@gmail.com', '1996-10-10', 24, '2', '2', 'E Govindaraj', 'Accounts manager', 120000.00, 1, 0.00, 300000.00, 'Madurai', 'Madurai', '2102220013', '1', '1', 'upload_files/candidate_tracker/64393323220_MERN_Resume.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is looking only for salary. he will not sustain.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 05:18:55', 50, '2021-02-26 02:41:24', 0, NULL, 1),
(3460, '', '0', '8248343574', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102220014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-22 05:34:00', 0, NULL, 0, NULL, 1),
(3461, 'Nanda kumar', '22', '7904382537', '9791819986', 'Letter2nanda@gmail.com', '1996-11-21', 24, '2', '2', 'Nachimuthu', 'Business', 40000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2102220015', '1', '1', 'upload_files/candidate_tracker/6893605722_resume 2-2.pdf', NULL, NULL, '2021-02-24', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude issue, wont sustain for a long time', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 06:02:31', 50, '2021-02-24 02:26:22', 0, NULL, 1),
(3462, 'Jaya kumar', '16', '7358858650', '8098939268', 'Kumarjay346@gmail.com', '1995-09-07', 25, '2', '2', 'Thulasi', 'Farmer', 20000.00, 1, 21000.00, 25000.00, 'Avadi', 'Avadi', '2102220016', '1', '2', 'upload_files/candidate_tracker/47189620995_CV.pdf', NULL, NULL, '2021-02-26', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-22 09:53:34', 1, '2021-02-22 09:57:27', 0, NULL, 1),
(3463, 'chendhilmurgan', '26', '9677259815', '', 'chendhilmurugan@gmail.com', '1988-07-02', 32, '2', '2', 'jayaprakash narayanan', 'mis', 360000.00, 0, 360000.00, 360000.00, 'chennai', 'chennai', '2102220017', '1', '2', 'upload_files/candidate_tracker/78433481246_Chendhil .docx', NULL, NULL, '2021-02-23', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not suit for MIS', '7', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-22 10:10:02', 1, '2021-02-23 12:29:37', 0, NULL, 1),
(3464, 'mansoor', '6', '6381404715', '', 'mansoor.mans@gmail.com', '1991-09-21', 29, '2', '2', 'mustafa', 'automobile', 60000.00, 3, 14000.00, 15000.00, 'chennai', 'chennai', '2102220018', '2', '2', 'upload_files/candidate_tracker/78840048530_Current Update CV.doc', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 11:06:20', 1, '2021-02-22 11:10:41', 0, NULL, 1),
(3465, 'thameem ansari', '6', '7397255897', '', 'thameem0703@gmail.com', '1991-03-07', 29, '2', '1', 'ameena', 'nil', 15000.00, 3, 0.00, 15000.00, 'chennai', 'chennai', '2102220019', '2', '1', 'upload_files/candidate_tracker/49252099820_THAMEEM ANSARI-converted.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Checked for System Admin-Rejected by surendar', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 11:14:17', 1, '2021-02-23 08:46:34', 0, NULL, 1),
(3466, 'c karthick', '5', '9551845756', '', 'karthi1004c@gmail.com', '2000-04-10', 20, '2', '2', 'none', 'none', 13000.00, 0, 13000.00, 15000.00, 'chennai', 'chennai', '2102220020', '3', '2', 'upload_files/candidate_tracker/19826390138_karthic Resume-1.pdf', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 11:51:03', 1, '2021-02-22 11:53:42', 0, NULL, 1),
(3467, 'tamil selvan g', '5', '9159954680', '', 'tamilan2206@gmail.com', '1994-04-22', 26, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102220021', '3', '2', 'upload_files/candidate_tracker/43392998036_1612969777798_New TAMIL RESUME PERMANENT ADDRESS (1)-converted (1).pdf', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-22 11:56:25', 1, '2021-02-22 11:59:22', 0, NULL, 1),
(3468, 'gayathri r', '4', '7092323985', '', 'gayumanju6030@gmail.com', '1996-06-03', 24, '2', '2', 'manjula', 'nil', 20000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2102230001', '2', '2', 'upload_files/candidate_tracker/78215233582_Gayathri Ravi.pdf', NULL, NULL, '2021-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-23 08:49:55', 1, '2021-02-23 08:52:47', 0, NULL, 1),
(3469, 'revathi s', '4', '9092508466', '', 'revathi11rs@gmail.com', '1995-06-10', 25, '2', '2', 'sundra moorthy', 'hotel supervisor', 30000.00, 1, 14000.00, 15000.00, 'chennai', 'perambur', '2102230002', '2', '2', 'upload_files/candidate_tracker/78809566942_resume (1).pdf', NULL, NULL, '2021-02-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate selected for CRM, but left without attending the 2nd level interview', '1', '1', '0', '1', '1', '0', '2', '2021-02-24', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-23 08:59:36', 1, '2021-02-23 09:01:40', 0, NULL, 1),
(3470, 'varalakshmi', '20', '9941349058', '', 'varalakshmiram01@gmail.com', '1996-01-30', 25, '2', '1', 'dinesh', 'nil', 23000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2102230003', '2', '2', 'upload_files/candidate_tracker/46752672267_Varalakshmi RESUME-converted.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not fit for CRM and Expecting High salary ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-23 09:04:28', 60, '2021-02-23 05:46:45', 0, NULL, 1),
(3471, 'Rajesh kannan', '16', '9894437029', '8610586476', 'kannanrajesh004@gmail.com', '1998-02-16', 23, '2', '2', 'Murugesan', 'Tailor', 20000.00, 1, 0.00, 15000.00, 'Trichy', 'Trichy', '2102230004', '1', '1', 'upload_files/candidate_tracker/82177701062_RK resume.docx', NULL, NULL, '2021-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 09:57:04', 1, '2021-02-23 10:05:36', 0, NULL, 1),
(3472, 'UTHAYA KUMAR T', '16', '9025698946', '', 't.uthayakumar31@gmail.com', '1992-03-31', 28, '2', '1', 'Shenbaga Selvi', 'Software Developer', 60000.00, 1, 23000.00, 28000.00, 'Tambaram Sanatorium, Chennai', 'Tambaram Sanatorium, Chennai', '2102230005', '1', '2', 'upload_files/candidate_tracker/73629218842_UTHAYA KUMAR_RESUME.PDF', NULL, NULL, '2021-02-23', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our MIS Role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-23 11:02:58', 60, '2021-02-23 06:45:02', 0, NULL, 1),
(3473, 'Priya P', '16', '9789890853', '', 'priyaperinbaraj@gmail.com', '1986-08-21', 34, '2', '1', 'Satishkumar A', 'Quality Engineer', 27000.00, 1, 27000.00, 27000.00, 'Mogappair east', 'Mogappair east', '2102230006', '1', '2', 'upload_files/candidate_tracker/16651284918_1611679983937_priya resume .docx', NULL, NULL, '2021-02-24', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have exp in front office. Will not fit for our MIS role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 11:24:17', 1, '2021-02-23 11:30:05', 0, NULL, 1),
(3474, '', '0', '9789890854', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102230007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-23 11:33:58', 0, NULL, 0, NULL, 1),
(3475, 'Thiruvengadam', '16', '9941595610', '', 'thirukrishnan16@gmail.com', '1992-05-16', 28, '2', '2', 'Krishnan', 'Driver', 15000.00, 1, 50000.00, 25000.00, 'Chennai', 'Chennai', '2102230008', '1', '2', 'upload_files/candidate_tracker/72808166854_MIS Resume - 2021.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Got selected for MIS Role,we offered 22k TH with Patroniss,but he was not ready to sign the agreement with documents submitting', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-23 12:02:27', 60, '2021-02-23 06:46:36', 0, NULL, 1),
(3476, 'gokulhavinash m', '2', '9551153145', '', 'havir5@gmail.com', '1991-01-02', 30, '2', '2', 'mani', 'unoccupied', 30000.00, 2, 0.00, 30000.00, 'chennai', 'chennai', '2102230009', '1', '1', 'upload_files/candidate_tracker/98637709207_webResume_Gokulhavinash.docx', NULL, NULL, '2021-02-24', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'not good in technical. rejected by gs.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 01:01:57', 1, '2021-02-23 01:58:22', 0, NULL, 1),
(3477, 'Yamini Devi', '22', '7806914453', '9790798945', 'yamunilla1997@gmail.com', '1997-03-30', 23, '2', '2', 'Saraswathi Manogaran', 'Headmistress', 400000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2102230010', '1', '2', 'upload_files/candidate_tracker/44451037911_Yamini Devi resume.docx', NULL, NULL, '2021-02-24', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for our Organization culture.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 01:18:22', 50, '2021-02-24 11:00:00', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3478, 'Shahul Hameed', '16', '8056219297', '9840824279', 'shahul904430@gmail.com', '1995-09-28', 25, '2', '2', 'Mohideen', 'Senior Accountant', 150000.00, 0, 55000.00, 25000.00, 'Chennai', 'Chennai', '2102230011', '1', '2', 'upload_files/candidate_tracker/48121623372_CV Coordinator 2021.pdf', NULL, NULL, '2021-02-23', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'HE is planning to work in dubai', '3', '2', '', '1', '1', '', '2', '2021-03-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-23 01:44:52', 60, '2021-02-23 06:47:31', 0, NULL, 1),
(3479, 'Solomon Paul Raj I D', '22', '7358554232', '', 'solomonpaulrajspr@gmail.com', '1999-05-10', 21, '2', '2', 'immanuel david', 'Electritian', 45000.00, 1, 0.00, 26000.00, 'Chennai', 'Chennai', '2102230012', '1', '1', 'upload_files/candidate_tracker/10541741059_Solomon Paul Raj I D.pdf', NULL, NULL, '2021-02-24', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not sustainable', '2', '2', '', '1', '1', '', '2', '2021-02-26', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 02:17:01', 50, '2021-02-24 10:55:54', 0, NULL, 1),
(3480, 'Vengadesh Pandiyan S', '2', '8778210733', '7667159467', 'vengadeshreact@gmail.com', '1996-10-30', 24, '2', '2', 'Sivagnanam V', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Madurai', 'Madurai', '2102230013', '1', '1', 'upload_files/candidate_tracker/95243391213_CV_2021-02-14-062922.pdf', NULL, NULL, '2021-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 03:06:29', 1, '2021-02-23 08:17:10', 0, NULL, 1),
(3481, '', '0', '8667745192', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102230014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-23 03:28:20', 0, NULL, 0, NULL, 1),
(3482, 'J. Monisha', '16', '9566021776', '', 'Shajagadeesan@gmail.com', '1995-06-05', 25, '2', '2', 'Nithya Banu j', 'Support engineer', 21000.00, 1, 21300.00, 25000.00, 'Chennai', 'Kknagar', '2102230015', '1', '2', 'upload_files/candidate_tracker/43794170802_Monisha - Resume (3).docx', NULL, NULL, '2021-02-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for agreement', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-23 04:27:13', 50, '2021-02-24 10:30:08', 0, NULL, 1),
(3483, 'Manikandan Vairavamoorthy', '2', '7904756151', '', 'mani22be@gmail.com', '1998-12-22', 22, '2', '2', 'Vairavamoorthy', 'Software Developer', 500000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2102230016', '1', '1', 'upload_files/candidate_tracker/2721847670_Manikandan Vairavamoorthy.pdf', NULL, NULL, '2021-02-24', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not joined', '2', '2', '', '1', '1', '', '2', '2021-03-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 04:40:49', 50, '2021-02-24 10:01:51', 0, NULL, 1),
(3484, 'Cynthia', '16', '9962207960', '', 'cynthiajenny@gmail.com', '1985-03-27', 35, '2', '1', 'BhakthaSingh', 'Rtd. ACTO', 40000.00, 1, 20000.00, 25000.00, '50/258, first floor, Chellappa street, Chennai-12', '50/258, First Floor, Chellappa Street, Chennai-12', '2102230017', '1', '2', 'upload_files/candidate_tracker/57398420054_1611987856295_CYNTHIA_RES.docx', NULL, NULL, '2021-02-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Worked as a professor, will not fit for our sales', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-23 04:43:46', 1, '2021-02-23 05:07:39', 0, NULL, 1),
(3485, 'karthikeyan', '4', '1122334455', '9360984085', 'knkarthe2000@gmail.com', '2000-06-02', 21, '2', '2', 'krisnamoorthy', 'farmer', 10000.00, 1, 0.00, 10000.00, 'tiruvanamali', 'tiruvallur', '2102230018', '1', '1', 'upload_files/candidate_tracker/97168879440_Resume (16).pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-23 05:41:05', 1, '2021-09-02 11:15:29', 0, NULL, 1),
(3486, 'Nirmal Kumar', '16', '9840905975', '', 'ajvjcj@gmail.com', '1993-11-15', 27, '2', '1', 'Vijayalakshmi', 'Home maker', 25000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2102230019', '1', '2', 'upload_files/candidate_tracker/5488049950_Nirmal CV 2021.doc', NULL, NULL, '2021-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 05:41:38', 1, '2021-02-23 10:40:18', 0, NULL, 1),
(3487, 'Janani I', '5', '9994027561', '', 'jananimay1702@gmail.com', '1993-05-20', 27, '2', '2', 'Inbaraj', 'Business', 20000.00, 3, 30000.00, 40000.00, 'Kumbakonam', 'Chennai', '2102230020', '1', '2', 'upload_files/candidate_tracker/99761874825_Janani_Resume.pdf', NULL, NULL, '2021-02-24', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High CTC Expectation.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-23 05:52:50', 50, '2021-02-24 02:30:29', 0, NULL, 1),
(3488, '', '0', '9042553027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102230021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-23 06:11:15', 0, NULL, 0, NULL, 1),
(3489, 'Vasantha', '16', '9176864104', '', 'ammusai444@gmail.com', '1991-12-30', 29, '2', '1', 'Logesh', 'Engineer', 40000.00, 2, 22000.00, 28600.00, 'CHENNAI', 'CHENNAI', '2102230022', '1', '2', 'upload_files/candidate_tracker/60077525066_1611510374580_Vasantha Resume 22012021.pdf', NULL, NULL, '2021-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 07:34:19', 1, '2021-02-23 08:30:16', 0, NULL, 1),
(3490, 'Nandhini Arunachalam', '22', '7092332032', '', 'anandhini.ba@gmail.com', '1996-02-18', 25, '2', '2', 'Mangayarkarasi', 'Pensioner', 300000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2102230023', '1', '2', 'upload_files/candidate_tracker/56869760591_BPO resume updated.docx', NULL, NULL, '2021-02-24', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Organization Culture.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-23 08:49:47', 1, '2021-02-23 09:12:34', 0, NULL, 1),
(3491, 'r yogaraj', '6', '7358427229', '', 'yogamani4276@gmail.com', '1989-09-08', 31, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102240001', '3', '2', 'upload_files/candidate_tracker/35327687739_TapScanner 02-16-2021-09.13(2).pdf', NULL, NULL, '2021-02-24', 0, '', '3', '59', '2021-02-26', 204000.00, '', '4', '2021-04-20', '1', '17K CTC in patroniss for Thiyagu Team with Service Agreement for 1 year', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 12:57:50', 7, '2021-03-08 07:08:05', 0, NULL, 1),
(3492, 'm arokya quvinson', '5', '8148866364', '', 'quvinson@gmail.com', '1995-08-06', 25, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102240002', '3', '2', 'upload_files/candidate_tracker/75459753268_banking .docx', NULL, NULL, '2021-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 01:03:50', 1, '2021-02-24 01:06:20', 0, NULL, 1),
(3493, '', '0', '8667015259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 06:27:45', 0, NULL, 0, NULL, 1),
(3494, '', '0', '7806976701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 08:47:36', 0, NULL, 0, NULL, 1),
(3495, 'Ramesh', '13', '9003864057', '', 'rameshshiv21@gmail.com', '1994-08-18', 26, '2', '2', 'Gunasekaran R', 'Retired electrician', 25000.00, 3, 16500.00, 25000.00, 'Madurai', 'Chennai', '2102240005', '1', '2', 'upload_files/candidate_tracker/43836285058_Ramesh_Resume.pdf', NULL, NULL, '2021-02-24', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 10:04:15', 1, '2021-02-24 10:47:57', 50, '2021-02-24 11:21:28', 0),
(3496, 'Roselet Sheena Merlin G', '22', '8056930921', '', 'sheenagoldwin28@gmail.com', '1991-05-28', 29, '2', '2', 'T O M Goldwin', 'CSI Presbyter', 45000.00, 2, 276000.00, 350000.00, 'Thoothukudi', 'Thoothukudi', '2102240006', '1', '2', 'upload_files/candidate_tracker/43211250783_Resume-1.docx', NULL, NULL, '2021-02-24', 15, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Candidate lacks basic knowledge on SEO.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-24 10:20:43', 1, '2021-02-24 10:30:09', 0, NULL, 1),
(3497, 'rameshg', '13', '9025974861', '', 'rameshshiv21@gmail.com', '1994-08-18', 26, '2', '2', 'gunasekaran', 'Chennai', 25000.00, 3, 16500.00, 25000.00, 'madurai', 'chennai', '2102240007', '1', '2', 'upload_files/candidate_tracker/25922582352_Ramesh_Resume.pdf', NULL, NULL, '2021-02-24', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 10:52:48', 1, '2021-02-24 10:59:11', 50, '2021-02-24 06:00:03', 0),
(3498, '', '0', '9791819986', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 11:40:26', 0, NULL, 0, NULL, 1),
(3499, 'Varadha gopalakrishnan A', '4', '9789907420', '8148664834', 'krishvirat03@gmail.com', '1998-03-05', 22, '1', '2', 'Amirthaligam', 'Clerk', 20000.00, 1, 14000.00, 16000.00, 'Aminjikarai', 'Aminjikarai', '2102240009', '', '2', 'upload_files/candidate_tracker/42824335945_GOPAL.docx', NULL, NULL, '2021-02-24', 0, 'Sudhash kumar', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Internal reference for RE,Not open for Field Sales will not fit for our sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 11:41:09', 50, '2021-02-24 05:27:53', 0, NULL, 1),
(3500, 'sriram', '4', '9344304453', '7604957663', 'sriram.s0806@gmail.com', '1998-06-08', 22, '1', '2', 'shankar', 'carpenter', 20000.00, 1, 13000.00, 16000.00, 'chennai', 'chennai', '2102240010', '', '2', 'upload_files/candidate_tracker/11754348088_Resume11-converted.pdf', NULL, NULL, '2021-02-24', 0, 'sudhash', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Internal Reference for RE, Not open up.Will not fit for RE', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 11:42:36', 50, '2021-02-24 03:09:15', 0, NULL, 1),
(3501, 'usha v', '4', '7904859951', '', 'ushauha33@gmail.com', '1998-07-20', 22, '2', '1', 'venkatesh', 'business', 20000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2102240011', '2', '2', 'upload_files/candidate_tracker/38185695229_Resume_Usha 202_Format6.pdf', NULL, NULL, '2021-02-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sales experience', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-24 12:47:22', 50, '2021-02-24 03:10:09', 0, NULL, 1),
(3502, 'Sreenivasa rao Goraga', '5', '9632019976', '9663878840', 'goragasr@gmail.com', '1977-09-30', 43, '2', '1', 'Gayathri', 'Salaried', 40000.00, 3, 35000.00, 36000.00, 'Bangalore', 'Bangalore', '2102240012', '1', '2', 'upload_files/candidate_tracker/60200546683_Srinivas_new_resume[1][1].odt.pdf', NULL, NULL, '2021-02-24', 0, '', '3', '59', '2021-03-04', 500000.00, '', '6', '2021-06-12', '1', 'Gross 41667 xxamp TH 37859 for Manivel Team', '5', '2', '4', '2', '2', '1', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-24 12:50:09', 60, '2021-03-06 06:10:32', 0, NULL, 1),
(3503, 'Janaki Raman m', '4', '9003119615', '7010153480', 'Johnragul4@gmail.com', '1999-06-30', 21, '2', '2', 'Mohan', 'Retried', 25000.00, 0, 12000.00, 15000.00, 'Alwarpet', 'Alwarpet', '2102240013', '1', '2', 'upload_files/candidate_tracker/27260215514_RESUME 4.0.docx', NULL, NULL, '2021-02-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'The candidate didnxquott turn up, Sustainability doubt', '1', '2', '', '1', '1', '', '2', '2021-03-01', '1', '4', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-02-24 01:13:03', 60, '2021-02-25 01:32:55', 0, NULL, 1),
(3504, 'abarna p', '2', '9551298926', '9962022081', 'pabarnatamil@gmail.com', '1999-09-21', 21, '2', '2', 'parthiban s', 'supredentant', 15000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2102240014', '1', '1', 'upload_files/candidate_tracker/10026446122_Abarna Parthiban resume.pdf', NULL, NULL, '2021-02-25', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not okay with our policy.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 01:35:36', 50, '2021-02-25 10:48:35', 0, NULL, 1),
(3505, 'Rajesh kannan', '4', '8610586476', '9894437029', 'Kannanrajesh004@gmail.com', '1998-02-16', 23, '2', '1', 'Murugesan', 'Tailor', 15000.00, 1, 0.00, 14000.00, 'Trichy', 'Trichy', '2102240015', '1', '1', 'upload_files/candidate_tracker/69948197954_RK resume-converted.pdf', NULL, NULL, '2021-02-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 02:13:46', 1, '2021-02-24 02:16:10', 0, NULL, 1),
(3506, 'n. vaisish', '22', '9003177049', '', 'vaisish23@gmail.com', '2000-08-23', 20, '2', '2', 'n.v.s.ramakrishna', 'manager at krishnamacharya yoga mandiram', 40000.00, 0, 0.00, 3000.00, 'chennai', 'chennai', '2102240016', '1', '1', 'upload_files/candidate_tracker/18943835275_Vaisish Resume.pdf', NULL, NULL, '2021-02-25', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Less technical knowledge', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 03:19:41', 50, '2021-02-25 10:05:33', 0, NULL, 1),
(3507, 'arun k', '2', '6374013131', '7708236163', 'arunkamu01@yahoo.com', '2000-07-26', 20, '2', '2', 'kamaraj', 'coooli', 15000.00, 1, 0.00, 400000.00, 'chennai', 'salem', '2102240017', '1', '1', 'upload_files/candidate_tracker/41883729238_Arun_Kamu_Resume .pdf', NULL, NULL, '2021-03-01', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task completion not satisfied.', '2', '2', '', '1', '1', '', '2', '2021-03-02', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 03:26:34', 50, '2021-03-01 10:07:31', 0, NULL, 1),
(3508, '', '0', '6363337215', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 05:49:28', 0, NULL, 0, NULL, 1),
(3509, 'nixon timothy s', '22', '7358447454', '9092941870', 'nixon.thimoty@gmail.com', '1995-12-01', 25, '2', '2', 'r.selvin', 'fresher', 70000.00, 2, 0.00, 3000.00, 'Chennai', 'Chennai', '2102240019', '1', '1', 'upload_files/candidate_tracker/3686325419_Nixon Resume - Seabair group..docx', NULL, NULL, '2021-04-22', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate holding less interest towards DM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-24 06:03:18', 7, '2021-04-22 02:39:03', 0, NULL, 1),
(3510, '', '0', '9025974861', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102240020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-24 09:16:47', 0, NULL, 0, NULL, 1),
(3511, 'MOHAMMED UVAIS J.S', '8', '8220028477', '', 'mohammeduvais.mu@gmail.com', '1996-12-20', 24, '2', '2', 'SHAKEEL AHMED .J', 'Worker', 12000.00, 4, 0.00, 20000.00, 'AMBUR', 'Chennai', '2102250001', '1', '1', 'upload_files/candidate_tracker/7904198215_mohammed_uvaisr(resume).docx', NULL, NULL, '2021-02-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in sales', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-25 10:27:49', 50, '2021-02-25 11:05:56', 0, NULL, 1),
(3512, 'Mohammed Asfan', '5', '7010711099', '9952211613', 'muhammedasfan95@gmail.com', '1995-07-24', 25, '2', '2', 'Samiullah', 'Worker', 20000.00, 1, 0.00, 20000.00, 'Ambur', 'Chennai', '2102250002', '1', '1', 'upload_files/candidate_tracker/81318436913_Asfan Resume.pdf', NULL, NULL, '2021-02-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much communicative, will not fit for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-25 10:29:19', 50, '2021-02-25 10:47:03', 0, NULL, 1),
(3513, 'VIJAY NAGAPPAN', '22', '9080311134', '6380343710', 'vijaynagappan14999@gmail.com', '1999-09-14', 21, '2', '2', 'N.Vaidhyanathan', 'Business', 40000.00, 1, 0.00, 8000.00, 'Salem', 'Salem', '2102250003', '1', '1', 'upload_files/candidate_tracker/96221142082_Vijay nagappan updated resume.pdf', NULL, NULL, '2021-02-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 10:35:14', 1, '2021-02-25 10:41:20', 0, NULL, 1),
(3514, 'Surya', '22', '7358570306', '', 'suryablaster10@icloud.com', '2000-06-03', 20, '2', '2', 'r.Venkatesan', 'phaemacis', 40000.00, 0, 0.00, 5000.00, 'madipakkam', 'madipakkam', '2102250004', '1', '1', 'upload_files/candidate_tracker/23217788327_SURYA Resume.pdf', NULL, NULL, '2021-03-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 11:28:42', 50, '2021-03-01 04:41:40', 0, NULL, 1),
(3515, 'M kathiravan', '16', '9940158644', '8190942965', 'kathirknc@gmail.com', '1988-04-20', 32, '2', '1', 'Buavan', 'Business', 500.00, 1, 19800.00, 23000.00, 'Anna nagar west (extn),chennai', 'Anna nagar west (extn),chennai', '2102250005', '1', '2', 'upload_files/candidate_tracker/75737537779_Resume (1) (1).docx', NULL, NULL, '2021-02-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication, will not get fit for our MIS openings ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-25 11:54:27', 50, '2021-02-25 12:47:27', 0, NULL, 1),
(3516, 'arun kumaran k e', '2', '9940146238', '', 'arunkumaranke@gmail.com', '1997-09-20', 23, '2', '2', 'k g elangovan raaj', 'software engineer', 200000.00, 1, 340000.00, 520000.00, 'tambaram', 'tambaram', '2102250006', '1', '2', 'upload_files/candidate_tracker/92436068285_Arunkumaran\'s Resume updated (4).pdf', NULL, NULL, '2021-02-27', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Will not suitable for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 12:03:04', 1, '2021-02-26 10:31:14', 0, NULL, 1),
(3517, '', '0', '7995376357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102250007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-25 12:07:48', 0, NULL, 0, NULL, 1),
(3518, 'John Ronald', '22', '7395987193', '', 'jronkelly98@gmail.com', '1998-09-04', 22, '2', '2', 'Suguna ruban', 'Housewife', 700000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102250008', '1', '1', 'upload_files/candidate_tracker/68418734553_FinalResumeJohn.pdf', NULL, NULL, '2021-02-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 01:34:55', 1, '2021-02-25 01:38:40', 50, '2021-02-26 10:27:43', 0),
(3519, 'Banupriya B', '4', '7299903567', '8056531332', 'banupriyabalaji17@gmail.com', '1990-07-27', 30, '2', '1', 'Balaji', 'salaried', 25000.00, 3, 16500.00, 20000.00, 'Alzhwarthirunagar', 'Alzhwarthirunagar', '2102250009', '1', '2', 'upload_files/candidate_tracker/46245122810_Banu resume.pdf', NULL, NULL, '2021-02-25', 15, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'False info', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 02:38:53', 1, '2021-02-25 02:58:13', 0, NULL, 1),
(3520, 'Rayan Maaz', '6', '8610881184', '9894777047', 'rayanmaaz2000@gmail.com', '2000-03-06', 20, '2', '2', 'syed ikramullah', 'contractor', 25000.00, 3, 0.00, 17000.00, 'vaniyamabadi', 'periyamade chennai', '2102250010', '1', '1', 'upload_files/candidate_tracker/51480847322_Doc1.docx', NULL, NULL, '2021-02-25', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustain doubt,zero sales skiils', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-25 02:52:40', 60, '2021-02-25 04:41:30', 0, NULL, 1),
(3521, '', '0', '9941240720', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102250011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-25 03:04:58', 0, NULL, 0, NULL, 1),
(3522, '', '0', '9994635035', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102250012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-25 05:46:47', 0, NULL, 0, NULL, 1),
(3523, 'Ganesh', '2', '8122158348', '9940145263', 'ganeshsundar159@gmail.com', '1996-06-15', 24, '2', '2', 'Sundar', 'Daily wages', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2102250013', '1', '1', 'upload_files/candidate_tracker/96988086732_mcaganesh.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not okay with our policy.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 05:53:22', 50, '2021-02-26 10:44:09', 0, NULL, 1),
(3524, 'MakeshBoopathy L', '2', '9698637250', '', 'harish53577@gmail.com', '1999-04-24', 21, '2', '2', 'Loganathan s', 'Welding', 30000.00, 1, 0.00, 18000.00, 'Namakkal', 'Namakkal', '2102250014', '1', '1', 'upload_files/candidate_tracker/33721740662_Resume-hard.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task Not Completed.', '2', '2', '', '1', '1', '', '2', '2021-02-27', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-25 06:04:42', 50, '2021-02-26 10:32:34', 0, NULL, 1),
(3525, 'K.vigneshwaran', '4', '9092572110', '8925654046', 'samdaniel1999k@gmail.com', '1999-12-21', 21, '2', '2', 'K.Kumari', 'Working on Export company', 7000.00, 1, 0.00, 12000.00, 'Poonamallee, Chennai', 'Poonamallee, Chennai', '2102250015', '1', '1', 'upload_files/candidate_tracker/3188880366_RESUME - VIGNESHWARAN.K.pdf', NULL, NULL, '2021-02-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 06:35:15', 1, '2021-02-25 06:49:02', 0, NULL, 1),
(3526, 'Surya.v', '4', '7397286334', '9952935820', 'surya2000vsvijay@gmail.com', '2000-07-29', 20, '2', '2', 'Veerabathiran', 'Plumber', 10000.00, 1, 0.00, 12000.00, 'Kattupakkam', 'Kattupakkam', '2102250016', '1', '1', 'upload_files/candidate_tracker/9865597366_Resume - VSR.pdf', NULL, NULL, '2021-02-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 06:38:10', 1, '2021-02-25 06:49:00', 0, NULL, 1),
(3527, 'INBANATHAN D', '4', '8675302213', '6379723460', 'Inbanathan09@gmail', '1996-03-04', 24, '2', '2', 'Dhanalakshmi. D', 'Farmer', 15000.00, 2, 0.00, 20000.00, 'Ilamdurai village, mankuppam post, tv nallur,', 'Thiruvanmiyir, chennai', '2102250017', '1', '1', 'upload_files/candidate_tracker/78333379414_INBANATHAN.D.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested in sales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 06:38:44', 1, '2021-02-25 07:01:53', 0, NULL, 1),
(3528, 'Mohanapriya T.N', '5', '9345374799', '', 'priyaeaswar0503@gmail.com', '1988-03-04', 32, '2', '1', 'T.K Nannasam (father)', 'Passed away', 1.00, 1, 25000.00, 28000.00, 'Kodugaiyur', 'Kodugaiyur', '2102250018', '1', '2', 'upload_files/candidate_tracker/34208014910_Mohanapriya Thoppan Nannasam resume.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Not interested in field sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 07:23:06', 1, '2021-02-25 07:28:56', 0, NULL, 1),
(3529, 'Madhankumar S', '10', '8825573269', '', 'Madhankumar2831@gmail.com', '1999-03-28', 21, '2', '2', 'N.Selvaraj', 'Watchman', 200000.00, 1, 12000.00, 16000.00, 'Mylapore', 'Mylapore', '2102250019', '1', '2', 'upload_files/candidate_tracker/69023655358_new mk resume.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-25 07:31:33', 60, '2021-02-26 10:51:32', 0, NULL, 1),
(3530, 'Vinay k', '2', '9566139198', '', 'yashwinin58@gmail.com', '1993-07-02', 27, '2', '2', 'Kumar', 'Gold smith', 50000.00, 2, 5.50, 8.50, 'Chennai', 'Chennai', '2102260001', '1', '2', 'upload_files/candidate_tracker/18057750589_Vinay_Profile.pdf', NULL, NULL, '2021-02-27', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No open for agreement, very high CTC Expectation and sustainability issue', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 08:22:51', 60, '2021-02-27 11:02:34', 0, NULL, 1),
(3531, 's mukesh', '5', '9944605336', '', 'mukeshmg3442446@gmail.com', '1997-03-22', 23, '2', '2', 'none', 'none', 18000.00, 0, 13000.00, 15000.00, 'chennai', 'chennai', '2102260002', '3', '2', 'upload_files/candidate_tracker/82028596385_MUKESH 2021 .doc', NULL, NULL, '2021-02-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Having exp in hotel industry as Captain,branch Manager. Sustainability issue and will not fit for our sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-26 08:22:53', 1, '2021-02-26 08:49:20', 0, NULL, 1),
(3532, 'DINESHKUMAR T', '5', '8110080614', '', 'dineshkumar0518@gmail.com', '1997-12-05', 23, '2', '2', 'none', 'none', 20000.00, 0, 15000.00, 18000.00, 'chennai', 'chennai', '2102260003', '3', '2', 'upload_files/candidate_tracker/45462778553_Resume_Dineshkumar T_Format2.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability Issue, ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-26 08:52:40', 50, '2021-02-26 10:52:34', 0, NULL, 1),
(3533, '', '0', '6294260120', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 09:03:31', 0, NULL, 0, NULL, 1),
(3534, 'RAJESH', '5', '6369394803', '9360559187', 'rajagtech83@gmail.com', '1983-05-02', 37, '2', '1', 'Kavitha', 'Branch Manager', 20000.00, 1, 20000.00, 22000.00, 'Alandur', 'Alandur', '2102260005', '3', '2', 'upload_files/candidate_tracker/7515355455_Rajesh RESUME - Copy.docx', NULL, NULL, '2021-02-26', 15, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Age-37, no exp in field sales, not a long runner', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-26 10:06:14', 1, '2021-02-26 10:55:08', 0, NULL, 1),
(3535, 'John Ronald', '22', '9444436246', '7395987193', 'jronkelly98@gmail.com', '1998-09-04', 22, '2', '1', 'Suguna ruban', 'Housewife', 700000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102260006', '1', '1', 'upload_files/candidate_tracker/58220918296_FinalResumeJohn.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Didnxquott have any blogs to prove Interest in Digital marketing.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 10:20:24', 50, '2021-02-26 10:27:53', 0, NULL, 1),
(3536, 'Robert', '5', '9003274037', '', 'Robertbounge12345@gmail.com', '1997-04-03', 23, '2', '2', 'Priyanka', 'Greater chennai corporation', 16500.00, 0, 0.00, 17000.00, 'Chennai', 'Chennai', '2102260007', '1', '2', 'upload_files/candidate_tracker/84325112004_New Doc 2021-02-02 12.34.28_2.pdf', NULL, NULL, '2021-02-26', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested for Field sales and High CTC expectation for CRM', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 10:32:58', 50, '2021-02-26 11:08:58', 0, NULL, 1),
(3537, 'kalpana', '20', '9524861299', '9042353582', 'balankalpana95@gmail.com', '1997-07-21', 23, '2', '2', 'balan', 'mechanic', 150000.00, 0, 0.00, 18000.00, 'namakkal', 'Chennai', '2102260008', '1', '2', 'upload_files/candidate_tracker/97118928203_KALPANA BALAN CV.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Long distance,not willing for agreement', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-26 10:44:02', 1, '2021-02-26 11:42:34', 0, NULL, 1),
(3538, 'shankar', '5', '9176607080', '', 'sankar.kc02@gmail.com', '1985-08-19', 35, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102260009', '3', '2', 'upload_files/candidate_tracker/39185834220_SHANKAR NEW RESUME 2020.doc', NULL, NULL, '2021-02-26', 0, '', '9', '60', NULL, 0.00, '', '0', NULL, '1', 'Please check for elite', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-26 10:49:13', 1, '2021-02-26 10:52:12', 0, NULL, 1),
(3539, 'Jagan nathan', '5', '9176151419', '8838893971', 'jagsy08@gmail.com', '1993-06-08', 27, '2', '2', 'Jayalakshmi', 'Home maker', 6000.00, 1, 318000.00, 355000.00, 'Chennai', 'Chennai', '2102260010', '1', '2', 'upload_files/candidate_tracker/14432435753_Updated resume.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not open for field sales,holding many offer related to insurance sales and looking for many ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 11:03:59', 50, '2021-02-26 12:47:05', 0, NULL, 1),
(3540, '', '0', '9790567423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 11:04:56', 0, NULL, 0, NULL, 1),
(3541, 'Prem Ku amr.s', '5', '9092560369', '8072589535', 'sasiprem26sa@gmail.com', '1997-03-19', 23, '2', '2', 'Sasi Kumar.p', 'agriculture', 80000.00, 2, 0.00, 15000.00, '#964 valluvar street Sathanur village Post', 'SLV Nagar zuzuvadi Hosur krishnagiri district', '2102260012', '1', '1', 'upload_files/candidate_tracker/16291130296_prem resume.docx', NULL, NULL, '2021-02-26', 0, '', '5', '68', NULL, 0.00, '', '0', NULL, '2', '....', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 11:08:14', 1, '2021-02-26 11:29:46', 0, NULL, 1),
(3542, 'Santhosh Kumar.S', '6', '9790764331', '9677144937', 'santhoshkumar.s2907@gmail.com', '2000-07-29', 20, '2', '2', 'S.usha', 'Home maker', 5000.00, 1, 0.00, 13000.00, 'Ramapuram', 'Ramapuram', '2102260013', '1', '1', 'upload_files/candidate_tracker/95948064979_Gmail - Kindly Read the JD _ Contact if suitable.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Exp is high for CRM role,not open for field sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 11:20:26', 50, '2021-02-26 12:45:03', 0, NULL, 1),
(3543, 'pradeepkumar', '17', '6384773387', '', 'pradeepkumars423@gmail.com', '1987-03-07', 33, '2', '2', 'shanmugam', 'expired', 50000.00, 1, 0.00, 41000.00, 'villupuram', 'velacherry', '2102260014', '1', '2', 'upload_files/candidate_tracker/94736891583_1607958413139Resume_PRADEEPKUMAR.pdf', NULL, NULL, '2021-02-26', 0, '', '5', '29', NULL, 0.00, '', '0', NULL, '1', 'no Relevance experience, his preference for IT job, need higher package more than 40k', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-02-26 11:48:20', 1, '2021-02-26 11:57:32', 0, NULL, 1),
(3544, '', '0', '7358569543', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 02:38:44', 0, NULL, 0, NULL, 1),
(3545, 'Jibinson chacko', '22', '7358788105', '', 'jibinson21@gmail.com', '1994-07-03', 26, '2', '2', 'Pg chacko', 'Retired', 40.00, 0, 405000.00, 405000.00, 'Portblair', 'Chennai', '2102260016', '1', '2', 'upload_files/candidate_tracker/23540362553_jibin_resume-tpc.pdf', NULL, NULL, '2021-02-27', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant experience.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 02:39:18', 60, '2021-02-27 02:40:05', 0, NULL, 1),
(3546, 'jayapal', '16', '8608460811', '6381132866', 'JPAL3533@GMAIL.COM', '1994-06-25', 26, '2', '2', 'vasuki', 'home maker', 28000.00, 1, 28000.00, 35000.00, 'CHENNAI', 'CHENNAI', '2102260017', '1', '2', 'upload_files/candidate_tracker/31271652381_Jayapal', NULL, NULL, '2021-03-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is average, not much relevant for our MIS ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 03:01:01', 50, '2021-03-03 02:31:45', 0, NULL, 1),
(3547, 'Kishore', '4', '9791825366', '', 'Kishorenandha11@gmail.com', '1998-07-11', 22, '2', '2', 'Ramesh', 'Entrepreneur', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102260018', '1', '1', 'upload_files/candidate_tracker/15630480904_kishore.docx', NULL, NULL, '2021-03-02', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-26 03:44:30', 50, '2021-03-02 05:01:34', 0, NULL, 1),
(3548, 'Ranjan Kumar v', '10', '9840689286', '', 'apps_chella@yahoo.co.in', '1985-03-08', 35, '2', '1', 'Hemaphiliomina', 'Executive operations', 40000.00, 2, 27120.00, 32000.00, 'Puzhal Redhills', 'Puzhal Redhills', '2102260019', '1', '2', 'upload_files/candidate_tracker/92629021898_Ranjan resume.pdf', NULL, NULL, '2021-03-01', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much exp in customer handling.Expectation is high and will not fit for our MIS role', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 04:38:32', 1, '2021-02-26 04:42:29', 0, NULL, 1),
(3549, 'sivakumar', '16', '9941342788', '', 'shivaajim@gmail.com', '1981-05-04', 39, '2', '1', 'muthu', 'worked in private limited company', 31000.00, 3, 31000.00, 32000.00, 'chennai velachery', 'chennai velachery', '2102260020', '1', '2', 'upload_files/candidate_tracker/52719238367_Siva_Resume_Updated_Dec_20.docx', NULL, NULL, '2021-02-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High Experienced profile.Will not get fit for our MIS role.Age around 40', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 04:42:11', 1, '2021-02-26 04:51:28', 0, NULL, 1),
(3550, '', '0', '9790951412', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 04:58:09', 0, NULL, 0, NULL, 1),
(3551, 'jawahar v', '16', '9597732137', '', 'jawaharvenkat92@gmail.com', '1992-06-17', 28, '2', '2', 'venkata perumal k v', 'teacher', 70000.00, 1, 19300.00, 25000.00, 'acharapakkam', 'chennai', '2102260022', '1', '2', 'upload_files/candidate_tracker/86595433509_Jawahar-Resume.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp only in the documentation, no Excel PPT experience. Much focus on the Documentation process', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 05:17:09', 50, '2021-03-01 01:20:46', 0, NULL, 1),
(3552, '', '0', '9003220710', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102260023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-26 05:19:13', 0, NULL, 0, NULL, 1),
(3553, 'Molica T Sangma', '16', '9360070153', '9791181602', 'moulimimisangma@yahoo.com', '1986-06-28', 34, '2', '2', 'Lt Daniel R Marak', 'Ex Army', 50000.00, 7, 3.50, 5.00, 'Meghalaya Shillong', 'Pallikaranai Chennai', '2102260024', '1', '2', 'upload_files/candidate_tracker/43665886980_MIMI CV.docx', NULL, NULL, '2021-03-03', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No local language, the expectation is high.Not much exp in MIS\n', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 05:56:43', 50, '2021-03-03 01:45:21', 0, NULL, 1),
(3554, 'JUSTIN PAUL SAMRAJ B', '5', '8754519318', '', 'justinpaulsamraj@gmail.com', '1996-02-18', 25, '2', '1', 'L Bastin Deva Kumar', 'Teacher', 40000.00, 1, 15000.00, 20000.00, 'Pattabiram Near Avadi', 'Pattabiram Near Avadi', '2102260025', '1', '2', 'upload_files/candidate_tracker/84328585048_file1.pdf', NULL, NULL, '2021-02-27', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability issue, No relevant Exp', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-26 06:29:59', 1, '2021-02-26 06:57:26', 0, NULL, 1),
(3555, 'Balachandar J', '16', '9597670636', '', 'bchand94@gmail.com', '1994-01-02', 27, '2', '2', 'Tamilselvi R', 'Government', 600000.00, 1, 336000.00, 550000.00, 'Chennai', 'Cuddalore', '2102260026', '1', '2', 'upload_files/candidate_tracker/8178551067_Balachandar J_DResume.pdf', NULL, NULL, '2021-02-27', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for service Agreement, an Attitude issue and not fit for our MIS role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 07:23:03', 60, '2021-02-27 10:18:10', 0, NULL, 1),
(3556, 'Rajasekar AR', '16', '9551544113', '', 'rajuar688@gmail.com', '1993-07-19', 27, '2', '2', 'Rammohan', 'RETIRED', 35000.00, 2, 0.00, 300000.00, 'Egmore', 'Egmore', '2102260027', '1', '1', 'upload_files/candidate_tracker/73515914427_A RRajasekar(1)(1).pdf', NULL, NULL, '2021-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-26 07:40:20', 1, '2021-02-26 07:45:12', 0, NULL, 1),
(3557, 'anandakumar a', '5', '8778059546', '', 'akanandha640@gmail.com', '1988-12-19', 32, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2102270001', '3', '2', 'upload_files/candidate_tracker/11554078931_ANANDKUMAR (MBA).docx', NULL, NULL, '2021-02-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 11:14:14', 1, '2021-02-27 11:18:42', 0, NULL, 1),
(3558, 'R.MOHAN', '6', '9551957919', '9003227583', 'mohan5266244@gmail.com', '1998-10-17', 22, '1', '1', 'M.KANNAGI', 'Sales executive', 30000.00, 1, 17500.00, 20000.00, 'No.22salaima nagar Purasaiwallkam chennai-600007', 'No.22salaima Nagar Purasaiwallkam Chennai-600007', '2102270002', '', '2', 'upload_files/candidate_tracker/21445124467_resume_r_mohan_2.doc', NULL, NULL, '2021-02-27', 10, '517', '3', '8', '2021-03-15', 204000.00, '', '6', '2021-09-03', '1', 'Selected For Thiyagu Team,CTC - 2,04,000 With Gross - 17000 xxamp TH - 16150', '5', '1', '1', '1', '1', '', '2', '2021-03-02', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 11:17:12', 7, '2021-03-13 06:49:04', 0, NULL, 1),
(3559, 'M. Kannagi', '4', '9003227583', '9551957919', 'kannagi11799@gmail.com', '1999-07-11', 21, '1', '1', 'R. Mohan', 'Tellecaller', 30000.00, 2, 20000.00, 20000.00, 'No.22 salaima nager purasaiwalkam Chennai 600007', 'No. 22 salaima nager purasaiwalkam Chennai 600007', '2102270003', '', '2', 'upload_files/candidate_tracker/4866625859_Resume.1.pdf', NULL, NULL, '2021-02-27', 5, '517', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate is ok,checked for Esale by Karthika and got rejected', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 11:19:57', 1, '2021-02-27 11:28:57', 0, NULL, 1),
(3560, 'ramkumar c', '16', '9094281300', '', 'ram42442@gmail.com', '1987-05-07', 33, '2', '2', 'a chellappan', 'driver', 20000.00, 1, 25000.00, 28000.00, 'chennai', 'chennai', '2102270004', '1', '2', 'upload_files/candidate_tracker/63027507205_Ram_2021.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much good in communication. have the only exp in Excel', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 11:27:54', 1, '2021-03-01 10:47:25', 0, NULL, 1),
(3561, 'govindaraj', '16', '9790785373', '9445119646', 'govindaraj9790@gmail.com', '1993-06-07', 27, '2', '2', 'subramani', 'farmer', 50000.00, 2, 20500.00, 28000.00, 'tiruvannamalai-kattumalaiyanur', 'chennai-sembakkam', '2102270005', '1', '2', 'upload_files/candidate_tracker/95373773412_Govindaraj-CV_Email.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication as we expected for MIS', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 01:34:30', 50, '2021-03-01 11:33:49', 0, NULL, 1),
(3562, '', '0', '6281479914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102270006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-27 01:53:44', 0, NULL, 0, NULL, 1),
(3563, 'C.Balaji', '13', '7200224914', '', 'justinbala1997@gmail.com', '1997-10-24', 23, '3', '2', 'K.chandrababu', 'Coolie', 12000.00, 1, 0.00, 8000.00, 'Mkb nagar, Chennai', 'Mkb nagar, Chennai', '2102270007', '', '1', 'upload_files/candidate_tracker/3376028904_balaji resume (1).docx', NULL, NULL, '2021-02-27', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Dont have a basic knowledge. rejected by latha', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 02:34:37', 1, '2021-02-27 02:39:03', 0, NULL, 1),
(3564, 'Rupapriya S', '6', '8825413103', '7358581336', 'priyaallset@gmail.com', '1997-11-22', 23, '1', '2', 'Devi', 'House wife', 15000.00, 1, 16000.00, 20000.00, 'Korukkupet', 'Korukkupet', '2102270008', '', '2', 'upload_files/candidate_tracker/12368790570_rupapriya resume.pdf', NULL, NULL, '2021-02-27', 2, 'P1029', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Insurance Sales.Sustainability issue', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-27 02:35:16', 60, '2021-02-27 02:55:26', 0, NULL, 1),
(3565, 'Kishore Kumar k', '16', '9994764971', '', 'kishore90.kumar@gmail.com', '1990-10-10', 30, '2', '1', 'Abinaya Ranjana TK', 'Freelancer-Tour Consultant', 15000.00, 1, 15000.00, 20000.00, 'Dindigul', 'Vandalur', '2102270009', '1', '2', 'upload_files/candidate_tracker/30076262095_kishore-1.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Will not suite for Co Coordinator MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 03:36:30', 1, '2021-02-27 03:42:01', 0, NULL, 1),
(3566, 'Mohammed Sabeel K', '22', '9087028535', '9345399760', 'sabeelkmohammed@gmail.com', '1999-06-02', 21, '2', '2', 'Abdullah Basha K', 'Car Driver', 1800.00, 0, 12595.00, 15000.00, 'Vaniyambadi', 'chennai', '2102270010', '1', '2', 'upload_files/candidate_tracker/83299293251_kms.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Already attended for IT opening,now came for Digital Marketing will not suit for the DM Role\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 03:57:06', 1, '2021-04-28 11:11:14', 0, NULL, 1),
(3567, 'Karthi k', '2', '6381533052', '', 'karthivijay0987@gmail.com', '1999-07-11', 21, '2', '2', 'Kumar', 'Farmer', 12000.00, 1, 0.00, 12000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2102270011', '1', '1', 'upload_files/candidate_tracker/20584300981_Resume.pdf', NULL, NULL, '2021-03-04', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-03-10', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 04:32:55', 1, '2021-02-27 05:44:34', 0, NULL, 1),
(3568, 'Yogesh A', '3', '9094054451', '8072042798', 'yogeshrathika@gmail.com', '1996-06-30', 24, '2', '2', 'Rathika R', 'None', 8000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2102270012', '1', '1', 'upload_files/candidate_tracker/70711529947_YogeshA9094054451.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He is much into testing, will not get fit for our Mern', '2', '2', '0', '1', '1', '0', '2', '2021-03-04', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 04:46:50', 1, '2021-02-27 04:52:20', 0, NULL, 1),
(3569, '', '0', '9566008134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102270013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-27 05:43:26', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3570, '', '0', '9500172221', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102270014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-27 05:50:47', 0, NULL, 0, NULL, 1),
(3571, 'Punith jain', '22', '8015515527', '9940681774', 'Punithashokjain@Gmail', '2001-02-12', 20, '2', '2', 'Ashok', 'Jewellery', 20000.00, 0, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2102270015', '1', '1', 'upload_files/candidate_tracker/63140560873_PunithJain_InternshalaResume.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate has less verbal skills and not good for long-term.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 06:19:36', 60, '2021-03-01 09:43:49', 0, NULL, 1),
(3572, 'Namith jain', '22', '9940681774', '9500065848', 'namithkhanted@gmail.com', '2000-06-16', 20, '2', '2', 'Mahipal jain', 'Student', 25000.00, 2, 0.00, 600000.00, '121 anna pillai st', 'Chennai', '2102270016', '1', '1', 'upload_files/candidate_tracker/22028920781_NamithJain_InternshalaResume (1).pdf', NULL, NULL, '2021-03-01', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Has Less Verbal Skills And Not Good For Long-Term.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 06:23:35', 50, '2021-03-01 10:39:30', 0, NULL, 1),
(3573, '', '0', '8220101666', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2102270017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-02-27 10:07:08', 0, NULL, 0, NULL, 1),
(3574, 'Naveen S', '16', '9841193618', '', 'naveengandhi1998@gmail.com', '1998-03-19', 22, '2', '2', 'K S Gandhi', 'Sub Inspector Of police', 40000.00, 1, 500000.00, 400000.00, 'Chennai', 'Chennai', '2102270018', '1', '2', 'upload_files/candidate_tracker/88900277593_NaveenResume.pdf', NULL, NULL, '2021-03-01', 30, '', '5', '54', NULL, 0.00, '', '0', NULL, '1', 'He will not sustain', '3', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-02-27 11:10:41', 1, '2021-02-27 11:26:09', 0, NULL, 1),
(3575, 'r divakar', '5', '7904288969', '', 'divakarravi543@gmail.com', '1997-11-28', 23, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 15000.00, 'chennai', 'chennai', '2102280001', '3', '2', 'upload_files/candidate_tracker/23442135486_divakar_resume.pdf', NULL, NULL, '2021-03-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 10:33:04', 50, '2021-03-01 04:39:48', 0, NULL, 1),
(3576, 'porchezhyan', '5', '9710843696', '', 'porchezhyan.24@gmail.com', '1997-05-09', 23, '2', '2', 'none', 'none', 17000.00, 0, 17000.00, 17000.00, 'chennai', 'chennai', '2102280002', '3', '2', 'upload_files/candidate_tracker/51958857538_porch resume.docx', NULL, NULL, '2021-03-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 10:42:16', 50, '2021-03-01 04:41:54', 0, NULL, 1),
(3577, 'jegadeeshvaran p', '5', '9094431623', '', 'jegadeeshwara@gmail.com', '1991-01-10', 30, '2', '2', 'none', 'none', 15000.00, 0, 15000.00, 17000.00, 'chennai', 'chennai', '2102280003', '3', '2', 'upload_files/candidate_tracker/67894046526_Jegadeeshwara resume.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much communicative, will not fit for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 10:53:50', 50, '2021-03-01 04:39:56', 0, NULL, 1),
(3578, 'h prakash', '5', '8056925985', '', 'prakashari2017@gmail.com', '1992-10-24', 28, '2', '2', 'none', 'none', 17000.00, 0, 17000.00, 17000.00, 'chennai', 'chennai', '2102280004', '3', '2', 'upload_files/candidate_tracker/66233554455_CamScanner 11-21-2020 21.15.58.pdf', NULL, NULL, '2021-03-01', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 11:04:30', 50, '2021-03-01 04:42:52', 0, NULL, 1),
(3579, 'ganesan s', '5', '8122051946', '', 'ganagane2018@gmail.com', '1998-12-04', 22, '2', '2', 'none', 'none', 18000.00, 0, 15000.00, 15000.00, 'chennai', 'chennai', '2102280005', '3', '2', 'upload_files/candidate_tracker/7682144850_1614347711169.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain and the expectation is high for Telecaller', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-02-28 11:18:16', 50, '2021-03-01 10:57:09', 0, NULL, 1),
(3580, 'Srivasthava M', '4', '7358424388', '8667253693', 'srivasthava18@gmail.com', '1998-02-10', 23, '2', '2', 'SRIDHAR', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2102280006', '1', '1', 'upload_files/candidate_tracker/40287718983_Vasthu_Resume.dox[1].pdf', NULL, NULL, '2021-03-03', 0, '', '3', '59', '2021-03-04', 132000.00, '', '3', '2021-04-30', '2', '11K CTC,10450 TH for Muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-02-28 05:31:06', 60, '2021-03-03 04:40:18', 0, NULL, 1),
(3581, '', '0', '9000000000', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103010001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-01 07:11:26', 0, NULL, 0, NULL, 1),
(3582, '', '0', '7708348679', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103010002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-01 10:11:22', 0, NULL, 0, NULL, 1),
(3583, 'Malathi.M', '4', '9025173011', '7338720789', 'malathimagesh9710@gmail.com', '2000-04-22', 20, '1', '2', 'Vijay.M', 'electrition', 60000.00, 1, 0.00, 15000.00, 'pushpavathi Ammal Street.west Mambalam.chennai33', 'west mambalam', '2103010003', '', '1', 'upload_files/candidate_tracker/17629849903_pdf.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up, no communication. Will not fit for our sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-01 10:36:29', 50, '2021-03-01 12:22:03', 0, NULL, 1),
(3584, 'Karpagavalli S', '4', '9600781478', '', 'Kuttyofficial00@gmail.com', '2000-09-09', 20, '1', '2', 'Saravanan', 'Sweeper', 80000.00, 1, 0.00, 11000.00, 'Rajapalayam', 'Perungudi', '2103010004', '', '1', 'upload_files/candidate_tracker/30203555745_KARPAGAVALLI RESUME.pdf', NULL, NULL, '2021-03-01', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Convincing Skills very low so not fit for Telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-01 11:05:06', 1, '2021-03-01 11:13:17', 0, NULL, 1),
(3585, 'D.ANANTH', '6', '7339356921', '7826970484', 'anandurai533@gmail.com', '1991-03-21', 29, '2', '2', 'Suguna', 'House wife', 25000.00, 1, 15300.00, 16000.00, 'Tindivanam taluk', 'Tambaram', '2103010005', '1', '2', 'upload_files/candidate_tracker/81144759688_Ananth.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not ok for voice process .. pronunciation is not clear ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-01 11:20:28', 50, '2021-03-01 11:34:37', 0, NULL, 1),
(3586, 'Praveen S', '2', '8778080423', '', 'praveensaravananoff@gmail.com', '2000-04-07', 20, '2', '2', 'Ranjitha', 'Business woman', 20000.00, 1, 0.00, 500000.00, 'Avadi', 'Avadi', '2103010006', '1', '1', 'upload_files/candidate_tracker/44869431706_Praveen_S_resume.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Profile ok, Very High CTC Expectation.Focus only on the package', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 11:36:36', 50, '2021-03-06 10:51:02', 0, NULL, 1),
(3587, 'SALIL KUSHWAHA', '5', '9935235678', '', 'salilkushwaha99@gmail.com', '1999-03-19', 21, '2', '2', 'Mr Ashwani Kushwaha', 'Private job', 15000.00, 1, 300000.00, 300000.00, 'Kanpur, Uttar Pradesh', 'Avadi, Chennai', '2103010007', '1', '2', 'upload_files/candidate_tracker/62157805170_Salil kushwaha (resume).pdf', NULL, NULL, '2021-03-01', 0, '', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not fit', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-01 11:44:17', 50, '2021-03-01 12:00:56', 0, NULL, 1),
(3588, 'mary selsiya', '4', '7358320625', '', 'selsiya12345678@gmail.com', '2000-03-08', 20, '2', '2', 'joseph', 'binder', 10000.00, 1, 0.00, 10000.00, 'chennai', 'royapuram', '2103010008', '2', '1', 'upload_files/candidate_tracker/82775134082_selsiya.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much communicative, will not fit for our CRM sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-01 11:49:37', 50, '2021-03-01 12:53:43', 0, NULL, 1),
(3589, 'Gokulan', '20', '6379011381', '', 'gokulang199@gmail.com', '1998-10-31', 22, '2', '2', 'Gunasekaran', 'Farmer', 18000.00, 1, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2103010009', '1', '1', 'upload_files/candidate_tracker/63747456386_GOKULAN@.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He was not clear in his position focussed. Just in need of money looking for a job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-01 12:12:12', 50, '2021-03-01 12:23:08', 0, NULL, 1),
(3590, 'ezhilarasan', '22', '9600557538', '9710513104', 'sezhilarasan95@gmail.com', '1995-10-20', 25, '3', '2', 'selvaraj', 'nil', 15000.00, 1, 26000.00, 20000.00, 'Chennai', 'Chennai', '2103010010', '', '2', 'upload_files/candidate_tracker/65216504176_FORD RESUME 2020.pdf', NULL, NULL, '2021-03-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our MIS Coordinator,Communication is not that much ok', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-01 12:31:48', 50, '2021-03-01 04:41:11', 0, NULL, 1),
(3591, '', '0', '8925402130', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103010011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-01 02:21:02', 0, NULL, 0, NULL, 1),
(3592, 'Karan Mandanna', '22', '8939339580', '', 'karanmandanna95@gmail.com', '1995-09-06', 25, '2', '2', 'K S Mandanna', 'Horse trainer', 40000.00, 0, 25000.00, 25000.00, 'Chennai', 'Chennai', '2103010012', '1', '2', 'upload_files/candidate_tracker/35635538055_Karan Mandanna CV (1).pdf', NULL, NULL, '2021-03-03', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High salary expectation\n', '2', '2', '', '1', '1', '', '2', '2021-03-08', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 03:29:28', 50, '2021-03-03 11:10:39', 0, NULL, 1),
(3593, '', '0', '8667270174', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103010013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-01 03:30:55', 0, NULL, 0, NULL, 1),
(3594, 'E. Shalini', '16', '6381567399', '', 'elumalaishalini21@gmail.com', '1987-10-21', 33, '2', '2', 'Elumalai', 'Supervisor', 15000.00, 1, 20000.00, 35000.00, 'Ayanavaram Chennai', 'Ayanavaram Chennai', '2103010014', '1', '2', 'upload_files/candidate_tracker/72272686295_Resume of Shalini.docx', NULL, NULL, '2021-03-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much exp in MIS activities, Communication is not up to the mark as we expected. High Exp and the expectation is high.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 03:45:58', 1, '2021-03-01 04:25:09', 0, NULL, 1),
(3595, 'Ranjith Kumar S', '16', '9514415577', '', 'Miracleranji143@gmail.com', '1990-08-01', 30, '2', '2', 'Sekar', 'Driver', 20000.00, 2, 18000.00, 22000.00, 'Thiruvanamalai', 'Chennai', '2103010015', '1', '2', 'upload_files/candidate_tracker/90101970778_Ranjith Resume.docx', NULL, NULL, '2021-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Communication is not good. dont have that much knowledge in excel and ppt.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 05:39:17', 1, '2021-03-01 09:13:06', 0, NULL, 1),
(3596, 'Sophia rani', '16', '9025704703', '', 'sophiarani19@gmail.com', '1995-06-19', 25, '2', '2', 'Helen victor', 'House wife', 2.00, 2, 2.40, 2.80, 'Kodambakkam', 'Kodambakkam', '2103010016', '1', '2', 'upload_files/candidate_tracker/18013758064_TRM LINK AND PASSWORD.docx', NULL, NULL, '2021-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability doubt in this field, her focus is much into Accounts/Admin', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 05:53:36', 50, '2021-03-02 11:14:20', 0, NULL, 1),
(3597, 'Karthik.R', '25', '9790796556', '', 'Karthikraghuraman2@gmail.com', '1995-06-16', 25, '2', '2', 'Raghuraman.G', 'Watchman', 30000.00, 1, 0.00, 20000.00, 'Avadi', 'Avadi', '2103010017', '1', '1', 'upload_files/candidate_tracker/19289406376_CV_2020-12-13-014234.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher with avg communication, no clarity in speech and will not suite for RM.', '8', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-01 07:06:07', 1, '2021-03-02 11:27:59', 0, NULL, 1),
(3598, 'ranjith kumar s', '16', '9514415566', '', 'miracleranji143@gmail.com', '1990-08-01', 30, '2', '2', 'sekar', 'driver', 20000.00, 3, 18000.00, 21000.00, 'tiruvanamalai', 'chennai', '2103010018', '1', '2', 'upload_files/candidate_tracker/72837178772_Ranjith Resume.docx', NULL, NULL, '2021-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-01 09:23:06', 1, '2021-03-01 09:25:46', 50, '2021-03-02 10:30:29', 0),
(3599, '', '0', '8939646675', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103020001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-02 12:05:58', 0, NULL, 0, NULL, 1),
(3600, 'Karthik R', '5', '9940253242', '9080726874', 'Karthikcharles001@gmail.com', '1996-12-23', 24, '2', '2', 'ROBIN S', 'Diver', 20000.00, 1, 2.50, 24000.00, '7/20vel nagar EB colony 3rd adambakkam chennai', '7/20vel Nagar EB colony 3rd Adambakkam chennai', '2103020002', '1', '2', 'upload_files/candidate_tracker/22584096322_Karthik_Resume 1.pdf', NULL, NULL, '2021-03-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-02 09:58:55', 50, '2021-03-03 04:49:15', 0, NULL, 1),
(3601, 'Ruban', '5', '9094705636', '', 'rubanroob15@gmail.com', '1992-12-15', 28, '3', '2', 'Alli Rani', 'House wife', 25000.00, 1, 4.00, 3.00, 'Chennai', 'Perambur', '2103020003', '', '2', 'upload_files/candidate_tracker/55132214949_M.RubanCV.PDF', NULL, NULL, '2021-03-03', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for 3.5l. sal package doesnt match', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-02 10:28:16', 50, '2021-03-03 10:28:01', 0, NULL, 1),
(3602, 'yogeshwari', '16', '9629483536', '', '9629483536ram@gmail.com', '1994-04-02', 26, '2', '1', 'srinivasan', 'nil', 5000.00, 0, 16000.00, 18000.00, 'chennai', 'velacherry', '2103020004', '2', '2', 'upload_files/candidate_tracker/1958884258_yogeswari update resume.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'communication is not good and has only 6 months exp in backend. doesnt have that much knowledge in excel and PPT', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-02 10:34:44', 1, '2021-03-02 10:37:00', 0, NULL, 1),
(3603, 'Poonkuzhali', '16', '9345127616', '', 'poohkamaraj18@gmail.com', '1996-07-18', 24, '2', '2', 'Kamaraj', 'Business', 5.00, 1, 2.50, 3.30, 'Mannargudi', 'Thoraipakkam', '2103020005', '1', '2', 'upload_files/candidate_tracker/97577589192_Poonkuzhali Resume.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate ok, but only 50/50 for our MIS', '3', '2', '', '1', '1', '', '2', '2021-03-04', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 10:48:44', 50, '2021-03-02 11:09:50', 0, NULL, 1),
(3604, 'nirmal', '6', '8098285112', '', 'nirmalumabalan@gmail.com', '1998-01-27', 23, '2', '2', 'umabalan', 'iic', 50000.00, 1, 0.00, 20000.00, 'sivakasi', 'ashok nagar chennai', '2103020006', '1', '1', 'upload_files/candidate_tracker/61924563780_Nirmal_Umabalan_MBA_Resume.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'father is working in LIC and exp sal is 18k+. will not sustain.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 11:15:53', 50, '2021-03-02 11:26:32', 0, NULL, 1),
(3605, 'udhayakumar r', '16', '9095590225', '9080024215', 'toudhayainbox@gmail.com', '1995-04-15', 25, '2', '2', 'ravikumar t', 'farmer', 20000.00, 2, 22000.00, 26000.00, 'east street thirukkarugavur', 'potter street saidapet', '2103020007', '1', '2', 'upload_files/candidate_tracker/3748534704_CV - Udhayakumar R.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not turned up', '3', '2', '', '1', '1', '', '2', '2021-03-03', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 11:19:18', 50, '2021-03-02 12:29:33', 0, NULL, 1),
(3606, 'Vignesh.m', '6', '8939788307', '', 'jaivignesh04@gmail.com', '1997-12-04', 23, '1', '2', 'Manicavel', 'Own business', 25000.00, 2, 0.00, 10000.00, '103/33 raman st, royapuram, chennai 600013', 'Chennai', '2103020008', '', '1', 'upload_files/candidate_tracker/35356518153_BCom-1.pdf', NULL, NULL, '2021-03-02', 0, 'P1065', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Internal Reference, Not much active will not sustain for our sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-02 11:28:35', 50, '2021-03-02 12:07:36', 0, NULL, 1),
(3607, 'Hariprasad', '5', '9790095200', '', 'hariramprasath@yahoo.co.in', '1986-09-01', 34, '2', '1', 'Divya', 'Working', 20000.00, 0, 0.00, 600000.00, 'Chennai', 'Chennai', '2103020009', '1', '2', 'upload_files/candidate_tracker/63625995736_Resume Hariprasad.pdf', NULL, NULL, '2021-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No relevant Exp, only 6 months initial exp in Shriram Insurance, Jumped another job due to pressure. Will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 11:53:00', 50, '2021-03-02 12:20:17', 0, NULL, 1),
(3608, 'Anandavalli N', '16', '9095315739', '9884459530', 'jananirama2294@gmail.com', '1994-08-22', 26, '2', '1', 'Hari Hara Subramanian', 'Assistant manager', 60000.00, 1, 310000.00, 400000.00, 'Madurai', 'Chennai', '2103020010', '1', '2', 'upload_files/candidate_tracker/18300926876_Resume - Anandavalli - Accounting Profile.doc', NULL, NULL, '2021-03-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for the agreement, Interest towards BPO', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 12:10:59', 1, '2021-03-02 12:17:35', 0, NULL, 1),
(3609, 'Parivallal M', '16', '8754767301', '9025601323', 'Cloud9898@hotmail.com', '1990-06-07', 30, '2', '2', 'MEHARAJAN p', 'Agri', 22000.00, 1, 280000.00, 364000.00, 'Chennai', 'Tharamani', '2103020011', '1', '2', 'upload_files/candidate_tracker/35209529602_Pari Vallal M profile (2).docx', NULL, NULL, '2021-03-03', 5, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no language and will not suite for MIS', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 12:38:44', 1, '2021-03-02 12:50:44', 0, NULL, 1),
(3610, '', '0', '8608770238', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103020012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-02 02:33:59', 0, NULL, 0, NULL, 1),
(3611, 'Muruganandham', '13', '8807415701', '', 'Muruganofear007@gmail.com', '1997-04-05', 23, '2', '2', 'Muthukrishnan', 'Famer', 24000.00, 0, 24000.00, 40000.00, 'Panruti', 'maduravoyal', '2103020013', '1', '2', 'upload_files/candidate_tracker/42334339406_Muruganandham_Muthukrishnan_updated.pdf', NULL, NULL, '2021-03-04', 45, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 02:41:42', 1, '2021-03-02 02:44:19', 0, NULL, 1),
(3612, 'C.gopi', '4', '8608907370', '', 'gopichinnaiya@gmail.com', '1997-11-19', 23, '2', '2', 'Ramya', 'House wife', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2103020014', '1', '2', 'upload_files/candidate_tracker/18777026483_RESUME_Gopi.docx', NULL, NULL, '2021-03-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location constraint.No Bike for CRM package need to check with family\n', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-02 02:45:39', 1, '2021-03-02 02:49:48', 0, NULL, 1),
(3613, 'Raghavaan', '16', '7299196181', '8668190684', 'raghavaan01@gmail.com', '1995-04-03', 25, '2', '2', 'L.N.Venkatesan', 'Retired', 50000.00, 1, 250000.00, 30000.00, 'Chennai', 'Chennai', '2103020015', '1', '2', 'upload_files/candidate_tracker/35721008692_Resume.pdf', NULL, NULL, '2021-03-06', 20, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'comm is below avg. will not suite for mis', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 02:50:05', 50, '2021-03-06 02:58:54', 0, NULL, 1),
(3614, '', '0', '9716849947', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103020016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-02 03:16:25', 0, NULL, 0, NULL, 1),
(3615, 'Satheeskumar G', '22', '9442352657', '8838115695', 'sathishvidyut@gmail.com', '1997-08-01', 23, '2', '2', 'K Ganesan', 'Farmer', 4.00, 0, 0.00, 1.00, 'Tuticorin', 'Chennai', '2103020017', '1', '1', 'upload_files/candidate_tracker/34201643518_SK Resume.pdf', NULL, NULL, '2021-03-03', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 03:29:49', 50, '2021-03-03 04:40:34', 0, NULL, 1),
(3616, 'Kiruba nithi', '11', '9894437427', '', 'kirubanithi313@gmail.com', '2000-06-09', 20, '2', '2', 'K.s.magadevan', 'Village president', 70000.00, 2, 0.00, 15000.00, 'Karunguzgi', 'Karunguzgi', '2103020018', '1', '1', 'upload_files/candidate_tracker/49256701890_M.kiruba nithi.pdf', NULL, NULL, '2021-03-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-02 03:47:52', 1, '2021-03-02 03:58:04', 0, NULL, 1),
(3617, 'Swetha nandhakumar', '5', '6380923225', '9790978681', 'swethazara1524@gmail.com', '1998-12-24', 22, '2', '2', 'Nandhakumar', 'Plumber', 25000.00, 1, 15000.00, 20000.00, 'Kolathur', 'Kolathur', '2103020019', '1', '2', 'upload_files/candidate_tracker/29448437205_SWETHA- RESUME-REVISED (1)-1.docx', NULL, NULL, '2021-03-02', 2, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-02 03:49:38', 50, '2021-03-02 05:02:04', 0, NULL, 1),
(3618, 'SARAVANAKUMAR V', '16', '9788825567', '', 'saravanayoga65@gmail.com', '1995-06-29', 25, '2', '2', 'VADIVEL P', 'Farmer', 10000.00, 1, 24700.00, 28000.00, 'SALEM', 'SALEM', '2103020020', '1', '2', 'upload_files/candidate_tracker/71034943833_Saravana_Resume.pdf', NULL, NULL, '2021-03-08', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 04:52:04', 1, '2021-03-02 04:55:04', 0, NULL, 1),
(3619, '', '0', '8940361796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103020021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-02 06:12:39', 0, NULL, 0, NULL, 1),
(3620, 'Sonu Thomas', '16', '7904447913', '', 'sonuthomas.st@gmail.com', '1995-08-06', 25, '2', '1', 'Sigimol', 'Senior Process Associate', 14000.00, 1, 420000.00, 450000.00, 'Chennai', 'Chennai', '2103020022', '1', '2', 'upload_files/candidate_tracker/81601338842_Sonu CV.pdf', NULL, NULL, '2021-03-04', 7, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Written communication is not good', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-02 08:02:43', 7, '2021-03-04 03:21:13', 0, NULL, 1),
(3621, '', '0', '9003480980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 09:48:07', 0, NULL, 0, NULL, 1),
(3622, 'Vignesh k', '6', '9884263151', '7010730084', 'vigneshsam22@gmail.com', '1998-06-22', 22, '2', '2', 'Kamaraj', 'Chennai', 18000.00, 1, 15000.00, 18000.00, 'Chennai', 'Minjur', '2103030002', '1', '2', 'upload_files/candidate_tracker/50468044432_vickyresume[1] (1) (1).docx', NULL, NULL, '2021-03-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-03 12:00:11', 1, '2021-03-03 12:14:24', 0, NULL, 1),
(3623, 'Kiran nallathambi', '5', '7395960931', '9750018368', 'vijaykishore199833@gmail.com', '1998-09-04', 22, '1', '2', 'Nallathambi', 'Farmer', 300000.00, 1, 21000.00, 26000.00, 'SankaraPuram', 'Mount road', '2103030003', '', '2', 'upload_files/candidate_tracker/16064419060_0_1609046873213Resume_kiran.pdf', NULL, NULL, '2021-03-03', 0, '55634', '3', '8', '2021-03-16', 261696.00, '', '4', '2021-06-23', '1', 'For Veben Team,CTC - 2,61,696 With Monthly Gross - 21808 xxamp TH - 18000', '5', '2', '4', '1', '1', '', '2', '2021-03-11', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-03 12:22:01', 7, '2021-03-15 06:20:55', 0, NULL, 1),
(3624, 'Dinesh sk', '6', '9487064254', '8072491813', 'dineshdinu5115@gmail.com', '1997-01-05', 24, '2', '2', 'Saravanan R', 'Purchase Manager at jewellery', 40000.00, 1, 300000.00, 350000.00, 'Salem', 'Chennai', '2103030004', '1', '2', 'upload_files/candidate_tracker/72912628703_Dinesh resume 1(1)-converted.pdf', NULL, NULL, '2021-03-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-03 12:27:48', 50, '2021-03-03 01:20:00', 0, NULL, 1),
(3625, 'suchita bisani', '22', '9383306633', '', 'suchita.bisani@gmail.com', '1983-06-09', 37, '2', '1', 'piyush bisani', 'business', 200000.00, 2, 1.00, 500000.00, 'chennai', 'chennai', '2103030005', '1', '2', 'upload_files/candidate_tracker/46268753114_Suchita_CV(Final).pdf', NULL, NULL, '2021-03-09', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability issue', '2', '2', '', '1', '1', '', '2', '2021-03-12', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-03 12:51:40', 7, '2021-03-09 03:23:22', 0, NULL, 1),
(3626, 'A.elango', '20', '7358304157', '8939329118', 'elango1299@gmail.com', '1999-06-12', 21, '2', '2', 'Athamanathan', 'Indian', 15.00, 1, 0.00, 15.00, 'Chennai', 'Kk nagar', '2103030006', '1', '1', 'upload_files/candidate_tracker/91375626160_ELANGO A.pdf', NULL, NULL, '2021-03-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-03 12:55:47', 1, '2021-03-03 01:10:43', 0, NULL, 1),
(3627, 'Jayanthi R', '16', '9384871584', '9384863958', 'sweetyjay561@gmail.com', '1991-05-06', 29, '4', '2', 'Rajendran R', 'Finance', 400000.00, 0, 23800.00, 25000.00, 'Chennai', 'Chennai', '2103030007', '', '2', 'upload_files/candidate_tracker/16599619432_jayanthi resume.docx', NULL, NULL, '2021-03-03', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not worth fr 25k, having another offer also.', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-03 01:40:31', 1, '2021-03-03 02:01:38', 0, NULL, 1),
(3628, 'Surendar K', '26', '8778526218', '9600103519', 'surendar3838@gmail.com', '1989-04-22', 31, '2', '1', 'Saranya R', 'Housewife', 1000.00, 2, 30000.00, 30000.00, 'Chennai', 'Chennai', '2103030008', '1', '2', 'upload_files/candidate_tracker/85408934017_Surendar_K resume QA-converted.docx', NULL, NULL, '2021-03-03', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'language is not good and salary exp is 4L+.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-03 01:41:59', 8, '2021-03-03 02:58:27', 0, NULL, 1),
(3629, 'AHAMED ABDUL CADER', '16', '9600429100', '', 'snmabdulkader28@gmail.com', '1997-08-28', 23, '2', '2', 'Aysha', 'House wife', 5000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2103030009', '1', '1', 'upload_files/candidate_tracker/98934338828_snm.file.pdf', NULL, NULL, '2021-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-03 04:24:15', 1, '2021-03-03 04:29:16', 0, NULL, 1),
(3630, 'Rajkumar', '22', '9176379806', '7904288708', 'rajkumar20799@gmail.com', '1999-07-20', 21, '2', '2', 'Vijaya Kumar', 'Student', 600000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2103030010', '1', '1', 'upload_files/candidate_tracker/24087693501_RajKumar_InternshalaResume.pdf', NULL, NULL, '2021-03-04', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'The candidate wonxquott sustain for the long term', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-03 05:01:06', 60, '2021-03-09 12:14:15', 0, NULL, 1),
(3631, '', '0', '9043102252', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 07:01:24', 0, NULL, 0, NULL, 1),
(3632, '', '0', '8939496196', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 07:43:35', 0, NULL, 0, NULL, 1),
(3633, 'R.Veyil Rani', '13', '6374191180', '9698148539', 'veyilrani@gmail.com', '1998-01-21', 23, '2', '2', 'R.Rajarathinam', 'Kooli', 20000.00, 0, 10000.00, 20000.00, 'Virudhunagar', 'Virudhunagar', '2103030013', '1', '2', 'upload_files/candidate_tracker/14876560173_RESUME.pdf', NULL, NULL, '2021-03-13', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-03 09:04:50', 7, '2021-03-13 06:40:39', 0, NULL, 1),
(3634, '', '0', '8973863094', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 11:24:30', 0, NULL, 0, NULL, 1),
(3635, '', '0', '9003010332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103030015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-03 11:45:13', 0, NULL, 0, NULL, 1),
(3636, '', '0', '8438424840', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 03:27:37', 0, NULL, 0, NULL, 1),
(3637, '', '0', '8438424840', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 03:29:03', 0, NULL, 0, NULL, 1),
(3638, 'Dinesh', '5', '9600052830', '9710053145', 'dinu53145@gmail.com', '1995-04-11', 25, '2', '2', 'Dhanasekaran', 'Salaried', 10000.00, 2, 350000.00, 500000.00, 'Chennai', 'Chennai', '2103040003', '1', '2', 'upload_files/candidate_tracker/79233403836_dinesh resum new.pdf', NULL, NULL, '2021-03-05', 0, '', '3', '8', '2021-03-16', 380000.00, '', '2', '1970-01-01', '1', 'CTC - 3,80,000 With Gross - 31667 xxamp TH - 27859 for shanmugam', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-04 04:05:21', 7, '2021-03-15 09:54:51', 0, NULL, 1),
(3639, '', '0', '9600052830', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:06:13', 0, NULL, 0, NULL, 1),
(3640, '', '0', '1122334455', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:08:34', 0, NULL, 0, NULL, 1),
(3641, 'velmurugan G', '6', '7299628797', '8838640309', 'velmurugan.hb05@gmail.com', '1994-07-05', 26, '2', '2', 'Ganesan', 'Building contractor', 20000.00, 1, 17000.00, 20000.00, 'jafferkhanpet, chennai', 'jafferkhanpet, chennai', '2103040006', '1', '2', 'upload_files/candidate_tracker/78381945829_Vel Resume 2020.docx', NULL, NULL, '2021-03-08', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'not fit for sales', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-04 04:09:32', 1, '2021-03-08 12:33:41', 0, NULL, 1),
(3642, '', '0', '9789963434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:11:13', 0, NULL, 0, NULL, 1),
(3643, '', '0', '7299628797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:18:08', 0, NULL, 0, NULL, 1),
(3644, '', '0', '7299628797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:25:30', 0, NULL, 0, NULL, 1),
(3645, '', '0', '7299628797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 04:31:28', 0, NULL, 0, NULL, 1),
(3646, 'S K Yuvaraj', '16', '9600500826', '6374270568', 'yuvarajsaif@gmail.com', '1996-07-26', 24, '2', '2', 'S Kumar', 'Employee', 50000.00, 1, 0.00, 17000.00, 'Avadi', 'Avadi', '2103040011', '1', '1', 'upload_files/candidate_tracker/20744545444_1 YUVI-converted (4).pdf', NULL, NULL, '2021-03-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication below avg, no knowledge in excel and ppt.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-04 05:12:22', 50, '2021-03-05 12:15:00', 0, NULL, 1),
(3647, '', '0', '7092342548', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 05:27:58', 0, NULL, 0, NULL, 1),
(3648, 'koteeswaran', '16', '9445712235', '', 'kotiairport@gmail.com', '1991-05-30', 29, '2', '2', 'thangapandian', 'retired business man', 30000.00, 1, 33500.00, 30000.00, 'chennai', 'chennai', '2103040013', '1', '2', 'upload_files/candidate_tracker/43554266525_New Resume koti.docx', NULL, NULL, '2021-03-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, Bit Attitude will not much suits for our role ', '3', '2', '', '1', '1', '', '2', '2021-03-17', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-04 05:39:46', 50, '2021-03-05 12:23:37', 0, NULL, 1),
(3649, '', '0', '7092342548', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 05:52:42', 0, NULL, 0, NULL, 1),
(3650, 'Nashwa nazeer', '22', '9656647116', '', 'nazeernashwa118@gmail.com', '1997-06-25', 23, '2', '1', 'Mohammed Jaseem', 'Biomedical engineer', 50000.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2103040015', '1', '1', 'upload_files/candidate_tracker/19147244233_Nashwa_CV_Latest 11Mar20.docx', NULL, NULL, '2021-03-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge in digital Marketing, Her field of knowledge in Interior Design, and need time to think on the agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-04 06:43:26', 50, '2021-03-05 12:13:05', 0, NULL, 1),
(3651, '', '0', '7092342548', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 06:56:58', 0, NULL, 0, NULL, 1),
(3652, '', '0', '9445712235', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 07:23:00', 0, NULL, 0, NULL, 1),
(3653, '', '0', '9551446976', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 08:52:08', 0, NULL, 0, NULL, 1),
(3654, '', '0', '9445712235', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103040019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-04 11:07:39', 0, NULL, 0, NULL, 1),
(3655, '', '0', '7299628797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 08:55:03', 0, NULL, 0, NULL, 1),
(3656, '', '0', '9042080728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 09:59:39', 0, NULL, 0, NULL, 1),
(3657, 'singaravelu sv', '4', '8807361842', '', 'Singaraveluveeramani@gmail.com', '1998-08-26', 22, '2', '2', 'veeramani s', 'political', 90000.00, 1, 0.00, 13000.00, 'thriuthuraipoondi', 'chrompet', '2103050003', '1', '1', 'upload_files/candidate_tracker/33132313580_SV Singaravelu Resume.doc', NULL, NULL, '2021-03-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 10:31:15', 50, '2021-03-05 10:54:07', 0, NULL, 1),
(3658, '', '0', '8248615922', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 11:28:15', 0, NULL, 0, NULL, 1),
(3659, 'Sathish.p', '4', '8925082778', '9841025841', 'sathishkannankannan2@gmail.com', '2000-03-21', 20, '2', '2', 'R.perumal', 'Auto driver', 90000.00, 1, 0.00, 15000.00, 'Oldwashmenpet', 'Oldwashmenpet', '2103050005', '1', '1', 'upload_files/candidate_tracker/37448469903_SATHISH RESUME START.docx', NULL, NULL, '2021-03-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:29:33', 50, '2021-03-06 10:35:43', 0, NULL, 1),
(3660, 'Haresh.P', '4', '9345464436', '7639416084', 'harish80333@gmail.com', '1997-07-01', 23, '2', '2', 'Pazhani.T', 'Labor', 16000.00, 1, 15000.00, 17000.00, 'Tiruttani', 'Velachery', '2103050006', '1', '2', 'upload_files/candidate_tracker/79605570460_Haresh.docx', NULL, NULL, '2021-03-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'asking for non voice', '1', '2', '', '1', '1', '', '2', '2021-03-06', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:33:55', 8, '2021-03-05 08:56:26', 0, NULL, 1),
(3661, 'Karthick raj', '4', '9094048602', '8754295343', 'karthickrajrs97@gmail.com', '1997-06-25', 23, '2', '2', 'Rajagopal', 'Cooli', 20000.00, 1, 11500.00, 12000.00, 'Chennai', 'Chennai', '2103050007', '1', '2', 'upload_files/candidate_tracker/57986033009_file1.pdf', NULL, NULL, '2021-03-05', 6, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is not intrested in voice process. he is looking for non voice process only', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:37:10', 50, '2021-03-05 12:26:14', 0, NULL, 1),
(3662, 'Sudharsan A', '4', '8667797596', '9790350812', 'asudharsan148@gmail.com', '2000-10-14', 20, '2', '2', 'Arumugam k', 'Driver', 25000.00, 1, 0.00, 12000.00, 'No:16 sakthi Nagar 17th Street nerkundram chennai', 'No:16 sakthi Nagar 17th Street nerkundram chennai', '2103050008', '1', '1', 'upload_files/candidate_tracker/43276337785_CV_2021-03-05-114511.pdf', NULL, NULL, '2021-03-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:39:32', 50, '2021-03-09 10:13:49', 0, NULL, 1),
(3663, 'JAYAPAL.R', '4', '9677292472', '8124317959', 'Jbalu379@gmail.com', '1998-05-09', 22, '4', '2', 'RAJENDRAN.S', 'DRIVER', 15000.00, 1, 0.00, 13000.00, 'mugappair East chennai37', 'Mugappair East chennai37', '2103050009', '', '1', 'upload_files/candidate_tracker/27125377056_1614925688206Resume.pdf', NULL, NULL, '2021-03-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-05 11:40:34', 1, '2021-03-05 12:06:07', 0, NULL, 1),
(3664, 'Kavitha', '21', '7904201457', '7358340425', 'kavithasaravanan851@gmail.com', '1998-09-29', 22, '3', '2', 'Saravanan', 'shop keeper', 6000.00, 2, 0.00, 14000.00, 'No:7/4 Ayya Samy street pudupet Chennai-600002', 'No:7/4 Ayya Samy Street Pudupet Chennai-600002', '2103050010', '', '1', 'upload_files/candidate_tracker/42626246774_3356801302880-1.pdf', NULL, NULL, '2021-03-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-05 11:46:42', 1, '2021-03-05 12:14:17', 0, NULL, 1),
(3665, 'Suganya', '4', '8838540488', '8428959851', 'Suganyasugu3781@gmail.com', '1999-07-03', 21, '2', '2', 'Goal', 'Auto driver', 6000.00, 0, 0.00, 14000.00, 'No 24 venkatachala Aachri Street Pudupet chennai', 'No 24 venkatachala Aachri Street Pudupet chennai', '2103050011', '1', '1', 'upload_files/candidate_tracker/96994835908_RESUME.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for sales calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 11:49:46', 50, '2021-03-06 01:21:53', 0, NULL, 1),
(3666, 'Jayasurya', '5', '9789924523', '9566289271', 'Suryazohan7@gmail.com', '1996-08-02', 24, '2', '2', 'Father G. Mohanan krishnan', 'Business', 25000.00, 1, 13500.00, 15000.00, 'Chennai villivakkam', 'Villivakkam', '2103050012', '1', '2', 'upload_files/candidate_tracker/60545147917_attachment(3).pdf', NULL, NULL, '2021-03-05', 1, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 12:04:42', 8, '2021-03-05 08:58:39', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3667, 'Prasanna', '5', '7708883702', '', 'prasannapras729@gmail.com', '1997-04-12', 23, '2', '2', 'Selvi', 'Retired', 25000.00, 1, 0.00, 17000.00, 'Trichy', 'Chennai', '2103050013', '1', '1', 'upload_files/candidate_tracker/70845486234_pras resume new.pdf', NULL, NULL, '2021-03-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much into opertions, will not sustain in sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-05 12:09:55', 50, '2021-03-05 12:21:41', 0, NULL, 1),
(3668, 'Moses p', '4', '9840660909', '9345326026', 'stephenmoses741@gmail.com', '2001-12-08', 19, '2', '2', 'R punniyanathan', 'Father', 100000.00, 2, 11000.00, 13000.00, 'Chennai', 'chennai', '2103050014', '1', '2', 'upload_files/candidate_tracker/33851430510_MOSES CV-converted.docx', NULL, NULL, '2021-03-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling. pronunciation is not clear.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 12:58:25', 7, '2021-03-13 03:33:49', 0, NULL, 1),
(3669, 'hariharan', '4', '6379153792', '9791535502', 'hari12031998@gmail.com', '1998-03-12', 22, '2', '2', 'gomathi', 'cost analyst', 20000.00, 1, 0.00, 15000.00, 'coimbatore', 'chennai', '2103050015', '1', '1', 'upload_files/candidate_tracker/86842820882_Resume new one.docx', NULL, NULL, '2021-03-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'gng to write IRDA exam, will not sustain here and exp is 13k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 12:58:54', 1, '2021-03-05 01:54:19', 0, NULL, 1),
(3670, 'dhinakaran.d', '6', '7708545440', '', 'ajithdeena655@gmail.com', '1998-05-04', 22, '2', '2', 'durai', 'farmer', 20000.00, 2, 0.00, 17000.00, 'kelambakkam', 'chennai', '2103050016', '1', '1', 'upload_files/candidate_tracker/82324352178_Dhinakaran_resume.docx', NULL, NULL, '2021-03-05', 0, '', '3', '59', '1970-01-01', 162000.00, '', '2', '1970-01-01', '1', '13.5k ctc for srikanth team', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-05 01:02:48', 7, '2021-03-11 06:13:33', 0, NULL, 1),
(3671, 'SETHUMADHAVAN S', '22', '9994515145', '9865856564', 'sethumadhavansmys@gmail.com', '1999-08-01', 21, '2', '2', 'SELVAPATHI G', 'BUSINESS', 20000.00, 1, 0.00, 5000.00, 'TIRUPATHUR', 'MADIPAKKAM', '2103050017', '1', '1', 'upload_files/candidate_tracker/29644596908_RESUME ORGINAL 1.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for our role DM, No communication', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-05 01:04:34', 1, '2021-03-09 11:41:18', 0, NULL, 1),
(3672, '', '0', '9630853865', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 01:23:15', 0, NULL, 0, NULL, 1),
(3673, '', '0', '9080443234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103050019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-05 01:32:50', 0, NULL, 0, NULL, 1),
(3674, 'M jaya vishal', '6', '9360853865', '6379029669', 'jvishal20m@gmail.com', '1995-05-20', 25, '2', '2', 'V murgan', 'Real estate broker', 30000.00, 1, 0.00, 12000.00, 'Pallavaram, chennai', 'Pallavaram, chennai', '2103050020', '1', '1', 'upload_files/candidate_tracker/69484958696_CV_2021-03-02-075734.pdf', NULL, NULL, '2021-03-05', 0, '', '3', '8', '2021-03-09', 156000.00, '', '4', '2022-04-25', '1', '13k ctc for kannan team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 01:55:36', 7, '2021-03-09 10:41:44', 0, NULL, 1),
(3675, 'Vinoth kumar', '4', '7904328982', '9094377027', 'Vinovinoth605@gmail.com', '1997-07-05', 23, '2', '2', 'Janaki', 'House wife', 10000.00, 2, 0.00, 13500.00, 'No 532 18th cross street t .p chathiram.', 'Chennai', '2103050021', '1', '1', 'upload_files/candidate_tracker/79543818842_VINOTH 2 - Resume.docx', NULL, NULL, '2021-03-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not join. not interested in voice.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-05 02:56:11', 1, '2021-03-05 03:02:27', 0, NULL, 1),
(3676, 'giftson daniel', '16', '9500980342', '', 'iamgiftson@gmail.com', '1998-04-03', 22, '2', '2', 'ponnudurai c', 'accounts assistant', 50000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'chennai', '2103050022', '1', '1', 'upload_files/candidate_tracker/63688145649_GD CV .docx', NULL, NULL, '2021-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, Not seems much active and will take a long to train the candidate', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-05 03:29:50', 1, '2021-03-14 12:23:20', 0, NULL, 1),
(3677, 'Thurrul Mukthar', '13', '8610653277', '9003010332', 'thurrulmukthar@yahoo.in', '1993-02-15', 28, '2', '2', 'Ameer sulthan', 'Self employee', 200000.00, 2, 444000.00, 750000.00, 'Ramanathapuram', 'Ramanathapuram', '2103060001', '1', '2', 'upload_files/candidate_tracker/77091463944_Mukthar (3).pdf', NULL, NULL, '2021-03-06', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'High CTC Expectation, Sustainability doubt, Have a plan to travel abroad also', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-06 03:43:28', 1, '2021-03-06 03:49:37', 0, NULL, 1),
(3678, 'magesh m a', '16', '7299920205', '', 'magimohan29@gmail.com', '1993-07-21', 27, '2', '2', 'annamalai m k', 'business', 25000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2103060002', '1', '2', 'upload_files/candidate_tracker/98567146948_Magesh MBA (OM) Resume.pdf', NULL, NULL, '2021-03-06', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'avg comm, will not suite for mis.', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-06 06:47:29', 1, '2021-03-06 07:10:33', 0, NULL, 1),
(3679, '', '0', '9750140155', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103060003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-06 09:09:00', 0, NULL, 0, NULL, 1),
(3680, 'kowsalya r', '4', '7397351824', '9176247631', 'kowsaly15@gmail.com', '1997-04-15', 23, '1', '2', 'ramesh', 'auto driver', 7000.00, 2, 0.00, 17000.00, 'kodugaiyur', 'kodugaiyur', '2103060004', '', '2', 'upload_files/candidate_tracker/15070295435_1584171683236_kowsalya resume.pdf', NULL, NULL, '2021-03-06', 0, '5560', '3', '8', '1970-01-01', 156000.00, '', '2', '1970-01-01', '2', 'CTC 156000 With Gross - 13000 And TH - 12350, for muthu team', '1', '2', '1', '1', '1', '', '2', '2021-03-15', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-06 10:48:38', 7, '2021-03-13 06:15:36', 0, NULL, 1),
(3681, '', '0', '7397351823', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103060005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-06 11:11:47', 0, NULL, 0, NULL, 1),
(3682, 'Praveen Kumar J', '5', '7358239296', '', 'Praveen.jk1994@gmail.com', '1994-09-14', 26, '2', '2', 'John venkarlt rathanam', 'sales officer', 30000.00, 1, 375000.00, 500000.00, 'Chennai', 'Chennai', '2103060006', '1', '2', 'upload_files/candidate_tracker/78410386318_Praveen.resume-converted.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit job dataxquots which given by candidate is not relevant', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-06 12:51:39', 8, '2021-03-06 03:28:37', 0, NULL, 1),
(3683, 'karthik', '5', '8870483033', '', 'karthikjap0611@gmail.com', '1990-11-06', 30, '2', '2', 'janaki', 'labour', 10000.00, 1, 280000.00, 330000.00, 'namakkal', 'thiruporur', '2103060007', '1', '2', 'upload_files/candidate_tracker/17377283743_Resume karthik.pdf', NULL, NULL, '2021-03-06', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not turnedup', '5', '2', '', '1', '1', '', '2', '2021-03-08', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-06 12:51:53', 50, '2021-03-06 01:20:59', 0, NULL, 1),
(3684, 'dineshkumar', '5', '8939737124', '9176722760', 'dinesh6255kumar@gmail.com', '1995-07-31', 25, '1', '2', 'arunachalam', 'plumber', 30000.00, 1, 30000.00, 35000.00, 'chennai', 'chennai', '2103060008', '', '2', 'upload_files/candidate_tracker/61116314024_dineshkumar resume.pdf', NULL, NULL, '2021-03-06', 0, '55634', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for job', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-06 01:19:40', 1, '2021-03-06 02:44:13', 0, NULL, 1),
(3685, '', '0', '7010170825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103060009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-06 01:47:14', 0, NULL, 0, NULL, 1),
(3686, '', '0', '9500868414', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103060010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-06 04:06:11', 0, NULL, 0, NULL, 1),
(3687, 'n prabhakaran', '5', '7550254958', '8807636498', 'paviprabha10@gmail.com', '1992-01-06', 29, '2', '1', 'bharkavi', 'salaried', 20000.00, 2, 23000.00, 30000.00, 'dharmapuri', 'chennai', '2103060011', '1', '2', 'upload_files/candidate_tracker/79054499640_Prabhakaran Nagaraj Resume.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for 30k package and will not suite for RM', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-06 04:47:57', 1, '2021-03-09 12:17:30', 0, NULL, 1),
(3688, 'Priya R', '16', '9677011402', '7904744685', 'helenpriya1989@gmail.com', '1989-12-15', 31, '2', '1', 'Edwin john A', 'Engineer', 40000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2103060012', '1', '2', 'upload_files/candidate_tracker/83211271803_Resume - Priya R.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', '50 50', '3', '2', '0', '1', '1', '0', '2', '2021-03-24', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-06 06:06:00', 1, '2021-03-08 11:32:36', 0, NULL, 1),
(3689, 'Gowtham', '5', '9677184624', '', 'gm2231@gmail.com', '1993-06-23', 27, '3', '2', 'Manivannan', 'Chief manager', 80000.00, 1, 25000.00, 32000.00, 'Chennai', 'Chennai', '2103080001', '', '2', 'upload_files/candidate_tracker/22420744859_1614415110212_Gowtham Resume.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'profile was selected but he is not Interested. due to package', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 10:10:51', 7, '2021-03-24 07:37:22', 0, NULL, 1),
(3690, 'vaishnavi', '4', '9677281082', '', 'vaishnavi.uma.1999@gmail.com', '1999-07-02', 21, '2', '2', 'selvam m', 'business', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103080002', '1', '1', 'upload_files/candidate_tracker/99965357174_Resume 1.pdf', NULL, NULL, '2021-03-08', 0, '', '3', '8', '2021-04-12', 126312.00, '', '3', '2021-05-05', '1', 'For Priyanka team With CTC - 126312 Gross - 10526 TH - 10000', '1', '2', '1', '1', '1', '', '2', '2021-03-09', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 10:19:10', 7, '2021-04-11 03:50:16', 0, NULL, 1),
(3691, 'A. Sarath Kumar', '16', '8939647692', '', 'sarathortan12@gmail.com', '1994-04-08', 26, '1', '2', 'Arivazhagan S', 'Chef Master', 15000.00, 1, 20000.00, 23000.00, 'Thanjavur', 'Chennai', '2103080003', '', '2', 'upload_files/candidate_tracker/10935404994_Resume1.docx', NULL, NULL, '2021-03-08', 10, '55594', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'avg communication, no written skill. will not suite for mis', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 11:00:27', 8, '2021-03-08 07:18:39', 0, NULL, 1),
(3692, 'Sureshkumar', '1', '9500029822', '', 'sureshmahathi86@gmail.com', '1986-01-01', 35, '3', '1', 'Mahathi Sri', 'Working', 10000.00, 5, 30000.00, 37000.00, 'Chennai', 'Chennai', '2103080004', '', '2', '', NULL, NULL, '2021-03-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '2', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 11:06:38', 29, '2021-03-13 07:31:06', 0, NULL, 1),
(3693, 'Reka', '4', '8610867456', '6381547107', 'rekaanath112@gmail.com', '1998-12-04', 22, '2', '2', 'Priyanga', 'Formar', 10000.00, 0, 0.00, 13000.00, 'Trichy', 'Guindy', '2103080005', '1', '1', 'upload_files/candidate_tracker/93818684360_0_1614010153686_REKA ANANDHAN.pdf', NULL, NULL, '2021-03-08', 0, '', '3', '8', '1970-01-01', 126312.00, '', '2', '1970-01-01', '2', '10k th 10526 as gross for muthuteam.', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 11:28:06', 7, '2021-03-10 05:46:32', 0, NULL, 1),
(3694, 'E.priya', '4', '7550195970', '8939776580', 'vijayav517@gmail.com', '1991-08-08', 29, '2', '1', 'Ravi chandran', 'Chennai', 30000.00, 1, 13000.00, 20000.00, 'West mambalam', 'Pallavaram', '2103080006', '1', '2', 'upload_files/candidate_tracker/98876181492_New resume (1).docx', NULL, NULL, '2021-03-08', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice but has exp in voice 3yr', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 11:43:01', 8, '2021-03-08 04:56:37', 0, NULL, 1),
(3695, 'VISHNU RAJ', '6', '9551400170', '9789961153', 'vishnu.9th@gmail.com', '1997-08-25', 23, '1', '2', 'SELVARAJ', 'Click', 15.00, 1, 0.00, 15.00, 'EGMORE', 'EGMORE', '2103080007', '', '1', 'upload_files/candidate_tracker/65941354343_Resume_of_Vishnu_raj[2].docx', NULL, NULL, '2021-03-08', 0, 'P1065', '3', '8', '2021-03-10', 164208.00, '', '4', '2022-11-05', '1', '13th for Syed team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 11:44:00', 7, '2021-03-10 12:03:12', 0, NULL, 1),
(3696, 'Pavithran s', '6', '8072804603', '7397048810', 'pavipavi7397@gmail.com', '1999-05-24', 21, '4', '2', 'SARAVANAN', 'Bsc physics', 10000.00, 1, 0.00, 12.00, 'Dharmapuri', 'Annanagar', '2103080008', '', '1', 'upload_files/candidate_tracker/84437565328_PAVI RESUME.docx', NULL, NULL, '2021-03-08', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 11:56:23', 8, '2021-03-08 04:43:12', 0, NULL, 1),
(3697, 'Natesh narayanan', '16', '9499030129', '9840051469', 'Abinatesh@gmail.com', '1996-11-25', 24, '2', '2', 'N chandrasekaran', 'Self Employed', 60000.00, 1, 10000.00, 20000.00, 'Chennai', 'Chennai', '2103080009', '1', '2', 'upload_files/candidate_tracker/5345707638_1611486659398_1605701437726_NateshNarayanan.resume-1.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'avg comm. going to takeover his father business. will not sustain and will not suite for mis', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 12:14:38', 1, '2021-03-08 12:19:51', 0, NULL, 1),
(3698, 'nandhitha pandian', '4', '7305723123', '9940576369', 'nandhitha52@gmail.com', '1992-10-29', 28, '2', '2', 'maheshwari', 'housewife', 30000.00, 0, 17.00, 15000.00, 'chennai', 'chennai', '2103080010', '1', '2', 'upload_files/candidate_tracker/48073558007_RESUME nandhitha.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us. not speaking up.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 12:27:34', 7, '2021-03-08 07:30:15', 0, NULL, 1),
(3699, 'rajalakshmi', '4', '9962839093', '9940576369', 'rajalakshminandhini07@gmail.com', '1994-02-04', 27, '2', '1', 'kottiswari', 'housewife', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103080011', '1', '1', 'upload_files/candidate_tracker/76865674179_Rajalakshmi resume copy .pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher for us. 2yrs exp in max showroom sales. will not suite for calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 12:40:34', 7, '2021-03-08 07:29:59', 0, NULL, 1),
(3700, 'VENKATESSN', '13', '8270861947', '8940412973', 'VENKATARJUNAN.73@GMAIL.COM', '1995-04-30', 25, '3', '2', 'Ponnialagan', 'Farmer', 30000.00, 5, 1.60, 20000.00, 'Dindigul', 'Trichy', '2103080012', '', '2', 'upload_files/candidate_tracker/747203971_CV.pdf', NULL, NULL, '2021-03-16', 30, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-08 12:48:44', 7, '2021-03-18 10:19:53', 0, NULL, 1),
(3701, 'Ragunathan', '4', '9500295804', '9789165804', 'nathanragu998@gmail.com', '2000-06-23', 20, '2', '2', 'Selvaraj', 'Carpenter', 30000.00, 1, 0.00, 15000.00, 'Darasuram', 'Guindy', '2103080013', '1', '1', 'upload_files/candidate_tracker/10764231253_ragu perfect resume2.docx', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling, fresher', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 01:18:34', 50, '2021-03-09 10:11:42', 0, NULL, 1),
(3702, 'Karthii', '4', '9361059402', '8870094410', 'karthikravi312@gmail.com', '1998-12-03', 22, '2', '2', 'Ravikumar', 'No work', 10000.00, 1, 20000.00, 20000.00, 'No 32, Sangaralinganar street, Kknagar, chennai-78', 'No 32, Sangaralinganar Street, Kknagar, Chennai-78', '2103080014', '1', '2', 'upload_files/candidate_tracker/38725531981_My_Resume.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for sales calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 01:41:28', 50, '2021-03-09 10:04:37', 0, NULL, 1),
(3703, 'sindhujaa n', '4', '9942004974', '', 'sindhujaanarayanan3@gmail.com', '1998-04-13', 22, '2', '2', 'narayanan l', 'fresher', 40000.00, 1, 0.00, 15000.00, 'thiruvanmiyur', 'chennai', '2103080015', '1', '1', 'upload_files/candidate_tracker/92832816126_Sindhujaa.pdf', NULL, NULL, '2021-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not turned up', '1', '2', '', '1', '1', '', '2', '2021-03-09', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-08 02:39:23', 50, '2021-03-09 10:12:11', 0, NULL, 1),
(3704, 'Mohamed suhaib', '16', '9600361281', '', 'mohamedsuhaib18@gmail.com', '1990-10-18', 30, '2', '2', 'Haneef Mohamed', 'Accountant', 16000.00, 1, 280000.00, 350000.00, 'Kilakari, Ramanathapuram', 'Velachery, chennai', '2103080016', '1', '2', 'upload_files/candidate_tracker/86269118716_NEW CV 03_03.pdf', NULL, NULL, '2021-03-10', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 02:59:53', 7, '2021-03-10 06:47:11', 0, NULL, 1),
(3705, 'Ankur Kumar Roy chowdhury', '16', '8240762407', '8274907884', 'ankurroychowdhury225@gmail.com', '1995-11-27', 25, '2', '2', 'Nandita Roy Chowdhury', 'Housewife', 10000.00, 1, 0.00, 20000.00, 'Kolkata', 'Chennai', '2103080017', '1', '1', 'upload_files/candidate_tracker/23047948971_Ankur_CV_2020(Latest) 1.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no local language and lang is avg. will not suite for mis', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 03:03:28', 1, '2021-03-08 05:48:11', 0, NULL, 1),
(3706, 'Ram Kumar V', '2', '9952765392', '', 'ramkumar060105@gmail.com', '1999-03-25', 21, '2', '2', 'Venkatadhri', 'Coolie', 6000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2103080018', '1', '1', 'upload_files/candidate_tracker/19795522416_RamkumarResume.pdf', NULL, NULL, '2021-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Profile,High CTC expectations,not much comfortable with Agreement', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 03:38:57', 1, '2021-03-08 03:53:23', 0, NULL, 1),
(3707, 'k lakshmi', '16', '8939181669', '', 'yashi20593@gmail.com', '1993-05-20', 27, '2', '2', 'amina yusuf', 'housewife', 75000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2103080019', '1', '2', 'upload_files/candidate_tracker/70572313718_Resume.2018 (1).docx', NULL, NULL, '2021-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'wrote written from google. comm was okay. 25k exp.', '3', '1', '0', '1', '1', '0', '2', '2021-03-11', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 03:45:19', 1, '2021-03-10 03:19:51', 0, NULL, 1),
(3708, 'SAI.C.B.NAVIN', '22', '8778092075', '9360403002', 'naveen7198@gmail.com', '1998-09-26', 22, '2', '2', 'V.r.s.babu', 'Supervisor', 15000.00, 0, 0.00, 10000.00, 'Poonamallee', 'Poonamallee', '2103080020', '1', '1', 'upload_files/candidate_tracker/44077819679_Emailing SAI.C.B.NAVIN Resume MBA FINAL YEAR.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication, will not fit for our role DM', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 04:35:25', 1, '2021-03-09 11:28:40', 0, NULL, 1),
(3709, 'Archana k R', '16', '9677271651', '6369324275', 'sunglory2010@gmail.com', '1991-12-24', 29, '2', '2', 'RAGHAVAN K S', 'RETIRED ICF EMPLOYEE', 30000.00, 2, 21000.00, 30000.00, 'Chennai', 'Chennai', '2103080021', '1', '2', 'upload_files/candidate_tracker/91137047015_ARCHANA.KR_RESUME 2021 (1).docx', NULL, NULL, '2021-03-09', 0, '', '5', '54', NULL, 0.00, '', '0', NULL, '2', 'she worked more than 6 years of Experience but not match her skill ', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 04:53:13', 1, '2021-03-08 05:05:24', 0, NULL, 1),
(3710, 'RAGUNATHAN S', '22', '9444397502', '', 'harishragu619@gmail.com', '1998-06-06', 22, '2', '2', 'SENTHIL KUMAR S', 'BUSINESS', 20000.00, 1, 0.00, 5000.00, 'Chengalpattu', 'Chengalpattu', '2103080022', '1', '1', 'upload_files/candidate_tracker/11116618629_Ragunathan resume.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suits for DM.Content not upto the mark', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 05:56:06', 1, '2021-03-09 11:57:54', 0, NULL, 1),
(3711, 'Ramar', '16', '8015635835', '6379818027', 'ravuchandiranramar@gmail.com', '1994-06-17', 26, '2', '1', 'Durga Devi', 'Working', 300000.00, 2, 18000.00, 25000.00, 'Perambalur', 'Chennai', '2103080023', '1', '2', 'upload_files/candidate_tracker/40883565796_Ramar Ravichandiran Resume.pdf', NULL, NULL, '2021-03-10', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'comm is very poor. will not suite for mis', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 05:56:35', 1, '2021-03-08 06:03:17', 0, NULL, 1),
(3712, 'sathish kumar', '16', '9841029286', '', 'sathishdec0309@ymail.com', '1992-12-03', 28, '2', '2', 'jayapalan', 'Business', 30000.00, 2, 12500.00, 19000.00, 'chennai', 'chennai', '2103080024', '1', '2', 'upload_files/candidate_tracker/5612364234_Sathish Kumar CV.pdf', NULL, NULL, '2021-03-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-08 08:18:30', 1, '2021-03-08 08:29:19', 0, NULL, 1),
(3713, '', '0', '7904570105', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103080025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-08 11:50:24', 0, NULL, 0, NULL, 1),
(3714, 'Vijaya Ruban', '6', '8667723036', '9094076287', 'Rubananbu93@gmail.com', '1998-05-06', 22, '2', '2', 'Thanalachime', 'House wife', 15000.00, 2, 0.00, 15000.00, '10/78new street ayanavaram chennai600023', '10/78new Street Ayanavaram Chennai600023', '2103090001', '1', '1', 'upload_files/candidate_tracker/33414918102_Vijay ruban RESUME.pdf', NULL, NULL, '2021-03-09', 0, '', '3', '8', '2021-03-10', 156000.00, '', '4', '2021-05-19', '1', '13k ctc for suthagar team.', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 10:06:41', 7, '2021-03-10 12:03:46', 0, NULL, 1),
(3715, 'Vigneshwaran A', '5', '7639671975', '6369926694', 'vignesbio95@gmail.com', '1996-06-11', 24, '2', '2', 'Azhagarsamy', 'Farmer', 100000.00, 1, 0.00, 20000.00, 'Siruseri', 'Velacherry', '2103090002', '8', '1', 'upload_files/candidate_tracker/196647546_VIGNESHWARAN A.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales. looking for HR job.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 10:12:09', 1, '2021-03-09 10:17:08', 0, NULL, 1),
(3716, 'OMPRAKASH', '6', '9176983436', '', 'Omprakash784532@gmail.com', '1996-05-09', 24, '1', '2', 'MARIYAPPAN', 'Cooli', 12000.00, 2, 17000.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2103090003', '', '2', 'upload_files/candidate_tracker/32391517016_OMPRAKASH.docx', NULL, NULL, '2021-03-09', 0, 'P1152', '3', '8', '2021-03-11', 189480.00, '', '6', '2021-04-07', '1', '15k th for syed team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 10:33:43', 7, '2021-03-11 04:04:59', 0, NULL, 1),
(3717, 'irshad baig', '6', '7845420478', '7358420163', 'parvaz04@gmail.com', '1995-09-04', 25, '1', '2', 'muzaffer', 'garment', 30000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2103090004', '', '2', 'upload_files/candidate_tracker/16898479600_irshad baig cv.doc', NULL, NULL, '2021-03-09', 0, 'thiyagu', '8', '59', NULL, 0.00, '', '0', NULL, '1', 'The candidate left without attending the interview', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 11:07:32', 1, '2021-03-09 12:18:37', 0, NULL, 1),
(3718, 'Kumaran K', '5', '8838379689', '7092051335', 'kumaranzero@gmail.com', '1983-01-30', 38, '1', '1', 'Shanthini k', 'House wife', 130000.00, 1, 16500.00, 17000.00, 'Villivakkam', 'Villivakkam', '2103090005', '', '2', 'upload_files/candidate_tracker/82004104066_Kumaran.docx', NULL, NULL, '2021-03-09', 0, '55577', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for any profile.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 11:10:35', 7, '2021-03-09 11:48:21', 0, NULL, 1),
(3719, 'Girinivas.B', '6', '9159354834', '9514728101', 'girinivasbala@gmail.com', '1999-07-04', 21, '2', '2', 'Balasubramani', 'Painter', 100000.00, 1, 0.00, 12000.00, 'Pondicherry', 'Tambaram', '2103090006', '1', '1', 'upload_files/candidate_tracker/7875257558_Giri_Resume.dox[2].pdf', NULL, NULL, '2021-03-09', 0, '', '3', '8', '2021-03-10', 156000.00, '', '3', '2021-04-30', '2', '13k ctc for thiyagu team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 11:22:53', 7, '2021-03-10 12:08:13', 0, NULL, 1),
(3720, 'Sabanayagam', '4', '7010125802', '7598871815', 'sabhacena84@gmail.com', '1998-09-14', 22, '2', '2', 'Ramesh', 'Be computer science', 100000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2103090007', '1', '1', 'upload_files/candidate_tracker/22003075259_resume sab (3).docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, fresher.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 11:23:11', 1, '2021-03-09 11:28:21', 0, NULL, 1),
(3721, 'Sasikumar', '4', '9551744524', '9841889405', 'Sasikumarr5743@gmail.com', '1996-07-05', 24, '2', '2', 'Ravi', 'Car mechanic', 13000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2103090008', '1', '1', 'upload_files/candidate_tracker/64598575893_sk resumed.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'appearance and slang is not up to the level. will not suite for us', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 11:35:52', 1, '2021-03-09 12:04:37', 0, NULL, 1),
(3722, 'thamemul ansari m m i', '4', '9080342893', '', 'mmiansari05@gmail.com', '1997-10-05', 23, '2', '2', 'mohamed iqbal m', 'driver', 13000.00, 0, 0.00, 13000.00, 'chennai', 'chennai', '2103090009', '1', '1', 'upload_files/candidate_tracker/5301435284_THAMEMUL ANSARI RESUME.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Planing to do higher study and doing part time job too.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 11:36:25', 1, '2021-03-09 12:08:44', 0, NULL, 1),
(3723, 'G madan', '5', '7092031234', '7305022345', 'madan.divi90@gmail.com', '1983-01-02', 38, '2', '1', 'M divyalakshmi', 'Working', 30000.00, 1, 30000.00, 40000.00, 'Chennai', 'Chennai', '2103090010', '3', '2', 'upload_files/candidate_tracker/48780080805_Madan Resume-2.doc', NULL, NULL, '2021-03-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our prosess. gaurav rejected him', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 11:37:12', 7, '2021-03-24 07:38:08', 0, NULL, 1),
(3724, 'S Karthick', '4', '8610410812', '8939655632', 'karthilkajith@gmail.com', '1996-10-30', 24, '2', '2', 'Sekar', 'Painter', 13000.00, 1, 0.00, 13000.00, 'Thousand lights', 'Thousand lights', '2103090011', '1', '1', 'upload_files/candidate_tracker/98070667166_KARTHICK RESSUME.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'left before 2nd round', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 11:37:30', 1, '2021-03-09 11:52:10', 0, NULL, 1),
(3725, 'ASHIKALI K', '16', '9042835298', '7615815493', 'ashikali1797@gmail.com', '1997-09-17', 23, '2', '2', 'KADHAR MOIDEEN', 'Self Employee', 10000.00, 1, 15000.00, 18000.00, 'Villupuram', 'Chennai', '2103090012', '1', '2', 'upload_files/candidate_tracker/69048321134_ASHIKALI RESUME.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '3', '2', '0', '1', '1', '0', '2', '2021-03-10', '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 01:22:51', 1, '2021-03-09 01:29:39', 0, NULL, 1),
(3726, 'gayathri', '4', '9176185063', '', 'nikithanikki027@gmail.com', '1997-10-15', 23, '3', '2', 'elangovan', 'construction', 25000.00, 2, 0.00, 150000.00, 'thiruvottiyur', 'thiruvottiyur', '2103090013', '', '1', 'upload_files/candidate_tracker/15623453052_gayathri 09-03-2021.doc', NULL, NULL, '2021-03-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for Back end job. not interested in sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 02:30:30', 8, '2021-03-09 05:13:12', 0, NULL, 1),
(3727, 'Kaja muhaitheen', '4', '8438205627', '9597050155', 'fami7800@gmail.com', '1998-12-12', 22, '3', '2', 'Fathima nazeera', 'House wife', 20000.00, 1, 0.00, 12000.00, 'Rameswaram', 'Rameswaram', '2103090014', '', '1', 'upload_files/candidate_tracker/29502313297_my%20resume.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 02:31:41', 1, '2021-03-09 02:41:09', 0, NULL, 1),
(3728, 'Kalaimani', '4', '8925149120', '', 'srisivasiva094@gmail.com', '1994-05-20', 26, '2', '1', 'Harish', 'Manager', 25000.00, 4, 0.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2103090015', '1', '1', 'upload_files/candidate_tracker/72007396580_CamScanner 03-09-2021 15.20.35_1.pdf', NULL, NULL, '2021-03-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice. not interested in sales.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 02:32:28', 8, '2021-03-09 05:16:57', 0, NULL, 1),
(3729, 'Nainar ubaythulla', '4', '9597050155', '8675011562', 'ubaythaziz705@gmail.com', '1996-01-19', 25, '2', '2', 'Meharaj banu', 'House wife', 72000.00, 1, 12000.00, 14000.00, '4/666-111,kayethe millath nagar puduvalasai', 'Flat no 4 krishna nagar west thambaram', '2103090016', '1', '2', 'upload_files/candidate_tracker/71614839354_ubayth.docx', NULL, NULL, '2021-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain. ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 02:33:06', 1, '2021-03-09 02:38:21', 0, NULL, 1),
(3730, 'Mohammed Rashik', '13', '8610771720', '', 'RASHIKFAREED1403@GMAIL.COM', '1997-04-16', 23, '1', '2', 'SUHARABHI', 'Home Maker', 30000.00, 2, 1.50, 2.20, 'Kolathur', 'Kolathur', '2103090017', '', '2', 'upload_files/candidate_tracker/70050551794_RESUME.pdf', NULL, NULL, '2021-03-09', 20, 'P1155', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task not Completed.', '2', '1', '0', '1', '1', '0', '2', '2021-03-15', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 02:59:49', 1, '2021-03-09 03:13:02', 0, NULL, 1),
(3731, 'John pretto J', '13', '9384601335', '8939748433', 'johnpretto10@gmail.com', '1995-01-10', 26, '3', '2', 'Jaya seelan E', 'Driver', 15000.00, 1, 0.00, 12000.00, 'chennai', 'Chennai', '2103090018', '', '1', 'upload_files/candidate_tracker/99366567771_0_main.pdf', NULL, NULL, '2021-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not completed the task\n', '2', '2', '0', '1', '1', '0', '2', '2021-03-11', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-09 04:27:39', 1, '2021-03-09 04:33:14', 0, NULL, 1),
(3732, 'Gobinath S', '5', '9677337657', '7994329902', 'gobikrish19@gmail.com', '1993-07-18', 27, '2', '1', 'Kalpana', 'Manager', 60000.00, 0, 300000.00, 350000.00, 'Erode', 'Chennai', '2103090019', '1', '2', 'upload_files/candidate_tracker/77087503303_GOBINATH RESUME.docx', NULL, NULL, '2021-03-10', 0, '', '3', '8', '2021-04-07', 350000.00, '', '6', '2021-11-30', '1', '350000 CTC,29167-gC, 25359-TH for Rajkumar team.', '5', '1', '4', '1', '1', '', '2', '2021-03-22', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-09 04:32:33', 7, '2021-03-31 10:21:00', 0, NULL, 1),
(3733, 'N.vignesh', '4', '9080015856', '7667290307', 'Vicky2105s0312@gmail.com', '1999-05-21', 21, '2', '2', 'M.Natesan', 'Farmer', 13000.00, 0, 0.00, 12000.00, 'Tiruvannamali', 'chennai', '2103090020', '1', '1', 'upload_files/candidate_tracker/46529335110_Vivek resume (1).pdf', NULL, NULL, '2021-03-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suits for IT requirement.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-09 05:03:03', 7, '2021-03-10 11:13:24', 0, NULL, 1),
(3734, 'sakthipriya', '13', '7094237469', '', 'priyaravichandran30597@gmail.com', '1997-05-30', 23, '2', '2', 'maheswari', 'icds', 130000.00, 1, 0.00, 20000.00, 'tiruvannamalai', 'chennai', '2103090021', '1', '1', 'upload_files/candidate_tracker/18840753114_sakthi Resume.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our Position(Interviewed by Latha)', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-09 08:09:27', 50, '2021-03-12 11:26:08', 0, NULL, 1),
(3735, 'RAJA RAJA CHOLAN', '13', '8344222833', '8344222832', 'vrrcholanaiwo@gmail.com', '1997-07-04', 23, '2', '2', 'VENKATESAN', 'ADVOCATE', 25000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2103100001', '1', '2', 'upload_files/candidate_tracker/89902947973_PHP-Developer-Rajarajacholan-2020.docx', NULL, NULL, '2021-03-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He has not interested to join.', '2', '1', '0', '1', '1', '0', '2', '2021-03-11', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 09:27:24', 1, '2021-03-10 09:30:58', 0, NULL, 1),
(3736, 'Ramesh', '4', '6374286066', '9443267644', 'rameshraj3298@gmail.com', '1998-05-16', 22, '1', '2', 'Rajendran', 'Driver', 10000.00, 2, 13000.00, 15000.00, 'Pudukkottai', 'Kodambakkam', '2103100002', '', '2', 'upload_files/candidate_tracker/19568818254_Ramesh cv.pdf', NULL, NULL, '2021-03-10', 0, 'P1027', '3', '8', '2021-03-11', 144000.00, '', '3', '2021-03-30', '2', '12k ctc for muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 10:18:28', 7, '2021-03-10 06:56:53', 0, NULL, 1),
(3737, 'Roja v', '4', '9962032967', '9345464436', 'rose20180720@gmail.com', '1999-10-07', 21, '2', '2', 'Victor', 'Van driver', 20000.00, 1, 13000.00, 15000.00, 'Purasaivakam', 'Chennai', '2103100003', '1', '2', 'upload_files/candidate_tracker/29963472104_Rosy-1.pdf', NULL, NULL, '2021-03-10', 6, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process. 6m in hathway and exp is 12k min', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 10:46:57', 50, '2021-03-10 11:00:58', 0, NULL, 1),
(3738, '', '0', '9487547569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103100004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-10 10:47:15', 0, NULL, 0, NULL, 1),
(3739, 'Saravana Kumar', '6', '7667290307', '9597975542', 'csk3131999@gmail.com', '1999-03-31', 21, '2', '2', 'N. Palanivel', 'Carpenter', 30000.00, 1, 0.00, 12000.00, 'Tiruvannamalai', 'Chennai', '2103100005', '1', '1', 'upload_files/candidate_tracker/33596820482_Final.pdf', NULL, NULL, '2021-03-10', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he didnxquott turned up', '5', '2', '', '1', '1', '', '2', '2021-03-17', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 10:48:34', 8, '2021-03-10 12:11:34', 0, NULL, 1),
(3740, 'Vinoth', '8', '9566160967', '', 'Vk928223@gmail.com', '1995-07-01', 25, '2', '1', 'Kumar', 'CRM and video edittor', 15000.00, 0, 15000.00, 17000.00, 'Chennai', 'Chennai', '2103100006', '1', '2', 'upload_files/candidate_tracker/97961498855_VINOTH.docx', NULL, NULL, '2021-03-10', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-10 11:03:50', 1, '2021-03-10 11:12:36', 0, NULL, 1),
(3741, 'R.saravanan', '4', '6374090236', '9597243770', 'saros6875@gmail.com', '1997-11-29', 23, '2', '2', 'P.Ramalingam', 'Electrician', 14000.00, 2, 13000.00, 12000.00, 'Kumbakonam', 'Thiruvanmaiyur', '2103100007', '1', '2', 'upload_files/candidate_tracker/8367726475_Saravanan resume.docx', NULL, NULL, '2021-03-10', 6, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain. looking for Temporary joj for 3-4months', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 12:02:46', 1, '2021-03-10 12:20:12', 0, NULL, 1),
(3742, 'Aravind.B', '4', '7358604758', '', 'babuaravind83@gmail.com', '2000-04-07', 20, '1', '2', 'Babu.I', 'Photo lamination', 25000.00, 1, 0.00, 16.00, 'Ellis road anna salai', 'Ellis road anna salai', '2103100008', '', '1', 'upload_files/candidate_tracker/53516661870_CV_2020-11-22-094841.pdf', NULL, NULL, '2021-03-10', 0, '55634', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up. will not suite for calling', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 12:11:52', 1, '2021-03-10 12:27:03', 0, NULL, 1),
(3743, 'N.hem kumar', '4', '6369214021', '7824051913', 'Kumarhem80433@gmail.com', '1997-07-02', 23, '1', '2', 'A.narasimman', 'Daily wages', 20000.00, 1, 18000.00, 18000.00, 'Ayanavaram', 'Ayanavaram', '2103100009', '', '2', 'upload_files/candidate_tracker/12182435338_resume2021.pdf', NULL, NULL, '2021-03-10', 0, '55634', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not interested in sales job', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 12:12:19', 1, '2021-03-10 12:26:55', 0, NULL, 1),
(3744, 'Hemanth sriram', '13', '8939645060', '', 'sriramhemanth.v20@gmail.com', '1997-11-20', 23, '2', '2', 'Vijaya kumar', 'Business', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2103100010', '1', '1', 'upload_files/candidate_tracker/25236119116_Hemanthsriram_resume.pdf', NULL, NULL, '2021-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement,have a plan to travel muscat,will not sustain for a long .high CTC expectations', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 12:18:05', 1, '2021-03-10 12:20:37', 0, NULL, 1),
(3745, 'Faizal Zaheed', '5', '9566182192', '', 'faizalzaheed0636@gmail.com', '1993-09-27', 27, '2', '2', 'Umar farook', 'Employee', 12000.00, 1, 330000.00, 450000.00, 'Chennai', 'Chennai', '2103100011', '1', '2', 'upload_files/candidate_tracker/52941577117_MY RESUME.docx', NULL, NULL, '2021-03-10', 0, '', '3', '8', '2021-03-23', 309696.00, '', '2', '1970-01-01', '1', 'Selected With CTC - 309696 With Gross - 25808 TH - 22000', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 12:33:54', 7, '2021-03-20 10:47:59', 0, NULL, 1),
(3746, 'M.Hemalatha', '4', '9344605355', '9566049635', 'Hemasep09@gmail.com', '1996-09-09', 24, '2', '2', 'Munuswamy', 'Auto Driver', 6000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2103100012', '1', '1', 'upload_files/candidate_tracker/64457599910_Latha Resume-1.docx', NULL, NULL, '2021-03-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process.', '1', '2', '', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 01:00:11', 50, '2021-03-10 01:32:50', 0, NULL, 1),
(3747, 'Revathi', '4', '6383103319', '', 'revathikaruppusamy@188gmail.com', '1996-07-23', 24, '2', '2', 'Karuppusamy', 'Van driver', 10000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2103100013', '1', '1', 'upload_files/candidate_tracker/35761616962_1615363003725_1574056093072Resume_Revathi.docx', NULL, NULL, '2021-03-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm.', '1', '2', '', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 01:01:11', 50, '2021-03-10 01:33:05', 0, NULL, 1),
(3748, 'Premkumar M', '17', '9095432792', '9600179966', 'premkumar255.pk@gmail.com', '1988-05-25', 32, '2', '2', 'Jothi M', 'Mother', 40000.00, 1, 30000.00, 30000.00, 'Chennai', 'Chennai', '2103100014', '3', '2', 'upload_files/candidate_tracker/89094670352_PREM KUMAR (1).doc-converted-converted.pdf', NULL, NULL, '2021-03-10', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very Poor Communication. Will Not Suite For Our Process.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 01:41:22', 8, '2021-03-10 05:57:29', 0, NULL, 1),
(3749, 'Sundar', '6', '7806918084', '7358552019', 'sundardhanvin0777@gmail.com', '2000-02-11', 21, '1', '2', 'Saritha', 'Bpo', 21000.00, 0, 18000.00, 18000.00, 'Chetpet', 'Perangulathur', '2103100015', '', '2', 'upload_files/candidate_tracker/936682231_1590150031717_CURRICULUM VITAE sundar.doc', NULL, NULL, '2021-03-10', 10, 'P1177', '3', '8', '2021-03-15', 202104.00, '', '3', '2021-04-20', '2', '16k th for srikanth team.', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 01:44:04', 7, '2021-03-11 06:17:15', 0, NULL, 1),
(3750, 'Jenifa', '4', '8825821788', '7806918084', 'smileetamil@gmail.com', '1996-02-03', 25, '1', '2', 'Devagi', 'Bpo', 21000.00, 1, 18000.00, 18000.00, 'Tambaram', 'Tambaram', '2103100016', '', '2', 'upload_files/candidate_tracker/13916998778_CV_2020-12-25-105024.pdf', NULL, NULL, '2021-03-10', 0, 'P1177', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process. no relevant exp. exp min 16K.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-10 02:06:20', 50, '2021-03-10 03:35:36', 0, NULL, 1),
(3751, 'Prabhakaran.A', '13', '9962838876', '', 'prabhakaran310898@gmail.com', '1998-08-31', 22, '2', '2', 'P.Appanasamy', 'Designer', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2103100017', '1', '1', 'upload_files/candidate_tracker/31783978308_Prabha_Karan_Resume.pdf', NULL, NULL, '2021-03-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Agreement, should check with family.Have a plan to do an MBA also.Sustainability doubt', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 02:28:45', 50, '2021-03-11 12:18:58', 0, NULL, 1),
(3752, 'Cyril Mathew', '6', '8668140091', '8124716452', 'cyrilmathew7.cm@gmail.com', '1995-08-17', 25, '2', '2', 'Lilly thresa', 'Working', 20.00, 2, 0.00, 21.00, 'chennai', 'chennai', '2103100018', '1', '1', 'upload_files/candidate_tracker/83387054873_Doc 2.pdf', NULL, NULL, '2021-03-11', 0, '', '3', '8', '2021-03-15', 202104.00, '', '6', '2021-11-30', '1', 'CTC - 2,02,104 With Gross - 16842 And TH - 16000, for guru team', '5', '2', '1', '1', '1', '', '2', '2021-03-11', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 06:09:30', 7, '2021-03-13 06:15:47', 0, NULL, 1),
(3753, 'Shanavas B', '2', '7305675272', '7904025863', 'shanavas2898@gmail.com', '1998-12-28', 22, '2', '2', 'Babu J', 'Tailor', 15000.00, 1, 0.00, 25000.00, 'Salem', 'Salem', '2103100019', '1', '1', 'upload_files/candidate_tracker/63968562770_shanavas-Resume(Updated).pdf', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Agreement', '2', '2', '0', '1', '1', '0', '2', '2021-03-19', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 06:22:39', 1, '2021-03-10 06:31:35', 0, NULL, 1),
(3754, 'Ramachandran', '13', '9551075811', '', 'ramachandranece1993@gmail.com', '1994-03-10', 27, '2', '2', 'Annamalai', 'Driver', 30000.00, 0, 0.00, 15000.00, '70, 2nd street annai indra nagar villivakkam', 'Chennai', '2103100020', '1', '1', 'upload_files/candidate_tracker/66781858095_resume 112.docx', NULL, NULL, '2021-03-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable(Interviewed by Latha)', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 06:32:26', 1, '2021-03-10 06:40:53', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3755, 'Mohanraj E', '2', '7358224732', '', 'gemohanraj1998@gmail.com', '1998-07-26', 22, '2', '2', 'G.Ethiraj', 'Contract labour', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Thirumullaivoyal', '2103100021', '1', '1', 'upload_files/candidate_tracker/41010554866_resume 0.1.pdf', NULL, NULL, '2021-03-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for agreement, Fresher will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-10 06:33:12', 1, '2021-03-10 06:38:11', 0, NULL, 1),
(3756, 'Jenifer E', '4', '8428364821', '9043851247', 'jenisweety223@gmail.com', '1997-12-21', 23, '2', '2', 'Ellapan P', 'Electrician', 25000.00, 1, 15000.00, 15000.00, 'Nedugundram', 'Perugalathur', '2103100022', '1', '2', 'upload_files/candidate_tracker/7963832092_JENIFER RESUME.docx', NULL, NULL, '2021-03-11', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for us.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 06:40:04', 1, '2021-03-11 12:07:43', 0, NULL, 1),
(3757, 'Subash shankar', '4', '9597372134', '9597614247', 'santhoshsivan1704@gmail.com', '1999-04-17', 21, '2', '2', 'Ragavan', 'Regional sales manager', 46000.00, 0, 0.00, 15000.00, 'Tirunelveli', 'Tambaram', '2103100023', '1', '1', 'upload_files/candidate_tracker/53044108797_Subash_Resume-01.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales, will not sustain, no job need, will not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 06:41:26', 50, '2021-03-13 09:43:56', 0, NULL, 1),
(3758, 'Dinesh R', '13', '9042908019', '', 'f.dineshdina262010@gmail.com', '1999-10-22', 21, '2', '2', 'Nill', 'Terner', 1.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2103100024', '1', '1', 'upload_files/candidate_tracker/73131481351_CV_2020-12-10-090840.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suits for our position(Interviewed by latha)', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-10 07:59:28', 50, '2021-03-12 11:33:53', 0, NULL, 1),
(3759, 'Rajeshwari p', '20', '7418307736', '', 'nikithapanner05091997@gmail.com', '1997-09-05', 23, '2', '2', 'Panneerselvam.K', 'Carpenter', 30000.00, 1, 13000.00, 13000.00, 'Nedungundram', 'Nedungundram/ perungalathur', '2103100025', '1', '2', 'upload_files/candidate_tracker/70803469588_Rajeshwari(1).pdf', NULL, NULL, '2021-03-11', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'not suit for sales and renewals.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-10 10:11:30', 1, '2021-03-11 12:50:49', 0, NULL, 1),
(3760, '', '0', '8270871947', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103110001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-11 09:39:32', 0, NULL, 0, NULL, 1),
(3761, 'R Venkatravana', '4', '8838139364', '', 'Venkatravana1803@gmail.com', '1994-08-18', 26, '2', '2', 'R Penchillammal', 'Sanitize worker', 20000.00, 2, 11000.00, 13000.00, 'Chennai', 'Chennai', '2103110002', '1', '2', 'upload_files/candidate_tracker/61226975093_R Venkatravana Resume.docx', NULL, NULL, '2021-03-11', 1, '', '3', '8', '2021-03-15', 145260.00, '', '3', '2021-03-18', '1', 'for muthu team With Gross - 12105 xxamp TH - 11500', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 10:56:45', 7, '2021-03-12 05:50:47', 0, NULL, 1),
(3762, 'Durgadevi G R', '4', '9840824137', '8220066389', 'grdurgadevi9695@gmail.com', '1995-06-09', 25, '2', '2', 'G G Ramalingam (late)', 'Plumber', 20000.00, 1, 12000.00, 14000.00, 'Chennai', 'Chennai', '2103110003', '1', '2', 'upload_files/candidate_tracker/70463510255_DURGA RESUME-1-1.docx', NULL, NULL, '2021-03-11', 1, '', '3', '8', '2021-03-15', 132000.00, '', '3', '2021-03-18', '2', '11k ctc for muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 10:58:41', 7, '2021-03-12 05:51:08', 0, NULL, 1),
(3763, 'Saideepak B', '6', '8428691560', '', '220.journey.rider@gmail.com', '1997-11-28', 23, '2', '2', 'Attiyammal B', 'Homemaker', 6000.00, 1, 12400.00, 15000.00, 'No:8/a Anbu nagar main road ,Alwarthiru Nagar', 'Chennai', '2103110004', '1', '2', 'upload_files/candidate_tracker/2835148557_1614843563599Resume_Sai.docx', NULL, NULL, '2021-03-11', 0, '', '3', '8', '2021-03-15', 168000.00, '', '3', '2021-05-13', '1', 'Selected For Kannan Team RE,CTC - 168000 With Gross - 14000 xxamp TH - 13,300', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 10:59:07', 7, '2021-03-13 06:49:16', 0, NULL, 1),
(3764, 'suthakar', '4', '8148672168', '8124268781', 'suthakar093@gmail.com', '1993-07-03', 27, '2', '2', 'p.chandrsekaran', 'farmer', 9000.00, 0, 15000.00, 15000.00, 'ekattuthangal', 'ekattuthangal', '2103110005', '1', '2', 'upload_files/candidate_tracker/83997429512_Resume.suthakar.docx', NULL, NULL, '2021-03-11', 7, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suits for our role, expecting High Pay', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 11:21:33', 50, '2021-03-11 12:52:53', 0, NULL, 1),
(3765, 'v. jafer ali', '4', '8682962768', '8072106124', 'jafar7845.ja63@gmail.com', '1993-12-17', 27, '1', '2', '. siddique ahmed', 'labour', 10000.00, 3, 13000.00, 15000.00, 'ambur', 'chennai', '2103110006', '', '2', 'upload_files/candidate_tracker/58353934865_JAFER ALI CV (1).pdf', NULL, NULL, '2021-03-11', 0, 'syed', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for admin job. will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-11 11:24:47', 1, '2021-03-11 11:54:42', 0, NULL, 1),
(3766, 'V Thouseef Ahmed', '4', '8072106124', '8682962768', 'tousee486@gmail.com', '1999-05-06', 21, '1', '2', 'Thoufeeque Ahmed', 'Staff', 90000.00, 3, 0.00, 12000.00, 'No 58 judge manai 5th street Ambur', 'No 29 whutucattan street periyamet Chennai 600003', '2103110007', '', '1', 'upload_files/candidate_tracker/69916755389_syco thouseef.docx', NULL, NULL, '2021-03-11', 0, 'Syed', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling. fresher 3m in semi voice.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-11 11:29:25', 1, '2021-03-11 11:49:16', 0, NULL, 1),
(3767, 'Sriraman R', '16', '9843465356', '9940032615', 'r.sriraman139@gmail.com', '1995-03-30', 25, '2', '2', 'K.S.Rajendran', 'Agriculture', 80000.00, 0, 10806.00, 18000.00, 'Trichy', 'Chennai Adambakkam', '2103110008', '1', '2', 'upload_files/candidate_tracker/16771196979_8982768164_12132.pdf', NULL, NULL, '2021-03-11', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'appearance is not okay. avg communication.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-11 11:37:19', 1, '2021-03-11 12:55:29', 0, NULL, 1),
(3768, 'Deepika V', '4', '9080417940', '7448610771', 'deepikavadivelu9@gmail.com', '2000-09-10', 20, '2', '2', 'Vadivelu S', 'Late', 10000.00, 2, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2103110009', '1', '1', 'upload_files/candidate_tracker/58198435836_V. Deepika Resum.pdf', NULL, NULL, '2021-03-11', 0, '', '3', '8', '2021-03-15', 126600.00, '', '6', '2021-06-02', '2', '10k th for keerthiga team.', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 11:37:36', 7, '2021-03-12 05:51:23', 0, NULL, 1),
(3769, '', '0', '8637614016', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103110010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-11 11:44:13', 0, NULL, 0, NULL, 1),
(3770, '', '0', '9965454243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103110011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-11 12:15:32', 0, NULL, 0, NULL, 1),
(3771, 't.vigneshwaran', '4', '8248213464', '9551482080', 'vignesht73@gmail.com', '1996-11-25', 24, '2', '2', 'theyaneshwaran', 'business', 15000.00, 1, 12000.00, 15000.00, 'chennai', 'chennai', '2103110012', '1', '2', 'upload_files/candidate_tracker/84606837431_vignesh update resume (4).docx', NULL, '1', '2021-03-11', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for CRM. looking for back end job.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'again he came for an interview on 05-02-22, last 9m WFH in flipkart customer support and looking for a similar kind of job. expt is 15k.', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-03-11 12:17:05', 7, '2022-02-05 03:32:57', 0, NULL, 1),
(3772, 'Bhoopeshmani', '5', '9360701234', '9150743344', 'bhoopeshamex@gmail.com', '1995-07-12', 25, '2', '1', 'Miroshini', 'Home maker', 45000.00, 0, 350000.00, 400000.00, 'Chennai', 'Chennai', '2103110013', '1', '2', 'upload_files/candidate_tracker/72741854951_Resume_Bhoopesh mani_Format1 (1).pdf', NULL, NULL, '2021-03-11', 7, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for agency channel', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 12:36:11', 50, '2021-03-11 12:51:47', 0, NULL, 1),
(3773, 'Bala Murugan', '4', '8428554475', '7358512520', 'bm822365@gmail.com', '1998-05-01', 22, '2', '2', 'Anandan', 'Real estate', 30000.00, 2, 11000.00, 11000.00, 'Chennai', 'Chennai', '2103110014', '1', '2', 'upload_files/candidate_tracker/67288672510_devi 267---.pdf', NULL, NULL, '2021-03-11', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'profile mismatch and will not suite for calling. no sustainability.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-11 01:29:28', 50, '2021-03-11 03:17:05', 0, NULL, 1),
(3774, 'zehra m', '16', '8637689028', '', 'zehramurtuza16@gmail.com', '2000-11-16', 20, '2', '2', 'murtuza', 'business', 50000.00, 1, 0.00, 25000.00, 'CHENNAI', 'CHENNAI', '2103110015', '1', '1', 'upload_files/candidate_tracker/18334247514_InternshalaResume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Not Turned Up', '3', '1', '0', '1', '1', '0', '2', '2021-03-15', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 03:36:26', 1, '2021-03-11 03:55:35', 0, NULL, 1),
(3775, 'Santhanam s', '4', '9087248669', '9965454243', 'kssanthanam2013@gmail.com', '1992-05-03', 28, '3', '2', 'siva', 'Labour', 35000.00, 2, 0.00, 20000.00, 'Kandamanallur gingee Tk vpm dt', 'Guduvanchery', '2103110016', '', '2', 'upload_files/candidate_tracker/85825770480_santhanam profile.pdf', NULL, NULL, '2021-03-11', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'too long. from gooduvancherry.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-11 04:04:55', 1, '2021-03-11 04:25:25', 0, NULL, 1),
(3776, 'Akshaya Hemadri', '22', '9677191097', '', 'hemadriakshaya@gmail.com', '1994-04-29', 26, '2', '2', 'Hemadri', 'Farmer', 1.00, 0, 0.00, 1.00, 'Anna Nagar', 'Anna Nagar', '2103110017', '1', '1', 'upload_files/candidate_tracker/65555965057_Akshaya Hemadri Resume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Attitude issue.', '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 04:57:25', 1, '2021-03-12 05:28:15', 0, NULL, 1),
(3777, 'pramodh t', '2', '8838829856', '8220506062', 'pramodh1412@gmail.com', '2000-05-25', 20, '2', '2', 'm.thirunavukkarasu', 'farmer', 15000.00, 1, 0.00, 30000.00, 'chennai', 'kandigai', '2103110018', '1', '1', 'upload_files/candidate_tracker/98515982518_pramodh updated resume.docx', NULL, NULL, '2021-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High CTC expectation,not open for agreement\n', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 05:16:14', 60, '2021-03-22 06:28:01', 0, NULL, 1),
(3778, 'Gayathri Devi R', '16', '7904889349', '9941376791', 'gayuhasi@gmail.com', '1993-02-19', 28, '2', '2', 'Father: Raghu Raman PV', 'Fire Officer at ONGC', 60000.00, 1, 14000.00, 20000.00, 'Pammal', 'Pammal', '2103110019', '1', '2', 'upload_files/candidate_tracker/60528791623_Gayu New Reumes.docx', NULL, NULL, '2021-03-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'avg communication, wrote content from google.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 07:39:29', 1, '2021-03-11 07:55:24', 0, NULL, 1),
(3779, 'Tharani', '16', '8248288942', '9788648493', 'tharaniece32@gmail.com', '1995-12-23', 25, '2', '2', 'Thangavel', 'Retired BHEL employee', 45000.00, 1, 0.00, 25000.00, 'Trichy', 'Chennai', '2103110020', '1', '1', 'upload_files/candidate_tracker/45981443821_T THARANI MBA 2020.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not turned up', '3', '2', '', '1', '1', '', '2', '2021-03-15', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 07:56:37', 50, '2021-03-13 10:32:18', 0, NULL, 1),
(3780, 'Abirami.N', '16', '9176714527', '', 'abinedumal@gmail.com', '1995-09-21', 25, '2', '2', 'V.s.Nedumal', 'Engineer', 50000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2103110021', '1', '2', 'upload_files/candidate_tracker/53948951797_Abirami.N RESUME.pdf', NULL, NULL, '2021-03-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no job need. written was avg. will not suite for coordination', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-11 09:12:56', 60, '2021-03-16 12:14:23', 0, NULL, 1),
(3781, 'fathima k', '16', '9445937827', '', 'velankaren1418@gmail.com', '1979-11-13', 41, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 21000.00, 'chennai', 'chennai', '2103120001', '3', '2', 'upload_files/candidate_tracker/72533453081_FATHIMA.k_148773809.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'good communication but know have basic knowledge in excel and analytical.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-12 09:27:12', 1, '2021-03-12 09:37:12', 0, NULL, 1),
(3782, 'Sadaveeranan', '4', '6382266063', '9786337478', 'sadaveeranandchs@gmail.com', '1998-07-23', 22, '1', '2', 'Veeranan', 'Farmer', 10000.00, 4, 0.00, 13000.00, 'Saidapet', 'Saidapet', '2103120002', '', '1', 'upload_files/candidate_tracker/60533089584_interviewschedule.pdf', NULL, NULL, '2021-03-12', 0, 'Jobs', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-12 11:29:15', 50, '2021-03-12 12:39:43', 0, NULL, 1),
(3783, 'Mohammed basith afzal rahman', '22', '7418487736', '', 'afzalrahman78@gmail.com', '1997-05-28', 23, '2', '2', 'Salikhan', 'Shopkeeper', 18000.00, 2, 0.00, 16000.00, 'Chennai', 'Chennai', '2103120003', '1', '2', 'upload_files/candidate_tracker/64854952168_1607943476110Resume_Afzal.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidat not having basic knowledge about DM', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-12 11:32:21', 8, '2021-03-12 01:39:41', 0, NULL, 1),
(3784, 'Yuvarani', '4', '8015100365', '8778219756', 'yuvaranisankar321@gmail.com', '1995-06-13', 25, '2', '2', 'Sankar', 'Business', 40000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2103120004', '1', '2', 'upload_files/candidate_tracker/8970127925_yuva resume.docx', NULL, NULL, '2021-03-12', 0, '', '3', '8', '1970-01-01', 132000.00, '', '2', '1970-01-01', '2', 'CTC - 132000 With Gross - 11000 xxamp TH - 10450 for muthu team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-12 11:32:22', 7, '2021-03-12 05:51:37', 0, NULL, 1),
(3785, 'L.rakesh', '16', '8939492259', '', 'Rakesh31101997@gmail.com', '1997-10-31', 23, '2', '2', 'S.lakshmi Narasimhan', 'A/c mechanic', 25000.00, 1, 0.00, 18000.00, 'No.53 kuttiappan 1st street kilapuk chennai 600010', 'No.53 Kuttiappan 1st Street Kilapuk Chennai 600010', '2103120005', '1', '1', 'upload_files/candidate_tracker/69595297712_rakesh-resume.pdf', NULL, NULL, '2021-03-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'just like that came for an interview. no job need. Planing to do business', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 12:05:52', 50, '2021-03-12 02:40:35', 0, NULL, 1),
(3786, '', '0', '9442841452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103120006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-12 03:14:42', 0, NULL, 0, NULL, 1),
(3787, 'subramaniam s', '22', '7810009424', '9443774796', 'vigneshravii96@gmail.com', '1996-09-15', 24, '2', '2', 'sitaraman s', 'retired', 200000.00, 0, 12000.00, 15000.00, 'chennai', 'chennai', '2103120007', '1', '2', 'upload_files/candidate_tracker/10970312282_SUBRAMANIAM RESUME DM.pdf', NULL, NULL, '2021-03-15', 0, '', '3', '8', '2021-03-22', 24000.00, '', '0', NULL, '1', 'Selected For DM With Internship For 3 Months\nInternship Pay 2k Employment Will Be Discussed After Internship.2.3 Yrs Of Agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 03:28:36', 1, '2021-03-12 03:40:39', 0, NULL, 1),
(3788, 'Mohamed Javith', '13', '6380259378', '7094783968', 'javinuh@gmail.com', '1999-07-15', 21, '2', '2', 'Shek mohaideen', 'Self employee', 10000.00, 2, 0.00, 12000.00, 'Ramanathapuram', 'Pondicherry', '2103120008', '1', '1', 'upload_files/candidate_tracker/31075288478_Mohamed Javith resume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'System Task Given and not to able to do the tsk', '2', '1', '0', '1', '1', '0', '2', '2021-03-16', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 03:36:08', 1, '2021-03-12 03:42:01', 0, NULL, 1),
(3789, 'Stallon', '5', '9840045523', '8248132545', 'Staln0808@gmail.com', '1990-09-25', 30, '3', '2', 'Burono', 'Self employed', 20000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2103120009', '', '2', 'upload_files/candidate_tracker/7180917533_stallon cv.docx', NULL, NULL, '2021-03-12', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response.', '5', '2', '', '1', '1', '', '2', '2021-03-22', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-12 03:54:20', 8, '2021-03-12 05:47:09', 0, NULL, 1),
(3790, 'Maclean', '27', '9790709474', '', 'macleanmicheal2647.mm@gmail.com', '1997-07-26', 23, '2', '2', 'Micheal', 'Pharmacist', 80000.00, 1, 260000.00, 360000.00, 'Chennai', 'Chennai', '2103120010', '1', '2', 'upload_files/candidate_tracker/71869086444_Resume_Maclean_basic.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Rejected in the client round', '2', '1', '0', '1', '1', '0', '2', '2021-03-15', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 04:22:37', 1, '2021-03-12 04:30:38', 0, NULL, 1),
(3791, 'Prasanth. M', '27', '8428815902', '', 'Mprasanthprism@gmail.com', '1995-05-10', 25, '2', '2', 'Muthiah. A', 'Cooli', 30000.00, 1, 260000.00, 400000.00, 'Trichy', 'Chennai', '2103120011', '1', '2', 'upload_files/candidate_tracker/59103744235_PRASANTH EXPERIENCE -CV (1).docx', NULL, NULL, '2021-03-13', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Client Round', '2', '1', '0', '1', '1', '0', '2', '2021-03-15', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 04:38:46', 1, '2021-03-12 04:46:02', 0, NULL, 1),
(3792, 'Praveen Joseph sagayaraj', '16', '6374575282', '9841085236', 'Praveenjoseph04011992@gmail.com', '1992-01-04', 29, '2', '2', 'John Samuel', 'Security', 25000.00, 2, 19000.00, 25000.00, 'Perambur', 'Perambur', '2103120012', '1', '2', 'upload_files/candidate_tracker/28913754860_Praveen Joseph CV.docx', NULL, NULL, '2021-03-13', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 05:10:19', 8, '2021-03-13 06:00:51', 0, NULL, 1),
(3793, 'Gnanavel A', '13', '8883545620', '8270668046', 'gnanavelraja222@gmail.com', '1999-02-18', 22, '2', '2', 'Kanatha', 'Daily wages', 30000.00, 1, 0.00, 10.00, 'Tiruvannamali', 'Ambattur', '2103120013', '1', '1', 'upload_files/candidate_tracker/58264603101_GNANAVELr.docx', NULL, NULL, '2021-03-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for the agreement', '2', '2', '', '1', '1', '', '2', '2021-03-15', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 06:19:02', 50, '2021-03-13 10:00:09', 0, NULL, 1),
(3794, 'venkatesh', '27', '8508440124', '', 'venkatesh.ph10@gmail.com', '1995-01-02', 26, '2', '2', 'palanisamy', 'operatio theater assisstant', 100000.00, 1, 270000.00, 350000.00, 'salem', 'chennai', '2103120014', '1', '2', 'upload_files/candidate_tracker/17076364166_1557991944025_VenkatResume.doc', NULL, NULL, '2021-03-13', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Rejected in the Client Interview', '2', '2', '0', '1', '1', '0', '2', '2021-03-15', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 07:06:54', 1, '2021-03-12 07:13:22', 0, NULL, 1),
(3795, 'sasikumar', '13', '9080242678', '9840322947', 'mesasi1326@gmail.com', '1997-05-31', 23, '2', '2', 'p.chinniyan', 'building work', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2103120015', '1', '1', 'upload_files/candidate_tracker/95316049922_Resume.sasi.docx', NULL, NULL, '2021-03-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not comfortable with the agreement, left without attending the 2nd level interview', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 07:55:45', 7, '2021-03-13 12:40:20', 0, NULL, 1),
(3796, 'Ishwarya A', '13', '7397312441', '8428476463', 'ishwaryaangappan@gmail.com', '1996-05-20', 24, '2', '2', 'K.Angappan', 'Web analyst', 18000.00, 2, 0.00, 20000.00, 'No.9/2 kanniamman koil Street, West mambalam', 'No.9/2 kanniamman koil Street, West mambalam', '2103120016', '1', '1', 'upload_files/candidate_tracker/43960212941_Ishwarya_resume.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much suits will not sustain\n', '2', '2', '', '1', '1', '', '2', '2021-03-19', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-12 08:08:54', 50, '2021-03-15 12:15:34', 0, NULL, 1),
(3797, 'Sabari Rajan .G', '13', '9585484784', '8526426553', 'sabarirajangnanasekar@gmail.com', '1998-09-07', 22, '3', '2', 'S.Gnana sekar', 'Former', 20000.00, 1, 0.00, 15000.00, '11/12A Gandhi road vriddhachalam cuddalore', '11/12A Gandhi road vriddhachalam cuddalore', '2103120017', '', '1', 'upload_files/candidate_tracker/75333515123_SabariRajan Resume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Comfortable With The Agreement, Left Without Attending The 2nd Level Interview', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-12 08:11:04', 1, '2021-03-13 12:23:49', 0, NULL, 1),
(3798, 'Prakash saravanan', '6', '7904097345', '9566094648', 'chinniprakash1998@gmail.com', '1998-09-24', 22, '2', '2', 'Saravanan', 'Construction', 25000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2103120018', '1', '2', 'upload_files/candidate_tracker/88793927848_Prakash.docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'drop', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-12 09:37:04', 7, '2021-03-24 08:00:45', 0, NULL, 1),
(3799, '', '0', '9788648493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103120019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-12 11:37:24', 0, NULL, 0, NULL, 1),
(3800, 'NIRANJAN V', '13', '9994828709', '8072297814', 'niranjan020898@gmail.com', '1998-08-02', 22, '2', '2', 'Seetha Lakshmi', 'BE', 150000.00, 1, 0.00, 15000.00, '17, Chellam North Street Rajapalayam', 'Chennai', '2103130001', '1', '1', 'upload_files/candidate_tracker/89928842305_NiranjanResume 2.doc', NULL, NULL, '2021-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for the agreement, Fresher profile', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-13 03:39:48', 1, '2021-03-15 12:20:56', 0, NULL, 1),
(3801, 'm.archana', '4', '7305269693', '', 'archanamurali2311@gmail.com', '1999-11-23', 21, '4', '2', 'm.murali', 'electrician', 90000.00, 0, 0.00, 10000.00, 'chennai', 'chennai', '2103130002', '', '1', 'upload_files/candidate_tracker/32490375393_achu resume (1).docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pursuing her final year, has to attend online class weekly twice. ask her to call after degree.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 10:43:35', 1, '2021-03-13 11:22:49', 0, NULL, 1),
(3802, 'mohamed saifuddin', '13', '8667569932', '7299319972', 'mdsaif0611@gmail.com', '1995-11-19', 25, '2', '2', 'mohamed thajuddin', 'sales man', 15000.00, 1, 16000.00, 25000.00, 'chennai', 'chennai', '2103130003', '1', '2', 'upload_files/candidate_tracker/44219483572_Mohamed-Saifuddin-T.pdf', NULL, NULL, '2021-03-15', 28, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not completed.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-13 10:45:20', 50, '2021-03-15 10:22:59', 0, NULL, 1),
(3803, 'Ranjith Kumar p', '5', '9080799473', '', 'ranjiths211@gmail.com', '2006-03-13', 0, '2', '2', 'NAGAS', 'Driving', 60000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2103130004', '8', '1', 'upload_files/candidate_tracker/60045888936_RANJITH REUSME.docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not Speaking up, will not suite for sales. doesnt have observation and listening skills', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 10:51:11', 1, '2021-03-13 11:05:39', 0, NULL, 1),
(3804, 'B. Priya', '4', '9500630959', '7094656144', 'Deepanpriya121093@gmail.com', '1993-10-12', 27, '1', '1', 'V. Deepak kumar', 'Body shop ( Painting )', 25000.00, 2, 18000.00, 18000.00, 'T. Nagar', 'T. Nagar', '2103130005', '', '2', 'upload_files/candidate_tracker/733843673_RESUME modified (1) (2)-converted-converted (1).pdf', NULL, NULL, '2021-03-13', 0, '12123', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for sales calling. exp is 18k. newly married too. will not sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 11:02:19', 1, '2021-03-13 11:33:31', 0, NULL, 1),
(3805, 'Subasrri Mahalingam', '4', '8838599277', '8124797731', 'subasrrimahalingam98@gmail.com', '1998-01-07', 23, '2', '2', 'Mahalingam', 'Worked in PWD', 17000.00, 1, 0.00, 13000.00, 'Erode', 'Poonamalle', '2103130006', '1', '1', 'upload_files/candidate_tracker/15153075676_Sri resume(1).pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no job need, will not sustain and will not suite for calling too.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-13 11:34:09', 1, '2021-03-13 11:50:04', 0, NULL, 1),
(3806, 'Sudha Muniyappan', '4', '6383786041', '8124797731', 'msudhaa1997@gmail.com', '1997-08-19', 23, '2', '2', 'Muniyappan', 'Driver', 15000.00, 2, 0.00, 13000.00, 'Mettur Dam-1, Salem (dt).', 'Poonamallee, chennai', '2103130007', '1', '1', 'upload_files/candidate_tracker/61985153172_1611573409546_sudha Resume.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'profile and data miss match and will not sustain. not speaking up. will not handle pressure.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-13 11:34:35', 7, '2021-03-13 06:46:25', 0, NULL, 1),
(3807, 'Adlin Raj', '4', '9791728573', '7094878640', 'Adlinrajadr1@gmail.com', '1997-09-15', 23, '2', '2', 'Ajitha Kumari.j', 'Housewives', 20000.00, 1, 0.00, 15000.00, 'Vettuvellaiveedumalaicodeedicode(Pt)kanniyakumari', 'Valacherry,checkpost', '2103130008', '1', '1', 'upload_files/candidate_tracker/1993757078_adr resum.docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain and time being he is looking for job. language is also not good.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-13 11:39:00', 7, '2021-03-13 06:45:23', 0, NULL, 1),
(3808, 'Parvathi Nathan', '4', '8220859545', '', 'Parvathinathan1697@gmail.com', '1997-04-16', 23, '2', '2', 'Krishnan (Father)', 'Grocery store worker', 10000.00, 1, 15000.00, 15000.00, 'Tirunelveli', 'Chennai', '2103130009', '1', '2', 'upload_files/candidate_tracker/81089395158_RESUME[1].pdf', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not turned up', '1', '2', '', '1', '1', '', '2', '2021-03-15', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-13 11:57:57', 7, '2021-03-13 06:44:51', 0, NULL, 1),
(3809, 'Sai sunitha.R', '4', '7550237523', '', 'Sunithasai34@gmail.com', '1999-04-01', 21, '4', '1', 'G.ramu ,N.shanthi', 'Security', 108000.00, 1, 0.00, 15000.00, '11/2A,5th main road,gangai street ,velacherry.', '11/2A ,5th Main road, gangai street,velacherry.', '2103130010', '', '1', 'upload_files/candidate_tracker/30821106447_S.VIGNESH.docx', NULL, NULL, '2021-03-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us', '1', '2', '', '1', '1', '', '2', '2021-03-15', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 12:01:18', 7, '2021-03-13 06:44:14', 0, NULL, 1),
(3810, 'j shalini', '4', '9080867575', '', 'shalini7712@gmail.com', '1998-10-30', 22, '1', '2', 's.janakiraman', 'labour', 85000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2103130011', '', '1', 'upload_files/candidate_tracker/44543082523_Document (3).pdf', NULL, NULL, '2021-03-13', 0, 'jobs', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 12:16:21', 7, '2021-03-13 06:43:31', 0, NULL, 1),
(3811, 'archana', '4', '8220907434', '', 'ariarchana14@gmail.com', '1999-09-14', 21, '3', '2', 'malar', 'labour', 7000.00, 2, 0.00, 15000.00, 'thiruchendur', 'chennai velacheri', '2103130012', '', '2', 'upload_files/candidate_tracker/76397014611_Archana.pdf', NULL, NULL, '2021-03-13', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not bold', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 12:56:42', 7, '2021-03-13 06:42:44', 0, NULL, 1),
(3812, '', '0', '9444605079', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103130013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-13 12:59:57', 0, NULL, 0, NULL, 1),
(3813, 'jayanthi', '4', '8778648210', '7418126832', 'jayanthijayanthi058@gmail.com', '2000-08-13', 20, '3', '2', 'devaraj', 'labour', 7000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103130014', '', '1', 'upload_files/candidate_tracker/68168187241_Document (3).pdf', NULL, NULL, '2021-03-13', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Not at all speaking', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 01:14:01', 1, '2021-03-13 01:27:10', 0, NULL, 1),
(3814, 'M. Priya', '4', '9384616360', '7338904456', 'priya2315spl@gmail.com', '1994-11-15', 26, '1', '2', 'M. Manivannan', 'Central govt or medical line', 15000.00, 3, 13000.00, 15000.00, '35/89 6th Street annai sivagami nagar Ennore,', '35/89 6th Street Annai Sivagami Nagar Ennore,', '2103130015', '', '2', 'upload_files/candidate_tracker/45784922089_New doc 13-Mar-2021 3.17 pm.pdf', NULL, NULL, '2021-03-13', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no relevant exp. too long from ennore.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 03:03:14', 1, '2021-03-13 03:25:49', 0, NULL, 1),
(3815, 'Vaishnavi.A', '4', '8807491657', '8056255880', 'Ananadhvaishu@gmail.com', '1995-04-25', 25, '1', '2', 'K.Anandhan', 'Corpentor', 15000.00, 1, 0.00, 15000.00, 'No: 74/48 ,6th Street,Annai sivagami nagar,Ennore', 'No: 74/48 ,6th Street,Annai Sivagami Nagar,Ennore', '2103130016', '', '1', 'upload_files/candidate_tracker/6270506879_New doc 13-Mar-2021 3.17 pm-1.pdf', NULL, NULL, '2021-03-13', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long from ennore', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 03:03:26', 7, '2021-03-13 06:41:54', 0, NULL, 1),
(3816, 'UDHAYASURIYA', '13', '8825963768', '', 'udhayasuriya1912@gmail.com', '1998-12-19', 22, '2', '2', 'Udhaya.A', 'Land seller', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2103130017', '1', '1', 'upload_files/candidate_tracker/77320119732_new1.docx', NULL, NULL, '2021-03-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not fit for our PHP Role\n', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-13 03:08:00', 50, '2021-03-15 11:05:38', 0, NULL, 1),
(3817, 'Priya. M', '4', '7338904456', '9384616360', 'priya2315spl@gmail.com', '1994-11-15', 26, '1', '2', 'M. Manivannan', 'Lab work', 15000.00, 3, 14000.00, 15000.00, '35/89 6th Street annai sivagami nagar Ennore,', '35/89 6th Street Annai Sivagami Nagar Ennore,', '2103130018', '', '2', 'upload_files/candidate_tracker/36028127058_New doc 13-Mar-2021 3.17 pm.pdf', NULL, NULL, '2021-03-13', 0, 'Sudhakar', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-13 03:44:24', 7, '2021-03-13 05:53:56', 0, NULL, 1),
(3818, 'kripa', '16', '9025614808', '', 'kripaleah@gmail.com', '1986-08-17', 34, '2', '1', 'jackson', 'enginerr', 200000.00, 0, 0.00, 5.00, 'chennai', 'chennai', '2103130019', '1', '2', 'upload_files/candidate_tracker/48484421222_1604401148212_kripa new resume.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will check for someother profile.', '3', '2', '0', '1', '1', '0', '2', '2021-03-16', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-13 05:03:34', 1, '2021-03-15 12:19:39', 0, NULL, 1),
(3819, '', '0', '9962956914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103130020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-13 05:41:44', 0, NULL, 0, NULL, 1),
(3820, 'Bhuvanesh S', '27', '9047979483', '', 'bhuvan29.selva@gmail.com', '1997-10-29', 23, '2', '2', 'Selvakumar', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Mayiladuthurai', 'Ambathur', '2103130021', '1', '1', 'upload_files/candidate_tracker/46066731492_BHUVAN MCA .pdf', NULL, NULL, '2021-03-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for Dotnet Winforms', '2', '2', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-13 06:10:44', 50, '2021-03-15 12:12:20', 0, NULL, 1),
(3821, '', '0', '6383331797', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-14 12:16:53', 0, NULL, 0, NULL, 1),
(3822, '', '0', '9176714586', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103140002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-14 01:20:31', 0, NULL, 0, NULL, 1),
(3823, 'RADHIKA S', '27', '8098508312', '9751688975', 'radhisingaravelu@gmail.com', '1998-12-19', 22, '2', '2', 'SINGARAVELU', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Tiruvarur', 'Perungalathur', '2103140003', '1', '1', 'upload_files/candidate_tracker/13818923755_RADHIKA_S.pdf', NULL, NULL, '2021-03-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-14 05:04:05', 1, '2021-03-14 05:08:12', 0, NULL, 1),
(3824, 'Kaviya M', '22', '6380376471', '7708624070', 'Kaviyamr630@gmail.com', '1997-11-30', 23, '2', '2', 'M. Karimuthu', 'Nlc employeee', 50000.00, 2, 11000.00, 15000.00, '397-A, TYPE-II, BLOCK-29,NEYVELI-07', 'subi ladies hostel, sholinganallur, chennai', '2103140004', '1', '2', 'upload_files/candidate_tracker/64318816964_kaviya Resume.pdf', NULL, NULL, '2021-03-16', 15, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-14 11:19:59', 7, '2021-03-18 10:21:02', 0, NULL, 1),
(3825, 'V.Prakash', '6', '6383217959', '', 'prakashvenkatesan84156@gmail.com', '1999-05-13', 21, '2', '2', 'Venkatesan', 'Auto drive', 10000.00, 1, 12000.00, 16000.00, 'Ayanavaram', 'Ayanavaram', '2103150001', '1', '2', 'upload_files/candidate_tracker/8141882361_15473_1612783189985_1610168548375_V.Prakash Updated Resume (1)-converted.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very High Expectation,No relevant Exp last CTC - 1,44,00 and the expected CTC - 192000 more than 30%', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-15 09:42:55', 1, '2021-03-15 01:12:15', 0, NULL, 1),
(3826, 'Saravanan.G', '4', '9080800850', '', 'gsaravanansaro12345@gmail.com', '2006-03-15', 15, '1', '2', 'Gajapathi.S', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Mandaveli', 'Mandaveli', '2103150002', '', '1', 'upload_files/candidate_tracker/55730864260_Saravana Resume.pdf', NULL, NULL, '2021-03-15', 0, 'P1027', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling. local slang.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-15 10:02:27', 1, '2021-03-15 10:07:24', 0, NULL, 1),
(3827, 'Sedhuraman. S', '6', '6369738776', '', 'Sedhuraman168@gmail.com', '1995-08-16', 25, '1', '2', 'Vilasini', 'theatre Assistance in government eye hospital', 19000.00, 1, 18000.00, 20000.00, '174 kamaraj nagar kilpauk chennai 600010', 'Kilpaukkam', '2103150003', '', '2', 'upload_files/candidate_tracker/76604067577_Sedhuraman.docx.pdf', NULL, NULL, '2021-03-15', 0, '66668', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no skills,no experince', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-15 11:14:25', 8, '2021-03-15 01:36:34', 0, NULL, 1),
(3828, '', '0', '9345105934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103150004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-15 12:09:44', 0, NULL, 0, NULL, 1),
(3829, 'Pradeep Raghavan k', '2', '9566671245', '', 'pradeepraghavan66010@gmail.com', '1999-11-04', 21, '2', '2', 'Lakshmi c', 'House wife', 2500.00, 0, 0.00, 30000.00, 'Oddanchatram', 'Oddanchatram', '2103150005', '1', '1', 'upload_files/candidate_tracker/16449354306_pradeepraghavan.pdf', NULL, NULL, '2021-03-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 12:15:43', 1, '2021-03-15 12:22:54', 0, NULL, 1),
(3830, 'robinson', '6', '9345103934', '9904597261', 'robinsonrc21@gmail.com', '1996-04-21', 24, '2', '1', 'robert', 'paper agency', 30000.00, 1, 19000.00, 22000.00, 'madavaram', 'ponniammanmedu', '2103150006', '1', '2', 'upload_files/candidate_tracker/54458346435_robin.docx', NULL, NULL, '2021-03-15', 10, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-15 12:23:06', 7, '2021-03-18 10:23:11', 0, NULL, 1),
(3831, 'manoharan', '4', '9790370540', '9344134540', 'manoharan1072@gmail.com', '1996-07-22', 24, '3', '2', 'p ramu', 'housewife', 7000.00, 1, 13000.00, 12000.00, 'karaikudi', 'chennai', '2103150007', '', '2', 'upload_files/candidate_tracker/31350660662_manoj resume 2.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-15 01:14:37', 1, '2021-03-15 01:23:23', 0, NULL, 1),
(3832, 'divakar', '6', '8610345710', '', 'pachaidivaka@gmail.com', '1996-11-11', 24, '2', '2', 'pachiayappan', 'bsnl', 12000.00, 4, 0.00, 12000.00, 'chennai', 'chennai', '2103150008', '2', '1', 'upload_files/candidate_tracker/82430948582_document (1).pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not handle pressure and will not sustain. int in photography and absconded from previous company and told the company was shutdown.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-15 01:33:16', 1, '2021-03-15 01:35:16', 0, NULL, 1),
(3833, 'VEILUMUTHU M', '5', '9894378292', '', 'veilumuthu2594an@gmail.com', '1994-08-25', 26, '2', '2', 'MUTHUSAMY', 'Driver', 30000.00, 1, 0.00, 25000.00, 'Tirunelveli', 'Tirunelveli', '2103150009', '1', '2', 'upload_files/candidate_tracker/26105443170_RESUME_Veilumuthu.M (1).pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'last th is 14k and exp 25kth. profile matches for RE.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-15 02:32:04', 50, '2021-03-15 02:54:08', 0, NULL, 1),
(3834, 'mullai vendan shanmugam', '16', '9790959728', '', 'mullaivendan2809@gmail.com', '1997-09-28', 23, '2', '2', 'p shanmugam', 'section officer', 85000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2103150010', '1', '1', 'upload_files/candidate_tracker/95036990462_MullaiVendan\'s resume.pdf', NULL, NULL, '2021-03-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no observation, listening, acceptance. fresher looking for 3l ctc', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 03:32:13', 1, '2021-03-15 04:49:53', 0, NULL, 1),
(3835, 'Prakash A', '6', '9677686418', '8754238158', 'prakashprakash34852@gmail.com', '2000-05-28', 20, '2', '2', 'Anthuvan R', 'Driver', 10000.00, 3, 0.00, 16000.00, 'Arasankazhani', 'Arasankazhani', '2103150011', '1', '1', 'upload_files/candidate_tracker/619995003_prakash.pdf', NULL, NULL, '2021-03-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-15 03:40:25', 1, '2021-03-15 03:56:34', 0, NULL, 1),
(3836, 'Vishnu', '16', '9400640589', '8075569768', 'Vishnu.mdas589@gmail.com', '1996-02-19', 25, '2', '2', 'Vijaya', 'Logistics', 40000.00, 1, 0.00, 25000.00, 'Koonthalloor chirayinkeezhu Trivandrum kerala', 'moggapair east, Chennai, Tamil nadu', '2103150012', '1', '1', 'upload_files/candidate_tracker/4782367673_VISHNU MOHANDAS ( MECH) .pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '3', '1', '0', '1', '1', '0', '2', '2021-03-20', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 04:05:38', 1, '2021-03-15 05:01:51', 0, NULL, 1),
(3837, 'Praveen Aadhithya R', '16', '8678969598', '', 'aadhithya7666@gmail.com', '2000-04-23', 20, '2', '2', 'Satheesh Kumar', 'Sales', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2103150013', '1', '1', 'upload_files/candidate_tracker/70787425483_Praveen_Resume.docx', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and looking for network engg. job or it job but not oaky with internship with infotech, not int in sales, demand 20k package.', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 05:11:54', 1, '2021-03-15 05:19:09', 0, NULL, 1),
(3838, 's. jasmine rhema', '27', '9597222322', '9445347858', 'sjrhema@gmail.com', '1997-12-22', 23, '2', '2', 'c. shermugadurai', 'clerck', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2103150014', '1', '1', 'upload_files/candidate_tracker/89456355352_Resume.docx', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Client Round', '2', '2', '0', '1', '1', '0', '2', '2021-03-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-15 07:29:48', 1, '2021-03-16 01:05:23', 0, NULL, 1),
(3839, 'nivetha', '4', '7338886243', '', 'nivetha.nive8078@gmail.com', '1999-12-26', 21, '2', '2', 'rajendran', 'not working', 10000.00, 2, 13000.00, 14000.00, 'chennai', 'chennai', '2103160001', '2', '2', 'upload_files/candidate_tracker/23266892580_CURRICULUM VITAE.nive.docx', NULL, NULL, '2021-03-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 09:15:54', 7, '2021-03-18 10:21:15', 0, NULL, 1),
(3840, 'arif a', '6', '9080632954', '', 'rajaarief28@gmail.com', '1999-08-28', 21, '2', '2', 'abdulwakith', 'work dressing store', 15000.00, 1, 0.00, 12000.00, 'coimbatore', 'chennai', '2103160002', '2', '1', 'upload_files/candidate_tracker/3364275987_Arif@CV(1).pdf', NULL, NULL, '2021-03-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling. not speaking up.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 09:32:09', 1, '2021-03-16 09:34:23', 0, NULL, 1),
(3841, 'anthony sebastiras', '6', '7299359727', '', 'antosebastian4594@gmail.com', '1994-05-02', 26, '2', '1', 'arokicaswamy', 'truck driver', 20000.00, 1, 16000.00, 18000.00, 'chennai', 'chennai', '2103160003', '2', '2', 'upload_files/candidate_tracker/9534902948_Anthony Sebastiras Resume.docx', NULL, NULL, '2021-03-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pronunciation is not good. will not suite for calling.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 09:36:36', 1, '2021-03-16 09:38:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3842, 'Ashok', '4', '9344226177', '', 'ashokthala77@gmail.com', '2000-06-29', 20, '1', '2', 'R.masilamani', 'Hindhu', 30000.00, 1, 13.00, 13.00, 'Korukupet', 'Korukupet', '2103160004', '', '2', 'upload_files/candidate_tracker/44627371135_Ashok Resume.pdf', NULL, NULL, '2021-03-16', 0, '5560', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 09:51:45', 7, '2021-03-18 10:21:31', 0, NULL, 1),
(3843, 'Vigneshwaran palaniyappan', '2', '9894984332', '', 'vw170996@gmail.com', '1996-09-17', 24, '2', '2', 'Palaniyappan', 'Employee in vegetables market', 9000.00, 1, 12000.00, 20000.00, '2044/1, west 6th Street, pudukkottai', 'no.1, pudupet garden street, Royapettah', '2103160005', '1', '2', 'upload_files/candidate_tracker/76369253229_vigneshwaran-resume.pdf', NULL, NULL, '2021-03-17', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude issue,not open for Agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 10:09:12', 1, '2021-03-16 10:14:45', 0, NULL, 1),
(3844, 'ponmanipriya', '4', '7358057467', '', 'priyasweetyjith@gmail.com', '1993-08-10', 27, '2', '2', 'indrajith', 'not working', 15000.00, 2, 12000.00, 14000.00, 'aynavaram', 'chennai', '2103160006', '2', '2', 'upload_files/candidate_tracker/70379796246_0_Resume Ponnman update on 06.01.2017(1) (1).doc', NULL, NULL, '2021-03-16', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 10:15:37', 7, '2021-03-18 10:22:40', 0, NULL, 1),
(3845, 'sathish kumar a', '6', '9952092913', '', 'asathishkumar790@gmail.com', '1995-08-11', 25, '2', '2', 'angaiyan', 'house keeping supervisor', 20000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2103160007', '2', '1', 'upload_files/candidate_tracker/44183862571_Sathish.pdf', NULL, NULL, '2021-03-16', 0, '', '8', '53', NULL, 0.00, '', '0', NULL, '1', 'not attended', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 10:44:59', 1, '2021-03-16 10:46:46', 0, NULL, 1),
(3846, 'Pranav cm', '6', '9605997569', '9846434704', 'PranVcm2016@gmail.com', '1995-11-06', 25, '2', '2', 'Krishnan kutty', 'Tyre shop', 20000.00, 1, 300000.00, 350000.00, 'Kozhikode, kerala', 'Kandanchavadi, chennai, tamil nadu', '2103160008', '1', '2', 'upload_files/candidate_tracker/52850901572_Pranav CM- CV.docx', NULL, NULL, '2021-03-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-16 11:09:04', 50, '2021-03-16 12:55:38', 0, NULL, 1),
(3847, 'Ajithkumar s', '27', '8754391028', '', 'ajith.rising@gmail.com', '2006-03-16', 0, '2', '2', 'No', 'Technical support', 50000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2103160009', '1', '1', 'upload_files/candidate_tracker/12501991422_ajith resume(2).PDF', NULL, NULL, '2021-03-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Rejected In The Client Round', '2', '2', '0', '1', '1', '0', '2', '2021-03-19', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 11:53:56', 1, '2021-03-16 11:57:08', 0, NULL, 1),
(3848, 'jino jose', '5', '8921593362', '8660245293', 'jinotheone@gmail.com', '1994-06-23', 26, '2', '2', 'jose antony', 'ex.central govt empolye', 48000.00, 2, 3.25, 3.75, 'Bangalore', 'Bangalore', '2103160010', '1', '2', 'upload_files/candidate_tracker/44822015633_Jino Jose_Sales Marketing (3).docx', NULL, NULL, '2021-03-16', 5, '', '3', '8', '2021-03-29', 333036.00, '', '5', '1970-01-01', '1', 'CTC - 333036 With Gross-27753 xxamp TH - 23945', '5', '1', '4', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-16 12:20:05', 7, '2021-03-27 03:46:42', 0, NULL, 1),
(3849, 'Subash', '2', '9361109307', '', 'subash1327@icloud.com', '2000-01-11', 21, '2', '2', 'Ramesh', 'Cement Worker', 30000.00, 1, 0.00, 18000.00, 'Vadapalani', 'Vadapalani, Chennai', '2103160011', '1', '1', 'upload_files/candidate_tracker/31202539511_Subash R.docx', NULL, NULL, '2021-03-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much suits for our Mern Stack profile', '2', '2', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 01:10:52', 50, '2021-03-18 11:18:54', 0, NULL, 1),
(3850, 'mohamed', '2', '8438166578', '', 'Mohamedimran723@gmail.com', '1996-11-22', 24, '2', '2', 'moynudeen', 'talior', 25000.00, 2, 200000.00, 250000.00, 'Trichy', 'Trichy', '2103160012', '1', '2', 'upload_files/candidate_tracker/24484456828_Mohamed_Resume (1).pdf', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'not open for the agreement', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 01:13:29', 1, '2021-03-16 01:19:39', 0, NULL, 1),
(3851, 'Lydia Florence D', '27', '9444352843', '8056049176', 'lydia123daniel@gmail.com', '1998-04-30', 22, '2', '2', 'Daniel Thomas P', 'MTC Driver', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2103160013', '1', '1', 'upload_files/candidate_tracker/88077068976_RESUME.docx', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Show for Client interview', '2', '1', '0', '1', '1', '0', '2', '2021-03-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 03:00:40', 1, '2021-03-16 03:27:53', 0, NULL, 1),
(3852, 'Jenish M', '27', '9025273659', '', 'jenishm502@gmail.com', '1998-08-06', 22, '2', '2', 'M.Mahendran', 'Coolie', 86000.00, 2, 0.00, 25000.00, 'Kanyakumari', 'Bangalore', '2103160014', '1', '1', 'upload_files/candidate_tracker/18735787452_jenish resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Client Round', '2', '1', '0', '2', '2', '0', '2', '2021-03-23', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 05:13:33', 1, '2021-03-16 05:18:21', 0, NULL, 1),
(3853, 'vignesh s', '6', '8825778248', '', 'contact2vicky0703@gmail.com', '2000-03-07', 21, '2', '2', 'sundarrajan g', 'timber traders', 15000.00, 2, 12000.00, 14000.00, 'chennai', 'chennai', '2103160015', '2', '2', 'upload_files/candidate_tracker/26741058773_Vignesh Resume.doc', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not interested in sales, will not suite for our process.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 05:29:19', 1, '2021-03-16 05:33:24', 0, NULL, 1),
(3854, 'gayathri v', '4', '8925399677', '', 'gayugayathri156@gmail.com', '1998-06-15', 22, '2', '2', 'vijayakumar m', 'private consultant', 15000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2103160016', '2', '2', 'upload_files/candidate_tracker/37789028697_gayathri resume.docx.pdf', NULL, NULL, '2021-03-17', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-16 05:45:02', 7, '2021-03-18 10:17:47', 0, NULL, 1),
(3855, 'M. Vignesh', '27', '7708560741', '', 'Vickym3798@gmail.com', '1997-07-03', 23, '2', '2', 'G. Murugan', 'Farmer', 1000.00, 3, 0.00, 15000.00, 'Villupuram', 'Villupuram', '2103160017', '1', '1', 'upload_files/candidate_tracker/2998554026_Resume 8.pdf', NULL, NULL, '2021-03-18', 0, '', '3', '59', '2021-03-22', 96000.00, '', '0', NULL, '2', 'Selected for the client Nalam Health care after 6 months probation - 10K Salary', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 06:15:58', 1, '2021-03-16 06:34:15', 0, NULL, 1),
(3856, 'Balachandar D', '2', '9840737549', '', 'balachandarpriya007@gmail.com', '1997-11-04', 23, '2', '2', 'Dhakshina moorthy', 'Driver', 20000.00, 1, 180000.00, 300000.00, 'Chennai', 'Chennai', '2103160018', '1', '2', 'upload_files/candidate_tracker/65572292700_Resume_Balachandar_Format3.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Didnxquott Come Back After 2 Days with the confirmation for the service Agreement', '2', '2', '0', '1', '1', '0', '2', '2021-03-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-16 06:58:10', 1, '2021-03-16 07:03:00', 0, NULL, 1),
(3857, 'delliganesh s', '27', '8122773188', '8667495697', 'delliganesh.s.l@gmail.com', '1997-02-24', 24, '2', '2', 'sivanesan', 'business', 30000.00, 1, 0.00, 350000.00, 'chengalpattu', 'chengalpattu', '2103170001', '1', '2', 'upload_files/candidate_tracker/22648824154_Ganesh_Resume.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Client Round Rejected', '2', '2', '0', '1', '1', '0', '2', '2021-03-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 09:58:50', 1, '2021-03-17 12:07:43', 0, NULL, 1),
(3858, 'heera', '22', '9941328902', '', 'heera.viswanathan@gmail.com', '1996-10-05', 24, '2', '1', 'vijayakumar', 'digital marketer', 70000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2103170002', '1', '1', 'upload_files/candidate_tracker/37863855759_heera resume new.docx', NULL, NULL, '2021-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Should check for agreement,sustainability doubt\n', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 10:51:26', 1, '2021-03-17 11:35:29', 0, NULL, 1),
(3859, 'Sivaraj', '17', '9150000391', '9840568999', 'sivaraj0512@gmail.com', '1981-12-05', 39, '2', '1', 'Abirami', 'Working', 45000.00, 0, 600000.00, 700000.00, 'Chennai', 'Chennai', '2103170003', '16', '2', 'upload_files/candidate_tracker/81873587761_Sivaraj resume.docx', NULL, NULL, '2021-03-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 10:55:17', 7, '2021-03-17 11:44:05', 0, NULL, 1),
(3860, 'Aswinkumar M', '6', '9150450392', '6381476277', 'aswinkumar103@gmail.com', '1993-05-27', 27, '2', '1', 'Ranjitha', 'Home maker', 72000.00, 5, 15000.00, 20000.00, 'Sivagangai dist', 'Chennai Ashok nagar', '2103170004', '1', '2', 'upload_files/candidate_tracker/406702234_1615202402105_Aswin sales.doc', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, not active, exp is 18th.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-17 11:05:32', 1, '2021-03-17 11:13:41', 0, NULL, 1),
(3861, 'Karthik. R', '4', '8248556825', '9790934680', 'karthikchandran1997@gmail.com', '1997-09-24', 23, '1', '2', 'G. Ramachandran', 'Associate director', 30000.00, 1, 10000.00, 15000.00, 'Thirumalai nagar, virugambakkam , Koyambedu', 'Thirumalai Nagar, Virugambakkam , Koyambedu', '2103170005', '', '2', 'upload_files/candidate_tracker/24473934221_Karthick_.R(3).pdf', NULL, NULL, '2021-03-17', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales, not interested in sales.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 11:18:54', 1, '2021-03-17 11:23:45', 0, NULL, 1),
(3862, 'Zakir hussain j', '5', '7358082603', '8778560805', 'hussain.zkr31@gmail.com', '1995-10-31', 25, '2', '2', 'Mohammed jakkurudeen', 'Tailor', 30000.00, 1, 21000.00, 25000.00, 'No 5b gandhi st. krishnamoorthy nagar ch 118', 'No 5b gandhi st. Krishnamoorthy nagar ch 118', '2103170006', '1', '2', 'upload_files/candidate_tracker/97253477795_zakir new work resume.docx', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'salary will not suit. exp is high', '5', '2', '0', '1', '1', '0', '2', '2021-03-22', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 11:28:15', 1, '2021-03-17 11:56:55', 0, NULL, 1),
(3863, 'V GAYATHRI', '16', '8610816917', '9710148704', 'gayathri7727@gmail.com', '1991-07-18', 29, '3', '1', 'V RUKMANGATHAN', 'TECHNICIAN', 30000.00, 3, 16000.00, 20000.00, 'No 60/7 KAMRARAJAR NAGAR NERKUNDRAM 600107', 'CHENNAI', '2103170007', '', '2', 'upload_files/candidate_tracker/71766145539_vgayathri.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for accounts job. comm is avg.', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 11:41:48', 1, '2021-03-17 11:49:17', 0, NULL, 1),
(3864, 'Ghayas basha G', '17', '7358570835', '9789958175', 'ghayas_basha@yahoo.co.in', '1986-10-24', 34, '2', '1', 'Meherunissa', 'Salaried', 10000.00, 2, 32000.00, 35000.00, 'Avadi', 'Alandur', '2103170008', '16', '2', 'upload_files/candidate_tracker/77394479053_updated resume dec 20.docx', NULL, NULL, '2021-03-17', 3, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile\n', '5', '2', '', '1', '1', '', '2', '2021-03-18', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 11:46:12', 8, '2021-03-19 05:06:31', 0, NULL, 1),
(3865, 'Suji D', '16', '6379534050', '', 'sujiglads@gmail.com', '1997-07-22', 23, '3', '2', 'Dhason', 'Mason', 25000.00, 1, 0.00, 15000.00, 'Mulagumoodu, kanyakumari district.', 'Thiruvallur, Chennai.', '2103170009', '', '1', 'upload_files/candidate_tracker/13784765971_suji resume.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, avg communication. knows basics in excel.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 12:07:08', 1, '2021-03-17 12:14:09', 0, NULL, 1),
(3866, 'Sindhu', '4', '8111017210', '9150984461', 'sindhu.t1996@gmail.com', '1996-09-29', 24, '4', '2', 'Thiru Maran', 'EEE', 30000.00, 2, 0.00, 12000.00, 'Ambur', 'Nungambakkam', '2103170010', '', '1', 'upload_files/candidate_tracker/31260665436_sindhu.pdf', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, done her physiotheraphy and medical coding course. will move easily, not okay with the bond too. ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 12:59:28', 1, '2021-03-17 01:05:11', 0, NULL, 1),
(3867, 'Rohit', '4', '7305397036', '6383283042', 'Artisticartist@gmail.com', '1999-03-11', 22, '2', '2', 'Saravanan', 'Fishing', 12000.00, 1, 12000.00, 15000.00, 'No.37,velankanni koil st , Besant Nagar, Chennai', 'No.37,Velankanni Koil St , Besant Nagar, Chennai', '2103170011', '3', '2', 'upload_files/candidate_tracker/8201295240_imgtopdf_generated_1703211233019.pdf', NULL, NULL, '2021-03-17', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for any profile. attitude was very bad.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 01:07:38', 1, '2021-03-17 01:14:31', 0, NULL, 1),
(3868, 'Murthuza', '16', '7200306295', '', 'Mmmurthuza.kasim@gmail.com', '1981-12-22', 39, '3', '1', 'Rabiya bushra', 'House wife', 35000.00, 8, 35000.00, 40000.00, 'No11 kutty maistry street chennai 600001', 'Old washermenpet', '2103170012', '', '2', 'upload_files/candidate_tracker/22045559891_Resume_Murthuza (1).docx', NULL, NULL, '2021-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'exp is 30-35k, oral is good but written is below avg.', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 01:27:04', 1, '2021-03-17 01:36:38', 0, NULL, 1),
(3869, '', '0', '9362857713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103170013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-17 01:31:32', 0, NULL, 0, NULL, 1),
(3870, 'Ganesh S', '28', '8056377552', '', 'ganeshsam15@gmail.com', '1996-12-15', 24, '2', '2', 'Sambandam S', 'Asst Manager', 380000.00, 1, 0.00, 300000.00, 'Hosur, Tamilnadu', 'Ambattur,Chennai', '2103170014', '1', '1', 'upload_files/candidate_tracker/22071243636_Ganesh.S.2021.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for our Roles', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 02:54:26', 1, '2021-03-17 03:40:04', 0, NULL, 1),
(3871, '', '0', '8247622695', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103170015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-17 04:37:57', 0, NULL, 0, NULL, 1),
(3872, 'mohana sundaram', '4', '7708801901', '', 'srmohanram_25@yahoo.com', '1993-05-02', 27, '2', '2', 'Gopalakrishnan', 'business', 240000.00, 1, 240000.00, 300000.00, 'chennai', 'chennai', '2103170016', '1', '2', 'upload_files/candidate_tracker/72362138662_Resume_Mohan20201.pdf', NULL, NULL, '2021-03-18', 15, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'left before interview. will come tomorrow.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-17 04:57:08', 1, '2021-03-17 05:01:41', 0, NULL, 1),
(3873, 'A. Shakul Ameedhu', '22', '8680046144', '8610613994', 'shakul3498@gmail.com', '1997-03-06', 24, '2', '2', 'Punithavathy.A', 'Housekeeping', 10000.00, 0, 0.00, 180000.00, 'Pondicherry', 'Chennai (AVADI)', '2103170017', '1', '1', 'upload_files/candidate_tracker/36579123102_resume2021.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate not Interested suitable for digital marketing.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 05:03:43', 1, '2021-03-17 05:17:04', 0, NULL, 1),
(3874, 'Ariharaprasad V', '4', '8778029129', '', 'Fistari19@gmail.com', '1995-11-22', 25, '2', '2', 'Venkatachalam K', 'Teacher', 45000.00, 2, 0.00, 15000.00, 'Mayiladuthurai', 'Tiruvanmiyur', '2103170018', '1', '2', 'upload_files/candidate_tracker/47031671775_ari resume 2021.pdf', NULL, NULL, '2021-03-19', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-17 05:18:54', 7, '2021-03-20 09:38:46', 0, NULL, 1),
(3875, 'Stephen Raj S', '6', '6380778064', '9498456194', 'stephenrajgeorge231@gmail.com', '1994-04-21', 26, '2', '1', 'Mrs. Deepthi S', 'House Make', 50000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2103170019', '1', '2', 'upload_files/candidate_tracker/15605269232_New Resume.docx', NULL, NULL, '2021-03-18', 0, '', '3', '8', '2021-03-22', 202104.00, '', '6', '2021-03-26', '1', 'Selected For Srikanth Team With CTC - 202104 Gross - 16842 xxamp TH - 16000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-17 05:35:18', 7, '2021-03-20 06:17:46', 0, NULL, 1),
(3876, '', '0', '8220454462', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103170020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-17 05:50:41', 0, NULL, 0, NULL, 1),
(3877, 'Mohammed Sajidullah faraaz', '27', '8754439138', '', 'faraaz.mohammed.96@gmail.com', '1998-05-04', 22, '2', '2', 'Jabeen', 'House wife', 1.00, 3, 0.00, 300000.00, 'Chennai', 'Chennai', '2103170021', '1', '1', 'upload_files/candidate_tracker/91723828543_1614920229758_faraazcvs1.pdf', NULL, NULL, '2021-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 05:59:27', 1, '2021-03-17 06:03:52', 0, NULL, 1),
(3878, 'Thulasi', '27', '6383937309', '', 'Mayathulasi25@gmail.com', '1999-06-25', 21, '2', '2', 'Sivakumar K', 'Driver', 15000.00, 1, 15000.00, 18000.00, 'Poonamalle, chennai', 'Poonamalle, chennai', '2103170022', '1', '2', 'upload_files/candidate_tracker/69594893810_THULASI.S_RESUME .pdf', NULL, NULL, '2021-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 07:20:36', 1, '2021-03-19 06:34:52', 0, NULL, 1),
(3879, 'Karthikeyan M', '27', '9597409138', '', 'nmkarthikeyan94@gmail.com', '1994-06-28', 26, '2', '2', 'No', 'No', 15.00, 0, 0.00, 15000.00, 'thanjavurvallam', 'thanjavurvallam', '2103170023', '1', '1', 'upload_files/candidate_tracker/94226941076_Karthikeyan M.docx', NULL, NULL, '2021-03-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected In The Client Round', '2', '1', '0', '1', '1', '0', '2', '2021-03-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-17 07:41:21', 1, '2021-03-17 07:45:28', 0, NULL, 1),
(3880, 'MOHAN TANESH.J', '4', '8825515896', '', 'mohantanesh007@gmail.com', '1999-04-26', 21, '1', '2', 'VIJAYALAKSHMI', 'NIL', 5000.00, 0, 0.00, 15000.00, 'No 27 annexe 2nd main Road Alwarthirunagar', 'Chennai, Alwarthirunagar', '2103170024', '', '1', 'upload_files/candidate_tracker/49170164832_ResumeBuilder_12_07_2020_12_47_24_PM.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not suitable for this profile', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-17 10:05:53', 1, '2021-04-24 11:13:27', 0, NULL, 1),
(3881, '', '0', '9094440158', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103170025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-17 10:27:35', 0, NULL, 0, NULL, 1),
(3882, 'MOHAMMED SHAFI. M', '5', '7010435545', '9150609855', 'shafiafiha5@gmail.com', '1994-08-02', 26, '2', '2', 'MOHAMMED RAFI.M', 'Coolie', 12000.00, 1, 18000.00, 25000.00, '768/31, Big Street, Virinchipuram, Vellore- 632104', '768/31, Big Street, Virinchipuram, Vellore-632104', '2103180001', '16', '2', 'upload_files/candidate_tracker/13981138430_32685090237_SHA resume (2).pdf', NULL, NULL, '2021-03-18', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process. has exp in showroom sales.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 09:00:12', 1, '2021-03-18 09:32:48', 0, NULL, 1),
(3883, '', '0', '7339584422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 09:14:57', 0, NULL, 0, NULL, 1),
(3884, 'manikandan s', '6', '8825813469', '', 'jackmani1304@gmail.com', '1998-04-13', 22, '2', '2', 'shankar', 'driver', 15000.00, 2, 15000.00, 16000.00, 'chennai', 'chennai', '2103180003', '2', '2', 'upload_files/candidate_tracker/12756733446_manikandan resume-converted-converted-converted (2).pdf', NULL, NULL, '2021-03-18', 0, '', '3', '8', '2021-04-29', 192000.00, '', '4', '2021-07-08', '1', 'Selected For Srikanth Team CTC - 192000 With PF PT ESI Deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 09:35:38', 7, '2021-04-28 06:32:49', 0, NULL, 1),
(3885, 'venkatrameshraj', '17', '8608000076', '', 'venkatrameshraj@gmail.com', '1994-07-06', 26, '2', '2', 'muthukumae', 'usine', 80000.00, 0, 45000.00, 52000.00, 'chennai', 'chennai', '2103180004', '1', '2', 'upload_files/candidate_tracker/7053520378_New resume Venkat .pdf', NULL, NULL, '2021-03-18', 15, '', '3', '8', '2021-04-05', 549600.00, '', '2', '1970-01-01', '1', 'For BDM-HNI Role,CTC - 5,49,600 Gross - 45,800 TH - 41992', '5', '2', '4', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-18 10:09:37', 7, '2021-04-01 01:30:10', 0, NULL, 1),
(3886, 'gokul', '6', '9884425023', '', 'Gokulsrt557@gamil.com', '1998-01-12', 23, '2', '2', 'shankar s', 'building contactor', 20000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2103180005', '2', '2', 'upload_files/candidate_tracker/85769025568_GOKUL RESUME.docx', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain for long term. doing his part time jobs. exp salary is also high as fresher.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 10:10:43', 1, '2021-03-18 10:12:54', 0, NULL, 1),
(3887, 'Murali krishnan A', '5', '7305464019', '9176557075', 'amuralikrishnan79@gmail.com', '1979-10-05', 41, '2', '1', 'Parvathy', 'House wife', 40000.00, 1, 34000.00, 40000.00, 'CHENNAI', 'CHENNAI', '2103180006', '16', '2', 'upload_files/candidate_tracker/90408828033_imgtopdf_18032021105940.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for BDM', '5', '2', '0', '1', '1', '0', '2', '2021-03-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 10:34:50', 1, '2021-03-18 11:02:10', 0, NULL, 1),
(3888, 'Vignesh Subramani', '13', '8124045475', '', 'cs.vigneshvj@gmail.com', '1997-08-01', 23, '2', '2', 'Subramani', 'Daily wages worker', 12000.00, 1, 240000.00, 400000.00, 'Arni', 'Arni hi', '2103180007', '1', '2', 'upload_files/candidate_tracker/49708983093_new_sw_res_vj.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability issue,high CTC expectation', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 10:40:57', 1, '2021-03-18 10:47:18', 0, NULL, 1),
(3889, 'V. CHAKRABANI', '17', '8526792005', '7708022309', 'Chakrabani.ngs@gmail.com', '1981-06-10', 39, '2', '1', 'Guruprasath', 'Studied', 50000.00, 2, 40000.00, 50000.00, 'Pappanchatram. Poonamalli', 'Pappanchatram. Poonamalli', '2103180008', '16', '2', 'upload_files/candidate_tracker/99651423172_CHAKRABANI.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'communication and convincing is not good. will not suite for our process. may try as agent.', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 10:43:03', 1, '2021-03-18 11:09:32', 0, NULL, 1),
(3890, 'nagaraj', '4', '9176241752', '9789943221', 'nagavip91@gmail.com', '1991-03-27', 29, '2', '2', 'murugan', 'farmer', 13000.00, 0, 14000.00, 16000.00, 'dindigul', 'perugudi', '2103180009', '1', '2', 'upload_files/candidate_tracker/70692044953_Arockia _Resume_chennai-converted(1).docx', NULL, NULL, '2021-03-18', 0, '', '3', '8', '2021-03-19', 156000.00, '', '4', '2021-03-24', '2', 'Selected For Muthu Team With CTC - 1,56,000 Gross - 13000 xxamp TH - 12350', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-18 10:49:17', 7, '2021-03-18 06:01:34', 0, NULL, 1),
(3891, 'venkatesh a', '17', '9710450269', '', 'a.venki2010@gmail.com', '1981-09-06', 39, '2', '1', 'malini', 'house wife', 25000.00, 2, 40000.00, 50000.00, 'chennai', 'chennai', '2103180010', '16', '2', 'upload_files/candidate_tracker/91104426589_Venki resume final.docx', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, has only 5m exp in insurance. 6yr in credit card sales. but will not suite for our process.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 11:12:17', 1, '2021-03-18 12:13:01', 0, NULL, 1),
(3892, 'Suriya Tamilarasan', '27', '7598512198', '7010779770', 'suriyavnt98@gmail.com', '1998-01-12', 23, '2', '2', 'Tamilarasan VN', 'Operator', 30000.00, 1, 185000.00, 350000.00, 'Chennai', 'Chennai', '2103180011', '1', '2', 'upload_files/candidate_tracker/76088671427_Suriya Resume Updated .pdf', NULL, NULL, '2021-03-19', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Got rejected in the client Interview', '2', '1', '0', '1', '1', '0', '2', '2021-03-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 11:18:09', 1, '2021-03-18 11:28:21', 0, NULL, 1),
(3893, 'sasikumar', '6', '9600427561', '9087501788', 'sasi2dts@gmail.com', '1994-03-24', 26, '2', '2', 'venkatesan', 'painter', 20000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2103180012', '1', '2', 'upload_files/candidate_tracker/63611638396_V.SasiKumar Resume (27).docx', NULL, NULL, '2021-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in FE. salary will not match for cRM', '5', '2', '', '1', '1', '', '2', '2021-03-22', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-18 11:30:11', 8, '2021-03-18 05:28:34', 0, NULL, 1),
(3894, 'selvarani b', '4', '6381652035', '', 'selvaanitha067@gmail.com', '1995-11-21', 25, '1', '2', 'balasubramani', 'farmer', 10000.00, 0, 0.00, 15000.00, 'karur', 'saithapet', '2103180013', '', '2', 'upload_files/candidate_tracker/5444067790_Selvarani Resume.pdf', NULL, NULL, '2021-03-18', 0, 'priyanka', '3', '8', '2021-03-22', 144000.00, '', '3', '2021-03-27', '2', 'Selected For Muthu With CTC - 1,44,000 And Gross - 12000 TH - 11400', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 12:11:06', 7, '2021-03-18 06:26:40', 0, NULL, 1),
(3895, 'Manoj pradeep.M', '4', '9865036456', '', 'manojpradeep3698@gmail.com', '1998-06-03', 22, '2', '2', 'Malaichamy.N', 'Labour', 15000.00, 1, 0.00, 15000.00, '1/40 East Street, achunthanvayal, Ramanathapuram', '6 Bharathidasan street, Periyar Nagar, Pallikarnai', '2103180014', '1', '1', 'upload_files/candidate_tracker/7091815243_manoj resume 1.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for sales, not speaking up. fresher.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-18 12:51:07', 1, '2021-03-18 12:58:57', 0, NULL, 1),
(3896, 'Allwin john.a', '4', '8148092940', '', 'allwinjohnj@gmail.com', '1998-06-03', 22, '2', '2', 'Parent', 'House Maintenance', 10000.00, 1, 0.00, 15000.00, '36/29 parthasarathy nagar 2nd Street adambakkam', '36/29 Parthasarathy Nagar 2nd Street Adambakkam', '2103180015', '1', '1', 'upload_files/candidate_tracker/43109507375_allawin john resume.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '1', '1', '0', '1', '1', '0', '2', '2021-03-19', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-18 12:51:53', 1, '2021-03-18 12:57:32', 0, NULL, 1),
(3897, 'R MANI KANDAN', '6', '9092534349', '', 'manikandaraman94@gmail.com', '1994-12-12', 26, '1', '1', 'Rama moorthi', 'Farmer', 15000.00, 1, 13000.00, 15000.00, 'Porur', 'Porur chennai', '2103180016', '', '2', 'upload_files/candidate_tracker/25415628541_ FORD RESUME 2020.pdf', NULL, NULL, '2021-03-18', 0, 'Jobs', '3', '8', '1970-01-01', 176844.00, '', '2', '1970-01-01', '1', 'Selected For Srikanth Team With CTC 176844 Gross - 14737 xxamp TH - 14000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 01:41:58', 7, '2021-03-20 06:17:28', 0, NULL, 1),
(3898, '', '0', '9176169778', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 02:24:24', 0, NULL, 0, NULL, 1),
(3899, 'Saravanan.P', '17', '9841566918', '9080426606', 'saravananprakash717@gmail.com', '1984-02-04', 37, '2', '1', 'Shalini', 'Salaried', 90000.00, 2, 57000.00, 57000.00, 'Chennai', 'Chennai', '2103180018', '16', '2', 'upload_files/candidate_tracker/84294773789_Resume m21.docx', NULL, NULL, '2021-03-18', 7, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 02:53:04', 1, '2021-03-18 03:04:58', 0, NULL, 1),
(3900, '', '0', '7010023989', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 02:53:46', 0, NULL, 0, NULL, 1),
(3901, 'Karthick Meappan', '5', '9791902062', '', 'mkarthi791@gmail.com', '1995-11-11', 25, '2', '2', 'Meyyappan', 'Chef', 18000.00, 0, 53000.00, 20000.00, 'Chennai', 'Chennai', '2103180020', '1', '2', 'upload_files/candidate_tracker/45796722462_karthick meyyapan resume.docx', NULL, NULL, '2021-03-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process', '5', '1', '', '1', '3', '', '2', '2021-03-20', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-18 03:10:51', 8, '2021-03-19 11:53:31', 0, NULL, 1),
(3902, 'Sangeetha', '13', '7358516854', '7358416854', 'sangeethajeeva20@gmail.com', '1992-08-24', 28, '2', '2', 'R.poongavanam', 'Sales executive', 15000.00, 1, 0.00, 280000.00, 'Chennai', 'Chennai', '2103180021', '16', '1', 'upload_files/candidate_tracker/10922464393_Copy of Sangeetha S resume-1.pdf', NULL, NULL, '2021-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 03:21:17', 1, '2021-03-18 03:25:53', 7, '2021-03-18 06:27:23', 0),
(3903, 'Sangeetha', '13', '7358416854', '', 'sangeethajeeva20@gmail.com', '1992-08-24', 28, '2', '1', 'R poongavanam', 'Sales executive', 15000.00, 1, 0.00, 280000.00, 'Chennai', 'Chennai', '2103180022', '16', '1', 'upload_files/candidate_tracker/73126645387_Copy of Sangeetha S resume-1.pdf', NULL, NULL, '2021-03-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable and the expectation is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-18 03:28:57', 1, '2021-03-18 03:31:37', 0, NULL, 1),
(3904, '', '0', '9360753223', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 04:00:03', 0, NULL, 0, NULL, 1),
(3905, 'Marudhanayagam', '4', '9940418982', '7200448983', 'marudhufoundation07@gmail.com', '1998-04-07', 22, '2', '2', 'Vijaya Lakshmi', 'Personal Secretary', 50000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2103180024', '1', '2', 'upload_files/candidate_tracker/30757365319_Updated CV.pdf', NULL, NULL, '2021-03-19', 1, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-18 04:17:47', 7, '2021-03-20 09:39:04', 0, NULL, 1),
(3906, 'Gokulraj', '13', '7502378710', '9384535556', 'gokulgokul122@gmail.com', '1997-06-04', 23, '2', '2', 'Murugesan', 'Former', 20000.00, 0, 0.00, 16000.00, 'Namakkal', 'T.nagar', '2103180025', '1', '1', 'upload_files/candidate_tracker/12789233295_Resume gokul.pdf', NULL, NULL, '2021-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Exp in Semi voice,Not open for Sales will not fit for IT openings\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 04:40:56', 1, '2021-03-22 05:21:14', 0, NULL, 1),
(3907, 'Divagar Selvaraj', '26', '7418604289', '9884428489', 'Sarvanadivakar@gmail.com', '1993-11-13', 27, '2', '2', 'Selvaraj T C', 'Super visor', 30000.00, 1, 310000.00, 450000.00, 'No:4/165,kVK st,Kandanchavadi ,ch-600096', 'No:4/165,KVK St,Kandanchavadi ,Ch-600096', '2103180026', '1', '2', 'upload_files/candidate_tracker/21638427718_updatedResume_Divakar.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'body lang and attitude is not good. communication is okay and written is avg.exp is 28th. one year gap.', '7', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 05:23:51', 1, '2021-03-18 05:31:40', 0, NULL, 1),
(3908, '', '0', '7010779770', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103180027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-18 06:26:04', 0, NULL, 0, NULL, 1),
(3909, 'rajeshkumar perumal', '27', '7373245537', '', 'rajesh25rajapks@gmail.com', '1995-03-25', 25, '2', '2', 'kalavathi', 'farmer', 25000.00, 1, 310000.00, 700000.00, 'palani', 'chennai', '2103180028', '1', '2', 'upload_files/candidate_tracker/5263073076_Rajeshkumar_Perumal_7373245537.docx', NULL, NULL, '2021-03-20', 45, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-18 07:01:30', 1, '2021-03-18 07:08:44', 0, NULL, 1),
(3910, 'mariraja', '2', '9080122084', '9047691221', 'marirajayt508@gmail.com', '2000-02-25', 21, '2', '2', 'selvaraj', 'farmer', 200000.00, 1, 0.00, 350000.00, 'chennai', 'kodaikanal', '2103190001', '1', '1', 'upload_files/candidate_tracker/53930765241_MARIRAJA S Resume.docx', NULL, NULL, '2021-03-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 09:53:40', 1, '2021-03-20 06:34:58', 0, NULL, 1),
(3911, 'Lathika.j', '4', '9551980582', '', 'Lathika.k1992@gmail.com', '1992-10-03', 28, '2', '2', 'James', 'n', 10000.00, 1, 18000.00, 15000.00, 'Neelankarai', 'neelankarai', '2103190002', '16', '2', 'upload_files/candidate_tracker/4694151677_Lathika.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'too long and she is a boxing trainer as well as personal trainer. our office timing will not match. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:08:49', 1, '2021-03-19 11:07:43', 0, NULL, 1),
(3912, 'santhosh muthu', '5', '7395963164', '', 'santhoshni1999@gmail.com', '1999-06-25', 21, '2', '2', 'pandi durai', 'business', 12000.00, 0, 14000.00, 15000.00, 'chennai', 'saligramam', '2103190003', '2', '2', 'upload_files/candidate_tracker/5711628398_Resume SANTHOSH MUTHU.pdf', NULL, NULL, '2021-03-19', 0, '', '3', '8', '2021-04-12', 150000.00, '', '3', '2021-05-04', '2', 'For Gaurav team. With CTC - 1,50,000 Gross - 12500 TH - 11875', '5', '2', '1', '1', '1', '', '2', '2021-04-07', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:16:14', 7, '2021-04-11 03:50:35', 0, NULL, 1),
(3913, 'karthick', '6', '8056274155', '', 'karthikaero11@gmail.com', '1991-11-24', 29, '2', '1', 'kumaraguru', 'nil', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2103190004', '2', '1', 'upload_files/candidate_tracker/28148250190_Resume.pdf', NULL, NULL, '2021-03-19', 0, '', '3', '8', '1970-01-01', 164208.00, '', '2', '1970-01-01', '1', 'Selected For Srikanth 2 Yrs Agreement Proposed With CTC - 164208 Gross-13684 TH - 13000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:22:46', 7, '2021-03-20 06:17:16', 0, NULL, 1),
(3914, 'Richard Marian', '6', '9500785408', '', 'richardmarian37@gmail.com', '1994-01-03', 27, '2', '2', 'Ghana sekar', 'AC mechanical', 56000.00, 1, 24000.00, 25000.00, 'Vickramasingapuram', 'Omr murugesan nagar', '2103190005', '16', '2', 'upload_files/candidate_tracker/16994029349_Richard CV (1).pdf', NULL, NULL, '2021-03-19', 30, '', '3', '8', '2021-03-22', 198000.00, '', '4', '2021-08-06', '1', 'Selected With CTC - 198000 Gross - 16500 TH - 15675', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:29:50', 7, '2021-03-20 06:16:53', 0, NULL, 1),
(3915, 'Gayathri', '13', '7305331758', '8939266823', 'gayathri5vivek8@gmail.com', '1997-12-05', 23, '2', '2', 'Gopal krishnan', 'Fast food(self business)', 30500.00, 2, 0.00, 12000.00, 'No:14 munavar avenue Pallavaram, Chennai-43', 'No:14 Munavar Avenue Pallavaram, Chennai-43', '2103190006', '16', '1', 'upload_files/candidate_tracker/94551108496_Resume_Gayathri.doc.perfact.docx', NULL, NULL, '2021-03-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability Doubt', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 10:47:17', 7, '2021-03-20 09:39:20', 0, NULL, 1),
(3916, 'arvind raj .m', '6', '8838395310', '', 'arvindaj55@gmail.com', '1998-06-13', 22, '3', '2', 'madasamy', 'driver', 30000.00, 1, 16000.00, 18000.00, 'chennai', 'chenn', '2103190007', '', '2', 'upload_files/candidate_tracker/83136348793_Resume_Arvind.1.doc', NULL, NULL, '2021-03-19', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in sales. will not handle pressure. will not suite for mIS eng comm. is below avg.', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:01:48', 8, '2021-03-19 11:47:05', 0, NULL, 1),
(3917, 'B.RAVIKUMAR', '6', '9884421701', '', 'ravilak12@gmail.com', '1981-06-12', 39, '2', '1', 'Shyamala devi', 'Electronics distributors chennai mount road', 15000.00, 2, 15000.00, 16000.00, 'No 10 SEETHARAM nagar 5th street 1st cross ur', 'Kodungaiyur chennai 600118', '2103190008', '16', '2', 'upload_files/candidate_tracker/38929856039_a-la-carte_pay_channels.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales profile. can try for Agent.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:24:14', 1, '2021-03-19 04:18:23', 0, NULL, 1),
(3918, 'SANTHOSHKUMAR.S', '4', '9943589832', '9786020209', 'santhoshsandysn@gmail.com', '1995-10-27', 25, '2', '2', 'SHANMUGAM.R', 'Retirement', 30000.00, 1, 0.00, 18000.00, 'Pondicherry', 'Chennai', '2103190009', '8', '1', 'upload_files/candidate_tracker/68454209244_santhoshkumar_Safety_2_year-converted.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'pronunciation is not clear will not suite for calling and sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:31:09', 8, '2021-03-19 04:35:45', 0, NULL, 1),
(3919, 'Bharath Kumar.E', '4', '9080019847', '', 'bharath2000auro@gmail.com', '2000-08-04', 20, '2', '2', 'Elumalai.N', 'Food factory employee', 12000.00, 1, 0.00, 12000.00, 'Chennai', 'Pondacherry', '2103190010', '8', '1', 'upload_files/candidate_tracker/53384522978_bharath reasume.docx', NULL, NULL, '2021-03-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up and will not suite for calling and sales.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:32:10', 8, '2021-03-19 04:34:08', 0, NULL, 1),
(3920, '', '0', '9943589862', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103190011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-19 11:37:59', 0, NULL, 0, NULL, 1),
(3921, 'Pothiraj G', '5', '8056118346', '8668037289', 'pothys1993@gmail.com', '2006-03-19', 0, '2', '1', 'Revathy', 'House wife', 15000.00, 0, 240000.00, 300000.00, 'Chennai', 'Chennai', '2103190012', '1', '2', 'upload_files/candidate_tracker/76783815789_1611115892509Resume_Pothiraj.docx', NULL, NULL, '2021-03-19', 0, '', '3', '8', '2021-03-25', 202104.00, '', '', '1970-01-01', '1', 'Selected For Guru Team With CTC - 202104 Gross - 16842 TH - 16000', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-19 11:47:57', 7, '2021-03-20 09:42:40', 0, NULL, 1),
(3922, 'ABDUL AZEEZ', '20', '9551035508', '8608799455', 'abdulazeez455az@gmail.com', '1994-10-07', 26, '2', '2', 'Mohideen', 'Business', 24000.00, 2, 25000.00, 30000.00, 'CHENNAI', 'CHENNAI', '2103190013', '16', '2', 'upload_files/candidate_tracker/92428454545_Abdul Azeez Resume new.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 11:49:27', 1, '2021-03-19 11:55:17', 0, NULL, 1),
(3923, 'Soniya', '13', '9047578907', '', 'soniyashruthi98@gmail.com', '1998-05-06', 22, '2', '2', 'Parent', 'Farmer', 10000.00, 1, 12000.00, 15000.00, 'Cuddalore', 'Kolathur', '2103190014', '16', '2', 'upload_files/candidate_tracker/84657771178_SONIYA VELAYUTHAM.docx', NULL, NULL, '2021-03-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for our role', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 12:04:59', 1, '2021-03-19 12:30:32', 0, NULL, 1),
(3924, 'R.shalini', '4', '7548853667', '9361141805', 'ravishalu149@gmail.com', '1999-03-14', 22, '3', '2', 'Ravichandran', 'Driver', 10000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Palavakkam', '2103190015', '', '1', 'upload_files/candidate_tracker/32535000476_0_shalu resume3 (1).pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 12:06:44', 1, '2021-03-19 12:28:25', 0, NULL, 1),
(3925, 'Priyanka', '4', '7358308368', '9884928023', 'pappriya319@gmail.com', '1999-04-09', 21, '3', '2', 'Pazhani', 'Coolie', 7000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Mylapore', '2103190016', '', '1', 'upload_files/candidate_tracker/54282190708_AS487229.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-19 12:34:05', 1, '2021-03-19 12:42:48', 0, NULL, 1),
(3926, 'Suriya Prakash A', '27', '9566989014', '6369917200', 'Asprakash76@gmail.com', '1999-08-27', 21, '2', '2', 'Arumugam M', 'Cooli', 10000.00, 1, 0.00, 12000.00, 'Manali,Chennai', 'manali,Chennai', '2103190017', '1', '1', 'upload_files/candidate_tracker/42265666703_SP Updated CV.pdf', NULL, NULL, '2021-03-20', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for Client,Nalam HCIT', '2', '1', '0', '1', '1', '0', '2', '2021-03-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 01:47:19', 1, '2021-03-19 01:59:28', 0, NULL, 1),
(3927, 'M.Anbazhagi', '4', '7558121958', '9176907125', 'anbuuus003@gmail.com', '1997-05-23', 23, '2', '2', 'Murugan', 'Corpenter', 45000.00, 4, 13000.00, 16000.00, 'Krishnagiri', 'Kodambakkam', '2103190018', '1', '2', 'upload_files/candidate_tracker/79789813455_ANBAZHAGI-converted-converted-converted(5)-converted-converted.pdf', NULL, NULL, '2021-03-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '1', '', '1', '1', '', '2', '2021-03-22', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-19 01:53:26', 7, '2021-03-19 06:30:04', 0, NULL, 1),
(3928, 'anirudhan k i', '27', '8675167574', '', 'awesomeanirudh3@gmail.com', '1997-12-29', 23, '2', '2', 'iyyappan k', 'bus', 50000.00, 0, 240000.00, 450000.00, 'MADURAI', 'MADURAI', '2103190019', '1', '2', 'upload_files/candidate_tracker/65142063674_Anirudh CV.pdf', NULL, NULL, '2021-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Client rejected in the interview', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 04:32:52', 1, '2021-03-19 04:37:10', 0, NULL, 1),
(3929, '', '0', '7401446869', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103190020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-19 04:54:35', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(3930, 'Muniyaraja S', '13', '6383741313', '', 'smuniyaraja98@gmail.com', '1998-04-18', 22, '2', '2', 'Selvaraj N', 'Coolie', 7000.00, 2, 0.00, 15000.00, '211,mela mariamman kovil street devathanam,', 'Sourastra nagar choolaimedu chennai', '2103190021', '1', '1', 'upload_files/candidate_tracker/13399753355_Resume.pdf', NULL, NULL, '2021-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 06:40:25', 1, '2021-03-19 06:48:20', 0, NULL, 1),
(3931, 'Vinitha', '27', '8760743916', '', 'vinithamecit2017@gmail.com', '1995-03-08', 26, '2', '2', 'Vivekananthan', 'Power loam', 20000.00, 0, 20000.00, 30000.00, 'Salem', 'Chennai', '2103190022', '1', '2', 'upload_files/candidate_tracker/94178613845_Vinithafinal.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability issue,will not fit for Client position', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 07:53:50', 50, '2021-03-22 03:04:41', 0, NULL, 1),
(3932, 'Kiruthika', '13', '7305160208', '8248278325', 'kiruthika16799@gmail.com', '1999-07-16', 21, '2', '2', 'Subramani N', 'NA', 5000.00, 2, 0.00, 10000.00, 'Virudhunagar', 'Chennai', '2103190023', '1', '1', 'upload_files/candidate_tracker/81873080460_My Resume.pdf', NULL, NULL, '2021-03-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 08:46:51', 1, '2021-03-19 08:50:54', 0, NULL, 1),
(3933, 'S. Sri Sharath Kumar', '27', '9003244060', '8838539306', 'srisharathkumar152000@gmail.com', '2000-05-01', 20, '2', '2', 'K.shankar and S.Dharani', 'Photographer and home maker', 15000.00, 1, 0.00, 12000.00, 'Ambattur', 'Ambattur', '2103190024', '1', '1', 'upload_files/candidate_tracker/50988952476_Sharath Resume.pdf', NULL, NULL, '2021-03-20', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for Client - Nalam HCIT', '2', '1', '0', '1', '1', '0', '2', '2021-03-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-19 08:48:19', 1, '2021-03-19 08:57:22', 0, NULL, 1),
(3934, 'Monu Kumar', '22', '8056091818', '', 'monukumarlifetoo@gmail.com', '1994-12-22', 26, '2', '2', 'Ajay Kumar', 'Cargo business', 30000.00, 2, 8000.00, 20000.00, 'Sowcarpet', 'Sowcarpet', '2103200001', '1', '2', 'upload_files/candidate_tracker/38782522927_MKR RESUME-converted (1).pdf', NULL, NULL, '2021-03-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, not open for Agreement,expecting High Salary', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 10:10:25', 7, '2021-03-20 11:45:09', 0, NULL, 1),
(3935, 'Varadharajan', '4', '9283185895', '8838275052', 'varadh1995@gmail.com', '1995-02-09', 26, '3', '2', 'P.kathiresan', 'Pharmacist', 30000.00, 1, 0.00, 10000.00, 'West mambalam', 'West mambalam', '2103200002', '', '1', 'upload_files/candidate_tracker/79262610988_doc.pdf', NULL, NULL, '2021-03-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-20 11:02:24', 1, '2021-03-20 11:13:59', 0, NULL, 1),
(3936, 'Ganesh', '4', '9790996798', '', 'Ganeshthemaker22@gmail.com', '1998-07-12', 22, '3', '2', 'Rajasekar', 'Cabmaker', 17000.00, 1, 12200.00, 17000.00, '9/A apper street vivekananda nagar kodungaiyur', 'Chennai', '2103200003', '', '2', 'upload_files/candidate_tracker/31272050933_7055002MEDL (5).pdf', NULL, NULL, '2021-03-20', 0, '', '8', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'let without attending the interview', '1', '1', '', '1', '1', '', '2', '2021-03-23', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-20 11:04:16', 7, '2021-03-20 01:40:27', 0, NULL, 1),
(3937, 'Elumalai', '4', '8122220019', '', 'elumalaisbi8122@gmail.com', '1999-05-22', 21, '3', '2', 'Muniyammal', 'Dailywages', 10000.00, 1, 0.00, 12000.00, 'Thiruverkadu', 'Thiruverkadu', '2103200004', '', '1', 'upload_files/candidate_tracker/69723066514_lastshared.pdf', NULL, NULL, '2021-03-20', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'left before interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-20 11:07:36', 1, '2021-03-20 11:51:40', 0, NULL, 1),
(3938, 'Suresh Kumar ch', '4', '7010712542', '7358240540', 'Sureshkumar29894@gmail.com', '1999-08-29', 21, '2', '2', 'Ramanammal', 'Tailoring', 30000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2103200005', '1', '2', 'upload_files/candidate_tracker/79417803724_P1090.pdf', NULL, NULL, '2021-03-20', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not suitable for telesales', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 11:27:56', 1, '2021-03-20 11:43:56', 0, NULL, 1),
(3939, 'Sathish k', '6', '7418852081', '9191761690', 'patersathish24@gmail.com', '1996-01-24', 25, '2', '2', 'kannaiyah k', 'security manager', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103200006', '1', '1', 'upload_files/candidate_tracker/56121054331_Sathish.k-CV_2021-03-11-012404.pdf', NULL, NULL, '2021-03-20', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'Left Before Interview', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 12:25:10', 1, '2021-03-20 12:35:03', 0, NULL, 1),
(3940, 'mohamed fahath', '6', '0176169778', '9176169778', 'mohamedfahath121@gmail.com', '1999-04-26', 21, '2', '2', 'nazer', 'business', 20000.00, 1, 0.00, 15000.00, 'arumbakkam', 'arumbakkam', '2103200007', '1', '1', 'upload_files/candidate_tracker/20291025544_Fahath resume .doc', NULL, NULL, '2021-03-20', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'Left Before Interview', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 12:30:27', 1, '2021-03-20 12:34:04', 0, NULL, 1),
(3941, 'Manishkumar. P', '6', '9600833695', '9500973795', 'vjmanish7@gmail.com', '1999-04-25', 21, '2', '2', 'Lakshmi. P', 'Homemaker', 20000.00, 2, 0.00, 15000.00, 'Ambur, thirupathur', 'Tambaram, chennai', '2103200008', '1', '1', 'upload_files/candidate_tracker/13370570506_manishkumar Resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for rm', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 12:39:53', 50, '2021-03-22 12:00:26', 0, NULL, 1),
(3942, 'Manikandan P', '5', '9087342277', '', 'manisam23k@gmail.com', '1993-02-05', 28, '2', '2', 'NA', 'NA', 25000.00, 1, 230000.00, 300000.00, 'Chennai', 'Chennai', '2103200009', '1', '2', 'upload_files/candidate_tracker/28098037558_MANIKANDAN Updated Dec.pdf', NULL, NULL, '2021-03-20', 15, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'recommended for next round', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 01:38:20', 1, '2021-03-20 01:45:19', 0, NULL, 1),
(3943, 'Durai Murugan Selvaraj', '13', '9003491228', '', 'selvaduraimurugan@gmail.com', '1996-06-15', 24, '3', '2', 'Selvaraj A', 'Former', 25000.00, 2, 38000.00, 58000.00, 'Pudukkottai', 'Chennai', '2103200010', '', '2', 'upload_files/candidate_tracker/32991424669_Durai Murugan Selvaraj.pdf', NULL, NULL, '2021-03-20', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High CTC Expectation holding offer with 58K\n', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-20 02:02:05', 1, '2021-03-20 02:22:44', 0, NULL, 1),
(3944, 'mukesh kumar', '23', '6385621412', '', 'mukeshmani95@gmail.com', '1995-05-24', 25, '2', '2', 'mani', 'farmer', 25000.00, 1, 25000.00, 40000.00, 'thanjore', 'coimbatore', '2103200011', '1', '2', 'upload_files/candidate_tracker/44107953318_Mukesh resume.pdf', NULL, NULL, '2021-03-24', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will Not fit for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-20 02:33:12', 1, '2021-03-20 02:46:53', 0, NULL, 1),
(3945, 'G.saravanan', '4', '8610956995', '', 'Saravanan.g2997@gmail.com', '1995-11-28', 25, '2', '2', 'Ganapathi', 'govt job retirement', 30000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2103200012', '1', '2', 'upload_files/candidate_tracker/34231436144_12345.docx', NULL, NULL, '2021-03-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, exp is 15k will not sustain and got offer in imarqu for 12k', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-20 02:54:03', 1, '2021-03-20 03:00:56', 0, NULL, 1),
(3946, 'Ravi.k', '6', '8939890985', '', 'ksureshravi1999@gmail.com', '1999-06-04', 21, '2', '2', 'Kuppusamy', 'Former', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Velachery', '2103200013', '1', '1', 'upload_files/candidate_tracker/34764830255_IMG_20210320_151011-converted (1)_compressed (1).pdf', NULL, NULL, '2021-03-20', 0, '', '3', '8', '2021-03-22', 164208.00, '', '6', '2021-05-31', '1', 'Selected CTC - 1,64,208 With Gross - 13684 TH - 13000', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-20 02:55:08', 7, '2021-03-20 06:31:20', 0, NULL, 1),
(3947, 'Mukunthan Balaji', '5', '7550024626', '8056124626', 'mukunthanbalaji@yahoo.com', '1992-07-31', 28, '2', '2', 'Balaji', 'Retired', 15000.00, 0, 13000.00, 16000.00, 'Chennai', 'Chennai', '2103200014', '1', '2', 'upload_files/candidate_tracker/89643626741_Resume- March 2021..pdf', NULL, NULL, '2021-03-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-20 04:26:09', 1, '2021-03-22 11:24:59', 0, NULL, 1),
(3948, 'Samiu. N', '27', '9500532473', '8248791299', 'samiu091997@gmail.com', '1997-10-09', 23, '2', '2', 'Nazeerullah(father) - Aseena(mother)', 'Kooli', 70000.00, 1, 0.00, 16000.00, 'Dharmapuri', 'Dharmapuri', '2103200015', '1', '1', 'upload_files/candidate_tracker/54011660740_samiu resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Scheduled client interview and got rejected', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-20 04:49:16', 1, '2021-03-20 05:34:47', 0, NULL, 1),
(3949, 'Muqthar Ahmed Quraishi J', '2', '7395961967', '9080330563', 'muqthar401@gmail.com', '1998-11-09', 22, '2', '2', 'Jalaluddin Ahmed Quraishi S', 'Electrician', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2103200016', '1', '1', 'upload_files/candidate_tracker/13652440028_Muqthar Resume Fresher.docx', NULL, NULL, '2021-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much active will not fit and sustain for our IT openingsxquot\n', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-20 05:52:35', 1, '2021-03-23 02:44:12', 0, NULL, 1),
(3950, '', '0', '8778087837', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103200017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-20 05:59:38', 0, NULL, 0, NULL, 1),
(3951, 'e. anand', '3', '8056661324', '', 'anandram2401@gmail.com', '1997-09-09', 23, '2', '2', 'r. elumalai', 'car driver', 16000.00, 1, 0.00, 15000.00, 'new perungalathur', 'new perungalathur', '2103200018', '1', '1', 'upload_files/candidate_tracker/92229498646_Anand Resume.pdf', NULL, NULL, '2021-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-20 06:58:27', 1, '2021-03-20 09:56:47', 0, NULL, 1),
(3952, '', '0', '9600184835', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103200019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-20 08:43:37', 0, NULL, 0, NULL, 1),
(3953, 'mohammed abdur razaq', '5', '8248810419', '', 'razaqstar@gmail.com', '2000-09-07', 20, '2', '2', 'asiya banu', 'business', 200000.00, 0, 15000.00, 13000.00, 'ambthur', 'ambthur', '2103210001', '1', '2', 'upload_files/candidate_tracker/53447723547_RESUME RAZAQ EDITED (1).pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, no sales exp. will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-21 01:48:41', 1, '2021-03-24 11:23:30', 0, NULL, 1),
(3954, 'Kokila M', '4', '7358491418', '9952957481', 'arthikokila0002@gmail.com', '2000-07-29', 20, '2', '2', 'Mohan', 'Chennai Port trust', 20000.00, 1, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2103210002', '1', '1', 'upload_files/candidate_tracker/14190233966_Arthi resume.docx', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'well Prepared script about self intro, other than that she is not speaking.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-21 05:09:55', 1, '2021-03-26 10:43:33', 0, NULL, 1),
(3955, 'Sriram Narayanasamy', '17', '9000011124', '9384676798', 'globalsriram@gmail.com', '1962-06-02', 58, '2', '1', 'Madhumathi', 'Professor', 300000.00, 2, 2100000.00, 2100000.00, 'Chennai', 'Chennai', '2103220001', '16', '2', 'upload_files/candidate_tracker/16257794623_CV Sriram- National Sales Head- Pan India.docx', NULL, NULL, '2021-03-22', 0, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Referred to next round for agency channel', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-22 09:51:44', 1, '2021-03-22 01:19:19', 0, NULL, 1),
(3956, 'G karthick', '6', '9994868093', '9080244930', 'karthickganesh712@gmail.com', '1997-06-25', 23, '2', '2', 'M Ganesan', 'Cheff', 23000.00, 1, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2103220002', '1', '1', 'upload_files/candidate_tracker/72801387980_Karthick Resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no rsponse', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-22 10:30:16', 50, '2021-03-22 01:14:05', 0, NULL, 1),
(3957, 'sirajuddin', '4', '9003730119', '8675683986', 'msdsiraj1998@gmail.com', '1998-07-23', 22, '2', '2', 'rajamohammed', 'business', 20000.00, 2, 0.00, 17000.00, 'pattukkottai', 'chennai', '2103220003', '1', '1', 'upload_files/candidate_tracker/60860919424_0_0_0_0_mcn9e-lgn3k.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales and our process, body language is not good.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-22 11:02:24', 8, '2021-03-22 03:51:01', 0, NULL, 1),
(3958, 'Preethithirumalai', '4', '9047854001', '', 'preethithirumalai24@gmail.com', '1997-07-24', 23, '1', '2', 'Muniyamaal thirumalai', 'Home maker', 15000.00, 2, 15000.00, 18000.00, 'Chengalpet', 'Velachery', '2103220004', '', '2', 'upload_files/candidate_tracker/62619605366_Resume.docx', NULL, NULL, '2021-03-22', 0, 'arunkumar', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not suite for CRM', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-03-22 11:19:47', 50, '2021-03-22 03:12:35', 0, NULL, 1),
(3959, 'Moses V Benz', '28', '9962494782', '', 'mosesbenz800@gmail.com', '2006-03-22', 0, '2', '2', 'Sheeba (Mother\'s name)', 'Teacher', 10000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2103220005', '1', '1', 'upload_files/candidate_tracker/90372871830_Resume 2021 - 1614072726.pdf', NULL, NULL, '2021-03-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-22 11:26:48', 1, '2021-03-22 11:30:18', 0, NULL, 1),
(3960, 'Santhosh Kumar', '3', '9150995604', '9345342579', 'Sandysanthosh5195@gmail.com', '1997-12-25', 23, '2', '2', 'Suresh', 'Coolie', 72000.00, 3, 0.00, 25000.00, 'Chennai', 'Chennai', '2103220006', '1', '2', 'upload_files/candidate_tracker/51350502074_SANTHOSHkumar Resume.docx (1)-converted.pdf', NULL, '1', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, Salary Expectation is very high. No understanding. Will not sustain with us for a long.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-22 11:31:17', 1, '2021-07-27 11:48:10', 0, NULL, 1),
(3961, 'Hariharan', '5', '6380765618', '9840996533', 'candyharis5704@gmail.com', '1998-11-09', 22, '2', '2', 'Padma', 'Road worker', 15000.00, 3, 15000.00, 180000.00, '2/50, Ramnagar 2nd nagar icehouse', 'Same as above', '2103220007', '3', '2', 'upload_files/candidate_tracker/65592201409_Resume - HARI2021.doc', NULL, NULL, '2021-03-22', 0, '', '3', '8', '1970-01-01', 180000.00, '', '2', '1970-01-01', '1', 'Selected With CTC 1,80,000 Gross- 15000,TH - 14250', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-22 11:41:41', 7, '2021-03-24 08:04:43', 0, NULL, 1),
(3962, 'hariharan n', '5', '6380795618', '', 'candyharis5704@gmail.com', '1998-11-09', 23, '2', '2', 'raghu', 'nil', 15000.00, 1, 16000.00, 18000.00, 'chennai', 'chennai', '2103220008', '2', '2', 'upload_files/candidate_tracker/33543346889_RESUME HARI 2 PAGES.docx', NULL, '1', '2022-08-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-22 11:51:49', 1, '2022-08-26 10:23:38', 0, NULL, 1),
(3963, 'Faziya fathima', '4', '9884127386', '8870756783', 'ayishabanu122@gmail.com', '1997-01-12', 24, '1', '2', 'Abdul saleem', 'Tele calar', 18000.00, 2, 18000.00, 20000.00, 'Choolaimedu', 'Choolaimedu', '2103220009', '', '2', 'upload_files/candidate_tracker/32994645485_CURRICULAM VITAE faziya.docx', NULL, NULL, '2021-03-22', 1, '55595', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, exp is 18k. no parents and will not handle pressure.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-22 12:17:08', 1, '2021-03-22 12:27:50', 0, NULL, 1),
(3964, '', '0', '7299610168', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103220010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-22 02:56:03', 0, NULL, 0, NULL, 1),
(3965, 'Subashini', '4', '6374136710', '', 'Subashini1431@gmail.com', '2000-05-31', 20, '2', '2', 'Elumalai', 'Retired', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2103220011', '1', '1', 'upload_files/candidate_tracker/17839643306_E. SUBASHINI(resume)-WPS Office-1-1.doc', NULL, NULL, '2021-03-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Searching job for time being', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-22 04:04:50', 50, '2021-03-22 04:23:55', 0, NULL, 1),
(3966, 'Vinothini P', '4', '7358246164', '9361309007', 'vinoheidi22@gmail.com', '1998-02-06', 23, '2', '2', 'Parasuraman V', 'Ex-Service man', 15000.00, 0, 0.00, 15000.00, 'Krishnagiri', 'Chennai', '2103220012', '1', '1', 'upload_files/candidate_tracker/56373003827_Vinothini Resume.pdf', NULL, NULL, '2021-03-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Response', '1', '2', '', '1', '1', '', '2', '2021-03-23', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-22 04:04:52', 50, '2021-03-22 04:27:04', 0, NULL, 1),
(3967, 'Sharukh', '5', '8778787943', '', 'sharukhsadiq@gmail.com', '1995-12-19', 25, '2', '2', 'Sadiq basha', 'Self employed', 10000.00, 1, 18000.00, 25000.00, 'Harur', 'Harur', '2103220013', '1', '2', 'upload_files/candidate_tracker/7626212234_SHARUKH_BE_MBA_3 years .pdf', NULL, NULL, '2021-03-22', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No response', '5', '1', '', '1', '1', '', '2', '2021-03-23', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-22 04:29:01', 50, '2021-03-22 05:07:32', 0, NULL, 1),
(3968, '', '0', '9600053361', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103220014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-22 05:18:04', 0, NULL, 0, NULL, 1),
(3969, '', '0', '6369830684', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103220015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-22 05:41:07', 0, NULL, 0, NULL, 1),
(3970, 'abdul bazith', '4', '8148584768', '', 'abdulbazith9865@gmail.com', '1998-01-07', 23, '2', '2', 'kansul rahman', 'stc', 25.00, 1, 70000.00, 20000.00, 'THOOTHUKUDI', 'medavakkam chennai', '2103230001', '1', '2', 'upload_files/candidate_tracker/13052796882_Abdul Bazith 2).pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no sales exp. exp sal is 18k. he was comfortable in dhubai job.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-23 12:21:45', 1, '2021-04-05 02:51:50', 0, NULL, 1),
(3971, 'Naveen Kumar', '6', '6383458312', '7708807609', 'nk1198069@gmail.com', '2000-10-02', 20, '2', '2', 'Kalpana', 'House wife', 30000.00, 1, 25000.00, 20000.00, 'No69 Sriram nagar paruthipattu avadi', 'No 69 sriramnagar paruthipattu Avadi', '2103230002', '1', '2', 'upload_files/candidate_tracker/99295526986_Naveen resume-2.docx', NULL, NULL, '2021-03-23', 3, '', '3', '8', '1970-01-01', 176844.00, '', '2', '1970-01-01', '1', 'Selected For Ramesh Team With CTC- 176844 Gross - 14737 TH - 14000', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 09:58:04', 7, '2021-03-29 05:27:30', 0, NULL, 1),
(3972, 'R.Hariharan', '4', '9710180196', '9840649133', 'hariharanramu1999@gmail.com', '1999-11-27', 21, '3', '2', 'Ramu.V', 'Painter', 100000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2103230003', '', '1', 'upload_files/candidate_tracker/20122515799_resume_HARIHARAN.doc', NULL, NULL, '2021-03-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, will not suite for our process, will not handle pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:01:47', 1, '2021-03-23 10:05:40', 0, NULL, 1),
(3973, 'Rohit', '3', '8870133310', '', 'Rohitpaskaran1997@gmail.com', '1997-12-28', 23, '2', '2', 'Paskaran', 'Business', 12000.00, 2, 0.00, 12000.00, 'Chennnai', 'Chennai', '2103230004', '1', '1', 'upload_files/candidate_tracker/72897925334_resume updated rohit.docx', NULL, NULL, '2021-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher and doing freelance not open for Service Agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 10:08:41', 1, '2021-03-23 02:49:36', 0, NULL, 1),
(3974, 'bhuvaneshwaran', '28', '7904842929', '9597598018', 'bhuvaneshthiru96@gmail.com', '1996-06-02', 24, '1', '2', 'thirumooorthy', 'business', 30000.00, 3, 0.00, 25000.00, 'erode', 'chennai', '2103230005', '', '1', 'upload_files/candidate_tracker/92848232178_CV_2021-03-16-054200.pdf', NULL, NULL, '2021-03-23', 0, '66667', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Content is not up to the mark and not Much good in analytical', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:14:56', 1, '2021-03-23 10:56:18', 0, NULL, 1),
(3975, 'kabilan s', '4', '9176481071', '', 'kabilpandiyan653@gmail.com', '2000-06-21', 20, '2', '1', 'pandiyan', 'lorry driver', 16000.00, 1, 10000.00, 12000.00, 'chennai', 'thiruvottiyur', '2103230006', '2', '2', 'upload_files/candidate_tracker/24961390800_Kabilan Resume.doc', NULL, NULL, '2021-03-23', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not fit for telesales voice process ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:34:33', 8, '2021-03-23 05:26:32', 0, NULL, 1),
(3976, 'sivaranjani', '4', '9551552841', '', 'sivaranjani1392@gmail.com', '2000-05-30', 20, '2', '2', 'saravanan', 'auto driver', 10000.00, 2, 11000.00, 12000.00, 'chennai', 'chennai', '2103230007', '2', '2', 'upload_files/candidate_tracker/39115468986_SIVARANJANI.S.doc', NULL, NULL, '2021-03-23', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'she is not fit for tele sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:40:18', 1, '2021-03-23 10:42:00', 0, NULL, 1),
(3977, 'sethu k', '6', '7358176223', '', 'Sethutamil177@gmail.com', '1997-08-20', 23, '2', '2', 'kumar', 'car dealer', 15000.00, 1, 14000.00, 16000.00, 'chennai', 'pattinapakkam', '2103230008', '2', '2', 'upload_files/candidate_tracker/2602858501_Sethu Resume new.doc', NULL, NULL, '2021-03-23', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '2', '0', '1', '1', '0', '2', '2021-03-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:44:49', 1, '2021-03-23 10:46:42', 0, NULL, 1),
(3978, 'GUNASEELAN S', '6', '8667471530', '7092793026', 'gunaseelan12695@gmail.com', '1995-06-12', 25, '2', '2', 'C SAKER', 'Farmer', 15000.00, 3, 17000.00, 20000.00, 'No 202 , panaiyar {V&P}, cheyyum Tk, chengalpet dt', 'No 8/29 , padbanaban ias st, Thiruvanmiyur', '2103230009', '16', '2', 'upload_files/candidate_tracker/93051953587_GUNA Resume .docx', NULL, NULL, '2021-03-23', 0, '', '5', '20', NULL, 0.00, '', '0', NULL, '1', 'Profile Experience doesnxquott add up.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 10:51:00', 1, '2021-03-23 11:00:03', 0, NULL, 1),
(3979, 'S suvetha', '4', '9677415616', '7305250329', 'suvepriyaa@gmail.com', '1996-02-11', 25, '4', '1', 'R pradeep', 'Working in cargoo', 30000.00, 2, 0.00, 12000.00, 'Adambakkam', 'Adambakkam', '2103230010', '', '1', 'upload_files/candidate_tracker/68557355174_WHATSAPP_CC.pdf', NULL, NULL, '2021-03-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 11:07:19', 1, '2021-03-23 11:44:26', 0, NULL, 1),
(3980, 'Suresh C', '7', '9710388982', '8939063995', 'chandransuresh82@gmail.com', '1999-08-03', 21, '2', '2', 'Chandrasekaran D', 'Provisional store', 15000.00, 1, 12000.00, 16000.00, 'Oldwashemenpet', 'Oldwashemenpet', '2103230011', '1', '2', 'upload_files/candidate_tracker/19548096028_suresh resume pdf.pdf', NULL, NULL, '2021-03-23', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'wearing braces. pronunciation is not clear, looking for mF. no sales skill.', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 11:09:57', 1, '2021-03-23 11:17:22', 0, NULL, 1),
(3981, 'Abdul Gani', '6', '7401756003', '', 'abdulaggani@gmail.com', '1995-11-27', 25, '2', '2', 'Fathima', 'House wife', 20000.00, 0, 16000.00, 15000.00, 'Chennai', 'Chennai', '2103230012', '16', '2', 'upload_files/candidate_tracker/82888255207_RESUME-WPS Office agg.pdf', NULL, NULL, '2021-03-23', 0, '', '3', '8', '2021-03-29', 176844.00, '', '3', '2021-04-13', '1', '14737 mctc 14k th for guru team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 11:10:48', 7, '2021-03-27 06:08:31', 0, NULL, 1),
(3982, 'Saranya M', '4', '8072253584', '9884274075', 'Saranya18111994@outlook.com', '1994-11-18', 26, '2', '1', 'Guruprasad', 'Driver', 12000.00, 2, 11000.00, 13000.00, 'Chennai', 'K k nagar', '2103230013', '1', '2', 'upload_files/candidate_tracker/70531376584_Saranya Resume.docx', NULL, NULL, '2021-03-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 11:47:38', 7, '2021-03-23 01:02:32', 0, NULL, 1),
(3983, 'd.david', '6', '8098587439', '9345502088', 'davidriderdurairaj@gmail.com', '1996-04-05', 24, '2', '2', 'd.durairaj', 'farmer', 150000.00, 4, 14500.00, 17000.00, 'pudukkottai', 'ambattur padi', '2103230014', '1', '2', 'upload_files/candidate_tracker/66803335241_david new resume 2020-1.pdf', NULL, NULL, '2021-03-23', 30, '', '3', '8', '1970-01-01', 202104.00, '', '2', '1970-01-01', '1', '16k th, 16842 ctc for ramesh team', '5', '1', '1', '1', '3', '1', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 12:05:55', 7, '2021-03-29 12:48:15', 0, NULL, 1),
(3984, 'Archana', '13', '7373881168', '7708359523', 'msarchana1996@gmail.com', '1996-09-22', 24, '2', '2', 'Selvaraj', 'Retair Head master', 60.00, 2, 208000.00, 400000.00, 'Thanjavur', 'Chennai', '2103230015', '1', '2', 'upload_files/candidate_tracker/10881682320_ArchanaResume-converted (1).pdf', NULL, NULL, '2021-03-27', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 02:00:19', 1, '2021-03-23 02:13:06', 0, NULL, 1),
(3985, 'Manikandan M', '6', '6383647019', '9600185997', 'Manikandankasthuri5@gmail.com', '1997-10-31', 23, '2', '2', 'Kasthuri M', 'Executive', 20000.00, 2, 19000.00, 20000.00, 'Taramani', 'Taramani', '2103230016', '16', '2', 'upload_files/candidate_tracker/20744748398_MANI NEW RESUME 2.docx', NULL, NULL, '2021-03-23', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not turned up', '5', '1', '', '1', '1', '', '2', '2021-03-30', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 02:32:47', 8, '2021-03-23 05:13:41', 0, NULL, 1),
(3986, 'Sakthivel c', '6', '7708818816', '', 'aksakthi777@gmail.com', '2000-03-10', 21, '2', '2', 'Chandran', 'Plumber', 30000.00, 1, 0.00, 13500.00, 'Pallikaranai', 'Pallikaranai', '2103230017', '1', '1', 'upload_files/candidate_tracker/1933902335_1616469715519Resume_Sakthivel.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no fluency while speaking, will not suite for calling. no clarity too.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-23 02:48:11', 1, '2021-03-23 03:09:41', 0, NULL, 1),
(3987, 'Srisachin K', '16', '8939748224', '', 'Srisachink@gmail.com', '1997-02-10', 24, '4', '2', 'Kadhiresan V', 'Cab driver', 11500.00, 1, 12000.00, 18451.00, '2/441, Kollapuri Amman St, Mudichur, ch-48', '4/300A, Muthamil nagar, Old Perungalattur, Ch-63', '2103230018', '', '2', 'upload_files/candidate_tracker/67765538396_CV_2021-03-31-023601.pdf', NULL, '2', '2021-05-12', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 02:50:47', 1, '2021-05-11 04:37:27', 0, NULL, 1),
(3988, '', '0', '1234558890', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103230019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-23 02:59:35', 0, NULL, 0, NULL, 1),
(3989, 'AJITH KUMAR P', '6', '8056418752', '7200367727', 'riorockaji0117@gmail.com', '1998-02-17', 23, '2', '2', 'G PERUMAL', 'Farmer', 15000.00, 2, 28000.00, 30000.00, 'MEDAVAKKAM', 'AMBATUR', '2103230020', '16', '2', 'upload_files/candidate_tracker/6331868739_Resume - AJITH 3.docx', NULL, NULL, '2021-03-23', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'gave a negative feedback insurance. will not suite for our process.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-23 03:15:54', 8, '2021-03-23 05:15:34', 0, NULL, 1),
(3990, '', '0', '8248335044', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103230021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-23 03:23:59', 0, NULL, 0, NULL, 1),
(3991, 'meshak a', '28', '9176517877', '', 'mmesh580333@gmail.com', '1999-05-05', 21, '2', '2', 'chennai', 'farmer', 20000.00, 1, 20000.00, 20000.00, 'chennai', 'chennai', '2103230022', '1', '2', 'upload_files/candidate_tracker/21361199377_0_A.MESHAK NEW (1) (1) (1).docx', NULL, NULL, '2021-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication and not suitable for the role', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 03:38:49', 1, '2021-03-24 12:18:53', 0, NULL, 1),
(3992, 'Vignesh', '6', '8248335044', '9080330563', 'devavignesh203@gmail.com', '1995-08-03', 25, '2', '2', 'Devaraj', 'Painting contractor', 10000.00, 2, 0.00, 13.00, 'Chennai', 'Chennai', '2103230023', '1', '2', 'upload_files/candidate_tracker/75729810767_5212256.pdf', NULL, NULL, '2021-03-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'low voice, looking for non voice, exp about the phone was good but not satisfied with his profile, ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-23 03:43:56', 7, '2021-03-23 04:19:29', 0, NULL, 1),
(3993, 'Monish.k', '6', '7449290234', '', 'monishkumar005@gmail.com', '1999-05-23', 21, '2', '2', 'kumar.m', 'Carpenter', 20.00, 1, 0.00, 13.50, '1/437 Aringar Anna Nagar,4th Street Neelankari.', '1/437 Aringar Anna Nagar,4th Street Neelankari.', '2103230024', '1', '1', 'upload_files/candidate_tracker/11877043670_CamScanner 03-23-2021 16.13.39.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join without his friend. bcoz he Referred him. but he is okay for RE.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-23 03:58:55', 50, '2021-03-24 11:24:18', 0, NULL, 1),
(3994, 'Manikandan', '5', '9566244075', '', 'santharaman075@gmail.com', '1990-08-10', 30, '2', '1', 'Lavanya', 'House wife', 30000.00, 0, 17000.00, 25000.00, 'Porur', 'Porur', '2103230025', '1', '2', 'upload_files/candidate_tracker/35431098502_Resume.docx', NULL, NULL, '2021-03-24', 3, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 90days notice. will not suite for RM/RE. has exp but no knowledge. no convincing skill too.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-23 04:22:40', 1, '2021-03-24 12:09:17', 0, NULL, 1),
(3995, '', '0', '7904411909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103230026', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-23 04:46:12', 0, NULL, 0, NULL, 1),
(3996, 'ashwin manickam subramanian', '28', '7708677086', '', 'ashwin.manickam027@gmail.com', '1995-12-31', 25, '2', '2', 'subramanian', 'fresher', 50000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2103230027', '1', '1', 'upload_files/candidate_tracker/13939676738_Ashwin_Manickam_Subramanian_CV.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Local language, Much with Data Science and the expectation is high', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 05:22:56', 1, '2021-03-23 05:26:48', 0, NULL, 1),
(3997, '', '0', '9884706269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103230028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-23 05:32:51', 0, NULL, 0, NULL, 1),
(3998, 'mohammed adeen p', '22', '8870532004', '6382682155', 'mohammedadeen12@gmail.com', '1999-05-12', 21, '2', '2', 'aadil ahmed p', 'businessmen', 10000.00, 2, 0.00, 2.60, 'second street third cross new jalalpet ambur', 'second street third cross new jalalpet ambur', '2103230029', '1', '1', 'upload_files/candidate_tracker/20956745501_Mohammed Adeen P.pdf', NULL, NULL, '2021-03-27', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to interview few more candidates to find the best out of them.', '2', '1', '', '1', '1', '', '2', '2021-03-31', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 05:43:06', 69, '2021-04-01 11:13:09', 0, NULL, 1),
(3999, 'ramanan', '28', '6380994629', '7871857456', 'ramgee4378@gmail.com', '1999-02-07', 22, '2', '2', 'r.narasimhan', 'driver', 256000.00, 1, 0.00, 300000.00, 'Salem', 'Salem', '2103230030', '1', '1', 'upload_files/candidate_tracker/23424010564_RESUME.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not suits for our Data Analyst Role', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 06:13:25', 1, '2021-03-23 06:54:30', 0, NULL, 1),
(4000, 'Karthik kumaran', '15', '7010545701', '', 'karthikkumaran888@gmail.com', '1998-12-05', 22, '2', '2', 'g.Muthu kumaran', 'buisness', 8000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2103230031', '1', '1', 'upload_files/candidate_tracker/87831702635_mk RESUME.pdf', NULL, NULL, '2021-03-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-23 09:24:43', 1, '2021-03-23 09:29:36', 0, NULL, 1),
(4001, 'saqib mohammed', '28', '9894187295', '', 'saqibalharab004@gmail.com', '1998-11-02', 22, '2', '2', 'mohammed saleem', 'supervisor', 15000.00, 1, 0.00, 25000.00, 'Vaniyambadi', 'Vaniyambadi', '2103240001', '1', '1', 'upload_files/candidate_tracker/69380845002_Saqib Mohammed_Resume.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement,also not fit much for our DA Role', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 11:32:42', 1, '2021-03-24 11:45:06', 0, NULL, 1),
(4002, 'Sivaraj Krishnan', '26', '9994449201', '', 'sivarajj.k@gmail.com', '1992-06-05', 28, '2', '1', 'Krishnan', 'Formar', 200000.00, 1, 17000.00, 22000.00, 'Chennai', 'Chennai', '2103240002', '1', '2', 'upload_files/candidate_tracker/46085414926_Resume_SIVARAJ.docx', NULL, NULL, '2021-03-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'comm. is poor not even an avg. no knowledge as MIS in previous org.', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 11:44:35', 50, '2021-03-24 02:48:40', 0, NULL, 1),
(4003, 'mohammed imran f', '5', '9710895264', '8939183994', 'immu4600@gmail.com', '1996-03-18', 25, '1', '2', 'samdani begum f', 'housewife', 50000.00, 2, 25000.00, 30000.00, 'chennai', 'chennai', '2103240003', '', '2', 'upload_files/candidate_tracker/87556252328_imran F.docx', NULL, NULL, '2021-03-24', 0, '5563', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for Job', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 11:51:11', 1, '2021-03-24 12:42:30', 0, NULL, 1),
(4004, 'Boobalan', '16', '9597799288', '', 'boobalan.krce@gmail.com', '1992-08-08', 28, '2', '2', 'Selvam', 'Business', 15000.00, 1, 700000.00, 700000.00, 'Namakkal', 'Chennai', '2103240004', '3', '2', 'upload_files/candidate_tracker/48908904850_1612360488794Resume_Boobalan.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Communication is below avg. exp sal is 30K+, not that much knowledge as MIS exc. but he has sales exp and not interested in sales.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 11:56:44', 1, '2021-03-24 12:02:22', 0, NULL, 1),
(4005, 'S. Suriyakala', '4', '7339225200', '7708044819', 'Suriya1442000@gmail', '2000-04-14', 20, '2', '2', 'N. Suriyamoorthy', 'Farmer', 5000.00, 2, 0.00, 10000.00, 'Thiruvarur', 'Thiruvallur', '2103240005', '1', '1', 'upload_files/candidate_tracker/34859686569_suriya resum2.pdf', NULL, NULL, '2021-03-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 11:58:41', 50, '2021-03-24 02:47:36', 0, NULL, 1),
(4006, 'dilshad', '29', '9790217971', '', 'dilshadbegum31@gmail.com', '1997-02-12', 24, '2', '2', 'ramathulla khan', 'rtd.railway employee', 50000.00, 1, 23650.00, 30000.00, 'chennai', 'chennai', '2103240006', '1', '2', 'upload_files/candidate_tracker/63802597507_Dilshad .docx', NULL, NULL, '2021-03-24', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Good in Communication and from the Training field, Reyaz from IT took 2nd Round and rejected in the 3rd round with Syed Reyaz Ahmed - AM ESales', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-03-24 12:05:27', 1, '2021-03-24 12:14:07', 0, NULL, 1),
(4007, 'Shanmugapriyan v', '4', '8056743073', '8610852687', 'vspriyan255@gmail.com', '1999-05-25', 21, '2', '2', 'S.velmurugan', 'Farmer', 8000.00, 2, 0.00, 12000.00, 'THIRUVARUR', 'Thiruvallur', '2103240007', '1', '1', 'upload_files/candidate_tracker/9310051850_sp resume.docx', NULL, NULL, '2021-03-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 12:06:40', 50, '2021-03-24 02:47:51', 0, NULL, 1),
(4008, 'Priya.R', '4', '6383121562', '', 'Priyarajenthiran2017@gmail.com', '1999-07-05', 21, '2', '2', 'Rajendran.g', 'Farmer', 5000.00, 4, 0.00, 12000.00, 'Nagapatinam', 'Thiruvallur', '2103240008', '1', '1', 'upload_files/candidate_tracker/15940944576_DT20195412078_Resume priya(1).docx', NULL, NULL, '2021-03-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 12:21:24', 50, '2021-03-24 02:48:21', 0, NULL, 1),
(4009, 'sribalaaji d s', '28', '9176548993', '9962357082', 'balaaji.sri40@gmail.com', '1994-07-21', 26, '2', '2', 'desingh', 'retired', 20000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2103240009', '1', '1', 'upload_files/candidate_tracker/19072271314_CV_SRIBALAAJI_DS.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,Core data Analyst profile,will not sustain for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 12:31:02', 1, '2021-03-24 12:46:06', 0, NULL, 1),
(4010, '', '0', '7397221110', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103240010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-24 12:32:53', 0, NULL, 0, NULL, 1),
(4011, 'guntur Reshma', '29', '6380673569', '', 'resh20596@gmail.com', '1997-01-20', 24, '2', '2', 'GM Kondaiah', 'Ex Servicemen', 600000.00, 1, 23000.00, 30000.00, 'Andha pradesh', 'Mogappair chennai', '2103240011', '1', '2', 'upload_files/candidate_tracker/42970937936_Guntur Reshma.pdf', NULL, NULL, '2021-03-24', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Good in Communication, Same company with Dilshad begum.Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-03-24 12:44:57', 1, '2021-03-24 12:50:21', 0, NULL, 1),
(4012, 'V. Indumathi', '4', '8220537603', '9677219107', 'Vignesh_hema0594@yahoo.com', '1994-08-05', 26, '2', '1', 'B. Vignesh', 'E-publishing', 14500.00, 1, 9500.00, 12000.00, 'Chennai', 'Chennai', '2103240012', '1', '2', 'upload_files/candidate_tracker/84894616710_RESUME.docx', NULL, NULL, '2021-03-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-24 01:09:47', 50, '2021-03-24 02:48:07', 0, NULL, 1),
(4013, 'Vijaysah V R', '28', '9944402042', '6382274728', 'vrvijay525@gmail.com', '1998-07-30', 22, '2', '2', 'Ravisah V G', 'Cosmetic business', 25000.00, 1, 16000.00, 18000.00, 'Kanchipuram', 'Kanchipuram', '2103240013', '1', '2', 'upload_files/candidate_tracker/6367152441_resume vijay 2021 official DA_CV.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '50/50,Interviewed by Reyaz for the 2nd level and got rejected', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 01:32:43', 1, '2021-03-24 01:38:10', 0, NULL, 1),
(4014, 'tamilvannan g', '28', '9786577197', '', 'tamilgtv15@gmail.com', '1997-08-15', 23, '2', '2', 'ganesan', 'salesman in textile shop', 160000.00, 2, 0.00, 260000.00, 'cuddalore', 'adambakkam chennai', '2103240014', '1', '1', 'upload_files/candidate_tracker/82649305958_Tamilvannan_Resume.docx', NULL, NULL, '2021-03-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 01:57:25', 1, '2021-03-24 02:06:02', 0, NULL, 1),
(4015, 'arunkumar', '6', '8939160144', '', 'arunkumarstoner@gmail.com', '2006-03-24', 0, '3', '2', 'rajenderan c', 'retiered irt', 30000.00, 1, 0.00, 20000.00, 'mkb nagar', 'chennai', '2103240015', '', '1', 'upload_files/candidate_tracker/71060236567_Arun- Official Resume-2.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no clarity in voice. will not suite for sales process, looking for non sales. will not sustain.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 02:37:29', 8, '2021-03-24 05:11:29', 0, NULL, 1),
(4016, 'P v sridhar', '4', '9550709348', '9444013552', 'Sridharsidhu39@gmail.com', '1995-06-18', 25, '3', '2', 'Parents', 'Former', 20000.00, 3, 4.00, 19000.00, 'Aravasapattida pallipat thiruvallur', 'Poola street near vesalamma temple tirupati', '2103240016', '', '2', 'upload_files/candidate_tracker/56372001177_Sridhar resume.pdf', NULL, NULL, '2021-03-24', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'language is not good, no clarity in speech, mother Tongue is telugu. no understanding. will not suite for our process.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 02:54:54', 1, '2021-03-24 03:09:33', 0, NULL, 1),
(4017, 'M.syed Waseem', '4', '8428606275', '9500153607', 'syedwaseem2704@gmail.com', '2001-04-27', 19, '2', '2', 'L. Syed mahamood', 'Employee', 10000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2103240017', '1', '2', 'upload_files/candidate_tracker/29014470431_Sheerin_Telecaller_EK Infra(3).pdf', NULL, NULL, '2021-03-24', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, low voice, has exp in mobile sales will not suite for our process', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-24 02:56:39', 1, '2021-03-24 03:15:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4018, 'Karthikraja K', '28', '9994107709', '', 'karthikraja016@gmail.com', '1997-07-16', 23, '2', '2', 'Kesavan M', 'Jewel appraiser', 150000.00, 1, 0.00, 18000.00, 'Kumbakonam', 'Chennai', '2103240018', '1', '1', 'upload_files/candidate_tracker/3161254547_resume2.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Average Communication,Sustainability doubt', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 03:07:43', 1, '2021-03-24 03:31:23', 0, NULL, 1),
(4019, 'akil mohan', '28', '7358671775', '', 'akilmohan94@gmail.com', '1994-06-19', 26, '2', '2', 'p mohanan', 'business', 50000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2103240019', '1', '1', 'upload_files/candidate_tracker/54974462849_Resume_.docx', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Agreement,Core Data Analyst Will not sustain for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 03:22:46', 1, '2021-03-24 03:31:14', 0, NULL, 1),
(4020, 'vincent powl', '4', '8925222843', '', 'saivincentpowl@gmail.com', '1986-02-12', 35, '2', '1', 'vinu', 'house wife', 20000.00, 0, 17000.00, 17000.00, 'iyyapnthangal', 'iyyapanthangal', '2103240020', '16', '2', 'upload_files/candidate_tracker/89769966080_WhatsApp Image 2021-03-24 at 9.22.09 AM-converted.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not interested in field sales, will not suite for our process, expt sal is18K which will not suite for CRM', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 03:28:51', 1, '2021-03-24 05:08:20', 0, NULL, 1),
(4021, 'Sathish', '6', '9566062829', '8015677937', 'Sathishsha18@gmail.com', '1995-02-05', 26, '2', '2', 'Anand', 'Painter', 12000.00, 1, 15500.00, 16000.00, 'Chennai', 'Poonamallee', '2103240021', '16', '2', 'upload_files/candidate_tracker/56280830897_sha.potx.pdf', NULL, NULL, '2021-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Pronunciation is not clear, mother tounge is sowrashtra. Attitude is not good. tapping the table while taking will not suite for sales profile. has 5yr exp in showroom sales.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-24 03:32:37', 1, '2021-03-24 03:36:42', 0, NULL, 1),
(4022, 'rahul. r', '22', '9445420016', '8778606331', 'rahulgullu1997@gmail.com', '1997-07-27', 23, '2', '2', 'ramesh. m', 'student', 85000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2103240022', '1', '1', 'upload_files/candidate_tracker/85351729507_Rahul Data science resume new.pdf', NULL, NULL, '2021-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 03:39:45', 1, '2021-03-24 03:55:44', 0, NULL, 1),
(4023, '', '0', '9025647887', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103240023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-24 03:50:32', 0, NULL, 0, NULL, 1),
(4024, '', '0', '8778524657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103240024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-24 03:50:38', 0, NULL, 0, NULL, 1),
(4025, 'S. Steffi Pearl Vinodhini', '28', '8925418924', '9789792739', 'steffipearl8@gmail.com', '1998-04-17', 22, '2', '2', 'Vatsala', 'Banker', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2103240025', '1', '1', 'upload_files/candidate_tracker/37930452633_Steffi Resume Updated (1).pdf', NULL, NULL, '2021-03-25', 0, '', '2', '54', NULL, 0.00, '', '0', NULL, '2', 'Okay, she will back on ist week of apirl', '3', '1', '0', '1', '1', '0', '2', '2021-04-01', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 04:02:37', 1, '2021-03-25 12:29:16', 0, NULL, 1),
(4026, 'Balaji', '28', '9789792739', '', 'balajcivil@gmail.com', '1991-10-04', 29, '2', '1', 'Praveena', 'Sr. Analyst (Health Care - Testing)', 30000.00, 1, 0.00, 30000.00, 'Viluppuram', 'Chennai', '2103240026', '1', '1', 'upload_files/candidate_tracker/46546997269_BalajiArputhanathan_CV.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not suit for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 04:55:42', 1, '2021-03-24 05:25:48', 0, NULL, 1),
(4027, 'deepan raj', '28', '9629577519', '', 'deepanrajprince@gmail.com', '2000-09-03', 20, '2', '2', 's. ravichandran', 'Cooperative Society', 15000.00, 1, 0.00, 20000.00, 'vellore', 'vellore', '2103240027', '1', '1', 'upload_files/candidate_tracker/21435568427_Resume_deepan raj.pdf', NULL, NULL, '2021-03-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 05:09:19', 7, '2021-03-29 05:59:18', 0, NULL, 1),
(4028, 'T.ANTO JERIK', '28', '8122243621', '', 'antojerik@yahoo.in', '1993-12-14', 27, '2', '2', 'S.THOMAS', 'PAINTER', 20000.00, 1, 0.00, 17000.00, 'No 66 HARRIS STREET VIRUGAMBAKKAM CHENNAI 92', 'CHENNAI', '2103240028', '1', '1', 'upload_files/candidate_tracker/89502149661_Resume Anto.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication,Very Slow will not fit for our Role', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 05:10:57', 1, '2021-03-24 05:15:32', 0, NULL, 1),
(4029, '', '0', '8667429162', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103240029', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-24 05:30:09', 0, NULL, 0, NULL, 1),
(4030, 'dhibarajan.', '2', '7010409269', '', 'dhibarajan2403050@gmail.com', '1997-05-03', 23, '2', '2', 'ramachandran', 'tailor', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2103240030', '1', '1', 'upload_files/candidate_tracker/13332506013_Dhibarajan.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement, also he gpt another Offer', '2', '2', '0', '1', '1', '0', '2', '2021-03-27', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 05:42:18', 1, '2021-03-24 05:50:23', 0, NULL, 1),
(4031, 'shruthi suresh', '28', '9791093780', '7598047650', 'shruthisuresh23@gmail.com', '1998-07-23', 22, '2', '2', 'suresh radhakrishnan', 'service', 200000.00, 1, 0.00, 300000.00, 'Chennai, Tamil Nadu, India', 'Chennai, Tamil Nadu, India', '2103240031', '1', '1', 'upload_files/candidate_tracker/15229980541_Shruthi Suresh Resume.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement, Core DA will not sustain for a long', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 07:09:17', 1, '2021-03-24 07:59:25', 0, NULL, 1),
(4032, 'rajalakshmi g', '28', '9842920516', '8778267583', 'raji21infotech@gmail.com', '1995-12-21', 25, '2', '2', 'gopal krishna', 'retired assistant in financial dept', 15.00, 1, 0.00, 3.00, 'Madurai', 'chennai', '2103240032', '1', '1', 'upload_files/candidate_tracker/24786263069_Rajalakshmi.BA_1.pdf', NULL, NULL, '2021-03-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-24 07:32:32', 1, '2021-03-24 07:37:11', 0, NULL, 1),
(4033, 'Prakash R', '6', '9840628114', '', 'prakashlucky526@gmail.com', '1994-04-26', 26, '2', '2', 'Nagammal', 'Tellcaller', 35000.00, 2, 0.00, 4.00, 'Chennai', 'Chennai', '2103250001', '1', '2', 'upload_files/candidate_tracker/60161886509_1604411931733_Akilloki (1)-converted.pdf', NULL, NULL, '2021-03-25', 0, '', '3', '8', '1970-01-01', 214728.00, '', '2', '1970-01-01', '2', '17k th 17894 mtc 214728y ctc an for guru team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-25 10:21:10', 7, '2021-03-27 06:08:48', 0, NULL, 1),
(4034, 'JIJEESH KUMAR M', '6', '8129673636', '', 'jijeshjr6@gmail.com', '1994-03-28', 26, '2', '1', 'MAHIMA', 'RPF', 20000.00, 0, 0.00, 25000.00, 'PALAKKAD, KERALA', 'THOUSANDLIGHT, CHENNAI', '2103250002', '16', '2', 'upload_files/candidate_tracker/93706893158_JIJEESH KUMAR. M.docx', NULL, NULL, '2021-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'language is not good, has showroom exp in joy alukkas for 3yrs.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 10:30:27', 1, '2021-03-25 10:42:59', 0, NULL, 1),
(4035, 'vigneshwaran', '6', '8056219840', '', 'vignesh28476@gmail.com', '1996-09-04', 24, '2', '2', 'baskaran', 'nil', 10000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2103250003', '2', '1', 'upload_files/candidate_tracker/51910878890_new.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain and will not suite for our process.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 10:32:25', 7, '2021-03-25 04:51:49', 0, NULL, 1),
(4036, 'easwaran', '6', '7338786757', '9791193479', 'veeraeswaran46@gmail.com', '1996-11-16', 24, '2', '2', 'bharathi', 'business', 10000.00, 1, 0.00, 13000.00, 'arumbakkam', 'arumbakkam', '2103250004', '1', '2', 'upload_files/candidate_tracker/93955634294_RESUME (3).doc', NULL, NULL, '2021-03-25', 0, '', '3', '8', '2021-03-29', 156000.00, '', '6', '2021-03-30', '1', '13k ctc and for ramesh team', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-25 10:47:45', 7, '2021-03-27 04:31:47', 0, NULL, 1),
(4037, 's.vignesh', '4', '7871387689', '7708200154', 'vigneshracer37@gmail.com', '2000-12-19', 20, '1', '2', 'shankar', 'officeboy', 15000.00, 0, 10000.00, 14000.00, 'chennai', 'chennai', '2103250005', '', '2', 'upload_files/candidate_tracker/43777623756_vignesg 1.pdf', NULL, NULL, '2021-03-25', 0, 'p1061', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Not at all speaking', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 10:56:38', 1, '2021-03-25 01:34:24', 0, NULL, 1),
(4038, 'Ruban c v', '22', '8754217107', '7358167354', 'rubancv25@gmail.com', '1997-11-28', 23, '2', '2', 'Chitra R.', 'S1,ShriAdinathcomplex,camproad,chennai-600073', 230000.00, 1, 230000.00, 300000.00, 'C11,turkey street,block17,neyveli-607801', 'S1,shriadinathcomplex,camproad,chennai73', '2103250006', '1', '2', 'upload_files/candidate_tracker/88096233391_Ruban_dig.Associate_AmazonDA-1.pdf', NULL, NULL, '2021-03-27', 30, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate not suitable for our preferred role.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-25 11:02:11', 7, '2021-03-27 03:16:49', 0, NULL, 1),
(4039, 'babu a', '5', '9551542834', '', 'babuujockeyy06@gamil.com', '1985-07-08', 35, '2', '2', 'none', 'none', 18000.00, 0, 18000.00, 18000.00, 'chennai', 'chennai', '2103250007', '3', '2', 'upload_files/candidate_tracker/24554987663_Adobe Scan Mar 11, 2021.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'he has sales exp but not relevant and will not suite for our process, little bit slow.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 11:51:55', 1, '2021-03-25 11:56:54', 0, NULL, 1),
(4040, 'M.Sheeba', '4', '9566041758', '', 'sheebammu8@gmail.com', '1999-12-18', 21, '3', '2', 'R.Munuswamy', 'Daily wages', 15000.00, 1, 0.00, 10000.00, 'No.78,Thiruvalluvar street,pammal,chennai-600075', 'No.78,Thiruvalluvar street,pammal,chennai-600075', '2103250008', '', '1', 'upload_files/candidate_tracker/9282908205_sheeba new.cv.docx', NULL, NULL, '2021-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 11:54:46', 1, '2021-03-25 12:14:08', 0, NULL, 1),
(4041, 'M priya', '4', '6380638656', '7550112908', 'kanniyappanpriya9@gmail.com', '2000-01-12', 21, '3', '2', 'R muthu', 'Daily wages', 15000.00, 2, 0.00, 10000.00, 'Pallavaram', 'Chennai', '2103250009', '', '1', 'upload_files/candidate_tracker/13642453540_DHANALAKSHME Resume.docx', NULL, NULL, '2021-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 11:55:17', 1, '2021-03-25 12:07:58', 0, NULL, 1),
(4042, 'Anand Kumar', '5', '9962446244', '9884408007', 'anandkumar.neelamegan@gmail.com', '1988-11-06', 32, '2', '2', 'NEELAMEGAN k', 'Retired', 25.00, 2, 25.00, 32.00, 'Chennai', 'Chennai', '2103250010', '16', '2', 'upload_files/candidate_tracker/90841196521_anandkumar resume.docx', NULL, NULL, '2021-03-25', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very slow and will not suite for our process and will not do calling.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 01:16:48', 1, '2021-03-25 01:23:14', 0, NULL, 1),
(4043, 'R.priya', '21', '7550208453', '9791196839', 'priyaezhilan00@gmail.com', '1996-11-05', 24, '3', '2', 'Saranya', 'Pharmacy', 36000.00, 1, 10000.00, 12000.00, 'Gingee', 'Arumbakkam', '2103250011', '', '2', 'upload_files/candidate_tracker/16712324901_RESUME priya.pdf', NULL, NULL, '2021-03-25', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'looking for non voice', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-25 01:38:38', 1, '2021-03-25 01:53:23', 0, NULL, 1),
(4044, 'Suresh R', '28', '6382356233', '9843739535', 'Sureshmba2018@gmail.com', '1996-03-11', 25, '2', '2', 'Radhakrishnan', 'Business', 30000.00, 1, 0.00, 15000.00, 'Dharmauru', 'Chennai', '2103250012', '1', '1', 'upload_files/candidate_tracker/36286002745_Copy of SURESH R.docx', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,will not fit much for our role', '3', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-25 04:27:19', 1, '2021-03-25 04:38:07', 0, NULL, 1),
(4045, '', '0', '9176016430', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103250013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-25 06:23:28', 0, NULL, 0, NULL, 1),
(4046, 'V Sangeetha', '23', '9791096169', '7448956613', 'vjsangithvjsangith5018@gmail.com', '1998-05-21', 22, '2', '2', 'K Vijayakumar V Vasanthi', 'Painting Contractor', 15000.00, 1, 0.00, 15000.00, 'Chennai villivakam', 'Chennai villivakam', '2103250014', '1', '1', 'upload_files/candidate_tracker/83832172077_Sangith Resume.pdf', NULL, NULL, '2021-03-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-25 06:33:11', 1, '2021-03-27 04:31:05', 0, NULL, 1),
(4047, 'taanusree k g', '22', '8754457790', '9080088056', 'tanusreekarthikeyan@gmail.com', '2000-08-03', 20, '2', '2', 'k karthikeyan', 'scientific officer', 90000.00, 1, 0.00, 27000.00, 'baby nagar velachery', 'velachery', '2103250015', '1', '1', 'upload_files/candidate_tracker/53529348453_resume (3).pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High CTC Exp,Sustainability Doubt', '2', '2', '0', '1', '1', '0', '2', '2021-03-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-25 08:41:46', 1, '2021-03-28 06:37:09', 0, NULL, 1),
(4048, 'Jemima wahar', '11', '8056474634', '9003200434', 'Jemima98wahar@gmail.com', '1998-05-02', 22, '2', '2', 'Nabeel Haroon', 'Hr Recruiter', 55000.00, 1, 25000.00, 25000.00, 'Chennai', 'Chennai', '2103250016', '1', '2', 'upload_files/candidate_tracker/66539543312_Resumod-undefined-01-12-2020-12_27.pdf', NULL, NULL, '2021-03-26', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 6m exp but no knowledge and exp is 25k. will not suite for our process.', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-25 09:26:25', 1, '2021-03-25 09:36:12', 0, NULL, 1),
(4049, '', '0', '9884860269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103260001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-26 10:08:25', 0, NULL, 0, NULL, 1),
(4050, 'Mahendran', '17', '9344241793', '9600817957', 'gg.mahendran@gmail.com', '1991-04-16', 29, '2', '1', 'Sangeetha', 'House wife', 15000.00, 0, 35000.00, 32000.00, 'Chennai', 'Chennai', '2103260002', '16', '2', 'upload_files/candidate_tracker/74901142142_Mahendran CV.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very poor lang, will not suite for our process', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 10:09:27', 7, '2021-03-26 11:35:22', 0, NULL, 1),
(4051, 'Gowri V', '4', '7358322875', '9952932893', 'gowrisasi1999@gmail.com', '1999-08-29', 21, '2', '2', 'N.veeraragavan', 'Carpenter', 11000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2103260003', '1', '1', 'upload_files/candidate_tracker/60696736999_gowri.v pdf.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'well prepared script for Interview alone, no practical knowledge, stammering while Speaking', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-26 10:19:58', 7, '2021-03-26 11:34:49', 0, NULL, 1),
(4052, 'Aravind s', '6', '7299392823', '', 'arvind.marshal96@gmail.com', '1996-09-27', 24, '2', '2', 'M.R.SURESH', 'UIIC', 10000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2103260004', '1', '1', 'upload_files/candidate_tracker/37836604004_res-arvindmarshal.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'prefer Backed process. will not suite for our process. will not sustain. worked in insurance but doesnt know any terms', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-26 11:11:40', 1, '2021-03-26 11:15:31', 0, NULL, 1),
(4053, 'Bennith Immanuel', '6', '8939554211', '', 'Bennithimmanuel06@gmail.com', '1999-02-06', 22, '2', '2', 'Muniraj.G', 'Welder', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2103260005', '1', '1', 'upload_files/candidate_tracker/66871690435_Resume-converted.docx', NULL, NULL, '2021-03-26', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested for telecalling.. ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-26 11:14:44', 7, '2021-03-26 12:07:11', 0, NULL, 1),
(4054, 'R. Keerthana', '4', '7708270437', '8220401327', 'Keerthiravi23031999@gmail.com', '1999-03-27', 21, '2', '2', 'P. Ravi', 'Catering service', 10000.00, 1, 0.00, 15000.00, '3/351 menak nagar , tirur post tiruvallur District', '3/351 menak nagar, tirur post tiruvallur District', '2103260006', '1', '1', 'upload_files/candidate_tracker/41736574157_KEERTHANA-converted.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite fro sales process, from thiruvallur. no sales skill.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-26 11:19:01', 7, '2021-03-26 12:08:32', 0, NULL, 1),
(4055, 'Ragavan s', '4', '8667082607', '9751347107', 'ragavsalya78@gmail.com', '1996-05-22', 24, '2', '2', 'Sundharampillai.R', 'Farmer', 40000.00, 1, 10000.00, 12000.00, 'Perambalur', 'Chennai', '2103260007', '1', '2', 'upload_files/candidate_tracker/27414416361_Ragavan_Resume– 01.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'left before 2nd round interview.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-26 11:22:31', 1, '2021-03-26 11:27:59', 0, NULL, 1),
(4056, 'Karthiga', '4', '6382176893', '8248711461', 'karthigakarthi178@gmail.com', '1998-11-30', 22, '2', '2', 'Kashinathan', 'Self employe', 20000.00, 1, 0.00, 15000.00, 'Pudukkottai District', 'Chennai', '2103260008', '16', '1', 'upload_files/candidate_tracker/39768973717_k.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling. fresher.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:01:34', 7, '2021-03-26 02:41:43', 0, NULL, 1),
(4057, 'j lavaniya', '13', '7092173419', '', 'lavan4749@gmail.com', '1999-11-21', 21, '2', '2', 'jaganathan', 'driver', 12000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2103260009', '1', '1', 'upload_files/candidate_tracker/24553070946_Lavaniya.docx', NULL, NULL, '2021-03-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No response from this candidate.', '2', '2', '', '1', '3', '', '2', '2021-03-29', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-26 12:05:38', 8, '2021-03-26 05:47:15', 0, NULL, 1),
(4058, '', '0', '8939266853', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103260010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-26 12:10:00', 0, NULL, 0, NULL, 1),
(4059, 'Gayathri Gopal', '4', '8939266823', '', 'gayathri5vivek8@gmail.com', '1997-12-05', 23, '2', '2', 'Gopal krishnan', 'Self empolyee', 20000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2103260011', '16', '1', 'upload_files/candidate_tracker/67282772664_Resume_Gayathri.docb.docx', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, will not suite for this profile.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:18:08', 1, '2021-03-26 12:22:15', 0, NULL, 1),
(4060, 'Aishwarya kannan', '4', '9840760812', '', 'aishwaryakannan2606@gmail.com', '2001-06-26', 19, '1', '2', 'Lavanya.K', 'Accountant', 10000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2103260012', '', '1', 'upload_files/candidate_tracker/63566409403_1616738964356_single page.docx', NULL, NULL, '2021-03-26', 0, 'Priyanka', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'too long from vgp, vettuvakani', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:34:44', 1, '2021-03-26 12:49:25', 0, NULL, 1),
(4061, 'Mahalakshmi. G', '4', '7305352674', '', 'lakshmi0405maha@gmail.com', '2000-07-05', 20, '1', '2', 'Gopi. G', 'Machnic', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2103260013', '', '1', 'upload_files/candidate_tracker/31767342129_CV_2021-03-25-075502.pdf', NULL, NULL, '2021-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:36:06', 1, '2021-03-26 12:58:53', 0, NULL, 1),
(4062, 'Praveenkumar', '17', '9600150160', '9600150170', 'praveenkumar0617@gmail.com', '1991-09-07', 29, '2', '1', 'Divya lakshmi', 'House wife', 20000.00, 1, 28000.00, 35000.00, 'West k k nagar', 'West kk nagar', '2103260014', '16', '2', 'upload_files/candidate_tracker/91708078982_0001019020006010925_12172019_01062020 (1).PDF', NULL, NULL, '2021-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, switched company purely for salary and completely into banking no insurance exp. ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:36:09', 1, '2021-03-26 01:13:45', 0, NULL, 1),
(4063, 'Arunkumar s', '4', '9080417180', '7824022497', 'arunalfredo46@gmail.com', '1999-09-02', 21, '1', '2', 'S lakshmi', 'House wife', 15000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2103260015', '', '1', 'upload_files/candidate_tracker/10610902159_arunkumarconverted.pdf', NULL, NULL, '2021-03-26', 0, 'Priyanka', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'language is not good. will not suite for process.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 12:36:18', 1, '2021-03-26 12:58:41', 0, NULL, 1),
(4064, 'G v suriya', '5', '9677011589', '9344258074', 'Vjsurya97@gmail.com', '1998-11-01', 0, '1', '2', 'G varshini', 'House wife', 50000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2103260016', '', '1', 'upload_files/candidate_tracker/22086391929_Resume.docx', NULL, NULL, '2021-03-26', 0, '55634', '3', '8', '2021-04-16', 321696.00, '', '2', '1970-01-01', '1', 'For Veben Team, With CTC - 3,21,696 Gross - 26808.', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 01:09:33', 7, '2021-04-09 05:18:35', 0, NULL, 1),
(4065, 'v ezhil kumar', '13', '9655750116', '', 'ezhilvelu.v@gmail.com', '1996-06-03', 24, '2', '2', 'v velu', 'weaver', 15000.00, 1, 0.00, 180000.00, 'vellore', 'chennai', '2103260017', '1', '1', 'upload_files/candidate_tracker/42013903920_@ Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-26 01:11:33', 7, '2021-03-29 06:00:20', 0, NULL, 1),
(4066, '', '0', '9841168921', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103260018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-26 01:15:18', 0, NULL, 0, NULL, 1),
(4067, 'tripti mudliyar', '17', '9150821202', '7358307050', 'tript.mudliyar@gmail.com', '1997-02-12', 24, '2', '2', 'sujata', 'house wife', 40000.00, 0, 34000.00, 47000.00, 'kolathur', 'pammal', '2103260019', '16', '2', 'upload_files/candidate_tracker/94972866415_Tripti Updated resume 2.pdf', NULL, NULL, '2021-03-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for BDM, Sustainability doubt and into different field', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-26 02:45:23', 1, '2021-03-26 02:54:18', 0, NULL, 1),
(4068, 'Vimal Singh', '13', '7200775883', '', 'vimalsingh16294@gmail.com', '1994-02-16', 27, '2', '2', 'RAJENDRAN', 'SHOP', 11000.00, 2, 0.00, 15000.00, 'Nagercoil', 'Chennai', '2103260020', '1', '1', 'upload_files/candidate_tracker/40474049539_vimalsinghupdated (2)-converted.pdf', NULL, NULL, '2021-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-26 03:08:33', 1, '2021-03-26 03:13:45', 0, NULL, 1),
(4069, 'Ketzia R', '21', '7305913083', '7871287533', 'ketziah.kj@gmail.com', '1998-03-17', 23, '2', '2', 'Rajendran Antony D', 'Territory Sales Institution', 200000.00, 1, 20000.00, 21000.00, 'Chennai', 'Chennai', '2103260021', '1', '2', 'upload_files/candidate_tracker/84548535619_Ketzia R Resume Update-converted.docx', NULL, NULL, '2021-03-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-26 03:08:43', 1, '2021-03-26 03:17:45', 0, NULL, 1),
(4070, '', '0', '9884993480', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103260022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-26 11:10:39', 0, NULL, 0, NULL, 1),
(4071, 'santhosh kumar', '6', '8754930483', '', 'santhoshvs0411@gmail.com', '1995-11-04', 25, '2', '1', 'selvam', 'tneb', 12000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2103270001', '2', '1', 'upload_files/candidate_tracker/49765981252_New doc Mar 1, 2021 2.09 PM.pdf', NULL, NULL, '2021-03-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling and sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-27 10:39:33', 1, '2021-03-27 10:42:08', 0, NULL, 1),
(4072, 'KUNIPOGU JASHUVA', '17', '8148363237', '', 'rjjashuva@gmail.com', '1993-07-05', 27, '2', '1', 'Rebakkal', 'Insurance sales advisor', 22000.00, 0, 22000.00, 22000.00, 'Ambattur', 'PALLAVARAM', '2103270002', '1', '2', 'upload_files/candidate_tracker/29740882572_BIO DATA RESUME.docx', NULL, NULL, '2021-03-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for this profile, ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-27 10:43:16', 1, '2021-03-27 10:51:43', 0, NULL, 1),
(4073, 'Ajith Kumar.M', '6', '9962623046', '', 'ajithchan15@gmail.com', '1996-11-27', 24, '2', '2', 'Ranjith Kumar', 'Xerox shop', 35000.00, 1, 15000.00, 18000.00, 'No: 1, manjakollai street, aminjikarai, Chennai', 'No: 1, Manjakollai Street, Aminjikarai, Chennai', '2103270003', '1', '2', 'upload_files/candidate_tracker/95768075352_Ajith kuma .M.docx', NULL, NULL, '2021-03-27', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'Not intrested', '5', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-27 10:51:03', 1, '2021-03-27 11:00:54', 0, NULL, 1),
(4074, '', '0', '8608135813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103270004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-27 10:54:52', 0, NULL, 0, NULL, 1),
(4075, 'SRINIVASAN M', '4', '8072740438', '9884685751', 'SRINISEENU940@GMAIL.COM', '1998-06-17', 22, '2', '2', 'MURUGAN N', 'AUTO DRIVER', 14000.00, 1, 10000.00, 13000.00, 'VIRUGAMBAKKAM', 'VIRUGAMBAKKAM', '2103270005', '1', '1', 'upload_files/candidate_tracker/28968056917_Srini CV F-converted-converted.docx', NULL, NULL, '2021-03-27', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication skill low', '1', '1', '', '1', '3', '', '1', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-27 10:55:24', 50, '2021-03-27 01:14:14', 0, NULL, 1),
(4076, 'M. Sathish', '4', '7338992812', '7871164120', 'Sathish220rock@gmail.com', '2000-04-12', 20, '2', '2', 'E. Muthiyal', 'Kooli', 15000.00, 1, 11500.00, 13500.00, 'Poonamalle', 'Poonamalle', '2103270006', '1', '2', 'upload_files/candidate_tracker/19863432391_m. sathish.docx', NULL, NULL, '2021-03-27', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for tele sales', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-27 10:56:03', 50, '2021-03-27 01:13:23', 0, NULL, 1),
(4077, '', '0', '9840329032', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103270007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-27 11:24:13', 0, NULL, 0, NULL, 1),
(4078, 'Yuvaraj P', '6', '6382560843', '9087848954', 'yuvar1260@gmail.com', '1999-06-07', 21, '2', '2', 'Purushothaman R', 'Tailor', 10000.00, 2, 11000.00, 15000.00, 'Chennai', 'Chennai', '2103270008', '1', '2', 'upload_files/candidate_tracker/2729003599_Yuva Resume.pdf', NULL, NULL, '2021-03-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no clarity in speech, will not suite for this profile.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-27 12:29:18', 1, '2021-03-27 12:38:07', 0, NULL, 1),
(4079, 'rajesh e', '6', '9940217974', '9176010836', 'rajeshelumalai088@gmail.com', '1988-06-07', 32, '2', '2', 'maharani e', 'housewife', 10000.00, 3, 16000.00, 17000.00, 'chennai', 'chennai', '2103270009', '1', '2', 'upload_files/candidate_tracker/73320908223_rajesh.pdf', NULL, NULL, '2021-03-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 2yr exp in collection exp sal is 17k ', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-27 12:29:31', 1, '2021-03-27 01:27:18', 0, NULL, 1),
(4080, '', '0', '8667868883', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103270010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-27 02:13:44', 0, NULL, 0, NULL, 1),
(4081, 'Vijayaraj M', '23', '9789983096', '7397465234', 'vijaymaharaja6@gmail.com', '1991-04-05', 29, '2', '1', 'Subha Vijayaraj', 'Web Designer', 20000.00, 3, 15000.00, 18000.00, 'Chennai', 'Chennai', '2103270011', '1', '2', 'upload_files/candidate_tracker/59088311407_resume_vj01.doc.docx', NULL, NULL, '2021-03-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'He is not good in basic things.', '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-27 04:18:06', 1, '2021-03-27 04:23:55', 0, NULL, 1),
(4082, 'j gowthaman', '23', '8778808002', '8428781153', 'sjgowthaman04@gmail.com', '1998-08-04', 22, '2', '2', 'vs jawahar', 'agriculture', 25000.00, 1, 10000.00, 15000.00, 'chennai', 'chennai', '2103270012', '1', '2', 'upload_files/candidate_tracker/55593020330_ReSUME.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for the Agreement Fresher exp 12-15K', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-27 04:37:47', 1, '2021-03-27 07:13:37', 0, NULL, 1),
(4083, 'Suganya K', '28', '8056383017', '9965272069', 'sugikathirvel@gmail.com', '1992-12-11', 28, '2', '2', 'Kathirvel S', 'Sales man', 5000.00, 2, 0.00, 23000.00, 'Kumbakonam', 'Chennai', '2103270013', '1', '2', 'upload_files/candidate_tracker/52316695437_Suganya Kathirvel_Resume.docx', NULL, NULL, '2021-03-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-27 04:53:49', 1, '2021-03-27 05:03:06', 0, NULL, 1),
(4084, 'Mohamed Sidiq A', '13', '9791970076', '9080509336', 'siddiquen87@gmail.com', '1996-02-23', 25, '2', '2', 'Allaudeen', 'Nil', 10000.00, 1, 0.00, 10000.00, 'Tirunelveli', 'Chennai', '2103270014', '1', '1', 'upload_files/candidate_tracker/38290587057_Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Task Partially Completed. He Can Learn Quickly. We Can Consider As A Intern For 1st 3 Months. After That 2.3 Months Should Be Work Here. Not open with AGreement and the Focus on the pay also', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-27 04:54:38', 1, '2021-03-27 05:01:03', 0, NULL, 1),
(4085, '', '0', '8143179809', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103270015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-27 05:16:34', 0, NULL, 0, NULL, 1),
(4086, 'Mohamed Ashik Ali', '23', '7904124361', '8870374502', '1ashikmohamed@gmail.com', '1998-12-03', 22, '2', '2', 'Abdul Azeez', 'Daily wager', 12000.00, 1, 0.00, 15000.00, 'AVADI', 'AVADI', '2103280001', '1', '1', 'upload_files/candidate_tracker/14493698687_MyResume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He Committed to come for 2nd level interview ,but no show', '2', '1', '0', '1', '1', '0', '2', '2021-03-30', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-28 11:14:36', 1, '2021-03-28 11:32:16', 0, NULL, 1),
(4087, 'YASWANTH RAJ y', '22', '8825817141', '7092717563', 'yaswanthrajyyr@gmail.com', '1999-02-11', 22, '2', '2', 'Youvaraj S', 'Business', 300000.00, 1, 151000.00, 175000.00, 'Karambakkam, Porur, Chennai - 600116', 'Karambakkam, Porur, Chennai - 600116', '2103280002', '1', '2', 'upload_files/candidate_tracker/33868025013_CV_YASWANTH RAJ.docx', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication will not much fit for our Digital Marketing', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-28 11:14:36', 1, '2021-03-28 11:29:25', 0, NULL, 1),
(4088, 'Afnan Khan', '23', '7299494971', '9940322974', 'afnankhancr7@gmail.com', '1998-04-28', 22, '2', '2', 'suraiya banu', 'house wife', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chenn', '2103280003', '1', '1', 'upload_files/candidate_tracker/57899989384_AFNAN KHAN resume .pdf', NULL, NULL, '2021-03-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Scheduled for 2nd round of Interview, but left without attending the interview ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-28 01:48:19', 7, '2021-03-31 10:07:07', 0, NULL, 1),
(4089, 'Keerthik Perumal', '23', '8778442042', '', 'keerthikperumal1@gmail.com', '1999-06-04', 21, '2', '2', 'Perumal V', 'Cook', 10000.00, 1, 0.00, 325000.00, 'Chennai', 'Chennai', '2103280004', '1', '1', 'upload_files/candidate_tracker/8645245505_Keerthik Perumal\'s Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for the agreement,exp high pay', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-28 03:51:34', 1, '2021-03-28 03:55:30', 0, NULL, 1),
(4090, '', '0', '9940880687', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 09:58:27', 0, NULL, 0, NULL, 1),
(4091, 'dilli babu k', '5', '6380858241', '', 'dillikdilli@gmail.com', '1992-07-04', 28, '2', '2', 'none', 'none', 18.00, 0, 22000.00, 23000.00, 'chennai', 'chennai', '2103290002', '3', '2', 'upload_files/candidate_tracker/59609115500_resume after edit.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for RM profile,', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 10:02:37', 1, '2021-03-29 10:08:08', 0, NULL, 1),
(4092, 'nandhinis', '4', '9790613615', '9445489834', 'nandhini1526@gmail.com', '1995-07-15', 25, '2', '2', 'sampath', 'retired', 17000.00, 2, 14200.00, 16000.00, 'yadhaval street tirusulam', 'chennai', '2103290003', '16', '2', 'upload_files/candidate_tracker/16851266708_NANDHINI 29-03-2021.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for CRM, looking for acc job, will not sustain.expt sal is 15k.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 10:10:07', 1, '2021-03-29 11:16:07', 0, NULL, 1),
(4093, 'Satheesh kumar', '21', '6383317849', '9841741180', 'Satheesh_priyam@yahoo.co.in', '1982-07-13', 38, '2', '1', 'Sumathi', 'House wife', 25000.00, 1, 45000.00, 25000.00, '17, Annai sathya Nagar, Aynavaram, Chennai -23', 'Permanent address is my current location', '2103290004', '1', '2', 'upload_files/candidate_tracker/5215259327_Satheesh - Profile - Admin sep 20(1).docx', NULL, NULL, '2021-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for collection exe. previous package is 45k but not interested in sales.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 10:42:07', 7, '2021-03-29 03:51:00', 0, NULL, 1),
(4094, 'tamizhpriyan', '17', '7530049841', '7305936824', 'tamiltamizh16@gmail.com', '1998-05-16', 22, '2', '2', 'aruldass', 'farmer', 20000.00, 1, 20000.00, 26000.00, 'no. joy nagar chrompet', 'chennai', '2103290005', '16', '2', 'upload_files/candidate_tracker/63671989661_tamil.docx.pdf', NULL, NULL, '2021-03-29', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'voice and modulation is not good, will not suite for BDM, no clarity in speech.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 11:15:00', 1, '2021-03-29 11:55:31', 0, NULL, 1),
(4095, 'KANISH RAJIAH D', '4', '9585831392', '8122101655', 'kanishrajiah88@gmail.com', '1998-08-08', 22, '2', '2', 'Durai raju', 'Building construction', 25000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Kandhanchavadi', '2103290006', '1', '1', 'upload_files/candidate_tracker/52121559192_Kanish resume.docx', NULL, NULL, '2021-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very slow and Planing to go canada asap, ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 11:24:05', 7, '2021-03-29 03:52:00', 0, NULL, 1),
(4096, 'M. Praisoodan', '4', '9942126912', '6369038652', 'praveen12prai@gmail.com', '1997-09-12', 23, '2', '2', 'P. Manimaran', 'Retd conductor', 13000.00, 1, 0.00, 14000.00, 'Trichy', 'Poonamalee', '2103290007', '1', '1', 'upload_files/candidate_tracker/84559420923_1613362154119Resume_Praisoodan.docx', NULL, NULL, '2021-03-29', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability issue.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 11:50:25', 8, '2021-03-29 04:32:56', 0, NULL, 1),
(4097, 'I.madhumitha', '4', '6380682929', '9786876239', 'madhuilan12@gmail.com', '1998-07-01', 22, '2', '2', 'Mother', 'Security guard', 12000.00, 2, 0.00, 15000.00, 'Trichy', 'Chennai', '2103290008', '1', '1', 'upload_files/candidate_tracker/86413136611_MADHUMITHAA%20I%20New.docx', NULL, NULL, '2021-03-29', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'two person coming for a interview but one person only selected but the selected person also not coming for joining ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 11:55:43', 8, '2021-03-29 04:38:27', 0, NULL, 1),
(4098, 'Pavithra.V', '11', '7358287757', '7550007757', 'pavithravenkateshvg@gmail.com', '1998-09-21', 22, '2', '2', 'Venkatesh', 'Mini door auto driver', 20000.00, 1, 0.00, 15000.00, 'No.23 Tks SHANTHA AVENUE ELLAIAMMAN kovil tvt ch19', 'Chennai l', '2103290009', '1', '1', 'upload_files/candidate_tracker/323907365_Pavithra resume(1).pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'planning to do MBA in part time. she is not very sure about it and the profile.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-29 12:02:18', 50, '2021-03-29 12:11:11', 0, NULL, 1),
(4099, 'Mohamed navas sherif', '6', '9042042829', '8124271988', 'nsherif286@gmail.com', '1997-06-20', 23, '2', '2', 'Abdul Rasheed', 'steel labour', 25000.00, 1, 0.00, 16000.00, '15 111, , UC Colony, kodungaiyur Chennai 600 118', '15 111, , UC Colony, kodungaiyur Chennai 600 118', '2103290010', '1', '2', 'upload_files/candidate_tracker/30254858085_Navas Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NI in bond', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-29 12:07:53', 8, '2021-03-29 04:00:54', 0, NULL, 1),
(4100, '', '0', '9042042819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 12:20:04', 0, NULL, 0, NULL, 1),
(4101, 'prasanna s', '28', '9788188587', '', 'prasannaps1814@gmail.com', '2000-06-18', 20, '2', '2', 'suresh m', 'civil engin', 30000.00, 1, 0.00, 15000.00, 'coimbatore', 'coimbatore', '2103290012', '1', '1', 'upload_files/candidate_tracker/93442967411_RESUME.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for the agreement,have a plan to go oversees for higher education', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 12:21:16', 50, '2021-03-31 12:49:17', 0, NULL, 1),
(4102, 'nagaraj', '4', '8899776544', '', 'rajalakshminandhini07@gmail.com', '2006-03-29', 15, '1', '1', 'murugan', 'business', 25000.00, 2, 25000.00, 26000.00, 'avadi', 'manali', '2103290013', '', '2', 'upload_files/candidate_tracker/44834824359_tamil.docx.pdf', NULL, NULL, '2021-03-30', 0, 'jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 12:24:36', 1, '2021-03-29 12:27:35', 0, NULL, 1),
(4103, 'SUBBIAH M', '11', '9092932449', '9791116989', 'suryamuthu854@gmail.com', '1998-02-24', 23, '3', '2', 'MuthuVeerappan', 'Superviser in engineering consent', 25000.00, 0, 0.00, 15000.00, 'No:197, 1st floor, tnhb, icf colony, Ambattur', 'No:197, 1st Floor, Tnhb, Icf Colony, Ambattur', '2103290014', '', '1', 'upload_files/candidate_tracker/36281316464_resume update 12-03-2021.pdf', NULL, NULL, '2021-03-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 12:47:46', 1, '2021-03-29 12:59:01', 0, NULL, 1),
(4104, 'BALAJI. G', '11', '9940065779', '', 'ji2710bala@gmail.com', '1997-10-27', 23, '3', '2', 'Govindaraj', 'Medical shop employee', 15000.00, 1, 0.00, 15000.00, 'C62 1st main road Annanagar ch-102', 'Chennai', '2103290015', '', '1', 'upload_files/candidate_tracker/60793107259_OTDD CT1 IMP.docx', NULL, NULL, '2021-03-29', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'WILL NOT SUITE FOR HR', '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 12:49:54', 1, '2021-03-29 01:05:29', 0, NULL, 1),
(4105, 'Dilli babu', '6', '9787943662', '', 'dillivasu0401@gmail.com', '1999-01-04', 22, '2', '2', 'Vasu.k', 'Kolli', 20000.00, 2, 20000.00, 25000.00, 'No9 pavazhakara street karunguzhi', 'No9 pavazhakara street karunguzhi', '2103290016', '16', '2', 'upload_files/candidate_tracker/12492426202_dilli_babu_resume_2021.docx', NULL, NULL, '2021-03-29', 2, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long from mathuranthagam', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-29 12:56:57', 8, '2021-03-29 04:34:09', 0, NULL, 1),
(4106, 'Ravi Raghavan', '6', '8056191437', '', 'raviraghavan.v@gmail.com', '1995-07-06', 25, '2', '2', 'Parent', 'Daily Wager', 10000.00, 1, 12000.00, 18000.00, 'Chennai', 'Chennai', '2103290017', '1', '2', 'upload_files/candidate_tracker/79615271892_RAVI RESUME.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not join.', '5', '2', '', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-29 12:58:53', 50, '2021-03-30 11:03:08', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4107, 'N.PERIYASAMY', '20', '9790629203', '8248380275', 'periyasamynadesan98@gmail.com', '1998-06-04', 22, '2', '2', 'M.NADESAN', 'Chennai', 15000.00, 1, 11500.00, 15000.00, 'Kallakurichi', 'Chennai', '2103290018', '1', '2', 'upload_files/candidate_tracker/47508284306_Resume.pdf', NULL, NULL, '2021-03-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for us. ', '5', '1', '0', '1', '1', '0', '2', '2021-04-05', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 01:17:52', 1, '2021-03-29 01:28:13', 0, NULL, 1),
(4108, 'Sathish kumar v', '6', '6383464747', '1111111111', 'sathishkani1329@gmail', '1998-07-13', 22, '2', '2', 'Parents', '000', 30000.00, 2, 0.00, 13000.00, 'NO 16 DEMELLOWS ROAD PATTALAM CHENNAI 600012', '000', '2103290019', '1', '1', 'upload_files/candidate_tracker/25813610108_RESUME 1.docx', NULL, NULL, '2021-03-29', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'left before interview', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 01:20:59', 1, '2021-03-29 01:34:05', 0, NULL, 1),
(4109, '', '0', '6383464746', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 01:36:04', 0, NULL, 0, NULL, 1),
(4110, 'mohammed aqeel a k', '22', '9884244708', '', 'mohammedaqeel005@gmail.com', '1997-07-16', 23, '2', '2', 'khader meeran', 'self occupied', 50000.00, 3, 0.00, 25000.00, 'egmore chennai', 'egmore chennai', '2103290021', '1', '1', 'upload_files/candidate_tracker/65916873231_aqeel resume original MIM.docx', NULL, NULL, '2021-03-31', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'The candidate wonxquott sustain for Long-term', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 01:41:10', 1, '2021-03-29 11:07:52', 0, NULL, 1),
(4111, '', '0', '7876543219', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 02:28:08', 0, NULL, 0, NULL, 1),
(4112, '', '0', '7865432189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 02:54:24', 0, NULL, 0, NULL, 1),
(4113, 'Anupriyankha. S. N', '7', '9361249204', '6379306912', 'pittupapa10@gmail.com', '2001-05-20', 19, '2', '1', 'Nagaraj. M', 'Late', 35000.00, 0, 0.00, 17000.00, 'Triplicane', 'Triplicane', '2103290024', '1', '2', 'upload_files/candidate_tracker/89201257476_Priyankha Resume-30.03.2021.docx', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '6', '2021-11-24', '2', 'not turned up', '7', '2', '', '1', '1', '', '2', '2021-03-31', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-29 04:19:14', 7, '2021-03-30 06:06:18', 0, NULL, 1),
(4114, '', '0', '7358721232', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103290025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-29 05:03:42', 0, NULL, 0, NULL, 1),
(4115, 'aravind', '22', '9944281775', '', 'maravind154@gmail.com', '1995-07-14', 25, '2', '1', 'murugan', 'farmer', 500.00, 1, 0.00, 20000.00, 'dharmapuri', 'perungudi', '2103290026', '1', '1', 'upload_files/candidate_tracker/32145718438_arvin cv DM.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for SA,will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', '2021-03-31', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 06:53:34', 1, '2021-03-29 06:57:00', 0, NULL, 1),
(4116, 'Jaya suriya', '23', '9566247324', '', 'Jayasuriya223@gmail.com', '1998-01-02', 23, '2', '2', 'Suseela', 'Stenographer', 24.00, 1, 0.00, 15000.00, 'Samayapurathu amman koil Street choolaimedu', 'Samayapurathu Amman Koil Street Choolaimedu', '2103290027', '1', '1', 'upload_files/candidate_tracker/39450886367_jaya resume.docx', NULL, NULL, '2021-03-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 07:40:34', 7, '2021-03-31 04:07:26', 0, NULL, 1),
(4117, 'Aravindhan m', '3', '8778054488', '', 'tailaravind07@gmail.com', '1998-11-25', 22, '2', '2', 'Mani', 'Nil', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2103290028', '1', '1', 'upload_files/candidate_tracker/29117391599_Aravind 2021.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much knowledge in UI/UX ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-29 10:47:44', 50, '2021-04-20 11:41:56', 0, NULL, 1),
(4118, 'V.Saraswathi', '7', '8189915298', '9514015900', 'hennarose5298@gmail.com', '1998-02-05', 23, '2', '2', 'Koteshwari', 'Mutual fund', 25000.00, 3, 10000.00, 17000.00, 'Royapuram', 'Royapuram', '2103300001', '1', '2', 'upload_files/candidate_tracker/10170012668_Hena Rose.doc', NULL, NULL, '2021-03-30', 15, '', '5', '35', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Telephonic Round Completed, not satisfied, Poor Communication and Industry Knowledge, ', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 09:27:09', 50, '2021-03-30 09:49:11', 0, NULL, 1),
(4119, 'sathish kumar.r', '23', '7358326363', '', 'sathishezik2508@gmail.com', '1998-08-25', 22, '2', '2', 'shanthi', 'house wife', 10000.00, 0, 0.00, 15000.00, 'tambaram', 'urapakkam', '2103300002', '1', '1', 'upload_files/candidate_tracker/77025290803_sathish resume.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open For The Service Agreement', '2', '2', '', '1', '1', '', '2', '2021-03-31', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 10:08:17', 60, '2021-03-30 02:31:51', 0, NULL, 1),
(4120, 'Nandha Kumar', '23', '7867940511', '', 'nandharaju764@gmail.com', '1999-01-13', 22, '2', '2', 'Narayanan S', 'Court staff (Judicial department)', 25000.00, 1, 15000.00, 25000.00, 'No:78 pillaiyar Kovil street, Thiruvallur.', 'No:78 Pillaiyar Kovil Street, Thiruvallur.', '2103300003', '1', '2', 'upload_files/candidate_tracker/55924139187_Nandha\'s Resume (1).pdf', NULL, NULL, '2021-04-01', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much suitable for UI UX Position, No exp in Javascript, No knowledge related to UX Design - Photoshop/Illustrator', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 10:40:24', 1, '2021-03-30 10:53:31', 0, NULL, 1),
(4121, '', '0', '9710976814', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 10:57:02', 0, NULL, 0, NULL, 1),
(4122, 'Santhosh kumar', '21', '9710978614', '', 'santhosh.221456@gmail.COM', '1995-05-22', 25, '2', '2', 'Selvam', 'Cpcl Employ', 25000.00, 0, 14000.00, 14000.00, 'Manali', 'Manali', '2103300005', '1', '2', 'upload_files/candidate_tracker/79159005043_santhosh resume482.pdf', NULL, NULL, '2021-03-30', 0, '', '3', '8', '2021-04-12', 151584.00, '', '6', '2021-04-13', '1', 'For Collection - 151584 With Gross - 12632,TH - 12000', '3', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 11:12:16', 7, '2021-04-11 03:50:55', 0, NULL, 1),
(4123, 'L Leo Joseph', '11', '9962723547', '', 'leojoseph40@gmail.com', '1995-08-21', 25, '2', '2', 'S. A Louis Xavier', 'Ex- Service men', 200000.00, 1, 0.00, 250000.00, 'Tambaram', 'Tambaram', '2103300006', '1', '1', 'upload_files/candidate_tracker/71541953889_LEO CV_2021.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expt is 25k but our Budget was 15k', '6', '1', '', '1', '1', '', '2', '2021-03-31', '2', '8', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:14:11', 50, '2021-03-30 11:37:34', 0, NULL, 1),
(4124, 'sarathy G', '4', '7397442721', '9442811064', 'sarathygajendran160@gmail.com', '1998-04-30', 22, '2', '2', 'Gajendran S', 'BE Aeronautical', 15000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2103300007', '1', '1', 'upload_files/candidate_tracker/76223267979_Sarathy G Resume-1.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up. will not suite for crm. from mathuravoyal long distance too.', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:18:50', 50, '2021-03-30 11:55:23', 0, NULL, 1),
(4125, 'Akarsha V V', '4', '9442811064', '9042365801', 'akarshavinodh8@gmail.com', '1999-02-15', 22, '2', '2', 'Vimalarani P', 'SSLC', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'chennai', '2103300008', '1', '1', 'upload_files/candidate_tracker/32626575156_Akarsha V V Resume.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very childish and will not suite for our process, ', '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:21:14', 1, '2021-03-30 11:53:21', 0, NULL, 1),
(4126, 'abishek p', '5', '9791105850', '9790714780', 'johnabishek89@yahoo.com', '1996-04-19', 24, '2', '2', 'pounraj r', 'unemployed', 60000.00, 3, 23300.00, 35000.00, 'chennai', 'chennai', '2103300009', '1', '2', 'upload_files/candidate_tracker/29276759561_Resume-Abishek-P.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sal expt high', '5', '1', '', '1', '1', '', '2', '2021-03-31', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:23:53', 50, '2021-03-30 11:37:50', 0, NULL, 1),
(4127, '', '0', '9840885512', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 11:26:34', 0, NULL, 0, NULL, 1),
(4128, 'Karthick v', '22', '8072632921', '', 'karthickvenkat93366@gmail.com', '1993-11-01', 27, '2', '2', 'Venkatesan k', 'Driver', 15000.00, 2, 23000.00, 26000.00, 'uthiramerur', 'Medavakkam', '2103300011', '1', '2', 'upload_files/candidate_tracker/36752081354_Resume_Karthick.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suits for our Digital Marketing, No Communication not open for the Service Agreement\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 11:42:24', 50, '2021-03-30 11:55:00', 0, NULL, 1),
(4129, 'M. Monisha', '4', '7358247249', '9840304073', 'monishasuresh9999@gmail.com', '1999-09-02', 21, '2', '2', 'Parents', 'Nil', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Tambaram', '2103300012', '1', '1', 'upload_files/candidate_tracker/85009344999_New Doc 2021-03-30 12.04.52_1.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '1', '', '1', '1', '', '2', '2021-03-31', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 11:48:04', 7, '2021-03-30 06:06:48', 0, NULL, 1),
(4130, 'Pravya Neysa', '28', '9940082658', '9940826586', 'pravyaneysa06@yahoo.com', '1998-06-30', 22, '2', '2', 'Parent', 'Bussiness', 30000.00, 1, 0.00, 25000.00, 'Periyar street Aminjikarai', 'Periyar street Aminjikarai', '2103300013', '16', '2', 'upload_files/candidate_tracker/27524115573_pravya resume job.docx', NULL, NULL, '2021-03-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Profile Will Not Match For Data Analyst. Will Not Suite For CRM/BDM. No Understanding And Patience. ', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-30 11:57:43', 1, '2021-03-30 12:07:24', 0, NULL, 1),
(4131, 'John Revin I', '4', '9025949599', '9677263527', 'Johnrevin333@gmail.com', '2000-06-12', 20, '2', '2', 'Irudaya Rajan. P', 'Fitter', 15000.00, 1, 0.00, 15000.00, 'Chennai (Royapuram)', 'Chennai(Royapuram)', '2103300014', '1', '1', 'upload_files/candidate_tracker/41484848651_John revin-2.pdf', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for acc @ fin,. non voice', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 11:59:33', 7, '2021-03-30 06:03:35', 0, NULL, 1),
(4132, 'Mohanraj.D.k', '4', '8248498905', '', 'mohanrajdk13@gmail.com', '2000-05-13', 20, '2', '2', 'Dinakaran.d', 'Car driver', 20000.00, 1, 0.00, 15000.00, 'Chennai (Poonamallee)', 'Chennai (Poonamallee)', '2103300015', '1', '1', 'upload_files/candidate_tracker/51704312248_Dk resume.docx', NULL, NULL, '2021-03-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for acc xxamp fin. non voice', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 12:01:22', 7, '2021-03-30 06:04:48', 0, NULL, 1),
(4133, 'm. yuvaraj', '28', '7845338486', '9884904952', 'yuvarajyuvi058@gmail.com', '1994-03-05', 27, '2', '2', 'v. mohana sundaram', 'flour mill', 12000.00, 1, 20000.00, 18000.00, 'chennai', 'chennai', '2103300016', '1', '2', 'upload_files/candidate_tracker/89833476238_yuvaraj resume .docx', NULL, NULL, '2021-03-30', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'left before interview', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-30 12:04:44', 50, '2021-03-30 01:12:59', 0, NULL, 1),
(4134, 'M. Monisha', '4', '8358247249', '9840304073', 'Monishasuresh9999@gm', '1999-09-02', 21, '1', '2', 'Parents', 'Nil', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Tambaram', '2103300017', '', '1', 'upload_files/candidate_tracker/93343995519_New Doc 2021-03-30 12.04.52_1.pdf', NULL, NULL, '2021-03-30', 0, 'Jobs', '1', '8', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-30 12:11:29', 1, '2021-03-30 12:20:37', 8, '2021-03-30 04:27:56', 0),
(4135, '', '0', '9750829765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 12:14:09', 0, NULL, 0, NULL, 1),
(4136, 'Purusothaman', '4', '6379306912', '8681081084', 'purusothaman131199@gmail.com', '1999-11-13', 21, '2', '1', 'sekar.E', 'musician', 25000.00, 1, 0.00, 17000.00, 'triplicane', 'triplicane', '2103300019', '1', '2', 'upload_files/candidate_tracker/7017815623_Purusothaman Resume- 30.3.2021.docx', NULL, NULL, '2021-03-30', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm/re. not speaking up and not convincing.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-30 12:20:15', 7, '2021-03-30 06:05:37', 0, NULL, 1),
(4137, 'moghan kumar', '23', '8667817629', '8220305435', 'moghankumar0601@gmail.com', '1999-01-06', 22, '2', '2', 'annamalai', 'govt employee', 22000.00, 1, 0.00, 18000.00, 'tamilnadu', 'Vellore', '2103300020', '1', '1', 'upload_files/candidate_tracker/18695854669_Moghankumar_Resume.pdf', NULL, NULL, '2021-04-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 03:42:20', 1, '2021-03-30 03:52:07', 0, NULL, 1),
(4138, 'SANKAR', '23', '6380268869', '', 'sankarsundaram19@gmail.com', '1998-10-19', 22, '2', '2', 'Somasundaram', 'Farmer', 13000.00, 1, 0.00, 12000.00, 'Tiruchirappalli', 'Chennai', '2103300021', '1', '1', 'upload_files/candidate_tracker/94019748346_Resume_Sankar 111_Format1.pdf', NULL, NULL, '2021-03-31', 0, '', '3', '59', '2021-04-01', 9000.00, '', '', '1970-01-01', '2', 'Selected as an intern for 3 months, after intern will continue with employment and the service agreement for 3.6 yrs. Salary will be confirmed after 3 months of internship', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 03:56:04', 50, '2021-03-31 12:25:46', 0, NULL, 1),
(4139, '', '0', '8220305435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 03:57:44', 0, NULL, 0, NULL, 1),
(4140, '', '0', '9087907657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 04:27:03', 0, NULL, 0, NULL, 1),
(4141, '', '0', '9787383881', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103300024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-30 05:42:03', 0, NULL, 0, NULL, 1),
(4142, 'Ashok paramasivam B', '14', '8526118992', '', 'ashokcva66@gmail.com', '1997-09-27', 23, '2', '2', 'Balaji P', '.', 25000.00, 1, 0.00, 50000.00, 'Chennai', 'Chennai', '2103300025', '1', '1', 'upload_files/candidate_tracker/64204339720_Ashok\'s Resume.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement and the expected pay is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 05:42:30', 1, '2021-03-30 05:45:58', 0, NULL, 1),
(4143, 'Mohamed Salman', '13', '9840200136', '', 'salmanwins@gmail.com', '2000-10-30', 20, '2', '2', 'Abdul Rahman', 'Technican', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2103300026', '1', '1', 'upload_files/candidate_tracker/92468646810_5_6269022917661557112 (2).pdf', NULL, NULL, '2021-03-31', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response From This Candidate.', '2', '2', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 05:46:11', 1, '2021-03-31 09:10:46', 0, NULL, 1),
(4144, 'Dinesh', '23', '9003137290', '', 'dineshanbu259@gmail.com', '1997-05-17', 23, '2', '2', 'Anbu', 'Wever', 15000.00, 1, 0.00, 9000.00, 'Arni', 'Arni', '2103300027', '1', '1', 'upload_files/candidate_tracker/58142791354_Wed Mar 31 10:07:28 GMT+05:30 2021.pdf', NULL, NULL, '2021-03-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 07:33:16', 7, '2021-03-31 04:07:12', 0, NULL, 1),
(4145, 'Ramya', '23', '9840245360', '', 'ramyakrishnamoorthy32@gmail.com', '1996-05-05', 24, '2', '2', 'Krishnamoorthy', 'Driver', 20000.00, 1, 15000.00, 20000.00, 'Sri Balaji govindha nagar thiruverkadu Chennai 77', 'Chennai', '2103300028', '1', '2', 'upload_files/candidate_tracker/91560384873_ramya-resume.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected in the System Task by Sathish', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 09:41:17', 1, '2021-03-31 10:53:12', 0, NULL, 1),
(4146, 'Lavanya. P', '13', '9444492606', '8072876655', 'lavanya2441@gmail.com', '2001-04-24', 19, '2', '2', 'S. Prabakaran', 'Technician', 34000.00, 1, 0.00, 10000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2103300029', '1', '1', 'upload_files/candidate_tracker/91136554183_lavanya-BSC ECS-21 resume.docx', NULL, NULL, '2021-03-31', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response From This Candidate.', '2', '2', '0', '1', '1', '0', '2', '2021-04-08', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 10:48:06', 1, '2021-03-30 10:53:59', 0, NULL, 1),
(4147, 'Indhumathi. R', '22', '6383249482', '', 'Indhumathi.Kokila567@gmail.com', '2000-05-19', 20, '2', '2', 'Ramesh. K', 'Interior designer', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2103300030', '1', '1', 'upload_files/candidate_tracker/9287850658_indumathi resume.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'The candidate wonxquott sustain the long-term', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 10:51:55', 1, '2021-03-31 11:06:49', 0, NULL, 1),
(4148, 'Sreeram', '23', '9789294496', '8124407091', 'Sreeramdurairajan88@gmail.com', '1995-09-02', 25, '2', '2', 'Durai rajan R', 'Health inspector', 15000.00, 1, 0.00, 15000.00, 'Thakkolam', 'Velacherry', '2103300031', '1', '1', 'upload_files/candidate_tracker/26999635929_res pdf.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Already attended for UI,System Task not completed,also not open for Agreement', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-30 11:38:29', 1, '2021-04-10 02:28:12', 0, NULL, 1),
(4149, 'murugan a', '13', '9361638084', '', 'aravind30495@gmail.com', '1995-04-30', 25, '3', '2', 'anandhan', 'farmer', 6000.00, 1, 0.00, 8000.00, 'villupuram', 'chennai', '2103310001', '', '1', 'upload_files/candidate_tracker/14434488677_Murugan BIO - DATA.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our Role, No Basic knowledge', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 08:27:46', 1, '2021-03-31 10:45:10', 0, NULL, 1),
(4150, 'R.nithya', '7', '9551858203', '', 'sandhiyaraman97@gmail.com', '1997-11-30', 23, '2', '2', 'Kuttiyamma', 'House keeping', 15000.00, 3, 9000.00, 15000.00, 'Mylapore', 'Mylapore', '2103310002', '1', '2', 'upload_files/candidate_tracker/40814068792_Nithya Resume1.pdf', NULL, NULL, '2021-03-31', 15, '', '5', '35', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Telephonic Round Completed, Not Satisfied, Poor Communication And Industry Knowledge, ', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-31 09:23:26', 50, '2021-03-31 09:40:28', 0, NULL, 1),
(4151, '', '0', '9083137290', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 10:08:33', 0, NULL, 0, NULL, 1),
(4152, 'Monalisa s', '4', '9962392382', '6381549317', 'monalisasigamani1999@gmail.com', '1999-12-27', 21, '1', '2', 'Sigamani C', 'Construction worker', 20000.00, 1, 0.00, 12000.00, 'Kalpattu village, kanchipuram district 603401', 'Vysarpadi, Chennai 39', '2103310004', '', '1', 'upload_files/candidate_tracker/5676661570_Monalisa S_Resume_Format16.pdf', NULL, NULL, '2021-03-31', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'she is not fit for telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 10:18:32', 1, '2021-03-31 10:32:59', 0, NULL, 1),
(4153, 'jagadesh.G', '5', '7708408944', '7550144490', 'jagadesh7708408944egattur@gmail.com', '1983-03-07', 38, '2', '1', 'Nandhini', 'House wife', 30000.00, 2, 36000.00, 40000.00, 'Tiruvallur', 'Perambur', '2103310005', '16', '2', 'upload_files/candidate_tracker/72483337416_resume_1615785672580.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process sales. Observation is poor.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 10:35:53', 1, '2021-03-31 10:41:58', 0, NULL, 1),
(4154, 'Raj prabhu', '5', '9003090954', '8754696838', 'prabhu97kannan@gmail.com', '1997-01-12', 24, '2', '2', 'Narayanan', 'Auto driver', 20000.00, 1, 24000.00, 28000.00, '84 203 solaiappan street oldwashermenet', '84 203 solaiappan street', '2103310006', '1', '2', 'upload_files/candidate_tracker/76277120461_prabhu resume.docx', NULL, '1', '2021-09-15', 0, '', '3', '59', '2021-10-08', 288000.00, '', '4', '2023-04-29', '1', 'Selected for Raj Team, candidate shared his previous company documents. We offered the same cost what he was getting earlier', '5', '2', '1', '1', '1', '', '2', '2021-10-06', '1', '1', 'Patroniss Link shared to upload the documents', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-03-31 10:45:40', 50, '2021-10-08 10:21:42', 0, NULL, 1),
(4155, 't s ram kumar', '5', '9600528526', '', 'tsramk@gmail.com', '1995-02-26', 26, '2', '2', 'none', 'none', 20000.00, 0, 18000.00, 21000.00, 'chennai', 'chennai', '2103310007', '3', '2', 'upload_files/candidate_tracker/25194144922_ram kumar.pdf', NULL, NULL, '2021-03-31', 0, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 10:58:02', 7, '2021-03-31 04:06:43', 0, NULL, 1),
(4156, 'v.kishore kumar', '5', '9952054835', '', 'kishorekumar290587@gmail.com', '1987-05-29', 33, '2', '2', 'b.viswanaathan', 'business', 40000.00, 1, 14000.00, 18000.00, 'govindhan nagar palavakkam chennai', 'Govindhan Nagar Palavakkam Chennai', '2103310008', '1', '2', 'upload_files/candidate_tracker/40947711890_kishore resume new-converted (4).pdf', NULL, NULL, '2021-03-31', 1, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 2yr calling exp, fresher for us, check for RM', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:03:43', 8, '2021-03-31 01:33:10', 0, NULL, 1),
(4157, 'SAHAYA JENITH. X', '20', '6369429129', '9840726451', 'Crushjenith@gmail.com', '2006-03-31', 0, '2', '2', 'Xavier', 'Fisherman', 10000.00, 2, 0.00, 12000.00, 'Tondiarpet', 'Tondiarpet', '2103310009', '1', '1', 'upload_files/candidate_tracker/32561022396_Resume-2.docx', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'looking for PHP but no knowledge in PHP, with basics. told him to learn and then attend interview later.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:10:49', 50, '2021-03-31 12:00:56', 0, NULL, 1),
(4158, 'AROKIA MITHUN P.M', '6', '8072840641', '', 'mithun290800@gmail.com', '2006-03-31', 0, '2', '2', 'Martin', 'Transport line', 12000.00, 1, 0.00, 12000.00, 'Tondaiyarpet', 'Tondaiyarpet', '2103310010', '1', '1', 'upload_files/candidate_tracker/64520601400_Resume-2.docx', NULL, NULL, '2021-03-31', 0, '', '3', '8', '2021-04-12', 151584.00, '', '6', '2021-06-04', '1', 'For Syed Team CTC - 1,51,584 Gross - 12632 TH- 12000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:10:54', 7, '2021-04-11 03:51:12', 0, NULL, 1),
(4159, 'Mir Irfan Ali', '4', '7397276412', '9514721123', 'mirirfanali901@gmail.com', '1998-01-20', 23, '2', '2', 'Mir Murthuza Ali', 'Driver', 110000.00, 1, 0.00, 10000.00, 'Saidapet, chennai', 'Saidapet,Chennai', '2103310011', '1', '1', 'upload_files/candidate_tracker/13611500445_New Resume.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-31 11:12:42', 50, '2021-03-31 12:04:55', 0, NULL, 1),
(4160, '', '0', '9445488951', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 11:24:08', 0, NULL, 0, NULL, 1),
(4161, 'Sellamurugan', '7', '9751914783', '8682015963', 'sellamurugan1996@gmail.com', '1996-05-24', 24, '2', '2', 'Velayutham', 'Farmer', 10000.00, 2, 11500.00, 15000.00, 'Thiruvarur', 'Chennai', '2103310013', '1', '2', 'upload_files/candidate_tracker/69044241336_sellamurugan new resume.docx', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'poor comm. body language and manner is not good, slow learner. expt is 15k+', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-31 11:32:33', 50, '2021-03-31 11:51:48', 0, NULL, 1),
(4162, 'Logeswari', '16', '9566043883', '', 'logeswaripriya2417@gmail.com', '1994-03-17', 27, '2', '1', 'Pradeep susairaj beski', 'Icici bank', 12000.00, 0, 120000.00, 20000.00, 'Chennai', 'Chennai', '2103310014', '1', '2', 'upload_files/candidate_tracker/1637360904_logi resume.pdf', NULL, NULL, '2021-04-10', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for mis as well crm, actual salary is 10k got Reviced 3m before which is 12k, her expt is 18k. has 1.3yr in Personal loan.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:36:09', 50, '2021-04-10 12:32:39', 0, NULL, 1),
(4163, 'Rajesh', '4', '8124843543', '', 'rajesh8668sandy@gmail.com', '1998-05-31', 22, '2', '2', 'Vicky', 'E', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Ennore', '2103310015', '1', '1', 'upload_files/candidate_tracker/67351566869_ARB1A.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, not interested in sales, no clarity in speech.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 11:42:45', 50, '2021-04-16 10:23:05', 0, NULL, 1),
(4164, 'M.Mukila', '4', '6385702593', '', 'mukilamurugaiyan@gmail.com', '1995-07-19', 25, '2', '2', 'R.Murugaiyan', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'Thanjavur-614613', 'Annai ladies hostel, ekkattuthangal', '2103310016', '1', '1', 'upload_files/candidate_tracker/90975754237_1616922728911Resume_Mukila.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for acc xxamp fin. native is thanjavur', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-03-31 11:56:16', 50, '2021-03-31 12:21:04', 0, NULL, 1),
(4165, 'Arul', '5', '9943759412', '7708381142', 'Varul@gmail.com', '1994-06-20', 26, '2', '2', 'Vedarasu', 'Former', 15000.00, 3, 15000.00, 20000.00, 'Vedaranyam', 'Chennai', '2103310017', '16', '2', 'upload_files/candidate_tracker/44820007939_8982768164_12132.pdf', NULL, NULL, '2021-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no knowledge in sales, will not suite for our process, 2yrs in equitas finance. ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 12:03:15', 50, '2021-03-31 03:19:58', 0, NULL, 1),
(4166, 'Nayaz Ahmed', '6', '9790889376', '8825886505', 'm.nayaz1995@gmail.com', '1996-11-27', 24, '2', '2', 'Ahmed Basha', 'Travel agent', 20000.00, 1, 18000.00, 20000.00, 'No.190 , 10th Street , NSK Nagar , Arumbakkam', 'Arumbakkam , Chennai', '2103310018', '16', '2', 'upload_files/candidate_tracker/75831061197_1615005958808_1535437465784_1532580251832_pulsar nayaz new reume.docx', NULL, NULL, '2021-03-31', 3, '', '8', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-03-31 12:10:21', 7, '2021-03-31 04:06:19', 0, NULL, 1),
(4167, 'Siva k', '6', '9790927464', '8085256351', 'siva.peter34@gmail.com', '1992-04-24', 28, '2', '1', 'Merlin', 'House wife', 20000.00, 0, 20000.00, 20000.00, 'No 16/58 kamarajar salai r a puram chennai 28', 'No 260 lakshmi nagar valasaravakkam chennai 86', '2103310019', '1', '2', 'upload_files/candidate_tracker/22750920259_SHIVA 19 MAR.doc', NULL, NULL, '2021-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales, no Convincing and confidence. exp is 20k+', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-03-31 12:30:22', 1, '2021-03-31 02:55:59', 0, NULL, 1),
(4168, '', '0', '9841302003', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 01:12:39', 0, NULL, 0, NULL, 1),
(4169, '', '0', '9787960693', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 02:37:04', 0, NULL, 0, NULL, 1),
(4170, '', '0', '8765456789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 02:48:20', 0, NULL, 0, NULL, 1),
(4171, '', '0', '8838551626', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 03:19:16', 0, NULL, 0, NULL, 1),
(4172, 'deiveegan', '13', '9787893113', '', 'deiveeganhere@gmail.com', '1984-10-10', 36, '2', '2', 'alagesan', 'farmer', 10000.00, 2, 2.40, 3.00, 'velachery', 'velachery', '2103310024', '1', '2', 'upload_files/candidate_tracker/61378359975_DEIVEEGAN-A-PHP-DEVELOPER.doc', NULL, NULL, '2021-04-01', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Agreement,35 yrs Age 2 yrs Exp Expecting 25K TH\n', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-31 04:23:13', 50, '2021-04-01 12:22:29', 0, NULL, 1),
(4173, '', '0', '6381127617', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2103310025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-03-31 07:24:51', 0, NULL, 0, NULL, 1),
(4174, 'nishanth', '28', '8939497971', '', 'nish8005@gmail.com', '1996-07-15', 24, '2', '2', 'narayanan kutty', 'student', 20000.00, 1, 0.00, 400000.00, 'Chennai City South', 'Chennai City South', '2103310026', '1', '1', 'upload_files/candidate_tracker/93029830347_Nishanth.N Resume.pdf', NULL, NULL, '2021-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-31 08:05:08', 1, '2021-04-01 07:07:48', 0, NULL, 1),
(4175, 'S. Saravana kumar', '23', '9080637795', '7092469259', 'Saravanamass7402@gmail.com', '1999-12-16', 21, '2', '2', 'Pramila', 'Clerk', 10000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2103310027', '1', '1', 'upload_files/candidate_tracker/33960471221_Saravana Kumar resume.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability Doubt', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-03-31 11:14:34', 1, '2021-03-31 11:42:37', 0, NULL, 1),
(4176, 'BOOBALAN', '6', '8056840644', '7010961614', 'boobalanjb1997@gmail.com', '1997-04-21', 23, '2', '2', 'JAKKANNA G', 'TAILOR', 60000.00, 1, 0.00, 200000.00, 'Madurai', 'Chennai', '2104010001', '1', '1', 'upload_files/candidate_tracker/96919343213_ALAN.pdf', NULL, NULL, '2021-04-01', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '2', 'not fit for sales', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-01 10:57:05', 1, '2021-04-01 11:47:32', 0, NULL, 1),
(4177, 'A. Nagoor Kani', '4', '6380158602', '7395863558', 'Nkani433@gmail.com', '1997-10-12', 23, '2', '2', 'M. Akbar sharief', 'Security guard', 50000.00, 5, 0.00, 50000.00, 'Cuddalore', 'Chennai', '2104010002', '1', '1', 'upload_files/candidate_tracker/84697278924_NAGOOR RESUME-converted.pdf', NULL, NULL, '2021-04-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling. not interested in target base job.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-01 11:46:39', 50, '2021-04-01 12:32:45', 0, NULL, 1),
(4178, 'savithri k', '28', '7299965527', '', 'savi20.krishna@gmail.com', '1995-05-20', 25, '2', '1', 'baskar chandramouli', 'oracle functional consultant', 45000.00, 1, 180000.00, 250000.00, 'chennai', 'chennai', '2104010003', '1', '2', 'upload_files/candidate_tracker/81598814803_Savithri-New.docx', NULL, NULL, '2021-04-02', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 11:48:27', 1, '2021-04-01 12:05:38', 0, NULL, 1),
(4179, 'Deepak', '23', '9629222732', '', 'itisdeepakkumar@outlook.com', '1997-02-10', 24, '2', '2', 'Selvam', 'Govt. Transport', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2104010004', '1', '1', 'upload_files/candidate_tracker/48831479102_Deepak Kumar - Resume-compressed (1).pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our UI UX Position', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 12:10:59', 1, '2021-04-01 12:16:46', 0, NULL, 1),
(4180, 'jaffar shahul', '23', '7845300738', '9884972176', 'jaffershahul.me@gmail.com', '1998-11-16', 22, '2', '2', 'hameed deen', 'web developer', 20000.00, 3, 0.00, 15000.00, 'chennai -37', 'chennai -37', '2104010005', '1', '1', 'upload_files/candidate_tracker/72951378414_JAFFER updated Resume (1).pdf', NULL, NULL, '2021-04-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-04-12', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 12:30:49', 1, '2021-04-01 12:35:06', 0, NULL, 1),
(4181, 'v saravanan', '5', '9585646769', '', 'saravanan54666@gmail.com', '1996-11-03', 24, '2', '2', 'saraswathi', 'bsnl', 18000.00, 1, 15000.00, 20000.00, 'arakkonam', 'arakkonam', '2104010006', '1', '2', 'upload_files/candidate_tracker/29851111909_saravanan.docx', NULL, NULL, '2021-04-05', 30, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'recommended for next round', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-01 12:40:32', 50, '2021-04-16 02:50:03', 0, NULL, 1),
(4182, 'thamarai selvan', '23', '9489029654', '', 'gtcelan@gmail.com', '1997-05-20', 23, '2', '2', 'gnanaprakasam', 'daily vendor', 15000.00, 1, 250000.00, 200000.00, 'Chennai', 'Chennai', '2104010007', '1', '2', 'upload_files/candidate_tracker/36177954779_Thamarai\'s Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 12:49:49', 1, '2021-04-01 04:26:31', 0, NULL, 1),
(4183, 'Kousalya.B', '4', '7639288432', '6383041242', 'kousibrkks5@gmail.com', '1997-05-05', 23, '2', '2', 'Balakrishnan.V', 'Farmer', 78000.00, 2, 0.00, 12000.00, 'Villupuram', 'Velacherry', '2104010008', '1', '1', 'upload_files/candidate_tracker/32940148724_KOUSALYA.pdf', NULL, NULL, '2021-04-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing for govt exams for past 2yrs, time being looking for job. doing her relevant courses in chennai.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-01 01:14:29', 50, '2021-04-01 01:25:45', 0, NULL, 1),
(4184, 'Gopalakrishnan', '23', '9500337306', '9080150732', 'krishdoss06@gmail.com', '1996-03-18', 25, '2', '2', 'Murugadoss', 'Seeking a job', 9000.00, 2, 2.00, 2.25, 'Thanjavur', 'Thanjavur', '2104010009', '1', '2', 'upload_files/candidate_tracker/2488449668_Krishnan-resume(1).pdf', NULL, NULL, '2021-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 01:44:58', 1, '2021-04-01 01:53:27', 0, NULL, 1),
(4185, 'dravid', '23', '8667377046', '', 'dravidmani1998@gmail.com', '1998-07-24', 22, '2', '2', 'ranganathan', 'farmer', 10000.00, 2, 12500.00, 25000.00, 'vellore', 'vellore', '2104010010', '1', '2', 'upload_files/candidate_tracker/26487708877_Resume dravid.pdf', NULL, NULL, '2021-04-10', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-04-01 02:26:42', 1, '2021-04-01 02:33:13', 0, NULL, 1),
(4186, 'JAGAN R', '13', '8124354329', '', 'jaganmca143@gmail.com', '1989-06-03', 31, '2', '2', 'Renugopal', 'Agriculture', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104010011', '1', '2', 'upload_files/candidate_tracker/8274248604_RESUME (13-9-2017).pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our role,Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 02:42:17', 1, '2021-04-01 02:56:17', 0, NULL, 1),
(4187, 'deepak kumar', '28', '8838296306', '', 'udeepakkumar25@gmail.com', '1999-09-25', 21, '2', '2', 'p.udayakumar / vidhyaudayakumar', 'business / housewife', 500000.00, 0, 0.00, 12000.00, 'poonamallee chennai', 'poonamallee chennai', '2104010012', '1', '1', 'upload_files/candidate_tracker/20774909239_RESUME.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Mail Communication not upto the mark', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 02:49:10', 1, '2021-04-01 03:02:27', 0, NULL, 1),
(4188, 'sujith mj', '28', '8056346835', '', 'sujithmj0@gmail.com', '1999-04-25', 21, '2', '2', 'mohan s', 'business', 40000.00, 1, 0.00, 10000.00, 'nager coil', 'thoraipakkam', '2104010013', '1', '1', 'upload_files/candidate_tracker/75106360175_SCV.pdf', NULL, NULL, '2021-04-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 03:14:41', 1, '2021-04-01 03:21:20', 0, NULL, 1),
(4189, '', '0', '9043938962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104010014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-01 03:49:54', 0, NULL, 0, NULL, 1),
(4190, '', '0', '9445778072', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104010015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-01 04:58:40', 0, NULL, 0, NULL, 1),
(4191, 'abdul rasheed azar', '23', '9788053319', '', 'rasheedazar88@gmail.com', '1988-04-05', 33, '2', '1', 'sirin fathima', 'housewife', 25000.00, 3, 25000.00, 30000.00, 'chennai', 'chennai', '2104010016', '1', '2', 'upload_files/candidate_tracker/48654241955_null.pdf', NULL, NULL, '2021-04-05', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '50/50 On The Agreement, High Pay Expectation', '2', '2', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 06:09:55', 1, '2021-04-05 10:17:08', 0, NULL, 1),
(4192, 'R Palani', '13', '9843866562', '', 'palaniramu199@gmail.com', '1999-06-09', 21, '2', '2', 'C ramy', 'Farmer', 5000.00, 2, 20000.00, 25000.00, 'thiruvannamalai', 'Chennai', '2104010017', '1', '2', 'upload_files/candidate_tracker/84250990371_R Palani resume.pdf', NULL, NULL, '2021-04-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 06:21:39', 1, '2021-04-01 06:27:16', 0, NULL, 1),
(4193, 'kAPILAMITHRAN S', '28', '9080957346', '9566084238', 'kapilamithrans@gmail.com', '2000-09-22', 20, '2', '2', 'SANGAMITHIRAN G', 'Chargeman', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2104010018', '1', '1', 'upload_files/candidate_tracker/56088241863_Kapilamithran_s_Resume.pdf', NULL, NULL, '2021-04-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Doubt, Mail Comm not upto the mark', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 06:21:46', 1, '2021-04-01 06:26:21', 0, NULL, 1),
(4194, 'manoj s', '28', '8110085233', '', 'svmanoj2312000@gmail.com', '2000-01-23', 21, '2', '2', 'selvakumar s', 'professor', 38000.00, 1, 0.00, 23000.00, 'Gudalur', 'Gudalur', '2104010019', '1', '1', 'upload_files/candidate_tracker/49379514770_Manoj S Resume.PDF.pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-01 06:35:59', 1, '2021-04-03 12:18:25', 0, NULL, 1),
(4195, 'govinda raj', '5', '9043596893', '', 'govindarajc1990@gmail.com', '1990-06-13', 30, '2', '2', 'none', 'none', 20000.00, 0, 20000.00, 22000.00, 'chennai', 'chennai', '2104020001', '3', '2', 'upload_files/candidate_tracker/31511517110_goviresume.pdf', NULL, NULL, '2021-04-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-02 02:08:16', 1, '2021-04-02 02:12:22', 0, NULL, 1),
(4196, 'DILLIRAJ S', '6', '7299657507', '8608878385', 'rajssd07@gmail.com', '1994-05-07', 26, '2', '2', 'SUNDARAM', 'Telecaller', 30000.00, 2, 14500.00, 16000.00, 'Chennai', 'Chennai', '2104030001', '1', '2', 'upload_files/candidate_tracker/31098968714_DILLI RAJ RESUME2 new.docx', NULL, NULL, '2021-04-09', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '5', '1', '', '1', '1', '', '2', '2021-05-10', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-03 11:16:00', 8, '2021-04-09 03:03:06', 0, NULL, 1),
(4197, '', '0', '9087848954', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104040001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-04 08:44:04', 0, NULL, 0, NULL, 1),
(4198, '', '0', '9381764011', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104040002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-04 09:09:07', 0, NULL, 0, NULL, 1),
(4199, '', '0', '8122559770', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104050001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-05 12:17:46', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4200, 'P Manikandan', '13', '9003199968', '', 'manikandan1071@gmail.com', '1993-07-01', 27, '2', '1', 'S Palani', 'Working in Pvt Ltd Company', 20000.00, 0, 20000.00, 20000.00, 'Chennai', 'Chennai', '2104050002', '1', '2', 'upload_files/candidate_tracker/79119706415_Manikandan P updated.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Exp Not ope n for Agreement', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 09:58:03', 1, '2021-04-05 10:04:35', 0, NULL, 1),
(4201, 'Ajay Kumar', '17', '6383986452', '', 'Ajaykumars2105@gmail.com', '1993-05-21', 27, '2', '2', 'Sethuraman', 'Retired', 150000.00, 1, 43600.00, 50000.00, 'Hosur', 'Adyar Chennai', '2104050003', '16', '2', 'upload_files/candidate_tracker/39820547326_Ajay Resume_01-01-2021.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '5', '2', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 10:18:55', 1, '2021-04-05 10:23:21', 0, NULL, 1),
(4202, 'Gunasekaran', '20', '8939470030', '9080002375', 'shakthiguna0@gmail.com', '1991-03-27', 30, '2', '1', 'Navappan', 'Cooli', 100000.00, 1, 25000.00, 26000.00, 'Chennai', 'Chennai', '2104050004', '16', '2', 'upload_files/candidate_tracker/56988975147_Guna 2021 Resume.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'No Response', '5', '1', '0', '1', '1', '0', '2', '2021-04-07', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 10:20:39', 1, '2021-04-05 10:27:13', 0, NULL, 1),
(4203, 'Ramadevi', '7', '9176343462', '8124985909', 'devichandran13d044@gmail.com', '1996-06-16', 24, '2', '2', 'Chandran', 'Having shop', 18000.00, 0, 15900.00, 25000.00, 'Chennai', 'Chennai', '2104050005', '1', '2', 'upload_files/candidate_tracker/97330140237_CV_Ramadevi.pdf', NULL, NULL, '2021-04-05', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'High CTC Expectation for MF position, Fresher Profile Min TH exp is 15-16 K', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 10:37:29', 50, '2021-04-05 10:52:02', 0, NULL, 1),
(4204, 'Kumar', '17', '9884307077', '', 'mkumar.fashion@gmail.com', '1991-09-14', 29, '2', '1', 'Vijayalakshmi', 'House wife', 20000.00, 2, 0.00, 30000.00, 'Arumbakkam, chennai', 'Arumbakkam, chennai', '2104050006', '16', '2', 'upload_files/candidate_tracker/14802658015_Kumar Resume final pdf.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our profile. he was not into sales completely in training and fashion designing with qC ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 11:05:27', 1, '2021-04-05 11:12:27', 0, NULL, 1),
(4205, 'Kumaran A', '7', '8608865011', '8056135400', 'akumaran1507@gmail.com', '1995-01-15', 26, '2', '2', 'Arumugam K', 'Coolie', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2104050007', '1', '2', 'upload_files/candidate_tracker/94250869557_Resume1.docx', NULL, NULL, '2021-04-05', 30, '', '5', '35', NULL, 0.00, '', '0', NULL, '2', 'he Donxquott have a much Knowledge in MF and Communication also Poor, even he Donxquott know what is AMC and RTA. ', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 11:09:46', 1, '2021-04-05 12:43:40', 0, NULL, 1),
(4206, 'g.bharathi', '4', '7397453278', '9962368091', 'bharathisekaran07@gmail.com', '2000-07-15', 20, '2', '2', 'D.Gnanasekaran', '-', 30000.00, 2, 0.00, 12000.00, '3142, 69th street 2nd mail road Mathur MMDA', '3142, 69th Street 2nd Mail Road Mathur MMDA', '2104050008', '1', '1', 'upload_files/candidate_tracker/53765040626_Bharathi CV UPDATE pdf.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not interested', '1', '2', '0', '1', '1', '0', '2', '2021-04-06', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 11:27:49', 1, '2021-04-05 11:45:07', 0, NULL, 1),
(4207, 'R.manibharathi', '4', '7358008807', '7092362003', 'bharathima220@gmail.com', '1999-05-24', 21, '1', '2', 'V.rajendran', 'Coolie', 25000.00, 2, 0.00, 16000.00, 'Koyambedu', 'Koyambedu', '2104050009', '', '2', 'upload_files/candidate_tracker/76830803546_ManiBharaThi.pdf', NULL, '1', '2021-04-05', 0, '', '3', '53', '2021-07-19', 180000.00, '', '6', '2022-06-25', '1', 'Selected for Arumbakkam Team with CTC 180000 includes PF/ESI/PT deductions', '1', '1', '1', '1', '3', '1', '2', '2021-04-07', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 11:38:24', 60, '2021-07-16 03:28:27', 0, NULL, 1),
(4208, 'Swathy .A', '4', '7358647917', '8220096780', 'akchayaswa06@gmail.com', '1999-03-06', 22, '2', '1', 'Mahadevan.D', 'Sales manager', 150000.00, 2, 8500.00, 10500.00, 'Thruvallur', 'Thruvallur', '2104050010', '1', '2', 'upload_files/candidate_tracker/61031548582_Swathi .. Resume.docx', NULL, NULL, '2021-04-05', 5, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 11:41:37', 50, '2021-04-05 12:23:17', 0, NULL, 1),
(4209, 'syed shajahan.k', '23', '9790415737', '8056158826', 'shajahn7shaju@gmail.com', '1996-07-31', 24, '2', '2', 'k.syed khallel', 'power pree operator', 10000.00, 2, 0.00, 16000.00, 'aaru muga vaithur street triplicane', 'triplicane chennai', '2104050011', '1', '1', 'upload_files/candidate_tracker/2347610831_ui developer-designer resume.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for UI,Health Issue Sustainability Doubt', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 12:04:20', 1, '2021-04-05 12:22:03', 0, NULL, 1),
(4210, 'Prema.K', '4', '9361433253', '9655762075', 'Premarenu43785@gmail.com', '2001-08-09', 19, '2', '2', 'Kuppan M', 'Fisherman', 6000.00, 1, 0.00, 15000.00, 'Pulicat', 'Thiruvattiyur', '2104050012', '', '1', 'upload_files/candidate_tracker/3502153351_-B_com_Fresher_Resume_Format[1] prema.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Looking For Non Voice Acc And Fin.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 12:26:50', 1, '2021-04-05 12:51:23', 0, NULL, 1),
(4211, 'Chebina D', '20', '9962552492', '9840724594', 'chebinajebaselvi@gmail.com', '2001-05-11', 19, '2', '2', 'K.Durai', 'Sales men', 12000.00, 2, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2104050013', '1', '1', 'upload_files/candidate_tracker/67367474675_RESUME.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested for Sales', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 12:29:49', 1, '2021-04-05 12:39:43', 0, NULL, 1),
(4212, 'SANJAY KUMAR', '5', '8148083071', '', 'kumarvsanjay8@gmail.com', '1996-02-16', 25, '2', '2', 'VIJAYKUMAR', 'Mechanic', 20000.00, 1, 26000.00, 30000.00, 'Chennai', 'Chennai', '2104050014', '16', '2', 'upload_files/candidate_tracker/16878961650_sanjay_resume_2020[1] (1) (1).pdf', NULL, NULL, '2021-04-05', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'language is not good, will not suite for our process. currently working in justdail for past 2m, ', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 12:29:54', 1, '2021-04-05 12:57:28', 0, NULL, 1),
(4213, 'Vinitha. Y', '4', '9790955091', '9500079490', 'Vinirathinam1920@gmail.com', '2000-08-19', 20, '2', '2', 'D. Yesurathinam', 'Driver', 15000.00, 2, 0.00, 15000.00, 'Mylapore', 'Porur', '2104050015', '1', '1', 'upload_files/candidate_tracker/11241207484_RESUME.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling and sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 12:30:00', 8, '2021-04-08 09:54:08', 0, NULL, 1),
(4214, 'Shaminikani C', '4', '6385117486', '8939342514', 'Shaminicharles241@gmail.com', '2001-04-02', 20, '2', '2', 'K Charles', 'Cooli', 8000.00, 1, 0.00, 15000.00, 'Tuticorin', 'Tambaram', '2104050016', '1', '1', 'upload_files/candidate_tracker/16154212339_CV_2020-11-03-095828.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice acc and Fin.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 12:30:21', 8, '2021-04-05 02:56:58', 0, NULL, 1),
(4215, 'Rahul Rajan', '5', '7358057075', '', 'rahul.savithrirajan@gmailcom', '1996-03-29', 25, '2', '2', 'Rajan P', 'Business', 40000.00, 1, 26000.00, 30000.00, 'Chennai', 'Chennai', '2104050017', '16', '2', 'upload_files/candidate_tracker/88387069527_rahul resume2021.doc', NULL, NULL, '2021-04-05', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, language is not convincing.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 12:30:53', 1, '2021-04-05 12:58:03', 0, NULL, 1),
(4216, 'NIvedha g', '4', '6382078523', '6380203094', 'g.nivedha30@gmail.com', '1999-05-30', 21, '1', '2', 'Gunasekaran', 'Business', 50000.00, 2, 14000.00, 15000.00, 'Chennai', 'Purasaiwakkam', '2104050018', '', '2', 'upload_files/candidate_tracker/93471492279_nivedha cv.222.docx', NULL, NULL, '2021-04-05', 3, '61167', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Expectation is High, Not ready to negotiate', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 12:36:21', 1, '2021-04-05 01:14:23', 0, NULL, 1),
(4217, 'Janani.D', '4', '8056126634', '8939062231', 'Jananijan0425@gmail.com', '2000-02-04', 21, '1', '2', 'Manjula', 'Supervisor', 20000.00, 0, 15000.00, 15000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2104050019', '', '2', 'upload_files/candidate_tracker/46152570850_JANANI RESUME.pdf', NULL, NULL, '2021-04-05', 3, '61177', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability Doubt, High CTC Expectation', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-05 12:42:18', 1, '2021-04-05 12:56:45', 0, NULL, 1),
(4218, 'R vijayshree', '20', '8056181140', '6383942941', 'vijiradha1708@gmail.com', '1999-08-17', 21, '2', '2', 'Radhakrishnan', 'Fruits shop', 120000.00, 3, 0.00, 15000.00, 'THIRUMULLAIVOYAL', 'THIRUMULLAIVOYAL', '2104050020', '', '1', 'upload_files/candidate_tracker/1104326917_Scan Apr 05, 2021.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not open her mouth also', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 12:47:11', 1, '2021-04-05 01:06:31', 0, NULL, 1),
(4219, 'R.Senbagam', '4', '7904148397', '6383942941', 'senbar535@gmail.com', '2000-03-30', 21, '2', '2', 'R.Ravichandran', 'Fruit seller', 25000.00, 2, 0.00, 15000.00, 'Thirumullai voyal', 'Thirumullai voyal', '2104050021', '1', '1', 'upload_files/candidate_tracker/75791392267_resume.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No response for a long, Dsicussed on the CTC earlier and her expectation is High', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 12:47:15', 8, '2021-04-05 02:58:00', 0, NULL, 1),
(4220, 'Jayasurya.p', '4', '7358715402', '', 'surya1847173@gmail.com', '2000-03-01', 21, '2', '2', 'Palani', 'Drivar', 7000.00, 4, 0.00, 15000.00, 'no.55 bangaru street,Ayanavaram,Chennai.23', 'Ayanavaram', '2104050022', '1', '1', 'upload_files/candidate_tracker/15054568786_nithya.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'dont even has resume with him, Just like that came for interview with his friend.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 01:10:51', 1, '2021-04-05 01:41:48', 0, NULL, 1),
(4221, 'Ravishankar.m', '4', '8072004201', '7449267503', 'rs321124@gmail.com', '1996-07-18', 24, '2', '2', 'Mohan', 'B.com', 20000.00, 3, 0.00, 10000.00, 'Thiruninravur', 'Thiruninravur', '2104050023', '1', '1', 'upload_files/candidate_tracker/31990812550_RAVI.docx', NULL, NULL, '2021-04-05', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling and he is not interested too, looking for collection job.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-05 01:17:34', 7, '2021-04-05 03:01:15', 0, NULL, 1),
(4222, '', '0', '9925746667', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104050024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-05 01:33:31', 0, NULL, 0, NULL, 1),
(4223, 'Mubeena Begum', '4', '9176164269', '', 'Mubee1926@gmail.com', '2000-07-19', 20, '2', '2', 'Nil', 'Nil', 14000.00, 1, 0.00, 18000.00, 'Velachery', 'Velachery', '2104050025', '1', '1', 'upload_files/candidate_tracker/28445644825_MUBEENA RESUME-1.docx', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, demanding atleast 14k th. ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 02:38:52', 1, '2021-04-05 02:50:03', 0, NULL, 1),
(4224, 'Jayakumar', '4', '9500101392', '', 'Jaikumarram625@Gmail.com', '2000-11-03', 20, '2', '2', 'Banu. R', 'No', 10000.00, 2, 0.00, 15000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2104050026', '1', '1', 'upload_files/candidate_tracker/25097285226_New doc 05-Apr-2021 3.00 pm.pdf', NULL, NULL, '2021-04-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for sales process, will not sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 02:53:36', 1, '2021-04-05 03:12:00', 0, NULL, 1),
(4225, 'S.Thamaraiselvi', '4', '9025746667', '9840537055', 'lotuspriscilla1999@gmail.com', '1999-07-21', 21, '2', '2', 'Vijay', 'Manager', 20000.00, 0, 0.00, 15000.00, 'Villupuram', 'Chennai', '2104050027', '1', '1', 'upload_files/candidate_tracker/18148988818_Lotus Resume.pdf', NULL, NULL, '2021-04-09', 0, '', '3', '8', '2021-04-12', 126312.00, '', '6', '2021-04-13', '2', '10k th Mtc10526, ctc 126312 for Muthu team', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-05 02:53:47', 7, '2021-04-11 03:51:36', 0, NULL, 1),
(4226, 'Agasthiya. K', '28', '9840350274', '9941210887', 'agasthiyaparshith@gmail.com', '1996-02-07', 25, '2', '2', 'Krishnamurthy', 'Professor', 30000.00, 1, 0.00, 16000.00, 'thoraipakkam ,chennai-600097', 'Thoraipakkam, chennai-600097', '2104050028', '1', '1', 'upload_files/candidate_tracker/23692013990_AGASTHIYA -Finance-converted (1).pdf', NULL, NULL, '2021-04-07', 0, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 03:01:56', 50, '2021-04-07 10:52:18', 0, NULL, 1),
(4227, 'Vijay', '22', '9080955045', '', 'vijaymabishek@gmail.com', '2001-11-29', 19, '2', '2', 'Mahalingam', 'Operator', 30000.00, 1, 0.00, 5000.00, 'Chennai', 'Chennai', '2104050029', '1', '1', 'upload_files/candidate_tracker/73824207836_Resume pdf.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'High Salary Expectation,Not open for Long Career', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 03:19:10', 1, '2021-04-05 03:27:29', 0, NULL, 1),
(4228, 'Logapriya', '22', '9790693521', '9840126338', 'Logapriyasivaraam97@gmail.com', '1997-07-27', 23, '2', '1', 'Kartheek GJ', 'Cluster manager', 45000.00, 0, 14000.00, 20000.00, 'Ambathur', 'Thiruvallur', '2104050030', '1', '2', 'upload_files/candidate_tracker/41102480358_Logapriya Resume.docx', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Good in Communication, Interview by reyaz 2nd level , sustainability Doubt', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-05 05:01:48', 1, '2021-04-05 05:09:12', 0, NULL, 1),
(4229, 'nayana k', '20', '9544003343', '', 'nayanasankarank@gmail.com', '1999-04-10', 21, '2', '2', 'none', 'none', 20000.00, 0, 11000.00, 13000.00, 'bangalore', 'bangalore', '2104070001', '3', '2', 'upload_files/candidate_tracker/9556560664_nayana.k.docx', NULL, NULL, '2021-04-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:12:48', 1, '2021-04-07 09:20:31', 0, NULL, 1),
(4230, 'muhammed asif', '11', '9791131270', '', 'asifmuhammed132@gmail.com', '1999-11-25', 21, '2', '2', 'hameed', 'tea shop', 40000.00, 1, 13000.00, 14000.00, 'chennai', 'ashok nagar', '2104070002', '1', '2', 'upload_files/candidate_tracker/39621202888_resume updated .docx', NULL, NULL, '2021-04-07', 5, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not suit fr HR', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 10:12:21', 1, '2021-04-07 10:44:48', 0, NULL, 1),
(4231, 'K.sanjay kumar', '4', '6379439511', '8428743010', 'sanjay2sk227@gmail.com', '2000-07-23', 20, '2', '2', 'k.kavitha', 'House wife', 20000.00, 1, 0.00, 12000.00, 'Thuraipakam', 'Thuraipakam', '2104070003', '1', '1', 'upload_files/candidate_tracker/74203601534_sanjay.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for HR', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 10:25:49', 50, '2021-04-07 10:49:01', 0, NULL, 1),
(4232, 'Jagadeesh. N', '4', '8608479371', '8925728613', 'Jagadeshjackos2190y@gmail.com', '1998-09-03', 22, '2', '2', 'N. Nethaji', 'Machine operator', 22000.00, 1, 0.00, 10000.00, 'Chennai 600056', 'Chennai 600056', '2104070004', '1', '1', 'upload_files/candidate_tracker/49826077187_Job search_Color Format – 01.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'tamil comm. is not good. no clarity in pronunciation. body lang. is also not good.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-07 10:40:47', 8, '2021-04-07 04:17:37', 0, NULL, 1),
(4233, 'Preethi S', '4', '7397438603', '7550180243', 'preethireddy4299@gmail.com', '1999-02-04', 22, '2', '2', 'Srinivasan K', 'Electrician', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104070005', '1', '1', 'upload_files/candidate_tracker/5814918074_preethi.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response will not join', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 10:46:14', 50, '2021-04-07 10:56:20', 0, NULL, 1),
(4234, 'Kamesh', '4', '8778891306', '', 'kamesh2398@gmail.com', '2006-04-07', 0, '2', '2', 'Srinivasan', 'Pattern makker', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2104070006', '1', '1', 'upload_files/candidate_tracker/50358793947_1617772177039_KAMESH _S(resume).pdf', NULL, NULL, '2021-04-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 10:59:19', 50, '2021-04-07 11:23:54', 0, NULL, 1),
(4235, 'Gouthaman.R', '17', '9659536766', '9791300188', 'Gouthamankutty@gmail.com', '1991-10-03', 29, '2', '2', 'Rajendran', 'Shop worker', 700000.00, 1, 31680.00, 33000.00, 'Kolathur,chennai', 'Kolathur, chennai', '2104070007', '16', '2', 'upload_files/candidate_tracker/57905095500_2020 GOUTHAMAN.docx', NULL, NULL, '2021-04-07', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', 'has LI exp. kindly cross check for RM profile/BDM agency', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 10:59:26', 1, '2021-04-07 11:04:17', 0, NULL, 1),
(4236, 'Mohan raj', '6', '9791089413', '', 'Kmohanraj36@gmail.com', '1994-10-30', 26, '2', '2', 'Karthik', 'Carpenter', 20000.00, 1, 12150.00, 15500.00, 'Chennai', 'Chennai', '2104070008', '1', '2', 'upload_files/candidate_tracker/75886486070_mohan resume.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not interested in sales. no knowledge in MF. he was into qC', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-07 11:01:11', 1, '2021-04-07 11:10:16', 0, NULL, 1),
(4237, 'S.lokeshwaran', '4', '8838001755', '', 'lokieeagal10@gmail.com', '2001-04-14', 19, '2', '2', 'Sathish kumar', 'Police', 340000.00, 1, 0.00, 30000.00, 'Purasawalkam', 'Purasawalkam', '2104070009', '16', '2', 'upload_files/candidate_tracker/68988941376_New Doc 04-07-2021 11.15.pdf', NULL, NULL, '2021-04-07', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'left before interview', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 11:03:59', 50, '2021-04-07 11:59:48', 0, NULL, 1),
(4238, 'Muralimanohar', '5', '9600002354', '9094259618', 'asmanoj07@gmail.com', '1992-11-18', 28, '2', '1', 'Stella', 'Sales', 25000.00, 1, 22000.00, 30000.00, 'Perumbakkam', 'Perumbakkam', '2104070010', '16', '2', 'upload_files/candidate_tracker/69752542640_Murali resume_Pagar Book-1.docx', NULL, NULL, '2021-04-07', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for RM Profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 11:06:45', 8, '2021-04-07 04:36:47', 0, NULL, 1),
(4239, '', '0', '9080399269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104070011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-07 11:14:35', 0, NULL, 0, NULL, 1),
(4240, 'Preedhi', '4', '9080398269', '9444311741', 'preedhi0011.a@gmail.com', '1996-08-13', 24, '2', '2', 'Athinarayanasamy', 'Conductor', 35000.00, 2, 12000.00, 15000.00, 'Kovilpatti', 'chennai', '2104070012', '1', '2', 'upload_files/candidate_tracker/56607570215_PREEDHI res.docx', NULL, NULL, '2021-04-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'planning to do her course by next week, interested in IT job, will not sustain for sales. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 11:31:00', 50, '2021-04-07 11:45:22', 0, NULL, 1),
(4241, 'pavithra.p', '4', '9677683450', '', 'pavithraprabha99@gmail.com', '1999-05-05', 21, '2', '2', 'prabhakaran.r', 'business', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2104070013', '1', '1', 'upload_files/candidate_tracker/99606716090_1591523087642Resume_SUGANYA.docx', NULL, NULL, '2021-04-07', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitide', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-07 11:43:32', 50, '2021-04-07 12:35:03', 0, NULL, 1),
(4242, 'thiyagu', '16', '9087655438', '', 'rajalakshminandhini07@gmail.com', '2006-04-07', 0, '1', '1', 'kottiswari', 'business', 20000.00, 1, 0.00, 13000.00, 'yadhaval street tirusulam', 'potter street saidapet', '2104070014', '', '1', 'upload_files/candidate_tracker/41317961393_0_Resume jb.job.pdf', NULL, NULL, '2021-04-07', 0, 'jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 01:00:15', 1, '2021-04-07 01:02:48', 0, NULL, 1),
(4243, 'Ruba.m', '4', '9360196074', '6379917841', 'rrupa7715@gmail.com', '2000-04-19', 20, '1', '2', 'Murugan', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2104070015', '', '1', 'upload_files/candidate_tracker/50907903217_ FORD RESUME 2020.pdf', NULL, NULL, '2021-04-07', 0, 'Jobs', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 01:18:06', 1, '2021-04-07 01:37:10', 0, NULL, 1),
(4244, 'SUBA KARTHIK B', '28', '9750553566', '', 'subakarthik2020@gmail.com', '1997-06-25', 23, '2', '2', 'M G BALASUBRAMANIAN', 'Retired SBI MANAGER', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2104070016', '1', '1', 'upload_files/candidate_tracker/42822601222_Suba_karthik_resume___MBA (1) (1) (1) (1) (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Not good in mail communications, Focus will be much into Banking Job will not sustain for a long', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 01:37:15', 1, '2021-04-07 03:25:23', 0, NULL, 1),
(4245, 'Srivatsan Sriram', '28', '9841271055', '9841049822', 'Srivats21@gmail.com', '2000-04-21', 20, '2', '2', 'Sriram', 'Business', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104070017', '1', '1', 'upload_files/candidate_tracker/70907107163_srivatsan Resume (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Commucation Average,Mail Communication is not Good, Agreement should check with Family ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 02:38:52', 50, '2021-04-08 10:23:09', 0, NULL, 1),
(4246, '', '0', '8769087656', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104070018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-07 02:43:57', 0, NULL, 0, NULL, 1),
(4247, 'mallikarjun', '29', '8341936030', '9014640534', 'aerospace.v5@gmail.com', '1998-07-01', 22, '3', '2', 'nagalakshmaiah vadi', 'farmer', 20000.00, 4, 0.00, 17000.00, 'kurnool', 'chennai', '2104070019', '', '1', 'upload_files/candidate_tracker/78750750277_MALLIKARJUN VADI_Phoenix.pdf', NULL, NULL, '2021-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain for a long,looking for Mechanical Core for time being looking for job', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 03:22:18', 1, '2021-04-07 03:33:31', 0, NULL, 1),
(4248, '', '0', '9655516660', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104070020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-07 03:30:00', 0, NULL, 0, NULL, 1),
(4249, 'nesapriya', '28', '9597796198', '', 'nesapriyaraj.2430@gmail.com', '1999-05-30', 21, '2', '2', 'rajendran', 'farmer', 60000.00, 1, 0.00, 13000.00, 'HOSUR', 'HOSUR', '2104070021', '1', '1', 'upload_files/candidate_tracker/87997138823_nesa resume (3).pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 03:38:03', 1, '2021-04-07 03:51:08', 0, NULL, 1),
(4250, 'sarath sathyan s', '28', '8072021456', '', 'saraths1034@gmail.com', '1999-06-21', 21, '2', '2', 'sathyanathan d', 'sales staff', 15000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2104070022', '1', '1', 'upload_files/candidate_tracker/60199758915_sarath_resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Good in Communication,Sustainability Doubt,not open for 2 yrs service Agree', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 03:43:04', 1, '2021-04-07 04:26:37', 0, NULL, 1),
(4251, 'aakash', '28', '8838064121', '', 'aakashakiakiaki@gmail.com', '1996-09-08', 24, '2', '2', 'prakash', 'farmer', 60000.00, 1, 0.00, 14000.00, 'ooty', 'ooty', '2104070023', '1', '1', 'upload_files/candidate_tracker/35297491005_aki 2.pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 03:55:43', 1, '2021-04-07 03:58:41', 0, NULL, 1),
(4252, 'Chitra K', '28', '7824037529', '', 'chitrafab64@gmail.com', '1998-08-03', 22, '2', '2', 'Kandasamy. M', 'Retired head master', 45000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104070024', '1', '1', 'upload_files/candidate_tracker/44337441498_Chitra Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication OK, But for Agreement need to check with Family Max 1 yr Sustain', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 04:28:19', 1, '2021-04-07 04:39:13', 0, NULL, 1),
(4253, 'Sridhar K S', '28', '8668001037', '', 'sri85213@gmail.com', '2000-07-29', 20, '2', '2', 'Srinivasan P', 'Buisness', 60000.00, 1, 0.00, 360000.00, 'No.111/33TTA koil main street, Villivakkam,Ch-49', 'No.111/33TTA Koil Main Street, Villivakkam,Ch-49', '2104070025', '1', '1', 'upload_files/candidate_tracker/46071686817_SridharCV.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain for a long, No focus on the particular position', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 04:46:32', 1, '2021-04-07 04:56:17', 0, NULL, 1),
(4254, 'varadharajan k', '28', '7550186277', '', 'vachu0065@gmail.com', '2000-04-08', 20, '2', '2', 'kumar m d', 'driver', 10000.00, 0, 0.00, 15000.00, 'chennai', 'chromepet chennai', '2104070026', '1', '1', 'upload_files/candidate_tracker/56530857372_Varadha resume.pdf', NULL, NULL, '2021-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 04:51:44', 1, '2021-04-07 05:01:49', 0, NULL, 1),
(4255, 'Kalaivanan k', '23', '9095283551', '', 'kalaiwebhustler@gmail.com', '1992-05-12', 28, '2', '2', 'Karunanidhi', 'Former', 10000.00, 2, 2.60, 3.60, 'Ariyalur', 'Thambaram', '2104070027', '1', '2', 'upload_files/candidate_tracker/72874634821_Resume_Kalaivanan.pdf', NULL, NULL, '2021-04-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2 yrs of UI Exp,but no know in detail,High Pay Expectation', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 04:53:51', 50, '2021-04-09 02:47:28', 0, NULL, 1),
(4256, 'Bhuvanesh E', '28', '9710031607', '', 'waranbhuvanesh81@gmail.com', '1999-07-19', 21, '2', '2', 'Elangovan k', 'Cooli', 20000.00, 1, 13000.00, 15000.00, 'Chengalpattu', 'Tambaram', '2104070028', '1', '2', 'upload_files/candidate_tracker/47471508738_Bhuvanesh New resume.docx', NULL, NULL, '2021-04-08', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, Will not suit for our Role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 05:15:12', 1, '2021-04-07 05:22:01', 0, NULL, 1),
(4257, 'sowndarya', '4', '9025996496', '', 'sowndaryasowndarya699@gmail.com', '2000-09-12', 20, '2', '2', 'arumugam', 'cooli', 13000.00, 0, 0.00, 10000.00, 'chennai', 'chennai', '2104070029', '2', '1', 'upload_files/candidate_tracker/5973096150_April Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up. will not suite for calling', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:42:12', 1, '2021-04-07 08:43:49', 0, NULL, 1),
(4258, 'rithika', '4', '8778849956', '', 'rithikababy29@gmail.com', '2000-09-02', 20, '2', '2', 'kathiravan', 'sk', 15000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2104070030', '2', '1', 'upload_files/candidate_tracker/52040990618_Rithika resume.pdf', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:45:22', 1, '2021-04-07 08:46:48', 0, NULL, 1),
(4259, 'sandhiya m', '4', '9361155064', '', 'sandhiyamohanbabu3112@gmail.com', '2000-12-31', 20, '2', '2', 'mohanbabu', 'welding', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070031', '2', '1', 'upload_files/candidate_tracker/43941212910_SANDHIYA.doc', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'too long from singaperumal kovil', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:48:09', 1, '2021-04-07 08:49:41', 0, NULL, 1),
(4260, 'Bharath Kumar', '28', '9047509797', '', 'rockybharath4@gmail.com', '1995-12-13', 25, '2', '2', 'Panneer selvam', 'Business', 50000.00, 2, 0.00, 40000.00, 'Chennai', 'Chennai', '2104070032', '1', '2', 'upload_files/candidate_tracker/63559090603_BharathKumar_Resume.pdf', NULL, NULL, '2021-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-07 08:48:28', 1, '2021-04-07 08:59:35', 0, NULL, 1),
(4261, 'jefrin', '4', '9597225211', '', 'jeffyjeffry35@gmail.com', '2000-12-06', 20, '2', '2', 'kennet', 'driver', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070033', '2', '1', 'upload_files/candidate_tracker/92529080565_jefrin resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very low voice. will not suite for calling. she is 19.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:51:17', 1, '2021-04-07 08:52:33', 0, NULL, 1),
(4262, 'bhavani', '4', '9790788621', '', 'bhavanikavyakutty@gmail.com', '2000-09-20', 20, '2', '2', 'mani', 'watchman', 8000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070034', '2', '1', 'upload_files/candidate_tracker/87603171758_CV_2021-04-07-125920.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for Calling and handle pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:53:40', 1, '2021-04-07 08:55:12', 0, NULL, 1),
(4263, 'narmadha', '4', '6369642788', '', 'dkkeerthi2005@gmail.com', '2001-05-08', 19, '2', '2', 'ramesh', 'late', 8000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104070035', '2', '1', 'upload_files/candidate_tracker/47461975665_Narmatha.R ( resume).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'too long. singaperumalkovil', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:56:25', 1, '2021-04-07 08:57:45', 0, NULL, 1),
(4264, 'parameshwari', '4', '6380100209', '', 'umaraponiv123@gamil.com', '2001-01-06', 20, '2', '2', 'ramesh', 'security', 12000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070036', '2', '1', 'upload_files/candidate_tracker/74123507163_parameshwari resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'voice is not clear and no clarity. she is 19. will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 08:58:52', 1, '2021-04-07 09:00:14', 0, NULL, 1),
(4265, 'sudha lakshmi', '4', '6383241617', '', 'ganeshsudha2019@gmail.com', '2001-05-15', 19, '2', '2', 'ganeshan', 'cooli', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070037', '2', '1', 'upload_files/candidate_tracker/24130362389_Sudha Lakshmi Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '3', '8', '2021-04-22', 126312.00, '', '6', '2021-04-23', '2', 'For Priyanka team With CTC - 126312 Gross - 10526 xxamp TH - 10000', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:01:14', 7, '2021-04-21 09:49:49', 0, NULL, 1),
(4266, 'nishanthi', '4', '7338930634', '', 'nishanthigowri21042000@gmail.com', '2000-04-21', 20, '2', '2', 'saminathan', 'cooli', 10000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104070038', '2', '1', 'upload_files/candidate_tracker/31394757884_Document.pdf', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:06:18', 1, '2021-04-07 09:08:24', 0, NULL, 1),
(4267, 'sangeetha', '4', '7550126181', '', 'sangeetha82022@gmail.com', '1999-12-14', 21, '2', '2', 'karunanithi', 'cooli', 12000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104070039', '2', '1', 'upload_files/candidate_tracker/31889134573_K. Sangeetha.pdf', NULL, NULL, '2021-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:09:26', 1, '2021-04-07 09:10:55', 0, NULL, 1),
(4268, 'keerthiga', '4', '6383563114', '', 'keerthimakeerthi6@gmail.com', '2001-06-11', 19, '2', '2', 'ganeshan', 'cooli', 10000.00, 2, 0.00, 11000.00, 'chennai', 'chennai', '2104070040', '2', '1', 'upload_files/candidate_tracker/84453960678_resume . keerthi.docx', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up keep on smiling and will not suite for calling. too long.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-07 09:12:30', 1, '2021-04-07 09:14:04', 0, NULL, 1),
(4269, '', '0', '8778354184', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104070041', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-07 11:10:52', 0, NULL, 0, NULL, 1),
(4270, 'F. Delphina Mary', '21', '9940616151', '9710352906', 'delphina1986@gmail.com', '1986-06-08', 34, '2', '1', 'G. Franklin Amul Raj', 'Marriage Decorations', 15000.00, 1, 18000.00, 20000.00, 'No. 288,TV Nagar, Anna st, Ayanavaram, che - 23', 'No. 288,TV Nagar, Anna St, Ayanavaram, Che - 23', '2104080001', '1', '2', 'upload_files/candidate_tracker/73086435265_Delphina Resume.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '3', '2', '', '1', '1', '', '2', '2021-04-19', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 10:12:05', 50, '2021-04-08 10:32:57', 0, NULL, 1),
(4271, 'V. Nareshkumar', '4', '8825431813', '', 'Josephnaresh200@gmail.com', '2000-04-12', 20, '2', '2', 'V.Anuradha', 'Labour', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2104080002', '1', '1', 'upload_files/candidate_tracker/22181464899_naresh resume.docx', NULL, NULL, '2021-04-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not join, not interested', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 10:22:57', 8, '2021-04-08 05:42:40', 0, NULL, 1),
(4272, 'SUJITHA C', '4', '9094828185', '9094370398', 'sujithachandrasekar18@gmail.com', '2001-04-18', 19, '2', '2', 'CHANDRASEKAR R', 'DRIVER', 6000.00, 2, 0.00, 15000.00, '2/101-44th street kodungaiyur chn-118', '2/101-44th street kodungaiyur chn-118', '2104080003', '1', '1', 'upload_files/candidate_tracker/11482860096_AN DIST - College Students on 05.03.2021 (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for telesales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 10:25:03', 8, '2021-04-08 05:46:25', 0, NULL, 1),
(4273, 'Kavitha Murugan', '11', '9025966776', '', 'writetokavitha07@gmail.com', '1997-06-20', 23, '4', '2', 'Murugan M', 'Admin Assistant', 20000.00, 1, 14333.00, 18000.00, 'Chennai', 'Chennai', '2104080004', '', '2', 'upload_files/candidate_tracker/25091462720_Kavitha Updated Resume (1).pdf', NULL, NULL, '2021-04-08', 0, '', '2', '41', NULL, 0.00, '', '0', NULL, '1', 'telephonic by Kayal', '6', '1', '0', '1', '1', '0', '2', '2021-04-12', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:34:48', 1, '2021-04-08 10:38:03', 0, NULL, 1),
(4274, 'Anandhasekar', '4', '8754144301', '7358535569', 'Anandhasekar.m@gmail.com', '1995-12-05', 25, '1', '2', 'Mani', 'Cooly', 20000.00, 1, 22500.00, 30000.00, 'Sembakkam', 'Sembakkam', '2104080005', '', '2', 'upload_files/candidate_tracker/9297303825_Resume_Anandhasekar.pdf', NULL, NULL, '2021-04-08', 1, 'T1112', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for RM, 2.5 yr in acc. will not sustain for sales.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:35:40', 1, '2021-04-08 10:53:28', 0, NULL, 1),
(4275, 'Divakar.s', '6', '7395951597', '7299881368', 'divasad55@gmail.com', '2000-03-24', 21, '1', '2', 'Adhilakshmi', 'Security guard', 15000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2104080006', '', '1', 'upload_files/candidate_tracker/60135044596_divakar Resume.docx', NULL, NULL, '2021-04-08', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response', '5', '2', '', '1', '1', '', '2', '2021-05-10', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:42:34', 8, '2021-04-08 01:03:21', 0, NULL, 1),
(4276, 'deepika', '4', '7358418061', '', 'deepiraja007@gmail.com', '2000-11-20', 20, '2', '2', 'raja', 'nil', 9000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104080007', '2', '1', 'upload_files/candidate_tracker/94585706170_Document (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling. ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:43:54', 1, '2021-04-08 10:45:04', 0, NULL, 1),
(4277, 'Haritha', '4', '8015232315', '9843840266', 'pandiyanharitha@gmail.com', '1998-08-20', 22, '1', '2', 'Pandiyan', 'Fruit merchant', 30000.00, 0, 0.00, 15000.00, 'Vellorr', 'Vellore', '2104080008', '', '1', 'upload_files/candidate_tracker/94447974911_Hari resume 02.4.21.pdf', NULL, NULL, '2021-04-08', 0, 'Joba', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Tried reaching, no response for a long. In the initial discussion she Requested time to check with parents on the location, but didnt turn back ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:46:46', 1, '2021-04-08 10:51:01', 0, NULL, 1),
(4278, 'abinaya', '4', '7550244180', '', 'abinayachandran2000@gmail.com', '2001-08-15', 19, '2', '2', 'ramachandran', 'cooli', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104080009', '2', '1', 'upload_files/candidate_tracker/24273119971_Document (1) (1).pdf', NULL, NULL, '2021-04-08', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 10:55:52', 7, '2021-04-08 03:02:27', 0, NULL, 1),
(4279, 'Sri nandhini', '11', '8610415901', '', 'Nandhinisri101@gmail.com', '1990-06-06', 30, '1', '1', 'Logesh', 'Engineer', 250000.00, 0, 0.00, 150000.00, 'No 27, second Street, venkatesur,Chennai 118', 'No', '2104080010', '', '1', 'upload_files/candidate_tracker/6810935402_Srinandhini Resume-MBA HR-2-6.docx', NULL, NULL, '2021-04-08', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'No Response', '6', '2', '0', '1', '1', '0', '2', '2021-04-12', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 11:08:48', 1, '2021-04-08 11:29:06', 0, NULL, 1),
(4280, 'Santhosh kumar', '6', '8667514950', '9176449851', 'Santoshzeus@gmail.com', '1998-10-05', 22, '3', '2', 'M.d.sasikumar', 'Business', 30000.00, 2, 0.00, 13500.00, 'No 578 u block t.v.k nagar teynampet ch-18', 'No 578 U Block T.V.K Nagar Teynampet Ch-18', '2104080011', '', '1', 'upload_files/candidate_tracker/31740678708_SANTHOSH RESUME.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 11:27:06', 8, '2021-04-08 05:47:41', 0, NULL, 1),
(4281, 'Prasanth m', '4', '9600013732', '9500170888', 'Prasanthprasanth8928@gmail.com', '1998-03-13', 23, '3', '2', 'Marudhamuthu', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Ramapuram', '2104080012', '', '1', 'upload_files/candidate_tracker/5622562838_prasanthMuthu.docx', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, will not handle pressure. salary exp is high, already he was getting 18k in jk copier.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 11:46:29', 1, '2021-04-08 12:36:12', 0, NULL, 1),
(4282, 'Sakthi dass.R', '4', '9962057154', '9500757659', 'sakthisakthi4135@gmail.com', '1999-05-06', 21, '3', '2', 'Radhakrishnan.M', 'I got a job', 8000.00, 2, 0.00, 9000.00, 'Achrapakkam', 'Thuraipakkam', '2104080013', '', '1', 'upload_files/candidate_tracker/63479025189_ Sakthi, RESUME.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'had a telephonic interview and feel the same.', '1', '1', '0', '1', '1', '0', '2', '2021-04-12', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 11:55:19', 1, '2021-04-08 12:07:35', 0, NULL, 1),
(4283, 'Visali B k', '28', '7358592905', '', 'vishabas01@gmail.com', '1999-10-28', 21, '2', '2', 'M.baskaran', 'Business', 25000.00, 1, 0.00, 15000.00, 'Ambattur, chennai', 'Ambattur, chennai', '2104080014', '1', '1', 'upload_files/candidate_tracker/78300663363_Resume Visali.pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-08 01:15:12', 1, '2021-04-08 01:28:05', 0, NULL, 1),
(4284, 'Poojasritha S', '28', '9840864112', '6381049821', 'srithakumar0103@gmail.com', '2000-03-01', 21, '2', '2', 'Senthil kumar', 'Mechanical technion', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104080015', '1', '1', 'upload_files/candidate_tracker/98836292459_CV.docx', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-08 01:17:12', 1, '2021-04-08 01:26:17', 0, NULL, 1),
(4285, 'Kavya s', '4', '9176340449', '', 'kavya.sri9176@gmail.com', '2001-03-21', 20, '2', '2', 'J Srinivasan', 'Lathe work', 70000.00, 1, 0.00, 13000.00, 'No.19/49 senthil nagar,2nd main road chinna Por', 'No.19/49 senthil nagar,2nd Mhinn,Chennai 600116', '2104080016', '1', '1', 'upload_files/candidate_tracker/4598075574_S.Kavya.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 02:14:27', 8, '2021-04-08 05:54:28', 0, NULL, 1),
(4286, 'Uma Mageswaran', '17', '9884211084', '', 'mageswaranuma@gmail.com', '1981-05-11', 39, '2', '1', 'Deepthi', 'Software Engineer', 70000.00, 1, 75000.00, 60000.00, 'Kanchipuram', 'Kanchipuram', '2104080017', '16', '2', 'upload_files/candidate_tracker/56854357940_Resume - Uma Mageswaran -2020.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '2', '0', '1', '1', '0', '2', '2021-05-04', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 02:59:26', 1, '2021-04-08 03:03:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4287, 'abi jenifer', '4', '8680045864', '', 'jerlinabi0612@gmail.com', '2001-01-12', 20, '2', '2', 'amuldoss', 'driver', 70000.00, 1, 10000.00, 12000.00, 'dindivanam', 'ekkatuthangal', '2104080018', '1', '2', 'upload_files/candidate_tracker/99928120531_A.Abi Jenifer (1).pdf', NULL, NULL, '2021-04-08', 0, '', '3', '8', '1970-01-01', 126312.00, '', '2', '1970-01-01', '1', 'CTC - 126312, Gross-10526,TH-10000 for priyanka team', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 03:05:34', 7, '2021-04-11 03:52:06', 0, NULL, 1),
(4288, 'KEERTHIKA PUGAZHENDI', '28', '8925381294', '', 'keerthipugazh95@gmail.com', '1995-09-16', 25, '2', '2', 'Pugazhendi D', 'Government', 1.00, 1, 0.00, 20000.00, 'Tambaram Chennai', 'Tambaram', '2104080019', '1', '1', 'upload_files/candidate_tracker/11111642142_1617875938014_KEERTHIKA P (1).pdf', NULL, NULL, '2021-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-08 03:20:45', 1, '2021-04-08 03:29:54', 0, NULL, 1),
(4289, 'Wasil raseem', '4', '9789820321', '', 'wasilraseen985@gmail.com', '2000-05-02', 20, '2', '2', 'Abul hassan', 'Telecaller', 25000.00, 1, 20000.00, 17000.00, 'Porur', 'Porur', '2104080020', '16', '2', 'upload_files/candidate_tracker/98284262580_CV_2021-04-07-104746.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '1', 'not suitable for telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-08 03:22:58', 1, '2021-04-08 03:29:15', 0, NULL, 1),
(4290, 'mohamed aslam', '4', '7845375490', '6374113215', 'mdam6244@gmail.com', '1997-05-21', 23, '2', '2', 'thameem ansari', 'ac mech', 25000.00, 2, 0.00, 13000.00, 'mayakulam', 'manadi', '2104080021', '1', '1', 'upload_files/candidate_tracker/242627404_aslam pg cv.pdf', NULL, NULL, '2021-04-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'native language and his pronunciation was not good. will not suite for calling.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-08 03:31:26', 50, '2021-04-08 03:43:19', 0, NULL, 1),
(4291, '', '0', '8767877678', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104080022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-08 04:11:51', 0, NULL, 0, NULL, 1),
(4292, '', '0', '7890765434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104080023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-08 04:20:06', 0, NULL, 0, NULL, 1),
(4293, 'Gayathri.M', '4', '7418966594', '9445810877', 'gayusri98@gmail.com', '1998-03-06', 23, '2', '2', 'Mohan.K', 'MTC BUS DRIVER', 35000.00, 1, 8500.00, 15000.00, 'Chennai', 'Chrompet', '2104080024', '1', '2', 'upload_files/candidate_tracker/53233457591_gayu resume.docx', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for crm', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 06:25:01', 1, '2021-04-10 11:24:32', 0, NULL, 1),
(4294, 'A.jayapriya', '4', '7868908360', '8056045218', 'jayapriya31199@gmail.com', '1999-11-03', 21, '2', '2', 'E.Arul', 'Bakery master', 180000.00, 1, 0.00, 12000.00, 'Chennai', 'Old Washermanpet', '2104080025', '1', '1', 'upload_files/candidate_tracker/85987221230_JAYAPRIYA resume-converted.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up done her beautician course and looking Relevant profile, time being she is looking for job', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 06:25:14', 1, '2021-04-10 11:31:40', 0, NULL, 1),
(4295, 'Murlidaran M', '8', '7904528174', '9442060138', 'mmmdaran04@gmail.com', '1993-10-29', 27, '2', '2', 'Manivannan m', 'Retired', 500000.00, 1, 9736.00, 15000.00, 'Chennai', 'Chennai', '2104080026', '1', '2', 'upload_files/candidate_tracker/56488374219_MURLIDARAN.M(1).pdf', NULL, NULL, '2021-04-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'done his nism coures apart from this he knows nothind, for the past 4 yrs he was preparing for bank exams.', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 06:36:21', 1, '2021-04-08 06:41:45', 0, NULL, 1),
(4296, 'Madhumitha S', '23', '7010798772', '9944336962', 'Madhusekar311@gmail.com', '1998-03-11', 23, '2', '2', 'Sekar', 'Assistant engineer, state government', 55000.00, 1, 0.00, 13000.00, 'Thanjavur', 'Chennai', '2104080027', '1', '1', 'upload_files/candidate_tracker/29179573726_Madhumitha resume .pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Appeared for UI/UX, no relevant knowledge ,into App Development but not into Reactnative\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-08 07:03:05', 1, '2021-04-08 10:23:42', 0, NULL, 1),
(4297, 'Giridharan J', '4', '9047246722', '', 'girijawahar.m@gmail.com', '1997-08-09', 23, '2', '2', 'Jawahar M', 'Car machine', 15000.00, 1, 10500.00, 15000.00, 'Mayiladuthurai', 'Poonameella', '2104080028', '1', '2', 'upload_files/candidate_tracker/43068540809_GIRI RESUME - Copy.doc', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 07:34:14', 1, '2021-04-08 07:39:32', 0, NULL, 1),
(4298, 'S.Rajalakshmi', '4', '8682888012', '7418209477', 'rajimoorthy1597@gmail.com', '1997-06-15', 23, '2', '2', 'Gomathi', 'Housewife', 25000.00, 3, 100000.00, 15000.00, 'Chennai', 'Chennai', '2104080029', '1', '2', 'upload_files/candidate_tracker/95880339130_Adobe Scan Apr 09, 2021.pdf', NULL, NULL, '2021-04-09', 2, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for non voice. will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-08 08:26:17', 1, '2021-04-09 12:29:33', 0, NULL, 1),
(4299, '', '0', '7358085813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104080030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-08 11:54:16', 0, NULL, 0, NULL, 1),
(4300, 'G.Mahalakshmi', '4', '9080625479', '9600146542', 'mahalakshmi060598@gmail.com', '1998-05-06', 22, '2', '2', 'Rajeshwari', '96000', 8000.00, 1, 0.00, 14000.00, 'Nandambakkam', 'Nandambakkam', '2104090001', '1', '1', 'upload_files/candidate_tracker/10017941191_G.MAHALAKSHMI.docx', NULL, NULL, '2021-04-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested will not join', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 10:31:06', 50, '2021-04-09 02:59:10', 0, NULL, 1),
(4301, 'Prabhavathi', '4', '9025994991', '6385504912', 'Prabhavathima@gmil.com', '1996-05-12', 24, '2', '2', 'Malarkodi', '100000', 10000.00, 0, 14000.00, 15000.00, 'Trichy', 'ekkattudhangal', '2104090002', '1', '2', 'upload_files/candidate_tracker/75570389806_IMG_20201201_221029.pdf', NULL, NULL, '2021-04-09', 2021, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not handle pressure, looking for non Target job.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 10:32:53', 50, '2021-04-09 11:21:07', 0, NULL, 1),
(4302, 'ks bharadwaj', '4', '8778795501', '7358420163', 'mswaaj@gmail.com', '1995-01-09', 26, '2', '2', 'rk shanmugam', 'retired', 30000.00, 1, 10000.00, 13000.00, 'chennai', 'chennai', '2104090003', '1', '2', 'upload_files/candidate_tracker/21290927870_Bharad Resume (1).pdf', NULL, NULL, '2021-04-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very hyper active and he was into cine field. will not sustain for long period. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-09 10:57:02', 50, '2021-04-09 11:27:56', 0, NULL, 1),
(4303, 'S.Asha', '4', '9499911316', '6382294645', 'ashasathaiya@gmail.com', '1999-07-20', 21, '1', '2', 'G.Sathaiya', 'Tailor', 12000.00, 1, 0.00, 13000.00, '211,Amman Koil Street, Seven Wells, Chennai-600001', '211,Amman koil street, seven wells, chennai-600001', '2104090004', '', '1', 'upload_files/candidate_tracker/56292502662_asha resume.pdf', NULL, NULL, '2021-04-09', 0, 'P1152', '3', '60', '2021-04-19', 126312.00, '', '6', '2021-04-20', '2', 'Selected for Priyanka Team,CTc - 126312,Gross - 10526 TH - 10000', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-09 11:01:46', 60, '2021-04-17 02:46:51', 0, NULL, 1),
(4304, 'Vivek C', '16', '9791009279', '', 'vivek11surya@gmail.com', '1993-05-31', 27, '2', '2', 'Viswanathan M K', 'Manager', 30000.00, 0, 0.00, 17000.00, 'Valasaravakkam', 'Valasaravakkam', '2104090005', '1', '1', 'upload_files/candidate_tracker/44345659899_Vivek Res.docx', NULL, NULL, '2021-04-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'comm is good, very basics in excel. ', '3', '1', '', '1', '1', '', '2', '2021-04-12', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-09 11:03:12', 50, '2021-04-09 11:20:48', 0, NULL, 1),
(4305, 'Prashanth kumar', '6', '9791047288', '8778995278', 'prashanth.murugan869@gmail.com', '1994-12-21', 26, '2', '2', 'S.murugan', 'My Father work stone writter', 100000.00, 2, 13500.00, 17000.00, '15/22 Kumaran nager 3rd Street kaladipet TVT', 'Chennai', '2104090006', '1', '2', 'upload_files/candidate_tracker/43211294798_1615960589022_prashanth kumar resume 2021.docx', NULL, NULL, '2021-04-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'collection exe joined and Completed training.', '5', '1', '0', '1', '1', '0', '2', '2021-04-12', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 11:21:53', 1, '2021-04-09 12:20:10', 0, NULL, 1),
(4306, 'v sarath kumar', '6', '9566090407', '', 'trippyboysarath@gmail.com', '2006-04-09', 15, '1', '2', 'm.vijayakumar', 'driver', 15000.00, 2, 15000.00, 16000.00, 'chennai', 'chennai', '2104090007', '', '2', 'upload_files/candidate_tracker/4661077762_Sarath_Resume_Format2 (1).pdf', NULL, NULL, '2021-04-09', 40, 'p1177', '3', '60', '2021-04-19', 189468.00, '', '3', '2021-04-26', '1', 'Selected for Syed Team,CTC - 189468 Gross - 15789, TH - 15000', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-09 11:27:27', 60, '2021-04-17 04:17:50', 0, NULL, 1),
(4307, '', '0', '9444160861', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104090008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-09 11:44:06', 0, NULL, 0, NULL, 1),
(4308, 'mary agnes. b', '28', '9566106373', '9962411175', 'agnesmary25@gmail.com', '1992-04-25', 28, '2', '1', 'rajesh', 'associated director in film industry', 20000.00, 0, 12000.00, 18000.00, 'periyar nagar', 'aynavaram', '2104090009', '1', '2', 'upload_files/candidate_tracker/39173284689_I am sharing', NULL, NULL, '2021-04-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '2yr gap, looking for job bcoz she is bored at home. newly married. exp is 18k', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 11:59:17', 50, '2021-04-09 12:24:44', 0, NULL, 1),
(4309, 'Monisha R', '28', '8838401679', '', 'monisharavisankar@gmail.com', '1995-11-17', 25, '2', '2', 'Ravi sankar', 'LIC agent', 30000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2104090010', '1', '1', 'upload_files/candidate_tracker/39646126899_1614763092033_RESUME.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-09 01:13:07', 1, '2021-04-09 01:47:57', 0, NULL, 1),
(4310, 'Sakthi P', '13', '8925771127', '', 'sakthiikeerthu@gmail.com', '2001-07-08', 19, '2', '2', 'Hemavathi P', 'Business', 20000.00, 1, 0.00, 12000.00, 'No. 6,A P Road,choolai Chennai-600112', 'No. 6,A P Road,Choolai Chennai-600112', '2104090011', '1', '1', 'upload_files/candidate_tracker/32868671759_CV_SAKTHI.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Little bit knowledge in HTML CSS ,No Javascript knowledge not open for Agreement too', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-09 02:24:21', 1, '2021-04-09 02:30:03', 0, NULL, 1),
(4311, 'Keerthana', '4', '7358401520', '', 'Kkeerthana0520@gmail.com', '1997-12-20', 23, '2', '1', 'Kumaresan', 'driver', 20000.00, 1, 18000.00, 20000.00, 'Chennai', 'chennai', '2104090012', '1', '2', 'upload_files/candidate_tracker/53678908630_keerthi resume updated.pdf', NULL, NULL, '2021-04-09', 0, '', '3', '8', '2021-04-12', 214740.00, '', '5', '1970-01-01', '2', 'Selected as Sourcing TL - 214740\nGross- 17895 TH - 17000', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-09 02:28:37', 7, '2021-04-11 03:52:32', 0, NULL, 1),
(4312, 'M.keerthana', '4', '7708287475', '', 'KeerthiKeerthu318@gmail.com', '2000-01-18', 21, '2', '2', 'K.Murthy', 'Electrician', 25000.00, 1, 0.00, 13000.00, 'No.1980 TNHB kakkalur byepass road Thiruvallur', 'No.1980 TNHB kakkalur byepass road Thiruvallur', '2104090013', '1', '1', 'upload_files/candidate_tracker/69149743595_keerthi_resume.pdf', NULL, NULL, '2021-04-09', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-09 02:31:31', 50, '2021-04-09 03:00:58', 0, NULL, 1),
(4313, '', '0', '9840794947', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104090014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-09 02:33:23', 0, NULL, 0, NULL, 1),
(4314, 'Manoj', '28', '9092026013', '7358882939', 'manojkumar1198@gmail.com', '1998-11-11', 22, '2', '2', 'Ravisankar', 'Lic agemt', 30000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2104090015', '1', '1', 'upload_files/candidate_tracker/80946707079_manoj.r resume.pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-09 04:36:23', 1, '2021-04-09 04:39:18', 0, NULL, 1),
(4315, 'Radha krishnan J', '11', '8925466143', '8015194415', 'radhakrishnan4428@gmail.com', '2000-05-22', 20, '2', '2', 'Jagadeesh', 'Tool maker', 250000.00, 1, 0.00, 15000.00, 'Chennai', 'Mogappair', '2104090016', '1', '1', 'upload_files/candidate_tracker/20580521454_krishnan resume.pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-09 04:42:40', 1, '2021-04-09 04:48:18', 0, NULL, 1),
(4316, '', '0', '9841664259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104090017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-09 05:06:08', 0, NULL, 0, NULL, 1),
(4317, '', '0', '7401773587', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104090018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-09 06:41:02', 0, NULL, 0, NULL, 1),
(4318, 'Diwakar R S', '28', '9786423073', '', 'diwakar.r.s97@gmail.com', '1997-05-21', 23, '2', '2', 'Rajasigamani', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2104090019', '1', '1', 'upload_files/candidate_tracker/98536467245_diwakar resume (1).pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-09 09:50:08', 1, '2021-04-09 09:55:39', 0, NULL, 1),
(4319, 'jayasri', '13', '7373557074', '', 'jayasree.pandian@gmail.com', '1994-12-11', 26, '2', '2', 'pandian', 'junior web developer', 12000.00, 2, 12000.00, 20000.00, 'chidambaram', 'chidambaram', '2104100001', '1', '2', 'upload_files/candidate_tracker/81277798511_JP_Resume (1).pdf', NULL, NULL, '2021-04-12', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Knowledge in HTML CSS, High Pay Expectation1 yr Exp', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 06:35:14', 1, '2021-04-10 06:39:21', 0, NULL, 1),
(4320, 'SRINIVASAN', '20', '8072413657', '9940531513', 'randyseenu77@gmail.com', '1997-12-07', 23, '2', '2', 'SENTHILVEL', 'CONSURABLE LOAN', 27000.00, 1, 11500.00, 17000.00, 'No.9 school Street 5th cross jnnai-83', 'Chennai', '2104100002', '1', '2', 'upload_files/candidate_tracker/77216377350_srinivasan.curriculam vitae.word.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales profile.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-10 10:16:57', 1, '2021-04-10 10:29:21', 0, NULL, 1),
(4321, 'Elakkiya', '4', '8056192805', '9578982543', 'elakkiyakrishnan7197@gmail.com', '1997-01-07', 24, '3', '2', 'Krishnan.s', 'Driver', 20000.00, 2, 12800.00, 13.00, 'Tindivanam', 'MM nagar', '2104100003', '', '2', 'upload_files/candidate_tracker/81906439631_ELAKKIYA-KRISHNAN-RESUME.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Confidence Level very low \nnot suitable for telesales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 10:21:36', 1, '2021-04-10 10:28:42', 0, NULL, 1),
(4322, 's selva praveen', '30', '7401813707', '', 'selva07praveen@gmail.com', '1996-09-07', 24, '2', '2', 's selva raj', 'tamilnadu police', 40000.00, 1, 15000.00, 20000.00, 'chennai', 'chennai', '2104100004', '1', '2', 'upload_files/candidate_tracker/55163336667_Praveen Selva Resume 2021.docx', NULL, NULL, '2021-04-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for this profile. knows only basics in stocks, doing his own trading and lost funds.', '9', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 10:22:25', 50, '2021-04-10 11:14:01', 0, NULL, 1),
(4323, '', '0', '7894561230', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104100005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-10 10:27:03', 0, NULL, 0, NULL, 1),
(4324, 'Kalaiselvi', '4', '9360122765', '8056192805', 'kalai861999@gmail.com', '1999-06-08', 21, '2', '2', 'T.Rajendran', 'Pillow export', 20000.00, 1, 0.00, 12000.00, 'Kumbakonam', 'MM nagar', '2104100006', '1', '1', 'upload_files/candidate_tracker/17113809767_Adobe Scan Jan 18, 2021 (1).pdf', NULL, NULL, '2021-04-10', 0, '', '3', '8', '2021-04-15', 132636.00, '', '3', '2021-05-06', '2', 'for muthu teamCTC- 1,32,636 Gross - 11053 Th - 10500', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 10:36:31', 7, '2021-04-13 06:26:25', 0, NULL, 1),
(4325, 'M.Pathmanaban', '4', '6374773186', '', 'Mpathmanabanpowerbarath@gmail.com', '2000-10-24', 20, '2', '2', 'Muthuraman', 'Farmer', 12000.00, 1, 0.00, 11000.00, 'Nolambur', 'Neelankarai', '2104100007', '1', '1', 'upload_files/candidate_tracker/72197394549_pathmanaban 2021.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 10:52:00', 1, '2021-04-10 11:39:25', 0, NULL, 1),
(4326, 'Karthikeyan.K', '4', '7299466370', '8667834070', 'keyank953@gmail.com', '1997-06-06', 23, '2', '2', 'Kalyanasundar.B', 'Daily wage', 12000.00, 1, 14000.00, 15000.00, 'West mambalam', 'West mambalam', '2104100008', '1', '2', 'upload_files/candidate_tracker/18461218726_updated Resume-karthikeyan.docx', NULL, NULL, '2021-04-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for CRM, no bile as RE. exp is14k', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:01:24', 50, '2021-04-10 11:14:16', 0, NULL, 1),
(4327, 'Venkataramanan k', '4', '8667834070', '7299466370', 'charlescool3108@gmail.com', '1997-02-19', 24, '2', '2', 'Lakshmi', 'Cooking work', 10000.00, 0, 14000.00, 15000.00, 'Tambaram', 'Tambaram', '2104100009', '1', '2', 'upload_files/candidate_tracker/34748115379_VENKAT1.doc', NULL, NULL, '2021-04-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not int in field sales, looking for calling but expt is 15k. will not suite for this package', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:09:31', 50, '2021-04-10 11:27:45', 0, NULL, 1),
(4328, 'Amalan C', '30', '7305434966', '7904668226', 'amalc.21@gmail.com', '1990-05-29', 30, '2', '2', 'Aabaranam', 'House wife', 25000.00, 4, 25000.00, 30000.00, 'Tirunelveli', 'Chennai', '2104100010', '1', '2', 'upload_files/candidate_tracker/85921597016_14215_Amal Resume new.doc', NULL, NULL, '2021-04-12', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'can try for 1st start-vasu', '9', '2', '', '1', '1', '', '2', '2021-04-19', '2', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:10:07', 50, '2021-04-12 10:50:10', 0, NULL, 1),
(4329, 'Gowsalya. M', '4', '9025151571', '', 'gowwkitty134@gmail.com', '2000-01-04', 21, '2', '2', 'Muniyammal', 'Housewife', 5000.00, 1, 0.00, 10.00, 'Ramanathapuram', 'Tambaram', '2104100011', '1', '2', 'upload_files/candidate_tracker/28020455862_1583240657943600_Gowshalya_col-3.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Nonvoice', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:10:42', 50, '2021-04-10 11:59:52', 0, NULL, 1),
(4330, 'sairam', '6', '9677117409', '7904670527', 'saipandu9596@gmail.com', '1995-06-04', 25, '2', '2', 'sukumar', 'watercan business', 18000.00, 2, 0.00, 12000.00, 'chennai', 'palavakkam', '2104100012', '1', '1', 'upload_files/candidate_tracker/94281473242_SAIRAM.docx', NULL, NULL, '2021-04-10', 0, '', '3', '60', '2021-04-19', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team CTC - 156000 Gross - 13000 TH - 12350', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:36:24', 60, '2021-04-17 04:11:04', 0, NULL, 1),
(4331, 'Mohamed thariqe', '4', '9791889492', '', 'Thariq880@gmail.com', '1999-01-07', 22, '2', '2', 'Mohamed naina', 'Store keeper', 10000.00, 2, 0.00, 12000.00, 'Triplicane', 'Triplicane', '2104100013', '1', '1', 'upload_files/candidate_tracker/27578692212_1602852146633Resume_Mohamed.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for any current , not speaking up and will not suite for calling and sales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 11:43:22', 50, '2021-04-10 12:07:59', 0, NULL, 1),
(4332, 'VILMAR', '4', '8270797112', '8608020406', 's.j.vilmar18@gmail.com', '1999-08-18', 21, '4', '2', 'SELVARAJ', 'Day worker', 20000.00, 3, 0.00, 12000.00, '24/7,kamaraj Street,VVR Nagar,sayalgudi', 'Kotturpuram', '2104100014', '', '1', 'upload_files/candidate_tracker/10861195046_VILMAR NR.pdf', NULL, NULL, '2021-04-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-10 12:54:41', 1, '2021-04-10 01:01:27', 0, NULL, 1),
(4333, '', '0', '7338995571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104100015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-10 01:15:11', 0, NULL, 0, NULL, 1),
(4334, 'raviji', '5', '7708806802', '', 'miltonveera3@gmail.com', '1991-12-04', 29, '2', '2', 'raj', 'rtd', 30000.00, 1, 28000.00, 30000.00, 'aynavaram', 'aynavaram', '2104100016', '3', '2', 'upload_files/candidate_tracker/6476142923_raviji.pdf', NULL, NULL, '2021-04-09', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'check for RM, has exp in banking and finance. fresher for us.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-10 01:28:50', 7, '2021-04-10 01:39:23', 0, NULL, 1),
(4335, 'Manickaraj', '13', '9944468055', '', 'manickarajj06@gmail.com', '1991-06-01', 29, '3', '2', 'Subbiah', 'Self busines', 10000.00, 30, 0.00, 15000.00, 'Sathankulam', 'Porur', '2104100017', '', '1', 'upload_files/candidate_tracker/75413371194_Resume (2).docx', NULL, NULL, '2021-04-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude issue, sustainability doubt, High CTC Expectation', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-10 01:39:59', 60, '2021-04-17 10:15:59', 0, NULL, 1),
(4336, 'S.Meena', '7', '6380249146', '9884319723', 'smeenasekar28@gmail.com', '1994-12-14', 26, '2', '2', 'N.sekar', 'Culli', 15000.00, 1, 0.00, 16000.00, 'Porur', 'Porur', '2104100018', '1', '2', 'upload_files/candidate_tracker/32334006330_Meena resume 2021.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'will not suite for MF', '7', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-10 02:41:22', 1, '2021-04-10 03:04:42', 0, NULL, 1),
(4337, 'Prashanth krishna', '30', '9840132259', '8825415745', 'Prashanthk563@yahoo.in', '1995-04-29', 25, '2', '2', 'S.visvanathan', 'Retired', 100000.00, 1, 17334.00, 28000.00, 'Chennai', 'Chennai', '2104100019', '1', '2', 'upload_files/candidate_tracker/1205030434_Resume_prashanth.docx', NULL, NULL, '2021-04-12', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'only for ops - fresher to stcoks', '9', '2', '', '1', '1', '', '2', '2021-04-19', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 02:57:47', 50, '2021-04-12 10:44:47', 0, NULL, 1),
(4338, 'Chaithra', '28', '9743770412', '8122160821', 'chaithrajayababu@gmail.com', '1992-07-22', 28, '2', '1', 'Rajeshwaran', 'Business', 20000.00, 0, 15000.00, 30000.00, 'Annanur', 'Annanur', '2104100020', '1', '2', 'upload_files/candidate_tracker/76182471752_Chaithra.docx', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Distance too long, Not much Relevant ', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 04:21:22', 1, '2021-04-11 03:21:49', 0, NULL, 1),
(4339, '', '0', '7397289514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104100021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-10 04:52:50', 0, NULL, 0, NULL, 1),
(4340, 'Ramya S', '28', '7200216190', '7868857642', 'ramya23.sbm@gmail.com', '1994-02-23', 27, '2', '1', 'Rajkumar', 'Assistant Manager in Amazon Kiosk', 2800.00, 2, 30000.00, 30000.00, 'Dindigul', 'Velachery, Chennai', '2104100022', '1', '2', 'upload_files/candidate_tracker/89538195662_Ramya - Resume.doc', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is average, only into report Analyst Not much suits for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 04:58:35', 1, '2021-04-10 10:19:24', 0, NULL, 1),
(4341, 'R.Arun Shankar', '4', '9940315545', '8072930060', 'Ajheddys@gmail.com', '1998-07-16', 22, '2', '2', 'Ramaiah', 'Lathe worker', 35000.00, 1, 0.00, 12000.00, 'Mamallapuram', 'Thuraipakkam', '2104100023', '1', '1', 'upload_files/candidate_tracker/82446061216_Arun_Resume_Format2.pdf', NULL, NULL, '2021-04-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, very slow and gap while speaking', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-10 05:11:29', 1, '2021-04-10 05:16:37', 0, NULL, 1),
(4342, 'Amal S', '28', '9746392721', '', 'amalsnair77@gmail.com', '1998-03-06', 23, '2', '2', 'Sasikumar R', 'Business', 30000.00, 1, 0.00, 15000.00, 'Kottayam', 'Kottayam', '2104100024', '1', '1', 'upload_files/candidate_tracker/14214641644_Amal S_Saintgits college of Engineering.pdf', NULL, NULL, '2021-04-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 05:46:24', 1, '2021-04-10 05:49:05', 0, NULL, 1),
(4343, 'Ajay', '22', '8124327710', '', 'ayaj8814@gmail.com', '2000-02-10', 21, '2', '2', 'Anadhan. M', 'Supervisor', 12000.00, 1, 0.00, 5000.00, 'Porur', 'Porur', '2104100025', '1', '1', 'upload_files/candidate_tracker/15328042886_Resume AJ01.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Appeared for Intern,Passout year to be 2022,will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 05:50:59', 1, '2021-04-10 06:19:09', 0, NULL, 1),
(4344, 'Amal S', '28', '7012850142', '9746392721', 'amalsnair77@gmail.com', '1998-03-06', 23, '2', '2', 'Sasikumar R', 'Business', 30000.00, 1, 0.00, 15000.00, 'Kottayam', 'Kottayam', '2104100026', '1', '1', 'upload_files/candidate_tracker/60841529788_Amal S_Saintgits college of Engineering.pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-10 06:04:46', 1, '2021-04-10 06:07:19', 0, NULL, 1),
(4345, 'D.j.shyam kumar', '4', '9003495948', '9710465726', 'Shyam.jayakumar0219@gmail.com', '1999-02-19', 22, '2', '2', 'D.jayakumar', 'Post man', 100000.00, 1, 0.00, 10000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2104100027', '1', '1', 'upload_files/candidate_tracker/76135943331_Shyamkumar Resume.docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Not Turned After Lunch.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-10 10:32:02', 1, '2021-04-12 11:52:29', 0, NULL, 1),
(4346, 'Vignesh E', '7', '8667800484', '9940119974', 'Vigneshelumalai82@gmail.com', '1996-03-18', 25, '2', '2', 'Elumalai', 'Milk business', 20000.00, 1, 11000.00, 13000.00, 'Padi', 'Padi', '2104110001', '1', '2', 'upload_files/candidate_tracker/54752461287_Vignesh Curriculam vitae .pdf', NULL, NULL, '2021-04-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-11 10:56:32', 1, '2021-04-11 11:05:37', 0, NULL, 1),
(4347, '', '0', '8124643554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 05:57:39', 0, NULL, 0, NULL, 1),
(4348, 'Amalan C', '30', '7904668226', '7305434966', 'amalc.21@gmail.com', '1990-05-29', 30, '2', '2', 'Aabaranam', 'House wife', 25000.00, 4, 25000.00, 30000.00, 'Tirunelveli', 'Chennai', '2104120002', '1', '2', 'upload_files/candidate_tracker/53082592728_14215_Amal Resume new.doc', NULL, NULL, '2021-04-12', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '9', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:31:39', 50, '2021-04-12 10:44:16', 50, '2021-04-12 10:49:59', 0),
(4349, 'M.Gopi', '4', '8682854149', '', 'Gopiat999@gmail.com', '1997-11-09', 23, '2', '2', 'S.murugan', 'Dealer', 10000.00, 1, 12000.00, 17000.00, 'Avadi', 'Avadi', '2104120003', '1', '2', 'upload_files/candidate_tracker/38104386752_Gopi resume 2 Dep.docx', NULL, NULL, '2021-04-12', 15, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'pls check for dealer', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:44:26', 50, '2021-04-12 11:38:13', 0, NULL, 1),
(4350, 'Praveen kumar', '30', '9751229732', '', 'praveenppk.kumar@gmail.com', '1997-03-25', 24, '2', '2', 'Palani kumar', 'Metal worker', 40000.00, 1, 2.00, 3.00, 'MADURAI', 'MADURAI', '2104120004', '1', '2', 'upload_files/candidate_tracker/28440587468_P.Praveen Kumar.pdf', NULL, NULL, '2021-04-12', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '9', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:46:20', 50, '2021-04-12 11:38:53', 0, NULL, 1),
(4351, 'Yuvahariharan', '4', '8667816587', '9442222236', 'Harih311031@gmail.com', '1997-11-03', 23, '2', '2', 'Ravi', 'Business', 25000.00, 2, 0.00, 12500.00, 'Thiruvannamalai', 'Ambattur', '2104120005', '1', '1', 'upload_files/candidate_tracker/70700343187_1613531119211Resume_Yuvahariharan.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for telecalling, very low voice.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:56:26', 50, '2021-04-12 11:37:46', 0, NULL, 1),
(4352, 'Parthiban.s', '6', '8124600570', '8667816587', 'parthiparthiban529@gmail.com', '1997-02-04', 24, '2', '2', 'E.sundaramoorthy', 'car driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104120006', '1', '1', 'upload_files/candidate_tracker/24047884037_0_parthiban resume(1)(1).pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'We hold the candidate 4 months back for suthagar team and now there is no response from the candidate. Tried reaching him couple of time.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:59:45', 50, '2021-04-12 01:05:06', 0, NULL, 1),
(4353, 'Surya s', '4', '8754078388', '9047113949', 'www.suryakrish141@gmail.com', '1998-09-10', 22, '2', '2', 'Sivakumar R', 'Government employee', 400000.00, 1, 0.00, 12000.00, 'Ariyalur', 'T Nagar', '2104120007', '1', '1', 'upload_files/candidate_tracker/51680977847_MY RESUME .pdf', NULL, NULL, '2021-04-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up and very slow. will not suite for calling.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 10:59:51', 50, '2021-04-12 11:28:26', 0, NULL, 1),
(4354, 'K.Thamizhselvan', '4', '7598842495', '', 'arunthamizh29@gmail.com', '1999-09-29', 21, '2', '2', 'R.Kumaravel', 'Farmer', 25000.00, 3, 0.00, 15000.00, 'Ariyalur', 'Chennai', '2104120008', '1', '1', 'upload_files/candidate_tracker/85705441343_RKT RESUME.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very low voice and no confidence level, rejected.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 11:00:32', 50, '2021-04-12 11:36:50', 0, NULL, 1),
(4355, 'suresh s', '7', '9790818430', '9952084510', 'sureshsrinivasan997@gmail.com', '1995-04-09', 26, '2', '2', 'srinivasan g', 'cooli', 15000.00, 4, 12000.00, 15000.00, 'chennai', 'triplicane', '2104120009', '1', '2', 'upload_files/candidate_tracker/99319303623_SureshSrinivasan Resume 2.doc', NULL, NULL, '2021-04-12', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no degree, poor communication and will not suite for this profile.', '7', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-12 11:16:41', 1, '2021-04-12 11:49:49', 0, NULL, 1),
(4356, 'K.Kokiladevi', '7', '9176181681', '', 'devikoki1996@gmail.com', '1995-01-18', 27, '2', '2', 'M.KUMAR', 'Timber', 50000.00, 2, 15000.00, 20000.00, 'Kattumannar koil', 'PTC , Thoraipakkam', '2104120010', '1', '2', 'upload_files/candidate_tracker/8688756649_KOKILADEVI.K .pdf', NULL, '1', '2022-03-01', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 5m exp in MF looking for salary and carrier growth. will not sustain her sal expt is 20k. ', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-12 11:26:41', 1, '2022-03-01 10:41:42', 0, NULL, 1),
(4357, 'Subash shankar', '6', '9597614247', '9597372134', 'santhoshsivan1704@gmail.com', '1999-04-17', 21, '2', '2', 'Ragavan', 'Customer relationship manager', 30000.00, 0, 0.00, 15000.00, 'Tirunelveli', 'Tambaram', '2104120011', '1', '1', 'upload_files/candidate_tracker/68399035098_Subash_Resume-01.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability doubts dropped ', '5', '1', '', '1', '1', '', '2', '2021-04-17', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 11:33:29', 50, '2021-04-12 01:20:28', 0, NULL, 1),
(4358, 'K. Soundharrajan', '4', '9751911229', '6369154653', 'Soundharr74@gmail.com', '2000-06-25', 20, '3', '2', 'Kamaraj', 'Customer Relationship manager', 25000.00, 3, 0.00, 13000.00, 'Dhamapuri', 'Tambaram', '2104120012', '', '1', 'upload_files/candidate_tracker/99218164435_soundhar.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'He could not speak tamil fluently, he knpw oly rajasthani language.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-12 11:37:25', 1, '2021-04-12 11:47:55', 0, NULL, 1),
(4359, 'Poornachander', '4', '6385107113', '9003495948', 'poornacan@gmail.com', '1996-03-13', 25, '2', '2', 'Raju', 'Manager', 100000.00, 1, 0.00, 10000.00, 'Besant nagar', 'Besant nagar', '2104120013', '1', '1', 'upload_files/candidate_tracker/13303224214_0_POORNA NEW RES.docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned after lunch.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-12 11:44:11', 1, '2021-04-12 11:53:55', 0, NULL, 1),
(4360, 'vimal raaj', '4', '9710881038', '7550060866', 'wilsonvimal288@gmail.com', '1998-07-25', 22, '2', '2', 'gopi kumar', 'business', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2104120014', '1', '1', 'upload_files/candidate_tracker/74523506220_vimal.resume (2).docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, ideal in home and looking for job.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 11:44:28', 50, '2021-04-12 12:53:09', 0, NULL, 1),
(4361, 'lakshmikanthan', '4', '9884931295', '', 'lakshmikanthan8034@gmail.com', '1995-12-03', 25, '2', '2', 'nagalingam d', 'business', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2104120015', '5', '1', 'upload_files/candidate_tracker/40888407997_1612779099930_LK RESUME cOMPLETED (1).docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '1', '1', '0', '1', '1', '0', '2', '2021-04-19', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-12 11:58:01', 1, '2021-04-12 12:06:13', 0, NULL, 1),
(4362, 'Ashok kumar', '4', '9962051833', '', 'ashismith95@gmail.com', '1995-10-12', 25, '1', '2', 'Vijayakumar', 'Petrol bunk', 12000.00, 1, 0.00, 10000.00, 'Tambaram', 'Tambaram camp road', '2104120016', '', '1', 'upload_files/candidate_tracker/67278535498_0_0_1615532191853_1611675959267_Resume.docx', NULL, NULL, '2021-04-12', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '1', '2', '0', '1', '1', '0', '2', '2021-04-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-12 12:02:28', 1, '2021-04-12 12:10:57', 0, NULL, 1),
(4363, 'Jareena begum', '4', '7338706466', '8189890151', 'Jareenabegum3853@gmail', '1992-04-25', 28, '2', '2', 'Noornissa', 'Housewife', 15000.00, 2, 13000.00, 15000.00, 'Chennai', 'Triplicane', '2104120017', '1', '2', 'upload_files/candidate_tracker/60447994734_!!FORD!!.docx', NULL, NULL, '2021-04-12', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 12:04:19', 8, '2021-04-12 05:01:25', 0, NULL, 1),
(4364, 'Deepika', '28', '9865217783', '', 'Deepikarajanj6@gmail.com', '1993-11-28', 27, '2', '1', 'Lokkesh', 'IT', 35000.00, 0, 2.70, 3.70, 'Chennai', 'Chennai', '2104120018', '1', '2', 'upload_files/candidate_tracker/56342843379_1609755992719Resume_Deepika (1).pdf', NULL, NULL, '2021-04-14', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 12:17:50', 1, '2021-04-12 12:23:01', 0, NULL, 1),
(4365, 'ALAGARSAMY.S', '4', '8940864508', '8248138940', 'alagarmca006@gmail.com', '1993-02-12', 28, '2', '2', 'Sathan.S', 'Farmer', 15000.00, 2, 15000.00, 15000.00, 'Ennore', 'Ennore', '2104120019', '1', '2', 'upload_files/candidate_tracker/95905123235_1615992287310_1615985309145_mca.docx', NULL, NULL, '2021-04-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, very slow and expt sal is 17k.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 01:05:11', 50, '2021-04-12 01:57:17', 0, NULL, 1),
(4366, '', '0', '9944028952', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 01:08:50', 0, NULL, 0, NULL, 1),
(4367, 'P.selva pandi', '16', '8939301496', '', 'Selvaleepavi1997@gmail.com', '1997-09-10', 23, '2', '2', 'Geetha arumugam', 'General manager', 5.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2104120021', '1', '2', 'upload_files/candidate_tracker/1537779493_0.PDF', NULL, NULL, '2021-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication, mail communication is not upto the mark', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 01:14:47', 50, '2021-04-12 02:55:04', 0, NULL, 1),
(4368, 'Navin KC', '28', '9626670393', '8248476173', 'navanithan9898@gmail.com', '1998-05-12', 22, '2', '2', 'Chandrasekaran KH', 'Agarbathi sales man', 25000.00, 1, 300000.00, 400000.00, 'Madurai', 'Chennai', '2104120022', '1', '2', 'upload_files/candidate_tracker/84073851673_Navin_C V.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good Agreement - 50/50 and the Exp CTC in 30K for 1.5 yrs Experience', '3', '2', '', '2', '2', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 01:16:36', 50, '2021-04-13 12:10:51', 0, NULL, 1),
(4369, '', '0', '8248138940', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 01:45:44', 0, NULL, 0, NULL, 1),
(4370, '', '0', '9003205074', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 01:48:34', 0, NULL, 0, NULL, 1),
(4371, 'Krishna Kumar E', '22', '9600083659', '9841889117', 'krish4375@gmail.com', '1994-08-30', 26, '2', '2', 'Priya E', 'House wife', 25000.00, 2, 0.00, 15000.00, 'Chennai triplicane', 'Chennai triplicane', '2104120025', '1', '1', 'upload_files/candidate_tracker/69588835117_KRISHNA RESUME.pdf', NULL, NULL, '2021-04-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-12 03:04:09', 1, '2021-04-12 03:08:41', 0, NULL, 1),
(4372, 'amit sharma', '17', '7796002300', '', 'amitsharma050@hotmail.com', '1979-12-05', 41, '2', '1', 'bl sharma', 'retired', 40.00, 1, 40.00, 50.00, 'chennai', 'chennai', '2104120026', '16', '2', 'upload_files/candidate_tracker/50747557833_Amit sharma.pdf', NULL, NULL, '2021-04-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process. ', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-12 03:52:01', 1, '2021-04-12 03:59:59', 0, NULL, 1),
(4373, '', '0', '8056254754', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104120027', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-12 04:27:13', 0, NULL, 0, NULL, 1),
(4374, 'Dominic Xavier A', '28', '7338796377', '', 'xavieraventador@gmail.com', '1998-10-22', 22, '2', '2', 'Andrews J', 'Business', 10000.00, 0, 0.00, 16500.00, 'Ashok Nagar, Chennai', 'Ashok Nagar, Chennai', '2104120028', '1', '1', 'upload_files/candidate_tracker/43232634782_Moi Rezoom.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Is Average, Open For Any Jobs,not open for the agreement\n', '3', '1', '0', '1', '1', '0', '2', '2021-04-16', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 04:57:04', 1, '2021-04-12 05:02:52', 0, NULL, 1),
(4375, 'Muthukumar Palani', '28', '9944038952', '', 'muthukumarpalani97@gmail.com', '1997-09-09', 23, '2', '2', 'Palani G', 'Electrition', 15000.00, 1, 0.00, 18000.00, 'No 4 jaganathan st ,Annampalayam, Arcot 632503', '21a,jcn st , Poonamallee, Chennai.', '2104120029', '1', '1', 'upload_files/candidate_tracker/69416601796_0_MUTHUKUMAR IT RESUME.docx', NULL, NULL, '2021-04-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is just a Manageable ,Mail Communication is poor, Sustainability Doubt,Focus into SQL DBA', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 05:30:35', 1, '2021-04-12 05:39:09', 0, NULL, 1),
(4376, 'Abdul hameed A', '13', '9788797800', '8148467324', 'Abdulhameed2904@gmail.com', '1998-04-29', 22, '2', '2', 'K S Asan Gani', 'PWD Retired', 50000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2104120030', '1', '1', 'upload_files/candidate_tracker/21325443736_Abdul hameed Resume.docx', NULL, NULL, '2021-04-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-12 05:38:01', 1, '2021-04-12 05:41:30', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4377, 'Saranya', '4', '8524894529', '', 'tejusaran1819@gmail.com', '1993-10-25', 27, '2', '2', 'Kotteshwaran', 'Driver', 50000.00, 1, 0.00, 18000.00, 'No.9, Kattabomman Street, Kallikuppam-53', 'No.9, Kattabomman Street, Kallikuppam-53', '2104120031', '1', '1', 'upload_files/candidate_tracker/8996969523_Saranya Resume - Final.docx', NULL, NULL, '2021-04-17', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not exp in TC, will not suite for Any other profile', '1', '2', '', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-12 09:09:46', 50, '2021-04-17 02:17:34', 0, NULL, 1),
(4378, 'Abdul Rahim', '11', '9488855362', '', 'rahimroyal1999@gmail.com', '1999-06-16', 22, '2', '2', 'Mohamed Farook', 'Business', 30000.00, 3, 145000.00, 250000.00, 'Villupuram district', 'Villupuram district', '2104120032', '1', '2', 'upload_files/candidate_tracker/23589136967_ABDUL RAHIM RESUME.pdf', NULL, '2', '2021-11-27', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - RNR', '6', '1', '', '1', '1', '', '2', '2021-12-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-04-12 10:24:16', 60, '2021-11-27 10:20:34', 0, NULL, 1),
(4379, '', '0', '8925401407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104130001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-13 05:39:02', 0, NULL, 0, NULL, 1),
(4380, '', '0', '7358695281', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104130002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-13 10:20:41', 0, NULL, 0, NULL, 1),
(4381, 'Sri Sasirekha T', '28', '7010786471', '', 'Sasirekhatsri@gmail.com', '1999-06-23', 21, '2', '2', 'Thanikasalam', 'Fisher man', 20000.00, 1, 16000.00, 30000.00, 'Tiruvallur', 'Tiruvallur', '2104130003', '1', '2', 'upload_files/candidate_tracker/95176767122_sr2k20.pdf', NULL, NULL, '2021-04-16', 14, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication, Not suits for our role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 10:38:45', 50, '2021-04-16 12:10:52', 0, NULL, 1),
(4382, 'Vignesh', '4', '9042591546', '8124830361', 'crazyvicky456@gmail.com', '1997-08-09', 23, '2', '1', 'Rajaswari', 'Housewife', 10000.00, 1, 0.00, 15000.00, 'Villivakkam', 'Villivakkam', '2104130004', '1', '1', 'upload_files/candidate_tracker/1526368235_My RESUME new.docx', NULL, NULL, '2021-04-13', 0, '', '3', '8', '2021-04-15', 132000.00, '', '4', '2021-04-19', '1', 'For Priyanka Team With CTC - 132000,Gross - 11000 TH - 10450', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 10:40:07', 7, '2021-04-13 06:24:07', 0, NULL, 1),
(4383, '', '0', '8072802149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104130005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-13 10:43:56', 0, NULL, 0, NULL, 1),
(4384, 'Senthilkumar', '30', '9345395116', '', 'senthilcordial@gmail.com', '1985-12-09', 35, '2', '2', 'G.Navaneetha krishnan', 'Conductor', 1.00, 2, 0.00, 360000.00, 'Virudhunagar', 'Chennai', '2104130006', '1', '2', 'upload_files/candidate_tracker/79152525106_Resume (1).docx', NULL, NULL, '2021-04-13', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'check for dealer profile. expt is 30k. his previous was 18k. has only basics in equity and trading.', '9', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 10:48:14', 50, '2021-04-13 11:17:36', 0, NULL, 1),
(4385, 'Aravinth', '30', '6382661806', '', 'moneyfarmersbodi@gmail.com', '1992-05-27', 28, '2', '2', 'Rdass', 'Supervisor', 50000.00, 1, 0.00, 2.50, '2.75', 'Chennai', '2104130007', '', '2', 'upload_files/candidate_tracker/66685544666_ARAVINTH CV.pdf', NULL, NULL, '2021-04-13', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '9', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 10:57:24', 1, '2021-04-13 11:04:37', 0, NULL, 1),
(4386, 'B srinivasan', '4', '7868027660', '9445722903', 'seenusrinivasan26@gmail.com', '1995-08-26', 25, '2', '2', 'Bala krishnan', 'Farmer', 12000.00, 2, 21000.00, 21000.00, 'Redhils', 'Redhils', '2104130008', '1', '2', 'upload_files/candidate_tracker/5595001859_Resume _ Srinivasan (1)-1.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm, looking for air space design profile. expt is 20k+', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 11:14:49', 50, '2021-04-13 11:36:21', 0, NULL, 1),
(4387, 'Thanigaivel K B', '4', '8248689568', '9962295898', 'thanigaivelthanik@gmail.com', '1999-07-30', 21, '2', '2', 'S kumaravel', 'Farmer', 12.00, 1, 0.00, 15.00, 'Redhills', 'Redhils', '2104130009', '1', '1', 'upload_files/candidate_tracker/61345909855_K B Thanigaivel -Resume-3.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for crm, not speaking up and will nit Suite for data analyst dont kniw basics in excel.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 11:15:55', 50, '2021-04-13 11:34:15', 0, NULL, 1),
(4388, 'saranya s', '4', '7904475619', '', 'saransweetie3012@gmail.com', '1995-12-30', 25, '2', '2', 'ambika s', 'care taker', 10000.00, 2, 12000.00, 15000.00, 'chennai', 'chennai', '2104130010', '1', '2', 'upload_files/candidate_tracker/31609675870_Resume - Saranya.pdf', NULL, NULL, '2021-04-13', 1, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 11:25:55', 50, '2021-04-13 12:39:30', 0, NULL, 1),
(4389, 'shreegayathri s', '4', '8939522612', '', 'shree.sabharish@gmail.com', '1995-12-04', 25, '2', '2', 'krishnaveni', 'supervisior', 10000.00, 1, 22000.00, 25000.00, 'chennai', 'chennai', '2104130011', '1', '2', 'upload_files/candidate_tracker/31144624215_Gayathri Resume.pdf', NULL, NULL, '2021-04-13', 2, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for health care data entry job. previously into cognizant, expt is 25k for crm. will not handle pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 11:33:45', 1, '2021-04-13 01:11:16', 0, NULL, 1),
(4390, 'Riyas', '16', '6381698273', '9843865994', 'riyaslee1996@gmail.com', '1996-10-13', 24, '2', '2', '9094727227', 'System hardware and software', 25000.00, 2, 15000.00, 18000.00, 'Masuthu st,madhukal village,elavur,chennai-601201', '23/30,13th St,svm nagar,Ennore,chennai-600057', '2104130012', '1', '2', 'upload_files/candidate_tracker/62361506512_0_Riyas.1.docx', NULL, NULL, '2021-04-13', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has exp as mis exe. but communication is below avg.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 12:14:49', 50, '2021-04-13 12:36:24', 0, NULL, 1),
(4391, 'Radhakrishnan. N', '28', '8248992965', '7094069787', 'nradhakrishnan92@gmail.com', '1992-05-19', 28, '2', '2', 'Mr. R. Natarajan', 'Agriculture', 10000.00, 1, 100000.00, 25000.00, 'Perambalur', 'Saidapet- Chennai', '2104130013', '1', '2', 'upload_files/candidate_tracker/66020004257_N.Radhakrishnan_Quality Control Engineer.pdf', NULL, NULL, '2021-04-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'QC Profile, Not open for Agreement and the Expected Salary is high', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 12:22:40', 50, '2021-04-15 10:16:28', 0, NULL, 1),
(4392, '', '0', '9962433053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104130014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-13 12:55:50', 0, NULL, 0, NULL, 1),
(4393, 'arvind kumar', '28', '8122971119', '', 'arvindkumar0806.ak@gmail.com', '1996-08-28', 24, '2', '2', 'sajive r', 'controller southern railway', 40000.00, 0, 14000.00, 20000.00, 'chennai', 'chennai', '2104130015', '1', '2', 'upload_files/candidate_tracker/375092650_RESUME2.pdf', NULL, NULL, '2021-04-15', 0, '', '3', '54', '2021-04-19', 180000.00, '', '', '1970-01-01', '2', 'He is new to this domain but we will train him.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 01:37:25', 50, '2021-04-15 10:36:14', 0, NULL, 1),
(4394, 'Karthik raja', '28', '9087441704', '', 'karthikvias7@gmail.com', '1995-11-19', 25, '2', '2', 'M Arunachalam', 'Cashier', 35000.00, 0, 22000.00, 30000.00, 'chennai', 'chennai', '2104130016', '1', '2', 'upload_files/candidate_tracker/45490437508_CV_2020-11-11-122708.pdf', NULL, NULL, '2021-04-15', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good Communication, Little Attitude and the salary Expectation is high', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 01:47:32', 50, '2021-04-15 11:05:16', 0, NULL, 1),
(4395, 'keesar basha', '5', '8754953567', '', 'keesarbasha786@gmail.com', '1993-01-12', 28, '2', '2', 'ahamed basha', 'business', 20000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2104130017', '2', '1', 'upload_files/candidate_tracker/28574932287_WhatsApp Image 2021-04-13 at 2.22.33 PM.pdf', NULL, NULL, '2021-04-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process. will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-13 02:20:02', 1, '2021-04-13 02:23:11', 0, NULL, 1),
(4396, 'K.Jayabharathi', '30', '9952441966', '9003294750', 'jbgopinath@gmail.com', '1988-08-13', 32, '2', '1', 'Gopinath', 'Excelcom technology', 50000.00, 2, 16.00, 20.00, 'Chennai', 'Chennai', '2104130018', '1', '2', 'upload_files/candidate_tracker/44876859900_Jayabharathi K Resume (1).docx', NULL, NULL, '2021-04-13', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'can try for 1st start', '9', '2', '', '1', '1', '', '2', '2021-04-19', '3', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-13 03:11:53', 50, '2021-04-16 04:16:29', 0, NULL, 1),
(4397, 'Emjee', '6', '7904402556', '8124770468', 'vijayemjee@gmail.com', '1994-01-01', 27, '2', '2', 'Anjelu', 'Fisherman', 25000.00, 2, 0.00, 20000.00, 'No:2/206, karaikadu kuppam, sunnambhukulam', 'No:43A, appar saami Kovil street, Thiruv', '2104130019', '', '2', 'upload_files/candidate_tracker/94083407778_Emjee Resum update.docx', NULL, NULL, '2021-04-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite fo rM profile, language is below avg. will not suite for calling', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-13 04:03:50', 1, '2021-04-13 04:11:39', 0, NULL, 1),
(4398, 'Pavithra', '28', '9789949426', '', 'pavithra311296@gmail.com', '1996-12-31', 24, '2', '1', 'Karthick', 'Private Sector', 30000.00, 1, 228000.00, 300000.00, 'Chennai', 'Chennai', '2104130020', '1', '2', 'upload_files/candidate_tracker/77398414120_Pavithra Resume .pdf', NULL, NULL, '2021-04-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Exp high Pay,will not sustain for a long', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 05:12:34', 60, '2021-04-15 04:18:02', 0, NULL, 1),
(4399, 'Kamesh. K', '28', '9003224903', '7845999528', 'Kameshkothandapani@gmail.com', '1995-10-15', 25, '2', '2', 'Kothandapani. Y', 'Farmer', 600000.00, 1, 17000.00, 25000.00, 'Ponniammanmedu ,chennai', 'Ponniammanmedu ,chennai', '2104130021', '1', '2', 'upload_files/candidate_tracker/64723024636_kamesh resume_updated.pdf', NULL, NULL, '2021-04-15', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for the Data Analyst role, No Communication', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-13 10:44:01', 50, '2021-04-15 04:13:02', 0, NULL, 1),
(4400, '', '0', '9047113940', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 09:53:03', 0, NULL, 0, NULL, 1),
(4401, 'nelson leo', '28', '9789949212', '', 'nelsonleo96@gmail.com', '1996-08-19', 24, '2', '2', 'arockiass da', 'driver', 15000.00, 1, 0.00, 17000.00, 'chennai', 'chennai', '2104140002', '1', '1', 'upload_files/candidate_tracker/83016271142_Tester Resume.pdf', NULL, NULL, '2021-04-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location Constraint, Not open for the agreement', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-14 01:27:23', 50, '2021-04-15 12:16:50', 0, NULL, 1),
(4402, 'U sharmila devi', '7', '8870585853', '9382336562', 'sharmiladevi.sd@gmail.com', '1993-06-27', 27, '2', '1', 'S.prasanth', 'Reliance digital_CRM', 25000.00, 1, 15000.00, 15000.00, 'No 3 kailasam Street erukkancherry chennai', 'Ño 3 kailasam Street erukkancherry Chennai', '2104140003', '1', '2', 'upload_files/candidate_tracker/78655708199_sharmila.pdf', NULL, NULL, '2021-04-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'New to the MF position and the Expected 15K TH and not open for negotiating with PF PT Deductions', '7', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-14 01:52:58', 1, '2021-04-15 01:33:05', 0, NULL, 1),
(4403, '', '0', '9841720804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 02:18:14', 0, NULL, 0, NULL, 1),
(4404, '', '0', '8526862521', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 02:28:27', 0, NULL, 0, NULL, 1),
(4405, 'Gokul s', '7', '9150439828', '', 'gokul2498@gmail.com', '1998-12-24', 22, '2', '2', 'Grace denisa', 'Nil', 20000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2104140006', '1', '1', 'upload_files/candidate_tracker/44923763458_gokul resume.docx', NULL, NULL, '2021-04-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for MF, fresher no idea about MF, not even prepare a single line for interview.', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-14 02:40:50', 50, '2021-04-15 10:32:53', 0, NULL, 1),
(4406, '', '0', '9941967127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 04:25:50', 0, NULL, 0, NULL, 1),
(4407, 'Pavithra. A', '28', '9003211751', '9940296583', 'kowsipavi3@gmail.com', '1997-10-28', 23, '2', '2', 'Arokiyaraj D', 'Auto Driver', 25000.00, 2, 16500.00, 20000.00, 'Chennai', 'Chennai', '2104140008', '1', '2', 'upload_files/candidate_tracker/28600640350_PAVITHRA UPDATE RESUME (2019)-converted.pdf', NULL, NULL, '2021-04-15', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not good in communication, will not suit much for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-14 08:04:18', 1, '2021-04-15 10:12:57', 0, NULL, 1),
(4408, '', '0', '9150439282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104140009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-14 08:44:37', 0, NULL, 0, NULL, 1),
(4409, 'gokul', '6', '7395992634', '', 'chandhrugokul555@gmail.com', '1999-05-17', 21, '2', '2', 'palani', 'farmer', 20000.00, 3, 0.00, 12000.00, 'chennai', 'chennai', '2104150001', '2', '1', 'upload_files/candidate_tracker/32203610475_Personal Resume Gokul.docx', NULL, NULL, '2021-04-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not Sustain, will join only if his friend join and will not suite fro calling.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 10:36:42', 50, '2021-04-15 10:56:40', 0, NULL, 1),
(4410, 'elaiya kumar', '6', '7448341546', '', 'elaiyakumar51@gmail.com', '1998-03-01', 23, '2', '2', 'vedhagiri', 'farmer', 10000.00, 6, 0.00, 13000.00, 'chennai', 'chennai', '2104150002', '2', '1', 'upload_files/candidate_tracker/92335140984_ELAIYAKUMAR.pdf', NULL, NULL, '2021-04-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 10:39:55', 1, '2021-04-15 10:41:28', 0, NULL, 1),
(4411, 'santheya', '11', '7904602582', '', 'santheya21@gmail.com', '1997-07-21', 23, '1', '2', 'premalatha', 'beautician', 50000.00, 1, 15000.00, 18000.00, 'cuddalore', 'chennai', '2104150003', '', '2', 'upload_files/candidate_tracker/79499911716_Santheya Resume.pdf', NULL, NULL, '2021-04-15', 0, '6667', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no Sustainability, 3m, 4m and 7m in each company. expt 18k th. communication wise okay.', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 10:42:45', 50, '2021-04-15 11:06:26', 0, NULL, 1),
(4412, 'Faizal', '5', '8681929029', '', 'Faiz_busi@yahoo.co.in', '1984-08-10', 36, '2', '1', 'Jasima', 'House wife', 35000.00, 1, 22000.00, 30000.00, 'Chennai', 'Chennai', '2104150004', '3', '2', 'upload_files/candidate_tracker/85730408788_Faizal Resume.doc', NULL, NULL, '2021-04-15', 1, '', '3', '60', '2021-04-28', 300000.00, '', '4', '2021-05-11', '1', 'Selected for GK Sir, CTC -3 LPA, Gross - 25000 (Includes PF PT Deductions)', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 11:02:54', 60, '2021-04-26 04:01:52', 0, NULL, 1),
(4413, 'Lakshmi singh', '26', '9791808844', '6382155848', 'Gunjans309@gmail.com', '1997-07-25', 23, '2', '2', 'Chirag singh', 'Business', 40000.00, 4, 21500.00, 30000.00, 'Chennai', 'chennai', '2104150005', '1', '2', 'upload_files/candidate_tracker/99943984467_CV_2021-04-12-123307.pdf', NULL, NULL, '2021-04-15', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain for a long and not able to handle the pressure.', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-15 11:14:05', 50, '2021-04-15 12:11:45', 0, NULL, 1),
(4414, 'K P Sharath durai', '28', '8870150702', '9025599684', 'sharathdurai81@gmail.com', '1997-06-04', 23, '2', '2', 'Devi', 'Hindi teacher', 25000.00, 2, 11000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2104150006', '1', '2', 'upload_files/candidate_tracker/59107043465_Sharath resume.pdf', NULL, NULL, '2021-04-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suits for our position, will not sustain, No Communication', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 12:57:04', 50, '2021-04-16 10:23:45', 0, NULL, 1),
(4415, 'karthick', '6', '9710148915', '', 'Karthikumar5@yahoo.com', '1994-10-21', 26, '2', '2', 'kumar', 'gold smith', 15000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104150007', '2', '1', 'upload_files/candidate_tracker/95675820032_karthik-9.docx', NULL, NULL, '2021-04-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 01:32:01', 1, '2021-04-15 01:33:40', 0, NULL, 1),
(4416, 'Rubini S', '28', '8925401823', '', 'kuttiruby@gmail.com', '1995-12-18', 25, '2', '1', 'Surya M', 'Business', 15000.00, 2, 18500.00, 22500.00, 'Chennai', 'Chennai', '2104150008', '1', '2', 'upload_files/candidate_tracker/43317794157_Ruby resume 28022021.docx', NULL, NULL, '2021-04-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our role, will not handle the pressure, Communication Average', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 01:45:20', 1, '2021-04-15 01:49:57', 0, NULL, 1),
(4417, 'Mohammed Ibrahim', '22', '7299212877', '7358300750', 'Mohammedibrahim928@gmail.com', '1998-09-05', 22, '2', '2', 'Mariyam Banu', 'House wife', 20000.00, 1, 15000.00, 22000.00, 'No 182,5 th street Gandhi nagar, vysarpadi, ch-39', 'No 182,5 Th Street Gandhi Nagar, Vysarpadi,ch-39', '2104150009', '1', '2', '', NULL, NULL, '2021-04-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 01:50:08', 64, '2021-04-16 09:37:54', 0, NULL, 1),
(4418, 'J kanimozhi', '4', '9087780640', '', 'Kanisaravanabava8@gmail.com', '1991-03-18', 30, '2', '2', 'Jayapall', 'Retired', 15000.00, 2, 16500.00, 17000.00, 'chennai', 'Chennai', '2104150010', '1', '2', 'upload_files/candidate_tracker/26374585124_sai-1.docx', NULL, NULL, '2021-04-15', 0, '', '3', '60', '2021-04-19', 189468.00, '', '6', '2021-04-20', '2', 'Selected for Tiruvallur Location CTC - 189468\nGross - 15789\nTH - 15000', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-15 02:35:05', 60, '2021-04-18 06:25:05', 0, NULL, 1),
(4419, 'Ramya.k', '4', '9360772797', '', 'ramyarajramyara@gmail.com', '1999-04-29', 21, '1', '2', 'Kamaraj.k', 'Metro water', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104150011', '', '1', 'upload_files/candidate_tracker/70906614872_Ramya k.docx', NULL, NULL, '2021-04-15', 0, '5553', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling. very childish, will not sustain.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 02:36:47', 50, '2021-04-15 02:52:08', 0, NULL, 1),
(4420, 'Saranya. S', '4', '9962858260', '', 'saranyasivasamy2000@gmail.com', '2000-01-27', 21, '1', '2', 'Sivasamy', 'Cooly', 60000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2104150012', '', '1', 'upload_files/candidate_tracker/17917481890_resume saranya.docx', NULL, NULL, '2021-04-15', 0, '5553', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Will Not Suite For Calling. Very Childish, Will Not Sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 02:38:26', 1, '2021-04-15 02:46:47', 0, NULL, 1),
(4421, 'Martin J', '17', '9600051302', '9884851302', 'Mail2martinboss@gmail.com', '1991-01-15', 30, '1', '1', 'Revathi', 'House wife', 38000.00, 1, 38000.00, 40000.00, 'Chennai', 'Chennai', '2104150013', '', '2', 'upload_files/candidate_tracker/47261565732_Martin Resume pdf(1)(1).pdf', NULL, NULL, '2021-04-15', 15, '55559', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly refix after lockdown', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 03:11:53', 1, '2021-04-15 03:17:53', 0, NULL, 1),
(4422, 'P.Kamalakannan', '28', '8807045480', '9176114166', 'kamalkrish002@gmail.com', '1997-05-09', 23, '2', '2', 'E.Parthasarathy', 'Businessman', 2000000.00, 0, 15000.00, 18000.00, 'Chennai, MGR Nagar', 'Chennai,MGR Nagar', '2104150014', '1', '2', 'upload_files/candidate_tracker/39314690680_Kamal resume.pdf', NULL, NULL, '2021-04-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication not suitable', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 04:53:09', 50, '2021-04-16 10:50:59', 0, NULL, 1),
(4423, 'Pradeep Kumar', '28', '8124358218', '', 'pradeepattakathi@gmail.com', '1998-04-18', 22, '2', '2', 'Murugesan', 'Driver', 15000.00, 0, 10000.00, 18000.00, 'Vyasarpadi', 'Vyasarpadi', '2104150015', '1', '2', 'upload_files/candidate_tracker/32177740131_pradeep Resume 2021April.....docx', NULL, NULL, '2021-04-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suits,not open for Agreement', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 04:55:59', 1, '2021-04-15 05:03:03', 0, NULL, 1),
(4424, 'Kavitha S', '13', '9487718892', '', 'kavithasmv14@gmail.com', '1998-06-14', 22, '2', '2', 'Subramani N', 'Farmer', 30000.00, 2, 0.00, 15000.00, '4/448 kodeeswara nagar, Sankaralingapuram-626119', 'No:3 saraswathi street, guduvanchery', '2104150016', '1', '1', 'upload_files/candidate_tracker/51946514810_Kavitha resume(2).pdf', NULL, NULL, '2021-04-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable, Will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-15 05:05:26', 1, '2021-04-15 05:19:33', 0, NULL, 1),
(4425, 'Anbarasu K', '5', '7305515854', '', 'anbarasu.k64@gmail.com', '1990-06-01', 30, '1', '1', 'KATHIRVEL', 'B.Tech', 35000.00, 1, 35000.00, 40000.00, 'Chennai', 'Chennai', '2104150017', '', '2', 'upload_files/candidate_tracker/52286463078_ANBU%20CV%20(1).docx', NULL, NULL, '2021-04-15', 15, '55567', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly refix after Lockdown\n', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-15 05:07:36', 1, '2021-04-15 05:13:05', 0, NULL, 1),
(4426, 'Narasimman', '28', '8122267377', '', 'Narasimman71@gmail.com', '1997-10-09', 23, '2', '2', 'Jayaprakash', 'Self employed', 15000.00, 0, 14000.00, 20000.00, 'Kallakurichi', 'Tambaram', '2104160001', '1', '2', 'upload_files/candidate_tracker/80691805833_NARSIMMAN_RESUME1997.docx', NULL, NULL, '2021-04-19', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-16 10:22:29', 1, '2021-04-16 10:26:12', 0, NULL, 1),
(4427, 'K.Raja', '4', '9790770086', '8667521065', 'alexander.raja95@gmail.com', '1995-08-15', 25, '2', '2', 'Uma.K', 'House keeping', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2104160002', '1', '2', 'upload_files/candidate_tracker/67005872980_raja resume.pdf', NULL, NULL, '2021-04-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our profile. no clarity in speech.', '1', '2', '', '1', '1', '', '2', '2021-04-19', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 10:59:51', 50, '2021-04-16 11:34:35', 0, NULL, 1),
(4428, 'Vijay d', '6', '8838561758', '7401217612', 'vijaydv2016@gmail.com', '1995-09-11', 25, '2', '2', 'Durai', 'Cooli', 20000.00, 3, 15000.00, 17000.00, 'Chennai', 'Chennai', '2104160003', '1', '2', 'upload_files/candidate_tracker/87578833399_Vijay21.pdf', NULL, '1', '2021-04-16', 0, '', '3', '24', '2021-08-05', 204000.00, '', '3', '2021-08-07', '1', 'NO SALES SKILLS', '5', '2', '1', '1', '1', '1', '2', '2021-04-19', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:01:45', 60, '2021-08-04 02:47:27', 0, NULL, 1),
(4429, 'GNANAPRAKASH R', '30', '8220410286', '', 'rbgprakash@gmail.com', '1990-01-29', 31, '2', '2', 'Rajannan', 'Business', 40000.00, 1, 300000.00, 340000.00, 'Kandavaratti', 'Guindy-600032', '2104160004', '1', '2', 'upload_files/candidate_tracker/56524133724_1618207568769_new resume.pdf', NULL, NULL, '2021-04-16', 15, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suite for our process', '9', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:02:05', 50, '2021-04-16 11:20:49', 0, NULL, 1),
(4430, 'Saravanan', '30', '9940377681', '', 'sarantrinity87@gmail.com', '1987-05-27', 33, '2', '1', 'ASWINI', 'Private finance', 5.00, 1, 345000.00, 420000.00, 'Chennai', 'Chennai', '2104160005', '1', '2', 'upload_files/candidate_tracker/47400494051_MY RESUME.docx', NULL, NULL, '2021-04-16', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'can try - Vasu', '9', '2', '', '1', '1', '', '2', '2021-04-19', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:13:51', 50, '2021-04-16 11:28:18', 0, NULL, 1),
(4431, 'J.Bhaskar', '30', '9498069517', '9500185508', 'bhaskar5868@gmail.cOm', '1967-07-20', 53, '2', '1', 'K.A.Jayaraman', 'Self employed', 50000.00, 2, 25000.00, 30000.00, '7,Indrani st ayyavoo colony Aminjikarai Chennai', 'Same as above', '2104160006', '1', '2', 'upload_files/candidate_tracker/29361774517_Resume (1).doc', NULL, NULL, '2021-04-16', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'aged will not suite for our process-by gokul', '9', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:17:29', 50, '2021-04-16 11:54:27', 0, NULL, 1),
(4432, 'T R Suresh Kumar', '30', '7092133017', '8056120594', 'yellusuresh79@gmail.com', '1979-11-05', 41, '2', '1', 'Yellammal', 'Tailor', 20000.00, 2, 15000.00, 20000.00, 'Anagaputhur', 'Anagaputhur', '2104160007', '1', '2', 'upload_files/candidate_tracker/60326459431_1617779663391_suresh kumar resume.docx', NULL, NULL, '2021-04-16', 1, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for ED Profile by Vasu', '9', '2', '', '1', '3', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:22:26', 50, '2021-04-16 12:06:22', 0, NULL, 1),
(4433, 'Jaison', '4', '9940489811', '', 'Jasonjzz002@gmail.com', '2002-05-03', 18, '3', '2', 'Joseph.R.S', 'T.v.mechanic', 80000.00, 1, 0.00, 10000.00, 'Madhavaram', 'Madhavaram', '2104160008', '', '1', 'upload_files/candidate_tracker/63257632142_Jaison jay.docx', NULL, NULL, '2021-04-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, not int in sales. int in non voice', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-16 11:25:47', 1, '2021-04-16 12:11:14', 0, NULL, 1),
(4434, 'Sethukumar', '4', '9840576193', '6381348732', 'Sethukumar03@gmail.com', '1995-11-03', 25, '2', '2', 'Devaraj', 'Daily wages', 25000.00, 0, 15774.00, 18000.00, 'chennai', 'chennai', '2104160009', '1', '2', 'upload_files/candidate_tracker/8168206307_1618553358276_1618553357929_63488.doc', NULL, NULL, '2021-04-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sal expt is high', '1', '2', '', '1', '3', '', '2', '2021-04-19', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 11:25:50', 50, '2021-04-16 12:04:59', 0, NULL, 1),
(4435, '', '0', '8939622025', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 12:15:47', 0, NULL, 0, NULL, 1),
(4436, 'Mongia', '8', '8939451415', '6379124895', 'smartmongia13996@gmail.com', '1996-09-13', 24, '2', '2', 'Mahesh Y', 'Security', 10000.00, 5, 1.00, 15000.00, 'Chennai', 'Chennai', '2104160011', '1', '2', 'upload_files/candidate_tracker/51908939118_Mongia resume.docx', NULL, NULL, '2021-04-16', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for CRM', '7', '2', '', '1', '1', '', '2', '1970-01-01', '3', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 12:57:22', 50, '2021-04-16 01:18:16', 0, NULL, 1),
(4437, 'Shily', '4', '9361498751', '9943761881', 'Shilyraghu5399@gmail.com', '1999-03-05', 22, '2', '2', 'Raghu', 'Artist', 15000.00, 1, 0.00, 10000.00, 'Padappi', 'Padappi', '2104160012', '1', '1', 'upload_files/candidate_tracker/14803487653_SHILY%20RESUME.docx', NULL, NULL, '2021-04-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain, will not handle sales pressure. expt is 10k.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-16 01:15:54', 7, '2021-04-16 03:05:46', 0, NULL, 1),
(4438, 's glory jayaseeli', '2', '8939622020', '', 'jayaseelisglory@gmail.com', '1996-08-01', 24, '2', '2', 'j mallika samuel', 'senior adminstrative assitant', 15000.00, 1, 0.00, 500000.00, 'chennai', 'chennai', '2104160013', '1', '1', 'upload_files/candidate_tracker/76954160701_Glory_Jayaseeli.pdf', NULL, NULL, '2021-04-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good in Mern,but the expectation is very High being a fresher, sustainability doubt not open for the agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-16 02:04:07', 50, '2021-04-17 02:40:22', 0, NULL, 1),
(4439, 'nivedita', '28', '7358187684', '9094417366', 'nivesundar1997@gmail.com', '1997-09-08', 23, '2', '2', 'gomathy sunda', 'business development executive', 25000.00, 1, 0.00, 10000.00, 'madipakkam', 'madipakkam', '2104160014', '1', '1', 'upload_files/candidate_tracker/65966721265_Nivedita RESUME MARKETING EXECUTIVE copy.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Good Commuication ,open for Agreement, but the expectation is high 25K Negotiable to 20K', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-16 02:11:58', 1, '2021-04-19 09:54:59', 0, NULL, 1),
(4440, 'pratheeba', '28', '6381063448', '8637424503', 'prathibadurai96@gmail.com', '1996-11-11', 24, '2', '2', 'durai', 'sales officer', 40000.00, 1, 220000.00, 280000.00, 'CHENNAI', 'CHENNAI', '2104160015', '1', '2', 'upload_files/candidate_tracker/24291847975_prathiba resume.pdf', NULL, NULL, '2021-04-17', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-16 02:45:56', 1, '2021-04-16 11:47:40', 0, NULL, 1),
(4441, '', '0', '6379147954', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 04:59:11', 0, NULL, 0, NULL, 1),
(4442, '', '0', '9094595931', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 05:34:13', 0, NULL, 0, NULL, 1),
(4443, '', '0', '7845130389', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 09:24:57', 0, NULL, 0, NULL, 1),
(4444, '', '0', '6385143634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104160019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-16 10:58:41', 0, NULL, 0, NULL, 1),
(4445, 'Pradeep Raj R', '28', '8056289568', '8825495524', 'pradeep2909rajkumar@gmail.com', '1995-07-05', 25, '2', '2', 'Rajkumar N', 'Vegetable Market - CMBT', 32000.00, 4, 12500.00, 16000.00, 'Metro Park Appartment Block -3/31 Padi Ch - 600107', 'Metro Park Appartment Block 3/31 Padi Ch-600107', '2104170001', '1', '2', 'upload_files/candidate_tracker/80458966903_Pradeep Resume_2021 (Bpo).pdf', NULL, NULL, '2021-04-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our role, Stammering Issue, no sustainability', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-17 10:51:59', 1, '2021-04-17 11:03:57', 0, NULL, 1),
(4446, 'MANUNEEDHI.R', '30', '9176470880', '', 'rmanuneedhi@yahoo.co.in', '1970-06-10', 50, '2', '1', 'Shoba', 'Housewife', 30000.00, 0, 30000.00, 33000.00, 'Chenai', 'Chennai', '2104170002', '1', '2', 'upload_files/candidate_tracker/57281904616_Manuneedhi Resume.pdf', NULL, NULL, '2021-04-17', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Vasu interview', '9', '2', '', '1', '1', '', '2', '2021-04-19', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-17 10:57:41', 50, '2021-04-17 03:07:31', 0, NULL, 1),
(4447, 'Jaisre Ambasekar', '23', '9790606878', '9566425250', 'Jaisre.ambasekar@outlook.com', '1996-09-23', 24, '2', '2', 'Ambasekar B', 'Transport manager pvt limited', 14000.00, 1, 8000.00, 22000.00, 'Erode', 'Chennai', '2104170003', '1', '2', 'upload_files/candidate_tracker/54007668865_Jaisre_Profile.docx', NULL, NULL, '2021-04-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not Completed.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-17 11:22:37', 50, '2021-04-19 10:05:50', 0, NULL, 1),
(4448, 'J.Eunice Princy', '4', '7338959040', '9952041343', 'Rj.Bharathkumar.Bk@Gmail.Com', '1996-09-04', 24, '2', '2', 'R.Jagannathan', 'Chruch pastor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104170004', '1', '1', 'upload_files/candidate_tracker/56688458588_Eunice resume .docx', NULL, NULL, '2021-04-17', 0, '', '3', '60', '2021-04-19', 144000.00, '', '6', '2021-04-20', '1', 'Selected for Tiruvallur Location,initial 10 Days of training in Tnagar with CTC - 144000,Gross - 12000 TH - 11400', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-17 11:29:32', 60, '2021-04-17 09:31:44', 0, NULL, 1),
(4449, 'Sivaranjani', '7', '8220233546', '', 'Sweetyranjaniv@gmail.com', '1996-05-26', 24, '2', '2', 'Velmurugan. R', 'Agriculture', 120000.00, 1, 12000.00, 15000.00, 'Ganapathikurichi, cuddalore(dk)', 'Ashok nagar, chennai', '2104170005', '1', '2', 'upload_files/candidate_tracker/89957261442_SIVA_RESUME-1.docx', NULL, NULL, '2021-04-17', 15, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No knowledge in MF at all', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-17 11:29:43', 50, '2021-04-17 11:55:55', 0, NULL, 1),
(4450, 'BHARATH R', '7', '9952041343', '7338959040', 'rj.bharathkumar.bk@gmail.com', '1995-09-20', 25, '2', '2', 'Raghupathy', 'Cooli', 18000.00, 1, 0.00, 160000.00, 'Chennai', 'Chennai', '2104170006', '1', '1', 'upload_files/candidate_tracker/44615341247_Barath kumar', NULL, NULL, '2021-04-17', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested with rE profile', '7', '2', '', '1', '1', '', '2', '2021-04-19', '2', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-17 12:26:46', 50, '2021-04-17 12:35:32', 0, NULL, 1),
(4451, 'Rashika', '4', '7871915194', '9514154796', 'rashikabalaji05@gmail.com', '1999-02-02', 22, '2', '1', 'Balaji', 'Auto driver', 10000.00, 2, 15000.00, 12000.00, 'West mambalam', 'Cit nagar', '2104170007', '1', '2', 'upload_files/candidate_tracker/60712609073_rashikarem.doc', NULL, NULL, '2021-04-17', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'looking for non voice process', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-17 12:34:20', 1, '2021-04-17 01:00:23', 0, NULL, 1),
(4452, '', '0', '7806961553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104170008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-17 12:34:28', 0, NULL, 0, NULL, 1),
(4453, 'Mahalakshmi', '4', '8428572836', '9514241885', 'rojavasu101996@gmail.com', '1996-01-10', 25, '2', '2', 'MARIMUTHU', 'BSNL (retired)', 30000.00, 2, 15000.00, 18000.00, 'Tamabaram', 'Tambaram', '2104170009', '1', '2', 'upload_files/candidate_tracker/48138991050_Mahalakshmi resume.pdf', NULL, NULL, '2021-04-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Priyanka, but didnt turn up with her confirmation', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-17 01:48:31', 50, '2021-04-17 03:07:45', 0, NULL, 1),
(4454, 'Prabhu g', '30', '9789078795', '', 'Prabhug251982@gmail.com', '1983-05-25', 37, '2', '2', 'Gopalakrishana', 'Metrowater', 30000.00, 2, 340000.00, 30000.00, '13/1 andiappan Street oldwashermanpet', 'Chennai', '2104170010', '1', '2', 'upload_files/candidate_tracker/80790655104_1616403335873_Prabhu Resume.doc', NULL, NULL, '2021-04-17', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not attended zoom interview no call back from the candidate also', '9', '2', '', '1', '1', '', '2', '2021-04-19', '3', '7', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-17 02:31:20', 50, '2021-04-17 03:01:51', 0, NULL, 1),
(4455, 'Abishek.p.s', '22', '8610710084', '', 'psabishek1997@gmail.com', '1997-05-07', 23, '2', '2', 'No', 'No', 80000.00, 1, 0.00, 15000.00, 'Chennai ambattur', 'Chennai ambattur', '2104170011', '1', '1', 'upload_files/candidate_tracker/85162703391_resume (1).docx', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not suit for DM, Sustainability doubt need to check with family', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-17 03:54:27', 1, '2021-04-17 03:59:58', 0, NULL, 1),
(4456, '', '0', '9500114965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104170012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-17 04:00:40', 0, NULL, 0, NULL, 1),
(4457, '', '0', '9790066156', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104170013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-17 04:22:07', 0, NULL, 0, NULL, 1),
(4458, 'Srinivasan', '28', '9790686164', '8754761949', 'paranjothistini@gmail.com', '1996-05-31', 24, '2', '2', 'Paranjyothi', 'Weaver', 7500.00, 1, 16500.00, 20000.00, '80/32 A A.P.M koil St,Gudiyatham,vellore', '7A Annai Theresa St,East Tambaram', '2104170014', '1', '2', 'upload_files/candidate_tracker/84362486096_Srini Resume 2021.doc.pdf', NULL, NULL, '2021-04-19', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Data excel knowledge Basic Will not fit for our role', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-17 06:41:59', 1, '2021-04-18 03:50:03', 0, NULL, 1),
(4459, 'Imran basha', '21', '9940422354', '', 'immu26111997@gmail.com', '1997-11-26', 23, '2', '2', 'Humayun basha', 'Auto', 8000.00, 1, 0.00, 15000.00, 'Adyar', 'Adyar', '2104180001', '1', '1', 'upload_files/candidate_tracker/11408729961_Baasha Resume 15.04.2021.pdf', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-18 12:53:50', 1, '2021-04-18 06:20:00', 0, NULL, 1),
(4460, '', '0', '9566252357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104180002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-18 06:14:06', 0, NULL, 0, NULL, 1),
(4461, '', '0', '9003657471', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104180003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-18 11:06:50', 0, NULL, 0, NULL, 1),
(4462, '', '0', '9444223916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 08:16:52', 0, NULL, 0, NULL, 1),
(4463, 'divakaran', '6', '7904850508', '', 'divakaran722@gmail.com', '2001-06-30', 19, '2', '2', 'thangaraj', 'grocery shop', 13000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2104190002', '2', '2', 'upload_files/candidate_tracker/69001386458_Divakaran.T resume.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Doubt, will not fit for our role', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 09:54:04', 1, '2021-04-19 09:56:11', 0, NULL, 1),
(4464, '', '0', '6374019069', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 10:07:13', 0, NULL, 0, NULL, 1),
(4465, 'G.Madhubalu', '4', '8374500270', '7702160799', 'madhubalu2506@gmail.com', '2006-04-19', 0, '2', '2', 'Gurrappan', 'Office work', 16000.00, 2, 0.00, 17000.00, 'Keelagaram, Narayanavanam, chittoor (dt), Ap', 'Tambaram', '2104190004', '1', '1', 'upload_files/candidate_tracker/60314617128_Madhubalu. Resume.docx', NULL, NULL, '2021-04-19', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-19 10:49:28', 50, '2021-04-19 11:20:36', 0, NULL, 1),
(4466, 'Abdul hameed A', '13', '7667496651', '8148467324', 'Abdulhameed2904@gmail.com', '1998-04-29', 22, '2', '2', 'K S Asan Gani', 'PWD Retired', 50000.00, 1, 0.00, 16000.00, 'No 20 kareem subedhar street Royapettah Chennai-14', 'chennai', '2104190005', '1', '1', 'upload_files/candidate_tracker/60330014851_Abdul hameed Resume.docx', NULL, NULL, '2021-04-19', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task not Completed.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 11:12:52', 1, '2021-04-19 11:15:02', 0, NULL, 1),
(4467, 'Divya B', '4', '9087282160', '8838349938', 'Divyadeva64@gmail.com', '1999-08-01', 21, '2', '2', 'Balaji G', 'Cooley', 30000.00, 2, 0.00, 18000.00, 'Choolai', 'Ambattur', '2104190006', '16', '2', 'upload_files/candidate_tracker/32293636851_IMG-20210416-WA0001-converted.pdf', NULL, NULL, '2021-04-19', 0, '', '3', '60', '2021-04-28', 138948.00, '', '6', '2021-07-07', '2', 'Selected for Tiruvallur Location, CTC - 138948 TH - 11k', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 11:26:41', 60, '2021-04-27 11:04:55', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4468, 'NATRAJ', '4', '8838161745', '9600128020', 'arch.natraj@gmail.com', '1989-02-01', 32, '2', '1', 'Nithya Suganya', 'Provisional store', 17000.00, 1, 20000.00, 17000.00, 'Chennai', 'Chennai', '2104190007', '16', '2', 'upload_files/candidate_tracker/83557516488_Natraj Resume.pdf', NULL, NULL, '2021-04-19', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for Sales, Focus is only on the Professor Jobs\n ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 11:32:09', 1, '2021-04-19 11:46:00', 0, NULL, 1),
(4469, '', '0', '8179021106', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 11:38:53', 0, NULL, 0, NULL, 1),
(4470, 'Manivannan K', '6', '8667066197', '7200219344', 'kimanivannan@gmail.com', '1992-08-28', 28, '1', '2', 'Kalidoss P', 'Police', 15000.00, 1, 9500.00, 13500.00, '3/181,Keelapuliyur,kulikkarai,Thiruvarur', 'Vasantham colony,Anna nagar west, Chennai', '2104190009', '', '2', 'upload_files/candidate_tracker/34244561423_manivannan edited resume.pdf', NULL, NULL, '2021-04-19', 0, 'P1047', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Interviewed in the month of April and on hold for Guru, finally dropped this Profile with concern to the pandemic and the lockdown', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 11:39:58', 60, '2021-04-19 05:32:14', 0, NULL, 1),
(4471, 'A.Dilli Babu', '16', '6379212816', '9962211776', 'dillibabu2412@gmail.com', '1991-12-24', 29, '2', '2', 'Kanchana', 'Junior Assistant', 30000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2104190010', '1', '2', 'upload_files/candidate_tracker/60835532512_Resume.doc', NULL, NULL, '2021-04-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average Communication, only Data Entry, not open for Agreement, Exp 18K', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-19 11:46:31', 50, '2021-04-19 12:27:56', 0, NULL, 1),
(4472, 'M.Ajith kumar', '4', '8148815787', '', 'ajith181199@gmail.com', '1999-11-18', 21, '3', '2', 'O.Manoharan', 'Business', 20000.00, 2, 0.00, 12000.00, 'Old Washermenpet', 'old Washermenpet', '2104190011', '', '1', 'upload_files/candidate_tracker/83499786398_AJITH KUMAR.docx', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Checked for RE,left without attending 2nd level', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 11:59:17', 1, '2021-04-19 12:02:32', 0, NULL, 1),
(4473, 'Fazalu rahaman', '4', '9751421278', '6374040939', 'fazalurahaman48@gmail.com', '1989-07-17', 31, '3', '1', 'Hayathudeen lic', 'Manager', 300000.00, 2, 8.00, 8.00, 'T. Nagar', 'T. Nagar', '2104190012', '', '2', 'upload_files/candidate_tracker/34684597722_New Doc 2021-04-07 11.56.55_1.pdf', NULL, NULL, '2021-04-19', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 12:03:32', 1, '2021-04-19 12:50:52', 0, NULL, 1),
(4474, 'Venkatesh Prasad', '4', '8179021109', '9441066074', 'Venkateshprasadvs@gmail.com', '1996-07-05', 24, '1', '2', 'V.r.saravanan', 'Labour', 15000.00, 1, 15000.00, 15000.00, 'Tiruttani', 'Tiruttani', '2104190013', '', '2', 'upload_files/candidate_tracker/18286317535_pk.docx', NULL, NULL, '2021-04-19', 6, '55577', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 12:18:37', 1, '2021-04-19 12:24:28', 0, NULL, 1),
(4475, 'Vignesh.C', '4', '7904831978', '9176477732', 'Vigneshc2402@gmail.com', '1994-02-24', 27, '2', '2', 'M.Chandra Regu', 'Commercial Work', 25000.00, 1, 12.00, 18.00, 'West Saidapet', 'West Saidapet', '2104190014', '1', '2', 'upload_files/candidate_tracker/71821038812_VIGNESH RESUME (6).pdf', NULL, '1', '2021-04-19', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge in IT, looking for AR/AP caller positions', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-19 12:27:45', 7, '2021-08-28 06:34:24', 0, NULL, 1),
(4476, 'maghudeeshwaran', '6', '8124371346', '8939994452', 'maghiram651@gmail.com', '1998-05-30', 22, '3', '2', 'Ramalingam', 'Painter', 35000.00, 2, 14500.00, 16000.00, 'musiri, trichy', 'Velachery,Chennai', '2104190015', '', '2', 'upload_files/candidate_tracker/58512090263_Maghudeeshwaran resume.docx', NULL, '1', '2021-04-19', 0, '', '3', '8', '1970-01-01', 180000.00, '', '2', '1970-01-01', '2', 'For Guru Team With Ctc - 1,80,000 MCTC 15000, 11672 net', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 12:28:58', 60, '2021-06-26 06:02:06', 0, NULL, 1),
(4477, '', '0', '8015722728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 12:29:05', 0, NULL, 0, NULL, 1),
(4478, 'Vignesh', '22', '9043253393', '', 'vickyvignesh2324@gmail.com', '1996-02-21', 25, '2', '2', 'Anna durai', 'Tailor', 24000.00, 1, 10.00, 13.00, 'CHENNAI', 'CHENNAI', '2104190017', '1', '2', 'upload_files/candidate_tracker/69311056417_vignesh.cv new black-compressed.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No knowledge Communication poor, sustainability doubt', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 12:43:53', 1, '2021-04-19 12:47:15', 0, NULL, 1),
(4479, 'selva perumal', '4', '9092316766', '', 'selvachek8777@gmail.com', '1998-07-16', 22, '2', '2', 'sekar', 'icf', 30000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2104190018', '2', '2', 'upload_files/candidate_tracker/80063447673_resume_1583669694752.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 01:00:21', 1, '2021-04-19 01:02:51', 0, NULL, 1),
(4480, 'Yogesh S', '22', '9080411328', '9710100950', 'S.yogeshDM@gmail.com', '2001-06-06', 19, '2', '2', 'Shanmuga Sunduram.M', 'Supervisor in kitchen', 15000.00, 1, 0.00, 15000.00, 'No:9 om sakthi Nagar Mangadu', 'Mangadu', '2104190019', '1', '1', 'upload_files/candidate_tracker/866881620_new Resume.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfortable with the agreement,sustainability Doubt fresher for Digital Marketing', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 01:02:33', 1, '2021-04-19 04:07:32', 0, NULL, 1),
(4481, 'tamilarasan', '4', '9445490673', '', 'tamiladaakhan@gmail.com', '1997-07-24', 23, '2', '2', 'venkatesan', 'business', 12000.00, 2, 11000.00, 13000.00, 'chennai', 'chennai', '2104190020', '2', '2', 'upload_files/candidate_tracker/62995701612_resume tamil.pdf', NULL, NULL, '2021-04-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for field sales, only for telecall and the exp 14+ Gross,Will not sustain ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 01:05:16', 1, '2021-04-19 01:06:57', 0, NULL, 1),
(4482, 'V.Gokulakannan', '24', '6374781381', '', 'vgokulakannan1998@gmail.com', '1998-01-30', 23, '2', '2', 'S.vadivelu', 'Business', 50000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2104190021', '1', '1', 'upload_files/candidate_tracker/35671776760_gokul resume.pdf', NULL, NULL, '2021-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 01:33:29', 1, '2021-04-19 01:41:35', 0, NULL, 1),
(4483, 'Ajzer Aarif', '22', '8939108776', '8848306069', 'ajzeraarif@gmail.com', '1999-07-13', 22, '2', '2', 'Aarif pp', 'Business', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2104190022', '1', '1', 'upload_files/candidate_tracker/10572502795_Ajzer resume new-2.pdf', NULL, '1', '2021-08-02', 0, '', '4', '60', NULL, 0.00, '', '0', NULL, '1', 'Task Has Been Assigned', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 02:00:04', 1, '2021-07-31 04:34:19', 0, NULL, 1),
(4484, 'Sharmila .p', '21', '8124902287', '8124942064', 'sharmilakamalabai687@gmail.com', '1996-11-23', 24, '1', '1', 'Mohan rakesh', 'Technician', 25000.00, 1, 24500.00, 25000.00, 'Thiruninravur', 'Thiruninravur', '2104190023', '', '2', 'upload_files/candidate_tracker/77640034738_1616430111888_96416 Relieving Letter.pdf', NULL, NULL, '2021-04-19', 0, 'P1075', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Expected high salary', '3', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-19 02:21:56', 1, '2021-04-19 02:46:36', 0, NULL, 1),
(4485, 'V.Gokulakannan', '22', '6382351213', '6374781381', 'vgokulakannan1998@gmail.com', '1998-01-30', 23, '2', '2', 'S.vadivelu', 'Business', 50000.00, 2, 0.00, 10000.00, 'Avadi', 'Avadi', '2104190024', '1', '1', 'upload_files/candidate_tracker/73238595638_gokul resume.pdf', NULL, NULL, '2021-04-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 02:42:15', 1, '2021-04-19 02:45:16', 0, NULL, 1),
(4486, '', '0', '9176477732', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 03:28:38', 0, NULL, 0, NULL, 1),
(4487, 'Keerthana', '13', '9659733790', '', 'keerthanaece1995@gmail.com', '1995-06-07', 25, '2', '2', 'Lakshmanan', 'Police', 5.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2104190026', '1', '1', 'upload_files/candidate_tracker/69084462364_KEERTHANA RESUME-converted.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Agreement, Exp is very High ,career Gap', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-19 03:48:51', 1, '2021-04-22 02:53:28', 0, NULL, 1),
(4488, 'Yuvaraja.G', '23', '9789618281', '', 'yuvarajagmr1991@yahoo.com', '1992-05-27', 29, '2', '1', 'Agalya', 'Chennai', 23000.00, 1, 23000.00, 35000.00, 'Theni', 'Nessapakkam chennai', '2104190027', '1', '2', 'upload_files/candidate_tracker/77578180279_Yuvaraja G_Resume (1).pdf', NULL, '2', '2021-07-13', 20, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-19 04:04:09', 1, '2021-07-06 03:26:32', 0, NULL, 1),
(4489, '', '0', '8428893308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104190028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-19 04:26:45', 0, NULL, 0, NULL, 1),
(4490, 'Hariprasath TE', '30', '9442192196', '8072035356', 'hariprasath.te@gmail.com', '1997-03-24', 24, '2', '2', 'Ethirajan THS', 'Business', 50000.00, 1, 350000.00, 400000.00, 'Chennai', 'Chennai', '2104200001', '1', '2', 'upload_files/candidate_tracker/63043564377_HARI RESUME.pdf', NULL, NULL, '2021-04-20', 0, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Zoom interview with Vasu', '9', '2', '', '1', '1', '', '2', '2021-04-21', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 09:49:12', 50, '2021-04-20 10:03:21', 0, NULL, 1),
(4491, 'MOHAN RAJ', '22', '7200551939', '', 'mohanthegreat32@gmail.com', '1993-11-09', 27, '2', '2', 'jothi lakshmi', 'nil', 20000.00, 1, 0.00, 280000.00, 'Chennai', 'Chennai', '2104200002', '1', '1', 'upload_files/candidate_tracker/46770234362_mohanraj updated resumea updated.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Didnt turn back after checking with his family on the SA,', '2', '2', '0', '1', '1', '0', '2', '2021-04-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 09:57:38', 1, '2021-04-20 10:12:33', 0, NULL, 1),
(4492, 'keerthika', '4', '9092310859', '', 'keerthi333keerthi@gmail.com', '2001-05-24', 19, '2', '2', 'arumugam', 'auto driver', 10000.00, 1, 0.00, 10000.00, 'medavakkam', 'medavakkam', '2104200003', '2', '1', 'upload_files/candidate_tracker/96716748080_WhatsApp Image 2021-04-19 at 9.03.48 PM.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-20 10:00:41', 1, '2021-04-20 10:02:21', 0, NULL, 1),
(4493, 'maheshwari', '4', '9025137844', '', 'madhum1107@gmail.com', '2000-07-11', 20, '2', '2', 'kannan', 'kooli', 10000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104200004', '2', '1', 'upload_files/candidate_tracker/50270677300_Madhu Resume.docx', NULL, NULL, '2021-04-20', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-20 10:03:57', 1, '2021-04-20 10:07:46', 0, NULL, 1),
(4494, 'S Padma', '4', '9597310913', '', 'Padmamanoj10feb@gmail.com', '1995-11-25', 25, '2', '1', 'K Senduraj', 'Cooli', 10000.00, 0, 0.00, 10000.00, 'Virugabakkam', 'Virugabakkam', '2104200005', '1', '1', 'upload_files/candidate_tracker/23026238205_padma resume.docx', NULL, NULL, '2021-04-20', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for this profile and looking for non voice', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 10:22:49', 50, '2021-04-20 11:01:03', 0, NULL, 1),
(4495, 'bairavanathan', '4', '9655577764', '8838101766', 'suriyabairav31@gmail.com', '1997-08-31', 23, '2', '2', 'rani', 'house wife', 7000.00, 0, 0.00, 15000.00, 'Thanjavur', 'chennai', '2104200006', '1', '1', 'upload_files/candidate_tracker/75789255369_Resume..docx', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Exp in Sales,Sustainability Doubt will not handle the pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 10:51:46', 1, '2021-04-20 11:00:11', 0, NULL, 1),
(4496, 'M.D Thamizarasan', '4', '9094518144', '9840341698', 'Smartthamiz7@gmail.com', '1999-07-21', 21, '2', '2', 'P.M Devaraj', 'If anything', 115000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2104200007', '1', '1', 'upload_files/candidate_tracker/28168206742_Thamil.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Focus on Govt Job only for Time being looking for a job', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 11:00:58', 50, '2021-04-20 11:17:49', 0, NULL, 1),
(4497, 'Larvin Josa Johnson A', '28', '8667573302', '9092826128', 'Larvin1012@gmail.com', '1997-12-10', 23, '2', '2', 'Antony Raj', 'Unemployed', 27000.00, 1, 185000.00, 350000.00, 'Chennai', 'Chennai', '2104200008', '1', '2', 'upload_files/candidate_tracker/78226973383_Larvin Resume..docx', NULL, NULL, '2021-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 11:01:16', 1, '2021-04-20 11:05:44', 0, NULL, 1),
(4498, '', '0', '8428985538', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 11:02:54', 0, NULL, 0, NULL, 1),
(4499, 'Santhosh', '4', '9843537149', '9047648557', 'santhoshpriya2322@gmail.com', '1998-03-02', 23, '2', '2', 'Govindaraj', 'Former', 15000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2104200010', '1', '1', 'upload_files/candidate_tracker/29668787972_santhosh resume.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Sales Exp ,sustainability doubt', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 11:03:35', 1, '2021-04-20 11:24:42', 0, NULL, 1),
(4500, 'Manivannan', '28', '9600111751', '', 'manivannang1999@gmail.com', '1999-02-18', 22, '2', '2', 'Guruprasad', 'EDP manager', 3.00, 0, 3.00, 4.00, 'Chennai -600117', 'Chennai -600117', '2104200011', '1', '2', 'upload_files/candidate_tracker/6903096519_manivannan_résumé_ops.pdf', NULL, NULL, '2021-04-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 11:05:44', 1, '2021-04-20 11:09:13', 0, NULL, 1),
(4501, 'Dhivakar.b', '6', '8940977964', '', 'dhivakarb6@gmail.com', '2001-06-04', 19, '2', '2', 'Babu.r', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Periyakalakatur', 'Thiruvallur', '2104200012', '1', '1', 'upload_files/candidate_tracker/40050489618_Divakar Resume.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for IT positions only, but not relevant for our IT positions', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 11:21:07', 1, '2021-04-20 11:29:57', 0, NULL, 1),
(4502, 'M Akash', '6', '9094684428', '8667855167', 'aakashjai006@gmail.com', '1999-01-06', 22, '2', '2', 'T manohar', 'Tailor', 15000.00, 1, 10000.00, 15000.00, 'E30 periveri salai tnhb housing Anna nagar ch 40', 'E30 Periveri Salai Tnhb Housing Anna Nagar Ch 40', '2104200013', '1', '2', 'upload_files/candidate_tracker/98412365735_Resume_AKASH.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much open up no relevant Exp in Sales, Sustainability Doubt', '5', '2', '', '1', '1', '', '2', '2021-04-22', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 11:23:21', 50, '2021-04-20 11:43:57', 0, NULL, 1),
(4503, 'Vijay', '4', '9710048459', '9841181835', 'Vijayraina23898@gmail.com', '1998-08-23', 22, '2', '2', 'Mani', 'Electrician', 15000.00, 2, 10000.00, 15000.00, '3/48 nethaji nagar 2nd st ramapuram ch 89', '3/48 nethaji nagar 2nd st ramapuram ch 89', '2104200014', '1', '2', 'upload_files/candidate_tracker/68886837171_null.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Non Voice process only', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 11:24:14', 50, '2021-04-20 12:06:45', 0, NULL, 1),
(4504, 'shankar', '30', '9042511338', '', 'kskshankar@gmail.com', '1982-01-09', 39, '2', '1', 'deepa', 'housewife', 420000.00, 3, 35000.00, 40000.00, 'chennai', 'chennai', '2104200015', '1', '2', 'upload_files/candidate_tracker/21830697466_1618470993850Resume_Shankar (1)-1.pdf', NULL, NULL, '2021-04-20', 1, '', '2', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Zoom Interview With Vasu', '9', '2', '', '1', '1', '', '2', '2021-04-21', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-20 11:30:06', 50, '2021-04-20 12:45:15', 0, NULL, 1),
(4505, 'Vasanthi', '28', '7200292429', '', 'Vasanthi24291@gmail.com', '1996-01-29', 25, '2', '2', 'Gopi', 'Business', 25000.00, 1, 21000.00, 25000.00, 'Tambaram', 'Tambaram', '2104200016', '1', '2', 'upload_files/candidate_tracker/45671852258_Resume_Vasanthi.docx', NULL, NULL, '2021-04-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, High Pay Expectation Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 11:47:03', 1, '2021-04-20 12:15:51', 0, NULL, 1),
(4506, 'Pardeeban k', '13', '7538869973', '8939152513', 'kkrparthi3@gmail.com', '1998-11-15', 22, '2', '2', 'Karunanidhi', 'Retired secretary', 100000.00, 1, 0.00, 15000.00, 'Nagapatinam', 'Tambaram', '2104200017', '1', '1', 'upload_files/candidate_tracker/71480501584_CV_2021-04-09-043527.pdf', NULL, NULL, '2021-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 12:03:10', 1, '2021-04-20 12:06:38', 0, NULL, 1),
(4507, 'MOHAMED RAFIQ.M', '26', '8270990996', '', 'mmdrafiqca103@gmail.com', '1994-02-16', 27, '2', '2', 'MOHAMED SAMSUDEEN', 'PROFESSION', 100000.00, 4, 0.00, 15000.00, 'ANGAPANAYAN STREET, MANNADY CHENNAI', 'Mannady', '2104200018', '1', '1', 'upload_files/candidate_tracker/87726527677_Rafiq Curriculum Vitae 3.docx', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication,looking only for Accounts positions', '7', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 12:06:47', 1, '2021-04-20 12:12:03', 0, NULL, 1),
(4508, '', '0', '9629388276', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 12:35:57', 0, NULL, 0, NULL, 1),
(4509, 'Karthik Radhakrishnan', '28', '9940288484', '9790705878', 'mailme90karthik@gmail.com', '1990-02-03', 31, '2', '1', 'Karthika R', 'Teacher', 39000.00, 4, 300000.00, 450000.00, 'Chennai', 'Chennai', '2104200020', '1', '2', 'upload_files/candidate_tracker/71973434973_Karthik_resume-2021-converted (1).pdf', NULL, NULL, '2021-04-21', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have MIS Exp, Communication ok but the expectation is very high Holding an offer for 4 LPA,Exp 4.5 LPA Min', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 12:47:26', 1, '2021-04-20 05:02:48', 0, NULL, 1),
(4510, 'Anandan', '17', '9710255479', '7338922263', 'anandangnc41@gmail.c', '1991-11-06', 29, '2', '1', 'Hema latha', 'House wife', 10000.00, 0, 20000.00, 20000.00, 'Chennai', 'Chennai', '2104200021', '1', '2', 'upload_files/candidate_tracker/96299348477_1618903813608_1618901933627_anand 2 resume 2.docx', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Frequent Job Changes, no relevant Exp not suits', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-04-20 12:49:15', 1, '2021-04-20 01:02:38', 0, NULL, 1),
(4511, 'Pujitha', '4', '7395911949', '9789009264', 'mail2puji@gmail.com', '1996-04-30', 24, '2', '2', 'DAYALAN j', 'Electrician', 10000.00, 0, 0.00, 15000.00, '3/14 prithivipakkam main road venkatapuram', 'Ambattur', '2104200022', '16', '1', 'upload_files/candidate_tracker/95683507632_Pujitha BIM Resume-converted.pdf', NULL, NULL, '2021-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non Voice process only', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-20 12:50:23', 1, '2021-04-20 12:53:40', 0, NULL, 1),
(4512, '', '0', '9940211104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 02:41:05', 0, NULL, 0, NULL, 1),
(4513, 'Varsha K', '28', '9952930208', '', 'varsha.kamakolunu@gmail.com', '1996-10-24', 24, '2', '2', 'K. Chandrasekaran', 'Clerk', 80000.00, 1, 18000.00, 25000.00, 'K K nagar', 'K k nagar', '2104200024', '1', '2', 'upload_files/candidate_tracker/77512377298_Resume - Varsha K.pdf', NULL, NULL, '2021-04-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Good, Requested time to Check For Agreement With Parents and didnt turn back', '3', '2', '0', '1', '1', '0', '2', '2021-04-26', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 03:16:12', 1, '2021-04-20 04:34:16', 0, NULL, 1),
(4514, '', '0', '7904562919', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 04:40:32', 0, NULL, 0, NULL, 1),
(4515, 'k.s.varsha', '22', '9940096561', '9543102409', 'ksvarsha123@gmail.com', '1998-03-14', 23, '2', '2', 'k.m suresh', 'mba student', 100000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2104200026', '1', '1', 'upload_files/candidate_tracker/46664442010_Resume..pdf', NULL, NULL, '2021-04-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Looking For Digi Mar, Sustainability Doubt,', '2', '1', '0', '1', '1', '0', '2', '2021-04-23', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 05:42:35', 1, '2021-04-20 05:49:35', 0, NULL, 1),
(4516, 'shruti', '22', '8825576442', '', 'shrutidaga11@gmail.com', '1999-05-11', 21, '2', '2', 'suresh kumar', 'businessman', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2104200027', '1', '1', 'upload_files/candidate_tracker/7757059687_updated resume 1.docx', NULL, NULL, '2021-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 05:56:41', 1, '2021-04-22 08:00:08', 0, NULL, 1),
(4517, '', '0', '7338718299', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200028', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 05:56:58', 0, NULL, 0, NULL, 1),
(4518, 'Rajesh kumar A', '7', '9092427230', '', 'Rajiviji1998000@gmail.com', '1998-07-31', 22, '2', '2', 'Ashokan m', 'Car mechanic', 10000.00, 1, 13000.00, 15000.00, 'Thiruverkadu chennai', 'Thiruverkadu chennaj', '2104200029', '1', '2', 'upload_files/candidate_tracker/37566197907_Resume - rajesh31.docx', NULL, NULL, '2021-04-21', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not fit for MF positions, no basic knowledge in MF', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-20 06:00:09', 1, '2021-04-20 06:12:35', 0, NULL, 1),
(4519, '', '0', '9092308214', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104200030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-20 06:23:21', 0, NULL, 0, NULL, 1),
(4520, 'Shamlee Santhanam', '28', '7904477050', '', 'shamleeshamu94@gmail.com', '1994-11-01', 26, '2', '1', 'Santhanam N', 'Business', 30000.00, 1, 14789.00, 25000.00, 'Triplicane', 'Triplicane', '2104200031', '1', '2', 'upload_files/candidate_tracker/87384853445_ic1ud-6uqj4.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Worked In RR Donnelly, Sustainability Doubt Career Gap, Exp - 18K', '3', '2', '0', '1', '1', '0', '2', '2021-04-26', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-20 07:07:45', 1, '2021-04-22 04:42:19', 0, NULL, 1),
(4521, 'Samshier sate', '5', '9566080782', '', 'samshiersate1999@gmail.com', '2006-04-21', 0, '2', '2', 'Jailakhan', 'Salary private', 45000.00, 2, 0.00, 35000.00, 'Avadi', 'Avadi', '2104210001', '16', '2', 'upload_files/candidate_tracker/55991820523_RESUME sam.docx', NULL, NULL, '2021-04-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sales Exp in CDF, high CTC expectation', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 10:59:37', 1, '2021-04-21 11:02:53', 0, NULL, 1),
(4522, '', '0', '7401541416', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 11:45:05', 0, NULL, 0, NULL, 1),
(4523, 'Vinitha', '4', '8903928412', '', 'vinithavishwa1998@gmail.com', '1998-03-02', 23, '2', '2', 'Viswanathan', 'Tailore', 25000.00, 1, 0.00, 15000.00, 'Salem ,Tamil Nadu', 'Chennai', '2104210003', '1', '1', 'upload_files/candidate_tracker/14976758379_resume_vinitha_01.pdf', NULL, NULL, '2021-04-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 11:46:40', 7, '2021-04-22 02:40:40', 0, NULL, 1),
(4524, 'M.KISHORE', '4', '7200382746', '9843990696', 'mkishore813@gmail.com', '1995-09-05', 0, '2', '1', 'K.Mohandass', 'Site Supervisor', 26.00, 1, 11.00, 12.00, 'Mayiladuthurai', 'Tambaram', '2104210004', '1', '1', 'upload_files/candidate_tracker/16020361926_Resume(Kishore).pdf', NULL, NULL, '2021-04-21', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Voice, will not handle the Pressure and not ready to work on target', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 12:26:02', 1, '2021-04-21 12:27:27', 0, NULL, 1),
(4525, 'Nandhini. S', '4', '8248799603', '8610406352', 'dakshinanandhini@gmail.com', '1997-04-21', 24, '2', '1', 'Shanmugam. R', 'Driver', 10000.00, 1, 12000.00, 15000.00, 'Thiruninravur', 'Thiruninravur', '2104210005', '1', '2', 'upload_files/candidate_tracker/24126883796_nandhini resume....pdf', NULL, NULL, '2021-04-21', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sustainability Doubt, Will not handle the pressure,', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 12:47:19', 50, '2021-04-28 10:41:02', 0, NULL, 1),
(4526, '', '0', '9443403216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 12:54:45', 0, NULL, 0, NULL, 1),
(4527, 'Venkatesh', '4', '9626613657', '', 'vtesh922@gmail.com', '1996-04-06', 25, '2', '2', 'Kannan', 'Employee', 50000.00, 0, 0.00, 15000.00, 'Tiruvannamalai', 'Chennai', '2104210007', '1', '1', 'upload_files/candidate_tracker/3900552059_Venkatesh Resume.pdf', NULL, NULL, '2021-04-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 01:03:40', 1, '2021-04-21 01:24:09', 0, NULL, 1),
(4528, 'Parthiban b', '6', '9884373343', '8778029712', 'parthipraveen36@gmail.com', '1996-03-06', 25, '2', '2', 'K balaji', 'Record clerk', 30000.00, 1, 14000.00, 18000.00, 'Chennai vyasarpadi', 'Vyasarpadi', '2104210008', '1', '2', 'upload_files/candidate_tracker/11910196836_2021 new resume .pdf', NULL, NULL, '2021-04-21', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Got Selected For Thiyagu Team,15K TH Was Committed Earlier,Now Need To Negotiate With PF Deductions/He S Corona Positive Will Take Some Time To Come Back. Attended 3months back ', '5', '2', '0', '1', '3', '0', '2', '2021-05-10', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 01:09:03', 1, '2021-04-21 01:19:57', 0, NULL, 1),
(4529, 'N. Syed Riyazuddin', '4', '8072517606', '7092915857', 'Ispaderaja007@gmail.com', '1999-12-15', 21, '1', '2', 'Syed Nizamuddin', 'Unemployment', 45000.00, 1, 17000.00, 20000.00, 'Vengal, thiruvallur', 'Vengal, thiruvallur', '2104210009', '', '2', 'upload_files/candidate_tracker/23444372630_resume-1.docx', NULL, NULL, '2021-04-22', 30, 'Na', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'For Tiruvallur Location, Expectation Min 20k,Into Credit Card Sales', '1', '1', '0', '1', '1', '0', '2', '2021-04-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 01:10:59', 1, '2021-04-22 11:35:55', 0, NULL, 1),
(4530, 'SAALIM HUSSAIN M A', '13', '9940104127', '', 'saalimhussain1095@gmail.com', '1999-11-16', 21, '2', '2', 'ATHEEQUR RAHMON M H', 'Clerk', 10000.00, 1, 0.00, 11000.00, 'Chennai', 'Chennai', '2104210010', '1', '1', 'upload_files/candidate_tracker/17178047546_saalimhussain1095.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge, sustainability doubt, will not suits', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 02:26:59', 1, '2021-04-21 02:38:47', 0, NULL, 1),
(4531, '', '0', '8892071555', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 02:28:28', 0, NULL, 0, NULL, 1),
(4532, 'PAVITHRA.M', '4', '6382715013', '9789908074', 'pavithrajeshu2803@gmail.com', '2006-04-21', 0, '1', '2', 'B.MANI', 'Cooli', 13000.00, 1, 12000.00, 15000.00, 'Chennai-medavakkam', 'Medavakkam-chennai', '2104210012', '', '2', 'upload_files/candidate_tracker/92757241591_PAVI RESUME UPDATED.pdf', NULL, NULL, '2021-04-21', 1, '1047', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice Process only', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 02:36:33', 1, '2021-04-21 03:00:52', 0, NULL, 1),
(4533, '', '0', '9344956117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 02:38:01', 0, NULL, 0, NULL, 1),
(4534, 'Saira begam', '4', '7871281515', '6379053092', 'Ammusaira864@gmail.com', '1998-08-22', 22, '1', '2', 'R. Munver basha', 'Tailor', 15000.00, 1, 0.00, 11000.00, 'Chennai velachery', 'Chennai', '2104210014', '', '1', 'upload_files/candidate_tracker/53167058995_resume 2 pages (2).pdf', NULL, NULL, '2021-04-21', 0, '1047', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Non Voice process', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 02:49:03', 1, '2021-04-21 04:01:58', 0, NULL, 1),
(4535, '', '0', '8939107989', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 03:38:21', 0, NULL, 0, NULL, 1),
(4536, 'V. Niranjana', '4', '8939107978', '', 'Niranjanaaathisri2000@gmail.com', '2000-09-22', 20, '1', '2', 'V. Jayanthi', 'House keeping', 15000.00, 0, 12000.00, 15000.00, 'Chennai', 'Chennai', '2104210016', '', '2', 'upload_files/candidate_tracker/39839088191_Report Preview(1).PDF', NULL, NULL, '2021-04-21', 1, '1047', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Voice process', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 03:52:57', 1, '2021-04-21 03:58:25', 0, NULL, 1),
(4537, 'J.pavithra', '4', '6383257839', '9344956117', 'Pavithradass76@gmail.com', '2006-04-21', 0, '1', '2', 'A.jesudass', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Medavakkam', 'Chennai', '2104210017', '', '2', 'upload_files/candidate_tracker/83227409889_Report Preview(1).PDF', NULL, NULL, '2021-04-21', 1, '1047', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Non Voice Process', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 04:01:54', 1, '2021-04-21 04:05:30', 0, NULL, 1),
(4538, 'Mohammed Thaqi. C', '13', '7845014181', '', 'thaqicm@gmail.com', '2000-12-02', 20, '2', '2', 'Zafaruddin.c', 'Leather asster', 20000.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2104210018', '1', '1', 'upload_files/candidate_tracker/77723640054_Md Thaqi(Resume-A).pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to check with family for SA, Sustainability Doubt', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 04:06:21', 1, '2021-04-21 04:09:14', 0, NULL, 1),
(4539, 'Deepika S', '4', '7358004221', '9566226356', 'deepijesika1503@gmail.com', '2000-03-15', 21, '2', '2', 'Santha', 'House wife', 15000.00, 1, 12000.00, 18000.00, 'Paramakudi', 'Thiruvottiyur', '2104210019', '1', '2', 'upload_files/candidate_tracker/9117496419_DEEPIKA S.pdf', NULL, NULL, '2021-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking only for Non Voice process, location constraint', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-21 04:11:08', 50, '2021-04-27 11:31:56', 0, NULL, 1),
(4540, 'Harshavardhan s', '5', '8296986268', '', 'harsh2951990@gmail.com', '1990-05-29', 30, '2', '2', 'Sathya murthy s', 'Retired', 30000.00, 1, 5.75, 5.00, 'Bangalore', 'Bangalore', '2104210020', '', '2', 'upload_files/candidate_tracker/33494675214_1618564556135_Resume - 05-01-2021.docx', NULL, NULL, '2021-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-21 04:11:10', 1, '2021-04-21 04:16:16', 0, NULL, 1),
(4541, 'mohammed irsath A', '2', '9600300630', '8610718879', 'irshath700@gmail.com', '2000-10-23', 20, '2', '2', 'Vahitha banu A', 'Housewife', 13000.00, 1, 0.00, 20000.00, 'No.395 2nd street sanjay nagar vyasarpadi chennai', 'No.395 2nd street sanjay nagar vyasarpadi chennai', '2104210021', '1', '1', 'upload_files/candidate_tracker/24286843069_Mohammed irsath a CV.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'For Mern Stack,Fresher,Should Come Back After Completing The Exams', '2', '2', '0', '1', '1', '0', '2', '2021-05-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 04:20:11', 1, '2021-04-21 04:26:08', 0, NULL, 1),
(4542, '', '0', '7338917407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 04:41:03', 0, NULL, 0, NULL, 1),
(4543, 'Roger Antony', '23', '7708270558', '9080871687', 'rogerantony222@gmail.com', '1995-04-24', 25, '2', '2', 'Jerome Manoharan Arokia Mary', 'IT', 20000.00, 1, 0.00, 15000.00, 'Nagercoil', 'chennai', '2104210023', '1', '1', 'upload_files/candidate_tracker/81623384650_Roger_Antony_Mobile.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not Satisfied.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 05:15:27', 1, '2021-04-21 05:22:20', 0, NULL, 1),
(4544, '', '0', '6382639244', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104210024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-21 05:34:55', 0, NULL, 0, NULL, 1),
(4545, 'Gobi krishnan', '13', '8667344612', '', 'Gobikrish03@gmail.com', '1999-07-22', 21, '2', '2', 'Muthu.v', 'Electrician', 90000.00, 2, 0.00, 3.00, 'Chennai', 'Chennai', '2104210025', '1', '1', 'upload_files/candidate_tracker/47984499915_Gobi\'s Resume.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Agreement, fresher yet to complete College', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-21 05:42:27', 1, '2021-04-24 03:08:45', 0, NULL, 1),
(4546, 'Venkatesh', '4', '6385315142', '', 'vtesh430@gmail.com', '1996-04-06', 25, '2', '2', 'Kannan', 'Employee', 50000.00, 0, 0.00, 14000.00, 'Tiruvannamalai', 'Chennai', '2104220001', '1', '1', 'upload_files/candidate_tracker/33922794822_Venkatesh Resume.pdf', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 08:24:37', 1, '2021-04-22 08:29:12', 0, NULL, 1),
(4547, 'Venkatesh', '4', '6385314152', '', 'vtesh430@gmail.com', '1996-04-06', 25, '2', '2', 'Kannan', 'Employee', 50000.00, 0, 0.00, 14000.00, 'Tiruvannamalai', 'Chennai', '2104220002', '1', '1', 'upload_files/candidate_tracker/5638056749_Venkatesh Resume.pdf', NULL, NULL, '2021-05-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 08:30:04', 1, '2021-04-22 10:40:46', 0, NULL, 1),
(4548, '', '0', '7092320507', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104220003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-22 08:47:42', 0, NULL, 0, NULL, 1),
(4549, 'leena', '4', '6374041594', '', 'vteena474@gmail.com', '2001-07-24', 19, '2', '2', 'vetrivel', 'plumber', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2104220004', '2', '1', 'upload_files/candidate_tracker/59991541893_Leena.V Resume-2.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Only for Non Voice,will not sustain in our process', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-22 08:56:38', 1, '2021-04-22 08:58:05', 0, NULL, 1),
(4550, 'B MOHANARANGAN', '26', '8754531882', '9043335096', 'MOHANARANGAN.4604@gmail.com', '1990-02-12', 31, '2', '2', 'Balakrishnan j', 'Retired', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2104220005', '1', '2', 'upload_files/candidate_tracker/60816615991_New Doc 2021-04-07 11.56.55_1.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability Doubt, Will not fit for our MF Role, No knowledge in MF', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 10:51:45', 7, '2021-04-22 11:37:22', 0, NULL, 1),
(4551, 'Shanmuga priya.S', '4', '9361345332', '7092320507', 'shanmugapriya1860@gmail.com', '2000-10-21', 20, '2', '2', 'Saravanan', 'Security', 10000.00, 1, 0.00, 15000.00, '8/316 194th street muthungaiyur Chennai 118', '8/316 194th street muthamizh Nungaiyur Chennai 118', '2104220006', '1', '1', 'upload_files/candidate_tracker/55704264064_shanmuga priya resume updated pdf.pdf', NULL, NULL, '2021-04-22', 0, '', '3', '8', '2021-04-26', 132000.00, '', '3', '2022-03-03', '2', 'Selected for Priyanka Jeni, CTC -132000 Gross- 11000 TH - 10450', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 10:52:55', 60, '2021-04-24 04:14:51', 0, NULL, 1),
(4552, 'rajasekaran c', '20', '7010428328', '9551393983', 'sekaran0215@gmail.com', '2006-04-22', 0, '2', '2', 'chandran', 'work', 150000.00, 1, 0.00, 20000.00, 'no 35 nainar st', 'chennai', '2104220007', '1', '1', 'upload_files/candidate_tracker/96206982208_RAJA RESUME.doc', NULL, NULL, '2021-04-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'only retail store Exp, Will not fit for our Sales profile,will not handle the pressure', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 11:23:51', 7, '2021-04-22 11:38:08', 0, NULL, 1),
(4553, 'Priyanka', '28', '6380039387', '9080796639', 'priyankaanoai@gmail.com', '2000-07-25', 20, '2', '2', 'Perumal', 'Labour', 20000.00, 3, 0.00, 13000.00, 'Chennai', 'Chennai', '2104220008', '1', '1', 'upload_files/candidate_tracker/46801145613_RESUME-P.docx', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Good Communication,Profile is Good, not sure about sustainability as her marriage proposal going on', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 11:27:58', 1, '2021-04-22 11:44:42', 0, NULL, 1),
(4554, 'Justin Davis J', '6', '8344416941', '8344416931', 'justin18davis@gmail.com', '1993-01-07', 28, '2', '1', 'Jenifer', 'Emergency Response Officer at 108', 30000.00, 2, 85000.00, 28000.00, 'Thuraipakkam', 'Thuraipakkam', '2104220009', '1', '2', 'upload_files/candidate_tracker/93491259825_Justin Resume-1.doc', NULL, NULL, '2021-04-22', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 11:30:36', 1, '2021-04-22 11:38:35', 0, NULL, 1),
(4555, 'Sowbakiya', '16', '8248722289', '', 'sowbakiyaloganathan@gmail.com', '1995-11-15', 25, '2', '2', 'Loganathan E.', 'Plumbing supervisor', 84000.00, 2, 17000.00, 30000.00, 'No -4, U block, vishalakshi garden, Mylapore', 'Same as above', '2104220010', '1', '2', 'upload_files/candidate_tracker/52770951844_RESUME_sowbakiya.doc', NULL, NULL, '2021-04-22', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,Salary Expectation is high,sustainability Doubt', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 11:38:56', 7, '2021-04-22 12:11:56', 0, NULL, 1),
(4556, 'Vinothini P', '28', '8675644708', '9710112147', 'vinoreethu@gmail.com', '2000-03-16', 21, '2', '2', 'Palani K', 'Security', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chrompet, Chennai.', '2104220011', '1', '1', 'upload_files/candidate_tracker/13757445328_RESUME- Vinothini.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Accounts position,Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 12:11:24', 1, '2021-04-22 12:19:08', 0, NULL, 1),
(4557, 'Karthikeyan S', '4', '7550231640', '9361620240', 'karthiksanju26@gmail.com', '2001-02-26', 20, '2', '2', 'Saravanan D', 'Bannering', 12000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2104220012', '1', '1', 'upload_files/candidate_tracker/93836053218_KarthikeyaN CV.pdf', NULL, NULL, '2021-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 12:13:48', 1, '2021-04-22 06:18:27', 0, NULL, 1),
(4558, 'Nithyananthan', '4', '9952048867', '7358477546', 'Nithyananthan4567@gmail.com', '1994-06-29', 26, '2', '2', 'G.Palani', 'Corpentor', 30000.00, 5, 15000.00, 16000.00, 'Thirumudivakkam Chennai', 'Thirumudivakkam Chennai', '2104220013', '1', '2', 'upload_files/candidate_tracker/37791119759_NITHYANANTHAN.docx', NULL, NULL, '2021-04-22', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested for Sales,No communication', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-22 12:43:27', 1, '2021-04-22 12:55:24', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4559, 'Abinesh V M', '28', '7305727364', '', 'vmabinesh912@gmail.com', '2000-12-09', 20, '2', '2', 'B.V.Manickavel', 'Real Estate', 30000.00, 1, 0.00, 15000.00, 'Chennai.', 'Chrompet, Chennai.', '2104220014', '1', '1', 'upload_files/candidate_tracker/47082697847_Abinesh-B.com-SRM.pdf', NULL, NULL, '2021-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 12:54:41', 1, '2021-04-22 01:23:21', 0, NULL, 1),
(4560, 'Bharath kumar. C', '28', '9361679206', '9791756988', 'Candybharath2000@gmail.com', '2000-11-30', 20, '2', '2', 'K. Chellappan', 'Mechanic', 15000.00, 1, 0.00, 13000.00, '36/c meenavar st kundrathur chennai, 69', '36/c meenavat st kundrathur Chennai, 69', '2104220015', '1', '1', 'upload_files/candidate_tracker/87151528995_CV_2021-04-22-031526.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication ,College yet to complete', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 12:56:19', 1, '2021-04-22 03:21:32', 0, NULL, 1),
(4561, 'Aravind K', '28', '7708886432', '', 'aravindrv1604@gmail.com', '2000-01-16', 21, '2', '2', 'Krishnan G', 'Business', 10000.00, 2, 0.00, 15000.00, 'Oragadom', 'Singaperumal koil', '2104220016', '1', '1', 'upload_files/candidate_tracker/11986236010_Aravind resume.docx', NULL, NULL, '2021-04-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location Constraint, No Communication will not suits for our role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 01:15:08', 50, '2021-04-23 11:44:46', 0, NULL, 1),
(4562, 'MOHAN RAJ.S', '28', '9566605653', '6380677062', 'mohanraj32000@gmail.com', '2000-08-03', 20, '2', '2', 'MEERA.S', 'Self-employed', 10000.00, 1, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2104220017', '1', '1', 'upload_files/candidate_tracker/95004197219_Mohan Raj-B.Sc-SRM.docx', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Focus on IT positions, Need to complete the graduation, will come once done with Course', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 01:30:20', 1, '2021-04-22 01:41:26', 0, NULL, 1),
(4563, 'Darvin Raj s', '28', '9940535019', '9940525019', 'darvinraj09@gmail.com', '2000-09-26', 20, '2', '2', 'G shankar', 'Courier', 10000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2104220018', '1', '1', 'upload_files/candidate_tracker/31767841226_CV_darvin bsc cs-SRM.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication, Sustainability Doubt', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 02:12:37', 1, '2021-04-22 04:45:48', 0, NULL, 1),
(4564, 'A. ANISHA', '4', '9080861390', '9345213813', 'shayirastenny0704@gmail.com', '1998-11-04', 22, '2', '2', 'T. APPUKUTTAN', 'Cooly', 20000.00, 1, 0.00, 15000.00, '3.17/A, peruvazhikadavu, ponmanai (p. O)', 'Chennai', '2104220019', '1', '1', 'upload_files/candidate_tracker/40894042558_ammuani.docx', NULL, NULL, '2021-04-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Went back to the native, once return to chennai will let us know', '1', '1', '', '1', '1', '', '2', '2021-04-26', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 02:23:13', 7, '2021-04-22 06:16:39', 0, NULL, 1),
(4565, 'Shiju', '4', '6369760363', '', 'bshiju13@gmail.com', '2000-01-13', 21, '2', '2', 'Babu', 'Coolie', 20000.00, 1, 0.00, 13000.00, 'Kanyakumari', 'Kanyakumari', '2104220020', '1', '1', 'upload_files/candidate_tracker/85346327980_Shiju RESUME.docx.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'even he s not opening his mouth', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 02:25:44', 7, '2021-04-22 06:16:23', 0, NULL, 1),
(4566, 'Nimmy .R', '4', '9629273449', '', 'Njiji70@gmail.com', '1996-01-09', 25, '2', '1', 'Rajamani', 'Coolie', 10000.00, 2, 0.00, 13000.00, '11/31,pukcodu,chanalkarai,mekkamandapam(po) 629166', 'Chennai', '2104220021', '1', '1', 'upload_files/candidate_tracker/81677187763_DIPR - P.R.No.219 - Press Release - Lockdown - Date 18.04.2021.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not opened her mouth', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 02:26:14', 7, '2021-04-22 06:16:08', 0, NULL, 1),
(4567, 'Nivetha.R', '4', '6369880015', '8870265705', 'nivearb9@gmail.com', '1998-10-11', 22, '2', '1', 'Rajakumar', 'Plumber', 10000.00, 1, 0.00, 15000.00, '43A/42 meenashi nager erulappapuram', 'Chennai', '2104220022', '1', '1', 'upload_files/candidate_tracker/25081542320_New Doc 2021-04-10 11.15.45_1.pdf', NULL, NULL, '2021-04-22', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'voice not clear not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-22 02:28:38', 1, '2021-04-22 03:03:19', 0, NULL, 1),
(4568, 'Naveen raj', '22', '9566738441', '9566393792', 'naveenfredy97@gmail.com', '1997-12-29', 23, '2', '2', 'Ramesh', 'Driver', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2104220023', '1', '1', 'upload_files/candidate_tracker/80292327661_CV_20210130035218.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Already attended for RM, we offered but didnt join now came for Digital Marketing', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 02:42:24', 1, '2021-04-22 03:06:51', 0, NULL, 1),
(4569, 'Prasath E', '4', '9962945083', '9841794713', 'Prasathmahi445@gmail.com', '2006-04-22', 15, '2', '2', 'Elumalai p', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Guduvancheri', 'Gudvancheri', '2104220024', '1', '1', 'upload_files/candidate_tracker/85835031323_CV.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Agreement Ok Yet To Complete College, Can join only after his studies', '1', '2', '', '1', '1', '', '2', '2021-04-26', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 02:44:07', 60, '2021-04-24 10:15:03', 0, NULL, 1),
(4570, '', '0', '8667240097', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104220025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-22 02:47:51', 0, NULL, 0, NULL, 1),
(4571, 'Patrice Priyanka Sabu', '28', '9677985391', '', 'patricepriyanka27@gmail.com', '2000-04-14', 21, '2', '2', 'Vijaya mary', 'Yarn Import and Export', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2104220026', '1', '1', 'upload_files/candidate_tracker/89658619063_RESUME.docx', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will come back after completing the exams,focus into IT openings\n', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 04:43:48', 1, '2021-04-22 04:47:56', 0, NULL, 1),
(4572, 'Wajith Baig . D', '4', '9087438129', '7092274664', 'wajithbaig123@gmail.com', '2000-05-14', 20, '2', '2', 'Dawood Baig . S', 'Driver', 60000.00, 1, 12000.00, 12000.00, 'Villivakkam, chennai', 'Villivakkam, chennai', '2104220027', '1', '2', 'upload_files/candidate_tracker/9912663650_Kaagaz_20210423_112755506268.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not opening his mounth also', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-04-22 06:16:42', 1, '2021-04-23 11:48:02', 0, NULL, 1),
(4573, 'Mohammed Arshath Saliq', '23', '9092267972', '9840945409', 'arshathsaliq@gmail.com', '2000-11-30', 20, '2', '2', 'Shahul Hameed', 'Coolie', 8000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2104220028', '1', '1', 'upload_files/candidate_tracker/15530330414_Arshath SALIQ CV.pdf', NULL, NULL, '2021-05-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 07:04:55', 1, '2021-04-22 07:11:07', 0, NULL, 1),
(4574, 'Vishnu', '22', '9962819198', '8939644233', 'vishnudavid1999@gmail.com', '1999-08-17', 21, '2', '2', 'Shanthi', 'House wife', 14000.00, 1, 0.00, 5000.00, '3/92B Padasalai Street Vettuvankeni Chennai', '3/92B Padasalai Street Vettuvankeni Chennai', '2104220029', '1', '1', 'upload_files/candidate_tracker/32197989848_Vishnu%20Resume.docx', NULL, NULL, '2021-04-24', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for Digital Marketing Intern cum Employment, initial Stipend will be provided then CTC will be finalised post 3 months of Internship', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-22 07:17:44', 1, '2021-04-22 07:26:31', 0, NULL, 1),
(4575, 'KISHORE KUMAR.N', '28', '7358442225', '9444735860', 'profkishorekumar14@gmail.com', '2000-11-14', 20, '2', '2', 'Bharathi', 'Business', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104220030', '1', '1', 'upload_files/candidate_tracker/47301688159_KISHORE CV-converted.pdf', NULL, '1', '2021-04-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication average ,not open for Agreement', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-04-22 08:00:22', 84, '2022-02-26 12:20:48', 0, NULL, 1),
(4576, '', '0', '9345333429', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104220031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-22 11:18:02', 0, NULL, 0, NULL, 1),
(4577, 'Amirtha yadhav', '3', '8610316728', '7708033733', 'amirthadoss@gmail.com', '1992-10-18', 28, '2', '1', 'Husband', 'Material engineer', 60000.00, 1, 10000.00, 15000.00, 'Ambattur', 'Ambattur', '2104230001', '1', '2', 'upload_files/candidate_tracker/63943165808_Amirtha-2020-1-1.pdf', NULL, NULL, '2021-04-24', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Every one year Job Change,sustainability doubt will not handle the pressure', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-23 09:35:02', 1, '2021-04-24 11:04:58', 0, NULL, 1),
(4578, 'aswin.v', '28', '9600142618', '9962944019', 'aswinhardyboy@gmail.com', '2000-08-15', 20, '2', '1', 's.Vaidhyanathan', 'private sector', 60000.00, 0, 0.00, 20000.00, 'medavakam', 'medavakam', '2104230002', '1', '1', 'upload_files/candidate_tracker/1957590198_Aswin .pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, College yet to complete.Sustainability 50/50', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-23 09:44:28', 1, '2021-04-23 11:23:16', 0, NULL, 1),
(4579, 'R.Bhavani', '4', '9080549545', '7904746721', 'bhavakutty8146@gmail.com', '1999-05-07', 21, '2', '2', 'V.Ramathas', 'Former', 20000.00, 1, 0.00, 20000.00, 'Perambalur', 'T nagar', '2104230003', '1', '1', 'upload_files/candidate_tracker/45728242497_Arumkumar.doc', NULL, NULL, '2021-04-23', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for voice process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-23 11:12:59', 60, '2021-04-23 04:28:37', 0, NULL, 1),
(4580, 'R.janani', '25', '7708235563', '9626343980', 'Jjanani921@gmail.com', '1997-01-29', 24, '3', '1', 'R.muthulakshmi', 'Checking', 10000.00, 1, 15.00, 20.00, 'Pudukkottai', 'Thiruvallur', '2104230004', '', '2', 'upload_files/candidate_tracker/28903819811_Report Preview.PDF', NULL, NULL, '2021-04-23', 1, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'exp high salary, seems fraud', '8', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-23 11:14:37', 1, '2021-04-23 11:59:20', 0, NULL, 1),
(4581, 'Sujeethra R', '4', '7695989149', '8778706720', 'sujeethrasuji@gmail.com', '2001-02-09', 20, '2', '2', 'Rajadurai A', 'Self Employment', 5000.00, 1, 0.00, 12000.00, 'Gowrivakkam', 'Gowrivakkam', '2104230005', '1', '1', 'upload_files/candidate_tracker/35411854245_Sujeethra Resume.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much focus into nonvoice, location constraint', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-04-23 11:35:43', 1, '2021-04-23 12:06:51', 0, NULL, 1),
(4582, 'Jenifer D', '4', '9514020930', '6382369118', 'jeniferdev09@gmail.com', '2000-03-09', 21, '2', '2', 'Devaraj V', 'Self Employment', 72000.00, 1, 0.00, 12000.00, 'Agaram then', 'Agaram then', '2104230006', '1', '1', 'upload_files/candidate_tracker/96366041354_Resume_Jenifer D_Format5.pdf', NULL, NULL, '2021-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Nonvoice, Will not handle pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-04-23 11:36:54', 1, '2021-04-23 11:54:46', 0, NULL, 1),
(4583, 'V.karthikeyan', '7', '9551790038', '9551428931', 'Keyanpeace2893@gmail.com', '1993-12-28', 27, '1', '2', 'N.venkatesalu', 'Retired', 15000.00, 1, 18000.00, 25000.00, 'No 21/10 loco works road agaram chennai 600082', 'Perambur', '2104230007', '', '2', 'upload_files/candidate_tracker/27860854816_pk.docx', NULL, NULL, '2021-04-23', 0, 'Jobd', '3', '8', '1970-01-01', 216000.00, '', '2', '1970-01-01', '1', 'for mF, Mctc is 18000, and ctc is 216000.', '7', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '4', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-23 12:25:02', 7, '2021-05-05 01:18:29', 0, NULL, 1),
(4584, 'Srimathi j', '20', '7338966726', '', 'Sathisrimathi@gmail.coom', '1996-07-07', 24, '2', '2', 'K jaisankar', 'Bank', 30000.00, 1, 0.00, 20000.00, 'No.29, Revathi Nagar kolathur chennai_99', 'Vinayagapuram, kolathur', '2104230008', '1', '1', 'upload_files/candidate_tracker/23330659769_New Doc 2021-04-23 11.18.34_2.pdf', NULL, '1', '2021-04-23', 0, '', '3', '59', '2021-08-06', 146496.00, '', '5', '1970-01-01', '1', 'Selected for CRM - Priority Shanmuga Kutralingam Team with CTC 146496 includes 208 deduction in Client Advisory Prop', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-23 12:54:39', 60, '2021-08-06 07:31:19', 0, NULL, 1),
(4585, 'Mohammed zaid hajee', '28', '9791360712', '', 'hajizaid42@gmail.com', '1995-03-23', 26, '2', '2', 'Sayeed Hussain.h', 'employed', 30000.00, 2, 300000.00, 400000.00, 'Chennai', 'chennai', '2104230009', '1', '2', 'upload_files/candidate_tracker/87368794243_cv.docx', NULL, NULL, '2021-04-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'written was not good and expt is 3.7l. as exp only in accounts', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-23 01:49:26', 50, '2021-04-29 02:33:59', 0, NULL, 1),
(4586, 'Rubha Nayyar', '28', '9677608214', '8778025554', 'nayyarrubha@gmail.com', '1994-08-11', 26, '2', '2', 'Ashfaq ahmed', 'Manager', 35000.00, 2, 273000.00, 350000.00, 'Chennai', 'chennai', '2104230010', '1', '2', 'upload_files/candidate_tracker/33860138185_updated cv 2.pdf', NULL, NULL, '2021-04-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not turned up for next round interview', '3', '1', '', '1', '1', '', '2', '2021-04-30', '3', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-23 01:49:27', 50, '2021-04-29 02:32:53', 0, NULL, 1),
(4587, 'navin kumar', '2', '9445094788', '', 'navink2015@gmail.com', '1996-07-26', 24, '2', '1', 'manoharan', 'clerk', 20000.00, 1, 0.00, 24000.00, 'Chennai', 'Chennai', '2104230011', '1', '1', 'upload_files/candidate_tracker/33517166416_april2021.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge, sustainability doubt,not much active', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-23 04:28:25', 1, '2021-04-23 04:43:22', 0, NULL, 1),
(4588, 'Mohamed Ilyyas', '26', '7092032815', '9003185387', 'mohamedilyyas786@gmail.com', '1998-04-18', 23, '2', '2', '2', 'Driver', 20000.00, 2, 189000.00, 220000.00, 'Chennai', 'Chennai', '2104230012', '1', '2', 'upload_files/candidate_tracker/9018060469_Mohamed Ilyyas 2021.pdf', NULL, NULL, '2021-04-24', 60, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No knowledge in MF, not even clear for which position he came', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-23 07:21:14', 1, '2021-04-24 10:58:41', 0, NULL, 1),
(4589, 'Mohamed Rizwan', '13', '8056971582', '8754712394', 'mohamedrizwan399@gmail.com', '1999-04-26', 21, '2', '2', 'Mohamed Tajudeen', 'Supervisor', 25000.00, 2, 0.00, 10000.00, 'Nagore', 'Chennai', '2104240001', '1', '1', 'upload_files/candidate_tracker/34526999162_Resume_RIZWAN.docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Doubtful for a long run, fresher profile not open for SA', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-24 05:45:08', 1, '2021-04-24 05:49:21', 0, NULL, 1),
(4590, '', '0', '9962062046', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104240002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-24 08:40:13', 0, NULL, 0, NULL, 1),
(4591, 'Suriya K', '4', '9566146741', '', 'srisaisurinila02@gmail.com', '2000-05-15', 20, '2', '2', 'Krishna Moorthy', 'Coolie', 12000.00, 2, 0.00, 12000.00, '2/35,Bajanai koil street,varadharajapuram,ch-44.', '2/35, Bajanai koil Street, varadharajapuram,ch-44.', '2104240003', '1', '1', 'upload_files/candidate_tracker/98277710243_New Doc 2021-04-07 11.56.55_1.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for voice process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-24 10:39:41', 60, '2021-04-26 03:05:36', 0, NULL, 1),
(4592, 'Saran', '28', '8610886459', '', 'Saransaravan1999@gmail.com', '1999-05-14', 21, '2', '2', 'Sundar rajan', 'System admin', 20000.00, 1, 0.00, 300000.00, 'West Tambaram', 'West Tambaram', '2104240004', '1', '1', 'upload_files/candidate_tracker/18948364748_saran_14_05_99-1.docx', NULL, NULL, '2021-04-24', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Profile,Communication ok check for DA,Interview by Reyaz 2nd level Interview', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-24 10:51:04', 60, '2021-04-24 04:22:47', 0, NULL, 1),
(4593, 'Raju. a', '4', '9840116127', '', 'raju.a.889912@gmail.com', '1997-09-05', 23, '3', '2', 'S. Amsakalyani', 'Housewife', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104240005', '', '1', 'upload_files/candidate_tracker/68778103920_Resume.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not fit for this profile', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-24 10:54:40', 1, '2021-04-24 10:57:58', 0, NULL, 1),
(4594, '', '0', '9884247129', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104240006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-24 10:57:10', 0, NULL, 0, NULL, 1),
(4595, '', '0', '8825540789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104240007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-24 10:57:37', 0, NULL, 0, NULL, 1),
(4596, 'R.Narmadha', '13', '7708033733', '7708033633', 'narmadhar754@gmail.com', '1988-11-12', 32, '2', '1', 'R.rajkumar', 'Foreign exchange', 20000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2104240008', '1', '2', 'upload_files/candidate_tracker/26966636110_Narmadha Resume.doc', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Focus into IT openings,Exp but career gap need to brush up the knowledge, age around 33 yrs', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-24 10:57:51', 1, '2021-04-24 11:15:21', 0, NULL, 1),
(4597, 'Vignesh M', '4', '8525008678', '6380670197', 'vickyvigneshbca681@gmail.com', '1996-08-09', 24, '2', '2', 'Mohan K', 'Driver', 20000.00, 5, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2104240009', '1', '1', 'upload_files/candidate_tracker/47725561236_Vignesh BCA.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'communication skill not good not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-24 11:03:56', 1, '2021-04-24 11:16:24', 0, NULL, 1),
(4598, 'Nithyasree', '28', '9940496057', '8248173687', 'nithyasreerah@gmail.com', '2000-10-29', 20, '2', '2', 'Ravi S R', 'TN Secretariat', 70000.00, 1, 0.00, 15000.00, 'NANDIVARAM GUDUVANCHERI', 'NANDIVARAM GUDUVANCHERI', '2104240010', '1', '1', 'upload_files/candidate_tracker/44942652779_NITHYASREE R CV .docx.pdf', NULL, NULL, '2021-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-24 11:05:13', 1, '2021-04-24 11:21:59', 0, NULL, 1),
(4599, 'Viji', '4', '9790927581', '', 'rviji1209@gmail.com', '1993-03-29', 28, '2', '1', 'Tamilselvan', 'Technical support Engineer', 20000.00, 1, 17000.00, 15000.00, 'Thiruvallur', 'Kadampathur', '2104240011', '1', '2', 'upload_files/candidate_tracker/58868108909_Resume (1).docx', NULL, NULL, '2021-04-24', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice process not fit for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-24 11:27:52', 60, '2021-04-26 03:02:53', 0, NULL, 1),
(4600, 'vinoth kumar', '4', '8845540789', '9841426476', 'vinosmash2018@gmail.com', '1995-12-10', 25, '1', '2', 'chinna vengamma', 'daily wages', 12000.00, 0, 0.00, 15000.00, 'chennai villivakkam', 'chennai villivakkam', '2104240012', '', '1', 'upload_files/candidate_tracker/58634971415_1604401148212_kripa new resume.pdf', NULL, NULL, '2021-04-24', 0, 'p1146', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-24 11:51:03', 60, '2021-04-26 03:03:54', 0, NULL, 1),
(4601, 'Dhanalaskhmi', '4', '6383774109', '9789021524', 'dhanalakshmidhanalakshmi1716@gmail.com', '2006-04-24', 0, '3', '2', 'Dhakshna Murthy', 'Tailor', 15000.00, 1, 0.00, 10000.00, 'Shanmugapuram, Ambattur, Chennai -99', 'shanmugapuram, Ambattur Chennai-99', '2104240013', '', '1', 'upload_files/candidate_tracker/41069398809_Dhana ( rems).pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up ,will not handle the pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-24 11:59:19', 1, '2021-04-24 12:08:46', 0, NULL, 1),
(4602, 'Jagan R', '5', '9884330412', '8124626106', 'jagan.jagi1997@gmail.com', '1997-12-04', 23, '2', '2', 'Rajeswari', 'House wife', 200000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2104240014', '3', '2', 'upload_files/candidate_tracker/85127389091_Jagan_resume.pdf', NULL, NULL, '2021-04-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Doubt, will not suits much for our role', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-24 12:19:41', 1, '2021-04-24 12:32:08', 0, NULL, 1),
(4603, 'Ranjani. B', '15', '7358423071', '9940242460', 'ranjanibalaji7755@gmail.com', '2001-02-13', 20, '2', '2', 'Revathy. K, balaji. R', 'Student', 30000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2104240015', '1', '1', 'upload_files/candidate_tracker/94447470113_Ranjani\'s Resume (4)-converted-converted (1).pdf', NULL, NULL, '2021-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-24 01:56:03', 1, '2021-04-24 02:01:02', 0, NULL, 1),
(4604, 'Achyudhan.K', '28', '8608869537', '', 'achyufca8@gmail.com', '2000-10-24', 20, '2', '2', 'Kannan', 'Manager', 70000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2104240016', '1', '1', 'upload_files/candidate_tracker/77795601386_Achyudhan cv.docx', NULL, NULL, '2021-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-04-24 01:56:18', 1, '2021-04-24 02:08:22', 0, NULL, 1),
(4605, 'Aakash A', '22', '9361703992', '8939684411', 'akashanand46.aa@gmail.com', '2000-11-12', 20, '2', '2', 'Anandan m', 'Temple archakar', 40000.00, 1, 0.00, 13000.00, 'Kancheepuram', 'Kancheepuram', '2104240017', '1', '1', 'upload_files/candidate_tracker/12972111216_RESUME.pdf', NULL, NULL, '2021-04-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Yet to complete College, Will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-24 03:18:51', 1, '2021-04-24 03:45:58', 0, NULL, 1),
(4606, 'dinesh kumar v', '13', '7810003899', '', 'dineshdk1822@gmail.com', '1999-03-18', 22, '2', '2', 'vinayagam j', 'driver', 45.00, 1, 0.00, 18.00, 'Vellore', 'chennai', '2104250001', '1', '1', 'upload_files/candidate_tracker/87555518632_Dinesh kumar V FINAL RESUME.docx', NULL, NULL, '2021-04-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, not open for Agreement, Exp high Pay', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-25 11:38:11', 60, '2021-04-26 11:54:44', 0, NULL, 1),
(4607, 'ARAVIND E', '26', '8939330032', '8939330063', 'aravindaarthi14@gmail.com', '1996-01-28', 25, '2', '2', 'Elumalai A', 'Car driver', 20000.00, 1, 280000.00, 450000.00, 'Chennai', 'Chennai', '2104260001', '1', '2', 'upload_files/candidate_tracker/54666972576_Aravind E.pdf', NULL, NULL, '2021-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-26 07:52:40', 1, '2021-04-26 07:58:35', 0, NULL, 1),
(4608, 'mani bharathi', '2', '7339261734', '9159287887', 'manibaski2016@gmail.com', '1999-05-19', 21, '2', '2', 'jayanthi', 'ousewife', 20000.00, 0, 0.00, 2.50, 'chennai', 'chennai', '2104260002', '1', '1', 'upload_files/candidate_tracker/1019917057_Mani_Bharathi L_Resume_07-09-2020-21-01-51 (1).pdf', NULL, NULL, '2021-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-26 08:25:26', 1, '2021-05-04 05:19:32', 0, NULL, 1),
(4609, 'Maria prabha', '5', '9791875154', '8056226707', 'mariaprabha1325@gmail.com', '1996-03-13', 25, '2', '2', 'Mohammad riyazuddin', 'Agility logistics executive', 28000.00, 1, 20000.00, 20000.00, 'Parrys chennai', 'Saidapet', '2104260003', '1', '2', 'upload_files/candidate_tracker/10777476428_final resume.pdf', NULL, NULL, '2021-04-26', 0, '', '3', '8', '1970-01-01', 186000.00, '', '2', '1970-01-01', '2', 'for RM-esale, 1,86,000 CTC and 15500 as Mctc', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-26 10:29:28', 7, '2021-05-06 09:42:20', 0, NULL, 1),
(4610, 'Sreeharsh SJ', '16', '9495808132', '', 'Sreeharshsj@gmail.com', '1989-12-11', 31, '2', '2', 'Suresh Kumar ks', 'Retried', 100000.00, 1, 15000.00, 20000.00, 'Trivandrum', 'Chennai', '2104260004', '1', '2', 'upload_files/candidate_tracker/91126275513_Sreeharsh SJ...pdf', NULL, NULL, '2021-04-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Good, Will not sustain for a long, also not much suits', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-26 10:46:52', 1, '2021-04-26 10:58:36', 0, NULL, 1),
(4611, 'Prabhu Raj', '4', '8072448553', '', 'prabhurajperiyaswamy6@gmail.com', '2001-02-28', 20, '2', '2', 'Eshwari', 'Tailor', 13000.00, 0, 13000.00, 12.00, 'chennai', 'chennai', '2104260005', '1', '2', 'upload_files/candidate_tracker/54582443313_Resume_Prabhu.pdf', NULL, NULL, '2021-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-26 11:32:52', 1, '2021-04-26 11:36:41', 0, NULL, 1),
(4612, 'Reehana.f', '28', '8778894870', '8675655441', 'reehanazubar2010@gmail.com', '2000-10-20', 20, '2', '2', 'Fatima bee.F', 'Teacher', 12000.00, 1, 0.00, 15000.00, 'Chengalpettu', 'Chengalpettu', '2104260006', '1', '1', 'upload_files/candidate_tracker/15178766913_REEHANA.docx', NULL, NULL, '2021-04-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Focused on the Career to choose, Sustainability doubt', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-26 11:40:48', 1, '2021-04-26 11:47:22', 0, NULL, 1),
(4613, 'Aravind', '14', '9551265752', '', 'aravindyuvi18@gmail.com', '2006-04-26', 0, '2', '2', 'Yuvaraj', 'Retd', 10000.00, 0, 0.00, 15.00, 'Chennai', 'Chennai', '2104260007', '1', '1', 'upload_files/candidate_tracker/7788265663_1618476000314_Ar.R.docx', NULL, NULL, '2021-04-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Agreement,Not focused on the positions', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-26 12:32:06', 50, '2021-04-26 01:03:56', 0, NULL, 1),
(4614, 'Karthik M', '2', '6369655593', '', 'karthikdev768@gmail.com', '1999-10-20', 21, '2', '2', 'Umadevi M', 'Private job', 95000.00, 1, 0.00, 25000.00, 'No.15,2nd main Road, Korattur, Chennai', 'No.15,2nd Main Road, Korattur, chennai', '2104260008', '1', '1', 'upload_files/candidate_tracker/64728059424_Karthik Resume.docx', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-26 01:49:07', 1, '2021-04-26 01:57:14', 0, NULL, 1),
(4615, 'R.Aravindan', '4', '7305866084', '', 'Aravindravi144@gmil.com', '1999-12-24', 21, '2', '2', 'G.Ravi kumar', 'Coolie', 7000.00, 0, 0.00, 12000.00, 'Nemilcherry', 'Nemilcherry', '2104260009', '1', '1', 'upload_files/candidate_tracker/73006418601_karthikeyan Resume.docx', NULL, NULL, '2021-04-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, Not suitable for Sales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-26 02:02:54', 50, '2021-04-26 02:51:42', 0, NULL, 1),
(4616, 'Keerthana', '4', '7550197752', '7305507028', 'Keerthana.bio99@gmail.com', '1999-06-14', 21, '2', '2', 'Ravichandran', 'Welder', 20000.00, 2, 0.00, 13000.00, 'No.56 Poongavanapuram 6th St kaladipet tvt ch-19', 'No.56 Poongavanapuram 6th St kaladipet tvt ch-19', '2104260010', '1', '1', 'upload_files/candidate_tracker/19480764339_CV model.pdf', NULL, NULL, '2021-04-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain ,for time being looking for a job', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-26 03:01:49', 50, '2021-04-26 03:42:14', 0, NULL, 1),
(4617, '', '0', '7200250903', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104260011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-26 03:26:22', 0, NULL, 0, NULL, 1),
(4618, '', '0', '7395963637', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104260012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-26 04:08:37', 0, NULL, 0, NULL, 1),
(4619, 'Karthikeyan S', '5', '8939779992', '', 'karthisekar13@gmail.com', '1993-02-12', 28, '1', '2', 'Sekar P', 'Hotel Business', 15000.00, 1, 28000.00, 32000.00, 'Karur', 'Chennai', '2104270001', '', '2', 'upload_files/candidate_tracker/99311525110_1618466843198_karthiresume.pdf', NULL, '1', '2021-04-26', 15, '55567', '3', '60', '2021-06-02', 396000.00, '', '3', '2022-06-04', '1', 'Selected for Santhosh Team, CTC has been confirmed by Sriram Sir itself. Committed CTC is 3.96 LPA includes PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-27 08:35:20', 60, '2021-06-07 10:34:17', 0, NULL, 1),
(4620, 'Chandrasekar', '7', '7904825637', '9566137969', 'chandrasekar72643@gmail.com', '1994-01-18', 27, '2', '2', 'Thangapandian', 'Tiles worker', 3.50, 2, 20000.00, 22000.00, 'Chennai', 'Chennai', '2104270002', '1', '2', 'upload_files/candidate_tracker/37982159883_Resume- Chandru (1).docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge in Mutual Fund, No Communication', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-27 09:39:15', 50, '2021-04-27 10:11:39', 0, NULL, 1),
(4621, 'bhavani tejaswini k', '4', '8074905518', '', 'bhavanitejaswini98@gmail.com', '1998-06-12', 22, '2', '2', 'veera babu', 'supervisor', 15000.00, 1, 0.00, 10000.00, 'chennai', 'iyapanthagal', '2104270003', '2', '1', 'upload_files/candidate_tracker/21876670059_bhavani tejaswini Resume.docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Distance too long, not comfortable for Sales process', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-27 09:56:22', 1, '2021-04-27 09:58:19', 0, NULL, 1),
(4622, 'giridhar', '6', '7299233650', '', 'giridhartmrg@gmail.com', '1998-03-23', 23, '2', '2', 'tamilarasu', 'business', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2104270004', '2', '1', 'upload_files/candidate_tracker/44620452767_Giridhar Resume.docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Telesales, looking only for non voice, will not sustain for a long', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-27 10:00:29', 1, '2021-04-27 10:02:29', 0, NULL, 1),
(4623, '', '0', '9345399760', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104270005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-27 10:59:17', 0, NULL, 0, NULL, 1),
(4624, 'B Sachin Singh', '4', '6369578812', '8778176990', 'bsachin997@gmail.com', '1997-06-28', 23, '2', '2', 'S Balaji Singh', 'Mechanist , HVF', 30000.00, 1, 0.00, 15000.00, 'Avadi, chennai-62', 'Avadi, chennai-62', '2104270006', '1', '1', 'upload_files/candidate_tracker/79274484310_sachin (1).pdf', NULL, NULL, '2021-04-27', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for sales process, not opening his mouth also', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 11:22:09', 50, '2021-04-27 11:40:04', 0, NULL, 1),
(4625, 'Vijay.M', '4', '9094017137', '9551188916', 'vijaymunish5@gmail.com', '1997-11-05', 23, '2', '2', 'Munusamy', 'auto driver', 15000.00, 2, 0.00, 12000.00, 'Triplicane', 'triplicane', '2104270007', '1', '1', 'upload_files/candidate_tracker/50763825192_1615872306399_New Microsoft Word Document.docx', NULL, NULL, '2021-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain for a long, no focus on the career ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 11:22:49', 50, '2021-04-27 11:40:35', 0, NULL, 1),
(4626, 'Hariprasad R', '4', '9597240477', '8438167982', 'hariprasad2rahul@gmail.com', '1987-07-25', 33, '4', '2', 'Ratna kumar E', 'Retired', 10000.00, 1, 9000.00, 12000.00, 'Tiruvallur', 'Thiruvallur', '2104270008', '', '2', 'upload_files/candidate_tracker/5838525826_New Doc 2021-04-10 11.15.45_1.pdf', NULL, NULL, '2021-04-27', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', '32yrs, not bold, not suit for telesales.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-27 12:17:59', 1, '2021-04-27 12:27:08', 0, NULL, 1),
(4627, '', '0', '8939650056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104270009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-27 12:38:49', 0, NULL, 0, NULL, 1),
(4628, 'Dhanasekar.m', '4', '7338807109', '8939650056', 'dhanasekarkr1997@gmail.com', '1997-10-14', 23, '2', '2', 'K.mohan', 'Security guard', 120000.00, 1, 0.00, 16000.00, 'No:01/05,pari street, mmda colony,arumbakkam', 'Chennai -106', '2104270010', '1', '2', 'upload_files/candidate_tracker/74423813154_Untitled document.pdf', NULL, NULL, '2021-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Canditate Ok Better Communication Skills Well Matured,but not ready to go for Field Sales looking only for Internal and the expectation is high', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 01:01:55', 50, '2021-04-27 01:25:21', 0, NULL, 1),
(4629, 'Poorani. T', '4', '8072958838', '', 'Priyauday1823@gmail.com', '1995-09-23', 25, '2', '1', 'Udayakumar', 'Service engineer', 25000.00, 1, 0.00, 14000.00, 'Gudapakkam, thiruvallur high road chennai 600124', 'Gudapakkam, thiruvallur high road chennai 600124', '2104270011', '1', '2', 'upload_files/candidate_tracker/21719485948_RESUME.P.docx', NULL, '1', '2021-04-27', 0, '', '3', '59', '2021-07-19', 126312.00, '', '6', '1970-01-01', '2', 'Selected for Tiruvallur in cash mode', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 01:31:03', 60, '2021-08-30 07:18:36', 0, NULL, 1),
(4630, 'Nithya.R', '4', '9962441389', '7358158554', 'rnithya201198@gmail.com', '1998-11-20', 22, '2', '2', 'Raju.c', 'Accountant', 15000.00, 1, 10000.00, 12000.00, 'Thirumazhisai', 'Thirumazhisai', '2104270012', '1', '2', 'upload_files/candidate_tracker/61287524796_New Doc 2021-04-10 11.15.45_1.pdf', NULL, '1', '2021-04-27', 0, '', '3', '59', '2021-07-22', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location with TH 10K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-27 01:31:55', 60, '2021-08-31 01:07:13', 0, NULL, 1),
(4631, 'Ajith Clifford P', '28', '9790650905', '', 'ajithclifford32@gmail.com', '1994-11-22', 26, '2', '2', 'Peter Johnson S', 'Engineer', 22000.00, 0, 22000.00, 25000.00, 'Kanyakumari', 'Chennai', '2104270013', '1', '2', 'upload_files/candidate_tracker/4859935185_MBA CV.pdf', NULL, NULL, '2021-04-29', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability,1.10 yrs 3 companies changes and not open for Agreement', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 02:09:05', 1, '2021-04-27 02:16:56', 0, NULL, 1),
(4632, 'Sarali Priya', '28', '9489026990', '9962859050', 'rsaralipriya.career@gmail.com', '1991-08-12', 29, '2', '1', 'Praveen Kumar S', 'Home maker', 500000.00, 0, 0.00, 300000.00, 'Chennai', 'Navalur, chennai', '2104270014', '1', '1', 'upload_files/candidate_tracker/34202686977_Resume_latest.pdf', NULL, NULL, '2021-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 03:10:55', 1, '2021-04-27 03:26:41', 0, NULL, 1),
(4633, 'S Jeevanantham', '28', '8072603634', '8124008061', 'nanthamjeeva00@gmail.com', '1998-10-27', 22, '2', '2', 'Sumathi', 'No', 3000.00, 1, 12000.00, 17000.00, 'Chennai', 'Chennai', '2104270015', '1', '2', 'upload_files/candidate_tracker/94686850283__Resume.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Written Also Average, but sustainability Doubt', '3', '1', '0', '1', '1', '0', '2', '2021-04-30', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 04:33:42', 1, '2021-04-27 04:42:11', 0, NULL, 1),
(4634, 'Suresh S', '28', '9566012010', '', 'suresasuresh22@gmail.com', '1995-06-22', 25, '2', '2', 'selvakumar', 'business', 15000.00, 1, 3.00, 4.00, 'chennai', 'chennai', '2104270016', '1', '2', 'upload_files/candidate_tracker/21581519755_DM Resume.pdf', NULL, NULL, '2021-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 04:36:13', 1, '2021-04-27 05:30:30', 0, NULL, 1),
(4635, 'Aarthi S', '28', '9790899001', '9551708938', 'rtsatia345@gmail.com', '1995-09-03', 25, '2', '2', 'Shanmugam', 'Business', 30000.00, 3, 15400.00, 20000.00, 'Chennai', 'Chennai', '2104270017', '1', '2', 'upload_files/candidate_tracker/67406150229_Resume - Aarthi (1).pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Good, didnxquott turn back for the 2nd level interview ', '3', '2', '0', '1', '1', '0', '2', '2021-04-29', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-27 05:19:26', 1, '2021-04-27 05:25:38', 0, NULL, 1),
(4636, '', '0', '9500446855', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104270018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-27 06:52:28', 0, NULL, 0, NULL, 1),
(4637, '', '0', '7358048624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104270019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-27 07:30:08', 0, NULL, 0, NULL, 1),
(4638, 'eshwar', '6', '9047295891', '', 'eshwarsrinivas95@gmail.com', '1995-10-27', 25, '2', '2', 'srinivasan', 'company worker', 20000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2104280001', '2', '2', 'upload_files/candidate_tracker/93089201083_d4w26-jdwt1.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'will not Sustain for a long, Too long distance also', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 09:53:06', 1, '2021-04-28 09:55:16', 0, NULL, 1),
(4639, 'Niveditha c', '4', '9840148866', '', 'niveditha83@gmail.com', '1983-12-04', 37, '2', '1', 'Ramesh', 'Manager', 0.00, 0, 345000.00, 400000.00, 'Chennai', 'Chennai', '2104280002', '16', '2', 'upload_files/candidate_tracker/37458597405_Niveditha updated resume new.docx', NULL, NULL, '2021-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Good Profile Communication good, Need to check later if no profile selected for DA,High CTC Expectation too', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 10:06:27', 1, '2021-04-28 10:09:25', 0, NULL, 1),
(4640, '', '0', '7299468647', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 10:09:07', 0, NULL, 0, NULL, 1),
(4641, 'Preethi', '4', '6381040901', '8015340574', 'Preethidhaya183@gmail.com', '1996-10-22', 24, '2', '2', 'Dhayalam', 'Hdb financial services', 30000.00, 0, 15000.00, 15000.00, 'No 134,kaviyarasu kannadhasan nagar kodugaiyur', 'No 134,kaviyarasu kannadhasan nagar kodigaiyur', '2104280004', '1', '2', 'upload_files/candidate_tracker/16799118550_1614075233068_Preethi Resume(4).docx', NULL, NULL, '2021-04-28', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-28 10:25:42', 1, '2021-04-28 11:05:11', 0, NULL, 1),
(4642, 'suresh', '6', '8754659062', '', 'sureshkathir4397@gmail.com', '1997-03-04', 24, '2', '2', 'kathiravan', 'tailor', 8000.00, 3, 0.00, 13000.00, 'chennai', 'chennai', '2104280005', '2', '1', 'upload_files/candidate_tracker/91539693071_DOC-20180228-WA0014 (1).docx', NULL, NULL, '2021-04-28', 0, '', '8', '53', NULL, 0.00, '', '0', NULL, '1', 'left without attending the interview', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 10:37:10', 1, '2021-04-28 11:04:35', 0, NULL, 1),
(4643, 'Vignesh V', '8', '9176227680', '8778393897', 'vkydhanush@gmail.com', '1997-11-07', 23, '2', '2', 'Venkatesh B', 'Late', 12000.00, 1, 168000.00, 250000.00, 'Chennai 12', 'Chennai 12', '2104280006', '1', '2', 'upload_files/candidate_tracker/80595380821_VIGNESHV Resume.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge in Mutual Fund, not suits for MIS role also', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-28 11:01:52', 50, '2021-04-29 10:52:40', 0, NULL, 1),
(4644, 'Vani', '4', '7550228193', '9345396697', 'Vanisankar41@gmail.com', '1996-10-01', 24, '2', '2', 'Jayasankar', 'Tailor', 15000.00, 1, 13000.00, 13000.00, 'Thiruvallur', 'Thiruvallur', '2104280007', '1', '2', 'upload_files/candidate_tracker/49580299721_RESUME VANI.docx', NULL, '1', '2021-04-28', 0, '', '3', '59', '2021-07-14', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur in Cash mode', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 11:06:48', 60, '2021-08-30 07:21:20', 0, NULL, 1),
(4645, 'Aboobacker fazil Mohamed', '4', '8667719366', '7598539162', 'aboofazil177@gmail.com', '1997-06-02', 23, '2', '2', 'Mohamed yahia', 'driver', 1000.00, 1, 9300.00, 1200.00, 'vadapalani Chennai', 'vadapalani Chennai', '2104280008', '1', '2', 'upload_files/candidate_tracker/54915323502_fAZIL REMUMEIIII112pdf.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-28 11:31:23', 1, '2021-04-28 11:41:00', 0, NULL, 1),
(4646, 'Sujatha.I', '4', '7305437608', '8056193438', 'asuja0222@gmail.com', '2001-02-22', 20, '2', '2', 'Indrakumar.R', 'Carpenter', 35000.00, 2, 0.00, 15000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2104280009', '1', '1', 'upload_files/candidate_tracker/53216807346_sujatha.pdf', NULL, NULL, '2021-04-28', 0, '', '3', '60', '1970-01-01', 126312.00, '', '6', '2021-06-30', '2', 'Selected for CRM Muthu Team CTC - 126312', '1', '2', '1', '1', '1', '', '2', '2021-04-29', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 11:51:39', 60, '2021-05-02 09:57:33', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4647, 'Nancy.R', '4', '8925003367', '9841431822', 'Nancysolomon1744@gmail.com', '2001-07-19', 19, '2', '2', 'Raghu.B', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Vettuvankeni Ecr', 'Vettuvankeni Ecr', '2104280010', '1', '1', 'upload_files/candidate_tracker/24203658516_Nancy Resume (1).pdf', NULL, NULL, '2021-04-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 11:51:47', 50, '2021-04-28 12:23:03', 0, NULL, 1),
(4648, 'H.gracy', '4', '7338792105', '9940692712', 'Kirithikamartin76@gmail.com', '2001-07-16', 19, '2', '2', 'H.kirithika', 'Assistant facility manager', 30000.00, 2, 0.00, 18.00, 'S.r.p ,kottivakkam Chennai-41', 'S.r.p , kottivakkam Chennai-41', '2104280011', '1', '1', 'upload_files/candidate_tracker/7108107685_resume 28.4.2021.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '21', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She Is Not Sustain Long Term Because Already She Left Her Job Bec Of Pressure ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 11:52:41', 50, '2021-04-28 12:26:03', 0, NULL, 1),
(4649, 'Sinduja R', '4', '7708628134', '8190829328', 'sindujarj26@gmail.com', '1996-07-26', 24, '2', '2', 'Jaya R', 'Tailor', 30000.00, 1, 15000.00, 16000.00, '35 vayal street,vadali vilai,kottar, nagercoil', 'Nandambakkam', '2104280012', '1', '2', 'upload_files/candidate_tracker/1960992109_Sindhuja resume.pdf', NULL, NULL, '2021-04-28', 0, '', '3', '8', '2021-05-03', 180000.00, '', '', '1970-01-01', '2', ' For Dhivya Team, Ctc - 180000 with pf, Mctc 15000.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 12:26:04', 8, '2021-04-28 04:38:20', 0, NULL, 1),
(4650, 'NARAYANASAMY A', '4', '9025364124', '7639937304', 'anarayanasamy12@gmail.com', '1994-05-20', 26, '2', '2', 'Kamala A', 'Farmer', 10.00, 1, 16.00, 18.00, 'Villupuram', 'Ambattur', '2104280013', '16', '2', 'upload_files/candidate_tracker/21181416400_Resume_22_3_2021_7_55_792.pdf', NULL, NULL, '2021-04-28', 7, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'no confident not suite for voice process....', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 12:26:51', 1, '2021-04-28 12:56:43', 0, NULL, 1),
(4651, '', '0', '9841267252', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 12:27:31', 0, NULL, 0, NULL, 1),
(4652, 'M.Indhu', '4', '9677252568', '', 'indhumathi2903@gmail.com', '1996-02-29', 25, '2', '2', 'P.Manoharan', 'Cooli', 30000.00, 1, 15000.00, 16000.00, 'Nandambakkam', 'Nandambakkam', '2104280015', '1', '2', 'upload_files/candidate_tracker/94771996195_INDHU.docx', NULL, NULL, '2021-04-28', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok...need to check with gaurav sir for salary package ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 12:27:51', 8, '2021-04-28 04:42:39', 0, NULL, 1),
(4653, 'Mukesh Kumar j', '4', '6380246484', '9840624069', 'mukeshmavis05@gmail.com', '1999-10-06', 21, '2', '2', 'Latha jaganathan', 'Labour', 10000.00, 1, 10500.00, 13000.00, 'Korattur', 'Korattur', '2104280016', '16', '2', 'upload_files/candidate_tracker/24981720955_1619242663258_MUKESH.docx (1).pdf', NULL, NULL, '2021-04-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not Interested in sales process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 12:50:04', 1, '2021-04-28 01:09:31', 0, NULL, 1),
(4654, 'Sakthivel', '4', '7092831405', '9790725594', 'Sakthikaniraja1996@gmail.com', '1996-05-13', 24, '2', '2', 'Kaniraja', 'Vegetable in vendor', 10000.00, 1, 130000.00, 15000.00, 'Ambattur', 'Ambattur', '2104280017', '16', '2', 'upload_files/candidate_tracker/39815034672_SAKTHIVEL resume.pdf', NULL, NULL, '2021-04-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Not interested in sales process.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 12:50:18', 1, '2021-04-28 01:44:35', 0, NULL, 1),
(4655, 'DINESHKUMAR.K', '4', '8610880868', '', 'dineshkumark4222@gmail.com', '1999-12-15', 21, '2', '2', 'K.KASIRAJAN', 'Kooli', 12000.00, 0, 12000.00, 14000.00, 'Thiruvallur', 'Thiruvallur', '2104280018', '1', '2', 'upload_files/candidate_tracker/57401505388_1611722871511Resume_DINESH-compressed.pdf', NULL, NULL, '2021-04-28', 0, '', '3', '8', '2021-05-10', 126312.00, '', '', '1970-01-01', '2', 'for thiruvallur, 10k th and ctc 126312. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 01:17:00', 50, '2021-04-28 01:41:03', 0, NULL, 1),
(4656, '', '0', '4567890878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 02:57:40', 0, NULL, 0, NULL, 1),
(4657, 'Mohammed Ali', '6', '8682869743', '9940653760', 'Mraliviews@gmail.com', '1997-12-13', 23, '2', '2', 'Mohammed Yousuf', 'Biscuit sales', 12000.00, 1, 15500.00, 20000.00, 'No 38 Palani andavar koil Street chennai 600023', 'Ayanavaram', '2104280020', '1', '2', 'upload_files/candidate_tracker/79829332331_1618553358276_1618553357929_63488.doc', NULL, NULL, '2021-04-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 4m exp in sales and expt 15k th for RE.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-28 03:00:12', 50, '2021-04-28 03:24:50', 0, NULL, 1),
(4658, 'SURYA R', '4', '9551258573', '9551248473', 'suryaamudha312@gmail.com', '1999-02-01', 22, '3', '2', 'Ravi N', 'Fall seeling labour', 15000.00, 1, 14000.00, 14000.00, 'Aminjikarai', 'Aminjikarai', '2104280021', '', '2', 'upload_files/candidate_tracker/73469129556_Surya CV.doc', NULL, NULL, '2021-04-28', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 03:31:57', 1, '2021-04-28 03:47:04', 0, NULL, 1),
(4659, '', '0', '9384635818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 03:36:00', 0, NULL, 0, NULL, 1),
(4660, 'krishna j', '28', '9790838887', '', 'krishna.97krish@gmail.com', '1997-04-30', 23, '2', '2', 'janarthanan s', 'retire postal clerk', 15000.00, 2, 0.00, 250000.00, 'Chennai', 'Chennai', '2104280023', '1', '1', 'upload_files/candidate_tracker/80534585893_krishna-cv.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 2m exp in metro, in 6 months contract, doesnt what is his salary, will not sustain, comm is avg, not okay with service agreement.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-28 04:16:19', 1, '2021-04-28 04:34:29', 0, NULL, 1),
(4661, 'Jayasri R', '4', '7094839323', '9585506154', 'jayasriravi2502@gmail.com', '1998-02-25', 23, '1', '2', 'M. Ravi R. Kavitha', 'Farmer', 20000.00, 4, 15000.00, 18000.00, 'Nemili', 'Nemili', '2104280024', '', '2', 'upload_files/candidate_tracker/2645663591_jayasri resume.pdf', NULL, NULL, '2021-04-28', 0, '66673', '3', '8', '2021-05-03', 132636.00, '', '5', '1970-01-01', '2', 'Selected For Tiruvallur, TH - 10.5. MCTC-11053. salary Hike based on Performance', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-28 04:27:19', 7, '2021-04-30 04:39:57', 0, NULL, 1),
(4662, '', '0', '9176472756', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104280025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-28 07:16:56', 0, NULL, 0, NULL, 1),
(4663, 'Benson Prasanth', '7', '9677212203', '', 'dbensonprasanth@gmail.com', '1997-09-14', 23, '2', '2', 'Dominic Savio A', 'Ex Service Man', 28000.00, 2, 0.00, 20.00, 'Chennai', 'Chennai', '2104280026', '1', '1', 'upload_files/candidate_tracker/37821311045_RESUME BEN .pdf', NULL, NULL, '2021-04-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '7', '1', '0', '1', '1', '0', '2', '2021-05-06', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-28 07:21:10', 1, '2021-04-29 10:57:57', 0, NULL, 1),
(4664, 'Jeevanantham S', '7', '9003482984', '9360457603', 'smartjeeva@gamil.com', '1999-08-25', 21, '2', '2', 'Shankar N', 'Auto Driver', 110000.00, 1, 10000.00, 16000.00, 'Thiruvallur', 'Thiruvallur', '2104290001', '1', '2', 'upload_files/candidate_tracker/41020813856_Jeevanantham S.pdf', NULL, NULL, '2021-04-29', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no comm, lang is not that much good, no knowledge in excel and ppt, lTH is 10k and ecpt is 17-18k.', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 09:04:05', 1, '2021-04-29 12:25:22', 0, NULL, 1),
(4665, 'jerish allwin williams', '6', '7358608828', '', 'jerishallywn160797@gmail.com', '1997-07-16', 23, '2', '2', 'paul revan', 'late', 20000.00, 1, 0.00, 11000.00, 'chennai', 'purasaiwakkam', '2104290002', '2', '1', 'upload_files/candidate_tracker/20484147830_jerry resume.pdf', NULL, NULL, '2021-04-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain and Planning to start his own biz, will not suite for calling profile.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-29 09:12:59', 1, '2021-04-29 09:14:54', 0, NULL, 1),
(4666, 'J. Malathi', '4', '6369730359', '', 'Malathi282000@gmail.com', '2000-02-28', 21, '2', '2', 'Jagadeesan. A', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Kadambathur', 'Thiruvallur', '2104290003', '11', '1', 'upload_files/candidate_tracker/75758525358_mala resume.pdf', NULL, NULL, '2021-04-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain for a long, Looking much for Non Voice only', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-29 09:55:44', 1, '2021-04-29 10:48:45', 0, NULL, 1),
(4667, 'B. Bagavathi', '4', '6380733468', '8939324527', 'Bagaraina28@gmail.com', '2000-05-28', 20, '2', '2', 'G. Boobalan', 'Cooli', 82000.00, 3, 0.00, 15000.00, 'Kadambathur', 'Kadambathur', '2104290004', '11', '1', 'upload_files/candidate_tracker/76363595220_bhagavathi.docx', NULL, NULL, '2021-04-29', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-29 09:56:42', 1, '2021-04-29 10:11:45', 0, NULL, 1),
(4668, 'Dinesh Kumar .k', '13', '8608649985', '9841239224', 'justindinesh98@gmail.com', '2000-10-21', 20, '2', '2', 'Kamalanathan.v', 'Working in leather company', 12000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2104290005', '1', '1', 'upload_files/candidate_tracker/20585608462_RESUME_Dinesh.pdf', NULL, NULL, '2021-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 10:00:33', 1, '2021-04-29 10:06:58', 0, NULL, 1),
(4669, 'Mohamed Sufiyan N', '28', '8124920015', '9080144036', 'sufiyanmohamed44@gmail.com', '1994-12-14', 26, '2', '2', 'Shafeequr Rahman -Father', 'Retired from service', 40000.00, 2, 22000.00, 28000.00, 'Vaniyambadi', 'Vaniyambadi', '2104290006', '1', '2', 'upload_files/candidate_tracker/8789600283_MOHAMED SUFIYAN N-4.docx', NULL, '2', '2021-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Will not fit for our role, Sustainability doubt and will not handle our pressure', '3', '1', '', '1', '3', '', '2', '2021-05-12', '2', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 11:18:29', 7, '2021-05-11 11:22:48', 0, NULL, 1),
(4670, 'K. Ajith kumar', '4', '9150724771', '9677335498', 'ajithkumar62009@gmail.com', '1999-10-26', 21, '2', '2', 'K. Kaliraj', 'Painter', 20000.00, 1, 0.00, 10000.00, 'Kovilpatti', 'Vellacheri chennai', '2104290007', '1', '1', 'upload_files/candidate_tracker/12101140622_AJITH RESUME 3.doc', NULL, NULL, '2021-04-29', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no idea in voice process low level confident', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-29 11:26:05', 50, '2021-04-29 11:38:19', 0, NULL, 1),
(4671, 'P. v. Goutham rajaa', '16', '9514234607', '9025127633', 'goutham0222@gmail.com', '1994-02-22', 27, '2', '2', 'K. P. Vetrivel', 'Welder', 10000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2104290008', '1', '2', 'upload_files/candidate_tracker/35704968428_resume_1619169230479.pdf', NULL, NULL, '2021-04-29', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, Requested for time to check with parents. Its been a week time no response ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-29 11:30:43', 8, '2021-04-29 02:41:28', 0, NULL, 1),
(4672, 'vaithesh', '28', '7904898125', '6369110754', 'vaithesh2802@gmail.com', '2000-02-28', 21, '2', '2', 'tharani', 'farmer', 8000.00, 1, 0.00, 17000.00, 'Kallakurichi', 'chennai', '2104290009', '1', '1', 'upload_files/candidate_tracker/51323883044_VAITHESH_CV 1.pdf', NULL, NULL, '2021-04-30', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'left before interview', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 11:31:12', 1, '2021-04-29 08:03:32', 0, NULL, 1),
(4673, 'S. Kishore kumar', '4', '9345705765', '8124117922', 'Skishorekumar1630@gmail.com', '2000-12-30', 20, '2', '1', 'S. Revathi', 'A2B', 22000.00, 1, 18000.00, 10500.00, 'Pattabiaram', 'Pattabiram', '2104290010', '1', '2', 'upload_files/candidate_tracker/70824342121_S kishore Kumar resume.pdf', NULL, NULL, '2021-04-29', 1, '', '3', '60', '2021-05-03', 132636.00, '', '3', '2021-05-04', '2', 'selected for CRM Tiruvallur CTC - 132636', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 11:36:09', 60, '2021-05-03 01:24:48', 0, NULL, 1),
(4674, 'M.suman', '4', '7397323620', '9884641045', 'suman2018m2000@gmail.com', '2000-04-26', 21, '2', '2', 'Mariyamma', 'Vegetables store', 21000.00, 1, 0.00, 11000.00, 'Pattabiram', 'Pattabiram', '2104290011', '1', '1', 'upload_files/candidate_tracker/12380540957_SUMAN RESUME.doc', NULL, NULL, '2021-04-29', 0, '', '3', '60', '1970-01-01', 132636.00, '', '2', '2021-05-04', '2', 'Shortlisted for Tiruvallur CRM,CTC - 132636', '1', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 11:36:16', 60, '2021-05-03 01:25:28', 0, NULL, 1),
(4675, 'Nikesh k', '28', '9791159498', '', 'nikeshfire3@gmail.com', '1998-11-19', 22, '2', '2', 'G.k.krishnan', '-', 20000.00, 1, 0.00, 18000.00, 'Ayapakkam', 'Ayapakkam', '2104290012', '1', '2', 'upload_files/candidate_tracker/56395552499_Nikesh.pdf', NULL, NULL, '2021-04-30', 3, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'comm is below avg, no Basics in excel, just like that came for interview. ', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 11:43:30', 1, '2021-04-29 11:59:12', 0, NULL, 1),
(4676, 'm ramcharan', '28', '7401483774', '', 'm.ramcharanashok@gmail.com', '1994-09-28', 26, '2', '2', 'm ashok', 'driver', 15000.00, 1, 21000.00, 23000.00, 'kotturpuram chennai', 'kotturpuram', '2104290013', '1', '2', 'upload_files/candidate_tracker/27917464253_RamcharanCV.docx.pdf', NULL, NULL, '2021-04-30', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'No Response', '3', '2', '0', '1', '1', '0', '2', '2021-05-03', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 12:27:27', 1, '2021-04-29 09:14:57', 0, NULL, 1),
(4677, '', '0', '7012051124', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104290014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-29 12:46:21', 0, NULL, 0, NULL, 1),
(4678, 'Prabu', '28', '9445666777', '', 'prabz1961@gmail.com', '1996-11-14', 24, '2', '2', 'Baskaran', 'Business', 25000.00, 2, 0.00, 15000.00, 'Tnagar', 'Tnagar', '2104290015', '1', '1', 'upload_files/candidate_tracker/63537836272_RESUME APRIL1.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not okay with service agg.', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 01:32:07', 1, '2021-04-29 01:35:57', 0, NULL, 1),
(4679, 'Keerthana G', '4', '9360186316', '9791031727', 'Keerthukeerthi3333@gmail.com', '1999-10-01', 21, '2', '2', 'Damodharan gS', 'Shoe maker', 9000.00, 1, 13000.00, 16000.00, 'Perambur', 'Perambur', '2104290016', '1', '2', 'upload_files/candidate_tracker/19233121912_keerthana resum.pdf', NULL, NULL, '2021-04-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, false information', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-29 02:50:26', 50, '2021-04-29 03:14:52', 0, NULL, 1),
(4680, 'Praveen Kumar V', '7', '9994081644', '', 'vpraveenkumar.kumar@gmail.com', '1995-07-28', 25, '2', '2', 'Velayutham S', 'Carpenter', 25000.00, 1, 15000.00, 20000.00, 'Nagercoil', 'Chennai', '2104290017', '1', '2', 'upload_files/candidate_tracker/58165463563_Resume.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'expt is high. rejected by reyaz', '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 04:59:00', 1, '2021-04-30 10:46:58', 0, NULL, 1),
(4681, 'huzayfah bin minhaj', '28', '7338845142', '7010537224', 'huzayfah99@gmail.com', '1999-12-18', 21, '2', '2', 'minhaj ahmed', 'working in printing press', 12000.00, 1, 0.00, 25000.00, 'triplicane', 'triplicane', '2104290018', '1', '1', 'upload_files/candidate_tracker/2891918621_Huzayfah Resume.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Stammering to speak, comm is avg and no basics in excel. fresher and expt is 20k.', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 05:11:59', 1, '2021-04-29 06:44:44', 0, NULL, 1),
(4682, 'Anushadevi', '4', '7094393731', '', 'Anusha.December94@gmail.com', '1995-04-30', 26, '2', '2', 'Vasudevan', 'Business', 30000.00, 0, 2.00, 19.00, 'Theni', 'Karrapakkam', '2104290019', '1', '2', 'upload_files/candidate_tracker/34118212440_IMG_20210210_231816-converted.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'pronunciation is not clear, will not suite for our process. expt is 17-18k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-29 06:16:52', 1, '2021-04-30 11:36:36', 0, NULL, 1),
(4683, 'Divya bharathi', '13', '7449035414', '7338887439', 'divyasan1999@gmail.com', '1999-04-13', 22, '2', '2', 'Sundaravel', 'Fisher man', 60000.00, 1, 0.00, 25000.00, 'No 65, chinnathambi st, Devanapattinam, Cuddalore', 'No 65, Chinnathambi St, Devanapattinam, Cuddalore', '2104290020', '1', '1', 'upload_files/candidate_tracker/51570953780_divya resume.doc', NULL, NULL, '2021-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-29 09:13:02', 1, '2021-04-29 09:22:37', 0, NULL, 1),
(4684, '', '0', '9345795765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2104290021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-04-29 09:22:40', 0, NULL, 0, NULL, 1),
(4685, 'Yuvan shankar', '6', '9087620161', '', 'Yuviitvt@gmail.com', '2001-07-04', 19, '2', '2', 'Saravana moorthi', 'Salesman', 30000.00, 0, 0.00, 180000.00, 'Chennai', 'Chennai', '2104300001', '1', '1', 'upload_files/candidate_tracker/52542983451_yuvan shankar.docx', NULL, NULL, '2021-04-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no job need, will not sustain.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-30 09:50:07', 8, '2021-04-30 03:21:53', 0, NULL, 1),
(4686, 'Praveen Kumar K', '28', '7358516131', '', 'manojlumia75@gmail.com', '1998-03-20', 23, '2', '2', 'Kathavarajan G', 'Provisional store', 50000.00, 2, 0.00, 15000.00, 'No 74A thangal karai street, nerkundram', 'Chennai', '2104300002', '1', '1', 'upload_files/candidate_tracker/89550510595_Praveen Resume.pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not int in sales, no knowledge in MF, knows only the theory. comm is very avg.', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-30 10:25:00', 1, '2021-04-30 10:35:06', 0, NULL, 1),
(4687, 'sudharsan', '6', '8122132380', '', 'sun997701@gmail.com', '1996-06-09', 24, '2', '2', 'balasubramaniyan', 'sales executive', 18000.00, 0, 12000.00, 13000.00, 'chennai', 'kodambakkam', '2104300003', '2', '2', 'upload_files/candidate_tracker/50642187327_sudharsun resume (1).pdf', NULL, NULL, '2021-04-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very slow and low voice, will not suite for our process.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-30 11:15:06', 1, '2021-04-30 11:17:04', 0, NULL, 1),
(4688, 'ambrose kumar a', '6', '7299955757', '', 'ezhilambrose63@gmail.com', '1996-01-02', 25, '2', '2', 'anthony', 'daily wages', 20000.00, 1, 16000.00, 17000.00, 'chennai', 'chennai', '2104300004', '2', '2', 'upload_files/candidate_tracker/87587650513_Ambroo RES PDF.pdf', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-04-30 11:31:31', 1, '2021-04-30 11:33:08', 0, NULL, 1),
(4689, 'Chandramouli', '26', '9600082745', '9092767623', 'mouli889@gmail.com', '1989-11-08', 31, '2', '1', 'Gaya3', 'Housewife', 300000.00, 1, 300000.00, 400000.00, 'Chennai', 'Chennai', '2104300005', '1', '2', 'upload_files/candidate_tracker/82249101256_1602055794358Resume_D.docx', NULL, NULL, '2021-04-30', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expt is high. age is 31 and rejected by reyaz', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-04-30 12:02:51', 50, '2021-04-30 12:21:48', 0, NULL, 1),
(4690, 'nithya', '23', '8946047614', '7338959523', 'nithya14gajendran@gmail.com', '1994-11-14', 26, '2', '2', 'manjula', 'labour work', 17000.00, 1, 15000.00, 25000.00, 't.nagar', 't.nagar', '2104300006', '1', '2', 'upload_files/candidate_tracker/44435640638_My Resume.doc', NULL, '1', '2021-05-07', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'only into front end no knowledge in basic pHP and the salary Expectation in very high', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-30 03:57:11', 7, '2021-05-07 02:33:15', 0, NULL, 1),
(4691, 'krishnamoorthy', '23', '9791021683', '', 'krishnamoorthy.d07@gmail.com', '1993-12-01', 27, '2', '1', 'monisha', 'house wife', 30000.00, 1, 20000.00, 30000.00, 'chennai', 'chennai', '2104300007', '1', '2', 'upload_files/candidate_tracker/18601072510_Krishna Resume.pdf', NULL, NULL, '2021-05-03', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability Doubt,Holding an offer for 25K with the Japan based company,looking for high Pay ,1.6 yrs 2 companies changed', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-04-30 04:54:03', 1, '2021-04-30 05:00:49', 0, NULL, 1),
(4692, 'MANOJKUMAR R', '7', '7092176889', '9025072776', 'manojrahul6699@gmail.com', '1997-05-15', 23, '2', '2', 'N Ravi', 'Postman', 300000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2104300008', '1', '1', 'upload_files/candidate_tracker/4391442582_R Manojkumar resume.pdf', NULL, NULL, '2021-05-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-04-30 07:36:22', 1, '2021-04-30 07:43:56', 0, NULL, 1),
(4693, '', '0', '9786966253', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105020001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-02 07:09:16', 0, NULL, 0, NULL, 1),
(4694, '', '0', '7358531076', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105020002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-02 09:41:16', 0, NULL, 0, NULL, 1),
(4695, 'shanmugapriya', '4', '9150921397', '', 'priyak08320@gmail.com', '2003-04-15', 18, '2', '2', 'perumal', 'sales man', 10000.00, 1, 10000.00, 11000.00, 'chennai', 'pallavaram', '2105030001', '2', '2', 'upload_files/candidate_tracker/63249385205_CV_2021-05-02-035809.pdf', NULL, NULL, '2021-05-03', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Lockdown period hold long pending ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 09:16:29', 1, '2021-05-03 09:18:42', 0, NULL, 1),
(4696, 'yaduanand', '4', '9842230163', '', 'yadunand143@gmail.com', '1996-10-11', 24, '2', '1', 'dinesh babu', 'cg', 30000.00, 0, 14000.00, 15000.00, 'chennai', 'chennai', '2105030002', '2', '2', 'upload_files/candidate_tracker/55943308675_Yadunand.docx', NULL, NULL, '2021-05-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in sales calling, will not sustain. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 09:21:00', 8, '2021-05-03 03:14:22', 0, NULL, 1),
(4697, 'subbulakshmi', '4', '9344701953', '', 'subbulakshmiarivazhagancs2018@gmail.com', '1997-07-27', 23, '2', '2', 'arivazhagan', 'nlc worker', 20000.00, 3, 12000.00, 13000.00, 'chennai', 'chennai', '2105030003', '2', '2', 'upload_files/candidate_tracker/52768873625_SubbuLakshmi-1_0-.pdf', NULL, NULL, '2021-05-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, salary expt is 25k. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 09:28:18', 1, '2021-05-03 09:30:12', 0, NULL, 1),
(4698, '', '0', '8946053185', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105030004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-03 10:52:09', 0, NULL, 0, NULL, 1),
(4699, 'ashwin.r', '28', '8608797131', '', 'ashvingta@gmail.com', '1997-11-05', 23, '2', '2', 'raghupandiyan', 'business', 20000.00, 1, 0.00, 300000.00, 'salem', 'salem', '2105030005', '1', '1', 'upload_files/candidate_tracker/29245051060_resume_photo.pdf', NULL, NULL, '2021-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-03 11:04:15', 1, '2021-05-03 11:11:56', 0, NULL, 1),
(4700, 'M.herina', '4', '6383347920', '9994564689', 'herinaherina83@gmail.com', '2001-05-28', 19, '2', '2', 'M.vasanthi', 'Employee', 8000.00, 1, 0.00, 10000.00, 'Thiruvallur.', 'Thiruvallur', '2105030006', '1', '1', 'upload_files/candidate_tracker/46220540456_CV_2021-05-03-110642.pdf', NULL, NULL, '2021-05-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very childish, will not suite for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-03 11:33:16', 8, '2021-05-03 03:09:35', 0, NULL, 1),
(4701, 'Naveen raj M', '7', '8939277438', '8778605972', 'Naveenrajmjbl@gmail.com', '1998-10-23', 22, '2', '2', 'Mohan v', 'Royal Enfield company worker', 30000.00, 1, 12000.00, 17000.00, 'Thiruvottiyur', 'Thrivottiyur', '2105030007', '1', '2', 'upload_files/candidate_tracker/20447031825_NAVEEN Resume.pdf', NULL, NULL, '2021-05-03', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for job change (salary). his sal was 10k and got revised by last month as 12k, his expt is 17k. no knowledge in mF and not interested in sales.', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-03 11:33:27', 7, '2021-05-03 06:13:45', 0, NULL, 1),
(4702, 'Nibinraj', '6', '9677003933', '', 'Nibinraj23@GMAIL.COM', '1999-10-23', 21, '1', '2', 'Nagaraj', 'driver', 10000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2105030008', '', '1', 'upload_files/candidate_tracker/55142293152_Resume.pdf', NULL, NULL, '2021-05-03', 0, 'P1210', '3', '8', '2021-05-06', 162000.00, '', '5', '1970-01-01', '1', 'For Suthagar Team CTC - 162000 With Esi,PF MCTC Is 13500 And Th Is10484.', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 11:53:59', 7, '2021-05-03 06:48:26', 0, NULL, 1),
(4703, 'ashwini', '4', '8825686865', '', '221803660@princescience.in', '2000-08-13', 20, '2', '2', 'sekar', 'cooli', 10000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2105030009', '2', '1', 'upload_files/candidate_tracker/83989512844_lastshared.pdf', NULL, NULL, '2021-05-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up and just like that came for interview and said no idea about it.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 12:13:41', 1, '2021-05-03 12:14:57', 0, NULL, 1),
(4704, 'Vignesh', '4', '9786213204', '8220680240', 'vignesh1671996@gmail.con', '1995-01-01', 26, '3', '2', 'Nagarajan', 'No', 35000.00, 3, 0.00, 15000.00, 'Sivakasi', 'Chennai', '2105030010', '', '1', 'upload_files/candidate_tracker/55471002148_1620027634167_1620027630409_vignesh pDF.pdf', NULL, NULL, '2021-05-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 12:16:39', 1, '2021-05-03 01:11:25', 0, NULL, 1),
(4705, 'SOWMIYA', '4', '7397499230', '', 'vinorajendran1993@gmail.com', '1996-12-08', 24, '1', '2', 'RAJENDHIRAN', 'Former', 10000.00, 2, 12000.00, 15000.00, 'Chengalpattu', 'Chennai', '2105030011', '', '2', 'upload_files/candidate_tracker/16631005373_1620025039269_resume5412.docx', NULL, NULL, '2021-05-03', 0, '55588', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, has exp in admin and will not handle pressure.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 12:18:13', 1, '2021-05-03 12:33:00', 0, NULL, 1),
(4706, 'Ashok', '13', '7094861021', '6381930485', 'ashokmurukan1999@gmail.com', '1999-05-24', 21, '2', '2', 'Murugan', 'Business', 50000.00, 1, 0.00, 18000.00, 'Virudhunagar', 'Chennai', '2105030012', '1', '1', 'upload_files/candidate_tracker/22528534768_Ashok M.pdf', NULL, NULL, '2021-05-04', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-03 03:03:10', 1, '2021-05-03 03:09:38', 0, NULL, 1),
(4707, 'Dhivyabharathi M', '2', '8939120575', '9513320575', 'dhivyabharathi2494@gmail.com', '1994-06-06', 26, '2', '2', 'Muniyapillai', 'Labour', 24000.00, 1, 282745.00, 350000.00, '31/1 East strt, ariyaperumanur, kallakurichi (dt)', 'Vellacherry, chennai', '2105030013', '1', '2', 'upload_files/candidate_tracker/42147993790_Dhivyabharathi_Resume.pdf', NULL, NULL, '2021-05-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Task has been given, but didnt turn with the Task will not suits for our role', '2', '1', '0', '1', '1', '0', '2', '2021-05-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-03 03:49:53', 1, '2021-05-03 04:03:36', 0, NULL, 1),
(4708, 'Bharath V', '6', '8296055622', '', 'bharathvenkatesh3655@gmail.com', '1998-09-02', 22, '2', '2', 'Venkatesh', 'Nil', 35000.00, 1, 0.00, 18000.00, '1st cross thippanna layout lingarajpuram Bangalore', '1st cross thippanna layout lingarajpuram Bangalore', '2105030014', '14', '1', 'upload_files/candidate_tracker/95942138484_BHARATHRESUME.pdf', NULL, NULL, '2021-05-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-03 07:05:40', 1, '2021-05-03 07:22:25', 0, NULL, 1),
(4709, '', '0', '6381930485', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105030015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-03 07:53:38', 0, NULL, 0, NULL, 1),
(4710, 'Aravind akumar', '2', '7708085423', '', 'aravindkmr007@gmail.com', '1995-11-17', 25, '2', '2', 'Pugalenthi', 'Business', 40000.00, 1, 0.00, 350000.00, 'Vellore', 'Chennai', '2105030016', '1', '1', 'upload_files/candidate_tracker/72718646818_Aravind CV.pdf', NULL, NULL, '2021-05-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very High Expectation, already he has some pipelines ,not ready for service Agreement', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-03 08:12:00', 50, '2021-05-04 02:57:53', 0, NULL, 1),
(4711, 'keertana r', '20', '8754690842', '', 'keerthuammu661@gmail.com', '1998-09-04', 22, '2', '2', 'none', 'none', 20000.00, 0, 12000.00, 12000.00, 'chennai', 'chennai', '2105040001', '3', '2', 'upload_files/candidate_tracker/11332895266_she keerthana resume.docx', NULL, NULL, '2021-05-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, done her mA eng. lit, pursuing her net and looking for job in teaching. time being looking for job.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-04 08:48:15', 1, '2021-05-04 08:52:16', 0, NULL, 1),
(4712, 's varshini', '20', '8939769238', '', 'varshivarshini413@gmail.com', '1999-10-11', 21, '2', '2', 'none', 'none', 25000.00, 0, 13000.00, 13000.00, 'chennai', 'chennai', '2105040002', '3', '2', 'upload_files/candidate_tracker/84131651168_RESUME-1.pdf', NULL, NULL, '2021-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much open for Tamil Voice process, Just for time being looking for a job will not sustain for a long', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-04 09:49:24', 1, '2021-05-04 09:54:07', 0, NULL, 1),
(4713, 'Dhineshkumar', '13', '8531977241', '', 'dhieshkumar83@gmail.com', '1999-07-17', 21, '2', '2', 'Vasanthi', 'House wife', 8000.00, 2, 0.00, 12000.00, 'Cuddalore', 'Cuddalore', '2105040003', '1', '1', 'upload_files/candidate_tracker/50742497319_Dhineshkumar P_Resume.pdf', NULL, NULL, '2021-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2021-05-04 11:05:57', 1, '2021-05-04 11:11:00', 0, NULL, 1),
(4714, 'Vijay Prabhakaran', '6', '6379554384', '', 'vijayharry070@gmail.com', '2000-08-10', 20, '2', '2', 'Jayaseelan', 'Tea master', 10000.00, 1, 15000.00, 16000.00, 'Ashok piller', 'Ashok piller', '2105040004', '3', '2', 'upload_files/candidate_tracker/62219986476_Pdf_04Mar21_10.pdf_Vijay-Resume....pdf', NULL, NULL, '2021-05-04', 0, '', '3', '8', '2021-05-10', 174000.00, '', '', '1970-01-01', '2', 'for syed team 1,74,000 wit esixxamp\nPf. 14500 as Mctc', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-04 11:20:57', 60, '2021-05-04 01:21:28', 0, NULL, 1),
(4715, 'Dinesh.D', '4', '8608580084', '7299546044', 'dineshbaby0036@gmail.com', '1999-06-07', 21, '2', '2', 'M.hemalatha', 'House keeper', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2105040005', '1', '1', 'upload_files/candidate_tracker/97663173618_NEW ONE 1.pdf', NULL, NULL, '2021-05-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-04 11:41:51', 50, '2021-05-04 11:57:37', 0, NULL, 1),
(4716, 'santha murthy s', '2', '7299801089', '9500005124', 'santhamurthy1999@gmail.com', '1999-12-23', 21, '2', '2', 'sella perumal r', 'shopkeeper', 20000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2105040006', '1', '1', 'upload_files/candidate_tracker/11326022022_SANTHA MURTHY RESUME.pdf', NULL, NULL, '2021-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open on the Service Agreement Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', '2021-05-08', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-04 01:10:37', 1, '2021-05-04 01:31:09', 0, NULL, 1),
(4717, '', '0', '9600757565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105040007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-04 04:55:36', 0, NULL, 0, NULL, 1),
(4718, 'adhi sudalai', '28', '9677178899', '', 'teutonsadhi@gmail.com', '1994-01-12', 27, '2', '2', 'gengeswaran', 'retired govt officer', 20000.00, 1, 2.70, 4.00, 'Avadi', 'Avadi', '2105040008', '1', '2', 'upload_files/candidate_tracker/26202601637_Adhi_Updated_Resume.docx', NULL, NULL, '2021-05-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Sustainability doubt and the expectation is high with high Exp Pure Data Analyst looking something with the same Skills and technologies', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-04 08:15:23', 1, '2021-05-04 08:19:11', 0, NULL, 1),
(4719, 'azrah shehreen', '28', '9566161538', '9710434494', 'azrah6659@gmail.com', '1999-10-08', 21, '2', '2', 'askar ali', 'production manager', 23000.00, 1, 0.00, 20000.00, 'nandanam chennai', 'saidapet chennai', '2105040009', '1', '1', 'upload_files/candidate_tracker/44098866610_Azrah', NULL, NULL, '2021-05-05', 0, '', '3', '8', '2021-05-06', 180000.00, '', '5', '1970-01-01', '1', 'for DA, ctc is 180000 and Mctc is 15000.', '3', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-04 09:23:02', 7, '2021-05-05 01:18:49', 0, NULL, 1),
(4720, 'HEMANTH H', '2', '6374151328', '', 'hemanth26800@gmail.com', '2000-08-26', 20, '2', '2', 'HARIDOSS R', 'Carpenter', 15000.00, 0, 0.00, 8000.00, 'Chennai', 'Chennai', '2105040010', '1', '1', 'upload_files/candidate_tracker/28006953260_FND new.pdf', NULL, NULL, '2021-05-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-04 10:16:44', 1, '2021-05-04 10:20:58', 0, NULL, 1),
(4721, 'govind raj', '4', '7558137226', '', 'govindgowri26@gmail.com', '1998-05-29', 22, '2', '2', 'murugan', 'farmer', 15000.00, 1, 0.00, 10000.00, 'thiruvannaalai', 'thiruvannaalai', '2105050001', '2', '1', 'upload_files/candidate_tracker/46047605611_resume GOVI-converted.pdf', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, will not handle pressure. will not sustain', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 10:41:22', 1, '2021-05-05 10:44:57', 0, NULL, 1),
(4722, 'abdulgani', '6', '9962839811', '', 'abdulgani995@gmail.com', '1992-01-15', 29, '2', '1', 'aysha banu', 'nil', 10000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2105050002', '2', '2', 'upload_files/candidate_tracker/53981934598_bpo resume.pdf', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 5yr exp in showroom sales, will not suite for calling and expt sal is 25k and his previous also 25k. will not suite for RM.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 10:46:30', 1, '2021-05-05 10:48:47', 0, NULL, 1),
(4723, 'Manikandan. K', '20', '9344337619', '9952973601', 'mathimani551998@gmail.com', '1998-05-21', 22, '1', '2', 'Krishnamoorthi', 'Kooli', 10000.00, 1, 0.00, 15000.00, 'Thirukoilur', 'Thirukoilur', '2105050003', '', '1', 'upload_files/candidate_tracker/85792372206_1597415200555Resume_Baskaran.pdf', NULL, NULL, '2021-05-05', 0, 'Ravi', '3', '8', '1970-01-01', 162000.00, '', '2', '1970-01-01', '2', 'for suthagar team, Mct 13500, ctc 162000', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 11:06:06', 7, '2021-05-05 06:50:03', 0, NULL, 1),
(4724, 'L.davidpaupsamraj', '4', '8056060478', '', 'davidsjr143@gmail.com', '1998-04-21', 23, '2', '2', 'S Louis vindhan', 'Spotwelder', 11000.00, 1, 0.00, 12000.00, 'Thiruninravur', 'Thiruninravur', '2105050004', '1', '1', 'upload_files/candidate_tracker/63331481540_work ...WA0033_a.pdf', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 12:08:12', 1, '2021-05-05 12:30:13', 0, NULL, 1),
(4725, 'V. Rohit', '4', '9677434948', '8778134714', 'rd65193@gmail.com', '1999-09-13', 21, '2', '2', 'K. Veeraragavan', 'Carpentor', 20000.00, 5, 10000.00, 12000.00, 'Tiruvallur', 'Tiruvallur', '2105050005', '1', '2', 'upload_files/candidate_tracker/38304393439_rohitresume.docx', NULL, '2', '2021-05-05', 2, '', '3', '59', '2021-07-19', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location with CTC 120000 in the cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 12:28:14', 60, '2021-07-17 12:10:52', 0, NULL, 1),
(4726, 'R.Sujith kumar', '4', '9952870750', '8220109856', 'sujithkumaravi200@gmail.com', '2000-03-09', 21, '2', '2', 'Ravi', 'Private employee', 12000.00, 1, 12000.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2105050006', '1', '2', 'upload_files/candidate_tracker/20264792443_Sujithkumar (2).pdf', NULL, NULL, '2021-05-05', 5, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile . ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 12:29:36', 50, '2021-05-05 01:33:27', 0, NULL, 1),
(4727, 'b.gowtham', '4', '8220279014', '', 'gowthamchristofer@gmail.com', '1998-06-26', 22, '2', '2', 'p.Balu', 'business', 15000.00, 1, 11000.00, 12000.00, 'thiruvallur', 'thiruvallur', '2105050007', '1', '2', 'upload_files/candidate_tracker/91248585881_Resume.pdf', NULL, '1', '2021-05-05', 5, '', '3', '59', '2021-07-19', 126000.00, '', '', '1970-01-01', '2', 'Selected for Tiruvallur Location with CTC 126000 - Cash mode 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 12:30:21', 60, '2021-07-19 03:33:31', 0, NULL, 1),
(4728, 'Kalaivani S', '4', '9840240994', '8124448056', 'Kalaiaj1603@gmail.com', '2000-09-12', 20, '2', '2', 'Sekar', 'Car driver', 12000.00, 1, 0.00, 13000.00, 'Iyyappanthangal', 'iyyappanthangal', '2105050008', '1', '1', 'upload_files/candidate_tracker/67733605461_KALAIVANI S.docx', NULL, NULL, '2021-05-05', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for this job', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 01:22:06', 50, '2021-05-05 01:34:02', 0, NULL, 1),
(4729, 'RANJITHKUMAR N', '13', '9790431418', '', 'ranjith362000@gmail.com', '2000-06-03', 20, '2', '2', 'NARAYANAN S', 'Cooli Velai', 2500.00, 0, 0.00, 15000.00, 'Vandavasi', 'Vandavasi', '2105050009', '1', '1', 'upload_files/candidate_tracker/61606680287_Updated Resume .pdf', NULL, '1', '2021-05-10', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected as a Intern. 3 Years Service Agreement. intern for 1st 6 months. 3k salary for an internship.', '2', '1', '', '1', '1', '', '2', '2021-05-13', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-05 01:52:58', 60, '2021-09-02 03:00:57', 0, NULL, 1),
(4730, 'S prasanth', '6', '7299739833', '', 'Prasanthappu3011@gmail.com', '1996-09-14', 24, '3', '2', 'K sekar', 'Driver', 25000.00, 1, 14000.00, 15000.00, '324 F block scb colony Mandaveli chennai', 'Mandaveli', '2105050010', '', '2', 'upload_files/candidate_tracker/53671493084_PRASANTH RESUME (8).pdf', NULL, '1', '2021-05-05', 0, '', '3', '8', '2021-05-14', 204000.00, '', '2', '1970-01-01', '1', 'Selected For Kannan Team,CTC - 204000 Includes PF/PT Dedcutions', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 02:22:45', 7, '2021-05-14 03:37:11', 0, NULL, 1),
(4731, 'Lavanya Murugesan', '22', '8610526953', '9551101291', 'Amlavanya5@gmail.com', '1997-06-05', 23, '2', '1', 'Srinath', 'IT employee', 60.00, 2, 12.50, 20.00, 'Pammal, Chennai', 'Pammal, Chennai', '2105050011', '1', '2', 'upload_files/candidate_tracker/28787066625_Lavanyas CV.docx', NULL, '1', '2021-05-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our Digital Marketing Profile, will not sustain for a long', '2', '1', '', '1', '1', '', '2', '2021-05-25', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-05 02:36:58', 7, '2021-05-08 02:20:51', 0, NULL, 1),
(4732, 'S.Manigandan', '4', '9043991563', '', 'Manigandans693@gmail.com', '1993-06-04', 27, '2', '2', 'Sampath.v', 'Farmer', 10000.00, 3, 13.00, 12000.00, 'Thiruvannamalai', 'Porur', '2105050012', '1', '2', 'upload_files/candidate_tracker/51748901066_S. Maniganadan-1.doc', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, 7yr into data entry, not speaking up.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 02:47:56', 1, '2021-05-05 02:54:44', 0, NULL, 1),
(4733, 'Prakash Kumar Mohanty', '5', '7411678568', '7411361056', 'iciciprakash5991@gmail.com', '1995-01-06', 26, '2', '2', 'Gopinath Mohanty', 'Farmer', 10000.00, 2, 2.50, 2.80, 'Hyderabad', 'Hyderabad', '2105050013', '1', '2', 'upload_files/candidate_tracker/45879627708_prakash resume.doc', NULL, NULL, '2021-05-06', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Reason for rejection:\n1. Candidate didnxquott show the positive attitude\n2. He is having problem in local language\n3.Existing working exp seems irrelevant to me as per the observation.\n4. During the interview the connection were missing completely between Interviewer and the candidate\n5. Cnadidate belongs to Odisa and he is here in HYD only for his brother occupation in future if he moved to other state he will also migrate to their\n6.Seems not flexible to work in field sales.\n7. Appearance was not good.', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-05 03:04:09', 1, '2021-05-06 10:12:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4734, 'roshitha', '4', '9080992280', '8682880052', 'sudeeshroshitha@gmail.com', '1996-01-22', 25, '2', '2', 'sudeesh', 'tailor', 10000.00, 1, 17000.00, 17000.00, 'saidapet', 'saidapet', '2105050014', '1', '2', 'upload_files/candidate_tracker/74680005162_Roshitha s.pdf', NULL, NULL, '2021-05-05', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'check for esale, has 3 yr exp in renewal. has basic knowledge about hdfc pdt.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 03:04:51', 1, '2021-05-05 03:25:37', 0, NULL, 1),
(4735, 'Subhiksha VS', '4', '8248087845', '9176443854', 'Subhiksha.sama08@gmail.com', '1995-07-08', 25, '2', '2', 'Poorna chandrika', 'housewife', 30000.00, 2, 15000.00, 17000.00, 'No:10,19th street thillai ganga nagar nanganallur', 'chennai', '2105050015', '1', '2', 'upload_files/candidate_tracker/23479787598_subhiksha resume.docx', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Will Not Handle Pressure And Will Not Suite For Sales May Be For Renewal.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 03:05:47', 1, '2021-05-05 03:11:40', 0, NULL, 1),
(4736, 'V.S.Krithika', '4', '9629619094', '9790947817', 'krithi3097@gmail.com', '1997-08-30', 23, '2', '2', 'S. Poornachandrika', 'Homemaker', 30000.00, 2, 13000.00, 16000.00, 'No.10,19th street t G nagar nanganallur Chennai-61', 'No.10,19th Street T G Nagar Nanganallur Chennai-61', '2105050016', '1', '2', 'upload_files/candidate_tracker/58311675063_krithika resume.docx', NULL, NULL, '2021-05-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not handle pressure and will not suite for sales may be for renewal.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-05 03:05:56', 1, '2021-05-05 03:11:12', 0, NULL, 1),
(4737, '', '0', '9176443854', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105050017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-05 03:16:49', 0, NULL, 0, NULL, 1),
(4738, 'mallaji kantravada', '5', '9014301531', '', 'mallaji.personal@gmail.com', '1994-01-11', 27, '2', '2', 'k sathyanarayana', 'farmar', 15000.00, 1, 25000.00, 30000.00, 'janagaon', 'amberpet', '2105050018', '1', '2', 'upload_files/candidate_tracker/10801240920_Mallaji Resume 1.pdf', NULL, '2', '2021-05-07', 7, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'We offered him the package of 23K gross,but he didnt responds and not joinied', '5', '2', '', '3', '4', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 03:22:42', 50, '2021-05-07 01:01:42', 0, NULL, 1),
(4739, 'melina mary', '4', '6379941121', '', 'melina20raj@gmail.com', '2000-02-20', 21, '2', '2', 'santhana raj', 'na', 50000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2105050019', '1', '1', 'upload_files/candidate_tracker/96972409533_My Resume.pdf', NULL, NULL, '2021-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-05 03:46:06', 1, '2021-05-05 03:50:34', 0, NULL, 1),
(4740, 'K.Malathy', '4', '6382430292', '', 'malumalathy058@gmail.com', '1999-10-09', 21, '4', '2', 'D/o G.Kannan', 'Welder', 15000.00, 1, 10500.00, 15000.00, 'Kovilpatti', 'Chennai', '2105050020', '', '2', 'upload_files/candidate_tracker/73497610358_Malathy Resume.pdf', NULL, NULL, '2021-05-06', 2, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 03:54:14', 1, '2021-05-05 04:04:50', 0, NULL, 1),
(4741, 'Rashmi Christilla', '4', '7200441804', '', 'rashpinkyaj@gmail.com', '1995-12-05', 25, '4', '2', 'Selvam', 'Merchant', 25000.00, 1, 16000.00, 15000.00, 'Kovilpatti', 'Vadapalani, chennai', '2105050021', '', '2', 'upload_files/candidate_tracker/19669195622_Ras_Nk-converted-1 (2).pdf', NULL, NULL, '2021-05-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-05 03:58:01', 1, '2021-05-05 04:12:44', 0, NULL, 1),
(4742, '', '0', '9553798063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105050022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-05 04:16:24', 0, NULL, 0, NULL, 1),
(4743, 'R kishore raju', '5', '9390306241', '9177652263', 'kishoreraj0026@gmail.com', '1996-04-16', 25, '2', '2', 'Srinivasa raju', 'Government employe', 40000.00, 4, 23000.00, 30000.00, 'Hyderabad', 'Hyderabad', '2105050023', '1', '2', 'upload_files/candidate_tracker/98381844205_Kishore CV (1)-converted.docx', NULL, NULL, '2021-05-06', 1, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for Job', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-05 06:29:11', 1, '2021-05-05 07:29:36', 0, NULL, 1),
(4744, '', '0', '9177652263', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105050024', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-05 07:21:40', 0, NULL, 0, NULL, 1),
(4745, '', '0', '9940367043', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105060001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-06 10:37:20', 0, NULL, 0, NULL, 1),
(4746, '', '0', '9677102498', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105060002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-06 11:52:17', 0, NULL, 0, NULL, 1),
(4747, 'ponnuram G A', '13', '9094065624', '', 'ponnuram03@gmail.com', '1998-12-13', 22, '2', '2', 'Ananda rao G S', 'cobbler', 72000.00, 1, 0.00, 15000.00, 'chennai', 'Chennai', '2105060003', '1', '1', 'upload_files/candidate_tracker/12491068095_Ponnuram G A resume.pdf', NULL, '1', '2021-05-06', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response.', '2', '1', '', '1', '1', '', '2', '2021-05-07', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-06 11:53:06', 60, '2021-05-06 07:32:36', 0, NULL, 1),
(4748, 'Vinotha V', '22', '9789031127', '9444117022', 'vinothasekaran@gmail.com', '1995-11-03', 25, '2', '2', 'Vasanthasekaran N', 'Mechanical Engineer', 60000.00, 0, 40000.00, 10000.00, 'T.Nagar', 'T.Nagar', '2105060004', '1', '2', 'upload_files/candidate_tracker/47153911199_VS Resume.pdf', NULL, '1', '2021-05-07', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High Package In The Previous Company. Doubtful Of Sustainability.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'High package in the previous company. Doubtful of sustainability.', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-05-06 12:39:17', 69, '2021-09-20 01:23:06', 0, NULL, 1),
(4749, 'Nandhini', '2', '7305834737', '', 'nandhinigopal20@gmail.com', '1998-11-20', 22, '2', '2', 'Gopal', 'Painter', 10000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2105060005', '1', '1', 'upload_files/candidate_tracker/63176736204_NANDHINI resume.pdf', NULL, NULL, '2021-05-07', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected For Internship - 5K Stipend - Mern Stack, Joined on 2-Jun-2021 WFH Training', '2', '1', '0', '1', '1', '0', '2', '2021-05-10', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 12:57:20', 1, '2021-05-06 01:01:25', 0, NULL, 1),
(4750, 'Vinoth S', '6', '9790939832', '9943604922', 'vinogeetha1998@gmail.com', '1999-04-25', 22, '2', '2', 'Kalarani.S', 'Ledies tylor', 8000.00, 5, 13.50, 14000.00, 'Trichy', 'Palavanthangal', '2105060006', '1', '2', 'upload_files/candidate_tracker/29598164927_Vino_Resume.docx', NULL, '1', '2021-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Profile kept on hold during this pandemic and dropped post the completion of Lockdown', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-06 02:18:43', 8, '2021-05-06 05:03:58', 0, NULL, 1),
(4751, 'g.sangeetha priya', '13', '8148672167', '', 'sangeetha1851@gmail.com', '2001-05-18', 19, '2', '2', 'p.gunasekar', 'business', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2105060007', '1', '1', 'upload_files/candidate_tracker/87475268032_Sangeetha priya G resume.pdf', NULL, '1', '2021-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location too long fresher,exams yet to complete\n', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 02:58:43', 1, '2021-05-06 04:04:09', 0, NULL, 1),
(4752, 'Kamal.M', '23', '7418823014', '', 'smkamal.sm@gmail.com', '1990-06-07', 30, '2', '2', 'M.Venda', 'House wife', 10000.00, 2, 25000.00, 30000.00, 'No: 683/5, road street, srinivasapuram, Arani', 'Mathavaram, Chennai', '2105060008', '1', '2', 'upload_files/candidate_tracker/94572854352_kamal-Resume.docx', NULL, '3', '2021-05-07', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 03:04:27', 1, '2021-05-06 04:23:18', 7, '2021-05-07 04:00:49', 0),
(4753, 'r praveena', '23', '8110990320', '', 'praveena.ravi1101@gmail.com', '1997-01-11', 24, '2', '2', 'r ravichandran', 'driver', 16000.00, 1, 16.00, 30000.00, 'tiruvannamalai', 'tiruvannamalai', '2105060009', '1', '2', 'upload_files/candidate_tracker/9877406083_Resume-Praveena..pdf', NULL, '2', '2021-05-06', 0, '', '5', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task Incomplete', '2', '1', '', '1', '1', '', '2', '2021-05-07', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 04:08:56', 7, '2021-05-17 11:51:53', 0, NULL, 1),
(4754, 'Kamal.M', '23', '9094089458', '', 'smkamal.sm@gmail.com', '1990-06-07', 30, '2', '2', 'M.Venda', 'House wife', 10000.00, 2, 25000.00, 30000.00, 'No: 683/5, road street, srinivasapuram, Arani', 'Mathavaram, Chennai', '2105060010', '1', '2', 'upload_files/candidate_tracker/15698511328_kamal-Resume.docx', NULL, '3', '2021-05-07', 15, '', '4', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task given', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-06 04:40:59', 7, '2021-05-07 10:56:54', 0, NULL, 1),
(4755, 'govindaraj s', '6', '9042511098', '', 'illayagokul@gmail.com', '1996-07-05', 24, '2', '2', 'subamaniya s', 'auto driver', 10000.00, 1, 13000.00, 14000.00, 'chennai', 't nagar', '2105060011', '2', '2', 'upload_files/candidate_tracker/7521467046_Govindaraj resume .docx', NULL, '', '2021-05-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain and will not handle pressure. absconded from the last company.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-06 06:23:02', 1, '2021-05-06 06:25:10', 0, NULL, 1),
(4756, '', '0', '9505574613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105060012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-06 07:06:53', 0, NULL, 0, NULL, 1),
(4757, 'rashmi Chirstilla', '5', '8270842501', '', 'rashpinkyaj@gmail.com', '1995-12-05', 25, '2', '2', 'sevam', 'working', 50000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2105070001', '1', '1', 'upload_files/candidate_tracker/92541952771_Ras_Nk-converted-1 (2) (1).pdf', NULL, '2', '2021-08-09', 0, '', '3', '59', '2021-08-09', 170496.00, '', '5', '1970-01-01', '2', 'Selected for Dhivya Team with CTC 170496 includes PF/ESI/PT', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 10:39:46', 60, '2021-08-09 05:02:09', 0, NULL, 1),
(4758, 'monica', '4', '7305442176', '', 'monicasiva98@gmail.com', '1998-11-11', 22, '2', '2', 'siva e', 'wage', 50000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2105070002', '1', '1', 'upload_files/candidate_tracker/9717052207_monica done.pdf', NULL, '2', '2021-05-07', 0, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 10:45:01', 50, '2021-05-07 05:22:03', 0, NULL, 1),
(4759, '', '0', '7338959523', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105070003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-07 10:49:20', 0, NULL, 0, NULL, 1),
(4760, 'sathya', '4', '8610067714', '7708864554', 'dvsathyasri3@gmail.com', '1997-08-21', 23, '2', '2', 'dharumaiyan', 'farmer', 4000.00, 0, 12000.00, 12000.00, 'manargudi', 'ambattur', '2105070004', '1', '2', 'upload_files/candidate_tracker/64881072635_sathya resumr 1.pdf', NULL, '2', '2021-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 11:05:03', 1, '2021-05-07 11:08:18', 0, NULL, 1),
(4761, 'Sangavi', '16', '7373570546', '', 'ecesangaviworld@gmail.com', '1993-07-21', 27, '2', '2', 'Soundarapandiyan', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Perambalur', 'Nungambakkam', '2105070005', '1', '2', 'upload_files/candidate_tracker/86106372941_sangavi resume 2021.pdf', NULL, '1', '2021-05-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, Less Exp in MIS but the expectation is very high', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 11:08:38', 50, '2021-05-07 11:54:14', 0, NULL, 1),
(4762, '', '0', '9337761509', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105070006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-07 11:13:50', 0, NULL, 0, NULL, 1),
(4763, 'karthiga', '13', '9444295515', '', 'd.karthiga123@gmail.com', '1995-11-27', 25, '2', '2', 'dhanushkodi', 'line man', 50000.00, 1, 20000.00, 25000.00, 'villupuram', 'villupuram', '2105070007', '1', '2', 'upload_files/candidate_tracker/69791042788_karthiga_resume.docx', NULL, '3', '2021-05-07', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not completed and no response.', '2', '1', '0', '1', '1', '0', '2', '2021-05-08', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 11:47:49', 1, '2021-05-07 11:52:22', 0, NULL, 1),
(4764, 'Akilesh', '4', '9094802796', '9840755452', 'akileshstonecold@gmail.com', '2001-07-30', 19, '2', '2', 'A.N.sudarsanan', 'Musician', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2105070008', '1', '2', 'upload_files/candidate_tracker/61376055281_updated resume.docx', NULL, '1', '2021-05-07', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain for a long,Just for time being looking for a job if he finds any relevant Core job will move for that', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 11:59:13', 1, '2021-05-07 12:24:02', 0, NULL, 1),
(4765, 'Surya s', '5', '9500181787', '', 'Benetz07@gmail.com', '1992-02-24', 29, '1', '1', 'Nandhini', 'House wife', 25000.00, 2, 25000.00, 30000.00, 'Mylapore', 'Mylapore', '2105070009', '', '2', 'upload_files/candidate_tracker/43334151201_surya_new_format.pdf', NULL, '1', '2021-05-07', 15, 'Raaj', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'First i shorlisted but Rejected in ref check', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-07 12:01:52', 1, '2021-05-07 12:35:10', 0, NULL, 1),
(4766, 'Mohammed Reffai', '22', '9677211855', '', 'reffaistr5697@gmail.com', '1997-05-28', 23, '2', '2', 'mp. rahamathullah', 'business', 50000.00, 3, 13000.00, 20000.00, 'chennai aminjikarai', 'chennai aminjikarai', '2105070010', '1', '2', 'upload_files/candidate_tracker/42227574442_Reffai work exp.docx', NULL, '1', '2021-05-11', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Not Much open up,will not suits much for our role', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 12:11:57', 7, '2021-05-11 11:24:09', 0, NULL, 1),
(4767, 'Mageswari.M', '20', '8124725204', '', 'Magimagi28@gmail.com', '1999-03-02', 22, '2', '2', 'K.Manoharan', 'Electrician', 20000.00, 2, 0.00, 12000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2105070011', '1', '1', 'upload_files/candidate_tracker/95421384801_mageswari resume.pdf', NULL, '1', '2021-05-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling and our process', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 12:54:47', 50, '2021-05-07 01:10:43', 0, NULL, 1),
(4768, 'KARTHIKEYAN B', '28', '8608583027', '', 'karthikbalaji15699@gmail.com', '1999-06-15', 21, '2', '2', 'BALAJI.R', 'MTC BUS TECHNICIAN', 30000.00, 0, 0.00, 20000.00, 'West mambalam, Chennai', 'West mambalam, Chennai', '2105070012', '1', '1', 'upload_files/candidate_tracker/90601105808_KARTHIK RESUME.pdf', NULL, '1', '2021-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Not much focused towards Work, Family running their own business. Sustainability Doubt, yet to complete his exams\n', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 01:37:41', 1, '2021-05-07 01:50:22', 0, NULL, 1),
(4769, 'rajasekhar reddy', '5', '7993586206', '', 'raj.sekhar724@gmail.com', '1994-08-13', 26, '2', '1', 'venkata ramana reddy', 'not working', 10000.00, 1, 23000.00, 30000.00, 'vizag', 'hyderabad', '2105070013', '1', '2', 'upload_files/candidate_tracker/53504989317_raja sekhar Reddy resume updates.docx', NULL, '1', '2021-05-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 02:28:29', 1, '2021-05-07 02:32:55', 0, NULL, 1),
(4770, 'Battina venkata ramana', '5', '9014893955', '', 'aramya078@gmail.com', '1994-04-30', 27, '2', '2', 'Atchutha ramayya', 'Employee', 1.00, 1, 15000.00, 15000.00, 'Vizag', 'Hyderabad', '2105070014', '1', '2', 'upload_files/candidate_tracker/90504726314_CV_2021-04-22-051225.pdf', NULL, '1', '2021-05-13', 0, '', '8', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not attended the interview', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 03:33:59', 50, '2021-05-12 05:36:00', 0, NULL, 1),
(4771, 'Manojkumar', '16', '9840225181', '', 'sakshi.ysh@gmail.com', '1990-12-08', 30, '2', '1', 'Rajendran', 'Junior assistant', 25.00, 1, 14.00, 15.00, 'Ramapuram', 'Ramapuram', '2105070015', '1', '2', 'upload_files/candidate_tracker/23675864669_Manoj resume (1).pdf', NULL, '1', '2021-05-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response', '3', '2', '', '1', '1', '', '2', '2021-05-24', '3', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-07 03:46:10', 7, '2021-05-07 04:16:28', 0, NULL, 1),
(4772, 'komalatha', '20', '7013549746', '9985631869', 'gantakomalatha@gmail.com', '1996-06-17', 24, '2', '2', 'rathna', 'house wife', 4.00, 2, 25.00, 35.00, 'vizag', 'hyderabad', '2105070016', '1', '2', 'upload_files/candidate_tracker/86819392470_Copy of GANTA KOMALATHA resume.2020.pdf', NULL, '3', '2021-05-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 03:54:41', 50, '2021-05-08 09:33:00', 0, NULL, 1),
(4773, 'Sathviga. M', '28', '9941275399', '', 'msathviga@gmail.com', '1998-05-25', 22, '2', '2', 'Murali D', 'Retired', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2105070017', '1', '1', 'upload_files/candidate_tracker/42733968243_sathviga M.pdf', NULL, '3', '2021-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much into Data Science with the Technologies of Python and more. will not sustain for our Data Analyst position', '3', '1', '0', '1', '1', '0', '2', '2021-05-26', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 04:15:52', 1, '2021-05-07 04:20:22', 0, NULL, 1),
(4774, 'akhil', '5', '9494317541', '9885488277', 'kakhil256@gmail.com', '1995-06-25', 25, '2', '1', 'k ratnakumar', 'clerk', 20000.00, 1, 20000.00, 25000.00, 'kammam', 'hyderabad', '2105070018', '1', '2', 'upload_files/candidate_tracker/1971504507_CV (1).pdf', NULL, '2', '2021-05-08', 0, '', '3', '8', '2021-05-24', 275000.00, '', '6', '2022-04-20', '1', 'For veben team hyderabad. 2.75L ctc, 22917 MCTC and 19316.6 as net. with pf/PT', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 04:16:09', 7, '2021-05-24 12:22:40', 0, NULL, 1),
(4775, 'Thenmozhi S', '28', '9940422132', '9840463114', 'thenmozhi.pugazenthi@gmail.com', '1987-03-19', 34, '2', '1', 'Pugazenthi S', 'Business', 15000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2105070019', '1', '2', 'upload_files/candidate_tracker/14924865730_My Resume.docx', NULL, '1', '2021-05-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Experienced, Gap In Career Expecting 21k,Sustainability doubt on this profile', '3', '2', '0', '1', '1', '0', '2', '2021-05-25', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 04:39:14', 1, '2021-05-07 04:52:06', 0, NULL, 1),
(4776, '', '0', '7339321715', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105070020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-07 04:45:27', 0, NULL, 0, NULL, 1),
(4777, 'Mohammed Maozam', '6', '8341544310', '', 'mohammedmaozam01@gmail.com', '1999-11-19', 21, '2', '2', 'Mohd Shafee', 'Business', 100000.00, 2, 12000.00, 20000.00, 'HNo. 2-6-41/9/A/5/3 Attapur, Hyderabad.', 'HNo. 2-6-41/9/A/5/3 Attapur, Hyderabad', '2105070021', '1', '2', 'upload_files/candidate_tracker/78893251202_Mohd Maozam.docx', NULL, '1', '2021-05-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 05:06:54', 50, '2021-05-08 09:33:16', 0, NULL, 1),
(4778, '', '0', '7036912724', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105070022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-07 05:47:30', 0, NULL, 0, NULL, 1),
(4779, 'Burdhi Naveen Prasad', '5', '9398785801', '', 'b.naveen9030@gmail.com', '1999-05-02', 22, '2', '2', 'srinivas', 'waiter', 120000.00, 1, 18000.00, 20000.00, 'alwal', 'alwal', '2105070023', '1', '2', 'upload_files/candidate_tracker/33725607224_NAVEEN RESUME.pdf', NULL, '2', '2021-05-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '3', '4', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-07 05:51:54', 50, '2021-05-08 09:33:30', 0, NULL, 1),
(4780, 'jayaprakash j', '23', '9750653793', '9964646874', 'jayaprakashpkt02@gmail.com', '1994-06-02', 26, '2', '2', 'jayabal p', 'post master', 15000.00, 1, 12000.00, 20000.00, 'thanjavur', 'vadapalani', '2105070024', '1', '2', 'upload_files/candidate_tracker/46614080531_Jayaprakash j new resume.docx', NULL, '1', '2021-05-08', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much suits for UI,not much knowledge ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-07 09:27:24', 1, '2021-05-07 09:36:27', 0, NULL, 1),
(4781, 'Adithyan', '28', '7867945420', '', 'Adithyandbtr@gmail.com', '1995-08-07', 25, '2', '2', 'Durairajan', 'Agriculture', 25000.00, 0, 25000.00, 35000.00, 'Mayiladhuturai', 'Chennai', '2105080001', '1', '2', 'upload_files/candidate_tracker/56592295571_Adithyan_Resume1.pdf', NULL, '2', '2021-05-10', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,2+ Yrs Into MIS With Amazon,30 Days Of Notice, Salary Expectation Is High, Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', '2021-05-24', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-08 10:02:05', 1, '2021-05-09 08:59:21', 0, NULL, 1),
(4782, 'Dhivakar', '28', '8489656699', '9655571818', 'dhivakarbalasubramaniyan@outlook.com', '1992-04-07', 29, '2', '2', 'Balasubramaniyan', 'Farmer', 25000.00, 1, 2.40, 4.00, '96,Sembulipuram village cheyyur taluk,603304', '49, 2nd st , Priya Nagar,urapakkam, 603210', '2105080002', '1', '2', 'upload_files/candidate_tracker/39768436897_Resume_Dhivakar.pdf', NULL, '1', '2021-05-08', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, Full focused on pure Data Science openings, Sustainability issue 3 yrs 3 companies and high Salary Expectations', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-08 10:07:48', 50, '2021-05-08 10:20:44', 0, NULL, 1),
(4783, 'muneerunisa', '4', '7092580751', '', 'nissomailme@gmail.com', '1993-09-20', 27, '2', '1', 'husamudeen', 'indian navy retired', 20000.00, 1, 16000.00, 13000.00, 'chennai', 'chennai', '2105080003', '2', '2', 'upload_files/candidate_tracker/38521521256_WhatsApp Image 2021-05-07 at 2.34.11 PM.pdf', NULL, '1', '2021-05-08', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '1', 'check for RM esale, knows basics in insurance and has exp in renewal and customer support.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-08 10:31:33', 1, '2021-05-08 10:34:56', 0, NULL, 1),
(4784, 'ambati rajasekhar reddy', '5', '8074710018', '9948972289', 'rajasekhar.mbahr2@gmail.com', '1993-05-04', 28, '2', '2', 'veera reddy', 'farmer', 10000.00, 3, 18000.00, 25000.00, 'hyderabad', 'yousufguda check post', '2105080004', '1', '2', 'upload_files/candidate_tracker/808195221_0_Raja18.docx', NULL, '1', '2021-05-08', 0, '', '3', '72', '2021-06-02', 235000.00, '', '4', '2021-06-09', '1', 'Selected For Veben, CTC - 2.35 LPA Includes PF/PT', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-08 11:10:31', 60, '2021-06-01 03:57:48', 0, NULL, 1),
(4785, 'Aqeel Ahmed', '5', '8801728104', '7337062079', 'aqeelhyd51@gmail.com', '1992-07-03', 28, '2', '2', 'late Jameel ahmed', 'own business', 18500.00, 2, 18500.00, 25000.00, 'Hyderabad', 'Hyderabad', '2105080005', '1', '2', 'upload_files/candidate_tracker/23498598284_Aqeel Resume ltst.docx', NULL, '3', '2021-05-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-08 11:13:42', 1, '2021-05-08 11:16:39', 0, NULL, 1),
(4786, 'Deepak', '16', '9941119097', '9025629974', 'deepakvenkat94@gmail.com', '1994-05-24', 26, '2', '2', 'Anbarasan', 'Electrician', 20000.00, 1, 19000.00, 24000.00, 'Chennai', 'Chennai', '2105080006', '1', '2', 'upload_files/candidate_tracker/10648144488_1620452185595_1591618488837Resume_DeepakMIS (1).docx', NULL, '1', '2021-05-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Exp In MIS,Not Much With Communications Need much ok with SA', '3', '2', '', '1', '1', '', '2', '2021-05-25', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-08 11:25:41', 50, '2021-05-08 11:54:07', 0, NULL, 1),
(4787, 'Velmurugan', '28', '7339391084', '', 'velmurugan3796@gmail.com', '2006-05-08', 0, '2', '2', 'Kamaiyan', 'Agriculture', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2105080007', '1', '1', 'upload_files/candidate_tracker/95585427748_Resume.pdf', NULL, '1', '2021-05-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-08 12:00:36', 1, '2021-05-08 12:03:54', 0, NULL, 1),
(4788, 'rajeshwari', '4', '9841939417', '', 'krishnamoorthyrajeshwari@gmail.com', '1993-12-19', 27, '2', '2', 'krishnamoorthy', 'makeup artist', 13000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2105080008', '2', '1', 'upload_files/candidate_tracker/21087330748_RResume.pdf', NULL, '1', '2021-05-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very slow, not speaking up and will not handle Sales pressure. ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-08 01:54:48', 1, '2021-05-08 01:56:57', 0, NULL, 1),
(4789, '', '0', '6385574199', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105080009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-08 08:34:23', 0, NULL, 0, NULL, 1),
(4790, 'Easwari S', '28', '9042066037', '', 'easwaribe94@gmail.com', '1994-04-19', 27, '2', '1', 'Sathiya Prakash', 'administration', 25000.00, 3, 14000.00, 19000.00, 'mambakkam', 'mambakkam', '2105080010', '1', '2', 'upload_files/candidate_tracker/40544305776_Resume.pdf', NULL, '1', '2021-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, Work Exp into Core Subject(Biotechnology),Too long Distance up and down 52kms and the expectation is around 17K TH', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-08 09:32:23', 1, '2021-05-08 09:38:47', 0, NULL, 1),
(4791, 'Venkatramanan', '28', '8124067694', '9962798616', 'venkat16383@gmail.com', '1999-05-08', 22, '2', '2', 'Sankar', 'Self', 50000.00, 1, 325000.00, 400000.00, 'Chennai', 'Chennai', '2105100001', '1', '2', 'upload_files/candidate_tracker/99564387230_venkys%20new%20resume%20updated%20on%20apri021.docx', NULL, '2', '2021-05-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Good Communication, Sustainability doubt need a month time post selection for the submission of Documents.Also he holds a offer with BYJuxquots for BDE with 7LPA ans being into Sales he was not much comfortable with BYJU. His Expectation from us is around 4 LPA. Much Focus into Financial Analyst', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-10 09:37:43', 1, '2021-05-10 09:41:43', 0, NULL, 1),
(4792, 'E. Gnanalakshmi', '13', '7305146845', '6385574199', 'lachuelumalai12@gmail.com', '2000-12-12', 20, '2', '2', 'Elumalai', 'Hotel business', 15000.00, 1, 0.00, 15000.00, 'Gummidipoondi', 'Gummidipoondi', '2105100002', '1', '1', 'upload_files/candidate_tracker/52108336813_Gnana Lakshmi E.pdf', NULL, '2', '2021-05-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'dont know the basic. she will not suit for us.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-10 11:44:18', 1, '2021-05-10 11:50:32', 0, NULL, 1),
(4793, 'madha saikumar', '5', '7995489029', '9391285613', 'madasaikumar868@gmailmcom', '1997-01-10', 24, '2', '2', 'madha saiahaia', 'farmer', 30000.00, 2, 15000.00, 15000.00, 'nalkonda', 'Dilshuknagar', '2105100003', '1', '2', 'upload_files/candidate_tracker/3605145812_SAI KUMAR RESUME(1).pdf', NULL, '1', '2021-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 12:35:47', 1, '2021-05-10 12:39:55', 0, NULL, 1),
(4794, 'Sathish', '23', '9791901007', '', 'msathish40@gmail.com', '1989-04-15', 32, '2', '2', 'Murugaiyan', 'Business', 20000.00, 2, 20000.00, 30000.00, 'Tindivanam', 'Chennai', '2105100004', '1', '2', 'upload_files/candidate_tracker/65158262949_newresume.doc', NULL, '3', '2021-05-12', 1, '', '5', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Incomplete', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-10 02:04:30', 7, '2021-05-20 10:47:14', 0, NULL, 1),
(4795, '', '0', '9100310363', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105100005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-10 02:31:51', 0, NULL, 0, NULL, 1),
(4796, 'khadarmastanvali', '5', '9398136897', '9542924940', 'kmbrsc@gmail.com', '1994-08-02', 26, '2', '2', 'abdul jabbar', 'carpenter', 50000.00, 1, 25000.00, 25000.00, 'tholichowki', 'Tholichowki', '2105100006', '1', '2', 'upload_files/candidate_tracker/66843082446_1610007116394_kmv%20resume (1).docx', NULL, '1', '2021-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 02:38:41', 1, '2021-05-10 02:42:42', 0, NULL, 1),
(4797, 'CHITHAKORU HEMANTH', '5', '9059900959', '7093529191', 'hemanthtrr@gmail.com', '1994-03-02', 27, '2', '1', 'manusha', 'house wife', 45000.00, 0, 24000.00, 26000.00, 'uppal', 'Uppal', '2105100007', '1', '2', 'upload_files/candidate_tracker/59697252340_Hemanth resume.pdf', NULL, '1', '2021-05-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for Job', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 02:49:07', 1, '2021-05-10 02:53:04', 0, NULL, 1),
(4798, 'Venkatesh J', '16', '9677208480', '', 'Venkatesh.jeeva2752@gmail.com', '1994-07-24', 26, '2', '1', 'Vasantha J', 'Business', 25000.00, 3, 15000.00, 18000.00, 'Anna nagar west,chennai', 'Anna Nagar west,chennai', '2105100008', '1', '2', 'upload_files/candidate_tracker/43429879001_Venkatesh J.pdf', NULL, '3', '2021-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, If Trained Will Pick Up. Open For The Service Agreement And The Expectation Is 18-20K For 1.7 Yrs Can Give A Try For MIS. Interviewed over Zoom by Gokul, No knowledge in Excel,Not suits for the salary Expectation', '3', '1', '', '1', '3', '', '2', '2021-05-24', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 03:19:53', 50, '2021-05-11 09:15:57', 0, NULL, 1),
(4799, 'govind kumar', '16', '9884201931', '', 'govind1488@gmail.com', '1998-04-05', 23, '2', '2', 'krishnanandan choudhary', 'mechanical engineer', 25000.00, 1, 0.00, 25000.00, 'bihar', 'chennai', '2105100009', '1', '2', 'upload_files/candidate_tracker/44338459362_Govind Kumar Resume.pdf', NULL, '2', '2021-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Is Good, But No Local Language, Not Much Into Excel Need To Train A Lot, Open For Agreement But Not Sure Sustainability Doubts', '3', '1', '', '1', '1', '', '2', '2021-05-24', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 03:58:15', 50, '2021-05-11 09:14:45', 0, NULL, 1),
(4800, 'Suresh srinivasan', '16', '9444733358', '7448333900', 'suresh.ss67@gmail.com', '1994-11-10', 26, '2', '1', 'Shanmathy', 'Housewife', 19000.00, 1, 19000.00, 23000.00, 'Chennai', 'Chennai', '2105100010', '1', '2', 'upload_files/candidate_tracker/93686345406_Resume_Suresh (1).docx', NULL, '2', '2021-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Service Agreement. Open For The Same CTC 23400 Gross, Can Give A Try For MIS, But The Location Is Long (Guduvanchery)', '3', '2', '', '1', '1', '', '2', '2021-05-12', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 04:09:10', 50, '2021-05-11 09:14:59', 0, NULL, 1),
(4801, 'Prabhakaran', '16', '6383325092', '8056183691', 'prabhakaranravi98@gmail.com', '1998-06-11', 22, '2', '2', 'Ravi', 'Welder', 17000.00, 1, 12400.00, 18000.00, 'Thiruvotriyur', 'Thiruvotriyur', '2105100011', '1', '2', 'upload_files/candidate_tracker/55399461892_1614243951667Resume_Prabhakaran.pdf', NULL, '2', '2021-05-11', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50/50 Communication Average, Long Distance Around 20kms,Sustainability doubt 12.5 Gross', '3', '1', '', '1', '1', '', '2', '2021-05-12', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 04:53:12', 50, '2021-05-11 09:15:13', 0, NULL, 1),
(4802, 'Kumar John', '26', '9600063698', '6382679834', 'clara88kumar@gmail.com', '1994-04-29', 27, '2', '2', 'john', 'driver', 15000.00, 1, 16000.00, 19000.00, 'CHENNAI', 'chennai', '2105100012', '1', '2', 'upload_files/candidate_tracker/83457006640_Kumar Resume.pdf', NULL, '3', '2021-05-11', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for MF, need to confirm on the joining post relations in the lockdown', '7', '1', '', '1', '1', '', '2', '2021-05-12', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-10 05:50:07', 50, '2021-05-11 09:15:27', 0, NULL, 1),
(4803, 'gayathri', '4', '8248421801', '9894430098', 'r.gayuma08@gmail.com', '1994-12-08', 26, '2', '2', 'ravichandaran', 'own business', 25000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105100013', '1', '1', 'upload_files/candidate_tracker/63462683323_gayathri.pdf', NULL, '2', '2021-05-05', 0, '', '3', '8', '2021-06-02', 120000.00, '', '', '1970-01-01', '2', ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-10 06:03:06', 7, '2021-05-10 06:32:41', 0, NULL, 1),
(4804, 'DHINESH', '13', '8220337337', '', 'Selvadhinesh66@gmail.com', '1996-06-06', 24, '2', '2', 'Selvaraj', 'Farmer', 15000.00, 1, 18000.00, 25000.00, 'chennai', 'chennai', '2105100014', '1', '2', 'upload_files/candidate_tracker/29452189792_1619764970903Resume_DHINESH.pdf', NULL, '3', '2021-05-11', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not good for 2.4 years experienced. This code look like a fresher.', '2', '1', '0', '1', '3', '0', '2', '2021-05-14', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-10 07:01:09', 1, '2021-05-10 07:08:03', 0, NULL, 1),
(4805, 'Ramu.M', '13', '8667572281', '8681835202', 'robertram298@gmail.com', '1998-11-11', 22, '2', '2', 'P.Mani', 'Cooli', 8000.00, 2, 1.00, 216000.00, 'Chennai', 'Chennai', '2105110001', '1', '2', 'upload_files/candidate_tracker/13678699072_Ramu_M-1.docx', NULL, '3', '2021-05-11', 1, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'no sustainability.', '2', '1', '0', '1', '1', '0', '2', '2021-05-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 11:05:29', 1, '2021-05-11 11:10:59', 0, NULL, 1),
(4806, 'Suresh R', '13', '9962547433', '7092676607', 'donsuresh360@gmail.com', '1995-02-15', 26, '2', '2', 'Ravi Shankar K', 'Car Dealer', 25000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2105110002', '1', '1', 'upload_files/candidate_tracker/51816536428_resume_Suresh_R_-_Final.docx', NULL, '3', '2021-05-11', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Not completed the task. rejected by dhineshraj.', '2', '2', '0', '1', '1', '0', '2', '2021-05-13', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 11:11:53', 1, '2021-05-11 11:20:59', 0, NULL, 1),
(4807, 'saigopalyanamadala', '5', '7738287560', '7304484137', 'saigopalyanamadala10@gmail.com', '1996-09-09', 24, '2', '2', 'trimuthulu yanamadala', 'passed away', 55000.00, 1, 20000.00, 25000.00, 'hyd', 'hyd', '2105110003', '1', '2', 'upload_files/candidate_tracker/55996417617_srisai1 (1).docx', NULL, '2', '2021-05-12', 10, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not a sustainer and not fit for our profile.', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 12:45:24', 1, '2021-05-11 12:54:53', 0, NULL, 1),
(4808, 'Purushothaman P', '13', '8148578289', '', 'purushothvpp@gmail.com', '1990-11-13', 30, '2', '2', 'Pandurangan R', 'Software developer', 23000.00, 1, 25000.00, 36000.00, 'Villupuram', 'Taramani', '2105110004', '1', '2', 'upload_files/candidate_tracker/57595134291_Purushoth_Profile.doc', NULL, '3', '2021-05-12', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 01:37:32', 1, '2021-05-11 01:49:06', 0, NULL, 1),
(4809, 'syed asim hussain', '5', '7993822026', '', 'a.syedasim.h@gmail.com', '1994-01-02', 27, '2', '1', 'afrin begum', 'house wife', 60000.00, 4, 19600.00, 24000.00, 'Saptagiri', 'Saptagiri', '2105110005', '1', '2', 'upload_files/candidate_tracker/44802946959_Share Syed Asim Resume.doc', NULL, '2', '2021-05-12', 10, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 03:57:18', 1, '2021-05-11 04:01:39', 0, NULL, 1),
(4810, 'Maloth.Balaji Nayak', '5', '7981512191', '9000977224', 'nayakbalaji01@gmail.com', '1993-10-05', 27, '2', '2', 'laskhman', 'driver', 40000.00, 2, 18000.00, 20000.00, 'warangal', 'warangal/yusufguda', '2105110006', '1', '2', 'upload_files/candidate_tracker/49423740943_CV_2021-04-18-102642 (1).pdf', NULL, '2', '2021-05-12', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our Profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 04:06:04', 1, '2021-05-11 04:10:11', 0, NULL, 1),
(4811, 'Harisudhan', '23', '8015374077', '9789172203', 'Harisudhan2204@gmail.com', '1997-04-22', 24, '2', '2', 'Murugan', 'Self employed', 30000.00, 2, 0.00, 15000.00, '451/l angoor palayam road cumbum theni[DT]', 'Chennai', '2105110007', '1', '1', 'upload_files/candidate_tracker/44759222231_Resume May.pdf', NULL, '3', '2021-05-12', 0, '', '5', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 04:34:23', 7, '2021-05-19 11:24:28', 0, NULL, 1),
(4812, 'Sophia Rani', '16', '9025704704', '', 'sophiarani19@gmail.com', '1995-06-19', 25, '3', '2', 'Joseph victor', 'Retired gazzetted officer', 50.00, 2, 2.80, 3.50, 'Vadapalani', 'Vadapalani', '2105110008', '', '2', 'upload_files/candidate_tracker/26386887544_RANI RESUME.pdf', NULL, '3', '2021-05-25', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-11 05:07:03', 1, '2021-05-11 05:10:55', 0, NULL, 1),
(4813, 'aswini b', '16', '8220664830', '', 'aswinisathya6@gmail.com', '1994-10-22', 26, '2', '2', 'padmavathi', 'home maker', 20000.00, 1, 20000.00, 25000.00, 'tharamani chennai', 'chennai', '2105110009', '1', '2', 'upload_files/candidate_tracker/62001476511_Ashwini.pdf', NULL, '2', '2021-05-12', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok , She Around 26 Yrs, Not Sure On The Sustainability, Currently Working 15 Days Notice As She Is In 3rd Party Payroll', '3', '2', '0', '1', '1', '0', '2', '2021-05-13', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 05:10:56', 1, '2021-05-11 05:31:20', 0, NULL, 1),
(4814, 'Kothapally manoj', '5', '9989257340', '7013066874', 'manojkothapally68@gmail.com', '1998-03-21', 23, '2', '2', 'rajamouli', 'central bank india', 150000.00, 1, 19700.00, 25000.00, 'uppal', 'Uppal', '2105110010', '1', '2', 'upload_files/candidate_tracker/55242945328_KOTHAPALLY MANOJ.docx', NULL, '2', '2021-05-12', 0, '', '3', '72', '2021-05-24', 288000.00, '', '6', '2022-04-04', '1', 'Selected for Veben,CTC - 288000 includes PF/PT', '5', '1', '1', '3', '4', '2', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 05:20:50', 72, '2021-05-22 01:49:43', 0, NULL, 1),
(4815, 'KORRA KISHAN', '5', '9666192940', '7951111407', 'korrakishann@gmail.com', '1995-07-01', 25, '2', '2', 'rakhyadaru', 'farmer', 20000.00, 1, 18000.00, 21000.00, 'lb nagar', 'lb nagar', '2105110011', '1', '2', 'upload_files/candidate_tracker/38255346017_resume (8).doc', NULL, '2', '2021-05-12', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-11 05:43:36', 1, '2021-05-11 05:47:18', 0, NULL, 1),
(4816, 'Anush Narayanen Rs', '13', '8667669341', '8807095644', 'anushnarayanen@gmail.com', '1995-12-02', 25, '2', '2', 'N. Ravi chandran', 'Teacher', 30.00, 1, 0.00, 1.50, 'No. 6/2, karavai strt, mayiladuthurai', 'Plot, 54, urapakkam', '2105110012', '1', '1', 'upload_files/candidate_tracker/14739670914_RESUME-ANUSH.pdf', NULL, '3', '2021-05-12', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'task not completed. no response', '2', '1', '0', '1', '1', '0', '2', '2021-05-14', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-11 07:04:38', 1, '2021-05-11 07:14:55', 0, NULL, 1),
(4817, 'priyanka', '23', '9841454709', '8667029772', 'priyankaarulraj001@gmail.com', '1995-10-10', 25, '2', '2', 'arulraj parasuraman', 'ex-servicemen', 15000.00, 1, 16000.00, 20000.00, 'chennai', 'chennai', '2105120001', '1', '2', 'upload_files/candidate_tracker/72596744633_Resume.pdf', NULL, '3', '2021-05-12', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given. Task Completed. Not up to the level', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-12 09:36:30', 7, '2021-06-01 12:00:58', 0, NULL, 1),
(4818, 'indumathy', '23', '7402690264', '', 'indu0312b@gmail.com', '1994-12-03', 26, '2', '1', 'ganesh', 'team lead', 30000.00, 1, 300000.00, 400000.00, 'chennai', 'chennai', '2105120002', '1', '2', 'upload_files/candidate_tracker/70458161285_resume-indu.doc', NULL, '3', '2021-05-13', 0, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task Incomplete', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-12 11:43:32', 7, '2021-05-21 01:15:23', 0, NULL, 1),
(4819, 'muthukumaran arunagiri', '23', '9840477042', '9025060935', 'muthukumaran24@gmail.com', '1989-10-24', 31, '2', '1', 'arunagiri', 'retired', 13000.00, 1, 0.00, 15000.00, 'guduvancheri', 'guduvancheri', '2105120003', '1', '1', 'upload_files/candidate_tracker/40173994732_Muthukumaran_CV.pdf', NULL, '3', '2021-05-12', 0, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task given', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-12 12:27:56', 7, '2021-05-12 02:42:36', 0, NULL, 1),
(4820, '', '0', '9025060935', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105120004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-12 12:39:27', 0, NULL, 0, NULL, 1),
(4821, 'Dinesh Babu T N', '23', '9994798913', '', 'tndbmca@gmail.com', '1991-06-30', 29, '2', '1', 'Yasodha', 'House wife', 1.20, 1, 2.16, 3.60, 'Paramakudi', 'Paramakudi', '2105120005', '1', '2', 'upload_files/candidate_tracker/71334025568_DineshUIDeveloper.pdf', NULL, '3', '2021-05-13', 0, '', '5', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task not completed', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-05-12 01:16:32', 7, '2021-05-19 11:23:52', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4822, 'Dilli babu K', '16', '9080888977', '8438393783', 'dillibabu110794@gmail.com', '1994-07-11', 26, '2', '2', 'Krishnamoorthy P', 'Self employed', 10000.00, 1, 16400.00, 21000.00, 'Chennai', 'Chennai', '2105120006', '1', '2', 'upload_files/candidate_tracker/85050062356_Dilli Updated Resume New.pdf', NULL, '3', '2021-05-13', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, Pressure Handling Doubt, Need To Check With Family On SA ,but didnt turn', '3', '2', '', '1', '1', '', '2', '2021-05-14', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 03:02:00', 50, '2021-05-13 09:40:33', 0, NULL, 1),
(4823, 'Chunduru.Venkata sai lokesh', '5', '7075687340', '9160834722', 'sai.lokesh786@gmail.com', '1994-01-18', 27, '2', '2', 'rama krishna', 'Business man', 30000.00, 1, 20000.00, 30000.00, 'hyderabad', 'hi tech city', '2105120007', '1', '2', 'upload_files/candidate_tracker/42039242161_CHUNDURU VENKATA SAI LOKESH.docx.pdf', NULL, '2', '2021-05-13', 0, '', '3', '72', '2021-05-24', 312000.00, '', '', '2022-11-26', '1', 'Selected for Veben, Hyderabad Location\nCTC - 312000 included PF/PT deductions. Post Lockdown Joining date will be confirmed', '5', '1', '1', '3', '4', '2', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 04:00:45', 72, '2021-05-22 05:46:56', 0, NULL, 1),
(4824, 'Parthiban Subramani', '16', '7200217187', '9566779634', 'parthi05safwan@gmail.com', '1991-02-05', 30, '2', '1', 'Mubina', 'BPO', 25000.00, 1, 270000.00, 351000.00, 'Thuraipakkam, Chennai', 'Thuraipakkam', '2105120008', '1', '2', 'upload_files/candidate_tracker/98641131474_Resume of Parthiban.docx', NULL, '2', '2021-05-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for this Role,Not much knowledge in Excel, will not sustain for a long. Max for a year only and the Expectation is High', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 04:31:08', 1, '2021-05-12 04:45:00', 0, NULL, 1),
(4825, 'SanthoshBalaji R', '16', '9940575695', '8778964519', 'santhoshragu3@gmail.com', '1995-06-19', 25, '2', '2', 'Raguraman', 'Auto driver', 50000.00, 1, 224000.00, 350000.00, 'Chennai', 'Chennai', '2105120009', '1', '2', 'upload_files/candidate_tracker/26459743024_SanthoshbalajiMsword.DOCX', NULL, '2', '2021-05-13', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, will not sustain for a long.Not much comfortable with the SA', '3', '1', '', '1', '1', '', '2', '2021-05-15', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 04:39:47', 50, '2021-05-13 09:40:49', 0, NULL, 1),
(4826, 'KIRUTHIKA S', '16', '9176310693', '', 'kiruthikaselvaraj93@gmail.com', '1993-06-10', 27, '2', '1', 'VIGNESH', 'PROJECT MANAGER', 40000.00, 0, 20000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2105120010', '1', '2', 'upload_files/candidate_tracker/30152720206_KIRUTHIKA S Resume.pdf', NULL, '2', '2021-05-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Career Gap Expecting 22K, She S Ok For SA, But Not Sure On Her Sustainability. \n', '3', '2', '', '1', '1', '', '2', '2021-05-14', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 05:08:51', 50, '2021-05-13 09:41:02', 0, NULL, 1),
(4827, 'meera', '16', '7604930367', '9962327960', 'meeraannamalai60@gmail.com', '1996-01-09', 25, '2', '2', 'annamalai', 'executive', 50000.00, 1, 13600.00, 20000.00, 'chennai', 'valasaravakkam', '2105120011', '1', '2', 'upload_files/candidate_tracker/6741906972_Meera Resume 2020 nk.pdf', NULL, '2', '2021-05-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Sustainability Doubt not open for SA, No Excel knowledge', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-12 05:31:23', 1, '2021-05-12 06:06:01', 0, NULL, 1),
(4828, '', '0', '9789830021', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105120012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-12 05:34:19', 0, NULL, 0, NULL, 1),
(4829, '', '0', '9894877891', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105120013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-12 05:34:23', 0, NULL, 0, NULL, 1),
(4830, 'Sudhakar', '23', '8903711274', '9095010407', 'sudhakarvettrivel1992@gmail.com', '1992-05-26', 28, '2', '2', 'Selva sundhari', 'Tenkasi', 6000.00, 1, 12000.00, 18000.00, 'SURANDAI', 'SURANDAI', '2105130001', '1', '2', 'upload_files/candidate_tracker/4349934862_sudhakar-r (1).pdf', NULL, '3', '2021-05-13', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given. Task Completed. Not up to the level', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 09:53:56', 7, '2021-06-01 12:00:21', 0, NULL, 1),
(4831, 'Malavika Ghanta', '28', '9677399499', '', 'ghantamalavika@gmail.com', '1995-08-26', 25, '2', '2', 'Ram Prasad Ghanta', 'Executive', 30000.00, 1, 15000.00, 25000.00, 'Chennai', 'Nelson Manickam Road', '2105130002', '1', '2', 'upload_files/candidate_tracker/68358954816_Malavika 2021 CV.pdf', NULL, '3', '2021-05-13', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Good ,Will not sustain more than a year,Much focus on pure Analyst role\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 09:55:53', 50, '2021-05-13 01:18:15', 0, NULL, 1),
(4832, 'Renuga Saravanan', '2', '7397787517', '6381770738', 'renugasaravana222@gmail.com', '2000-06-14', 20, '2', '2', 'Saravanan R', 'Textile supervisor', 25000.00, 1, 0.00, 8000.00, 'Coimbatore', 'Coimbatore', '2105130003', '1', '1', 'upload_files/candidate_tracker/6682402380_Renuga-Java CV2021.pdf', NULL, '2', '2021-05-13', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 10:35:44', 1, '2021-05-13 11:13:55', 0, NULL, 1),
(4833, '', '0', '6366786582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105130004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-13 10:53:31', 0, NULL, 0, NULL, 1),
(4834, 'sathish .p', '2', '9789368417', '', 'sathishpalanisk07@gmail.com', '1998-05-27', 22, '2', '2', 'parent', 'tile masion', 15000.00, 2, 12000.00, 15000.00, 'rajapalayam', 'rajapalayam', '2105130005', '1', '2', 'upload_files/candidate_tracker/4745055916_Sathish.pdf', NULL, '2', '2021-05-13', 3, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 11:14:05', 7, '2021-05-13 03:06:57', 0, NULL, 1),
(4835, 'MARIA NAVEEN KUMAR S', '28', '9578238715', '7904173793', 'smnaveen8897@gmail.com', '1997-08-08', 23, '2', '2', 'M Swaikeen', 'Private Sector ( Construction)', 15000.00, 0, 12000.00, 16000.00, '5/935, Chandru nagar, Masilamani puram, Dindigul', 'Rekha Garden, Visweshvaraiyer street, Guduvanchery', '2105130006', '1', '2', 'upload_files/candidate_tracker/81450809570_Resume1.pdf', NULL, '2', '2021-05-15', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not responding to the calls', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 11:49:52', 1, '2021-05-13 11:55:56', 0, NULL, 1),
(4836, 'shri varsha t', '28', '9003173935', '8056050811', 'varshashri3132@gmail.com', '2000-03-31', 21, '2', '2', 'tamilselvam s', 'no experience', 50000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2105130007', '1', '1', 'upload_files/candidate_tracker/59518632177_resume (1).docx', NULL, '3', '2021-05-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Focus much into IT Technical Skill, Sustainability Doubt', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 12:27:17', 1, '2021-05-13 12:34:25', 0, NULL, 1),
(4837, 'Shashi Preetham', '5', '9533553883', '8332881840', 'shashigoudmuddal@gmail.com', '1997-08-03', 23, '2', '2', 'surya prakash', 'trtc', 40000.00, 2, 0.00, 20000.00, 'hyderabad', 'karim nagar - telangana', '2105130008', '1', '1', 'upload_files/candidate_tracker/49421596632_Muddam Shashi Preetham - Resume(1).pdf', NULL, '2', '2021-05-14', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 03:08:00', 1, '2021-05-13 03:12:15', 0, NULL, 1),
(4838, '', '0', '9959972176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105130009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-13 03:14:34', 0, NULL, 0, NULL, 1),
(4839, 'MOHAMMED TALHA', '13', '8667851162', '9092513847', 'talha5189s@gmail.com', '1998-11-21', 22, '2', '2', 'FAIYAZ AHMED', 'ACCOUNTANT', 30000.00, 1, 15000.00, 25000.00, '29/18B AMEEN BA STREET , MELVISHARAM', '29/18B AMEEN BA STREET , MELVISHARAM', '2105130010', '1', '2', 'upload_files/candidate_tracker/43584920027_Mohammed', NULL, '3', '2021-05-15', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response. task not completed.', '2', '2', '', '1', '3', '', '2', '2021-05-17', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 03:17:09', 7, '2021-05-15 11:08:21', 0, NULL, 1),
(4840, 'Tattepally Mahesh', '5', '9705010863', '', 'mhshpandu90@gmail.com', '1993-05-06', 28, '2', '2', 'Sangaiah', 'farmer', 10000.00, 2, 0.00, 18000.00, 'hyderabad', 'shamshabad', '2105130011', '1', '1', 'upload_files/candidate_tracker/95266776097_Resume_Mahesh (1) (1).docx', NULL, '2', '2021-05-14', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 03:39:43', 50, '2021-05-15 12:17:58', 0, NULL, 1),
(4841, 'Ranjith M', '28', '9500731880', '', 'ranjithmoorthy1@gmail.com', '1997-08-09', 23, '2', '2', 'R moorthy', 'Bussiness', 15000.00, 1, 0.00, 15000.00, 'Arakkonam', 'Arakkonam', '2105130012', '1', '1', 'upload_files/candidate_tracker/37178721712_Ranjith Resume.docx', NULL, '2', '2021-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, Not open for Terms and Conditions will not sustain for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 03:44:22', 7, '2021-05-17 10:46:30', 0, NULL, 1),
(4842, 'Yogesh Jhanjhottad', '5', '6302709984', '', 'yogeshpintoo42@gmail.com', '1997-04-20', 24, '2', '2', 'suresh', 'pvt employee', 25000.00, 3, 18500.00, 21000.00, 'hyderabad', 'rajendra nagar', '2105130013', '1', '2', 'upload_files/candidate_tracker/65695809765_resume_1611896675588.pdf', NULL, '2', '2021-05-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 03:52:48', 1, '2021-05-13 03:55:42', 0, NULL, 1),
(4843, 'Mohanapriya', '13', '7639882451', '9843298026', 'Mohanapriyashanmugam1998@gmail.com', '1998-03-12', 23, '2', '2', 'Shanmugam', 'Farmer', 25000.00, 1, 0.00, 3.00, 'Kallakurichi', 'Kallakurichi', '2105130014', '1', '1', 'upload_files/candidate_tracker/87406482510_Mohana\'s Resume-1.pdf', NULL, '3', '2021-05-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 04:21:55', 1, '2021-05-13 04:30:13', 0, NULL, 1),
(4844, 'Ajay Singh', '5', '8374164083', '', 'ajaysingh83741@gmail.com', '1999-08-31', 21, '2', '2', 'Heera Singh', 'Farmer', 40000.00, 1, 0.00, 25000.00, 'hyderabad', 'narayanguda', '2105130015', '1', '1', 'upload_files/candidate_tracker/57899030126_Document-WPS Office ByjusAjay (1).pdf', NULL, '2', '2021-05-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 04:35:59', 1, '2021-05-13 04:47:44', 0, NULL, 1),
(4845, 'b r kishore kumar', '28', '8637677719', '8428833685', 'kishoreit1721@gmail.com', '2000-04-16', 21, '2', '2', 'b r ravichandran', 'business', 30000.00, 2, 0.00, 15000.00, 'madurai', 'madurai', '2105130016', '1', '1', 'upload_files/candidate_tracker/57813607087_Kishore Resume.pdf', NULL, '3', '2021-05-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Looks much for Android opening,will not fit for DA/MIS Role\n', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-13 04:39:34', 1, '2021-05-15 10:45:42', 0, NULL, 1),
(4846, 'sai surya', '5', '9700814848', '', 'saisuryaanish@gmail.com', '1998-01-21', 23, '2', '2', '.JAGANNADHAM', 'working', 30000.00, 0, 24700.00, 30000.00, 'hyderabad', 'lb nagar', '2105130017', '1', '2', 'upload_files/candidate_tracker/99180016703_anish.pdf', NULL, '2', '2021-05-14', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Candidate not interested in insurance field\n', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-13 05:38:05', 1, '2021-05-13 05:48:51', 0, NULL, 1),
(4847, 'jerrymon', '13', '8015907505', '8870498145', 'jerrymon591@gmail.com', '1991-05-26', 29, '2', '1', 'ancilin margret', 'housewife', 25000.00, 0, 25000.00, 35000.00, 'marthandam', 'marthandam', '2105140001', '1', '2', 'upload_files/candidate_tracker/80188546782_jerrymon_WebDeveloper.docx', NULL, '3', '2021-05-15', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He Already Got Job.', '2', '2', '', '1', '1', '', '2', '2021-05-20', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-14 11:14:06', 7, '2021-05-15 11:09:08', 0, NULL, 1),
(4848, '', '0', '9789931352', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105140002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-14 03:21:00', 0, NULL, 0, NULL, 1),
(4849, 'Vignesh. V', '16', '7010928121', '9962135417', 'vkeyvenkatesan@gmail.com', '1996-05-19', 24, '2', '2', 'Venkatesan.E', 'Technician', 16000.00, 1, 18000.00, 23000.00, 'Chennai', 'Chennai', '2105140003', '1', '2', 'upload_files/candidate_tracker/6010112107_Vignesh Resume.pdf', NULL, '2', '2021-05-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '2', '', '1', '3', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 03:22:04', 50, '2021-05-15 11:38:09', 0, NULL, 1),
(4850, 'Vanaraja', '16', '6383019288', '8680891839', 'vanaraja677@gmail.com', '1996-06-22', 24, '2', '2', 'Sekar c', 'Tea stall', 12.00, 2, 17500.00, 20.00, 'Thirumullaivayol, chennai', 'Thirumullaivayol, Chennai', '2105140004', '1', '2', 'upload_files/candidate_tracker/28731393460_2020-converted (2)-converted.pdf', NULL, '2', '2021-05-15', 4, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No, Looking only for WFH and to not open for the location up and down 40 kms', '3', '1', '', '1', '3', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 03:25:45', 50, '2021-05-15 11:37:57', 0, NULL, 1),
(4851, 'Prabhu', '16', '9600345862', '7397298882', 'prabhu.thecitizen@gmail.com', '1991-07-22', 29, '2', '1', 'Hemalatha', 'House wife', 20000.00, 1, 24000.00, 25000.00, 'Chennai', 'Chennai', '2105140005', '1', '2', 'upload_files/candidate_tracker/35162989276_Prabhu Resume-Apr 2021-Updated.pdf', NULL, '2', '2021-05-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 03:59:12', 50, '2021-05-15 11:38:22', 0, NULL, 1),
(4852, 'Rajuriaz R.', '16', '8056104893', '', 'rajuriaz008@gmail.com', '1993-10-02', 27, '2', '2', 'T Ramachandran', 'Assistant At Oriental Insurance', 37000.00, 1, 300000.00, 500000.00, 'Chennai', 'Chennai', '2105140006', '1', '2', 'upload_files/candidate_tracker/10677310366_CV_2021-04-20-122706.pdf', NULL, '2', '2021-05-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, Will not sustain for a long, TCS Offered 4.5 LPA and looking only for Week off Job', '3', '2', '', '1', '3', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 04:05:33', 50, '2021-05-15 11:38:38', 0, NULL, 1),
(4853, 'bhagyaraj jakkamsetty', '5', '9000001332', '', 'bhagyaraj.jy@gmail.com', '1992-07-05', 28, '2', '2', 'venugopal rao', 'farmer', 50000.00, 1, 28000.00, 35000.00, 'hyderabad', 'begumpet', '2105140007', '1', '2', 'upload_files/candidate_tracker/38125856925_BhagyaRaj_Resume (1).pdf', NULL, '2', '2021-05-15', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 04:25:27', 1, '2021-05-14 04:28:39', 0, NULL, 1),
(4854, 'Kurmala charan teja sairam', '5', '9440217763', '', 'charanteja7763@gmail.com', '1994-08-09', 26, '2', '2', 'mohan rao', 'not working', 25000.00, 1, 25000.00, 25000.00, 'tenali', 'amirpet', '2105140008', '1', '2', 'upload_files/candidate_tracker/13585243171_Sai Resume.pdf', NULL, '2', '2021-05-15', 0, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'Not 100% convinced so asked gaurav to take another round', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 04:42:55', 1, '2021-05-14 04:46:22', 0, NULL, 1),
(4855, 'Ilhan Ullah Khan', '5', '8801222960', '', 'ilhankhan7785@gmail.com', '1995-03-10', 26, '2', '2', 'sadatullahkhan', 'wager', 30000.00, 3, 15500.00, 16000.00, 'hyderabad', 'mehandhipatnam', '2105140009', '1', '2', 'upload_files/candidate_tracker/93091048824_ILHAN LATEST RESUME.pdf', NULL, '2', '2021-05-15', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 04:49:32', 1, '2021-05-14 04:52:30', 0, NULL, 1),
(4856, 'a amirta varsini', '28', '9842469619', '', 'amirtavarsini@gmail.com', '1999-06-23', 21, '2', '2', 's m. arunagiri', 'business', 200000.00, 1, 0.00, 20000.00, 'trichy', 'trichy', '2105140010', '1', '1', 'upload_files/candidate_tracker/73730809370_CV.docx', NULL, '3', '2021-05-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication OK Fresher With M.Sc Statistics, Need To Check Her Written Communication,but sustainability doubts on this profile\n', '3', '1', '0', '1', '1', '0', '2', '2021-05-24', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-14 04:53:27', 1, '2021-05-15 10:51:29', 0, NULL, 1),
(4857, 'prashanth', '28', '9940575783', '', 'prashanth7818@gmail.com', '1997-02-14', 24, '2', '2', 'gopal', 'cheif cashier', 80000.00, 1, 2.75, 3.20, 'Chennai', 'chennai', '2105140011', '1', '2', 'upload_files/candidate_tracker/42644410370_Prashnath Resume.pdf', NULL, '2', '2021-05-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Focused much into Data Science, and The Expected Salary is 3.2-3.5 LPA for 1+ yrs Exp', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 05:10:05', 50, '2021-05-15 11:38:54', 0, NULL, 1),
(4858, 'Mahesh P', '5', '7013969758', '9490579753', 'maheshpuli03@gmail.com', '1994-05-24', 26, '2', '2', 'narsaiah', 'farmer', 20000.00, 2, 0.00, 20000.00, 'hyderabad', 'secundarabad', '2105140012', '1', '1', 'upload_files/candidate_tracker/63027534838_Copy of MY RESUME.docx.pdf', NULL, '2', '2021-05-15', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile and he was waiting for govt Job for the last 4 years.', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-14 05:23:07', 50, '2021-05-15 11:39:10', 0, NULL, 1),
(4859, '', '0', '8825689591', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-15 03:19:22', 0, NULL, 0, NULL, 1),
(4860, 'ayesha shameem', '4', '6379997290', '9597283759', 'fabbyheidy@gmail.com', '2000-11-12', 20, '2', '2', 'jaeer hussain', 'driver', 35000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2105150002', '1', '1', 'upload_files/candidate_tracker/6717191363_Aisha New CV (5).docx', NULL, '2', '2021-05-12', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lockdown Period Hold Long Pending ', '1', '1', '', '1', '1', '', '2', '2021-06-08', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 09:55:22', 7, '2021-05-15 10:13:32', 0, NULL, 1),
(4861, 'niraimadhi', '4', '6383351757', '9944481163', 'niraimech3322@gmail.com', '1995-12-20', 25, '2', '2', 'AROKIYASAMY', 'conductor', 15000.00, 3, 0.00, 9000.00, 'tanjavur', 'Tanjavur', '2105150003', '1', '1', 'upload_files/candidate_tracker/15577690687_Niraimadhi.pdf', NULL, '2', '2021-05-05', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already joined Thanjavur Team', '1', '1', '', '1', '1', '', '2', '2021-06-08', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 10:20:42', 7, '2021-05-15 11:45:49', 0, NULL, 1),
(4862, 'gulshana reshma', '4', '9500563960', '9943895893', 'shanareshma0425@gmail.com', '2000-05-04', 21, '2', '2', 'Abdul Kuthoos R', 'driver', 30000.00, 1, 0.00, 10000.00, 'tanjavur', 'Gandhrava Kottai', '2105150004', '1', '1', 'upload_files/candidate_tracker/82094404866_Reshma.docx', NULL, '2', '2021-05-13', 0, '', '3', '8', '2021-06-02', 120000.00, '', '3', '2022-01-19', '2', 'For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-05-15 10:31:53', 60, '2022-12-17 04:39:22', 0, NULL, 1),
(4863, 'MOHAMED KHALITH P S', '2', '7395833148', '', 'halithmohamed91@gmail.com', '2000-02-13', 21, '2', '2', 'SHAHUL HAMEED', 'Bussiness', 15000.00, 2, 0.00, 25000.00, 'Kadayanallur', 'Kadayanallur', '2105150005', '1', '1', 'upload_files/candidate_tracker/17589243172_Mohamed', NULL, '3', '2021-05-15', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 10:42:24', 7, '2021-05-15 02:57:54', 0, NULL, 1),
(4864, 'keerthana', '4', '8825911707', '', 'keerthana3111999@gmail.com', '1999-01-31', 22, '2', '2', 'chanra sekaran', 'farmer', 15000.00, 2, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105150006', '1', '1', 'upload_files/candidate_tracker/16479156342_keerthi resume 123.pdf', NULL, '2', '2021-05-12', 0, '', '3', '8', '2021-06-02', 120000.00, '', '', '1970-01-01', '1', ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 10:50:55', 7, '2021-05-15 11:12:34', 0, NULL, 1),
(4865, 'Lakshmi Prasanna Uppalapati', '28', '8668081079', '9361549628', 'lakshmiuppapalati10@gmail.com', '1998-05-23', 22, '2', '2', 'Srinuvasulu Uppalapati', 'Milk Business', 30000.00, 1, 0.00, 20000.00, '8/91, Gomatha nagar 1st street,thiruvottiyur.', '8/91, Gomatha Nagar 1st Street,Thiruvottiyur', '2105150007', '1', '1', 'upload_files/candidate_tracker/50375886865_Lakshmi Prasanna Uppalapati.pdf', NULL, '3', '2021-05-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Lcoation too Long,No clear focus on the career.Will not sustain for a long', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 11:48:26', 1, '2021-05-15 12:00:07', 0, NULL, 1),
(4866, 'Yasmin Nisha', '16', '9791015712', '9941271902', 'yasafzal@gmail.com', '1989-12-29', 31, '2', '1', 'Zaheeruddin', 'Data and reporting analyst', 80000.00, 1, 16000.00, 20000.00, 'Chennai', 'Chennai', '2105150008', '1', '2', 'upload_files/candidate_tracker/26093987797_Yasmin Resume.docx', NULL, '2', '2021-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok ,SA need to check with Husband not sure about her sustainability', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 12:09:04', 50, '2021-05-17 10:46:33', 0, NULL, 1),
(4867, 'Srikanth', '5', '7386526814', '9704641997', 'bodapatlasrikanth6@gmail.com', '1997-08-27', 23, '2', '2', 'srinivasan', 'passed away', 30000.00, 1, 23000.00, 25000.00, 'hyderabad', 'kukukatapalli', '2105150009', '1', '2', 'upload_files/candidate_tracker/66601744770_srikanth Resume.pdf', NULL, '2', '2021-05-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Selected for VEben, Discussed on the Salary and shared the breakup for the confirmation from the candidate,But he didnt turn and RNR', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 12:55:46', 1, '2021-05-15 01:01:03', 0, NULL, 1),
(4868, 'Rushikesh Thanduri', '5', '7997104145', '9347743571', 'rushikesh.thanduri28@gmail.com', '1999-08-28', 21, '2', '2', 'srinivas', 'farmer', 12000.00, 1, 10000.00, 20000.00, 'hyderabad', 'sanath nagar', '2105150010', '1', '2', 'upload_files/candidate_tracker/20721128012_Chinnu@resume.docx', NULL, '2', '2021-05-17', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '2', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 01:05:16', 1, '2021-05-15 01:08:00', 0, NULL, 1),
(4869, 'MUKESH J', '16', '9884944413', '', 'mukesh_j91@yahoo.in', '1991-01-01', 30, '2', '2', 'JAYAPAL', 'NIL', 10000.00, 1, 15000.00, 20000.00, 'Perambur', 'Perambur', '2105150011', '1', '2', 'upload_files/candidate_tracker/66911296003_Mukesh Resume V1.docx', NULL, '3', '2021-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Got another offer and not open for F2F', '3', '1', '', '1', '1', '', '2', '2021-05-18', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 01:38:54', 50, '2021-05-17 10:46:50', 0, NULL, 1),
(4870, 'rajesh vishwanadh', '5', '7842142588', '', 'rajeshvishwanadh176@gmail.com', '1996-01-01', 25, '2', '1', 'saritha', 'icici bank asst manager', 40000.00, 2, 16000.00, 18000.00, 'hyderabad', 'gachobowli', '2105150012', '1', '2', 'upload_files/candidate_tracker/59668315896_1619891716960_1619622770453_1615963237461_1615005634919_1614781993915_pavani a2.pdf', NULL, '2', '2021-05-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 01:52:10', 1, '2021-05-15 01:56:21', 0, NULL, 1),
(4871, 'Sairam Vinjamuri', '5', '9182824491', '', 'ramvinjamuri22@gmail.com', '1996-07-08', 24, '2', '2', 'paramesh', 'optical shop', 20000.00, 1, 25000.00, 30000.00, 'hyderabad', 'sr nagar', '2105150013', '1', '2', 'upload_files/candidate_tracker/3003465535_Resume old format.docx', NULL, '2', '2021-05-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 02:58:38', 1, '2021-05-15 03:01:20', 0, NULL, 1),
(4872, 'Chinnu Kranthi', '5', '8801213492', '', 'chinnu.kranthi007@gmail.com', '1995-06-28', 25, '2', '2', 'k.thimothy', 'govt employee', 80000.00, 1, 22000.00, 25000.00, 'hyderabad', 'beeramguda', '2105150014', '1', '2', 'upload_files/candidate_tracker/63691302921_Chinnu@resume.docx', NULL, '2', '2021-05-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-15 03:27:07', 1, '2021-05-15 03:30:10', 0, NULL, 1),
(4873, 'prabu', '4', '8838530755', '9003704594', 'samprabhumathias222@gmail.com', '1997-11-29', 23, '2', '2', 'mathias', 'security', 15000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105150015', '1', '1', 'upload_files/candidate_tracker/91826490739_prabu.pdf', NULL, '2', '2021-05-14', 0, '', '3', '8', '2021-06-02', 120000.00, '', '', '1970-01-01', '1', ' For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 04:08:18', 7, '2021-05-15 05:56:57', 0, NULL, 1),
(4874, 'sachin c', '2', '6385124808', '', 'sachinkuravan1996@gmail.com', '1996-10-12', 24, '2', '2', 'chakarapani', 'bussiness', 40000.00, 0, 0.00, 25000.00, 'cheennai', 'chennai', '2105150016', '1', '1', 'upload_files/candidate_tracker/9386642743_Sachin resume-doc.docx', NULL, '3', '2021-05-17', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 04:16:41', 60, '2021-05-17 01:43:26', 0, NULL, 1),
(4875, 'Ramya', '4', '9840538664', '9566134531', 'ramyaravi05072001@gmail.com', '2001-05-07', 20, '2', '2', 'ravi chandran', 'attender', 8000.00, 1, 0.00, 10000.00, 'redhills', 'redhills', '2105150017', '1', '1', 'upload_files/candidate_tracker/7868033459_NANDHINI 29-03-2021.pdf', NULL, '2', '2021-05-11', 0, '', '3', '59', '2021-06-10', 120000.00, '', '', '1970-01-01', '2', 'Selected for Tiruvallur Location in Cash mode with CTC 120000', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-15 04:25:36', 7, '2021-05-15 05:57:11', 0, NULL, 1),
(4876, '', '0', '9655043808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105150018', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-15 06:11:52', 0, NULL, 0, NULL, 1),
(4877, 'Shivani', '13', '9655403808', '6381871687', 'rameshshivani165@gamil.com', '1997-04-14', 24, '2', '2', 'Ramesh', 'Beedu', 5000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2105150019', '1', '1', 'upload_files/candidate_tracker/32098574054_Srivani.pdf', NULL, '3', '2021-05-17', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude is not good. she doesxquott know basics.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 06:47:34', 1, '2021-05-17 05:43:40', 0, NULL, 1),
(4878, 'Soniya G', '13', '7708834862', '9843535147', 'Soniyagovindan731@gmail.com', '2000-01-04', 21, '2', '2', 'Govindan R', 'Weaver', 20000.00, 4, 0.00, 300000.00, 'Vellore', 'Vellore', '2105150020', '1', '1', 'upload_files/candidate_tracker/38618655861_Soniya G Resume.pdf', NULL, '2', '2021-05-17', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'could not complete the task.', '2', '1', '', '1', '1', '', '2', '2021-05-24', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-15 08:03:19', 1, '2021-05-17 05:47:00', 0, NULL, 1),
(4879, 'Ranjith M', '28', '8903497250', '', 'ranjithmoorthy1@gmail.com', '1997-08-09', 23, '2', '2', 'Moorthy', 'Bussiness', 15000.00, 1, 0.00, 18000.00, 'Arakkonam', 'Arakkonam', '2105160001', '1', '1', 'upload_files/candidate_tracker/42540478923_Ranjith Resume.docx', NULL, '3', '2021-05-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-16 02:46:47', 1, '2021-05-16 02:50:20', 0, NULL, 1),
(4880, 'Priyanka S', '28', '8248121180', '', '6th.priyasrinivasan4268@gmail.com', '1999-04-06', 22, '2', '2', 'Srinivasan A', 'Gunny business', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2105170001', '1', '1', 'upload_files/candidate_tracker/67796361594_Resume-cheeku.docx', NULL, '3', '2021-05-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our Role, Focus into IT Database Management,Withour clear info about the profile she applied for the opening', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 09:56:05', 1, '2021-05-17 10:10:00', 0, NULL, 1),
(4881, 'Jegan chandran', '13', '9965856060', '', 'jegancs12@gmail.com', '1997-04-12', 24, '2', '2', 'Chandran', 'Farmer', 15000.00, 3, 15000.00, 25000.00, 'Ramanathapuram', 'Ramanathapuram', '2105170002', '1', '2', 'upload_files/candidate_tracker/65877619711_jegan_resume__1_.docx.pdf', NULL, '3', '2021-05-18', 30, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'tried too many times. no response from him. ', '2', '1', '0', '1', '1', '0', '2', '2021-05-27', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 10:30:36', 1, '2021-05-17 10:51:38', 0, NULL, 1),
(4882, 'lathif s', '16', '8124053608', '9043452813', 'lathifslm@gmail.com', '2006-05-17', 0, '2', '2', 'm a salam', 'executive', 20000.00, 1, 280000.00, 340000.00, 'chennai', 'chennai', '2105170003', '1', '2', 'upload_files/candidate_tracker/38921668897_latest lath resume.docx', NULL, '2', '2021-05-18', 0, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'interviewed by Gokul \ncandidate not good in excel\nhaving 4 year exp and expected salary is a also high\ngood communication', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 11:09:51', 50, '2021-05-18 12:42:48', 0, NULL, 1),
(4883, 'Haritha S', '28', '7358007702', '', 'harithas735@gmail.com', '2000-01-20', 21, '2', '2', 'S.Suresh Babu', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Urappakkam', 'Urappakkam', '2105170004', '1', '1', 'upload_files/candidate_tracker/29169492353_Haritha resume.pdf', NULL, '3', '2021-05-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok,Sustainability Doubts and handling the pressure doubts on this profile,fresher profile', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 11:46:15', 1, '2021-05-17 11:55:26', 0, NULL, 1),
(4884, 'Senthilvel', '3', '9789509829', '9444729430', 'senthilve2@gmail.com', '1986-05-23', 34, '2', '1', 'Lavanya', 'IT', 240000.00, 1, 20000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2105170005', '1', '2', 'upload_files/candidate_tracker/26159567722_Resume Modified1 (11) (2) (1).docx', NULL, '3', '2021-05-18', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Profile will not suitable for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 12:17:47', 1, '2021-05-17 12:23:06', 0, NULL, 1),
(4885, 'dhivakar j', '13', '9943044155', '', 'dhiva1902@gmail.com', '1997-02-19', 24, '2', '2', 'jebakumar', 'business', 12000.00, 0, 0.00, 13000.00, 'vandalur', 'tuticorin', '2105170006', '1', '2', 'upload_files/candidate_tracker/47339902963_Php_resume_exp_dhiva_(1)4 (4).docx', NULL, '3', '2021-05-21', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Tried too many times. no response.', '2', '1', '', '1', '1', '', '2', '2021-05-27', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 12:51:11', 7, '2021-05-21 01:09:44', 0, NULL, 1),
(4886, 'MURUGAN L', '13', '9003984795', '', 'murugansj95@gmail.com', '1998-05-31', 22, '2', '1', 'PUNITHA', 'Not yet', 100.00, 0, 0.00, 15000.00, 'Kallakurichi', 'Channai duraipakkam', '2105170007', '1', '1', 'upload_files/candidate_tracker/74935927661_murug.pdf', NULL, '3', '2021-05-18', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 01:43:38', 1, '2021-05-17 01:48:51', 0, NULL, 1),
(4887, 'KATKOORI.SURESH', '5', '8978201028', '', 'katkoorisuresh8@gmail.com', '1997-08-14', 23, '2', '2', 'venkataswamy', 'daily wager', 25000.00, 2, 16000.00, 18000.00, 'hyderabad', 'uppal', '2105170008', '1', '2', 'upload_files/candidate_tracker/55949607515_KATKOORI SURESH (1).pdf', NULL, '2', '2021-05-18', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 02:43:24', 1, '2021-05-17 02:46:25', 0, NULL, 1),
(4888, 'Koppula Anudeep Reddy', '5', '9493400580', '', 'deepukoppula92@gmail.com', '1992-06-02', 28, '2', '1', 'ravinder', 'farmer', 30000.00, 1, 22000.00, 30000.00, 'hyderabad', 'uppal', '2105170009', '1', '2', 'upload_files/candidate_tracker/74632763310_Anudeep Resume (1).docx', NULL, '2', '2021-05-18', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Old lead need to verfiy', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 02:51:46', 1, '2021-05-17 02:54:42', 0, NULL, 1),
(4889, 'Shashank Reddy Nyalakonda', '5', '9182792925', '', 'nshashankreddy7@gmail.com', '1995-05-25', 25, '2', '2', 'srinivas reddy', 'farmer', 45000.00, 0, 13000.00, 20000.00, 'hyderabad', 'kuketpally', '2105170010', '1', '2', 'upload_files/candidate_tracker/46058112054_1617302226227Resume_Shashank.pdf', NULL, '2', '2021-05-18', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 03:05:51', 1, '2021-05-17 03:08:20', 0, NULL, 1),
(4890, 'G VEERENDAR REDDY', '5', '8523085856', '', 'veerendarreddy1196@gmail.com', '1996-01-16', 25, '2', '2', 'ravinderreddy', 'driver', 40000.00, 1, 13500.00, 15000.00, 'hyfderabad', 'uppal', '2105170011', '1', '2', 'upload_files/candidate_tracker/23380303244_G VEERENDAR REDDY-resume.pdf', NULL, '2', '2021-05-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Insurance Sales', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 03:23:01', 1, '2021-05-17 03:25:07', 0, NULL, 1),
(4891, 'BABU CHIRANJEEVI JAGARLA', '5', '9885715727', '9440020247', 'chiranjeevijagarla111@gmail.com', '1997-02-24', 24, '2', '2', 'hanumaiah', 'passed away', 30000.00, 2, 15000.00, 20000.00, 'hyderabad', 'madhapur', '2105170012', '1', '2', 'upload_files/candidate_tracker/48783429922_CV_2021-05-17-033726.pdf', NULL, '2', '2021-05-18', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 03:39:29', 1, '2021-05-17 03:42:32', 0, NULL, 1),
(4892, 'saikumar parikipandla', '5', '9003049894', '', 'saikumarkkrprojects@gmail.com', '1994-01-01', 27, '2', '2', 'ramu', 'pvt employee', 60000.00, 1, 30000.00, 25000.00, 'hyderabad', 'malkajgiri', '2105170013', '1', '2', 'upload_files/candidate_tracker/43675433272_CCRMRESUME OF P SAIKUMAR (1).pdf', NULL, '2', '2021-05-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'His overall 5+ Experience in the Construction domain and attended few interviews in the same construction domain, for time being he looks for other domains. His last drawn package was 33K gross. Sustainability doubt on this profile. No Laptop Bike is there almost 17 kms from his location', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 03:49:14', 1, '2021-05-17 03:52:36', 0, NULL, 1),
(4893, 'Nemalipuri jagadeesh Chandra', '13', '9398290227', '8886086879', 'jagadeeshchandra1794@gmail.com', '1999-06-04', 21, '2', '2', 'Lakshmi', 'Farmer', 7000.00, 2, 0.00, 20000.00, 'Ongole', 'Ongole', '2105170014', '1', '1', 'upload_files/candidate_tracker/64689665626_resume 2.pdf', NULL, '3', '2021-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 03:58:03', 1, '2021-05-17 04:09:31', 0, NULL, 1),
(4894, 'aarthi rajendran', '16', '8870775270', '', 'aarthi2696@gmail.com', '1996-05-26', 24, '4', '2', 'rajendran', 'business', 85000.00, 1, 200000.00, 280000.00, 'Chennai', 'Chennai', '2105170015', '', '2', 'upload_files/candidate_tracker/32585836841_Aarthi Rajendran--.pdf', NULL, '2', '2021-05-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok ,from mogappair but not sure on her sustainability', '3', '1', '0', '1', '1', '0', '2', '2021-05-19', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-17 04:12:28', 1, '2021-05-17 04:16:34', 0, NULL, 1),
(4895, 'sriram s', '13', '9342119493', '7540035163', 'sriramsure25@gmail.com', '1997-01-25', 24, '2', '2', 'suresh kumar', 'driver', 30000.00, 1, 15000.00, 25000.00, 'madurai', 'chennai', '2105170016', '1', '2', 'upload_files/candidate_tracker/86888405924_Sriram S.docx', NULL, '3', '2021-05-21', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not completed. His task look like fresher task. we can consider this candidate as a fresher only..', '2', '2', '', '1', '1', '', '2', '2021-05-27', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 04:19:30', 7, '2021-05-21 01:10:34', 0, NULL, 1),
(4896, 'venkatesan p', '13', '9087718477', '', 'venkateshthiru94@gmail.com', '1994-05-04', 27, '2', '2', 'palani', 'farmer', 25000.00, 3, 15000.00, 25000.00, 'krishnagiri', 'chennai', '2105170017', '1', '2', 'upload_files/candidate_tracker/5366306482_Venkatesan.P.pdf', NULL, '3', '2021-05-21', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task not completed.', '2', '1', '', '1', '1', '', '2', '2021-05-31', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 04:31:19', 7, '2021-05-21 01:11:11', 0, NULL, 1),
(4897, 'manimaran s', '16', '7010786071', '', 'syedmaran1425@yahoo.com', '1993-08-01', 27, '2', '2', 'selvam', 'daily worker', 20000.00, 2, 275000.00, 375000.00, 'Srivilliputtur', 'chennai', '2105170018', '1', '2', 'upload_files/candidate_tracker/73058556210_mani.pdf', NULL, '2', '2021-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-17 04:37:46', 1, '2021-05-17 04:44:44', 0, NULL, 1),
(4898, 'R.G.PRIYADHARSHINI', '16', '9384659720', '', 'ppriyadharshini1295@gmail.com', '1995-09-12', 25, '3', '1', 'R.RAMACHANDIRARAJA', 'RETAIL SUPPORTER', 20000.00, 1, 10000.00, 20000.00, '4B,Naramada street,Nemilicherry,Chrompet-44', '4B,Narmada street,Nemilicherry,Chrompet-44', '2105170019', '', '2', 'upload_files/candidate_tracker/38691811346_Updated Resume 16.04.2021.docx', NULL, '3', '2021-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-05-17 04:47:37', 1, '2021-05-17 04:59:43', 0, NULL, 1),
(4899, 'Mathisuthanan', '13', '9786009750', '', 'suthanravi435@gmail.com', '1995-02-19', 26, '2', '2', 'Shanthi', 'Police', 50000.00, 1, 0.00, 20000.00, 'Orathanadu', 'Orathanadu', '2105170020', '1', '1', 'upload_files/candidate_tracker/59617263549_MATHISUTHANAN-resume (2).pdf', NULL, '3', '2021-05-18', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-19', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 06:41:26', 1, '2021-05-18 10:13:34', 0, NULL, 1),
(4900, 'balamurugan', '13', '8300660043', '', 'balamuruganmca96@gmail.com', '1996-06-07', 24, '2', '2', 'nill', 'laravel full stack developer', 30000.00, 0, 18900.00, 35000.00, 'dharmapuri dt', 'dharmapuri dt', '2105170021', '1', '2', 'upload_files/candidate_tracker/92309040478_Balamurugan Resume.pdf', NULL, '3', '2021-05-18', 2, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'no response past 1 week.', '2', '1', '0', '1', '1', '0', '2', '2021-05-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 07:01:35', 1, '2021-05-17 07:07:16', 0, NULL, 1),
(4901, 'Rathinavel', '13', '9095334372', '6374466033', 'Rathinavel.r22@gmail.com', '1993-08-22', 27, '2', '2', 'Rathinasabapathy', 'Security', 23000.00, 0, 18000.00, 28000.00, 'Pondicherry', 'Pondicherry', '2105170022', '1', '2', 'upload_files/candidate_tracker/65176416957_Rathinavel php 2020.pdf', NULL, '3', '2021-05-26', 20, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not good in basics.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 07:02:22', 7, '2021-05-26 03:52:29', 0, NULL, 1),
(4902, 'suganthi', '13', '9003970098', '', 'suganthi9608@gmail.com', '1996-08-29', 24, '2', '2', 'ramu', 'farmer', 20000.00, 1, 20000.00, 30000.00, 'bajanai koil street', 'melmaruvathur', '2105170023', '1', '2', 'upload_files/candidate_tracker/2416133478_Resume_suganthi.pdf', NULL, '3', '2021-05-18', 3, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'She is looking for work from home only.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-17 08:30:49', 1, '2021-05-17 08:41:04', 0, NULL, 1),
(4903, 'jerome raja', '13', '8072239661', '', 'c.r.jerome4995@gmail.com', '1995-07-04', 25, '2', '2', 'ravi', 'business', 20000.00, 1, 25000.00, 35000.00, 'PARAMAKUDI', 'PARAMAKUDI', '2105180001', '1', '2', 'upload_files/candidate_tracker/23014205958_jerome--Resume.pdf', NULL, '3', '2021-05-21', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected by sabeha.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 09:50:41', 7, '2021-05-21 01:11:49', 0, NULL, 1),
(4904, 'Anurag Kumar', '2', '8939911648', '8939911652', 'anuragkrs126@gmail.com', '1999-06-12', 21, '2', '2', 'Shishu devi', 'Home maker', 150000.00, 4, 0.00, 25000.00, 'Chennai', 'Chennai', '2105180002', '1', '1', 'upload_files/candidate_tracker/31843676885_Resume-1.pdf', NULL, '2', '2021-05-20', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 12:45:45', 60, '2021-05-20 12:28:21', 0, NULL, 1),
(4905, '', '0', '7358747522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105180003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-18 01:58:42', 0, NULL, 0, NULL, 1),
(4906, 'AlHamid Sultan', '23', '9176370789', '', 'alhameed66@hotmail.com', '1993-12-10', 27, '2', '2', 'fazal ahamed', 'nil', 20000.00, 1, 0.00, 180000.00, 'Chennai', 'Chennai', '2105180004', '1', '1', 'upload_files/candidate_tracker/31356846297_Al Hamid_Resume.pdf', NULL, '3', '2021-05-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given. Task Completed. Not up to the level', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 02:16:51', 7, '2021-06-01 11:59:45', 0, NULL, 1),
(4907, 'Mary Nisha P', '13', '9884032603', '', 'Nishanathan2305@gmail.com', '1999-06-05', 21, '2', '2', 'Parthi Nathan A', 'Building contractor', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2105180005', '1', '1', 'upload_files/candidate_tracker/53307808641_Resume.pdf', NULL, '3', '2021-05-21', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not interested.', '2', '1', '', '1', '1', '', '2', '2021-05-22', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 03:36:07', 7, '2021-05-21 01:12:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4908, 'Vijay Kumar Jampala', '5', '8897409740', '9703144166', 'jampalavijay2244@gmail.com', '1999-08-07', 21, '2', '2', 'srinivas', 'late', 50000.00, 2, 28000.00, 30000.00, 'hyderabad', 'mallapur', '2105180006', '1', '2', 'upload_files/candidate_tracker/51456578485_Vijay new resume_Entry Level Resume – 01 (1).pdf', NULL, '2', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 03:37:41', 1, '2021-05-18 03:40:51', 0, NULL, 1),
(4909, 'GADDAM KRANTHI KUMAR', '5', '9014272213', '9493885813', 'Gaddamkranthikumar836@gmail.com', '1994-03-15', 27, '2', '2', 'narsimha', 'labour', 25000.00, 1, 22000.00, 25000.00, 'hyderabad', 'hyath nagar', '2105180007', '1', '2', 'upload_files/candidate_tracker/2267001364_document_cv_6848 (1).pdf', NULL, '2', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 03:44:44', 1, '2021-05-18 03:47:50', 0, NULL, 1),
(4910, 'P. Koushika', '28', '9840641216', '', 'Koushi1604@gmail.com', '2001-04-16', 20, '2', '2', 'Prasanna venkatesan', 'Business', 1500.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2105180008', '1', '1', 'upload_files/candidate_tracker/29903448073_Koushika_Resume (1).pdf', NULL, '3', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-18 04:33:27', 1, '2021-05-18 04:38:20', 0, NULL, 1),
(4911, 'Shaik Sandani', '5', '9985877637', '8143495979', 'shaiksandani333@gmail.com', '1997-08-15', 23, '2', '2', 'shairabbami', 'late', 30000.00, 2, 19000.00, 24000.00, 'hyderabad', 'medchand', '2105180009', '1', '2', 'upload_files/candidate_tracker/13481761721_SANDANI RESUME .pdf', NULL, '2', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 04:38:06', 1, '2021-05-18 04:41:25', 0, NULL, 1),
(4912, 'Vidhya Bharathi', '16', '8754356112', '9965678416', 'vidhyakarnan.k@gmail.com', '1996-06-26', 24, '2', '2', 'Karnan', 'Farmer', 10000.00, 1, 14000.00, 19000.00, 'Thanjavur', 'Chennai', '2105180010', '1', '2', 'upload_files/candidate_tracker/30488551448_vidhya@4477.docx', NULL, '2', '2021-05-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, Not open for the SA and she is very clear on the sustainability long stay', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 04:38:36', 50, '2021-05-19 10:35:53', 0, NULL, 1),
(4913, 'Raja. P', '16', '9789982355', '9566302577', 'rajap0789@gmail.com', '1989-05-07', 32, '2', '1', 'Shobana', 'House Wife', 26000.00, 3, 26000.00, 30000.00, 'Arasur Village, chengkalpattu district', 'No, 2,2nd Lane, sowcarpet, chennai _79', '2105180011', '1', '2', 'upload_files/candidate_tracker/60877790713_Raja_Resume_MIS Assistant.pdf', NULL, '2', '2021-05-19', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, Will not sustain in our domain and his focus into FMCG only', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 04:54:00', 50, '2021-05-19 10:36:03', 0, NULL, 1),
(4914, 'Revathi Ekambaram', '5', '6305472152', '', 'jammirevathirevs@gmail.com', '1998-02-13', 23, '2', '2', 'rangareddy', 'farmer', 15000.00, 2, 16000.00, 18000.00, 'hyderabad', 'jeedimetla', '2105180012', '1', '2', 'upload_files/candidate_tracker/36363800992_Revathi.pdf', NULL, '2', '2021-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-18 04:54:50', 1, '2021-05-18 04:57:20', 0, NULL, 1),
(4915, '', '0', '7923607053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105180013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-18 05:14:53', 0, NULL, 0, NULL, 1),
(4916, 'sheik abrar', '6', '7358930990', '9047171811', 'shaikhabrar16s@gmail.com', '1998-02-16', 23, '2', '2', 'shaik kasim', 'self employed', 30000.00, 3, 0.00, 15000.00, 'thiruvanamalai', 'guindy', '2105190001', '1', '1', 'upload_files/candidate_tracker/19257168062_ABRAR RESUME T1-converted (1).pdf', NULL, '3', '2021-05-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '6m in JD and now in native, expt is 14-15k. basically from mumbai settled in thiruvannamalai. father running a hotel, driver in Dubai. too much attitude.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 09:48:11', 1, '2021-05-19 10:05:25', 0, NULL, 1),
(4917, 'vinoth k', '4', '8754342430', '7418893871', 'Vinothmahi29@gmail.com', '1997-04-29', 24, '2', '2', 'kumar', 'construction', 20000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2105190002', '1', '1', 'upload_files/candidate_tracker/69195602474_1_CURRENT CV.docx', NULL, '2', '2021-05-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, very native lang. will not suite for sales profie.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 10:08:56', 1, '2021-05-19 10:17:05', 0, NULL, 1),
(4918, 'saranya s', '4', '6384728170', '', 'kannansaranya104@gmail.com', '2000-06-08', 20, '2', '2', 'selvakannan', 'photographer', 20000.00, 2, 0.00, 10000.00, 'madurai', 'palavaram', '2105190003', '1', '1', 'upload_files/candidate_tracker/23697114620_SARANYA.docx', NULL, '2', '2021-05-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'bba in airlines and 2yr training in chennai airport, not speaking up, from madurai sty in pallavaram.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 10:20:59', 1, '2021-05-19 10:24:45', 0, NULL, 1),
(4919, 'dharani dharan', '4', '8072101271', '', 'dharani8098@gmail.com', '1997-01-04', 24, '2', '2', 'chokalingam', 'business', 15000.00, 2, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105190004', '1', '1', 'upload_files/candidate_tracker/78812394315_Dharani Resume.pdf', NULL, '2', '2021-05-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1.5yr exp in qc, will not suite for sales, expt is 15k.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 10:26:23', 1, '2021-05-19 10:34:30', 0, NULL, 1),
(4920, 'Mani bharathi T', '23', '9884681179', '', 'manibharathi6509@gmail.com', '1993-08-19', 27, '2', '2', 'Thinakaran', 'Farmer', 35000.00, 2, 24000.00, 40000.00, 'Tenkasi', 'Tenkasi', '2105190005', '1', '2', 'upload_files/candidate_tracker/12814183608_Mani_Bharathi_T_UI_Developer_Resume.docx', NULL, '3', '2021-05-19', 15, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task In completed', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-19 10:33:08', 7, '2021-06-02 03:10:08', 0, NULL, 1),
(4921, 'rajeshwari', '4', '9629154966', '', 'rajeshwarisundaresan9923@gmail.com', '1999-06-23', 21, '2', '2', 'sunderasan', 'business', 15000.00, 1, 0.00, 12000.00, 'thiruvallu', 'thiruvallur', '2105190006', '1', '1', 'upload_files/candidate_tracker/55133283506_Resume - Rajeshwari - Copy.pdf', NULL, '2', '2021-05-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'done her bba ntr. worked in same fielf for past 1.5yr, planning to do her higher study and felt over pressure so reliver from the job 16k, will not sustain and expt is 15-17k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 10:41:15', 50, '2021-05-19 11:29:18', 0, NULL, 1),
(4922, 'mukesh', '4', '9944914865', '9944914866', 'mail2mukesh22@gmail.com', '1993-04-22', 28, '2', '2', 'Karunanithi', 'business', 15000.00, 1, 0.00, 10000.00, 'pondichery', 'chennai', '2105190007', '1', '1', 'upload_files/candidate_tracker/96558234029_Mukesh resume (2020).doc', NULL, '2', '2021-05-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-19 12:17:51', 1, '2021-05-19 12:26:01', 0, NULL, 1),
(4923, 'Divyadharshini', '13', '9940144077', '9840728107', 'divshadharshini@gmail.com', '1999-09-14', 21, '2', '2', 'Ethirajan', 'CNC machine operator', 50000.00, 1, 0.00, 18000.00, 'No 1/1,Jeer lane, saidapet,chennai 15', 'chennai', '2105190008', '1', '1', 'upload_files/candidate_tracker/21016749073_web 1_one ResuMEEE.pdf', NULL, '3', '2021-05-21', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected. we can take it as a fresher. same terms applicable.', '2', '1', '', '1', '1', '', '2', '2021-05-22', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-19 12:33:32', 7, '2021-05-21 01:13:00', 0, NULL, 1),
(4924, '', '0', '9176203740', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105190009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-19 01:23:46', 0, NULL, 0, NULL, 1),
(4925, 'Manda Chandrasekhar', '5', '9492229761', '6309276305', 'chandrasekhar96400@gmail.com', '1995-08-10', 25, '2', '2', 'pitchaiah', 'farmer', 15000.00, 1, 21000.00, 25000.00, 'hyderabad', 'amirpet', '2105190010', '1', '2', 'upload_files/candidate_tracker/60589579369_Resume (6).pdf', NULL, '2', '2021-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, not much suits for our position, already he got an offer and not interested being the same into sales', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 02:32:58', 1, '2021-05-19 02:36:29', 0, NULL, 1),
(4926, 'Jaya Krishna Kumar S', '28', '8189818239', '', 'sjayakrishnakumars@gmail.com', '1995-12-24', 25, '2', '2', 'singaravelavan s', 'salesman', 20000.00, 1, 160000.00, 260000.00, 'Chennai', 'Chennai', '2105190011', '1', '2', 'upload_files/candidate_tracker/12235465224_Jaya Krishna Kumar Resume.pdf', NULL, '3', '2021-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, He is into Quality Check no Excel knowledge. Sustainability doubt for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-19 02:38:58', 1, '2021-05-19 02:55:09', 0, NULL, 1),
(4927, 'Javeed Khan', '5', '9010719163', '', 'javeedkhan0432@gmail.com', '1996-09-23', 24, '2', '2', 'majith khan', 'dubai working', 40000.00, 2, 0.00, 25000.00, 'hyderabad', 'mehandhi patnam', '2105190012', '1', '1', 'upload_files/candidate_tracker/17403190464_JAVEED RESUME.docx', NULL, '2', '2021-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 03:32:53', 1, '2021-05-19 03:35:40', 0, NULL, 1),
(4928, 'M DESHIK', '5', '9966580205', '', 'deshik.dsk777@gmail.com', '1997-08-19', 23, '2', '2', 'sivashankar m', 'police officer', 55000.00, 1, 0.00, 18000.00, 'hyderabad', 'dilshuk nagar', '2105190013', '1', '1', 'upload_files/candidate_tracker/24025945234_DESHIK PROFILE - Google Docs.pdf', NULL, '2', '2021-05-20', 0, '', '3', '60', '2021-06-02', 250000.00, '', '4', '2021-06-09', '1', 'Selected for Veben Team with CTC - 2.5 LPA includes PF/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 03:59:41', 60, '2021-06-01 03:55:34', 0, NULL, 1),
(4929, 'RAGHU PASUPULA', '5', '6301836795', '', 'raghupaspula99@gmail.com', '1996-07-02', 24, '2', '2', 'sushmaiah', 'head constable', 40000.00, 2, 0.00, 25000.00, 'hyderabad', 'amirpet', '2105190014', '1', '1', 'upload_files/candidate_tracker/25665427630_Resume1.docx', NULL, '2', '2021-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication Fresher Profile, will not suit our role.No idea on our domain. Already got an offer for 17Gross and looks for something more.will not sustain for a long', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 04:20:05', 1, '2021-05-19 04:22:59', 0, NULL, 1),
(4930, 'Manda Druvakumar', '5', '7989245494', '', 'mandadruvakumar@gmail.com', '1998-04-06', 23, '2', '2', 'venkanna', 'farmer', 12000.00, 1, 0.00, 10000.00, 'hyderabad', 'ramanthapur', '2105190015', '1', '1', 'upload_files/candidate_tracker/98343855248_1612415946846Resume_Manda.docx', NULL, '2', '2021-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No response to the calls', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 04:41:56', 1, '2021-05-19 04:44:49', 0, NULL, 1),
(4931, '', '0', '8639194304', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105190016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-19 05:11:27', 0, NULL, 0, NULL, 1),
(4932, 'mohammed mudasir ali', '5', '8801626272', '6300497125', 'mdmudasirmujju444@gmail.com', '1996-06-11', 24, '2', '2', 'mohammed muqthar', 'civil engg', 50000.00, 2, 18000.00, 20000.00, 'hyderabad', 'malakpet', '2105190017', '1', '2', 'upload_files/candidate_tracker/71237003647_mohammed mudasir ali.pdf', NULL, '2', '2021-05-20', 0, '', '3', '8', '2021-05-24', 275000.00, '', '5', '1970-01-01', '1', 'For Veben Team Hyderabad. 2.75L Ctc, 22917 MCTC And 19316.6 As Net. With Pf/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-19 05:16:39', 7, '2021-05-24 12:23:12', 0, NULL, 1),
(4933, 'Padmini Vijayakumar', '13', '9789672434', '9789782965', 'vinithavijay1306@gmail.com', '1999-06-13', 21, '2', '2', 'Revathi', 'House wife', 15000.00, 1, 6000.00, 15000.00, 'Villupuram', 'Villupuram', '2105190018', '1', '2', 'upload_files/candidate_tracker/50594888271_Padmini Resume1.pdf', NULL, '3', '2021-05-21', 30, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Task Completed. Potential Candidate. we can offer 8k take home. She need to lead his family.', '2', '1', '0', '1', '1', '0', '2', '2021-05-22', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-19 05:51:41', 1, '2021-05-19 05:56:02', 0, NULL, 1),
(4934, 'parimala', '4', '8925339227', '9626027924', 'kcramilaofficial@gmail.com', '1998-09-01', 22, '2', '2', 'kumar', 'mechanic', 10000.00, 0, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2105200001', '1', '1', 'upload_files/candidate_tracker/22462146688_pramilaB.E.pdf', NULL, '2', '2021-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 11:23:11', 1, '2021-05-20 11:28:39', 0, NULL, 1),
(4935, 'manikandan e', '2', '9488488985', '6382731592', 'manied116@gmail.com', '1999-06-11', 21, '2', '2', 'elumalai', 'farmer', 10000.00, 3, 0.00, 20000.00, 'villupuram', 'chennai', '2105200002', '1', '1', 'upload_files/candidate_tracker/1433009134_Resume.pdf', NULL, '2', '2021-05-20', 0, '', '1', '54', '1970-01-01', 0.00, '', NULL, '2024-10-05', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-20 11:30:23', 7, '2021-05-20 03:30:30', 0, NULL, 1),
(4936, 'Balasani Sujith Kumar', '5', '8125373057', '', 'balasanisujithgoud17@gmail.com', '1997-03-17', 24, '2', '2', 'v rajesham', 'postal', 30000.00, 2, 20000.00, 25000.00, 'hyderabad', 'neramet', '2105200003', '1', '2', 'upload_files/candidate_tracker/46731105286_\'B.sujithgoud resume.pdf', NULL, '2', '2021-05-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Good, Holding an offer with Vedantu for 3.5 LPA and looking for some more.Will not sustain for a long', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 12:34:18', 1, '2021-05-20 12:37:43', 0, NULL, 1),
(4937, 'BHANU PRAKASH THANTHARAPALLY', '5', '9701434329', '', 'bhanubhanugoud@gmail.com', '1996-09-11', 24, '2', '2', 'ganesh goud', 'business man', 45000.00, 1, 0.00, 20000.00, 'hyderabad', 'borukpal', '2105200004', '1', '1', 'upload_files/candidate_tracker/6974152113_BHANU\'s Resume (3).pdf', NULL, '2', '2021-05-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Insurance Sales', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 12:55:31', 1, '2021-05-20 12:58:47', 0, NULL, 1),
(4938, 'MADHAVA L', '5', '9182320208', '', 'lakkapogumadhava@gmail.com', '1994-02-21', 27, '2', '2', 'ramaiah lakkapogu', 'own business', 30000.00, 1, 0.00, 20000.00, 'hyderabad', 'lb nagar', '2105200005', '1', '1', 'upload_files/candidate_tracker/7113163503_MADHAVA LAKKAPOGU RESUME BV1.pdf', NULL, '2', '2021-05-21', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'He is having fits and also he will not sustain and average sales guy', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 01:21:18', 1, '2021-05-20 01:23:53', 0, NULL, 1),
(4939, '', '0', '9566158979', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105200006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-20 01:48:05', 0, NULL, 0, NULL, 1),
(4940, 'deva', '4', '6382511940', '', 'dhonideva000@gmail.com', '2001-01-30', 20, '2', '2', 'boopathy', 'working', 30000.00, 1, 0.00, 10000.00, 'thanjavur', 'thanjavur', '2105200007', '1', '1', 'upload_files/candidate_tracker/17639004213_resume_1620480243071.pdf', NULL, '2', '2021-05-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 01:49:00', 50, '2021-05-21 11:15:51', 0, NULL, 1),
(4941, 'Priyadharshini K', '4', '8056750176', '', 'priyadharshinik.tnj@gmail.com', '1999-09-26', 21, '2', '2', 'Shanthi K', 'Housewife', 40000.00, 2, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2105200008', '1', '1', 'upload_files/candidate_tracker/54569297860_priya original CV1.pdf', NULL, '2', '2021-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 01:49:29', 1, '2021-05-20 02:17:35', 0, NULL, 1),
(4942, '', '0', '9600155764', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105200009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-20 02:08:46', 0, NULL, 0, NULL, 1),
(4943, '', '0', '9360783878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105200010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-20 02:09:16', 0, NULL, 0, NULL, 1),
(4944, 'G.mohan', '4', '8015598398', '9384208594', 'mohan606621@gmail.com', '1993-06-15', 27, '2', '2', 'P.R.Govindan', 'No job', 1500.00, 3, 0.00, 180000.00, 'Chennai', 'Near thiruvallur', '2105200011', '1', '1', 'upload_files/candidate_tracker/73445240877_MOHAN RESUME.docx', NULL, '2', '2021-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 02:11:45', 1, '2021-05-20 02:49:30', 0, NULL, 1),
(4945, 'GAJJALAKONDA SAI LIKHITH', '5', '9505270334', '', 'gksailikhithraj@gmail.com', '2000-08-21', 20, '2', '2', 'subbaiah', 'consultancy', 80000.00, 1, 0.00, 15000.00, 'hyderabad', 'malakajgiri', '2105200012', '1', '1', 'upload_files/candidate_tracker/89942915687_gk sailikhith resume.docx', NULL, '2', '2021-05-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Open for CRM Position only, Distance around 18Kms sustainability doubt and Expectation is high', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 02:31:49', 1, '2021-05-20 02:36:47', 0, NULL, 1),
(4946, 'R dhanalakshmi', '4', '7402464351', '9025764424', 'dhanapriya.tnj@gmail.com', '1995-01-08', 26, '2', '2', 'V rajasekaran', 'Labour', 10000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2105200013', '1', '2', 'upload_files/candidate_tracker/74625788837_1621440672410_1621440627869_Dhanalakshmi Resume.pdf', NULL, '2', '2021-05-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-20 02:35:13', 1, '2021-05-20 03:10:38', 0, NULL, 1),
(4947, 'Syed khaleel khaleed', '22', '8919754602', '9948755790', 'Sdkhaleedk786@gmail.com', '1997-05-20', 24, '2', '2', 'Syed khaleel', 'VRO', 20000.00, 1, 0.00, 20000.00, 'Tada, Nellore AP', 'Tada', '2105200014', '1', '1', 'upload_files/candidate_tracker/66041657778_Syedkhaleedk Resume .pdf', NULL, '2', '2021-05-26', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate having own business', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 03:40:38', 7, '2021-05-26 02:59:32', 0, NULL, 1),
(4948, 'A T GUNASEKAR', '13', '7382602844', '', 'atgunasekar24@gmail.com', '1999-04-05', 22, '2', '2', 'Thanikachalam', 'Weaver', 13000.00, 1, 0.00, 16000.00, 'Chennai', 'Nagari', '2105200015', '1', '1', 'upload_files/candidate_tracker/70906838973_A.T.Guna (Resume) (1).pdf', NULL, '3', '2021-05-22', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Someone did his task.', '2', '2', '0', '1', '1', '0', '2', '2021-05-27', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-20 04:13:43', 1, '2021-05-20 04:20:23', 0, NULL, 1),
(4949, 'Tony Makineni', '5', '9010442729', '8591672643', 'tony.makenani@gmail.com', '1998-07-27', 22, '2', '2', 'sibaramaiah', 'farmer', 30000.00, 1, 18000.00, 20000.00, 'hyderabad', 'yusuf gouda', '2105200016', '1', '2', 'upload_files/candidate_tracker/3850294438_Tony Makineni.docx', NULL, '2', '2021-05-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '3yrs 3 companies with a different domain. Will not handle the pressure and sustainability doubt for our role.', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 04:16:12', 1, '2021-05-20 04:19:46', 0, NULL, 1),
(4950, 'shahrukh khan', '5', '8125999351', '', 'shahrukhkhan9714@gmail.com', '1997-04-29', 24, '2', '2', 'Mohammed Shaibaz Khan', 'working', 30000.00, 1, 14000.00, 20000.00, 'sumcity', 'sumcity', '2105200017', '1', '2', 'upload_files/candidate_tracker/28984777812_Resume (7).pdf', NULL, '2', '2021-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-20 04:56:49', 1, '2021-05-20 04:59:51', 0, NULL, 1),
(4951, 'S. G. Ajeeth kumar', '13', '9629755261', '', 'ajeethkumar4398@gmail.com', '1998-03-04', 23, '2', '2', 'M.S.Ganapathy', 'Private employee', 25000.00, 1, 0.00, 18000.00, 'Dindigul', 'Dindigul', '2105200018', '1', '1', 'upload_files/candidate_tracker/98109647296_Ajeethkumar_SG.docx', NULL, '3', '2021-05-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed', '2', '1', '', '4', '5', '', '2', '2021-05-29', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-20 05:04:03', 7, '2021-05-26 03:53:48', 0, NULL, 1),
(4952, 'Hari haran', '2', '8838669238', '', 'Hariharan28111999@gmail.com', '1999-11-28', 21, '2', '2', 'Govindaraj', 'Painter', 150000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2105200019', '1', '1', 'upload_files/candidate_tracker/12755121569_new resume.pdf', NULL, '3', '2021-05-24', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'Selected for React Intern, - 3 months Stipend Rs3500 per month post intern will confirm the salary - 3 yrs service Agreement,will come and join once receive the original documents from College', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-20 05:31:19', 1, '2021-05-20 05:34:42', 0, NULL, 1),
(4953, 'priyadharshini s', '16', '9841990275', '', 'dharshinisk16@gmail.com', '1998-08-16', 22, '2', '2', 'susairaj k', 'painter', 10000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2105210001', '1', '2', 'upload_files/candidate_tracker/87243430240_updated resume.pdf', NULL, '3', '2021-05-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 11:33:45', 50, '2021-05-22 09:58:44', 0, NULL, 1),
(4954, 'Manisekar Sugumaran', '2', '7338975871', '', 'mani.bio.197@gmail.com', '1999-11-04', 21, '2', '2', 'sugumaran', 'farmer', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2105210002', '1', '1', 'upload_files/candidate_tracker/73050808611_Resume.pdf', NULL, '2', '2021-07-05', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Intern for 5 months(1 month Internship - No Payment and for remaning months 3.5 Stipend,post intern 3yrs agreement also salary wil be confirmed', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-21 11:49:45', 60, '2021-07-05 10:20:13', 0, NULL, 1),
(4955, 'shibi chakkaravarthy', '2', '7358573377', '', 'shibi2591999@gmail.com', '1999-09-26', 21, '2', '2', 'krishnasamy', 'cine field', 120000.00, 1, 264000.00, 360000.00, 'kariyapatti', 'virugambakkam', '2105210003', '1', '2', 'upload_files/candidate_tracker/99095371958_Shibi Resume Latest.pdf', NULL, '3', '2021-05-21', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-21 11:54:20', 7, '2021-05-21 01:16:03', 0, NULL, 1),
(4956, 'Saikrishna Ganesh', '16', '9003081537', '', 'saikrishna6381@gmail.com', '1996-10-27', 24, '2', '2', 'Ganesh R', 'Assistant head master', 1.00, 0, 16682.00, 20000.00, 'Chennai', 'Chennai', '2105210004', '1', '2', 'upload_files/candidate_tracker/18557310128_updated resume pdf-01.pdf', NULL, '3', '2021-05-22', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 11:56:47', 50, '2021-05-22 09:58:55', 0, NULL, 1),
(4957, 'Ashwin Ram S', '2', '6384223035', '', 'ramashwin36@gmail.com', '2000-07-29', 20, '2', '2', 'Suresh R', 'Teacher', 30000.00, 1, 0.00, 350000.00, 'Thanjavur', 'Thanjavur', '2105210005', '1', '1', 'upload_files/candidate_tracker/29037701623_AshwinRam_Resume.pdf', NULL, '3', '2021-05-22', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-21 12:54:37', 7, '2021-05-22 10:52:55', 0, NULL, 1),
(4958, 'Prajith', '16', '9677279260', '', 'Prajithkannan61@gmail.com', '1996-03-13', 25, '2', '2', 'Mohan Kumar', 'Forman', 20000.00, 1, 14999.00, 22000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2105210006', '1', '2', 'upload_files/candidate_tracker/35866038305_Screenshot_20210104_222212-converted.pdf', NULL, '3', '2021-05-22', 10, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 01:05:18', 50, '2021-05-22 09:59:06', 0, NULL, 1),
(4959, 'Lavanya', '16', '8754489134', '', 'Lavanya24996@gmail.com', '1996-06-24', 24, '2', '2', 'Gubendran', 'Sales man', 240000.00, 2, 13800.00, 20000.00, 'Chennai', 'Ambattur', '2105210007', '1', '2', 'upload_files/candidate_tracker/33818982061_Resume 2021-updated.pdf', NULL, '3', '2021-05-22', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 01:15:55', 1, '2021-05-21 01:23:58', 0, NULL, 1),
(4960, 'meenalochini', '4', '6369175200', '', 'meena123lochini@gmail.com', '2000-05-11', 21, '2', '2', 'pichaimani', 'working', 10000.00, 1, 0.00, 10000.00, 'chennai', 'arakonam', '2105210008', '1', '1', 'upload_files/candidate_tracker/62878616778_Meenalochini.Presume.pdf', NULL, '2', '2021-05-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ok with our Offer.also our rms link is incomplete', '1', '2', '', '', '', '', '1', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 02:25:48', 7, '2021-07-13 12:01:11', 0, NULL, 1),
(4961, 'Kumaraguru G', '16', '9087013942', '', 'kumaragurug213@gmail.com', '1994-08-03', 26, '2', '2', 'Gurunathan T', 'Banana salesman', 30000.00, 2, 20000.00, 25000.00, 'Chennai', 'Chennai', '2105210009', '1', '2', 'upload_files/candidate_tracker/92650493274_KUMARA GURU RESUME.pdf', NULL, '3', '2021-05-22', 30, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-21 03:53:20', 50, '2021-05-22 09:59:19', 0, NULL, 1),
(4962, 'allwin gnanaraj.c', '2', '9940516183', '', 'allwinallu99@gmail.com', '1999-10-14', 21, '2', '2', 'charles rajkumar', 'supervisor', 30000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2105220001', '1', '1', 'upload_files/candidate_tracker/24344443609_allwin cv.pdf', NULL, '3', '2021-05-26', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-22 02:28:54', 1, '2021-05-25 05:36:46', 0, NULL, 1),
(4963, 'Arun samdoss', '2', '9444249672', '', 'arunsamdoss@gmail.com', '1996-12-21', 24, '2', '2', 'Isaac', 'Own business', 12000.00, 1, 10000.00, 17000.00, 'Krs nagar vallimalai road katpadi Vellore', 'Vellore', '2105230001', '1', '2', 'upload_files/candidate_tracker/59547501304_Resume Arun Samdoss.pdf', NULL, '2', '2021-05-26', 0, '', '1', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '4', '5', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-23 07:03:07', 7, '2021-05-26 01:35:22', 0, NULL, 1),
(4964, 'Subash', '13', '7845688489', '', 'Cssubashofficial@gmail.com', '1998-09-24', 22, '2', '2', 'Sankar', 'Tailor', 10000.00, 1, 0.00, 20000.00, 'kalpakkam', 'kalpakkam', '2105240001', '1', '2', 'upload_files/candidate_tracker/13386735032_Subash_resume_2021-converted.pdf', NULL, '3', '2021-05-26', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-27', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-24 09:00:26', 1, '2021-05-26 09:16:16', 0, NULL, 1),
(4965, 'S.Bhuvaneswari', '13', '6379555435', '', 'bhuvanaselvam97@gmail.com', '1997-09-05', 23, '2', '2', 'selvam', 'construction', 50000.00, 2, 0.00, 15.00, 'chennai', 'Mangadu', '2105250001', '1', '1', 'upload_files/candidate_tracker/38904337164_bhuvaneswari resume (1).pdf', NULL, '3', '2021-05-26', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not completed', '2', '1', '', '1', '1', '', '2', '2021-05-27', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-25 11:38:54', 7, '2021-05-26 03:54:31', 0, NULL, 1),
(4966, '', '0', '6379556435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105250002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-25 11:43:45', 0, NULL, 0, NULL, 1),
(4967, 'Vamshi Racherla', '5', '6303197154', '', 'vamshitomshi@gmail.com', '1998-05-26', 22, '2', '2', 'lakshman rao', 'coco cola', 30000.00, 1, 15000.00, 18000.00, 'hyderabad', 'malkajgiri', '2105250003', '1', '2', 'upload_files/candidate_tracker/52435893239_vamshi new docx.docx', NULL, '2', '2021-05-26', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 12:23:36', 1, '2021-05-25 12:27:45', 0, NULL, 1),
(4968, 'Juturu Lokesh', '5', '9398161993', '', 'juturulokeshlokesh@gmail.comx', '1999-06-10', 21, '2', '2', 'ramjanjeylu naidu', 'farmer', 30000.00, 1, 0.00, 25000.00, 'hyderabad', 'jubilee hills', '2105250004', '1', '1', 'upload_files/candidate_tracker/15330772955_1606107035678_New Microsoft Office Word Document.pdf', NULL, '2', '2021-05-26', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 12:48:44', 1, '2021-05-25 12:53:15', 0, NULL, 1),
(4969, 'AVULAPATI NIRANJAN', '5', '9700415506', '', 'niranjannani9999@gmail.com', '1996-09-18', 24, '2', '2', 'munieeswariah', 'working in pvt company', 40000.00, 1, 25000.00, 30000.00, 'hyderabad', 'near malanagar', '2105250005', '1', '2', 'upload_files/candidate_tracker/7942304139_Resume-Niranjan', NULL, '2', '2021-05-26', 0, '', '3', '60', '2021-06-02', 345000.00, '', '4', '2021-06-09', '1', 'Selected for Veben Team with CTC - 3.45 includes PF/PT', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 02:06:05', 60, '2021-06-01 04:47:46', 0, NULL, 1),
(4970, 'krishnamoorthy', '16', '9092598790', '9940322170', 'Krishnamoorthy2014@gmail.com', '1995-10-07', 25, '2', '2', 'magibal', 'loadman', 12000.00, 1, 5.00, 33000.00, 'chennai', 'chenn', '2105250006', '1', '2', 'upload_files/candidate_tracker/63610470799_Resume 2020-1.pdf', NULL, '3', '2021-05-26', 40, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'analytical weak,Communication average, and no excel knowledge', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 03:21:40', 50, '2021-05-26 09:21:26', 0, NULL, 1),
(4971, 'Deepa Shri', '16', '7395987223', '7397238282', 'deepashrikandhi95@gmail.com', '1995-09-28', 25, '2', '2', 'Mr.Kandhi', 'Rtrd MPT officer', 20.00, 3, 1.60, 3.00, 'Chennai', 'Chennai', '2105250007', '1', '2', 'upload_files/candidate_tracker/26725140734_Deepa Updated Resume (1) (1) (1).pdf', NULL, '2', '2021-05-26', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 03:51:10', 50, '2021-05-26 09:21:40', 0, NULL, 1),
(4972, 'Vinoth P', '16', '8248486410', '7373686193', 'vinothfrancis08@gmail.com', '1993-10-08', 27, '2', '2', 'Paul Francis I', 'Farmer', 9000.00, 1, 25000.00, 30000.00, 'Cuddalore, Panruti', 'Chennai, Thiruvanmiyur', '2105250008', '1', '2', 'upload_files/candidate_tracker/89822191254_Vinoth resume.pdf', NULL, '2', '2021-05-26', 0, '', '4', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Check this profile for MIS ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 04:24:00', 50, '2021-05-26 09:21:52', 0, NULL, 1),
(4973, 'Kannna', '16', '9095536848', '7553182926', 'kannanselvam144@gmail.com', '1994-08-17', 26, '2', '2', 'Selvam', 'Cooli', 10000.00, 1, 14500.00, 15000.00, 'Theni', 'Chennai', '2105250009', '1', '2', 'upload_files/candidate_tracker/74675347572_kannanselvam94.docx_compressed.pdf', NULL, '2', '2021-05-26', 1, '', '5', '41', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in MIS role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-25 04:36:39', 50, '2021-05-26 09:22:05', 0, NULL, 1),
(4974, 'Muniyasamy V', '3', '7871664798', '9363318100', 'vmuni.812@gmail.com', '2006-05-26', 0, '2', '2', 'Vetrivel', 'Fisher man', 72000.00, 1, 0.00, 15000.00, '5B/328,selsini colony,chidambaraNagar, Tuticorin', '5B/328,Selsini Colony,ChidambaraNagar, Tuticorin', '2105260001', '1', '1', 'upload_files/candidate_tracker/2235913771_Muniyasamy V-.pdf', NULL, '3', '2021-05-26', 0, '', '1', '54', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-26 10:36:03', 1, '2021-05-26 10:51:27', 0, NULL, 1),
(4975, 'N JAYSIMHA', '5', '8309628145', '9000236717', 'NILAJALAJAYASIMHA@gmail.com', '1994-04-12', 27, '2', '2', 'kondanna', 'own dry clean shop', 50000.00, 2, 14000.00, 20000.00, 'hyderabad', 'yatral nagar', '2105260002', '1', '2', 'upload_files/candidate_tracker/17614484909_resume (8).pdf', NULL, '2', '2021-05-27', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 11:09:10', 1, '2021-05-26 11:11:45', 0, NULL, 1),
(4976, 'Guntoju Umashankar', '5', '8328431214', '', 'Shankarchary07@gmail.com', '1998-08-28', 22, '2', '2', 'sathyanarayana', 'carpenter', 20000.00, 1, 15000.00, 20000.00, 'hyderabad', 'lb nagar', '2105260003', '1', '2', 'upload_files/candidate_tracker/92454699394_G UmaShankar resume.pdf', NULL, '2', '2021-05-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 11:29:17', 1, '2021-05-26 11:31:47', 0, NULL, 1),
(4977, 'Shaik Khasim Basha', '5', '7989734135', '', 'shaikbashalsd@gmail.com', '1999-10-03', 21, '2', '2', 'shaik khasim sahev', 'ex govt employee', 35000.00, 2, 0.00, 20000.00, 'hyderabad', 'dilshuknagar', '2105260004', '1', '1', 'upload_files/candidate_tracker/60484666816_Share 1614920591456_my_resume.pdf', NULL, '2', '2021-05-27', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 11:51:35', 1, '2021-05-26 11:55:52', 0, NULL, 1),
(4978, 'mahaboob basha', '5', '9789585435', '', 'bashaafsar225@gmail.com', '1997-05-15', 24, '2', '2', 'sk subhan', 'polica officer', 45000.00, 1, 0.00, 20000.00, 'hyderabad', 'dilshuk nagar', '2105260005', '1', '1', 'upload_files/candidate_tracker/68650499593_Basha shaik vvis 039.docx.pdf', NULL, '2', '2021-05-27', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'He is not well and told that he will get back after 2 days', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 12:10:39', 1, '2021-05-26 12:12:27', 0, NULL, 1),
(4979, 'Shaik Afsar', '5', '8466863453', '', 'afsar.shaik115@gmail.com', '1999-06-29', 21, '2', '2', 'shaik suphan', 'police', 30000.00, 1, 0.00, 20000.00, 'telangana', 'madwal', '2105260006', '1', '1', 'upload_files/candidate_tracker/44656099525_RESUME (9).pdf', NULL, '2', '2021-05-27', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-26 02:13:34', 1, '2021-05-26 02:17:08', 0, NULL, 1),
(4980, 'Manikandan', '23', '8428522826', '8667032065', 'manikalyan151@gmail.com', '1994-01-15', 27, '2', '2', 'Kalyanasundaram', 'Farmer', 50000.00, 3, 0.00, 40000.00, 'Chennai', 'Dharmapuri', '2105260007', '1', '2', 'upload_files/candidate_tracker/91842433326_Manikandan Resume.pdf', NULL, '3', '2021-05-27', 30, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task given', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-26 05:41:19', 7, '2021-05-27 10:46:40', 0, NULL, 1),
(4981, 'Mohamed zuhail', '23', '7448874485', '', 'mohamedzuhailmca@gmail.com', '1996-04-26', 25, '2', '2', 'Barakathullah', 'Business', 26000.00, 2, 26670.00, 37000.00, 'Chennai', 'Chennai', '2105260008', '1', '2', 'upload_files/candidate_tracker/38300040702_1609385603070Resume_Mohamed (2).pdf', NULL, '3', '2021-05-27', 30, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-26 05:46:01', 7, '2021-05-27 10:47:04', 0, NULL, 1),
(4982, '', '0', '9677117429', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105260009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-26 06:39:20', 0, NULL, 0, NULL, 1),
(4983, 'Thamilselvan', '23', '7598487897', '9659190728', 'tamil0893@gmail.com', '1993-11-08', 27, '2', '2', 'Viswanathan', 'web Designing SME', 28000.00, 1, 25000.00, 35000.00, 'Trichy', 'Chennai', '2105260010', '1', '2', 'upload_files/candidate_tracker/45316680974_Thamilselvan Resume.pdf', NULL, '3', '2021-05-27', 1, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task given. Task Completed. Not up to the level.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-26 07:03:16', 7, '2021-06-01 11:59:05', 0, NULL, 1),
(4984, 'Shaik Naveed', '2', '9789921115', '9940236718', 'shaiknaveed78626@gmail.com', '2000-05-18', 21, '2', '2', 'Shaik Nayeem', 'Leather Technician', 20000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2105270001', '1', '1', 'upload_files/candidate_tracker/76625710347_N Shaik Naveed Resume.pdf', NULL, '1', '2021-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Need To Complete The Exams.Will Come For The 2nd Level Interview Post The Completion Of Exams\n', '2', '1', '0', '1', '1', '0', '2', '2021-07-30', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 12:37:25', 1, '2021-06-28 04:24:14', 0, NULL, 1),
(4985, 'santhosh kumar T', '23', '8072566169', '9500737421', 'santhosh5198kumar@gmail.com', '1997-03-07', 24, '2', '1', 'santhi', 'house wife', 17000.00, 1, 2.60, 4.00, 'Chennai', 'Chennai', '2105270002', '1', '2', 'upload_files/candidate_tracker/13337107724_updated resume.pdf', NULL, '3', '2021-05-27', 30, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task given. Task Completed. Not up to the level.', '2', '2', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 09:35:16', 7, '2021-06-01 11:58:19', 0, NULL, 1),
(4986, 'ramya', '23', '9629891830', '', 'ramyaselvaraman047@gmail.com', '1995-07-04', 25, '2', '2', 'bharathi', 'farmer', 10000.00, 1, 18000.00, 25000.00, 'chennai', 'chennai', '2105270003', '1', '2', 'upload_files/candidate_tracker/60045024658_ramya_ui_developer.pdf', NULL, '3', '2021-05-27', 10, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 09:49:29', 7, '2021-05-27 10:48:53', 0, NULL, 1),
(4987, '', '0', '9585321403', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105270004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-27 10:51:06', 0, NULL, 0, NULL, 1),
(4988, 'Agnes.R', '13', '8220841469', '9176494689', 'agnesraja810@gmail.com', '1997-10-08', 23, '2', '1', 'Vijesh', 'Business', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2105270005', '1', '1', 'upload_files/candidate_tracker/71455821832_Resume_Agnes.docx', NULL, '3', '2021-05-27', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not completed.', '2', '2', '0', '1', '1', '0', '2', '2021-05-29', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 11:01:17', 1, '2021-05-27 11:11:55', 0, NULL, 1),
(4989, '', '0', '9597741703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105270006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-27 11:10:00', 0, NULL, 0, NULL, 1),
(4990, 'M. Swetha', '13', '9790717574', '', 'swethasampath99@gmail.com', '1999-08-08', 21, '2', '2', 'R. Marimuthu', 'Printer', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2105270007', '1', '1', 'upload_files/candidate_tracker/8904395777_resume.pdf', NULL, '3', '2021-05-27', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'task not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-06-16', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 11:16:44', 1, '2021-05-27 11:30:06', 0, NULL, 1),
(4991, 'Parthipan M', '13', '9566511221', '8072088029', 'parthipan1030@gmail.com', '1997-07-22', 23, '2', '2', 'Muthumagalingam S', 'Sankaralingam', 5000000.00, 1, 0.00, 140000.00, 'Srivilliputtur', 'Chennai', '2105270008', '1', '1', 'upload_files/candidate_tracker/40942128626_Parthipan Resume.docx', NULL, '3', '2021-05-27', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Only 30% of task completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-28', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 11:21:45', 1, '2021-05-27 11:37:11', 0, NULL, 1),
(4992, '', '0', '9677026204', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105270009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-27 11:26:35', 0, NULL, 0, NULL, 1),
(4993, 'Acharya, Suraj S', '5', '8637270442', '', 'praharaj.surajacharya@protonmail.com', '1998-10-07', 22, '2', '2', 'li acharya', 'doctor', 100000.00, 1, 27000.00, 35000.00, 'hyderabad', 'jntu', '2105270010', '1', '2', 'upload_files/candidate_tracker/89429176051_resume 2021.pdf', NULL, '2', '2021-05-28', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Didnxquott attend the interview', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 12:14:46', 1, '2021-05-27 12:32:49', 0, NULL, 1),
(4994, 'Lakshmi', '13', '9600630397', '', 'sp.lakshmi2511@gmail.com', '2000-12-11', 20, '2', '2', 'Subramaniyan', 'Courier delivery', 6000.00, 2, 0.00, 200000.00, 'Kandanur', 'Kandanur', '2105270011', '1', '1', 'upload_files/candidate_tracker/84361818816_Resume Lakshmi.pdf', NULL, '3', '2021-05-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'not good in technical.', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 01:00:33', 1, '2021-05-28 11:46:51', 0, NULL, 1),
(4995, 'Ram prateek', '5', '9966165123', '', 'ramprateek85@gmail.com', '1998-07-10', 22, '2', '2', 'krishnaprasad', 'accountant', 100000.00, 0, 0.00, 15000.00, 'hyderabad', 'bolaram', '2105270012', '1', '1', 'upload_files/candidate_tracker/77242510097_ram resume (01).docx', NULL, '2', '2021-05-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '3', '4', '0', '2', '2021-06-08', '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 01:03:54', 1, '2021-05-27 01:05:59', 0, NULL, 1),
(4996, 'Gaddam Rohit', '5', '9949186078', '', 'gaddamrohit7@gmail.com', '1998-12-16', 22, '2', '2', 'masanna', 'passed away', 15000.00, 1, 13800.00, 15000.00, 'hyderabad', 'bhal', '2105270013', '1', '2', 'upload_files/candidate_tracker/1842788577_0download14893370990661.docx', NULL, '2', '2021-05-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for sales, little bit slow and no sustainability and expt is 16k. avg communication and convincing. Will not suite for RM.', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 02:36:36', 50, '2021-05-27 03:08:19', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(4997, 'Shaik Meerasaheb', '5', '6309676875', '', 'shaikmeerasaheb1996@gmail.com', '1996-04-05', 25, '2', '2', 'shaik mohammed rafi', 'daily labour', 60000.00, 1, 16000.00, 20000.00, 'hyderabad', 'ecil', '2105270014', '1', '2', 'upload_files/candidate_tracker/79044449357_shaik Meerasaheb resume (E.kalyan).pdf', NULL, '2', '2021-05-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 02:44:06', 1, '2021-05-27 02:45:59', 0, NULL, 1),
(4998, 'MD AYAJ', '5', '8019425363', '', 'mdayaj830@gmail.com', '1996-12-04', 24, '2', '2', 'abdul mydeen', 'mechanic', 20000.00, 9, 12000.00, 15000.00, 'hyderabad', 'gachibowli', '2105270015', '1', '2', 'upload_files/candidate_tracker/44068952419_MD AYAJ Resume.pdf', NULL, '2', '2021-05-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Fresher, he is from Bihar and very native language and avg communication. doesnxquott have 2 wheeler and expt is 18k. will not suite for RM.', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 02:47:33', 1, '2021-05-27 02:50:17', 0, NULL, 1),
(4999, 'Shilpa Ithagoni', '20', '9391026380', '', 'shilpaithagoni143@gmail.com', '2000-08-08', 20, '2', '2', 'shankaraiah', 'farmer', 10000.00, 1, 13000.00, 1000016000.00, 'hyderabad', 'madhapur', '2105270016', '1', '2', 'upload_files/candidate_tracker/24639697167_1620218231411_shilpa.docx', NULL, '2', '2021-05-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '5', '2', '', '3', '4', '', '2', '2021-06-02', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 03:47:14', 50, '2021-05-28 09:49:33', 0, NULL, 1),
(5000, 'krishnaanand v', '13', '7299608572', '', 'vkrishnaanand@gmail.com', '1998-10-02', 22, '2', '2', 'vijayakumar k', 'tax consultant', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2105270017', '1', '1', 'upload_files/candidate_tracker/30033739657_[RESUME]Krishnaanand.pdf', NULL, '3', '2021-05-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'task not completed.', '2', '1', '0', '1', '1', '0', '2', '2021-05-29', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 03:54:07', 1, '2021-05-27 06:03:30', 0, NULL, 1),
(5001, 'Abdul satar', '4', '9154187866', '', 'Mohdsatar689@gmail.com', '1998-05-20', 23, '2', '2', 'mohammed abdul raheem', 'plumber', 10000.00, 1, 0.00, 900012000.00, 'hyderabad', 'alwal', '2105270018', '1', '1', 'upload_files/candidate_tracker/98505195484_MOHD ABDUL SATAR.docx', NULL, '2', '2021-05-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '3', '4', '0', '1', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-27 04:03:20', 1, '2021-05-27 04:06:50', 0, NULL, 1),
(5002, 'Aswathy asokan', '23', '9020944811', '', 'achu8371@gmail.com', '1990-05-30', 30, '2', '1', 'Sajeev kumar', 'MCA', 50000.00, 1, 25000.00, 50000.00, 'Kerala', 'chennai', '2105270019', '1', '2', 'upload_files/candidate_tracker/69774918831_Aswathyasokan_resume2021.doc', NULL, '3', '2021-05-28', 30, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Given', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 05:36:17', 7, '2021-05-28 10:48:23', 0, NULL, 1),
(5003, 'annakodi c', '13', '9597909517', '9033909359', 'csuruchi2@gmail.com', '1998-09-07', 22, '2', '2', 'chinnasamy', 'former', 10000.00, 1, 0.00, 15000.00, 'perambalur', 'permbalur', '2105270020', '1', '1', 'upload_files/candidate_tracker/21665623952_resume.pdf', NULL, '3', '2021-06-01', 0, '', '4', '64', NULL, 0.00, '', '0', NULL, '2', 'Task Was Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-02', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 05:47:51', 1, '2021-05-31 10:31:01', 0, NULL, 1),
(5004, 'Sureshkumar', '13', '8940892561', '8637480540', 'suresh10ssk@gmail.com', '2000-03-10', 21, '2', '2', 'Srinivasan', 'Daily Wages', 15000.00, 1, 0.00, 200000.00, 'Vellore', 'Vellore', '2105270021', '1', '1', 'upload_files/candidate_tracker/6435688204_CV_Sureshkumar.pdf', NULL, '3', '2021-05-29', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'Shortlisted. He Is A Fresher. We Can Offer 8k As A Take Home.\n', '2', '1', '0', '1', '1', '0', '2', '2021-05-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-27 06:02:41', 1, '2021-05-27 06:17:59', 0, NULL, 1),
(5005, 'RAMYA R', '13', '7397435712', '', 'ramya2epm@gmail.com', '2000-07-10', 20, '2', '2', 'ravi parameshwari', 'business', 300000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2105280001', '1', '1', 'upload_files/candidate_tracker/76877023772_RAMYA RESUME (3)(1) (1).pdf', NULL, '3', '2021-05-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task not completed. She is download from google and shared with us.', '2', '1', '0', '1', '1', '0', '2', '2021-05-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 11:30:27', 1, '2021-05-28 11:35:33', 0, NULL, 1),
(5006, '', '0', '9790692688', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105280002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-28 11:39:40', 0, NULL, 0, NULL, 1),
(5007, 'NITHISH REDDY VENNAPUREDDY', '5', '8686338882', '', 'vnithishreddy@gmail.com', '1996-02-09', 25, '2', '2', 'ragava reddy', 'farmer', 50000.00, 1, 0.00, 22000.00, 'hyderabad', 'kuketpally', '2105280003', '1', '1', 'upload_files/candidate_tracker/74820796411_NITHISH REDDY RESUME SHORT WRD.pdf', NULL, '2', '2021-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-28 11:41:18', 1, '2021-05-28 11:44:19', 0, NULL, 1),
(5008, 'Priya dharshini K', '13', '8012211999', '9790944504', 'priyadharshinik1808@gmail.com', '1999-10-08', 21, '2', '2', 'Kumaran K', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2105280004', '1', '1', 'upload_files/candidate_tracker/42589799918_Resume(1).pdf', NULL, '3', '2021-05-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not good in basic.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 12:48:11', 1, '2021-05-28 01:06:33', 0, NULL, 1),
(5009, 'Arthi paraman', '13', '8220118781', '', 'arthiparamasivam18@gmail.com', '2006-05-28', 0, '2', '2', 'Paramasivam', 'Works at Tower', 20000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2105280005', '1', '1', 'upload_files/candidate_tracker/79694701708_Arthiparamasivam Resume.pdf', NULL, '3', '2021-05-28', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'not good in basic.', '2', '2', '0', '1', '1', '0', '2', '2021-05-31', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 02:44:22', 1, '2021-05-28 02:48:55', 0, NULL, 1),
(5010, 'Pusaindu Priya', '20', '8179359816', '', 'pusaindupriya@gmail.com', '2000-11-19', 20, '2', '2', 'rajasekar', 'pvt employee', 25000.00, 1, 12000.00, 15000.00, 'hyderabad', 'keradhabad', '2105280006', '1', '2', 'upload_files/candidate_tracker/28577133800_RESUME indu.doc', NULL, '2', '2021-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-28 02:51:30', 1, '2021-05-28 02:54:22', 0, NULL, 1),
(5011, 'saikrishna gaddam', '5', '9010249698', '', 'hari17403@gmail.com', '1996-09-10', 24, '2', '2', 'lakshminarayana', 'passed away', 20000.00, 1, 25000.00, 30000.00, 'hyderabad', 'kuketpally', '2105280007', '1', '2', 'upload_files/candidate_tracker/91289454515_CV_2021-05-21-082521.pdf', NULL, '2', '2021-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-28 03:07:49', 1, '2021-05-28 03:09:53', 0, NULL, 1),
(5012, 'Shetty Manikanta Rao', '20', '6309357628', '', 'krazykittu22@gmail.com', '2000-05-28', 21, '2', '2', 'Shetty Ravindher Rao', 'working', 50000.00, 1, 0.00, 18000.00, 'hyderabad', 'pkr', '2105280008', '1', '1', 'upload_files/candidate_tracker/94797083277_Manikanta Shetty\'s Resume.docx', NULL, '2', '2021-05-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-28 03:21:37', 1, '2021-05-28 03:25:14', 0, NULL, 1),
(5013, 'Tejasri G', '13', '9047111841', '7845778188', 'tejasriacucs@gmail.com', '2000-01-15', 21, '2', '2', 'Govindraj B.m', 'Shopkeeper', 10000.00, 3, 0.00, 20000.00, 'Krishnagiri', 'Krishnagiri', '2105280009', '1', '1', 'upload_files/candidate_tracker/28054564716_TEJASRI CSE RESUME.docx', NULL, '3', '2021-05-31', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not good in technical.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 04:21:53', 7, '2021-05-31 02:43:39', 0, NULL, 1),
(5014, '', '0', '9025022606', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105280010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-28 04:25:19', 0, NULL, 0, NULL, 1),
(5015, 'Tamilarasan K', '13', '9087571544', '', 'tamilarasansmec15@gmail.com', '1998-06-28', 22, '2', '2', 'Karunanithi', 'Weaver', 50000.00, 2, 0.00, 17000.00, 'Arani, thiruvannamalai.', 'Poonnamalle, chennai.', '2105280011', '1', '1', 'upload_files/candidate_tracker/80214354538_tamil.pdf', NULL, '3', '2021-05-29', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Proper Reaponse.', '2', '1', '0', '1', '1', '0', '2', '2021-05-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-28 04:30:58', 1, '2021-05-28 04:36:45', 0, NULL, 1),
(5016, '', '0', '9786528494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105280012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-28 05:10:10', 0, NULL, 0, NULL, 1),
(5017, 'Robinson J', '13', '9715992596', '8610912909', 'jjrobin1994@gmail.com', '1994-02-18', 27, '2', '2', 'Johnson T', 'Customer support executive', 25000.00, 2, 0.00, 200000.00, 'Karur', 'Karur', '2105280013', '1', '1', 'upload_files/candidate_tracker/4162140374_Robin.pdf', NULL, '3', '2021-06-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-05-28 05:12:34', 1, '2021-05-28 05:17:19', 0, NULL, 1),
(5018, 'Prashanth Chintu', '5', '9248886143', '', 'prashanth090795@gmail.com', '1998-08-30', 22, '2', '2', 'raju reddy', 'agriculture', 20000.00, 1, 15000.00, 16000.00, 'hyderabad', 'amirpet', '2105290001', '1', '2', 'upload_files/candidate_tracker/87209466828_new resume chintu.docx', NULL, '2', '2021-05-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '2', '0', '3', '4', '0', '2', '2021-06-02', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-29 11:56:51', 1, '2021-05-29 11:59:21', 0, NULL, 1),
(5019, 'Suhaina Begum S', '13', '9524498561', '9994230860', 'suhainabegum.syed@gmail.com', '1997-11-05', 23, '2', '1', 'Riyas Mydheen M', 'Assistant Manager', 50000.00, 2, 15000.00, 18000.00, 'Chennai', 'Mugalivakkam', '2105290002', '1', '2', 'upload_files/candidate_tracker/40173118649_Suhaina.pdf', NULL, '3', '2021-05-31', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-01', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-29 01:30:32', 1, '2021-05-29 01:41:48', 0, NULL, 1),
(5020, 'Ch RAJESH', '5', '7989564310', '', 'rajeshcheri.1234@gmail.com', '1995-07-15', 25, '2', '2', 'lingaiha', 'farmer', 20000.00, 2, 20000.00, 25000.00, 'hyderabad', 'secundrabad', '2105290003', '1', '2', 'upload_files/candidate_tracker/81151024134_1_rajesh resume 1412.doc', NULL, '2', '2021-05-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '3', '4', '0', '2', '2021-06-02', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-29 02:02:07', 1, '2021-05-29 02:03:52', 0, NULL, 1),
(5021, 'MUTTHINENI.DURGA RAO', '5', '9398455204', '', 'chowdarydurga8@gmail.com', '1996-07-16', 24, '2', '2', 'M.NARAIAH', 'working', 40000.00, 1, 20000.00, 25000.00, 'hyderabad', 'sr nagar', '2105290004', '1', '2', 'upload_files/candidate_tracker/35441654615_Durga resume (1).docx', NULL, '2', '2021-05-31', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-29 02:49:43', 1, '2021-05-29 02:52:28', 0, NULL, 1),
(5022, 'Praveen Raj', '13', '9597848813', '', 'gpraveenraj2000@gmail.com', '2000-05-18', 21, '2', '2', 'George', 'Auto Driver', 6000.00, 1, 0.00, 350000.00, 'tirunelveli', 'Tirunelveli', '2105290005', '1', '1', 'upload_files/candidate_tracker/57208889330_Praveen\'s Resume (1).pdf', NULL, '2', '2021-05-31', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'shortlisted. he is a fresher. we can offer 8k as a take home.', '2', '1', '0', '1', '1', '0', '2', '2021-06-01', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-29 03:25:47', 1, '2021-05-29 03:53:18', 0, NULL, 1),
(5023, 'mohamed sarvath khan', '13', '8489840950', '', 'sarvath86@gmail.com', '1999-05-24', 22, '2', '2', 'basheer ahamed', 'business', 25000.00, 1, 0.00, 10000.00, 'chennai', 'thiruvarur', '2105290006', '1', '1', 'upload_files/candidate_tracker/56273817813_sarvathkhan.pdf', NULL, '3', '2021-05-31', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-01', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-29 04:15:47', 1, '2021-05-29 04:27:09', 0, NULL, 1),
(5024, 'Sai Reddie', '20', '8522895499', '', 'peddireddysaireddy57@gmail.com', '1996-10-25', 24, '2', '2', 'peddireddysaireddy57@gmail.com', 'working', 30000.00, 1, 0.00, 10000.00, 'hyderabad', 'kondapur', '2105310001', '1', '1', 'upload_files/candidate_tracker/83193951450_SAI CV.docx', NULL, '2', '2021-06-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '3', '4', '0', '2', '2021-06-02', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-31 11:13:09', 1, '2021-05-31 11:16:02', 0, NULL, 1),
(5025, 'Nagapasha shaik', '20', '9490087507', '', 'nagapashashaik@gmail.com', '1996-09-07', 24, '2', '2', 'shaik syed ali', 'farmer', 10000.00, 1, 8000.00, 9000.00, 'hyderabad', 'uppal', '2105310002', '1', '2', 'upload_files/candidate_tracker/36798973503_Naga Pasha Resume..pdf', NULL, '2', '2021-06-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Insurance Sales Domain', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-31 11:56:16', 1, '2021-05-31 11:58:23', 0, NULL, 1),
(5026, 'yalagandula naveen', '20', '8919781292', '', 'naveennani2220@gmail.com', '1997-04-08', 24, '2', '2', 'rama rao', 'store keeper', 25000.00, 2, 10000.00, 12000.00, 'hyderabad', 'kammam', '2105310003', '1', '2', 'upload_files/candidate_tracker/73558659742_0_naveen res.docx - Google Docs.pdf', NULL, '2', '2021-06-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Focus only on the service based opening not into sales domain', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-31 12:05:36', 1, '2021-05-31 12:07:45', 0, NULL, 1),
(5027, 'Garlapati Akshitha', '20', '8328183126', '', 'reddyakshithareddy99@gmail.com', '2000-11-15', 20, '2', '2', 'ashok', 'driver', 10000.00, 1, 15000.00, 10000.00, 'hyderabad', 'mouna ali', '2105310004', '1', '2', 'upload_files/candidate_tracker/8477954221_a resume new-2.doc', NULL, '2', '2021-06-01', 0, '', '3', '60', '2021-06-08', 150000.00, '', '6', '2021-06-13', '2', 'Selected as CRM for Veben Hyderabad with CTC 1.5LPA not open for PF/PF so processed with 5% deductions', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-05-31 01:04:50', 60, '2021-06-07 12:07:49', 0, NULL, 1),
(5028, 'Santhosh', '13', '6380451543', '', 'santhosht2412@gmail.com', '1999-12-24', 21, '2', '2', 'Tamilarasan', 'Farmer', 25000.00, 1, 0.00, 8000.00, 'Ramanathapuram', 'Ramanathapuram', '2105310005', '1', '1', 'upload_files/candidate_tracker/49701254935_santhosh.pdf', NULL, '2', '2021-06-01', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Good in basics.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-31 01:17:45', 1, '2021-05-31 01:25:02', 0, NULL, 1),
(5029, 'Avinash', '13', '6379401510', '', 'saravananavinash17@gmail.com', '1998-11-22', 22, '2', '2', 'Nallathambi', 'LI, Greater Chennai Corportion', 40000.00, 1, 0.00, 13000.00, 'Thiruvottiyur,Chennai', 'Thiruvottiyur, Chennai', '2105310006', '1', '1', 'upload_files/candidate_tracker/15917422243_avinash.docx', NULL, '3', '2021-06-01', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed', '2', '1', '', '1', '1', '', '2', '2021-06-02', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-31 01:18:12', 7, '2021-06-01 03:17:31', 0, NULL, 1),
(5030, 'Revathy', '13', '7448522577', '9884289588', 'reyanandh@gmail.com', '1997-03-12', 24, '2', '2', 'Anandhan', 'Welder', 15000.00, 2, 0.00, 12.00, 'Chennai', 'Chennai', '2105310007', '1', '1', 'upload_files/candidate_tracker/42190737942_New2021(1).pdf', NULL, '3', '2021-06-01', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not good in basics', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-05-31 02:19:23', 1, '2021-05-31 03:16:30', 0, NULL, 1),
(5031, '', '0', '8760209035', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105310008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-31 06:36:09', 0, NULL, 0, NULL, 1),
(5032, '', '0', '9363318100', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2105310009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-05-31 07:29:16', 0, NULL, 0, NULL, 1),
(5033, 'Poluri Vinod Kumar', '20', '6302149681', '', 'Vinodkumarpoluri123@gmail.com', '1997-03-24', 24, '2', '2', 'Srinivasa Rao Poluri', 'working', 3000.00, 1, 0.00, 10000.00, 'hyderabad', 'sr nagar', '2106010001', '1', '1', 'upload_files/candidate_tracker/97389758240_vinod main2.docx', NULL, '2', '2021-06-02', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'we holded him for better option but he messaged that he joined a diffrent voice non sales procedd', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-01 12:34:22', 1, '2021-06-01 12:36:16', 0, NULL, 1),
(5034, 'Ragavi', '13', '6381178867', '', 'ragavijega96@gmail.com', '1996-07-02', 24, '2', '2', 'Jegatheesan', 'Farmer', 3000.00, 1, 0.00, 10000.00, 'Thoothukudi', 'Thoothukudi', '2106010002', '1', '1', 'upload_files/candidate_tracker/51999557607_Resume.pdf', NULL, '3', '2021-06-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 12:43:36', 1, '2021-06-01 12:55:45', 0, NULL, 1),
(5035, 'Riyaz Ahamed s', '13', '6382932181', '9092928449', 'ahamedriyaz93@gmail.com', '1993-08-25', 27, '2', '1', 'Fathima Begam', 'Housewife', 34000.00, 2, 22000.00, 30000.00, 'Pondicherry', 'Pondicherry', '2106010003', '1', '2', 'upload_files/candidate_tracker/36839950003_Riyaz Ahamed.pdf', NULL, '3', '2021-06-02', 20, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 01:09:35', 1, '2021-06-01 09:00:36', 0, NULL, 1),
(5036, 'Madhumitha R', '13', '8838261893', '', 'madhu89393@gmail.com', '1999-08-12', 21, '2', '2', 'Raji G', 'cooli', 90000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2106010004', '1', '1', 'upload_files/candidate_tracker/89004840749_CV_2021-05-13-094522.pdf', NULL, '3', '2021-06-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Good in basics.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 01:32:12', 1, '2021-06-01 01:49:45', 0, NULL, 1),
(5037, 'kannan', '13', '8072268814', '9600205709', 'kannanraj02318@gmail.com', '1997-09-23', 23, '2', '2', 'rajendran', 'junior web developer', 30000.00, 1, 1.40, 25000.00, 'erode', 'erode', '2106010005', '1', '2', 'upload_files/candidate_tracker/71317786400_Kannan gr.pdf', NULL, '3', '2021-06-02', 2, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 01:45:52', 1, '2021-06-01 01:52:35', 0, NULL, 1),
(5038, 'Harshini', '16', '9884576028', '', 'harshinicu1994@gmail.com', '1994-09-01', 26, '2', '1', 'Santhosh', 'Engineer', 15000.00, 1, 25000.00, 30000.00, 'CHENNAI', 'CHENNAI', '2106010006', '1', '2', 'upload_files/candidate_tracker/5829031779_Harshini Chandrasekhar V4.1.pdf', NULL, '2', '2021-06-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very high CTC expectation, her current CTC itself 25k TH and she attended around 15 interview.Location constraint up and down 48kms.Sustainability doubt', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-01 02:24:13', 50, '2021-06-02 09:07:05', 0, NULL, 1),
(5039, 'M Jayalakshmi', '16', '9789978824', '', 'mpriyamohan.m@gmail.com', '1993-08-30', 27, '2', '2', 'A mohan', 'Auto Driver', 35000.00, 3, 20000.00, 25000.00, 'Perambur Loco , Chennai', 'Perambur Loco, Chennai', '2106010007', '1', '2', 'upload_files/candidate_tracker/12122428616_Resume.docx', NULL, '2', '2021-06-02', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 6+ yrs experience. sustainability doubt she may get marry in-between age around 27yrs.Notice 30 Days with the current company. Communication Average. She needs time to check with parents on the agreement/Document Submission', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-01 03:10:05', 50, '2021-06-02 09:07:20', 0, NULL, 1),
(5040, 'Balaji. P', '13', '9524297012', '8248261931', 'Specialmaverick7@gmail.com', '1998-06-17', 22, '2', '2', 'Pugazhendhi', 'Business', 30000.00, 1, 180000.00, 300000.00, 'Madhuranthakam', 'Madhuranthakam', '2106010008', '1', '2', 'upload_files/candidate_tracker/21645114435_updated may 21.docx', NULL, '3', '2021-06-02', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 03:28:26', 1, '2021-06-01 03:46:57', 0, NULL, 1),
(5041, 'Poulami Chanda', '16', '7439640183', '', 'pchanda6@gmail.com', '1992-08-25', 28, '2', '1', 'Ranjit Kumar Chanda', 'Retired Government Employee', 64000.00, 1, 20000.00, 26000.00, '55A SARAT GHOSH GARDEN ROAD, KOLKATA-700031', '160/34 Mangalam Colony, Anna Nagar, Chennai 600040', '2106010009', '1', '2', 'upload_files/candidate_tracker/19134559732_Poulami Chanda CV_Vedu.docx', NULL, '2', '2021-06-02', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Currently working with Byjuxquots and native of west bengal no local language.Notice Period will be around 30 days but she s not clear on the notice nd she says around 15 days. Expectation little high and sustainability with our domain is doubtful', '3', '2', '', '1', '3', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-01 05:00:34', 50, '2021-06-02 09:07:37', 0, NULL, 1),
(5042, 'Mathan', '13', '7092427776', '8778017854', 'mathanraj1033@gmail.com', '1999-05-12', 0, '2', '2', 'Gunasekaran', 'full stack developer', 3000.00, 1, 10.00, 12.00, 'chennai', 'villupuram', '2106010010', '1', '1', 'upload_files/candidate_tracker/34994965943_Resume_Mathan B.E (CSE).doc', NULL, '3', '2021-06-02', 1, '7', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 05:53:29', 1, '2021-06-01 05:54:25', 0, NULL, 1),
(5043, 'Sangavi g', '13', '9791167766', '', 'sangavi2317@gmail.com', '2006-06-01', 0, '2', '2', 'Madan Mohan G', 'Farmer', 20000.00, 1, 8500.00, 15000.00, 'Chennai', 'Chennai', '2106010011', '1', '2', 'upload_files/candidate_tracker/69614279212_SANGAVI RESUME.pdf', NULL, '3', '2021-06-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not good in technical. rejected by latha.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-01 06:44:17', 1, '2021-06-01 06:47:53', 0, NULL, 1),
(5044, 'SITHARTHAN', '4', '6369479320', '', 'panneerselvamsitharthan@gmail.com', '1998-03-10', 23, '2', '2', 'paneerselvam', 'Farmer', 150000.00, 1, 0.00, 12000.00, 'thanjavur', 'Thanjavur', '2106010012', '1', '1', 'upload_files/candidate_tracker/63053922169_Sample PDF.pdf', NULL, '2', '2021-05-17', 0, '', '3', '8', '2021-06-02', 120000.00, '', '3', '2021-07-15', '2', 'For Sidhivinayagam Team CTC - 120000 Gross - 10k TH-9.5K', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-06-01 07:31:19', 60, '2022-12-17 04:40:32', 0, NULL, 1),
(5045, 'Aparna S', '13', '6383906335', '', 'aparnassr10@gmail.com', '2000-01-10', 21, '2', '2', 'SANTHANARAMAN S', 'PA to sp in Police department', 80000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Kumbakonam', '2106020001', '1', '1', 'upload_files/candidate_tracker/85071774405_RESUME.pdf', NULL, '2', '2021-06-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-06-02 01:14:13', 1, '2021-06-02 01:22:42', 0, NULL, 1),
(5046, 'Sivarathri rakesh', '20', '7842868112', '', 'aryanrakesh960@gmail.com', '2001-06-06', 19, '2', '2', 'balraj', 'pvt contractor', 40000.00, 1, 0.00, 10000.00, 'hyderabad', 'ecil', '2106020002', '1', '1', 'upload_files/candidate_tracker/91137295099_resume 4.docx', NULL, '2', '2021-06-03', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-02 01:46:05', 1, '2021-06-02 01:47:47', 0, NULL, 1),
(5047, 'Feroz khan', '20', '9676028976', '', 'ferozkhn09@gmail.com', '2001-07-09', 19, '2', '2', 'anwarkhan', 'rtd bus driver', 12000.00, 1, 12000.00, 10000.00, 'hyderabad', 'begumpet', '2106020003', '1', '2', 'upload_files/candidate_tracker/70163984743_New Scan1.pdf', NULL, '2', '2021-06-03', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Does not have laptop and cannot offer under current situatation', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-02 02:14:47', 50, '2021-06-02 02:40:23', 0, NULL, 1),
(5048, 'Shaik Rahuman', '2', '8124927107', '9003685949', 'Shaikr1727@gmail.com', '1999-07-01', 21, '2', '2', 'M. Sabeee ahamed', 'employee', 20000.00, 1, 0.00, 10000.00, 'Tanjore', 'Tanjore', '2106020004', '1', '1', 'upload_files/candidate_tracker/95554633691_1618817977248_Shaik@cv.pdf', NULL, '3', '2021-06-26', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by gokul and selected for Mern Positions,starting their training on 2nd Jun(WFH) CTC - 98496 TH - 8000 xxamp Deductions 208', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-02 02:39:30', 1, '2021-06-02 02:50:33', 0, NULL, 1),
(5049, '', '0', '8940605606', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106020005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-02 08:22:40', 0, NULL, 0, NULL, 1),
(5050, 'rajesh k', '13', '8072059796', '9585846488', 'rajeshbvg1997@gmail.com', '1997-11-27', 23, '2', '2', 'kumar', 'driver', 18000.00, 1, 18000.00, 25000.00, 'bhuvanagiri', 'cuddalore', '2106030001', '1', '2', 'upload_files/candidate_tracker/73158524986_Rajesh 2021 new.pdf', NULL, '3', '2021-06-03', 1, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-03 12:36:18', 1, '2021-06-03 12:40:51', 0, NULL, 1),
(5051, 'rajesh g', '13', '9790767240', '', 'grajesh90@gmail.com', '1990-04-14', 31, '2', '2', 'v r gowrisankar', 'retired sr. a f a/ i c f', 10000.00, 2, 10000.00, 30000.00, 'chennai', 'chennai', '2106030002', '1', '2', 'upload_files/candidate_tracker/61665722892_Rajesh.docx', NULL, '3', '2021-06-03', 0, '', '8', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-06-04', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-03 01:50:26', 1, '2021-06-03 02:11:49', 0, NULL, 1),
(5052, '', '0', '7338850725', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106030003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-03 04:51:59', 0, NULL, 0, NULL, 1),
(5053, 'dhivya', '4', '9600890776', '9626452619', 'dhivyaduraidd1996@gmail.com', '1996-03-30', 25, '2', '2', 'maliga', 'baby seater', 6000.00, 0, 0.00, 10000.00, 'pulaiyarpeti', 'Tanjavur', '2106040001', '1', '1', 'upload_files/candidate_tracker/57713528367_RESUME DD.docx', NULL, '2', '2021-05-31', 0, '', '3', '8', '2021-06-14', 120000.00, '', '5', '1970-01-01', '2', 'For Thanjavur CTC - 120000 Included PF/ESI Deductions - TH 7805', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-04 09:24:37', 7, '2021-06-12 05:16:50', 0, NULL, 1),
(5054, 'mohan raj c g', '23', '9043726660', '', 'mohan16895@gmail.com', '1996-08-16', 24, '2', '2', 'chandhra sekar', 'weaver', 15000.00, 1, 18000.00, 27000.00, 'kanchipuram', 'kanchipuram', '2106040002', '1', '2', 'upload_files/candidate_tracker/74785205163_MohanUIDeveloper.docx', NULL, '3', '2021-06-05', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-04 10:47:59', 1, '2021-06-04 11:07:46', 0, NULL, 1),
(5055, 'Balaji V', '16', '8925050676', '', 'balg2327@gmail.com', '1995-05-27', 26, '4', '2', 'Velmurugan', 'Farmer', 10000.00, 1, 10700.00, 13000.00, 'Cuddalore', 'Cuddalore', '2106040003', '', '2', 'upload_files/candidate_tracker/16218456536_V.Balaji_Resume.pdf', NULL, '3', '2021-06-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-04 01:59:30', 1, '2021-06-04 02:06:28', 0, NULL, 1),
(5056, 'karthikeyan m', '16', '8778954241', '7299121525', 'karthikeyanm2305@gmail.com', '1995-05-23', 26, '3', '2', 'mariappan p', 'security', 9000.00, 1, 21500.00, 25000.00, 'porur chennai', 'porur chennai', '2106040004', '', '2', 'upload_files/candidate_tracker/34396933161_Resume_Karthikeyan-converted.docx', NULL, '2', '2021-06-06', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-04 02:18:10', 1, '2021-06-04 02:41:03', 0, NULL, 1),
(5057, 'Harikaran', '26', '9087591058', '9940393877', 'harikaranliven@gmail.com', '1999-01-30', 22, '4', '2', 'MAHALAKSHMI P', 'House wife', 30000.00, 1, 11000.00, 17000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2106040005', '', '2', 'upload_files/candidate_tracker/51849506955_HARIKARAN RESUME_1.docx', NULL, '3', '2021-06-04', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-04 02:40:25', 1, '2021-06-04 02:48:29', 0, NULL, 1),
(5058, 'Jayaprakash', '16', '9500293352', '8248788225', 'chandranjp122@gmail.com', '1997-08-05', 23, '2', '2', 'Punitha', 'Housewife', 16000.00, 1, 16000.00, 20000.00, 'Kumbakonam', 'Kodambakkam', '2106040006', '1', '2', 'upload_files/candidate_tracker/54522223033_jayaprakash k.PDF', NULL, '3', '2021-06-05', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-04 02:50:14', 1, '2021-06-04 02:56:20', 0, NULL, 1),
(5059, 'Ragupathi', '16', '7010199634', '8124574985', 'joeragu06@gmail.com', '1997-12-24', 23, '2', '2', 'Saravanan', 'Building contractor', 45000.00, 1, 250000.00, 400000.00, 'Chennai', 'Chennai', '2106040007', '1', '2', 'upload_files/candidate_tracker/75768132637_Ragupathi_Resume_MIS.DOCX', NULL, '2', '2021-06-05', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-04 04:46:04', 1, '2021-06-04 05:07:20', 0, NULL, 1),
(5060, '', '0', '7401452129', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106040008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-04 06:19:37', 0, NULL, 0, NULL, 1),
(5061, 'johns patrick', '4', '6374834890', '9003045988', 'johnsonp579@gmail.com', '1999-06-21', 21, '2', '2', 'jenith william', 'catering', 15000.00, 1, 0.00, 10000.00, 'thirumalivayul', 'Thirumalivayul', '2106050001', '1', '1', 'upload_files/candidate_tracker/79257191743_john-converted.pdf', NULL, '2', '2021-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 08:38:27', 1, '2021-06-05 08:42:43', 0, NULL, 1),
(5062, 'nandhini', '4', '7200231533', '', 'nandhinimar22@gmail.com', '1997-03-04', 24, '2', '2', 'rajasekar', 'working', 13000.00, 1, 0.00, 10000.00, 'thirupur', 'nungambakkam', '2106050002', '1', '1', 'upload_files/candidate_tracker/57086919374_Nandhini_Rajasekar.PDF', NULL, '3', '2021-06-05', 0, '', '3', '59', '2021-06-10', 132000.00, '', '', '1970-01-01', '2', 'Selected for Tnagar with 10450 TH Cash Mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 09:00:34', 7, '2021-06-09 04:11:02', 0, NULL, 1),
(5063, '', '0', '9988776655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106050003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-05 09:17:57', 0, NULL, 0, NULL, 1),
(5064, 'Aruna', '4', '8056986783', '', 'arunasrinivasan1994@gmail.com', '1994-09-29', 26, '2', '2', 'Srinivasan', 'Sanitary worker', 1.00, 1, 12000.00, 120000.00, 'Thiruvallur', 'Thiruvallur', '2106050004', '1', '2', 'upload_files/candidate_tracker/77009546320_abc.docx', NULL, '2', '2021-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 09:26:51', 1, '2021-06-05 09:30:50', 0, NULL, 1),
(5065, 'suresh', '4', '9003207960', '7358197308', 'surez.rtr@gmail.com', '1996-04-18', 25, '2', '2', 'venu', 'electrition', 15000.00, 1, 17000.00, 20000.00, 'ayanavaram', 'chennai', '2106050005', '1', '2', 'upload_files/candidate_tracker/57970181675_Suresh Venu.docx', NULL, '2', '2021-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 09:33:15', 1, '2021-06-05 09:38:37', 0, NULL, 1),
(5066, 'Sneha B', '4', '7305467559', '9003928846', 'snehaprasath211@gmail.com', '2001-01-02', 20, '2', '1', 'Tamilalagan', 'Builder', 30000.00, 2, 0.00, 11000.00, 'No 3/25 mgr nagar 3 rd Cross st velachery', 'No 3/25mgr Nagar 3 rd Cross st velachery', '2106050006', '1', '1', 'upload_files/candidate_tracker/6348821655_Sneha_Professional Resume – 01.pdf', NULL, '2', '2021-06-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-05 10:05:59', 1, '2021-06-05 11:59:45', 0, NULL, 1),
(5067, 'GADDA VASANTH KUMAR', '5', '8099139945', '', 'johnwesley10000@gmail.com', '1994-08-26', 26, '2', '1', 'raju', 'carpenter', 20000.00, 1, 23000.00, 30000.00, 'hyderabad', 'amirpet', '2106050007', '1', '2', 'upload_files/candidate_tracker/53072381139_Resume (10).pdf', NULL, '2', '2021-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Keep on postponing the call shows not interestde for the role', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 10:39:54', 1, '2021-06-05 10:42:07', 0, NULL, 1),
(5068, 'Harish Reddy', '5', '9989350420', '', 'pharishreddy96@gmail.com', '1996-08-12', 24, '2', '2', 'krishna reddy', 'politician', 150000.00, 1, 0.00, 25000.00, 'hyderabad', 'gachibowli', '2106050008', '1', '1', 'upload_files/candidate_tracker/75466072275_pharish-1 (1).docx', NULL, '2', '2021-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'RNR Tried multiple times and no call back also', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 11:05:16', 1, '2021-06-05 11:12:49', 0, NULL, 1),
(5069, 'Adarsh', '5', '7386485422', '', 'adarshgoud32@gmail.com', '1999-09-04', 21, '2', '2', 'yadagiri goud', 'rtd', 80000.00, 1, 18000.00, 25000.00, 'hyderabad', 'hyath nagar', '2106050009', '1', '2', 'upload_files/candidate_tracker/96056936894_Adarsh Resume 03-02-21.pdf', NULL, '2', '2021-06-07', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Didnxquott attend the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 02:11:33', 1, '2021-06-05 02:13:41', 0, NULL, 1),
(5070, 'LAVUDI VIJAY', '5', '9010102691', '', 'lavudivijay158@gmail.com', '1994-03-21', 27, '2', '2', 'coolya', 'paased away', 30000.00, 4, 21000.00, 25000.00, 'hyderabad', 'takkaguda', '2106050010', '1', '2', 'upload_files/candidate_tracker/80263932625_-422878177.docx', NULL, '2', '2021-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'he is much into research,will not sustain for a long n sales.No target n previous company and he canxquott handle our pressure', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 03:20:01', 1, '2021-06-05 03:23:16', 0, NULL, 1),
(5071, 'sainathbatte', '5', '9666057957', '', 'sainathbatte@gmail.com', '1992-06-11', 28, '2', '1', 'eshawariah', 'rtd', 60000.00, 1, 22000.00, 25000.00, 'hyderabad', 'uppal', '2106050011', '1', '2', 'upload_files/candidate_tracker/30491770566_Sainath Batte Resume.pdf', NULL, '2', '2021-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'RNR Tried Multiple Times And No Call Back Also', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-05 03:43:43', 1, '2021-06-05 03:45:53', 0, NULL, 1),
(5072, '', '0', '9840834954', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106070001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-07 11:50:29', 0, NULL, 0, NULL, 1),
(5073, 'rajalakshmi s', '16', '9840401103', '', 'srajalakshmi_ece@yahoo.com', '1992-05-26', 29, '2', '1', 'harish kumar k', 'senior manager - tata communications', 100000.00, 1, 55000.00, 25000.00, 'chennai', 'trichy', '2106070002', '1', '2', 'upload_files/candidate_tracker/50110408907_Rajalakshmi Resume.pdf', NULL, '2', '2021-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High Exp Into Inside Sales,Will Be A Fresher For This Mis Position.Her Current Ctc Was 7 Lpa And Open For 3 Lpa.Recently Married And Says Ok For Sa,But We Canxquott Expect Her For A Long Stay. Communication S Good', '3', '1', '', '1', '1', '', '2', '2021-06-14', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-07 12:46:13', 50, '2021-06-08 09:24:41', 0, NULL, 1),
(5074, 'Sanjeevinarayana', '16', '8610573808', '', 'sanjeevigv154@gmail.com', '1997-04-04', 24, '2', '2', 'Srinivasarao', 'TNEB driver', 30000.00, 1, 19500.00, 27000.00, 'Padi Chennai', 'Padi Chennai', '2106070003', '1', '2', 'upload_files/candidate_tracker/15102591564_Sanjeevi resume 2020.pdf', NULL, '3', '2021-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, no relevant Experience, have experience as a process associate.Expectation is very high. done interview with Gokul also', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-07 12:59:40', 50, '2021-06-07 02:07:55', 0, NULL, 1),
(5075, 'JANAKIRAMAN S', '16', '9551701405', '9952083262', 'ramanraj.1893@gmail.com', '1993-07-01', 27, '2', '2', 'P.Selvaraj ( late)', 'Home maid', 15000.00, 2, 13790.00, 20000.00, 'Perumbakkam, Chennai', 'Perumbakkam, Chennai', '2106070004', '1', '2', 'upload_files/candidate_tracker/16641363736_Resume.docx', NULL, '3', '2021-06-08', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected,Communication very average,not open for SA, Expected salary s high.Will not sustain for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-07 02:31:31', 50, '2021-06-08 09:24:55', 0, NULL, 1),
(5076, 'Vijayaragavan N', '5', '9840834854', '', 'ragavan0623@gmail.com', '1992-01-06', 29, '1', '1', 'Padma R', 'House Wife', 23000.00, 0, 23000.00, 26000.00, 'Chennai', 'Chennai', '2106070005', '', '2', 'upload_files/candidate_tracker/80742431496_Vijayaragavan updated.docx', NULL, '2', '2021-06-07', 0, '55567', '3', '60', '2021-06-14', 360000.00, '', '', '2022-11-25', '1', 'Selected for Chennai RM- Santhosh Team -With CTC 3.6 LPA includes PF/PT deductions in Patroniss', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-07 02:51:53', 60, '2021-06-12 11:33:53', 0, NULL, 1),
(5077, 'N.A.VENKATESULU', '26', '9000666560', '6302124714', 'venkatesulu.na@gmail.com', '1986-06-16', 34, '2', '1', 'N. Ramulamma', 'House Wife', 19000.00, 1, 19100.00, 25000.00, 'Elakatur', 'Poonamalli', '2106070006', '1', '2', 'upload_files/candidate_tracker/82930098823_Resume.pdf', NULL, '2', '2021-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain for a long, career gap and he will handle the pressure and not suits for our company', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-07 02:57:04', 50, '2021-06-08 09:25:09', 0, NULL, 1),
(5078, 'Bharath Kumar', '5', '7036163619', '', 'bharathgkumar0312@gmail.com', '1997-07-03', 23, '2', '2', 'manohar', 'phtographer', 30000.00, 2, 0.00, 20000.00, 'hyderabad', 'secundrabad', '2106080001', '1', '1', 'upload_files/candidate_tracker/61738421077_resume (11).pdf', NULL, '2', '2021-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'For CRM roles responsibility he is not much interested and he much prefers for sales profile,but the salary expectation is very being a fresher.Exp 25k and he needs time to think.Sustainability doubt on his profile.', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-08 10:23:24', 1, '2021-06-08 10:26:08', 0, NULL, 1),
(5079, 'Mohammed Irfan', '5', '8686655770', '', 'mdirfan1450@gmail.com', '1995-07-14', 25, '2', '2', 'mhmd zaheer', 'pvt employee', 25000.00, 2, 20000.00, 25000.00, 'hyderabad', 'miapur', '2106080002', '1', '2', 'upload_files/candidate_tracker/67808743946_mohd irfan resume...pdf', NULL, '2', '2021-06-09', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-08 12:32:11', 1, '2021-06-08 12:41:35', 0, NULL, 1),
(5080, 'Faisal Khalid Bafana', '5', '7032667832', '', 'faisalbafana47@gmail.com', '1999-03-04', 22, '2', '2', 'kalid bafana', 'working', 40000.00, 2, 0.00, 11000.00, 'hyderabad', 'kinkoti', '2106090001', '1', '1', 'upload_files/candidate_tracker/73047286530_RESUME inter.docx', NULL, '2', '2021-06-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 09:25:00', 1, '2021-06-09 09:29:05', 0, NULL, 1),
(5081, 'gokulnathan', '13', '7904209867', '9791650048', 'gokulelumalai386@gmail.com', '1998-05-19', 23, '2', '2', 'elumalai', 'farmer', 60000.00, 1, 0.00, 240000.00, 'tiruvannamalai', 'tiruvannamalai', '2106090002', '1', '1', 'upload_files/candidate_tracker/42406615581_Resume.docx', NULL, '3', '2021-06-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1008', '0', NULL, NULL, NULL, 1, '2021-06-09 09:28:47', 1, '2021-06-09 09:51:30', 0, NULL, 1),
(5082, 'Vallabhu Siva', '5', '8099337486', '', 'Vallabhusiva@gmail.com', '1993-09-24', 27, '2', '2', 'vallabu nagavarma', 'carpenter', 30000.00, 1, 18000.00, 20000.00, 'hyderabad', 'kompally', '2106090003', '1', '2', 'upload_files/candidate_tracker/93465201924_Vallabhu RESUME .doc', NULL, '2', '2021-06-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain and very poor performance during interview', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 09:46:15', 1, '2021-06-09 09:49:13', 0, NULL, 1),
(5083, 'Golla Ashwanth', '5', '8897974692', '', 'ashwanthashu29@yahoo.in', '1992-08-10', 28, '2', '1', 'golla ramchander', 'rtd employee', 50000.00, 1, 18000.00, 25000.00, 'hyderabad', 'miapur', '2106090004', '1', '2', 'upload_files/candidate_tracker/3772186196_Ashwanth Resume 2 (1)-converted.pdf', NULL, '2', '2021-06-10', 0, '', '3', '60', '2021-06-14', 270000.00, '', '5', '1970-01-01', '1', 'Selected for Hyderabad CTC - 2.7LPA includes PF/ESI Deductions', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 10:06:14', 60, '2021-06-11 06:24:47', 0, NULL, 1),
(5084, 'rohihkumar. racharla', '5', '8187807045', '', 'radacademy45rad@gmail.com', '1998-01-06', 23, '2', '2', 'srinivas', 'working', 20000.00, 0, 22000.00, 25000.00, 'hyderabad', 'kuketpally', '2106090005', '1', '2', 'upload_files/candidate_tracker/42716064165_hitman.pdf', NULL, '2', '2021-06-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain and will not suit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 10:56:02', 1, '2021-06-09 10:59:07', 0, NULL, 1),
(5085, 'Jakka Teja Sai', '5', '8978812308', '', 'saitejajakka@gmail.com', '1996-06-06', 25, '2', '2', 'srinivasalu', 'farmer', 50000.00, 2, 16000.00, 25000.00, 'hyderabad', 'uppal', '2106090006', '1', '2', 'upload_files/candidate_tracker/3553256676_my cv teja2 (1).pdf', NULL, '2', '2021-06-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-09 11:23:48', 1, '2021-06-09 11:27:10', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5086, 'thiyagarajan', '4', '8072762772', '8056282166', 'thiyagarajan1391@gmail.com', '1997-08-22', 23, '2', '2', 'jayakumar', 'business', 10000.00, 1, 0.00, 1000.00, 'thirumalaivayul', 'Thirumalaivayul', '2106090007', '1', '1', 'upload_files/candidate_tracker/94763731848_thiyagarajan resume 2.pdf', NULL, '2', '2021-06-08', 0, '', '3', '59', '2021-06-10', 126000.00, '', '', '1970-01-01', '1', 'Selected for Tiruvallur Location with 9975 TH Cash Mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-09 03:26:57', 7, '2021-06-09 04:04:03', 0, NULL, 1),
(5087, 'jagadesh', '4', '8248623608', '7558101021', 'jagdesan.p123@gmail.com', '2001-05-12', 20, '2', '2', 'mala', 'accountant', 7000.00, 0, 0.00, 10000.00, 'thiruvallur', 'Thiruvallur', '2106090008', '1', '1', 'upload_files/candidate_tracker/49412411517_RESUME (11).pdf', NULL, '2', '2021-06-08', 0, '', '3', '60', '2021-06-10', 120000.00, '', '3', '2021-06-12', '1', 'Selected for Tiruvallur with CTC 120000 includes PF/PT/ESI Deductions', '1', '2', '1', '4', '6', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-09 03:34:00', 60, '2021-06-09 08:04:09', 0, NULL, 1),
(5088, 'vasanth', '4', '9994231220', '9443073136', 'vasanthvictor333@gmail.com', '1999-09-30', 21, '2', '2', 'karthikeyan', 'business', 12000.00, 1, 0.00, 10000.00, 'aarakonam', 'Thiruvallur', '2106090009', '1', '1', 'upload_files/candidate_tracker/25796124607_VASANTH KUMAR K B.E Resume.pdf', NULL, '2', '2021-06-08', 0, '', '3', '59', '2021-06-10', 120000.00, '', '', '1970-01-01', '1', 'Selected for Tiruvallur with 9500 TH cash Mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-09 03:41:57', 7, '2021-06-09 04:04:29', 0, NULL, 1),
(5089, 'suvetaa s', '4', '9962903679', '', 'suvetaa1998@gmail.com', '1998-11-02', 22, '2', '2', 'srinivasan l', 'photographer', 9000.00, 1, 0.00, 10000.00, 'chennai', 'triplicane', '2106090010', '1', '1', 'upload_files/candidate_tracker/17531225204_Suvetaa Resume.pdf', NULL, '2', '2021-06-04', 0, '', '3', '59', '2021-06-10', 120000.00, '', '', '1970-01-01', '1', 'Selected for Tnagar with 9500 TH cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-09 04:59:02', 7, '2021-06-09 05:26:24', 0, NULL, 1),
(5090, '', '0', '7708604511', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106090011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-09 05:36:51', 0, NULL, 0, NULL, 1),
(5091, 'Salman Khan', '4', '7845798509', '', 'salmansnk97@gmail.com', '1997-08-28', 23, '2', '2', 'Nabikhan', 'No job', 0.00, 1, 22.00, 0.00, 'Ambur', 'Kodambakkam', '2106090012', '1', '2', 'upload_files/candidate_tracker/32721806096_Salman Resume.doc', NULL, '3', '2021-06-09', 0, '', '3', '60', '2021-06-10', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Tnagar location,CTC 156000 Gross - 13000 with PF/PT deductions', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-09 05:38:20', 60, '2021-06-09 08:03:23', 0, NULL, 1),
(5092, 'raj.r', '4', '8939579293', '', 'mathewmass1509@gmail.com', '2000-08-02', 20, '2', '2', 'p.ramprakasha', 'worker', 35000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2106090013', '1', '2', 'upload_files/candidate_tracker/46279710544_Resume_Raj_Format5 updated resume (1) (3).docx', NULL, '2', '2021-06-10', 0, '', '3', '59', '2021-06-10', 138948.00, '', '0', NULL, '1', 'Selected for T.Nagar with 11000 TH Cash Mode', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-09 05:43:48', 1, '2021-06-09 05:49:17', 0, NULL, 1),
(5093, 'Naveen', '5', '9515385143', '', 'naveen.navi564@gmail.com', '1995-06-05', 26, '2', '2', 'janarthan', 'working', 15000.00, 0, 20000.00, 25000.00, 'hyderabad', 'kuketpally', '2106100001', '1', '2', 'upload_files/candidate_tracker/67644840392_Naveen resume (1).pdf', NULL, '2', '2021-06-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Rejected', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 09:29:43', 1, '2021-06-10 09:33:03', 0, NULL, 1),
(5094, 'Shiva Manchoju', '5', '9701431723', '', 'shivamanchoju@gmail.com', '1994-03-30', 27, '2', '2', 'haniumathachari', 'carpenter', 25000.00, 2, 25000.00, 27000.00, 'hyderabad', 'shamirpet', '2106100002', '1', '2', 'upload_files/candidate_tracker/82022875425_M Shiva Resume.docx', NULL, '2', '2021-06-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'He is not willing to work on sundays', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 10:18:05', 1, '2021-06-10 10:21:17', 0, NULL, 1),
(5095, 'Vadnala mallesh', '5', '9966776817', '', 'vmallesh.vm42@gmail.com', '1993-05-15', 28, '2', '1', 'vekataiah', 'not working', 40000.00, 2, 12000.00, 23000.00, 'hyderabad', 'panjakota', '2106100003', '1', '2', 'upload_files/candidate_tracker/12771887858_V.MALLESH 2019(1).pdf', NULL, '2', '2021-06-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'rejected', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 10:23:19', 1, '2021-06-10 10:25:55', 0, NULL, 1),
(5096, 'Kaniganti.Prashanth Kumar', '5', '8897848586', '', 'prashanthkaniganti@gmail.com', '1995-07-16', 25, '2', '2', 'venkataiah', 'passed away', 10000.00, 2, 21000.00, 25000.00, 'hyderabad', 'secundrabad', '2106100004', '1', '2', 'upload_files/candidate_tracker/66303669309_1621682334796Resume_Kaniganti (1).docx', NULL, '2', '2021-06-11', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 12:11:54', 1, '2021-06-10 12:13:52', 0, NULL, 1),
(5097, 'Girija R', '16', '7550151504', '7550151503', 'girijasureshkumar2602@gmail.com', '1991-06-04', 30, '2', '1', 'V Suresh Kumar', 'Officer in Engineering department in DP World CCTL', 32000.00, 2, 15000.00, 17000.00, 'No.1, 6th street Asirvadhapuram Pulianthope Ch-12', 'No.1, 6th Street Asirvadhapuram Pulianthope Ch-12', '2106100005', '1', '2', 'upload_files/candidate_tracker/19080774331_Girija R - Resume updated.docx', NULL, '2', '2021-06-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'I spoke with this candidate in the month of March and rejected this profile. She will not sustain for a long with our domain. Career Gap in between as she traveled to Dubai with her husband and she attended many interviews past 3 months and none got selected.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 12:32:52', 50, '2021-06-11 02:36:45', 0, NULL, 1),
(5098, 'Vivedha', '16', '7358300303', '', 'vivedhavenugopal2023@gmail.com', '1995-07-23', 25, '2', '1', 'Sivaraj', 'Developer', 400000.00, 1, 250000.00, 400000.00, 'Chennai', 'Chennai', '2106100006', '1', '2', 'upload_files/candidate_tracker/31792174039_Vivedha M Resume.pdf', NULL, '2', '2021-06-11', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good, Currently working in the Murugappa group and the official notice is 30 days.She is getting her increment by next month. Recently got married and she is not fine with the SA as she may take a break in between.', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 12:35:29', 50, '2021-06-11 02:37:36', 0, NULL, 1),
(5099, 'B HEMAKUMAR', '16', '9361475589', '', 'hemakumar2494@gmail.com', '1994-11-24', 26, '2', '2', 'BOOPALAN', 'RETIRED', 15000.00, 2, 12000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2106100007', '1', '2', 'upload_files/candidate_tracker/77955583107_HEMAKUMAR.docx', NULL, '2', '2021-06-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Seems not much active will not handle the pressure.No knowledge on the MIS and not clear with the position. He will not sustain for long with us in their role. He is much into BGV process', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 12:36:51', 50, '2021-06-11 02:37:09', 0, NULL, 1),
(5100, '', '0', '8428936070', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106100008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-10 01:09:56', 0, NULL, 0, NULL, 1),
(5101, 'Kavya', '16', '7010051285', '8428936070', 'kavya023ramesh@gmail.com', '1997-06-23', 23, '2', '2', 'Ramesh', 'Transaction associate', 80000.00, 1, 19000.00, 25000.00, 'Chennai', 'Chennai', '2106100009', '1', '2', 'upload_files/candidate_tracker/80887589191_kavya resume.pdf', NULL, '2', '2021-06-11', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Currently Working 2 months of the notice period, Not open for SA as she may get married in next 1 yr of time and this month she got increment and expects more on the package from us. Will not sustain for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-10 01:48:20', 50, '2021-06-11 02:37:21', 0, NULL, 1),
(5102, 'Lokesh Kumar', '16', '8678974541', '8778111388', 'lokeshavi.1904@gmail.com', '1996-04-19', 25, '2', '2', 'Kamalakannan.J', 'Wall paper jewellery', 35000.00, 1, 15500.00, 19000.00, 'Chennai', 'Chennai', '2106110001', '1', '2', 'upload_files/candidate_tracker/75262352596_Lokesh%20update%20resume.docx', NULL, '2', '2021-06-12', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,50/50 Can Give A Try For MIS But He Is Currently Working And His Notice Period Is 30 Days. He Is Having Backend Support In The Banking Domain. The Only Thing Is Notice 30 Days If We Offer Him Not Sure About His Joining.', '3', '1', '', '1', '3', '', '2', '2021-07-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 11:51:56', 50, '2021-06-11 12:08:41', 0, NULL, 1),
(5103, 'Soniya', '16', '7010142021', '8189879890', 'sonumath50@gmail.com', '1997-06-28', 23, '4', '2', 'M.kuppan', 'Supervisor', 35000.00, 2, 15000.00, 15000.00, 'Chennai', 'Chennai', '2106110002', '', '2', 'upload_files/candidate_tracker/61955257041_soniya resume.docx', NULL, '3', '2021-06-12', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, Having around 2+yrs of experience with 4 companies.No Sustainability, and her profile is fully into the voice process. She felt pressure in her previous companies.Her marriage has been fixed,due to lockdown its getting delay.Will not sustain with us for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-11 11:58:25', 50, '2021-06-11 12:16:10', 0, NULL, 1),
(5104, 'anvesh reddy', '5', '9705504552', '', 'anveshreddy7842@gmail.com', '1997-09-13', 23, '2', '1', 'arpitha', 'house wife', 70000.00, 2, 25000.00, 25000.00, 'hyderabad', 'kuketpally', '2106110003', '1', '2', 'upload_files/candidate_tracker/26385283933_Anvesh reddy Resume (1).docx', NULL, '2', '2021-06-12', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'he is not interested in insurance profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 12:02:13', 1, '2021-06-11 12:04:14', 0, NULL, 1),
(5105, 'syed khaja ehtesham', '5', '6300576578', '', 'syedehtesham67691@gmail.com', '1998-05-13', 23, '2', '2', 'syed khaja mosequeein', 'working', 100000.00, 2, 0.00, 20000.00, 'hyderabad', 'mehandhipatnam', '2106110004', '1', '1', 'upload_files/candidate_tracker/56577123254_EHTESHAM.pdf', NULL, '2', '2021-06-12', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Tried reaching his but not responding', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 12:42:50', 1, '2021-06-11 12:47:55', 0, NULL, 1),
(5106, 'Prakash Deshni', '5', '9676679414', '', 'prakashdeshinii9@gmail.com', '1996-02-04', 25, '2', '2', 'iyllaiah', 'own business and farmer', 100000.00, 2, 25000.00, 27000.00, 'hyderabad', 'kuketpally', '2106110005', '1', '2', 'upload_files/candidate_tracker/42779580171_PRAKASH RESUME-1.docx', NULL, '2', '2021-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,3yrs with 3 companies into Liquor Product Sales.Fresher for our role.Doubtful in handling our sales.Sustainability doubts on this profile. Since their family is not comfortable with liquor sales, he is looking for a different domain. Will not handle our pressure.', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 12:56:50', 1, '2021-06-11 01:01:26', 0, NULL, 1),
(5107, 'Mahesh Rambala', '5', '7207297693', '', 'maheshrambala123@gmail.com', '1998-06-09', 23, '2', '2', 'RambalaSubramaniam', 'working', 50000.00, 0, 0.00, 23000.00, 'hyderabad', 'kondapur', '2106110006', '1', '1', 'upload_files/candidate_tracker/23451186493_0_1616509078262Resume_Mahesh.pdf', NULL, '2', '2021-06-12', 0, '', '3', '59', '2021-06-17', 286000.00, '', '6', '2022-06-17', '1', 'Selected for veben Team with CTC - 286000 includes PF/PT in Patroniss as a staff', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 01:16:19', 60, '2021-06-15 03:50:30', 0, NULL, 1),
(5108, 'Dasi Gopi', '5', '9603061162', '', 'gopidasi9640@gmail.com', '1993-11-27', 27, '2', '2', 'bhupal', 'late', 10000.00, 1, 20000.00, 25000.00, 'hyderabad', 'lb nagar', '2106110007', '1', '2', 'upload_files/candidate_tracker/94932862945_Gopi Dasi Re (1).docx', NULL, '2', '2021-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication. Only local Language. He is not responding to the meet cal and sending a message stating that he is not comfortable with this position.', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-11 02:30:33', 1, '2021-06-11 02:32:50', 0, NULL, 1),
(5109, 'Innayathullah', '16', '9884256702', '7397257742', 'inayathkhan2415@yahoo.com', '1994-04-29', 27, '3', '2', 'Ubadullah', 'Tailor', 300000.00, 2, 18000.00, 20000.00, 'Chennai', 'Perambur', '2106110008', '', '2', 'upload_files/candidate_tracker/96432418022_Inayathkhan Cv.pdf', NULL, '1', '2021-06-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Communicating in English he prefers to speak only in Tamil, No experience and knowledge on the MIS part, Fresher for this role. Have experience using SAP FICO. Not much comfortable with the Service Agreement, he can give his acceptance for SA only based on the salary. His current TH is 18k.Sustainability doubts on the profile', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-11 02:52:32', 60, '2021-06-14 05:33:39', 0, NULL, 1),
(5110, 'Gayathri YS', '16', '9566132708', '', 'Gayu.ys@gmail.com', '1995-03-28', 26, '4', '1', 'Saravanan M', 'Cine Dancer', 30000.00, 2, 2.76, 3.50, 'Vadaplani', 'saligramam', '2106110009', '', '2', 'upload_files/candidate_tracker/37495026071_Gayathri resume with 3yrs of experience in finance executive.pdf', NULL, '1', '2021-06-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Is Ok,3.5 Yrs With 3 Companies And Much Into Finance Positions.She Says Ok With The Agreement But Not Sure About The Long Stay As She Got Married A Year Back, She May Take A Break. Her CTC Is 2.7 LPA And The Expectation Is Around 3 LPA. ', '3', '2', '0', '1', '1', '0', '2', '2021-06-21', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-11 04:17:46', 1, '2021-06-11 04:25:35', 0, NULL, 1),
(5111, 'Shashidhar Reddy Aileni', '5', '9908543537', '', 'shashireddy3537@gmail.com', '1994-12-30', 26, '2', '2', 'tadma reddy', 'late', 35000.00, 1, 23000.00, 26000.00, 'hyderabad', 'uppal', '2106120001', '1', '2', 'upload_files/candidate_tracker/99850909479_shashi%20resume3537.docx', NULL, '2', '2021-06-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-12 10:34:26', 1, '2021-06-12 10:37:03', 0, NULL, 1),
(5112, 'Puranjaya Sahu', '5', '7416657738', '', 'puranjaya94@gmail.com', '1995-05-25', 26, '2', '2', 'prakash chandra sahu', 'rtd', 35000.00, 1, 13500.00, 25000.00, 'hyderabad', 'secundrabad', '2106120002', '1', '2', 'upload_files/candidate_tracker/9149054022_Puranjaya_CV.pdf', NULL, '2', '2021-06-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-12 11:14:49', 1, '2021-06-12 11:18:32', 0, NULL, 1),
(5113, 'revathi', '4', '6379358841', '', 'revsri75@gmail.com', '2000-04-05', 21, '2', '2', 'Maruthakasi.S', 'farmer', 24000.00, 0, 0.00, 12000.00, 'pallavaram', 'chennai', '2106120003', '1', '1', 'upload_files/candidate_tracker/48206377372_Revathi1.pdf', NULL, '2', '2021-08-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 3m exp in car showroom, Body Language and way of speaking is not good. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-12 11:24:18', 7, '2021-08-17 06:03:44', 0, NULL, 1),
(5114, 'karthika', '20', '9025463563', '', 'karthikadhani20169_w55@indeedemail.com', '2001-05-07', 20, '2', '2', 'rajesh', 'business', 15000.00, 1, 0.00, 10000.00, 'Trichy', 'trichy', '2106120004', '1', '1', 'upload_files/candidate_tracker/38198932654_ResumeKARTHIKAR.pdf', NULL, '2', '2021-06-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Switched OFF', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-12 01:34:48', 8, '2021-06-12 04:51:47', 0, NULL, 1),
(5115, 'mohamed sidik', '4', '9003834878', '9626944097', 'kmsithick@gmai.com', '1998-08-08', 0, '2', '2', 'kamaludhini', 'business', 12000.00, 2, 0.00, 10000.00, 'pudhalur', 'tanjavur', '2106120005', '1', '1', 'upload_files/candidate_tracker/8907650825_abu.pdf', NULL, '2', '2021-06-03', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Lockdown Period Hold Long Pending ', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-12 01:46:59', 7, '2021-06-12 04:53:58', 0, NULL, 1),
(5116, 'J. Indrani', '16', '7338812601', '', 'indraniindu95@gmail.com', '1995-06-13', 25, '3', '1', 'R. Jothiprakash', 'Car driver', 18000.00, 2, 19500.00, 25000.00, 'Old washermenpet chennai', 'Old washermenpet chennai', '2106120006', '', '2', 'upload_files/candidate_tracker/92235048947_Resume-1.doc', NULL, '3', '2021-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok.she is into reconciliation process and her interest also towards the same.For MIS fresher and not much comfortable with SA as she got married few months back.Not much very active in the call.Sustainability doubts.Rejected', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-12 02:12:52', 1, '2021-06-12 03:09:34', 0, NULL, 1),
(5117, 'KHETHAVATH ARUN KUMAR', '5', '9010124161', '', 'khethavatharunkumar@adc.edu.in', '1997-01-24', 24, '2', '2', 'sardar', 'farmer', 10000.00, 2, 20000.00, 25000.00, 'hyderabad', 'miapur', '2106120007', '1', '2', 'upload_files/candidate_tracker/40260315463_Copy of ARUN KUMAR.pdf', NULL, '2', '2021-06-14', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'rejected', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-12 03:43:15', 1, '2021-06-12 03:46:40', 0, NULL, 1),
(5118, '', '0', '7904654543', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106120008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-12 04:23:46', 0, NULL, 0, NULL, 1),
(5119, 'deenadhayalan', '4', '7904645435', '7200606132', 'deenadhayalansurya@gmail.com', '1999-07-18', 21, '2', '2', 'dharshana moorthy', 'business', 15000.00, 1, 0.00, 1000.00, 'thiruvallur', 'thiruvallur', '2106120009', '1', '1', 'upload_files/candidate_tracker/13054223450_deenapdf.pdf', NULL, '2', '2021-06-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-12 05:13:16', 1, '2021-06-12 05:20:30', 0, NULL, 1),
(5120, 'SARAVANAN S', '4', '9150607994', '', 'saravanansv17899@gmail.com', '1999-08-17', 21, '2', '2', 'Selvam', 'Farmer', 8000.00, 2, 0.00, 11000.00, 'Jayamkondam', 'Chennai', '2106120010', '1', '1', 'upload_files/candidate_tracker/59566513344_Resume.pdf', NULL, '2', '2021-06-12', 0, '', '3', '60', '2021-06-14', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Chennai Suriya Elite Team with CTC 120000 TH-9500 Cash mode Joining Date-14-Jun-2021', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-12 06:57:50', 60, '2021-06-14 12:52:31', 0, NULL, 1),
(5121, 'Saikumar Muddam', '5', '7032438611', '', 'muddamsaikumar98@gmail.com', '1998-07-25', 22, '2', '2', 'kishan', 'farmer', 15000.00, 1, 0.00, 15000.00, 'hyderabad', 'mehandhipatnam', '2106140001', '1', '1', 'upload_files/candidate_tracker/81545389392_mba resume.pdf', NULL, '2', '2021-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,he donxquott have interest towards the insurance domain.Rejected', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 11:13:12', 1, '2021-06-14 11:16:00', 0, NULL, 1),
(5122, 'SivaSathya s', '4', '7826041775', '8015828108', 'Ananthsiva9795@gmail.com', '1997-03-08', 24, '4', '2', 'A.selvaraj', 'Security', 7000.00, 1, 11.00, 13.00, 'Srimushnam', 'Chennai', '2106140002', '', '2', 'upload_files/candidate_tracker/17418034440_CV_2020-12-19-090336.pdf', NULL, '2', '2021-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-14 01:40:10', 1, '2021-06-14 01:50:47', 0, NULL, 1),
(5123, 'Vedanth Kulkarni', '5', '6304582810', '', 'vedanthkulkarnibond@gmail.com', '1998-11-03', 22, '2', '2', 'Ganesh Kulkarni', 'working', 30000.00, 1, 0.00, 20000.00, 'hyderabad', 'ramanthapur', '2106140003', '1', '1', 'upload_files/candidate_tracker/67897344993_1.docx', NULL, '2', '2021-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, Working In Hospital Handling The Coordination Part, He Is Into A Contract And Notice Period Is 30 Days. Seems Not Much Comfortable With The Insurance Domain.', '5', '1', '0', '3', '4', '0', '2', '2021-06-16', '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 02:08:36', 1, '2021-06-14 02:13:55', 0, NULL, 1),
(5124, 'Konka Suman', '5', '9703529979', '', 'sumankonka45@gmail.com', '1992-06-04', 29, '2', '2', 'chinnaiah', 'working', 40000.00, 1, 16000.00, 20000.00, 'hyderabad', 'secundrabad', '2106140004', '1', '2', 'upload_files/candidate_tracker/34125754501_suman resume (1).pdf', NULL, '2', '2021-06-15', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not fit', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 02:16:17', 1, '2021-06-14 02:37:37', 0, NULL, 1),
(5125, 'sivasathya', '4', '8015828108', '', 'ananthsiva9795@gmail.com', '1997-03-08', 24, '2', '2', 'selvaraj', 'secutiry', 7000.00, 1, 0.00, 9000.00, 'cuddalore', 'arumbakkam', '2106140005', '1', '1', 'upload_files/candidate_tracker/42975441980_CV_2020-12-19-090336.pdf', NULL, '2', '2021-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 02:22:20', 1, '2021-06-14 02:24:21', 0, NULL, 1),
(5126, '', '0', '9884278228', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106140006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-14 03:28:32', 0, NULL, 0, NULL, 1),
(5127, 'm shajitha banu', '4', '7448301325', '', 'shajitha069@gmail.com', '2000-11-01', 20, '2', '2', 'mohammed aafif', 'not working', 25000.00, 2, 0.00, 9000.00, 'chennai', 'porur', '2106140007', '1', '1', 'upload_files/candidate_tracker/66022075373_CV_2020-12-19-090336.pdf', NULL, '2', '2021-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-14 03:34:54', 1, '2021-06-14 04:12:51', 0, NULL, 1),
(5128, '', '0', '9840225993', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106140008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-14 04:10:31', 0, NULL, 0, NULL, 1),
(5129, 'soma naganath', '5', '8555952090', '', 'somanaganath123@gmail.com', '1996-05-26', 25, '2', '2', 'sathyanarayana', 'late', 40000.00, 1, 22000.00, 27000.00, 'hyderabad', 'kuketpally', '2106150001', '1', '2', 'upload_files/candidate_tracker/2628774927_Soma Naganath Resume.docx', NULL, '2', '2021-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,having exp in IT Sales (B2B) 1.4 yrs of exp and looking for a change only for salary hike,also he feels pressure in this job.He gave some interview relates to the same IT Sales.Will not sustain with our position', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-15 10:48:24', 1, '2021-06-15 10:51:21', 0, NULL, 1),
(5130, 'Abdul azeem', '5', '7780736899', '', 'abdulazeem272813@gmail.com', '1994-09-28', 26, '2', '2', 'abdul azis', 'airtel office', 22000.00, 1, 16000.00, 23000.00, 'hyderabad', 'santhosh nagar', '2106150002', '1', '2', 'upload_files/candidate_tracker/14528907477_New Resume 32021.pdf', NULL, '2', '2021-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Seems not much active and not proper reasons for relieving from the previous organizations. Started his career with Dish sales and worked for 3 yrs with no increment,1 yr with kotak. Will not suits much wth our positions and sustainability doubts on the candidate', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-15 10:58:45', 1, '2021-06-15 01:47:38', 0, NULL, 1),
(5131, 'Malloju Madhu', '5', '8885510536', '', 'madhuchary399@gmail.com', '1996-08-05', 24, '2', '2', 'malloju achary', 'late', 20000.00, 1, 0.00, 20000.00, 'hyderabad', 'sangeetha nagar', '2106150003', '1', '1', 'upload_files/candidate_tracker/32624633823_resume (12).pdf', NULL, '2', '2021-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average.1.6 yrs with 2 companies, experience in POS xxamp QR Code B2B sales. currently working in the company with commission basis. Having a Bike and laptop. Feeling pressure in his current role. Sustainability doubts on this candidate.Pressure handling doubts', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-15 11:06:50', 1, '2021-06-15 11:08:41', 0, NULL, 1),
(5132, 'Sai Pranith', '5', '8341950754', '', 'spmudhulkar@gmail.com', '2000-01-24', 21, '2', '2', 'ramesh mudhulkar', 'own business', 50000.00, 2, 0.00, 15000.00, 'telengana', 'nirmal', '2106150004', '1', '1', 'upload_files/candidate_tracker/42973891620_sai pranith resume.docx', NULL, '2', '2021-06-16', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not fit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-15 01:04:35', 1, '2021-06-15 01:15:58', 0, NULL, 1),
(5133, 'habert raj', '16', '9380721852', '9381027466', 'habertraj.diamond@gmail.com', '1994-08-06', 26, '4', '2', 'felix .p', 'business', 7000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2106150005', '', '1', 'upload_files/candidate_tracker/67324358700_Resume Habert 1.pdf', NULL, '2', '2021-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude issue No documented proof of his current experience.The expectation is very high.Communication ok, Working with Indusind in third party payroll, only for 9 months and looking for a permanent position.Not much working knowledge in excel, having basic knowledge in Excel. Career Gap and he was into Amway business.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-15 04:18:18', 1, '2021-06-15 07:15:27', 0, NULL, 1),
(5134, 'Kaviya.G', '4', '7305873411', '7550181319', 'Kaviya1319@gmail.com', '2000-01-19', 21, '2', '2', 'G. Meenakshi', 'Cooking', 25000.00, 1, 10000.00, 12500.00, 'Poonamallee', 'Poonamallee', '2106150006', '1', '2', 'upload_files/candidate_tracker/14417605514_Resume kaviya.pdf', NULL, '1', '2021-06-15', 1, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'Not suit for telecalling, Low Voice', '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-15 05:17:30', 1, '2021-06-15 05:46:30', 0, NULL, 1),
(5135, 'Nafees', '16', '7358175325', '', 'asmanafees1@gmail.com', '2000-10-05', 20, '2', '2', 'Fairoz', 'Ritired', 15000.00, 5, 0.00, 10000.00, 'Kolathur', 'Kolathur', '2106160001', '1', '1', 'upload_files/candidate_tracker/77140440544_Nafees.pdf', NULL, '2', '2021-06-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-16 09:34:22', 50, '2021-06-16 05:47:40', 0, NULL, 1),
(5136, 'Jennifer Priscilla', '16', '9965537932', '9445146472', 'jenniferpriscilla22@gmail.com', '1996-10-22', 24, '4', '1', 'Belvin Dharma', 'Software Engineer', 50000.00, 1, 200000.00, 250000.00, 'Chennai', 'Chennai', '2106160002', '', '2', 'upload_files/candidate_tracker/88165591933_JP Resume.pdf', NULL, '2', '2021-06-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok.Distance around 16 kms,recently married and not comfortable with the service Agreement.no knowledge in MIS,need to train a lot in excel.', '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 09:45:31', 1, '2021-06-16 10:01:02', 0, NULL, 1),
(5137, 'Santhosh', '16', '9445170382', '9789034783', 'skanna163@gmail.com', '1998-03-16', 23, '4', '2', 'Sivakumar', 'Business', 40000.00, 0, 0.00, 15000.00, '73/36 Kothawal chavadi street Saidapet', '73/36 Kothawal chavadi street Saidapet', '2106160003', '', '1', 'upload_files/candidate_tracker/66280817527_Santhosh Resume (1).pdf', NULL, '2', '2021-06-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is good,Fresher and focusing on the accounts xxamp finance positions,He is preparing for CMA exams and he wants to get into that field only.He s not ok with service agreement.Just for time being he looks into other positions.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 09:56:00', 1, '2021-06-16 10:04:40', 0, NULL, 1),
(5138, 'Dinesh Kumar s', '4', '8248495545', '9176024351', 'dineshsiva17@gmail.com', '1999-12-05', 21, '4', '2', 'Siva Kumar R', 'Interior designer', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2106160004', '', '1', 'upload_files/candidate_tracker/9977245547_Dinu Resume.pdf', NULL, '3', '2021-06-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 10:38:21', 50, '2021-06-16 10:46:35', 0, NULL, 1),
(5139, 'Vallepu Shivaji', '5', '9014375956', '', 'shivajiv73@gmail.com', '1993-06-10', 28, '2', '1', 'shanthi', 'home maker', 25000.00, 2, 18000.00, 21000.00, 'hyderabad', 'uppal', '2106160005', '1', '2', 'upload_files/candidate_tracker/9520899425_I am sharing \'Document\' with you.pdf', NULL, '2', '2021-06-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-16 11:00:46', 1, '2021-06-16 11:03:16', 0, NULL, 1),
(5140, 'B Narasimha Rao', '5', '7672017380', '', 'narasimha9666622@gmail.com', '1992-10-05', 28, '2', '2', 'shankar rao', 'farmer', 10000.00, 2, 16000.00, 18000.00, 'hyderabad', 'mehandhipatnam', '2106160006', '1', '2', 'upload_files/candidate_tracker/7281255046_Boddu Narsimha Rao.docx', NULL, '2', '2021-06-17', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-16 11:36:28', 1, '2021-06-16 11:38:58', 0, NULL, 1),
(5141, 'K.karanesh', '3', '9962818821', '9940257439', 'Karaneshkumar97@gmail.com', '1997-09-23', 23, '4', '2', 'K.kumar', 'Business', 40000.00, 1, 0.00, 13000.00, 'Velachery,chennai', 'Velachery,chennai', '2106160007', '', '1', 'upload_files/candidate_tracker/6895533582_karanesh.pdf', NULL, '2', '2021-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 01:40:20', 1, '2021-06-16 01:47:26', 0, NULL, 1),
(5142, 'Mummoorthy B', '16', '9566993368', '', 'moorthysenthil96@gmail.com', '1996-02-19', 25, '3', '2', 'Nill', 'Nill', 100000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2106160008', '', '2', 'upload_files/candidate_tracker/67272008975_I_02122019_120_744679_249461.PDF', NULL, '3', '2021-06-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication, Currently working with Tech Mahindra in voice process and his notice period is 30 days.3yrs with 3 companies, no sustainability with the candidate.No MIS knowledge he mainly focuses on the salary only. He can sign the agreement but not ready to submit the documents', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 02:26:57', 50, '2021-06-16 02:47:58', 0, NULL, 1),
(5143, 'Michael Raj C', '22', '7358717998', '9790959761', 'Michaelacton968@gmail.com', '1991-04-15', 30, '4', '2', 'Chinnapan', 'Wages', 10000.00, 2, 14000.00, 17000.00, 'Avadi', 'Avadi', '2106160009', '', '2', 'upload_files/candidate_tracker/96411892397_Michael Resume.pdf', NULL, '3', '2021-06-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average and manageable. Not much experienced in excel, currently working and he is into notice with 15 days left. Given him a task to check his writing skills,But writing skill is not upto the mark', '2', '2', '', '1', '3', '', '2', '1970-01-01', '3', '5', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 04:43:25', 50, '2021-06-16 05:05:51', 0, NULL, 1),
(5144, 'R. Sridharan', '16', '9841133800', '9444544655', 'Sridharanr20@gmail.com', '1999-11-18', 21, '4', '2', 'MALLIKA', 'House wife', 18000.00, 1, 0.00, 18000.00, '19kamarjar street 3rd cross street vrpuram che-93', 'Saligramam (Chennai)', '2106160010', '', '1', 'upload_files/candidate_tracker/37389654382_R.SRIDHARAN RESUME.pdf', NULL, '3', '2021-06-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Fresher Profile.Will not much suits for MIS role.Not 100% ok with SA,however Given a task to check his writing skills, but the content is not up to the level', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-16 05:04:29', 1, '2021-06-16 05:33:29', 0, NULL, 1),
(5145, 'rohitth nagamalla', '5', '9182453586', '', 'rohitthnagamallau@gmail.com', '1996-01-27', 25, '2', '2', 'mehipal', 'sales', 20000.00, 0, 0.00, 20000.00, 'hyderbad', 'malakpet', '2106170001', '1', '1', 'upload_files/candidate_tracker/68448244627_rohith latest.pdf', NULL, '2', '2021-06-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'candidate got another offer and he prefers to go with that offer', '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-17 10:55:28', 1, '2021-06-17 10:58:13', 0, NULL, 1),
(5146, 'Akhil Goud', '5', '9703256614', '', 'akhilgoudk1995@gmail.com', '1995-08-31', 25, '2', '2', 'k dhanraj goud', 'own business', 300000.00, 2, 30000.00, 25000.00, 'hyderabad', 'koti', '2106170002', '1', '2', 'upload_files/candidate_tracker/52421564816_Akhil goud Final.pdf', NULL, '2', '2021-06-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average.No sustainability worked with various domain,No knowledge on Insurance Domain.No Higher Education, completed only 12th in open education.Will not sustain with us', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-17 11:03:49', 1, '2021-06-17 11:07:13', 0, NULL, 1),
(5147, 'Aswitha S', '4', '9944382464', '9944653434', 'aswithasaro98@gmail.com', '1998-06-02', 23, '2', '2', 'Saravanan.A', 'Site supervisor', 20000.00, 1, 0.00, 12000.00, 'Arambakkam', 'Chennai', '2106170003', '1', '1', 'upload_files/candidate_tracker/58518688914_Aswitha Saravanan0206 (1) (1).pdf', NULL, '3', '2021-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 12:36:27', 1, '2021-06-17 12:41:51', 0, NULL, 1),
(5148, 'boddapati charishma', '4', '7845699745', '9600012190', 'bcharishma19@gmail.com', '1998-08-13', 22, '2', '2', 'ramanjaneya swamy', 'southern railway', 50000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2106170004', '1', '1', 'upload_files/candidate_tracker/77430331285_resume_1622466837514.pdf', NULL, '3', '2021-06-18', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not suitable for sales and not able to handle pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 01:43:47', 1, '2021-06-17 02:11:54', 0, NULL, 1),
(5149, '', '0', '8270919994', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106170005', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-17 01:49:26', 0, NULL, 0, NULL, 1),
(5150, 'Aarthy', '4', '9087706240', '', 'aarthy2661998@gmail.com', '1998-06-26', 22, '2', '2', 'Chitra manivannan', 'Vegetable merchant', 15000.00, 1, 0.00, 15000.00, 'No:403/53, Bharathi nagar, Thiruvottriyur,chennai', 'No:403/53, Bharathi Nagar, Thiruvottriyur', '2106170006', '1', '1', 'upload_files/candidate_tracker/40416771712_Aarthy_2019.pdf', NULL, '3', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 02:04:42', 1, '2021-06-17 02:08:17', 0, NULL, 1),
(5151, '', '0', '9361792344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106170007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-17 03:18:33', 0, NULL, 0, NULL, 1),
(5152, 'lakshmi s g', '16', '9884576313', '9840865701', 'lakshmikrish67@gmail.com', '1995-03-07', 26, '2', '2', 'solaiyan v', 'retired from ashok leyland', 12000.00, 0, 16000.00, 25000.00, 'anna nagar', 'anna nagar', '2106170008', '1', '2', 'upload_files/candidate_tracker/62090001046_Lakshmi S G - 1.pdf', NULL, '2', '2021-06-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Previously Worked In A Contract Role. Salary Expectation Is High And Not Much Comfortable With The SA,Content What She Gave Gets Plagarism', '3', '2', '', '1', '3', '', '2', '2021-06-21', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-17 04:10:51', 50, '2021-06-18 10:10:51', 0, NULL, 1),
(5153, 'Sai Praveen. S', '16', '8778396770', '9940453707', 'Satzz2012@gmail.com', '1992-11-09', 28, '2', '1', 'Jayapriya', 'Healthcare domain', 44000.00, 1, 19.80, 21.00, 'Tambaram, chennai', 'Tambaram, chennai', '2106170009', '1', '2', 'upload_files/candidate_tracker/76685428296_Resume (1).pdf', NULL, '3', '2021-06-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attended Interview and System Task but not suitable for our role. Will not Sustain', '3', '1', '', '1', '1', '', '2', '2021-06-19', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-17 04:31:51', 50, '2021-06-18 10:11:09', 0, NULL, 1),
(5154, 'Kokila. M', '4', '6382364632', '7358214610', 'kokilamani0908@gmail.com', '1999-08-09', 21, '2', '2', 'Mani. N', 'Daily wages', 70000.00, 1, 0.00, 15000.00, '2/11 Appadurai Street, shanthi Nagar, Ramapuram,', 'Chennai', '2106170010', '1', '1', 'upload_files/candidate_tracker/43621658134_1622364772614Resume_Kokila.pdf', NULL, '3', '2021-06-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very slow and no convincing, expt is 10-15k, from ramapuram, farher and mother both are cooli.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 04:40:11', 7, '2021-06-18 02:01:56', 0, NULL, 1),
(5155, 'M.Suriyaprakash', '4', '9790938578', '9025437427', 'suryaprakash6787@gmail.com', '1991-06-06', 30, '3', '2', 'M.Tamilselvi', 'Housewife', 10000.00, 2, 12000.00, 15000.00, 'Chennai', 'Pattabiram', '2106170011', '', '2', 'upload_files/candidate_tracker/36854937450_SuriyaPrakash .docx', NULL, '1', '2021-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have CRM exp, No Voice Clarity, Frequent Job changer. Too long distance around 60KMS up and down .Even for Tiruvallur too long.. will not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-06-17 05:22:28', 60, '2021-10-19 03:27:42', 0, NULL, 1),
(5156, 'Roobini', '6', '8939590487', '8870193468', 'roobini8870@gmail.com', '1998-11-21', 22, '2', '2', 'Cholamuthu', 'No', 10000.00, 1, 10500.00, 12000.00, 'Maruvathur(po) thuraiyur(tk) trichy(dk)', 'Tirisulam Chennai', '2106170012', '1', '2', 'upload_files/candidate_tracker/90025744838_roobini .pdf', NULL, '3', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-17 05:56:33', 1, '2021-06-18 09:29:43', 0, NULL, 1),
(5157, 'satharkan', '4', '6369494681', '9159700965', 'reazsonu3006@gmail.com', '1998-06-06', 23, '2', '2', 'MAHABOOB kan', 'business', 15000.00, 1, 0.00, 1000.00, 'tanjavur', 'Tanjavur', '2106180001', '1', '1', 'upload_files/candidate_tracker/80195685418_satharkhan .pdf', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 10:48:19', 1, '2021-06-18 10:54:58', 0, NULL, 1),
(5158, 'SANJEEV', '4', '8124303068', '8124303067', 'sanjeevsmart13@gmail.com', '1997-01-13', 24, '2', '2', 'murugan', 'business', 15000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2106180002', '1', '1', 'upload_files/candidate_tracker/70652572470_sanjeev resume.docx.pdf', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 10:56:43', 1, '2021-06-18 11:01:56', 0, NULL, 1),
(5159, 'ajay', '4', '9080547763', '', 'ajayramana6@gmail.com', '1999-09-28', 21, '2', '2', 'venkatramana', 'manager', 25000.00, 1, 0.00, 13000.00, 'theni', 't.nagar', '2106180003', '1', '1', 'upload_files/candidate_tracker/96076487544_AJAY1777 RESUME.docx', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:06:21', 1, '2021-06-18 11:17:10', 0, NULL, 1),
(5160, 'jayashree', '4', '9080295879', '', 'jayashree2000.g@gmail', '2000-03-30', 21, '2', '2', 'gunasekarana', 'harbour', 17000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2106180004', '1', '1', 'upload_files/candidate_tracker/46743136192_Jayashree G Resume word-converted.pdf', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:23:13', 1, '2021-06-18 11:25:28', 0, NULL, 1),
(5161, 'barath', '4', '9698245828', '', 'bharathkumar1516@gmail.com', '2000-06-29', 20, '2', '2', 'balaji', 'temple', 12000.00, 1, 0.00, 10000.00, 'sout main street', 'tanjavur', '2106180005', '1', '1', 'upload_files/candidate_tracker/11324827369_bharath resume.docx', NULL, '2', '2021-06-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:27:25', 1, '2021-06-18 11:30:35', 0, NULL, 1),
(5162, 'yuvashree', '4', '9566161292', '', 'evajoe9566161@gmail.com', '1999-03-09', 22, '2', '2', 'raja gopal', 'plumber', 20000.00, 2, 0.00, 10000.00, 'madavaram', 'chennai', '2106180006', '1', '1', 'upload_files/candidate_tracker/12325631069_Document from Yuvashree Rajagopal.pdf', NULL, '2', '2021-06-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very childish, 5050', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:33:45', 7, '2021-08-03 05:56:46', 0, NULL, 1),
(5163, '', '0', '9677076353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 11:40:58', 0, NULL, 0, NULL, 1),
(5164, 'vidudalai', '4', '8270771435', '', 'vetrividudalai1@gmail.com', '1994-11-25', 26, '2', '2', 'shankar', 'journalist', 1000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2106180008', '1', '1', 'upload_files/candidate_tracker/22051808670_viduthala resume-1.pdf', NULL, '2', '2021-06-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, done her mpil and planning do phd, 1yr as Professor in a clg, father is a Reporter, doing her race couching for banking.', '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 11:58:46', 1, '2021-06-18 12:01:47', 0, NULL, 1),
(5165, 'barathi sesan', '4', '9655972197', '', 'barathisesan12@gmail.com', '1997-05-21', 24, '2', '2', 'pazani', 'police', 15000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2106180009', '1', '1', 'upload_files/candidate_tracker/32419004114_Bharathi seshan resume-converted.pdf', NULL, '2', '2021-06-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain, and fresher expt is 12k', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-18 12:03:49', 7, '2021-08-03 05:57:23', 0, NULL, 1),
(5166, 'MANO M', '4', '9159682932', '', 'avm.mano91@gmail.com', '1991-06-04', 30, '2', '2', 'MAHALINGAM B', 'BUSINESS', 20000.00, 1, 0.00, 20000.00, 'KARAIKUDI', 'KARAIKUDI', '2106180010', '1', '1', 'upload_files/candidate_tracker/38309384924_CV_2020-06-30-124736.pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '29, has 3yr exp in other field 23k, from karaikudi will relocate, will not suite for our process and will not sustain for salary, expt 12k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 12:09:03', 1, '2021-06-18 12:51:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5167, 'Vinodhini.B', '4', '8056062735', '7358729465', 'vinodhinib25994@gmail.com', '2001-03-30', 20, '2', '2', 'Boopathi', 'Coolie', 6000.00, 1, 0.00, 10000.00, 'Mylapore', 'Mylapore', '2106180011', '1', '1', 'upload_files/candidate_tracker/80390807624_Vinodhini.B Resume.pdf', NULL, '3', '2021-06-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 12:29:26', 1, '2021-06-18 12:41:44', 0, NULL, 1),
(5168, 'A.Aishwaryarai', '4', '9344270289', '9751018028', 'aishuwaraya2000@gmail.com', '2000-02-04', 21, '2', '2', 'Anbu', 'student', 10000.00, 1, 0.00, 18000.00, 'Pethathampatti', 'Pethathampatti', '2106180012', '1', '1', 'upload_files/candidate_tracker/66264698400_Share AISHWARAYA.RESUME2.pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no sales and convincing and will not suite for sales and expt is 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 12:53:26', 1, '2021-06-18 01:02:31', 0, NULL, 1),
(5169, 'Mala M V', '4', '8072752315', '9486070541', 'maladhanammv@gmail.com', '1999-03-01', 22, '2', '2', 'VASUDEVAN M N', 'Weaver', 5000.00, 1, 0.00, 9000.00, 'Thanjavur', 'Thanjavur', '2106180013', '1', '1', 'upload_files/candidate_tracker/49301407019_msc resume Word Document (3).pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she already Attended interview on june 10th. jennifers', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 01:16:12', 8, '2021-08-03 06:14:33', 0, NULL, 1),
(5170, 'anisha malar . j', '16', '9840262757', '8778669540', 'anishamalar1920@gmail.com', '2000-11-19', 20, '2', '2', 'r. jesu doss', 'freshers', 20000.00, 1, 0.00, 22000.00, 'chennai', 'chennai', '2106180014', '1', '1', 'upload_files/candidate_tracker/98854082620_new resume.pdf', NULL, '2', '2021-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Fresher Profile For The MIS Role, Basic Knowledge In Excel, But Not Much Ok With The SA And Document Submission,', '3', '1', '', '1', '1', '', '2', '2021-06-21', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-18 01:18:48', 50, '2021-06-18 06:12:06', 0, NULL, 1),
(5171, '', '0', '8778669540', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 01:25:30', 0, NULL, 0, NULL, 1),
(5172, 'RAMAKRISHNAN P', '4', '9629822927', '', 'ramakrishna962982@gmail.com', '1997-08-25', 23, '2', '2', 'MALATHI P', 'Housewife', 25000.00, 1, 0.00, 22000.00, 'Karaikudi', 'Karaikudi', '2106180016', '1', '1', 'upload_files/candidate_tracker/31827860622_1618220029413_1618220018665_1618220008086_1618220000153_1618219997824_P.RAMAKRISHNAN RESUME.pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'time being looking for job, he was into real estate and car broking biz, will not sustain. expt is 12-15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 01:37:18', 1, '2021-06-18 01:42:08', 0, NULL, 1),
(5173, 'G. Lavanya', '4', '7448712048', '9629501075', 'lavanya.18051995@gmail.com', '1995-05-18', 26, '2', '1', '160 nsk nagar Nsk main road Arumbakkam chennai', 'Housewife', 11000.00, 1, 14000.00, 11000.00, '160 Nsk Nagar Nsk Main Road Arumbakkam Chennai', '160 Nsk Nagar Nsk Main Road Arumbakkam Chennai', '2106180017', '1', '2', 'upload_files/candidate_tracker/2970150618_imgtopdf_generated_1806211357053.pdf', NULL, '3', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '1yr as process ass 14k, resently married from arumbakkam, will not handle pressure, worked in times of india newspaper sales, felt pressure and relived from that. expt is 10k.', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-18 01:41:45', 1, '2021-06-18 03:53:02', 0, NULL, 1),
(5174, 'Bleseena Amalnath', '26', '7358438431', '9789938598', 'Bleseenaa1998@gmail.com', '1998-07-05', 22, '2', '2', 'Amalnath', 'private employee', 25000.00, 1, 0.00, 15000.00, 'Ambattur chennai', 'Chennai', '2106180018', '1', '1', 'upload_files/candidate_tracker/69124765417_BLESEENA A-resume.pdf', NULL, '2', '2021-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Fresher Profile, No Idea Into Position What She Applied, Need To Train A Lot For The Role. Need Time To Check With Her Parents On The Service Agreement.She Did Certification In NISM Mutual Fund Too', '3', '1', '', '1', '1', '', '2', '2021-06-21', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-18 03:39:51', 50, '2021-06-18 06:12:17', 0, NULL, 1),
(5175, 'Srikant Mohanty', '16', '6369749571', '7021655681', 'srikantm1820@gmail.com', '2000-02-18', 21, '2', '2', 'Sridhar Mohanty', 'Ex-Navy Serviceman', 40000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2106180019', '1', '1', 'upload_files/candidate_tracker/34439986459_srikant_cv2.pdf', NULL, '3', '2021-06-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suits for our position,will not sustain for a long', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-18 03:40:57', 50, '2021-06-18 06:12:27', 0, NULL, 1),
(5176, '', '0', '8825677965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 05:05:38', 0, NULL, 0, NULL, 1),
(5177, '', '0', '8939716149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 05:41:11', 0, NULL, 0, NULL, 1),
(5178, '', '0', '7358576937', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 05:47:59', 0, NULL, 0, NULL, 1),
(5179, '', '0', '9791070279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106180023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-18 06:52:47', 0, NULL, 0, NULL, 1),
(5180, 'gokul', '4', '7299871575', '', 'Gokulprasath2121@gmail.com', '2006-06-19', 0, '2', '2', 'ramesh', 'driver', 20000.00, 1, 0.00, 10000.00, 'ambatur', 'chennai', '2106190001', '1', '1', 'upload_files/candidate_tracker/41065243436_GOKUL PRASATH RESUME.pdf', NULL, '2', '2021-06-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 he will prepare and getback, and no response', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 09:59:15', 7, '2021-08-03 05:58:07', 0, NULL, 1),
(5181, 'Ibrahim', '4', '6379491789', '', 'ibarimappu88@gmail.com', '2001-07-28', 19, '2', '2', 'jaffer', 'business', 12000.00, 1, 0.00, 10000.00, 'arakkonam', 'Thiruvallur', '2106190002', '1', '1', 'upload_files/candidate_tracker/39267441862_Ibrahim Resume2_30-May-21_11_48_49.pdf', NULL, '2', '2021-06-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was selected for next round but no response from him', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 10:06:31', 1, '2021-06-19 10:12:10', 0, NULL, 1),
(5182, 'aathika', '4', '8248743511', '', 'aathikaaiman25@gmail.com', '1997-03-03', 24, '2', '2', 'mohamed', 'iron business', 20000.00, 1, 0.00, 10000.00, 'ranipet', 'chennai', '2106190003', '1', '1', 'upload_files/candidate_tracker/14771140726_my resume.pdf', NULL, '2', '2021-06-19', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Lockdown Period Hold Long Pending ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 10:14:04', 7, '2021-08-03 06:01:04', 0, NULL, 1),
(5183, 'YUVARAJ', '4', '9080673578', '', 'yuvaraje4571@gmail.com', '1999-10-14', 21, '2', '2', 'aegrambam', 'can business', 12000.00, 1, 0.00, 10000.00, 'Onndikuppam', 'Thiruvallur', '2106190004', '1', '1', 'upload_files/candidate_tracker/73602527042_Yuvaraj Resume.pdf', NULL, '2', '2021-06-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 10:32:42', 1, '2021-06-19 10:37:36', 0, NULL, 1),
(5184, 'davidrajan', '4', '9551121519', '', 'davidrajan2599777@gmail.com', '1999-05-02', 22, '2', '2', 'paulraj', 'business', 20000.00, 2, 0.00, 10000.00, 'chennai', 'mugapair', '2106190005', '1', '1', 'upload_files/candidate_tracker/99337743133_David resume-converted (1).pdf', NULL, '2', '2021-06-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-19 10:40:15', 1, '2021-06-19 10:44:43', 0, NULL, 1),
(5185, 'egalaven giri', '4', '6381799399', '', 'girismith1997@gmail.com', '1997-12-12', 23, '2', '2', 'kumanan', 'parlor', 40000.00, 1, 0.00, 10000.00, 'ammapettai', 'ammapettai', '2106190006', '1', '1', 'upload_files/candidate_tracker/82663651062_giri smith resume.docx', NULL, '2', '2021-06-19', 0, '', '3', '59', '1970-01-01', 120000.00, '', '2', '1970-01-01', '1', 'Selected for Tanjore with PF/ESI/PT deductions.', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '9', 'Candidate yet to complete the second link which the candidate have received along with the offer letter', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-06-19 11:34:38', 60, '2021-09-15 02:51:06', 0, NULL, 1),
(5186, 'Parameshwaran', '20', '9626729505', '9159704694', 'parameshwaran1799@gmail.com', '1999-05-17', 22, '2', '2', 'Jayaraman', 'Shopkeeper', 20000.00, 2, 0.00, 12000.00, 'No:121 jayaraman main Road thirupalapandhal', 'No:9 AKBAR STREET Chennai tharamani', '2106190007', '1', '2', 'upload_files/candidate_tracker/73466129208_Subash.docx', NULL, '3', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 01:27:41', 1, '2021-06-19 02:24:17', 0, NULL, 1),
(5187, 'Nawaz Sheriff', '4', '9344457503', '', 'Nawazsheriff942@gmail.com', '1994-03-25', 27, '2', '1', 'Aisha beevi', 'House wife', 20000.00, 1, 0.00, 120000.00, 'Thanjavur', 'Thanjavur', '2106190008', '1', '1', 'upload_files/candidate_tracker/3516951211_chennai resume.PDF', NULL, '2', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 01:57:08', 1, '2021-06-19 02:02:12', 0, NULL, 1),
(5188, 'RAGAVI S', '4', '8760740663', '9043692652', 'ragavishanmugam94@gmail.com', '1995-05-16', 26, '2', '1', 'THIRUKUMARAN M', 'Senior Digital Marketing Executive', 30000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2106190009', '1', '1', 'upload_files/candidate_tracker/14897710845_Resume - Ragavi (1).pdf', NULL, '2', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 02:11:00', 1, '2021-06-19 02:56:36', 0, NULL, 1),
(5189, 'Kandasakthi J', '4', '7598157112', '', 'kandasakthi.army.3@gmail.com', '1998-10-28', 22, '2', '2', 'Jaikrishnan K', 'Wages', 12000.00, 1, 0.00, 20000.00, 'Tiruppur', 'Tiruppur', '2106190010', '1', '1', 'upload_files/candidate_tracker/47973186960_kandasakthi J.pdf', NULL, '3', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 02:16:26', 1, '2021-06-19 02:20:18', 0, NULL, 1),
(5190, 'NITHISH S', '4', '6383279353', '', 'NITHISH457599@GMAIL.COM', '1999-08-08', 21, '2', '2', 'Sankar', 'Farmer', 10000.00, 2, 0.00, 12000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2106190011', '1', '1', 'upload_files/candidate_tracker/30321685307_1613510049903Resume_Nithish-1.docx', NULL, '2', '2021-06-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-06-19 02:57:28', 1, '2021-06-19 03:01:24', 0, NULL, 1),
(5191, 'Oormila B', '16', '9092588112', '8681910803', 'oormila525@gmail.com', '1999-11-25', 21, '2', '2', 'Bhaskar j', 'Business', 120000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai (mkb nagar)', '2106190012', '1', '1', 'upload_files/candidate_tracker/4413839122_oormila res.pdf', NULL, '2', '2021-06-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-19 03:04:50', 50, '2021-06-21 01:28:47', 0, NULL, 1),
(5192, 'Prethip kumar E J', '5', '7305934081', '', 'makerej7@gmail.com', '2000-02-13', 21, '2', '2', 'I Joseph', 'Driver', 15000.00, 2, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2106190013', '1', '1', 'upload_files/candidate_tracker/49669224202_resume.docx', NULL, '2', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 04:04:28', 1, '2021-06-19 04:07:24', 0, NULL, 1),
(5193, 'soundaravalli.s', '4', '9994639981', '', 'soundaravalli1692@gmail.com', '1992-09-16', 28, '2', '1', 'raghavendra narayanan.s', 'house wife', 50000.00, 1, 0.00, 12000.00, 'chennai', 'madurai', '2106190014', '1', '1', 'upload_files/candidate_tracker/15307107922_soundaravalli RESUME.docx', NULL, '3', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 04:26:56', 1, '2021-06-20 04:06:39', 0, NULL, 1),
(5194, 'Siva', '4', '9003396999', '', 'Sivaalagu390@gmail.com', '2000-07-12', 20, '2', '2', 'Alagu', 'Automobile consulting', 25000.00, 1, 0.00, 20000.00, 'Madurai', 'Madurai', '2106190015', '1', '1', 'upload_files/candidate_tracker/68133200165_SIVA A-1.pdf', NULL, '2', '2021-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-19 04:50:31', 1, '2021-06-19 04:54:19', 0, NULL, 1),
(5195, 'franklin benedick a r x', '5', '7892086662', '8884538368', 'franklin.benedick77@gmail.com', '1991-04-01', 30, '1', '1', 'divya prasad', 'Territory manager', 3000.00, 3, 4.20, 4.30, 'Bangalore', 'Bangalore', '2106210001', '', '2', 'upload_files/candidate_tracker/34202173441_Franklin', NULL, '1', '2021-06-21', 0, '55601', '3', '60', '2021-07-05', 345696.00, '', '6', '2022-04-25', '1', 'Selected for Manivel TEam with CTC - 345696 includes PF/PT', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 10:58:51', 60, '2021-07-03 06:54:08', 0, NULL, 1),
(5196, 'Sathishkumar s', '4', '7904863528', '9962796033', 'ssathishkumar1307@gmail.com', '2001-07-13', 19, '2', '2', 'Selvam', 'Ironing shop', 5000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2106210002', '1', '2', 'upload_files/candidate_tracker/85179443408_sathish.pdf', NULL, '1', '2021-06-22', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-21 03:02:27', 8, '2021-08-03 06:29:39', 0, NULL, 1),
(5197, '', '0', '9962161878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106210003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-21 04:05:32', 0, NULL, 0, NULL, 1),
(5198, '', '0', '9962161879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106210004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-21 04:07:13', 0, NULL, 0, NULL, 1),
(5199, 'Varalakshmi', '4', '9344317570', '8220701373', 'ammumatheshwaran@gmail.com', '1999-09-29', 21, '2', '1', 'Matheshwaran', 'Private company employee', 15000.00, 2, 10000.00, 13000.00, 'Thirumazhisai', 'Thirumazhisai', '2106210005', '1', '2', 'upload_files/candidate_tracker/64366095702_vrlaxmi resume.pdf', NULL, '1', '2021-06-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no laptop and will not sustain', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-21 04:33:40', 1, '2021-06-21 04:41:20', 0, NULL, 1),
(5200, 'dhanush kumar', '6', '7397456146', '', 'dhanushkumar607@gmail.com', '1999-04-30', 22, '2', '2', 'senthil kumar', 'supervisor', 20000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2106210006', '2', '2', 'upload_files/candidate_tracker/73924997128_Dhanush resume-2.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'No Response', '5', '2', '0', '1', '1', '0', '2', '2021-08-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 05:59:25', 1, '2021-06-21 06:02:10', 0, NULL, 1),
(5201, 'bhuvaneshwari', '4', '9150851667', '', 'kbsan202011@gmail.com', '1998-07-02', 22, '2', '2', 'loganathan', 'driver', 15000.00, 1, 10000.00, 11000.00, 'chennai', 'chennai', '2106210007', '2', '2', 'upload_files/candidate_tracker/30589703571_RESUME.docx', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 06:11:05', 1, '2021-06-21 06:15:03', 0, NULL, 1),
(5202, 'raj kumar', '6', '7708035602', '', 'rajkumarbala1995@gmail.com', '1995-12-15', 25, '2', '2', 'palanisamy', 'nlc', 15000.00, 1, 10000.00, 12000.00, 'chennai', 'chennai', '2106210008', '2', '2', 'upload_files/candidate_tracker/37274097270_raj resume-converted.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'No Response', '5', '2', '0', '1', '1', '0', '2', '2021-08-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 06:18:09', 1, '2021-06-21 06:20:29', 0, NULL, 1),
(5203, 'kalaiarasi', '4', '6380267539', '', 'kalaiyarasik425@gmail.com', '1988-03-16', 33, '2', '1', 'anand', 'editing', 15000.00, 0, 12000.00, 13000.00, 'chennai', 'ambattur', '2106210009', '2', '2', 'upload_files/candidate_tracker/51275701334_Kalai_Resume (2)-1.docx', NULL, '2', '2021-06-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-21 06:23:12', 1, '2021-06-21 06:25:37', 0, NULL, 1),
(5204, 'monisha', '4', '9787640007', '', 'monishamurali02@gmail.com', '2001-09-17', 19, '2', '2', 'murali', 'security', 10000.00, 1, 0.00, 10000.00, 'thiruvallur', 'Thiruvallur', '2106220001', '1', '1', 'upload_files/candidate_tracker/1196898462_Monisha resume.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'native language, very slow will not suite for calling.', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 09:47:30', 7, '2021-08-03 06:01:39', 0, NULL, 1),
(5205, 'P.Subasakthieswari', '4', '9025375944', '', 'suba6549@gmail.com', '2001-01-26', 20, '2', '2', 'parandhaman', 'cooli', 12000.00, 1, 0.00, 10000.00, 'redhills', 'redhills', '2106220002', '1', '1', 'upload_files/candidate_tracker/18692680085_subashakthieswari.pdf.pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'was reading the self intero and will not suite for calling. no speaking up apart from that', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 09:53:43', 7, '2021-08-03 06:02:32', 0, NULL, 1),
(5206, 'VARUN KUMAR R', '4', '8072191726', '9677977525', 'varunkumar11132@gmail.com', '1999-10-24', 21, '2', '2', 'rama murthi', 'farmer', 10000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2106220003', '1', '1', 'upload_files/candidate_tracker/28580138732_varun%20BE-EEE%20CV1.docx', NULL, '2', '2021-06-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not okay with sales profile and target, will not handle pressure and sustain', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 10:18:36', 7, '2021-08-03 06:03:05', 0, NULL, 1),
(5207, 'Suresh s g', '4', '8124892808', '7708088411', 'sureshrohoit500@gmail.com', '2000-01-11', 21, '2', '2', 'gowindh', 'catering', 8000.00, 1, 0.00, 10000.00, 'thiruvallur', 'Thiruvallur', '2106220004', '1', '1', 'upload_files/candidate_tracker/13807650204_resume (12).pdf', NULL, '2', '2021-06-22', 0, '', '3', '59', '2021-09-16', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tanjore location in cash mode', '1', '1', '', '4', '6', '', '2', '2021-09-15', '2', '3', 'Discussed and given joining, but 5050 and the candidate needs to get his father confirmation again. Sent him the welcome mail for joining', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-06-22 10:25:56', 60, '2021-09-15 06:26:29', 0, NULL, 1),
(5208, 'Arun Kumar', '4', '6374555062', '', 'arunkumaronb@gmail.com', '2000-04-17', 21, '2', '2', 'rama murthi', 'farmer', 10000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2106220005', '1', '1', 'upload_files/candidate_tracker/57720996982_Resume_Arunkumar R_Format1 (1).pdf', NULL, '2', '2021-06-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speakingup and no flow in speech, expt is 12k min', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 10:36:52', 7, '2021-08-03 06:04:24', 0, NULL, 1),
(5209, 'Nandhini', '4', '9566243155', '8925822447', 'nandhinivelayutham16@gmail.com', '1998-04-16', 23, '2', '2', 'Punitha', 'Own business', 20000.00, 1, 15000.00, 20000.00, 'Choolaimedu', 'Choolaimedu', '2106220006', '1', '2', 'upload_files/candidate_tracker/39174741314_CV_2021-06-04-020306.pdf', NULL, '3', '2021-06-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 11:31:09', 1, '2021-06-22 11:51:56', 0, NULL, 1),
(5210, 'R. Iyyanraj', '16', '8015051130', '7845620010', 'Iyyanr@gmail.com', '1994-03-16', 27, '2', '2', 'K.Raja perumal', 'Shop keeper', 12000.00, 2, 24000.00, 25000.00, 'Chennai', 'Chennai', '2106220007', '1', '2', 'upload_files/candidate_tracker/8325830310_Iyyan Raj Resume.pdf', NULL, '1', '2021-06-22', 0, '', '3', '60', '2021-06-23', 264000.00, '', '5', '1970-01-01', '2', 'Selected for MIS Position,2nd Round interviewed by Gokul and shortlisted for the role MIS', '3', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-22 11:45:14', 7, '2021-06-22 05:35:51', 0, NULL, 1),
(5211, '', '0', '8248444656', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106220008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-22 12:41:12', 0, NULL, 0, NULL, 1),
(5212, 'shree dharshinee', '4', '7550019039', '8939011903', 'shreesiva2401@gmail.com', '1999-06-24', 21, '2', '1', 'siva kumar', 'health inspector', 60000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2106220009', '1', '1', 'upload_files/candidate_tracker/18033165268_SHREE NEW RESUME.docx', NULL, '3', '2021-06-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 01:09:00', 1, '2021-06-22 07:36:11', 0, NULL, 1),
(5213, 'Mohamed Anez', '26', '9940260844', '7010351025', 'mohamedanez34@gmail.com', '1996-02-08', 25, '2', '2', 'Mohamed yusuf', 'Eventa coordinator', 25000.00, 1, 20000.00, 27000.00, 'Tambaram', 'Tambaram', '2106220010', '1', '2', 'upload_files/candidate_tracker/12970874691_Updated Resumae.pdf', NULL, '1', '2021-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication average,no relevant Exp.Content what he gave is not upto yhe mark\n', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-22 02:11:22', 50, '2021-06-22 02:45:21', 0, NULL, 1),
(5214, 'kishore b', '16', '9677377894', '', 'kishore01ronaldo@gmail.com', '1996-12-24', 24, '2', '2', 'v balakrishnan', 'sub divisional engineering', 30000.00, 3, 0.00, 25000.00, 'chennai', 'chennai', '2106220011', '1', '1', 'upload_files/candidate_tracker/79885682456_kishore resume .pdf', NULL, '3', '2021-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, Salary Expectation is very high, will not sustain for a long', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-22 03:15:21', 50, '2021-06-23 10:30:32', 0, NULL, 1),
(5215, 'B. M. KAMESHWARA.', '4', '6374384207', '9585920597', 'Kmstr9818@gmail.com', '1998-05-18', 23, '2', '2', 'B. MOHANASUNDHARAM', 'Typist', 30000.00, 1, 0.00, 15000.00, 'Tindivanam', 'Tindivanam', '2106220012', '1', '1', 'upload_files/candidate_tracker/16433161766_kamstr.docx', NULL, '3', '2021-06-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 03:24:44', 1, '2021-06-22 05:37:15', 0, NULL, 1),
(5216, 'B.SHALINI DEVI', '4', '8072788250', '7868029119', 'shalinibalachandar2018@gmail.com', '1998-01-19', 23, '2', '2', 'S.BALACHANDAR', 'Agriculture', 15000.00, 0, 0.00, 10000.00, 'Cuddalore', 'Cuddalore', '2106220013', '1', '1', 'upload_files/candidate_tracker/32327683238_SHALINI RESUME.pdf', NULL, '3', '2021-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 04:04:03', 1, '2021-06-22 04:20:34', 0, NULL, 1),
(5217, 'kabilan', '6', '7824034005', '', 'kabilanrajangam@gmail.com', '1996-02-17', 25, '2', '2', 'rajangam', 'farmer', 12000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2106220014', '2', '2', 'upload_files/candidate_tracker/80692813665_res new 44.docx', NULL, '2', '2021-06-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, prefer non voice job, expt min 15k take home.', '5', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-22 04:16:30', 1, '2021-06-22 04:18:23', 0, NULL, 1),
(5218, 'padma priya a', '4', '7401758584', '', 'Rajagayu26@gmail.com', '1995-10-21', 25, '2', '1', 'raja durai r', 'electrician', 20000.00, 1, 13000.00, 14000.00, 'chennai', 'parrys', '2106220015', '2', '2', 'upload_files/candidate_tracker/29879705534_padmapriya resume.pdf', NULL, '2', '2021-06-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain and will not suite for us.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-22 04:30:10', 7, '2021-06-28 10:53:40', 0, NULL, 1),
(5219, 'pavithra', '4', '7200961071', '', 'mixshara25@gmail.com', '1999-07-25', 21, '2', '2', 'baskaran', 'supervisor', 14000.00, 0, 12000.00, 13000.00, 'chennai', 'royapetah', '2106220016', '2', '2', 'upload_files/candidate_tracker/68632482389_RESUME - PAVITHRA . B.pdf', NULL, '2', '2021-06-23', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'check for esale RM, has 2yr calling exp', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-22 04:35:32', 1, '2021-06-22 04:39:38', 0, NULL, 1),
(5220, 'vinu priya', '4', '9384849503', '', 'vinupriya0902@gmail.com', '1990-11-20', 30, '2', '1', 'ravichandran', 'photographer', 10000.00, 1, 14000.00, 15000.00, 'chennai', 'thiruvallur', '2106220017', '2', '2', 'upload_files/candidate_tracker/72656173545_Vinupriya resume.docx', NULL, '2', '2021-06-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us, expt is 18k. age will not suite for CRM.', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-22 04:43:00', 7, '2021-06-28 10:49:51', 0, NULL, 1),
(5221, 'Jayanthi V', '1', '7338786313', '9688969065', 'jayayarasu1@gmail.com', '1996-06-07', 25, '2', '1', 'Raamrajen', 'Bussiness', 70000.00, 0, 25000.00, 15000.00, 'Chennai', 'Chennai', '2106220018', '1', '2', 'upload_files/candidate_tracker/3151718365_JAYA MARKETING MANAGER RESUME.docx', NULL, '3', '2021-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 05:50:48', 1, '2021-06-22 06:04:37', 0, NULL, 1),
(5222, '', '0', '9025951345', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106220019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-22 05:51:08', 0, NULL, 0, NULL, 1),
(5223, 'R.Saranya', '16', '9003252657', '6383312623', 'saranyatharun54@gmail.com', '1990-09-08', 30, '2', '1', 'K.Kanniyappan', 'Own business', 50000.00, 1, 18000.00, 21000.00, 'Chennai', 'Triplicane, chennai', '2106220020', '1', '2', 'upload_files/candidate_tracker/90915276164_Saranya Resume.pdf', NULL, '1', '2021-06-23', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-22 05:58:23', 50, '2021-06-23 10:30:46', 0, NULL, 1),
(5224, 'Uma.L', '4', '6381906404', '', 'umavedhao6@gmail.com', '2001-06-06', 20, '2', '2', 'Lakshmanan', 'sales man', 11000.00, 2, 0.00, 13000.00, 'Vinayagapuram near kolathur', 'Vinayagapuram Near Kolathur', '2106220021', '1', '1', 'upload_files/candidate_tracker/18752142018_Resume.pdf', NULL, '2', '2021-06-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-22 06:30:21', 1, '2021-06-22 06:34:44', 0, NULL, 1),
(5225, 'uma', '4', '7010460213', '', 'umasuresh17699@gmail.com', '1999-06-17', 22, '2', '2', 'suresh', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'madippakam', 'Madippakam', '2106230001', '1', '1', 'upload_files/candidate_tracker/1213720584_resume (13).pdf', NULL, '2', '2021-06-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-23 09:22:34', 1, '2021-06-23 09:27:45', 0, NULL, 1),
(5226, 'Abirami M', '16', '8610570792', '', 'm.abirami1303@gmail.com', '1989-03-13', 32, '2', '2', 'P. Muthukani', 'Business', 20000.00, 1, 170000.00, 240000.00, 'Villivakkam, Chennai', 'Villivakkam, Chennai', '2106230002', '1', '2', 'upload_files/candidate_tracker/3957149557_M.ABIRAMI RESUME NEW.docx', NULL, '1', '2021-06-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected her for the MIS Role,but she is not interested with the package what we offered and not comfortable with office timings', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-23 10:01:51', 50, '2021-06-24 09:03:53', 0, NULL, 1),
(5227, 'mohan raman g p', '16', '9499929309', '9566238378', 'mraman10595@gmail.com', '1995-05-10', 26, '2', '2', 'Govindaraman V', 'business', 35000.00, 1, 17500.00, 17500.00, 'Chennai', 'Chennai', '2106230003', '1', '2', 'upload_files/candidate_tracker/62393648377_MohanRaman1005.pdf', NULL, '2', '2021-06-24', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Received Content And Scheduled Him For F2F,But Didnt Turn.', '3', '1', '', '1', '1', '', '2', '2021-07-05', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-23 10:27:26', 50, '2021-06-24 09:03:33', 0, NULL, 1),
(5228, 'rup kumar a', '11', '7397329735', '9940579464', 'ruppixie@gmail.com', '1994-03-01', 27, '3', '2', 'arjunan', 'retired aeo', 30000.00, 1, 0.00, 15000.00, 'kolathur chennai', 'kolathur chennai', '2106230004', '', '1', 'upload_files/candidate_tracker/75439130348_RUP RESUME new.pdf', NULL, '1', '2021-06-23', 0, '', '3', '60', '2021-06-26', 120000.00, '', '3', '2021-08-13', '1', 'Selected As A Intern For HR Recruitment With The Stipend Of Rs 5000 PM With Contnuation Of Employment. Salary Will Be Confirmed Post Internship', '6', '2', '', '1', '1', '', '2', '2021-09-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2021-06-23 10:44:24', 60, '2022-03-22 02:44:43', 0, NULL, 1),
(5229, 'Rikesh.K', '4', '7339230369', '', 'rikeshkannan@gmail.com', '1999-01-10', 22, '2', '2', 'Kannadasan', 'Fishing', 60000.00, 0, 0.00, 12000.00, 'Thirvanmyur', 'Thirvanmyur', '2106230005', '1', '1', 'upload_files/candidate_tracker/14808143423_BIO DATA-WPS Office.docx', NULL, '3', '2021-06-24', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-23 11:36:43', 8, '2021-08-03 06:16:33', 0, NULL, 1),
(5230, 'K.jeyakumar', '4', '6374050761', '9884288559', 'jeyak746@gmail.com', '1993-10-23', 27, '2', '2', 'K.janaki', 'Insurance inspection', 200000.00, 2, 15000.00, 17000.00, 'Annanagar', 'Annanagar', '2106230006', '1', '2', 'upload_files/candidate_tracker/43970028652_jk.pdf', NULL, '2', '2021-06-24', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain. 2yr in detective agency, 1yr as store incharge, 2yr in real estate, running own veg shop now his mother is taking care, was getting 17k-20k, expt is 15k.', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-23 11:42:56', 7, '2021-06-24 11:12:12', 0, NULL, 1),
(5231, 'Angela', '4', '9384647728', '', 'angelchristy112@gmail.com', '2002-08-23', 18, '2', '2', 'Anish', 'Working', 15000.00, 0, 0.00, 15000.00, 'Pour', 'Pour', '2106230007', '1', '1', 'upload_files/candidate_tracker/69325721302_Angel Resume (1).doc', NULL, '3', '2021-06-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, age doesnt match. expt is high', '1', '2', '0', '1', '1', '0', '2', '2021-08-31', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-23 03:36:26', 1, '2021-06-23 03:54:36', 0, NULL, 1),
(5232, 'Azhagu raj', '16', '9791450706', '9677563919', 'Azhagu99444@gmail.com', '1994-12-25', 26, '2', '2', 'T annaipitchai', 'Data analyst', 200000.00, 3, 14000.00, 16000.00, 'Tambaram', 'Tambaram', '2106230008', '1', '2', 'upload_files/candidate_tracker/26756324844_Resume%20Azhagu.docx', NULL, '2', '2021-06-24', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Content not upto the mark', '3', '2', '', '1', '1', '', '2', '1970-01-01', '3', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-23 04:10:20', 50, '2021-06-24 09:04:09', 0, NULL, 1),
(5233, 'prasanth', '4', '6381355736', '', 'prasanthps0303@gmail.com', '1999-03-03', 22, '2', '2', 'alagesh', 'farmer', 5000.00, 2, 0.00, 10000.00, 'peravalur', 'velachery', '2106240001', '1', '1', 'upload_files/candidate_tracker/4925449627_prasanth RESUME.doc', NULL, '2', '2021-06-24', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'not attended', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 09:47:00', 1, '2021-06-24 09:52:18', 0, NULL, 1),
(5234, 'G KEERTHIKA', '4', '8667719835', '', 'Keerthigopi156@gmail.com', '2001-06-15', 20, '2', '2', 'gopinathan', 'manager', 40000.00, 1, 0.00, 10000.00, 'thomas mount', 'Thomas Mount', '2106240002', '1', '1', 'upload_files/candidate_tracker/36652638531_KEERTHIKA.RESUME.pdf', NULL, '2', '2021-06-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communicated and shared the Salary breakup for the candidate approval,but she turn back with her approval', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 09:55:29', 1, '2021-06-24 10:01:04', 0, NULL, 1),
(5235, 'Manju Meena c', '4', '6379507693', '', 'manju.meena0308@gmail.com', '2000-08-03', 20, '2', '2', 'chandran', 'business', 10000.00, 1, 0.00, 10000.00, 'thandalam', 'Thandalam', '2106240003', '1', '1', 'upload_files/candidate_tracker/23163860850_Manju_Meena_C_resume.pdf', NULL, '2', '2021-06-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not connected the zoom i was waiting for 15 mins. again tryed reaching her RNR', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 10:05:49', 7, '2021-08-03 06:05:10', 0, NULL, 1),
(5236, 'Arthi. B', '4', '6379758615', '', 'nithibro57@gmail.com', '2006-06-24', 0, '2', '2', 'sasikumar', 'electrician', 20000.00, 1, 0.00, 10000.00, 'guindy', 'guindy', '2106240004', '1', '1', 'upload_files/candidate_tracker/67307220108_ARTHI.B.docx', NULL, '2', '2021-06-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain, prefer non voice, will not handle pressure.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 10:11:29', 7, '2021-08-03 06:05:51', 0, NULL, 1),
(5237, 'Sai Geetha', '4', '7395961762', '', 'Saigeetha0657@gmail.com', '2001-08-04', 0, '2', '2', 'surya', 'mechanic', 25000.00, 1, 0.00, 10000.00, 'chrompet', 'chrompet', '2106240005', '1', '1', 'upload_files/candidate_tracker/34687106263_Sai Geetha.S RESUME.pdf', NULL, '2', '2021-06-24', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 10:22:49', 7, '2021-08-03 06:06:44', 0, NULL, 1),
(5238, 'Monisha.V', '4', '9042575531', '', 'monisharaj242000@gmail.com', '2000-01-24', 21, '2', '2', 'venkatesan', 'labour', 10000.00, 2, 0.00, 10000.00, 'velachery', 'velachery', '2106240006', '1', '1', 'upload_files/candidate_tracker/95057959830_Resume_Monisha Venkatesan_Format7.pdf', NULL, '2', '2021-06-24', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 10:29:27', 7, '2021-08-03 06:08:17', 0, NULL, 1),
(5239, 'Vidhya', '4', '7358635087', '', 'vidhyakutty253@gmail.com', '1999-03-03', 22, '2', '2', 'sathyanarayanan', 'labour', 15000.00, 1, 0.00, 10000.00, 'velachery', 'velachery', '2106240007', '1', '1', 'upload_files/candidate_tracker/63468504432_1624262718190_RESUME.pdf', NULL, '2', '2021-06-24', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 11:01:09', 7, '2021-08-03 06:07:14', 0, NULL, 1),
(5240, 'Rameskanna', '4', '9384311835', '', 'Rockyramesh41@gmail.com', '2000-07-09', 20, '2', '2', 'manimegalai', 'tailor', 5000.00, 2, 0.00, 1000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2106240008', '1', '1', 'upload_files/candidate_tracker/82625545155_gallery pages.pdf', NULL, '2', '2021-06-24', 0, '', '3', '59', '2021-06-28', 120000.00, '', '3', '2021-07-02', '2', 'Selected for Priyanka Jeni Team with CTC 120000 includes PF/ESI/PT', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-24 11:29:51', 60, '2021-06-28 04:19:36', 0, NULL, 1),
(5241, 'Anjali', '4', '9150756415', '9941982017', 'anjuanjumaanju@gmail.com', '2000-06-15', 21, '1', '2', 'P.Selvaraj', 'Electrician', 20000.00, 2, 12.50, 13000.00, 'Gerugambakkam', 'Gerugambakkam', '2106240009', '', '2', 'upload_files/candidate_tracker/15862929944_resume3pdf_original.pdf', NULL, '1', '2021-06-24', 0, 'Jobs', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for Priyanka Team with CTC 126000 with PF/PT deductions', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-24 12:14:18', 1, '2021-06-24 12:48:21', 0, NULL, 1),
(5242, 'Yamuna', '4', '7094564389', '9626933203', 'Vk925071@gmail.com', '2000-06-16', 21, '1', '2', 'S.umapthi', 'Father', 10000.00, 0, 0.00, 10000.00, 'Kodambakkam', 'Kodambakkam', '2106240010', '', '1', 'upload_files/candidate_tracker/87246320744_yammuna (1)-converted.pdf', NULL, '1', '2021-06-24', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suits for our role, will not sustain for a long', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-24 12:19:47', 1, '2021-06-24 12:37:59', 0, NULL, 1),
(5243, 'Diana Baskaran', '16', '8825905183', '9952993343', 'dianab37299@gmail.com', '1998-08-31', 22, '4', '2', 'Thilaga', 'House wife', 10000.00, 0, 0.00, 15000.00, 'Anna nagar west extension chennai', 'Anna nagar west extension chennai', '2106240011', '', '1', 'upload_files/candidate_tracker/15309182574_Diana Resume.pdf', NULL, '2', '2021-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain for a long she is focusing into UPSC exams only', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-24 01:48:28', 1, '2021-06-24 01:52:46', 0, NULL, 1),
(5244, 'Kanigicharla Naga Sai Jaswanth', '6', '8008783202', '', 'kanigicharlasai@gmail.com', '1996-07-03', 24, '2', '2', 'K Ravu surendra', 'Business', 1.50, 1, 35000.00, 35000.00, 'Tenali', 'Hyderabad', '2106240012', '1', '2', 'upload_files/candidate_tracker/94115833175_SAI JASWANTH RESUME (1)-converted-converted.pdf', NULL, '1', '2021-06-24', 0, '', '3', '60', '1970-01-01', 286000.00, '', '2', '1970-01-01', '1', 'Selected for Veben Team with CTC 286000 includes PF/ESI Deductions', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-24 02:08:04', 60, '2021-06-26 04:17:51', 0, NULL, 1),
(5245, 'K.sandhiya', '4', '6385125011', '8825611424', 'sandhiyasuseela13@gmail.com', '2001-06-13', 20, '2', '2', 'Kamalakannan', 'Mechanic', 10000.00, 1, 0.00, 10000.00, 'Somangalam', 'Somangalam', '2106240013', '1', '1', 'upload_files/candidate_tracker/17430413378_18cs034.pdf', NULL, '3', '2021-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 03:32:49', 1, '2021-06-24 03:37:00', 0, NULL, 1),
(5246, 'GOKULAKRISHNAN m', '4', '9087595860', '9962125530', 'krishnangokul990@gmail.com', '1997-11-09', 23, '2', '2', 'Murugasan', 'Daliy wages', 12000.00, 3, 0.00, 12000.00, 'Medavakkam, Chennai', 'Medavakkam, Chennai', '2106240014', '1', '1', 'upload_files/candidate_tracker/72808055788_Gokul 2021new updates.pdf', NULL, '3', '2021-06-25', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 03:41:44', 8, '2021-08-03 06:19:26', 0, NULL, 1),
(5247, 'Renuka devi R', '4', '9384560594', '', 'renuboopa02@gmail.com', '2000-09-02', 20, '2', '2', 'Raja gopal M', 'driver', 25000.00, 1, 0.00, 11000.00, 'Coimbatore', 'Coimbatore', '2106240015', '1', '1', 'upload_files/candidate_tracker/891882044_renuka.docx', NULL, '3', '2021-06-25', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 03:59:20', 8, '2021-08-03 06:24:37', 0, NULL, 1),
(5248, 'Srinivasan .m', '4', '9629421802', '9787190886', 'msrinivasan.cse24@gmail.com', '1996-04-24', 25, '2', '2', 'Vr Manokaran M.Jothi', 'Building Construction', 20000.00, 0, 9000.00, 12000.00, 'Vellore', 'Vellore', '2106240016', '1', '2', 'upload_files/candidate_tracker/96357449470_RESUME.pdf', NULL, '3', '2021-06-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'from vellore, will not sustain and handle pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 05:15:12', 1, '2021-06-24 05:21:52', 0, NULL, 1),
(5249, 'Hajira Banu', '4', '9789904931', '9884186194', 'hajira2707banu@gmail.com', '1995-07-27', 25, '2', '1', 'Ismail', 'Gold smith', 150000.00, 1, 0.00, 12000.00, 'Puliyanthope Chennai 12', 'Puliyanthope ch-12', '2106240017', '1', '1', 'upload_files/candidate_tracker/20734042362_resume.pdf', NULL, '3', '2021-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 05:35:00', 1, '2021-06-24 05:40:53', 0, NULL, 1),
(5250, 'Aishwarya', '4', '9361556751', '8754131144', 'aishwaryadevi989898@gmail.com', '1996-01-28', 25, '2', '2', 'Ravikumar', 'Teacher', 15000.00, 1, 0.00, 12000.00, 'Avadi', 'Chennai', '2106240018', '1', '1', 'upload_files/candidate_tracker/14259866100_Aishwarya T R.pdf', NULL, '2', '2021-06-25', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'Not Suit For Telecalling, Sustainabillity issue', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-24 05:55:41', 1, '2021-06-24 06:00:34', 0, NULL, 1),
(5251, '', '0', '9500675582', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106240019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-24 06:26:03', 0, NULL, 0, NULL, 1),
(5252, 'Preethi', '4', '7358076528', '7332937528', 'jamesmandy8@gmail.com', '2000-01-05', 21, '2', '2', 'Venugopal', 'Security', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2106250001', '1', '1', 'upload_files/candidate_tracker/58999856528_CV_2021-04-17-092630.pdf', NULL, '2', '2021-06-30', 0, '', '3', '60', '2021-07-01', 120000.00, '', '6', '2021-10-04', '2', 'Selected for Suriya Team with CTC 120000 includes PF/ESI/PT', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 10:25:37', 60, '2021-07-01 09:58:24', 0, NULL, 1),
(5253, 'Mohamedherash', '16', '8508508811', '', 'Mohamedherash@gmail.com', '1994-11-16', 26, '2', '2', 'Faritha hussan', 'Salaried', 45000.00, 1, 300000.00, 300000.00, 'Chennai', 'Chennai', '2106250002', '1', '2', 'upload_files/candidate_tracker/98821391033_HERASH.pdf', NULL, '1', '2021-06-26', 0, '', '3', '60', '2021-06-28', 192000.00, '', '5', '1970-01-01', '1', 'Selected for MIS Role,2nd Round interviewed by gokul and selected', '3', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-25 10:43:06', 60, '2021-06-26 05:41:40', 0, NULL, 1),
(5254, '', '0', '7373411181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106250003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-25 10:45:44', 0, NULL, 0, NULL, 1),
(5255, 'SAMILI S', '4', '9786314580', '7867962081', 'Samili88@gmail.com', '1988-06-27', 32, '2', '1', 'VINODHINI S', 'HOME MAKER', 12000.00, 1, 18525.00, 20000.00, 'OLD WASHERMEN PET, ROYAPURAM.', 'OLD WASHERMEN PET', '2106250004', '1', '2', 'upload_files/candidate_tracker/67470988780_SAMILI. S. RESUME .pdf', NULL, '3', '2021-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 11:01:15', 1, '2021-06-25 11:11:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5256, 'Malathi. M', '4', '7010962805', '9514133679', 'malathimano918@gmail.com', '1998-09-09', 22, '2', '2', 'Manoharan, indhumathi', 'Steel shop', 20000.00, 1, 0.00, 11000.00, 'Selavoyal', 'Chennai', '2106250005', '1', '1', 'upload_files/candidate_tracker/14017760413_RESUME.pdf', NULL, '2', '2021-06-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 12:01:00', 1, '2021-06-25 01:08:14', 0, NULL, 1),
(5257, 'KALAIYARASAN K', '4', '9952686938', '9790010395', 'kalaiyarasan28346@gmail.com', '1998-04-01', 23, '2', '2', 'Kaliyamoorthy V', 'Building construction', 15000.00, 2, 0.00, 12000.00, 'Nagapattinam', 'Guduvanchery', '2106250006', '1', '1', 'upload_files/candidate_tracker/40894744692_kalaiyarasan resume.pdf', NULL, '2', '2021-07-01', 0, '', '3', '60', '2021-07-05', 120000.00, '', '2', '1970-01-01', '2', 'Selected for Suriya Team with CTC 120000 includes PF ESI PT deductions', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 12:36:26', 60, '2021-07-03 10:23:28', 0, NULL, 1),
(5258, 'Aravindan', '4', '9080861491', '9342562577', 'aravindsmart1810@gmail.com', '1997-10-18', 0, '2', '2', 'Ravi', 'Auto driver', 20000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2106250007', '1', '2', 'upload_files/candidate_tracker/99582049445_pdf aravind.pdf', NULL, '3', '2021-06-26', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 01:00:33', 1, '2021-06-25 01:05:11', 0, NULL, 1),
(5259, 'EDWIN EDISON A', '4', '8072167602', '9566305414', 'rioedwin78@gmail.com', '1998-05-31', 23, '2', '2', 'ANTONI RAJ S', 'Business', 30000.00, 1, 0.00, 13000.00, 'Karur', 'Karur', '2106250008', '1', '1', 'upload_files/candidate_tracker/81727440734_EDWINEDISON_resume.pdf', NULL, '2', '2021-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 03:02:20', 1, '2021-06-25 04:39:02', 0, NULL, 1),
(5260, 'sowmiya', '4', '8610742517', '', 'sowmisakthi7777@gmail.com', '1997-05-26', 24, '2', '1', 'arunkumar', 'engineer', 26000.00, 2, 0.00, 9000.00, 'dindigul', 'dindigul', '2106250009', '1', '1', 'upload_files/candidate_tracker/72561795052_Resume.docx', NULL, '3', '2021-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 03:45:21', 1, '2021-06-25 03:58:20', 0, NULL, 1),
(5261, '', '0', '9566305414', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106250010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-25 04:09:24', 0, NULL, 0, NULL, 1),
(5262, '', '0', '7904876702', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106250011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-25 04:16:34', 0, NULL, 0, NULL, 1),
(5263, '', '0', '9944873743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106250012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-25 04:28:36', 0, NULL, 0, NULL, 1),
(5264, 'SOLAIRAJ G', '4', '8973057843', '', 'solayraju03@gmail.com', '1997-07-18', 23, '2', '2', 'GANESAN S', 'PLUMBING AND ELECTRONIC WORKING', 15000.00, 2, 13000.00, 15000.00, '2A,pavalamalli street,R.S.nagar,Virudhunagar', 'Virudhunagar', '2106250013', '1', '2', 'upload_files/candidate_tracker/23987395911_SOLAIRAJ\'s Resume (1).pdf', NULL, '3', '2021-06-26', 12, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-25 04:33:42', 1, '2021-06-25 04:38:41', 0, NULL, 1),
(5265, 'narmadha', '4', '9994812451', '', 'sathishnarmadha31@gmail.com', '1990-07-31', 30, '2', '1', 'srinivasalu', 'retired railway', 16000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2106250014', '2', '2', 'upload_files/candidate_tracker/90207948377_narmadha 1 Resume.pdf', NULL, '2', '2021-06-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '3yrs in QC and SIP, no relevant exp and expt ia 18k, and age will not suite for crm', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-25 08:12:22', 7, '2021-06-28 10:48:03', 0, NULL, 1),
(5266, 'lakshmanan c', '6', '7358729034', '', 'chandresakar2019@gmail.com', '1997-10-08', 23, '2', '2', 'chandrasekar', 'business man', 10000.00, 0, 11000.00, 13000.00, 'chennai', 'chennai', '2106250015', '2', '2', 'upload_files/candidate_tracker/77115433326_Lakshmanan resume.docx', NULL, '2', '2021-06-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'his brother is working in Sriram Insurance, will not suite for us.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-25 08:18:43', 7, '2021-06-28 10:46:13', 0, NULL, 1),
(5267, 'ashmitha', '4', '9025554248', '', 'ashmitha015@gmail.com', '2000-03-15', 21, '2', '1', 'farook', 'abm', 30000.00, 2, 12000.00, 13000.00, 'chennai', 'moolakadai', '2106250016', '2', '2', 'upload_files/candidate_tracker/99903986830_CV_2021-01-23-094239.pdf', NULL, '2', '2021-06-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-25 08:27:00', 1, '2021-06-25 08:30:09', 0, NULL, 1),
(5268, 'Shalini.S', '4', '9176027581', '8838681898', 'shalinihari0703@gmail.com', '2001-03-07', 20, '1', '2', 'Deepa.S', 'Baby care taker', 8000.00, 1, 0.00, 15000.00, 'Pattinapakam', 'Pattinapakam', '2106260001', '', '1', 'upload_files/candidate_tracker/84631884159_SHALINI-2.docx', NULL, '3', '2021-06-26', 0, 'P1066', '3', '59', '2021-06-28', 120000.00, '', '0', NULL, '2', 'Selected for Priyanka Team-Internal Reference with CTC - 120000 Cash mode 5% deduction - 9500 TH\n', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-26 10:25:14', 1, '2021-06-26 10:34:52', 0, NULL, 1),
(5269, 'divya', '4', '9789067982', '', 'diyazviv@gmail.com', '2000-04-27', 21, '2', '2', 'renukadevi', 'sales', 5000.00, 1, 0.00, 10000.00, 'koturpuram', 'koturpuram', '2106260002', '1', '1', 'upload_files/candidate_tracker/26192008527_imgtopdf_22062021112903.pdf', NULL, '1', '2021-06-26', 0, '', '3', '59', '2021-06-28', 120000.00, '', '0', NULL, '2', 'Selected for Suriya Team with CTC 120000 includes PF/ESI - but didnt come for the joining', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-26 10:28:39', 1, '2021-06-26 10:33:55', 0, NULL, 1),
(5270, 'Mariya Monica A', '4', '7338909010', '', 'monicarajan01@gmail.com', '1998-09-10', 22, '2', '2', 'Arul Rajan S', 'Security', 10000.00, 2, 0.00, 15000.00, '23/6,Pillaiyar koil st,West Mambalam,chennai-33', '23/6,Pillaiyar Koil St,West Mambalam,Chennai-33', '2106260003', '1', '1', 'upload_files/candidate_tracker/9829259213_Monica Resume-1.docx', NULL, '3', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 12:59:11', 1, '2021-06-26 01:39:41', 0, NULL, 1),
(5271, 'Vishal Padigola', '5', '7893968691', '', 'vishalpadigola@gmail.com', '1998-09-20', 22, '2', '2', 'lakshmi narayana', 'late', 50000.00, 1, 0.00, 20000.00, 'hyderabad', 'lingampally', '2106260004', '1', '1', 'upload_files/candidate_tracker/95454604938_VISHAL.pdf', NULL, '2', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-26 01:12:33', 1, '2021-06-26 01:15:26', 0, NULL, 1),
(5272, 'H.Sulthana', '4', '6374663796', '7401047501', 'beevisulami@gmail.com', '1998-05-15', 23, '2', '2', 'M.Harun Basha', 'Business', 20000.00, 2, 12500.00, 12500.00, 'No : 401 p block Ranganadha puram Korukkupet', 'No : 6/17 Munniappan street, old washermenpet', '2106260005', '1', '2', 'upload_files/candidate_tracker/36447769469_Sulthana Resume.pdf', NULL, '3', '2021-06-28', 0, '', '3', '60', '2021-07-01', 144000.00, '', '5', '1970-01-01', '1', 'Selected for Suriya Team with CTC - 144000 includes PF/ESI/PT', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 01:19:40', 60, '2021-06-30 07:26:22', 0, NULL, 1),
(5273, 'vengateswaran s', '4', '6379382372', '8072262401', 'venkateswaran369@gmail.com', '2000-11-09', 20, '2', '2', 'sivaji k', 'Construction Worker', 20000.00, 2, 0.00, 15000.00, 'coimbatore', 'coimbatore', '2106260006', '1', '1', 'upload_files/candidate_tracker/59324987063_Venkat123 (1).pdf', NULL, '2', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 01:56:05', 1, '2021-06-26 02:51:50', 0, NULL, 1),
(5274, 'Pandisevi', '4', '9791623272', '', 'pandisevisaravanan9791@gmail.com', '1997-01-27', 24, '2', '1', 'Saravanan', 'Chennai', 20000.00, 1, 12000.00, 15000.00, 'Trichy', 'Chennai', '2106260007', '1', '2', 'upload_files/candidate_tracker/59880481422_PANDI SELVI.docx', NULL, '3', '2021-06-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 01:59:10', 1, '2021-06-26 02:49:49', 0, NULL, 1),
(5275, 'Mahalakshmi', '4', '8939086066', '', 'maha16.ms@gmail.com', '1998-01-16', 23, '2', '1', 'Srini.NK', 'Currently not working', 1.00, 0, 0.00, 12000.00, 'Otteri', 'Otteri', '2106260008', '1', '1', 'upload_files/candidate_tracker/12914490310_RESUME MAHA.docx', NULL, '3', '2021-06-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 02:46:05', 1, '2021-06-26 02:51:30', 0, NULL, 1),
(5276, 'Divya. R', '4', '8838883925', '9790763396', 'divyaarthi27@gmail.com', '1998-08-29', 22, '2', '2', 'Ravichandran', 'Electrician', 20000.00, 1, 12000.00, 13000.00, 'Chennai', 'Chennai', '2106260009', '1', '2', 'upload_files/candidate_tracker/81924339878_divya-resumeorginalupd.docx', NULL, '2', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 02:51:09', 1, '2021-06-26 02:57:15', 0, NULL, 1),
(5277, 'ashfaq ahmed khan', '5', '7019597395', '', 'ashfaq.khan82@gmail.com', '1982-11-21', 38, '1', '1', 'shaista khanum', 'housewife', 30000.00, 1, 30000.00, 4.50, 'Bangalore', 'Bangalore', '2106260010', '', '2', 'upload_files/candidate_tracker/30540505277_ashfaq new resume.pdf', NULL, '1', '2021-06-28', 0, '55583', '3', '59', '2021-06-28', 350000.00, '', '', '2023-03-25', '1', 'Selected for Muppudathy Team wiht CTC 350000 includes PF/PT Deductions', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-26 02:54:21', 60, '2021-06-28 02:58:39', 0, NULL, 1),
(5278, 'Divya', '4', '9790763396', '8838883925', 'divyaarthi27@gmail.com', '1998-08-29', 22, '2', '2', 'Ravichandran', 'Electrician', 20000.00, 1, 12000.00, 13000.00, 'Old washermenpet', 'Old washermenpet', '2106260011', '1', '2', 'upload_files/candidate_tracker/43851849526_divya-resumeorginalupd.docx', NULL, '2', '2021-06-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 03:04:06', 1, '2021-06-26 03:06:39', 0, NULL, 1),
(5279, 'umar farook', '4', '8072243585', '', 'Viratumar@gmail.com', '1998-06-14', 23, '2', '2', 'addul', 'daily wages', 15000.00, 2, 0.00, 10000.00, 'ponneri', 'Ponneri', '2106260012', '1', '1', 'upload_files/candidate_tracker/45381580582_Umar Farooq.docx', NULL, '2', '2021-06-26', 0, '', '3', '60', '2021-07-01', 126000.00, '', '5', '1970-01-01', '1', 'Selected for Priyanka Team with CTC 126000 - Cash Mode with 5% deduction 9975 take home Salary', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-26 03:15:18', 60, '2021-07-01 09:51:22', 0, NULL, 1),
(5280, 'Balaji s', '4', '9626313244', '6380460849', 'Suchithbala03@gmail.com', '1999-03-03', 22, '2', '2', 'Dakshayani', 'Home maker', 7000.00, 1, 0.00, 12000.00, 'Thiruttani', 'Thiruttani', '2106260013', '1', '1', 'upload_files/candidate_tracker/72731327376_BALAJI RESUME.pdf', NULL, '2', '2021-06-28', 0, '', '3', '59', '2021-07-14', 120000.00, '', '6', '2021-07-25', '1', 'Selected for Tiruvallur Team with cTC 120000 includes PF/ESI/PT dedcutions', '1', '1', '1', '4', '6', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 03:18:14', 60, '2021-07-14 06:50:01', 0, NULL, 1),
(5281, 'PON ANGEL SUDHA T', '4', '9345627474', '6374749981', 'ponangelsudha@gmail.com', '1994-06-30', 26, '2', '2', '-', '-', 18000.00, 0, 12000.00, 12000.00, 'TIRUNELVELI', 'TIRUNELVELI', '2106260014', '1', '2', 'upload_files/candidate_tracker/26865392251_Resume.pdf', NULL, '2', '2021-06-28', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-26 04:20:52', 1, '2021-06-26 04:30:25', 0, NULL, 1),
(5282, 'Nancy pricilla', '4', '9790964918', '9566021889', 'Karthiknanu244@gmail.com', '1998-10-23', 22, '2', '1', 'B. Karthik', 'Electrician', 15.00, 1, 0.00, 11.00, 'Thiruniravur', 'Thiruniravur', '2106270001', '1', '1', 'upload_files/candidate_tracker/48649010118_nancy.pdf', NULL, '1', '2021-06-28', 0, '', '3', '59', '2021-07-19', 120000.00, '', '0', NULL, '2', 'Selected for Tiruvallur Location in cash mode ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-27 06:56:22', 1, '2021-06-27 08:02:38', 0, NULL, 1),
(5283, '', '0', '9444362396', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106270002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-27 07:17:59', 0, NULL, 0, NULL, 1),
(5284, 'Harsha Vardhan Sai S', '13', '7845581203', '', 'harshasuri2324@gmail.com', '2000-09-23', 20, '2', '2', 'SURINARAYANA S', 'Private Employee', 35000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2106280001', '1', '1', 'upload_files/candidate_tracker/33459165544_resume_1620309927977.pdf', NULL, '1', '2021-06-28', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No relevant DM knowledge', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-06-28 09:52:59', 1, '2021-06-28 09:55:30', 0, NULL, 1),
(5285, 'GNANASEKAR.D', '5', '9384488272', '9092565894', 'chinnadgs777@gmail.com', '1993-11-30', 27, '1', '1', 'LOGESHWARI', 'Home Maker', 400000.00, 2, 25000.00, 32000.00, 'Arakkonam', 'Arakkonam', '2106280002', '', '2', 'upload_files/candidate_tracker/69428052840_Gnanasekar Resume 2016 Oct.doc', NULL, '1', '2021-06-28', 0, '55558', '3', '60', '2021-07-01', 357696.00, '', '', '2022-11-25', '1', 'Selected for Raj Kumar with CTC - 357696 includes PF/PT deductions', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 10:39:40', 60, '2021-06-30 06:15:09', 0, NULL, 1),
(5286, 'sankaralingam', '6', '6383070473', '', 'sankarmari790@gmail.com', '1996-09-28', 24, '2', '2', 'sastha', 'labour', 15000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2106280003', '2', '2', 'upload_files/candidate_tracker/7188449461_Sankar(1).pdf', NULL, '2', '2021-06-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 11:17:51', 1, '2021-06-28 11:20:19', 0, NULL, 1),
(5287, '', '0', '9600374738', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106280004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-28 02:08:12', 0, NULL, 0, NULL, 1),
(5288, 'Divyabharathi I', '4', '9698383474', '', 'divyasekarpillai@gmail.com', '1994-02-01', 27, '3', '1', 'Iyappan A', 'DTH Service Engineering', 20000.00, 3, 12000.00, 15000.00, 'Nagapattinam', 'Chennai', '2106280005', '', '2', 'upload_files/candidate_tracker/58858967532_060421-Detailed_Advertisement_JA_2021.pdf', NULL, '1', '2021-06-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our role', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 02:22:05', 1, '2021-06-28 02:34:00', 0, NULL, 1),
(5289, '', '0', '8639142604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106280006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-28 04:32:49', 0, NULL, 0, NULL, 1),
(5290, 'rehan mohammed', '5', '8499934339', '', 'rehanmohd2620@gmail.com', '1999-06-23', 22, '2', '2', 'mhd ameen udin', 'police', 120000.00, 1, 24000.00, 24000.00, 'hyderabad', 'vanasthalipuram', '2106280007', '1', '2', 'upload_files/candidate_tracker/78115023221_Rehan CV (2) (1).pdf', NULL, '1', '2021-06-29', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-28 04:50:18', 1, '2021-06-28 04:53:27', 0, NULL, 1),
(5291, 'Rohit M', '16', '8610382556', '8939702433', 'mrohitjan2000@gmail.com', '2000-01-01', 21, '2', '2', 'Murali R', 'Welding Worker', 12000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2106280008', '1', '1', 'upload_files/candidate_tracker/19212805981_Rohit_M.pdf', NULL, '1', '2021-06-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication OK, No relevant exp, also he holds an offer with Infosys and Cognizant. Will not sustain with us for the role', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-28 06:27:44', 50, '2021-06-29 09:16:15', 0, NULL, 1),
(5292, 'abul hasan abukkalam', '5', '9843321177', '', 'abulhasanabukkalam@gmail.com', '1994-05-18', 27, '2', '1', 'abukkalam', 'daily wages', 15000.00, 1, 19000.00, 20000.00, 'chennai', 'vanagaram', '2106280009', '2', '2', 'upload_files/candidate_tracker/28019244208_ResumeAbulHasanAbukkalam.docx', NULL, '2', '2021-06-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '1', '1', '0', '2', '2021-08-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 07:19:34', 1, '2021-06-28 07:28:38', 0, NULL, 1),
(5293, 'aravindha kumar', '6', '9677096193', '', 'aravinthakumar199@gmail.com', '1995-03-01', 26, '2', '2', 'ashok kumar', 'business', 13000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2106280010', '2', '2', 'upload_files/candidate_tracker/92454391553_2021 May resume.pdf', NULL, '2', '2021-06-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 08:09:33', 1, '2021-06-28 08:11:42', 0, NULL, 1),
(5294, 'amal Ebinezer', '4', '9176147305', '', 'amalebi909@gmail.com', '1997-11-23', 23, '2', '2', 'chinnaraj', 'business', 13000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2106280011', '2', '2', 'upload_files/candidate_tracker/36564195990_Amal resume .pdf', NULL, '2', '2021-06-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not handle pressure and sales target. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 08:14:56', 1, '2021-06-28 08:16:41', 0, NULL, 1),
(5295, 'varsha lakshmi', '4', '7550373527', '', 'varshaavaition@gmail.com', '2000-02-14', 21, '2', '2', 'ramesh', 'business man', 20000.00, 1, 12000.00, 12000.00, 'chennai', 'royapetah', '2106280012', '2', '2', 'upload_files/candidate_tracker/53544808503_RESUMEE.pdf', NULL, '2', '2021-06-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-28 08:22:21', 1, '2021-06-28 08:25:42', 0, NULL, 1),
(5296, '', '0', '9176101048', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106290001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-29 12:04:03', 0, NULL, 0, NULL, 1),
(5297, 'VIKNESWARAN', '5', '9176489147', '', 'vikyythecraziee@gmail.com', '1992-08-07', 28, '1', '1', 'Priyadarshini', 'Banking sector', 40000.00, 1, 22000.00, 27000.00, 'Maraimalainagar', 'Nanganallur', '2106290002', '', '2', 'upload_files/candidate_tracker/45178739981_vignesh RESume.docx', NULL, '1', '2021-06-29', 0, '5551', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not suits for our Role, he is into real estate Sales', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-29 10:09:45', 1, '2021-06-29 10:18:14', 0, NULL, 1),
(5298, '', '0', '8870578041', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2106290003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-06-29 12:51:30', 0, NULL, 0, NULL, 1),
(5299, 'Imran khan', '16', '9677663415', '9003509449', 'imraankhan.khan5@gmail.com', '1994-05-10', 27, '3', '1', 'Sahana', 'House wife', 20000.00, 0, 3.00, 3.50, 'Uthamapalayam, Theni district', 'Tambaram Sanatorium, chennai', '2106290004', '', '2', 'upload_files/candidate_tracker/49702995691_CV IK.docx', NULL, '1', '2021-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Will not sustain for a long with this role. Salary Expectation is very high', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-29 01:15:26', 1, '2021-06-29 01:19:59', 0, NULL, 1),
(5300, 'jabeen sulthana e', '4', '7904682774', '', 'jabbuaffu97107@gmail.com', '2000-11-02', 20, '2', '2', 'mohammed ejaz', 'electrician', 6000.00, 1, 0.00, 10000.00, 'chennai', 'triplicane', '2106290005', '1', '1', 'upload_files/candidate_tracker/87635820732_jabeen sulthana E.pdf', NULL, '2', '2021-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-29 05:03:50', 1, '2021-06-29 05:46:22', 0, NULL, 1),
(5301, 'Vasudevan B', '23', '8220225262', '8220331738', 'vasu.sachin1012@gmail.com', '1993-09-08', 27, '2', '2', 'Balaraman', 'Shop keeper', 30000.00, 1, 18000.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2106290006', '1', '2', 'upload_files/candidate_tracker/57052653971_Resume New-converted-converted_28-Jun-21_16_30_13.pdf', NULL, '1', '2021-06-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Not Much Into Ui,Strong In Ux Only.Requested For Freelance Position,But He Is Not Much Comfortable.', '2', '2', '0', '1', '1', '0', '2', '2021-07-08', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-29 05:15:59', 1, '2021-06-29 05:19:24', 0, NULL, 1),
(5302, 'kowsalya k', '4', '8681854684', '8838324292', 'kowsalyak122000@gmail.com', '2000-12-01', 20, '2', '2', 'karuppasamy', 'wager', 7000.00, 1, 0.00, 10000.00, 'chennai', 'kandanchavadi', '2106290007', '1', '1', 'upload_files/candidate_tracker/9855466433_Document (1).pdf', NULL, '2', '2021-06-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-29 06:05:48', 1, '2021-06-29 06:07:59', 0, NULL, 1),
(5303, 'loganthan', '4', '6379704026', '', 'loganathankoffical@gmail.com', '2000-03-10', 21, '2', '2', 'krishnan', 'nil', 5000.00, 1, 0.00, 10000.00, 'cuddalore', 'chennai', '2106300001', '2', '1', 'upload_files/candidate_tracker/50157217191_LOGANATHAN CV-1.pdf', NULL, '2', '2021-06-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 07:21:52', 1, '2021-06-30 07:27:31', 0, NULL, 1),
(5304, 'pathanjali m', '6', '6379584788', '', 'pathanmoorthy@gmail.com', '1993-12-15', 27, '2', '2', 'moorthy r', 'worker', 10000.00, 1, 15000.00, 16000.00, 'chennai', 'medavakkam', '2106300002', '2', '2', 'upload_files/candidate_tracker/82334322932_Pathan Resume Updated.pdf', NULL, '2', '2021-06-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'high profie, will not suite for telecalling', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 07:30:57', 1, '2021-06-30 07:33:30', 0, NULL, 1),
(5305, 'jagadeesh', '5', '8680008481', '', 'rsjl787898@gmail.com', '1998-05-17', 23, '2', '2', 'ramesh', 'driver', 20000.00, 1, 20000.00, 23000.00, 'chennai', 'thiruvottiyur', '2106300003', '2', '2', 'upload_files/candidate_tracker/80424676461_JAGADEESH.R resume_2.docx', NULL, '2', '2021-06-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '1', '1', '0', '2', '2021-08-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 07:37:32', 1, '2021-06-30 07:39:38', 0, NULL, 1),
(5306, 'dravid', '4', '7502942047', '', 'dbdravid@gmail.com', '1997-09-30', 23, '2', '2', 'd', 'business', 20000.00, 4, 0.00, 12000.00, 'chennai', 'chennai', '2106300004', '2', '1', 'upload_files/candidate_tracker/60688407580_cv new 3.pdf', NULL, '2', '2021-06-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain and expt is 18k', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 07:44:55', 1, '2021-06-30 07:47:40', 0, NULL, 1),
(5307, 'Bazaleel Richard joseph', '6', '9361811018', '9342494985', 'richardjoseph1516@gmail.com', '2000-06-01', 21, '1', '2', 'Juliet margaret', 'Teacher', 70000.00, 1, 0.00, 10000.00, 'Madurai', 'Chennai', '2106300005', '', '1', 'upload_files/candidate_tracker/50361965223_PDFGallery_20210630_103045.pdf', NULL, '1', '2021-06-30', 0, '55559', '5', '34', NULL, 0.00, '', '0', NULL, '1', 'not selected', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 10:24:09', 1, '2021-06-30 10:31:38', 0, NULL, 1),
(5308, 'shanawaz baig', '23', '7373280380', '6380555424', 'shanawaz05@gmail.com', '1991-06-05', 30, '2', '1', 'fathima mubasihra', 'home maker', 12000.00, 2, 15000.00, 23000.00, 'villupuram', 'villupuram', '2106300006', '1', '2', 'upload_files/candidate_tracker/6599544280_SHAN.pdf', NULL, '3', '2021-06-30', 5, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 10:32:28', 7, '2021-07-01 10:51:14', 0, NULL, 1),
(5309, 'Muralidharan', '4', '8939119304', '', 'muralidharanmuralidhran002@gmail.com', '2000-03-19', 21, '2', '2', 'vijaakumar', 'pwd', 20000.00, 1, 0.00, 0.00, 'triplicane', 'triplicane', '2106300007', '1', '1', 'upload_files/candidate_tracker/12034711097_muraliresume1.docx', NULL, '1', '2021-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '1', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-06-30 11:21:49', 7, '2021-06-30 12:16:15', 0, NULL, 1),
(5310, 'Jeya Prakash', '2', '9751183453', '', 'jpwin1997@gmail.com', '1997-12-04', 23, '2', '2', 'Mani maran', 'Coolie', 60000.00, 1, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2106300008', '1', '1', 'upload_files/candidate_tracker/25000063923_Jeya Prakash Resume Sr .pdf', NULL, '2', '2021-07-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2021-06-30 12:04:36', 60, '2021-07-01 06:46:55', 0, NULL, 1),
(5311, 'Agasteen S', '2', '9940144284', '9176792105', 'agasteen.96@gmail.com', '2006-06-30', 0, '2', '2', 'Solomon', 'Auto Driver', 18000.00, 3, 0.00, 180000.00, 'Chennai', 'Kolathur, Chennai', '2106300009', '1', '1', 'upload_files/candidate_tracker/88626762211_Agasteen_resume (2).pdf', NULL, '1', '2021-07-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate keen to learn, but cant communicate the basics, need some time to learn and come', '2', '2', '0', '1', '1', '0', '2', '2021-07-12', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 12:33:06', 1, '2021-06-30 12:36:48', 0, NULL, 1),
(5312, 'Sridhar', '23', '9176517723', '', 'sridharshekar15@gmail.com', '1994-05-07', 27, '2', '2', 'Sekar', 'Retired', 30000.00, 2, 30000.00, 40000.00, 'Chennai', 'Chennai', '2106300010', '1', '2', 'upload_files/candidate_tracker/84509210547_sridhar_resume.pdf', NULL, '3', '2021-07-01', 1, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 12:49:11', 7, '2021-07-01 10:53:48', 0, NULL, 1),
(5313, 'ragavan', '23', '8248081339', '', 'ragavanvijay1996@gmail.com', '2006-06-30', 0, '2', '2', 'gnanaprakasam', 'farmer', 6000.00, 3, 20000.00, 20000.00, 'cuddalore', 'kilpauk chennai', '2106300011', '1', '2', 'upload_files/candidate_tracker/43939649508_resume.pdf', NULL, '1', '2021-07-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not suits for our UI Developer position,He is much into UX Design Part only', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 01:44:59', 1, '2021-06-30 01:50:17', 0, NULL, 1),
(5314, 's.adithyan', '2', '9791135624', '8248063711', 'adithyannjo@gmail.com', '1996-11-24', 24, '2', '2', 'srinivasan', 'business', 250000.00, 0, 0.00, 15000.00, 'madurai street ayanavaram chennai', 'aynavaram chennai', '2106300012', '1', '1', 'upload_files/candidate_tracker/16788806148_adi resume (1)-converted.pdf', NULL, '1', '2021-07-01', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Intern for 3 months - 3500K Stipend ,continuing employment with min 8K.3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 01:46:18', 60, '2021-07-01 06:53:09', 0, NULL, 1),
(5315, 'Vinothkumar', '23', '9944789462', '9150256511', 'vinothkumar2217@gmail.com', '1989-06-17', 32, '2', '1', 'Jothi', 'Owen bussiness', 16500.00, 1, 16500.00, 20000.00, 'Dharmapuri', 'Ambattur, Chennai', '2106300013', '1', '2', 'upload_files/candidate_tracker/18867832290_vino.pdf', NULL, '3', '2021-08-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 01:56:32', 7, '2021-08-28 06:39:14', 0, NULL, 1),
(5316, 'Kanagavalli', '23', '8754841602', '', 'skvmmeena@gmail.com', '1994-02-16', 27, '2', '2', 'Palanivel T', 'Sub inspector', 50.00, 1, 22000.00, 36000.00, 'Chennai', 'Trichy', '2106300014', '1', '2', 'upload_files/candidate_tracker/81727244063_valli- resume.pdf', NULL, '3', '2021-06-30', 15, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 02:04:52', 7, '2021-07-01 10:52:29', 0, NULL, 1),
(5317, 'Mugesh Kumar', '2', '6382557907', '', 'mugeshmugesh26062001@gmail.com', '2001-06-26', 20, '2', '2', 'Selvaraj', 'Small Business', 10000.00, 1, 0.00, 8000.00, 'padukkapathu', 'padukkapathu', '2106300015', '1', '1', 'upload_files/candidate_tracker/33243810095_pdf.pdf', NULL, '2', '2021-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 03:08:40', 1, '2021-06-30 03:16:04', 0, NULL, 1),
(5318, 'Bharath Deva', '2', '9894820022', '', 'reachbharathdeva@gmail.com', '1999-12-10', 21, '2', '2', 'Devarajan', 'Contactor', 20000.00, 1, 0.00, 15000.00, 'Kancheepuram', 'Kancheepuram', '2106300016', '1', '1', 'upload_files/candidate_tracker/47686272181_BharathDeva_Resume_v1.pdf', NULL, '2', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'not open for 3 yrs of service agreement no knowledge in ReactJS,also expectation is around 10-12K', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 04:14:26', 1, '2021-07-03 10:09:19', 0, NULL, 1),
(5319, 'thangathirupathi', '2', '8682918782', '', 'thangathirupathi1297@gmail.com', '1997-02-01', 24, '2', '2', 'balasubramanian', 'labour', 25000.00, 3, 0.00, 168000.00, 'chennai', 'chennai', '2106300017', '1', '1', 'upload_files/candidate_tracker/12092855566_RESUME (4) (1).pdf', NULL, '3', '2021-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 04:19:51', 1, '2021-06-30 07:01:52', 0, NULL, 1),
(5320, 'sivapriya', '23', '9498427352', '', 'sivapriyarajendran1510@gmail.com', '1997-06-01', 24, '2', '2', 'hemalatha', 'farmer', 10000.00, 1, 15000.00, 18000.00, 'thanjavur', 'thanjavur', '2106300018', '1', '2', 'upload_files/candidate_tracker/40457103113_sivresume.pdf', NULL, '3', '2021-06-30', 0, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-06-30 04:39:05', 7, '2021-07-01 10:53:08', 0, NULL, 1),
(5321, 'divya kumari', '16', '9840741626', '9791017578', 'princedivya93@gmail.com', '1993-01-26', 28, '2', '1', 'meganathan v', 'customer executive', 200000.00, 1, 8000.00, 25000.00, 'perambur', 'chennai', '2106300019', '1', '2', 'upload_files/candidate_tracker/52799629155_M.Divya kumari - Resume.docx', NULL, '2', '2021-07-01', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much experience into MIS, Married, will not handle our pressure and sustainability doubts on this profile', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-06-30 06:16:31', 50, '2021-07-01 09:15:06', 0, NULL, 1),
(5322, 'SARATH KUMAR P', '5', '8124848114', '', 'Sandysarath1998@gmail.com', '1998-07-16', 22, '1', '2', 'Krishnaveni', 'House Wife', 35000.00, 1, 15000.00, 22000.00, 'Old school street y.othakkadai madurai', 'Thambaram', '2106300020', '', '2', 'upload_files/candidate_tracker/16206573585_sarath kumar-19-1.pdf', NULL, '2', '2021-06-30', 15, '55567', '3', '60', '2021-07-12', 240000.00, '', '6', '2021-11-08', '1', 'Selected for Santhosh Team - RM with CTC 2.4 LPA includes PF/ESI/PT deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-06-30 08:32:22', 60, '2021-07-09 05:37:48', 0, NULL, 1),
(5323, 'gokulnath', '6', '8248117885', '', 'gokulparker@gmail.com', '2002-07-25', 18, '2', '2', 'suresh', 'working', 25000.00, 0, 0.00, 12000.00, 'arakkonam', 'Arakkonam', '2107010001', '1', '1', 'upload_files/candidate_tracker/68411925122_ResumeX .pdf', NULL, '1', '2021-07-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-01 09:06:20', 1, '2021-07-01 09:13:17', 0, NULL, 1),
(5324, 'VIJAY.r', '6', '8056099318', '', 'vijaypraveen08011998@gmail.com', '1998-01-08', 23, '2', '2', 'raj', 'business', 15000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2107010002', '1', '1', 'upload_files/candidate_tracker/68298010641_VIJAY RESUME R.pdf', NULL, '1', '2021-07-01', 0, '', '3', '60', '2021-07-15', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Thiyagu Team with CTC - 192000 includes PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-01 09:17:59', 60, '2021-07-13 05:25:43', 0, NULL, 1),
(5325, 'SHUNMUGAVEL S', '2', '9677437827', '', 'Shunmugavelsv05@GMAIL.COM', '1996-09-05', 24, '2', '2', 'Subbiah', 'Teacher', 40000.00, 1, 7000.00, 18000.00, 'KALLIDAI KURICHI TIRUNELVELI', 'KALLIDAI KURICHI TIRUNELVELI', '2107010003', '1', '2', 'upload_files/candidate_tracker/16493662186_Shunmugavel.pdf', NULL, '2', '2021-07-02', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Just for the Salary Rise, he looks for an opportunity.Sustainability doubt and the salary expectation is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 01:06:48', 1, '2021-07-01 01:11:28', 0, NULL, 1),
(5326, 'george clinton', '2', '6381992718', '', 'georgeclinton.1792@gmail.com', '1992-11-05', 28, '2', '2', 'l. nathan', 'business', 100000.00, 1, 0.00, 15000.00, 'mkb nagar chennai', 'mkb nagar chennai', '2107010004', '1', '1', 'upload_files/candidate_tracker/75321335875_George Clinton-Resume[342] (2).pdf', NULL, '1', '2021-07-02', 0, '', '3', '60', '2021-07-05', 96000.00, '', '5', '1970-01-01', '1', 'Intern for 5 months, post intern 3yrs agreement also salary(8K) wil confirmed.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-01 02:24:12', 60, '2022-03-22 02:37:58', 0, NULL, 1),
(5327, 'Chandru M', '23', '6383537455', '', 'chandrumahendran.16@gmail.com', '1998-05-22', 23, '2', '2', 'S.Mahendran', 'Sales Representative', 25000.00, 1, 13000.00, 30000.00, 'Madurai', 'Madurai', '2107010005', '1', '2', 'upload_files/candidate_tracker/25680585167_Chandru(1).pdf', NULL, '3', '2021-07-02', 15, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 04:08:55', 1, '2021-07-01 04:13:31', 0, NULL, 1),
(5328, 'sai kumar', '2', '9398944626', '7200993587', 'ksai4666@gmail.com', '1998-12-29', 22, '2', '2', 'srinivasulu', 'bussiness', 20000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2107010006', '1', '1', 'upload_files/candidate_tracker/72700033618_SaikumarResume.pdf', NULL, '1', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much ok with SA, need some time to confirm.Not much comfortable with intern model and expectation is high', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 04:11:21', 1, '2021-07-01 06:30:17', 0, NULL, 1),
(5329, 'Priya Dharshini R', '2', '7338962476', '8072565825', 'riaharshini1998@gmail.com', '1998-11-14', 22, '2', '2', 'Ravichandran R', 'Business', 20000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2107010007', '1', '1', 'upload_files/candidate_tracker/33695252305_updated cv.pdf', NULL, '1', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to check With parents on the SA, Fresher profile not much comfortable with Internship Role\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 04:24:00', 1, '2021-07-01 06:29:56', 0, NULL, 1),
(5330, '', '0', '8973523977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107010008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-01 04:40:11', 0, NULL, 0, NULL, 1),
(5331, 'Dominic Sedu Raja', '2', '9042831738', '', 'Dominicseduraja3@gmail.com', '1996-05-03', 25, '2', '2', 'Poun Raj.F', 'Export', 40000.00, 2, 17000.00, 20000.00, 'Tuticorin', 'Tuticorin', '2107010009', '1', '2', 'upload_files/candidate_tracker/79072482598_dominic.pdf', NULL, '3', '2021-07-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Currently working and his Gross is around 15K in native itself. He is not comfortable with our package and he is not much open to the service agreement.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 05:22:58', 1, '2021-07-01 05:28:28', 0, NULL, 1),
(5332, 'Vignesh', '23', '8610145293', '8124238341', 'careercareer928@gmail.com', '1995-04-12', 26, '2', '2', 'Vasanthi', 'House maid', 15000.00, 0, 13500.00, 16000.00, '92/40 mangaliamman koil street. St. Thomas mount', 'Chennai', '2107010010', '1', '2', 'upload_files/candidate_tracker/68045538347_cv.pdf', NULL, '1', '2021-07-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in UI UX will not sustain for a long.No basic knowledge in CSS Javascript,photoshop', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 05:34:42', 1, '2021-07-01 05:42:50', 0, NULL, 1),
(5333, 'Kala S', '23', '9159748750', '6380737065', 'kavyaswaminathan97@gmail.com', '1996-10-23', 24, '2', '2', 'pushpalatha.s', 'home maker', 20000.00, 1, 12000.00, 25000.00, 'Thanjavur', 'Thanjavur', '2107010011', '1', '2', 'upload_files/candidate_tracker/96337886806_UI Developer Resume.pdf', NULL, '2', '2021-07-02', 45, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-01 06:09:22', 1, '2021-07-02 11:08:08', 0, NULL, 1),
(5334, 'rasathi', '4', '7825070229', '', 'rasathigovardhanan@gmail.com', '1992-05-28', 29, '2', '1', 'govardhanan', 'driver', 15000.00, 4, 12000.00, 12500.00, 'thiruvallur', 'thiruvallur', '2107020001', '2', '2', 'upload_files/candidate_tracker/77329489679_0CAA24E1-C465-4000-A56A-ECC674C53586-converted.pdf', NULL, '1', '2021-07-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our role, will not sustain for a long', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-02 10:39:49', 1, '2021-07-02 10:48:52', 0, NULL, 1),
(5335, 'S.Anu Suriya', '23', '9361608024', '9095958304', 'sanusuriya@gmail.com', '1997-05-22', 24, '2', '2', 'R.Suyambuvel', 'Driver', 10000.00, 2, 16000.00, 22000.00, 'Kanyakumari', 'Kanyakumari', '2107020002', '1', '2', 'upload_files/candidate_tracker/81684724190_Anu_Suriya_Resume1.pdf', NULL, '3', '2021-07-03', 15, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-02 11:44:20', 1, '2021-07-02 01:00:07', 0, NULL, 1),
(5336, 'Giri Raj', '23', '7401424959', '', 'girishraj319@gmail.com', '1997-06-14', 24, '2', '2', 'Saravanan', 'Defence', 60000.00, 1, 216000.00, 300000.00, 'Chennai', 'Chennai', '2107020003', '1', '2', 'upload_files/candidate_tracker/51678588448_GiriRaj-CV(1).pdf', NULL, '1', '2021-07-08', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not having designing knowledge, Having two offers in hand', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-02 01:00:41', 60, '2021-07-08 10:25:33', 0, NULL, 1),
(5337, 'Shanmugam', '2', '9551533348', '8682821907', 'shanmugam051996@gmail.com', '1996-12-05', 24, '2', '2', 'Selvam', 'Driver', 15000.00, 1, 0.00, 12000.00, 'Chennai,tamilnadu', 'Chennai, tamilnadu', '2107020004', '1', '1', 'upload_files/candidate_tracker/23983862096_shan_resume.pdf', NULL, '1', '2021-07-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for MErn Stack.No knowlege in React,will not sustain for a long not comfortable with the SA', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-02 01:26:39', 60, '2021-07-03 10:27:10', 0, NULL, 1),
(5338, 'SANTHOSH', '5', '9003083512', '9791070846', 'sandysantho7448@gmail.com', '1997-10-28', 23, '1', '2', 'CHANDRAN. A', 'Late', 250000.00, 2, 16000.00, 20000.00, 'I BLOCK 19 SATHYAMOORTHY NAGAR ,NANDANAM', 'NANDANAM', '2107020005', '', '2', 'upload_files/candidate_tracker/17620318_MY RESUME-converted.pdf', NULL, '1', '2021-07-02', 5, '555588', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much open up, no relevant Exp into Sales, Will not handle pressure', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-02 02:32:34', 1, '2021-07-02 02:49:59', 0, NULL, 1),
(5339, 'Lakshmi Priya', '16', '9940362956', '', 'priyadhayanandhan96@gmail.com', '1996-07-30', 24, '2', '2', 'Dhayanandhan', 'Govt staff', 25000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2107020006', '1', '1', 'upload_files/candidate_tracker/67603955186_LP resume.docx', NULL, '2', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '.No Knowledge In MIS, Communication Is Good. Sustainability Doubts on this profile', '3', '2', '0', '1', '1', '0', '2', '2021-07-07', '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-02 02:35:53', 1, '2021-07-02 03:03:52', 0, NULL, 1),
(5340, 'AANISHA A', '2', '9994396641', '9688667820', 'aanishaayub@gmail.com', '1999-03-28', 22, '2', '2', 'AYUB KHAN', 'TAILOR', 18000.00, 2, 0.00, 25000.00, 'METTUPALAYAM', 'METTUPALAYAM', '2107020007', '1', '1', 'upload_files/candidate_tracker/31271009768_Aanisha resume.pdf', NULL, '3', '2021-07-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-02 03:47:31', 1, '2021-07-02 03:54:06', 0, NULL, 1),
(5341, 'jayaprasana', '4', '6385219731', '', 'jayaprasana.thenmail.comnarasu02@g', '2002-02-10', 19, '2', '2', 'thenarasu', 'business', 83000.00, 1, 0.00, 10000.00, 'vandalur', 'vandalur', '2107030001', '1', '1', 'upload_files/candidate_tracker/38147976727_RESUME.PDF.pdf', NULL, '1', '2021-07-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suits for Telecaller profile,yet to complete his graduation one more year to go', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-03 10:47:05', 1, '2021-07-03 10:53:30', 0, NULL, 1),
(5342, 'Alagu Bharathi S', '16', '7358174300', '', 'bharathist46@gmail.com', '1996-04-05', 25, '4', '1', 'Thirumaran', 'CRE', 25000.00, 1, 17000.00, 23000.00, 'Chennai', 'Chennai', '2107030002', '', '2', 'upload_files/candidate_tracker/64748814040_Resume.pdf', NULL, '2', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,Attended F2F discussion,Written communication is very average only. Recently married and not sure on the sustainability. She is much into pure data Analyst', '3', '1', '0', '1', '1', '0', '2', '2021-07-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-03 11:51:12', 1, '2021-07-03 11:56:56', 0, NULL, 1),
(5343, 'Jennifer vinnarasi', '17', '8792314609', '9176589177', 'jennifelix2@gmail.com', '1991-10-03', 29, '1', '1', 'Felix Arul jayaraj', 'Employee', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107030003', '', '1', 'upload_files/candidate_tracker/57460814403_Jeni Resume-PDF.pdf', NULL, '1', '2021-07-03', 0, 'P1136', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for the positions ,will not sustain for a long', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-03 11:56:03', 1, '2021-07-03 12:13:37', 0, NULL, 1),
(5344, 'Kavidha', '23', '7826805053', '', 'kavidha16@gmail.com', '1994-05-16', 27, '2', '1', 'Parthasarathi', 'Finance manager', 50000.00, 2, 25000.00, 42000.00, 'Chennai', 'Chennai', '2107030004', '1', '2', 'upload_files/candidate_tracker/66975174525_kavidha-periyasamy.pdf', NULL, '3', '2021-07-05', 15, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 12:06:31', 7, '2021-07-05 10:57:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5345, 'c. cynthia jenifer', '2', '9629978493', '', 'cynthiajeniferc@gmail.com', '1995-12-02', 25, '2', '2', 'helen lydia', 'house', 13000.00, 1, 0.00, 15000.00, 'chengalpattu', 'chennai', '2107030005', '1', '1', 'upload_files/candidate_tracker/46518932257_Cynthia_Jenfier_Resume.pdf', NULL, '1', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open with terms and conditions, fresher profile no basic knowledge', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 12:15:33', 1, '2021-07-03 12:24:17', 0, NULL, 1),
(5346, 'Prattossh Shivam', '23', '9600006292', '', 'prattossh07@gmail.com', '1994-07-26', 26, '2', '1', 'Krithika', 'House wife', 300000.00, 1, 300000.00, 300000.00, 'Chennai', 'Chennai', '2107030006', '1', '2', 'upload_files/candidate_tracker/7023298700_Prattossh Shivam CV.pdf', NULL, '1', '2021-07-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in UI UX,only in to the designing part, Will not suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 01:14:35', 1, '2021-07-03 01:23:49', 0, NULL, 1),
(5347, 'Radhakrishnan T', '2', '8778154945', '', 'radhakrishnan061999@gmail.com', '1999-07-06', 21, '2', '2', 'Thulasidharan A', 'MTC staff', 30000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2107030007', '1', '1', 'upload_files/candidate_tracker/83216073556_CV-july.pdf', NULL, '2', '2021-07-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 03:20:03', 1, '2021-07-03 03:33:37', 0, NULL, 1),
(5348, 'Nisangan N', '2', '9498301383', '9600086565', 'nisanganamn@gmail.com', '1999-08-20', 21, '2', '2', 'nandakumar', 'self employement', 30000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2107030008', '1', '1', 'upload_files/candidate_tracker/29060367685_Nisangan_Resume.pdf', NULL, '1', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Profile, not open with terms and conditions will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 03:49:52', 1, '2021-07-03 04:06:21', 0, NULL, 1),
(5349, 'AJITH KUMAR', '23', '9626816237', '', 'ajith.veera.2014@gmail.com', '1998-08-12', 22, '2', '2', 'Samikannu', 'Farmer', 14000.00, 1, 15000.00, 20000.00, 'Chennai', 'Ariyalur', '2107030009', '1', '2', 'upload_files/candidate_tracker/56377864018_Ajith-update-resume-1.pdf', NULL, '3', '2021-07-05', 1, '', '1', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'task given', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 04:47:12', 7, '2021-07-05 10:57:45', 0, NULL, 1),
(5350, 'vignesh j', '23', '6383779260', '8939914700', 'vignesh0014@gmail.com', '1997-07-14', 23, '2', '2', 'vijayalakshmi j', 'candle making', 16000.00, 0, 0.00, 17000.00, 'chennai tamilnadu', 'chennai tamilnadu', '2107030010', '1', '2', 'upload_files/candidate_tracker/80655219522_Profile (1).pdf', NULL, '1', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for UI Position, no basic knowledge in UI UX', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-03 05:24:36', 1, '2021-07-03 05:51:45', 0, NULL, 1),
(5351, '', '0', '8939914700', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107030011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-03 06:05:56', 0, NULL, 0, NULL, 1),
(5352, 'S.Anitha', '4', '8838136476', '9840057018', 'anithasa44@email.com', '2006-07-05', 0, '1', '2', 'Meenakshi S', 'House keeping', 7000.00, 0, 12000.00, 11000.00, 'T.nagar', 'T.nagar', '2107050001', '', '2', 'upload_files/candidate_tracker/7144372414_Resume ani (2)-converted-converted.pdf', NULL, '1', '2021-07-05', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Lockdown Period Hold Long Pending ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-05 11:04:52', 1, '2021-07-05 11:11:01', 0, NULL, 1),
(5353, 'sumithra', '5', '7338990263', '', 'Sumithramanju044@gmail.com', '2000-09-16', 20, '2', '2', 'USHARANI.p', 'security', 15000.00, 1, 0.00, 15000.00, 'tvk nagar', 'tvk nagar', '2107050002', '1', '1', 'upload_files/candidate_tracker/60634225425_52f9a10b-23bf-4304-8976-f2fff17a2243.pdf', NULL, '1', '2021-07-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not suits for our Telecaller role', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-05 11:06:37', 1, '2021-07-05 11:14:58', 0, NULL, 1),
(5354, 'Manojkumar p', '5', '9361219858', '7358667902', 'Manojappu085@gmail.com', '1990-02-07', 31, '1', '1', 'Ramya', 'House wife', 30000.00, 2, 30000.00, 35000.00, 'Chennai', 'Chennai', '2107050003', '', '2', 'upload_files/candidate_tracker/58854268886_Vino_Resume.docx', NULL, '1', '2021-07-05', 0, '55558', '3', '59', '2021-07-19', 350000.00, '', '3', '2021-08-30', '1', 'Selected for RajKumar with CTC - 350000 includes PF/PT deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-05 11:51:27', 60, '2021-07-15 05:22:35', 0, NULL, 1),
(5355, 'Salman Faris', '4', '8870370352', '9442779376', 'smartsalman360@gmail.com', '2001-10-19', 19, '2', '2', 'Shajahan', 'Auto Driver', 8000.00, 0, 0.00, 12000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2107050004', '1', '1', 'upload_files/candidate_tracker/25113954444_salman.docx', NULL, '2', '2021-07-06', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'slow and will not handle pressure. expt is 12k+, will relocate to chennai', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-05 01:18:34', 1, '2021-07-05 01:21:45', 0, NULL, 1),
(5356, 'UDHAYASURIYAN D', '23', '9500627371', '', 'udhay.peace@gmail.com', '1996-06-05', 25, '2', '2', 'Dhandapani k', 'Govt employee', 35000.00, 2, 10000.00, 20000.00, '41 Vasu Nagar Muthoopu Villupuram', 'Villupuram', '2107050005', '1', '2', 'upload_files/candidate_tracker/79865271708_CV Udhay 1.pdf', NULL, '2', '2021-07-06', 10, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-05 06:18:02', 1, '2021-07-05 06:25:31', 0, NULL, 1),
(5357, 'parthiban', '23', '6382025053', '8870901951', 'parthibannatesan2698@gmail.com', '1998-01-26', 23, '2', '2', 'natesan', 'business', 9000.00, 1, 2.50, 3.75, 'salem', 'salem', '2107050006', '1', '2', 'upload_files/candidate_tracker/99556398447_Parthiban Resume.pdf', NULL, '2', '2021-07-06', 15, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-05 06:27:39', 1, '2021-07-05 06:33:11', 0, NULL, 1),
(5358, 'manikandan', '4', '8122175112', '', 'Manikandanusharani48@gmail.com', '1996-01-21', 25, '2', '2', 'kuppusami', 'business', 10000.00, 1, 0.00, 12000.00, 'pattabiram', 'pattabiram', '2107060001', '1', '1', 'upload_files/candidate_tracker/32216164583_MANI RESUME.docx', NULL, '1', '2021-07-06', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Not Suit For Telecalling, Low Confidence level', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-06 10:21:55', 1, '2021-07-06 11:04:10', 0, NULL, 1),
(5359, 'Erra Shashikanth', '5', '9705018588', '9014483197', 'shashikanthera1996@gmail.com', '1996-05-20', 25, '2', '2', 'nagender', 'late', 50000.00, 1, 0.00, 20000.00, 'hyderabad', 'uppal', '2107060002', '1', '1', 'upload_files/candidate_tracker/97159573755_Document from Shashikanth.pdf', NULL, '1', '2021-07-07', 0, '', '3', '59', '2021-07-15', 252200.00, '', '3', '2022-05-02', '1', 'Selected for Veben - Hyderabad Team with CTC 252200 includes PF/PT deductions', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-06 10:57:53', 60, '2021-07-14 11:42:15', 0, NULL, 1),
(5360, 'P. T. Eniyavan', '22', '7845380389', '', 'eniyavan.pt@gmail.com', '1995-06-03', 26, '1', '2', 'Prabhakaran', 'Automobiles', 30000.00, 1, 13500.00, 15000.00, 'No. 1 Venkatesapuram 3rd street, Triplicane', 'No. 1 Venkatesapuram 3rd Street, Triplicane', '2107060003', '', '2', 'upload_files/candidate_tracker/48164746413_Eniyavan P.T Resume(1).pdf', NULL, '1', '2021-07-06', 0, 'Jobs', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Profile not Up to expectation.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-06 10:59:58', 60, '2021-07-06 02:27:30', 0, NULL, 1),
(5361, 'gokulakrishnan', '4', '9042582317', '', 'krishgp20371@gmail.com', '2000-07-20', 20, '2', '2', 'suresh', 'supervisor', 15000.00, 1, 0.00, 10000.00, 'mugappair', 'mugappair', '2107060004', '1', '1', 'upload_files/candidate_tracker/70594479190_resume . pdf .pdf', NULL, '1', '2021-07-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-06 11:25:05', 1, '2021-07-06 11:32:17', 0, NULL, 1),
(5362, 'Udhaya', '23', '9095558613', '', 'udhayavvn96@gmail.com', '2006-07-06', 0, '2', '2', 'Venjatasubramaniyan', 'Farmer', 20000.00, 1, 21000.00, 30000.00, 'Nagapattinam', 'Nagapattinam', '2107060005', '1', '2', 'upload_files/candidate_tracker/95190646945_Udhaya\'s Resume-2021.pdf', NULL, '3', '2021-07-07', 20, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-06 11:39:57', 1, '2021-07-06 11:43:02', 0, NULL, 1),
(5363, '', '0', '9791744387', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107060006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-06 11:52:58', 0, NULL, 0, NULL, 1),
(5364, 'Gowtham Selvaraj', '23', '7358696546', '9095429637', 'gowthambct18@gmail.com', '2006-07-06', 15, '2', '2', 'Selvaraj', 'Building labour', 20000.00, 1, 12000.00, 20000.00, 'Udumalpet,Coimbatore', 'Udumalpet,Coimbatore', '2107060007', '1', '2', 'upload_files/candidate_tracker/82799566693_Gowtham_Resume.docx', NULL, '2', '2021-07-07', 15, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-06 01:35:41', 1, '2021-07-06 01:42:47', 0, NULL, 1),
(5365, 'R. Sushmitha', '2', '8610807630', '9941610912', 'sushmitharavikumar3@gmail.com', '1996-10-09', 24, '2', '2', 'Dinesh Kumar - Brother', 'Sales Manager', 20000.00, 3, 0.00, 10000.00, 'Valasaravakkam', 'Porur', '2107060008', '1', '1', 'upload_files/candidate_tracker/91495530319_Sushmitha .pdf', NULL, '2', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnt turn for the F2F discussion,', '2', '2', '0', '1', '1', '0', '2', '2021-07-12', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-06 07:30:01', 1, '2021-07-06 09:50:34', 0, NULL, 1),
(5366, 'Yeshvanth s', '11', '9176390200', '9444459015', 'yeshvanthselvam@gmail.com', '2006-07-07', 0, '1', '2', 'K Selvam', 'Fabrication Work', 90000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107070001', '', '1', 'upload_files/candidate_tracker/305261708_Yeshvanth_S Resume.pdf', NULL, '1', '2021-07-07', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Averaga,no basic knowledge on the recruitment. Will not sustain and handling pressure doubtful', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-07 10:25:53', 1, '2021-07-07 10:30:18', 0, NULL, 1),
(5367, 'birundha j', '2', '9585626001', '9944890576', 'birundhacj@gmail.com', '2000-06-26', 21, '2', '2', 'c.jayaraman - j.baby', 'frontend developer', 12000.00, 2, 0.00, 15000.00, 'mayiladuthurai', 'chennai', '2107070002', '1', '1', 'upload_files/candidate_tracker/92036133997_BirundhaNew Resume.pdf', NULL, '3', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Sustainability Doubts not much comfortable with the service Agreement, Need to hire her as an Intern cum employment. Only front end React Basic,her current gross is 12k PM.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 10:40:57', 1, '2021-07-07 10:50:37', 0, NULL, 1),
(5368, 'rajesh', '5', '9600148241', '', 'randyraj345@gmail.com', '1996-07-06', 25, '2', '2', 'meera', 'home maker', 13000.00, 1, 13000.00, 20000.00, 'ennore', 'ennore', '2107070003', '1', '2', 'upload_files/candidate_tracker/44699012353_Rajesh Resume.pdf', NULL, '1', '2021-07-07', 0, '', '3', '60', '2021-07-09', 261696.00, '', '3', '2021-07-14', '1', 'Selected for Shanmugam Team - Internal Team Reference - Selected with CTC - 261696 includes PF /PT', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-07 10:54:52', 60, '2021-07-09 03:32:13', 0, NULL, 1),
(5369, 'naveen kumar', '4', '9360556306', '', 'kumarnaveen06028@gmail.com', '2006-07-07', 15, '2', '2', 'somusundaram', 'working', 10000.00, 1, 0.00, 10000.00, 'perambur', 'perambur', '2107070004', '1', '1', 'upload_files/candidate_tracker/930441843_Adobe Scan 07 Jul 2021.pdf', NULL, '1', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left Without attending the interview', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-07 11:35:29', 1, '2021-07-07 11:41:57', 0, NULL, 1),
(5370, 'binu kumar', '4', '9025850514', '', 'binusimely5095@gmail.com', '2000-04-29', 21, '2', '2', 'suresh babu', 'working', 12000.00, 1, 0.00, 10000.00, 'perambur', 'perambur', '2107070005', '1', '1', 'upload_files/candidate_tracker/19867217722_Adobe Scan 07 Jul 2021 (1) (1).pdf', NULL, '1', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for the role,', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-07 11:44:02', 1, '2021-07-07 11:48:52', 0, NULL, 1),
(5371, 'P Vasantha kumar', '5', '7299926882', '9841040703', 'vasanthbca3143@gmail.com', '1998-05-29', 23, '1', '2', 'Manjula', 'Employee', 30000.00, 1, 22900.00, 25000.00, 'Avadi, Chennai', 'Avadi', '2107070006', '', '2', 'upload_files/candidate_tracker/42373434023_vasanth updated CV.docx', NULL, '1', '2021-07-07', 10, '55558', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-07 12:00:06', 1, '2021-07-07 12:12:09', 0, NULL, 1),
(5372, 'syed', '23', '9840069315', '', 'syedninja@gmail.com', '1993-11-04', 27, '2', '2', 'rehamani', 'business', 18000.00, 2, 22000.00, 24000.00, 'broadway', 'broadway', '2107070007', '1', '2', 'upload_files/candidate_tracker/47314412082_Tranxit resume.doc', NULL, '1', '2021-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge in UI/UX, he is only into Design. Will not sustain with us for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-07 12:22:26', 1, '2021-07-07 12:38:33', 0, NULL, 1),
(5373, 'jerome roach ranjith', '23', '8939038322', '8919443935', 'ranjithdcruzz@gmail.com', '1992-11-04', 28, '2', '2', 'parents', 'cooli', 45000.00, 2, 4.20, 5.50, 'ranipet', 'chennai', '2107070008', '1', '2', 'upload_files/candidate_tracker/30978234196_JEROME ROACH RANJITH_CV (1).pdf', NULL, '1', '2021-07-12', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 12:54:37', 1, '2021-07-07 01:05:31', 0, NULL, 1),
(5374, 'd yogapriya', '23', '8072124194', '', 'yogapriyad12@gmail.com', '1995-06-12', 26, '2', '2', 's duraiswamy', '-', 20000.00, 2, 22000.00, 28000.00, 'chennai', 'chennai', '2107070009', '1', '2', 'upload_files/candidate_tracker/12599160994_yogapriya d - resume.pdf', NULL, '1', '2021-07-08', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Task not satisfactory', '2', '1', '0', '1', '1', '0', '2', '2021-07-12', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 01:22:48', 1, '2021-07-07 01:28:07', 0, NULL, 1),
(5375, 'A Ragu ram', '2', '9566677095', '8248477930', 'imraguar@gmail.com', '1999-11-29', 21, '2', '2', 'A Subatra', 'Housewife', 20000.00, 1, 0.00, 10000.00, 'Tisaiyanvilai, Tirunelveli', 'Tisaiyanvilai, Tirunelveli', '2107070010', '1', '1', 'upload_files/candidate_tracker/86555376161_Ragu Resume.pdf', NULL, '2', '2021-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 02:52:20', 1, '2021-07-07 02:56:12', 0, NULL, 1),
(5376, 'Sivasundararaj', '23', '9092250561', '', 'siva.avis47@gmail.com', '1991-01-31', 30, '2', '2', 'Rathinam', 'Driver', 4.00, 2, 30000.00, 45000.00, 'trichy', 'Chennai', '2107070011', '1', '2', 'upload_files/candidate_tracker/26956190911_resume_sivasundar-721.docx', NULL, '3', '2021-07-19', 0, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 03:09:28', 1, '2021-07-07 03:20:49', 0, NULL, 1),
(5377, 'Selvakumar R', '23', '8489050837', '6383521030', 'selv66378@gmail.com', '1996-06-03', 25, '2', '2', 'Rajagopal', 'Agriculture', 200000.00, 2, 240000.00, 300000.00, 'Chennai', 'Chennai', '2107070012', '1', '2', 'upload_files/candidate_tracker/33771133254_Resume.pdf', NULL, '1', '2021-07-10', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability in his previous experience, focused only on the Salary, No basic knowledge on the requirement. Will not sustain with us for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 03:23:38', 1, '2021-07-07 03:27:52', 0, NULL, 1),
(5378, 'Lishayini', '23', '9345140412', '', 'lishayini1651996@gmail.com', '1996-05-16', 25, '2', '2', 'Meena', 'Home makee', 300000.00, 2, 20000.00, 3.80, 'Thanjavur', 'Chennai', '2107070013', '1', '2', 'upload_files/candidate_tracker/16196655991_Lisha Resume-1.pdf', NULL, '1', '2021-07-17', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 03:44:47', 1, '2021-07-07 03:51:39', 0, NULL, 1),
(5379, '', '0', '7904272733', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107070014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-07 04:13:19', 0, NULL, 0, NULL, 1),
(5380, 'Mathan kumar.G', '23', '9952471098', '', 'mathan.sgs@gmail.com', '1994-01-02', 27, '2', '2', 'ganasekar.s', 'teacher rtd', 1000000.00, 1, 19500.00, 28000.00, 'Panruti', 'Panruti', '2107070015', '1', '2', 'upload_files/candidate_tracker/44548221235_Resume (1).pdf', NULL, '2', '2021-07-07', 0, '', '1', '64', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 07:22:58', 1, '2021-07-08 09:38:56', 0, NULL, 1),
(5381, 'Iswarya', '23', '9500262052', '', 'iswarya.parthipan95@gmail.com', '2006-07-07', 0, '2', '2', 'Parthipan', 'Farmer', 5000.00, 0, 0.00, 600000.00, 'Chennai', 'Thanjavur', '2107070016', '1', '2', 'upload_files/candidate_tracker/93580770611_Resume_Iswarya_3.pdf', NULL, '3', '2021-07-08', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-07 07:36:35', 1, '2021-07-07 07:40:10', 0, NULL, 1),
(5382, 'Malathi M', '23', '9092967082', '9345322176', 'malathirajesh97@gmail.com', '1997-06-08', 24, '2', '2', 'Murugan', 'Banker', 550000.00, 1, 300000.00, 450000.00, 'Thoothukudi', 'Thoothukudi', '2107080001', '1', '2', 'upload_files/candidate_tracker/21697323592_Malathi Murugan 1.pdf', NULL, '2', '2021-07-08', 7, '', '1', '64', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 10:25:55', 1, '2021-07-08 10:31:27', 0, NULL, 1),
(5383, 'Prasanth M', '4', '9025964223', '7401097652', 'prasanthmuthu1997@gmail.com', '1997-06-16', 24, '3', '2', 'Muthusamy', 'Farmer', 20000.00, 1, 0.00, 12000.00, '5/185, thulukkaviduthi, peravurani, thajavur', '20/39, Kamala Nehru Nagar, choolaimedu, chennai', '2107080002', '', '1', 'upload_files/candidate_tracker/49668166388_prasanth updated resume (4) (1) (1).pdf', NULL, '1', '2021-07-09', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold on Long Pending ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-08 10:42:35', 1, '2021-07-08 10:50:14', 0, NULL, 1),
(5384, 'Nirmal raj. A', '11', '9171927252', '9840748616', 'nirmallamrin94@gmail.com', '1997-11-30', 23, '4', '2', 'Anand Raj', 'Team Leader tata motors', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107080003', '', '1', 'upload_files/candidate_tracker/78623985440_Nirmal final resume 1.pdf', NULL, '1', '2021-07-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good, Sustainability doubts on the profile and the expectation is very high. Fresher for Recruitment profile', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-08 10:56:45', 1, '2021-07-08 11:01:11', 0, NULL, 1),
(5385, 'Karthik D', '5', '7305230527', '', 'Karthikd091@gmail.com', '1991-06-25', 30, '1', '2', 'Dhanabalan', 'Farmer', 18000.00, 2, 0.00, 25000.00, 'Thanjavur', 'Thanjavur', '2107080004', '', '2', 'upload_files/candidate_tracker/59932148187_Karthik Dhanabalan.pdf', NULL, '1', '2021-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-08 11:18:14', 1, '2021-07-08 11:50:34', 0, NULL, 1),
(5386, 'shreeniveditha.r', '2', '9629224733', '8825791291', 'niveditharavichandran98@gmail.com', '1998-02-01', 23, '2', '2', 'j.ravichandran', 'retired railway employee', 23000.00, 0, 0.00, 2.50, 'Virudhunagar', 'Virudhunagar', '2107080005', '1', '1', 'upload_files/candidate_tracker/39309901677_Shree_Niveditha_ Resume.docx-6.pdf', NULL, '2', '2021-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not get fit with our requirement, Sustainability doubts, Not much open with SA', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 02:03:32', 1, '2021-07-08 02:37:32', 0, NULL, 1),
(5387, 'Tharun T', '2', '8825693103', '', 'tharunsneha8@gmail.com', '1997-06-30', 24, '2', '2', 'Tamilalagan', 'Farmer', 20000.00, 2, 0.00, 7000.00, 'Namakkal', 'Chennai', '2107080006', '1', '1', 'upload_files/candidate_tracker/76523102503_My resume.pdf', NULL, '1', '2021-07-12', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', '1yr in royal enfield and 2m in a IT, Looking For Job Change In IT, self learning through onlineMERN And Okay With Internship Terms And Conditions, high job need.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 03:50:12', 1, '2021-07-08 03:57:09', 0, NULL, 1),
(5388, 'Prem Kumar R', '2', '9677493249', '', 'r.premkumar29@gmail.com', '1998-10-29', 22, '2', '2', 'Rajendran', 'Business', 50000.00, 0, 0.00, 25000.00, 'Salem', 'Salem', '2107080007', '1', '1', 'upload_files/candidate_tracker/20590938410_BE CSE PREMKUMAR RESUME.pdf', NULL, '2', '2021-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Can Check For Mern 5050 Profile ,Fresher - didnt appear for the F2F discussion', '2', '1', '0', '1', '1', '0', '2', '2021-07-12', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 04:00:56', 1, '2021-07-08 06:49:30', 0, NULL, 1),
(5389, 'Thilothi R', '2', '6380179212', '9655642853', 'thilothiravi@gmail.com', '2000-09-04', 20, '2', '2', 'Ravichandran', 'Teacher', 500000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2107080008', '1', '1', 'upload_files/candidate_tracker/68457300423_Thilothi R.docx', NULL, '1', '2021-07-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Exams yet to get complete,not much suits for our Mern Role', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 04:15:37', 1, '2021-07-08 04:24:29', 0, NULL, 1),
(5390, '', '0', '9789962540', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107080009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-08 04:16:06', 0, NULL, 0, NULL, 1),
(5391, 'sumalatha', '4', '6382289659', '', 'suma37156@gmail.com', '1997-11-13', 23, '2', '2', 'selvaraj', 'auto driver', 10000.00, 1, 12000.00, 12000.00, 'chennai', 'nesapakkam', '2107080010', '1', '2', 'upload_files/candidate_tracker/65699130139_sumalatha.pdf', NULL, '2', '2021-07-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-08 04:16:07', 1, '2021-07-08 04:31:43', 0, NULL, 1),
(5392, '', '0', '6480178212', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107080011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-08 04:27:05', 0, NULL, 0, NULL, 1),
(5393, 'SIVASAKTHI S', '2', '6385312023', '', 'sakthitamil254@gmail.com', '1998-05-06', 23, '2', '2', 'Sundaresan K', 'Private Employee', 10000.00, 1, 0.00, 10000.00, 'Ariyalur', 'Ariyalur', '2107080012', '1', '1', 'upload_files/candidate_tracker/48843717308_SIVASAKTHI S Resume.pdf', NULL, '2', '2021-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain with us for a long. Not much suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 06:00:43', 1, '2021-07-08 06:04:46', 0, NULL, 1),
(5394, 'vivekananthan', '2', '6380713042', '7339290772', 'vivekananthan112599@gmail.com', '1999-06-30', 22, '2', '2', 'dhandapani', 'fresher', 20000.00, 1, 0.00, 20000.00, 'udumalpet', 'udumalpet', '2107080013', '1', '1', 'upload_files/candidate_tracker/68854294346_Resume.pdf', NULL, '2', '2021-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge on the profile,will not suits for our role.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-08 07:11:03', 1, '2021-07-08 08:35:22', 0, NULL, 1),
(5395, 'Waiz afrithi', '23', '7305848408', '', 'waiz.afrithi786s@gmail.com', '1997-03-04', 24, '2', '2', 'Sithi', 'Tailor', 10000.00, 1, 0.00, 30000.00, 'Ramanathapuram', 'Ramanathapuram', '2107090001', '1', '2', 'upload_files/candidate_tracker/78227896740_WAIZ RESUME.docx', NULL, '2', '2021-07-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 11:26:18', 1, '2021-07-09 09:58:40', 0, NULL, 1),
(5396, 'santhosh', '2', '8122756068', '', 'santhoshtheking9181@gmail.com', '1996-08-09', 24, '2', '2', 'dass', 'labourer', 3000.00, 2, 0.00, 10000.00, 'porur', 'porur', '2107090002', '1', '1', 'upload_files/candidate_tracker/15602857337_Santhosh Resume.pdf', NULL, '1', '2021-07-12', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '1', 'has 4yrs exp in customer support and looking for job change in IT, done 55hr course in MERN and okay with internship terms and conditions.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 11:32:46', 1, '2021-07-09 11:42:53', 0, NULL, 1),
(5397, 'Gunasundari', '2', '9941478040', '7598446741', 'gunanaga75@gmail.com', '1999-05-07', 22, '2', '2', 'Nagalingam', 'Daily wages', 76000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107090003', '1', '1', 'upload_files/candidate_tracker/16106349914_Resume.pdf', NULL, '2', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much open with the Service Agreement.Sustainability doubts on her profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 11:36:12', 1, '2021-07-09 11:43:13', 0, NULL, 1),
(5398, 'Amirthavarshini S', '23', '9786217448', '9003633448', 'amirthavarsniselvaraj@gmail.com', '1999-05-06', 22, '2', '2', 'Selvaraj', 'Farming', 5000.00, 1, 10000.00, 15000.00, 'Erode', 'Erode', '2107090004', '1', '2', 'upload_files/candidate_tracker/68897662166_varsha resume.pdf', NULL, '3', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '6 months Exp left due to salary Issue,not much strong in Basics of Mern, will not handle the pressure.Sustainability doubts on the profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 11:54:47', 1, '2021-07-09 12:00:23', 0, NULL, 1),
(5399, 'Sanjay', '2', '8148902671', '', 'sanjayforofficial@gmail.com', '1997-12-15', 23, '2', '2', 'Sridharan K', 'Business', 15000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2107090005', '1', '1', 'upload_files/candidate_tracker/20509921579_Sanjay S (CV).pdf', NULL, '1', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Mern, He is into profile research for past 1,5 yrs. Currently working 30 Days of notice period.Salary Expecatation is high,Sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 01:17:07', 1, '2021-07-09 01:28:28', 0, NULL, 1),
(5400, 'Arjun Kumar P', '2', '9344093024', '8124626095', 'Kumar.jocky123@gmail.com', '1997-11-06', 23, '2', '2', 'Parasuraman', 'Farmer', 15000.00, 3, 0.00, 10000.00, 'Pondicherry', 'Pondicherry', '2107090006', '1', '1', 'upload_files/candidate_tracker/11271257216_MyResume(arjun).docx', NULL, '1', '2021-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Mern Stack, Not much comfortable on the service Agreement. No basic knowledge ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 01:24:59', 1, '2021-07-09 01:30:17', 0, NULL, 1),
(5401, 'shrimon', '2', '7003506009', '', 'shrimonssinha@gmail.com', '1998-06-28', 23, '2', '2', 'siddhartha', 'doctor', 25000.00, 1, 0.00, 400000.00, 'kolkata', 'chennai', '2107090007', '1', '1', 'upload_files/candidate_tracker/57318043223_Resume_ShrimonSSinha.pdf', NULL, '1', '2021-07-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-09 01:31:29', 1, '2021-07-09 01:35:43', 0, NULL, 1),
(5402, 'Madhura', '5', '8760258449', '', 'ismadhura201999@gmail.com', '1999-01-20', 22, '2', '2', 'I.Sekar', 'Writter', 20000.00, 1, 12000.00, 15000.00, 'Sivagangai', 'Vadapalani', '2107100001', '1', '2', 'upload_files/candidate_tracker/41247857567_RESUME ma.docx', NULL, '1', '2021-07-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-10 09:18:52', 1, '2021-07-10 09:22:24', 0, NULL, 1),
(5403, 's.saran kumar', '2', '9092990408', '9943677253', 'sarankumars63538@gmail.com', '1990-01-30', 31, '2', '2', 's.nalani', 'house wife', 15000.00, 2, 0.00, 165000.00, 'kaveripakkam', 'kavangarai', '2107100002', '1', '1', 'upload_files/candidate_tracker/60922413424_Resume.docx', NULL, '1', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp, Worked in various other domain, will not handle the pressure. No sustainability in this profile', '2', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-10 09:35:48', 1, '2021-07-10 09:51:56', 0, NULL, 1),
(5404, 'Jonathan Joseph Jeffries', '11', '9952909537', '9952909527', 'jonathanjeffries821@gmail.com', '2001-01-16', 20, '2', '2', 'Nevil Jeffries', 'AR Logistics', 50000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2107100003', '1', '1', 'upload_files/candidate_tracker/33596875716_Jonu Resume-1.pdf', NULL, '1', '2021-07-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need To Come Back With His Acceptance On Our Terms And Conditions. Communication Is Good Fresher - Didnt turn back for a long and his profile has been rejected on 27-Jul-2021', '6', '2', '0', '1', '1', '0', '2', '2021-07-12', '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-10 10:40:46', 1, '2021-07-10 10:46:51', 0, NULL, 1),
(5405, 'Kalaivanan.T', '6', '9790036410', '', 'kalaivanan.t95@gmail.com', '1995-03-21', 26, '2', '2', 'Tamilarasan', 'Farmer', 30000.00, 2, 19000.00, 18000.00, 'Karaikudi', 'Medavakkam', '2107100004', '1', '2', 'upload_files/candidate_tracker/74175096517_Kalai Resume-updated.pdf', NULL, '1', '2021-07-10', 0, '', '3', '60', '2021-07-12', 216000.00, '', '3', '2023-04-08', '1', 'Selected for Syed Team with CTC - 216000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-10 11:31:38', 60, '2021-07-10 04:52:50', 0, NULL, 1),
(5406, 'Salaimuniselvam', '2', '7708215211', '', 'salaimuniselvam7@gmail.com', '1999-10-12', 21, '2', '2', 'sundarakrishnan', 'fresher', 40000.00, 1, 0.00, 18000.00, 'Srivilliputtur', 'Srivilliputtur', '2107100005', '1', '1', 'upload_files/candidate_tracker/11007562030_salaimuniselvams.pdf', NULL, '3', '2021-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate not sure on the Sustainability, very basic knowledge only in the excel. Not much comfortable on the Service Agreement', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-10 11:52:03', 1, '2021-07-12 06:51:07', 0, NULL, 1),
(5407, 'kalaivani', '4', '9597681737', '', 'kalaichlm2927@gmail.com', '1998-05-27', 23, '2', '2', 'kumaran', 'cooli', 12000.00, 1, 0.00, 10000.00, 'arakonam', 'Arakkonam', '2107100006', '1', '1', 'upload_files/candidate_tracker/35088846177_kalai resume.docx', NULL, '2', '2021-07-10', 0, '', '3', '59', '2021-07-14', 132000.00, '', '0', NULL, '2', 'Selected for Tiruvallur location with CTC 132000 includes PF/ESI', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-10 05:53:15', 1, '2021-07-10 05:55:56', 0, NULL, 1),
(5408, 'Ganesh AG', '5', '9994114060', '9994452959', 'valli15gopi@gmail.com', '1989-06-04', 32, '2', '1', 'Nagalakshmi', 'Dobi', 10000.00, 2, 28000.00, 30000.00, 'Sholinghur', 'Sholinghur', '2107120001', '3', '2', 'upload_files/candidate_tracker/13032781621_2020 resume.docx', NULL, '1', '2021-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 09:49:42', 1, '2021-07-12 09:59:21', 0, NULL, 1),
(5409, 'Yuvaraj', '6', '7401735915', '9962896316', 'nithiyayuvaraj1610@gmail.com', '1999-02-10', 22, '2', '2', 'Srinivasan.R', 'Auto driver', 300000.00, 1, 17175.00, 23000.00, 'Chennai teynampet', 'Chennai teynampet', '2107120002', '3', '2', 'upload_files/candidate_tracker/76142745228_YUVARAJ. S CV.pdf', NULL, '1', '2021-07-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 10:03:11', 1, '2021-07-12 10:15:15', 0, NULL, 1),
(5410, 'Sugeerthi', '4', '8072678464', '', 'smilys792@gmail.com', '1998-01-21', 23, '1', '1', 'Manikandan', 'Employee', 40000.00, 1, 21000.00, 22000.00, 'Chennai', 'Chennai', '2107120003', '', '2', 'upload_files/candidate_tracker/19698075122_resume.pdf', NULL, '1', '2021-07-12', 0, 'P1105', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold on Long Pending ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 10:51:10', 1, '2021-07-12 11:13:39', 0, NULL, 1),
(5411, 'Joseph Steve Gomez', '11', '9884286228', '', 'stevegomez100796@gmail.com', '1996-07-10', 25, '3', '2', 'louis lancy gomez', 'business', 40000.00, 1, 375000.00, 385000.00, 'Chennai', 'Chennai', '2107120004', '', '2', 'upload_files/candidate_tracker/85545311141_Steve’s CV copy-compressed-compressed.pdf', NULL, '1', '2021-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is good, Fresher for the Recruiter Role,Salary Expectation is very high around 20K', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 10:59:08', 1, '2021-07-12 11:01:32', 0, NULL, 1),
(5412, 'N.Shivshankar', '11', '8668067427', '', 'viggu811@gmail.com', '1996-11-08', 24, '4', '2', 'S.Naganathan', 'AGM', 1.50, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2107120005', '', '1', 'upload_files/candidate_tracker/49614853939_RESUME.docx', NULL, '1', '2021-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suits for our Recruiter profile, will not sustain for a long', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-12 11:22:18', 1, '2021-07-12 11:32:02', 0, NULL, 1),
(5413, 'Yuvashri Elango', '22', '7397122326', '', 'Yuvashriharini@gmail.com', '2000-06-16', 21, '2', '2', 'Elango', 'Grocery shop', 30000.00, 1, 0.00, 12000.00, '25, murugalaiya nagar, Cuddalore.', 'Chennai', '2107120006', '1', '1', 'upload_files/candidate_tracker/94473104440_Yuvashri Elango resume... .pdf', NULL, '1', '2021-07-12', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Not sustainable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-12 11:42:49', 1, '2021-07-12 12:22:28', 0, NULL, 1),
(5414, 'Riyaz Ahmed', '6', '7338762467', '', 'riyazrio07860@gmail.com', '2000-01-18', 21, '2', '2', 'Rahamath Nisha', 'Perambur', 15000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2107120007', '1', '2', 'upload_files/candidate_tracker/94096471324_RIYAZ-converted (2).docx', NULL, '1', '2021-07-12', 0, '', '3', '60', '2021-07-15', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team with CTC - 156000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-12 11:44:47', 60, '2021-07-14 11:43:38', 0, NULL, 1),
(5415, 'M. Tanya Josphine', '11', '9677286586', '', 'tanijose00@gmail.com', '2000-10-04', 20, '2', '2', 'Melvyn and', 'Daily wages', 10000.00, 1, 0.00, 12000.00, '3/940,palavakkam,chennai-600041', '3/940,palavakkam,chennai-600041', '2107120008', '1', '1', 'upload_files/candidate_tracker/42672395391_M .TANYA JOSPHINE .RESUME.docx', NULL, '1', '2021-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet to complete her graduation, not suitable for our roel', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-12 11:44:48', 1, '2021-07-12 11:53:42', 0, NULL, 1),
(5416, 'Kumara swamy', '22', '8688371566', '9949482955', 'nemalakumarswamy555@gmail.com', '2001-03-05', 20, '2', '2', 'Gopal Krishna', 'Vasthu planner', 60000.00, 1, 0.00, 5000.00, 'Sheshadri nagar,tuni,AP', 'Shoulinganallur, Chennai,TN', '2107120009', '1', '1', 'upload_files/candidate_tracker/2856316948_Resume.pdf', NULL, '1', '2021-07-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, Planning to do his ms in canada. looking for internship alone.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-12 11:51:37', 1, '2021-07-12 12:06:30', 0, NULL, 1),
(5417, 'Karan L', '20', '6369331934', '9176391236', 'iamkaran0405@gmail.com', '1997-04-04', 24, '2', '2', 'Loganathan', 'Driver', 50000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2107120010', '1', '1', 'upload_files/candidate_tracker/55543322140_My resume karan final.pdf', NULL, '1', '2021-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-12 04:26:24', 1, '2021-07-12 04:30:37', 0, NULL, 1),
(5418, 'vishal', '6', '7448843190', '', 'vishaalvr13@gmail.com', '1993-09-18', 27, '2', '2', 'pm sundhar', 'electrician', 50000.00, 1, 11500.00, 15000.00, 'poonamalee', 'poonamallee', '2107120011', '1', '2', 'upload_files/candidate_tracker/34822737422_vishaal19007.docx', NULL, '2', '2021-07-10', 0, '', '3', '60', '2021-07-15', 0.00, '', '5', '1970-01-01', '1', 'Selected for Srikanth Team with CTC 204000 included PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-12 04:52:49', 60, '2021-07-15 09:48:30', 0, NULL, 1),
(5419, 'kiran kumar', '23', '9566138804', '', 'kiran1393kumar@gmail.com', '1993-08-13', 27, '2', '2', 'a kuppu', 'unemployed', 10000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Ramanathapuram', '2107120012', '1', '1', 'upload_files/candidate_tracker/55701359775_kiran_uiuxweb_resume-compressed.pdf', NULL, '3', '2021-07-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-12 06:46:38', 1, '2021-07-12 06:57:03', 0, NULL, 1),
(5420, 'Dillip kumar G', '11', '8190814239', '8189879168', 'dillipg632@gmail.com', '2000-11-20', 20, '1', '2', 'Govindaraj', 'Sales executive', 150000.00, 1, 0.00, 150000.00, 'Padi,chennai', 'Padi,chennai', '2107130001', '', '1', 'upload_files/candidate_tracker/86463006_Dillip Kumar G resume.pdf', NULL, '1', '2021-07-13', 0, 'Rup kumar', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not suits for our Recruiter Role. Handling Pressure doubtful, Sustainability Doubt', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-13 09:46:52', 1, '2021-07-13 09:54:45', 0, NULL, 1),
(5421, 'Samson Kirubakaran', '2', '7010794411', '8056645081', 'samsonkirubakaran23@gmail.com', '1998-09-10', 22, '2', '2', 'Jeyasekaran', 'Business', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2107130002', '1', '1', 'upload_files/candidate_tracker/45515613749_Samson J.pdf', NULL, '1', '2021-07-13', 0, '', '3', '59', '2021-07-19', 96000.00, '', '0', NULL, '2', 'Joined as a Intern (will be in Observation for 7 Days till 25-Jul) post observation Internship starts with the stipend 0f 3500 for 5 months then as an employee starts with the pay of 8000', '2', '1', '0', '1', '1', '0', '2', '2021-07-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 11:17:52', 1, '2021-07-13 11:23:17', 0, NULL, 1),
(5422, 'Gowtham k', '2', '9003094252', '', 'karthickgowtham47@gmail.com', '1999-01-29', 22, '2', '2', 'Karthickeyan R', 'Security incharge', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2107130003', '1', '1', 'upload_files/candidate_tracker/42097911031_Gowtham Karthikeyan.pdf', NULL, '1', '2021-07-14', 0, '', '3', '59', '2021-07-19', 96000.00, '', '0', NULL, '1', 'Joined As A Intern (Will Be In Observation For 7 Days Till 25-Jul) Post Observation Internship Starts With The Stipend 0f 3500 For 5 Months Then As An Employee Starts With The Pay Of 8000', '2', '1', '0', '1', '1', '0', '2', '2021-07-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 11:24:14', 1, '2021-07-13 12:26:10', 0, NULL, 1),
(5423, 'jagadesh', '5', '8838877095', '', 'rsjl787898@gmail.com', '1998-05-17', 23, '2', '2', 'ramesh', 'driver', 35000.00, 1, 22000.00, 25000.00, 'chennai', 'chennai', '2107130004', '1', '2', 'upload_files/candidate_tracker/44152861826_JAGADEESH.R resume_2 (1).docx', NULL, '1', '2021-07-13', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-07-13 12:17:41', 1, '2021-07-13 01:35:47', 0, NULL, 1),
(5424, 'Santhiya.C', '27', '6380767664', '', 'santhiya.cs20@gmail.com', '1997-06-25', 24, '2', '2', 'M.Chandrasekar', 'Farmer', 50000.00, 1, 0.00, 15000.00, 'Kolathur', 'Chennai', '2107130005', '1', '1', 'upload_files/candidate_tracker/24527269259_Santhiya it .pdf', NULL, '1', '2021-08-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is into ASP.Net with MVC much into webforms. Not suits for our client', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 01:22:27', 60, '2021-08-14 11:19:49', 0, NULL, 1),
(5425, 'ARIF AHAMED A', '6', '9962895377', '9840411627', 'arifahamed785@Gmail.com', '1996-06-20', 25, '2', '2', 'ALTHAF AHAMED M', 'selfe Employee', 45000.00, 1, 20000.00, 25000.00, 'No:5 old No:47/2 3rd Street Nsk nagar Arumbakkam', 'No:5 Old No:47/2 3rd Street Nsk Nagar Arumbakkam', '2107130006', '1', '2', 'upload_files/candidate_tracker/75697542945_ARIF M.A.docx', NULL, '1', '2021-07-16', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-13 02:08:00', 50, '2021-07-13 04:16:35', 0, NULL, 1),
(5426, 'Marian Berry Floyd S', '5', '9150924678', '', 'marians15299@gmail.com', '1999-02-15', 22, '2', '2', 'Sahaya Babu', 'private sector', 20000.00, 2, 0.00, 15000.00, 'purasawalkam', 'Purasawalkam', '2107130007', '1', '2', 'upload_files/candidate_tracker/27078302203_floyd resume_13588086.docx', NULL, '1', '2021-07-13', 7, '', '1', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate ok E sales', '5', '1', '', '4', '6', '', '2', '1970-01-01', '3', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-13 03:54:24', 60, '2021-07-17 06:21:32', 0, NULL, 1),
(5427, 'Vijay Shankar', '27', '8056218224', '', 'uvijayshankar1993@gmail.com', '1993-12-26', 27, '2', '2', 'uma Shankar', 'business', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107130008', '1', '1', 'upload_files/candidate_tracker/51335352740_01RESUME.docx', NULL, '1', '2021-07-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suits for our client role.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 04:31:35', 60, '2021-07-16 05:48:51', 0, NULL, 1),
(5428, 'Alakiya s', '2', '9344979620', '7845003359', 'suramalakiya1998@gmail.com', '1998-09-26', 22, '2', '2', 'S Hajarath reddy', 'Business', 15000.00, 1, 0.00, 3000000.00, 'Chennai', 'Chennai', '2107130009', '1', '1', 'upload_files/candidate_tracker/29154909700_Alakiya s resume.pdf', NULL, '1', '2021-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not comfortable with the terms and conditions, fresher profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-13 04:47:36', 1, '2021-07-13 04:51:36', 0, NULL, 1),
(5429, 'Selvakumar', '2', '9344767390', '9750463400', 'Selva3051999@gmail.com', '1999-05-30', 22, '2', '2', 'Raja', 'Farmer', 10000.00, 1, 0.00, 15000.00, '1/43, East Street, Vellalanvilai ,Thoothukudi', '1/43, East Street, Vellalanvilai -628219', '2107140001', '1', '1', 'upload_files/candidate_tracker/66981894015_selvakumar_resume.pdf', NULL, '2', '2021-07-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-14 11:29:41', 1, '2021-07-14 11:53:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5430, 'Mareeswari.M', '4', '7305942484', '9791436304', 'sivamarees1994@gmail.com', '1998-08-16', 22, '2', '1', 'Sivakumar', 'Sweetmaster', 25000.00, 0, 15000.00, 18000.00, 'Valasaravakkam', 'Valasaravakkam', '2107140002', '3', '2', 'upload_files/candidate_tracker/29727134617_New doc 14 Jul 2021 12.09.pdf', NULL, '2', '2021-07-14', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile, give a try for esale. Convincing not much comfortable, kindly check and let me know', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 11:53:01', 60, '2021-07-15 01:14:02', 0, NULL, 1),
(5431, 'daniel thomas', '14', '9080347234', '', 'danielthomasd4@gmail.com', '2000-05-04', 21, '2', '2', 'devaraj', 'btech', 20000.00, 1, 0.00, 20000.00, 'alandur', 'chennai', '2107140003', '1', '1', 'upload_files/candidate_tracker/70085843792_Daniel_Thomas-CV.pdf', NULL, '2', '2021-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,No knowledge on the skills,will not sustain for a long ,candidate clearly states that he is not much comfortable with this profile too', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-14 11:53:57', 1, '2021-07-14 11:58:32', 0, NULL, 1),
(5432, 'Pavithra k', '4', '7305260115', '9952087796', 'Nabirami62@gmail.com', '1997-11-22', 23, '2', '2', 'Kannan.D', 'Businessmen', 20000.00, 1, 14000.00, 16000.00, 'Villivakkam', 'Villivakkam', '2107140004', '3', '2', 'upload_files/candidate_tracker/82954254527_PaviK Resume.pdf', NULL, '1', '2021-07-14', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '5050 profile,can check for CRM-Processed for 2nd level, but left without attending', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:00:16', 1, '2021-07-14 12:05:51', 0, NULL, 1),
(5433, 'Abirami n', '4', '8939802297', '7305875790', 'Nabirami281@gmail.com', '1996-04-19', 25, '2', '2', 'Buneshwari n', 'Working', 10000.00, 0, 12500.00, 15000.00, 'Tnagar', 'Tnagar', '2107140005', '3', '2', 'upload_files/candidate_tracker/21189883089_1605701958944Resume_Abirami-2021)-converted.pdf', NULL, '1', '2021-07-14', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No degree,5050 have exp in Telecaller,processed for 2nd round but left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:10:09', 1, '2021-07-14 12:39:16', 0, NULL, 1),
(5434, 'Mahendran R', '6', '8667200856', '', 'amuthamahendran47@gmail.com', '1996-12-07', 24, '2', '2', 'Rajendran', 'Driver', 20000.00, 1, 19500.00, 20000.00, 'Trichy', 'Chen ai', '2107140006', '3', '2', 'upload_files/candidate_tracker/38114427575_resume.pdf', NULL, '1', '2021-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability in the profile, checked with 2nd level and got rejected. Will not suits for our role', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:14:47', 1, '2021-07-14 12:18:24', 0, NULL, 1),
(5435, 'M.Sandhya', '6', '8939326912', '7550226712', 'keerthisandhyam@gmail.com', '2000-02-22', 21, '3', '2', 'R.Murugan', 'Kulli', 13.00, 2, 0.00, 15.00, 'Redhills', 'Redhills', '2107140007', '', '1', 'upload_files/candidate_tracker/70003210256_imgtopdf_14072021014626.pdf', NULL, '1', '2021-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not communicating ,will not suits for our role', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:55:40', 1, '2021-07-14 01:49:04', 0, NULL, 1),
(5436, 'M.sangavi', '4', '9150440182', '', 'ammuma765@gmail.com', '2002-01-18', 19, '3', '2', 'R.MURUGAN', 'Kuli', 13000.00, 2, 0.00, 15000.00, 'Redhills', 'Redhills', '2107140008', '', '1', 'upload_files/candidate_tracker/95367283078_imgtopdf_14072021011011.pdf', NULL, '1', '2021-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No commuication, not open up will not fir for our role', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 12:56:02', 1, '2021-07-14 01:26:42', 0, NULL, 1),
(5437, 'MONICA', '25', '7339213062', '8220134329', 'monicagua2931@gmail.com', '2001-10-21', 19, '2', '1', 'S. Ragul sanjai', 'Driver', 15000.00, 0, 15000.00, 15000.00, 'Chennai', 'Chennai', '2107140009', '3', '2', 'upload_files/candidate_tracker/66049071095_Adobe Scan 15-Jun-2021.pdf', NULL, '1', '2021-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for the role, will not sustain for a long and handling pressure doubt\n', '8', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-14 03:02:12', 1, '2021-07-14 03:11:11', 0, NULL, 1),
(5438, 'Sivaranjani', '5', '9789867214', '8939755305', 'Siva.Ranji15@gmail.com', '1995-08-07', 25, '3', '2', 'Mahendran', 'Chennai', 7000.00, 0, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2107140010', '', '2', 'upload_files/candidate_tracker/43450185823_resume.docx', NULL, '1', '2021-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Can Give A Try For Health Sales, Bdm Shanmugam Had A Review On The Profile.Salary Exoectation is there', '5', '1', '', '1', '3', '', '2', '2021-07-19', '3', '3', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-14 03:14:17', 60, '2021-07-15 12:51:44', 0, NULL, 1),
(5439, 'sindhu', '4', '7305847265', '', 'sindhup0605@gmail.com', '2006-07-14', 0, '2', '2', 'purushothaman', 'hondai', 10000.00, 1, 0.00, 10000.00, 'manavalanagar', 'Manavalanagar', '2107140011', '1', '1', 'upload_files/candidate_tracker/50469541055_RESUME.PDF.pdf', NULL, '1', '2021-07-05', 0, '', '3', '59', '2021-07-15', 120000.00, '', '3', '2021-07-20', '2', 'Selected for Tiruvallur Location with CTC 120000 includes PF/ESI/PT', '1', '2', '1', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-14 05:06:38', 60, '2021-07-15 04:06:37', 0, NULL, 1),
(5440, 'navani nayak', '2', '8848419258', '', 'navaninavani306@gmail.com', '2000-03-03', 21, '2', '2', 'kannan', 'dyeing master', 250000.00, 1, 0.00, 10000.00, 'chennai', 'ernakulam', '2107140012', '1', '1', 'upload_files/candidate_tracker/28029388852_Navani\'s Resume.pdf', NULL, '1', '2021-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-14 05:07:11', 1, '2021-07-14 05:13:41', 0, NULL, 1),
(5441, 'durga', '4', '7708820859', '', 'Durgadhusheka@gmail.com', '2001-01-29', 20, '2', '2', 'murugan', 'cabel tv', 20000.00, 1, 0.00, 10000.00, 'tiruvallur', 'Thiruvallur', '2107140013', '1', '1', 'upload_files/candidate_tracker/40907255869_Word CT-IP-1 Resume format(M Durga ).docx', NULL, '3', '2021-07-06', 0, '', '3', '59', '2021-07-15', 120000.00, '', '3', '2022-02-04', '2', 'Selected for Tiruvallur Location with CTC 120000 includes PF/ESI/PT deductions', '1', '2', '1', '4', '6', '1', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-14 05:19:03', 60, '2021-07-15 06:58:21', 0, NULL, 1),
(5442, 'Poovarasan', '27', '9159214390', '8838469016', 'poovarasan2336@gmail.com', '1998-06-04', 23, '2', '2', 'Srinivasan', 'Tailor', 30000.00, 1, 15000.00, 20000.00, 'No:10, Thoppu st, poondi', 'Poondi, Thiruvallur', '2107140014', '1', '2', 'upload_files/candidate_tracker/31704494316_Poovarasan.S.pdf', NULL, '3', '2021-07-20', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No relevant Exp, Will not Sustain for a long. not much focused on the requirement', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-14 07:19:57', 60, '2021-07-21 07:20:23', 0, NULL, 1),
(5443, '', '0', '9585246934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-15 10:33:02', 0, NULL, 0, NULL, 1),
(5444, 'MADHIVANAN M L', '3', '9494675238', '', 'mlmadhivanan1@gmail.com', '1999-03-23', 22, '2', '2', 'm g lokanathan', 'weaver', 10000.00, 4, 0.00, 150000.00, 'NAGARI', 'NAGARI', '2107150002', '1', '1', 'upload_files/candidate_tracker/39420328359_M-L-MADHIVANAN-Web11-pdf.pdf', NULL, '3', '2021-07-15', 0, '', '3', '60', '2021-07-22', 96000.00, '', '6', '1970-01-01', '2', 'Selected for Intern Cum Employment Offered 3.5 K Stipend for 5 months follow up with the Employment starts with the pay of 8000 - 22 Jul 2021 joining', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-15 10:52:13', 60, '2022-03-22 02:39:28', 0, NULL, 1),
(5445, 'Malathi.G', '4', '7200670198', '9361934484', 'malathi.ag1994@gmail.com', '1994-07-15', 27, '3', '2', 'Golanji', 'Farmer', 30000.00, 2, 17000.00, 19000.00, 'Panruti', 'T.nagar', '2107150003', '', '2', 'upload_files/candidate_tracker/78509316217_Malathi resume (2).pdf', NULL, '1', '2021-07-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-15 11:51:51', 1, '2021-07-15 12:18:22', 0, NULL, 1),
(5446, 'anbu mani', '4', '9790548341', '', 'anbuguna27@gmail.com', '1994-06-27', 27, '2', '2', 'gunasekarana', 'tailor', 12000.00, 2, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2107150004', '1', '1', 'upload_files/candidate_tracker/50253125077_anbu-2.docx', NULL, '2', '2021-07-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-15 12:17:01', 1, '2021-07-15 12:21:01', 0, NULL, 1),
(5447, 'pavithra', '4', '7708450291', '', 'pavithrakarthikeyani@gmail.com', '2001-07-03', 20, '2', '2', 'saravanan', 'shop', 13000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2107150005', '1', '1', 'upload_files/candidate_tracker/30078927421_file23Feb22.pdf', NULL, '2', '2022-02-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' Whenever we reach her number. Candidate Is Not Available ,Her Mother Is Attending The Call.', '1', '2', '', '4', '5', '', '2', '2022-02-26', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-07-15 12:24:16', 58, '2022-02-23 06:06:10', 0, NULL, 1),
(5448, 'joseph amal raj', '27', '9047877968', '7010908813', 'joesph.amalraj@gmal.com', '1994-06-01', 27, '2', '1', 'anto celciya', 'technical assistant', 25000.00, 1, 10000.00, 20000.00, 'kallakurichi', 'tambaram', '2107150006', '1', '2', 'upload_files/candidate_tracker/42996450194_joseph cv.doc', NULL, '1', '2021-07-16', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Do Not Have Much Importance Towards The Job, Sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', '2021-07-19', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-15 01:00:25', 1, '2021-07-15 01:49:17', 0, NULL, 1),
(5449, 'thamaraiselvi', '27', '8056527170', '', 'thamaraikannappan@gmail.com', '1999-04-13', 22, '2', '2', 'kannappan', 'mill labour', 20000.00, 1, 8000.00, 25000.00, 'Tirupur', 'Tirupur', '2107150007', '1', '2', 'upload_files/candidate_tracker/44663591582_Resume.pdf', NULL, '1', '2021-07-19', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-15 01:15:13', 1, '2021-07-15 01:28:08', 0, NULL, 1),
(5450, '', '0', '7708235944', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107150008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-15 01:21:00', 0, NULL, 0, NULL, 1),
(5451, 'Suriya S', '13', '8072081638', '', 'sivasurya876@gmail.com', '1998-02-17', 23, '2', '2', 'J Sivakumar', 'Business', 30000.00, 1, 0.00, 15000.00, 'Trichy', 'Trichy', '2107150009', '1', '1', 'upload_files/candidate_tracker/27699643317_suriya cv.docx', NULL, '1', '2021-07-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-15 02:48:46', 1, '2021-07-15 03:02:44', 0, NULL, 1),
(5452, '', '0', '8220070216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107150010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-15 02:51:38', 0, NULL, 0, NULL, 1),
(5453, '', '0', '6382603673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107150011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-15 04:04:37', 0, NULL, 0, NULL, 1),
(5454, 'Rajashree R', '23', '9585246394', '', 'rajasri28@gmail.com', '1991-01-28', 30, '2', '1', 'krishnaprasad', 'recruitment executive', 40000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2107150012', '1', '2', 'upload_files/candidate_tracker/25786625512_Rajashree Resume.pdf', NULL, '1', '2021-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for Our UI/UX position, she is only into the design part,will not sustain for a long ,not much comfortable on the terms xxamp conditions', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-15 05:20:35', 1, '2021-07-15 05:23:17', 0, NULL, 1),
(5455, 'Venkateshan S', '3', '6374065574', '8189898298', 'msv85851@gmail.com', '1996-03-29', 25, '2', '2', 'Mala', 'Teacher', 24000.00, 1, 0.00, 30000.00, 'Hosur', 'Chennai', '2107160001', '1', '2', 'upload_files/candidate_tracker/45955502871_Venkatesh Resume-converted.pdf', NULL, '1', '2021-07-19', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Scheduled Final Interview With Some Other Company. Applied For React Native, Have Experience In React Native But The Salary Expectation Is Ver High', '2', '1', '0', '1', '1', '0', '2', '2021-08-02', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 11:01:26', 1, '2021-07-16 11:07:07', 0, NULL, 1),
(5456, 'Kousalya S', '14', '8248728699', '', 'Kousalyaswaminathan98@gmail.com', '1998-12-07', 22, '2', '2', 'T.swaminathan', 'Senior officer', 45000.00, 1, 0.00, 3.00, 'Vadaplani', 'Vadaplani', '2107160002', '1', '1', 'upload_files/candidate_tracker/12100435178_Kousalya Resumee.pdf', NULL, '1', '2021-07-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-07-16 11:11:51', 1, '2021-07-16 11:16:18', 0, NULL, 1),
(5457, 'Girija', '3', '8838429461', '8508428470', 'girijadev03@gmail.com', '1997-06-06', 24, '2', '2', 'Arumugam', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Erode', 'Tambaram, Chennai', '2107160003', '1', '1', 'upload_files/candidate_tracker/72796589812_final resume.pdf', NULL, '3', '2021-07-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 11:31:45', 1, '2021-07-16 11:35:14', 0, NULL, 1),
(5458, 'A.Revathi', '29', '9840379670', '7448890980', 'daianabbm.16@gmail.com', '1982-07-01', 39, '3', '1', 'S.durairaj', 'Self employed', 40000.00, 3, 120000.00, 170000.00, 'Chennai', 'Chennai', '2107160004', '', '2', 'upload_files/candidate_tracker/56335242798_PDF Gallery_20210707_180117.pdf', NULL, '1', '2021-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for our role, Age around 39 yrs,will not sustain for a long', '3', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-16 12:10:35', 1, '2021-07-16 12:19:12', 0, NULL, 1),
(5459, 'Balavignesh S', '2', '8610474898', '7358573031', 'vimi168135@gmail.com', '1998-07-09', 23, '2', '2', 'Sarveshwaran bR', 'Fresher', 200000.00, 2, 0.00, 180000.00, 'Chennai', 'Chennai', '2107160005', '1', '1', 'upload_files/candidate_tracker/11698080939_bala.sarveshwaran-1.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic knowledge in the skills, If he comes back let us try, Need time to learn', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-16 12:17:52', 60, '2021-12-01 06:03:52', 0, NULL, 1),
(5460, 'Deepika', '2', '7397277747', '9677258980', 'deepikasri248@gmail.com', '1997-09-07', 23, '2', '2', 'Padmanaban', 'Shop keeper', 20000.00, 3, 0.00, 13000.00, 'Chennai', 'Chennai', '2107160006', '1', '1', 'upload_files/candidate_tracker/62326764469_Deepika Profile.docx', NULL, '1', '2021-07-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge,not comfortable on the terms and conditions, will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 01:11:54', 1, '2021-07-16 01:19:34', 0, NULL, 1),
(5461, '', '0', '7358034205', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107160007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-16 01:20:43', 0, NULL, 0, NULL, 1),
(5462, 'Vignesh', '2', '8122185814', '7358451500', 'vigneshkannadasan77@gmail.com', '1995-07-07', 26, '2', '2', 'Kannadasan', 'Business', 3.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2107160008', '1', '1', 'upload_files/candidate_tracker/63087723322_vignesh web developer resume-2021.pdf', NULL, '1', '2021-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 01:44:04', 1, '2021-07-16 01:47:19', 0, NULL, 1),
(5463, 'Balaji', '2', '9003642216', '', 'Balajinachi1213@gamil.com', '2000-03-23', 21, '2', '2', 'Nachiappan', 'Hospital ward boy', 200000.00, 0, 0.00, 10000.00, '555,keelyapatti, siravayal ,sivaganga 630207', '103,kannigapuram 3rd , k.k nager ,Chennai 600078', '2107160009', '1', '1', 'upload_files/candidate_tracker/58566263504_Resume - BALAJIK.pdf', NULL, '1', '2021-07-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-16 02:02:18', 50, '2021-07-17 08:39:28', 0, NULL, 1),
(5464, '', '0', '9790896470', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107160010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-16 02:12:07', 0, NULL, 0, NULL, 1),
(5465, '', '0', '8838905013', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107160011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-16 02:35:33', 0, NULL, 0, NULL, 1),
(5466, 'James J', '23', '9080130683', '8270397087', 'jamespatric317@gmail.com', '2000-07-15', 21, '2', '2', 'JOSEPH M', 'Manager(private sector)', 20000.00, 1, 182400.00, 240000.00, 'Sattur', 'Sattur', '2107160012', '1', '2', 'upload_files/candidate_tracker/77861841146_J.Jamespatric-.pdf', NULL, '2', '2021-07-17', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much ok with SA, Currently working as Technical Associate. Previous 7 months Exp in React JS. Min Salary Expectation is 16K ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 02:50:22', 1, '2021-07-16 03:00:40', 0, NULL, 1),
(5467, '', '0', '8939558217', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107160013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-16 03:05:27', 0, NULL, 0, NULL, 1),
(5468, 'Vinothraj Govindarasu', '2', '8523916646', '', 'vinog137@gmail.com', '1995-06-14', 26, '2', '2', 'Govindarasu', 'Former', 15000.00, 2, 0.00, 25000.00, 'Eravangudi', 'Tambaram', '2107160014', '1', '1', 'upload_files/candidate_tracker/20804904917_Vinothraj Govindarasu (1).pdf', NULL, '3', '2021-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-16 06:41:59', 1, '2021-07-16 06:46:41', 0, NULL, 1),
(5469, '', '0', '8220208434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107170001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-17 10:01:01', 0, NULL, 0, NULL, 1),
(5470, 'Saravanan', '2', '9344921063', '', 'saravanan99bsc@gmail.com', '1999-12-30', 21, '3', '2', 'Perumal', 'Farmer', 20000.00, 4, 0.00, 6000.00, 'Kombankulam', 'Kombankulam', '2107170002', '', '1', 'upload_files/candidate_tracker/34133516047_Sr resume.pdf', NULL, '1', '2021-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, no basic knowledge in React,Seems not much comfortable with the service Agreement ,also not ready to submit the documents', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 10:31:38', 50, '2021-07-17 10:39:07', 0, NULL, 1),
(5471, 'Mohamed suhail', '11', '8870267987', '9952469959', 'suhailsuhail1248@gmail.com', '1997-04-04', 24, '1', '2', 'Mohamed Ismail', 'Freshers', 10.00, 2, 0.00, 15.00, 'KANDIYUR', 'KANDIYUR', '2107170003', '', '1', 'upload_files/candidate_tracker/47375716801_New update suhail Resume1 (2)-converted.pdf', NULL, '1', '2021-07-17', 0, 'NA', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, will not handle the pressure. Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 10:43:29', 1, '2021-07-17 10:51:16', 0, NULL, 1),
(5472, 'EBENEZER S', '11', '9551669139', '9940542851', 'ebenezeredwin02@gmail.com', '1999-08-10', 21, '1', '2', 'SUNDARAMOORTHY P', 'Clerk', 20000.00, 1, 0.00, 250000.00, 'Sozhinganallur', 'Kodambakkam', '2107170004', '', '1', 'upload_files/candidate_tracker/16636542818_Ebenezer S- Resume.pdf', NULL, '1', '2021-07-17', 0, 'Not available', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, no basic knowledge in the recruitment .No focus on the particular position', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 10:51:10', 1, '2021-07-17 11:02:21', 0, NULL, 1),
(5473, 'Bhoobalan', '2', '9840730996', '', 'Bhoopostbox@gmail.com', '1996-03-07', 25, '3', '2', 'Arumugam', 'No work', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2107170005', '', '1', 'upload_files/candidate_tracker/29042081615_Bhoobalan resume.pdf', NULL, '3', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Ongoing Course Related To React Js, Need Time To Confirm On The Sa, Career Gap If Candidate Comes Back Lets Decide On The Profile', '2', '2', '0', '1', '1', '0', '2', '2021-07-26', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 10:58:53', 1, '2021-07-17 11:17:41', 0, NULL, 1),
(5474, 'Karthic A', '2', '9629777514', '', 'Karthicashok007@gmail.com', '1998-09-20', 22, '3', '2', 'J Ashok', 'Business', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107170006', '', '1', 'upload_files/candidate_tracker/72222075913_file1.pdf', NULL, '1', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not handle the pressure, only basic knowledge in HTML,CSS,JS. Sustainability doubt on this profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 12:56:41', 1, '2021-07-17 01:00:13', 0, NULL, 1),
(5475, 'Poomani', '2', '9659843796', '8667367053', 'aipoomani@gmail.com', '1996-06-03', 25, '2', '2', 'Ravi', 'Coolie', 15000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Vellore', '2107170007', '1', '1', 'upload_files/candidate_tracker/1278726969_Poomani-Resume.pdf', NULL, '1', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much comfortable with the service Agreement, Attitude issue', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 01:11:08', 1, '2021-07-17 01:19:12', 0, NULL, 1),
(5476, 'Sneha.M', '20', '9790902754', '', 'Snehasneha14591@gmail.com', '2001-07-09', 20, '3', '2', 'Murugan.M ,prema.M', 'Kilnallathur', 15000.00, 1, 0.00, 10000.00, 'Kilnallathur', 'Kilnallathur', '2107170008', '', '1', 'upload_files/candidate_tracker/60132078144_sneha resume.pdf', NULL, '1', '2021-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 01:44:50', 1, '2021-07-19 06:20:56', 0, NULL, 1),
(5477, 'Mohamed yasin', '11', '7824015190', '9962156556', 'Yaass.iinnjohn@gmail.com', '1999-07-07', 22, '2', '2', 'Banu', 'House wife', 15000.00, 2, 0.00, 18000.00, 'No.31 cb read railway colony Korukkupet ch-21', 'No.31 cb road Railway colony Korukkupet ch- 21', '2107170009', '3', '1', 'upload_files/candidate_tracker/24209839839_mohamed yasin.docx', NULL, '1', '2021-07-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Stability,every 6 months changed the job. Seems not much clear on the previous experiences', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 02:26:22', 1, '2021-07-17 02:35:55', 0, NULL, 1),
(5478, 'Praveen Kumar', '2', '9385694439', '', 'Pk1798.kumar@gmail.com', '1998-09-17', 22, '2', '2', 'selvam m', 'web developer', 30000.00, 1, 15000.00, 20000.00, 'Trichy', 'chennai', '2107170010', '1', '2', 'upload_files/candidate_tracker/91161038956_PRAVEEN KUMAR S.pdf', NULL, '1', '2021-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Profile is ok, but salary expectation is very high and he will not sustain for long', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 03:11:44', 1, '2021-07-17 03:19:27', 0, NULL, 1),
(5479, '', '0', '9840664284', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107170011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-17 03:45:26', 0, NULL, 0, NULL, 1),
(5480, 'V sharmila', '4', '7540007813', '7904418610', 'sharmisweet89111@gmail.com', '2000-11-09', 20, '3', '1', 'Suresh', 'Supervisor', 240000.00, 1, 0.00, 12000.00, 'No 4 shanmugapadamavathy Nagar thiruvallur 602002', 'No 4 Shanmugapadamavathy Nagar Thiruvallur 602002', '2107170012', '', '1', 'upload_files/candidate_tracker/95703567361_Sharmila RESUME.docx', NULL, '1', '2021-07-17', 0, '', '3', '59', '2021-07-19', 132000.00, '', '0', NULL, '2', 'Selected for Dhanalakshmi Team with CTC - 132000 - Cash mode', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-17 04:28:31', 1, '2021-07-17 04:44:08', 0, NULL, 1),
(5481, 'Vigneshwaran K', '2', '8056292295', '8056250070', 'Wvignesh0698@gmail.com', '1998-02-06', 23, '2', '2', 'Amirthabalavalli. K', 'Housewife', 12000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2107170013', '1', '1', 'upload_files/candidate_tracker/62908520220_Resume_Vigneshwarankumaravel.pdf', NULL, '1', '2021-07-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 04:33:09', 1, '2021-07-17 04:40:23', 0, NULL, 1),
(5482, 'william rajkumar julic', '2', '9840419901', '', 'wiilijulic@gmail.com', '1998-12-05', 22, '2', '2', 'christopher', 'office employee', 25000.00, 1, 0.00, 18000.00, 'chennai', 'chennai', '2107170014', '1', '1', 'upload_files/candidate_tracker/73841927544_William_Rajkumar_Julic br _Full_Stack_Developer.pdf', NULL, '1', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Candidate can join on the next day, scheduled for 2nd level but the candidate left without attending the interview', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 05:22:25', 1, '2021-07-17 05:28:57', 0, NULL, 1),
(5483, 'Mouniga', '2', '6383968138', '9514303515', 'mounibe2308@gmail.com', '1998-08-23', 22, '2', '2', 'Nagarajan', 'Driver', 8000.00, 2, 0.00, 10000.00, 'Erode', 'Chennai', '2107170015', '1', '1', 'upload_files/candidate_tracker/25926787354_1611983280778Resume_Mouniga.docx', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfortable on the TxxampC, need to check with parents.No basic knowledge in React HTML CSS Javascripti, she is currently working in Telesales but looking for IT', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-17 06:05:58', 1, '2021-07-17 06:09:24', 0, NULL, 1),
(5484, '', '0', '8765432156', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107180001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-18 07:14:03', 0, NULL, 0, NULL, 1),
(5485, '', '0', '9756456743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 12:36:23', 0, NULL, 0, NULL, 1),
(5486, '', '0', '9578973638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 11:06:08', 0, NULL, 0, NULL, 1),
(5487, 'CHANDRU.M', '4', '9025298401', '', 'manikandan23112011@gmail.com', '2000-11-23', 20, '1', '2', 'Manikandan', 'Kuli', 20000.00, 2, 0.00, 13000.00, 'No.17 vinayagapuram main Street thondaiyarpet', 'No.17 Vinayagapuram Main Street Thondaiyarpet', '2107190003', '', '1', 'upload_files/candidate_tracker/55032992682_chandru.pdf', NULL, '1', '2021-07-19', 0, 'P1065 syed', '5', '57', NULL, 0.00, '', '0', NULL, '2', 'candidate is not for my team thank you \n', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 11:11:37', 1, '2021-07-19 11:25:39', 0, NULL, 1),
(5488, 'Tamil Selvan', '27', '9941641681', '', 'selvan4446@gmail.com', '1994-09-09', 26, '2', '2', 'S RAJAMMAL', 'MTS', 25000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2107190004', '1', '1', 'upload_files/candidate_tracker/58095281862_TAMILSELVAN_RESUME.pdf', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'CLient round Rejected', '2', '2', '0', '1', '1', '0', '2', '2021-07-30', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-19 11:23:11', 1, '2021-07-19 11:26:50', 0, NULL, 1),
(5489, 'Ezhilraj', '20', '7401684220', '', 'Er145469@gmail.com', '2000-10-13', 20, '1', '2', 'G Elumalai', 'Driver', 20000.00, 2, 0.00, 12000.00, 'No 10 Bendileman Garden', 'No 10 Bendileman Garden First Street Royapuram', '2107190005', '', '1', 'upload_files/candidate_tracker/38789476472_ezhilraj resume.pdf', NULL, '1', '2021-07-19', 0, 'P1065', '5', '57', NULL, 0.00, '', '0', NULL, '2', 'not yet seen the candidate .. kindly check and update ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 11:32:33', 1, '2021-07-19 11:39:32', 0, NULL, 1),
(5490, 'Sivaranjani R', '2', '7338764193', '9840542151', 'sr1688740@gmail.com', '2000-10-09', 20, '2', '2', 'Ramasubbu A', 'Security ASO', 14000.00, 1, 0.00, 20000.00, 'No.25,2nd East karaikalan st, Adambakkam, Ch-88.', 'No13,1st Mannadi Amman Kovil St, Adambakkam,ch-88.', '2107190006', '1', '1', 'upload_files/candidate_tracker/62243798891_CV.pdf', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic knowledge in HTML React, she was much comfortable with Python. Will not Comfortable for our role. Sustainability Doubt', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-19 12:16:25', 1, '2021-07-19 12:27:23', 0, NULL, 1),
(5491, 'Yogaraj', '4', '9600263637', '', 'prajithraj2013@gmail.com', '1998-06-11', 23, '4', '2', 'Gopinath', 'Document writer', 20000.00, 2, 12000.00, 12000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2107190007', '', '2', 'upload_files/candidate_tracker/1356224761_19 java bro.docx', NULL, '1', '2021-07-20', 7, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'not suit fr TC', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 01:51:11', 1, '2021-07-19 01:54:25', 0, NULL, 1),
(5492, 'Zeenath Fathima', '2', '8838384411', '', 'zeenathasifa@gmail.com', '1999-08-20', 21, '4', '2', 'Mohd farooque', '-', 10000.00, 1, 0.00, 15000.00, 'No:1/1 Naval hospital road 8th Street periamet', 'No:1/1 Naval hospital road 8th Street periamet', '2107190008', '', '1', 'upload_files/candidate_tracker/1222779440_Zeenath_Fathima_resume (1).pdf', NULL, '3', '2021-07-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 02:37:47', 50, '2021-07-19 03:31:41', 0, NULL, 1),
(5493, 'Satahiya raj', '17', '9841779010', '', 'sathiya811@yahoo.com', '1986-06-25', 35, '3', '1', 'Ramaya', 'House wife', 10000.00, 2, 20000.00, 18000.00, 'Villupuram', 'T Nager', '2107190009', '', '2', 'upload_files/candidate_tracker/40753019855_Sathiya Raj K (2).docx', NULL, '1', '2021-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Profile,Direct Walk in. Will not suits for our role', '4', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-19 03:24:02', 1, '2021-07-19 03:46:15', 0, NULL, 1),
(5494, '', '0', '9600514552', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 04:13:25', 0, NULL, 0, NULL, 1),
(5495, 'Kumaran', '27', '7845608477', '6381914305', 'tvmalaikumaran15@gmail.com', '1993-07-05', 28, '2', '2', 'K.sampath', 'Farmer', 5000.00, 2, 0.00, 12000.00, 'Tiruvannamalai', 'Velachery', '2107190011', '1', '1', 'upload_files/candidate_tracker/9822728958_new chni pg resume.docx', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Duplicate profile Submitted twice', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-19 04:18:45', 1, '2021-07-19 04:26:58', 0, NULL, 1),
(5496, '', '0', '9629486560', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 04:20:40', 0, NULL, 0, NULL, 1),
(5497, 'R.Gokula priya', '27', '9384102800', '9865491297', 'gokulapriya889@gmail.com', '1998-02-09', 23, '2', '2', 'M.Renganathan', 'LIC agent', 150000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2107190013', '1', '1', 'upload_files/candidate_tracker/8165183659_GokulaResume-converted.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No relevant Exp in Dotnet Winform,will not suits for the cleint requirement\n', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-19 05:23:03', 50, '2021-08-04 11:24:19', 0, NULL, 1),
(5498, '', '0', '7826971402', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107190014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-19 06:09:11', 0, NULL, 0, NULL, 1),
(5499, '', '0', '8754791804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107200001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-20 07:18:19', 0, NULL, 0, NULL, 1),
(5500, 'Dineshkumar Arumugam', '11', '9600934811', '', 'dinesh.kumar.20125@gmail.com', '1997-10-04', 23, '3', '2', 'Arumugam', 'Driver', 35000.00, 1, 0.00, 12500.00, 'Coimbatore', 'Coimbatore', '2107200002', '', '1', 'upload_files/candidate_tracker/13529252326_Dinesh Resume 3.pdf', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Fresher for the recruiter role. Left without attending the 2nd round of discussion', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-20 11:32:47', 1, '2021-07-20 11:38:12', 0, NULL, 1),
(5501, 'Sakthivel', '11', '8428203992', '', 'sakthivelkrishnavel21@gmail.com', '1997-08-21', 23, '3', '2', 'KRISHNAVEL', 'Motor fitter', 40000.00, 1, 0.00, 12000.00, 'Coimbatore', 'Chennai', '2107200003', '', '1', 'upload_files/candidate_tracker/23424111733_CV.pdf', NULL, '1', '2021-07-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication OK, Fresher For The Recruiter Role. Left Without Attending The 2nd Round Of Discussion. Sustainability doubt and not much comfortable with the Service Agreement', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-20 11:33:40', 1, '2021-07-20 11:38:16', 0, NULL, 1),
(5502, 'Vignesh', '11', '8438398503', '7010882098', 'Svignesh13051995@gmail.com', '1995-05-13', 26, '2', '2', 'Mother - nagalakshmi', 'House wife', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107200004', '1', '1', 'upload_files/candidate_tracker/23911217990_1613746813548Resume_Vignesh.pdf', NULL, '1', '2021-07-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1008', '0', NULL, NULL, NULL, 1, '2021-07-20 12:22:04', 1, '2021-07-20 12:31:22', 0, NULL, 1),
(5503, 'Prathiba', '2', '6380385603', '8122595934', 'prathiba.g14@gmail.com', '1997-08-14', 23, '2', '2', 'Govindasamy', 'Security', 17000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2107200005', '1', '1', 'upload_files/candidate_tracker/25439216169_PrathiUpdated.pdf', NULL, '1', '2021-07-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-20 12:33:59', 1, '2021-07-20 12:38:28', 0, NULL, 1),
(5504, 'Ezhil maran E', '3', '8939461277', '9361409053', 'evignesh420@gmail.com', '1999-05-04', 22, '2', '2', 'ELANGO', 'Business', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2107200006', '1', '1', 'upload_files/candidate_tracker/35882089152_Ezhil.pdf', NULL, '1', '2021-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Freelancer,have a plan to continue his freelance options,Salary Exp is very Hgih,open only for 1 year SA.Will not suits for our role', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-20 12:41:49', 60, '2021-10-19 11:41:14', 0, NULL, 1),
(5505, 'Kesava kumar', '2', '9791730473', '', 'kesava9585@gmail.com', '1997-02-20', 24, '2', '2', 'Naganathan', 'Daily wages', 12000.00, 1, 0.00, 12000.00, 'paramakudi', 'Chennai', '2107200007', '1', '1', 'upload_files/candidate_tracker/44995595799_KESAVAKUMAR_BE ONE YEAR EXPERIENCE.pdf', NULL, '1', '2021-07-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-20 12:52:12', 1, '2021-07-20 12:56:45', 0, NULL, 1),
(5506, 'K. Sasi kumar', '22', '9750023693', '', 'sashyan96@gmail.com', '1995-12-09', 25, '3', '2', 'F. Lingananthan', 'Supervisor', 20000.00, 1, 20000.00, 27000.00, 'Chennai', 'Chennai', '2107200008', '', '2', 'upload_files/candidate_tracker/79801698852_Sasi kumar Resume.pdf', NULL, '1', '2021-07-20', 60, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'High expectation of salary', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-20 02:33:14', 1, '2021-07-20 02:43:48', 0, NULL, 1),
(5507, 'Robin', '27', '8012344980', '9781795240', 'robinmech1218@gmail.com', '1999-06-09', 22, '2', '2', 'Sekar', 'Farmer', 15000.00, 1, 13000.00, 16000.00, 'Chennai', 'Tenkasi', '2107200009', '1', '2', 'upload_files/candidate_tracker/52313176406_Robin_Resume.docx', NULL, '1', '2021-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-20 04:51:30', 1, '2021-07-20 05:04:52', 0, NULL, 1),
(5508, 'SATHIYAMURTHY K', '27', '7200159759', '7010880066', 'Sathyamurthy176@gmail.com', '1994-11-16', 26, '2', '2', 'KIRUBAKARAN', 'LATE', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2107200010', '1', '1', 'upload_files/candidate_tracker/71359535486_sathyak88.pdf', NULL, '1', '2021-07-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-20 05:13:02', 1, '2021-07-20 05:16:41', 0, NULL, 1),
(5509, 'Bharani Dharan R', '27', '9600006143', '', 'dbharani860@gmail.com', '1998-08-04', 22, '2', '2', 'ravichandran m', 'police', 30000.00, 2, 196000.00, 260000.00, 'chennai', 'chennai', '2107210001', '1', '2', 'upload_files/candidate_tracker/10495257786_Bharani_resume_1.pdf', NULL, '1', '2021-07-27', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Client Interview Rejected', '2', '1', '', '1', '3', '', '2', '2021-07-30', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-21 09:32:23', 60, '2021-07-27 01:42:10', 0, NULL, 1),
(5510, 'R.saravanapandi', '27', '9003917189', '', 'saravanaganesh10@gmail.com', '1995-04-14', 26, '2', '2', 'Rathinapandi,Tamilselvi', 'Weaving', 45000.00, 2, 25000.00, 40000.00, 'T.kallupatti,madurai', 'Tiruppur', '2107210002', '1', '2', 'upload_files/candidate_tracker/17848924731_Saravanapandi Resume.pdf', NULL, '1', '2021-07-28', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-21 09:45:49', 1, '2021-07-21 10:02:40', 0, NULL, 1),
(5511, 'Nithyaprakash', '3', '6383009760', '9894828157', 'nithyaprakashs.98@gmail.com', '1998-05-20', 23, '2', '2', 'shanmugasundaram', 'software engineer', 20000.00, 0, 150000.00, 400000.00, 'erode', 'erode', '2107210003', '1', '2', 'upload_files/candidate_tracker/64155961292_Nithyaprakash.pdf', NULL, '1', '2021-07-30', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will Come For System Task, Having 1 Yr Of Experience In React Native - Mobile/Web Applications - Task has been given and not up to the mark as we expected. We need to train him a lot. Candidate notice is 30 Days', '2', '1', '0', '1', '1', '0', '2', '2021-07-31', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-21 10:14:24', 1, '2021-07-21 10:29:47', 0, NULL, 1),
(5512, 'manoj', '4', '9092914395', '', 'manojmaji2000@gmail.com', '2000-05-05', 21, '2', '2', 'venkat', 'business', 40000.00, 1, 0.00, 10000.00, 'tiruvallur', 'tiruvallur', '2107210004', '1', '1', 'upload_files/candidate_tracker/94694531347_V.Manoji resume.pdf', NULL, '2', '2021-07-20', 0, '', '3', '59', '2021-08-02', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Tiruvallur Location with CTC 120000 in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-21 10:57:50', 60, '2021-08-10 06:45:21', 0, NULL, 1),
(5513, 'Hariharan A', '11', '7708038743', '7598249274', 'journalist.hariharan@gmail.com', '1995-11-14', 25, '2', '2', 'Parameswari A', 'NA', 1000.00, 1, 16000.00, 16000.00, '20/7A, Papanasam, Thanjavur-614205', 'Moggapair', '2107210005', '1', '2', 'upload_files/candidate_tracker/91208293090_Hariharan CV_21 (1).pdf', NULL, '1', '2021-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate holding an offer and not much comfortable with the service Agreement. Communication is good ', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-21 11:18:55', 1, '2021-07-21 11:26:01', 0, NULL, 1),
(5514, 'gokul', '4', '9626177462', '', 'gokul270520@gmail.com', '2000-05-18', 21, '2', '2', 'selvam', 'tailor', 8000.00, 3, 0.00, 1000.00, 'kadambathur', 'thiruvallur', '2107210006', '1', '1', 'upload_files/candidate_tracker/69247061568_RESUME (3).docx', NULL, '1', '2021-07-20', 0, '', '3', '59', '2021-07-22', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Tiruvallur Location with CTC 120000 in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-21 11:39:44', 60, '2021-08-10 06:46:39', 0, NULL, 1),
(5515, 'Mohanraj G', '17', '9902651448', '8608718868', 'mohang2020@gmail.com', '1994-05-19', 27, '1', '2', 'Ganesh', 'Agricultural', 10000.00, 0, 400000.00, 500000.00, 'Tirupur', 'Bangalore', '2107210007', '', '2', 'upload_files/candidate_tracker/64134821715_Mohanraj_G updated Resume.pdf', NULL, '1', '2021-07-21', 5, '55599', '3', '60', '2021-07-22', 450000.00, '', '5', '1970-01-01', '1', 'Selected as Sourcing BDM - 4.5 LPA includes PF/PT.3 months Target will be given and based on the target achieved, will be promoted and the salary will be revised - Commitment will be shared over the mail by Sathish Kumar - Bangalore', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '3', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-21 12:48:25', 60, '2021-07-21 05:32:43', 0, NULL, 1),
(5516, 'Ramya. B', '4', '7867979648', '9865029056', 'ramya1996b@gmail.com', '1996-06-10', 25, '1', '2', 'Balakrishnan', 'Farmer', 158000.00, 2, 14000.00, 16000.00, 'Mayiladuthurai', 'Chennai', '2107210008', '', '2', 'upload_files/candidate_tracker/42555545160_1622111076711Resume_Ramya.docx', NULL, '1', '2021-07-21', 0, '55558', '3', '59', '2021-08-02', 146496.00, '', '6', '2022-10-29', '2', 'Selected for Raj Kumar CRM Role,with CTC 146496 inlcudes PT only 208 deduction in client advisory Prop Staff', '1', '1', '2', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-07-21 01:23:54', 60, '2022-06-10 09:48:39', 0, NULL, 1),
(5517, 'venkatesan', '2', '7550247446', '7338818953', 'venkateesan08@gmail.com', '1998-05-17', 23, '2', '2', 'Ganesan', 'student', 30000.00, 2, 15000.00, 18000.00, 'anna nagar chennai', 'anna nagar chennai', '2107210009', '1', '2', 'upload_files/candidate_tracker/60496366115_resume_1623941948297.pdf', NULL, '1', '2021-07-22', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basic knowledge, not even clear o n the skill. Will not suitable for our role', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-21 01:47:01', 50, '2021-07-22 02:34:14', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5518, 'E.Gopala Krishnan', '2', '7358583390', '9940061683', 'gopalakrishnan101999@gmail.com', '1999-10-03', 21, '2', '2', 'Elumalai', 'Self employment', 100000.00, 0, 0.00, 15000.00, '10/312,sathya nagar 7 th Street kovilambakkam', 'Kovilambakkam', '2107210010', '1', '1', 'upload_files/candidate_tracker/25503321480_Resume-1.docx', NULL, '1', '2021-07-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Yet to complete his graduation, Focusing into Java positions.1 more year to go', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-21 02:51:33', 50, '2021-07-22 02:33:46', 0, NULL, 1),
(5519, 'Shreenivas Sekar', '2', '8122746066', '7299970088', 'srinibrok06@gmail.com', '1999-09-27', 21, '2', '2', 'Sekar', 'Sales and service', 8000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2107210011', '1', '1', 'upload_files/candidate_tracker/43774180009_Shreenivas Resume-1.pdf', NULL, '1', '2021-07-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is doing part time trainer in shuttle,No basics of Javascript,will not suits for our role and sustainability doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-21 04:56:15', 50, '2021-07-22 02:32:30', 0, NULL, 1),
(5520, 'Karan.M', '2', '9361138715', '9677767823', 'mkaran71999@gmail.com', '1999-05-07', 22, '2', '2', 'Murugan.V', 'Tally clerk', 40000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2107210012', '1', '1', 'upload_files/candidate_tracker/59690964033_karan resume(1).docx', NULL, '1', '2021-07-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Focusing Positions into Java/Python. Not suits for our role.Will not sustain for a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-21 04:56:39', 50, '2021-07-22 02:32:47', 0, NULL, 1),
(5521, '', '0', '9841608904', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107210013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-21 05:04:32', 0, NULL, 0, NULL, 1),
(5522, 'kishore kumar', '2', '7904196842', '', 'krcloud22@gmail.com', '1998-01-10', 23, '2', '2', 'Vedhachalam', 'Construction', 25.00, 0, 0.00, 300000.00, 'chengalpattu', 'chengalpattu', '2107220001', '1', '2', 'upload_files/candidate_tracker/35105737028_kishore.resume.pdf', NULL, '1', '2021-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 10:58:09', 1, '2021-07-22 06:43:02', 0, NULL, 1),
(5523, 'Rahiman', '2', '6380387178', '9943864695', 'srahiman1999@gmail.com', '1999-05-27', 22, '2', '2', 'Shajahan', 'Former', 20000.00, 3, 0.00, 480000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2107220002', '1', '1', 'upload_files/candidate_tracker/30129953538_CV_rahiman.pdf', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not strong in Basics, Exams yet to complete. Mostly focus only for the Intern. Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 11:00:49', 1, '2021-07-22 11:10:52', 0, NULL, 1),
(5524, '', '0', '9087106845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107220003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-22 11:20:26', 0, NULL, 0, NULL, 1),
(5525, 'Christophen A', '27', '7305771030', '', 'christophen.alphonse202eng@gmail.com', '1996-12-25', 24, '2', '2', 'Alphonse A', 'Security', 12000.00, 1, 0.00, 10000.00, 'Thiruvannamalai', 'Chennai', '2107220004', '1', '1', 'upload_files/candidate_tracker/86355235922_Christophen_Resume_.doc', NULL, '1', '2021-07-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-22 11:34:12', 1, '2021-07-22 11:42:31', 0, NULL, 1),
(5526, 'Christy A', '20', '6380797539', '8667653877', 'christymary995@gmail.com', '1995-03-29', 26, '2', '2', 'Aanthonisamy', 'Farmer', 10000.00, 3, 10000.00, 12000.00, '2/212,North Street, Kallakurichi DT-605702', 'Manavalan nagar, Thiruvallur 602002', '2107220005', '3', '2', 'upload_files/candidate_tracker/78921526729_Christy.pdf', NULL, '1', '2021-07-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Rejected, Not suitable for Telesales Sales.Not much open up', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 11:39:41', 1, '2021-07-22 11:52:45', 0, NULL, 1),
(5527, 'Nelson Micheal Bharathi S', '11', '8940694309', '8124194185', 'nelsonmike49@gmail.com', '1996-11-22', 24, '3', '2', 'Sahayaraj m', 'Rtd employees', 5000.00, 1, 15000.00, 20000.00, 'Hosur', 'Chennai', '2107220006', '', '2', 'upload_files/candidate_tracker/17737965968_Nelson Resume.pdf', NULL, '1', '2021-07-22', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much open with our terms and conditions, no sustainability in his profile. Will not handle the pressure', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 11:52:11', 1, '2021-07-22 11:56:47', 0, NULL, 1),
(5528, 'PAVITHRA S', '4', '9952363862', '', 'pavik1056@gamil.com', '1999-03-06', 22, '1', '2', 'Subramani S', 'II Msc cs', 10000.00, 1, 0.00, 15000.00, '4/89 Devendrakual Street', 'Ladies HostEl in Ekkaduthangal', '2107220007', '', '1', 'upload_files/candidate_tracker/95173230422_pavi resume 1.docx', NULL, '3', '2021-07-22', 0, '2107220007', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal REference ,not much open up. not suits for our role', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 12:06:07', 1, '2021-07-22 12:22:21', 0, NULL, 1),
(5529, 'Nisha.N', '4', '9597874323', '', 'nishanallusmay29@gmail.com', '1999-06-04', 22, '1', '2', 'Nallusamy p', 'Cooli', 8000.00, 2, 0.00, 12.00, '5/133 MuthaliVattam Esanai (Po) Perambalur)TN46', 'Luxura Ladies Hostel Ekkaduthangal', '2107220008', '', '1', 'upload_files/candidate_tracker/7706047839_1626885294584_nisha resume 1.docx', NULL, '1', '2021-07-22', 0, '2107220008', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our sales, will not sustain and handle our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 12:06:17', 1, '2021-07-22 12:18:02', 0, NULL, 1),
(5530, 'Silambarasan C', '27', '8939850101', '8939202515', 'silambarasanbro@gmail.com', '1998-03-08', 23, '2', '2', 'Chidhambaram V', 'Self Employee', 120000.00, 2, 0.00, 15000.00, 'Perambalur', 'No.12/7 S.T.N Nayanar Street, Kondithope,Chennai', '2107220009', '1', '1', 'upload_files/candidate_tracker/91975688121_Silambarasan Resume.pdf', NULL, '1', '2021-07-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '5050 For .Net, Having Knowledge In ASP. Net MVC Only And Also In C#. Keen To Learn In Window Form, Can Give A Try For Client - Rejected in the client round of Interview', '2', '1', '0', '1', '1', '0', '2', '2021-07-26', '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-07-22 12:35:49', 1, '2021-07-22 12:39:57', 0, NULL, 1),
(5531, 'radhika', '27', '9940444174', '9940506035', 'radhikaavasan@gmail.com', '1985-07-24', 35, '2', '1', 'srinivasan', 'senior dotnet developer', 75000.00, 2, 200000.00, 300000.00, 'chennai', 'chennai', '2107220010', '1', '2', 'upload_files/candidate_tracker/46701706118_Resume.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Exp in Winforms, having knowledge in ASP.Net only. age around 35 yrs. More of Career Gap', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 02:05:18', 1, '2021-07-22 08:37:21', 0, NULL, 1),
(5532, 'Abirami V', '2', '8680060571', '9080477762', 'abirami101210@gmail.com', '1998-12-10', 22, '3', '2', 'Velumani S', 'Security Officer', 7000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2107220011', '', '1', 'upload_files/candidate_tracker/831217174_ABIRAMI.pdf', NULL, '2', '2021-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 02:09:20', 1, '2021-07-22 02:14:22', 0, NULL, 1),
(5533, 'MANIGANDAN P', '4', '8179931496', '7339678340', 'manigandanrvsbe@gmail.com', '1998-06-17', 23, '3', '2', 'PANNERSELVAM K', 'Coolie', 6000.00, 0, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2107220012', '', '1', 'upload_files/candidate_tracker/7412104317_RESUME.pdf', NULL, '1', '2021-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-22 02:10:19', 1, '2021-07-22 02:22:03', 0, NULL, 1),
(5534, 'Mumtaj.R', '4', '9159793134', '', 'Mumtajrafimumtaj@gmail', '1999-04-21', 22, '2', '2', 'Mohammed Rafi', 'business', 30000.00, 1, 12000.00, 15000.00, 'Chennai', 'chennai', '2107220013', '1', '2', 'upload_files/candidate_tracker/19142091388_MUMTAJ R.docx', NULL, '1', '2021-07-22', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No relevant Exp, Communication ok, but seems not much matured.Saalry expectation is high, Check for Esales 5050 ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-22 03:03:51', 60, '2021-07-27 03:24:30', 0, NULL, 1),
(5535, 'lakshaya', '2', '9789831091', '', 'lakshaya1998@gmail.com', '1998-05-24', 23, '2', '2', 'periyasamy', 'driver', 15000.00, 0, 0.00, 15000.00, 'No.1132, Madhurapuri New Street,Thuraiyur, Trichy.', 'No.20, Kamatchi Avenue, Mangadu, Chennai.', '2107220014', '1', '1', 'upload_files/candidate_tracker/4575786505_Lakshaya Resume.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Focussing only for Internship, if she joins also will not sustain more than 2 yrs. Too long distance.Not open comfortable with txxampC', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 03:44:31', 1, '2021-07-25 11:34:26', 0, NULL, 1),
(5536, '', '0', '7904834676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107220015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-22 04:56:22', 0, NULL, 0, NULL, 1),
(5537, 'MADHUSUDANAN SRINIVASAN', '27', '7845850281', '', 'rahullsrinivasan@gmail.com', '1999-11-08', 21, '2', '2', 'ALAMELU SRINIVASAN', 'Home maker', 32000.00, 1, 0.00, 350000.00, 'No.194, 38th Street, sankar nagar, pammal, chennai', 'No.194, 38th Street, Sankar Nagar, Pammal, Chennai', '2107220016', '1', '1', 'upload_files/candidate_tracker/62835878488_MadhusudananS_Resume.pdf', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Can Give A Try For .NET, Focusing Much Into Gaming But Have Knowledge In .Net With C#.5050 Profile Can Give A Try - Rejected in the client round', '2', '2', '0', '1', '1', '0', '2', '2021-07-26', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 05:08:44', 1, '2021-07-22 09:43:01', 0, NULL, 1),
(5538, '', '0', '9788309824', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107220017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-22 07:56:21', 0, NULL, 0, NULL, 1),
(5539, 'Vijaya Rani', '27', '8220645252', '', 'vijayaranimanoj@gmail.com', '1997-04-11', 24, '2', '1', 'Manoj Kumar.N', 'Engineer', 25.00, 0, 0.00, 15.00, 'BOMMAYA GOUNDAN PATTI,THENI', 'BOMMAYA GOUNDAN PATTI,THENI', '2107220018', '1', '1', 'upload_files/candidate_tracker/13851355114_VIJAYARANIMANI.pdf', NULL, '1', '2021-07-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,Having knowledge only in Aap.Net \nsalary Expectation is very high and will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 08:24:08', 1, '2021-07-22 08:28:37', 0, NULL, 1),
(5540, 'kuzanthaiyan', '2', '9791645724', '', 'manikuzanthaiyan080@gmail.com', '1999-02-09', 22, '2', '2', 'srenivashan', 'lic agent', 20000.00, 1, 0.00, 20000.00, 'salem', 'salem', '2107220019', '1', '1', 'upload_files/candidate_tracker/86372684865_KUZANTHAIYAN (1).pdf', NULL, '1', '2021-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 08:28:59', 1, '2021-07-22 08:40:20', 0, NULL, 1),
(5541, 'kuzanthaiyan', '2', '8637649057', '', 'manikuzanthaiyan@gmail.com', '1999-02-09', 22, '2', '2', 'srenivashan', 'lic agent', 20000.00, 1, 0.00, 20000.00, 'salem', 'salem', '2107220020', '1', '1', 'upload_files/candidate_tracker/81069973287_KUZANTHAIYAN (1).pdf', NULL, '1', '2021-07-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-22 08:58:08', 1, '2021-07-22 09:06:36', 0, NULL, 1),
(5542, 'Pavithra V', '14', '9080044133', '9840192140', 'Pavithravijay203@gmail.com', '2000-03-20', 21, '2', '2', 'K. Vijayakumar', 'Labour', 25000.00, 1, 0.00, 20000.00, 'Moolakadai', 'Moolakadai', '2107230001', '12', '1', 'upload_files/candidate_tracker/77447198384_Pavithra v resume (1).pdf', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Terms and conditions,not interested much into the coding. She focus much into Java Python', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-23 09:29:17', 1, '2021-07-23 09:51:04', 0, NULL, 1),
(5543, 'Nambi.R', '11', '8668124849', '7299776031', 'Nambi94444@gmail.com', '1999-03-24', 22, '1', '2', 'Ramanathan.R', 'Labour', 17000.00, 0, 0.00, 18000.00, 'No:174 mangala nager, 9ty cross street, porur', 'Chennai', '2107230002', '', '1', 'upload_files/candidate_tracker/14703095859_NAMBI 19-07-2021.pdf', NULL, '1', '2021-07-23', 0, 'Jobs', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Terms xxamp conditions and the expectation is very high. Will not sustain for a long', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-23 10:45:23', 60, '2021-07-23 04:08:03', 0, NULL, 1),
(5544, '', '0', '8939202515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-23 10:48:50', 0, NULL, 0, NULL, 1),
(5545, 'mitra', '4', '6374314922', '', 'www.mitramitra0987@gmail.com', '2001-04-05', 0, '2', '2', 'nelamanivanan', 'astrologer', 15000.00, 2, 0.00, 10000.00, 'peravalur', 'tambaram', '2107230004', '1', '1', 'upload_files/candidate_tracker/44435090720_m.resume.docx', NULL, '1', '2021-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-23 11:00:50', 1, '2021-07-23 11:49:43', 0, NULL, 1),
(5546, 'Levis vasanth', '11', '9962948747', '6380486198', 'levisvasanth3@gmail.com', '1997-07-11', 24, '2', '2', 'Periyanayagam', 'Farmer', 20000.00, 3, 14000.00, 15000.00, 'Levis vasanth church street, Villupuram', 'Choolaimedu, basha street chennai', '2107230005', '1', '2', 'upload_files/candidate_tracker/79048956208_curriculm vitae.docx', NULL, '3', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, Fresher for the recruitment Role.He will not handle the pressure and will not sustain for a long', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-23 11:11:34', 1, '2021-07-23 11:18:26', 0, NULL, 1),
(5547, 'ajithkumar g', '2', '6383778445', '', 'gajithkumar0011@gmail.com', '1998-03-15', 23, '2', '2', 'govindhasamy m', 'former', 10000.00, 3, 0.00, 20000.00, 'dharmapuri', 'dharmapuri', '2107230006', '1', '1', 'upload_files/candidate_tracker/46430703650_GajithQR.pdf', NULL, '2', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge. He is much into Java, C. Will not handle the work pressure', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 11:52:24', 1, '2021-07-23 12:30:06', 0, NULL, 1),
(5548, 'Rahul Ganesh', '23', '8072277271', '9994768622', 'ganeshrahul1699@gmail.com', '1999-06-01', 24, '1', '2', 'Saravanan', 'Business', 16000.00, 2, 0.00, 18000.00, 'salem', 'salem', '2107230007', '', '1', 'upload_files/candidate_tracker/59199543809_new2 Rahul Ganesh Resume.pdf', NULL, '1', '2023-07-12', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open or TxxampC if he comes back after learning let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-23 12:36:37', 1, '2023-07-12 10:11:53', 0, NULL, 1),
(5549, 'S. Sivaraman', '11', '8608560831', '7350370471', 'Sivaraman165@gmail.com', '1997-05-16', 24, '2', '2', 'N. Sivasubramanian', 'Retired', 15.00, 1, 0.00, 12.00, 'Chennai', 'Perungalathur', '2107230008', '1', '1', 'upload_files/candidate_tracker/37998324734_10023729-2021-04-27 (1).pdf', NULL, '3', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location Constraint, Sustainability doubts. Will not handle pressure. Not suits for our recruiter Role. He left previous company because of job pressure', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-23 12:46:22', 1, '2021-07-23 12:54:08', 0, NULL, 1),
(5550, 'Meena', '4', '7598411361', '', 'meenashanraj@gmail.com', '1993-03-05', 28, '3', '1', 'Raghunath', 'Airtel', 35000.00, 2, 16000.00, 17000.00, 'Tamil Nadu', 'Tamil Nadu', '2107230009', '', '2', 'upload_files/candidate_tracker/52306869307_meena resume 2021.docx.docx', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '50/50 can give a try for Esale RM, but left without attending the 2nd level Interview', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-23 12:49:50', 1, '2021-07-23 12:54:48', 0, NULL, 1),
(5551, 'R. Kasthuri', '25', '9600113683', '', 'Kasthuri2471992@gmail.com', '2006-07-23', 0, '2', '2', 'K. Rose', 'Self employed', 20000.00, 2, 12000.00, 12000.00, 'Chennai', 'Chennai', '2107230010', '1', '2', 'upload_files/candidate_tracker/47078366105_RESUMEkas.pdf', NULL, '1', '2021-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication, No sales Experience will not suits for our role.', '8', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-23 12:50:33', 1, '2021-07-23 01:05:36', 0, NULL, 1),
(5552, 'IRFAN SHARIF', '6', '8939313747', '8015677041', 'irfanspicy143@gmail.com', '1997-03-20', 24, '2', '2', 'ABDULLHA', 'TAILOR', 20000.00, 2, 13000.00, 15000.00, 'Chennai', 'Chennai', '2107230011', '1', '2', 'upload_files/candidate_tracker/53231257012_latest resume(2).pdf', NULL, '1', '2021-07-24', 0, '', '3', '59', '2021-07-29', 216000.00, '', '4', '2023-01-18', '1', 'Selected for Kannan Team with CTC - 216000 includes PF/ESI/PT deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 01:25:35', 60, '2021-07-29 04:17:45', 0, NULL, 1),
(5553, 'Vikneshwari', '27', '8220006372', '8072252773', 'Vikneshwari2596@gmail.com', '1996-11-25', 24, '2', '2', 'Murthy', 'Senior Assistant in Medical College', 40000.00, 1, 16000.00, 20000.00, '126,Manju bala nagar,Narthangudi,Thiruvarur (dt).', '126,Manju bala Nagar,Narthangudi, Thiruvarur (dt)', '2107230012', '1', '2', 'upload_files/candidate_tracker/7875570901_DotnetResumeNew_.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suits for our client position, she is comfortable only for ASP.Net MVC positions ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 01:30:40', 1, '2021-07-23 01:45:25', 0, NULL, 1),
(5554, 'Satish Kumar', '27', '9940276896', '', 'satishnb4@gmail.com', '1995-02-04', 26, '2', '2', 'N Babu', 'Labor in Air India', 40000.00, 1, 14000.00, 20000.00, 'No.263 pullapuram kilpauk Chennai 600010', 'No. 315 pullapuram kilpauk Chennai 600010', '2107230013', '1', '2', 'upload_files/candidate_tracker/55463979438_Satish_2021.pdf', NULL, '1', '2021-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 02:38:29', 1, '2021-07-23 02:46:58', 0, NULL, 1),
(5555, 'Ajith kumar C', '2', '9043441218', '', 'cajithkumar2015@gmail.com', '1998-08-15', 22, '2', '2', 'Chandran P', 'SalesMan', 25000.00, 1, 0.00, 5000.00, 'TN-Salem', 'TN-Salem', '2107230014', '1', '1', 'upload_files/candidate_tracker/79700109905_Ajith_kumar.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much interested towards Angular Positions only, will not handle the work pressure.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 03:40:36', 1, '2021-07-23 03:43:20', 0, NULL, 1),
(5556, 'Elamaran', '2', '9944187827', '', 'maranram123@gmail.com', '1998-12-09', 22, '2', '2', 'Ramasamy', 'Agriculture', 20000.00, 1, 0.00, 15000.00, 'Thambikottai vadakadu', 'Chennai', '2107230015', '1', '1', 'upload_files/candidate_tracker/62248079347_Resume.pdf', NULL, '3', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Poor Communication, No basic knowledge, will not handle our pressure. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 03:57:48', 1, '2021-07-23 04:01:45', 0, NULL, 1),
(5557, 'Ajay SS', '27', '7010395037', '', 'lucabrasi1042@gmail.com', '2000-01-24', 21, '2', '2', 'Subramaniam H', 'Manager', 50000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2107230016', '1', '1', 'upload_files/candidate_tracker/5064516871_AJAY_RESUME.pdf', NULL, '1', '2021-07-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 04:40:38', 1, '2021-07-23 04:47:16', 0, NULL, 1),
(5558, 'Daniel', '2', '9025273485', '', 'daniel.p11198@gmail.com', '1998-01-11', 23, '2', '2', 'Paul boopathy raja', 'Grocery', 30000.00, 2, 180000.00, 300000.00, 'Chennai', 'Chennai', '2107230017', '1', '2', 'upload_files/candidate_tracker/89833946167_danie_resume (1).docx', NULL, '2', '2021-07-23', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-23 06:41:58', 1, '2021-07-23 06:45:07', 0, NULL, 1),
(5559, 'Syed Abuthahir', '2', '7395951797', '', 'syedmechon123@gmail.com', '1999-03-12', 22, '4', '2', 'Mohamed Farook', 'Assistant General Manager', 40000.00, 3, 0.00, 200000.00, 'Aminjikarai', 'Nolambur', '2107240001', '', '1', 'upload_files/candidate_tracker/77378898010_SYED RESUME - 2021-07-24T100008.647.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open with TxxampC. Having basic knowledge in HTML,CSS,JS with not much importance on the job', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 09:53:47', 1, '2021-07-24 10:00:31', 0, NULL, 1),
(5560, 's.sujatha', '23', '8680982706', '', 's.sujatha1994@gmail.com', '1994-06-10', 27, '3', '2', 'n.sekar', 'farmer', 10000.00, 4, 15000.00, 23000.00, 'Chennai', 'Chennai', '2107240002', '', '2', 'upload_files/candidate_tracker/18841935260_Sujatha Resume.pdf', NULL, '1', '2021-08-02', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not enough knowledge', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 10:07:07', 60, '2021-08-02 05:31:24', 0, NULL, 1),
(5561, 'M Aldrin erric daniel', '25', '8838810867', '', 'erricaed97@gmail.com', '1997-11-18', 23, '3', '2', 'Muthu vijayan', 'TNEB accounts department', 40000.00, 1, 0.00, 16000.00, 'CHENNAI', 'karpagam appartment,st.lazarusroad,R.ApuramCH-28', '2107240003', '', '1', 'upload_files/candidate_tracker/55601578894_ALDRIN RESUME.pdf', NULL, '1', '2021-07-24', 0, '', '3', '59', '2021-07-29', 192000.00, '', '3', '2021-09-20', '1', 'Selected for Sarath Team with CTC-192000 includes PF/ESI. Target will given to the candidate and if he Achieved the target salary will be revised with the addition of 20k', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 10:39:42', 60, '2021-07-28 05:10:37', 0, NULL, 1),
(5562, 'Prasanna', '4', '6383148143', '9597205769', 'prasannapras230@gmail.com', '1998-07-07', 23, '3', '2', 'Elumalai', 'Farmer', 12000.00, 2, 10000.00, 12000.00, 'Periyakalakkadi village Chengalpattu Dt', 'Pozhichalur,chennai-74', '2107240004', '', '2', 'upload_files/candidate_tracker/49131245473_Prasanna Resume.docx', NULL, '1', '2021-07-24', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold On Long Pending ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 11:19:24', 1, '2021-07-24 11:29:41', 0, NULL, 1),
(5563, 'Sakthipratheesh S', '2', '7904472252', '9159070700', 'sakthipratheeshs@gmail.com', '2000-08-04', 20, '2', '2', 'prema', 'house wife', 30000.00, 1, 1.00, 4.00, 'chennai', 'chennai', '2107240005', '1', '2', 'upload_files/candidate_tracker/23307484278_Sakthipratheesh_Resume.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,little of basic knowledge, Much into PHP, Min Salary Expectation is 20K.Will not sustain for a long, Focusing much for Tier level companies\n', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-24 11:28:16', 1, '2021-07-24 12:02:56', 0, NULL, 1),
(5564, 'MOHAMMEDIJAS A', '6', '9677265267', '6383819583', 'mohammedijas18155@gmail.com', '1996-05-05', 25, '3', '2', 'Abdul salam', 'Experience', 25000.00, 1, 13500.00, 15000.00, '35 sabapathy street ayanavaram chennai', '35 Sabapathy street ayanavaram chennai', '2107240006', '', '2', 'upload_files/candidate_tracker/72424367004_1625024315939_Ijas new resume 2020(1).pdf', NULL, '1', '2021-07-24', 0, '', '3', '59', '2021-07-26', 186000.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team - RE with CTC 186000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 11:55:11', 60, '2021-07-24 06:04:03', 0, NULL, 1),
(5565, '', '0', '7338920924', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107240007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-24 12:03:47', 0, NULL, 0, NULL, 1),
(5566, '', '0', '9884540138', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107240008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-24 12:35:57', 0, NULL, 0, NULL, 1),
(5567, 'prince kumar s', '2', '9791056023', '', 'unknownprincekumar@gmail.com', '2000-11-22', 20, '2', '2', 'sri narayan singh', 'security', 220000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2107240009', '1', '1', 'upload_files/candidate_tracker/45540562435_prince kumar.s.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnxquott come back after checking with his family on TxxampC. Sustainability Doubts', '2', '2', '0', '1', '1', '0', '2', '2021-07-28', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 01:37:52', 1, '2021-07-24 01:52:50', 0, NULL, 1),
(5568, 'sureshkumar g', '2', '8220097730', '8072137378', 'sureshkumar062999@gmail.com', '1999-06-29', 22, '2', '2', 'ganesan n', 'electrician', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107240010', '1', '1', 'upload_files/candidate_tracker/95561033905_SureshMCA (1).pdf', NULL, '1', '2021-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 03:03:53', 1, '2021-07-24 03:10:30', 0, NULL, 1),
(5569, '', '0', '9944782676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107240011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-24 03:14:16', 0, NULL, 0, NULL, 1),
(5570, 'S.Harishkumar', '2', '9789682446', '7010886581', 'hk1651999@gmail.com', '1999-05-16', 22, '2', '2', 'M.Senthilnathan', 'Printing Press', 12000.00, 1, 0.00, 10000.00, 'E20,Pari Street,Anna M.G.R Nagar,Pallikaranai,Ch', 'E20,Pari Street,Anna M.G.R Nagar,Pallikaranai,Ch', '2107240012', '1', '1', 'upload_files/candidate_tracker/61330604856_Resume_S Harishkumar.docx', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will Come For The Joining On 28-Jul,Need To Collect Original Certificates Tomorrow,Selected For Mern Stack Can Be Trained / Candidate didnt turn back ', '2', '1', '0', '1', '1', '0', '2', '2021-07-29', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 03:15:08', 1, '2021-07-24 03:21:51', 0, NULL, 1),
(5571, 'Mohamed suhail', '6', '9884262730', '8072411547', 'suhailmohamed3006@gmail.com', '2001-06-30', 20, '2', '2', 'Badurunisha', 'Housewife', 18000.00, 2, 11000.00, 15000.00, 'Adambakkam', 'Adambakkam', '2107240013', '1', '2', 'upload_files/candidate_tracker/33229066899_resume suhail.pdf', NULL, '1', '2021-07-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-24 03:36:54', 1, '2021-07-24 03:47:18', 0, NULL, 1),
(5572, 'Deepak D', '2', '9543911583', '9710893599', 'deepakd478@gmail.com', '1998-04-23', 23, '2', '2', 'Deenadayalan N', 'Plumber', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2107240014', '1', '1', 'upload_files/candidate_tracker/17566996133_Resume.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Testing Profile, Worked with RANE. Not much focused towards the career. Salary Expectation is also too high', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 03:48:22', 1, '2021-07-24 03:53:02', 0, NULL, 1),
(5573, 'kishore', '2', '8190805490', '', 'gokulkishore393@gmail.com', '2000-10-17', 20, '2', '2', 'kuppan', 'catering server', 20000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2107240015', '1', '1', 'upload_files/candidate_tracker/65739531273_kishore_k.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Need Some Time To Learning, No Basic Knowledge .Yet to Get The Document From College, Currently Working In Voice Process. Need Some Time To Decide ', '2', '1', '0', '1', '1', '0', '2', '2021-08-02', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 05:12:31', 1, '2021-07-24 05:41:18', 0, NULL, 1),
(5574, 'tendul kumar', '2', '8940032411', '6380230306', 'tendulkumar01@gmail.com', '1997-07-03', 24, '2', '2', 'ramakrishnamoorthi', 'daily wages', 8000.00, 2, 0.00, 2.50, 'krishnagiri', 'chennai', '2107240016', '1', '1', 'upload_files/candidate_tracker/31438872199_Resume.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Gokul in the 2nd round and got rejected, Will not sustain for a long. Most focus only on the Salary', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 05:25:04', 1, '2021-07-25 08:31:52', 0, NULL, 1),
(5575, 'Vijay kumar', '4', '8792617822', '8096659674', 'Sunnyvijju143@gmail.com', '1998-01-01', 23, '3', '2', 'Ramanjineyulu', 'Factory worker', 30000.00, 3, 14500.00, 16000.00, '1-193 sajjaladinne tadipatri ananthapur Ap', 'Madiwala marutinagar bangalore katnataka', '2107240017', '', '2', 'upload_files/candidate_tracker/82771260446_CV_2021-07-23-123854.pdf', NULL, '1', '2021-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 05:42:17', 1, '2021-07-24 05:53:55', 0, NULL, 1),
(5576, 'muniasamy ramakrishnan', '2', '9092722657', '9025762046', 'rmuniasamy392@gmail.com', '1995-10-31', 25, '4', '2', 'ramakrishnan', 'farmer', 200000.00, 2, 283000.00, 400000.00, 'tutticorin', 'avadi', '2107240018', '', '2', 'upload_files/candidate_tracker/56219557469_1624379553489_muniasamy ramakrishnan resume_200811 (2).doc', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Having Exp in React Native,Little Attitude Issue,Salary expectation is very high.Not much comfortable with SA. No sustainability in previous exp.Not in smooth manner with the previous Companies\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 05:44:07', 1, '2021-07-24 05:50:24', 0, NULL, 1),
(5577, '', '0', '9087798105', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107240019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-24 06:16:09', 0, NULL, 0, NULL, 1),
(5578, 'SAHITH AFRIDEEN', '3', '9094082900', '9092622178', 'sahithafrideen2000@gmail.com', '2000-03-09', 21, '2', '2', 'NAINA MOHAMMAD', 'Works in a coffee Shop', 12000.00, 1, 0.00, 13000.00, 'Tondiarpet', 'IOC', '2107240020', '1', '1', 'upload_files/candidate_tracker/21296572534_sahithee1.docx', NULL, '1', '2021-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-24 06:34:23', 1, '2021-07-24 07:02:31', 0, NULL, 1),
(5579, 'shrinidhi', '2', '9940090179', '7338920924', 'shrinidhi250100@gmail.com', '2000-01-25', 21, '3', '2', 'senthilkumar', 'fresher', 50000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2107240021', '', '1', 'upload_files/candidate_tracker/76115696982_Shrinidhi\'s Resume.pdf', NULL, '1', '2021-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-24 10:38:36', 1, '2021-07-24 10:43:29', 0, NULL, 1),
(5580, '', '0', '6381356498', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107250001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-25 08:46:28', 0, NULL, 0, NULL, 1),
(5581, 'Arunprasanth', '27', '9566640720', '', 'arunprasanth299@gmail.com', '2006-07-26', 15, '2', '2', 'Thiripurasundari', 'Teacher', 60000.00, 2, 0.00, 16000.00, 'Thrivannamala', 'Thrivannamala', '2107260001', '1', '1', 'upload_files/candidate_tracker/56521528165_arun res-1.pdf', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for our Mern Stack, also not for our client positons', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-26 09:15:53', 1, '2021-07-26 09:23:45', 0, NULL, 1),
(5582, 'Kamesh v', '27', '8667038284', '', 'Kameshvaradaraj99@gmail.com', '1999-11-24', 21, '2', '2', 'Varadaraj s', 'Mechanic', 80000.00, 2, 0.00, 15000.00, 'Ambur', 'ambur', '2107260002', '1', '1', 'upload_files/candidate_tracker/84004303562_kamesh.docx', NULL, '1', '2021-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfort with TxxampC,no basic Knowledge. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-26 09:17:40', 1, '2021-07-26 09:26:52', 0, NULL, 1),
(5583, 'Pavithra', '2', '9094649512', '', 'p.pavithra1109@gmail.com', '1997-09-11', 23, '2', '2', 'Palanisamy', 'Staff', 20000.00, 3, 0.00, 18000.00, 'Chennai', 'Chennai', '2107260003', '1', '1', 'upload_files/candidate_tracker/67662947241_Resume_Pavithra.docx', NULL, '1', '2021-08-27', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skills in lang', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 10:03:55', 50, '2021-08-27 10:46:48', 0, NULL, 1),
(5584, 'mageshkumar m', '5', '9092843261', '9952978489', 'mageshmagi308@gmail.com', '1996-09-11', 24, '2', '2', 'murugan k', 'carpenter', 20000.00, 0, 15000.00, 20000.00, 'thuraipakkam', 'thuraipakkam', '2107260004', '1', '2', 'upload_files/candidate_tracker/6407839595_Macresume.pdf', NULL, '3', '2021-07-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-26 10:13:37', 1, '2021-07-26 10:24:45', 0, NULL, 1),
(5585, 'Karthick', '6', '8056046523', '', 'Ashokkarthik1997@gmail.com', '1997-03-17', 24, '1', '2', 'Velan', 'Relation Executive', 72000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2107260005', '', '1', 'upload_files/candidate_tracker/76680275202_Share \'update resume.docx\'.docx', NULL, '1', '2021-07-26', 0, 'T1152', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal Reference, No communication and no stability in the previous experience. Will not suits for our role.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-26 11:11:02', 1, '2021-07-26 11:20:28', 0, NULL, 1),
(5586, '', '0', '8610159517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107260006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-26 11:23:40', 0, NULL, 0, NULL, 1),
(5587, 'cavin Kumar R', '2', '9940476843', '6369777160', 'cavinkumar780@gmail.com', '1998-09-04', 22, '4', '2', 'T Ramesh', 'Real estate', 16000.00, 1, 0.00, 15000.00, '62/63 ponniyamman koil Street, mowlivakkam,Chennai', '62/63 Ponniyamman Koil Street, Mowlivakkam,Chennai', '2107260007', '', '1', 'upload_files/candidate_tracker/7483211975_My_Resume.docx', NULL, '1', '2021-07-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-26 11:50:13', 50, '2021-07-26 12:52:03', 0, NULL, 1),
(5588, '', '0', '8681940175', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107260008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-26 12:12:10', 0, NULL, 0, NULL, 1),
(5589, 'Premnath V', '27', '8248947138', '9944322357', 'vpremnathv@gmail.com', '1996-11-07', 24, '2', '2', 'Velmurugan R', 'Driver', 20000.00, 1, 120000.00, 132000.00, 'Vellore', 'Vellore', '2107260009', '1', '2', 'upload_files/candidate_tracker/39805016072_Premnath V resume (1) (1) (1) (1).docx', NULL, '1', '2021-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 01:09:27', 1, '2021-07-27 11:59:03', 0, NULL, 1),
(5590, 'Dinesh M', '23', '6382585971', '7598759634', 'dineshtechdeveloper@gmail.com', '1999-04-13', 22, '3', '2', 'R. Muthaiyan', 'Farmer', 40000.00, 1, 0.00, 10000.00, 'Mayiladuthurai', 'Thiruvanmiyur, Chennai 600041.', '2107260010', '', '1', 'upload_files/candidate_tracker/92512609863_dinesh.resume.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Holding an offer with Net Access for a month training and then with 10k Salary and Hike after an year. Much comfortable and the previous exp is in PHP. Will not sustain for a long in our domain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-26 01:32:39', 1, '2021-07-26 01:42:17', 0, NULL, 1),
(5591, 'KALIMUTHU A', '3', '8678994013', '7708888464', 'Kalimuthua1999@gmail.com', '1999-04-02', 22, '2', '2', 'Arumugasamy G', 'Weaver', 10000.00, 1, 0.00, 20000.00, 'Rajapalayam', 'Rajapalayam', '2107260011', '1', '1', 'upload_files/candidate_tracker/66284099695_kalimuthu.pdf', NULL, '1', '2021-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 01:39:37', 1, '2021-07-26 01:48:13', 0, NULL, 1),
(5592, '', '0', '8344051709', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107260012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-26 04:15:59', 0, NULL, 0, NULL, 1),
(5593, 'guganath b', '27', '9080218788', '', 'guhareigns99@gmail.com', '1998-07-25', 23, '2', '2', 'baskaran d', 'housekeeping', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2107260013', '1', '1', 'upload_files/candidate_tracker/32409725299_GUGANATH RESUME.docx', NULL, '1', '2021-08-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 04:38:00', 1, '2021-07-27 11:51:21', 0, NULL, 1),
(5594, 'Vanitha', '27', '6380846812', '9790292695', 'vanithanatarajan77@gmail.com', '1995-09-26', 25, '2', '2', 'Natarajan', 'Private job', 15.00, 2, 0.00, 20.00, 'Thirunelveli', 'Thirunelveli', '2107260014', '1', '1', 'upload_files/candidate_tracker/63378853906_VANITHA (1).pdf', NULL, '2', '2021-07-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 04:45:08', 1, '2021-07-26 04:48:40', 0, NULL, 1),
(5595, 'jones', '27', '7092817556', '9524308146', 'selvakumarjones1991@gmail.com', '1990-05-06', 31, '2', '2', 'joice', 'mother', 10000.00, 4, 12000.00, 18000.00, 'TUTICORIN', 'TUTICORIN', '2107260015', '1', '2', 'upload_files/candidate_tracker/32963133352_Jones Resume...docx', NULL, '3', '2021-07-30', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Career Gap - 8 years,1 yr experience into ASP.Net, high Salary Expectation. Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 06:25:35', 1, '2021-07-27 09:50:00', 0, NULL, 1),
(5596, 'SAHITH AFRIDEEN', '3', '9092622178', '7395963188', 'sahithafrideen2000@gmail.com', '2000-03-09', 21, '2', '2', 'NAINA MOHAMMAD', 'Works in a coffee Shop', 12000.00, 1, 0.00, 13000.00, 'Tondiarpet', 'Tondiarpet', '2107260016', '1', '1', 'upload_files/candidate_tracker/14646256318_Resume.docx', NULL, '1', '2021-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-26 11:30:11', 1, '2021-07-26 11:32:42', 0, NULL, 1),
(5597, 'P.Anusiya', '2', '7639342997', '9344133313', 'Pganusiya@gmail.com', '2000-12-25', 20, '2', '2', 'P.Pandiyan', 'Farmer', 75.00, 1, 0.00, 14.00, 'Kumbakonam', 'Chennai', '2107270001', '1', '1', 'upload_files/candidate_tracker/94360132576_p.Anusiya.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Education yet to complete.2022 Passout Students.No basic knowledge relevant to our technoloiges.Will not sustain for a long.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-27 09:52:56', 1, '2021-07-27 10:19:25', 0, NULL, 1),
(5598, '', '0', '8270259332', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107270002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-27 09:57:20', 0, NULL, 0, NULL, 1),
(5599, 'Yazhini.A', '2', '8925677597', '9344133313', 'arulyazhiniyazhini@gamil.com', '2001-07-04', 20, '2', '2', 'G.arul', 'Farmer', 48000.00, 1, 0.00, 13000.00, 'thiruvarur', 'Chennai', '2107270003', '1', '1', 'upload_files/candidate_tracker/65503532279_resume.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Education Yet To Complete.2022 Passout Students.No Basic Knowledge Relevant To Our Technoloiges.Will Not Sustain For A Long.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-27 09:58:33', 1, '2021-07-27 11:28:27', 0, NULL, 1),
(5600, 'p.nanthinipriya', '2', '6383040092', '9344133313', 'nanthinipriya2001@gmail.com', '2001-08-26', 19, '2', '2', 'azhanivel', 'farmer', 15000.00, 1, 0.00, 15000.00, 'ramanathapuram', 'chennai', '2107270004', '1', '1', 'upload_files/candidate_tracker/41136188364_CV_2021-04-14-040748.pdf', NULL, '1', '2021-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-27 09:59:57', 1, '2021-07-27 11:28:31', 0, NULL, 1),
(5601, 'Gayathri', '4', '9345014804', '9710446043', 'gayathree89priya@gmail.com', '1988-06-03', 33, '2', '1', 'Agoramoorthy', 'Jobless', 100.00, 1, 11000.00, 20000.00, 'Chennai', 'Chennai', '2107270005', '3', '2', 'upload_files/candidate_tracker/3093762098_Gayathree_Resume-1-47.pdf', NULL, '1', '2021-07-27', 1, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50/50 Career Gap Age around 35 yrs, No relevant Experience. Need of Job in a priority, sustainability doubts on this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-27 10:13:05', 60, '2021-07-27 03:14:05', 0, NULL, 1),
(5602, '', '0', '6382040092', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107270006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-27 10:29:54', 0, NULL, 0, NULL, 1),
(5603, 'Parvathakumar c', '6', '9087019819', '9003053995', 'Parvathakumar2002@gmail.com', '2002-11-01', 18, '2', '2', 'charm vav', 'Car driver', 10000.00, 1, 0.00, 15.00, 'chennai', 'Chennai- 64', '2107270007', '2', '1', 'upload_files/candidate_tracker/2670174313_PARVATHA KUMAR Resume.docx', NULL, '2', '2021-07-27', 0, '', '3', '59', '2021-07-29', 180000.00, '', '6', '2021-11-26', '1', 'Selected for Suthagar team with CTC 180000 includes \nPF/ESI/PT Deduction', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-27 10:38:55', 60, '2021-07-28 10:19:52', 0, NULL, 1),
(5604, 'Harish k', '2', '7358758097', '', 'harish013901@gmail.com', '2001-09-13', 19, '2', '2', 'Saraswati k', 'Helper', 200000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2107270008', '1', '1', 'upload_files/candidate_tracker/18996701934_Harish-k.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for opportunities in cyber Security/Information security positions. Will not sustain for a long in our openings. Plan to go with CCNA/CCNP certifications', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-07-27 10:43:42', 1, '2021-07-27 10:52:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5605, 'P.S. Saranya', '2', '9840586325', '8939695550', 'pssaranya2016@gmail.com', '1999-01-22', 22, '2', '2', 'Nil', 'Nil', 50000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2107270009', '1', '1', 'upload_files/candidate_tracker/47068903085_P.S._SARANYA_1999.pdf', NULL, '1', '2021-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to check with family on the Service Agreement, Sustainability doubts on her profile. Will not handle our pressure. No basic knowledge in Javascript. She is much into Python ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-27 10:49:14', 50, '2021-07-28 09:05:58', 0, NULL, 1),
(5606, 'GOHIL M S', '11', '9791168143', '', 'msgohil231296@gmail.com', '1996-12-22', 24, '3', '2', 'Murugan', 'Police', 100000.00, 2, 18000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2107270010', '', '2', 'upload_files/candidate_tracker/39244970392_EEE.pdf', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Currently working as an Assistant Engineer and fresher for the Recruiter Profile. Current Salary PM is 18K and the expectation is more than .Not much comfortable with the service Agreement', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-27 10:53:32', 1, '2021-07-27 11:00:27', 0, NULL, 1),
(5607, 'Muthu. G', '20', '8667762918', '', 'Saidaimuthu01@gmail.com', '1996-03-07', 25, '2', '2', 'Gandhi. R', 'Cooli', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2107270011', '1', '1', 'upload_files/candidate_tracker/17498983495_WORD_16 muthu.docx', NULL, '1', '2021-07-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, no stability in the previous experiences. Will not suits for our Telecaller/sales profile', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-27 10:54:05', 1, '2021-07-27 11:02:27', 0, NULL, 1),
(5608, 'Nishandhini.A', '27', '9488634834', '9042759168', 'nishandhini2132@gmail.com', '1996-02-13', 25, '2', '2', 'Amulraj.A', 'Previous Employer at Accenture Solution Pvt ltd', 40000.00, 1, 0.00, 20000.00, 'No:157/6D, Gandhipuram street, Thiruvallur', 'No:157/6D, Gandhipuram Street, Thiruvallur', '2107270012', '1', '1', 'upload_files/candidate_tracker/98147654171_1627365557370__Nisha_ - Copy - Copy.doc', NULL, '1', '2021-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Client Round Reject\n', '2', '2', '', '1', '1', '', '2', '2021-09-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 11:13:03', 50, '2021-08-27 10:46:13', 0, NULL, 1),
(5609, 'Sargunaraj R', '2', '6374342537', '9344252088', 'sargunaraj26042000@gmail.com', '2000-04-26', 21, '2', '2', 'Raji V', 'Hand-loom weaver', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2107270013', '1', '1', 'upload_files/candidate_tracker/73490398245_Sargunaraj-R-IT.pdf', NULL, '1', '2021-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Focus much for Govt Exams and he is having knowledge much with Python. Will not suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 12:43:52', 1, '2021-07-27 12:50:21', 0, NULL, 1),
(5610, 'VISHWA.T', '2', '7339237060', '', 'vishwabe2021@gmail.com', '2006-07-27', 0, '2', '2', 'K. THIYAGARAJAN', 'Cycle mechanic', 6000.00, 0, 0.00, 12000.00, 'Nagapattinam', 'Nagapattinam', '2107270014', '1', '1', 'upload_files/candidate_tracker/14164760311_VISHWA_RESUME.pdf', NULL, '1', '2021-08-03', 0, '', '3', '59', '2021-08-04', 3500.00, '', '4', '2023-12-22', '2', 'Selected for Internship\n1st month Unpaid Internship, then 3500 Stipend for 5 months which continues with 8k salary includes 3 yrs overall Service Agreement', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 01:28:01', 60, '2021-08-03 10:37:33', 0, NULL, 1),
(5611, 'Waleed khurram', '3', '9360689295', '', 'waleedkhurram45@gmail.com', '1998-12-28', 22, '2', '2', 'Aslam basha', 'Industrial engineer', 10000.00, 4, 0.00, 14000.00, 'Ranipet', 'Ranipet', '2107270015', '1', '1', 'upload_files/candidate_tracker/33291085657_waleed khurram CV updated.pdf', NULL, '2', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Relevant Exp, Working in the Manufacturing Company for 3 months and looking for openings in IT company.No basic knowledge in IT skills,salary Expectation is high,will not sustain for aa long', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 01:28:26', 1, '2021-07-27 01:34:24', 0, NULL, 1),
(5612, 'sudharsan', '2', '7824047898', '', 'susuma1998@gmail.com', '2001-04-23', 20, '2', '2', 'balasubramanian', 'catering', 100000.00, 2, 0.00, 8000000.00, 'alwar nagar nanganallur chennai', 'chennai', '2107270016', '1', '1', 'upload_files/candidate_tracker/46942282690_SUDHARSANB_InternshalaResume.pdf', NULL, '1', '2021-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude Issue, will not fit for our role.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 02:52:49', 1, '2021-07-27 02:58:22', 0, NULL, 1),
(5613, 'Narendra Patha', '5', '8309667728', '', 'Pnarendra4248@gmail.com', '1994-06-09', 27, '2', '2', 'srinivasa', 'farmer', 15000.00, 1, 0.00, 18000.00, 'hyderabad', 'amirpet', '2107270017', '1', '1', 'upload_files/candidate_tracker/30685901026_Narendra-Resume-Testing (1).docx', NULL, '1', '2021-07-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-07-27 03:08:10', 1, '2021-07-27 03:12:22', 0, NULL, 1),
(5614, 'Vasanthavel V', '27', '9442541482', '', 'vasanthavelppk1999@gmail.com', '2006-07-27', 0, '2', '2', 'G vadivel', 'Farmer', 700000.00, 3, 10000.00, 16000.00, 'CUDDALORE', 'Chennai', '2107270018', '1', '2', 'upload_files/candidate_tracker/63663723342_VASANTHAVEL_.pdf', NULL, '1', '2021-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-27 05:15:26', 1, '2021-07-27 05:19:06', 0, NULL, 1),
(5615, '', '0', '6374192572', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107270019', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-27 11:25:50', 0, NULL, 0, NULL, 1),
(5616, '', '0', '9150793134', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107280001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-28 09:43:25', 0, NULL, 0, NULL, 1),
(5617, '', '0', '7338703673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107280002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-28 10:19:10', 0, NULL, 0, NULL, 1),
(5618, 'Ruban bose R', '11', '9080634855', '', 'ruban17062000@gmail.com', '2000-06-17', 21, '4', '2', 'N Russel', 'Appraiser', 10000.00, 2, 0.00, 20000.00, 'Gummidipoondi', 'Gummidipoondi', '2107280003', '', '1', 'upload_files/candidate_tracker/93916993911_Ruban Bose R resume docx.docx', NULL, '1', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average ,Not much comfortable with the service Agreement .Expectation is very high', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 11:06:21', 1, '2021-07-28 11:11:17', 0, NULL, 1),
(5619, 'SAIBALAJI GALI', '5', '9704148445', '7569511182', 'Saibalaji1995rockz@gmail.com', '1995-08-12', 25, '1', '2', 'Sarojini', 'Pentioner', 12000.00, 1, 0.00, 24000.00, 'Bhimavaram', 'Bhimavaram', '2107280004', '', '1', 'upload_files/candidate_tracker/51203717815_sai balaji word resume. (1).pdf', NULL, '2', '2021-07-28', 0, 'P1241', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 11:36:21', 1, '2021-07-28 11:52:02', 0, NULL, 1),
(5620, 'G.monisha', '4', '7358486737', '8925620513', 'monishaganesan1002@gmail.com', '2001-02-10', 20, '3', '2', 'G.Susiela', 'Housewife', 10000.00, 2, 0.00, 10000.00, 'No.13satya moorthy st voc Nagar pammal ch 75', 'No.13 satya moorthy st voc Nagar pammal chennai 75', '2107280005', '', '1', 'upload_files/candidate_tracker/14954192820_Aarthi.doc.docx', NULL, '1', '2021-07-28', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hold On Long Pending ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 11:57:34', 60, '2021-08-14 03:25:34', 0, NULL, 1),
(5621, 'rajaguru', '6', '9940539280', '8610940734', 'Tamar.rajaguru33@gmail.com', '1995-03-03', 26, '3', '2', 'ramar', 'business Development Executive', 175000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2107280006', '', '2', 'upload_files/candidate_tracker/57905995270_Rajaguru resume.pdf', NULL, '1', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Can Schedule Him For The Second Level Of Interview, He Is Having Multiple Other Interview With Companies. If He Come Back Let See / Candidate didnt turn back ', '5', '2', '0', '1', '1', '0', '2', '2021-08-02', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 12:09:29', 1, '2021-07-28 12:57:11', 0, NULL, 1),
(5622, 'T senthil Athithan', '2', '7010468974', '8344402604', 'axarathi1999@gmail.com', '1999-03-23', 22, '2', '2', 'P.Thiruppathi', 'labour', 10000.00, 1, 0.00, 15000.00, 'Mamsapuram-626110', 'Arumbakkam-600106', '2107280007', '1', '1', 'upload_files/candidate_tracker/57910615998_adhi Resume.pdf', NULL, '1', '2021-07-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication,not much open up no basic knowledge ,Will not handle the pressure and sustainability Doubts', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 12:14:46', 1, '2021-07-28 12:27:34', 0, NULL, 1),
(5623, 'kavya', '2', '9941453739', '9841217040', 'kavyavedagiri@gmail.com', '1997-08-27', 23, '2', '2', 'vedagiri', 'business', 75000.00, 1, 0.00, 8000.00, 'chennai', 'chennai', '2107280008', '1', '1', 'upload_files/candidate_tracker/59143606815_kavya Resume NEW (3).pdf', NULL, '1', '2021-07-30', 0, '', '3', '59', '2021-08-19', 96000.00, '', NULL, '2023-11-18', '2', 'Selected for Mern Stack with Stipend initial 3,5k Stipend for 5 month post intern starts with the salary of 8000', '2', '1', '', '1', '1', '', '2', '2021-08-11', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-07-28 12:41:54', 60, '2022-02-25 07:30:31', 0, NULL, 1),
(5624, 'Sanjith gokul G', '3', '9655036500', '9486226162', 'sanjithgokul1999@gmail.com', '1999-10-05', 21, '2', '2', 'Gandhimathinathan.s', 'Former', 15000.00, 1, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2107280009', '1', '1', 'upload_files/candidate_tracker/33842465618_sanjith resume 2.pdf', NULL, '1', '2021-07-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for Python positions', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 01:36:05', 1, '2021-07-28 02:28:46', 0, NULL, 1),
(5625, 'Abinsha YL dolly', '27', '8903796691', '', 'Abinshayldolly@gmail.com', '1996-07-01', 25, '2', '1', 'Yesudhason', 'Mason', 10000.00, 1, 280000.00, 500000.00, 'Kaniyakumari', 'Kaniyakumari', '2107280010', '1', '2', 'upload_files/candidate_tracker/18789117289_Abi.doc', NULL, '2', '2021-07-29', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-07-28 03:00:45', 1, '2021-07-28 03:04:05', 0, NULL, 1),
(5626, 'Sabeer ahamed', '22', '9080594135', '9566999255', 'digsabeer@gmail.com', '1997-04-13', 24, '3', '2', 'Fathima', 'Accountant', 16000.00, 1, 26000.00, 15000.00, 'Marthandam, kanyakumari district', 'Tambaram', '2107280011', '', '2', 'upload_files/candidate_tracker/49658966498_sabeer dig resume.pdf', NULL, '1', '2021-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Very Slow.No sustainability in his previous exp. Left previous job due to pressure. Salary Exp is very high', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-28 03:04:19', 1, '2021-07-28 03:10:17', 0, NULL, 1),
(5627, 'Balamurugan S', '27', '9551959991', '9655932528', 'sbalamurugandeee@gmail.com', '1991-06-15', 30, '2', '1', 'Lakshmi S', 'Taking care of home', 20000.00, 2, 20000.00, 25000.00, 'Minnal', 'Pattabiram', '2107280012', '1', '2', 'upload_files/candidate_tracker/70472734991_Resume stores.docx', NULL, '1', '2021-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 03:35:34', 1, '2021-07-28 03:39:16', 0, NULL, 1),
(5628, 'kalai selvi s', '27', '9578652724', '9677049816', 'kalaiselvi1208@gmial.com', '1992-08-12', 28, '2', '1', 'selvaraj v s', 'it', 35000.00, 1, 25000.00, 30000.00, 'chennai', 'chennai', '2107280013', '1', '2', 'upload_files/candidate_tracker/62934535531_Resume new.docx', NULL, '1', '2021-08-03', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 04:39:00', 1, '2021-07-28 04:46:49', 0, NULL, 1),
(5629, 'Ragul E', '2', '9688922525', '', 'Ragul.e27@gmail.com', '1994-12-27', 26, '2', '2', 'Elaveni PSV', 'TNSTC driver', 15000.00, 1, 0.00, 15000.00, 'Theni', 'Chennai', '2107280014', '1', '1', 'upload_files/candidate_tracker/86807273895_Resume_Ragul.docx', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open with TxxampC,no basic knowledge in IT Skills will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-28 06:23:06', 1, '2021-08-02 06:10:17', 0, NULL, 1),
(5630, 'Santhosh V N', '11', '9941285398', '8610459268', 'iamvns1998@gmail.com', '1999-04-12', 22, '3', '2', 'B. Nithyanandan', 'Small Business', 30000.00, 1, 10000.00, 25000.00, 'Chennai', 'Chenai', '2107290001', '', '2', 'upload_files/candidate_tracker/41131608739_SanthoshVN RSB1901024-converted(3).pdf', NULL, '1', '2021-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, high CTC Expectation, not much ok with Service Agreement.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-29 10:25:57', 1, '2021-07-29 10:31:57', 0, NULL, 1),
(5631, '', '0', '8838283612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 11:14:04', 0, NULL, 0, NULL, 1),
(5632, 'peter. k y', '11', '8124135436', '', 'peterky23@gmail.com', '1999-02-11', 22, '3', '2', 'yohan k', 'daily wages', 25000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2107290003', '', '1', 'upload_files/candidate_tracker/33086667202_Peter K Y Resume.HR..pdf', NULL, '1', '2021-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Salary Expectation is high. Not much comfortable with terms xxamp conditions', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-29 11:59:41', 1, '2021-07-29 12:18:46', 0, NULL, 1),
(5633, 'Banupriya.G', '27', '6381268112', '8098473045', 'banupriya.gg.98@gmail.com', '1998-11-24', 22, '2', '2', 'Gunasekaran.P', 'Business', 20000.00, 2, 200000.00, 280000.00, 'Virudhunagar dist', 'Chennai (ambattur)', '2107290004', '1', '2', 'upload_files/candidate_tracker/8548497098_Resume Banupriya G.pdf', NULL, '2', '2021-07-31', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Winform Exp she is fully into Web application.* month Exp and her salary Exp is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 12:08:15', 1, '2021-07-29 12:14:18', 0, NULL, 1),
(5634, 's abdul wajeeth', '27', '7708756191', '', 'wajeeth08@gmail.com', '1997-06-19', 24, '2', '2', 'a seeni pakkeer', 'business', 20000.00, 4, 0.00, 20000.00, 'tirupattur', 'chennai', '2107290005', '1', '1', 'upload_files/candidate_tracker/13357934819_Abdul wajeeth Resume.pdf', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant experience in DotNet, have work ep in Digital Marketing but dont have much knowledge on that .Will not suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 12:16:58', 1, '2021-07-30 04:19:53', 0, NULL, 1),
(5635, 'Velmurugan G', '27', '7299628796', '8838640309', 'Velmurugan.hb05@gmail.com', '1994-07-05', 27, '2', '2', 'Ganeshan D', 'Own business', 30000.00, 1, 0.00, 15000.00, '6 subramani street, jafferkhanpet, Ch-83', '6 Subramani Street, Jafferkhanpet, Ch-83', '2107290006', '1', '1', 'upload_files/candidate_tracker/86997390963_Velmurugan G.pdf', NULL, '3', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in .Net Profile few months back attended interview for RM and got rejected', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 12:45:44', 1, '2021-07-29 12:57:03', 0, NULL, 1),
(5636, '', '0', '9043280284', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 12:46:33', 0, NULL, 0, NULL, 1),
(5637, '', '0', '9787782896', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 01:41:38', 0, NULL, 0, NULL, 1),
(5638, '', '0', '7092698923', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 03:01:18', 0, NULL, 0, NULL, 1),
(5639, '', '0', '7904596349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 03:38:13', 0, NULL, 0, NULL, 1),
(5640, '', '0', '7094283336', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107290011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-29 04:16:12', 0, NULL, 0, NULL, 1),
(5641, 'Suvedha K', '2', '9342920641', '7094283336', 'suvedhak0805@gmail.com', '1999-05-08', 22, '2', '2', 'A.Kumar', 'Daily wages', 15000.00, 1, 0.00, 18000.00, 'Villupuram', 'Villupuram', '2107290012', '1', '1', 'upload_files/candidate_tracker/10305871456_Suvedha.K - Resume.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', ' Not Much Clear With TxxampC,But Showing Interest On The Profile, Udhay Will Interview And Let Us Decide / But she didnt turn back on the next day for the interview', '2', '1', '0', '1', '1', '0', '2', '2021-08-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 04:28:23', 1, '2021-07-29 04:31:03', 0, NULL, 1),
(5642, 'Vignesh S', '27', '9345034205', '9597683177', 'smsvicky7@gmail.com', '1997-04-12', 24, '2', '2', 'Selvamunusamy', 'Business', 10000.00, 1, 18000.00, 25000.00, 'Chennai', 'Chennai', '2107290013', '1', '2', 'upload_files/candidate_tracker/18866613284_Resume_vickydocx_Life_(1)-converted (1) (1).pdf', NULL, '1', '2021-07-31', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-29 06:04:28', 1, '2021-07-31 08:54:45', 0, NULL, 1),
(5643, 'Swathi', '14', '7397413529', '9710996459', 'Swathi26999@gmail.com', '1999-09-26', 21, '3', '2', 'Venugopal', 'Verification officer', 8000.00, 1, 0.00, 20000.00, '86/14 R block kotturpuram ch 85', '86/14 R block kotturpuram ch 85', '2107300001', '', '1', 'upload_files/candidate_tracker/97992395830_New swat.pdf', NULL, '1', '2021-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-30 10:54:40', 1, '2021-07-30 10:57:27', 0, NULL, 1),
(5644, 'Krishna P.S', '11', '6380614372', '', 'Krishnasanthanam1999@gmail.com', '1999-07-11', 22, '3', '2', 'P.S.Santhanam', 'Car Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2107300002', '', '1', 'upload_files/candidate_tracker/22147168579_KRISHNA.P.S RESUME NEW.pdf', NULL, '1', '2021-07-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication, will not sustain and handle pressure', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-30 02:27:21', 1, '2021-07-30 02:31:12', 0, NULL, 1),
(5645, '', '0', '7401546493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107300003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-30 09:42:26', 0, NULL, 0, NULL, 1),
(5646, '', '0', '9361739532', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107310001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-31 10:35:22', 0, NULL, 0, NULL, 1),
(5647, 'Uwen Shankar', '11', '9789852335', '', 'uwenshankar14@gmail.com', '1997-08-14', 23, '3', '2', 'Nageshwar Rao', 'Business', 400000.00, 1, 0.00, 20000.00, 'NoG2,Shanthi Appt\' Abiramipuram,Chennai', 'NoG2,shanthi appt\' abiramipuram,Chennai', '2107310002', '', '1', 'upload_files/candidate_tracker/61408784268_Uwen Shankar - 2020 - Resume (2).docx', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication okand salary exp in high and seems not comfort with TxxampC', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 10:43:41', 1, '2021-07-31 10:51:59', 0, NULL, 1),
(5648, 'Vijay.p', '6', '9344847178', '6384366590', 'Vijayjai50@gmail.com', '1996-05-19', 25, '1', '2', 'Radha.p', 'Teacher', 15000.00, 2, 14000.00, 18000.00, 'Needamangalam ,thiruvarur', 'Chrompate', '2107310003', '', '2', 'upload_files/candidate_tracker/45985442923_vijay.pdf', NULL, '1', '2021-07-31', 0, 'Jobs', '3', '59', '2021-08-02', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Kannan Team internal team reference with cTC 168000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 10:45:45', 60, '2021-08-04 03:38:29', 0, NULL, 1),
(5649, 'Avika', '4', '9786585993', '', 'Avikakumar593@gmail.com', '2000-03-11', 21, '3', '2', 'Kumar', 'Business', 12000.00, 2, 0.00, 18000.00, 'Ashok nagar', 'Chennai', '2107310004', '', '1', 'upload_files/candidate_tracker/28973842073_New Doc 2021-07-31 11.21.12_1.pdf', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Telesales, looking only for 2d designing jobs. Will not handle the pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 11:07:54', 1, '2021-07-31 11:31:31', 0, NULL, 1),
(5650, 'Sujith raj s', '11', '8056103209', '', 'Sujithraj2111@gmail.com', '2006-07-31', 0, '1', '2', 'Sam raj n', 'Mason', 18000.00, 2, 1.00, 20000.00, 'Ambattur', 'Ambattur', '2107310005', '', '2', 'upload_files/candidate_tracker/79543048797_Sujith resume - HR Executive - MSW HR cha.docx', NULL, '3', '2021-07-31', 1, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Notice period 30 days,1 yr Exp and Salary expectation is High. Sustainability doubts', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 11:38:12', 1, '2021-07-31 11:43:59', 0, NULL, 1),
(5651, 'Akshay Kumar VP', '11', '7358227672', '8610874315', 'akshayaxe365@gmail.com', '1996-03-24', 25, '3', '2', 'V Prabaharan (Father)', 'Self-employed', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2107310006', '', '2', 'upload_files/candidate_tracker/23111170011_resume_akshay kumar vp.pdf', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Having his own business-GYM products manufacturing. Looking for Recruiter position with the high pay. Will not sustain for a long', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 12:04:34', 1, '2021-07-31 12:10:07', 0, NULL, 1),
(5652, 'Karthik.p', '6', '7338964380', '6380614317', 'Karthiksmart180@gmail.com', '2000-11-30', 20, '3', '2', 'Palani', 'Coolie', 120000.00, 1, 0.00, 20000.00, 'Oldpalavaram', 'Old Palavarm', '2107310007', '', '1', 'upload_files/candidate_tracker/66173180792_Karhik Resume.docx', NULL, '1', '2021-07-31', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagr TEam with CTC 156000 includes PF/ESI/PT deductions', '5', '1', '1', '4', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-07-31 12:17:56', 60, '2021-08-04 03:40:28', 0, NULL, 1),
(5653, 'NAGARATHINAM', '6', '8760317916', '', 'rathinambca35@gmail.com', '1998-06-21', 23, '4', '2', 'BASKAR', 'Labour', 12000.00, 1, 21000.00, 23000.00, 'Cuddalore', 'Nandhanam', '2107310008', '', '2', 'upload_files/candidate_tracker/86998740458_ NAGARATHINAM-1 (1).pdf', NULL, '1', '2021-08-02', 0, '', '3', '59', '2021-08-05', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team with CTC 216000 includes PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 12:37:52', 60, '2021-08-04 03:32:57', 0, NULL, 1),
(5654, 'Sarika', '4', '8667276991', '', 'sarikasiththarthan@gmail.com', '2001-05-26', 20, '2', '2', 'Siththarthan', 'Sales mannager', 100000.00, 0, 0.00, 12000.00, 'Chennai pattalam', 'Chennai pattalam', '2107310009', '1', '1', 'upload_files/candidate_tracker/9299214876_Document.pdf', NULL, '1', '2021-07-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, left without attending the second level interview', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-31 12:46:42', 1, '2021-07-31 12:59:23', 0, NULL, 1),
(5655, 'Narendar.T', '6', '8870193446', '', 'Narenjasper@gmail.com', '1999-02-04', 22, '3', '2', 'Thiyagarajan', 'Labour', 14000.00, 1, 19000.00, 22000.00, 'Cuddalore', 'Nandhanam', '2107310010', '', '2', 'upload_files/candidate_tracker/34708519919_Naren-resume.pdf', NULL, '1', '2021-08-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-07-31 12:46:56', 1, '2021-07-31 01:01:08', 0, NULL, 1),
(5656, 'Priyanka.s', '4', '6369198422', '', 'vijayalakshmi208@gmail.com', '2001-05-13', 20, '2', '2', 'Vijayalakshmi.k', 'Cooly', 20000.00, 1, 0.00, 12000.00, 'Chennai Tondiarpet', 'Chennai Tondiarpet', '2107310011', '1', '1', 'upload_files/candidate_tracker/44230367726_CV_2021-07-31-105337.pdf', NULL, '1', '2021-07-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-07-31 12:48:08', 1, '2021-07-31 01:05:01', 0, NULL, 1),
(5657, '', '0', '9840910749', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2107310012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-07-31 01:05:49', 0, NULL, 0, NULL, 1),
(5658, 'Kanmani Akshaya', '15', '9123518798', '9962629024', 'kanmaniakshaya@gmail.com', '1998-12-24', 22, '2', '2', 'Kannan', 'Business', 100000.00, 2, 0.00, 20000.00, 'Chennai-75', 'Chennai-75', '2107310013', '1', '1', 'upload_files/candidate_tracker/19080929466_K.Akshaya updated resume.pdf', NULL, '2', '2021-08-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-31 01:07:17', 1, '2021-08-02 11:26:12', 0, NULL, 1),
(5659, 'gayathri', '2', '6379534330', '', 'gayathri.babu23@gmail.com', '1992-07-23', 29, '2', '1', 'suresh', 'hr', 500000.00, 2, 0.00, 400000.00, 'chennai', 'chennai', '2107310014', '1', '1', 'upload_files/candidate_tracker/54952387878_Gayathri V-React.doc', NULL, '2', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Started her career in recruitment and moved to the IT skills internally from past 3 months. Salary Expectation is very high', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-31 06:05:26', 1, '2021-07-31 06:10:10', 0, NULL, 1),
(5660, 'V.srimathi', '22', '6383840802', '9994529544', 'srimathinivi@gmail.com', '1998-04-15', 23, '2', '2', 'Vijayakumar', 'Electrician', 250000.00, 1, 15000.00, 20000.00, 'Namakkal', 'Chennai', '2107310015', '1', '2', 'upload_files/candidate_tracker/30606211347_srimathi-converted.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnt trun back with the task provided', '2', '2', '0', '1', '1', '0', '2', '2021-08-05', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-31 08:00:42', 1, '2021-08-01 09:57:21', 0, NULL, 1),
(5661, 'raja', '2', '8681823422', '8825534922', 'kingraja673@gmail.com', '1996-04-10', 25, '2', '2', 'thangeswari', 'mern', 12000.00, 1, 0.00, 120000.00, 'Chidambaram', 'Chidambaram', '2107310016', '1', '1', 'upload_files/candidate_tracker/57845311739_Raja_Resume.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not open with the terms xxamp conditions and the salary expectation is very high, having basic knowledge in Node.JS', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-07-31 09:54:13', 60, '2021-08-06 11:08:31', 0, NULL, 1),
(5662, '', '0', '9150103198', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108020001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-02 10:30:11', 0, NULL, 0, NULL, 1),
(5663, 'Suganthi.s', '27', '6369207910', '7395948789', 'suganthipandi297@gmail.com', '1997-02-02', 24, '2', '2', 'Soundarapandi.s', 'Security', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chengalpattu', '2108020002', '1', '1', 'upload_files/candidate_tracker/93861147693_PHPResumes.docx', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Holding other offers and looking for high pay\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 10:38:15', 1, '2021-08-02 10:52:05', 0, NULL, 1),
(5664, 'Manikandan V', '14', '9042927822', '8825561884', 'kandanm668@gmail.com', '1998-03-28', 23, '3', '2', 'Vijayakumar', 'Welder', 10000.00, 1, 0.00, 13000.00, 'Pudukkottai', 'Chennai', '2108020003', '', '1', 'upload_files/candidate_tracker/88399046816_Manikandan V resume 1.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for testing positions,no relevant for our roles', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 11:10:30', 1, '2021-08-02 11:13:57', 0, NULL, 1),
(5665, 'Guru prasath A', '14', '8531969596', '9042927822', 'prasathguru5364@gmail.com', '1999-08-12', 21, '3', '2', 'Arumugam', 'Driver', 10000.00, 1, 0.00, 13000.00, 'Pudukkottai', 'Chennai', '2108020004', '', '1', 'upload_files/candidate_tracker/54555075483_GURU RESUME2i.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java/Python openings.Not open for our technology', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 11:11:21', 1, '2021-08-02 12:16:00', 0, NULL, 1),
(5666, 'S.Abisindhuja', '4', '7305607349', '9150103198', 'abisindhuja2030@gmail.com', '1998-10-26', 22, '2', '2', 'a.muthulekshumi', 'homecard', 12000.00, 1, 10000.00, 12000.00, 'Nagercoil', 'Pallavaram', '2108020005', '1', '2', 'upload_files/candidate_tracker/11805336234_TIFFANY RESUME..docx', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,but updated her resume with Fake Exp,Will not suitable for our sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-08-02 11:28:30', 1, '2021-08-02 12:02:37', 0, NULL, 1),
(5667, 'Dharani D', '4', '9585155779', '', 'dharani251998@gmail.com', '1998-04-25', 23, '1', '2', 'A.Jaralin', 'Housewife', 12000.00, 0, 0.00, 12000.00, 'Nagercoil', 'Virugambakkam', '2108020006', '', '2', 'upload_files/candidate_tracker/69490830703_RESUMEorg.pdf', NULL, '1', '2021-08-02', 10, 'P1039', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Exp, fresher, sustainability doubts.Will not fit for our sales profile', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 11:37:14', 1, '2021-08-02 11:42:46', 0, NULL, 1),
(5668, 'Sneha', '27', '6379652378', '8610300533', 'cksneha12@gmail.com', '1999-06-07', 22, '2', '1', 'Chinnayan', 'Driver', 35000.00, 2, 0.00, 17000.00, '18/21 vivek nagar, kolathur, chennai-99', '18/21 Vivek Nagar, Kolathur, Chennai-99', '2108020007', '1', '1', 'upload_files/candidate_tracker/36875847498_Resume.pdf', NULL, '1', '2021-08-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'skill set doesnt match', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 11:38:18', 1, '2021-08-02 11:43:15', 0, NULL, 1),
(5669, 'Bhavani', '27', '8925653997', '8428684129', 'S.G.Bhava75@gmail.com', '1998-05-07', 23, '2', '2', 'Srinivasan', 'Driver', 20000.00, 1, 0.00, 15000.00, 'West Tambaram', 'West Tambaram', '2108020008', '1', '1', 'upload_files/candidate_tracker/20047260535_0_Resume_Bhavani.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp in Dot net WinForms, Exp into BPO Health care domain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 11:40:35', 1, '2021-08-03 05:43:02', 0, NULL, 1),
(5670, 'S.vinothini', '4', '7448374749', '7812815982', 'Vinothiniselvaraj3131999@gmali.com', '1999-03-31', 22, '1', '2', 'Selvaraj', 'Carbandar', 20000.00, 2, 10000.00, 15000.00, 'No395 sa colony 6th Street sharmanagar', 'No395 Sa Colony 6th Street sharmanagar', '2108020009', '', '2', 'upload_files/candidate_tracker/97336748907_Aarthi.doc.docx', NULL, '1', '2021-08-02', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Voice process, focusing only for the non voice openings', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:01:45', 1, '2021-08-02 12:40:53', 0, NULL, 1),
(5671, 'Anitha.m', '20', '7871772743', '', 'anithamunusamy2199@gmail.com', '1999-01-02', 22, '1', '2', 'Munusamy.R', 'security officer', 10000.00, 1, 0.00, 15000.00, 'padur', 'padur', '2108020010', '', '1', 'upload_files/candidate_tracker/43240950922_Anitha RESUME.docx.pdf', NULL, '1', '2021-08-02', 0, '55558', '4', '33', NULL, 0.00, '', '0', NULL, '2', 'check for CRM, internal team reference but the distance -58km up and down', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:19:50', 1, '2021-08-02 12:27:13', 0, NULL, 1),
(5672, 'S.karthick Raja', '6', '6374770147', '9710562023', 'Cskt3597@gmail.com', '1995-05-11', 26, '2', '2', 'Sundar', 'Cooli', 10000.00, 4, 15000.00, 17.00, '2/8 Vanniyer mettu Street,iyyappan Thangal Ch-122', 'Chennai (iyyappan Thangal)', '2108020011', '1', '2', 'upload_files/candidate_tracker/17331095807_KARTHIKRAJA REUME-1.docx', NULL, '1', '2021-08-02', 0, '', '3', '59', '2021-08-05', 204000.00, '', '3', '2021-08-13', '1', 'Selected for Kannan Team with CTC 204000 includes PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-02 12:20:45', 60, '2021-08-04 03:28:31', 0, NULL, 1),
(5673, 'K.Raja', '4', '8667521065', '9790770086', 'alexander.raja95@gmail.com', '1995-08-15', 25, '1', '2', 'Uma.k', 'B.A. Tamil', 30000.00, 3, 13000.00, 15000.00, 'Arumbakkam', 'Pandy Bazer', '2108020012', '', '2', 'upload_files/candidate_tracker/45000305557_RAJA Resume (2).pdf', NULL, '1', '2021-08-02', 0, 'No', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has around 5yr exp, no product knowledge.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:21:09', 1, '2021-08-02 12:32:45', 0, NULL, 1),
(5674, 'Ananthi.R', '4', '7358780047', '7448501768', 'Ammuananthi16@gmail.com', '1998-05-15', 23, '1', '2', 'Raju', 'Eletrition', 20000.00, 1, 0.00, 15000.00, 'Thiruporur', 'Thiruporur', '2108020013', '', '1', 'upload_files/candidate_tracker/85396977301_Ananthi.docx', NULL, '1', '2021-08-02', 0, '55558', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location constraint - Up and down 76 kms, long back scheduled interview and not attende.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:23:42', 1, '2021-08-02 12:29:59', 0, NULL, 1),
(5675, '', '0', '7401217612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108020014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-02 12:27:39', 0, NULL, 0, NULL, 1),
(5676, 'P.Pavithra', '4', '9677134911', '6383977902', 'p.pavithrapavithra@gmail.com', '2000-11-28', 20, '3', '2', 'N.Perumal', 'Coolie', 6500.00, 1, 0.00, 12000.00, 'tondiarpet', 'tondiarpet', '2108020015', '', '1', 'upload_files/candidate_tracker/44312352292_P.PAVITHRA.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking only for non voice process', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:52:56', 1, '2021-08-02 01:31:28', 0, NULL, 1),
(5677, 'M..Saranya', '4', '8270989938', '9962169903', 'KKanisaranya@gmail.com', '1998-07-15', 23, '1', '2', 'R Murugan', 'Teacher', 6500.00, 1, 0.00, 12000.00, 'I.O.C Bus Stop tondiarpet', 'I.O.C bus stop tondiarpet', '2108020016', '', '1', 'upload_files/candidate_tracker/54206822501_Aarthi.doc.docx', NULL, '1', '2021-08-02', 0, 'Jobs', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 12:54:24', 1, '2021-08-02 01:50:08', 0, NULL, 1),
(5678, '', '0', '6374850863', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108020017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-02 01:00:09', 0, NULL, 0, NULL, 1),
(5679, 'V.sunil', '4', '8428074977', '8946036707', 'sunilhaddy583@gmail.com', '2000-04-14', 21, '3', '2', 'R.vijayan', 'Fisherman', 20000.00, 3, 0.00, 15000.00, 'No12 2nd Street ennore kuppam ennore Chennai-57', 'No12 2nd Street ennore kuppam ennore Chennai-57', '2108020018', '', '1', 'upload_files/candidate_tracker/34901196695_Resume SUNIL.pdf', NULL, '1', '2021-08-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very low voice and not bold', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 01:00:47', 1, '2021-08-02 01:13:45', 0, NULL, 1),
(5680, 'Faisal ahamed J', '2', '8098924514', '', 'faisalahamed5002@gmail.com', '1998-02-05', 23, '2', '2', 'Jahir Hussain S', 'Farmer', 20000.00, 2, 0.00, 10000.00, 'Pattukkottai', 'Chennai', '2108020019', '1', '1', 'upload_files/candidate_tracker/21527836808_resume_faisal (3).pdf', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Career Gap no individual learning,thinking a lot on the TxxampC seems not comfortable .Much comfortable with Python', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 01:01:38', 1, '2021-08-02 01:10:21', 0, NULL, 1),
(5681, 'Prakash', '6', '6379744136', '8122794541', 'Prakashavi139@gmail.com', '1997-11-13', 23, '2', '2', 'Parvathi', 'Teacher', 10000.00, 1, 0.00, 15000.00, 'Enmore', 'Ennore', '2108020020', '1', '1', 'upload_files/candidate_tracker/59151138083_PRAKASH RESUME.pdf', NULL, '1', '2021-08-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Suthagar rejected the profile.by mistake he scheduled the candidate for next level with me', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-02 01:04:06', 8, '2021-08-02 05:01:06', 0, NULL, 1),
(5682, 'Prakash', '4', '6329744136', '8122794541', 'Prakashavi139@gmail.com', '1997-11-13', 23, '3', '2', 'Parvathi', 'Teacher', 10000.00, 1, 0.00, 15000.00, 'Ennore', 'Ennore', '2108020021', '', '1', 'upload_files/candidate_tracker/51221980410_PRAKASH RESUME.pdf', NULL, '1', '2021-08-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 01:25:06', 1, '2021-08-02 01:27:41', 0, NULL, 1),
(5683, 'J.Angelus Cruz', '27', '9486577983', '8667429321', 'angelusmelchi91@gmail.com', '1999-03-30', 22, '2', '2', 'L.Johnson', 'Business', 30000.00, 2, 0.00, 20.00, 'Chengalpattu', 'Chengalpattu', '2108020022', '1', '1', 'upload_files/candidate_tracker/75752421363_melky resume.pdf', NULL, '1', '2021-08-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 01:35:49', 1, '2021-08-02 01:48:50', 0, NULL, 1),
(5684, 'Sukumar', '6', '9524264978', '', 'sugumar9524@gmail.com', '1998-12-30', 22, '3', '2', 'Jothivel', 'Driver', 12000.00, 1, 21000.00, 23000.00, 'Cuddalore', 'Chennai', '2108020023', '', '2', 'upload_files/candidate_tracker/40085868103_sukumar resume.docx', NULL, '1', '2021-08-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-02 02:38:40', 1, '2021-08-02 02:43:19', 0, NULL, 1),
(5685, 'Mohammad jahubar A', '27', '9962170763', '7299685995', 'jahubar5995@gmail.com', '1997-12-10', 23, '2', '2', 'M.Assanar', 'Salesman', 15000.00, 2, 0.00, 15000.00, 'Thirumazhisai', 'Thirumazhisai', '2108020024', '1', '1', 'upload_files/candidate_tracker/1111124346_Resume10.pdf', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Client Interview Rejected', '2', '1', '0', '1', '1', '0', '2', '2021-08-09', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 02:51:12', 1, '2021-08-02 03:02:42', 0, NULL, 1),
(5686, 'syed mohammad muzzammil', '2', '9952011139', '9940042667', 'muzzammilcareer21@gmail.com', '2000-09-11', 20, '2', '2', 'syed abdul wajid', 'n/a', 60000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2108020025', '1', '1', 'upload_files/candidate_tracker/40088107662_MuzzammilResume.pdf', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,having knowledge in HTML CSS Javascript but not comfortable with TxxampC.Presuure handling xxamp Sustainability doubt', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 03:32:51', 1, '2021-08-02 03:49:32', 0, NULL, 1),
(5687, 'Shanthi V', '2', '9994143140', '9080434514', 'shanthiece19@gmail.com', '2000-08-19', 20, '2', '2', 'Veerasamy M', 'Farmer', 75000.00, 1, 0.00, 250000.00, '122, sivagiri,erode', 'Thuraipakkam', '2108020026', '1', '1', 'upload_files/candidate_tracker/48806993672_Shanthi_resume.pdf', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '2 months Intern Exp .she holds an offer with net access for 15K salary and she expects for the more.Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 03:33:35', 1, '2021-08-03 11:55:29', 0, NULL, 1),
(5688, 'J Angelus cruz', '27', '8667429321', '9486577983', 'angelusmelchi91@gmail.com', '1999-03-30', 22, '2', '2', 'L.Johnson', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2108020027', '1', '1', 'upload_files/candidate_tracker/92066596304_melky resume.pdf', NULL, '1', '2021-08-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 04:42:38', 1, '2021-08-02 04:45:04', 0, NULL, 1),
(5689, 'Mohamed musthak ameer ali', '27', '9791875485', '', 'Mustaqhasee@gmail.com', '1997-07-06', 24, '2', '2', 'Ameer ali', 'Private job', 5000.00, 2, 0.00, 150000.00, 'Tanjavur', 'Tanjore', '2108020028', '1', '1', 'upload_files/candidate_tracker/41772189422_musthak resume.pdf', NULL, '2', '2021-08-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 05:31:21', 1, '2021-08-02 05:34:15', 0, NULL, 1),
(5690, 'Dhilipkumar.s', '27', '8344034410', '', 'dhilikumarsdhilipkumars@gmail.com', '2002-03-14', 19, '2', '2', 'R.saravanan', 'Student', 15000.00, 1, 0.00, 18000.00, 'Trichy', 'Trichy', '2108020029', '1', '1', 'upload_files/candidate_tracker/91200715959_DHILIP RESUME 3.pdf', NULL, '3', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Client Round Rejected', '2', '2', '0', '1', '1', '0', '2', '2021-08-12', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 06:10:58', 1, '2021-08-03 03:53:31', 0, NULL, 1),
(5691, 'yamini r', '4', '6380593346', '', 'yaminiramadass@gmail.com', '2000-08-09', 20, '2', '1', 'ramadass', 'auto driver', 12000.00, 2, 0.00, 10000.00, 'arakkonam', 'arakkonam', '2108020030', '1', '1', 'upload_files/candidate_tracker/42059945952_YAMINI word doct11.pdf', NULL, '1', '2021-08-06', 0, '', '3', '59', '2021-08-10', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location with Cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-02 07:05:13', 60, '2021-08-10 06:41:07', 0, NULL, 1),
(5692, 'Santhosh kumar', '2', '9655227366', '', 'Santhoshkumarbabu88@gmail.com', '1995-01-21', 26, '2', '2', 'Arumugasamy', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2108020031', '1', '1', 'upload_files/candidate_tracker/16589175015_SANTHOSH KUMAR.A_BE.pdf', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC,CCNA certified candidate,no basic in our skills will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 07:27:00', 1, '2021-08-02 07:40:09', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5693, 'indra j', '4', '9344001197', '', 'indrajayachandran11@gmail.com', '2000-03-11', 21, '2', '2', 'jayanchandran', 'tailore', 30000.00, 2, 0.00, 12000.00, 'thiruvalangadu', 'Thiruvalangadu', '2108020032', '1', '1', 'upload_files/candidate_tracker/10949429643_INDRA.J Resume..pdf', NULL, '1', '2021-08-06', 0, '', '3', '59', '2021-08-02', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-02 08:47:31', 60, '2021-08-10 06:42:44', 0, NULL, 1),
(5694, 'Sivaprakash.m', '27', '9688705970', '', 'Sivaprakash8091@gmail.com', '2000-07-20', 21, '2', '2', 'Murugan.m', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2108020033', '1', '1', 'upload_files/candidate_tracker/58658153522_RESUME OF SIVAPRAKASH.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, not much strong into technical, attended 2nd level with the client and got rejected', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-02 09:37:07', 1, '2021-08-05 09:00:32', 0, NULL, 1),
(5695, 'Mohd Sayeed', '5', '7997616938', '', 'mohdsayeed1328@gmail.com', '1996-09-23', 24, '2', '2', 'mohammed sardar', 'working', 20000.00, 2, 24000.00, 20000.00, 'hyderabad', 'akthapur', '2108030001', '1', '2', 'upload_files/candidate_tracker/22256735363_sayeed resume july33.pdf', NULL, '2', '2021-08-04', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-03 10:48:27', 1, '2021-08-03 10:51:35', 0, NULL, 1),
(5696, 'S.prabhu', '6', '8608290338', '8122833724', 'prabhudass8608@gmail.com', '1999-12-16', 21, '2', '2', 'Seeralan', 'Nil', 8000.00, 1, 0.00, 14000.00, 'Tambaram', 'Tambaram', '2108030002', '1', '1', 'upload_files/candidate_tracker/98717447724_Prabju_resume.docx', NULL, '1', '2021-08-03', 0, '', '3', '59', '2021-08-05', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Suthagar team includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 10:54:44', 60, '2021-08-03 06:43:11', 0, NULL, 1),
(5697, 'Sathish kumar', '6', '8678978758', '9514049589', 'Sathishkumarv13003@gmail.com', '2006-08-03', 0, '1', '2', 'Vijayan', 'Nill', 100000.00, 2, 14000.00, 20000.00, 'No 311,emmar apartment, tondirepet, chennai', 'No 311,emmar, apartments, tondirepet, chennai', '2108030003', '', '2', 'upload_files/candidate_tracker/53733093780_Sathish.docx', NULL, '1', '2021-08-03', 3, 'Jobs', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed with the candidate and asked him to share the payslio ,but no reply and not responding to the calls too.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-03 10:56:18', 60, '2021-08-03 06:35:41', 0, NULL, 1),
(5698, 'Shabeer', '6', '7010947964', '9566199442', 'Shabeerahamed662@gmail.com', '1994-09-21', 26, '2', '2', 'Mumthaj', 'Nil', 35000.00, 2, 16000.00, 17000.00, 'Mangadu ch122', 'Mangadu ch122', '2108030004', '1', '2', 'upload_files/candidate_tracker/2481408135_SHABEER_2021.NEW.docx', NULL, '3', '2021-08-03', 2, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'Expct highe salary but not fit for that.. and also speaking not fluent', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 11:03:24', 1, '2021-08-03 11:12:43', 0, NULL, 1),
(5699, 'Manoj Kiran', '5', '7799626266', '', 'manojkiran7991@gmail.com', '1996-04-28', 25, '2', '2', 'sambasivarao', 'farmer', 30000.00, 1, 15000.00, 18000.00, 'hyderabad', 'komapally', '2108030005', '1', '2', 'upload_files/candidate_tracker/55998639299_MANOJ KIRAN cv.pdf', NULL, '2', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Responses from the candidate for a long and we dropped', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-03 11:10:45', 1, '2021-08-03 11:13:11', 0, NULL, 1),
(5700, 'Mohana Priya. P', '27', '6382733076', '', 'priyasurvesh7944@gmail.com', '2000-07-07', 21, '2', '2', 'G. Padmanaban', 'Labourer', 7000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2108030006', '1', '1', 'upload_files/candidate_tracker/69047258664_Resume.mohanapriyanew1.doc', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no basic knowledge in Dotnet, fresher profile having knowledge in relates to c,C++.Will not suits for client requirement', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 11:11:00', 1, '2021-08-03 11:21:03', 0, NULL, 1),
(5701, 'Srinivasan', '4', '9566116606', '9500006210', 'Srini270181@gmail.com', '2000-05-29', 21, '2', '2', 'Thirunavukkarasu', 'Business', 50000.00, 1, 0.00, 10000.00, 'Egmore', 'Egmore', '2108030007', '1', '1', 'upload_files/candidate_tracker/27981783159_resumae.pdf', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for intern, college yet to complete', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 11:50:29', 1, '2021-08-03 12:01:17', 0, NULL, 1),
(5702, '', '0', '9025943026', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108030008', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-03 12:09:24', 0, NULL, 0, NULL, 1),
(5703, 'R.priyanga', '4', '9751779040', '', 'Priyangacse97@gmail.com', '1997-03-15', 24, '3', '2', 'P.Ramesh', 'Farmer', 15000.00, 2, 0.00, 13000.00, 'Mayiladuthurai', 'Chennai', '2108030009', '', '2', 'upload_files/candidate_tracker/92194869515_Share Resume_R.Priyanga_Format1.pdf', NULL, '1', '2021-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication, internal team reference, will not handle the pressure. Sustainability doubts\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-03 12:09:42', 1, '2021-08-03 12:55:05', 0, NULL, 1),
(5704, 'jayalakshmi k', '27', '6382993405', '9500293352', 'baranika122@gmail.com', '2001-03-28', 20, '2', '2', 'kandasamy s', 'business', 25000.00, 1, 0.00, 20000.00, 'kumbakonam', 'kumbakonam', '2108030010', '1', '1', 'upload_files/candidate_tracker/11280857354_jl.docx', NULL, '2', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much into Winform, Fresher have a knowledge in relates to webforms', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 12:23:18', 1, '2021-08-03 12:55:46', 0, NULL, 1),
(5705, 'Aravinth.l', '4', '9962687864', '9597360685', 'aravintha733@gmail.com', '2001-08-29', 19, '2', '2', 'Loganathan', 'Water supply', 23000.00, 0, 0.00, 13000.00, '17/4 1st y.m.c.a.kuppam tondiarpet chennai 81', '17/4 1st Y.M.C.A.Kuppam Tondiarpet Chennai 81', '2108030011', '1', '1', 'upload_files/candidate_tracker/39288771049_Adobe Scan Aug 03, 2021.pdf', NULL, '3', '2021-08-03', 0, '', '3', '59', '2021-08-05', 120000.00, '', '4', '2022-02-23', '1', 'Selected for Elite RE with CTC 120000 includes PF/ESI/PT', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 12:44:32', 60, '2021-08-04 06:49:16', 0, NULL, 1),
(5706, 'Kavin Sundar Raj a n', '4', '7305558204', '9445227485', 'Kavinksr07@gmail.com', '2001-11-23', 19, '2', '2', 'Narayanasamy d', 'Government staff', 40000.00, 1, 0.00, 13000.00, '19/10 tondiarnagermain St, tondiarpet, chennai-81.', '19/10 Tondiarnagermain St, Tondiarpet, Chennai-81', '2108030012', '1', '1', 'upload_files/candidate_tracker/46951764717_Adobe Scan Aug 03, 2021 (1).pdf', NULL, '3', '2021-08-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'yet to complete one more semester ,will not fit for our telesales profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-03 12:45:07', 7, '2021-08-03 05:22:43', 0, NULL, 1),
(5707, 'vidhyalakshmi', '27', '7092590226', '6383767928', 'vidhyasekar1204@gmail.com', '2001-04-12', 20, '2', '2', 'V.K.Sekar', 'Weaver', 25000.00, 2, 0.00, 200000.00, 'Kumbakonam', 'Kumbakonam', '2108030013', '1', '1', 'upload_files/candidate_tracker/19167907669_Resume (1).docx', NULL, '3', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much strong in DotNet.,will not sustain for a long ,relocation doubtsxquot\n', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 12:54:11', 1, '2021-08-03 12:58:34', 0, NULL, 1),
(5708, 'Gnanavel V', '27', '6374108853', '', 'gnanavelselvan@gmail.com', '1998-11-28', 22, '2', '2', 'Vetrichselvan M', 'Farmer', 24000.00, 1, 0.00, 10000.00, 'Chennai', 'Trichy', '2108030014', '1', '1', 'upload_files/candidate_tracker/27036800108_1624340732242Resume_GNANAVEL.docx', NULL, '3', '2021-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Winform opening, looking specifically for Web development ASP.Net. His sister is guiding him towards the ASP.Net', '2', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 01:04:22', 1, '2021-08-03 01:10:05', 0, NULL, 1),
(5709, 'dilli babu', '23', '8121565530', '', 'dillibabue1992@gmail.com', '1992-10-20', 28, '2', '1', 'eakambaram', 'chennai', 6000.00, 2, 1.50, 3.20, 'Chennai', 'Chennai', '2108030015', '1', '2', 'upload_files/candidate_tracker/64854683342_ui and ux desinger.doc', NULL, '1', '2021-08-11', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Experienced but no basic knowledge in UI/UX ,Salary expectation is very high. Will not sustain with us ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 03:07:59', 1, '2021-08-08 07:27:19', 0, NULL, 1),
(5710, '', '0', '8825531494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108030016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-03 04:03:04', 0, NULL, 0, NULL, 1),
(5711, 'VISWANATHAN R', '27', '8508820142', '', 'Vishwaprem.cse@gmail.com', '1997-06-20', 24, '2', '2', 'RAJAN B', 'Farmer', 18000.00, 1, 14000.00, 17000.00, 'Cuddaloer', 'Tharamani', '2108030017', '1', '2', 'upload_files/candidate_tracker/57445456636_VISHWA_RESUME.docx', NULL, '1', '2021-08-05', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge in WinForms,. very slow seems not much importance with the job.Will not sustain for a long.Not suits for our client', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 04:17:56', 1, '2021-08-03 09:38:25', 0, NULL, 1),
(5712, 'Sardar Simranjeet Singh', '5', '9494998586', '', 'singhsardarsimranjeet10@gmail.com', '1999-02-24', 22, '2', '2', 'sardar harinder', 'real estate agent', 50000.00, 1, 20000.00, 23000.00, 'hydrabad', 'maduranagar', '2108030018', '1', '2', 'upload_files/candidate_tracker/57448373586_MANOJ KIRAN cv.pdf', NULL, '2', '2021-08-04', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly Refix', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-03 04:43:36', 1, '2021-08-03 04:46:14', 0, NULL, 1),
(5713, 'r.s.vishall', '27', '9444552430', '', 'vishallrajaram@gmail.com', '1994-10-08', 26, '2', '2', 's.rajaram', 'accounts manager', 85000.00, 0, 17500.00, 21000.00, 'chennai', 'Chennai', '2108030019', '1', '2', 'upload_files/candidate_tracker/40248566637_Vishall - Resume1.pdf', NULL, '1', '2021-08-05', 25, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Client Round Reject', '2', '2', '0', '1', '1', '0', '2', '2021-08-09', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 04:49:25', 1, '2021-08-03 04:56:01', 0, NULL, 1),
(5714, 'Faisal Khan', '5', '7097121555', '', 'faisalshah014@gmail.com', '1999-10-22', 21, '2', '2', 'Ayub Shah Khan', 'working', 40000.00, 1, 16000.00, 20000.00, 'hyderabad', 'palaknoma', '2108030020', '1', '2', 'upload_files/candidate_tracker/90445300793_documents 1.docx', NULL, '2', '2021-08-04', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Old Resume', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-03 05:04:27', 1, '2021-08-03 05:09:20', 0, NULL, 1),
(5715, 'Vigneshwaran.A', '27', '9994363188', '9080986600', 'vigneshwaranpaavai@gmail.com', '1998-06-19', 23, '2', '2', 'Sellammal', 'Labour', 10000.00, 1, 12000.00, 15000.00, '5/224, Rajiv Gandhi Nagar,Murugan Kovil,namakkal', '36, periyaar street, tambaram sanitarium', '2108030021', '1', '2', 'upload_files/candidate_tracker/3793154936_A.vigneshwaran_CV.docx word.pdf', NULL, '2', '2021-08-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-03 05:49:59', 1, '2021-08-03 06:11:02', 0, NULL, 1),
(5716, '', '0', '8508820152', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108030022', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-03 09:12:47', 0, NULL, 0, NULL, 1),
(5717, 'Priyanka', '4', '7397428317', '7299717719', 'Priyankavijaykumar00@gmail.com', '2000-08-31', 20, '2', '2', 'Vijay kumar', 'Driver', 20000.00, 1, 9500.00, 11000.00, 'Taramani', 'Taramani', '2108040001', '1', '2', 'upload_files/candidate_tracker/92178097097_Priyanka%20Vijaykumar.docx', NULL, '1', '2021-08-04', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold on long pending', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-04 10:23:19', 1, '2021-08-04 10:34:33', 0, NULL, 1),
(5718, 'Mathivathani', '13', '9585196046', '9047321730', 'mathivathani70@gmail.com', '2006-08-04', 0, '3', '2', 'Sakthivel', 'Farmer', 60000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Chennai', '2108040002', '', '1', 'upload_files/candidate_tracker/38696126460_MATHISAKTHI.CV.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp,Focus much into Java Python\n', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-04 10:26:14', 1, '2021-08-04 10:35:05', 0, NULL, 1),
(5719, 'Naveenkumar', '4', '8124818856', '9003623570', 'naveenkumarktm390@gmail.com', '2001-04-12', 20, '2', '2', 'Ravichandran', 'Hotel Supervisor', 20000.00, 1, 0.00, 10000.00, 'Trichy', 'Nanganallur', '2108040003', '1', '1', 'upload_files/candidate_tracker/64587316082_naveen indigo resume.docx.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant Exp, Fresher, Focusing on Aviation and for the time being looking for a job', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-04 11:21:52', 1, '2021-08-04 11:41:33', 0, NULL, 1),
(5720, 'B.JAYASEELAN', '11', '7871805090', '', 'b.jayaseelan72@gmail.com', '2000-02-07', 21, '3', '2', 'V.BALACHANDAR', 'Building contractor', 20000.00, 2, 0.00, 20000.00, 'Minjur', 'Minjur', '2108040004', '', '1', 'upload_files/candidate_tracker/91303446356_C4036.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet to complete College 1 more year to go,Distance toolong around 72 kms up and down', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-04 11:55:07', 1, '2021-08-04 12:01:13', 0, NULL, 1),
(5721, 'Prathap.d', '27', '6369209053', '9788884649', 'prathapsingh907@gmail.com', '2001-05-13', 20, '2', '2', 'Dahanaraj', 'Buisness', 10000.00, 3, 0.00, 20000.00, 'Tiruppur', 'Chennai', '2108040005', '1', '1', 'upload_files/candidate_tracker/72269035167_PRATHAP. D.docx', NULL, '1', '2021-08-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Client round rejected', '2', '1', '', '1', '1', '', '2', '2021-08-09', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 12:05:44', 60, '2021-08-07 06:02:11', 0, NULL, 1),
(5722, 'Chenchu Anil Kumar', '5', '7013171860', '', 'anilakhi777@gmail.com', '1997-03-06', 24, '2', '2', 'mallaiah', 'farmer', 25000.00, 1, 21000.00, 25000.00, 'hyderabad', 'uppal', '2108040006', '1', '2', 'upload_files/candidate_tracker/30511691420_Chenchu Anil Kumar_Resume_Format2.pdf', NULL, '2', '2021-08-05', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 12:17:00', 1, '2021-08-04 12:19:25', 0, NULL, 1),
(5723, 'Avinash Chintakayala', '5', '9618373634', '', 'avinashchintakayala333@gmail.com', '2006-08-04', 15, '2', '2', 'intakayalagulu', 'rtd', 80000.00, 2, 0.00, 20000.00, 'hyderabad', 'alwal', '2108040007', '1', '1', 'upload_files/candidate_tracker/22725234950_Resume (13).pdf', NULL, '2', '2021-08-05', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Not Attended', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 12:56:09', 1, '2021-08-04 03:26:19', 0, NULL, 1),
(5724, 'Augustine', '4', '7397405702', '6381706880', 'augustinerocksstar@gmail.com', '1999-09-01', 21, '3', '2', 'Anbuvanan.S', 'Pastor', 400000.00, 3, 0.00, 20000.00, 'Vellavedu', 'Vellavedu', '2108040008', '', '1', 'upload_files/candidate_tracker/33703735559_pi.pdf', NULL, '1', '2021-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non Voice', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-04 02:39:00', 1, '2021-08-04 02:47:58', 0, NULL, 1),
(5725, 'YERUKAMAGGI DEVDAS', '5', '9704419182', '', 'DASUDEVA023@GMAIL.COM', '1994-10-28', 26, '2', '1', 'ramya', 'house wife', 40000.00, 3, 14000.00, 20000.00, 'hyderabad', 'shamshabad', '2108040009', '1', '2', 'upload_files/candidate_tracker/53551171437_Das Nonfood.doc', NULL, '2', '2021-08-05', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the Job', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 03:28:21', 1, '2021-08-04 03:30:18', 0, NULL, 1),
(5726, 'Velan Tennison . C', '2', '8667703871', '9688383858', 'velantennison1998@gmail.com', '1998-03-10', 23, '2', '2', 'Chandrasekaran', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Tenkasi', 'Tenkasi', '2108040010', '1', '1', 'upload_files/candidate_tracker/46969775192_Velan.pdf', NULL, '2', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Salary Expectation is very high, In native itself he earns around 10k and left only for the package', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 03:44:56', 1, '2021-08-04 03:53:00', 0, NULL, 1),
(5727, 'Ranjith BN', '2', '7010160860', '', 'ranjithbnr02@email.com', '2000-05-02', 21, '2', '2', 'Narasaiah B', 'Driver', 12000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2108040011', '1', '1', 'upload_files/candidate_tracker/10730023122_Ranjith_newresume.docx', NULL, '3', '2021-08-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no knowledge in the basics,no ideas on MERN,2020 passed out and Didnxquott show any interest in learning the technologies. Sustainability Doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 03:48:35', 50, '2021-08-04 04:00:00', 0, NULL, 1),
(5728, 'shamli', '11', '7358675863', '', 'shamliharibabu03@gmail.com', '1997-03-25', 24, '2', '2', 'v.haribabu', 'government employee', 45000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2108040012', '1', '1', 'upload_files/candidate_tracker/34542903388_shamli resume-(updated).pdf', NULL, '1', '2021-08-05', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '2', 'Selected for the recruiter position with salary 5000 for 3months + 15 days after that salary will be decided', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 03:55:20', 1, '2021-08-04 04:12:40', 0, NULL, 1),
(5729, 'Jayasurya d', '2', '9043379400', '', 'Jayasuryamuthamizharasi@gmail.com', '1999-09-20', 21, '2', '2', 'Durairaj s', 'Retired professor', 50000.00, 2, 0.00, 15000.00, 'Cheyyar', 'Cheyyar', '2108040013', '1', '1', 'upload_files/candidate_tracker/44337112892_jayasurya.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having knowledge in React.JS, but not comfortable with TxxampC and the salary expectation is min 12K as a fresher', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 03:58:21', 60, '2021-08-06 10:00:44', 0, NULL, 1),
(5730, 'Jaichandar D', '2', '9042879400', '', 'jaichandarmuthamizh@gmail.com', '1999-09-20', 21, '2', '2', 'Durairaj S', 'Retired professor', 50000.00, 2, 0.00, 15000.00, 'Cheyyar', 'Cheyyar', '2108040014', '1', '1', 'upload_files/candidate_tracker/40930459638_Jaichandar.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Profile is Good,not open with the TxxampC will not sustain for a long and the salary expectation is very high.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 04:07:56', 1, '2021-08-04 04:15:58', 0, NULL, 1),
(5731, 'Pavithran M', '2', '9952271809', '', 'mpavithran1998@gmail.com', '1998-04-18', 23, '2', '2', 'Muniyandi N', 'Daily wager', 10000.00, 1, 0.00, 15000.00, 'Srivilliputtur', 'Perugalathur', '2108040015', '1', '1', 'upload_files/candidate_tracker/79769669008_PAVITHRAN.pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much comfort with the TxxampC ,need to check with his family.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 04:10:29', 50, '2021-08-09 10:21:40', 0, NULL, 1),
(5732, 'Mallikumar', '2', '9790321115', '', 'mallikumar1998@gmail.com', '1998-05-19', 23, '2', '2', 'Sundaram', 'Power loom', 30000.00, 1, 25000.00, 35000.00, 'Namakkal', 'Namakkal', '2108040016', '1', '2', 'upload_files/candidate_tracker/80889918731_Malli_resume2021.pdf', NULL, '1', '2021-08-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 04:36:45', 1, '2021-08-04 04:45:17', 0, NULL, 1),
(5733, 'Santhosh S', '23', '9043766219', '', 'santhosh111294@gmail.com', '1994-12-11', 26, '2', '2', 'Arulmani S (mother)', 'Housewife', 450000.00, 2, 336000.00, 650000.00, 'Chennai', 'Chennai', '2108040017', '1', '2', 'upload_files/candidate_tracker/75378934453_Santhosh Resume.pdf', NULL, '1', '2021-08-07', 60, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '60 Days notice, Salary expectation is around 6.5 LPA. Working in CSS. Recently stepped into React.JS', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 04:44:37', 1, '2021-08-04 05:17:01', 0, NULL, 1),
(5734, 'tarun kumar', '5', '9441952486', '', 'tarunteja1996@gmail.com', '1996-07-26', 25, '2', '2', 'surender', 'govt employee', 62000.00, 1, 0.00, 15000.00, 'hyderabad', 'uppal', '2108040018', '1', '1', 'upload_files/candidate_tracker/8396574831_B.TARUN KUMAR general.pdf', NULL, '2', '2021-08-05', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Not fit for sales', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-04 04:46:02', 1, '2021-08-04 04:49:12', 0, NULL, 1),
(5735, 'Vjg Gowtham', '14', '9087432974', '', 'vjggowthaman@gmail.com', '1998-12-23', 22, '2', '2', 'Jeevanandham V', 'Farmers', 3000.00, 2, 0.00, 100000.00, 'MELATHIRUPPANTHURUTHI', 'MELATHIRUPPANTHURUTHI', '2108040019', '1', '1', 'upload_files/candidate_tracker/11656348992_1628066407627_gowthaman j resume.docx', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC\n', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-04 05:43:00', 1, '2021-08-04 05:45:54', 0, NULL, 1),
(5736, '', '0', '9176614576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108040020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-04 07:14:34', 0, NULL, 0, NULL, 1),
(5737, '', '0', '9360170459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108040021', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-04 10:49:32', 0, NULL, 0, NULL, 1),
(5738, 'VISHNU A', '11', '8489328460', '8072000921', 'vishnu19962729@gmail.com', '1996-02-27', 25, '2', '2', 'Arumugam V', 'Driver', 12000.00, 1, 0.00, 20000.00, 'Puducherry', 'Puducherry', '2108050001', '1', '1', 'upload_files/candidate_tracker/66849421271_Vishnu MBA Cv.pdf', NULL, '3', '2021-08-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1008', '0', NULL, NULL, NULL, 1, '2021-08-05 10:07:56', 1, '2021-08-05 10:17:36', 0, NULL, 1),
(5739, 'Krishna Kumar', '14', '9385449465', '', 'sanayash3108@gmail.com', '1999-04-10', 22, '2', '2', 'Shanmugavel', 'Agriculture', 3000.00, 2, 0.00, 15000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2108050002', '1', '1', 'upload_files/candidate_tracker/93102384711_krishnakumar resume-converted.pdf', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 10:18:49', 1, '2021-08-05 10:23:16', 0, NULL, 1),
(5740, 'S.manikandan', '13', '7826897597', '', 'Manisami461@gmail.com', '1999-06-10', 22, '2', '2', 'V.saminathan', 'Agriculture', 3000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2108050003', '1', '1', 'upload_files/candidate_tracker/55009263450_mani.doc', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Skills Knowledge,Attended Interviews And Not Joined Due To Service Agreement With Previous Offer.Not Comfortable With Our TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 10:19:32', 1, '2021-08-05 01:18:43', 0, NULL, 1),
(5741, 'Thendral vendhan', '14', '7639789751', '', 'Sltthendral@gmail.com', '1998-06-10', 23, '2', '2', 'S. Lakshmanan', 'Farmee', 8000.00, 3, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2108050004', '1', '1', 'upload_files/candidate_tracker/70953223715_THENDRAL RESUME.doc', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills knowledge,attended interviews and not joined due to Service Agreement with previous offer.Not comfortable with our TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 10:19:49', 1, '2021-08-05 10:26:01', 0, NULL, 1),
(5742, 'Nathiya Lakshmanan', '4', '6380896342', '7397349477', 'nathiyasri21322@gmail.com', '1998-06-09', 23, '1', '2', 'Lakshmanan N', 'Watch man', 12000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2108050005', '', '2', 'upload_files/candidate_tracker/16332830606_Nathiya new resume.pdf', NULL, '1', '2021-08-05', 0, 'Jobs', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-05 10:33:26', 60, '2021-08-05 03:52:36', 0, NULL, 1),
(5743, 'Keerthana', '4', '7358352976', '9566009647', 'keerthanaofficial21@gmail.com', '1998-04-21', 23, '1', '2', 'Rajkumar', 'Xerox business', 5000.00, 2, 13500.00, 16000.00, 'Chennai', 'Chennai', '2108050006', '', '2', 'upload_files/candidate_tracker/49532105332_keerthu resume1.pdf', NULL, '1', '2021-08-05', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp Fully into non voice process,will not handle our pressure.Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-05 10:35:41', 1, '2021-08-05 10:41:36', 0, NULL, 1),
(5744, '', '0', '8825805636', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108050007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-05 10:41:44', 0, NULL, 0, NULL, 1),
(5745, 'aravindan n', '6', '9171715167', '', 'aravindan28n@gmail.com', '1993-11-28', 27, '1', '2', 'nagendran', 'auto driver', 12000.00, 1, 0.00, 17000.00, 'chennai', 'saligramam', '2108050008', '', '1', 'upload_files/candidate_tracker/47054327513_New CV 2021 (1).pdf', NULL, '1', '2021-08-05', 0, 'p1184', '3', '59', '2021-08-09', 204000.00, '', '3', '2021-08-06', '1', 'Selected for Kannan Team, internal Team reference with CTC 204000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-05 10:54:07', 60, '2021-08-05 06:37:57', 0, NULL, 1),
(5746, 'Naveen Kumar.pulipati', '5', '8008307333', '', 'Naveen.pulipati94@gmail.com', '1994-11-08', 26, '2', '2', 'pulipati ramesh kumar', 'business man', 150000.00, 1, 25000.00, 30000.00, 'hyderabad', 'begumpet', '2108050009', '1', '2', 'upload_files/candidate_tracker/53494592872_naveen resume (3).pdf', NULL, '2', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is OK, and he is not open or the sales profile. He is not ready to make calls and focus only on the salary. No sustainability in his previous experiences too.', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-05 11:05:06', 1, '2021-08-05 11:07:06', 0, NULL, 1),
(5747, 'Dharmendra', '11', '8925761954', '8682834294', 'dharmendra1491@gmail.com', '1991-02-14', 30, '3', '1', 'Arulmurugan alish ayyaru', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Madurai', 'Egmore', '2108050010', '', '1', 'upload_files/candidate_tracker/59675227937_dharma 1419 final.docx', NULL, '1', '2021-08-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Poor Communication,no basic ideas in the recruitment,career gap,having his own business and will not sustain for a long', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-05 11:07:43', 1, '2021-08-05 11:12:22', 0, NULL, 1),
(5748, 'hariharan s', '2', '9894826404', '9842409404', 'hari73118@gmaiil.com', '1999-05-03', 22, '2', '2', 'sathiya moorthy c', 'fresher', 40000.00, 1, 0.00, 20000.00, 'chennai', 'thanjavur', '2108050011', '1', '1', 'upload_files/candidate_tracker/66208010707_Hariharan_S_Resume_15-07-2021-17-19-58 (1).pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Basic Knowledeg In React, Requested time To Check With His Family and didnt turn back with the response', '2', '1', '0', '1', '1', '0', '2', '2021-08-16', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 11:09:02', 1, '2021-08-05 11:14:39', 0, NULL, 1),
(5749, 'anand', '2', '9003325013', '', 'anand.kva00@gmail.com', '1998-07-25', 23, '2', '2', 'kumar', 'gold Smith', 13000.00, 2, 0.00, 16000.00, 'mayiladuthurai', 'chennai', '2108050012', '1', '1', 'upload_files/candidate_tracker/73570518668_Anand Kumar\'s Resume - MERN Stack Developer.pdf', NULL, '3', '2021-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Having Exp in Non It domain for 1.5+ yrs and looking for opportunities in IT Mern Stack but his expectation is very high with min salary of 12K.Sustainability doubts with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 11:35:49', 1, '2021-08-06 03:08:13', 0, NULL, 1),
(5750, 'Charul Rawat', '5', '7013062796', '', 'charulrawat1996@gmail.com', '1996-08-16', 24, '2', '2', 'sharma', 'sub inspector', 80000.00, 1, 0.00, 15000.00, 'hyderabad', 'vanasthalipuram', '2108050013', '1', '1', 'upload_files/candidate_tracker/65706787141_Charul rawat -RESUME-.pdf', NULL, '2', '2021-08-06', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Not Attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-05 11:39:18', 1, '2021-08-05 11:41:27', 0, NULL, 1),
(5751, 'ramesh shanmugam', '27', '9489038232', '', 'shanramesh4@gmail.com', '1998-10-20', 22, '2', '2', 'chitra', 'house wife', 15000.00, 2, 0.00, 18000.00, 'Krishnagiri', 'Krishnagiri', '2108050014', '1', '1', 'upload_files/candidate_tracker/88277571278_Ramesh resume.pdf', NULL, '2', '2021-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Dotnet but the Expectation is high and sustainability doubts on the profile', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 01:04:04', 1, '2021-08-05 01:07:34', 0, NULL, 1),
(5752, 'Aravindhan.S', '2', '9500930461', '', 'aravindhansampath002@gmail.com', '1997-08-29', 23, '2', '2', 'Sampath kumar', 'Supervisor', 20000.00, 1, 0.00, 15000.00, 'Ooty', 'Ooty', '2108050015', '1', '1', 'upload_files/candidate_tracker/76569216320_aravindhan_resume.pdf', NULL, '2', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate seems good. basic knowledge in React.JS, Currently into internship in coimbatore and the salary expectation is very high.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 03:24:30', 1, '2021-08-05 03:27:49', 0, NULL, 1),
(5753, 'CHERUKURI HARIKRISHNA', '5', '9700255265', '', 'harikrishnanaidu1997@gmail.com', '1997-11-20', 23, '2', '2', 'venkatrama reddy', 'farmer', 40000.00, 2, 22000.00, 20000.00, 'hyderabad', 'gachibowli', '2108050016', '1', '2', 'upload_files/candidate_tracker/57850888109_Hari Resume.pdf', NULL, '2', '2021-08-06', 0, '', '3', '59', '2021-08-09', 231000.00, '', '2', '1970-01-01', '1', 'Selected for Veben Team in Hyderabad with CTC 231000 includes PF/ESI/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-05 03:28:33', 60, '2021-08-06 02:58:47', 0, NULL, 1),
(5754, 'Srimathi', '13', '6369036639', '', 'jsrimathi1999@gmail.com', '1998-07-30', 23, '2', '2', 'Jayakumar', 'Cooli', 6000.00, 2, 17000.00, 22000.00, 'Trichy', 'Trichy', '2108050017', '1', '2', 'upload_files/candidate_tracker/92556949609_SRIMATHI JOVETECH new.pdf', NULL, '2', '2021-08-07', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '3', '0', '2', '2021-08-12', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 03:51:46', 1, '2021-08-05 03:56:09', 0, NULL, 1),
(5755, 'sandeep kumar', '5', '9912181999', '', 'jinnasr512@gmail.com', '1991-04-14', 30, '2', '2', 'sudhakar', 'rtd', 25000.00, 1, 23000.00, 35000.00, 'hyderabad', 'ecil', '2108050018', '1', '2', 'upload_files/candidate_tracker/32689395056_Sandeep Reddy CV.doc', NULL, '2', '2021-08-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-05 04:23:33', 1, '2021-08-05 04:26:01', 0, NULL, 1),
(5756, 'r.manikandan', '13', '9944356689', '', 'manikandan53557@gmail.com', '2000-01-05', 21, '2', '2', 'g.rajendran', 'driver', 100000.00, 1, 0.00, 10000.00, 'ariyalur', 'ariyalur', '2108050019', '1', '1', 'upload_files/candidate_tracker/84129075746_Manikandan_Resume.pdf.pdf', NULL, '3', '2021-08-06', 0, '', '4', '64', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task was Completed', '2', '1', '', '4', '5', '', '2', '2021-08-09', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 05:26:56', 60, '2021-08-06 02:37:03', 0, NULL, 1),
(5757, '', '0', '8008614728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108050020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-05 06:29:03', 0, NULL, 0, NULL, 1),
(5758, 'Tamizhselvan N', '22', '8778997702', '', 'nrtamil3@gmail.com', '1997-11-27', 23, '2', '2', 'Neethirajan A', 'Photographer', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2108050021', '1', '1', 'upload_files/candidate_tracker/47910185229_Tamizhselvan\'s Resume.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good, no experience in Digital Marketing.2 yrs career gap but the salary expectation is very high', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-05 06:47:06', 1, '2021-08-05 06:52:27', 0, NULL, 1),
(5759, 'A.selva', '24', '7540083767', '9025097514', 'Selvashiva0075@gmail.com', '1997-03-22', 24, '1', '2', 'Jaya.A', 'Business', 20000.00, 1, 12000.00, 15000.00, 'Velachery chennai', 'Velachery chennai', '2108060001', '', '2', 'upload_files/candidate_tracker/25874276916_1628172814721_SELVA. A - Resume-converted.pdf', NULL, '2', '2021-08-06', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 09:56:26', 1, '2021-08-06 10:48:22', 0, NULL, 1),
(5760, 'KARNAN S', '14', '9600732850', '', 'karnankarnan850@gmail.com', '2006-08-06', 0, '2', '2', 'T.SRIDHAR', 'Former', 72000.00, 3, 0.00, 20000.00, 'Chidambaram', 'Chidambaram', '2108060002', '1', '1', 'upload_files/candidate_tracker/90719941294_Karnan Resume-converted.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not a relevant profile, just looking for any job.No Focus in the domain', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-08-06 10:27:44', 1, '2021-08-06 10:34:31', 0, NULL, 1),
(5761, 'Kumaravel B', '4', '7397380718', '', 'kumaravel.1823@gmail.com', '1998-04-18', 23, '3', '2', 'Venkatesh J (Guardian)', 'Professor', 15000.00, 1, 0.00, 13000.00, 'Kovilambakkam', 'Kovilambakkam', '2108060003', '', '1', 'upload_files/candidate_tracker/38423690801_document (2) (1).docx', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, fresher, career gap for an year. Need time to decide on the Terms xxamp conditions. Seems not much comfortable. Sustainability doubts ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 10:36:04', 1, '2021-08-06 10:55:11', 0, NULL, 1),
(5762, 'KIRUBA B', '4', '7401247441', '9840861820', 'kirubadon593@gmail.com', '2000-04-27', 21, '3', '2', 'B.saraswathi', '8th', 10000.00, 2, 0.00, 20000.00, 'Ch', 'Ch', '2108060004', '', '1', 'upload_files/candidate_tracker/38346510378_KIRUBA resume.docx', NULL, '1', '2021-08-06', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 10:39:27', 1, '2021-08-06 10:49:21', 0, NULL, 1),
(5763, 'Pradeep raj', '22', '9944588152', '6381083170', 'a.pradeepraj1512@gmail.com', '1995-12-15', 25, '3', '2', 'G annamali', 'small business-Idli shop', 150000.00, 0, 0.00, 25000.00, 'thanjavur', 'thanjavur', '2108060005', '', '1', 'upload_files/candidate_tracker/70890585075_Resume updated.pdf', NULL, '1', '2021-08-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to get into Digital Marketing, not much comfortable with TxxampC. having internship exp in recruitment ,but focus into digital Marketing. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 11:24:03', 1, '2021-08-06 11:27:03', 0, NULL, 1),
(5764, 'Niheeth mamidala', '5', '9010900643', '', 'niheeth.nalsar@gmail.com', '1997-02-28', 24, '2', '2', 'ramesh', 'rtd', 100000.00, 1, 0.00, 30000.00, 'hyderbad', 'gachibowli', '2108060006', '1', '1', 'upload_files/candidate_tracker/75311774609_Charul rawat -RESUME-.pdf', NULL, '2', '2021-08-07', 0, '', '3', '59', '2021-08-16', 299000.00, '', '5', '1970-01-01', '1', 'Selected for Hyderabad with CTC 299000 includes PF/ESI/PT', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-06 12:21:27', 60, '2021-08-11 04:08:02', 0, NULL, 1),
(5765, 'Kuthuru Rajesh', '5', '8522918565', '', 'rajeshkuthuru@gmail.com', '1997-09-15', 23, '2', '2', 'srinivas', 'business man', 50000.00, 2, 0.00, 20000.00, 'hyderabad', 'dilshuknagar', '2108060007', '1', '1', 'upload_files/candidate_tracker/56002221119_RAJESH RESUME 2.docx', NULL, '2', '2021-08-07', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not interested in our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-06 12:26:20', 1, '2021-08-06 12:28:29', 0, NULL, 1),
(5766, 'Osama A', '11', '8754091522', '', 'usamausmah@gmail.com', '1999-02-13', 22, '2', '2', 'Ahamedsha T', 'Bakery', 200000.00, 3, 0.00, 10000.00, 'Tenkasi', 'Chennai', '2108060008', '1', '1', 'upload_files/candidate_tracker/12886006630_osama_HR.docx', NULL, '1', '2021-08-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, no basic ideas about the recruitment.Will not handle our pressure and sustainability doubts\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 12:27:51', 1, '2021-08-06 03:28:50', 0, NULL, 1),
(5767, '', '0', '7550184821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108060009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-06 01:11:17', 0, NULL, 0, NULL, 1),
(5768, 'saybas khan', '22', '9751646163', '9159246162', 'ksaybas3@gmail.com', '1998-05-11', 23, '2', '2', 's.nagoorkani', 'departmental store', 20000.00, 1, 13500.00, 18000.00, 'Madurai', 'Madurai', '2108060010', '1', '2', 'upload_files/candidate_tracker/99842270295_resume.docx', NULL, '1', '2021-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication ,fresher ,no basic knowledge in Digital Marketing. Not suits', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 03:01:32', 60, '2021-08-11 07:06:03', 0, NULL, 1),
(5769, 'Tokala pranay Reddy', '5', '9133625709', '', 'pranaytokala@gmail.com', '2006-08-06', 15, '2', '2', 'malla reddy', 'own business', 100000.00, 1, 0.00, 15000.00, 'hyderabad', 'suchitra', '2108060011', '1', '1', 'upload_files/candidate_tracker/97571131296_cvbyjusDocument from Pranay-3.docx', NULL, '2', '2021-08-07', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-06 03:40:45', 1, '2021-08-06 03:42:52', 0, NULL, 1),
(5770, 'bala nagendra kmar', '13', '9080099415', '', 'balanagendrakumar244@gmail.com', '2000-04-24', 21, '2', '2', 'srinivasa rao', 'daily labour', 15000.00, 1, 10000.00, 18000.00, 'chennai', 'chennai', '2108060012', '1', '2', 'upload_files/candidate_tracker/1866969692_Bala+cv.pdf', NULL, '1', '2021-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Location too long, need to check with his family on TxxampC.Sustainability Doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 03:49:14', 60, '2021-08-11 07:23:16', 0, NULL, 1),
(5771, 'Jeevapriya', '13', '9597018266', '9176537401', 'jeevathamil11@gmail.com', '1998-07-11', 23, '2', '2', 'Vijayakumar', 'Medical representative', 10000.00, 1, 11000.00, 15000.00, 'Mayiladuthurai', 'Medavakkam', '2108060013', '1', '2', 'upload_files/candidate_tracker/95125675773_jeeva resume 2020.pdf', NULL, '1', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 04:11:26', 1, '2021-08-06 04:14:19', 0, NULL, 1),
(5772, '', '0', '9751656163', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108060014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-06 04:15:22', 0, NULL, 0, NULL, 1),
(5773, 'Ranjith.s', '4', '7604921342', '', 'ranjithranji983@gmail.com', '1999-01-10', 22, '3', '2', 'Shankar', 'Business', 72000.00, 2, 0.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2108060015', '', '1', 'upload_files/candidate_tracker/99717195311_pdf resume Ranjith.S (1).pdf', NULL, '1', '2021-08-06', 0, '', '3', '59', '2021-08-19', 120000.00, '', '0', NULL, '2', 'Selected for Tiruvallur Team with CTC 120000 Cash mode', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 05:02:10', 1, '2021-08-06 05:11:09', 0, NULL, 1),
(5774, 'M.nandhini', '20', '9962151263', '9585078385', 'nandhumj02@gmail.com', '1997-11-02', 23, '2', '2', 'Murugan', 'Welding', 20000.00, 1, 16000.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2108060016', '10', '2', 'upload_files/candidate_tracker/90687404795_nandhini resume 13.05.2021.pdf', NULL, '1', '2021-08-06', 0, '', '3', '59', '2021-08-10', 144000.00, '', '2', '1970-01-01', '2', 'Selected for Tiruvallur Location with CTC 144000 includes PF/ESI', '5', '2', '1', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-06 05:06:09', 60, '2021-08-09 07:43:12', 0, NULL, 1),
(5775, 'shanmuha varadhan', '22', '8825644138', '', 'shanmuhavaradhan@gmail.com', '1995-01-19', 26, '2', '2', 'muthukumar', 'business', 20000.00, 0, 0.00, 20000.00, 'nagercoil', 'coimbatore', '2108060017', '1', '1', 'upload_files/candidate_tracker/51646579283_CV_2021-07-13-072916_compressed.pdf', NULL, '1', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-06 05:40:04', 1, '2021-08-06 05:48:31', 0, NULL, 1),
(5776, 'Vikky', '27', '9952466122', '', 'devdood2419@gmail.com', '1997-09-24', 23, '2', '2', 'Elango', 'Ex Army', 35.00, 1, 18367.00, 25000.00, 'Dharmapuri', 'Chennai', '2108070001', '1', '2', 'upload_files/candidate_tracker/16750102341_Vikky\'s Resume Updated.pdf', NULL, '2', '2021-08-09', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability,2.5 yrs 3 companies and looking for a change. Holding an offer with another company', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 10:32:04', 1, '2021-08-07 10:35:17', 0, NULL, 1),
(5777, 'Mangalambigai', '27', '7397481402', '', 'ddayana1011@gmail.com', '1991-04-15', 30, '2', '1', 'Dhatchinamoorthy', 'Driver', 25000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2108070002', '1', '1', 'upload_files/candidate_tracker/87446730389_RESUME.pdf', NULL, '1', '2021-08-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 10:40:12', 1, '2021-08-07 10:44:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5778, 'P. VIKNESH', '6', '9865657470', '9597022862', 'Vikneshvicky686@gmail.com', '2000-06-06', 21, '1', '2', 'Farmer', 'Farmer', 80000.00, 3, 0.00, 14000.00, 'Thonnadu village, neerpair post, madurantakam T. K', 'Vadapalani', '2108070003', '', '1', 'upload_files/candidate_tracker/85993091617_5_6278537876539966496.docx', NULL, '1', '2021-08-07', 0, 'Jobs', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-07 11:19:48', 60, '2021-08-07 03:37:38', 0, NULL, 1),
(5779, 'GANGADHAR CHARY NARAYANADAS', '5', '8885334806', '', 'nkgangadhar68@gmail.com', '1993-06-02', 28, '2', '2', 'ramprathap', 'gold smith', 50000.00, 1, 22000.00, 25000.00, 'hyderabad', 'kuketpally', '2108070004', '1', '2', 'upload_files/candidate_tracker/94241688139_Gangadhar .pdf', NULL, '2', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-07 12:14:37', 1, '2021-08-07 12:16:57', 0, NULL, 1),
(5780, 'Ronald Vivan', '11', '8056217762', '', 'ronaldvivan@gmail.com', '1999-02-15', 22, '2', '2', 'Andrew Maria Francis', 'Fresher', 60000.00, 1, 0.00, 0.00, 'Chennai', 'Chennai', '2108070005', '1', '1', 'upload_files/candidate_tracker/66022528875_Ronald Resume .pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good, Too long Distance up and down 50 kms.Have a focus towards his father business.Salary expectation is High', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 12:32:20', 1, '2021-08-07 12:34:38', 0, NULL, 1),
(5781, 'ajith kumar s', '2', '7708547764', '', 'akajith919@gmail.com', '1998-07-18', 23, '2', '2', 'selvaraj', 'driver', 20000.00, 1, 0.00, 350000.00, 'sriperumbudur', 'sriperumbudur', '2108070006', '1', '1', 'upload_files/candidate_tracker/20229664396_ak-resume(new).pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Keen To Learn But Too Long Distance From Sriperumbuthur.', '2', '2', '0', '1', '1', '0', '2', '2021-08-16', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 12:50:35', 1, '2021-08-07 01:16:03', 0, NULL, 1),
(5782, 'A. Fouziya Begum', '4', '9884929408', '6382873572', 'fouziyabegum7863@gmail.com', '2000-08-12', 20, '1', '2', 'Alahuddin. A', 'Tailor', 75000.00, 1, 0.00, 15000.00, '12/1thanthoni Amman Koil 2nd street Villivakkam', '12/1thanthoni Amman Koil 2nd street Villivakkam', '2108070007', '', '1', 'upload_files/candidate_tracker/63658046620_Resume_Fouziya 2021.pdf', NULL, '1', '2021-08-07', 0, '55577', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-07 01:21:57', 1, '2021-08-07 01:34:21', 0, NULL, 1),
(5783, 'J.Surya kiran', '3', '7780483961', '', 'kiransurya456@gmail.com', '1994-06-27', 27, '2', '2', 'J.parameshwara Rao', 'Private employee', 25000.00, 1, 0.00, 20000.00, 'Challapalli', 'Chennai', '2108070008', '1', '1', 'upload_files/candidate_tracker/66851105115_kiran resume (1).docx', NULL, '1', '2021-08-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic knowledge fresher,not open with terms and conditions', '2', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 02:59:48', 1, '2021-08-07 03:37:13', 0, NULL, 1),
(5784, 'Sanjana', '11', '9677055889', '', 'sanjanajhamber.sj@gmail.com', '1997-09-13', 23, '2', '2', 'Suresh', 'Business man', 30000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2108070009', '1', '1', 'upload_files/candidate_tracker/26426678313_Resume.pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication OK, not familiar with local language, Salary Expectation is High, Will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 03:19:41', 1, '2021-08-07 03:22:51', 0, NULL, 1),
(5785, 'Nandhini', '2', '8531966025', '8940498482', 'nandhiniselvam2498@gmail.com', '1998-07-24', 23, '2', '2', 'Selvam', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2108070010', '1', '1', 'upload_files/candidate_tracker/82774186144_nandhini resume1-converted.pdf', NULL, '3', '2021-08-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-07 03:21:28', 1, '2021-08-07 03:29:24', 0, NULL, 1),
(5786, '', '0', '9677018541', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108080001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-08 12:38:57', 0, NULL, 0, NULL, 1),
(5787, 'A. SARAVANA KUMAR', '23', '8870501430', '8072394478', 'Saravanakumar366@gmail.com', '1991-04-13', 30, '2', '2', 'P.Arumugam', 'Mill worker', 35000.00, 0, 15000.00, 25000.00, 'Virudhunagar', 'Chennai', '2108080002', '1', '2', 'upload_files/candidate_tracker/60475576411_resume_html_new.docx', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Career Gap not much strong into the areas of UI/UX.Not much serious towards the job focusing for Govt Jobs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-08 10:40:58', 1, '2021-08-09 11:17:54', 0, NULL, 1),
(5788, 'Tabassum nikhath', '4', '8939046853', '8190024072', 'muskansahil1704@gmail.com', '1993-05-27', 28, '3', '1', 'Ameer basha', 'Driver', 15000.00, 0, 0.00, 10000.00, 'Chennai.tharamani', 'Chennai.tharamani', '2108090001', '', '1', 'upload_files/candidate_tracker/26056542633_Resume_Tabassum nikhath_Format5.pdf', NULL, '1', '2021-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication, by mistake she came here for the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-09 09:46:49', 1, '2021-08-09 11:06:46', 0, NULL, 1),
(5789, 'aishwarya c', '13', '9345766836', '8428042707', 'aishuchinnathambi@gmail.com', '1999-01-22', 22, '2', '2', 'chinna thambi p', 'driver', 10000.00, 2, 0.00, 15000.00, 'indra nagar vengikkal', 'chennai', '2108090002', '1', '1', 'upload_files/candidate_tracker/29842946509_resume aisu.doc', NULL, '3', '2021-09-20', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, No Basic Tech Skill, Expt Is 15k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-08-09 10:29:09', 50, '2021-09-20 12:28:45', 0, NULL, 1),
(5790, 'K.Boopathy', '6', '9626341225', '', 'boopathyslt@gmail.com', '1999-03-04', 22, '2', '2', 'V kathirasan', 'Sale', 12000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2108090003', '3', '2', 'upload_files/candidate_tracker/72423201224_Boopathy resume-converted (1).docx', NULL, '1', '2021-08-09', 0, '', '3', '59', '2021-08-12', 180000.00, '', '3', '2021-08-16', '1', 'Selected for Suthagar team with CTC 180000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-09 10:55:48', 60, '2021-08-10 06:22:19', 0, NULL, 1),
(5791, 'Dinesh.R', '27', '8667254006', '9176166943', 'dineash79932@gmail.com', '1997-05-06', 24, '2', '2', 'Saralavathy.R', 'House wife', 10000.00, 2, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2108090004', '1', '1', 'upload_files/candidate_tracker/31480682419_it resume .pdf', NULL, '1', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no basic knowledge ,,fresher for DotNet. no clear ideas about the Dotnet .Career Gap will not sustain for a long.Earlier he is into business', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-08-09 11:12:47', 1, '2021-08-09 11:26:55', 0, NULL, 1),
(5792, 'Sri Charan cheepulla', '5', '8247649494', '9848566772', 'sricharan77781@gmail.com', '1999-02-10', 22, '2', '2', 'venkatrao', 'farmer', 8000.00, 1, 0.00, 20000.00, 'hyderabad', 'herbal', '2108090005', '1', '1', 'upload_files/candidate_tracker/90723314232_Resume (4).docx', NULL, '2', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-09 11:14:33', 1, '2021-08-09 11:17:13', 0, NULL, 1),
(5793, 'sunil mallepudi', '5', '6300597711', '', 'sunidig100@gmail.com', '1989-07-22', 32, '2', '2', 'nageshwarao', 'accountant', 30000.00, 2, 14000.00, 18000.00, 'hyderabad', 'kuketpally', '2108090006', '1', '2', 'upload_files/candidate_tracker/71902937798_resume 1 (2) (1) (1)(2)(1)(2)gg (1).doc', NULL, '2', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Is Ok, No Relevant Exp In Insurance Sales. He Is Having A Career Gap And Long-Run Doubts On This Profile. He Is Not Having A Bike And Is Around 10kms From Jubilee Hills. 50/50 Profile.', '5', '1', '0', '3', '4', '0', '2', '2021-08-16', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-09 11:59:13', 1, '2021-08-09 12:02:21', 0, NULL, 1),
(5794, '', '0', '7010349318', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108090007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-09 12:16:53', 0, NULL, 0, NULL, 1),
(5795, 'S. Nandhini', '4', '7550244584', '9677210531', 'nandhinisolai4910@gmail.com', '2000-04-22', 21, '3', '2', 'M. Solai', 'Carpenter', 10000.00, 0, 10000.00, 12000.00, 'Arumbakkam', 'Arumbakkam', '2108090008', '', '2', 'upload_files/candidate_tracker/66146262818_S. Nandhini _Resume_Format11.pdf', NULL, '1', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-09 12:19:37', 1, '2021-08-09 12:38:14', 0, NULL, 1),
(5796, 'Duraivel Pichapillai', '27', '8870690710', '9344792854', 'duraivel4609@gmail.com', '1994-03-30', 27, '2', '2', 'Pichapillai', 'Former', 48000.00, 2, 0.00, 15000.00, 'Virudhachalam', 'Chennai', '2108090009', '1', '1', 'upload_files/candidate_tracker/76955491632_DURAI.pdf', NULL, '1', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Career Gap,Much into web applications only.Will not fit for our client role', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 12:33:52', 1, '2021-08-09 12:37:17', 0, NULL, 1),
(5797, 'Preethi', '4', '9790959318', '7010349318', 'ammupreethi1113@gmail.com', '1999-11-11', 21, '3', '2', 'Ashok.M', 'Electrician', 12000.00, 1, 10000.00, 12000.00, 'Porur', 'Porur', '2108090010', '', '2', 'upload_files/candidate_tracker/55418807606_preethi.doc.pdf', NULL, '1', '2021-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-09 12:40:20', 1, '2021-08-09 12:45:04', 0, NULL, 1),
(5798, 'Hemnath T', '22', '9941120820', '', 'hemhhhh@gmail.com', '2000-07-03', 21, '2', '2', 'Kasthuri Thamodaran', 'Assistant professor', 150000.00, 1, 0.00, 5000.00, '6/2 Mannappa Lane Old Washermanpet ch-21', '6/2 Mannappa Lane Old Washermanpet Ch-21', '2108090011', '1', '1', 'upload_files/candidate_tracker/17495859667_1626413946983_Resume.pdf', NULL, '1', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good not much comfortable with the terms and conditions and most comfortable for freelance only and the expectation is very high', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 01:14:07', 1, '2021-08-09 01:25:41', 0, NULL, 1),
(5799, 'Vignesh T', '3', '9361427180', '9566260621', 'vjrvignesh21@gmail.com', '1999-12-21', 21, '2', '2', 'Thangamani', 'House wife', 30000.00, 1, 0.00, 25000.00, 'CHENNAI', 'CHENNAI', '2108090012', '1', '1', 'upload_files/candidate_tracker/24207152253_Resume (3).pdf', NULL, '1', '2021-08-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much comfortable with TxxampC,need some time to check with family.If he comes back let see.Fresher', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 01:18:15', 1, '2021-08-09 01:30:40', 0, NULL, 1),
(5800, 'Subiksha', '11', '9994545283', '', 'subikshatamilarasan259@gmail.com', '1999-09-25', 21, '2', '2', 'Latha Tamizharasan (mother)', 'None', 10000.00, 3, 0.00, 8000.00, 'Pl No :92 , RK Nagar, Bharathi road , Veppampattu.', 'Pl No :92 , RK Nagar, Bharathi Road , Veppampattu.', '2108090013', '1', '1', 'upload_files/candidate_tracker/94906333262_Subiksha~Resume.pdf', NULL, '1', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 03:16:24', 1, '2021-08-09 03:29:06', 0, NULL, 1),
(5801, 'Sivaprakasam', '2', '6374399577', '9842939182', 'prakasams22@gmail.com', '2000-01-29', 21, '2', '2', 'Ganesan', 'Milk druck driver', 84000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2108090014', '1', '1', 'upload_files/candidate_tracker/3586929661_Siva prakasam-1.pdf', NULL, '3', '2021-08-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 03:39:20', 1, '2021-08-09 03:52:12', 0, NULL, 1),
(5802, '', '0', '7200435417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108090015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-09 04:48:54', 0, NULL, 0, NULL, 1),
(5803, 'sathiyanarayanan', '2', '9842250566', '9442353240', 'msathiya1622@gmail.com', '2000-02-16', 21, '2', '2', 'manivannan', 'weaver', 10000.00, 2, 0.00, 15000.00, 'thirubuvanam', 'thirubuvanam', '2108090016', '1', '1', 'upload_files/candidate_tracker/22500962250_Sathiyanarayanan.pdf', NULL, '3', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher profile, expecting high Pay, already he received an offer for 12K and he is not comfortable with package. Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 05:04:08', 1, '2021-08-09 05:13:27', 0, NULL, 1),
(5804, 'Venkatalakshmi', '27', '9488672183', '9962443388', 'venkatalakshmi601@gmail.com', '1996-03-10', 25, '2', '1', 'Balasankar', 'Business', 40000.00, 2, 0.00, 25000.00, 'Palacode', 'Chennai', '2108090017', '1', '1', 'upload_files/candidate_tracker/22390903001_Resume.pdf', NULL, '3', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 05:36:59', 1, '2021-08-10 10:33:43', 0, NULL, 1),
(5805, 'Mohanraj K', '3', '8940026533', '8778627257', 'kmohanraj333@gmail.com', '1998-10-16', 22, '2', '2', 'Kannappan', 'Barbar', 15000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2108090018', '1', '1', 'upload_files/candidate_tracker/3931640219_Mohanraj\'s Resume.pdf', NULL, '1', '2021-08-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Working, not sure on the Notice to serve,not much comforrtable with TxxampC,if he comes back let see', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 06:02:14', 1, '2021-08-09 06:05:55', 0, NULL, 1),
(5806, 'karthikeyan c', '3', '7904648158', '7200435417', 'karthikeyanchandran2@gmail.com', '1998-07-11', 23, '2', '2', 'valarmathi c', 'mobile developer', 15000.00, 1, 14000.00, 25000.00, 'ambur', 'ambur', '2108090019', '1', '2', 'upload_files/candidate_tracker/17810050462_karthikeyan_chandran resume.pdf', NULL, '1', '2021-08-26', 3, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 06:18:09', 50, '2021-08-26 10:17:39', 0, NULL, 1),
(5807, 'Kamatchi M', '11', '9962270900', '9962517455', 'kamachibtech@gmail.com', '1992-05-30', 29, '2', '1', 'Bhuvaneshkumar', 'Safety engineer', 30000.00, 2, 0.00, 200000.00, 'Kanchipuram', 'Kanchipuram', '2108090020', '1', '1', 'upload_files/candidate_tracker/90251214845_Kamatchi-Quality Engineer( BE MBA).doc', NULL, '1', '2021-08-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'very average communication, No relevant Exp in Recruitment, worked in the manufacturing company. Sustainability Doubts', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-09 07:10:51', 1, '2021-08-09 07:31:32', 0, NULL, 1),
(5808, 'Sathishkumar', '4', '7094728590', '9360373780', 'sivasanthoshsathish11997@gmail.com', '1998-04-29', 23, '3', '2', 'Sivakumar', 'Voice process', 8000.00, 1, 0.00, 15000.00, 'S/o Sivakumar,232, Pillaiyar Kovil street, Mashar', 'New secretary coloney Velachery 4th street', '2108100001', '', '1', 'upload_files/candidate_tracker/17750813318_1627374133719_temp-efc07785-a9df-4bb4-9a7d-d34a4178b8db.doc.docx', NULL, '1', '2021-08-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 09:39:23', 1, '2021-08-10 09:49:13', 0, NULL, 1),
(5809, 'Balaji', '5', '9500128343', '', 'balajit045@gmail.com', '1991-12-28', 29, '1', '1', 'Kalpana', 'Working in Apollo hospital', 12000.00, 1, 15000.00, 25000.00, 'Pallavaram chennai 3/22 ponniamman Kovil Street', 'Pallavaram chennai', '2108100002', '', '2', 'upload_files/candidate_tracker/55882687943_Balaji_CV.doc', NULL, '1', '2021-08-10', 0, 'Job', '3', '59', '2021-08-19', 300000.00, '', '4', '2021-09-07', '1', 'Selected for Raj Kumar with CTC 300000 includes PF/PT deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 10:39:04', 60, '2021-08-13 12:54:45', 0, NULL, 1),
(5810, 'NAGARAJ YADAV', '5', '9652052040', '', 'Snagarajyadav@gmail.com', '1992-04-01', 29, '2', '1', 'kurumaiah', 'rtd', 40000.00, 2, 18000.00, 20000.00, 'hyderabad', 'mehandhipatnam', '2108100003', '1', '2', 'upload_files/candidate_tracker/78405471658_edited resume Nnnnn.docx', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 10:47:11', 1, '2021-08-10 10:53:22', 0, NULL, 1),
(5811, 'Sathish v', '4', '6379812802', '', 'sathishgowtham34@gmail.com', '2000-07-01', 21, '1', '2', 'Velayutham p', 'Auto driver', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2108100004', '', '1', 'upload_files/candidate_tracker/7324752393_JOB RESUME. PDF.pdf', NULL, '1', '2021-08-10', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Will Not Suite For Calling, No Flow In Speech', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 10:54:58', 1, '2021-08-10 11:23:49', 0, NULL, 1),
(5812, 'SELVAGANAPATHY M', '4', '9940428267', '', 'selvamuruga437@gmail.com', '2001-10-27', 19, '1', '2', 'MURUGAN S', 'coconut Vendor', 25000.00, 1, 0.00, 13000.00, 'chennai', 'Chennai', '2108100005', '', '1', 'upload_files/candidate_tracker/46032219003_1625559130599_2 Page Resume 020 Diplomo.pdf', NULL, '1', '2021-08-10', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, no flow in speech', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 10:56:21', 1, '2021-08-10 11:10:53', 0, NULL, 1),
(5813, 'Abu Siddick.S', '4', '9791852731', '9360284228', 'abu633855@gmail.com', '2000-09-01', 20, '4', '2', 'Mubeen Fathima', 'House wife', 12000.00, 0, 0.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2108100006', '', '1', 'upload_files/candidate_tracker/34274943897_ABU SIDDICK RESUME TRL.docx', NULL, '1', '2021-08-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,his focus is much towards the non voice process, just for time being looking for opportunities', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 11:14:06', 1, '2021-08-10 11:20:37', 0, NULL, 1),
(5814, 'Swetha S', '4', '6385594057', '', 'sweetlyswetha03@gmail.com', '2000-04-20', 21, '3', '2', 'D.Sivakumar', 'Coolie', 6000.00, 3, 0.00, 13500.00, 'No.40, Ambethkar St, Aranvoyal, Thiruvallur-602025', 'Aranvoyal, Thiruvallur', '2108100007', '', '1', 'upload_files/candidate_tracker/20975168970_SWETHA RESUME.docx', NULL, '1', '2021-08-10', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'she is looking for non-voice , because preparing for competitive exam. not suitable for this profile.', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 11:17:07', 1, '2021-08-10 11:25:55', 0, NULL, 1),
(5815, 'Malavath.Ramesh', '5', '7780144172', '', 'malothramesh771@gmail.com', '1995-03-11', 26, '2', '2', 'kishan', 'real estate broker', 18000.00, 5, 0.00, 15000.00, 'hyderabad', 'sherlingampally', '2108100008', '1', '1', 'upload_files/candidate_tracker/14028402008_MALAVATH RAMESH.pdf', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 11:30:56', 1, '2021-08-10 11:34:24', 0, NULL, 1),
(5816, 'Harish kumar', '22', '8270381322', '', 'harishtheni2518@gmail.com', '1998-06-25', 23, '2', '2', 'Murugan', 'Police', 35000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai Ekkatuphangal', '2108100009', '1', '1', 'upload_files/candidate_tracker/66682597845_M..harishkumar.docx', NULL, '3', '2021-08-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication,No basic knowledge ano no stability', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 11:50:43', 1, '2021-08-10 12:12:06', 0, NULL, 1),
(5817, 'G G KISHORE KUMAR', '5', '9959629974', '', 'ggandham.kishore88@gmail.com', '1998-03-30', 23, '2', '1', 'bagyalakshmi', 'house wife', 35000.00, 2, 22000.00, 30000.00, 'hyderabad', 'mehnadhipatnam', '2108100010', '1', '2', 'upload_files/candidate_tracker/57316594882_0_kishore RESUME(3).pdf', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 11:58:05', 1, '2021-08-10 11:59:57', 0, NULL, 1),
(5818, '', '0', '9080122997', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108100011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-10 12:04:30', 0, NULL, 0, NULL, 1),
(5819, 'Thomas Raj I', '6', '8939411402', '9176995402', 'ithomas.raj@gmail.com', '1992-11-04', 28, '1', '2', 'G.issac Joseph', 'Pastor', 3000.00, 0, 12000.00, 13000.00, 'Chennai', 'Chennai', '2108100012', '', '2', 'upload_files/candidate_tracker/5618811258_thomas Raj007.pdf', NULL, '1', '2021-08-10', 0, 'No', '5', '34', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-10 12:16:09', 60, '2021-08-10 03:37:29', 0, NULL, 1),
(5820, 'Harsha vardhan', '5', '8688088809', '', 'raj.bablu9253@gmail.com', '1997-04-28', 24, '2', '1', 'nandhini', 'drafting', 70000.00, 1, 20000.00, 20000.00, 'hyderabad', 'kedrabath', '2108100013', '1', '2', 'upload_files/candidate_tracker/21401651748_1628305952227Resume_B.docx', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 12:26:54', 1, '2021-08-10 12:29:54', 0, NULL, 1),
(5821, 'mohammed soban.c', '27', '8610210988', '9944526762', 'md.souban@gmail.com', '1990-07-18', 31, '2', '2', 'shakeel ahmed.c', 'businessman', 25000.00, 2, 10000.00, 15000.00, 'ambur', 'ambur', '2108100014', '1', '2', 'upload_files/candidate_tracker/64051489431_MOHAMMED SOUBAN1.doc', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 01:04:21', 1, '2021-08-10 01:56:44', 0, NULL, 1),
(5822, 'GOWTHAM RAJ', '27', '7502663438', '', 'gowthamraj818@gmail.com', '1996-11-03', 24, '2', '2', 'Sekar', 'No', 20000.00, 1, 0.00, 300000.00, 'TIRUPATTUR', 'Ashoke piller', '2108100015', '1', '1', 'upload_files/candidate_tracker/78351200190_GOWTHAMRAJ RESUME.pdf', NULL, '1', '2021-08-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 01:23:01', 1, '2021-08-11 03:07:38', 0, NULL, 1),
(5823, 'K.Vivedha', '13', '7598970758', '9786535543', 'kvivedha1999@gmail.com', '1999-07-22', 22, '2', '2', 'p.Kanagaraj', 'Farmer', 6000.00, 2, 0.00, 20000.00, 'Lingampatti, Kovilpatti (tk), Tuticorin (dd)', 'Mandhaveli,chennai.', '2108100016', '1', '1', 'upload_files/candidate_tracker/764910319_Kvivedha Resume.docx', NULL, '2', '2021-08-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher knowledge ,having basic knowledge in HTML,CSS,JS but not comfort with TxxampC.Requested time to confirm with parents but left without convey', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 01:29:32', 1, '2021-08-10 01:34:10', 0, NULL, 1),
(5824, 'Korivi Saiteja', '5', '8074685396', '', 'saitejabablu36@gmail.com', '2000-03-12', 21, '2', '2', 'late / guardian - korivi babu', 'working', 22000.00, 1, 0.00, 15000.00, 'hyderabad', 'uppal', '2108100017', '1', '1', 'upload_files/candidate_tracker/96192009010_K Sai Teja.pdf', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 02:37:38', 1, '2021-08-10 02:44:17', 0, NULL, 1),
(5825, 'SHAIK MOINUDDIN', '5', '9392380759', '', 'moeenshaik6533@gmail.com', '1996-12-08', 24, '2', '2', 'shaik', 'driver', 20000.00, 2, 0.00, 20000.00, 'hyderabad', 'tarunaka', '2108100018', '1', '1', 'upload_files/candidate_tracker/55041781538_Moeen shaik -1.docx', NULL, '2', '2021-08-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 02:52:35', 1, '2021-08-10 02:56:08', 0, NULL, 1),
(5826, 'S.Arun kumar', '2', '8098546445', '', 'arunkumarsit122000@gmail.com', '2000-02-01', 21, '2', '2', 'subramanian r', 'farmer', 12000.00, 1, 0.00, 20000.00, 'Mayiladudurai', 'Mayiladudurai', '2108100019', '1', '1', 'upload_files/candidate_tracker/24301172939_arun_resume.docx', NULL, '1', '2021-09-08', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not attended', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 03:03:37', 50, '2021-09-08 11:54:53', 0, NULL, 1),
(5827, '', '0', '6383620796', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108100020', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-10 03:13:21', 0, NULL, 0, NULL, 1),
(5828, 'Suvethan', '27', '9578112400', '', 'Hassansuvethan@gmail.com', '1996-09-26', 24, '2', '2', 'Packiri samy', 'Driver', 20000.00, 1, 0.00, 200000.00, 'Thiruraipoondi', 'Thiruraipoondi', '2108100021', '1', '1', 'upload_files/candidate_tracker/75656501385_swethan IT - 1625466982.pdf', NULL, '1', '2021-08-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Client round rejected', '2', '1', '0', '1', '1', '0', '2', '2021-08-13', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-10 03:51:37', 1, '2021-08-10 03:55:35', 0, NULL, 1),
(5829, 'Mathankumar V', '27', '9655783310', '7010261163', '222mathank@gmail.com', '1998-05-08', 23, '2', '2', 'Velankanni', 'Daily wages', 7000.00, 2, 0.00, 200000.00, 'Dindigul', 'Dindigul', '2108100022', '1', '1', 'upload_files/candidate_tracker/18608543085_Mathankumar resume.pdf', NULL, '2', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '6', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 05:00:44', 1, '2021-08-10 05:37:27', 0, NULL, 1),
(5830, 'Sridevi', '13', '8428019870', '', 't.m.sridevi184901@gmail.com', '1999-06-25', 22, '2', '2', 'Mothilal', 'Printing office', 8000.00, 1, 0.00, 15000.00, 'Mela anuppanadi housing board', 'Madurai', '2108100023', '1', '1', 'upload_files/candidate_tracker/94388164150_resume for interview.pdf', NULL, '2', '2021-08-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task not completed. even she doesnxquott know how to run the application.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-10 08:48:04', 1, '2021-08-10 09:24:18', 0, NULL, 1),
(5831, '', '0', '7780110781', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108110001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-11 07:07:20', 0, NULL, 0, NULL, 1),
(5832, '', '0', '9080099514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108110002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-11 09:53:49', 0, NULL, 0, NULL, 1),
(5833, 'G Manikandan', '6', '9176379100', '9962103611', 'Gmani1465@gmail.com', '1990-11-11', 30, '2', '1', 'R gopi', 'Auto drive', 15000.00, 2, 25000.00, 25000.00, 'Tharmani', 'Tharmani', '2108110003', '1', '2', 'upload_files/candidate_tracker/58782266079_Manikandan G_Resume_28-11-2020.docx', NULL, '1', '2021-08-11', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not yet seen this candidate but he is assigned in my rms so kindly check \n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2021-08-11 10:07:27', 60, '2021-08-11 07:22:08', 0, NULL, 1),
(5834, 'Venkateswara Reddy', '5', '9640317699', '', 'vennapusanani123@gmail.com', '1999-07-22', 22, '2', '2', 'v.nagireddy', 'farmer', 25000.00, 0, 0.00, 25000.00, 'hyderabad', 'kuketpally', '2108110004', '1', '1', 'upload_files/candidate_tracker/5984941459_Nani Resume-converted.docx', NULL, '2', '2021-08-12', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'planning to settle in canada by 2022 sep till then looking for job, not a long term employee', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-11 10:52:16', 1, '2021-08-11 11:00:29', 0, NULL, 1),
(5835, 'RANADHEER KUMAR GYARA', '5', '9652416231', '', 'ranadheergyara8@gmail.com', '1994-10-22', 26, '2', '2', 'venkataiah', 'farmer', 15000.00, 1, 0.00, 15000.00, 'hyderabad', 'uppal', '2108110005', '1', '1', 'upload_files/candidate_tracker/77843694538_Ranadheer (1).docx', NULL, '2', '2021-08-12', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', '2016-2021 - was doing farming very average in communication, can not handle pressure, ver new to sales', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-11 11:01:26', 1, '2021-08-11 11:19:23', 0, NULL, 1),
(5836, 'Monish J', '6', '8148086369', '8667726384', 'Monishsam07@Gmail.com', '1995-10-26', 25, '2', '2', 'Jeyachandran R', 'Fisherman', 15000.00, 2, 0.00, 15000.00, 'Royapuram, chennai.', 'Royapuram, chennai.', '2108110006', '1', '1', 'upload_files/candidate_tracker/62591998777_monish.doc', NULL, '1', '2021-08-11', 0, '', '3', '59', '2021-08-12', 192000.00, '', '3', '2021-12-16', '1', 'Selected for Syed Team with CTC 192000 includes PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-11 11:19:13', 50, '2021-08-12 01:26:35', 0, NULL, 1),
(5837, 'Rakesh Rosan Mishra', '5', '8594858682', '', 'rakesh.ro.mishra@gmail.com', '1994-06-05', 27, '2', '2', 'ratikanta mishra', 'press reporter', 25000.00, 0, 20000.00, 25000.00, 'hyderabad', 'madhapur', '2108110007', '1', '2', 'upload_files/candidate_tracker/44020633546_MY UPDATED CV.docx', NULL, '2', '2021-08-12', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-11 11:42:28', 1, '2021-08-11 11:45:35', 0, NULL, 1),
(5838, 'Vipin', '11', '9655132443', '', 'ivipincm@gmail.com', '1997-07-26', 24, '2', '2', 'Chandramohan', 'Nil', 27000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108110008', '1', '1', 'upload_files/candidate_tracker/28019114094_0-5688766837_20210810_193718_0000.pdf', NULL, '1', '2021-08-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Frehser and the Salary expectation is min 18K and very stubborn towards the package', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 11:50:13', 1, '2021-08-11 11:58:59', 0, NULL, 1),
(5839, 'Dinesh Sharma', '6', '8124096867', '', 'sharmarockzzz.sd@gmail.com', '1994-01-17', 27, '2', '2', 'P.Chitti babu', 'Meason', 25000.00, 0, 15000.00, 18000.00, 'Chennai,Maduravoyal', 'Chennai, Maduravoyal', '2108110009', '3', '2', 'upload_files/candidate_tracker/93704049299_dinesh.docx', NULL, '1', '2021-08-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much open up, will not suits for our sales profile. No relevant Exp.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-11 11:56:41', 1, '2021-08-11 12:12:02', 0, NULL, 1),
(5840, 'Vignesh. R', '6', '8778832447', '7845010940', 'Mevicky1996@gmail.com', '1996-07-30', 25, '1', '2', 'M. Ramu', 'Supervisor', 12000.00, 1, 13000.00, 18000.00, 'Pallavaram', 'No 53 mettai Street, Anakaputhur Chennai 600070', '2108110010', '', '2', 'upload_files/candidate_tracker/45917481569_New doc May 3, 2021 4.22 PM.pdf', NULL, '1', '2021-08-11', 15, '555599', '3', '59', '1970-01-01', 192000.00, '', '2', '1970-01-01', '1', 'Selected For Guru Team With CTC 192000 Includes PF/ESI Deductions.Guru Reference And Manager Round Has Been Taken By Syed Abthali', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-08-11 12:01:05', 60, '2021-08-12 01:00:11', 0, NULL, 1),
(5841, 'Srikanth', '5', '9398447801', '', 'srikanth.bejjanki970@gmail.com', '1996-05-10', 25, '2', '2', 'veerasammay', 'farmer', 18000.00, 2, 14000.00, 20000.00, 'hyderabad', 'amirpet', '2108110011', '1', '2', 'upload_files/candidate_tracker/23402809449_Sri Resume.doc', NULL, '2', '2021-08-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-11 12:49:23', 1, '2021-08-11 12:53:22', 0, NULL, 1),
(5842, 'Saravana Priya', '27', '9943767965', '9790201965', 'priyasaravanan1693@gmail.com', '1993-07-16', 28, '2', '1', 'Manoharan.G', 'Business', 20000.00, 2, 25000.00, 30000.00, 'Chennai', 'Chennai', '2108110012', '1', '2', 'upload_files/candidate_tracker/26789980406_Saravana Priya.M(B.Tech)2014.docx', NULL, '3', '2021-08-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'salary expt is high', '2', '2', '', '1', '3', '', '2', '2021-08-18', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 12:50:06', 50, '2021-08-17 12:18:44', 0, NULL, 1),
(5843, 'Sabitha', '23', '9629427783', '', 'sabithapanneerselvam@gmail.com', '1995-03-11', 26, '2', '2', 'Panneerselvam', 'Farmer', 100000.00, 3, 3.20, 4.00, 'Cuddalore', 'Cuddalore', '2108110013', '1', '2', 'upload_files/candidate_tracker/15072365486_Resume_17-06-2021.pdf', NULL, '1', '2021-08-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task Not Completed', '2', '1', '', '1', '1', '', '2', '2021-08-20', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 05:16:08', 50, '2021-08-18 12:13:07', 0, NULL, 1),
(5844, 'Ganesh Kumar M', '23', '7708507979', '', 'gkmurugan1996@gmail.com', '1996-05-20', 25, '2', '2', 'Murugan', 'Driver', 1.60, 1, 0.00, 17000.00, 'Tirunelveli', 'Singaperumal kovil', '2108110014', '1', '1', 'upload_files/candidate_tracker/20854628128_MGanesh.pdf', NULL, '2', '2021-08-25', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 05:29:21', 1, '2021-08-24 04:42:10', 0, NULL, 1),
(5845, 'Geetha', '11', '8012996839', '', 'geethachaariya@gmail.com', '1994-08-22', 26, '2', '2', 'Venkatesan', 'Gold Smith', 25000.00, 2, 0.00, 15000.00, 'Tiruvallur', 'Tiruvallur', '2108110015', '1', '1', 'upload_files/candidate_tracker/61884454425_Resume.docx', NULL, '1', '2021-08-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-11 07:31:44', 1, '2021-08-11 07:36:51', 0, NULL, 1),
(5846, 'Ajay Batchu', '5', '9704287524', '', 'ajaybatchu123@gmail.com', '1997-01-30', 24, '2', '2', 'ramu', 'rtd', 25000.00, 2, 24000.00, 27000.00, 'hyderabad', 'secundrabad', '2108120001', '1', '2', 'upload_files/candidate_tracker/66194964351_Resume_ajay (2).pdf', NULL, '2', '2021-08-13', 0, '', '3', '59', '2021-08-16', 340000.00, '', '2', '1970-01-01', '1', 'Selected for Hyderabad team with CTC 340000 includes PF/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-12 10:59:14', 60, '2021-08-14 10:45:58', 0, NULL, 1),
(5847, 'Rajalakshmi M', '5', '9360820714', '9444066532', 'Rajisatya1999@gmail.com', '1999-08-27', 21, '3', '2', 'Satyanarayana M', 'manager', 350000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108120002', '', '1', 'upload_files/candidate_tracker/81941705359_RajalakshmiM resume.pdf', NULL, '1', '2021-08-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp,looking only for Accounts profile.Will not sustain with is for a long', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-12 11:04:05', 1, '2021-08-12 11:13:10', 0, NULL, 1),
(5848, 'Manoj Bezawada', '5', '9573811067', '', 'manojbezawada2723@gmail.com', '1998-08-12', 23, '2', '1', 'murali krishna bezawada', 'own building contract company', 50000.00, 0, 0.00, 18000.00, 'hyderabad', 'old alwal', '2108120003', '1', '1', 'upload_files/candidate_tracker/17235254141_Manoj Bezawada_Resume_Format5.pdf', NULL, '2', '2021-08-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-12 11:06:13', 1, '2021-08-12 11:08:54', 0, NULL, 1),
(5849, 'Sai Charan', '5', '8341871805', '', 'saicharangoud7097@gmail.com', '1999-05-18', 22, '2', '2', 'krishna', 'self employment-transportation', 50000.00, 1, 0.00, 15000.00, 'hyderabad', 'tarnaka', '2108120004', '1', '1', 'upload_files/candidate_tracker/69251107100_sai charan goud.docx', NULL, '2', '2021-08-13', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attend', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-12 11:09:51', 1, '2021-08-12 11:13:44', 0, NULL, 1),
(5850, 'G.charulatha', '4', '9087275246', '', 'Charugopal61121@gmail.com', '2001-06-06', 20, '2', '2', 'M.Gopal', 'Plumber', 10000.00, 1, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2108120005', '1', '1', 'upload_files/candidate_tracker/63418245467_G.Charulatha.pdf', NULL, '1', '2021-08-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communicaiton Average,she got offer in Axis and in terms of target/presuusre she didnxquott join.Her main focus is into Non Voice only', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-12 11:20:04', 50, '2021-08-12 01:36:33', 0, NULL, 1),
(5851, 'P.INDHUMATHI', '4', '8682962549', '8072495426', 'angel1351998@gmail.com', '1998-05-13', 23, '3', '2', 'M.PALANI', 'FORMER', 15000.00, 2, 0.00, 11000.00, '23/w2, Ambedkar street,Manavur.', '23/W2, Ambedkar Street,Manavur', '2108120006', '', '1', 'upload_files/candidate_tracker/95928743755_indhu resume latest.docx', NULL, '1', '2021-08-12', 0, '', '3', '59', '2021-08-16', 120000.00, '', '0', NULL, '2', 'Selected for Tiruvallur team with CTC 120000 in cash mode', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-12 11:38:54', 1, '2021-08-12 11:52:28', 0, NULL, 1),
(5852, 'A.ELAKKIYA ARASI', '4', '9159220350', '9789155433', 'elakkiyaarasi2@gmail.com', '1997-08-31', 23, '3', '2', 'D.AMBEDKAR', 'Teacher', 15000.00, 2, 0.00, 11000.00, '149, Perumal koil street,Pagasalai.', '149, Perumal Koil Street,Pagasalai.', '2108120007', '', '1', 'upload_files/candidate_tracker/30922728153_elakiya resume.docx', NULL, '1', '2021-08-12', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'voice Very low and not suitable for this profile.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-12 11:57:57', 1, '2021-08-12 12:08:22', 0, NULL, 1),
(5853, 'Shanukanth Choudhry', '5', '8019128923', '', 'shanukanth97@gmail.com', '1997-11-24', 23, '2', '2', 'deshik', 'self employed', 40000.00, 2, 212000.00, 20000.00, 'hyderabad', 'secundrabad', '2108120008', '1', '2', 'upload_files/candidate_tracker/94315517837_shanu vc amz.docx', NULL, '2', '2021-08-13', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Looking for accounts and Finance profile job', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-12 12:41:37', 1, '2021-08-12 12:44:43', 0, NULL, 1),
(5854, 'Praveen Kumar.m', '4', '9344376790', '9790154582', 'praveenpk12a@gmail.com', '2001-10-15', 19, '1', '2', 'Murugesan', 'Business', 20000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2108120009', '', '1', 'upload_files/candidate_tracker/77909243230_resume.pdf', NULL, '1', '2021-08-12', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal REference,Looking for Logistics domain,will not sustain in our field', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-12 12:52:50', 1, '2021-08-12 01:02:22', 0, NULL, 1),
(5855, 'lokesh A', '27', '6379196499', '', 'lokeshcse215@gmail.com', '1999-04-17', 22, '2', '2', 'ayyothi', 'framer', 1.40, 0, 0.00, 2.40, 'Chennai', 'Chennai', '2108120010', '1', '1', 'upload_files/candidate_tracker/6117300624_lOKESHCSE17.pdf', NULL, '1', '2021-08-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 03:09:13', 1, '2021-08-12 03:26:55', 0, NULL, 1),
(5856, 'Saranya priya K', '13', '9940330971', '', 'priyasaranyak@gmail.com', '1999-11-02', 21, '2', '2', 'Parent', 'Electrician', 200000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2108120011', '1', '1', 'upload_files/candidate_tracker/36133381514_Saranya_Priya_K_resume-4.pdf', NULL, '1', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 03:17:15', 1, '2021-08-12 03:22:32', 0, NULL, 1),
(5857, 'padmashree.m', '2', '7358446402', '', 'padmashreemurugan@gmail.com', '1999-09-27', 21, '2', '2', 'murugan', 'driver', 200000.00, 1, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2108120012', '1', '1', 'upload_files/candidate_tracker/56923420296_RESUME.pdf', NULL, '1', '2021-08-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need time to join post August only she can join,Documents is in the college,need time to confirm with family on txxampC.Hand injury xxamp if she comes back let see', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 03:27:30', 1, '2021-08-12 07:13:31', 0, NULL, 1),
(5858, 'Keerthana', '2', '9940638260', '', 'jenikeerthi723@gmail.com', '1999-09-22', 21, '2', '2', 'Amudha', 'Tailoring', 20000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2108120013', '1', '1', 'upload_files/candidate_tracker/34774760582_keerthana.pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Update', '2', '2', '', '1', '1', '', '2', '2021-08-18', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 03:54:55', 7, '2021-08-17 06:01:02', 0, NULL, 1),
(5859, 'Srivathsan', '23', '7708852147', '', 'srivathsan.r.cse@gmail.com', '1995-06-08', 26, '2', '2', 'Rqvi', 'Teacher', 50000.00, 0, 13000.00, 30000.00, 'Anna nagar', 'Anna nagar', '2108120014', '1', '2', 'upload_files/candidate_tracker/67825658739_Srivathsan.r.docx', NULL, '1', '2021-08-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 04:41:04', 1, '2021-08-12 04:45:30', 0, NULL, 1),
(5860, 'bhuvaneshwaran p', '23', '8438935848', '', 'pbhuvaneshwaran@gmail.com', '1995-07-12', 26, '2', '2', 'leelavathi p', 'housewife', 10000.00, 1, 0.00, 20000.00, 'saidapet', 'saidapet', '2108120015', '1', '1', 'upload_files/candidate_tracker/13959584055_bhuvanesh resume.pdf', NULL, '1', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 05:44:38', 1, '2021-08-12 06:03:48', 0, NULL, 1),
(5861, 'Mohammed Jameel asan p', '23', '8838266131', '7299100689', 'jameel.asan2020@gmail.com', '1998-11-24', 22, '2', '2', 'Peer Mohamed a', 'Salesman', 15000.00, 1, 0.00, 25000.00, 'No 179 Jain Abhishek Apartment ,Tambaram,Selaiyur', 'No 179 Jain Abhishek Apartment ,Tambaram', '2108120016', '1', '1', 'upload_files/candidate_tracker/56243982407_Resume Jameel.pdf', NULL, '1', '2021-08-18', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task given was not completed up to our satisfaction.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 05:56:33', 7, '2021-08-18 12:27:43', 0, NULL, 1),
(5862, 'praveen kumar', '23', '7904505309', '8428986748', 'praveen842898@gmail.com', '1998-07-01', 23, '2', '2', 'prem sekar', 'screen printer', 15000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2108120017', '1', '1', 'upload_files/candidate_tracker/93136371419_Design Resume.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, doesnt know html and css, no working exp, done designing course and expt is 20k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 06:17:13', 1, '2021-08-12 06:30:34', 0, NULL, 1),
(5863, 'dinahar', '23', '8825948052', '', 'dinahar27599@gmail.com', '1999-05-27', 22, '2', '2', 'madhavan', 'consultant', 4.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2108120018', '1', '1', 'upload_files/candidate_tracker/94995503319_Dinahar.pdf', NULL, '1', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-12 06:39:39', 1, '2021-08-12 06:43:49', 0, NULL, 1),
(5864, '', '0', '9291575469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108130001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-13 09:08:25', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5865, 'Balaji', '4', '9080976831', '7904174492', 'baaaala1996@gmail.com', '1996-07-19', 25, '1', '2', 'K.Nagappan', 'Business', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2108130002', '', '1', 'upload_files/candidate_tracker/37966581819_Balaji_Entry Level Resume – 01.pdf', NULL, '1', '2021-08-13', 0, 'JOBS', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,not open up will not handle pressure,career Gap not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-13 10:12:26', 1, '2021-08-13 10:34:33', 0, NULL, 1),
(5866, 'Askar Ali.a', '4', '9042753866', '7305882711', 'Askarali101@gmail.com', '2000-11-01', 20, '1', '2', 'Ashamed saleem', 'Business', 30000.00, 2, 0.00, 13000.00, 'Iyyappanthangal', 'Iyyappanthangal', '2108130003', '', '1', 'upload_files/candidate_tracker/20529398227_CV_2021-07-03-122601.pdf', NULL, '1', '2021-08-13', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up, fresher too long will not sustain for a long', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-13 10:21:31', 1, '2021-08-13 10:48:24', 0, NULL, 1),
(5867, 'Ajay mudhiraj', '5', '8125428366', '', 'Info.Ajay8125@gmail.com', '1998-06-01', 23, '2', '2', 'ramchander', 'working', 60000.00, 2, 12000.00, 20000.00, 'hyderabad', 'uppal', '2108130004', '1', '2', 'upload_files/candidate_tracker/31642549661_Resume_Ajay (1).pdf', NULL, '2', '2021-08-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-13 10:22:58', 1, '2021-08-13 10:26:13', 0, NULL, 1),
(5868, 'Vigneshwaran.S', '4', '9445481374', '6379143396', 'mptvicky0010@gmail.com', '1998-10-03', 22, '2', '2', 'Sowri Rajan.R', 'Police', 30000.00, 1, 0.00, 12000.00, 'F - 6 Police Quarters, Saidapet Chennai -15', 'F - 6 Police Quarters, Saidapet Chennai -15', '2108130005', '1', '1', 'upload_files/candidate_tracker/13304857981_Vigneshwaran Resume.docx', NULL, '1', '2021-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-13 10:29:46', 50, '2021-08-13 12:39:31', 0, NULL, 1),
(5869, 'Mulam reddy Brahma reddy', '5', '9705201202', '', 'mbreddy9705@gmail.com', '1998-01-01', 23, '2', '2', 'venkatareddy', 'farmer', 40000.00, 1, 14000.00, 20000.00, 'hyderabad', 'kuketpally', '2108130006', '1', '2', 'upload_files/candidate_tracker/8772101634_bhramareddy.doc', NULL, '2', '2021-08-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-13 10:30:04', 1, '2021-08-13 10:32:33', 0, NULL, 1),
(5870, 'Ujjay singh', '4', '9360026405', '', 'ujjaymass90@gmail.com', '2002-07-12', 19, '2', '2', 'Ramya kumari', 'Advocate', 30000.00, 1, 0.00, 12000.00, '70/85 nageshwara gurusami street ayanavaram', 'Inbalaya apartments Raghavendra road kolathur', '2108130007', '1', '1', 'upload_files/candidate_tracker/95032588395_BIO Fresh.docx', NULL, '1', '2021-08-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Applied for B.E regular post Diploma completion. just for time being looking for opportunities', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-13 10:32:10', 50, '2021-08-13 12:39:11', 0, NULL, 1),
(5871, 'Leo samuel l', '20', '8056939259', '9840033487', 'leosamuel669@gmail.com', '1997-07-10', 24, '4', '2', 'Lurthunathan', 'Koli', 12.00, 1, 15.00, 17.00, 'Tiruvottiyur kaladaipet', 'Tiruvottiyur', '2108130008', '', '2', 'upload_files/candidate_tracker/48931241376_Leo Samuel.pdf', NULL, '2', '2021-08-13', 2, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'Sustainability', '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-13 10:34:19', 1, '2021-08-13 11:06:00', 0, NULL, 1),
(5872, 'Kotla srikanth Yadav', '5', '9030606878', '', 'Kotla.srikanthyadav@gmail.com', '1996-03-10', 25, '2', '2', 'bakkaiaha', 'govt employee', 45000.00, 1, 16500.00, 25000.00, 'hyderabad', 'lb nagar', '2108130009', '1', '2', 'upload_files/candidate_tracker/5186699715_Resume Srikanth Yadav.pdf', NULL, '2', '2021-08-16', 0, '', '8', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not attended the interview', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-13 10:36:25', 50, '2021-08-16 11:05:10', 0, NULL, 1),
(5873, 'Vijayabalan', '2', '6384844188', '', 'vijaykee3405@gmail.com', '2000-05-24', 21, '2', '2', 'Ravichandran', 'Former', 12000.00, 1, 0.00, 25000.00, 'Cuddalore', 'Cuddalore', '2108130010', '1', '1', 'upload_files/candidate_tracker/26095504505_vijayabalan_cv.docx', NULL, '2', '2021-08-21', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, no basic knowledge in coding, high job need, willing to learn, looking for internship.', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 10:39:41', 7, '2021-08-21 01:08:19', 0, NULL, 1),
(5874, 'Hemalatha d', '4', '7358796690', '9342619772', 'reshmahemalatha01@gmail.com', '2003-03-15', 18, '2', '2', 'Devaraj N', 'Driver', 12000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2108130011', '1', '1', 'upload_files/candidate_tracker/6088451569_Document-WPS Office.pdf', NULL, '1', '2021-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-13 10:54:27', 50, '2021-08-13 12:38:51', 0, NULL, 1),
(5875, 'kamesh j', '4', '7092301481', '8189890839', 'kamjeev2@gmail.com', '1999-02-16', 22, '2', '2', 'j. sumathi', 'tailor', 20000.00, 1, 0.00, 12000.00, 'thirumazhisai', 'thirumazhisai', '2108130012', '1', '1', 'upload_files/candidate_tracker/43482063975_1601612978624_kam-converted_06-Oct-20_07_05_41-converted-converted.pdf', NULL, '1', '2021-08-13', 0, '', '3', '59', '2021-08-16', 120000.00, '', '0', NULL, '2', 'Selected for Tiruvallur team with cTC 120000 in cash mode', '1', '1', '0', '4', '6', '0', '2', '2021-08-14', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-13 10:55:31', 1, '2021-08-13 12:03:15', 0, NULL, 1),
(5876, '', '0', '9444306766', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108130013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-13 11:49:55', 0, NULL, 0, NULL, 1),
(5877, '', '0', '8190011910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108130014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-13 12:46:52', 0, NULL, 0, NULL, 1),
(5878, 'Naveen joyson', '3', '7904933348', '', 'samjoyson6@gmail.com', '1998-02-24', 23, '2', '2', 'Daniel rajan', 'Clerk', 35000.00, 1, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2108130015', '1', '1', 'upload_files/candidate_tracker/18768003787_Resume-Naveen(1).pdf', NULL, '1', '2021-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 12:59:30', 1, '2021-08-13 01:11:03', 0, NULL, 1),
(5879, 'yogesh', '23', '6381890459', '', 'yogeshmohan241995@gmail.com', '1995-11-24', 0, '2', '2', 'mohan.d', 'ui developer', 400000.00, 0, 210000.00, 250000.00, 'Chennai', 'Chennai', '2108130016', '1', '2', 'upload_files/candidate_tracker/95165221581_web-designer-yogesh.docx', NULL, '1', '2021-08-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not interested in the profile.', '2', '2', '0', '1', '3', '0', '2', '2021-08-19', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 03:17:18', 1, '2021-08-13 04:38:50', 0, NULL, 1),
(5880, 'Balaji', '23', '8124856183', '', 'balajipari91@gmail.com', '1991-12-29', 29, '2', '2', 'Pari', 'Electrician', 25000.00, 0, 310000.00, 500000.00, 'Yes', 'Chennai', '2108130017', '1', '2', 'upload_files/candidate_tracker/61945636301_1625573757271_Balaji new.docx', NULL, '1', '2021-08-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Turned Up', '2', '2', '', '1', '1', '', '2', '2021-08-24', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 03:41:20', 7, '2021-08-18 11:22:47', 0, NULL, 1),
(5881, 'revan rufus s', '23', '9789065436', '', 'revanrufus@gmail.com', '1997-12-07', 23, '2', '2', 'sebastin', 'farmer', 25000.00, 1, 0.00, 3.00, 'chennai', 'vellore', '2108130018', '1', '1', 'upload_files/candidate_tracker/37292336642_Revan+Rufus+Resume.pdf', NULL, '1', '2021-08-17', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 03:47:31', 1, '2021-08-13 03:53:09', 0, NULL, 1),
(5882, 'Tajul Islam', '2', '8825926621', '', 'tajulislamj200@gmail.com', '2000-05-02', 21, '2', '2', 'Jameel khan', 'Supervisor', 12000.00, 2, 0.00, 10000.00, 'Pudumadam', 'Ashok Nagar', '2108130019', '1', '1', 'upload_files/candidate_tracker/82881625669_Resume-1-1-2_compressed.pdf', NULL, '1', '2021-08-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge, Not comfortable with terms and conditions. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 04:12:54', 1, '2021-08-13 04:15:46', 0, NULL, 1),
(5883, 'pavithra', '23', '7871688118', '', 'pavithra20.pr@gmail.com', '1994-04-20', 27, '2', '1', 'ravikumar', 'ui designer', 35000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2108130020', '1', '1', 'upload_files/candidate_tracker/40347478231_Pavithra-UI-Designer.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 3m training and 2m exp in designing, doesnt know html and css, expt is 15k.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 04:17:45', 1, '2021-08-16 07:15:53', 0, NULL, 1),
(5884, 'syed hameed hussain', '22', '9941878323', '', 'hameed05515@gmail.com', '1997-08-13', 24, '2', '2', 'na', 'na', 1.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2108130021', '1', '1', 'upload_files/candidate_tracker/63973763666_hameed Resume.docx', NULL, '1', '2021-08-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-13 04:36:19', 1, '2021-08-13 04:41:18', 0, NULL, 1),
(5885, 'srinivasan', '13', '7358866974', '', 'seenuvasantps@email.com', '1998-11-25', 22, '2', '2', 'dharuman', 'Vegetable business', 15000.00, 1, 0.00, 25000.00, 'cuddalore', 'chennai', '2108130022', '1', '1', 'upload_files/candidate_tracker/38355655261_srinivasan resum.pdf', NULL, '2', '2021-08-17', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Response.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-13 05:14:01', 1, '2021-08-17 05:34:59', 0, NULL, 1),
(5886, '', '0', '9751136611', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108130023', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-13 06:49:25', 0, NULL, 0, NULL, 1),
(5887, 'BALAMURUGAN A', '6', '9840723186', '', 'balamurugan5646@gmail.com', '1996-12-04', 24, '4', '2', 'Anbu', 'Labour', 12000.00, 0, 13800.00, 14000.00, 'Saidapet Chennai', 'Saidapet Chennai', '2108140001', '', '2', 'upload_files/candidate_tracker/56372546930_Balamurugan Resume.pdf', NULL, '1', '2021-08-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Requested candidate to share the previous company documents What he has, but didnt turn back and no relevant Exp in sales', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-14 11:18:30', 1, '2021-08-14 11:31:44', 0, NULL, 1),
(5888, 'Premalatha', '4', '9344194339', '', 'premalatha26920@gmail.com', '2000-09-26', 20, '1', '2', 'Panneer selvam', 'Carpenter', 7000.00, 1, 0.00, 11.00, 'Melmaruvathur', 'Melmaruvathur', '2108140002', '', '1', 'upload_files/candidate_tracker/96821599413_CV_2021-08-04-082716.pdf', NULL, '3', '2021-08-13', 0, '2108140002', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-14 11:23:40', 1, '2021-08-14 11:28:22', 0, NULL, 1),
(5889, 'Adithya v', '5', '9206952481', '7090988153', 'johnzadithya2000@gmail.com', '2000-06-20', 21, '1', '2', 'Maalika', 'House wife', 20000.00, 3, 0.00, 21000.00, 'Viveknagar further extension bangalore', 'Viveknagar further extension Bangalore', '2108140003', '', '1', 'upload_files/candidate_tracker/45981826062_Adithya RESUME.pdf', NULL, '1', '2021-08-14', 0, 'P1181', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-14 12:56:30', 1, '2021-08-14 01:02:36', 0, NULL, 1),
(5890, 'saravanan.v', '4', '8925277287', '', 'bruceleesaravanan35@gmail.com', '1999-12-23', 21, '2', '2', 'karpagam.v', 'flower selling', 180000.00, 1, 0.00, 10000.00, 'no.siven koil street', 'no.siven kovil street', '2108140004', '1', '1', 'upload_files/candidate_tracker/87767505217_New doc 14-Aug-2021 1.13 pm.pdf', NULL, '1', '2021-08-14', 0, '', '3', '59', '2021-08-19', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Tiruvallur with CTC 120000 Cash mode', '1', '1', '', '1', '1', '', '1', '1970-01-01', '2', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-08-14 01:08:34', 60, '2022-02-04 01:17:44', 0, NULL, 1),
(5891, '', '0', '7358203825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108150001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-15 09:36:55', 0, NULL, 0, NULL, 1),
(5892, 'rufus mathew', '13', '7708839423', '', 'mc.rufus29@outlook.com', '1998-04-29', 23, '2', '2', 'jeeva kumar a', 'driver', 15000.00, 1, 12000.00, 35000.00, 'tuticorin', 'tuticorin', '2108150002', '1', '2', 'upload_files/candidate_tracker/89846063177_Latest Resume_2.pdf', NULL, '2', '2021-08-19', 15, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-15 12:53:32', 1, '2021-08-17 02:37:52', 0, NULL, 1),
(5893, '', '0', '8939123661', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108150003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-15 07:08:24', 0, NULL, 0, NULL, 1),
(5894, 'haritha s', '4', '7824000955', '', 'sharitha011@gmail.com', '2000-07-17', 21, '2', '2', 'saravanan', 'business', 20000.00, 1, 0.00, 9000.00, 'thiruvallur', 'kandhan colony', '2108160001', '1', '1', 'upload_files/candidate_tracker/69519174869_1629026374913Resume_S(1).pdf', NULL, '1', '2021-08-17', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'very sensitive person so not suitable for this profile', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 10:10:05', 1, '2021-08-16 10:13:00', 0, NULL, 1),
(5895, 'V.Raja Raman', '6', '8610213726', '9442225732', 'stackakash12@gmail.com', '1997-12-06', 23, '1', '2', 'Santha', 'House wife', 100000.00, 0, 0.00, 14000.00, '5/1 lnp kovil street egmore Chennai 600008', 'Bg1 SMS garden gengu Reddy street Egmore', '2108160002', '', '2', 'upload_files/candidate_tracker/47033593521_CV_2021-08-15-065611.pdf', NULL, '1', '2021-08-16', 0, 'P1191', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-16 10:47:35', 1, '2021-08-16 11:16:10', 0, NULL, 1),
(5896, 'Jeedula Praneeth Roy', '5', '7981791430', '', 'praneethroy31@gmail.com', '1999-12-09', 21, '2', '2', 'jeedula rambabu', 'govt employee', 50000.00, 1, 0.00, 20000.00, 'hyderabad', 'uppal', '2108160003', '1', '1', 'upload_files/candidate_tracker/27806442734_Praneeth_s_Resume__2_.pdf', NULL, '2', '2021-08-17', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'not interested in life insurance sales', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 11:23:01', 1, '2021-08-16 11:25:23', 0, NULL, 1),
(5897, 'Mir Aijaz Ali', '5', '7997065955', '', 'aijazalipatel007@gmail.com', '1995-08-01', 26, '2', '2', 'ashraf ali', 'pharmacist', 50000.00, 2, 18000.00, 20000.00, 'hyderabad', 'akthapur', '2108160004', '1', '2', 'upload_files/candidate_tracker/31948621871_Aijaz Ali.pdf', NULL, '2', '2021-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 11:40:12', 1, '2021-08-16 11:46:26', 0, NULL, 1),
(5898, 'y.prabhu kumar', '4', '7305829247', '', 'yuvadavid81@gmail.com', '1999-02-18', 22, '3', '2', 'j.yuvaraj', 'self employee', 20000.00, 1, 12000.00, 12500.00, 'no kattabomman street aranvoyal tiruvallur', 'No Kattabomman Street Aranvoyal Tiruvallur', '2108160005', '', '2', 'upload_files/candidate_tracker/62166864732_PRABHU KUMAR Y.docx', NULL, '1', '2021-08-16', 0, '', '3', '59', '2021-08-19', 120000.00, '', '0', NULL, '1', 'Selected for Tiruvallur - Cash Mode', '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-16 11:42:25', 1, '2021-08-16 12:29:07', 0, NULL, 1),
(5899, 'Saravanan N', '2', '7977172004', '', 'saravanan.btech021@gmail.com', '1995-07-22', 26, '2', '2', 'Natrajan', 'Student', 15000.00, 2, 0.00, 250000.00, 'Chennai', 'Chennai', '2108160006', '1', '1', 'upload_files/candidate_tracker/29388872001_Saravanan Resume.pdf', NULL, '1', '2021-08-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 12:30:04', 1, '2021-08-18 06:27:18', 0, NULL, 1),
(5900, 'Shanmugam', '27', '7200411081', '', 'shanmugamcse77@gmail.com', '1996-05-26', 25, '2', '2', 'Elumalai', 'Former', 100000.00, 2, 0.00, 12000.00, 'Thiruvannaamalai', 'Velachery', '2108160007', '1', '1', 'upload_files/candidate_tracker/91408640688_Shan cv02.pdf', NULL, '3', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Not Turned Up', '2', '1', '0', '1', '1', '0', '2', '2021-08-18', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 01:07:05', 1, '2021-08-16 01:22:45', 0, NULL, 1),
(5901, 'yogesh r', '23', '9710742016', '9840752333', 'yogeshh.dev@gmail.com', '2000-12-25', 20, '2', '2', 'ravi g', 'student', 17000.00, 1, 0.00, 12000.00, 'west tambaram', 'west tambaram', '2108160008', '1', '1', 'upload_files/candidate_tracker/29365478101_Yogesh.pdf', NULL, '1', '2021-08-17', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 01:16:26', 1, '2021-08-16 01:32:41', 0, NULL, 1),
(5902, 'Mohamed saleem', '23', '9042275161', '', 'tmdsaleem5161@gmail.com', '1996-04-06', 25, '2', '2', 'Shakila begum', 'House wife', 3.50, 2, 3.00, 5.00, 'Tambaram', 'Tambaram', '2108160009', '1', '2', 'upload_files/candidate_tracker/93817723146_Resume-2021.pdf', NULL, '1', '2021-08-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 01:30:36', 1, '2021-08-16 01:58:50', 0, NULL, 1),
(5903, '', '0', '7339269290', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108160010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-16 01:44:09', 0, NULL, 0, NULL, 1),
(5904, 'Anil kumar', '5', '8074172995', '', 'anil522kumar@gmail.com', '1996-06-20', 25, '2', '1', 'yadaiah', 'rtd', 40000.00, 2, 0.00, 20000.00, 'hyderabad', 'lb nagar', '2108160011', '1', '1', 'upload_files/candidate_tracker/42735351112_resume of Anil (1)-converted.pdf', NULL, '2', '2021-08-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 02:54:59', 1, '2021-08-16 02:59:48', 0, NULL, 1),
(5905, '', '0', '9884237296', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108160012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-16 02:59:56', 0, NULL, 0, NULL, 1),
(5906, 'bhuvanesh', '4', '9600114887', '', 'bhuvi.groups@gmail.com', '1996-05-27', 25, '2', '2', 'saravanan', 'business man', 40000.00, 1, 9500.00, 10000.00, 'pandur', 'chennai', '2108160013', '1', '2', 'upload_files/candidate_tracker/40273497692_bhuvi resume.pdf', NULL, '1', '2021-08-17', 0, '', '3', '59', '2021-08-19', 120000.00, '', '0', NULL, '1', 'Selected for Tiruvallur with CTC 120000 in cash mode', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-16 04:40:12', 1, '2021-08-16 04:43:07', 0, NULL, 1),
(5907, '', '0', '6379805958', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108160014', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-16 06:16:08', 0, NULL, 0, NULL, 1),
(5908, '', '0', '0445845763', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108160015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-16 07:30:30', 0, NULL, 0, NULL, 1),
(5909, 'Anandhi Munusami', '2', '9445845763', '9445273383', 'anandhi19199@gmail.com', '1999-01-19', 22, '2', '2', 'Munusami', 'Meson', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2108160016', '1', '1', 'upload_files/candidate_tracker/5339287350_an andhi final resume21.pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'No Update', '2', '1', '0', '1', '1', '0', '2', '2021-08-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-16 07:47:42', 1, '2021-08-16 08:03:34', 0, NULL, 1),
(5910, 'Dhanushwaran R', '4', '7845360818', '9159360760', 'Dhanush15101998@gamil.com', '1998-10-15', 22, '4', '2', 'Raja', 'Men\'s ware', 20000.00, 1, 0.00, 12000.00, 'Manavalanagar', 'Manavalanagar', '2108170001', '', '1', 'upload_files/candidate_tracker/58936600368_Dhanushwaran resume .docx', NULL, '1', '2021-08-17', 0, '', '3', '59', '2021-08-19', 120000.00, '', '0', NULL, '1', 'selected for Tiruvallur team with CTC 120000 Cash mode', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 10:36:54', 1, '2021-08-17 10:46:06', 0, NULL, 1),
(5911, 'G n arunkumar', '6', '9094004142', '9789961153', 'Kumarun97@gmail.com', '1997-09-23', 23, '1', '2', 'Nageshwar Rao', 'Southern railway', 15000.00, 1, 16500.00, 18000.00, 'EGMORE', 'EGMORE', '2108170002', '', '2', 'upload_files/candidate_tracker/66439844400_ARUN\'s Resume 2 updates .pdf', NULL, '1', '2021-08-17', 0, 'P1191', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Salary Exp is very high and no relevant sales Exp', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 11:23:07', 1, '2021-08-17 11:31:04', 0, NULL, 1),
(5912, 'Praveen raj T', '13', '9962841576', '', 'tpraveenraj78@gmail.com', '1998-12-18', 22, '2', '2', 'Thangaraj', 'Business', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108170003', '1', '1', 'upload_files/candidate_tracker/59242487351_PRAVEEN.resume1.docx', NULL, '1', '2021-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-17 11:39:44', 1, '2021-08-17 11:47:24', 0, NULL, 1),
(5913, 'Srinivasan.p', '4', '8939169917', '9176844774', 'snakeskilsarts@gmail.com', '2000-09-17', 20, '2', '2', 'Pushpa.p', 'Housemaid', 15.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2108170004', '1', '1', 'upload_files/candidate_tracker/71263501_Srinivasan _ PDF.pdf', NULL, '1', '2021-08-17', 0, '', '3', '8', '2021-10-25', 168000.00, '', NULL, '2023-07-04', '2', 'came with his girlfriend and will not join without her, expt is 12k. no neck button and prefers backend job.', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', 'Came for an interview on 20/Oct/21,Interviewed by Arun HR Team and the 2nd level initerview by Kannan.Candidate got selected for RE position with PF/ESI/PT Deductions', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-08-17 11:48:25', 60, '2021-10-23 10:30:54', 0, NULL, 1),
(5914, 'B. Keerthana', '4', '8925098001', '6380617962', 'Keerthanabaskaran2020@gmail.com', '1999-10-20', 21, '2', '2', 'B. Jermila', 'Housemaid', 7000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2108170005', '1', '1', 'upload_files/candidate_tracker/94768496198_KEERTHANA-converted.pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'came with her friend, will not join without him, expt is 12k and not speaking up, will not suite for calling.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-17 11:50:16', 8, '2021-08-17 05:48:33', 0, NULL, 1),
(5915, '', '0', '9003280701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108170006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-17 12:09:29', 0, NULL, 0, NULL, 1),
(5916, '', '0', '7639630260', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108170007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-17 12:46:02', 0, NULL, 0, NULL, 1),
(5917, 'Arun Kumar K', '23', '7010746544', '7639630260', 'Karunkumartech@gmail.com', '1997-05-16', 24, '2', '2', 'Malliga K', 'Home maker', 1.00, 1, 16000.00, 22000.00, 'Thiruvidaimaruthur, kumbakonam', 'Thiruvidaimaruthur', '2108170008', '1', '2', 'upload_files/candidate_tracker/5190547676_Arun kumar.pdf', NULL, '1', '2021-08-23', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-17 01:27:23', 1, '2021-08-17 01:34:56', 0, NULL, 1),
(5918, 'Peter Abhishek', '4', '8778936201', '9791104571', 'peter.raju.14@gmail.com', '2000-06-15', 21, '3', '2', 'Nagesh', 'Bcom general', 20000.00, 2, 0.00, 15000.00, 'No 132 gandhi road Velachery chennai', 'No 132 gandhi road Velachery', '2108170009', '', '1', 'upload_files/candidate_tracker/77941271075_peter%20resume.docx', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, has 1m in yes bank credit card. ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 02:43:04', 1, '2021-08-17 02:50:58', 0, NULL, 1),
(5919, 'Priyadharshini.V', '4', '8056263753', '', 'priyagathu1204@gmail.com', '2001-05-04', 20, '3', '2', 'Vijayaraghavan.v', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Velachery', 'Velachery', '2108170010', '', '1', 'upload_files/candidate_tracker/31483509410_RESUME-PRIYADHARSHINI.pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'just came with friend for interview and attended, expt is 18k, and no Relevant exp. done her part time job in holiday package.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 02:43:48', 1, '2021-08-17 03:17:08', 0, NULL, 1),
(5920, 'Renshy Sheethal Bobby', '4', '7550150961', '', 'sheethalbobby2911@gmail.com', '2000-11-29', 20, '3', '2', 'Juliet selvi Nirmala devi', 'House wife', 11000.00, 1, 0.00, 20000.00, 'Velachery', 'Velachery', '2108170011', '', '1', 'upload_files/candidate_tracker/98549756717_rsb resume new.docx', NULL, '1', '2021-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Salary Expectation Is Very High. Being A Fresher Take Home Expectation Is Around 12-13K For Elite.Will not sustain for a long', '1', '2', '0', '1', '1', '0', '2', '2021-08-20', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-17 02:43:52', 1, '2021-08-17 02:49:16', 0, NULL, 1),
(5921, '', '0', '9344002435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108170012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-17 02:59:06', 0, NULL, 0, NULL, 1),
(5922, 'mohamed yusuff.u', '2', '8489366366', '6381846455', 'u.mdyusuff22@gmail.com', '1998-09-22', 22, '2', '2', 'umarul farook.n', 'business', 20000.00, 3, 0.00, 10000.00, 'chennai', 'chennai', '2108170013', '1', '1', 'upload_files/candidate_tracker/54704247562_yusuff res.docx', NULL, '1', '2021-08-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no Focus towards his Career and no idea about it, will not sustain, ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-17 03:11:40', 1, '2021-08-18 01:37:39', 0, NULL, 1),
(5923, 'lokesh', '4', '8939153861', '', 'lokeshselvam1819@gmail.com', '2001-06-18', 20, '2', '2', 'selvam', 'business', 16000.00, 1, 0.00, 10000.00, 'mylapore', 'mylapore', '2108170014', '1', '1', 'upload_files/candidate_tracker/97853190494_Lokesh.docx', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'from krishnagiri, doing his PG in Correspondence so looking for job, no job need, expt is 15k not speaking up, very slow. ', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-17 03:15:53', 1, '2021-08-17 03:19:46', 0, NULL, 1),
(5924, 'Chaithanya.l', '4', '8056383197', '9894751256', 'lchaithanya550@gmail.com', '1994-12-13', 26, '2', '1', 'M.loganathan', 'Chennai', 30000.00, 2, 0.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2108170015', '1', '1', 'upload_files/candidate_tracker/86623580962_CURRICULUM VITAE chaithu.docx', NULL, '1', '2021-08-17', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'She cant speak tamil fluently', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-17 03:25:18', 1, '2021-08-17 03:45:33', 0, NULL, 1),
(5925, 'nandhini', '4', '8428389908', '', 'nandhukutty2913@gmail.com', '2000-10-29', 20, '2', '2', 'shriram', 'painter', 8000.00, 1, 0.00, 10000.00, 'tondairpet', 'Tondairpet', '2108170016', '1', '1', 'upload_files/candidate_tracker/46722846970_resume (15).pdf', NULL, '1', '2021-08-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, said very nervous and expt is 10-12k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-17 03:31:00', 1, '2021-08-17 04:00:12', 0, NULL, 1),
(5926, 'Balamurugan.k', '23', '9500936674', '9655126411', 'bala230397@gmail.com', '1997-03-23', 24, '2', '2', 'Kala', 'Manager', 840000.00, 1, 18.00, 28.00, 'Coimbatore', 'Annur', '2108170017', '1', '2', 'upload_files/candidate_tracker/60360074858_Bala resume.pdf', NULL, '2', '2021-08-18', 0, '', '8', '27', NULL, 0.00, '', '0', NULL, '1', 'Task Not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-08-20', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-17 04:24:40', 1, '2021-08-17 04:31:29', 0, NULL, 1),
(5927, 'Murugeshwari', '2', '9360714162', '9597773380', 'murugeshwari1905@gmail.com', '1998-05-19', 23, '2', '2', 'Thirunavukkarasu .A', 'Coolie', 10000.00, 1, 0.00, 15000.00, 'Trichy', 'Nerkundram,Chennai', '2108180001', '1', '1', 'upload_files/candidate_tracker/60024831325_murugeshwari_2021 resume.pdf', NULL, '1', '2021-08-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1yr exp in calling 12k, expt is 15k, done 3m online internship, has family commitment and expt is 15k, has to discuss about service agreement with parents.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 10:44:45', 1, '2021-08-19 11:40:01', 0, NULL, 1),
(5928, 'Sam Stephen', '2', '6379568940', '', 'immanuelsam.t@gmail.com', '1995-04-19', 26, '2', '2', 'tennis raju', 'teacher', 20000.00, 3, 0.00, 300000.00, 'Tenkasi', 'Tenkasi', '2108180002', '1', '1', 'upload_files/candidate_tracker/26253743405_SAM_STEPHEN_2021_IT.pdf', NULL, '2', '2021-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 10:57:01', 1, '2021-08-18 12:13:32', 0, NULL, 1),
(5929, 'Lalith', '2', '6381010852', '8825827046', 'lalithsampath2000@gmail.com', '2000-09-18', 20, '2', '2', 'Sampath Kumar', 'Business', 4.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108180003', '1', '1', 'upload_files/candidate_tracker/14927473531_LALITH resume.docx', NULL, '1', '2021-08-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '2', '2', '', '1', '1', '', '2', '2021-08-19', '2', '2', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-18 11:20:08', 7, '2021-08-18 01:00:08', 0, NULL, 1),
(5930, 'K.askar ali', '4', '7539909037', '', 'askarali80258@gmail.com', '2000-09-07', 20, '2', '2', 'Kamaludeen', 'Driver', 24000.00, 2, 0.00, 12000.00, 'Elleri', 'Chennai vellacheri', '2108180004', '1', '1', 'upload_files/candidate_tracker/80657677196_Askar pdf new.pdf', NULL, '1', '2021-08-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, not speaking up and expt is 12k.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-18 01:16:20', 1, '2021-08-18 01:21:01', 0, NULL, 1),
(5931, 'M.pradheepa', '4', '6382699711', '', 'Deepapapiradeepa@gmail.com', '2000-09-17', 20, '2', '2', 'Mahendhiran', 'Cattering', 15000.00, 2, 0.00, 12000.00, 'Chidhabaram', 'Pallavaram', '2108180005', '1', '2', 'upload_files/candidate_tracker/64284656404_askar2.pdf', NULL, '1', '2021-08-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, no flow and not speaking up and no language and expt is 15k. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-18 01:16:25', 8, '2021-08-18 06:03:55', 0, NULL, 1),
(5932, 'Santhosh', '23', '6381926406', '8220505742', 'santhoshraina97@gmail.com', '1997-06-29', 24, '2', '2', 'Tamilmaran', 'Formar', 40000.00, 0, 0.00, 400000.00, 'Mannargudi', 'Mannargudi', '2108180006', '1', '2', 'upload_files/candidate_tracker/59681248918_1625577125992Resume_santhosh.docx', NULL, '3', '2021-08-19', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '2', '0', '1', '1', '0', '2', '2021-08-21', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 01:21:15', 1, '2021-08-18 02:53:55', 0, NULL, 1),
(5933, '', '0', '8072775019', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108180007', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-18 01:39:46', 0, NULL, 0, NULL, 1),
(5934, 'Sowndarya', '23', '9655469322', '', 'sowndhchandran@gmail.com', '1995-05-19', 26, '2', '2', 'Ravichandran', 'Assessor (EB)', 40000.00, 1, 15.00, 30.00, 'Thanjavur', 'Velachery', '2108180008', '1', '2', 'upload_files/candidate_tracker/55609672134_sowndharya.pdf', NULL, '3', '2021-08-19', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Task Not Completed', '2', '1', '0', '1', '1', '0', '2', '2021-08-21', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 02:05:03', 1, '2021-08-18 04:01:52', 0, NULL, 1),
(5935, 'dasarathy', '23', '8220006682', '', 'dasforu92@gmail.com', '1992-07-08', 29, '2', '2', 'ethiraj', 'business', 5000.00, 1, 15000.00, 25000.00, 'chennai', 'chennai', '2108180009', '1', '2', 'upload_files/candidate_tracker/6852794491_Das CV-2-compressed.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'he is a graphics designer, doesnt know html css, will not suite for us.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 03:04:29', 1, '2021-08-18 04:53:26', 0, NULL, 1),
(5936, 'Sreedhar reddy', '5', '9100646545', '', 'Sreedharreddy5555@gmail.com', '1998-06-04', 23, '2', '2', 'thirumala reddy', 'own business', 100000.00, 1, 21000.00, 25000.00, 'hyderabad', 'gachibowli', '2108180010', '1', '2', 'upload_files/candidate_tracker/25791973151_Resume (18).pdf', NULL, '2', '2021-08-19', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Not Attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-18 03:08:32', 1, '2021-08-18 03:11:45', 0, NULL, 1),
(5937, 'Shobith vs', '23', '7904716549', '', 'vsshobith@gmail.com', '1996-05-10', 25, '2', '2', 'Suresh V', 'Retired', 5000.00, 0, 0.00, 20000.00, 'Tirunelveli', 'Tirunelveli', '2108180011', '1', '2', 'upload_files/candidate_tracker/82154706014_Shobith CV.pdf', NULL, '2', '2021-08-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed', '2', '1', '', '1', '1', '', '2', '2021-08-21', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 03:39:10', 50, '2021-08-19 09:55:26', 0, NULL, 1),
(5938, 'Mohanasundari', '23', '9626442301', '6381831903', 'monikapandiyan@gmail.com', '1993-09-11', 27, '2', '1', 'Nandakumar', 'Application support manager', 50000.00, 2, 240000.00, 350000.00, 'Chennai', 'Chennai', '2108180012', '1', '2', 'upload_files/candidate_tracker/31798453411_Mohanasundari 2021 resume.pdf', NULL, '1', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 03:44:24', 1, '2021-08-18 03:48:43', 0, NULL, 1),
(5939, '', '0', '9042080726', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108180013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-18 03:52:02', 0, NULL, 0, NULL, 1),
(5940, 'Pranay Mahojwal', '5', '7780562122', '', 'pranaykommu861@gmail.com', '1995-05-31', 26, '2', '2', 'udey kumar', 'govt employee', 80000.00, 1, 19000.00, 27000.00, 'hyderabad', 'akthapur', '2108180014', '1', '2', 'upload_files/candidate_tracker/2126553372_Resume (6).docx', NULL, '2', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-18 04:23:26', 1, '2021-08-18 04:26:51', 0, NULL, 1),
(5941, 'Aravinth', '23', '9003747874', '8248454956', 'aravimailme@gmail.com', '1996-05-27', 25, '2', '2', 'Kumaralingam', 'LIC agent', 100000.00, 1, 288000.00, 360000.00, 'Coimbatore', 'Coimbatore', '2108180015', '1', '2', 'upload_files/candidate_tracker/48007335195_aravi resume Graphic designer.pdf', NULL, '2', '2021-08-19', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task Not Completed', '2', '1', '', '1', '1', '', '2', '2021-08-21', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-18 05:14:06', 50, '2021-08-19 09:55:58', 0, NULL, 1),
(5942, 'mohana vel. v', '4', '9080188253', '9498037215', 'akashaks789@gmail.com', '1999-12-27', 21, '4', '2', 'Vishwanathan , Vijaya lakshmi', 'private company', 30000.00, 1, 0.00, 15000.00, 'manavala Nagar', 'manavala nagar', '2108190001', '', '1', 'upload_files/candidate_tracker/5107758695_Mohanavelu.pdf', NULL, '1', '2021-08-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-19 10:13:24', 1, '2021-08-19 11:26:50', 0, NULL, 1),
(5943, 'muthukumar', '6', '8072227453', '', 'muthukumar99muthu@gmail.com', '1999-07-29', 22, '2', '2', 'esakimuthu', 'hotel business', 20000.00, 1, 15000.00, 15000.00, 'chennai', 'velachery', '2108190002', '1', '2', 'upload_files/candidate_tracker/22889582075_resume-che1.doc', NULL, '1', '2021-08-20', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'applied twice ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-19 11:26:14', 1, '2021-08-19 11:28:11', 0, NULL, 1),
(5944, 'Akilandeswari B', '2', '9025755792', '9894409698', 'bjakils145@gmail.com', '1996-07-05', 25, '2', '2', 'K. Balu', 'Rtrd Bank Employee', 10000.00, 4, 0.00, 15000.00, 'Trichy', 'Chennai', '2108190003', '1', '1', 'upload_files/candidate_tracker/12842530612_Akilandeswari CV.pdf', NULL, '1', '2021-08-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Has 1yr Exp In Calling 12k, Expt Is 15k Has Family Commitment And Expt Is 13-15k, Has To Discuss About Service Agreement With Parents.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 11:30:52', 1, '2021-08-19 11:37:28', 0, NULL, 1),
(5945, 'Hariprasath', '4', '7339424268', '', 'Hariprasanthv99@gmail.com', '1999-10-04', 21, '3', '2', 'Velu', 'Railway', 50.00, 2, 0.00, 15.00, 'Kadambathur', 'Kadambathur', '2108190004', '', '1', 'upload_files/candidate_tracker/98586636817_HARI PRSANTH RESUME.docx', NULL, '1', '2021-08-19', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'expectation salary high and he is searching job for foreign .', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-19 11:51:41', 1, '2021-08-19 11:56:17', 0, NULL, 1),
(5946, 'Bhaskar', '23', '9014577191', '9014251889', 'shanigarambhaskar222@gmail.com', '1997-09-29', 23, '2', '2', 'Shanigaram', 'Farmer', 6000.00, 2, 0.00, 14000.00, 'Hyderabad', 'Secunderabad', '2108190005', '1', '1', 'upload_files/candidate_tracker/73276897092_bhaskar pdf.pdf', NULL, '2', '2021-08-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 12:21:11', 1, '2021-08-19 12:24:03', 0, NULL, 1),
(5947, 'L.MADHUMITHA', '4', '9940812577', '8870619612', 'lanumadhumitha@gmail.com', '2001-05-04', 20, '1', '2', 'K.loganathan', 'Coolie', 20000.00, 1, 0.00, 12000.00, 'Vishnuvakkam Village thiruvallur', 'Vishnuvakkam village thiruvallur Landmark', '2108190006', '', '1', 'upload_files/candidate_tracker/179874781_RESUME(2).pdf', NULL, '1', '2021-08-19', 0, 'R55568', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-19 12:27:28', 1, '2021-08-19 12:46:55', 0, NULL, 1),
(5948, 'Robert Bernard', '27', '9000654731', '6383849105', 'rbernard448@gmail.com', '1999-11-09', 21, '2', '2', 'Paul Victor', 'Not working', 50000.00, 2, 0.00, 11000.00, 'No 20, vandikaran Street, West Mambalam', 'Chennai', '2108190007', '1', '1', 'upload_files/candidate_tracker/14912207269_Robert Bernard CV-1.pdf', NULL, '1', '2021-08-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Client Round Reject', '2', '1', '0', '1', '1', '0', '2', '2021-09-03', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 01:37:43', 1, '2021-08-19 01:44:19', 0, NULL, 1),
(5949, 'Priya A', '27', '8489865430', '', 'priya1998vr@gmail.com', '1997-05-05', 24, '2', '2', 'Arumugam', 'Farmer', 1.00, 3, 0.00, 2.50, 'Ramanathapuram', 'Chennai- Tambaram', '2108190008', '1', '1', 'upload_files/candidate_tracker/57269477796_priya java dotnet resume12.pdf', NULL, '1', '2021-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 02:32:05', 1, '2021-08-19 02:44:17', 0, NULL, 1),
(5950, 'R. Kathirvel', '2', '8056083821', '8637409350', 'kathirvel082@gmail.com', '1997-10-01', 23, '2', '2', 'R. Ranganathan', 'Plumber', 12000.00, 1, 0.00, 10000.00, 'No 26/200 South West Boag Road T. Nagar chennai-17', 'No, 26/200 South West Boag Road T. Nagar Ch-17', '2108190009', '1', '1', 'upload_files/candidate_tracker/22059107274_Kathirvel R resume.pdf', NULL, '1', '2021-08-20', 0, '', '4', '54', NULL, 0.00, '', '', '2021-10-05', '1', 'has 3m internship exp, looking for internship, willing to learn, okay with our terms and conditions.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 02:37:14', 1, '2021-08-19 03:16:50', 0, NULL, 1),
(5951, 'Nelson Pugalenthi T', '6', '9080523145', '8695514508', 'nelsonthiyagu84@gmail.com', '1999-10-26', 21, '1', '2', 'Thiyagaraj', 'Business', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Iyyappanthangal', '2108190010', '', '1', 'upload_files/candidate_tracker/16861838863_Nelson_resume-converted.pdf', NULL, '1', '2021-08-19', 0, 'P1002', '3', '59', '2021-08-26', 156000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar team with CTC 156000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-19 02:49:53', 60, '2021-08-24 04:50:14', 0, NULL, 1),
(5952, 'Lakshmi Sruthi K', '27', '6382515367', '', 'sruthi24598@gmail.com', '1998-05-24', 23, '2', '2', 'KALIRAJAN K', 'Worker', 25000.00, 2, 0.00, 200000.00, 'Sivakasi', 'Sivakasi', '2108190011', '1', '1', 'upload_files/candidate_tracker/4074418440_Resume (1).docx', NULL, '2', '2021-08-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much clear into Dotnet. already she received an offer for 8K in native and her expectation seems to very high.Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 02:58:46', 1, '2021-08-19 03:03:06', 0, NULL, 1),
(5953, 'siva', '4', '9677058667', '', 'sivasmart483@gmailcom', '1997-12-16', 23, '2', '2', 'ramu', 'working', 40000.00, 1, 0.00, 10000.00, 'chennai', 'tnagar', '2108190012', '1', '1', 'upload_files/candidate_tracker/83703519749_RESUM SIVA . R.pdf', NULL, '1', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-19 03:36:34', 1, '2021-08-19 03:39:50', 0, NULL, 1),
(5954, 'M Logesh', '2', '7010404227', '', 'msvlogesh@gmail.com', '1999-09-28', 21, '2', '2', 'R Marimuthu', 'Mechanic', 40000.00, 2, 0.00, 20000.00, '33 C 1/B Ottampatti kovil street, Chettiyarpatti', '33 C 1/B Ottampatti Kovil Street, Chettiyarpatti', '2108190013', '1', '1', 'upload_files/candidate_tracker/57825082811_Logesh Resume(IT).pdf', NULL, '1', '2021-08-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 03:45:35', 1, '2021-08-19 06:53:18', 0, NULL, 1),
(5955, 'Avinash Vasudevan', '2', '8072852332', '9080541852', 'avinashvasu98@gmail.com', '1998-11-03', 22, '2', '2', 'v. vasudevan', 'process server', 30000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2108190014', '1', '1', 'upload_files/candidate_tracker/62203154806_RESUME.pdf', NULL, '1', '2021-08-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our profile, not clear about his Career and has to discuss with parents regarding agreement ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 03:55:55', 1, '2021-08-19 04:06:37', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(5956, '', '0', '7094362587', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108190015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-19 05:33:24', 0, NULL, 0, NULL, 1),
(5957, 'saran kumar', '27', '7824099908', '', 'saranmessi90@gmail.com', '1990-01-30', 31, '2', '2', 't.subramani', 'farmer', 25000.00, 1, 0.00, 15000.00, 'kaveripakkam', 'kavangarai', '2108190016', '1', '1', 'upload_files/candidate_tracker/14459348176_Resume.docx', NULL, '1', '2021-08-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'client round reject', '2', '1', '0', '1', '3', '0', '2', '2021-09-01', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 09:54:23', 1, '2021-08-19 10:00:39', 0, NULL, 1),
(5958, 'nagarjunan', '23', '9677136975', '', 'nagaarjunan0975@gmail.com', '1996-09-28', 24, '2', '2', 'nagarajan', 'Business', 20000.00, 1, 15000.00, 20000.00, 'porur', 'porur', '2108190017', '1', '2', 'upload_files/candidate_tracker/1740363512_Nagarjunan_resume.pdf', NULL, '1', '2021-08-21', 15, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Less knowledge about UI/UX', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-19 10:38:38', 1, '2021-08-19 10:44:13', 0, NULL, 1),
(5959, 'Nithyanandhan Thangaraj', '2', '8248173392', '', 'nititechi@gmail.com', '1997-01-05', 24, '2', '1', 'Thangaraj', 'Business', 20000.00, 0, 0.00, 150000.00, 'Erode', 'Erode', '2108200001', '1', '1', 'upload_files/candidate_tracker/54954735682_Resume of Nithyanandhan-19July.docx', NULL, '1', '2021-08-21', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '1', 'check for internship, willing to learn, already working in sony 1.5l.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-20 08:13:47', 1, '2021-08-20 08:21:38', 0, NULL, 1),
(5960, 'Siva. R', '4', '9150528846', '9677058667', 'Sivasmart483@gmail.com', '1997-12-16', 23, '2', '2', 'Mr.E.Ramu', 'Driver', 30000.00, 1, 7000.00, 15000.00, 'No.133 4 th St, J.J.R nager, vyasarpadi,ch-39', 'NO. 9,B Block ,R.k puram, north usman road , ch.17', '2108200002', '1', '2', 'upload_files/candidate_tracker/18345197971_RESUM SIVA . R.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 5yr exp in ngo into teaching, will not handle pressure and expt is 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-20 10:14:02', 1, '2021-08-20 10:31:19', 0, NULL, 1),
(5961, '', '0', '9080555201', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108200003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-20 10:39:52', 0, NULL, 0, NULL, 1),
(5962, 'Manikandan P', '4', '9884870817', '', 'kandanmani1030@gmail.com', '2000-10-30', 20, '2', '2', 'Perumal K', 'Coolie', 8000.00, 1, 0.00, 10000.00, 'Tiruvallur', 'Tiruvallur', '2108200004', '1', '1', 'upload_files/candidate_tracker/90930733183_Manikandan_Color Format – 03.pdf', NULL, '1', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-20 10:40:55', 1, '2021-08-20 10:51:47', 0, NULL, 1),
(5963, 'Santhosh', '4', '8838773760', '9994225755', 'Santhoshgsan08@gmail.com', '2006-08-20', 15, '2', '2', 'Kandhalashmy', 'Government', 8000.00, 2, 12000.00, 1.00, 'Dharmapuri', 'Teynapet', '2108200005', '1', '2', 'upload_files/candidate_tracker/4927202556_1625898988407_1625898984825_santhosh_Resume_-2 (1).docx', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no clarity in speech, expt sal is also high.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-20 10:41:58', 1, '2021-08-20 10:57:01', 0, NULL, 1),
(5964, 'saeavana', '6', '9176178235', '', 'saravanansmart227@gmail.com', '2000-11-09', 20, '2', '2', 'kamalakannan', 'daily wages', 10000.00, 0, 0.00, 10000.00, 'Maduravoyul', 'maduravoyul', '2108200006', '1', '1', 'upload_files/candidate_tracker/25473451405_Document [PDFScanner] 2021-7-20 10.56.49.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '5', '1', '0', '1', '3', '0', '2', '2021-08-23', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-20 10:45:04', 1, '2021-08-20 11:22:32', 0, NULL, 1),
(5965, 'Muthukumar', '6', '8675892862', '8072227453', 'muthukumar99muthu@gmail.com', '1999-07-29', 22, '2', '2', 'Esakkimuthu', 'Coolee', 15000.00, 1, 18000.00, 17000.00, 'Vellacherry', 'Vellacherry, Chennai', '2108200007', '1', '2', 'upload_files/candidate_tracker/11375397727_resume-che1.doc', NULL, '1', '2021-08-20', 0, '', '3', '59', '2021-08-24', 192000.00, '', '4', '2022-03-01', '1', 'Selected for Kannan Team with CTC 192000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-20 11:03:00', 60, '2021-08-23 07:08:53', 0, NULL, 1),
(5966, 'Gogul', '4', '7904319200', '9843405114', 'gokuldx2000@gmail.com', '2001-07-09', 20, '3', '2', 'Parent', 'B. Com(general)', 17000.00, 1, 0.00, 13000.00, 'Thiruvallur', 'Thiruvallur', '2108200008', '', '1', 'upload_files/candidate_tracker/59426551854_Gogul.n Resume.docx', NULL, '1', '2021-08-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-20 11:19:43', 1, '2021-08-20 11:26:42', 0, NULL, 1),
(5967, 'S.Gopalakrishnan', '4', '9514101231', '7373224427', 'gopalakrishnan3800@gmail.com', '2000-12-11', 20, '4', '2', 'S.Sivalingam', 'Welder', 10000.00, 1, 0.00, 10000.00, 'Changalpattu', 'Changalpattu', '2108200009', '', '1', 'upload_files/candidate_tracker/65924474405_Resume 11.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no flow in speech, will not suite for calling, from chengalpet too long', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-20 11:50:47', 1, '2021-08-20 11:58:10', 0, NULL, 1),
(5968, 'Sridhar', '6', '9840458368', '6383298520', 'dsridhar3001@gmail.com', '1989-01-30', 32, '4', '1', 'Mahalakshmi', 'No', 50000.00, 1, 21000.00, 25000.00, 'Chrompet', 'Chrompet', '2108200010', '', '2', 'upload_files/candidate_tracker/24213095195_Sridhar_Sri.pdf', NULL, '1', '2021-08-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales profile, past 2yr he was ideal and earning through rental shops, will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-20 11:51:23', 1, '2021-08-20 12:00:05', 0, NULL, 1),
(5969, 'Dinesh.k', '4', '7358463124', '', 'Dineshkarunanidhi26@gmail.com', '2006-08-21', 0, '2', '2', 'Vijayalakshmi.K', 'export', 10000.00, 0, 0.00, 10000.00, 'Chennai', 'kolathur', '2108210001', '3', '1', 'upload_files/candidate_tracker/71889050217_k RESUME (1)-converted.pdf', NULL, '1', '2021-08-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, no flow in speech, fresher.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-21 10:34:06', 1, '2021-08-21 10:36:52', 0, NULL, 1),
(5970, 'Jeyalakshmi J', '4', '9176598571', '', 'jeyapretty2101@gmail.com', '2000-06-02', 21, '3', '2', 'Jayaraman v', 'Farmer', 50000.00, 3, 10500.00, 12000.00, 'Seruvaviduthi', 'Anakaputhur', '2108210002', '', '2', 'upload_files/candidate_tracker/10793595941_JEYALAKSHMI J_2017-2021_ Jerusalem college of engineering.pdf', NULL, '1', '2021-08-21', 0, '', '3', '59', '2021-08-23', 126000.00, '', '4', '2022-02-18', '2', 'Selected for Muthu team with TH 9975 Cash Mode', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Mail Sent for Joining', 'Mail Sent For Joining', '', '', NULL, NULL, NULL, 1, '2021-08-21 10:50:53', 60, '2021-09-09 10:31:14', 0, NULL, 1),
(5971, 'Rethinambal. S', '4', '9159945239', '', 'rethinambal153@gmail.com', '2000-03-15', 21, '3', '2', 'Senthilarasan', 'Farmer', 45000.00, 3, 0.00, 12000.00, 'Thanjavur', 'Anakaputhur', '2108210003', '', '1', 'upload_files/candidate_tracker/32563059027_Rethinambal .pdf', NULL, '1', '2021-08-21', 0, '', '3', '59', '2021-08-28', 120000.00, '', '6', '2021-09-04', '2', 'Selected for Muthu cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-21 11:03:43', 60, '2021-08-28 11:42:32', 0, NULL, 1),
(5972, 'Niveditha S', '4', '7550147991', '9444882099', 'nivedithasekar1999@gmail.com', '1999-12-17', 21, '2', '2', 'Padma Priya D', 'Teacher', 25000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2108210004', '1', '1', 'upload_files/candidate_tracker/94486176196_Niveditha resume.docx', NULL, '1', '2021-08-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Last week spoke and confirmed the CTC. She requested time for joining.28/Aug Tried reaching to confirm again and received a message stating that not interested and she got selected in a Company through campus drive', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-21 11:46:06', 7, '2021-08-28 06:33:18', 0, NULL, 1),
(5973, 'Azarudheen k', '5', '9944131276', '9750755336', 'mk.azar1995@gmail.com', '1995-05-20', 26, '2', '2', 'nelson', 'hotel Business', 120000.00, 1, 20000.00, 23000.00, 'villupuram', 't.nagar', '2108210005', '3', '2', 'upload_files/candidate_tracker/38836561370_Azar Resume new.docx', NULL, '1', '2021-08-21', 0, '', '3', '59', '2021-08-30', 270000.00, '', '4', '2022-06-07', '1', 'Selected for GK Sir Team,2.7 LPA have been finalised after discussion with Gaurav sir on the Target given and salry hike post the completion of Target 2L in 2 month will be 25K in the candidate CTC from 3rd month', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-21 12:02:01', 60, '2021-08-26 01:22:29', 0, NULL, 1),
(5974, 'Logesh S', '5', '7358425657', '', 'logeshsrinivasa@gmail.com', '2006-08-21', 0, '1', '2', 'Srinivasan N', 'Auto Driver', 20000.00, 1, 18000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2108210006', '', '2', 'upload_files/candidate_tracker/87170859760_Resume_Lk_Format4.pdf', NULL, '1', '2021-08-21', 0, '5372', '3', '59', '2022-05-09', 240000.00, '', '6', '2022-06-15', '1', 'SElected for Manikandan Team - Pf/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-08-21 05:29:43', 60, '2022-05-05 05:43:46', 0, NULL, 1),
(5975, '', '0', '6381904809', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108220001', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-22 06:58:01', 0, NULL, 0, NULL, 1),
(5976, '', '0', '9176294177', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108220002', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-22 11:02:49', 0, NULL, 0, NULL, 1),
(5977, 'Deepiga Padmanaban', '27', '9976603028', '7200380420', 'deeps17.cs189@gmail.com', '2000-02-28', 21, '2', '2', 'padmanaban', 'weaver', 72000.00, 1, 0.00, 15000.00, 'Thanjavur.', 'Thanjavur.', '2108230001', '1', '1', 'upload_files/candidate_tracker/69451071791_Deepika.pdf', NULL, '3', '2021-08-23', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she doesnt have whats app and i have shared the link through normal sms twice and waiting her to connect more than 15mins. no response.', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 10:22:59', 50, '2021-08-23 11:40:16', 0, NULL, 1),
(5978, 'Jenish M', '2', '9789787417', '', 'jenishm502@gmail.com', '1998-08-06', 23, '2', '2', 'Mahendran.M', 'Coolie', 86000.00, 2, 0.00, 120000.00, 'Kanyakumari', 'Kanyakumari', '2108230002', '1', '1', 'upload_files/candidate_tracker/25379906391_JENISH M - Resume.doc', NULL, '2', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'already attened interview here for .net and Attend interview in nalm client company and got rejected. ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 11:56:46', 1, '2021-08-23 11:59:57', 0, NULL, 1),
(5979, '', '0', '8438243454', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108230003', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-23 01:45:07', 0, NULL, 0, NULL, 1),
(5980, '', '0', '9080692699', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108230004', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-23 01:45:09', 0, NULL, 0, NULL, 1),
(5981, 'Valliappan Kittu', '3', '9894383122', '8489686346', 'ramuvalliappan11@gmail.com', '1998-04-11', 23, '2', '2', 'Kittu', 'Business', 23000.00, 2, 0.00, 20000.00, 'No:2 Pandiyanstreet, Bharathi Nagar,tharamani', 'No:2,Pandiyan Street , Bharathi Nagar,tharamani', '2108230005', '1', '1', 'upload_files/candidate_tracker/95731693526_CV_2021-08-17-123056.pdf', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no update', '2', '1', '0', '1', '1', '0', '2', '2021-09-10', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 02:47:10', 1, '2021-08-23 02:58:39', 0, NULL, 1),
(5982, 'Vigneshwaran.S', '6', '8925118314', '9500049897', 'vigneshwarans942@gmail.com', '1996-04-07', 25, '1', '2', 'R.shanmugam', 'Carbandar', 600000.00, 1, 20000.00, 20000.00, 'Ramapuram', 'Ramapuram', '2108230006', '', '2', 'upload_files/candidate_tracker/63416535267_New Doc 2021-08-23 15.14.08_1.pdf', NULL, '1', '2021-08-23', 0, '5206', '3', '59', '2021-08-26', 192000.00, '', '3', '2021-11-01', '1', 'Selected for Arumbakkam with CTC 192000 includes PF/ESI/PT', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-23 02:58:38', 60, '2021-08-25 02:37:18', 0, NULL, 1),
(5983, 'sam vinstin', '3', '9486968300', '9894383122', 'samvinston1999@gmail.com', '1999-03-30', 22, '2', '2', 'sam sundar', 'ex army', 30000.00, 1, 0.00, 25000.00, 'kaniya kumari', 'tharamani', '2108230007', '1', '1', 'upload_files/candidate_tracker/22429830287_SAMS NEW RESUME.pdf', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no update', '2', '1', '0', '1', '1', '0', '2', '2021-09-06', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 03:03:13', 1, '2021-08-23 03:09:16', 0, NULL, 1),
(5984, 'Mohammed Adhil', '27', '9344329274', '7448575922', 'adhil17999@gmail.com', '1999-09-17', 21, '2', '2', 'Sulthan maidhin', 'Textile merchandiser', 30000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2108230008', '1', '1', 'upload_files/candidate_tracker/4154726021_Ajju resume.pdf', NULL, '2', '2021-08-24', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-23 05:29:12', 50, '2021-08-24 10:07:09', 0, NULL, 1),
(5985, 'Samiu N', '3', '8248791299', '9500532473', 'samiu091997@gmail.com', '1997-10-09', 23, '2', '2', 'Nazeerullah', 'Mini grocery shop', 7000.00, 1, 0.00, 13000.00, 'Dharmapuri', 'Dharmapuri', '2108240001', '1', '1', 'upload_files/candidate_tracker/20426197664_samiu resume.pdf', NULL, '3', '2021-08-27', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 10:41:19', 1, '2021-08-24 10:45:43', 0, NULL, 1),
(5986, 'Manoj.S.P', '4', '9360831299', '9080066965', 'manojsuresh213@gmail.com', '2006-08-24', 0, '2', '1', 'G Suresh padmanaban', 'Business', 150000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2108240002', '1', '1', 'upload_files/candidate_tracker/8840380867_manoj resume.docx updated.docx', NULL, '1', '2021-08-24', 0, '', '3', '59', '1970-01-01', 132000.00, '', '2', '1970-01-01', '1', 'selected for Priyanka Team with PF/PT/ESI', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '', NULL, NULL, NULL, 1, '2021-08-24 11:08:16', 60, '2021-08-28 11:29:55', 0, NULL, 1),
(5987, 'Kishore Kumar.p', '5', '8072940089', '9500165803', 'Kishorekumar17826@gmail.com', '2000-01-09', 21, '3', '2', 'Padmanabhan', 'Office boy', 15000.00, 0, 0.00, 10000.00, 'Royapatten', 'Royapatten', '2108240003', '', '1', 'upload_files/candidate_tracker/68980752984_RESUME - 25-11-2019.pdf', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for sales calling.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-24 11:33:50', 1, '2021-08-24 11:58:19', 0, NULL, 1),
(5988, 'Sheik ismail.n', '6', '6380381472', '9176045370', 'mohamedsheikismail8056@gmail.com', '1999-02-27', 22, '4', '2', 'Nagoor Meeran', '10th', 15000.00, 1, 0.00, 15000.00, 'Porur', 'Porur', '2108240004', '', '1', 'upload_files/candidate_tracker/57501328448_CV_2021-08-22-012642.pdf', NULL, '1', '2021-08-24', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar team with PF/ESI/PT deductions', '5', '2', '1', '1', '1', '', '2', '2021-08-31', '2', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-08-24 11:47:40', 60, '2021-08-31 01:23:36', 0, NULL, 1),
(5989, 'Rama krishnan', '2', '8531909247', '9677537478', 'ramkrish80988@gmail.com', '2000-12-21', 20, '3', '2', 'Meenatchi', 'Home maker', 30000.00, 2, 0.00, 12000.00, 'Kancheepuram', 'Chennai', '2108240005', '', '1', 'upload_files/candidate_tracker/33178917242_Ram krish newsss.pdf', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was doing his part time like promoting ads, no basic skills.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-24 11:53:24', 1, '2021-08-24 11:59:44', 0, NULL, 1),
(5990, 'Ajith Kumar E', '2', '9514776355', '9094559288', 'eajithkumara01@gmail.com', '1998-06-24', 23, '2', '2', 'Ethiraj S', 'Daily Wages', 96000.00, 1, 0.00, 15000.00, 'No.58 New Colony 12Th Main Road Anna Nagar Ch-40', 'No.58 New Colony 12Th Main Road Anna Nagar Ch-40', '2108240006', '1', '1', 'upload_files/candidate_tracker/12910357280_Ajith kumar resume.pdf', NULL, '1', '2021-08-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 12:24:41', 1, '2021-08-24 12:36:47', 0, NULL, 1),
(5991, 'M.V. Aahsvin Joe', '22', '9047569008', '7092059705', 'aahsvin01@gmail.com', '1998-10-01', 22, '2', '2', 'M. Mohan Raja Kumar', 'Construction', 20000.00, 1, 0.00, 5000.00, 'Thottavaram, Puthukkadai post, Kanyakumari- 629171', 'Chennai', '2108240007', '1', '1', 'upload_files/candidate_tracker/62099606630_Aahsvin Resume.pdf', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'comm is below avg, can cut copy the blogs and worked as part timer and looking for job in DM.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 12:36:41', 1, '2021-08-24 12:42:36', 0, NULL, 1),
(5992, 'Vignesh C', '4', '9444476610', '7904831978', 'vigneshc2402@gmail.com', '1994-02-24', 27, '3', '2', 'M.Chandra Regu', 'Commercial Pvt Company', 25.00, 1, 15.00, 20.00, 'West Saidapet', 'Chennai', '2108240008', '', '2', 'upload_files/candidate_tracker/59219637756_VIGNESH RESUME.pdf', NULL, '1', '2021-08-24', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was in loan and multiple bank backend process, will not suite for sales, not speaking up', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-24 12:47:04', 1, '2021-08-24 12:58:50', 0, NULL, 1),
(5993, 'niranjani.n', '11', '9566097454', '9840726087', 'niranjani1399@gmail.com', '1999-01-13', 22, '2', '2', 'naren dharan', 'Showroom Manager', 30000.00, 1, 0.00, 20000.00, 'perambur', 'perambur', '2108240009', '1', '1', 'upload_files/candidate_tracker/88460095342_resume .pdf', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Preferred job in Accounts, got a mail from naukri and just came to attend interview. as fresher expt is 15k.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 12:59:55', 1, '2021-08-24 01:05:16', 0, NULL, 1),
(5994, '', '0', '7826980717', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108240010', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-24 02:22:02', 0, NULL, 0, NULL, 1),
(5995, 'Sakubar sathik.A', '4', '9751917976', '6379674305', 'mohammedsathik872@gmail.com', '1996-05-25', 25, '3', '2', 'Abdul kather', 'Textile', 30000.00, 2, 0.00, 13000.00, 'Sivagangai', 'Thamparam', '2108240011', '', '1', 'upload_files/candidate_tracker/80235182708_0_0_Resumen.docx', NULL, '1', '2021-08-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '20days as collection exe, will not sustain, can work for 6m. expt 15k', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-24 02:53:19', 1, '2021-08-24 02:58:46', 0, NULL, 1),
(5996, '', '0', '7871939617', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108240012', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-24 03:36:47', 0, NULL, 0, NULL, 1),
(5997, 'hari prasath m', '22', '8760143503', '6379373954', 'hariprasath43503@gmail.com', '1999-02-27', 22, '2', '2', 'murugesan d', 'farmer', 25000.00, 1, 0.00, 11000.00, 'salem', 'salem', '2108240013', '1', '1', 'upload_files/candidate_tracker/76127265877_Resume_Hari prasath.docx', NULL, '1', '2021-08-30', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Plagiarism in task', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 03:49:29', 1, '2021-08-24 04:41:57', 0, NULL, 1),
(5998, 'vijaya sahadevan jayaram', '27', '8056218152', '', 'sahadevan1203@gmail.com', '1990-12-03', 30, '2', '2', 'jayaram', 'stock trader - dot net developer', 25000.00, 1, 0.00, 15000.00, 'ambattur oragadam chennai', 'chennai', '2108240014', '1', '1', 'upload_files/candidate_tracker/9519739179_VijayaSahadevan_Resume_2021.docx', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'worst Performance, will not suite for any job. attitude was too bad.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 03:53:47', 1, '2021-08-24 04:35:41', 0, NULL, 1),
(5999, 'jayashree A', '2', '9384590373', '9176661765', 'jayashree1996a@gmail.com', '1996-12-14', 24, '2', '2', 'Anandan (father)', 'Tneb', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2108240015', '1', '1', 'upload_files/candidate_tracker/44129085540_Resume2021.docx', NULL, '1', '2021-08-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'still working in css corp 2l ctc, looking for career change, expt is 3-4l.has to discuss about the document submission and service agreement with parents.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 04:00:08', 50, '2021-08-31 12:15:06', 0, NULL, 1),
(6000, '', '0', '9176661765', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108240016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-24 04:12:35', 0, NULL, 0, NULL, 1),
(6001, 'Aishwariya.y', '11', '7358516542', '7358479408', 'aishujuliet0622@gmail.com', '2000-05-22', 21, '2', '2', 'Yoganathan.V', 'Photo framer', 15000.00, 1, 0.00, 15000.00, 'Kolathur chennai', 'Kolathur chennai', '2108240017', '1', '1', 'upload_files/candidate_tracker/21046123725_Aishu Resume.docx', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '6', '1', '', '1', '1', '', '2', '2021-08-30', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 04:23:15', 50, '2021-08-26 03:01:34', 0, NULL, 1),
(6002, 'manchikatla anjaneyulu', '2', '9705360840', '8341443079', 'anjm3025@gmail.com', '1993-05-15', 28, '2', '2', 'sambaiah', 'Business', 25000.00, 2, 0.00, 1.20, 'hyderabad', 'hyderabad', '2108240018', '1', '1', 'upload_files/candidate_tracker/79012206813_Resume (6).docx', NULL, '2', '2021-08-25', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 04:53:52', 50, '2021-08-25 10:10:27', 0, NULL, 1),
(6003, 'sireniu parson', '4', '7358419301', '', 'smsireniyu@gmail.com', '1994-02-13', 27, '2', '2', 'simion', 'Nil', 120000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2108240019', '1', '1', '0', NULL, '1', '2021-08-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling. not speaking up', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-24 05:30:18', 7, '2021-08-28 06:30:11', 0, NULL, 1),
(6004, 'SUTHAN R', '22', '7397719635', '9677886644', 'suthanrathinasamy13@gmail.com', '1997-11-13', 23, '2', '2', 'RATHINASAMY R', 'FARMER', 20000.00, 0, 0.00, 15000.00, 'Tiruppur', 'Coimbatore', '2108240020', '1', '1', 'upload_files/candidate_tracker/57343955397_Suthan new digital resume.pdf', NULL, '1', '2021-08-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for us, pursuing his degree in Journalism and interested in cine field.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-24 05:44:07', 1, '2021-08-24 08:54:12', 0, NULL, 1),
(6005, 'eswari.k', '4', '6382343611', '', 'lavanyakathir31@gmail.com', '1989-05-10', 32, '1', '1', 'kathirvel.k', 'driver', 20000.00, 2, 18000.00, 18000.00, 'orathur village', 'thiruvallur', '2108250001', '', '2', 'upload_files/candidate_tracker/81971158028_interview.pdf', NULL, '1', '2021-08-25', 0, 'r55567', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 10:22:47', 1, '2021-08-25 10:33:20', 0, NULL, 1),
(6006, 'B. sivakumar', '13', '8870694783', '', 'balusiva2312@gmail.com', '1999-12-23', 21, '2', '2', 'Revathi', 'Aranthangi', 16000.00, 1, 10000.00, 16000.00, 'Aranthangi, pudukkottai', 'Aranthangi, Pudukkottai', '2108250002', '1', '2', 'upload_files/candidate_tracker/72396833673_Sivakumar_Resume.pdf', NULL, '3', '2021-08-26', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 10:38:30', 1, '2021-08-25 10:44:06', 0, NULL, 1),
(6007, 'Sindhu M', '11', '9566216108', '', 'sindhumathi2498@gmail.com', '1998-04-02', 23, '2', '2', 'Mathivanan M', 'Asst Manager -OTIL pvt Ltd', 20000.00, 2, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2108250003', '1', '1', 'upload_files/candidate_tracker/25249592997_Sindhu Mathivanan resume.docx', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '2m internship in IIT at admin dept with 15k, not interested in core job, communication is good but expt is 15k+ fresher for us.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 10:53:34', 1, '2021-08-25 11:05:44', 0, NULL, 1),
(6008, 'Dhanush kumar.R', '4', '7200159990', '7550244058', 'akashdhanush0809@gmail.com', '2000-09-08', 20, '2', '2', 'Ravi.N', 'Two wheeler Mechanic', 12000.00, 1, 0.00, 15000.00, 'J/10 Giriappa road,T Nagar,chennai-600017', 'Chennai', '2108250004', '1', '1', 'upload_files/candidate_tracker/36504277643_Resume.docx', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-25 11:04:18', 1, '2021-08-25 11:12:04', 0, NULL, 1),
(6009, 'Nadhiya', '11', '9940228400', '', 'nadhinadhi@yahoo.com', '1989-11-01', 31, '2', '1', 'Rajkumar', 'Marketing', 25000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2108250005', '1', '2', 'upload_files/candidate_tracker/70048301088_mostRecent.docx', NULL, '1', '2021-08-28', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 11:21:30', 1, '2021-08-25 11:26:16', 0, NULL, 1),
(6010, 'Margoobur Rahman A', '2', '7092747677', '', 'margoobahmad619@gmail.com', '2000-06-23', 21, '2', '2', 'MD Hannan', 'Mosque(Mouzan)', 15000.00, 3, 0.00, 200000.00, 'CHENNAI', 'CHENNAI', '2108250006', '1', '1', 'upload_files/candidate_tracker/42961583748_RESUME ..docx', NULL, '1', '2021-08-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not turned up', '2', '1', '0', '1', '1', '0', '2', '2021-09-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 11:28:13', 1, '2021-08-25 11:37:56', 0, NULL, 1),
(6011, 'Johnet Roshini', '11', '9789429629', '7010373355', 'johnetroshini@gmail.com', '1996-06-17', 25, '2', '2', 'Sagaya Raja', 'Carpenter', 18000.00, 1, 0.00, 20000.00, 'Thirupatthur', 'Kk Nagar', '2108250007', '1', '1', 'upload_files/candidate_tracker/57005685502_Johnet Roshini Resume.pdf', NULL, '1', '2021-08-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 4m exp in operation (bank), couldnt handle pressure and 28k ctc, expt is 20k.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-25 11:34:13', 7, '2021-08-28 06:32:12', 0, NULL, 1),
(6012, 'Jenifer j', '4', '8939532845', '', 'jeniferjessyjk79@gmail.com', '1999-11-07', 21, '3', '2', 'K.jagadeesan', 'Kulli', 75000.00, 2, 0.00, 12000.00, 'N0.22,Adam ng, nagalkeni, Chennai - 44', 'N0.22,Adam Ng, Nagalkeni, Chennai_44', '2108250008', '', '1', 'upload_files/candidate_tracker/88215979291_Resume @ jeni.docx', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not handle pressure, fresher and not speaking up', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 11:35:56', 1, '2021-08-25 12:20:18', 0, NULL, 1),
(6013, '', '0', '7358011161', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250009', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 11:40:52', 0, NULL, 0, NULL, 1),
(6014, 'Revathi shree', '11', '7825822999', '', 'revathiravi96.rr@gmail.com', '1996-02-01', 25, '3', '2', 'Ravichandran', 'Senior vp', 100000.00, 0, 0.00, 20000.00, 'Velachery chennai', 'Velachery chennai', '2108250010', '', '1', 'upload_files/candidate_tracker/17233339717_revathi.pdf', NULL, '1', '2021-08-25', 0, '', '4', '72', NULL, 0.00, '', '0', NULL, '1', 'well settled family, only daughter, expt 20k', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 11:41:59', 1, '2021-08-25 12:01:12', 0, NULL, 1),
(6015, '', '0', '8924055054', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250011', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 11:43:24', 0, NULL, 0, NULL, 1),
(6016, 'gunasekar', '4', '6380002446', '', 'gunakoki2523@gmail.com', '1993-10-25', 27, '2', '2', 'R.duraiswamy', 'contractor', 15000.00, 1, 10000.00, 11000.00, 'tirutani', 'tirutani', '2108250012', '1', '2', 'upload_files/candidate_tracker/17588476128_guna industry resume.pdf', NULL, '1', '2021-08-25', 0, '', '3', '59', '2021-09-06', 138948.00, '', '', '2021-09-15', '2', 'Selected for Tiruvallur Location in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-25 11:52:04', 60, '2021-09-01 02:38:28', 0, NULL, 1),
(6017, '', '0', '9940666856', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250013', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 12:05:40', 0, NULL, 0, NULL, 1),
(6018, 'a.keerthiga', '27', '9488677558', '6379873218', 'keerthiga123450@gmil.com', '1998-04-02', 23, '2', '2', 'r.achanna', 'farmer', 12000.00, 1, 0.00, 15000.00, 'kovilpatti', 'kovilpati', '2108250014', '1', '1', 'upload_files/candidate_tracker/62180929607_keerthiga resume.pdf', NULL, '2', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, prefer non voice', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 12:07:29', 1, '2021-08-25 03:44:17', 0, NULL, 1),
(6019, '', '0', '7401429825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250015', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 12:10:13', 0, NULL, 0, NULL, 1),
(6020, 'Balaji', '5', '7871635321', '', 'balajivenkat64@gmail.com', '1999-04-06', 22, '2', '2', 'Venkataraman', 'Collection agent', 2.50, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2108250016', '1', '1', 'upload_files/candidate_tracker/49494589555_Balaji Resume 2021-5.pdf', NULL, '1', '2021-08-25', 0, '', '3', '59', '1970-01-01', 250000.00, '', '2', '1970-01-01', '1', 'Selected for GK sir Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', NULL, NULL, 'H1004', '', NULL, NULL, NULL, 1, '2021-08-25 12:11:55', 60, '2021-08-28 11:33:11', 0, NULL, 1),
(6021, '', '0', '9962638724', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250017', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 12:11:57', 0, NULL, 0, NULL, 1),
(6022, 'V. Jeevitha', '4', '7305910415', '9840227581', 'jeevithajeevikumar2000@gmail.com', '2000-11-30', 20, '2', '2', 'R. Vijayakumar', 'Auto Driver', 2000.00, 1, 0.00, 13000.00, 'Chennai', 'Aminjikarai (Chennai)', '2108250018', '1', '1', 'upload_files/candidate_tracker/16592102550_Document.docx', NULL, '1', '2021-08-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'planning do higher studies will not sustain.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-25 12:19:50', 7, '2021-08-28 06:31:02', 0, NULL, 1),
(6023, 'saravanan', '4', '8925055054', '', 'sarvan27071992@gmail.com', '1994-07-24', 27, '2', '2', 'balu', 'farmer', 10000.00, 0, 12000.00, 13000.00, 'chennai', 'chennai', '2108250019', '2', '2', 'upload_files/candidate_tracker/75814361662_Copy of saravanan resume NEW.docx', NULL, '1', '2021-08-25', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'not attended', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 12:22:47', 1, '2021-08-25 12:25:35', 0, NULL, 1),
(6024, 'Anzinanayagi', '4', '7401429826', '9941607040', 'Anzinanayagi@gmail.com', '1999-03-16', 22, '1', '2', 'Albert rajan', 'Teacher', 11000.00, 1, 10000.00, 11000.00, 'No.63 Perumal street Egmore ch.8', 'No.63 Perumal street Egmore ch.8', '2108250020', '', '2', 'upload_files/candidate_tracker/97503839732_RESUME - ANZINA NAYAGI.pdf', NULL, '1', '2021-08-25', 0, 'Jobs', '3', '59', '1970-01-01', 126000.00, '', '2', '1970-01-01', '2', 'Slected for Muthu with PF/ESI/Pt', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-08-25 12:30:34', 60, '2021-08-28 12:19:16', 0, NULL, 1),
(6025, 'mahathir hussain m', '4', '8098493942', '', 'mahathir139@gmail.com', '1997-07-17', 24, '2', '2', 'meera hussain m', 'driver', 15000.00, 2, 0.00, 8000.00, 'chennai', 'chennai', '2108250021', '2', '1', 'upload_files/candidate_tracker/472797282_Resume_2021-01-04-09-16-32.pdf', NULL, '1', '2021-08-21', 0, '', '3', '59', '2021-08-30', 120000.00, '', '3', '2021-11-12', '2', 'Selected for Muthu with PF/ESI/PT', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 12:31:56', 60, '2021-08-28 11:44:29', 0, NULL, 1),
(6026, 'Pradeep', '2', '8939574739', '', 'mpradeep887@gmail.com', '1996-02-18', 25, '2', '2', 'Muniappan', 'Building work', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2108250022', '1', '1', 'upload_files/candidate_tracker/47470147023_lattst.docx', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 12:41:02', 1, '2021-08-25 01:24:58', 0, NULL, 1),
(6027, 'Srihari', '4', '9962638725', '9962638724', 'srisandy9962638724@gmail.com', '2000-03-29', 21, '1', '2', 'Krishnamurthy', 'Other', 10000.00, 4, 10000.00, 11000.00, 'No.35 8th Street Anjiniya Nager royapuram', 'No.35 8th Street Anjiniya Nager Royapuram', '2108250023', '', '2', 'upload_files/candidate_tracker/12490930523_Document (44).pdf', NULL, '1', '2021-08-25', 0, 'JOBS', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'lang is not good, has 6m exp in credit card collection, will not suite for our process', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 12:47:06', 1, '2021-08-25 12:54:56', 0, NULL, 1),
(6028, 'Vishwajith.v', '11', '6382204385', '8939345508', 'vishwaraina3@gmail.com', '1999-04-26', 22, '2', '2', 'V. varatharajan', 'Security', 30.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2108250024', '1', '1', 'upload_files/candidate_tracker/77763872793_VISHWA RESUME-2.docx', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very poor Performance, pursuing mba in annamalai and he need more training and no acceptance.but okay with all terms and conditions. ', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 01:06:34', 1, '2021-08-25 01:13:29', 0, NULL, 1),
(6029, '', '0', '8072444635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250025', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 01:32:45', 0, NULL, 0, NULL, 1),
(6030, 'Lawrence benjamin R', '6', '8608140798', '7200970292', 'lawrancebenjamin4@gmail.com', '1998-07-14', 23, '3', '2', 'Ravi irundhayaraj', 'Office assistant', 30000.00, 1, 0.00, 15000.00, 'Guindy', 'Guindy', '2108250026', '', '1', 'upload_files/candidate_tracker/57095557091_Lawrence resume.pdf', NULL, '1', '2021-08-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no clarity in speech, no degree 4times drop out, 5050', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-25 01:34:58', 1, '2021-08-25 02:54:33', 0, NULL, 1),
(6031, 'Hari prasath', '6', '7200970292', '8608140798', 'prasathhari227@gmail.com', '1995-10-16', 25, '1', '2', 'Dasarathan', 'Supervisor', 30000.00, 1, 0.00, 15000.00, 'Guindy', 'Guindy', '2108250027', '', '1', 'upload_files/candidate_tracker/95164790378_Hariprasad.pdf', NULL, '1', '2021-08-25', 0, '5558', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'selected for Suthagar team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2021-08-25 01:35:02', 60, '2021-08-28 11:36:48', 0, NULL, 1),
(6032, 'Johnsonfranklin V.D', '2', '8189902135', '', 'johnsonfranklin28032002@gmail.com', '1999-04-21', 22, '2', '2', 'Devasagayam v (Father)', 'Cook', 20000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2108250028', '1', '1', 'upload_files/candidate_tracker/29749431248_Resume_(1)[1].docx', NULL, '1', '2021-08-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher and very slow, rejected in technical round', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 01:43:56', 1, '2021-08-25 02:27:58', 0, NULL, 1),
(6033, 'Abdul Ghani', '2', '8220365174', '', 'Abdulghani254@gmail.com', '1992-09-26', 28, '2', '1', 'ajitha', 'teaching', 10000.00, 2, 0.00, 2.00, 'Cuddalore', 'Cuddalore', '2108250029', '1', '1', 'upload_files/candidate_tracker/89152502508_UD--Abdul Ghani - Full stack web developer - Updated (1).pdf', NULL, '1', '2021-08-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 01:46:12', 1, '2021-08-25 04:14:37', 0, NULL, 1),
(6034, '', '0', '9626431932', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250030', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 02:07:25', 0, NULL, 0, NULL, 1),
(6035, '', '0', '6379873218', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108250031', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-25 02:44:25', 0, NULL, 0, NULL, 1),
(6036, 'Karthik S', '2', '9176121393', '', 'herokarthi52@gmail.com', '2000-02-05', 21, '2', '2', 'Subramani', 'Auto driver', 80000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2108250032', '1', '1', 'upload_files/candidate_tracker/77150596094_Karthik.pdf', NULL, '1', '2021-08-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basics skills and rejected by george.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 03:07:55', 50, '2021-08-30 11:02:28', 0, NULL, 1),
(6037, 'Saimanikandan', '22', '9600160817', '', 'Saimanikandan3101@gmail.com', '1995-01-31', 26, '2', '1', 'Harini Saimanikandan', 'Home maker', 10000.00, 0, 15000.00, 15000.00, 'Chennai', 'Chennai', '2108250033', '1', '2', 'upload_files/candidate_tracker/58984838641_updated Resume Saimanikandan.pdf 2021.docx', NULL, '1', '2021-08-26', 1, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'task plagarised ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 04:50:09', 50, '2021-08-26 10:17:10', 0, NULL, 1),
(6038, 'Franklin', '27', '6383254182', '', 'belofranklin101@gmail.com', '1997-07-14', 24, '2', '2', 'Belaventhira raj', 'Formar', 15000.00, 1, 0.00, 10000.00, 'Periyanellikollai,Cuddalore.', 'Chennai', '2108250034', '1', '1', 'upload_files/candidate_tracker/56416254068_Franklin resume .pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, dont know basics in .net, expt is 12k', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 05:28:20', 1, '2021-08-25 05:35:44', 0, NULL, 1),
(6039, 'VENKATESH B', '22', '8056122248', '', 'VENKATVISHANTH36@GMAIL.COM', '1999-05-16', 22, '2', '2', 'Balaji K', 'Medical shop manager', 15000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2108250035', '1', '1', 'upload_files/candidate_tracker/94157379297_professional resume.pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, expt is 3-4l. good in communication alone. planning to settle in singapore', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 05:34:57', 1, '2021-08-25 05:40:14', 0, NULL, 1),
(6040, 'Harideep S', '22', '8190881685', '', 'hdhardeep3@gmail.com', '1997-08-23', 24, '2', '2', 'Senthil Kumar R', 'Farmer', 150000.00, 1, 15000.00, 18000.00, 'Krishnagiri', 'Chennai', '2108250036', '1', '2', 'upload_files/candidate_tracker/36418347351_HARIDEEP RESUME.docx', NULL, '1', '2021-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-25 05:52:39', 1, '2021-08-25 05:55:55', 0, NULL, 1),
(6041, 'Nivedita S', '5', '7695960741', '', 'snive12345@gmail.com', '1996-04-18', 25, '3', '2', 'Sivarajan K', 'Assistant Manager', 40000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2108260001', '', '1', 'upload_files/candidate_tracker/60144269221_Resume_.docx', NULL, '1', '2021-08-26', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for RM Profile', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-26 10:00:42', 8, '2021-08-26 11:41:02', 0, NULL, 1),
(6042, 'Yogesh G', '4', '9025687522', '', 'yy39321@gmail.com', '2000-01-05', 21, '2', '2', 'Chitra G', 'Lab assistant', 10000.00, 1, 0.00, 14000.00, '23/18 Manali new town', 'Chennai', '2108260002', '1', '1', 'upload_files/candidate_tracker/18147312948_RESUME (1).pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, not speaking up, will not suite for calling, expt is 14k', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 10:08:19', 8, '2021-08-26 06:43:51', 0, NULL, 1),
(6043, 'Akash.H', '6', '7639913438', '9940894279', 'Akashhari396@gmail.com', '1999-09-29', 21, '3', '2', 'D.haridoss', 'Welder fitter', 9000.00, 2, 0.00, 14000.00, 'Ponneri', 'Washermanpet', '2108260003', '', '1', 'upload_files/candidate_tracker/44454210712_Akash resume.docx', NULL, '1', '2021-08-26', 0, '', '3', '59', '2021-09-02', 156000.00, '', '3', '2021-09-02', '1', 'Selected for Srikanth team with CTC 156000 includes PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-26 10:09:39', 60, '2021-08-28 12:20:20', 0, NULL, 1),
(6044, 'Santhakumar S', '4', '6385200627', '', 'Thalasanta7@gmail.com', '2001-06-10', 20, '2', '2', 'Sakthivel punitha', 'Farmer', 12000.00, 0, 0.00, 12000.00, 'Thiruvannamalai', 'T nakar', '2108260004', '1', '1', 'upload_files/candidate_tracker/60115433836_BONAFIDE PDF.pdf', NULL, '3', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no pronunciation, very native slang. will not suite for health calling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 10:10:10', 7, '2021-08-28 06:32:42', 0, NULL, 1),
(6045, 'Gayathri', '4', '9791141573', '9952917802', 'ganesangayathri008@gmail.com', '1997-12-01', 23, '2', '2', 'G.jayalakshmi', 'Home maker', 10000.00, 1, 12000.00, 14000.00, 'Chennai', 'Chennai', '2108260005', '1', '2', 'upload_files/candidate_tracker/6860843215_Gayathri.G - Resume - 03-Jan-2020.pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not handle sales pressure, has admin exp, was asking about target and job with out target', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 10:14:51', 7, '2021-08-26 06:33:01', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6046, '', '0', '8190854078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108260006', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-26 10:32:16', 0, NULL, 0, NULL, 1),
(6047, 'Nadeem sha', '6', '8754610219', '9790646093', 'Shanadeem8.ns@gmail.com', '1997-12-29', 23, '2', '2', 'Epunoose', 'Business', 100000.00, 1, 0.00, 16000.00, 'Marthandam', 'No.9 madhanandhapuram porur chennai', '2108260007', '1', '1', 'upload_files/candidate_tracker/22398882270_Anantharaj.P.pdf', NULL, '1', '2021-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not open to work on Saturdays and his cTC Expectation is very high. Min Expectation is around 16K as TH', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 10:36:29', 50, '2021-08-31 03:38:58', 0, NULL, 1),
(6048, 'Mohamed faiyaz khan', '8', '8190855078', '9176592495', 'Faiyaz08.fk@gmail.com', '2001-05-08', 20, '2', '2', 'Mohamed akbar Khan', 'Field officer', 240000.00, 1, 0.00, 14000.00, 'No 2a Kamaraj Nagar 2nd Street dharga colony', 'Pallavaram', '2108260008', '1', '1', 'upload_files/candidate_tracker/99926020063_MOHAMED FAIYAZ KHAN.docx', NULL, '1', '2021-08-26', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he wonxquott accept 1 yr Bond, if its 6 month he will be join after discussion with Family', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-26 11:00:10', 50, '2021-08-26 06:39:26', 0, NULL, 1),
(6049, 'Rashika raman DP', '4', '7358739846', '8148987284', 'Prashikaraman@gmail.com', '1998-05-23', 23, '2', '2', 'Parasuraman D', 'Financial work', 12000.00, 1, 12000.00, 12000.00, 'Perumbakkam', 'Perumbakkam', '2108260009', '1', '2', 'upload_files/candidate_tracker/58889046839_Rashikaraman new resume .pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long, was doing part time job in dominos 6k, expt 12k and voice is very low', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-26 11:14:27', 8, '2021-08-26 06:29:07', 0, NULL, 1),
(6050, 'Vishal', '6', '9944591749', '', 'vishalhsr246@gmail.com', '1999-06-13', 22, '2', '2', 'anbalagan', 'working', 80000.00, 1, 18000.00, 20000.00, 'chennai', 'triplicane', '2108260010', '1', '2', 'upload_files/candidate_tracker/82139219453_Vishal\'\'Anbalagan.docx', NULL, '1', '2021-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-26 11:39:40', 1, '2021-08-26 11:44:30', 0, NULL, 1),
(6051, 'priyadharshini', '23', '9585621554', '9791807611', 'priyacse33977@gmail.com', '1997-03-03', 24, '2', '2', 'ambikapathi', 'web designing', 10000.00, 1, 10000.00, 15000.00, 'thiurnageswaram kumbakonam', 'kumbakonam', '2108260011', '1', '2', 'upload_files/candidate_tracker/13629994853_priya-resume.pdf', NULL, '3', '2021-08-27', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not upto the level.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 11:51:15', 50, '2021-08-27 10:34:34', 0, NULL, 1),
(6052, 'Deepak k', '4', '7395945292', '', 'deepakk7112000@gmail.com', '2000-11-07', 20, '2', '2', 'Kannak T', 'Supervisor', 12000.00, 2, 0.00, 10000.00, 'Cuddalore', 'Chennai', '2108260012', '1', '1', 'upload_files/candidate_tracker/36341582777_deepak resume.pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain and prefer non voice', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 12:03:57', 7, '2021-08-28 06:31:33', 0, NULL, 1),
(6053, 'Karthick Raj S', '11', '9944866706', '', 'raj.karthick18s@gmail.com', '1997-11-18', 23, '2', '2', 'Sembulingam', 'business', 8000.00, 2, 0.00, 20000.00, 'Karaikudi', 'Karaikudi', '2108260013', '1', '1', 'upload_files/candidate_tracker/89498477304_Resume_Karthick_Raj.pdf', NULL, '1', '2021-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 12:05:06', 1, '2021-08-26 12:12:37', 0, NULL, 1),
(6054, 'arjun k', '5', '7353819092', '7406795081', 'arjunalbertok@gmail.com', '1995-01-16', 26, '2', '1', 'sushmitha', 'Salaried', 15000.00, 1, 2.84, 3.50, 'ponnampete coorg', 'btm layout bangalore', '2108260014', '1', '2', 'upload_files/candidate_tracker/49557881963_kaala new resume KOTAk 2021.pdf', NULL, '1', '2021-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate salary Expectation is very high, holding multiple offers and demanding a lot from us. Expecting around 21% from his last drawn CTC and no relevant insurance sales exp.If we offered also not sure he joins us', '5', '2', '', '2', '2', '', '2', '2021-09-09', '2', '1', 'Candidate Salary Expectation Is Very High, Holding Multiple Offers And Demanding A Lot From Us. Expecting Around 21% From His Last Drawn CTC And No Relevant Insurance Sales Exp. If We Offered Also Not Sure He Joins Us. Discussed the same with Regional Head Sathish and updated the same', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-08-26 12:54:19', 60, '2021-09-09 05:04:10', 0, NULL, 1),
(6055, 'Mohamed Habib', '23', '9840596668', '', 'habib96668@gmail.com', '1993-11-16', 27, '2', '2', 'Abdul rahman', 'Business', 10000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2108260015', '1', '2', 'upload_files/candidate_tracker/91438238100_Resume_Mohamed.pdf', NULL, '1', '2021-08-31', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not good with terms', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 12:55:14', 50, '2021-08-31 12:16:11', 0, NULL, 1),
(6056, '', '0', '9585261554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108260016', '0', '0', NULL, NULL, NULL, NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-26 12:56:06', 0, NULL, 0, NULL, 1),
(6057, 'Ramya', '11', '8754753436', '9361681271', 'ramyakrishnanpandiyan1999@gmail.com', '1999-05-26', 22, '2', '2', 'Bavani', 'House wife', 35000.00, 1, 0.00, 12000.00, 'Cuddalore', 'Chennai', '2108260017', '1', '1', 'upload_files/candidate_tracker/9148196003_RAMYA RESUME 3.doc', NULL, '1', '2021-08-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 01:15:15', 1, '2021-08-26 01:43:10', 0, NULL, 1),
(6058, 'thiruvarasan', '4', '9500915259', '', 'thiru@gmail.com', '1999-12-28', 21, '2', '2', 'ravi', 'Farmer', 12000.00, 0, 0.00, 10000.00, 'ranipet', 'chennai', '2108260018', '1', '1', 'upload_files/candidate_tracker/69835219765_SamplePDF.pdf', NULL, '1', '2021-08-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, stammering to talk. came by naukri mail.', '1', '2', '', '', '', '', '1', '1970-01-01', '3', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-26 01:34:07', 7, '2021-08-26 06:41:36', 0, NULL, 1),
(6059, 'Kamal mohan', '2', '9940168388', '', 'kamalmohan1498@gmail.com', '1998-12-14', 22, '2', '2', 'Mohan sha', 'Carpenter', 5000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2108260019', '1', '1', 'upload_files/candidate_tracker/63093476143_Document.docx', NULL, '1', '2021-08-27', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'has 1.5yr exp in sutherland, expt 2-3l and knows basics in lang, okay with our tearms', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 02:53:06', 1, '2021-08-26 02:59:40', 0, NULL, 1),
(6060, 'puvarasu', '4', '9790836919', '9944481436', 'arasubmathi2000@gmail.com', '2000-09-05', 20, '2', '2', 'boopathy', 'working', 12000.00, 1, 0.00, 10000.00, 'chennai', 'thiruvallur', '2108260020', '1', '1', 'upload_files/candidate_tracker/49394920547_CV_2021-08-02-020008.pdf', NULL, '1', '2021-08-27', 0, '', '3', '59', '2021-08-30', 120000.00, '', '5', '1970-01-01', '1', 'selected for Tiruvallur in cash mode', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-26 03:40:07', 60, '2021-08-28 12:56:36', 0, NULL, 1),
(6061, 'Babu P', '22', '9360896166', '7358309592', 'israelmano011@gmail.com', '1993-02-11', 28, '2', '2', 'THIRUPAMMA', 'House wife', 30000.00, 1, 0.00, 10000.00, 'Chennai', 'T Nagar', '2108260021', '1', '1', 'upload_files/candidate_tracker/51969596261_Digi RE-1102.pdf', NULL, '1', '2021-08-27', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Plagarised task', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 03:51:48', 1, '2021-08-26 04:00:30', 0, NULL, 1),
(6062, 'Bagavathi', '11', '7550262237', '', 'bagabagavathi7@gmail.com', '1997-08-19', 24, '2', '2', 'Amsakkani', 'house wife', 10000.00, 0, 0.00, 15000.00, 'Ambattur', 'Ambattur', '2108260022', '1', '1', 'upload_files/candidate_tracker/51096601945_Bagavathi Resume.pdf', NULL, '1', '2021-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 04:00:06', 1, '2021-08-26 04:07:24', 0, NULL, 1),
(6063, 'Alexander M', '3', '9994388702', '9345414773', 'alexander06999@gmail.com', '1999-10-06', 21, '2', '2', 'Mani A', 'INFORMATION TECHNOLOGY', 15000.00, 1, 0.00, 15000.00, 'Karur', 'Karur', '2108260023', '1', '1', 'upload_files/candidate_tracker/84767941598_Alexander resume 1.docx', NULL, '1', '2021-09-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not active, father is an awin milk dealer, fro karur. just like that looking for job. ', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 04:26:04', 7, '2021-09-01 03:41:56', 0, NULL, 1),
(6064, 'shiva Kumar', '13', '8754236246', '9789335086', 'cvakumar8947@gmail.com', '2001-05-16', 20, '2', '2', 'AyyaPillai', 'IndianNavy', 30000.00, 1, 0.00, 15000.00, 'Suthamalli', 'Suthamalli', '2108260024', '1', '1', 'upload_files/candidate_tracker/93211269799_RESUME (1).pdf', NULL, '1', '2021-09-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 06:12:55', 1, '2021-08-26 06:18:16', 0, NULL, 1),
(6065, 'Jayaprakash', '2', '7904660417', '', 'talktojpk@gmail.com', '2006-08-26', 0, '2', '2', 'M. Kumar', 'Farmar', 5000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2108260025', '1', '1', 'upload_files/candidate_tracker/79119879161_Jayaprakash_new Resume.pdf', NULL, '1', '2021-08-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'shared profile with george, no knowledge in java script.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-26 07:58:39', 1, '2021-08-26 08:03:25', 0, NULL, 1),
(6066, 'HARSHA. B', '6', '8778382042', '9087019819', 'harsha0070raju@gmail.com', '2003-02-14', 18, '1', '2', 'Salva muni baskar', 'Watch man', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2108270001', '', '1', 'upload_files/candidate_tracker/43537344671_HARSHA. B RESUME.docx', NULL, '1', '2021-08-27', 0, 'P1257', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very childish and 18. will not suit for calling', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 09:46:13', 1, '2021-08-27 09:56:02', 0, NULL, 1),
(6067, 'test latha', '13', '9677289220', '9677289220', 'latha@cafsinfotech.in', '1995-05-07', 26, '3', '1', 'test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270002', '', '1', 'upload_files/candidate_tracker/54541973970_P1027.pdf', NULL, '1', '2021-08-27', 0, '', '3', '1', '2021-08-27', 0.00, '', '5', '1970-01-01', '1', '', '2', '2', '1', '1', '1', '1', '1', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:11:31', 1, '2021-08-27 10:15:25', 0, NULL, 1),
(6068, 'Narmatha D', '6', '8072063814', '', 'Narmathapandian98@gmail.com', '1998-11-21', 22, '2', '2', 'S .p.Duraipandian', 'Eletrition', 10000.00, 1, 0.00, 10000.00, 'Ponneri', 'Ponneri', '2108270003', '1', '1', 'upload_files/candidate_tracker/19196482425_Resume (1).pdf', NULL, '1', '2021-08-27', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up, prefer acc job, expr 12-15k', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-27 10:18:24', 7, '2021-08-28 06:34:59', 0, NULL, 1),
(6069, 'Maneesha D', '6', '8248122948', '', 'Maneeshad249@gmail.com', '1998-06-15', 23, '1', '2', 'Devnarayan', 'Electician', 10000.00, 2, 0.00, 10000.00, 'Gummidipoondi', 'Gummidipoondi', '2108270004', '', '1', 'upload_files/candidate_tracker/64061345501_Johnet Roshini Resume.pdf', NULL, '1', '2021-08-27', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no local language, eng below avg.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:27:49', 1, '2021-08-27 10:32:21', 0, NULL, 1),
(6070, 'testlatha', '13', '7092286353', '7092286353', 'latha@cafsinfotech.in', '1995-08-27', 26, '3', '2', 'Test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270005', '', '1', '0', NULL, '1', '2021-08-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '', '', '', '1', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:28:01', 0, NULL, 0, NULL, 1),
(6071, 'testing latha', '13', '1234567890', '1234567890', 'latha@cafsinfotech.in', '1995-08-27', 26, '3', '2', 'Test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270006', '', '1', '0', NULL, '1', '2021-08-27', 0, '', '3', '1', '2021-08-27', 0.00, '', '5', '1970-01-01', '1', '', '2', '1', '1', '1', '1', '1', '2', '2021-08-27', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:35:21', 1, '2021-08-27 11:00:35', 0, NULL, 1),
(6072, 'latha test', '13', '9090909090', '9090909090', 'latha@cafsinfotech.in', '1995-08-27', 26, '3', '2', 'Test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270007', '', '1', '0', NULL, '1', '2021-08-27', 0, '', '3', '1', '2021-08-27', 0.00, '', '7', '1970-01-01', '1', '', '2', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 10:46:40', 1, '2021-08-27 10:47:17', 0, NULL, 1),
(6073, 'testing', '16', '5656565656', '5656565656', 'latha@cafsinfotech.in', '2006-08-27', 0, '3', '2', 'Test', 'Test', 0.00, 0, 0.00, 0.00, 'Test', 'Test', '2108270008', '', '1', '0', NULL, '1', '2021-08-27', 0, '', '3', '1', '2021-08-27', 0.00, '', '8', '1970-01-01', '1', '', '3', '2', '1', '1', '1', '', '1', '1970-01-01', '1', '2', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-27 11:01:37', 1, '2021-08-27 06:35:27', 0, NULL, 1),
(6074, 'Sinegha R', '4', '9677857898', '', 'sinegharajendran@gmail.com', '1993-03-08', 28, '2', '2', 'Prabakala', 'Clerk', 50000.00, 1, 180000.00, 250000.00, 'Perambalur', 'Chennai', '2108270009', '1', '2', 'upload_files/candidate_tracker/89043386535_Sinegha R.pdf', NULL, '1', '2021-08-27', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '1', '', '1', '1', '', '2', '2021-08-30', '2', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-27 11:55:03', 50, '2021-08-27 12:07:17', 0, NULL, 1),
(6075, 'Godveen Paul', '6', '9551444485', '8939966690', 'godveenpaul@gmail.com', '1997-11-03', 23, '2', '2', 'Antony', 'Nil', 1.00, 1, 163000.00, 400000.00, 'Chennai', 'Chennai', '2108270010', '1', '2', 'upload_files/candidate_tracker/93695851664_Godveen Experience Resume.pdf', NULL, '1', '2021-08-27', 90, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'expt 4l, no relevant exp, no sales skills and convincing.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-27 11:57:08', 1, '2021-08-27 12:08:14', 0, NULL, 1),
(6076, '', '0', '9791071261', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108270011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-27 12:34:59', 0, NULL, 0, NULL, 1),
(6077, 'A.Bhuvana', '4', '9962827575', '9884646763', 'bhuvana.ayyanar.a@gmail.com', '2000-10-12', 20, '2', '2', 'K.Ayyanar', 'lorry Driver', 20000.00, 1, 0.00, 12000.00, 'Tondiarpet', 'no 23/20 seniamman kovil 2nd street', '2108270012', '1', '1', 'upload_files/candidate_tracker/58092064441_A.Bhuvana resume .pdf', NULL, '1', '2021-08-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '1m in collection, will not sustain expt 10-11k', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-27 12:36:21', 1, '2021-08-27 12:47:32', 0, NULL, 1),
(6078, 'asif basha s', '27', '9789793258', '', 'bashaasif391@gmail.com', '1998-06-08', 23, '2', '2', 'sardar a', 'farmer', 20000.00, 2, 0.00, 15000.00, 'tirupattur', 'chennai', '2108270013', '1', '1', 'upload_files/candidate_tracker/54137750298_Asif Resume.pdf', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 12:36:44', 1, '2021-08-27 02:57:30', 0, NULL, 1),
(6079, '', '0', '8838664065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108270014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-27 01:02:07', 0, NULL, 0, NULL, 1),
(6080, 'francis assisya', '4', '6369220074', '', 'assisyanathen@gmail.com', '2001-08-27', 20, '2', '2', 'arokiyanathan', 'working', 30000.00, 4, 0.00, 10000.00, 'chennai', 'thiruvallur', '2108270015', '1', '1', 'upload_files/candidate_tracker/55482752253_FRANCIS ASSISIYA. A (CURRICULAM VITAE)-1.pdf', NULL, '1', '2021-08-28', 0, '', '3', '59', '2021-08-30', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Tiruvallur in cash mode tH 9500.Candidate seems 50/50', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-27 01:04:26', 60, '2021-08-28 05:26:15', 0, NULL, 1),
(6081, 'Nandhagopal', '11', '7904199495', '9551991198', 'nandha1504@gmail.com', '1998-04-15', 23, '2', '2', 'Mani. D', 'Carpenter', 30000.00, 2, 0.00, 13000.00, 'Chennai virugambakkam', 'Chennai virugambakkam', '2108270016', '1', '1', 'upload_files/candidate_tracker/4528176160_NG resume .pdf', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 01:08:39', 1, '2021-08-27 01:33:57', 0, NULL, 1),
(6082, 'Poovarasan R', '22', '9952094926', '', 'poovarasan4926@gmail.com', '2006-08-27', 15, '2', '2', 'TS Rajasekaran', 'Business', 60000.00, 1, 0.00, 15000.00, 'No 5 Elumalai nagar rathinam street padi', 'No 5 elumalai nagar rathinam street padi', '2108270017', '1', '1', 'upload_files/candidate_tracker/73333602323_poovarasan.pdf', NULL, '1', '2021-08-30', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate interned for a day and quit', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 01:22:51', 1, '2021-08-27 01:29:19', 0, NULL, 1),
(6083, 'Ashok M', '22', '9841608538', '', 'Ashok96jay@gmail.com', '1996-09-12', 24, '2', '2', 'Murugan C', 'Building construction', 40000.00, 1, 0.00, 15000.00, 'Chennai-kodambakkam', 'Chennai-kodambakkam', '2108270018', '1', '1', 'upload_files/candidate_tracker/39402127984_ASHOK Resume-compressed.pdf', NULL, '1', '2021-08-28', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'plagarised task', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 01:26:15', 1, '2021-08-27 01:29:48', 0, NULL, 1),
(6084, 'sivaraman', '4', '8754351887', '', 'sivavijaymech@gmail.com', '1997-06-02', 24, '2', '2', 'durai', 'farmer', 20000.00, 1, 0.00, 10000.00, 'chennai', 'thousand lights', '2108270019', '1', '1', 'upload_files/candidate_tracker/27535631192_document2.pdf', NULL, '1', '2021-08-27', 0, '', '3', '59', '2021-08-30', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Priyanka Team in Cash mode. No Laptop', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-27 01:29:11', 60, '2021-08-28 11:15:37', 0, NULL, 1),
(6085, 'VIGNESH C', '22', '8220437912', '', 'vigneshc2104@gmail.com', '1996-04-21', 25, '2', '2', 'CHINNASAMY C', 'Daily wages', 40000.00, 1, 0.00, 15000.00, 'T. Nagar, Chennai', 'T. Nagar, Chennai', '2108270020', '1', '1', 'upload_files/candidate_tracker/45677532406_VIGNESH_C_RESUME.pdf', NULL, '1', '2021-08-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 01:47:12', 1, '2021-08-28 04:58:06', 0, NULL, 1),
(6086, 'Sindhu', '6', '7395872693', '8870589562', 'sindhu20032000@gmail.com', '2000-03-20', 0, '2', '2', 'Siva.v', 'Famer', 75000.00, 2, 18000.00, 22000.00, 'Marakkanam', 'Velachery', '2108270021', '1', '2', 'upload_files/candidate_tracker/41376774983_SINDHU S.pdf', NULL, '1', '2024-05-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Proposed a salary but her exp is very for DM channel', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2021-08-27 02:09:20', 112, '2024-05-03 12:58:52', 0, NULL, 1),
(6087, '', '0', '9940635459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-27 02:09:50', 0, NULL, 0, NULL, 1),
(6088, 'Aravindhan A', '27', '6369299301', '8098804088', 'aravindhanmca115@gmail.com', '1998-01-23', 23, '2', '2', 'Adimoolam K', 'Teacher', 25000.00, 2, 0.00, 10.00, 'Tirupattur', 'Chennai', '2108270023', '1', '1', 'upload_files/candidate_tracker/93423623014_RESUME.ARAVINDH.2021P.pdf', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-27 08:14:48', 1, '2021-08-27 08:23:06', 0, NULL, 1),
(6089, 'test', '13', '5555511111', '', 'latha@cafsinfotech.in', '1995-08-28', 26, '3', '2', 'Test', 'Test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2108280001', '', '1', 'upload_files/candidate_tracker/3020143453_change options.pdf', NULL, '1', '2021-08-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 09:36:25', 1, '2021-08-28 09:37:46', 0, NULL, 1),
(6090, 'N. divya', '4', '6379452432', '', 'divyagopal134@gmail.com', '2001-07-01', 20, '1', '2', '20000', 'briver', 400000.00, 1, 0.00, 15000.00, 'chembarambakkam', 'chembarambakkam', '2108280002', '', '1', 'upload_files/candidate_tracker/23001839713_RESUME.docx', NULL, '1', '2021-08-28', 0, 'jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 09:41:12', 1, '2021-08-28 09:52:35', 0, NULL, 1),
(6091, 'Anusuya', '4', '7305301856', '6379452438', 'abigailanushya7@gmail.com', '2000-07-12', 21, '1', '2', 'Isreal', 'Cooly', 12000.00, 1, 0.00, 14000.00, 'No.710 bajanai Kovil street chembarampakkam', 'No.710 Bajanai Kovil street chembarampakkam', '2108280003', '', '1', 'upload_files/candidate_tracker/59505723823_Anushya resume.docx', NULL, '1', '2021-08-28', 0, 'JOBS', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up very low voice, will not suite for calling', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 09:55:11', 1, '2021-08-28 10:06:37', 0, NULL, 1),
(6092, 'nancy rani', '4', '7904315364', '', 'nancyranibabu05@gmail.com', '2006-08-28', 0, '2', '2', 'dillibabu', 'employee', 15000.00, 1, 0.00, 10000.00, 'ondikuppam', 'tiruvanamalai', '2108280004', '1', '1', 'upload_files/candidate_tracker/55567050710_CV_2021-07-07-070439.pdf', NULL, '1', '2021-08-28', 0, '', '3', '59', '2021-08-30', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location in cash mode TH 9500', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-28 10:00:13', 60, '2021-08-28 05:35:46', 0, NULL, 1),
(6093, 'Selvakumar', '4', '9042208708', '', 'Selvakumar12041999@gmail.com', '1999-04-12', 22, '4', '2', 'Thulasi K', 'Daily wages', 15000.00, 1, 0.00, 13000.00, 'Vriddhachalam', 'CHENNAI', '2108280005', '', '1', 'upload_files/candidate_tracker/87869942932_Selvakumar 001 Resume.pdf', NULL, '1', '2021-08-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for calling. pronunciation is not clear.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 10:24:15', 1, '2021-08-28 10:27:43', 0, NULL, 1),
(6094, 'Shalem raju kalivela', '6', '9840401487', '9566242851', 'Shalemkalivela07@gmail.com', '1999-07-28', 22, '2', '2', 'Parent', 'Church pastor', 20000.00, 4, 0.00, 15.00, 'Korukkpet', 'Korukkpet', '2108280006', '1', '1', 'upload_files/candidate_tracker/25879567723_shalem Resume 2021.pdf', NULL, '1', '2021-08-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp In Sales,This Is The First Interview In Sales Profile.Yet To Complete His 12th Std, Career Gap,Having Only BPo Healthcare Exp .Sustainability xxamp Pressure Handling Doubt For This Profile.Discussed with Sir and cross checked with the candidate for collection cum sales,but candidate was not interested towards this role', '5', '1', '', '1', '1', '', '2', '2021-08-30', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-28 11:44:15', 8, '2021-08-28 01:24:00', 0, NULL, 1),
(6095, 'sarath', '4', '8825643920', '', 'sarathgopi81810@gmail.com', '2000-03-07', 21, '2', '2', 'gopinath', 'govt employee', 50000.00, 1, 0.00, 10000.00, 'chennai', 'maduravoyal', '2108280007', '1', '1', 'upload_files/candidate_tracker/63027876136_Sarath resume word.docx', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-28 12:09:23', 1, '2021-08-28 12:09:05', 0, NULL, 1),
(6096, '', '0', '9384274909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108280008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-28 12:11:10', 0, NULL, 0, NULL, 1),
(6097, 'Soundarya.R', '4', '9384274904', '9941202447', 'Soundlali4@gmail.com', '1999-09-25', 21, '3', '2', 'Eswari', 'Housewife', 6500.00, 1, 0.00, 15000.00, 'Thiruvottiyur chennai', 'Chennai', '2108280009', '', '1', 'upload_files/candidate_tracker/72940669577_Soundarya resume.pdf', NULL, '1', '2021-08-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for calling, job need.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 12:32:20', 1, '2021-08-28 12:37:07', 0, NULL, 1),
(6098, 'Sai Lakshmi', '16', '8939259021', '', 'sailakshmithiyagaraj@gmail.com', '2000-12-15', 20, '1', '1', 'Valarmathi', 'Working in shop', 120000.00, 1, 0.00, 15000.00, '75,Arunachalam street,Chintadripet', 'Chennai', '2108280010', '', '1', 'upload_files/candidate_tracker/42570990395_CV_ sai .pdf', NULL, '1', '2021-08-28', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'high job need, avg communication and expt is 11k-12k. no father and mom daily wages.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 12:47:29', 1, '2021-08-28 01:04:55', 0, NULL, 1),
(6099, 'Dhanalakshmi.j', '4', '7305348823', '7401199071', 'Dhanakarthi24@gmail.com', '1998-04-02', 23, '3', '1', 'Jayaraj', 'Auto Driver', 6500.00, 2, 0.00, 15000.00, 'Thiruvottiyur chennai', 'Chennai', '2108280011', '', '1', 'upload_files/candidate_tracker/25413360896_New Doc 2021-08-23 15.14.08_1.pdf', NULL, '1', '2021-08-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, from enore and expt is 15k', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-28 12:49:17', 1, '2021-08-28 12:53:52', 0, NULL, 1),
(6100, 'naveen', '4', '7010260353', '', 'naveenbfaran@gmail.com', '1998-08-10', 23, '2', '2', 'babu', 'rtd', 25000.00, 2, 0.00, 10000.00, 'chennai', 'thiruvitriyur', '2108280012', '1', '1', 'upload_files/candidate_tracker/3757610248_Naveen resume.docx', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-28 01:15:25', 1, '2021-08-28 01:19:21', 0, NULL, 1),
(6101, 'Balaji', '4', '6383097622', '', 'p.balaji1724@gmail.com', '2000-04-24', 21, '2', '2', 'padmasekar', 'late', 20000.00, 1, 0.00, 10000.00, 'chennai', 'kolathur', '2108280013', '1', '1', 'upload_files/candidate_tracker/4992181985_Balaji-Resume.pdf', NULL, '1', '2021-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-28 01:21:22', 1, '2021-08-28 02:20:30', 0, NULL, 1),
(6102, 'Krupa Shankar', '11', '9600165925', '', 'krupashankar98@gmail.com', '2006-08-28', 0, '2', '2', 'Shankar', 'Unemployed', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2108280014', '1', '1', 'upload_files/candidate_tracker/44244183112_KRUPA.pdf', NULL, '1', '2021-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us, was asking for leaves and timings and weekoff, expt is 15k and not okay with terms and conditions.', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-28 05:04:15', 50, '2021-09-03 10:24:42', 0, NULL, 1),
(6103, '', '0', '8124309705', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108280015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-28 06:12:57', 0, NULL, 0, NULL, 1),
(6104, 'anupriya', '4', '8870252577', '', 'apanuarun@gmail.com', '2000-06-25', 21, '2', '2', 'arunodhayam', 'auto driver', 15000.00, 2, 0.00, 10000.00, 'thiruvallur', 'Thiruvallur', '2108300001', '1', '1', 'upload_files/candidate_tracker/60487053091_A. ANUPRIYA RESUME.docx', NULL, '1', '2021-08-31', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-30 10:53:14', 1, '2021-08-30 10:55:22', 0, NULL, 1),
(6105, 'gayathri', '4', '7904473373', '', 'hgayathri151@gmail.com', '1997-11-21', 23, '2', '2', 'madhavan', 'rtd', 14000.00, 1, 14000.00, 16000.00, 'chennai', 'aynavaram', '2108300002', '1', '2', 'upload_files/candidate_tracker/25982085714_RESUME .gayathri.pdf', NULL, '1', '2021-09-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not responding to the calls. Even we tried reaching her on 07-Sep-2021.Earlier we Discussed With Her The Salary, Also She Looks For PF/ESI Benefits Too. The Candidate Will Share The Offer Letter And The Other Documents Today. I Will Confirm The Same ASAP Once Received From The Candidate', '1', '2', '', '1', '1', '', '2', '2021-09-02', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-30 10:56:41', 50, '2021-09-01 11:25:41', 0, NULL, 1),
(6106, 'ramkumar', '2', '9445506400', '7904041003', 'rmkumar204@gmail.com', '1988-06-12', 33, '2', '2', 'p.murugesan', 'nil', 8000.00, 1, 0.00, 18000.00, 'salem', 'chennai', '2108300003', '1', '1', 'upload_files/candidate_tracker/61001711583_Ramkumar\'s FE Resume.pdf', NULL, '1', '2021-09-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 11:34:09', 1, '2021-08-30 11:44:43', 0, NULL, 1),
(6107, 'P Aishwarya', '4', '6381462748', '9884741435', 'aishu1999parthiban@gmail.com', '1999-01-19', 22, '2', '2', 'B Parthiban', 'B Com', 70000.00, 2, 0.00, 10000.00, 'Nasarathpet', 'Nasarathper', '2108300004', '1', '1', 'upload_files/candidate_tracker/16564371083_Aishwarya Resume.pdf', NULL, '1', '2021-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfortable with the salary what we offered being a fresher.Expecation is high than the 10.5 we offered. Not responding to the calls properly.Will not sustain for a long.', '1', '1', '', '1', '1', '', '2', '2021-09-02', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-30 11:59:57', 50, '2021-09-02 10:11:34', 0, NULL, 1),
(6108, 'Sonipreetha', '4', '9944603394', '9843890497', 'sonipreethakutty98@gmail.com', '1998-02-03', 23, '2', '2', 'S.kavitha', 'Typist', 15000.00, 1, 0.00, 10000.00, 'Triplicane', 'Triplicane', '2108300005', '1', '1', 'upload_files/candidate_tracker/61924474997_Soni Resume.docx', NULL, '1', '2021-08-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up, doing her own biz reselling. job need but will not handle pressure.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-30 12:34:05', 50, '2021-08-31 03:37:58', 0, NULL, 1),
(6109, 'Jayapriya', '4', '8870960498', '', 'priyaiamjaya@gmail.com', '1997-12-18', 23, '2', '2', 'Shanmugam', 'Retired', 10000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2108300006', '1', '2', 'upload_files/candidate_tracker/56678413591_My New Resume-2-converted.pdf', NULL, '1', '2021-08-30', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2yr exp in manapuram gold loan 18k, target based salary, Resigned and looking for job. expt 15k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-08-30 12:35:22', 50, '2021-08-31 03:37:38', 0, NULL, 1),
(6110, 'tharik anvar', '6', '7904801599', '9894357219', 'tharik.anvar@yahoo.in', '1997-03-28', 24, '2', '2', 'kadher mohammed', 'working at jewellery shop', 4000.00, 1, 13000.00, 15000.00, 'chennai', 'kk nagar', '2108300007', '1', '2', 'upload_files/candidate_tracker/73740572271_Resume K.THARIK ANVAR .pdf', NULL, '1', '2021-08-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 2yr exp in AMC 13k, expt is 16k. no Calling and sales exp.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-30 01:20:04', 1, '2021-08-30 01:22:51', 0, NULL, 1),
(6111, 'Keerthana S', '2', '6381506264', '9790234603', 'Keerthanasugu1998@gmail.com', '1998-01-29', 23, '2', '2', 'Sukumaran', 'Farmer', 23000.00, 2, 12000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2108300008', '1', '2', 'upload_files/candidate_tracker/45997844224_KEERTHANA_CV.docx', NULL, '3', '2021-08-31', 0, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 01:51:26', 50, '2021-08-31 10:09:46', 0, NULL, 1),
(6112, 'balaji', '6', '8428478609', '8124412128', 'tarkibala1013@gmail.com', '1997-04-10', 24, '2', '2', 'dharmaraj', 'travel agent', 15000.00, 1, 13000.00, 15000.00, 'chennai', 'kolathur', '2108300009', '1', '2', 'upload_files/candidate_tracker/56820730524_balaji resume(1).pdf', NULL, '1', '2021-09-01', 0, '', '3', '59', '2021-09-09', 186000.00, '', '3', '2023-12-07', '1', 'Selected for Kannan Team with PF/ESI/PT deductions. No previous Company payslip/offer letter. Commission based salary average 15K TH. Let us try for RE and analyse the person in 7 days of training.No Higher Graduation, ist yr BCA discontinued', '5', '1', '1', '1', '1', '', '2', '2021-09-03', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-08-30 02:30:07', 60, '2021-09-09 02:53:06', 0, NULL, 1),
(6113, 'soundarya', '4', '7358276476', '', 'soundaryathangaraj06@gmail.com', '1997-12-06', 23, '2', '2', 'thangaraj', 'supervisor', 12000.00, 2, 0.00, 10000.00, 'chennai', 'tondairpet', '2108300010', '1', '1', 'upload_files/candidate_tracker/82046476255_soundarya june 2021.pdf', NULL, '1', '2021-08-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-30 02:37:14', 1, '2021-08-30 02:39:22', 0, NULL, 1),
(6114, 'K Siva', '23', '9600550320', '', 'siva20258@gmail.com', '1996-08-26', 25, '2', '2', 'Kishore Kumar', 'Auto driver', 20000.00, 1, 20000.00, 25000.00, 'Mylapore', 'Mylapore', '2108300011', '1', '2', 'upload_files/candidate_tracker/48368026043_Siva Resume PS.doc', NULL, '1', '2021-09-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was working in photo studio fir 5yrs 20k, no payslips, know only Photoshop. expt sal is 25k', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 03:55:41', 1, '2021-08-30 04:19:22', 0, NULL, 1),
(6115, 'R.Vignesh', '23', '8825615674', '9952932564', 'Vigneshyuva08@gmail.com', '1994-01-13', 27, '2', '2', 'N.Ravichandran', 'painter', 15000.00, 2, 15000.00, 20000.00, 'Medavakkam', 'Medavakkam', '2108300012', '1', '2', 'upload_files/candidate_tracker/60290412183_VIGNESH NEW RESUME-1_compressed.pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 04:07:35', 1, '2021-09-01 02:47:14', 0, NULL, 1),
(6116, 'Abirami', '11', '6382736703', '9884596385', 'abhiramigane@gmail.com', '2000-11-26', 20, '2', '2', 'Ganesan', 'Car Driver', 120000.00, 1, 0.00, 12000.00, 'Thiruverkadu', 'Thiruverkadu', '2108300013', '1', '1', 'upload_files/candidate_tracker/54400921968_Abirami.G resume 1.pdf', NULL, '1', '2021-08-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for HR profile, below avg communication, for interview she learned few topics about HR, no Acceptance.', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 04:14:09', 1, '2021-08-30 04:36:36', 0, NULL, 1),
(6117, '', '0', '8939009986', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108300014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-30 05:14:46', 0, NULL, 0, NULL, 1),
(6118, 'arun', '23', '8637448164', '8939009986', 'arunsai156.gd@gmail.com', '1991-06-15', 30, '2', '2', 'kamatchi', 'graphic designer', 30.00, 4, 20.00, 30.00, 'chennai', 'vadapalni', '2108300015', '1', '2', 'upload_files/candidate_tracker/59671971308_ARUN_GRAPHIC DESIGNER RESUME_8637448164 (2).pdf', NULL, '1', '2021-08-31', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'known only UX, no basic knowledge in html/css, expt is 30k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-30 06:50:35', 1, '2021-08-30 07:42:38', 0, NULL, 1),
(6119, '', '0', '6365253569', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108310001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-31 05:00:34', 0, NULL, 0, NULL, 1),
(6120, 'BHUVANESH R', '4', '8124400710', '8778483156', 'bhuvaneshbhuji@gmail.com', '1997-03-24', 24, '1', '2', 'D RAMESH', 'Self employed', 20000.00, 1, 18500.00, 20000.00, 'Chennai', 'Chennai', '2108310002', '', '2', 'upload_files/candidate_tracker/9773629419_BHUVANESH.pdf', NULL, '1', '2021-08-31', 0, 'JOBS', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'came along with his friend tharick, he was not selected so he is not interested.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-31 10:31:15', 1, '2021-08-31 10:49:48', 0, NULL, 1),
(6121, 'D.Anju', '4', '7339343646', '9597305106', 'anju1049566@gmail.com', '1997-04-07', 24, '3', '2', 'N.Delli', 'Cooly', 15000.00, 1, 0.00, 10000.00, 'Arakkonam', 'Arakkonam', '2108310003', '', '1', 'upload_files/candidate_tracker/99942080541_D. ANJU RESUME.docx', NULL, '1', '2021-08-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-31 10:53:54', 1, '2021-08-31 11:23:51', 0, NULL, 1),
(6122, 'Kanugula srikanth', '4', '9640559418', '', 'srikanthkanugula78@gmail.com', '1996-06-06', 25, '2', '2', 'kanugula bikshapathi', 'farmer', 7000.00, 2, 0.00, 10000.00, 'hyderabad', 'sidhipet', '2108310004', '1', '1', 'upload_files/candidate_tracker/49325366392_ramu.docx', NULL, '2', '2021-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-31 11:11:14', 1, '2021-08-31 11:14:55', 0, NULL, 1),
(6123, 'Balaanand R', '23', '9003711352', '8667561910', 'Bala93ee@gmail.com', '1993-05-10', 28, '2', '1', 'Radhakrishnan', 'Business', 8000.00, 2, 18000.00, 20000.00, 'Villupuram', 'Thambaram', '2108310005', '1', '2', 'upload_files/candidate_tracker/93449059339_1617237010970_resume new-converted (1).pdf', NULL, '1', '2021-09-20', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'No relevant skills', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 11:51:00', 1, '2021-09-18 11:50:32', 0, NULL, 1),
(6124, 'Bharath P', '11', '6369194436', '8428721685', 'bharathsiva1401@gmail.com', '2001-01-14', 20, '2', '2', 'M.Purushothaman', 'Coolie', 10000.00, 1, 0.00, 12000.00, 'Otteri', 'Otteri', '2108310006', '1', '1', 'upload_files/candidate_tracker/56321985487_bharath p resume.pdf', NULL, '1', '2021-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 11:57:35', 1, '2021-08-31 12:03:54', 0, NULL, 1),
(6125, 'yuvashree', '5', '9940102036', '', 'yuviprabha1920@gmail.com', '1997-06-20', 24, '2', '2', 'prabhakaran.r', 'driver', 15000.00, 0, 15500.00, 15000.00, 'triplicane', 'Triplicane', '2108310007', '1', '2', 'upload_files/candidate_tracker/85757585234_CV_2021-06-25-073251.pdf', NULL, '1', '2021-08-31', 0, '', '3', '59', '2021-09-27', 170496.00, '', '', '2021-10-06', '2', 'Selected for Esales KArthika Team in CAFSInfotech Prop.Salary will be revised based on the target of 1.5L for a month overall 3 L in 2 months achieved - 2K increase', '5', '1', '', '1', '1', '', '2', '2021-09-03', '2', '6', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-08-31 12:16:29', 60, '2021-10-07 09:48:48', 0, NULL, 1),
(6126, 'Udaya Kumar s', '4', '8608340606', '7358662769', 'udayakumar41513@gmail.com', '1994-09-12', 26, '3', '2', 'Sakthivel N', 'Metro water', 20000.00, 1, 10000.00, 12000.00, 'Mmda mathur', 'Chennai', '2108310008', '', '2', 'upload_files/candidate_tracker/26380343033_20190915_171323(5).pdf', NULL, '1', '2021-08-31', 6, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up. will not suite for calling.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-31 12:31:25', 1, '2021-08-31 12:41:22', 0, NULL, 1),
(6127, 'Keerthivasan j', '4', '8248673055', '9087343412', 'Keerthivasankumar1998@gmail.com', '1998-01-01', 23, '3', '2', 'Jayakumar', 'Koli', 10000.00, 1, 10000.00, 15000.00, 'Redhills', 'Chennai', '2108310009', '', '2', 'upload_files/candidate_tracker/57365470982_TapScanner 08-31-2021-13.20.pdf', NULL, '1', '2021-08-31', 6, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'from Redhills will not sustain. expt 10k', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-08-31 12:33:27', 1, '2021-08-31 01:28:48', 0, NULL, 1),
(6128, 'Kandru Raviteja', '5', '9515688327', '', 'rr936062@gmail.com', '1997-06-08', 24, '2', '2', 'venkateshwarao', 'not working', 50000.00, 1, 23000.00, 25000.00, 'hyderabad', 'gandimisamma', '2108310010', '1', '2', 'upload_files/candidate_tracker/47028400515_NEW RESUME (2).pdf', NULL, '2', '2021-09-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-08-31 01:05:38', 1, '2021-08-31 01:08:17', 0, NULL, 1),
(6129, 'Ranjani T', '2', '7867845809', '', 'ranjanidurga10@gmail.com', '1992-10-03', 28, '2', '1', 'Baskarji S', 'PA at Amazon Warehouse.', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2108310011', '1', '1', 'upload_files/candidate_tracker/64606179636_RANJANI RESUME_21-converted (1).pdf', NULL, '1', '2021-09-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher for developing, married and has 2 yr kid, expt is 20k and was asking for shift timing. will not suite for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 01:23:31', 1, '2021-08-31 01:31:52', 0, NULL, 1),
(6130, 'jaivignesh c s', '13', '9626555382', '', 'jaivigneshsankar@gmail.com', '1997-11-07', 23, '2', '2', 'sankar', 'document writer', 15000.00, 1, 0.00, 150000.00, 'salem', 'salem', '2108310012', '1', '1', 'upload_files/candidate_tracker/95791154518_Jaivignesh C S Resume.pdf', NULL, '3', '2021-09-01', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 01:23:31', 1, '2021-08-31 02:26:37', 0, NULL, 1),
(6131, '', '0', '9789885038', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108310013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-31 01:59:22', 0, NULL, 0, NULL, 1),
(6132, '', '0', '7200296664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108310014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-31 02:42:32', 0, NULL, 0, NULL, 1),
(6133, '', '0', '9487165573', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2108310015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-08-31 03:12:09', 0, NULL, 0, NULL, 1),
(6134, 'Abishek pg', '23', '8078173061', '', 'abishekpg221@gmail.com', '1995-05-11', 26, '2', '2', 'Mini', 'House wife', 35000.00, 3, 16500.00, 17000.00, 'Kerala', 'Chennai', '2108310016', '1', '2', 'upload_files/candidate_tracker/46533875751_1624326068264_abishek resume 1 (1).pdf', NULL, '1', '2021-09-02', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Task not satisfactory', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-08-31 06:18:33', 50, '2021-09-02 10:33:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6135, 'Venkatesan m', '23', '9790701927', '', 'nom312397@gmail.com', '1992-02-28', 29, '2', '2', 'Vendarasi', 'House Wife', 200000.00, 0, 15000.00, 25000.00, 'Kancheepuram', 'Kancheepuram', '2109010001', '1', '2', 'upload_files/candidate_tracker/67513790581_venkat resume-1_compressed.pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2021-09-01 09:51:19', 1, '2021-09-01 10:48:51', 0, NULL, 1),
(6136, 'R.VIJAY RAM', '6', '7358072146', '8838070383', 'vijayramr20@gmail.com', '2001-06-20', 20, '1', '2', 'R.Ramesh', 'Business', 15000.00, 1, 0.00, 15000.00, 'Adyar', 'Adyar', '2109010002', '', '1', 'upload_files/candidate_tracker/94433415253_Vijay Ram.pdf', NULL, '1', '2021-09-01', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very childish will not suite for our process.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-01 10:03:40', 1, '2021-09-01 10:13:55', 0, NULL, 1),
(6137, 'Muthu Kumaran', '13', '9952275613', '', 'muthu0753@gmail.com', '1999-02-17', 22, '2', '2', 'Perumal', 'TNEB', 30000.00, 1, 0.00, 20000.00, 'Rajapalayam', 'Rajapalayam', '2109010003', '1', '1', 'upload_files/candidate_tracker/8831564266_MUTHU.pdf', NULL, '2', '2021-09-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '2', '0', '1', '1', '0', '2', '2021-09-03', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 11:10:40', 1, '2021-09-01 11:19:26', 0, NULL, 1),
(6138, 'Ashwin', '5', '9094105571', '', 'ashwinsara46@gmail.com', '1996-02-06', 25, '1', '2', 'Lalitha', 'Housewife', 25000.00, 1, 20000.00, 25000.00, '11/717 Gandhi street evp prabhu avenue', 'Chennai', '2109010004', '', '2', 'upload_files/candidate_tracker/67206684694_ASHWIN RESUME.docx', NULL, '1', '2021-09-01', 0, '5553', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'REJECT', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-01 11:45:44', 1, '2021-09-01 11:49:36', 0, NULL, 1),
(6139, 'Govardhini', '2', '9003566380', '', 'govardhini.a21@gmail.com', '1996-05-21', 25, '2', '2', 'Anandan D', 'Business', 30000.00, 1, 14750.00, 20000.00, 'Chennai, Vadapalani', 'Chennai, Vadapalani', '2109010005', '1', '2', 'upload_files/candidate_tracker/98620978658_Govardhini_A.pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 11:48:10', 1, '2021-09-01 11:52:17', 0, NULL, 1),
(6140, 'Vijayalakshmi S', '5', '9150148493', '9940147423', 'sankarvijayalakshmi33@gmail.com', '2001-03-28', 20, '2', '2', 'Sankar', 'Auto driver', 15000.00, 1, 20000.00, 15000.00, 'Mylapore', 'Mylapore', '2109010006', '1', '2', 'upload_files/candidate_tracker/80047533366_Vijayalakshmi Resume-1.docx', NULL, '2', '2021-08-28', 0, '', '3', '59', '2021-09-06', 170496.00, '', '4', '2022-08-29', '2', 'Selected for Karthika Esales Team in CAFSinfotech Prop in 208 deductions', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 12:39:22', 60, '2021-09-03 10:43:29', 0, NULL, 1),
(6141, 'D.Jency priya', '4', '8838667831', '', 'Cyrilpriya784@gmail.com', '2000-09-18', 20, '2', '2', 'David arockia Raj susai Mary', 'Farmer', 70000.00, 2, 0.00, 10000.00, 'Kallakurichi', 'Chennai', '2109010007', '1', '1', 'upload_files/candidate_tracker/74996002817_jency resume.docx', NULL, '1', '2021-09-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up. native slang and lot of gap while speaking.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 12:40:24', 1, '2021-09-01 01:00:31', 0, NULL, 1),
(6142, 'R.usha rani', '4', '7395965254', '9789926312', 'usharamesh193@gmail.com', '1999-09-02', 21, '2', '2', 'Ramesh.N', 'Cooly', 10000.00, 1, 12000.00, 12000.00, 'Chennai', 'Chennai', '2109010008', '1', '2', 'upload_files/candidate_tracker/51426490249_Usharani resume.doc', NULL, '3', '2021-09-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will Not Suite For Our Process, Came With 3 Friends Will Not Sustain. 2m In Matrimoni Calling and 2ys in chennai Corporation 15k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 12:52:53', 50, '2021-09-02 10:08:46', 0, NULL, 1),
(6143, 'D. Sandhiya', '4', '6383007295', '9962943840', 'Sandhiyadhandapani97@gmail.com', '2001-07-09', 20, '2', '2', 'Poongavanam', 'Security', 10000.00, 2, 12000.00, 12000.00, 'Chennai', 'Chennai', '2109010009', '1', '2', 'upload_files/candidate_tracker/31707067001_TapScanner 09-01-2021-13.50.pdf', NULL, '3', '2021-09-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will Not Suite For Our Process, Came With 3 Friends Will Not Sustain. 1m In Matrimoni Calling ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 12:53:18', 50, '2021-09-02 10:09:01', 0, NULL, 1),
(6144, '', '0', '6382044367', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109010010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-01 01:11:30', 0, NULL, 0, NULL, 1),
(6145, 'K.bakiyalakshmi', '4', '6383875360', '8122238615', 'bakiyapoorni143@gmail.com', '2000-10-05', 20, '2', '2', 'Muthulakshmi', 'Cooly', 8000.00, 2, 0.00, 12500.00, 'Chennai', 'Chennai', '2109010011', '1', '1', 'upload_files/candidate_tracker/9268920163_Resume (1).pdf', NULL, '1', '2021-09-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, came with 3 friends will not sustain. 2m in Matrimoni calling ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 01:18:07', 50, '2021-09-02 10:09:22', 0, NULL, 1),
(6146, 'S. Jayanthan', '27', '6369625723', '9884184532', 'Jayanthan3110@gmail.com', '1995-10-31', 25, '2', '2', 'K. Suresh babu and s. Indumathy', 'Driver', 20000.00, 1, 8000.00, 15000.00, '73,valluvar nagar, ennore, chennai-600057', '73,Valluvar Nagar, Ennore, Chennai-600057', '2109010012', '1', '2', 'upload_files/candidate_tracker/28389472376_Jayanthan Resume 20191216 (1).docx', NULL, '1', '2021-09-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Client round rejected', '2', '1', '0', '1', '1', '0', '2', '2021-09-06', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 02:52:53', 1, '2021-09-01 03:01:57', 0, NULL, 1),
(6147, '', '0', '7200547553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109010013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-01 03:53:35', 0, NULL, 0, NULL, 1),
(6148, 'jagadish', '11', '8072315961', '8056096765', 'jagadishali1999@gmail.com', '1999-03-13', 22, '2', '2', 'viji', 'company', 10000.00, 0, 0.00, 10000.00, 'chennai', 'chennai', '2109010014', '1', '1', 'upload_files/candidate_tracker/44200004070_1626241696562_Jagadish.pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 04:03:08', 1, '2021-09-01 07:55:01', 0, NULL, 1),
(6149, 'M.D.DASWA DAYALAN', '23', '9677071335', '9678071335', 'Daswadayalan@gmail.com', '2000-04-25', 21, '2', '2', 'M.R.DEENA DAYALAN', 'Manager in', 300000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2109010015', '1', '1', 'upload_files/candidate_tracker/19599763295_M.D.Daswa\'s Resume (4).pdf', NULL, '1', '2021-09-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, expt is 15k+ and need to discuss about the terms and conditions with parents.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 04:16:41', 1, '2021-09-01 04:27:49', 0, NULL, 1),
(6150, 'Yogalakshmi', '25', '7395932756', '', 'yogalakshmiusha@gmail.com', '1995-11-24', 25, '2', '2', 'Kabali', 'Shoe maker', 20000.00, 3, 16000.00, 180000.00, 'CHENNAI', 'CHENNAI', '2109010016', '1', '2', 'upload_files/candidate_tracker/44754958456_yogar.pdf', NULL, '1', '2021-09-01', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'was working in botiq accounts 16k, will not suite for our process. changing job for salary. expt is 18+, avg communication.', '8', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-01 04:18:22', 1, '2021-09-01 04:24:31', 0, NULL, 1),
(6151, 'Santhosh K', '13', '7200419003', '', 'ssanthoshk29@gmail.com', '1998-10-03', 22, '2', '2', 'Kanniyappan m', 'Driver', 15000.00, 1, 0.00, 8000.00, 'CHENNAI', 'CHENNAI', '2109010017', '1', '1', 'upload_files/candidate_tracker/35635494698_updated resume.pdf', NULL, '1', '2021-09-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 04:54:36', 1, '2021-09-01 04:58:27', 0, NULL, 1),
(6152, 'vinothini', '13', '9003352710', '', 'vinothiniraja8@gmail.com', '1995-03-08', 26, '2', '1', 'raja rathinam', 'tneb', 30000.00, 1, 0.00, 10000.00, 'Tirupattur', 'Tirupattur', '2109010018', '1', '1', 'upload_files/candidate_tracker/98707821177_vinu.pdf', NULL, '3', '2021-09-02', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 04:59:48', 1, '2021-09-01 05:03:57', 0, NULL, 1),
(6153, 'jacob machado', '23', '9597378487', '', 'jacobmachado68@gmail.com', '2006-09-01', 0, '2', '2', 'sahayaraj machado', 'fisherman', 25000.00, 3, 0.00, 16000.00, 'valasai street rameshwaram,ramnad-623529', 'nellaipar street ,chromprt chennai', '2109010019', '1', '1', 'upload_files/candidate_tracker/58556500942_resume-1.pdf', NULL, '1', '2021-09-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'We offered with the CTC 96000 for 1st 6 months and continues with the hike upto 12K PM along with SA. Candidate seems doubtful and we have given him time to confirm, but he Didnxquott turn with his interest', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 05:31:08', 1, '2021-09-01 05:37:06', 0, NULL, 1),
(6154, 'ArunKumar', '23', '9791657880', '9003990850', 'aktextit@gmail.com', '1998-02-02', 23, '2', '2', 'Sankar', 'Salesman', 8000.00, 1, 0.00, 25000.00, 'Madurai', 'Chennai', '2109010020', '1', '1', 'upload_files/candidate_tracker/70773609257_ArunKumar.pdf', NULL, '1', '2021-09-06', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Task not satisfactory, candidate not fit for team', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 05:33:58', 50, '2021-09-06 12:22:51', 0, NULL, 1),
(6155, '', '0', '9894304910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109010021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-01 05:42:50', 0, NULL, 0, NULL, 1),
(6156, 'Raghul.M', '23', '7200505983', '7904227409', 'raghulshobirs@gmail.com', '1996-08-31', 25, '2', '2', 'Parent', 'Driver', 60000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2109010022', '1', '1', 'upload_files/candidate_tracker/51314207958_1613031901602Resume_Raghul.docx', NULL, '1', '2021-09-03', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate not good with content writing and communication ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-01 07:04:00', 1, '2021-09-01 07:09:58', 0, NULL, 1),
(6157, 'S.aviha', '4', '9176412518', '', 'Samuthirapandian@gmail.com', '2003-03-15', 18, '1', '2', 'Samuthirapandian', 'Farmer', 30000.00, 1, 0.00, 12000.00, 'Tenkasi', 'Kasthuri ladies hostel, Chennai', '2109020001', '', '1', 'upload_files/candidate_tracker/47685694805_Aishu Resume.docx', NULL, '1', '2021-09-02', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very childish, 18 and expt is 12-15k. native slang.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 09:30:45', 1, '2021-09-02 09:53:13', 0, NULL, 1),
(6158, 's.kalaivani', '4', '9944167284', '9943511519', 'kalaivanisjcet@gmail.com', '1999-10-29', 21, '4', '2', 's.srinivasan', 'farmer', 6000.00, 1, 0.00, 20000.00, '2/7A,AMMAIYANDI(P.O),PERAVURANI(T.K),THANJAVUR(Dt)', '2/7A,AMMAIYANDI(P.O),PERAVURANI(T.K),THANJAVUR(Dt)', '2109020002', '', '1', 'upload_files/candidate_tracker/91749756094_Kalaivani S (Resume).pdf', NULL, '3', '2021-09-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 09:40:14', 1, '2021-09-03 12:35:12', 0, NULL, 1),
(6159, 'Naveenkumar', '6', '7904382116', '', 'Naveenkumar1251995@gmail.com', '1995-05-12', 26, '1', '2', 'Mohanasundaram', 'Business', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2109020003', '', '1', 'upload_files/candidate_tracker/43295148365_g0wkj-8608r.pdf', NULL, '1', '2021-09-02', 0, '55576', '3', '59', '2021-09-06', 162000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 09:53:54', 60, '2021-09-02 03:29:04', 0, NULL, 1),
(6160, 'Syed zuber.z', '4', '9003763737', '', 'zubersyed354@gmail.com', '2006-09-02', 15, '4', '1', 'Father name Syed Zakir.N mother name:Ameerun nisha', 'Flower business', 15000.00, 2, 0.00, 11000.00, 'Arakkonam ranipet', 'Arakkonam ranipet', '2109020004', '', '1', 'upload_files/candidate_tracker/59176452146_zuber resume new.docx', NULL, '1', '2021-09-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 09:54:33', 1, '2021-09-02 10:00:35', 0, NULL, 1),
(6161, 'Thangaraj.R', '4', '9976965586', '6374352067', 'rthangaraj@gmail.com', '2000-07-17', 21, '1', '2', 'M.ravichandran', 'Farmer', 80000.00, 2, 0.00, 18000.00, 'Tamil nadu', 'Kanchipuram', '2109020005', '', '1', 'upload_files/candidate_tracker/46123678351_traj res.docx', NULL, '1', '2021-09-02', 0, '00000', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'from kancheepuram, will not sustain, no idea about the job. Referred by GS Consultancy.', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:37:19', 8, '2021-09-02 03:15:37', 0, NULL, 1),
(6162, 'Wilson s', '4', '8610166057', '', 'wilsonlio323@gmail.com', '1999-06-15', 22, '4', '2', 'Kumar', 'Car driver', 19000.00, 1, 0.00, 16000.00, 'Puzhal', 'Puzhal', '2109020006', '', '2', 'upload_files/candidate_tracker/60981532987_RESUME.pdf', NULL, '1', '2021-09-02', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'left before interview', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:46:29', 1, '2021-09-02 11:14:21', 0, NULL, 1),
(6163, 'Priya Kumari B', '4', '7305556421', '', 'princesspriyakumari95@gmail.com', '1995-11-22', 25, '4', '2', 'Badri prasath', 'Supervisor', 17000.00, 2, 16000.00, 18000.00, 'New Washermanpent', 'New Washermanpent', '2109020007', '', '2', 'upload_files/candidate_tracker/68427138067_Priya CV PDF new file 95.pdf', NULL, '1', '2021-09-02', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Left Before Interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:49:28', 1, '2021-09-02 11:25:28', 0, NULL, 1),
(6164, 'Baskar', '6', '6381269262', '8838853370', 'baskarsangeetha1012@gmail.com', '1999-12-10', 21, '1', '2', 'Srinivasan', 'Fabricator', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109020008', '', '1', 'upload_files/candidate_tracker/37600043397_baskar resume final.pdf', NULL, '1', '2021-09-02', 0, '55576', '3', '59', '2021-09-06', 156000.00, '', '7', '1970-01-01', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:55:54', 60, '2021-09-02 03:29:20', 0, NULL, 1),
(6165, 'Beer ali', '6', '9176345302', '', 'beerali2000@gmail.com', '2000-01-28', 21, '1', '2', 'Mohammad areef', 'Security', 12000.00, 1, 0.00, 15000.00, 'Kolathur', 'Chennai', '2109020009', '', '1', 'upload_files/candidate_tracker/56884144207_beer (1).pdf', NULL, '1', '2021-09-02', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for sales, expt is 15k.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 10:57:03', 1, '2021-09-02 11:01:30', 0, NULL, 1),
(6166, 'punith', '4', '9500769168', '', 'punithkumar2205@gmail.com', '2000-05-22', 21, '2', '2', 'mahendran', 'teacher', 500000.00, 2, 0.00, 10000.00, 'vellore', 'tiruvallur', '2109020010', '1', '1', 'upload_files/candidate_tracker/82881718114_punith resume.pdf', NULL, '1', '2021-09-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-02 11:06:47', 1, '2021-09-02 11:09:10', 0, NULL, 1),
(6167, 'logeswari', '4', '8056472983', '', 'logeswarianbalagan60@gmail.com', '1998-06-03', 23, '2', '2', 'anbalagan', 'farmer', 30000.00, 1, 0.00, 10000.00, 'chennai', 'ambattur', '2109020011', '1', '1', 'upload_files/candidate_tracker/3336017985_8056472983 Logeswari.doc', NULL, '1', '2021-09-03', 0, '', '3', '59', '2021-09-07', 132000.00, '', '3', '2022-05-05', '2', 'Selected for Elite - Priyanka Team in Cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-02 11:21:00', 60, '2021-09-04 12:53:26', 0, NULL, 1),
(6168, 'Hasbi.A', '4', '6380688563', '9884608418', 'Khanhasna0717@gmail.com', '2001-02-18', 20, '1', '2', 'Ayub khan', 'Student', 10000.00, 1, 0.00, 15000.00, 'Royapuram', 'Royapuram', '2109020012', '', '1', 'upload_files/candidate_tracker/45197058548_1628172814721_SELVA. A - Resume-converted.pdf', NULL, '1', '2021-09-02', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very childish, hyper active and will not handle our pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 11:39:01', 1, '2021-09-02 11:53:36', 0, NULL, 1),
(6169, 'Manivannan R', '4', '9360128730', '9600203861', 'manivannanmech666@gmail.com', '1995-04-02', 26, '3', '2', 'Ramachandramoorthy', 'Farmer', 25000.00, 3, 14000.00, 17000.00, 'Veppur Tk', 'Veppur Tk', '2109020013', '', '2', 'upload_files/candidate_tracker/59018665666_Resume Bpo.docx', NULL, '1', '2021-09-02', 1, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr credit card sales 13k, has no reliving and payslip. Attire is not satisfied.', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-02 11:58:45', 7, '2021-09-09 03:18:12', 0, NULL, 1),
(6170, 'kanne sravan', '13', '9381668969', '8096547391', 'kannesravan80@gmail.com', '1996-06-03', 25, '2', '2', 'kondaiah', 'former', 100000.00, 3, 0.00, 10000.00, 'andhrpradesh', 'chennai', '2109020014', '1', '1', 'upload_files/candidate_tracker/95817553933_my resume.docx.pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-02 12:56:28', 1, '2021-09-02 01:01:53', 0, NULL, 1),
(6171, 'V.Rakshaya', '4', '9677235887', '8778530199', 'Rakshayav2009@gmail.com', '2000-09-20', 20, '1', '2', 'V.Amudha', 'Housewife', 20000.00, 1, 0.00, 15000.00, 'Chennai avadi', 'Chennai avdi', '2109020015', '', '1', 'upload_files/candidate_tracker/51160920140_Aishu Resume.docx', NULL, '1', '2021-09-02', 0, 'Jobs', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, expt is 15k as fresher. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 02:13:10', 8, '2021-09-02 02:59:24', 0, NULL, 1),
(6172, 'Gayathri', '11', '8778530199', '9677235887', 'santhoshgayu0@gmail.com', '1998-06-23', 23, '1', '2', 'Kasthuri', 'Gardening', 15000.00, 0, 0.00, 17000.00, 'Chennai Avadi', 'Chennai Avadi', '2109020016', '', '1', 'upload_files/candidate_tracker/96881162240_Gayathri523.pdf', NULL, '2', '2021-09-02', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'sal expt is high 15k but no Relevant exp in sales.', '6', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-02 02:18:11', 1, '2021-09-02 02:23:32', 0, NULL, 1),
(6173, 'Nirosha Dhandabani', '11', '8939894355', '', 'niroshaMargrett@gmail.com', '1995-03-04', 26, '2', '2', 'Dhandabani S', 'Tv mechanic', 200000.00, 2, 0.00, 150000.00, 'Chennai', 'Kovur', '2109020017', '1', '1', 'upload_files/candidate_tracker/72490241175_Nirosha.Resume August.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for the profile. avg communication and expt is 12-13k.', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-02 02:52:14', 50, '2021-09-08 11:55:23', 0, NULL, 1),
(6174, 'dasari prakash', '5', '7013680924', '', 'dasariprakash29@gmail.com', '1996-03-13', 25, '2', '2', 'rajesham', 'farmer', 25000.00, 1, 20000.00, 21000.00, 'hyderabad', 'banjarahills', '2109020018', '1', '2', 'upload_files/candidate_tracker/30774611622_DASARI PRAKASH.docx', NULL, '2', '2021-09-03', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'Worked in fmcg sales and in cousin company will not suite for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-02 03:38:52', 1, '2021-09-02 03:41:22', 0, NULL, 1),
(6175, 'Saikrupa Vennapureddy', '4', '9346808284', '', 'saikrupavennapureddy@gmail.com', '1999-11-10', 21, '2', '2', 'sanjeev reddy', 'farmer', 10000.00, 1, 0.00, 13000.00, 'hyderabad', 'dilshuknagar', '2109020019', '1', '1', 'upload_files/candidate_tracker/57449880194_saikrupa resume.pdf', NULL, '2', '2021-09-03', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain planning to do higher studies', '1', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-02 03:45:21', 1, '2021-09-02 03:48:02', 0, NULL, 1),
(6176, 'sasikumar', '23', '9751083291', '6369225158', 'Sasiraj18536@gmail.com', '1997-05-18', 24, '2', '2', 'Raja', 'Driver', 35000.00, 1, 20000.00, 27000.00, 'Chennai', 'Chennai', '2109020020', '1', '2', 'upload_files/candidate_tracker/48997175510_sasikumar (9751083291) Resume.pdf', NULL, '1', '2021-09-04', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'no relevant skills', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-02 05:52:09', 1, '2021-09-02 06:07:17', 0, NULL, 1),
(6177, '', '0', '9677001103', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109020021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-02 09:13:42', 0, NULL, 0, NULL, 1),
(6178, 'Ananth v', '6', '9360599040', '', 'anjaanananth@gmail.com', '1998-06-15', 23, '2', '2', 'Vijay', 'Nil', 30000.00, 2, 0.00, 20000.00, 'Egmor', 'Egmor', '2109030001', '1', '1', 'upload_files/candidate_tracker/16547259762_New Resume-1.pdf', NULL, '1', '2021-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales profile, no confidence in speech.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-03 10:13:00', 7, '2021-09-03 11:11:17', 0, NULL, 1),
(6179, '', '0', '8248532969', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109030002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-03 11:22:40', 0, NULL, 0, NULL, 1),
(6180, 'Gopi Krishna k', '4', '8428055425', '9791189501', 'gopikrishna30071999@gmail.com', '1999-07-30', 22, '3', '2', 'D krishnamoorthy', 'Retired conductor', 10000.00, 0, 0.00, 16000.00, 'CHENNAI', 'CHENNAI', '2109030003', '', '1', 'upload_files/candidate_tracker/47935842764_Gopi resume .docx', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no job need, only son not very serious into his career. will not suite for sales.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 11:23:28', 1, '2021-09-03 11:26:02', 0, NULL, 1),
(6181, 'prakash n', '3', '9074316894', '9894828157', 'prakashmca71@gmail.com', '1996-07-12', 25, '2', '2', 'nataraj v', 'farmer', 20000.00, 0, 0.00, 1.25, 'pallakadu', 'chennai', '2109030004', '1', '1', 'upload_files/candidate_tracker/25087216081_PRAKASH RESUME.pdf', NULL, '1', '2021-09-04', 0, '', '4', '54', NULL, 0.00, '', '', '2021-11-16', '2', 'fresher and looking for react internship and okay with company terms', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-03 11:25:53', 1, '2021-09-03 12:33:40', 0, NULL, 1),
(6182, 'shri ragini', '4', '9384600461', '', 'shriragini1999@gmail.com', '1999-04-14', 22, '2', '2', 'mayan', 'not working', 9000.00, 3, 0.00, 10000.00, 'chennai', 'pammal', '2109030005', '1', '1', 'upload_files/candidate_tracker/45312879841_Shri Ragini - Bio data.docx', NULL, '1', '2021-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-03 11:56:57', 1, '2021-09-03 12:00:28', 0, NULL, 1),
(6183, 'kalaivani', '4', '9384599149', '', 'kalaivanikpr6806@gmail.com', '1998-04-10', 23, '2', '2', 'saravanan', 'farmer', 40000.00, 3, 0.00, 10000.00, 'chennai', 'aminjikarai', '2109030006', '1', '1', 'upload_files/candidate_tracker/38546580324_Gayathri.pdf', NULL, '1', '2021-09-04', 0, '', '3', '59', '2021-09-07', 120000.00, '', '6', '2021-09-22', '2', 'Selected for Elite RE,5050 candidate sustainability doubts a lot. Last 1.5 months she got multiple offers and declined stating multiple reasons.Let us analyse in the 7 days of training', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-03 12:04:48', 60, '2021-09-22 06:10:31', 0, NULL, 1),
(6184, 'jayalakshmi', '4', '9566125753', '', 'jayalakshmi182000@gmail.com', '1998-05-18', 23, '2', '2', 'raj', 'working', 12000.00, 1, 0.00, 10000.00, 'chennai', 'ambattur', '2109030007', '1', '1', 'upload_files/candidate_tracker/38952798262_jaya resume-compressed.pdf', NULL, '1', '2021-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-03 12:08:30', 1, '2021-09-03 12:15:51', 0, NULL, 1),
(6185, 'K.s.Hariprasath', '4', '9884759026', '9789894521', 'hhari8344@gmail.com', '2001-06-23', 20, '3', '2', 'Shankar', 'BCA', 13000.00, 1, 13000.00, 15000.00, '182/124. Adam street royapuram', '182/124 Adam street royapuram Chennai', '2109030008', '', '2', 'upload_files/candidate_tracker/83151635258_k.s.hariprasath resume.pdf', NULL, '1', '2021-09-03', 3, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 6m exp in semi voice and came with friends, will not sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:17:02', 1, '2021-09-03 12:33:38', 0, NULL, 1),
(6186, 'R.GOPIKADHARSHINI', '4', '7305473373', '9884759026', 'dharshinigopika865@gmail.com', '2002-12-10', 18, '3', '2', 'K.RAJAPANDIYAN', 'Bcom', 20000.00, 1, 0.00, 15000.00, 'Thirumulaivoyal,chennai', 'Thirumulaivoyal,chennai', '2109030009', '', '1', 'upload_files/candidate_tracker/12776289705_Gopika Resume.docx', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 1m exp in calling, came with friends, her communication and convincing is okay. will not sustain.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:18:22', 1, '2021-09-03 12:51:30', 0, NULL, 1),
(6187, 'mohammed hisham', '4', '9043341109', '8754038939', 'hmd815088@gmail.com', '1998-01-29', 23, '1', '2', 'nisar ahmed p', 'security', 5000.00, 2, 0.00, 14000.00, 'vaniyambadi tirupattur district', 'vaniyambadi', '2109030010', '', '1', 'upload_files/candidate_tracker/74934484419_pdf_converter_202109034748.pdf', NULL, '1', '2021-09-03', 0, '55583', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:23:05', 1, '2021-09-03 01:08:06', 0, NULL, 1),
(6188, 'Dilshath', '4', '6369953557', '7708789111', 'asharfnishanishaashraf@gmail.com', '1998-06-18', 23, '2', '1', 'Amanullah khan', '12th', 100000.00, 1, 0.00, 15000.00, 'Pulianthope', 'Parambur', '2109030011', '7', '1', 'upload_files/candidate_tracker/94982875707_Dilshath 2- Page..docx', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 6m exp in calling, job need married and divorced has 3yr kid, very native language. will not suite for our process,', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:28:28', 1, '2021-09-03 12:36:10', 0, NULL, 1),
(6189, 'K.sowmiya', '6', '9962302081', '', 'sowmiya14032@gmail.com', '2002-03-14', 19, '3', '2', 'Kamaraj.A', 'Tailor', 20000.00, 1, 0.00, 15000.00, 'Gerugambakam', 'Gerugambakkam', '2109030012', '', '1', 'upload_files/candidate_tracker/16544145909_sowmi resume.pdf', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very low voice and not speaking up, expt is 12-15k. said no idea to speak, ', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:48:53', 1, '2021-09-03 01:25:19', 0, NULL, 1),
(6190, 'Arunkumar.M', '6', '6374654072', '8754627745', 'arunkumaraj870@gmail.com', '1999-06-18', 22, '4', '2', 'Maharajan.S', 'Cooli', 20000.00, 2, 0.00, 20000.00, 'Medavaakam', 'Medavaakam', '2109030013', '', '1', 'upload_files/candidate_tracker/18632432710_1629952102225_RESUME001.pdf', NULL, '1', '2021-09-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very low voice and will not suite for sales and expt is 18-20k. looking for backend job', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 12:54:09', 1, '2021-09-03 01:12:17', 0, NULL, 1),
(6191, 'Vignesh', '6', '7904013122', '', 'vram43532@gmail.com', '1999-04-24', 22, '2', '2', 'jayaraman', 'construction', 60000.00, 1, 0.00, 14000.00, 'chennai', 'arumbakkam', '2109030014', '1', '1', 'upload_files/candidate_tracker/41625691235_Vignesh1.docx', NULL, '1', '2021-09-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-03 01:22:51', 1, '2021-09-03 01:25:11', 0, NULL, 1),
(6192, 'Vishnu', '4', '8838938320', '', 'vishnu17g150@gmail.com', '1999-11-29', 21, '2', '2', 'balu', 'working', 50000.00, 1, 0.00, 10000.00, 'chennai', 'tondairpet', '2109030015', '1', '1', 'upload_files/candidate_tracker/49817288413_2021-04-23 09_35_16.133.ScanFile.pdf', NULL, '1', '2021-09-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-03 02:35:24', 50, '2021-09-03 04:08:16', 0, NULL, 1),
(6193, 'imran Ahmed', '4', '7305583029', '', 'imramahamed70074@gmail.com', '2000-09-29', 20, '3', '2', 'abdul', 'late', 0.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2109030016', '', '1', '0', NULL, '1', '2021-09-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for any profile. not matured enough. not interested in sales and pronunciation is not clear.', '1', '2', '', '', '', '', '2', '1970-01-01', '3', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-03 02:42:56', 7, '2021-09-03 05:31:49', 0, NULL, 1),
(6194, '', '0', '8110885527', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109030017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-03 03:07:05', 0, NULL, 0, NULL, 1),
(6195, '', '0', '8072090612', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109030018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-03 03:25:16', 0, NULL, 0, NULL, 1),
(6196, 'Arunkumar.A', '27', '8778171711', '8525989888', 'arunkumarkpm69@gmail.com', '2001-04-05', 20, '2', '2', 'Annamalai.V', 'Farmer', 7000.00, 2, 0.00, 15000.00, 'KanchiPuram', 'KanchiPuram', '2109030019', '1', '1', 'upload_files/candidate_tracker/15203597333_ARUNKUMAR ANNAMALAI-1.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Knows Only Theory And No Practical Knowledge, Fresher And Done 2m Course. Will Not Suite For Client Company.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-03 03:36:57', 1, '2021-09-06 12:02:31', 0, NULL, 1),
(6197, 'Francis Xavier', '27', '9080925876', '9655662377', 'jerana678@gmail.com', '1997-04-03', 24, '2', '2', 'Anthony Samy', 'Farmer', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2109030020', '1', '1', 'upload_files/candidate_tracker/96955119220_Francis (3).pdf', NULL, '1', '2021-09-06', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for any profile, very Lethargic and no sustainability. expt 15k', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-03 05:51:58', 1, '2021-09-03 05:59:15', 0, NULL, 1),
(6198, 'harish', '6', '9443980567', '', 'harishbalu15596@gmail.com', '1996-05-15', 25, '2', '2', 'balasubramanian', 'turner', 300000.00, 0, 0.00, 15000.00, 'pennadam', 'pennadam', '2109040001', '1', '1', 'upload_files/candidate_tracker/2697504642_harish resume.pdf', NULL, '2', '2021-08-30', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Fit ', '5', '2', '', '1', '1', '', '2', '2021-09-08', '1', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-04 10:03:25', 7, '2021-09-04 11:25:43', 0, NULL, 1),
(6199, 'A. Rithik kanishkar', '22', '7358042121', '9360720713', 'rithikdhoni7@gmail.com', '2002-02-04', 19, '4', '2', 'K. Arun prasath', 'Dyalsis', 50000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2109040002', '', '1', 'upload_files/candidate_tracker/78892872472_CV_2021-07-26-100927.pdf', NULL, '1', '2021-09-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for internship, pursuing his 3rd year, willing to learn', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-04 11:08:16', 1, '2021-09-04 11:12:25', 0, NULL, 1),
(6200, 'ugesh kumar', '4', '9962749715', '', 'ugeshkumar877@gmail.com', '2000-10-04', 20, '2', '2', 'venkatachalam', 'auto driver', 12000.00, 1, 0.00, 10000.00, 'chennai', 'perambur', '2109040003', '1', '1', 'upload_files/candidate_tracker/34344310285_nandhini-1.pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-04 11:18:00', 1, '2021-09-04 11:19:57', 0, NULL, 1),
(6201, 'Urmila yannabathina', '27', '8374308289', '', 'urmilayannabathina@gmail.com', '1999-12-20', 21, '1', '2', 'Raja yannabathina', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Nellore,Andhra Pradesh', 'Chennai', '2109040004', '', '1', 'upload_files/candidate_tracker/40632390969_Cv.urmi5a9.Pdf', NULL, '1', '2021-09-04', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher and no basic knowledge in domain.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-04 11:40:30', 1, '2021-09-04 11:49:20', 0, NULL, 1),
(6202, 'Sirajudeen.s', '4', '9361874661', '', 'rockerssiraj36@gmail.com', '2001-08-06', 20, '2', '2', 'sajhakhan', 'tailore', 3000.00, 1, 0.00, 10000.00, 'chennai', 'aynavaram', '2109040005', '1', '1', 'upload_files/candidate_tracker/51065803070_Siraj Resume.docx', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-04 12:21:05', 1, '2021-09-04 12:24:12', 0, NULL, 1),
(6203, 'MONICA.G', '4', '7338871476', '', 'monihari2315@gmail.com', '2001-07-23', 20, '2', '2', 'govindharaj', 'press', 80000.00, 1, 0.00, 10000.00, 'chennai', 'mount road', '2109040006', '1', '1', 'upload_files/candidate_tracker/34452842540_Resume (20).pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-04 12:25:55', 1, '2021-09-04 12:28:23', 0, NULL, 1),
(6204, 'R.Sakthi varsha', '14', '9080865617', '7708847363', 'seeta18@gmail.com', '1999-08-19', 22, '2', '2', 'S.Robert', 'Working', 30000.00, 0, 0.00, 15000.00, 'porur', 'porur', '2109040007', '1', '1', 'upload_files/candidate_tracker/34255340531_sakthivarsha.docx', NULL, '1', '2021-09-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 12:54:40', 1, '2021-09-04 12:58:50', 0, NULL, 1),
(6205, '', '0', '7904409905', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109040008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-04 01:33:58', 0, NULL, 0, NULL, 1),
(6206, 'Raghul.S', '4', '6369100370', '', 'raghulrock@gmail.com', '1999-05-26', 22, '2', '2', 'shankar', 'abroad', 20000.00, 1, 0.00, 10000.00, 'chennai', 'aynavaram', '2109040009', '1', '1', 'upload_files/candidate_tracker/68740182518_Ragul_Resume.pdf', NULL, '1', '2021-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-04 02:36:40', 1, '2021-09-04 02:39:13', 0, NULL, 1),
(6207, 'Subash', '2', '7538880890', '9092645746', 'subash110sh@gmail.com', '2000-02-11', 21, '2', '2', 'velmurugan', 'buisness', 1200000.00, 1, 0.00, 1000.00, 'chennai', 'chennai', '2109040010', '1', '1', 'upload_files/candidate_tracker/34242509144_my_resume.pdf', NULL, '1', '2021-09-06', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for internship alone, planning to do higher study. ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 02:59:54', 1, '2021-09-04 03:35:46', 0, NULL, 1),
(6208, 'M.RoopKumar Sha', '23', '8610846850', '', 'roopkumar3279@gmail.com', '2001-10-17', 19, '2', '2', 'Silk saree business', 'UIUX designer', 60000.00, 1, 0.00, 400000.00, 'Kanchipuram', 'Kanchipuram', '2109040011', '1', '1', 'upload_files/candidate_tracker/56098155517_roopkumar-1.pdf', NULL, '1', '2021-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 04:17:06', 1, '2021-09-04 04:26:01', 0, NULL, 1),
(6209, '', '0', '8667561910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109040012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-04 04:24:39', 0, NULL, 0, NULL, 1),
(6210, 'Stephen Devaraj', '13', '9080827696', '', 'devastef98@gmail.com', '1998-08-08', 23, '2', '2', 'Nagarajan', 'Physical Education Teacher', 100000.00, 1, 0.00, 10000.00, 'Pondicherry', 'Pondicherry', '2109040013', '1', '1', 'upload_files/candidate_tracker/55500799281_Resume.pdf', NULL, '2', '2021-09-06', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', '2021-09-06', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 04:57:06', 1, '2021-09-04 05:02:17', 0, NULL, 1),
(6211, 'M Sreekanth Naidu', '2', '7871193459', '7904777764', 'sreekanthnaidu96@gmail.com', '1996-06-12', 25, '2', '2', 'M Venkata subbaiah naidu', 'Farmer', 10000.00, 0, 0.00, 12000.00, '4/220,poonga nagar,Near Selvi Stores,Thiruvallur', '#1064, Bommanahalli, Bangalore', '2109040014', '1', '1', 'upload_files/candidate_tracker/77148830928_1630755632490_M.Sreekanth Naidu Resume.pdf', NULL, '2', '2021-09-06', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'okay with terms, has to relocate from bangalore, check the tech skills. cross check with the service agreement, only son so have to discuss with parents.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 05:07:53', 1, '2021-09-04 05:19:20', 0, NULL, 1),
(6212, 'GAUTHAM S KIRTHIK', '13', '9487557299', '8838210579', 'gautham311kirthik@gmail.com', '1997-10-24', 23, '2', '2', 'Parent', 'Fresher', 120000.00, 1, 0.00, 15000.00, 'Neyveli', 'Neyveli', '2109040015', '1', '1', 'upload_files/candidate_tracker/6015172834_GAUTHAM S KIRTHIK RESUME.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'from Neyveli, fresher knows nothing in technical, not even knows the basics.', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 05:50:57', 1, '2021-09-04 05:57:09', 0, NULL, 1),
(6213, '', '0', '8608041012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109040016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-04 05:58:33', 0, NULL, 0, NULL, 1),
(6214, 'Prasanth', '27', '8667806700', '', 'cprasanth077@gmail.com', '1998-06-03', 23, '2', '2', 'Chinnadurai', 'Formar', 80000.00, 1, 0.00, 17000.00, 'Namakkal', 'Chennai', '2109040017', '1', '1', 'upload_files/candidate_tracker/13767574740_prasanth resume.pdf', NULL, '1', '2021-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No relevant knowledge and experience.Not suits for our client role', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-04 05:59:51', 1, '2021-09-04 06:14:40', 0, NULL, 1),
(6215, 'Vignesh.M', '4', '9361944020', '9629759751', 'vm9210456@gmail.com', '2002-08-14', 19, '1', '2', 'Murugan.G', 'Mason', 15000.00, 2, 0.00, 12000.00, 'Thiruvalangadu', 'Thiruvalangadu', '2109060001', '', '1', 'upload_files/candidate_tracker/80918431488_My Resume.pdf', NULL, '1', '2021-09-06', 0, 'CAFSUSR00212', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-06 09:55:56', 1, '2021-09-06 10:14:58', 0, NULL, 1),
(6216, 'J.YASMEEN MARIYAM', '4', '7708897151', '9791095920', 'yasmeenameer872@gmail.com', '1995-07-02', 26, '2', '1', 'J.MUMTAJ BEGAM', 'Housewife', 50000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2109060002', '1', '1', 'upload_files/candidate_tracker/96736999647_1629283507166Resume_Yasmeen.docx', NULL, '1', '2021-09-06', 0, '', '3', '59', '2021-09-08', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Priyanka Team in cash mode. Family business have been shifted from Pallavaram to Dubai.Distance around 16kms.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'Joining mail have been sent on 6th Sept for joining us on 08th Sept. got postponed as she traveled to native due to some health issue in her family.', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-06 11:25:06', 60, '2021-09-11 11:17:47', 0, NULL, 1),
(6217, 'Suresh Elumalai', '6', '8072370694', '9790861319', 'gncsuresh77@gmail.com', '1992-06-21', 29, '2', '1', 'Ranjani', 'Sales girl', 20000.00, 1, 16500.00, 20000.00, 'No.65/72, south west boag road t Nagar', 'Chennai', '2109060003', '1', '2', 'upload_files/candidate_tracker/65531065372_Suresh resumes .pdf', NULL, '3', '2021-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' Rnr Tried Reaching Him From The Day Of Interview .But The Line Is Busy At Every Time We Reached. No Call Back Also', '5', '2', '', '1', '1', '', '2', '2021-09-08', '2', '3', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-06 12:09:53', 8, '2021-09-06 01:43:07', 0, NULL, 1),
(6218, 'R Dinesh', '6', '9677294395', '9941505237', 'dineshdr291197@gmail.com', '1997-11-29', 23, '3', '2', 'S Ramesh', 'Goldsmith', 15000.00, 1, 12000.00, 15000.00, '49/25, village street, THIRUVOTTIYUR, Ch-600019', '49/25,village street, THIRUVOTTIYUR,ch-600019', '2109060004', '', '2', 'upload_files/candidate_tracker/40712188877_a4336065-9158-4c38-ab89-729a1d4d4b79Share_Dinesh.R_-_Resume.pdf', NULL, '1', '2021-09-06', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Comfortable With Telesales, Parents Are Not Convincing With The Role.', '5', '1', '', '1', '1', '', '2', '2021-09-08', '2', '3', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-06 12:37:08', 8, '2021-09-06 01:41:29', 0, NULL, 1),
(6219, 'karthick raja v', '27', '8489215911', '', 'cartheerajavel@gmail.com', '1998-12-10', 22, '2', '2', 'Velmurugan A', 'Farmer', 20000.00, 1, 0.00, 17000.00, 'Ariyalur', 'Ariyalur', '2109060005', '1', '1', 'upload_files/candidate_tracker/50769945042_resume carthee (1).pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'knows only theory and no practical knowledge, fresher and done 4m course. will not suite for client company.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-06 12:55:37', 1, '2021-09-06 01:25:27', 0, NULL, 1),
(6220, '', '0', '9003509980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 01:18:32', 0, NULL, 0, NULL, 1),
(6221, 'shaheen kauser', '5', '7358356281', '', 'shaheenkhamrudeen@gmail.com', '1993-09-03', 28, '1', '1', 'noorunissa', 'reseller', 10.00, 3, 0.00, 15000.00, 'mount road', 'mount road', '2109060007', '', '2', 'upload_files/candidate_tracker/41385694239_ubaid (1).docx', NULL, '1', '2021-09-06', 0, 'divya', '3', '59', '2021-09-13', 170496.00, '', '4', '2021-11-09', '2', 'Selected for Dhivya Team with PT deduction in CAFSInfotech Prop', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', 'Internal Reference and she is an ex-employee, we offered 179496 includes the only deduction of PT. We gave her joining date on 08-Sep, but due to her personal family issue joining date has been postponed to 13-Sep-2021', '', '', '', NULL, NULL, NULL, 1, '2021-09-06 01:42:46', 60, '2021-09-11 06:01:47', 0, NULL, 1),
(6222, '', '0', '7259621721', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 02:16:18', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6223, 'Sangeetha G', '6', '7259622721', '', 'sangeethavijay7158@gmail.com', '1997-01-08', 25, '1', '2', 'Father', '300000', 400000.00, 2, 15000.00, 16000.00, 'Tamas road', 'T nager', '2109060009', '', '2', 'upload_files/candidate_tracker/57590229365_sangeetha new.pdf', NULL, '1', '2022-11-22', 15, 'CA164', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-06 02:36:44', 1, '2022-11-22 01:22:42', 0, NULL, 1),
(6224, 'Sangeetha g', '4', '7259621722', '7259621721', 'Sangeethavijay7158@gmail.com', '1997-01-08', 24, '1', '2', 'M.gandhi', 'Farmer', 12000.00, 2, 0.00, 18000.00, 'T.nagar', 'T.nagar', '2109060010', '', '1', 'upload_files/candidate_tracker/58762162427_1628172814721_SELVA. A - Resume-converted.pdf', NULL, '3', '2021-09-06', 0, 'Job.s', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, very low voice and will not handle pressure. 2017 passed out husband late has 3yr kid.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-06 02:43:41', 1, '2021-09-06 02:51:09', 0, NULL, 1),
(6225, 'Manikandan Thangadurai', '23', '9042602827', '', 'manikandant3011@gmail.com', '2000-11-30', 20, '2', '2', 'Thangadurai', 'Designer', 25000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Chennai', '2109060011', '1', '1', 'upload_files/candidate_tracker/31723749644_Resume_Manikandan T.pdf', NULL, '1', '2021-09-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-06 04:08:02', 1, '2021-09-06 04:13:23', 0, NULL, 1),
(6226, 'K.Abdul Rahim', '13', '8667833662', '', 'kh.abdulrahim98@gmail.com', '1998-02-20', 23, '2', '2', 'Kadhar hussain', 'Tailor', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109060012', '1', '1', 'upload_files/candidate_tracker/85259854149_Rahim Resume.pdf', NULL, '1', '2021-09-07', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'check for php internship, fresher, willing to learn,', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-06 04:18:56', 7, '2021-09-07 05:49:15', 0, NULL, 1),
(6227, '', '0', '9444904879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 05:16:05', 0, NULL, 0, NULL, 1),
(6228, '', '0', '8807779159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 07:01:42', 0, NULL, 0, NULL, 1),
(6229, 'hassain basha', '23', '8220542976', '', 'hassainbashahass@gmail.com', '2000-04-07', 21, '2', '2', 'sabir basha', 'skin murchant', 6000.00, 1, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2109060015', '1', '1', 'upload_files/candidate_tracker/52162702769_HASSAIN BASHA-Resume-converted.pdf', NULL, '2', '2021-09-07', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-06 07:32:14', 1, '2021-09-06 07:46:43', 0, NULL, 1),
(6230, '', '0', '9994855561', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109060016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-06 08:52:06', 0, NULL, 0, NULL, 1),
(6231, 'nandakrishnan', '22', '7338769032', '9677153992', 'nandakrishr05@gmail.com', '1997-02-02', 24, '2', '2', 'ramesh', 'accounts executive', 25000.00, 0, 0.00, 10000.00, 'Chintadripet', 'chintadripet', '2109070001', '1', '1', 'upload_files/candidate_tracker/91091200772_Nandakrishnan - Resume (1).pdf', NULL, '1', '2021-09-07', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No knowledge and not fit for our team', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-07 12:18:18', 1, '2021-09-07 12:23:26', 0, NULL, 1),
(6232, 'GANESH KUMAR R', '6', '9940624338', '9003240362', 'ganeshkumarrajendran900@gmail.com', '1998-08-16', 23, '2', '2', 'RAJENDRAN G', 'EXPIRED', 15000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2109070002', '1', '2', 'upload_files/candidate_tracker/7880750383_GANESH NEW 22.06.21-converted.pdf', NULL, '1', '2021-09-07', 0, '', '3', '59', '2021-09-09', 186000.00, '', '6', '2021-11-13', '1', 'Selected for Syed Team with PF/ESI/PT deductions. Candidate have a plan to do part time education in UG. Not relevant Sales Exp, but he is into Customer care exp earlier. Let us try for Relationship Executive', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-07 10:04:13', 60, '2021-09-07 12:37:19', 0, NULL, 1),
(6233, 'Srikanth.vm', '6', '9865416066', '8807600998', 'mage19@gmail.com', '2000-02-19', 21, '1', '2', 'MAHARAJ S', 'Kooli', 10000.00, 2, 0.00, 15000.00, 'Dharamapuri', 'Anna sali', '2109070003', '', '1', 'upload_files/candidate_tracker/97000124648_mahendiran resume.docx.pdf', NULL, '1', '2021-09-07', 0, '55576', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Tried couple of times and no response from the candidate', '5', '2', '0', '1', '1', '0', '2', '2021-09-08', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-07 10:18:43', 1, '2021-09-07 11:01:05', 0, NULL, 1),
(6234, 'MAHENDIRAN M', '6', '8807600998', '9008826567', 'mage19@gmail.com', '2000-02-19', 21, '1', '2', 'MAHARAJ S', 'Kooli', 13000.00, 2, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2109070004', '', '1', 'upload_files/candidate_tracker/85221044203_mahendiran resume.docx', NULL, '1', '2021-09-07', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, will not handle pressure and sustain', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-07 10:19:33', 1, '2021-09-07 11:05:55', 0, NULL, 1),
(6235, 'Ponraj P', '4', '6382996521', '', 'ponrajkp2001@gmail.com', '2001-05-17', 20, '3', '2', 'Petchimuthu K', 'Metal Shop', 20000.00, 2, 0.00, 12000.00, 'T-Nagar', 'T-Nagar', '2109070005', '', '1', 'upload_files/candidate_tracker/75347448323_PONRAJ RESUME 2021.pdf', NULL, '1', '2021-09-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, will not handle pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-07 10:56:32', 1, '2021-09-07 11:06:35', 0, NULL, 1),
(6236, 'S.dhamodharan', '20', '8939307703', '9445813767', 'Dhamodharan03121997@gmail.com', '1997-12-03', 23, '2', '2', 'L.srinivasan father', 'BSNL Reated staffe', 10000.00, 1, 14500.00, 15500.00, 'Keekattalai', 'Keekattalai', '2109070006', '1', '2', 'upload_files/candidate_tracker/71793327368_1630861233050Resume_S.pdf', NULL, '1', '2021-09-07', 10, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 3m exp in semi voice 8k, expt sal is 12k, will not suite for 12k.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-07 11:03:44', 50, '2021-09-07 12:14:52', 0, NULL, 1),
(6237, 'Sheril John J', '6', '7373388705', '', 'sheril.john60@gmail.com', '1992-09-16', 28, '1', '1', 'Johnson R', 'Farmer', 60000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Saidapet', '2109070007', '', '1', 'upload_files/candidate_tracker/60294321389_Sheril Biodata.pdf', NULL, '1', '2021-09-07', 0, '55576', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'i dont remember on this.. sorry', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-07 12:15:53', 1, '2021-09-07 12:30:45', 0, NULL, 1),
(6238, 'janani', '4', '8870383274', '', 'saijanani0401@gmail.com', '1994-01-04', 27, '2', '1', 'karthikeyan', 'working', 20000.00, 1, 13000.00, 11000.00, 'chennai', 'ambattur', '2109070008', '1', '2', 'upload_files/candidate_tracker/79416653553_JANANI RESUME.docx', NULL, '1', '2021-09-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-07 12:17:34', 1, '2021-09-07 12:21:13', 0, NULL, 1),
(6239, 'sameena', '5', '8754762258', '', 'ammuabu98@gmail.com', '1998-05-09', 23, '2', '2', 'abubacker', 'suthern railways', 20000.00, 0, 13000.00, 150000.00, 'coimbatore', 'chennai', '2109070009', '1', '2', 'upload_files/candidate_tracker/11012001645_experience resume.docx', NULL, '1', '2021-09-07', 0, '', '3', '59', '2021-09-13', 158496.00, '', '5', '1970-01-01', '2', 'Selected for Karthika Esales Team with PT deductions only in CAFSinfotech Prop', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', 'Joining Welcome Mail Sent. Regional Head Gaurav Sir committed a salary hike of 1K from 3rd month if candidate achieved the proposed target of 1.5 L each in next 2 months', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-07 12:37:55', 60, '2021-09-11 12:31:01', 0, NULL, 1),
(6240, 'latha', '2', '6380604251', '9629860250', 'lathaajs2000@gmail.com', '2000-05-20', 21, '2', '2', 'jaya', 'farmer', 10000.00, 3, 0.00, 20000.00, 'villupuram', 'villupuram', '2109070010', '1', '1', 'upload_files/candidate_tracker/6372198077_lathajaya.pdf', NULL, '1', '2021-09-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for job, no knowledge in basics, has self learning will not suite for 15k and internship too.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-07 12:54:55', 1, '2021-09-08 04:13:32', 0, NULL, 1),
(6241, '', '0', '6383478062', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-07 01:10:20', 0, NULL, 0, NULL, 1),
(6242, 'Gunasekaran. E', '4', '7338909349', '', 'Gunaeswaran2000@gmail.com', '2001-01-08', 20, '2', '2', 'Vedhvalli', 'Housekeeping', 13000.00, 1, 0.00, 10000.00, '4b/17 kamraj street otteri Chennai-6000012', 'Otteri', '2109070012', '1', '1', 'upload_files/candidate_tracker/74343007517_resume_gunasekaran_col (4).pdf', NULL, '1', '2021-09-07', 0, '', '3', '59', '2021-09-27', 120000.00, '', NULL, '2024-05-25', '2', 'Selected for Muthu team with PF/ESI/PT', '1', '2', '1', '1', '1', '1', '2', '1970-01-01', '3', '9', 'Offered and given him the joining Date on 27-Aug, but he requested to join us on 29-Aug as his relieving from the current company getting delay(salary Delay)', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-07 03:15:04', 60, '2021-09-25 03:21:12', 0, NULL, 1),
(6243, 'Dhivya', '4', '6374428869', '', 'dhivyamuthusamy182@gmail.com', '1998-02-18', 23, '1', '1', 'Muthusamy', 'Driver', 10000.00, 1, 12000.00, 14000.00, 'Salem', 'Chennai', '2109070013', '', '2', 'upload_files/candidate_tracker/57539340403_DIV2.pdf', NULL, '1', '2021-09-07', 0, 'Jenifer', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, communication is not upto the level and expt is 15k', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-07 03:38:22', 1, '2021-09-07 03:46:53', 0, NULL, 1),
(6244, 'sathiya g', '27', '6379451512', '6381563269', 'sathiyag414@gmail.com', '1996-04-24', 25, '2', '1', 'michael raj s', 'marketting executive', 20000.00, 1, 0.00, 15000.00, 'cuddalore', 'chennai', '2109070014', '1', '1', 'upload_files/candidate_tracker/55353109257_Sathiya Resumé (1).docx', NULL, '2', '2021-09-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-07 04:12:09', 1, '2021-09-07 05:07:27', 0, NULL, 1),
(6245, 'Indumathi V', '27', '7339136815', '', 'indumathiv2000@gmail.com', '2000-08-10', 21, '2', '2', 'Venkatesan S', 'Auto driver', 15000.00, 2, 0.00, 250000.00, 'Chennai', 'Vellore district', '2109070015', '1', '1', 'upload_files/candidate_tracker/37438421136_indu resume.pdf', NULL, '2', '2021-09-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-07 04:37:42', 1, '2021-09-07 04:47:57', 0, NULL, 1),
(6246, '', '0', '9976025383', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109070016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-07 04:43:25', 0, NULL, 0, NULL, 1),
(6247, '', '0', '9492279770', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109070017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-07 04:59:23', 0, NULL, 0, NULL, 1),
(6248, 'Sunthar V', '22', '9442616471', '', 'frndzindagi@gmail.com', '1998-11-12', 22, '2', '2', 'Visuvanathan', 'Fresher', 84000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Padappai, Chennai', '2109080001', '1', '1', 'upload_files/candidate_tracker/3572897803_Sunthar_CV.docx', NULL, '1', '2021-09-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-08 08:31:03', 1, '2021-09-08 08:35:02', 0, NULL, 1),
(6249, 'GOWTHAM.N', '4', '6383940288', '', 'ngowtham690@gamail.com', '2001-04-30', 20, '2', '2', 'Narayanan', 'Dry cleaning', 15000.00, 1, 0.00, 12000.00, 'purasaiwakkam chennai-07', 'Purasaiwakkam chennai-07', '2109080002', '1', '1', 'upload_files/candidate_tracker/17637509318_Resume.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain and handle pressure.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 10:18:56', 1, '2021-09-08 10:31:45', 0, NULL, 1),
(6250, '', '0', '7418832798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109080003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-08 10:23:56', 0, NULL, 0, NULL, 1),
(6251, 'vijaan m', '4', '6381802146', '', 'msvijayan2001@gmail.com', '2001-09-21', 19, '3', '2', 'murugan', 'unemploee', 0.00, 0, 0.00, 10000.00, 'thiruvannamalai', 'west mambalam', '2109080004', '', '1', 'upload_files/candidate_tracker/93612127515_1628911685832VijayanResume.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for any profile, very fresher and new to chennai, no idea about his career and job.', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '9', '', '', '', '0', NULL, NULL, NULL, 1, '2021-09-08 10:23:58', 7, '2021-09-08 02:59:31', 0, NULL, 1),
(6252, 'Varsha A', '4', '8925236187', '8190964559', 'varshadeepak1827@gmail.com', '2000-01-18', 21, '3', '2', 'Usha A', 'Ticket booking executive', 15000.00, 1, 13000.00, 12000.00, 'Chennai', 'Chennai', '2109080005', '', '2', 'upload_files/candidate_tracker/93620003073_1630997024276_1629870904433_1628940123004_1628916719186_1628916608282_1627894948100_Varsha A (1) (1)(1).pdf', NULL, '1', '2021-09-08', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-08 11:04:48', 1, '2021-09-08 11:09:30', 0, NULL, 1),
(6253, 'mohan', '6', '8939322658', '', 'dmohan2712191@gmail.com', '2006-09-08', 0, '2', '2', 'darmarajan', 'business', 12000.00, 2, 10500.00, 14000.00, 'chennai', 'chennai', '2109080006', '1', '2', 'upload_files/candidate_tracker/44122902328_experience resume.docx', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, has 3yr exp in calling but no clarity in his speech. Lctc ia 10.5k and expt is 16k.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 11:05:47', 1, '2021-09-08 11:11:03', 0, NULL, 1),
(6254, 'Gowtham. D', '4', '7338747237', '', 'Gowthamdesam83@gmail.com', '1999-11-15', 21, '2', '2', 'Desappan', 'Wellding', 10000.00, 1, 0.00, 13000.00, 'Kottivakkam Chennai 41', 'Kottivakkam chennai 41', '2109080007', '1', '1', 'upload_files/candidate_tracker/15778087675_GOWTHAM .D.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, wearing braces and has 6 bL and has to complete his exam and planning to do higher study.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 11:22:03', 1, '2021-09-08 11:56:36', 0, NULL, 1),
(6255, 'imran', '6', '9080484521', '', 'rockz1582@gmail.com', '1999-01-12', 22, '2', '2', 'Showgath ali', 'business', 1000000.00, 1, 0.00, 11000.00, 'annanagar', 'annanagar', '2109080008', '1', '1', 'upload_files/candidate_tracker/92367020782_IMRAN ALI RESUME 2021.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'time being looking for job, for extra pocket money he looking for job, will not sustain.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 11:25:56', 1, '2021-09-08 11:51:43', 0, NULL, 1),
(6256, 'MOHAMED THAHAR', '6', '8939744604', '9080484521', 'mohamed.thahar99@gmail.com', '2006-09-08', 0, '2', '2', 'Abdul Khudus', 'Superintendent', 50000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2109080009', '1', '1', 'upload_files/candidate_tracker/80897168073_printChallan (7).pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, can work here for 6m, planning to do his higher study regular.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-08 11:26:38', 1, '2021-09-08 11:50:38', 0, NULL, 1),
(6257, 'Karthick', '4', '8610172158', '9962230049', 'karthickonline2495@gmail.com', '1995-04-24', 26, '3', '2', 'K.elango', 'Petrol bunk', 20000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2109080010', '', '2', 'upload_files/candidate_tracker/46192876552_karthi.doc - Hword.pdf', NULL, '1', '2021-09-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1yr exp in calling and 2yr exp in cams kyc, got hike in april 2021 from 13k to 16k. reason for reliving is low hike, expt is 18-20k', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-08 12:40:54', 1, '2021-09-08 12:48:36', 0, NULL, 1),
(6258, '', '0', '8248948345', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109080011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-08 01:22:25', 0, NULL, 0, NULL, 1),
(6259, 'Ranjani', '4', '8015587272', '8939882846', 'jennitr30@gmail.com', '1994-08-30', 27, '3', '1', 'G.velu', 'Private sector', 27000.00, 2, 16000.00, 15000.00, 'Veppampattu', 'Veppampattu', '2109080012', '', '2', 'upload_files/candidate_tracker/85418481063_Ranjani-3.docx', NULL, '1', '2021-10-06', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-08 01:23:08', 1, '2021-10-06 11:12:44', 0, NULL, 1),
(6260, '', '0', '9566001017', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109080013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-08 03:12:59', 0, NULL, 0, NULL, 1),
(6261, 'Ruban selvam', '27', '9790141044', '9080033979', 'ruban.john54@gmail.com', '1992-06-05', 29, '2', '1', 'Selvam', 'Ex government employee', 30000.00, 1, 13500.00, 30000.00, '31/12 Hindu colony, 1st main road, Ullagaram.ch-91', '31/12 Hindu Colony, 1st Main Road ,Ch-91', '2109080014', '1', '2', 'upload_files/candidate_tracker/56958058166_Ruban Selvam.docx', NULL, '1', '2021-09-11', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-08 06:08:12', 1, '2021-09-08 06:18:48', 0, NULL, 1),
(6262, 'SHAHUL HAMEED S A', '4', '8870935892', '7904058983', 'shahulbt786@gmail.com', '1996-07-14', 25, '2', '2', 'Anwar ali', 'Marketing', 180000.00, 1, 0.00, 18.00, 'Karur', 'Chennai', '2109090001', '1', '1', 'upload_files/candidate_tracker/18969399390_SHAHUL HAMEED S.A.docx', NULL, '1', '2021-09-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 2yr exp in calling, mahaveer electronics, expt is 18k and holds offer in bank bazar 15k and will not sustain, and suite for our process', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-09 10:42:23', 1, '2021-09-09 10:50:06', 0, NULL, 1),
(6263, 'Madhan s', '6', '9941102090', '9677269224', 'smadhan641@gmail.com', '2000-02-26', 21, '2', '2', 'Kalayanaaundaram', 'Business', 15000.00, 1, 10500.00, 12000.00, 'Prugudai', 'Prugudai', '2109090002', '1', '2', 'upload_files/candidate_tracker/79822940221_madhan makku.pdf', NULL, '1', '2021-09-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have given time to confirm the CTC offered,but his expectation is very high and not comfortable to join us', '5', '2', '0', '1', '1', '0', '2', '2021-09-13', '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-09 11:17:46', 1, '2021-09-09 11:23:46', 0, NULL, 1),
(6264, 'balakumaran c', '3', '7904015586', '', 'balachandran1046@gmail.com', '1996-12-28', 24, '2', '2', 'Chandran yadav J', 'Driver', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2109090003', '1', '1', 'upload_files/candidate_tracker/75295513097_BALAKUMARAN C RESUME.pdf', NULL, '1', '2021-09-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Seems not much comfortable with TxxampC, asked time to confirm on the same but he Didnxquott turn back with his confirmation.', '2', '2', '0', '1', '1', '0', '2', '2021-09-13', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-09 12:10:42', 1, '2021-09-09 12:43:23', 0, NULL, 1),
(6265, 'maariyapan', '6', '8939274278', '', 'maaridass66@gmail.com', '1998-07-20', 23, '2', '2', 'balan', 'tailor', 6000.00, 1, 0.00, 12000.00, 'kodambakkam', 'kodambakkam', '2109090004', '1', '1', 'upload_files/candidate_tracker/82822371809_CV_2021-07-02-044709.pdf', NULL, '1', '2021-09-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 1yr exp in networking, fresher for calling expt is 15k, not speaking up and will not suite for sales.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-09 12:12:45', 1, '2021-09-09 12:15:22', 0, NULL, 1),
(6266, 'mohanraj m', '4', '6380303858', '9445603711', '18ubu180mohanraj@gmail.com', '2000-07-07', 21, '1', '2', 'mohan v', 'goverment sect', 20000.00, 1, 0.00, 13000.00, 'tiruvallur', 'tiruvallur', '2109090005', '', '1', 'upload_files/candidate_tracker/20865367270_Mohanraj .pdf', NULL, '1', '2021-09-09', 0, 'jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 01:21:26', 1, '2021-09-09 01:34:56', 0, NULL, 1),
(6267, 'Deepak.k', '4', '9894209227', '9600328315', 'deepakdeepu23760@gmail.com', '1999-06-25', 22, '1', '2', 'Kottiswaran', 'Advocate', 15000.00, 1, 0.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109090006', '', '1', 'upload_files/candidate_tracker/72619632077_Resume-3.pdf', NULL, '1', '2021-09-09', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 01:21:27', 1, '2021-09-09 01:34:42', 0, NULL, 1),
(6268, 'Ajith Kumar K R', '4', '8248269217', '9600328315', 'ajithkiran9821@gmail.com', '1998-07-21', 23, '1', '2', 'Raghu', 'Advocate', 15000.00, 2, 10000.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109090007', '', '2', 'upload_files/candidate_tracker/51808242070_Ajith 2020.pdf', NULL, '1', '2021-09-09', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 01:22:42', 1, '2021-09-09 01:35:12', 0, NULL, 1),
(6269, 'Ajith Kumar', '4', '8248269215', '9600328315', 'ajithkiran9821@gmail.com', '1998-07-21', 23, '1', '2', 'Raghu', 'Advocate', 15000.00, 2, 10000.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109090008', '', '2', 'upload_files/candidate_tracker/66531667150_RESUME.pdf', NULL, '1', '2021-09-09', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 01:38:59', 1, '2021-09-09 01:41:46', 0, NULL, 1),
(6270, 'testing', '2', '3478901245', '3478901246', 'latha@cafsinfotech.in', '2006-09-09', 0, '3', '2', 'test', 'test', 12000.00, 0, 0.00, 10000.00, 'Test', 'Test', '2109090009', '', '1', 'upload_files/candidate_tracker/16015613435_Bugs.docx', NULL, '1', '2021-09-09', 0, '', '3', '27', '2021-09-09', 0.00, '', '5', '1970-01-01', '1', '', '2', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-09 03:12:00', 1, '2021-09-09 03:15:37', 0, NULL, 1),
(6271, 'Sivanathan Balaguru', '27', '9535109460', '', 'sivanathanbbe@gmail.com', '1987-10-07', 33, '2', '1', 'Saranya', 'House wife', 100000.00, 0, 1600000.00, 3400000.00, 'Chennai', 'Chennai', '2109090010', '1', '2', 'upload_files/candidate_tracker/4380255217_Sivanathan Balaguru.pdf', NULL, '1', '2021-09-15', 60, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 10yr exp and 5yrs in society general. his ctc is 16.5L and expt is 24L. wife working in tcs and from virugambakkam.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-09 03:46:49', 1, '2021-09-09 03:50:59', 0, NULL, 1),
(6272, 'Murugaprasanth A', '23', '9940849419', '8489426037', 'Murugaprasanth79@gmail.com', '1995-03-21', 26, '2', '1', 'Monisha', 'Searching for a job', 25000.00, 1, 0.00, 100000.00, 'Chennai', 'Chennai', '2109090011', '1', '1', 'upload_files/candidate_tracker/40635571476_MurugaPrasanth Resume D (1).pdf', NULL, '1', '2021-09-13', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Task not satisfactory', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-09 04:07:57', 1, '2021-09-10 12:46:34', 0, NULL, 1),
(6273, 'Purusothaman', '6', '9087247959', '9087247949', 'Purusothaarthi235@gmail.com', '1997-12-23', 23, '1', '1', 'Lakshime', 'Business', 7000.00, 1, 0.00, 15000.00, 'Nagercoil', 'Chrompate', '2109090012', '', '2', 'upload_files/candidate_tracker/84424843211_1629952102225_RESUME001.pdf', NULL, '1', '2021-09-09', 0, 'Jobd', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-09 09:12:08', 1, '2021-09-09 09:18:26', 0, NULL, 1),
(6274, 'E.BALAJI', '4', '7358454658', '', 'jibala1507@gmail.com', '2000-07-15', 21, '2', '2', 'J.ELANCHEZIAN', 'Driver', 16000.00, 1, 0.00, 11000.00, 'Chennai', 'Chennai', '2109110001', '1', '1', 'upload_files/candidate_tracker/73708574909_BALAJI .pdf', NULL, '1', '2021-09-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, not much comfortable with Telesales. Not open for target based positions. Will not handle the pressure. Not much communicative', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-11 10:55:37', 50, '2021-09-11 11:12:24', 0, NULL, 1),
(6275, '', '0', '6382408764', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 11:41:16', 0, NULL, 0, NULL, 1),
(6276, 'SHREERAPATHEE', '6', '7871880128', '', 'shreerapathee@gmail.com', '1994-01-17', 27, '2', '2', 'SURESH father', 'Adimin', 75000.00, 1, 0.00, 20000.00, 'CHENNAI', 'PALLAVARAM', '2109110003', '1', '2', 'upload_files/candidate_tracker/91780187475_Shreerapathee 04.docx', NULL, '1', '2021-09-11', 45, '', '5', '20', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate had an accident recently due to which he has to visit his ortho everyday from evening 6 to 9 for atleast 6 montha. Not willing for full day work', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-11 11:51:47', 60, '2021-09-11 01:11:49', 0, NULL, 1),
(6277, '', '0', '9500095623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 01:16:07', 0, NULL, 0, NULL, 1),
(6278, '', '0', '8124733233', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 01:16:41', 0, NULL, 0, NULL, 1),
(6279, 'Datchinamoorthy Mathivanan', '23', '8056726293', '9360333633', 'datchinamvs86@gmail.com', '1997-02-06', 24, '2', '2', 'Mathivanan', 'Daily wages', 15000.00, 1, 25.00, 35.00, 'Kumbakonam', 'Kumbakonam', '2109110006', '1', '2', 'upload_files/candidate_tracker/14233569401_datchinamoorthy Update Resume_13.08.2021.pdf', NULL, '1', '2021-09-14', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Doesnxquott know what is ui/ux, knows photoshop and cdrw, 4.5yr exp in core field 23.7k, expt is 30k, just like that came for interview.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-11 01:18:18', 1, '2021-09-11 01:36:01', 0, NULL, 1),
(6280, 'yogeshwaran c', '23', '9551079036', '', 'yogeshyogi1676@gmail.com', '2001-06-07', 20, '2', '2', 'Chokalingam', 'Vilder', 25000.00, 5, 0.00, 15000.00, 'Perungudi', 'Peruy', '2109110007', '1', '1', 'upload_files/candidate_tracker/24776849212_my resume yogesh .docx.pdf', NULL, '2', '2021-09-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 6m exp in networking 13k, no basic knowledge in ui/ux, expt is 10-15k,', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-11 03:00:00', 7, '2021-09-13 10:21:18', 0, NULL, 1),
(6281, 'Sophia Mandolin', '13', '9003244291', '', 'smandolin6@gmail.com', '1992-12-22', 28, '2', '1', 'Vivek Augustine pal', 'Network Engineer', 30000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2109110008', '1', '1', 'upload_files/candidate_tracker/70818633371_C#.NET C v (2).docx', NULL, '1', '2021-09-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 11m exp in s/w testing 10k, 6m course in multiple domin, married and 3yr kid, father and mother both govt emp, husband is a project manager in a pvt company.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-11 03:08:16', 50, '2021-09-15 10:50:21', 0, NULL, 1),
(6282, '', '0', '9442300048', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 05:06:43', 0, NULL, 0, NULL, 1),
(6283, 'Kaviyarasu S', '13', '8015414383', '', 'Kavinitsolutions@gmail.com', '1997-10-22', 23, '2', '2', 'Saravanan', 'HR contractor', 30000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2109110010', '1', '1', 'upload_files/candidate_tracker/62538099031_My resumekaviyarasu.pdf', NULL, '1', '2021-09-14', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-11 05:50:04', 1, '2021-09-11 06:06:23', 0, NULL, 1),
(6284, '', '0', '7010445945', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-11 11:48:08', 0, NULL, 0, NULL, 1),
(6285, 'V.vijayakumar', '14', '9791491777', '9790580230', 'Vijaykum@gmail.com', '2006-09-13', 0, '2', '2', 'Venkatachalam', 'Business', 15000.00, 2, 200000.00, 600000.00, 'Pondicherry', 'Pondicherry', '2109130001', '1', '2', 'upload_files/candidate_tracker/73105347332_Full Resume vijai.docx', NULL, '3', '2021-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-09-13 10:54:00', 1, '2021-09-13 11:14:17', 0, NULL, 1),
(6286, 'Kavitha. P', '4', '9543199215', '9843436974', 'Kavishivan112@gmail.com', '1993-10-08', 27, '2', '2', 'Pandiyan. P', 'Former', 10000.00, 1, 2.00, 14000.00, 'Marakkanam', 'Nungambakkam', '2109130002', '1', '2', 'upload_files/candidate_tracker/30447840765_kavitha resume new 1.docx', NULL, '1', '2021-09-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response sal expt high', '1', '1', '', '1', '1', '', '2', '2021-10-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-13 11:07:56', 50, '2021-09-13 11:35:38', 0, NULL, 1),
(6287, 'Neeraj', '6', '9600052012', '', 'krishnaneeraj00@gmail.com', '1996-10-26', 24, '2', '2', 'Neetha krishnan', 'house wife', 75000.00, 1, 0.00, 15000.00, 'Icf', 'icf', '2109130003', '1', '1', 'upload_files/candidate_tracker/45501119372_Nk (1).pdf', NULL, '1', '2021-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Didnxquott turn for interview after lunch, also not responding to the calls. Recruiter checked with the candidate and updated that he is not interested in the profile', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-13 11:13:12', 8, '2021-09-13 01:03:49', 0, NULL, 1),
(6288, 'Bavithra K', '13', '9092696111', '9344611013', 'bavithravivek@gmail.com', '1994-07-13', 27, '2', '1', 'Vivekanandhan', 'Developer', 40000.00, 2, 0.00, 8000.00, 'Chennai', 'Chennai', '2109130004', '1', '1', 'upload_files/candidate_tracker/41813853471_bavithra resume (1).pdf', NULL, '1', '2021-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-13 11:27:14', 1, '2021-09-13 11:30:28', 0, NULL, 1),
(6289, 'Sathish Kumar s', '2', '9047859620', '8248652188', 'satzni11@gmail.com', '1997-11-24', 23, '2', '2', 'Shanmuganathan K', 'Retired employee', 80000.00, 1, 0.00, 30000.00, 'Vadalur', 'Chennai', '2109130005', '1', '1', 'upload_files/candidate_tracker/23472672029_Resume_updated.pdf', NULL, '1', '2021-09-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 2yr exp in mern in tcs and 3.2l ctc, before that he was running his own biz in 3d printing, looking for react internship and for job expt is 4l.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-13 11:36:40', 1, '2021-09-13 11:43:52', 0, NULL, 1),
(6290, 'Vengatesan s', '4', '8870850898', '', 'Vsan6742@gmail.com', '1997-04-08', 24, '3', '2', 'Sekar p', 'Farmer', 70000.00, 2, 0.00, 12000.00, 'Kallakurichi', 'Chennai choolaimedu', '2109130006', '', '1', 'upload_files/candidate_tracker/6698575211_V RESUME.pdf', NULL, '1', '2021-09-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, after degree 4yrs ideal at home, said very shy to search job.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-13 11:42:52', 1, '2021-09-13 12:02:28', 0, NULL, 1),
(6291, 'Satham Usain', '4', '7339045837', '8870478012', 'rahmanicsatham@gmail.com', '1999-07-17', 22, '4', '2', 'Abdul Razak', 'Abroad', 25000.00, 5, 0.00, 15000.00, 'Pudukkottai', 'Vadapalani', '2109130007', '', '1', 'upload_files/candidate_tracker/2997330682_ii07v-gl5uq (1).doc', NULL, '1', '2021-09-13', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, already got offer for 9.5k, due to low salary not joined. currently from vadapalani asking for nearby location.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-13 12:02:11', 1, '2021-09-13 12:22:16', 0, NULL, 1),
(6292, 'Boopathi Raja. N', '27', '9360477390', '', 'boopathi17csb007@gmail.com', '1999-11-12', 21, '2', '2', 'N. Nagarajan', 'Cooli', 30000.00, 1, 2.76, 3.50, 'dindigul', 'dindigul', '2109130008', '1', '2', 'upload_files/candidate_tracker/88334262155_boopathi Resume.docx', NULL, '2', '2021-09-14', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Discussed, he is only into debugging no development Exp.9 months of Exp into debug only 30 days of the notice period. Attended around 30+ virtual interviews and the salary expectation is very high . Sustainability doubts.', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-13 01:23:25', 1, '2021-09-13 01:27:15', 0, NULL, 1),
(6293, 'Arun Kumar', '13', '9842950710', '', 'arunkumar.ak199685@gmail.com', '1996-08-05', 25, '2', '2', 'Kannan', 'Farmer', 18000.00, 1, 0.00, 10000.00, 'Theni', 'Madurai', '2109130009', '1', '1', 'upload_files/candidate_tracker/50984607725_ARUN KUMAR-converted-converted.pdf', NULL, '3', '2021-09-14', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Response.', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-13 02:57:05', 50, '2021-09-14 10:22:21', 0, NULL, 1),
(6294, 'megala', '4', '6374198237', '', 'megalamaha26@gmail.com', '1999-06-28', 22, '2', '2', 'manoharan', 'electrician', 20000.00, 1, 0.00, 10000.00, 'Tanjavur', 'Tanjavur', '2109130010', '1', '1', 'upload_files/candidate_tracker/81409575206_CURRENT RESUME.pdf', NULL, '2', '2021-07-23', 0, '', '3', '59', '2021-09-16', 120000.00, '', '3', '2022-03-10', '2', 'Selected for Tanjore Location in cash mode', '1', '1', '', '4', '5', '', '2', '2021-09-14', '3', '9', 'Offer Mail Sent - Cash Mode, Candidates Yet To Share The Details Required In Excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 03:49:37', 60, '2021-09-14 06:35:19', 0, NULL, 1),
(6295, 'Jennipriya', '4', '6383364739', '', 'sjenipriya51@gmail.com', '2001-05-23', 20, '2', '2', 'nirmala', 'cooli', 8000.00, 2, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109130011', '1', '1', 'upload_files/candidate_tracker/68583486467_jenipriya resume.docx', NULL, '2', '2021-08-18', 0, '', '3', '59', '2021-09-16', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tanjore in Cash mode', '1', '2', '', '4', '5', '', '2', '2021-09-14', '3', '9', 'Offer Mail Sent - Cash Mode, Candidates Yet To Share The Details Required In Excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 03:57:41', 60, '2021-09-14 06:36:21', 0, NULL, 1),
(6296, 'Uma Devi A', '13', '9092488291', '7904379815', 'deviuma442@gmail.com', '1997-12-16', 23, '2', '2', 'Amalraj k', 'Business', 150000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2109130012', '1', '1', 'upload_files/candidate_tracker/556035586_UmaDeviResume-1.pdf', NULL, '1', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, no basic tech skill, expt is 15k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-13 04:03:36', 1, '2021-09-13 04:27:48', 0, NULL, 1),
(6297, 'jennifer', '4', '8838477632', '', 'Jeniiiiifer78@gmail.com', '2001-06-14', 20, '2', '2', 'david', 'tailor', 7000.00, 1, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109130013', '1', '1', 'upload_files/candidate_tracker/76503587236_jenifer D.docx', NULL, '2', '2021-09-08', 0, '', '3', '59', '2021-09-16', 120000.00, '', NULL, '2025-10-31', '2', 'Selected for Tanjore location in cash mode', '1', '2', '', '4', '5', '', '2', '2021-09-14', '2', '9', 'Offer Mail Sent - Cash Mode, Candidates Yet To Share The Details Required In Excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 04:05:06', 60, '2021-09-14 06:35:48', 0, NULL, 1),
(6298, 'rahul', '4', '8778149297', '', 'ragulsaranmech16@gmail.com', '1999-05-16', 22, '2', '2', 'saravanan', 'server', 12000.00, 1, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109130014', '1', '1', 'upload_files/candidate_tracker/6854373740_RAGUL.docx', NULL, '2', '2021-09-13', 0, '', '3', '59', '2021-09-16', 120000.00, '', '6', '2021-09-27', '2', 'Selected for Tanjavur in cash mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent - Cash Mode, candidates yet to share the details required in excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 04:09:03', 60, '2021-09-14 06:34:02', 0, NULL, 1),
(6299, 'mohamed ajim', '4', '6379643483', '', 'sparkleajim@gmail.com', '2001-06-30', 20, '2', '2', 'mumtaj', 'nil', 0.00, 1, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109130015', '1', '1', 'upload_files/candidate_tracker/3160698038_AJIM Resume.docx', NULL, '2', '2021-09-13', 0, '', '3', '59', '2021-09-16', 120000.00, '', '3', '2022-06-06', '2', 'Selected for Tanjore in cash mode', '1', '1', '', '4', '5', '', '2', '2021-09-14', '3', '9', 'Offer Mail Sent - Cash Mode, Candidates Yet To Share The Details Required In Excel', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-13 04:12:06', 60, '2021-09-14 06:34:49', 0, NULL, 1),
(6300, '', '0', '9962843806', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109130016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-13 06:11:02', 0, NULL, 0, NULL, 1),
(6301, 'V.vijayakumar', '27', '9790580230', '9791491777', 'vijaykumarpondiuni@gmail.com', '2006-09-14', 0, '2', '2', 'T.venkataclam', 'Business', 15000.00, 2, 200000.00, 600000.00, 'Pondicherry', 'Pondicherry', '2109140001', '1', '2', 'upload_files/candidate_tracker/61924076349_Full Resume vijai.docx', NULL, '3', '2021-09-14', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'no response', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-14 07:01:58', 1, '2021-09-14 07:15:42', 0, NULL, 1),
(6302, 'AnishMon', '22', '8838806474', '8903014709', 'anish160398@gmail.com', '1998-03-16', 23, '2', '2', 'Arul Dhas V', 'Farmer', 10.00, 2, 0.00, 10000.00, 'Nagarcoil, Marthandam', 'Karapakkam, Chennai', '2109140002', '1', '1', 'upload_files/candidate_tracker/61275802704_anish-new resume-2.pdf', NULL, '1', '2021-09-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for us, has to learn and come', '2', '1', '', '1', '1', '', '2', '2021-09-15', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-14 10:25:28', 8, '2021-09-14 05:26:34', 0, NULL, 1),
(6303, 'Hariharan', '6', '9566763375', '9025410525', 'Hariharan45663@gmail.com', '2000-01-23', 21, '2', '1', 'K singaraja', 'Auto driver', 200000.00, 1, 0.00, 18.00, 'Madurai', 'Chennai', '2109140003', '1', '1', 'upload_files/candidate_tracker/41874430413_CURRICULAM VITAE HARIHARAN.pdf', NULL, '1', '2021-09-14', 0, '', '3', '59', '2021-09-27', 192000.00, '', '6', '2022-11-02', '1', 'Selected for Srikanth Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '2021-09-16', '1', '3', 'Candidate was expecting more on the CTC than we offered. Finally he was convinced with the pay we offered. Seems to good in communicating. Let see for the Direct Marketing(50/50).Even we got oral approval from Suresh sir to hire this candidate in Consultant mode(5%) deduction.', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-14 11:13:02', 60, '2021-09-26 03:09:24', 0, NULL, 1),
(6304, 'Nihil N', '13', '9047440828', '7010795676', 'nihilvlg@gmail.com', '2000-10-20', 20, '2', '2', 'Nandha kumar', 'Farmer', 8000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Chennai', '2109140004', '1', '1', 'upload_files/candidate_tracker/50866374006_Nihil Resume_Update.docx', NULL, '1', '2021-09-23', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very fresher, doesnt know basics, not okay with terms and conditions. expt 14-15k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-14 11:39:20', 7, '2021-09-23 02:47:43', 0, NULL, 1),
(6305, 'Sivagurunathan M', '2', '9894615489', '', 'sgnathan10@gmail.com', '2000-12-14', 20, '2', '1', 'Muthusamy G', 'Daily wager', 7000.00, 1, 0.00, 260000.00, 'Velayuthapuram Tenkasi dist', 'Ayanavaram Chennai', '2109140005', '1', '1', 'upload_files/candidate_tracker/47453288616_Perfect One.pdf', NULL, '1', '2021-09-16', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'fresher, willing to learn okay with company norms, expt is 12k,', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-14 11:39:24', 1, '2021-09-14 11:46:33', 0, NULL, 1),
(6306, 'RAFLIN SUBITSON', '6', '8508071510', '9025480584', 'subi62001@gmail.com', '2001-06-11', 20, '1', '2', 'JEYACHANDRAN', 'COOPERATIVE BANK', 150000.00, 1, 0.00, 12000.00, '12/125,. Main road Thirumalapuram, Tenkasi ( D.T)', '11,b Krishna Street, Parthasarathi puram, TNagar', '2109140006', '', '1', 'upload_files/candidate_tracker/3373937288_SUbitson.doc', NULL, '1', '2021-09-14', 0, 'Suthagar.T', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, not speaking up and expt is 12k, father and mother govt emp.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-14 12:00:31', 1, '2021-09-14 12:07:44', 0, NULL, 1),
(6307, '', '0', '6383723574', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-14 12:17:50', 0, NULL, 0, NULL, 1),
(6308, 'jaashree', '4', '7708148520', '', 'itsyourjai@gmail.com', '1993-02-12', 28, '2', '2', 'A.J.Parthiban', 'textile', 20000.00, 1, 19000.00, 15000.00, 'selam', 'kk nagar', '2109140008', '1', '2', 'upload_files/candidate_tracker/21930487718_jainewresumeeeeeeepdf1.pdf', NULL, '1', '2021-09-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1yr exp in tcs 2.5l ctc and expt is 15k. not okay with her convincing.', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-14 12:27:55', 7, '2021-09-14 05:25:43', 0, NULL, 1),
(6309, 'Selvasuriya', '2', '7530061721', '', 'selvasuriya001@gmail.com', '1998-09-04', 23, '2', '2', 'Patchamal', 'Mason', 12000.00, 2, 0.00, 3000.00, 'Eruvadi', 'Eruvadi', '2109140009', '1', '1', 'upload_files/candidate_tracker/81586780491_resume-1.pdf', NULL, '2', '2021-09-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,Self learned but not much comfortable with terms and conditions on the SA', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-14 12:27:55', 1, '2021-09-14 12:35:23', 0, NULL, 1),
(6310, 'K.Vinoth', '27', '9688077441', '', 'kumarvino777@gmail.com', '1997-05-02', 24, '2', '2', 'S/o N.Kumar', 'I am Dot net Developer', 10000.00, 1, 0.00, 350000.00, 'Villupuram', 'Chennai', '2109140010', '1', '1', 'upload_files/candidate_tracker/96378539666_Vinoth.K.pdf', NULL, '1', '2021-09-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'done 6m course, no working exp in .net and expt 20k in hand. has 3.5yr exp in backend 24k.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-14 01:24:14', 1, '2021-09-14 01:31:16', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6311, 'syed khaleel khaleed', '22', '9948755790', '8919754602', 'sdkhaleedk786@gmIl.com', '1997-08-30', 24, '2', '2', 'Syed abida', 'Ration Dealer shop', 180000.00, 1, 0.00, 12000.00, 'periyavettu, tada mandalam, nellore district', 'chennai', '2109140011', '1', '1', 'upload_files/candidate_tracker/24613953613_Resume_syed....pdf', NULL, '1', '2021-09-18', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate having own business. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-14 01:50:03', 8, '2021-09-18 06:08:10', 0, NULL, 1),
(6312, '', '0', '9500693635', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109140012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-14 02:28:33', 0, NULL, 0, NULL, 1),
(6313, 'Lavanya.S', '2', '8939290611', '', 'lavanyasubramani003@gmail.com', '1998-11-03', 22, '2', '2', 'Subramani', 'salesman', 10000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2109140013', '1', '1', 'upload_files/candidate_tracker/75532249104_Lavanya Subramani.pdf', NULL, '1', '2021-09-20', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher from tnagar, father in to biz, knows basics in tech. expt is 10-15k, okay with company norms.\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-14 04:49:03', 50, '2021-09-20 12:28:09', 0, NULL, 1),
(6314, '', '0', '9381127691', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109140014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-14 06:33:07', 0, NULL, 0, NULL, 1),
(6315, '', '0', '8925458509', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109140015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-14 10:39:27', 0, NULL, 0, NULL, 1),
(6316, 'aravind', '5', '8520036489', '', 'araviaravind24@gmail.com', '1995-11-09', 25, '2', '2', 'keshaiah', 'rtd', 80000.00, 1, 19000.00, 20000.00, 'hyderabad', 'lb nagar', '2109150001', '1', '2', 'upload_files/candidate_tracker/59540283574_resume (7).docx', NULL, '3', '2021-09-15', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-15 10:39:43', 1, '2021-09-15 10:42:23', 0, NULL, 1),
(6317, 'Sarojini', '27', '6384503066', '7867065395', 'Sarojinichinnaiah@gmail.com', '1998-07-16', 23, '2', '2', 'Chinnaiah M', 'Former', 50000.00, 2, 2.75, 3.80, 'Pudukkaottai', 'Chennai', '2109150002', '1', '2', 'upload_files/candidate_tracker/49252655506_1627024515186Resume_Sarojini.docx', NULL, '1', '2021-09-25', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No C# Exp,2.5 yrs in VB.Net only .Notice Period is 60 Days', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-15 11:52:21', 60, '2021-09-25 10:42:54', 0, NULL, 1),
(6318, 'Mohamed haneefa', '4', '7871751315', '', 'Mohamedhaneefa04239@gmail.com', '1998-03-22', 23, '2', '2', 'Mohamed meera sahib', 'Sales men', 12000.00, 0, 9000.00, 10000.00, 'Kayalpattinam', 'Thousands lights', '2109150003', '1', '2', 'upload_files/candidate_tracker/31632607585_Anantharaj.P.pdf', NULL, '1', '2021-09-15', 0, '', '3', '59', '2021-09-16', 120000.00, '', '', '2021-09-22', '2', 'Selected for Priyanka Elite Team in Cash Consultant mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Discussed with the candidate and offered him in cash consultant mode. Welcome Mail sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-15 11:54:35', 60, '2021-09-15 01:28:16', 0, NULL, 1),
(6319, 'sheik abubakkar asharaf', '23', '8778644855', '', 'ashrafowns7@gmail.com', '1991-05-15', 30, '2', '1', 'rehamad nisha', 'project engineer', 50000.00, 2, 800000.00, 240000.00, 'chennai', 'chennai', '2109150004', '1', '2', 'upload_files/candidate_tracker/97290758089_Sheik Abubakkar Asharaf_ Resume_compressed.pdf', NULL, '1', '2021-09-16', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Task not satisfactory', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-15 12:05:46', 1, '2021-09-15 04:21:50', 0, NULL, 1),
(6320, 'ajeeth kumar k', '23', '9176889394', '7092978383', 'aajeeth107@gmail.com', '1998-03-18', 23, '2', '2', 'kamaraj g', 'auto driver', 20000.00, 1, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2109150005', '1', '1', 'upload_files/candidate_tracker/32641387699_resume ui new.pdf', NULL, '1', '2021-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-15 12:23:48', 1, '2021-09-15 12:51:25', 0, NULL, 1),
(6321, 'HARI HARAN', '23', '9626627724', '9894009699', 'rameshhari1820@gmail.com', '2000-08-01', 21, '2', '2', 'rameshbabu', 'driver', 12000.00, 0, 0.00, 10000.00, 'chennai', 'ennore', '2109150006', '1', '1', 'upload_files/candidate_tracker/91328009572_R.Hari Haran .pdf', NULL, '1', '2021-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-15 12:58:49', 1, '2021-09-15 03:04:31', 0, NULL, 1),
(6322, 'divya', '4', '9345088401', '', 'divyarevadhi18@gmail.com', '1999-03-18', 22, '2', '2', 'ramesh', 'late', 0.00, 1, 0.00, 10000.00, 'thanjavur', 'Thanjavur', '2109150007', '1', '1', 'upload_files/candidate_tracker/14655235350_Dhivyah resume 2021.docx', NULL, '2', '2021-09-15', 0, '', '3', '59', '2021-09-16', 120000.00, '', '3', '2022-03-08', '2', 'Selected for Thanjavur in Cash Mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', 'Discussed and offered. Have sent her the joining mail.', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-15 01:01:57', 60, '2021-09-15 04:55:20', 0, NULL, 1),
(6323, 'K NITHISH KUMAR', '4', '7338980787', '8925219532', 'nithishknk333@gmail.com', '1999-08-19', 22, '3', '2', 'P KARUPPAIAH', 'P KARUPPAIAH', 25000.00, 1, 0.00, 10000.00, 'Puzhuthuvakkam,chennai-600091', 'Puzhuthuvakkam,chennai-600091', '2109150008', '', '1', 'upload_files/candidate_tracker/31675611266_RESUME 2-NITHISH KUMAR.pdf', NULL, '1', '2021-09-15', 0, '', '3', '59', '2021-09-20', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Muthu Team in Cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer mail sent to the employee', '', '', '', NULL, NULL, NULL, 1, '2021-09-15 02:35:24', 60, '2021-09-18 03:03:13', 0, NULL, 1),
(6324, 'divya shree', '17', '7358679691', '', 'superdivyas@gmail.com', '1998-08-10', 23, '2', '2', 'subash chandran', 'service', 50000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2109150009', '1', '1', 'upload_files/candidate_tracker/78255003758_RESUME DIVYA (2).pdf', NULL, '1', '2021-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-15 03:10:11', 1, '2021-09-15 04:52:53', 0, NULL, 1),
(6325, 'Gokul Chandran Venkatarajan', '5', '9688626335', '9080502265', 'gokzzvenkat@gmail.com', '1997-07-23', 24, '4', '2', 'Venkatarajan Sarangapani', 'Retired Railway Employee', 25000.00, 0, 0.00, 350000.00, 'Trichy', 'Chennai', '2109150010', '', '1', 'upload_files/candidate_tracker/15919636958_GokulChandran Resume.pdf', NULL, '3', '2021-09-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-15 06:17:07', 1, '2021-09-15 06:25:05', 0, NULL, 1),
(6326, 'Mahalakshmi', '4', '6369638057', '', 'meenukutti4001@gmail.com', '2000-08-29', 21, '2', '2', 'N.sadagopan', 'Former', 20000.00, 2, 0.00, 11000.00, 'Thiruvallur', 'Thiruvallur', '2109160001', '1', '1', 'upload_files/candidate_tracker/28797676901_Mahalakshmi Resume.docx', NULL, '1', '2021-09-16', 0, '', '3', '59', '2021-09-20', 120000.00, '', '3', '2021-12-01', '2', 'Selected for Tiruvallur Location in Cash mode', '1', '2', '', '1', '1', '', '2', '2021-09-18', '1', '9', 'Selected in Cash mode.Offer mail sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-16 10:04:23', 60, '2021-09-18 04:46:28', 0, NULL, 1),
(6327, 'T.Mohan Raj', '6', '7358207138', '', 'mr2899123@gmail.com', '2000-01-15', 21, '2', '2', 'Palaniyamal .T', 'Carpenter', 12500.00, 1, 0.00, 13000.00, 'Perumbakkam', 'Perumbakkam', '2109160002', '1', '1', 'upload_files/candidate_tracker/36969013112_Mohanraj T RESUME (1).docx', NULL, '1', '2021-09-16', 0, '', '3', '59', '2021-09-17', 156000.00, '', '6', '2021-10-26', '1', 'Selected for Suthagar team with Pf/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'No relevant exp, but the candidate seems good. Distance around 40kms up and down and he is ready to travel. Earlier he got an opportunity in Insurance sales and missed that', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-16 10:45:05', 60, '2021-09-16 02:52:48', 0, NULL, 1),
(6328, 'Vinoth kumar.M', '4', '8248351561', '8056995234', 'vinothmn1999@gmail.com', '1999-10-27', 21, '3', '2', 'K.munusamy', 'DEEE', 90000.00, 2, 0.00, 120000.00, 'Thiruvallur', 'Thiruvallur', '2109160003', '', '1', 'upload_files/candidate_tracker/28179544538_vinothresume.doc', NULL, '1', '2021-09-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-16 11:10:51', 1, '2021-09-16 11:18:25', 0, NULL, 1),
(6329, 'VIBINRAJ S', '4', '8608704523', '', 'vibinraj0206@gmail.com', '2001-06-02', 20, '2', '2', 'Soundararajan', 'Farmer', 120000.00, 1, 0.00, 12000.00, 'Dindigul', 'Dindigul', '2109160004', '1', '1', 'upload_files/candidate_tracker/74012639049_resume new.pdf', NULL, '1', '2021-09-16', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'he s not intrested in telecalling. looking for Accounts related job', '1', '2', '0', '1', '1', '0', '2', '2021-09-22', '1', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-09-16 11:13:07', 1, '2021-09-16 11:17:59', 0, NULL, 1),
(6330, 'V.M Deepak dharshan', '4', '7904777191', '9677838827', 'Deepakdharshan14@gmail.com', '2000-06-14', 21, '3', '2', 'Vinayagamoorthi', 'BCom', 20000.00, 1, 0.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109160005', '', '1', 'upload_files/candidate_tracker/16322757822_CV_2021-06-28-105928.pdf', NULL, '1', '2021-09-16', 0, '', '3', '59', '2021-09-21', 120000.00, '', '5', '1970-01-01', '2', 'Selected for tiruvallur Location in cash mode', '1', '1', '', '1', '1', '', '2', '2021-09-18', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-09-16 11:28:30', 60, '2021-09-20 02:57:53', 0, NULL, 1),
(6331, 'v murali', '5', '7708631522', '9003176434', 'muralishady1218@gmail.com', '1993-11-12', 27, '3', '1', 'm revathi', 'logistics', 15000.00, 0, 30000.00, 30000.00, 'chennai', 'west mambalam', '2109160006', '', '2', 'upload_files/candidate_tracker/67129784621_Murali Resume-Updated.docx', NULL, '1', '2021-09-16', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher for us, 5yr in cub as sr. associate. 30k and expt 25k. was asking for transfer then resigned. wife working in logistics into sales.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-16 11:40:32', 8, '2021-09-16 12:16:41', 0, NULL, 1),
(6332, 'KaranB', '14', '8667210096', '', 'karanbose1999@gmail.com', '1999-04-21', 22, '3', '2', 'Bose', 'Fancy stores', 30000.00, 2, 0.00, 2.50, 'Virudhunagar.', 'Chennai', '2109160007', '', '1', 'upload_files/candidate_tracker/35890649190_Resumee.docx', NULL, '1', '2021-09-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, has to learn', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-16 12:49:25', 1, '2021-09-16 12:53:34', 0, NULL, 1),
(6333, 'Kadar mohaideen L', '4', '8012479749', '7373231386', 'kadarmohaideen24400@gmail.com', '2000-04-24', 21, '2', '2', 'Liyagathalikhan', 'Cooli', 10000.00, 2, 0.00, 15.00, '6/141 pallivasal south Street veerasigamani-627862', 'T.nagar', '2109160008', '1', '1', 'upload_files/candidate_tracker/71111090638_kadar_mohaideen_resume_2_-1(1).pdf', NULL, '1', '2021-09-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Planning To Join It Course And Search It Job, Expt Is 15k From Sri Perambathur.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-16 02:21:07', 1, '2021-09-16 02:31:34', 0, NULL, 1),
(6334, 'Jamaludeen A', '4', '7708928804', '', '172jamal@gmail.com', '2001-02-17', 20, '2', '2', 'Abdul samsudeen J', 'driver', 15000.00, 2, 0.00, 15.00, 'Tirunelveli', 'chennai', '2109160009', '1', '1', 'upload_files/candidate_tracker/33312891964_JamaludeenResume.pdf', NULL, '1', '2021-09-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'planning to join it course and search it job, expt is 15k from sri perambathur.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-16 02:24:01', 1, '2021-09-16 02:30:12', 0, NULL, 1),
(6335, 'E.latha', '4', '9150616003', '', 'www.17927631@gmail.com', '2006-09-16', 0, '2', '2', 'Panchalai', 'Formar', 10000.00, 3, 0.00, 12000.00, 'Gingee', 'Chennai', '2109160010', '1', '1', 'upload_files/candidate_tracker/61583427181_Latha E.docx', NULL, '1', '2021-09-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response.', '1', '2', '', '1', '1', '', '2', '2021-09-18', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-16 02:31:22', 8, '2021-09-21 06:26:38', 0, NULL, 1),
(6336, 'M.tamil selvi', '4', '8778259589', '', 'Saitamil549@gmail.com', '1999-11-29', 21, '1', '2', 'M.muthu krishnan', 'Car driver', 10000.00, 1, 0.00, 12000.00, 'Thiruvannamalai', 'Chennai', '2109160011', '', '1', 'upload_files/candidate_tracker/51074957995_Tamilselvi Resume.docx', NULL, '1', '2021-09-16', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very childish and Stammering to speak. will not suite for our process.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-16 02:44:19', 1, '2021-09-16 02:54:35', 0, NULL, 1),
(6337, 'Hariharasuddhan', '5', '9345373530', '', 'sudhand1710@gmail.com', '1999-07-17', 22, '3', '2', 'srinivasan', 'bhell', 40000.00, 1, 18000.00, 25000.00, 'thrichy', 'trichy', '2109160012', '', '2', 'upload_files/candidate_tracker/19905894950_Hariharasuddhan SC new.pdf', NULL, '2', '2021-09-16', 7, '', '3', '59', '2021-09-27', 260000.00, '', '3', '2021-11-02', '1', 'Selected for Raj Team with PF/ESI/Deductions.3+ yrs in showroom sales exp but no documents for the proof.Has initiated his resignation in the company', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '1', 'Offer Link has been shared, Candidate will join on 27-Sep-2021', '', '', '', NULL, NULL, NULL, 1, '2021-09-16 04:22:24', 60, '2021-09-18 03:53:38', 0, NULL, 1),
(6338, 'Satish Kumar', '23', '8682085813', '', 'msatish1093@gmail.com', '1994-04-11', 27, '2', '2', 'Mani', 'LIC Manager (RTD)', 50000.00, 1, 12000.00, 17000.00, 'Koodal Nagar, Madurai', 'Tharamani, Chennai', '2109160013', '1', '2', 'upload_files/candidate_tracker/71624511710_sathish-Resume 2021-converted.pdf', NULL, '1', '2021-09-18', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Not fit for team', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-16 04:44:08', 1, '2021-09-16 04:56:58', 0, NULL, 1),
(6339, 'Vishwanath.v', '6', '6382208433', '7401633671', 'vsvishvs194@gmail.com', '2000-05-03', 21, '1', '2', 'Banumathy', 'cini industry', 30000.00, 1, 0.00, 15000.00, 'No 70f 1st Street lotus colony nadhanam Chennai 35', 'No 70 f 1st steet lotus colony nadhanam Chennai 35', '2109170001', '', '1', 'upload_files/candidate_tracker/92209232065_Vishwa-Resume.docx', NULL, '1', '2021-09-17', 0, '55576', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar Team with PF/ESI/PT deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', 'No relevant Exp in Insurance Sales,7 months exp as Site Engineer in Appaswamy Real Estate.Offer letter link has been shared', '', '', '', NULL, NULL, NULL, 1, '2021-09-17 09:39:53', 60, '2021-09-17 11:54:12', 0, NULL, 1),
(6340, 'Deepak Singh M', '6', '9025537441', '', 'Deepaksingh89408@gmail.com', '2000-10-21', 20, '1', '2', 'Mothi M', 'Sri Krishna sweets (manager)', 20000.00, 1, 0.00, 15000.00, 'No 19/12 3rd street Nandanam chennai 600035', 'No 19/12 3rd Street Nandanam Chennai 600035', '2109170002', '', '1', 'upload_files/candidate_tracker/62661998202_pdf-2.pdf', NULL, '1', '2021-09-17', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no degree, holds offer and his language is not good, will not suite for our process.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-17 09:41:18', 1, '2021-09-17 10:00:04', 0, NULL, 1),
(6341, 'S.indhu', '28', '8056174731', '9444089156', 'indhusuji431@gmail.com', '2000-07-25', 21, '2', '2', 'K.SUDALAIMANI', 'Self employment', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109170003', '1', '1', 'upload_files/candidate_tracker/17487272268_CURRICULAM VITAE..pdf', NULL, '1', '2021-09-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1yr part time job in hsbc bank back end, salary not satisfied so looking for job change, expt 18k, will not suite for our company. ', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-09-17 10:33:02', 1, '2021-09-17 10:39:04', 0, NULL, 1),
(6342, 'Rajesh E', '6', '7708239408', '', 'rajeshspnallur6@gmail.com', '1997-12-23', 23, '1', '2', 'Elumalai', 'Farmer', 15000.00, 3, 0.00, 18000.00, 'Sankarapuram', 'Chennai', '2109170004', '', '1', 'upload_files/candidate_tracker/27027453630_Rajesh_fresher_chennai.pdf', NULL, '1', '2021-09-17', 0, 'Suthagar', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expected High salary', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-17 10:43:00', 8, '2021-09-17 11:57:48', 0, NULL, 1),
(6343, 'Sharmila E', '4', '7338903308', '7299793037', 'sharmilae99@gmail.com', '1999-08-03', 22, '3', '2', 'Shakila E', 'Coolie', 15000.00, 2, 13000.00, 13000.00, 'Chennai', 'Chennai', '2109170005', '', '2', 'upload_files/candidate_tracker/26143719373_SHARMILA (1).pdf', NULL, '1', '2021-09-17', 0, '', '3', '59', '2021-09-22', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location in Cash mode', '1', '1', '', '4', '6', '', '2', '2021-09-18', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-09-17 12:08:18', 60, '2021-09-18 05:07:34', 0, NULL, 1),
(6344, 'Kalaivani s', '13', '9698530299', '8903565829', 'Kalaisub29@gmail.com', '1998-09-30', 22, '2', '2', 'Subrayalu', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109170006', '1', '1', 'upload_files/candidate_tracker/87600355908_Kalavani S.pdf', NULL, '1', '2021-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 12:29:47', 1, '2021-09-17 12:36:26', 0, NULL, 1),
(6345, 'Kishore kumar S', '2', '8675461691', '', 'sjk.kishore95@gmail.com', '1995-09-07', 26, '2', '2', 'Selvarajan M', 'Fresher', 100000.00, 0, 0.00, 180000.00, 'Chennai', 'Chennai', '2109170007', '1', '1', 'upload_files/candidate_tracker/56856914135_Kishore kumar Resume-1.pdf', NULL, '2', '2021-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2021-09-17 01:03:05', 1, '2021-09-17 02:33:18', 0, NULL, 1),
(6346, 'Jayashree', '4', '7395907904', '', 'jayashreesundar2001@gmail.com', '2001-05-10', 20, '1', '2', 'Sundaramoorthy', 'Labour', 10000.00, 1, 0.00, 10000.00, 'Thiruninravur', 'Thiruninravur', '2109170008', '', '1', 'upload_files/candidate_tracker/7416332301_Jayashree\'s Resume.....pdf', NULL, '1', '2021-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-17 01:41:58', 1, '2021-09-17 02:39:10', 0, NULL, 1),
(6347, '', '0', '9952903432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-17 01:42:22', 0, NULL, 0, NULL, 1),
(6348, 'Praveen Kumar R', '2', '8072367602', '9790856320', 'praveenkumarr747@gmail.com', '1999-03-31', 22, '2', '2', 'Ravi v', 'Own Business', 100000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2109170010', '1', '1', 'upload_files/candidate_tracker/81696766037_Praveen-2 Resume.pdf', NULL, '1', '2021-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 01:48:41', 1, '2021-09-17 01:55:11', 0, NULL, 1),
(6349, 'Balamurali.D', '4', '9360261864', '', '05balamurali@gmail.com', '1996-08-06', 25, '3', '1', 'Dhanavel', 'Business', 25000.00, 1, 0.00, 18000.00, 'No,37 dharga main road, pudupet Po, Panruti Tk', 'Meenapaakam', '2109170011', '', '1', 'upload_files/candidate_tracker/97942089853_Balamurali Resume.pdf', NULL, '1', '2021-09-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, looking for calling and not interested in field sales, expt is 15k take home.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-17 02:28:18', 1, '2021-09-17 02:34:00', 0, NULL, 1),
(6350, 'SARAVANAN P', '13', '8525838484', '9159644595', 'saravanathondaiman@gmail.com', '2000-06-24', 21, '2', '2', 'Peramaiyan', 'Farmer -Unemployed', 5000.00, 1, 0.00, 10000.00, 'Neyveli, Cuddalore (DT)', 'Neyveli, Cuddalore (DT)', '2109170012', '1', '1', 'upload_files/candidate_tracker/41957540476_1631107793054Resume_Saravanan.pdf', NULL, '3', '2021-09-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Response.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-17 02:56:33', 50, '2021-09-18 11:08:13', 0, NULL, 1),
(6351, '', '0', '7395977189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109170013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-17 03:17:23', 0, NULL, 0, NULL, 1),
(6352, 'Kalaivani s', '13', '8903565829', '9698530299', 'Kalaisub29@gmail.com', '1998-09-30', 22, '2', '2', 'Subrayalu', 'Frmer', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109170014', '1', '1', 'upload_files/candidate_tracker/1876913083_Kalaivani S.pdf', NULL, '1', '2021-09-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 03:47:52', 1, '2021-09-17 03:50:26', 0, NULL, 1),
(6353, 'manoj', '23', '6369125054', '', 'manojragav23@gmail.com', '2000-08-29', 21, '2', '2', 'anandan', 'wages', 5000.00, 0, 0.00, 12000.00, 'aarani', 'chennai', '2109170015', '1', '1', 'upload_files/candidate_tracker/53525682681_updatedresume.pdf', NULL, '1', '2021-09-21', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'lack of experience.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 05:08:42', 1, '2021-09-17 07:44:57', 0, NULL, 1),
(6354, 'Yaswanthkarthik S', '2', '7871221228', '', 'yaswanthkarthik008@gmail.com', '2000-08-10', 21, '2', '2', 'Sakthivel S', 'Weaver', 12000.00, 1, 0.00, 12000.00, 'Namakkal', 'Namakkal', '2109170016', '1', '1', 'upload_files/candidate_tracker/75495718773_Yaswanth SD-11.pdf', NULL, '1', '2021-09-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 05:45:05', 1, '2021-09-17 06:02:27', 0, NULL, 1),
(6355, 'arun kumar', '5', '8682867172', '', 'arunsakthi2909@gmail.com', '1999-06-15', 22, '3', '2', 'R.Sathiyamoorthy', 'travels', 50000.00, 1, 16000.00, 20000.00, 'trichy', 'trichy', '2109170017', '', '2', 'upload_files/candidate_tracker/923590250_Arunkumar-sales.pdf', NULL, '2', '2021-09-17', 10, '', '3', '59', '2021-09-27', 252100.00, '', '6', '2021-12-08', '1', 'Selected for RM - Raj Team with PF/ESI/PT deductions. Having Sales Exp in Automobile Industry.', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '1', 'Offer link to upload the documents has been shaerd', '', '', '', NULL, NULL, NULL, 1, '2021-09-17 05:52:06', 60, '2021-09-23 01:39:14', 0, NULL, 1),
(6356, 'Keerthivasan', '4', '7904712616', '9488528233', 'keerthivasan101@gmail.com', '1987-06-17', 34, '2', '2', 'Moorthy', 'BHEL', 20000.00, 3, 18500.00, 25000.00, '184/1, Chinthamani, Trichy', 'Kodambakam', '2109170018', '1', '2', 'upload_files/candidate_tracker/99276162408_Keerthi@Resume2021.docx', NULL, '1', '2021-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 5yr in ar calling 15k and no sales exp. 4m in a pest company and Expt Is 25k, company 18.5k. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-17 06:26:44', 7, '2021-09-18 10:11:25', 0, NULL, 1),
(6357, 'venu vikaash', '2', '9003686119', '', 'venuvikaash006@gmail.com', '2000-01-19', 21, '2', '2', 'meganathan', 'train loco controller in southern railway', 50000.00, 1, 0.00, 30000.00, 'madurai', 'madurai', '2109170019', '1', '1', 'upload_files/candidate_tracker/75627037435_VENU_VIKAASH_RESUME.pdf', NULL, '2', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher and self learner, have not done any courses. expt is 3l.', '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-17 06:27:24', 1, '2021-09-17 06:42:15', 0, NULL, 1),
(6358, '', '0', '9344364992', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109170020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-17 06:39:20', 0, NULL, 0, NULL, 1),
(6359, '', '0', '8531910932', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109180001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-18 10:26:52', 0, NULL, 0, NULL, 1),
(6360, '', '0', '7305051528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109180002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-18 10:59:56', 0, NULL, 0, NULL, 1),
(6361, 'Srimathi.j', '4', '9884014866', '7708662442', 'saisrimathi25@gmail.com', '2001-03-25', 20, '2', '2', 'Jeeva', 'Painter', 30000.00, 1, 0.00, 15000.00, 'Mr.nager, kodungaiyur', 'Mr.nager, kodungaiyur', '2109180003', '1', '1', 'upload_files/candidate_tracker/51919937135_srimathi resume 1.pdf', NULL, '1', '2021-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, not speaking up and first interview', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-18 11:25:33', 50, '2021-09-20 10:07:37', 0, NULL, 1),
(6362, '', '0', '9176026254', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-18 11:44:23', 0, NULL, 0, NULL, 1),
(6363, 'Nazeera', '4', '9344120928', '9941849130', 'Nazeeyafathima1996@gmail.com', '1996-04-30', 25, '3', '2', 'Parent', 'Senior Customer care executive', 18000.00, 1, 18000.00, 22000.00, 'Royapettah', 'Royapettah', '2109180005', '', '2', 'upload_files/candidate_tracker/67486409996_Nazeera RESUME(1).docx', NULL, '1', '2021-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 12:45:38', 1, '2021-09-18 12:49:56', 0, NULL, 1),
(6364, 'Aakash R', '13', '7358919843', '', 'aakashravichandran1998@gmail.com', '1998-11-02', 22, '2', '2', 'Ravichandran', 'Security Guard', 20000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2109180006', '1', '1', 'upload_files/candidate_tracker/27896331546_Aakash Resume.pdf', NULL, '1', '2021-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-18 01:13:30', 1, '2021-09-18 01:18:58', 0, NULL, 1),
(6365, 'thirunavukkarasu g', '6', '6383600390', '', 'appugt2000@gmail.com', '2000-06-05', 21, '3', '2', 'venda', 'farmer', 48000.00, 2, 0.00, 15000.00, 'arni', 'arni', '2109180007', '', '1', 'upload_files/candidate_tracker/1807255460_THIRU RESUME .pdf', NULL, '1', '2021-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 01:55:31', 1, '2021-09-18 10:29:38', 0, NULL, 1),
(6366, 'Haridoss K', '4', '9360946713', '', '1993hari19@gmail.com', '1993-07-19', 28, '4', '1', 'Manjula', 'House wife', 10000.00, 0, 13000.00, 15000.00, 'Chennai', 'Chennai', '2109180008', '', '2', 'upload_files/candidate_tracker/54927353630_HARIDOSS FINAL RESUME-converted.pdf', NULL, '3', '2021-09-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 03:39:25', 1, '2021-09-18 03:45:35', 0, NULL, 1),
(6367, 'Ajithkumar', '4', '6369551392', '', 'kasi4ajith@gmail.com', '2000-10-29', 20, '3', '2', 'No', 'Computer science', 10000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2109180009', '', '1', 'upload_files/candidate_tracker/37168288403_ajith resume.pdf', NULL, '3', '2021-10-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 04:57:22', 1, '2021-09-18 05:03:20', 0, NULL, 1),
(6368, '', '0', '9994630606', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109180010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-18 06:20:56', 0, NULL, 0, NULL, 1),
(6369, 'Purushothaman', '6', '9791035201', '9566276378', 'burush1989@gmail.com', '1989-06-01', 32, '4', '1', 'Priyadarshini', 'S. E', 40000.00, 0, 15000.00, 20000.00, 'No 6 Church Street North Cheyyur', 'Velachery', '2109180011', '', '2', 'upload_files/candidate_tracker/35661218740_PURUSHOTHAMAN___Resume 1.doc', NULL, '3', '2021-09-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-18 06:27:02', 1, '2021-09-18 06:32:09', 0, NULL, 1),
(6370, 'K GANESHA MOORTHY', '4', '9360331662', '9176852137', 'ganeshmoorthy200126@gmail.com', '2001-03-26', 20, '2', '2', 'S KRISHNA MOORTHY', 'CAR DRIVER', 15000.00, 1, 0.00, 15000.00, 'Pammal', 'Pammal', '2109190001', '22', '1', 'upload_files/candidate_tracker/64512099186_K.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open to work on targets, Already joined justdial and left the company due to work pressure,Will not sustain in our roles', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-19 12:24:14', 1, '2021-12-15 11:00:49', 0, NULL, 1),
(6371, 'Santhosh V', '2', '9688643491', '', 'vsanthosh.sde@gmail.com', '1997-11-24', 23, '2', '2', 'Viswanathan', 'Business', 20000.00, 1, 0.00, 17000.00, '7 Kanawarisi lane, Bodinayakanur, Theni 625513.', '39 Bazz Avenue, Palavakkam 600041.', '2109190002', '1', '1', 'upload_files/candidate_tracker/20235461395_1630848315471_Santhosh_Resume.pdf', NULL, '1', '2021-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-19 12:25:34', 1, '2021-09-19 12:36:43', 0, NULL, 1),
(6372, '', '0', '7397427665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109190003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-19 12:28:32', 0, NULL, 0, NULL, 1),
(6373, '', '0', '9600676127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-19 12:41:05', 0, NULL, 0, NULL, 1),
(6374, 'Manasseh', '4', '8939495725', '', 'mrmanasseh2001@email.com', '2001-07-31', 20, '4', '2', 'Krishna moorthy', 'Student', 20000.00, 1, 0.00, 15000.00, 'No.1 4th St arunachalam nagar pattabiram Chennai', 'No.1 4th St Arunachalam Nagar Pattabiram Chennai', '2109190005', '', '1', 'upload_files/candidate_tracker/48947997506_manasseh.pdf', NULL, '1', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not sustain, avg convincing. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-19 03:49:44', 1, '2021-09-19 03:55:22', 0, NULL, 1),
(6375, '', '0', '9444042056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-19 05:54:48', 0, NULL, 0, NULL, 1),
(6376, 'Aqib', '4', '8754385312', '9344716517', 'aakifjavid27@gmail.com', '1996-11-16', 24, '1', '2', 'Jasima', 'fresher', 100000.00, 3, 0.00, 12000.00, 'Mannady', 'Mannady', '2109190007', '', '1', 'upload_files/candidate_tracker/88193653098_1607250912022 - Google Drive.pdf', NULL, '1', '2021-09-20', 0, '000', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-19 09:15:46', 1, '2021-09-19 09:21:27', 0, NULL, 1),
(6377, '', '0', '7358489525', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109190008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-19 09:31:53', 0, NULL, 0, NULL, 1),
(6378, 'satheesh', '23', '9750617500', '6381548807', 'satheeshsaravananjs@gmail.com', '1994-06-16', 27, '2', '2', 'sivanantham', 'nagercoil', 30000.00, 1, 240000.00, 360000.00, 'nagercoil', 'chennai', '2109200001', '1', '2', 'upload_files/candidate_tracker/72816567660_satheesh-sivanantham.pdf', NULL, '1', '2021-09-22', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Task was okay but Couldnxquott match with our requirements. Checked with udhay bro too.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 09:34:06', 1, '2021-09-20 03:05:30', 0, NULL, 1),
(6379, 'Jothi Deepak G', '13', '9841513901', '6379899205', 'gjdeepak784@gmail.com', '1997-07-08', 24, '2', '2', 'Anjala Mary G', 'Daily Wages', 9000.00, 3, 0.00, 10000.00, 'Villupuram', 'Chennai', '2109200002', '1', '1', 'upload_files/candidate_tracker/34780896676_Resume_DEEPAK_Format1.pdf', NULL, '1', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no basic tech skills, expt 15k, not okay with service agreement. ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 09:44:49', 1, '2021-09-20 10:06:46', 0, NULL, 1),
(6380, 'SARUMATHI L', '4', '8754244802', '9790326977', 'Sarulakshmanan.2002@gmail.com', '2002-05-21', 19, '2', '2', 'Lakshmanan', 'Farmer', 12000.00, 1, 0.00, 10000.00, 'Thanjavur', 'ThanjAvur', '2109200003', '1', '1', 'upload_files/candidate_tracker/8781416013_20210920_142648.jpg.pdf', NULL, '1', '2021-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain, 19 age little bit childish.', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-20 10:46:07', 8, '2021-09-22 10:23:25', 0, NULL, 1),
(6381, '', '0', '7010332653', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 10:59:28', 0, NULL, 0, NULL, 1),
(6382, 'Govarthanan.E', '4', '7358842846', '9629325525', 'egovarthanan03@gamil.com', '1997-01-11', 24, '1', '2', 'Elumail', 'Faemar', 20000.00, 1, 0.00, 15000.00, 'Madurantakam', 'Madurantakam', '2109200005', '', '1', 'upload_files/candidate_tracker/44550681046_0_govarathan resume e.docx', NULL, '1', '2021-09-20', 0, 'Jobs.', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for sales, has core exp expt is 15, not speaking up, no flow.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-20 11:13:00', 1, '2021-09-20 11:30:06', 0, NULL, 1),
(6383, 'Krishnan k', '4', '9944455493', '9944001640', 'kisnaengineer@gmail.com', '1999-10-21', 21, '2', '2', 'Kannan s', 'Photo color lab', 72000.00, 1, 0.00, 12000.00, 'thanjavur', 'thanjavur', '2109200006', '1', '1', 'upload_files/candidate_tracker/17094105296_CV_2021-09-20-094544.pdf', NULL, '1', '2021-09-20', 0, '', '3', '59', '2021-09-27', 126000.00, '', '3', '2021-09-28', '1', 'Selected for Elite RE Thanjavur Location in Cash mode and able to join on Thursday only due to some personal work', '1', '1', '', '4', '5', '', '2', '2021-09-21', '2', '9', 'Offer Mail Sent to the candidate,We have given him joining date on 23-Sep-2021 but due to some personal work can able to join us on 27-Sep-2021', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-20 11:20:54', 60, '2021-09-24 11:41:52', 0, NULL, 1),
(6384, '', '0', '8778437428', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 11:39:58', 0, NULL, 0, NULL, 1),
(6385, 'JAGATHISH P', '22', '8883777584', '6383554454', 'pjagathish96@gmail.com', '1996-05-31', 25, '2', '2', 'PONNUSAMY M', 'Exports', 30000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Anna nagar', '2109200008', '1', '1', 'upload_files/candidate_tracker/72515558824_RESUME- JAGATHISH.B.E,MBA-doc.pdf', NULL, '1', '2021-09-20', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No knowledge about DM, doubtful in terms of sustainability. Attitude issues.\n\n\n\n\n ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 11:42:29', 1, '2021-09-20 11:46:49', 0, NULL, 1),
(6386, 'Akash J', '14', '6382999123', '9585010730', 'Akashak2412@gmail.com', '1999-10-05', 21, '1', '2', 'Jaishankar N', 'Farmer', 25000.00, 3, 0.00, 15000.00, 'Arani', 'Arani', '2109200009', '', '1', 'upload_files/candidate_tracker/48499052549_AKASH.pdf', NULL, '1', '2021-09-20', 0, 'P 013', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very fresher, no tech skills, has to learn. no course ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-20 11:43:37', 1, '2021-09-20 11:55:27', 0, NULL, 1),
(6387, 'R.Thiruselvam', '4', '8939325850', '', 'Selvamthiru600@gamil.com', '1996-11-17', 24, '2', '2', 'A.Rajanathan', '20000', 10000.00, 2, 0.00, 15000.00, 'Nanganallur', 'Nanganallur', '2109200010', '1', '1', 'upload_files/candidate_tracker/80006288093_120821-ADVT. CRPD-SCO-2021-22-14.pdf', NULL, '3', '2021-09-20', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, 1yr exp in press in data entry. will not suite for sales aswell. ', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 12:13:01', 1, '2021-09-20 12:24:23', 0, NULL, 1),
(6388, 'Sayed batcha', '4', '9659962714', '', 'Sayeedmaas127@gmail.com', '1998-03-17', 23, '2', '2', 'Sathik batcha', 'Tea show working', 13000.00, 1, 0.00, 10000.00, 'Kandiyur', 'Kandiyur', '2109200011', '1', '1', 'upload_files/candidate_tracker/75742111878_res_syed17.pdf', NULL, '1', '2021-09-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-20 12:51:30', 1, '2021-09-20 01:09:14', 0, NULL, 1),
(6389, 'S.Arthi', '4', '8940938429', '9159013451', 'arthi2001sathish@gmail.com', '2001-06-03', 20, '2', '2', 'Sathishkumar', 'Agriculture', 1500.00, 2, 0.00, 15500.00, 'THIRUTHURAIPOONDI', 'Thanjavur', '2109200012', '1', '1', 'upload_files/candidate_tracker/769899456_rt resume.pdf', NULL, '1', '2021-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '1', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-09-20 12:51:42', 1, '2021-09-27 09:23:07', 0, NULL, 1),
(6390, 'RATHNAVEL M', '4', '8778196457', '7397306457', 'hariprasath1314@gmail.com', '1999-09-13', 22, '4', '2', 'Poomari(mother)', 'Government servant', 25000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2109200013', '', '1', 'upload_files/candidate_tracker/26277082815_Rathnavel-resume.pdf', NULL, '2', '2021-09-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, all his 3 bro working in it, he is gng class in race for ssc and banking, can work for 6m. will not sustain. interested to study cryptography. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-20 01:09:35', 7, '2021-09-28 03:42:51', 0, NULL, 1),
(6391, '', '0', '9159013451', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 01:23:09', 0, NULL, 0, NULL, 1),
(6392, 'gokula krishnan r', '23', '9487674272', '', 'gokulakrishnan1507@gmail.com', '1999-07-15', 22, '2', '2', 'ramakrishnan', 'ex-army', 30000.00, 1, 0.00, 15000.00, 'neyveli', 'neyveli', '2109200015', '1', '1', 'upload_files/candidate_tracker/53328158121_Gokula uiux-compressed.pdf', NULL, '1', '2021-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much looks for intern only, need to relocate from native, sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 01:31:44', 1, '2021-09-20 01:42:41', 0, NULL, 1),
(6393, 'Jayanth.M', '4', '8925606714', '6374695395', 'smartjayanth99@gmail.com', '2001-03-31', 20, '2', '2', 'Manickam', 'Student', 50000.00, 2, 0.00, 10000.00, 'Kumbakonam', 'Kumbakonam', '2109200016', '1', '1', 'upload_files/candidate_tracker/93413005366_jayanth.pdf', NULL, '2', '2021-09-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 5050, Avg In Convincing.', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-20 02:39:44', 8, '2021-09-22 10:22:43', 0, NULL, 1),
(6394, '', '0', '8122482130', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 03:18:39', 0, NULL, 0, NULL, 1),
(6395, 'B sugavaneshwaran', '2', '9094251268', '', 'suganyyvi77@gmail.com', '1995-10-06', 25, '2', '2', 'B.Balachandar', 'Temple priest', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109200018', '1', '1', 'upload_files/candidate_tracker/13155758333_SugavaneshwaranB_InternshalaResume.pdf', NULL, '1', '2021-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'didnt turn back with his confirmation on the TxxampC', '2', '2', '', '1', '1', '', '2', '2021-10-07', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-20 03:22:51', 50, '2021-10-06 11:07:23', 0, NULL, 1),
(6396, '', '0', '9786734169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 03:51:52', 0, NULL, 0, NULL, 1),
(6397, '', '0', '6379411051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 03:58:28', 0, NULL, 0, NULL, 1),
(6398, 'Pushparaja.k', '4', '7010660359', '', 'pushparaja122001@gmail.com', '2001-11-12', 19, '4', '2', 'Parent', 'Auto driver', 25000.00, 2, 0.00, 18000.00, 'Choolaimedu', 'Choolaimedu', '2109200021', '', '1', 'upload_files/candidate_tracker/77959198137_pushparaja resume _2021-07-01-060305.pdf', NULL, '3', '2021-09-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-20 03:59:51', 1, '2021-09-20 04:04:45', 0, NULL, 1),
(6399, '', '0', '9566253307', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109200022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-20 04:30:35', 0, NULL, 0, NULL, 1),
(6400, 'Prabhakaran', '23', '7598388758', '', 'prabhakaran181096@gmail.com', '1996-10-18', 24, '2', '2', '-', '-', 3.00, 1, 0.00, 3.00, 'madurai', 'chennai', '2109200023', '1', '1', 'upload_files/candidate_tracker/24454158115_RESUME.pdf', NULL, '1', '2021-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-20 07:17:33', 1, '2021-09-20 07:45:34', 0, NULL, 1),
(6401, 'Mubeen fathima .R', '20', '9940652512', '9789814385', 'akbar.25mu@yahoo.com', '1992-12-25', 28, '2', '1', 'Akbar. B', 'Logistics', 30000.00, 2, 15000.00, 15000.00, 'New perungalathur', 'New perungalathur', '2109210001', '3', '2', 'upload_files/candidate_tracker/97554266169_MUBEEN E resume.docx', NULL, '1', '2021-09-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, no flow in speech, has 5yrs gap expt is 13k.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-21 10:05:45', 1, '2021-09-21 10:13:54', 0, NULL, 1),
(6402, 'Sowmiya', '4', '9176303527', '8610795870', 'sowmiya96m@gmail.com', '1996-05-26', 25, '2', '2', 'Murugan', 'Business', 20000.00, 1, 0.00, 12000.00, '39 , pearumal Kovil street , velleritiruvallur', '4/14 Brindavan Street, West Mambalam, ch 33', '2109210002', '3', '1', 'upload_files/candidate_tracker/96659341140_Sowmiya Resume.docx', NULL, '1', '2021-09-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, not speaking up, prefers accounts job, will not handle pressure and sustain. poor attitude.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-21 10:25:06', 7, '2021-09-21 11:31:23', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6403, 'Jagadesh war rao.B', '6', '8825902568', '9677009799', 'jagdishthor007@gmail.com', '2000-11-03', 20, '2', '2', 'T Balaji rao', 'Business', 37000.00, 1, 0.00, 14000.00, 'Madhavram', 'Madhavram', '2109210003', '1', '1', 'upload_files/candidate_tracker/68997818874_ArunKumar.pdf', NULL, '1', '2021-09-21', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '1', 'Fresher for our Sales Profile,Selected for Srikanth team with PF/ESI/PT Deductions', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'Offer Link has been shared to upload the documents on 22/Sep/2021.', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-21 10:48:33', 60, '2021-09-22 03:51:00', 0, NULL, 1),
(6404, 'Anbarasan', '23', '7708033028', '9344717485', 'anbu9767@gmail.com', '1994-10-10', 26, '2', '2', 'Balasubramanian', 'Ex army', 22000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2109210004', '1', '1', 'upload_files/candidate_tracker/77114135476_1631495910415Resume_ANBARASAN.docx', NULL, '1', '2021-09-24', 0, '', '3', '59', '2021-10-06', 96000.00, '', '0', NULL, '2', '3 months unpaid intern,3 months paid intern and 3 yrs employment', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 11:35:24', 1, '2021-09-21 11:40:10', 0, NULL, 1),
(6405, '', '0', '8610069794', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109210005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-21 11:39:56', 0, NULL, 0, NULL, 1),
(6406, 'ilias', '5', '8939425570', '', 'ganiiliyas@gmail.com', '1991-12-19', 29, '2', '1', 'abdul gani', 'late', 0.00, 1, 16900.00, 28000.00, 'CENNAI', 'CHennai', '2109210006', '3', '2', '0', NULL, '1', '2021-09-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no Sustainability, his last ctc is 16k and holds offer for 22k and expt 24-28k. will not suite for our process. was doing his catering biz and will continue the biz as well.', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-21 11:53:22', 7, '2021-09-21 02:51:20', 0, NULL, 1),
(6407, 'Karthik', '6', '9500116234', '', 'joshankarthik0@gmail.com', '1993-03-01', 28, '1', '1', 'Saranya KP', 'Filming industry', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2109210007', '', '2', 'upload_files/candidate_tracker/49638737193_kj resume.docx', NULL, '1', '2021-09-21', 0, 'P1121', '3', '59', '2021-09-23', 186000.00, '', '4', '2022-08-11', '1', 'Selected for Srikanth Team with PF/ESI/PT deductions.2+ yrs voice experience but not in Insurance domain.', '5', '1', '1', '1', '1', '2', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-21 11:54:02', 60, '2021-09-22 03:05:24', 0, NULL, 1),
(6408, 'Hariharan NKS', '13', '7200068368', '', 'nkshariharan17@gmail.com', '1999-05-17', 22, '2', '2', 'KRISHNAMURTHY K', 'Business', 60000.00, 1, 0.00, 4.00, 'Thiruinivaur, Chennai', 'Thiruinivaur, Chennai', '2109210008', '1', '1', 'upload_files/candidate_tracker/59491954319_Hariharan NKS - 2021 - resume.pdf', NULL, '1', '2021-09-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 11:56:52', 1, '2021-09-21 12:01:08', 0, NULL, 1),
(6409, 'R.s NISHOK RAJ', '23', '8939306256', '', 'nishokstark15@gmail.com', '2000-11-07', 20, '1', '2', 'S.Tamilarasi', 'Receptionist', 5000.00, 0, 0.00, 8000.00, 'No 8/17 Elango Salai Lane, Teynampet', 'No 8/17 Elango Salai Lane, Teynampet', '2109210009', '', '1', 'upload_files/candidate_tracker/8021777916_Nishok Resume 10.pdf', NULL, '1', '2021-09-21', 0, 'jobs', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, no basics knowledge, bcom but looking for IT profile and no course and expt 10k. job need, mom Separated.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-21 12:03:02', 1, '2021-09-21 12:27:00', 0, NULL, 1),
(6410, 'Mohamed Ashif', '23', '6369107981', '9551170639', 'm.ashif8069@gmail.com', '2001-07-02', 20, '2', '2', 'Mohamed Nizar', 'Toys shop', 18000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2109210010', '1', '1', 'upload_files/candidate_tracker/74897775738_SodaPDF-converted-_Resume.pdf', NULL, '1', '2021-09-23', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate wont suit our team. Task too was not good', '2', '2', '0', '1', '1', '0', '2', '2021-09-24', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 12:36:31', 1, '2021-09-22 04:01:05', 0, NULL, 1),
(6411, 'Mahalakshmi R', '4', '9962559965', '9940539431', 'laksmiraj111@gmail.com', '2001-11-01', 19, '2', '2', 'R Rajendiran', 'Auto driver', 15000.00, 2, 0.00, 15000.00, 'No: 5, Nagappan Street, Jafferkhanpet,nnai-600083', 'No: 5, Nagappan Street, Jafferkhanpet,ennai-600083', '2109210011', '1', '1', 'upload_files/candidate_tracker/14534005702_MAHALAKSHMI RESUME.pdf', NULL, '1', '2021-09-21', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for voice process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-21 12:46:21', 7, '2021-09-22 10:17:30', 0, NULL, 1),
(6412, 'M.Abinaya', '4', '9884756217', '', 'abinayaalamelu4408@gmail.com', '2000-09-19', 21, '2', '2', 'P.Murugan', 'centering', 17000.00, 2, 0.00, 14000.00, 'chennai', 'Chennai', '2109210012', '1', '1', 'upload_files/candidate_tracker/76585681590_report (2).pdf', NULL, '1', '2021-09-21', 0, '', '3', '59', '2021-09-23', 120000.00, '', '6', '2021-12-07', '2', 'Selected for Elite RE - Priyanka Team - Cash mode', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent to the candidate', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-21 12:49:53', 7, '2021-09-22 10:16:35', 0, NULL, 1),
(6413, 'Purushothaman J', '23', '7448335099', '6369729923', 'purushothsandy143@gmail.com', '2000-11-21', 20, '2', '2', 'jotiramalingam', 'flowerist', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2109210013', '1', '1', 'upload_files/candidate_tracker/92951624854_MY RESUME.pdf', NULL, '1', '2021-09-24', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No response from candidate\n', '2', '2', '0', '1', '1', '0', '2', '2021-09-25', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 01:19:25', 1, '2021-09-21 09:47:54', 0, NULL, 1),
(6414, 'ShanthaKumar V', '22', '9042335500', '9042335588', 'skpostbox07@gmail.com', '2001-07-15', 20, '2', '2', 'Valarmathi V', 'Helper', 9000.00, 2, 0.00, 20000.00, 'Guduvancheri', 'Guduvancheri', '2109210014', '1', '1', 'upload_files/candidate_tracker/75542634589_Sk Resume (F)pdf.pdf', NULL, '1', '2021-09-23', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Candidate having Oscillation. ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 02:04:53', 1, '2021-09-21 02:11:21', 0, NULL, 1),
(6415, 'kiruthika s', '13', '9361316916', '', 'kiruthikagowri1@gmail.com', '1998-11-25', 22, '2', '2', 'sivapragasam', 'farmer', 24000.00, 1, 0.00, 15000.00, 'pondicherry', 'pondicherry', '2109210015', '1', '1', 'upload_files/candidate_tracker/24971344839_kiruthika s PG.pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pursuing mca, yet to complete final year project. expt 15k, doesnt know the basics in php and other programming lang. not interested in internship too.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:21:31', 1, '2021-09-21 03:44:21', 0, NULL, 1),
(6416, 'GAYATHRI E', '13', '9952498058', '', 'gayathrie333@gmail.com', '1999-03-24', 22, '2', '2', 'Ezhumalai', 'Cooli', 10000.00, 1, 0.00, 18000.00, 'Cuddalore', 'Thenampettai', '2109210016', '1', '1', 'upload_files/candidate_tracker/97417956621_Document-WPS Office.pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Not Interested In Internship Too.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:22:26', 1, '2021-09-21 03:38:44', 0, NULL, 1),
(6417, 'suriya k', '23', '8682836353', '', 'suriya4023812@gmail.com', '1999-10-07', 21, '2', '2', 'latha c', 'customer service provider', 30000.00, 1, 0.00, 300000.00, 'mattukaranur post omalur taluk salem', 'Mattukaranur Post Omalur Taluk Salem', '2109210017', '1', '1', 'upload_files/candidate_tracker/53929070584_Suriya.k_fresher_SD_resume.pdf', NULL, '2', '2021-09-27', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'fresher, learnt through udemy expt 3l after training. from salem and will stay with his friend in guindy, father xservice man and mother in SBI.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:24:26', 1, '2021-09-21 03:51:14', 0, NULL, 1),
(6418, 'Arun', '13', '9659788005', '', 'arunsjc02@gmail.com', '1998-10-21', 22, '2', '2', 'Shanmugam', 'Carpenter', 10000.00, 1, 0.00, 20000.00, 'Pondicherry', 'Pondicherry', '2109210018', '1', '1', 'upload_files/candidate_tracker/18621536051_Arun Resume.doc', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship has to discuss with family.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:30:16', 1, '2021-09-21 07:28:55', 0, NULL, 1),
(6419, 'Sushmitha R', '13', '6381556106', '9489341865', 'sushmithacud2015@gmail.com', '1998-12-07', 22, '2', '2', 'Raji S', 'Framer', 65000.00, 2, 0.00, 18000.00, 'Cuddalore', 'Chennai', '2109210019', '1', '1', 'upload_files/candidate_tracker/22527791099_Sushmitha R.pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship Has To Discuss With Family.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:35:45', 1, '2021-09-21 03:38:48', 0, NULL, 1),
(6420, 'Balaji M. k', '13', '7299431420', '', 'balajithrekashshapan@gmail.com', '1999-11-27', 21, '2', '1', 'Kuppan', 'Carpenter', 15000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2109210020', '1', '1', 'upload_files/candidate_tracker/22194809258_Resume (Balaji_shapan)-converted.docx', NULL, '1', '2021-09-22', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'candidate actually interested in UI and we only require experienced for the same.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:37:38', 1, '2021-09-21 03:44:18', 0, NULL, 1),
(6421, 'Arunkumar A', '13', '9790545367', '8903553038', 'arunofficial0715@gmail.com', '1999-07-15', 22, '2', '2', 'Arunachalam A', 'Cook', 18000.00, 1, 0.00, 18000.00, 'Pondicherry', 'Pondicherry', '2109210021', '1', '1', 'upload_files/candidate_tracker/92326630314_Arunkumar A (4).pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Pursuing Mca, Yet To Complete Final Year Project. Expt 15k, Doesnt Know The Basics In Php And Other Programming Lang. Interested In Internship Has To Discuss With Family.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-21 03:52:01', 1, '2021-09-22 12:17:54', 0, NULL, 1),
(6422, 'Iruthaya Raj', '22', '9176171316', '9094524480', 'Rajkanan1111@gmail.com', '1996-01-12', 25, '2', '2', 'Mark', 'Builders', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2109210022', '1', '1', 'upload_files/candidate_tracker/1393301511_RAJ Digital marketing 2.pdf', NULL, '1', '2021-10-04', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No knowledge with respect to learning experience', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-21 04:20:46', 8, '2021-10-04 06:04:22', 0, NULL, 1),
(6423, '', '0', '9094524480', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109210023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-21 04:59:23', 0, NULL, 0, NULL, 1),
(6424, 'jeevagen', '4', '9787549081', '', 'jeevagan156@gmail.com', '1996-12-17', 24, '2', '2', 'murugan', 'farmer', 15000.00, 4, 0.00, 10000.00, 'aavadi', 'aavadi', '2109220001', '1', '1', 'upload_files/candidate_tracker/47115503530_RESUME jeevagan156 (3)(1).pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, not speaking up and will not suite for our process, will not handle pressure.', '1', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-22 11:21:27', 1, '2021-09-22 11:37:50', 0, NULL, 1),
(6425, 'aravindan', '5', '9941500564', '9566167055', 'aravindrock014@gmail.com', '2000-06-13', 21, '2', '2', 'vediche', 'eerttttyy', 200000.00, 2, 0.00, 15000.00, 't.nagar', 't.nagar', '2109220002', '1', '1', 'upload_files/candidate_tracker/3273416708_Aravind resume.pdf', NULL, '1', '2021-09-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have seen post in naukri and came directly, looking for accounts job.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-09-22 11:57:06', 8, '2021-09-22 06:19:15', 0, NULL, 1),
(6426, 'Jayanthi', '13', '8110893706', '9751946371', 'jaikutty1411@gmail.com', '1999-11-14', 21, '2', '2', 'Karthikeyan', 'Study', 10000.00, 1, 0.00, 15000.00, '4/151 8th Street Periyar Nagar', 'Kundrathur', '2109220003', '1', '1', 'upload_files/candidate_tracker/33364496868_jai-converted (3).pdf', NULL, '1', '2021-09-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, doesnt know basics in php. from kundrathur too long. expt is 13-15k, terms not shared with her.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-22 12:19:23', 7, '2021-09-24 01:04:44', 0, NULL, 1),
(6427, 'LOKESH BALAJI J', '4', '9952094375', '9444064776', 'lokeshjaya98@gmail.com', '1998-05-24', 23, '4', '2', 'M. Jayaraman', 'Government servant', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109220004', '', '1', 'upload_files/candidate_tracker/18866434395_Lokesh Balaji cv. pdf.pdf', NULL, '1', '2021-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-22 02:59:48', 1, '2021-09-22 03:51:55', 0, NULL, 1),
(6428, 'Srimahalakshmi', '13', '9789254848', '', 'srimahalakahmi27121999@gmail.com', '1999-06-03', 22, '2', '2', 'Narasimman', 'Weaver', 8000.00, 2, 0.00, 20000.00, 'Vellore', 'Vellore', '2109220005', '1', '1', 'upload_files/candidate_tracker/59457262460_maha1.pdf', NULL, '1', '2021-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-22 03:51:26', 1, '2021-09-22 04:01:19', 0, NULL, 1),
(6429, 'Chanthiran', '13', '7904402710', '9942980143', 'chanthirane@gmail.com', '1997-06-05', 24, '2', '2', 'Elumalai', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Villupuram', 'Chennai', '2109220006', '1', '1', 'upload_files/candidate_tracker/84854097851_Chandru Resume.pdf', NULL, '1', '2021-09-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 1yr exp in testing, learning php doesnt know basics. expt is 3l, sal and terms not shared with him.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-22 06:23:08', 1, '2021-09-22 06:34:20', 0, NULL, 1),
(6430, 'R.Shanmugam', '23', '8072610772', '9566179547', 'Shanmugamr91@gmail.com', '1996-10-31', 24, '2', '1', 'Annammal', 'House wife', 30000.00, 2, 0.00, 15000.00, 'Iyyappanthangal, Chennai-122', 'Iyyappanthangal, ch-122', '2109220007', '1', '1', 'upload_files/candidate_tracker/30214587354_Shanmugam Resume-1.pdf', NULL, '1', '2021-09-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', ' Was Working In Printer Service Like Filling Ink And Installation For Past 6yrs. Will Not Suite For Designing. Learning Fullstalk And Expt 12-15k', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-22 08:01:21', 7, '2021-09-24 05:45:11', 0, NULL, 1),
(6431, 'Rajkirankumar', '23', '6382375597', '7358566559', 'rajkirankumarbv@gmail.com', '1998-12-03', 22, '2', '2', 'Venkatesh b', 'Driver', 15000.00, 1, 0.00, 15000.00, '18/23 Ramakrishna puram 2nd street, west Mambalam', '18/23 Ramakrishna Puram 2nd Street, West Mambalam', '2109230001', '1', '1', 'upload_files/candidate_tracker/2131448054_ui.pdf', NULL, '1', '2021-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 10:43:58', 1, '2021-09-23 11:00:10', 0, NULL, 1),
(6432, 'K. V. Gomathy', '4', '9787731763', '9543712595', 'gomathy185@gmail.com', '1996-06-18', 25, '2', '2', 'Parent', 'Framer', 70000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2109230002', '3', '2', 'upload_files/candidate_tracker/59252972080_Gomathy185resumeee.doc', NULL, '1', '2021-09-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'okay with priyanka and banu was rejected in telephonic by dhanalakshim. ', '1', '2', '0', '1', '1', '0', '2', '2021-09-25', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-23 10:55:29', 1, '2021-09-23 11:02:22', 0, NULL, 1),
(6433, 'Ganesan', '6', '9710710724', '', 'www.ganesa102000@gmail.com', '2006-09-23', 0, '2', '2', 'Jagadeesan', 'Daily work', 7000.00, 2, 0.00, 14000.00, 'Chennai', 'Chennai kotturpuram', '2109230003', '1', '1', 'upload_files/candidate_tracker/36203173863_j.ganesan.doc', NULL, '1', '2021-09-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no response and update', '5', '2', '0', '1', '1', '0', '2', '2021-09-25', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-23 11:12:50', 1, '2021-09-23 11:16:34', 0, NULL, 1),
(6434, 'Joseph Daniel Kumar', '5', '9941804971', '7092233838', 'dani994180@gmail.com', '1998-06-06', 23, '2', '2', 'Kumar B', 'Private emp', 10000.00, 1, 0.00, 240000.00, '13 B,Hanuman nagar, Thirumullaivoyal, Chennai-62', '13 B,Hanuman Nagar, Thirumullaivoyal, Chennai-62', '2109230004', '1', '1', 'upload_files/candidate_tracker/70408494781_JOSEPH DANIEL B k 01.pdf', NULL, '1', '2021-09-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 3yr exp in calling but will not suite for sales.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-23 11:25:42', 1, '2021-09-23 11:35:00', 0, NULL, 1),
(6435, 'Srinivasan', '23', '9677074704', '6380330996', 'designercode25@gmail.com', '1997-11-25', 23, '2', '2', 'Usha shanmugam', 'Web design', 20000.00, 1, 0.00, 15000.00, '1/54, thiruvalluvar street ,kovur', '1/54, thiruvalluvar street,kovur', '2109230005', '1', '1', 'upload_files/candidate_tracker/72959111564_resume-compressed.pdf', NULL, '1', '2021-09-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'was doing photography and doing designing as freelancer. his portfolio is not up to the level. terms not shared and expt 15k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-23 11:33:55', 7, '2021-09-24 05:56:59', 0, NULL, 1),
(6436, 'M.preetha', '4', '9751695346', '9791533680', 'preethamurugan24@gmail.com', '1998-05-30', 23, '4', '2', 'A.Murugan', 'Fisherman', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2109230006', '', '1', 'upload_files/candidate_tracker/4080848966_M.PREETHA.docx', NULL, '1', '2021-09-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-23 11:34:55', 1, '2021-09-23 02:09:54', 0, NULL, 1),
(6437, 'praveen.m', '2', '6369381125', '9444457923', 'praveenmrp2404@gmail.com', '2000-04-24', 21, '2', '2', 'masilamani.g', 'police', 40000.00, 2, 0.00, 200000.00, 'chennai', 'chennai', '2109230007', '1', '1', 'upload_files/candidate_tracker/41912873125_Praveen_M_2021.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', '1m internship in front end, very dull and father is SI in 1000 lights. expt 2.5l ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 12:38:42', 1, '2021-09-23 07:21:54', 0, NULL, 1),
(6438, 'Kumaran K', '23', '7708810696', '9345387248', 'Kalaikumar620@gmail.com', '1999-07-30', 22, '2', '2', 'Kalaimani', 'Highway employees', 1500.00, 1, 0.00, 1500.00, 'Tindivanam', 'Tindivanam', '2109230008', '1', '1', 'upload_files/candidate_tracker/74366003401_kumaran resume-1-compressed.pdf', NULL, '1', '2021-09-27', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'frehsr, 6m course in designing, doesnt know basics. expt 15k, from thindivanam and will come office from there if required will stay in thambaram. terms and conditions not shared with him. interested in photography and for his mothers wish looking for office job.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-23 12:48:35', 7, '2021-09-27 11:36:46', 0, NULL, 1),
(6439, 'ramji Sureshkumar', '4', '9655900173', '9486975663', 'milkaramji@gmail.com', '1999-05-28', 22, '2', '2', 'sureshkumar g', 'Revenue inspecter', 40000.00, 1, 0.00, 12.00, 'thanjavur', 'thanjavur', '2109230009', '1', '1', 'upload_files/candidate_tracker/54932555096_CV_2021-09-23-114422.pdf', NULL, '1', '2021-09-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not join. his friend krishna left', '1', '2', '0', '4', '5', '0', '2', '2021-09-27', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-23 01:11:22', 1, '2021-09-23 01:25:11', 0, NULL, 1),
(6440, 'Sathish Kumar V', '23', '7502153133', '', 'sathish11700232@gmail.com', '1994-11-15', 26, '2', '2', 'M Vijayakumar', 'Electrician', 10000.00, 1, 0.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2109230010', '1', '1', 'upload_files/candidate_tracker/92644540141_Resume_Sathish.pdf', NULL, '1', '2021-09-27', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has around 7yr exp in core job, still as machine operator 12k and expt 12-15k. done 6m course in designing and no portfolio with him. ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 01:41:03', 1, '2021-09-23 01:48:24', 0, NULL, 1),
(6441, 'Bilal Hussain K', '23', '6380261891', '', 'bilalhussainb78@gmail.com', '2001-04-21', 20, '2', '2', 'Kaleel Rahman G', 'Designing', 15000.00, 6, 0.00, 15000.00, 'Pozhichalur', 'Pammal', '2109230011', '1', '1', 'upload_files/candidate_tracker/53324696173_Profile Hussain.docx', NULL, '1', '2021-09-24', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Candidate only exposure in Auto CAD xxamp High salary expectation ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 04:07:11', 1, '2021-09-23 04:14:42', 0, NULL, 1),
(6442, '', '0', '9688692722', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109230012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-23 04:32:57', 0, NULL, 0, NULL, 1),
(6443, 'Kavipriya S', '13', '9025503006', '9080362927', 'kavipriyasekar2501@gmail.com', '1999-01-25', 22, '2', '2', 'Sekar T', 'Painter', 10000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2109230013', '1', '1', 'upload_files/candidate_tracker/28446235922_Kavipriya Resume .docx', NULL, '1', '2021-09-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Doesnt Know Basics In Php. From alapakkam Too Long. Expt Is 13-15k, Terms Not Shared With Her.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 04:36:53', 1, '2021-09-23 04:53:36', 0, NULL, 1),
(6444, 'Vengadaramanan', '22', '8825700973', '', 'krish787777@gmail.in', '1997-07-30', 24, '2', '2', 'Anandan e', 'Retired', 15000.00, 1, 0.00, 18000.00, 'Chennaj', 'Chennai', '2109230014', '1', '1', 'upload_files/candidate_tracker/75716020760_Venkat_23007928979.pdf', NULL, '1', '2021-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-23 05:39:19', 1, '2021-09-23 05:43:03', 0, NULL, 1),
(6445, 'Vinoth A', '6', '9003117909', '9500107899', 'nandhu.vinoth24@gmail.com', '2000-12-24', 20, '2', '2', 'M.Aji', 'Business', 50000.00, 2, 0.00, 13000.00, 'Valsaravakkam', 'Valsarvakkam', '2109240001', '1', '1', 'upload_files/candidate_tracker/57026351587_My resume.pdf', NULL, '3', '2021-09-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'very slow, will ot suite for voice process.', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-24 10:23:44', 1, '2021-09-24 10:28:24', 0, NULL, 1),
(6446, 'sivaprakash', '2', '8610595642', '', 'sivaprakash3536@gmail.com', '1999-06-20', 22, '3', '2', 'Baskaran', 'Business', 50000.00, 3, 0.00, 300000.00, 'Rameshwaram', 'Rameshwaram', '2109240002', '', '1', 'upload_files/candidate_tracker/74635897131_1632389469838_Resume.pdf', NULL, '1', '2021-09-24', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Came By Simply Jpr Youtube. From Rameshwaram Willing To Learn and okay with internship. Check With His Tech Skills.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-24 10:32:32', 1, '2021-09-24 10:36:38', 0, NULL, 1),
(6447, 'Selva M', '13', '6379535424', '', 'selvarajarmm@gmail.com', '2000-06-16', 21, '3', '2', 'Murugesan', 'Journalist', 30000.00, 4, 0.00, 300000.00, 'Rameswaram', 'Chennai', '2109240003', '', '1', 'upload_files/candidate_tracker/94058602276_1632460288316_Resume.pdf', NULL, '1', '2021-09-24', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Response.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-24 10:38:45', 8, '2021-09-24 05:13:59', 0, NULL, 1),
(6448, 'D.mohanraj', '4', '9688759618', '9566006986', 'kawassharmi@gmail.com', '1996-12-31', 24, '3', '2', 'K.Dharmaraj', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'T nagar', 'T nagar', '2109240004', '', '1', 'upload_files/candidate_tracker/8268724_18.09.2021 Employment News - Date Wise-.pdf', NULL, '1', '2021-09-24', 0, '', '3', '59', '2021-09-27', 120000.00, '', '', '2021-10-05', '2', 'Selected for elite - Priyanka Team in Consultant Cash mode. He will arrange bike in next 2-3 months, if arranged will be handling RE role and his salary will be revised with the increment of 2-3K(Overall CTC, should try him with PF/ESI)', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-09-24 10:44:55', 60, '2021-09-25 03:31:02', 0, NULL, 1),
(6449, 'narendhira kumar', '5', '7358070885', '', 'narendhirakumar619@gmail.com', '1991-12-08', 29, '2', '1', 'sunderasan', 'retired', 15000.00, 1, 230000.00, 20000.00, 'mandaveli', 'Mandaveli', '2109240005', '1', '2', 'upload_files/candidate_tracker/45991547742_Narendhirakumar Resume.docx', NULL, '1', '2021-09-24', 0, '', '3', '59', '2021-10-11', 288000.00, '', '', '2021-10-13', '1', 'Selected for Santhosh Team with PF/PT Deductions.', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', 'Patroniss Offer Link has been Shared to upload the documents', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-24 10:50:18', 60, '2021-10-09 04:41:52', 0, NULL, 1),
(6450, '', '0', '9751838265', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-24 11:47:35', 0, NULL, 0, NULL, 1),
(6451, '', '0', '8925405733', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109240007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-24 12:51:24', 0, NULL, 0, NULL, 1),
(6452, '', '0', '7094550059', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109240008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-24 05:36:20', 0, NULL, 0, NULL, 1),
(6453, 'SUBASH K', '6', '7418207007', '', 'thalasubash83@gmail.com', '2006-09-25', 0, '2', '2', 'Kalaimani.k', 'Painter', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2109250001', '1', '1', 'upload_files/candidate_tracker/84951134907_SUBASH RESUME 2021.docx', NULL, '1', '2021-09-25', 0, '', '1', '58', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-25 10:29:42', 1, '2021-09-25 10:40:04', 0, NULL, 1),
(6454, 'Shalini', '14', '8610008260', '', 'imshaluoo@gmail.com', '1998-03-08', 23, '2', '1', 'Sathishkumar', 'Event Management', 80000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109260001', '1', '2', 'upload_files/candidate_tracker/44689962082_Shalini_S_Resume_2.PDF', NULL, '3', '2021-09-29', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-26 09:19:35', 1, '2021-09-26 09:26:41', 0, NULL, 1),
(6455, 'Mukilan.k', '4', '7305322479', '9840384572', 'mukilanprabhu2001@gmail.com', '2001-06-25', 20, '1', '2', 'Kumaresan.S', 'HR', 150000.00, 1, 13000.00, 13000.00, 'Ottiyambakkam', 'Ottiyambakkam', '2109270001', '', '2', 'upload_files/candidate_tracker/30192895137_mukilan new resume.pdf', NULL, '1', '2021-09-27', 0, '25', '3', '59', '2021-09-30', 132000.00, '', '6', '2021-12-31', '2', 'Selected for Priyanka Jenit Team in Cash mode - 5% deductions', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-09-27 10:16:40', 60, '2021-09-27 06:18:41', 0, NULL, 1),
(6456, 'Shaik Sadhiq', '4', '8142494093', '', 'sadik112279@gmail.com', '2000-05-04', 21, '1', '2', 'Shaik Babu', 'Uneducated', 15000.00, 1, 0.00, 15000.00, 'Chirala', 'Chirala', '2109270002', '', '1', 'upload_files/candidate_tracker/32229178628_Cv Sadhiq.pdf', NULL, '2', '2021-09-29', 0, '66668', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-27 05:08:20', 1, '2021-09-27 05:15:49', 0, NULL, 1),
(6457, 'MANORANJITH T', '13', '8220998642', '8124569042', 'ranjithmariappan23@gmail.com', '1999-07-29', 22, '2', '2', 'THANGAMARIAPPAN K', 'TRANSPORT', 30000.00, 2, 0.00, 15000.00, 'KOVILPATTI', 'KOVILPATTI', '2109270003', '1', '1', 'upload_files/candidate_tracker/31993389097_Mano Ranjith T (Resume)(fresher).pdf', NULL, '1', '2021-09-30', 0, '', '3', '59', '2021-10-07', 96000.00, '', '', '2021-10-27', '1', 'Fresher. Okay For An Internship. 3 Years Service Agrement. 1st 3 Months Intern And The Pay Is 3.5k. After Three Months Will Be 8k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-27 05:34:06', 60, '2021-10-07 05:56:33', 0, NULL, 1),
(6458, 'Pandiarajan P', '9', '9884226400', '8838187818', 'ppandia@gmail.com', '1984-07-05', 37, '1', '1', 'Rajalakshmi P', 'Salary', 85000.00, 2, 825000.00, 850000.00, 'Theni', 'Chennai', '2109270004', '', '2', 'upload_files/candidate_tracker/11645297280_Resume - Pandiarajan P.doc', NULL, '1', '2021-09-27', 1, '55557', '3', '59', '2021-11-08', 850000.00, '', '6', '2022-08-12', '1', 'Selected as Cluster Head - CTC committed by Suresh sir includes all deductions as per company policy', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '1', '1', 'Selected as Cluster Head - Offer Link Shared', '', '', '', NULL, NULL, NULL, 1, '2021-09-27 06:29:22', 60, '2021-09-29 03:23:28', 0, NULL, 1),
(6459, 'Syed Nathimullah', '13', '7871134137', '', 'syednathim@gmail.com', '1999-08-02', 22, '2', '2', 'Syed Nayeemullah', 'Auto driver', 10000.00, 4, 17000.00, 30000.00, 'Chennai', 'Chennai', '2109270005', '1', '2', 'upload_files/candidate_tracker/11554158640_Syed Nathimullah full stack developer.pdf', NULL, '1', '2021-09-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'we are looking for fresher, has 1yr in ui and 1yr in fullstack 17k, expt is 25k, knows the concept but right. terms and conditions and salary details not shared.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-27 06:32:19', 1, '2021-09-27 06:52:54', 0, NULL, 1),
(6460, 'YUVARAJ K', '2', '8428368204', '', 'yuvarajk1615@gmail.com', '2001-03-16', 20, '2', '2', 'N.KALIYAPERUMAL', 'Private', 70000.00, 4, 0.00, 20000.00, 'Chennai', 'Chennai', '2109270006', '1', '1', 'upload_files/candidate_tracker/80491097218_resume yuva-2-3.pdf', NULL, '1', '2021-10-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-27 07:10:57', 1, '2021-09-28 12:07:05', 0, NULL, 1),
(6461, 'Joe Thomas', '6', '7012382570', '', 'joethomas552@gmail.com', '1997-02-21', 24, '4', '2', 'Jose Thomas', 'Student', 20000.00, 1, 0.00, 20000.00, 'Thrissur', 'Chennai', '2109280001', '', '1', 'upload_files/candidate_tracker/25414866399_Joe_Thomas_Uruvath.pdf', NULL, '1', '2021-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-28 10:15:06', 1, '2021-09-28 10:20:58', 0, NULL, 1),
(6462, 'r.prakash', '20', '8825610487', '', 'prakashravichandran@gmail.com', '1998-03-17', 23, '2', '2', 'ravichandran', 'courier', 8000.00, 2, 0.00, 10000.00, 'tiruvallur', 'Thiruvallur', '2109280002', '1', '1', 'upload_files/candidate_tracker/89745901098_Prakash_Resume.pdf', NULL, '2', '2021-09-27', 0, '', '3', '59', '2021-10-04', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location in cash mode. Candidate seems to be Doubtful, he looks for travel allowances and all.', '5', '1', '', '4', '6', '', '2', '2021-09-29', '1', '2', 'Offer Mail Sent, candidate need to share the required details - Candidate is not ready to join us on 4th Oct due to some personal work.requesting 10 days of time to join.Not sure whether he will join us or not', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-09-28 11:16:18', 60, '2021-10-04 10:04:37', 0, NULL, 1),
(6463, 'Lokeshwaran A', '23', '9600590837', '8072599739', 'alokesh3398@gmail.com', '1998-03-03', 23, '2', '2', 'Angalan S', 'Nil', 15000.00, 1, 0.00, 10000.00, 'Pondicherry', 'Chennai', '2109280003', '1', '1', 'upload_files/candidate_tracker/88625308234_Lokeshwaran_CV.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Doesnt Knows Basics In Ui/Ux, From Pondy Will Not Suite For our process.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-28 11:28:16', 1, '2021-09-28 11:32:35', 0, NULL, 1),
(6464, 'Ragul M', '2', '6374436566', '9486914419', 'mragul183@gmail.com', '2000-03-18', 21, '2', '2', 'Muthaiyan K', 'Labour', 8000.00, 1, 0.00, 8000.00, 'Kumbakonam', 'Chennai', '2109280004', '1', '1', 'upload_files/candidate_tracker/49396265880_Ragul_resume.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '6m course and doesnt knows bsics and very dull, terms and conditions not shared with candidate. ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-09-28 12:16:19', 7, '2021-09-29 12:02:12', 0, NULL, 1),
(6465, 'R.nanndhini', '4', '8925135383', '9790776804', 'nandhinibm8@g', '2000-05-06', 21, '2', '1', 'Bala', 'Housewife', 12000.00, 1, 0.00, 15000.00, 'Addar', 'Adyar', '2109280005', '1', '1', 'upload_files/candidate_tracker/23714821409_2021_09_28 12_43 Office Lens.pdf', NULL, '1', '2021-09-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, married 2yrs b4, 10-12k, husband in tvs as boff. avg profile, willing to work.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-28 12:46:13', 1, '2021-09-28 12:54:37', 0, NULL, 1),
(6466, 'Varsha S', '23', '7397349997', '', 'varshsha24@gmail.com', '2000-02-13', 21, '2', '2', 'C.Sivakumar', 'Senior Creative Artist', 45000.00, 1, 0.00, 15000.00, 'K.k.nagar', 'K.k.nagar', '2109280006', '1', '1', 'upload_files/candidate_tracker/87734104205_Varsha Resume (1) (1).pdf', NULL, '1', '2021-09-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, done 6m online course and knows basics in ux, expt is 15k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-28 12:46:35', 1, '2021-09-28 12:53:52', 0, NULL, 1),
(6467, 'logeshwari T', '4', '9790853776', '7299552998', 'sureshmathew9597@gmail.com', '1998-06-13', 23, '3', '2', 'Thiruvengadan S', 'Electrician', 20000.00, 1, 16000.00, 16500.00, 'Perambur', 'Perambur', '2109280007', '', '2', 'upload_files/candidate_tracker/96193301790_ah5fv-4k3wr.pdf', NULL, '1', '2021-09-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 3yr exp in sales-credit card, expt 17-18k, will not suite for our process.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-28 01:04:00', 1, '2021-09-28 01:13:35', 0, NULL, 1),
(6468, '', '0', '8148948098', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109280008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-28 01:37:55', 0, NULL, 0, NULL, 1),
(6469, 'Elavarasan A', '23', '9600895728', '8072685016', 'elavarasan0816@gmail.com', '1998-11-08', 22, '2', '2', 'Parvady A', 'Nil', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2109280009', '1', '1', 'upload_files/candidate_tracker/8948185971_ELA CV(1).pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, doesnt knows basics in ui/ux, from pondy will not suite for our process. ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-28 03:10:33', 1, '2021-09-28 03:20:38', 0, NULL, 1),
(6470, 'Nilesh muhilan A S', '4', '7339318086', '9965149656', 'muhilannilesh48@gmail.com', '2000-08-01', 21, '3', '2', 'Saravanakumar A T', 'Agriculturist', 80000.00, 1, 0.00, 16000.00, 'Anaimalai', 'Anaimalai', '2109290001', '', '1', 'upload_files/candidate_tracker/13606647755_Resume by Nilesh.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'from pollachi, fresher expt is 16k, no convincing and sales skill. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-09-29 10:34:42', 1, '2021-09-29 10:44:39', 0, NULL, 1),
(6471, 'B u preethi', '4', '7200963814', '9944596686', 'Bupreethi01@gmail.com', '2000-06-23', 21, '2', '2', 'B g umapathy', 'Housewife', 12000.00, 3, 0.00, 12000.00, 'Tiruttani', 'Kk Nagar', '2109290002', '1', '1', 'upload_files/candidate_tracker/86024423484_18.09.2021 Employment News - Date Wise-.pdf', NULL, '1', '2021-09-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not turned up', '1', '1', '0', '1', '1', '0', '2', '2021-10-04', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-09-29 10:57:08', 1, '2021-09-29 11:04:40', 0, NULL, 1),
(6472, '', '0', '7397445882', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109290003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-29 02:59:50', 0, NULL, 0, NULL, 1),
(6473, 'S . Balamurugan', '13', '8309419479', '', 'balatech2015@gmail.com', '1997-12-28', 23, '2', '2', 'P. Sundar', 'Business', 25000.00, 4, 0.00, 15000.00, 'Adoni', 'Adoni', '2109290004', '1', '1', 'upload_files/candidate_tracker/13283057659_BalaResumeupt.pdf', NULL, '2', '2021-10-06', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '1', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-29 03:06:29', 1, '2021-09-29 03:14:01', 0, NULL, 1),
(6474, '', '0', '7398445882', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109290005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-29 03:13:49', 0, NULL, 0, NULL, 1),
(6475, 'Bharath N', '23', '9894722642', '9626123275', 'bharathnbs01@gmail.com', '1997-03-24', 24, '2', '2', 'Nanthagopal', 'Former', 20000.00, 1, 0.00, 15000.00, 'CHEYYUR', 'CHEYYUR', '2109290006', '1', '1', 'upload_files/candidate_tracker/43825874688_bharathresume-converted.pdf', NULL, '1', '2021-10-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, portfolio is below avg, expt 15k, okay with company norms, interested in uI and very basic knowledge in ux and ui too.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-29 03:58:36', 1, '2021-09-29 04:05:50', 0, NULL, 1),
(6476, '', '0', '6374869645', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-29 04:53:04', 0, NULL, 0, NULL, 1),
(6477, '', '0', '7995617150', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109290008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-29 06:24:00', 0, NULL, 0, NULL, 1),
(6478, 'Mukeshkumar R', '13', '9176212255', '6380990699', 'mukeshramalingam51@gmail.com', '1999-08-04', 22, '2', '2', 'Ramalingam M', 'Doctor', 70000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2109300001', '1', '1', 'upload_files/candidate_tracker/6961667747_Mukeshkumar Ramalingam.pdf', NULL, '1', '2021-10-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-09-30 11:22:42', 1, '2021-09-30 11:25:56', 0, NULL, 1),
(6479, 'Yasar', '4', '9677104700', '', 'yasarahamed21@gmail.com', '1992-04-21', 29, '3', '2', 'Kareem', 'Tneb', 100000.00, 1, 0.00, 18000.00, 'avadi Chennai', 'avadi Chennai', '2109300002', '', '2', 'upload_files/candidate_tracker/58811806441_Yasarahamed_Resume_updated.docx', NULL, '1', '2021-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Credit Card Sales Exp.Frequent Job Changer,not open for Field Sales,looking only for the CRM level and his exp salary is min 15K.Will not sustain and handling pressure doubtful', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-09-30 12:42:57', 60, '2021-10-19 03:26:49', 0, NULL, 1),
(6480, '', '0', '7032426776', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2109300003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-09-30 02:16:23', 0, NULL, 0, NULL, 1),
(6481, '', '0', '9566869340', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012110033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-03 04:05:44', 0, NULL, 0, NULL, 1),
(6482, 'F. Vijay Stephen', '4', '7358517270', '8248832246', 'vijaystephen246@gmail.com', '1995-06-24', 26, '2', '2', 'Francis Xavior', 'Car Driver', 20000.00, 2, 15000.00, 15000.00, 'Mylapore', 'Mylapore', '2110040001', '1', '2', 'upload_files/candidate_tracker/25485315953_VIJAY 2021 New.docx', NULL, '1', '2021-10-04', 0, '', '3', '59', '2021-10-05', 126000.00, '', '3', '2022-01-03', '1', 'Selected for Muthu Team in Cash mode, no graduation, only 12th long experiences in Event Management.only 8 months exp in telecall, let us try but 5050', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent, Candidate need to share the required details in the sheet', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-04 10:16:46', 50, '2021-10-05 10:42:42', 0, NULL, 1),
(6483, '', '0', '9360383930', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110040002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-04 10:47:51', 0, NULL, 0, NULL, 1),
(6484, 'Sujeet Kumar', '4', '6299370840', '7631568434', 'sraj43480@gmail.com', '1999-06-18', 22, '4', '1', 'Arjun paswan', 'Student', 60000.00, 3, 0.00, 20000.00, 'At+Po- chakla P. S- baheri darbhanga Bihar847201', 'Usman road, channei17', '2110040003', '', '1', 'upload_files/candidate_tracker/20517768346_my resume 1.docx', NULL, '3', '2021-10-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 10:53:54', 1, '2021-10-04 12:03:35', 0, NULL, 1),
(6485, 'K.Hemanathan', '4', '7092827927', '8072711560', 'hemanathcharlie27@gmail.com', '1998-09-27', 23, '1', '2', 'S.kumar,k.kumari', 'Driver', 150000.00, 1, 0.00, 120000.00, 'Thiruttani', 'Thiruttani', '2110040004', '', '1', 'upload_files/candidate_tracker/80499817491_Document.pdf', NULL, '1', '2021-10-04', 0, 'R55564', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Didnxquott turn with his response, Even tried reaching him to get his confirmation but no response', '1', '1', '0', '1', '3', '0', '2', '2021-10-05', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 12:23:46', 1, '2021-10-04 12:32:49', 0, NULL, 1),
(6486, 'K .SUBASH', '4', '8825764692', '9786040569', 'Subashbs376@gmail.com', '1999-08-20', 22, '1', '2', 'R. Krishnan', 'Farmer', 6000.00, 1, 0.00, 13000.00, 'Tiruttani', 'Tiruttani', '2110040005', '', '1', 'upload_files/candidate_tracker/25815738122_SUBASH K Resume.docx', NULL, '1', '2021-10-04', 0, 'R55564', '3', '59', '2021-10-07', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur location, Communication is Good. but long stay from the candidate is doubtful. He is from EEE background but he focus much into the IT openings. Selected in Cash mode', '1', '1', '', '1', '3', '', '2', '2021-10-04', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-10-04 12:23:59', 60, '2021-10-04 06:53:27', 0, NULL, 1),
(6487, 'Vijay babu B', '4', '9789322967', '9080092967', 'Yajivvijay29@gmail.com', '2000-04-14', 21, '4', '2', 'Balaji B', 'Painter', 15000.00, 1, 0.00, 10500.00, 'No 2 semathemman new coloney perambur chennai 12', 'Thuraipakkam', '2110040006', '', '1', 'upload_files/candidate_tracker/43066193312_RESUME- VIJAY BABU B.pdf', NULL, '1', '2021-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 12:30:15', 1, '2021-10-04 01:17:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6488, 'Lokesh', '4', '9789226339', '9655295115', 'Lokeshkumard17@gmail.con', '2000-07-28', 21, '1', '2', 'K dhamodharan', 'Business', 150000.00, 1, 0.00, 120000.00, 'Tiruttani', 'Thiruttani', '2110040007', '', '1', 'upload_files/candidate_tracker/11001804972_lokesh.3.docx', NULL, '1', '2021-10-04', 0, 'R55567', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'discussed and projected the salary,. need to get his confirmation. Tried couple of times but there is no response from the candidate', '1', '1', '0', '1', '1', '0', '2', '2021-10-05', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 12:37:37', 1, '2021-10-04 12:52:42', 0, NULL, 1),
(6489, '', '0', '6374083104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110040008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-04 12:50:03', 0, NULL, 0, NULL, 1),
(6490, 'Sneha R', '13', '8428354373', '9677030567', 'Snehasubhi9922@gmail.com', '2000-05-24', 21, '2', '2', 'Ramesh J', 'Tailor', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2110040009', '1', '1', 'upload_files/candidate_tracker/8323339633_CV_2021-09-30-051626.pdf', NULL, '1', '2021-10-06', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-04 02:13:40', 1, '2021-10-04 02:17:15', 0, NULL, 1),
(6491, 'nandhini', '23', '8248207287', '', 'maharajanandhini@gmail.com', '1998-10-23', 22, '2', '2', 'maharaja', 'farmer', 15000.00, 1, 0.00, 20000.00, 'Perambalur', 'Perambalur', '2110040010', '1', '1', 'upload_files/candidate_tracker/93831435022_resume-converted-compressed.pdf', NULL, '1', '2021-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-04 02:22:18', 1, '2021-10-06 03:27:45', 0, NULL, 1),
(6492, 'M Mohanavel', '13', '6382840661', '8870511241', 'mohan.santhosh1205@gmail.com', '2000-05-12', 21, '3', '2', 'P Muthusamy', 'Business', 25000.00, 2, 0.00, 15000.00, 'Namakkal (DT)', 'Namakkal (DT)', '2110040011', '', '1', 'upload_files/candidate_tracker/13002341700_M MOHANAVEL Resume.PDF', NULL, '1', '2021-10-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, will learn and come.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 02:33:00', 1, '2021-10-04 02:37:13', 0, NULL, 1),
(6493, 'Mathiyazhagan S', '4', '9655717737', '9362152446', 'ksmathi6595@gmail.com', '1995-05-06', 26, '4', '2', 'Saravanan k', 'Agriculture', 20000.00, 2, 0.00, 12000.00, 'Cuddalore', 'Tambaram', '2110040012', '', '1', 'upload_files/candidate_tracker/22019049070_resume 01.pdf', NULL, '3', '2021-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-04 03:48:38', 1, '2021-10-04 03:53:18', 0, NULL, 1),
(6494, 'DURAISAMY P', '2', '8838810947', '', 'sdurai246@gmail.com', '2000-06-21', 21, '2', '2', 'periyasamy', 'farmer', 7000.00, 0, 0.00, 1.50, 'Cuddalore', 'Cuddalore', '2110040013', '1', '1', 'upload_files/candidate_tracker/66186791682_DURAISAMY P.pdf', NULL, '1', '2021-10-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-04 03:56:08', 1, '2021-10-04 04:14:23', 0, NULL, 1),
(6495, 'GOPALA KRISHNAN', '13', '9842045149', '', 'gopalakrishnan86317@gmail.com', '2001-05-14', 20, '2', '2', 'Kumaran', 'bronze busness', 30000.00, 1, 0.00, 20000.00, 'kumba konam', 'kumba konam', '2110040014', '1', '1', 'upload_files/candidate_tracker/38744711155_gopala krishnan.pdf', NULL, '1', '2021-10-18', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'If rejected because donxquott answering a basic php and mysql questions,', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-04 05:25:05', 50, '2021-10-18 11:17:57', 0, NULL, 1),
(6496, 'Aravinth Mani', '2', '9677447328', '9994778516', 'aravinthmani44@gmail.com', '1999-07-21', 22, '2', '2', 'M.Mani', 'Agriculture', 20000.00, 3, 0.00, 10000.00, 'Tirunelveli', 'Chennai', '2110040015', '1', '1', 'upload_files/candidate_tracker/63009469990_RESUME OF ARAVINTH.pdf', NULL, '2', '2022-02-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, no basic knowledge in terms of technical, job need so told him to learn and get back.', '2', '1', '', '1', '1', '', '2', '2022-02-21', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2021-10-04 05:40:18', 84, '2022-02-23 03:38:58', 0, NULL, 1),
(6497, 'Subasree s', '4', '9884995744', '', 'Subhasbca1995@gmail.com', '1995-03-15', 26, '2', '2', 'Sivasami K', 'Farmer', 12000.00, 0, 13500.00, 135000.00, 'Manarkudi', 'Vadapalani', '2110050001', '1', '2', 'upload_files/candidate_tracker/73684802632_subha updated resume.pdf', NULL, '1', '2021-10-05', 0, '', '3', '59', '2021-10-18', 144000.00, '', '3', '2022-02-01', '2', 'Selected for Thanjavur Location in Cash mode, Will get relieve from her current company this week only', '1', '2', '', '1', '1', '', '2', '2021-10-07', '2', '9', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-10-05 11:47:12', 60, '2021-10-16 10:34:08', 0, NULL, 1),
(6498, 'Prema B', '5', '9092250427', '6369034399', 'premabakthavachalam12@gmail.com', '1998-12-13', 22, '1', '2', 'Bakthavachalam T', 'Tailor', 120000.00, 1, 0.00, 15000.00, 'nerkundram', ',nerkundram,chennai-600107', '2110050002', '', '2', 'upload_files/candidate_tracker/14021444856_0_Resume.pdf', NULL, '1', '2021-10-05', 0, 'Azar', '4', '29', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, no relevant Expr in Sales. Internal Team Reference. Check for RM/E sales', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-05 12:07:26', 1, '2021-10-05 12:16:35', 0, NULL, 1),
(6499, 'Nivetha', '4', '7904948431', '9003174089', 'Nivethanive0106@gamil.com', '1999-05-22', 22, '2', '2', 'Varadharajan', 'Watchman', 3000.00, 2, 0.00, 13000.00, 'Mylapore', 'Mylapore', '2110050003', '1', '1', 'upload_files/candidate_tracker/84992945776_Adobe Scan Sep 24, 2021.pdf', NULL, '1', '2021-10-05', 0, '', '8', '13', NULL, 0.00, '', '0', NULL, '2', 'not attend the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-05 12:08:22', 1, '2021-10-05 12:16:49', 0, NULL, 1),
(6500, 'S.RAMPRAKASH', '4', '7358279607', '7358233067', 'raprsh1994@gmail.com', '1994-05-23', 27, '2', '2', 'R.SIVAKUMAR', 'MARKETING MANAGER', 25000.00, 1, 12000.00, 13000.00, 'chennai', 'chennai', '2110050004', '1', '2', 'upload_files/candidate_tracker/42619314308_RAM.PDF', NULL, '1', '2021-10-05', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not fit for telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-05 12:35:35', 1, '2021-10-05 12:40:01', 0, NULL, 1),
(6501, 'Gounipalli Jaswanth kumar', '2', '8317640560', '8317640569', 'jaswanthkumargjk999@gmail.com', '1999-07-16', 22, '2', '2', 'G Pullaiah', 'Farmer', 30000.00, 0, 0.00, 250000.00, 'Kadapa', 'Chennai', '2110050005', '1', '1', 'upload_files/candidate_tracker/28152766333_Jaswanth kumar.pdf', NULL, '1', '2021-10-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Not much comfortable with TxxampC. Need time to check with Family', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-05 03:51:49', 1, '2021-10-05 04:10:46', 0, NULL, 1),
(6502, 'Hariharan k', '2', '7358544304', '8668100335', 'hari17399.hk@gmail.com', '1999-03-17', 22, '2', '2', 'Kalijothi', 'Work in company', 8000.00, 2, 0.00, 15000.00, '6/103, bharathiyar st , Pudupakkam, chengalpattu.', '6/103, Bharathiyar St , Pudupakkam, Chengalpattu.', '2110050006', '1', '1', 'upload_files/candidate_tracker/87172519724_Hari resume.pdf', NULL, '1', '2021-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, too long around 62 kms up and down. Will not sustain for a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-05 04:03:55', 60, '2021-10-11 10:49:09', 0, NULL, 1),
(6503, 'g.jeevan kumar', '2', '6302801087', '8317640560', 'jeevankumar8179@gmail.com', '1998-07-14', 23, '2', '2', 'G Pullaiah', 'Farmer', 30000.00, 1, 0.00, 250000.00, 'Kadapa', 'chennai', '2110050007', '1', '1', 'upload_files/candidate_tracker/52219759586_Jeevan kumar Resume.pdf', NULL, '1', '2021-10-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Not Much Comfortable With TxxampC. Need Time To Check With Family', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-05 04:17:04', 1, '2021-10-05 04:20:54', 0, NULL, 1),
(6504, 'Pavithra R', '2', '8072632509', '', 'rajanpavithra19@gmail.com', '2000-04-19', 21, '2', '2', 'I.Rajan', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2110050008', '1', '1', 'upload_files/candidate_tracker/76874142955_pavi resume4.docx', NULL, '1', '2021-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-05 04:41:55', 1, '2021-10-05 04:57:25', 0, NULL, 1),
(6505, 'H. Assumpta Hebsheeba', '2', '8825698401', '', 'hebsheeba68@gmail.com', '1999-08-15', 22, '2', '2', 'T. Henry', 'Fisherman', 10000.00, 1, 0.00, 20000.00, 'Kanniyakumari', 'Chennai', '2110050009', '1', '1', 'upload_files/candidate_tracker/20726631699_Assumpta Hebsheeba.docx', NULL, '1', '2021-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-05 04:47:51', 1, '2021-10-05 04:56:47', 0, NULL, 1),
(6506, 'Bhuvaneshwar', '2', '9087049229', '', 'bhuvaneshwar.cp@gmail.com', '1998-01-19', 23, '2', '2', 'Chellapandian', 'Business', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2110060001', '1', '1', 'upload_files/candidate_tracker/51830036665_BHUVANESHWAR_C.pdf', NULL, '1', '2021-10-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, already doing his internship and 5k . 6m internship and completed 2m. small company and not willing to join there. no basic knowledge in tech skills. expt 2L. not okay with agreement. ', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-06 09:14:27', 50, '2021-10-08 12:09:02', 0, NULL, 1),
(6507, 'P. Priya', '4', '6380197395', '9361135465', 'priyaapitchaiya@gmail.com', '2000-04-21', 21, '2', '2', 'Pitchaiya. M', 'Farmer', 25000.00, 2, 0.00, 10000.00, '1/236, Vilar, Adidravidar Street', 'Vilar, Thanjavur-613006.', '2110060002', '1', '1', 'upload_files/candidate_tracker/68352757535_priya.pdf', NULL, '1', '2021-10-06', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'wrongly updated , by mistake rejected not performing well and not suite for telesales ,,,n voice clarity', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-06 10:48:51', 50, '2021-10-06 11:08:05', 0, NULL, 1),
(6508, 'prajitha', '4', '9962668320', '9597027296', 'bosspraji98@gamill.com', '1998-08-09', 23, '2', '2', 'c.rajan', 'teashop', 60000.00, 1, 0.00, 13500.00, 'thiruvallur', 'thiruvallur', '2110060003', '1', '1', 'upload_files/candidate_tracker/29789193892_Adobe Scan Apr 06, 2021.pdf', NULL, '1', '2021-10-06', 0, '', '3', '59', '2021-10-07', 144000.00, '', '6', '2021-11-02', '2', 'Selected for Tiruvallur Location in Cash mode. Candidate Communication is good and have store Sales exp along with Telesales Exp.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-06 10:58:45', 60, '2021-10-06 03:21:18', 0, NULL, 1),
(6509, 'Abhiramasundari', '4', '9940421705', '9025000473', 'abhiramasundari05@gmail.com', '1996-06-22', 25, '2', '2', 'Kalyana sundaram', 'Expired', 50000.00, 4, 13500.00, 18000.00, 'Kumbakonam', 'Chennai', '2110060004', '1', '2', 'upload_files/candidate_tracker/83094045167_Resume of Abhi.pdf', NULL, '2', '2021-10-06', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Experience in Credit Card/Vodafone /Kotak Health Insurance Sales. Seems to have an attitude, Holding multiple offers and look for some more. Sustainability Doubts. please do check your suitability', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-06 11:04:24', 50, '2021-10-06 11:29:45', 0, NULL, 1),
(6510, 'Jayashri k', '4', '7358997244', '9786151363', 'jayashrikamaraj98@gmail.com', '1998-09-20', 23, '2', '2', 'Kamaraj k', 'Post man', 25000.00, 3, 9000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2110060005', '1', '2', 'upload_files/candidate_tracker/39781491900_0_Jayashir resume.pdf', NULL, '1', '2021-10-06', 0, '', '3', '59', '2021-10-07', 120000.00, '', '6', '2021-11-26', '2', 'Selected for Tanjore Location in cash Mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-06 11:46:50', 60, '2021-10-06 03:30:29', 0, NULL, 1),
(6511, 'HEMANTH H', '2', '9600055924', '', 'hemanth26800@gmail.com', '2000-08-26', 21, '2', '2', 'HARIDOSS R', 'Carpenter', 15000.00, 0, 0.00, 12000.00, 'CHENNAI', 'CHENNAI', '2110060006', '1', '1', 'upload_files/candidate_tracker/26807066193_Resume.pdf', NULL, '1', '2021-10-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'candidate didnt turn on the day of joining as we commit with him', '2', '1', '0', '1', '1', '0', '2', '2021-10-11', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-06 01:24:30', 1, '2021-10-06 01:26:56', 0, NULL, 1),
(6512, '', '0', '6384096313', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110060007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-06 02:08:50', 0, NULL, 0, NULL, 1),
(6513, 'S.Glory', '4', '7305086020', '9789008063', 'glorysundarrajan@gmail.com', '2000-07-01', 21, '2', '2', 'K.Sundarrajan', 'Quality Checker', 10000.00, 2, 0.00, 12000.00, '5/305, nagathaman nagar, nemilicheri', 'Thiruninravur', '2110070001', '1', '1', 'upload_files/candidate_tracker/27051628203_Glory - Resume.docx', NULL, '1', '2021-10-07', 0, '', '3', '59', '2021-10-11', 120000.00, '', '3', '2021-12-02', '2', 'Selected for Tiruvallur Location in Cash Mode-Fresher for telesales-Communication is Good,She much focus into Medical Lab field(long Stay 5050)', '1', '1', '', '1', '1', '', '2', '2021-10-09', '1', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-07 10:46:52', 60, '2021-10-08 05:27:05', 0, NULL, 1),
(6514, 'dilip', '23', '8939697544', '7904135682', 'dilipjaganathan@gmail.com', '1998-02-19', 23, '2', '2', 'c.jaganathan', 'welder', 25000.00, 1, 0.00, 25000.00, 'chennai', 'chennai', '2110070002', '1', '1', 'upload_files/candidate_tracker/64039545254_Resume.pdf', NULL, '2', '2021-10-11', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Not okay with package and bond', '2', '1', '0', '1', '1', '0', '2', '2021-10-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 01:34:54', 1, '2021-10-07 01:39:15', 0, NULL, 1),
(6515, 'Anbarasu J', '13', '8667287029', '8608056590', 'Anbarasube96@gmail.com', '1996-07-19', 25, '3', '1', 'Janberi', 'Farmers', 10000.00, 2, 0.00, 20000.00, 'Dharmapuri', 'Chennai,saidhapetai', '2110070003', '', '1', 'upload_files/candidate_tracker/10440862187_Anbarasu smart cv.docx', NULL, '1', '2021-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Career Gap, No basic knowledge will not sustain with us for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-07 01:35:08', 1, '2021-10-07 01:49:32', 0, NULL, 1),
(6516, 'Premkumar Sekar', '23', '9894928037', '', 'premsat69@gmail.com', '1995-06-19', 26, '2', '2', 'sekar', 'ja in labour dept of tamil ndau', 30000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2110070004', '1', '1', 'upload_files/candidate_tracker/82276079080_Premkumar_Resume_26.pdf', NULL, '1', '2021-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 03:49:43', 1, '2021-10-07 03:55:23', 0, NULL, 1),
(6517, 'Keerthana baskar', '23', '8682857885', '9092391813', 'Keerthibv2000@gmail.com', '2000-12-12', 20, '2', '2', 'Baskar', 'Painter', 25000.00, 1, 0.00, 50000.00, 'E/164 12th street 2nd cross periyarnagar ch-82', 'E/164 12th Street 2nd Cross Periyarnagar Ch-82', '2110070005', '1', '1', 'upload_files/candidate_tracker/49575390674_02af8222-8667-408b-b1e9-e8533dba7557.pdf', NULL, '1', '2021-10-11', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Not okay with Package and Bond', '2', '1', '0', '1', '1', '0', '2', '2021-10-13', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 04:00:28', 1, '2021-10-07 04:11:35', 0, NULL, 1),
(6518, 'vigneshwaran g', '23', '6383293348', '9629898415', 'vikikivy@gmail.com', '1996-04-29', 25, '2', '2', 'mariyammal g', 'house wife', 25000.00, 1, 2.00, 3.00, 'dindigul', 'dindigul', '2110070006', '1', '2', 'upload_files/candidate_tracker/30267900867_Vignesh - UX_UI DESINGER.pdf', NULL, '1', '2021-10-13', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 04:09:19', 1, '2021-10-07 04:13:59', 0, NULL, 1),
(6519, '', '0', '9629898415', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110070007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-07 04:29:21', 0, NULL, 0, NULL, 1),
(6520, 'Vignesh k', '4', '6374818769', '', 'vigneshspm34@gmail.com', '2001-08-02', 20, '2', '2', 'kumar', 'farmer', 18000.00, 1, 0.00, 10000.00, 'Thiruvarur', 'thiruvarur', '2110070008', '1', '1', 'upload_files/candidate_tracker/36463720908_null.pdf', NULL, '2', '2021-10-07', 0, '', '3', '59', '2021-10-11', 120000.00, '', '3', '2022-06-06', '2', 'Selected for Tanjore Location in cAsh Mode', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-10-07 06:18:55', 60, '2021-10-08 04:46:42', 0, NULL, 1),
(6521, 'Udhayalakshmo', '23', '9884599086', '8939187495', 'Udhayalakshmo004@gmail.com', '1997-02-06', 24, '2', '2', 'Mahalingam', 'Coolie', 10000.00, 3, 10500.00, 13000.00, 'Chennai', 'Chennai', '2110070009', '1', '2', 'upload_files/candidate_tracker/77946832161_ArunKumar.pdf', NULL, '1', '2021-10-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 yr exp in UX designing but not much skilled,not open for the txxampC, not ready to submit the documents. Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-07 11:27:37', 1, '2021-10-11 12:10:54', 0, NULL, 1),
(6522, 'Vidhyasakar', '13', '9092938794', '9976013598', 'vidhyasakar9700@gmail.com', '1997-04-06', 0, '2', '2', 'Gunasekaran', 'Car driver', 15000.00, 5, 0.00, 20000.00, 'Srirangam, Trichy', 'Srirangam, Trichy', '2110080001', '1', '1', 'upload_files/candidate_tracker/37499229933_vidhyasakar resume with reference website-converted.pdf', NULL, '1', '2021-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 07:31:23', 1, '2021-10-08 07:31:31', 0, NULL, 1),
(6523, 'Mouleeswaran', '2', '6369525428', '9942860155', 'mouleesjilla235@gmail.com', '2000-09-26', 21, '2', '2', 'Senniyappan', 'Farmer', 8000.00, 0, 0.00, 20000.00, 'Gobichettipalayam, Erode.', 'Gobichettipalayam, Erode.', '2110080002', '1', '1', 'upload_files/candidate_tracker/92680440025_Moulees Resume.pdf', NULL, '2', '2021-10-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 10:30:51', 1, '2021-10-08 10:43:26', 0, NULL, 1),
(6524, 'gokulnath p', '23', '8056467383', '8870410634', 'gokulmail83@gmail.com', '2000-07-19', 21, '2', '2', 'periasamy p', 'milk secretary', 20000.00, 1, 0.00, 20000.00, 'namakkal', 'urapakkam', '2110080003', '1', '1', 'upload_files/candidate_tracker/28792168894_GOKULNATH_P.pdf', NULL, '1', '2021-10-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Only knowledge in Adobe XD, Figma. Not open to learn new skills of UI, Salary Expectation is very high. Will not sustain with us for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 11:36:54', 1, '2021-10-08 11:50:12', 0, NULL, 1),
(6525, 'Kowsalya.R', '4', '7305556717', '', 'kowsiranganathankowsi@gmail.com', '1999-01-29', 22, '2', '2', 'Panjali', 'Cooli', 20000.00, 5, 10000.00, 13000.00, 'Washermenpet', 'Washermenpet', '2110080004', '3', '2', 'upload_files/candidate_tracker/2805786056_kowsalya.doc', NULL, '1', '2021-10-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'done mcom and prefers non voice and acc and fin job. time being looking for job in voice process. will not sustain. was working in hdb fin for 3m with 10k and expt 12-13k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-08 12:18:02', 1, '2021-10-08 12:38:10', 0, NULL, 1),
(6526, 'Jothi meena.D', '4', '7871600510', '8608844915', 'jothimeena8898@gmail.com', '1998-08-08', 23, '2', '2', 'Dilli babu.M', 'cooli', 15000.00, 1, 10000.00, 12000.00, 'Washermenpet', 'Washermenpet', '2110080005', '3', '2', 'upload_files/candidate_tracker/8601023788_jo.pdf', NULL, '1', '2021-10-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Was Working In Hdb Fin For 3m With 10k And Expt 13-15k. will not handle sales pressure.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-08 12:19:00', 1, '2021-10-08 12:39:10', 0, NULL, 1),
(6527, 'R dhanalakshmi', '4', '8610037180', '7010993014', 'dhanasingam52@gmail.com', '1999-04-14', 22, '2', '1', 'Raja singam', 'Banking', 20000.00, 1, 12000.00, 15000.00, '15000', 'Chennai', '2110080006', '3', '2', 'upload_files/candidate_tracker/23106036133_PDF Gallery_20211008_123842.pdf', NULL, '1', '2021-10-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1 ye exp in calling and 3yr exp in backend. will not suite for sales profile and handle pressure. expt is 13k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-08 12:20:02', 1, '2021-10-08 12:41:37', 0, NULL, 1),
(6528, 'rajesh kanna s', '4', '7402666280', '', 'rajeshkanna10121996@gmail.com', '1996-12-10', 24, '2', '2', 'sankar raj', 'working', 50000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2110080007', '1', '1', 'upload_files/candidate_tracker/31223846459_New RAJESH KANNA CV.pdf', NULL, '1', '2021-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-08 12:56:17', 1, '2021-10-08 12:58:46', 0, NULL, 1),
(6529, 'Abishek s', '22', '9600043264', '9382730876', 'abishek9380@gmail.com', '1999-09-17', 22, '2', '2', 'Sekar', 'Daily wages', 300000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2110080008', '1', '1', 'upload_files/candidate_tracker/30153873957_the new resume.pdf', NULL, '1', '2021-10-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 01:17:03', 1, '2021-10-08 01:25:19', 0, NULL, 1),
(6530, 'Rajesh S', '23', '6369229180', '', 'Rajeshnpl321@gmail.com', '1997-06-11', 24, '2', '2', 'Sundaramoorthy', 'Farmer', 8000.00, 1, 15000.00, 20000.00, 'Jayankondam', 'Chennai', '2110080009', '1', '2', 'upload_files/candidate_tracker/70521388184_Rajesh naukri ui ux.pdf', NULL, '1', '2021-10-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Around 1.9 yrs exp in UX designing,frequent Job changer changed 2 companies and the salary expectation is very high.Not much comfortable with TxxampC,Sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 03:50:28', 1, '2021-10-08 03:55:43', 0, NULL, 1),
(6531, 'sharon.j', '22', '7904894966', '9600196581', 'jeraldxavier1@gmail.com', '1999-08-03', 22, '2', '2', 'jerald', 'none', 30000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2110080010', '1', '1', 'upload_files/candidate_tracker/42530219428_RESUME (1).pdf', NULL, '1', '2021-10-12', 0, '', '3', '59', '2021-10-18', 96000.00, '', '0', NULL, '1', 'Selected for digital Marketing Profile with 6 months intern then 2.6 yrs service overall 3 yrs SA.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 03:55:35', 1, '2021-10-08 04:41:27', 0, NULL, 1),
(6532, 'Ezhilarasan P', '22', '6380993941', '', 'ezhilarasan3139@gmail.com', '1999-09-13', 22, '2', '2', 'palanimuthu', 'nlc employee', 55000.00, 2, 0.00, 350000.00, 'Cuddalore', 'neyveli', '2110080011', '1', '1', 'upload_files/candidate_tracker/3473986223_EZHILARASAN.P.pdf', NULL, '1', '2021-10-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 03:58:18', 1, '2021-10-08 04:23:18', 0, NULL, 1),
(6533, 'S ThambiReddy', '20', '9704105880', '8247486476', 'seelamkiran55@gmail.com', '1999-01-12', 22, '4', '2', 'S. KISHORE REDDY', 'student', 200000.00, 1, 0.00, 25000.00, 'Khammam', 'Khammam', '2110080012', '', '1', 'upload_files/candidate_tracker/97718439897_ThambiReddy Resume (3).pdf', NULL, '2', '2021-10-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate need another 2 months to start his career, His mother is not comfortable to allow him to go for work now.Dropped his profile', '5', '1', '', '3', '4', '', '2', '2021-10-24', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-08 04:07:28', 50, '2021-10-08 04:23:57', 0, NULL, 1),
(6534, 'Saranbose N', '13', '9788484520', '6380213964', 'saranm2211@gmail.com', '1999-05-07', 22, '2', '1', 'K.nageshwaran', 'Farmer', 10000.00, 1, 0.00, 50000.00, 'Virudhunagar', 'Virudhunagar', '2110080013', '1', '1', 'upload_files/candidate_tracker/47050937949_SARAN RESUME-2.pdf', NULL, '1', '2021-10-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-08 05:39:49', 1, '2021-10-08 05:57:53', 0, NULL, 1),
(6535, 'mohamed tawfeek', '22', '6374735696', '', 'tawfeek37988@gmail.com', '1998-04-15', 23, '2', '2', 'abdul rahman', 'business', 25000.00, 0, 0.00, 18000.00, 'thanjavur', 'chennai', '2110090001', '1', '1', 'upload_files/candidate_tracker/23086191424_Tawfeek-Resume.pdf.pdf', NULL, '1', '2021-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-09 09:12:40', 1, '2021-10-09 09:22:55', 0, NULL, 1),
(6536, 'Sivasakthi.m', '20', '9360437367', '9597390066', 'sivasakthi72767@gmail.com', '1999-05-30', 22, '1', '2', 'Shanthi (mother)', 'House wife', 20000.00, 2, 10500.00, 13000.00, 'Dharmapuri', 'Vadapalani', '2110090002', '', '2', 'upload_files/candidate_tracker/56471965041_RESUME sivasakthi 2021.docx', NULL, '3', '2021-10-09', 30, '2110090002', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate communciation is Good have Exp in Matrimony Telecall. He is having health issue(Taking treatment for TB. We are dropping this candidate because of the health issue', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-09 09:53:41', 1, '2021-10-09 09:59:10', 0, NULL, 1),
(6537, 'Niraimathi A', '4', '9944481163', '8870730422', 'niraimech3322@gmail.com', '1995-12-20', 25, '3', '2', 'Arokiyasamy S', 'CRC conductor', 10000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2110090003', '', '1', 'upload_files/candidate_tracker/84947986930_My resume.pdf', NULL, '1', '2021-10-09', 0, '', '3', '59', '2021-10-11', 120000.00, '', NULL, '2025-01-18', '2', 'Selected for Thanjavur Location in Cash mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-10-09 11:05:15', 60, '2021-10-09 05:42:06', 0, NULL, 1),
(6538, 'Amarnath p', '4', '8489391174', '9952711123', 'Amarnathpklr19@gmail.com', '1998-02-19', 23, '1', '2', 'Perumal', 'former', 15000.00, 1, 12000.00, 18000.00, 'Krishnagiri', 'kodampakkam', '2110090004', '', '2', 'upload_files/candidate_tracker/38545278249_RESUME-NEW-converted (4) (1)-converted-2.docx', NULL, '2', '2021-10-09', 0, 'P522', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-09 12:55:47', 1, '2021-10-09 01:16:03', 0, NULL, 1),
(6539, '', '0', '6380150549', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-09 01:57:57', 0, NULL, 0, NULL, 1),
(6540, 'Vignesh waran', '22', '8248575730', '', 'vigneshvicky220399@gmail.com', '1999-03-22', 22, '2', '2', 'Venkatesan', 'madipakkam chennai', 2.60, 2, 0.00, 1.50, 'madipakkam', 'madipakkam', '2110090006', '1', '1', 'upload_files/candidate_tracker/30365427853_Vignesh - Resume.pdf', NULL, '1', '2021-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-09 03:36:15', 1, '2021-10-09 03:43:48', 0, NULL, 1),
(6541, 'Rahul R', '22', '7010845733', '', 'rahulravi877@gmail.com', '2000-07-15', 21, '2', '2', 'Ravi', 'Wireman', 30000.00, 1, 0.00, 200000.00, '42/40, Ponniamman Kovil Street, Kottur', '42/40, Ponniamman Kovil Street, Kottur', '2110090007', '1', '1', 'upload_files/candidate_tracker/89601607829_Rahul01.pdf', NULL, '1', '2021-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-09 03:49:20', 1, '2021-10-09 03:55:00', 0, NULL, 1),
(6542, 'Kaviya', '4', '8056751596', '', 'Kaviyaasokan8056@gmail.com', '1999-06-15', 22, '4', '2', 'Asokan', 'Coli', 20000.00, 3, 12500.00, 10500.00, '3276,arulantha nagar pudukottai road, thanjavur', '3276,arulanthan nagar pudukottai road, thanjavur', '2110090008', '', '2', 'upload_files/candidate_tracker/74050827980_Kaviya RESUME-1.pdf', NULL, '3', '2021-10-09', 1, '', '3', '59', '2021-10-11', 126000.00, '', '4', '2022-03-09', '2', 'Selected for Thanjavur Location in Cash mode.Not much relevant Exp,she has experiences working in chennai,due to health condition. she focus in her native location', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-10-09 05:30:48', 60, '2021-10-11 09:57:04', 0, NULL, 1),
(6543, 'BHARATH.R', '22', '8610350472', '', 'bharathram0699@gmail.com', '1999-06-11', 22, '2', '2', 'Ramar.G', 'Business', 200000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2110090009', '1', '1', 'upload_files/candidate_tracker/65064223505_CV MIN.pdf', NULL, '1', '2021-10-11', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'No response from candidate', '2', '1', '0', '1', '1', '0', '2', '2021-10-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-09 05:47:46', 1, '2021-10-09 05:59:34', 0, NULL, 1),
(6544, '', '0', '9566198164', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110090010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-09 06:48:02', 0, NULL, 0, NULL, 1),
(6545, 'Azhagumeena. T', '4', '9344065393', '', 'Ksaravanan53@gmail.com', '1995-10-15', 25, '3', '1', 'S. T. Thangathiruppathi', 'Working on Re showroom', 20000.00, 1, 0.00, 12000.00, 'Manavalanagar', 'Manavalanagar', '2110110001', '', '1', 'upload_files/candidate_tracker/81360557223_saravanan Copy.pdf', NULL, '1', '2021-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '6', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-11 09:39:38', 1, '2021-10-11 10:23:10', 0, NULL, 1),
(6546, '', '0', '9994224859', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110110002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-11 11:16:59', 0, NULL, 0, NULL, 1),
(6547, '', '0', '9551881658', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110110003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-11 01:42:29', 0, NULL, 0, NULL, 1),
(6548, 'Deepika T', '5', '6379010979', '8825515372', 'deepupapa7@gmail.com', '2000-04-03', 21, '1', '2', 'R. Thiyagarajan', 'Cooli', 8000.00, 2, 0.00, 19000.00, 'No 43/16 vadivel street , Perambur chennai 600011', 'Chennai', '2110120001', '', '1', 'upload_files/candidate_tracker/49827592115_5_6102886362812252955.pdf', NULL, '1', '2021-10-12', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok but the candidate much prefer for non voice only, will not suits for our sakes.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-12 10:32:06', 1, '2021-10-12 10:36:39', 0, NULL, 1),
(6549, '', '0', '8489132842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110120002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-12 01:13:41', 0, NULL, 0, NULL, 1),
(6550, 'sanjay kumar', '6', '9677202376', '', 'ksanjay02444@gmail.com', '2006-10-13', 0, '2', '2', 'dhanapal', 'technician', 30000.00, 1, 0.00, 12000.00, 'perungudi', 'perungudi', '2110130001', '1', '1', 'upload_files/candidate_tracker/18204096999_RESUME -converted.pdf', NULL, '1', '2021-10-13', 0, '', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'Not Fit', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-13 09:57:55', 1, '2021-10-13 10:01:58', 0, NULL, 1),
(6551, '', '0', '8098986153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 10:23:06', 0, NULL, 0, NULL, 1),
(6552, 'Ebin Joe', '2', '8754275427', '9344456280', 'ebin.joe14@gmail.com', '1998-04-21', 23, '2', '2', 'lali c', 'driver', 18000.00, 2, 0.00, 3500.00, 'Marthdam', 'Marthdam', '2110130003', '1', '1', 'upload_files/candidate_tracker/30976331455_Ebin-Resume2.pdf', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Mern stack, not open for our TxxampC, he is comfortable only for 2 yrs of SA.will not suits for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-13 10:53:41', 1, '2021-10-13 08:03:01', 0, NULL, 1),
(6553, 'Venkatesh G', '20', '8778392252', '', 'Venkatessvk07@ggmaill.com', '2000-01-07', 21, '2', '2', 'B.Gopinath', 'Tailor', 84000.00, 2, 10500.00, 15000.00, 'Chennai', 'chennai', '2110130004', '1', '2', 'upload_files/candidate_tracker/77584906912_NU720021026056396__Eticket.pdf', NULL, '1', '2021-10-13', 7, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'completed his bsw, no listening and understanding, will not suite for our process, expt is 15k', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-13 11:01:09', 50, '2021-10-13 11:49:23', 0, NULL, 1),
(6554, 'SAKTHIGURUCHITRA M', '4', '7339672765', '8428957197', 'ashaguru13@gmail.com', '1995-04-30', 26, '2', '2', 'MARIMUTHU K', 'Cooli', 15000.00, 1, 0.00, 15000.00, 'Srivilliputtur, Virudhunagar District', 'Adyar, Chennai', '2110130005', '1', '1', 'upload_files/candidate_tracker/98359872884_SAKTHIGURUCHITRA M.pdf', NULL, '1', '2021-10-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'completed her LLb waiting for her placement, doing her online process and will not sustain bcoz expt is 13k min. has 1yr exp in acc opening 15k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-13 11:13:25', 50, '2021-10-13 11:49:36', 0, NULL, 1),
(6555, 'Parvathi. S', '4', '8939581953', '9176840189', 'parvathisathiya3@gmail.c', '1999-12-10', 21, '2', '2', 'Sathiyaseelan', 'Sale Manager, Sale Executive', 20000.00, 0, 18000.00, 20000.00, '33A,7th cross street, V.O.C Nagar, Chennai - 81', '33A,7th Cross Street, V.O.C Nagar, Tondiarpet,', '2110130006', '16', '2', 'upload_files/candidate_tracker/9311063648_CV_2021-08-05-092024.pdf', NULL, '1', '2021-10-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'attitude is not upto the level, no sustainability, 3m in spa and 3m in hdfs absconded due to over pressure. she will not handle sales pressure.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-13 11:16:18', 8, '2021-10-13 12:48:08', 0, NULL, 1),
(6556, 'SASIKALA', '4', '8925131360', '8056960575', 'Sharmicutegal09@Gmail.com', '2002-04-25', 19, '2', '2', 'Thiyagu', 'Telecalling', 20000.00, 0, 17000.00, 17000.00, 'Tondiarpet', 'Tondiarpet', '2110130007', '16', '2', 'upload_files/candidate_tracker/21715363952_sharmi rakesh.docx', NULL, '1', '2021-10-13', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'during interview was looking in to mobile and using it. will not suite for us and age is 19 and not completed 12th, no sustainability.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-13 11:17:10', 8, '2021-10-13 12:47:53', 0, NULL, 1),
(6557, 'Suganya.E', '4', '8940523047', '', 'Suganyaelangovan19@gmail.com', '1993-04-19', 28, '3', '2', 'Elangovan', 'Security', 10000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2110130008', '', '1', 'upload_files/candidate_tracker/71820983025_Resume Suganya.pdf', NULL, '1', '2021-10-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-13 11:25:07', 1, '2021-10-13 11:45:33', 0, NULL, 1),
(6558, '', '0', '8939581952', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 11:28:03', 0, NULL, 0, NULL, 1),
(6559, '', '0', '9094673311', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 12:41:28', 0, NULL, 0, NULL, 1),
(6560, '', '0', '9710207007', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 12:47:34', 0, NULL, 0, NULL, 1),
(6561, '', '0', '9360958103', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110130012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-13 01:00:40', 0, NULL, 0, NULL, 1),
(6562, 'Shajith Anwar. M', '4', '6385487905', '', 'Shajithanwar786@gmail.com', '2000-08-04', 21, '2', '2', 'Mohamed Ismail. M', 'Farmer', 15000.00, 2, 0.00, 16000.00, 'Tirunelveli', 'Singaperumal kovil', '2110130013', '3', '1', 'upload_files/candidate_tracker/32251259589_ArunKumar.pdf', NULL, '1', '2021-10-13', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Salary Not Satisfied\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-13 01:35:10', 1, '2021-10-13 02:38:21', 0, NULL, 1),
(6563, 'Divya Bharathi J', '4', '7094140067', '9159448942', 'umabharathi9159@gmail.com', '1996-01-03', 25, '2', '2', 'Jayakumar R', 'BCA', 30000.00, 1, 18000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2110140001', '14', '2', 'upload_files/candidate_tracker/36837690096_Copy of Divya Bharathi Resume - Updated.docx', NULL, '2', '2021-10-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'already completed two years experience in mutual fund ....insurance related course also completed...not suit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-14 10:08:27', 60, '2021-10-20 04:51:18', 0, NULL, 1),
(6564, 'ROHITH D', '22', '8428950245', '7871078977', 'karthickrohith201097@gmail.com', '2000-09-30', 21, '2', '2', 'k delhibatcha', 'company staff in airliquid', 30000.00, 1, 0.00, 15000.00, 'chromepet', 'chromepet', '2110150001', '1', '1', 'upload_files/candidate_tracker/53554825181_Resume - 2pg.pdf', NULL, '1', '2021-10-15', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Candidate got a job somewhere else', '2', '1', '0', '1', '1', '0', '2', '2021-10-20', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 10:27:07', 1, '2021-10-15 03:09:53', 0, NULL, 1),
(6565, 'Thamim Ansari', '30', '9677381511', '', 'thamimansari6193@gmail.com', '1994-09-05', 27, '1', '2', 'Jafarullah', 'Driver', 25000.00, 2, 18000.00, 24000.00, 'Arakkonam', 'Arakkonam', '2110150002', '', '2', 'upload_files/candidate_tracker/51643519272_Thamim Resume..docx (1)-converted.docx.pdf', NULL, '1', '2021-10-15', 10, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Year Exp In Stock From Arakonnam Location, Second Round Interviewed By Gokul And The Profile Is Reject', '9', '2', '0', '1', '1', '0', '2', '2021-10-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-15 11:00:09', 1, '2021-10-15 11:04:09', 0, NULL, 1),
(6566, 'Raghavendra', '6', '9964636366', '9483558255', 'raghavanh007@gmail.com', '1990-12-26', 30, '1', '2', 'Mallikarjun', 'Field engineer', 20000.00, 5, 22000.00, 25000.00, 'Kalaburagi', 'Kalaburagi', '2110150003', '', '2', 'upload_files/candidate_tracker/29133125211_1 RAGHAVENDRA.docx', NULL, '1', '2021-10-15', 15, '55599', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-15 12:39:13', 1, '2021-10-15 01:00:47', 0, NULL, 1),
(6567, 'Chellapandian. G', '2', '9092097339', '', 'gchella562000@gmail.com', '2000-06-05', 21, '2', '2', 'Govindan', 'Chennai', 18000.00, 2, 0.00, 15000.00, 'Kilkodungalore', 'Kilkodungalore', '2110150004', '1', '1', 'upload_files/candidate_tracker/58263088451_chellapandian_SD_resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 02:01:04', 1, '2021-10-15 02:04:15', 0, NULL, 1),
(6568, 'M PADMA PRIYAN', '2', '8825705769', '', 'mahapriyan21@gmail.com', '2001-08-21', 20, '2', '2', 'V MAHALINGAM', 'MANAGER', 50000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2110150005', '1', '1', 'upload_files/candidate_tracker/16341428960_PADMA PRIYAN.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'From Besant Technologies, Fresher Profile, Not much comfortable with TxxampC. Need to check with his parents', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 04:13:54', 1, '2021-10-16 08:47:31', 0, NULL, 1),
(6569, 'Dhanasekar R', '2', '9384570861', '', 'abidhana93845@gmail.com', '2000-01-06', 21, '2', '2', 'Ramesh. A', 'Driver', 15000.00, 2, 0.00, 20000.00, 'Chengalpat', 'Chrompet', '2110150006', '1', '1', 'upload_files/candidate_tracker/46690587447_New Resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 04:44:43', 1, '2021-10-18 12:10:16', 0, NULL, 1),
(6570, 'Ruffina Mercy', '2', '9962120484', '9551332471', 'ruffinamercy031@gmail.com', '1999-08-31', 22, '2', '2', 'Christhuraj', 'Hospital attender', 12000.00, 2, 0.00, 200000.00, 'Chennai', 'Chennai', '2110150007', '1', '1', 'upload_files/candidate_tracker/96439911243_Resume1_Ruffina.pdf', NULL, '3', '2021-10-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 04:54:35', 1, '2021-10-15 06:00:12', 0, NULL, 1),
(6571, 'Deepak PS', '22', '8072622924', '', 'psdeepak1801@gmail.com', '1998-01-18', 23, '2', '2', 'Solaimalai S', 'Marketing', 400000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2110150008', '1', '1', 'upload_files/candidate_tracker/86147004678_updated cv.pdf', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-15 11:53:12', 1, '2021-10-15 11:57:55', 0, NULL, 1),
(6572, 'S.Thenmozhi', '22', '9940642124', '9940659547', 'thenmozhiraji05@gmail.com', '2000-04-05', 21, '2', '2', 'Subramani', 'Steel polisher', 10000.00, 2, 0.00, 15000.00, 'No:39 hindu Colony, 4th main Road, Puzhuthivakkam', 'No:39,hindu colony,4th main road, puzhuthivakkam', '2110160001', '1', '1', 'upload_files/candidate_tracker/21614033503_Resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 11:23:27', 1, '2021-10-16 11:56:30', 0, NULL, 1),
(6573, 'S NAVEEN', '4', '7904218539', '9500166394', 'naveenwilson710@gmail.com', '2000-10-02', 21, '2', '2', 'K SEKAR', 'Sculpture', 15000.00, 1, 0.00, 10000.00, 'No,18 4th Street Kamaraj nagar Ennore chennai 57', 'No,18 4th Street Kamaraj Nagar Ennore Chennai 57', '2110160002', '1', '1', 'upload_files/candidate_tracker/33340633189_naveen resume(1) pdf.pdf', NULL, '1', '2021-10-16', 0, '', '3', '59', '2021-11-01', 120000.00, '', '3', '2021-10-28', '2', 'Selected for Muthu team in cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent - Joined on 27Oct,but absconded from the next Day', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-10-16 11:42:15', 60, '2021-10-29 10:21:39', 0, NULL, 1),
(6574, 'M. Gayathri', '4', '7010173615', '7338873556', 'gai3m98@gmail.com', '1998-04-22', 23, '1', '2', 'D. Murugan', 'Electrician', 12000.00, 0, 10000.00, 12000.00, 'No:181/16, 87th street, SivaK. K. Nagar, C', 'No: 181/16, 87th s K. K. Nagar, Chennai -78', '2110160003', '', '2', 'upload_files/candidate_tracker/50605479159_My Resume.pdf', NULL, '1', '2021-10-16', 0, 'Jobs', '3', '59', '2021-10-18', 126000.00, '', '2', '1970-01-01', '2', 'Selected for Muthu Team in Cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail sent - Not Joined ,no Response to the calls,Tried couple of times', '', '', '', NULL, NULL, NULL, 1, '2021-10-16 12:49:46', 60, '2021-10-29 10:45:47', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6575, 'Sowmiya.D', '4', '7338873556', '8270686833', 'Sowmidaanu@gmail.com', '2000-05-31', 21, '1', '2', 'S.deenadhayalan', 'Eletrition', 10000.00, 1, 11000.00, 12000.00, 'No 2 b block nakkiran Nagar tyenampet Chennai 18', 'No 2 b block Nakkiran Nagar tyenampet Chennai 18', '2110160004', '', '2', 'upload_files/candidate_tracker/14040116909_ArunKumar.pdf', NULL, '1', '2021-10-16', 0, 'JOBS', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hold on long pending', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-16 12:51:26', 60, '2021-10-16 03:56:01', 0, NULL, 1),
(6576, '', '0', '8124126085', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-16 12:54:57', 0, NULL, 0, NULL, 1),
(6577, 'KASEELAN A', '23', '9551645737', '9003112908', 'kaseelankavi@gmail.com', '2000-04-24', 21, '4', '2', 'ARUMUGAM M', 'Daily vacanger', 10000.00, 3, 0.00, 13000.00, 'Villupuram', 'Chennai', '2110160006', '', '1', 'upload_files/candidate_tracker/75418904855_KASEELAN A Resume1.pdf', NULL, '1', '2021-10-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Attitude is not good,Will not sustain and handling pressure doubtful', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-16 01:01:03', 1, '2021-10-16 01:05:15', 0, NULL, 1),
(6578, 'parthiban k', '11', '8682811643', '7538862950', 'k.parthiban96@gmail.com', '1996-08-17', 25, '2', '2', 'kamalakannan r', 'wireman at electricity department', 45000.00, 1, 0.00, 20000.00, 'puducherry', 'puducherry', '2110160007', '1', '1', 'upload_files/candidate_tracker/54974987998_parthiban resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 01:14:02', 1, '2021-10-16 05:43:16', 0, NULL, 1),
(6579, 'Sangeetha s', '4', '8124160885', '7092020359', 'Vijayjai50@gmail.com', '1998-04-05', 23, '1', '2', 'T subramani', 'Eletrition', 6500.00, 1, 11000.00, 12000.00, 'No.1, Vikramadityan street,. Soolaipallam, M.G.R.', 'Chennai', '2110160008', '', '2', 'upload_files/candidate_tracker/47858746781_APWPT5724P_Q3_2021-22 P THIYAGARAJAN.pdf', NULL, '1', '2021-10-16', 0, 'JOBS', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'NOT FIT FOR TELESALES', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-16 01:19:43', 1, '2021-10-16 01:41:40', 0, NULL, 1),
(6580, 'Vishwa priya', '11', '8248644808', '', 'vishwapriya251298@gmail.com', '1999-07-25', 22, '2', '2', 'Selvam', 'Real estate', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Voc street ponni nagar karambakkam Porur Chennai', '2110160009', '1', '1', 'upload_files/candidate_tracker/83260904072_RESUME- Vishwapriya.pdf', NULL, '1', '2021-10-18', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '2', 'Communication is not good. will not suite for hr profile', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 03:03:31', 1, '2021-10-16 03:09:46', 0, NULL, 1),
(6581, 'Kishore B', '11', '7708560108', '', 'kishoresrb@gmail.com', '1999-11-15', 21, '2', '2', 'Balakrishnan S R', 'Manager', 35000.00, 0, 0.00, 175000.00, 'Madurai', 'Madurai', '2110160010', '1', '1', 'upload_files/candidate_tracker/71715712228_Kishore15_Resume.pdf', NULL, '1', '2021-10-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 03:59:13', 1, '2021-10-16 04:03:41', 0, NULL, 1),
(6582, 'DHAMODHARAN.C', '2', '9787980474', '8310493972', 'dhamodharan.92rrk@gmail.com', '1992-11-22', 28, '2', '2', 'Chinnappa R', 'Farmer', 120000.00, 1, 0.00, 13000.00, 'Arrakonam - native', 'Chennai', '2110160011', '1', '1', 'upload_files/candidate_tracker/61059894445_CV-Dhamu new_093507.doc', NULL, '1', '2021-10-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,2015 passed out, Worked in different domain, Not much comfortable with TxxampC,Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 04:52:20', 1, '2021-10-16 05:13:15', 0, NULL, 1),
(6583, 'Jesher T', '11', '7358279370', '8667279211', 'Jesherockz52@gmail.com', '1995-11-25', 25, '2', '2', 'Timothy Chavan C', 'Store Incharge', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2110160012', '1', '1', 'upload_files/candidate_tracker/41118150761_Jesher T Resume (1).pdf', NULL, '1', '2021-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Is Ok, Fresher, Open For The TxxampC, 5050 Profile,Came Along With His Friend.Seems doubtful on the joining ,sustainability doubts ', '6', '1', '0', '1', '3', '0', '2', '2021-10-20', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 06:31:51', 1, '2021-10-16 09:15:42', 0, NULL, 1),
(6584, 'Sowmiya Arumugam', '4', '9361396609', '9500923187', 'Sowmiamutha26@gmail.com', '2000-06-26', 21, '4', '2', 'Amutha Arumugam', 'House wife', 4000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Kumbakonam', '2110160013', '', '1', 'upload_files/candidate_tracker/90533646322_sowmiya Arumugam.docx', NULL, '2', '2021-10-16', 0, '', '3', '59', '2021-10-25', 126312.00, '', '', '1970-01-01', '1', 'Selected for Thanjavur, joining date may change. Candidate yet to confirm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Yet to release,Candidate on Hold as she requesting for joining post Diwali', '', '', '', NULL, NULL, NULL, 1, '2021-10-16 06:58:57', 60, '2021-10-23 06:44:03', 0, NULL, 1),
(6585, 'Henna Fathima K', '11', '9710423292', '7305686986', 'Hennafathima0212@gmail.com', '1995-12-02', 25, '2', '2', 'M K Khamruddin', 'Tailor', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2110160014', '1', '1', 'upload_files/candidate_tracker/74381653728_Henna Fathima K.pdf', NULL, '1', '2021-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Is Good, Fresher, Open For The TxxampC, But The Location Is Almost 30 KMS Up And Down.Seems candidate will join mostly if his friend joins too', '6', '1', '0', '1', '3', '0', '2', '2021-10-20', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-16 09:21:34', 1, '2021-10-16 09:25:23', 0, NULL, 1),
(6586, 'Jemima Roseline', '4', '6379482349', '', 'Jemitherock1812@gmail.com', '2000-12-18', 20, '2', '2', 'Kaniselvi', 'Business', 20000.00, 2, 15000.00, 20000.00, 'Poonamallee', 'Poonamallee', '2110180001', '16', '2', 'upload_files/candidate_tracker/45240016371_JosephBIO.pdf', NULL, '1', '2021-10-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for crm', '1', '2', '0', '1', '1', '0', '2', '2021-10-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 10:39:54', 1, '2021-10-18 10:58:56', 0, NULL, 1),
(6587, 'S. Dharani', '4', '7395956509', '8189952337', 'dharanishoba078@gmail.com', '2001-08-07', 20, '1', '2', 'D. Srinivasan', 'Coolie', 8000.00, 1, 0.00, 12000.00, 'Avadi', 'Avadi', '2110180002', '', '1', 'upload_files/candidate_tracker/20985151242_Main-Page-BCA-Content-Syllabus.pdf', NULL, '1', '2021-10-18', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Salary Breakup shared and the candidate messaged as not interested after discussing with her grandparents', '1', '2', '0', '1', '1', '0', '2', '2021-10-23', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:10:18', 1, '2021-10-18 11:23:23', 0, NULL, 1),
(6588, 'R. Keerthana', '4', '9791314476', '6381624246', 'Keerthana7512@gmail.com', '2000-11-05', 20, '1', '2', 'N. Radhakrishnan', 'Electrician', 9000.00, 1, 0.00, 12000.00, 'Avadi', 'Avadi', '2110180003', '', '1', 'upload_files/candidate_tracker/8369501629_Main-Page-BCA-Content-Syllabus.pdf', NULL, '1', '2021-10-18', 0, 'Jobs', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Selected for thiruvallur location but she not joined yet her friend only joined so profile rejected', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:26:10', 1, '2021-10-18 11:30:39', 0, NULL, 1),
(6589, 'MuthuKumar', '11', '7373615415', '', 'kumarmuthumass69@gmail.com', '1999-04-03', 22, '4', '2', 'Parent', 'Operator', 30000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2110180004', '', '1', 'upload_files/candidate_tracker/54916402711_MUTHUKUMAR.pdf', NULL, '1', '2021-10-18', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'coming from cuddalore. No english communication will not syuite for our profile', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:27:25', 1, '2021-10-18 11:35:03', 0, NULL, 1),
(6590, 'Lakshmipathi', '11', '7010407468', '8870311946', 'lakshmanan21599@gmail.com', '1999-05-21', 22, '4', '2', 'Parent', 'Farmer', 30000.00, 1, 0.00, 15000.00, '1/115,Gangai Amman temple Street,kiliyanur.', 'KILIYANUR', '2110180005', '', '1', 'upload_files/candidate_tracker/19010356234_lakshman.docx', NULL, '1', '2021-10-18', 0, '', '5', '41', NULL, 0.00, '', '0', NULL, '1', 'coming from pond. will not suite for our Profile. no communication', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:29:49', 1, '2021-10-18 11:39:54', 0, NULL, 1),
(6591, 'Vijayalakshmi', '14', '9042281126', '9080609573', 'Linleyviji1996@gmail.com', '1998-06-26', 23, '2', '2', 'Raja', 'Car taxi driver', 20000.00, 0, 0.00, 15000.00, 'T.nagar', 'T.nagar', '2110180006', '16', '2', 'upload_files/candidate_tracker/68305128718_Job Description - HR Trainee (1) (1) (3).docx', NULL, '1', '2021-10-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'looking for job in chat support, not interested in calling.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:53:13', 1, '2021-10-18 12:15:35', 0, NULL, 1),
(6592, 'Malini.M', '14', '9361314120', '', 'maalny143@gmail.com', '2000-12-15', 20, '2', '2', 'Manoharan.S', 'Vegetable shop', 70000.00, 1, 0.00, 15000.00, 'Mylapore', 'Chennai', '2110180007', '16', '2', 'upload_files/candidate_tracker/45492214666_My CV.pdf', NULL, '1', '2021-10-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for job in IT-android, expt is 18k. not interested in calling.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 11:55:25', 1, '2021-10-18 12:00:36', 0, NULL, 1),
(6593, 'B.Nethaji', '6', '8667597275', '9791931523', 'bnethaji0500@gmail.com', '2000-03-26', 21, '2', '2', 'Babu', 'Driver', 30000.00, 7, 13500.00, 20000.00, 'Arakkonam', 'Arakkonam', '2110180008', '16', '2', 'upload_files/candidate_tracker/38146066598_Nethaji resume-1.docx', NULL, '1', '2021-10-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for job in collection and not interested in calling.', '5', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 12:06:44', 1, '2021-10-18 12:16:33', 0, NULL, 1),
(6594, '', '0', '9962349268', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110180009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-18 12:56:15', 0, NULL, 0, NULL, 1),
(6595, 'gayathri', '4', '9566220831', '', 'gayathrigayathri05683@gmail.com', '2000-07-18', 21, '2', '2', 'narayanan', 'pwd', 25000.00, 1, 0.00, 10000.00, 'chennai', 'triplicane', '2110180010', '1', '1', 'upload_files/candidate_tracker/35006306388_gayathri.pdf', NULL, '1', '2021-10-18', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold On Long Pending', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-18 12:56:17', 1, '2021-10-18 03:20:20', 0, NULL, 1),
(6596, '', '0', '9962378559', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110180011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-18 12:56:44', 0, NULL, 0, NULL, 1),
(6597, 'Sambhavi', '11', '8056005077', '9952250025', 'sambhavimohan@gmail.com', '1992-05-27', 29, '2', '1', 'Arun', 'Software Engineer', 45000.00, 1, 12000.00, 18000.00, 'Kodambakkam', 'Kodambakkam', '2110180012', '1', '2', 'upload_files/candidate_tracker/79183186410_Sambhavi CV (Exp) 1.docx', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Exp In Recruitment, Career Gap, Not Much Comfortable With TxxampC ,Seems Little Attitude,Min Exp Is 15K,Not much comfortable with Terms and conditions. Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', '2021-10-25', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 01:13:15', 1, '2021-10-18 01:23:31', 0, NULL, 1),
(6598, 'deepika a', '11', '9445329982', '', 'shreedeepika24@gmail.com', '1996-08-24', 25, '2', '2', 'ajayakumar a', 'supervisor', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2110180013', '1', '1', 'upload_files/candidate_tracker/77706749865_accendeepika.docx', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 03:41:43', 1, '2021-10-18 04:01:49', 0, NULL, 1),
(6599, 'Azmi D', '23', '9003239838', '9094445088', 'Azmiswetha@gmail.com', '1997-12-01', 23, '2', '2', 'M.S.Densi', 'Building construction', 35000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2110180014', '1', '1', 'upload_files/candidate_tracker/48131521515_Azmi.D Graphic Designing Resume-1.pdf', NULL, '1', '2021-10-21', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Not Interested in learning coding.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 04:04:43', 1, '2021-10-18 04:18:05', 0, NULL, 1),
(6600, 'SAFICK AHAMED.s', '23', '7339422143', '7904698573', 'safickahamed1101@gmail.com', '1999-01-11', 22, '2', '2', 'Buhari', 'Business', 20000.00, 2, 0.00, 14000.00, 'Thanjavur', 'Chennai, Triplicane', '2110180015', '1', '1', 'upload_files/candidate_tracker/6648208434_safickresume1.pdf', NULL, '1', '2021-10-21', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'candidate task not satisfactory.', '2', '1', '0', '1', '3', '0', '2', '2021-10-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 04:10:01', 1, '2021-10-18 04:21:53', 0, NULL, 1),
(6601, '', '0', '6380399208', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110180016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-18 05:30:31', 0, NULL, 0, NULL, 1),
(6602, 'Manikandan U', '11', '9514520091', '6383168362', 'manikandanu885@gmail.com', '1998-04-06', 23, '2', '2', 'Udayakumar', 'Lic agent', 25000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2110180017', '1', '1', 'upload_files/candidate_tracker/57867341817_Mani resume-1.pdf', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 06:05:29', 1, '2021-10-18 06:07:52', 0, NULL, 1),
(6603, 'Dhivya.P', '11', '9840774316', '9840412200', 'dhivya23041998@gmail.com', '1998-04-23', 23, '3', '2', 'Paneer selvam', 'Business', 120000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2110180018', '', '1', 'upload_files/candidate_tracker/78195866844_RESUME DHIVYA.P 2021.pdf', NULL, '1', '2021-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher For HR, Communication Ok, Being Fresher Her Salary Exp Min 15k Can Come Down To 13K.Max 2 Yrs Ok With TxxampC. No Parents ,Grandparents Insisting Her To Take Care Of Their Business.5050 Profile. From Porur She Needs To Travel.Sustainability doubts as she may get marry before 2 years', '6', '1', '0', '1', '1', '0', '2', '2021-10-20', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-18 06:27:52', 1, '2021-10-19 11:29:49', 0, NULL, 1),
(6604, 'Rajkumar.R', '23', '8489855609', '', 'rajrb2807@gmail.com', '2000-07-28', 21, '2', '2', 'Rajendran', 'Farmer', 5000.00, 5, 0.00, 15000.00, 'Kallanatham', 'Kallanatham', '2110180019', '1', '1', 'upload_files/candidate_tracker/88085706385_Rajkumar\'s Resume.pdf', NULL, '1', '2021-10-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic design skill knowledge, he needs time to learn a lot in UI/UX,If candidate comes back we can check and decide', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-18 09:11:10', 1, '2021-10-20 04:24:15', 0, NULL, 1),
(6605, 'Charulatha.V', '3', '7358613197', '9840515852', 'charu09072001@gmail.com', '2001-07-09', 20, '2', '2', 'Venugopal.m Sathya.v', 'Voice process', 10000.00, 1, 0.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2110190001', '1', '1', 'upload_files/candidate_tracker/91642113380_V.CHARULATHA.docx', NULL, '1', '2021-10-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-19 11:17:16', 1, '2021-10-19 11:31:52', 0, NULL, 1),
(6606, '', '0', '7397382893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110190002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-19 11:24:09', 0, NULL, 0, NULL, 1),
(6607, 'Richard James Williams', '6', '8778049413', '9790757720', 'rebecahmercy@gmail.com', '1995-07-09', 26, '3', '2', 'Devsingh', 'B.e civil', 30000.00, 1, 0.00, 15000.00, 'A.p1733,102 street ,14 sector,k.knagar,Chennai-788', 'Chennai', '2110190003', '', '1', 'upload_files/candidate_tracker/56449433750_Resume -Richard - New.docx', NULL, '1', '2021-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suits for our Sales profile. candidate focusing towards his own business. Will not sustain and handle the pressure.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-19 11:28:26', 1, '2021-10-19 11:35:29', 0, NULL, 1),
(6608, '', '0', '9080863736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-19 06:38:43', 0, NULL, 0, NULL, 1),
(6609, '', '0', '9176154102', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110190005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-19 07:02:18', 0, NULL, 0, NULL, 1),
(6610, '', '0', '8870705785', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-19 09:33:58', 0, NULL, 0, NULL, 1),
(6611, 'sivaneshwaran', '2', '8531966007', '6383303910', 'sivaneshwaran74@gmail.com', '1999-12-14', 21, '2', '2', 'rajkumar', 'farmer', 15000.00, 1, 0.00, 15000.00, 'adyar', 'adyar', '2110200001', '1', '1', 'upload_files/candidate_tracker/63934814054_Sivaneshwaran.doc', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Candidate seems not much active, will not sustain and handling pressure doubtful.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 06:32:56', 1, '2021-10-20 07:26:30', 0, NULL, 1),
(6612, 'prakash', '2', '8056986294', '6383303910', 'rprakashtmk@gmail.com', '1999-04-25', 22, '2', '2', 'ramachandhran', 'farmer', 16000.00, 1, 0.00, 15000.00, 'ashok pillar', 'ashok pillar', '2110200002', '1', '1', 'upload_files/candidate_tracker/89879553151_prakash resume.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Besant Tech Candidate, Not much open for TxxampC. Cousins are working in IT companies and have some reference too in their companies. Sustainability doubts with us on this profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 07:31:27', 1, '2021-10-20 07:36:24', 0, NULL, 1),
(6613, 'hariharan', '2', '9360777261', '8056986294', 'hariharanmech1212@gmail.com', '1999-08-02', 22, '2', '2', 'kannappan', 'farmer', 15000.00, 1, 0.00, 18000.00, 'chennai', 'channai', '2110200003', '1', '1', 'upload_files/candidate_tracker/2982271060_Hariharan_Resume.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Not open with TxxampC, Need time to check with family, if he comes back will make changes', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 08:44:00', 1, '2021-10-20 08:53:22', 0, NULL, 1),
(6614, 'Samiullahkhan', '23', '9962307597', '6379431195', 'ksami9812@gmail.com', '1995-12-12', 25, '2', '2', 'Subhan Khan', 'Unemployed', 25000.00, 0, 0.00, 15000.00, 'Nanganallur', 'Nanganallur', '2110200004', '1', '1', 'upload_files/candidate_tracker/66915821310_Resume.docx', NULL, '1', '2021-10-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in UI/UX will not sustain and not suitable for our position. Pressure handling no', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 10:22:45', 1, '2021-10-20 10:26:23', 0, NULL, 1),
(6615, 'm.sugana', '4', '7358200713', '7708719712', 'sugana1000@gmail.com', '1993-10-25', 27, '3', '1', 'v.sedhuraman', 'nope', 30000.00, 2, 13000.00, 14000.00, 'sevvapet', 'sevvapet', '2110200005', '', '2', 'upload_files/candidate_tracker/80506488594_SUGANA RESUME.pdf', NULL, '1', '2021-10-20', 0, '', '3', '59', '2021-11-01', 144000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location,joining date may change as the candidate requesting for joining post Diwali', '1', '1', '', '1', '1', '', '2', '2021-10-22', '1', '9', 'Offer yet to release,joining date to be confirmed travelling to native', '', '', '', NULL, NULL, NULL, 1, '2021-10-20 10:33:30', 60, '2021-10-23 06:22:33', 0, NULL, 1),
(6616, 'Y Gopinath', '11', '8248794578', '', 'gopinath16sep97@gmail.com', '1997-09-16', 24, '2', '2', 'Yuvaraj', 'Metro water', 50000.00, 1, 0.00, 15000.00, 'No14 4th main road m.g.r nagar', 'Velachery', '2110200006', '1', '1', 'upload_files/candidate_tracker/64262513029_Gopinath resume.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,Bad Attitude,No patience,will not fit for our position - Gokul Interviewed him in the 2nd level', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-20 11:30:59', 1, '2021-10-20 11:38:30', 0, NULL, 1),
(6617, 'Sivaprakash', '2', '8220206324', '', 'Prakashva98@gmail.com', '1998-12-27', 22, '2', '2', 'N kumar', 'Customs officer', 40000.00, 1, 0.00, 15000.00, 'Chidambaram', 'Thoraipakkam', '2110200007', '1', '1', 'upload_files/candidate_tracker/29340427574_resume.docx', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Career Gap 2019 Passed out Focusing much for Angular JS Profile. Not much comfort with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 11:59:35', 1, '2021-10-20 12:03:55', 0, NULL, 1),
(6618, 'Dineshkumar R', '22', '9092896419', '7010971595', 'dinesh1132171@gmail.com', '2000-03-13', 21, '2', '2', 'Mom', 'Tailor', 120000.00, 1, 0.00, 100000.00, 'Redhills,Chennai-52', 'Redhills, Chennai-52', '2110200008', '1', '1', 'upload_files/candidate_tracker/73441313624_DINESHKUMAR resume-1.0(1).pdf', NULL, '1', '2021-10-22', 0, '', '8', '69', NULL, 0.00, '', '0', NULL, '2', 'no response from candidate', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 12:31:17', 1, '2021-10-20 12:43:12', 0, NULL, 1),
(6619, '', '0', '9940366722', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-20 12:50:59', 0, NULL, 0, NULL, 1),
(6620, 'Deepak kumar B', '11', '8248846949', '9962772053', 'deepakdhonid7@gmail.com', '1998-11-01', 22, '2', '2', 'Baskar', 'Carpenter', 15000.00, 1, 0.00, 15000.00, 'Chenani', 'Chenani', '2110200010', '1', '1', 'upload_files/candidate_tracker/57098984107_Deepak Kumar B - RESUME mba.docx', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate not interstetd with the TxxampC,Didnt turn back for the 2nd round', '6', '1', '0', '1', '1', '0', '2', '2021-10-25', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 12:54:27', 1, '2021-10-20 12:58:52', 0, NULL, 1),
(6621, 'Arputha kumar', '11', '7010335887', '9092728178', 'arputhakumar24@gmail.com', '1999-04-12', 22, '3', '2', 'P Andavar', 'Coolie', 20000.00, 1, 0.00, 15000.00, 'Dindigul', 'Nungambakkam', '2110200011', '', '1', 'upload_files/candidate_tracker/94156828888_A .Arputha kumar RESUME.pdf', NULL, '1', '2021-10-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-20 01:17:39', 1, '2021-10-20 01:23:11', 0, NULL, 1),
(6622, 'Muthulakshmi', '11', '9176357935', '', 'suresh2795m@gmail.com', '1997-09-10', 24, '2', '2', 'Suresh', 'Business', 40000.00, 1, 14000.00, 14000.00, 'Chennai', 'Chennai', '2110200012', '1', '2', 'upload_files/candidate_tracker/69416184953_Muthulakshmi(1).pdf', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not responding to the calls,requested her to come for 2nd round but didnt turn for the interview', '6', '2', '0', '1', '1', '0', '2', '2021-10-25', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 01:24:04', 1, '2021-10-20 01:30:52', 0, NULL, 1),
(6623, 'JEYAKUMAR THUKKAIYAPPAN', '2', '7539920339', '', 'JEYAKUMAR4097@GMAIL.COM', '2000-04-05', 21, '2', '2', 'Thukkaiyappan.p,eswari.T', 'Business', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2110200013', '1', '1', 'upload_files/candidate_tracker/31956688767_jeyakumar fresher.pdf', NULL, '1', '2021-10-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, not clear on the profile he applied, No basic knowledge in React. AWS/Java Certified. Looking for AWS Cloud based openings in the future, Will not sustain for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 02:08:58', 1, '2021-10-20 02:16:30', 0, NULL, 1),
(6624, 'Bhuvaneshwar', '2', '8925765725', '', 'bhuvaneshwar.cp@gmail.com', '1998-01-19', 23, '2', '2', 'Chellapandian', 'Business', 20000.00, 1, 0.00, 200000.00, 'No:1,Vinayagar 5th Cross Street, Rajaji Nagar', 'No:1,Vinayagar 5th Cross Street, Rajaji Nagar', '2110200014', '1', '1', 'upload_files/candidate_tracker/17563738902_BHUVANESHWARC.pdf', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,no basic skills knowledge will not handle our pressure and sustainability doubts wiht us', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 02:38:04', 1, '2021-10-20 02:41:50', 0, NULL, 1),
(6625, 'Neethu A N', '11', '8072460424', '', 'neethuruby332@gmail.com', '1997-12-06', 23, '2', '2', 'Nithyanandan', 'Business', 100000.00, 1, 120000.00, 200000.00, 'Chennai', 'Chennai', '2110200015', '1', '2', 'upload_files/candidate_tracker/85981940541_Neethu%20ruby%20resume.docx', NULL, '1', '2021-10-22', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Little Exp In Recruitment, Not Much Comfortable With TxxampC Need To Check With Family, Sustainability Doubts, Location S From Padi', '6', '1', '0', '1', '1', '0', '2', '2021-10-25', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 03:00:29', 1, '2021-10-21 09:53:26', 0, NULL, 1),
(6626, 'vijay.s', '2', '9003044067', '', 'vijaysanker55@gmailcom', '1999-01-13', 22, '2', '2', 'parent', 'it job', 25000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2110200016', '1', '1', 'upload_files/candidate_tracker/7031508610_vijay.resume.pdf', NULL, '1', '2021-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,Not much comfortable with TxxampC,Much open for Angular Openings.If he come back need to check and decide', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 03:35:21', 1, '2021-10-24 05:30:20', 0, NULL, 1),
(6627, '', '0', '9698628935', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110200017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-20 05:01:02', 0, NULL, 0, NULL, 1),
(6628, 'Micheal nayaki gowcika', '11', '7868950863', '8940057219', 'sajina2171999@gmail.com', '1999-07-21', 22, '2', '2', 'Sahayam', 'Fisherman', 70000.00, 1, 0.00, 21000.00, '7/697,odai street ,muttom,kanyakumari', 'JMJ convent ,porur', '2110200018', '1', '2', 'upload_files/candidate_tracker/64074522404_Micheal nayaki gowcika .pdf', NULL, '1', '2021-10-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Discussed with the candidate and she is continuing with the same position in NTT (current Package 21K)', '6', '1', '0', '1', '1', '0', '2', '2021-10-26', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-20 05:23:37', 1, '2021-10-20 05:40:31', 0, NULL, 1),
(6629, 'ARUNRAJ S', '23', '9566491326', '8072087968', 'arun95anand@gmail.com', '2006-10-21', 0, '2', '2', 'Selvaraj R', 'Business', 25000.00, 1, 0.00, 15000.00, 'NEYVELI', 'CHENNAI', '2110210001', '1', '1', 'upload_files/candidate_tracker/64959402618_arun raj resume updated.doc', NULL, '1', '2021-10-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-21 09:43:57', 1, '2021-10-21 09:49:42', 0, NULL, 1),
(6630, 'Sandhya P', '7', '8681803655', '7338930536', 'Sandy1142000@gmail.com', '2000-04-11', 21, '3', '2', 'Prakash Babu G', 'Sales man', 15000.00, 1, 12000.00, 13000.00, 'Pattabiram', 'Pattabiram', '2110210002', '', '2', 'upload_files/candidate_tracker/90425808476_Resume_Sandhiya_Format3.pdf', NULL, '1', '2021-10-21', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-21 10:10:28', 1, '2021-10-21 10:20:38', 0, NULL, 1),
(6631, 'E rajesh', '6', '9791157540', '', 'Rajeshe394@gmail.com', '1998-04-19', 23, '1', '2', 'P elumalai', 'Fisherman', 20000.00, 1, 0.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2110210003', '', '1', 'upload_files/candidate_tracker/15215779855_Rajesh Resume.docx', NULL, '1', '2021-10-21', 0, 'P1166', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Discussed and shared the salary breakup for candidate confirmation, Not yet received any confirmation from candidate, Tried reaching him couple of times and no responses. Dropped the candidate from selection', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-21 10:59:19', 1, '2021-10-21 11:29:18', 0, NULL, 1),
(6632, 'Mahesh bollineni', '4', '7395944711', '6369906319', 'bmahesh191997@gmail.com', '1997-09-01', 24, '2', '2', 'Venkateshwarao', 'Business', 25000.00, 1, 13700.00, 14000.00, '9/57/9,raju street, west mambalam,Chennai-33', '9/57/9,Raju Street, West Mambalam,Chennai-33', '2110210004', '1', '2', 'upload_files/candidate_tracker/77829147201_resume_1574786318195.pdf', NULL, '1', '2021-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much comfortable with Tele sales(Voice Process) Salary Exp is high', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-21 11:47:26', 50, '2021-10-21 12:15:43', 0, NULL, 1),
(6633, 'K Chandra sekar', '4', '6369906319', '7200563157', 'chandrsekar15071998@gmail.com', '1998-07-15', 23, '2', '2', 'G karthikeyan', 'Hardware bussiness', 25000.00, 1, 12000.00, 16000.00, 'west saidapet Chennai-600 015', 'West saidapet chennai 600 015', '2110210005', '1', '2', 'upload_files/candidate_tracker/25663309541_chandrasekarrspdf_original.pdf', NULL, '1', '2021-10-21', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication ok, much prefers for non voice and the salary Exp in high', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-21 11:50:33', 50, '2021-10-21 12:15:59', 0, NULL, 1),
(6634, 'P. Divya', '4', '9655974380', '', 'Divyavishamie@gmail.com', '1996-04-03', 25, '2', '1', 'S. P. Saraswathi', 'Electrician', 12000.00, 2, 0.00, 10000.00, 'Thiruttani', 'Thiruttani', '2110210006', '1', '2', 'upload_files/candidate_tracker/17947681006_divya resume.docx', NULL, '1', '2021-10-21', 0, '', '3', '59', '2021-10-27', 120000.00, '', '2', '1970-01-01', '2', 'Selected for Tiruvallur Location,Train travel around 1 hour,not open for SA as Manager requested. Need to analyse her in 7 Days', '1', '2', '', '1', '1', '', '2', '2021-10-23', '2', '3', 'Offer Mail Sent - As discussed with Banu(Area Manager Elite)We dropped her offer as she need to travel a long..Will not sustain for a long.As candidate shows much interest towards the position we released offer earlier', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-21 12:04:41', 60, '2021-10-29 10:19:34', 0, NULL, 1),
(6635, 'Raghul S', '25', '9443169374', '', 'raghulpsg@yahoo.com', '1995-05-16', 26, '2', '2', 'Sekar', 'Driver', 20000.00, 2, 240000.00, 300000.00, 'Perambalur', 'Tnagar', '2110210007', '1', '2', 'upload_files/candidate_tracker/70880789360_Raghul 1 resume.pdf', NULL, '1', '2021-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', ' Have Sales Exp But Seems Not Much Confident,Pressure Handling Doubtful,Candidate Left Without Attending The 2nd Level Interview,If He Comes Back Let Us Check', '8', '1', '', '1', '1', '', '2', '2021-10-22', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-21 12:27:41', 50, '2021-10-21 12:42:47', 0, NULL, 1),
(6636, '', '0', '9123566199', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110210008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-21 01:23:14', 0, NULL, 0, NULL, 1),
(6637, 'Sangapu Venkatesh', '11', '8897043324', '8897382138', 'sangapuvenkatesh97@gmail.com', '1997-08-20', 24, '2', '2', 'Penchalaiah', 'Farmer', 10000.00, 2, 0.00, 300000.00, 'Nellore, Andhra Pradesh', 'ananthanayaki nagar,old washermenpet, chennai', '2110210009', '1', '1', 'upload_files/candidate_tracker/53504225289_resume .docx', NULL, '1', '2021-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Good, have Exp in US IT Recruitment, Native of Andhra, Much focus on HR Executive and not much comfortable with Terms Conditions, Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-21 03:56:48', 1, '2021-10-21 04:06:12', 0, NULL, 1),
(6638, 'Jayaraman V', '2', '7358612051', '', 'jayramvasu73@gmail.com', '1999-07-21', 22, '2', '2', 'Vasu', 'Painter', 20000.00, 1, 0.00, 25000.00, 'Chromepet Chennai', 'Chromepet Chennai', '2110210010', '1', '1', 'upload_files/candidate_tracker/82969281575_Jayaraman V Resume.pdf', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-21 04:11:21', 1, '2021-10-21 04:14:26', 0, NULL, 1),
(6639, '', '0', '7397298051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110210011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-21 05:09:01', 0, NULL, 0, NULL, 1),
(6640, 'Shifra T', '11', '9940260714', '', 'shifra.t.1999@gmail.com', '1999-10-18', 22, '2', '2', 'Thiraviaraj', 'Business', 40000.00, 1, 0.00, 30000.00, 'Tuticorin', 'Tuticorin', '2110210012', '1', '1', 'upload_files/candidate_tracker/3955937628_S Resume.pdf', NULL, '1', '2021-10-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-21 06:25:59', 1, '2021-10-21 06:30:20', 0, NULL, 1),
(6641, 'Srinath. S', '2', '6383810885', '9597307318', 'Srinath2619@gmail.com', '2000-05-26', 21, '2', '2', 'Sankar', 'Business', 40000.00, 1, 0.00, 15.00, 'mogappair west', 'mogappair west', '2110210013', '1', '1', 'upload_files/candidate_tracker/81804946264_SRINATH S resume-11.pdf', NULL, '2', '2021-10-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Keen To Learn ,Have A Plan To Go Abroad For Higher Studies After3 Yrs, Need Time To Give His Confirmation,If He Comes Back Let Us Check And Consider. Candidate didnt turn back for the interview', '2', '1', '', '2', '2', '', '2', '2021-10-26', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-21 09:52:38', 50, '2021-10-25 11:27:53', 0, NULL, 1),
(6642, 'C.pramoth', '4', '9840136985', '9841157030', 'Pramothchinna1605@gmail.com', '2000-05-16', 21, '4', '2', 'A.chinnathambi', 'Plumbing contract', 50000.00, 2, 0.00, 12000.00, 'K.k. nagar', 'K.k nagar', '2110220001', '', '1', 'upload_files/candidate_tracker/30282612981_pramoth.docx', NULL, '1', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Target oriented positions, will not sustain with us', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-22 10:38:14', 1, '2021-10-22 10:48:28', 0, NULL, 1),
(6643, 'abudl kasim', '2', '9524756038', '', 'abdulkasim361998@gmail.com', '1998-06-03', 24, '2', '2', 'abbas', 'hotel', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2110220002', '2', '1', 'upload_files/candidate_tracker/66131879017_abdul kasim.pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '3rd time he appear for the same position,no improvement not strong inthe basic skills Javascript will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-22 10:41:14', 1, '2022-09-22 10:51:33', 0, NULL, 1),
(6644, 'Vishal A M', '11', '9094625457', '9841349858', 'vishalam1998@gmail.com', '1998-05-22', 23, '2', '2', 'Gomathy M', '12th', 20000.00, 0, 240000.00, 350000.00, 'Ayapakkam', 'Chennai', '2110220003', '1', '2', 'upload_files/candidate_tracker/14954811613_Vishal Resume Final PDF.pdf', NULL, '1', '2021-10-25', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Working for 6 months official notice 30 Days. Focusing on the UPSC exams,Salary Exp is very high,Attended interview around 20 Interviews and not comfortable with the pay they offered. Focus much on the salary. Will not sustain with us for a long', '6', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 10:44:24', 1, '2021-10-22 10:47:37', 0, NULL, 1),
(6645, 'Praveen kumar', '4', '6369274241', '6381744858', 'praveenk.0509@gmail.com', '1992-09-05', 29, '2', '2', 'Tamilarasi', 'Tdfc', 30000.00, 1, 14000.00, 15000.00, 'No 1 sivapushnam st vetri nagar ch 82', '23 perumal st egmore ch.8', '2110220004', '1', '2', 'upload_files/candidate_tracker/24005456205_Praveen_K (3).pdf', NULL, '3', '2021-10-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication, no importance for the job, career Gap.Not having any clear ideas whether to step in voice/non voice. Will not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-22 10:50:26', 50, '2021-10-22 11:04:53', 0, NULL, 1),
(6646, '', '0', '7639578041', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110220005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-22 11:01:01', 0, NULL, 0, NULL, 1),
(6647, 'Prasanna venkatesh', '11', '9962912333', '', 'Prasanna.pv26@gmail.com', '1999-09-18', 22, '2', '2', 'Priyadhrasanan', 'Ex railways', 200000.00, 1, 0.00, 200000.00, 'No24 Narayan mastri 1st Villivakkam Chennai 49', 'No24 Narayan mastri 1st Villivakkam Chennai 49', '2110220006', '1', '1', 'upload_files/candidate_tracker/63493998418_0-6830337562_20210829_124650_0000-5.pdf', NULL, '1', '2021-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok,Candidate 5050 On The TxxampC,No Much Comfort In Internship Stipend, Fresher For The Recruitment Role.Need Time To Give His Confirmation', '6', '1', '', '1', '1', '', '2', '2021-10-29', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-22 11:02:06', 60, '2021-10-28 10:05:54', 0, NULL, 1),
(6648, 'umesheka balasubramaniyam', '11', '7448586298', '', 'umeshekab@gmail.com', '1999-08-06', 22, '2', '2', 'balasubramaniyam', 'business', 600000.00, 1, 0.00, 20000.00, 'thiruchirapalli', 'thiruchirapalli', '2110220007', '1', '1', 'upload_files/candidate_tracker/48468483928_umesheka_ resume.pdf', NULL, '1', '2021-10-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 11:29:00', 1, '2021-10-22 11:37:47', 0, NULL, 1),
(6649, 'Absin Rashath Ahamed', '11', '7904351849', '', 'ahamedabsin@gmail.c', '1995-08-15', 26, '2', '1', 'Muhshina zohara', 'Hr (Admin)', 55000.00, 0, 0.00, 13000.00, '8/9A2 chinna Arisikara ST,Manambuchavadi,thanjavur', 'No.4 Ponappa Lane,Triplicane,chennai-5', '2110220008', '1', '1', 'upload_files/candidate_tracker/2708416454_CV.PDF', NULL, '3', '2021-10-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,No Sustainability with the previous companies, will not handle pressure and sustainability doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 11:44:09', 1, '2021-10-22 03:34:13', 0, NULL, 1),
(6650, 'John christyan', '6', '9789838369', '9884577259', 'johnchristyan10@gmail.com', '1992-10-10', 29, '1', '2', 'thomas', 'working', 9000.00, 1, 28000.00, 28000.00, 'kodambakkam', 'kodambbakm', '2110220009', '', '2', 'upload_files/candidate_tracker/24853826745_Resume.docx', NULL, '1', '2021-10-22', 0, 'p1236', '3', '59', '2021-11-01', 375000.00, '', '4', '2022-09-13', '1', 'Selected for Santhosh Team with CTC 375000 includes PF/ESI/PT - No relevant Insurance Sales Exp', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-22 12:43:45', 60, '2021-10-28 04:36:15', 0, NULL, 1),
(6651, 'Kavya', '11', '7708811422', '7010319388', 'kavyav315@gmail.com', '2006-10-22', 0, '2', '2', 'Venkatesan S', 'Fabrication', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2110220010', '1', '1', 'upload_files/candidate_tracker/25658298818_Kavya Resume.docx', NULL, '1', '2021-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok,Fresher career Gap ,Need to discuss with family on TxxampC,Sustainability doubts as she may get married in next 1 yr of time', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-22 12:44:40', 50, '2021-10-26 03:22:19', 0, NULL, 1),
(6652, 'KANDAPPAGARI MOORTHY', '11', '9966643241', '8179412513', 'murthyiam999@gmail.com', '1999-08-08', 22, '2', '2', 'K.subramanyam', 'Farmer', 10000.00, 2, 0.00, 17000.00, 'K.t.puram(v),puttur(m),chittoor(d),andhrapradesh', 'Abdulla street,Choolaimedu,chennai', '2110220011', '1', '1', 'upload_files/candidate_tracker/59058898721_k.moorthy Resume-5-converted.docx', NULL, '1', '2021-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,Communication Very Average, Not open with TxxampC Sustainability doubts,', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 01:05:53', 1, '2021-10-22 01:23:35', 0, NULL, 1),
(6653, 'sulochana', '11', '9884124521', '', 'sulochana.bala22@gmail.com', '1996-11-22', 24, '2', '2', 'balasubramanian', 'business', 90000.00, 2, 0.00, 300000.00, 'chennai', 'chennai', '2110220012', '1', '1', 'upload_files/candidate_tracker/22532729062_Sulochana.Resume.pdf', NULL, '1', '2021-10-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication OK,Little Stamerring,Sal Exp is very High', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-22 02:44:50', 1, '2021-10-22 02:48:39', 0, NULL, 1),
(6654, 'Vignesh V', '6', '9884545083', '', 'vigneshv2535@gmail.com', '1999-04-21', 22, '1', '2', 'Father', '3000', 35000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2110220013', '', '2', 'upload_files/candidate_tracker/71258380956_0_Vignesh.v resume.pdf', NULL, '1', '2021-10-22', 0, 'Jobs', '1', '17', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-22 04:54:16', 1, '2021-10-22 04:59:21', 0, NULL, 1),
(6655, 'Sathish', '22', '9566204761', '', 'sathishkumar602m@gmail.com', '1998-11-30', 22, '2', '2', 'M .Dhanasaker', 'Cnc operator', 1.00, 1, 13500.00, 15000.00, 'Chennai', 'Chennai', '2110230001', '1', '2', 'upload_files/candidate_tracker/90051522401_my resume.pdf', NULL, '1', '2021-10-23', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,will not suits for our Digital Marketing,No basic Ideas about DM', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-23 06:08:24', 1, '2021-10-23 06:23:02', 0, NULL, 1),
(6656, 'Yuvarani', '11', '8939337747', '', 'Yuvaranivenkatesan99@gmail.com', '1999-05-04', 22, '2', '2', 'Venkatesan', 'Own transportation', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Porur', '2110230002', '1', '1', 'upload_files/candidate_tracker/15266568412_Yuvarani resume.pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,, Fresher MBA, No basic knowledge in Recruitment, Need time to check with her family on Txxampc. From Gerugambakkam she needs to travel, Sustainability Doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-23 11:25:59', 1, '2021-10-23 11:31:47', 0, NULL, 1),
(6657, 'Arosha Babu.S', '22', '7358281516', '', 'aroshaarya143@gmail.com', '2000-08-08', 21, '2', '2', 'Suresh Babu S', 'Mechanic', 20000.00, 1, 0.00, 16000.00, 'Maraimalainagar', 'Maraimalainagar', '2110230003', '1', '1', 'upload_files/candidate_tracker/67440083997_new arosha cv.pdf', NULL, '1', '2021-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-23 12:36:16', 1, '2021-10-23 12:40:06', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6658, 'Thaarunyan M', '22', '9094041605', '7904668721', 'thaarunyan@gmail.com', '2000-10-05', 21, '2', '2', 'Manoharan M', 'Health educator', 80000.00, 1, 0.00, 18000.00, '10/28, Bharathi Avenue 4th Street,Perungalathur', 'chennai', '2110230004', '1', '1', 'upload_files/candidate_tracker/74930024949_APWPT5724P_Q3_2021-22 P THIYAGARAJAN.pdf', NULL, '1', '2021-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication very Average,No basic knowledge in Digital Marketing,Too Long,Sustainability doubts as he requires time to check with his family on 2 yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-23 03:41:43', 50, '2021-10-26 10:54:27', 0, NULL, 1),
(6659, '', '0', '8531900801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110230005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-23 06:46:30', 0, NULL, 0, NULL, 1),
(6660, 'Soundhar', '11', '7639781671', '', 'msoundhar7@gmail.com', '1999-09-02', 22, '2', '2', 'Moorthy', 'Farmer', 150000.00, 1, 0.00, 18000.00, 'Menallur', 'Kanchipuram', '2110230006', '1', '1', 'upload_files/candidate_tracker/30156144046_Soundhar Resume October.pdf', NULL, '1', '2021-10-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-23 06:54:50', 1, '2021-10-23 07:01:02', 0, NULL, 1),
(6661, '', '0', '9361874553', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-24 11:14:07', 0, NULL, 0, NULL, 1),
(6662, 'KATHIJA BEGAM N', '4', '8248565686', '9884675681', 'Parveenroja13@gmail.com', '1995-12-12', 25, '4', '1', 'RAJESH R', 'Reporter', 25000.00, 1, 0.00, 13000.00, 'No.11/625 ,kannadasan salai, , chennai - 37', 'No.12/344,12th block,chennai -37', '2110250001', '', '1', 'upload_files/candidate_tracker/64156817452_kathija begam N - 24.10.2020.pdf', NULL, '3', '2021-10-25', 0, '', '3', '59', '2021-10-26', 126312.00, '', '2', '1970-01-01', '2', 'Selected for Muthu Team Elite RE in CAsh mode - 10K TH', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent - Candidate dropped due to her husbandxquots transfer', '', '', '', NULL, NULL, NULL, 1, '2021-10-25 09:59:56', 60, '2021-10-28 10:17:33', 0, NULL, 1),
(6663, '', '0', '6379057034', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110250002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-25 12:15:57', 0, NULL, 0, NULL, 1),
(6664, 'Dinesh', '23', '7449088428', '9344830159', 'dineshseds@gmail.com', '1999-05-31', 22, '2', '2', 'Sekar', 'Kilkodungalore', 3000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2110250003', '1', '1', 'upload_files/candidate_tracker/68108515727_DINESH @RESUME .pdf', NULL, '1', '2021-10-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'fresher, working as Data Entry operator in Navy (Contract Role). Distance around 44KMS up xxamp down, Not much comfortable with TxxampC,, Thinking a lot on Agreement, Sustainability Doubts If candidate comes back need to review and finalise.', '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-25 01:03:58', 1, '2021-10-25 01:11:01', 0, NULL, 1),
(6665, 'Vignesh.c', '5', '9360076827', '9597144878', 'vv909199@gmail.com', '2001-07-03', 20, '2', '2', 'Jayanthi.f', 'Kooli', 5000.00, 0, 0.00, 15000.00, 'Jolarpettai', 'Jolarpettai', '2110250004', '1', '1', 'upload_files/candidate_tracker/92961920318_resume.pdf', NULL, '2', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Seems Not interested,whenever calling he says outside', '5', '1', '0', '1', '1', '0', '2', '2021-11-10', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-25 03:12:55', 1, '2021-11-08 11:20:24', 0, NULL, 1),
(6666, 'Kumudhavalli.v', '4', '9500166520', '', 'rkvalli095@gmail.com', '1996-10-03', 25, '2', '2', 'Viswanathan. N', 'Railway', 40000.00, 1, 0.00, 15000.00, 'Tiruvallur', 'Tiruvallur', '2110260001', '1', '2', 'upload_files/candidate_tracker/65098391190_new resume ram kum.docx', NULL, '1', '2021-10-26', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected because both are blood relative sister ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-26 10:39:22', 1, '2021-10-26 01:20:24', 0, NULL, 1),
(6667, 'indhumathi v', '4', '7358007855', '', 'indhumathi.pgdm18005@rsb.edu.in', '1998-02-21', 23, '2', '2', 'vishwanathan', 'railways', 40000.00, 1, 10000.00, 10000.00, 'thiruvallur', 'thiruvallur', '2110260002', '1', '2', 'upload_files/candidate_tracker/32576093291_indhu resume.docx', NULL, '1', '2021-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not interested to accept the offer as her sister who attended the interview in Tiruvallur branch got rejected in the Interview', '1', '1', '', '4', '6', '', '2', '2021-10-27', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-26 10:40:42', 50, '2021-10-26 11:11:12', 0, NULL, 1),
(6668, 'D. Bharathi', '4', '9840806900', '9789916345', 'Shaganabharathi2303@gmail', '1995-05-12', 26, '2', '2', 'Bharathi', 'Retail', 15000.00, 4, 15000.00, 15000.00, 'Chrompet', 'Chrompet', '2110260003', '3', '2', 'upload_files/candidate_tracker/78652703172_Shagana Resume.docx', NULL, '1', '2021-10-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Sounds very average,have a retail sales exp.Pressure handling doubts in our domain..Will not sustain for our role', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-26 11:19:29', 1, '2021-10-26 11:24:35', 0, NULL, 1),
(6669, 'MARIA RUBAN', '5', '6374998991', '', 'RUBAN2428@GMAIL.COM', '2000-04-24', 21, '2', '2', 'Maria Lazar', 'Executive supervisor', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2110260004', '1', '1', 'upload_files/candidate_tracker/10102448004_RUBAN.pdf', NULL, '1', '2021-10-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-26 11:36:31', 1, '2021-10-26 11:47:02', 0, NULL, 1),
(6670, 'Vishnu kumar', '4', '9751760206', '', 'duraivishnu13699@gmail.com', '1999-06-13', 22, '2', '2', 'Durairaj', 'Farmer', 10000.00, 1, 0.00, 14000.00, '2/437,main road ,Alambadi(p.o),Cuddalore(d.t)', 'The great hotel,karapakkam,chennai 600097', '2110260005', '1', '1', 'upload_files/candidate_tracker/10514177752_resume vishnu.pdf', NULL, '1', '2021-10-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate got another opportunity\n', '1', '1', '', '1', '1', '', '2', '2021-10-27', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-26 11:40:33', 50, '2021-10-26 11:58:36', 0, NULL, 1),
(6671, 'Ramaraj', '4', '9003780508', '9751760206', 'ramr41670@gmail.com', '2000-05-12', 21, '2', '2', 'Selvaraj', 'Farmer', 10000.00, 3, 0.00, 15.00, '1/96,middle street , pimbalur(po),perambalr (dt)', 'Great pg, vembuli street, karappakkam,chennai', '2110260006', '1', '1', 'upload_files/candidate_tracker/78136421524_Ramaraj resume.doc', NULL, '1', '2021-10-26', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for telecalling', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-10-26 11:41:40', 50, '2021-10-26 11:58:48', 0, NULL, 1),
(6672, 'Kabina k', '4', '9677497216', '9787619375', 'kkabina2211@gmail.com', '2001-07-30', 20, '1', '2', 'Karunanithi D', '30000', 6000.00, 2, 0.00, 15000.00, '1/6north street, puthakar, mayiladuthur) , 609 203', 'Porur', '2110260007', '', '1', 'upload_files/candidate_tracker/30701183927_convocation.pdf', NULL, '1', '2021-10-26', 0, 'Jobs', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Wont suit for sales', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-26 11:48:18', 1, '2021-10-26 12:07:15', 0, NULL, 1),
(6673, 'Karthick', '3', '9514798829', '9841460322', 'karthicksag@gmail.com', '1997-01-08', 25, '3', '1', 'Harini', 'No', 20000.00, 2, 0.00, 16000.00, 'No.57, mettu Street, Nandhivaram, guduvanchiry.', 'Chennai.603202', '2110260008', '', '1', 'upload_files/candidate_tracker/83610582430_Document karthick resume . pdf.pdf', NULL, '3', '2022-03-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-26 01:25:35', 1, '2022-03-24 02:09:54', 0, NULL, 1),
(6674, 'M.Vignesh', '4', '9361954242', '', 'vignezhvignezh88@gmail.com', '1999-12-01', 21, '2', '2', 'm.Shanthi', 'Tailor', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2110260009', '1', '1', 'upload_files/candidate_tracker/65958521547_Resume vignesh.pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'very average communication, Much focus into Nonvoice process, Location is Guduvancherry, Will not handle pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-26 07:45:22', 1, '2021-10-27 09:53:44', 0, NULL, 1),
(6675, 'S KISHORE KUMAR', '5', '8056899902', '', 'kishore100693@gmail.com', '1993-06-10', 28, '2', '2', 'Selvam', 'Driver', 20000.00, 1, 470000.00, 650000.00, 'Chennai', 'Chennai', '2110270001', '1', '2', 'upload_files/candidate_tracker/33980440926_KkishoreResume2021updated.pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate have bancassurance exp and he much prefers for Sr Level position,not open for Agency positons,looking only for Sales but the salary exp is very high and the candidate sustainability doubts in our company', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-27 06:27:07', 1, '2021-10-27 06:30:56', 0, NULL, 1),
(6676, 'Y.RANJITH', '5', '9940047688', '8056250226', 'Yuvanjanu5678@g-mail.com', '2000-09-02', 21, '1', '2', 'H.YUVAN', 'DAILY WAGES', 15000.00, 1, 0.00, 10000.00, 'No,38th,2nd Street Kamaraj nagar,Ennore chennai 57', 'No,38th,2nd Street Kamaraj Nagar,Ennore Chennai 57', '2110270002', '', '1', 'upload_files/candidate_tracker/20989521978_ranjith cv.pdf', NULL, '1', '2021-10-27', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Internal reference, from ennore location have data entry exp and looking for non voice opportunities', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-27 10:03:58', 1, '2021-10-27 10:28:25', 0, NULL, 1),
(6677, 'Mohan Babu', '6', '7299852466', '', 'mohanbabu.Sakthivelu@gmail.com', '1998-08-23', 23, '2', '2', 'Sakthivelu', 'Software project manager', 250000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2110270003', '1', '1', 'upload_files/candidate_tracker/14018051722_CV 2021 SEPT.pdf', NULL, '1', '2021-10-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher,Candidate is focusing for the Core Designing(Mechanical Domain),also look for IT openings, Will not suit for Sales and our IT openings too.Will not sustain with us \n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-10-27 11:32:49', 50, '2021-10-29 01:17:59', 0, NULL, 1),
(6678, 'sridhar', '4', '8939456510', '', 'sridharmani@gmail.com', '1993-06-13', 28, '2', '2', 'ganesan', 'social worker', 20000.00, 2, 12000.00, 11000.00, 'velachery', 'velachery', '2110270004', '1', '2', 'upload_files/candidate_tracker/613573349_1632719499395_RESUME.SRIDHAR2 (1).pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication candidate gives preference for the Non voice positions only.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-10-27 12:39:03', 1, '2021-10-27 01:17:00', 0, NULL, 1),
(6679, 'Kavitha', '4', '9342426103', '6380060805', 'kavirishi98@gmail.com', '1998-05-25', 23, '3', '2', 'Sampath', 'Driver', 45000.00, 5, 0.00, 10000.00, 'Saidapet', 'Chennai', '2110270005', '', '1', 'upload_files/candidate_tracker/16374062379_Kavitha .pdf', NULL, '1', '2021-10-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate have exp in backend process in GRT and looking for Non Voice opportunities.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-27 01:00:20', 1, '2021-10-27 01:03:58', 0, NULL, 1),
(6680, 'Sathish kumar', '5', '8428204088', '', 'sathishrajsam25@Gmail.com', '1996-07-25', 25, '2', '2', 'Muthu raj', 'Business', 100000.00, 1, 220000.00, 250000.00, 'Perambalur', 'Perambalur', '2110270006', '14', '2', 'upload_files/candidate_tracker/17621518255_SATHISH KUMAR 25.pdf', NULL, '3', '2021-10-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-27 01:29:50', 1, '2021-10-27 01:37:59', 0, NULL, 1),
(6681, '', '0', '9025741101', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110270007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-27 03:38:29', 0, NULL, 0, NULL, 1),
(6682, 'Mehul Chauhan', '4', '7550066336', '', 'Mehulsnote9@gmail.com', '1993-01-11', 28, '2', '2', 'Arvind chauhan', 'Business man', 200000.00, 2, 19000.00, 22000.00, 'CHENNAI', 'CHENNAI', '2110270008', '1', '2', 'upload_files/candidate_tracker/32239688048_21 Mehul resume.pdf', NULL, '1', '2021-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Experienced much in Non Voice process,father is running his own business and he too have idea to ave the same.Not open for Field Sales and high Sal Exp for CRM profile,Not familiar in Tamil language', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-27 03:46:55', 1, '2021-10-29 12:26:56', 0, NULL, 1),
(6683, 'Kavitha M', '11', '6380535897', '7200215082', 'kavithamurali878@gmail.com', '1998-10-30', 23, '2', '2', 'R.Murali', 'Business', 20000.00, 1, 0.00, 12000.00, 'Madambakkam, Chennai', 'Madambakkam, Chennai', '2110280001', '1', '1', 'upload_files/candidate_tracker/359195405_Kavitha Murali resume .pdf', NULL, '1', '2022-02-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnt Turn Back - Too Long Distance Up And Down Almost 66 Kms.Sustainability Doubts ,Can Sign The SA,But Doubts A Lot', '6', '1', '0', '1', '1', '0', '2', '2022-02-04', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-10-28 10:57:17', 1, '2022-02-03 12:37:37', 0, NULL, 1),
(6684, 'A.Ragavi', '4', '9087548832', '8778276339', 'Ragaviammu415@gmail.com', '1998-12-14', 22, '2', '2', 'Anandhan', 'Mechanic', 15000.00, 1, 10000.00, 13000.00, 'Urappakkam', 'Urappakkam', '2110280002', '1', '2', 'upload_files/candidate_tracker/48785323622_0_ragavi resume.2.docx', NULL, '1', '2021-10-30', 28, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, have exp in Non Voice Data Entry process. Too long distance from urappakam,Sustainability doubts in Voice process,5050 profile, Marriage has been fixed to happen in next 6 months', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 11:42:35', 1, '2021-10-28 12:53:12', 0, NULL, 1),
(6685, 'Ashwathi', '11', '8838496923', '', 'ashwathielangovan51@gmail.com', '1997-08-24', 24, '2', '2', 'Elangovan', 'ICF retired', 60000.00, 1, 0.00, 16000.00, 'Anakapthur', 'Anakapthur', '2110280003', '1', '1', 'upload_files/candidate_tracker/67501271836_ASHWATHI RESUME.pdf', NULL, '1', '2021-10-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 01:00:39', 1, '2021-10-28 01:06:17', 0, NULL, 1),
(6686, 'Ponmalar', '20', '7708907192', '', 'ponmalarguna86@gmail.com', '1999-06-08', 22, '2', '2', 'Gunasekaran', 'Business', 30000.00, 2, 0.00, 15000.00, 'Sattur', 'Chennai', '2110280004', '1', '1', 'upload_files/candidate_tracker/79361725014_lastshared.pdf', NULL, '1', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not responding to the calls, tried couple of days .Dropped the profile', '5', '1', '0', '1', '1', '0', '2', '2021-11-10', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 01:06:41', 1, '2021-11-06 05:02:47', 0, NULL, 1),
(6687, 'Faizan Basha', '6', '9342974576', '9677292973', 'faizanbasha77@gmail.com', '1996-06-06', 25, '2', '2', 'Shakila Banu', 'Home Maker', 20000.00, 1, 25000.00, 20000.00, 'Mylapore', 'Mylapore', '2110280005', '1', '2', 'upload_files/candidate_tracker/51267904864_FAIZAN BASHA RESUME-1.pdf', NULL, '1', '2021-10-29', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'because he as many agents in his own family', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 01:16:54', 1, '2021-10-28 01:21:12', 0, NULL, 1),
(6688, 'Vinothini R', '25', '7550062835', '9994898477', 'vinothiniramesh1710@gmail.com', '2000-10-17', 21, '2', '2', 'Ramesh G', 'Auto driver', 8000.00, 1, 10500.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2110280006', '1', '2', 'upload_files/candidate_tracker/81906133006_CV .pdf', NULL, '1', '2021-11-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-28 03:37:22', 1, '2021-10-28 03:41:30', 0, NULL, 1),
(6689, 'Hemanth kumar. M', '6', '9080924982', '9787202340', 'Omiyahemanth@gmail.com', '1990-04-04', 31, '1', '2', 'M. Murugesan', 'Retired person', 600000.00, 2, 10800.00, 12000.00, 'Kelambakkam', 'Kelambakkam', '2110290001', '', '2', 'upload_files/candidate_tracker/82779770632_PDF Gallery_20211029_103749.pdf', NULL, '1', '2021-10-29', 15, 'P1066', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no cominnication skills', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-10-29 10:30:32', 60, '2021-10-29 04:11:44', 0, NULL, 1),
(6690, 'C.mary jency', '4', '7305453070', '8754479259', 'Mjency021@gmail.com', '2000-07-07', 21, '3', '2', 'Charles.s', 'Private company', 15000.00, 1, 14500.00, 15000.00, 'Kaladipet thiruvoutiyur', 'Kaladipet thiruvoutiyur', '2110290002', '', '2', 'upload_files/candidate_tracker/73201779208_CV_2021-10-14-063608.pdf', NULL, '1', '2021-10-29', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'Internal Team Reference, No Relevant sales,6 months work in Credit card Collection, Too long distance, Left previous company due to location constraint only, kindly check and suggest', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-29 12:07:29', 1, '2021-10-29 12:17:49', 0, NULL, 1),
(6691, 'arifu nissa', '11', '7448304740', '', 'arifunissa97@gmail.com', '1997-12-30', 23, '2', '2', 'gulam mohammed', 'own business', 20000.00, 3, 15000.00, 20000.00, 'chennai', 'chennai', '2110290003', '1', '2', 'upload_files/candidate_tracker/26045990649_ARIFUNISSA RESUME.docx', NULL, '1', '2021-11-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have exp in Digital Marketing and HR activities,Not much comfortable with the document submission, Salary Exp is around 20K.If she comes back with her confirmation lets try, Pressure handling doubts a lot', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-29 03:49:34', 1, '2021-10-29 03:52:35', 0, NULL, 1),
(6692, 'RAMYA P', '2', '7550200393', '', 'ramya628p@gmail.com', '1999-11-06', 21, '2', '2', 'PARTHIBAN K', 'Worker', 200000.00, 1, 0.00, 12000.00, 'Thirumazhisai', 'Thirumazhisai', '2110290004', '1', '1', 'upload_files/candidate_tracker/75308647519_Resume_Ramya.docx', NULL, '1', '2021-11-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-29 04:04:53', 1, '2021-10-29 04:31:04', 0, NULL, 1),
(6693, 'abdul hannan', '13', '9600986026', '', 'abdulhannanit.m@gmail.com', '1999-12-29', 21, '2', '2', 'mannan m', 'batchelor of engineering', 120000.00, 3, 11000.00, 25000.00, 'pallavaram', 'pallavara', '2110290005', '1', '2', 'upload_files/candidate_tracker/25260619_resume (5).pdf', NULL, '1', '2021-10-30', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-29 04:12:49', 1, '2021-10-29 04:17:46', 0, NULL, 1),
(6694, 'Amudha G', '4', '9025510790', '9791082006', 'amudhaguna19@gmail.com', '2001-06-19', 20, '3', '2', 'Guna Sekaran S', 'Coolie', 20000.00, 2, 8000.00, 15000.00, 'Vysarpadi', 'Kk Nagar', '2110300001', '', '2', 'upload_files/candidate_tracker/62958227590_AMUDHA RESUME.docx', NULL, '1', '2021-10-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'have 6 months exp in back end operations and much focus on the Non Voice Positions,Will not sustain with us and pressure handling doubt', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-30 11:51:27', 1, '2021-10-30 12:17:14', 0, NULL, 1),
(6695, 'J.soundarya', '4', '9176591749', '', 'Soundaryavignesh@gamil.com', '2001-01-16', 20, '1', '2', 'Radha.p', 'Cooly', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2110300002', '', '1', 'upload_files/candidate_tracker/80684303379_AMUDHA RESUME.docx', NULL, '1', '2021-10-30', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Presurre handling and sustainability doubts.Came along her friend only much comforts for non voice ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-30 12:02:49', 1, '2021-10-30 12:07:41', 0, NULL, 1),
(6696, 'Lakshmi Annamalai', '4', '7695841538', '9841310010', 'toLakshmiAnnamalai@gmail.com', '1998-06-17', 23, '2', '2', 'Annamalai', 'Farmer', 8000.00, 2, 15000.00, 18000.00, 'Perambalur', 'Ekkaduthangal', '2110300003', '3', '2', 'upload_files/candidate_tracker/48495515413_Lakshmi Annamalai .doc', NULL, '1', '2021-10-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, have exp in non voice/voice process. Presurre handling and sustainability doubts on this profile.Will not fit for our role', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-30 12:42:26', 1, '2021-10-30 01:09:07', 0, NULL, 1),
(6697, 'Wajahath Ali', '4', '8807822585', '7449244260', 'wajahathali1996@gmail.com', '1996-01-02', 25, '2', '2', 'Yusuf', 'Iron&stells', 15000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2110300004', '3', '2', 'upload_files/candidate_tracker/33052149121_RESUME-Wajahath.docx', NULL, '1', '2021-10-30', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Frequent Job Changer, most prefer to go in Admin openings, Not open for Field sales and the salary Expectation is very high. Not Suitable for CRM', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-10-30 12:45:05', 1, '2021-10-30 12:49:57', 0, NULL, 1),
(6698, 'Shanon Shirisa Abishek', '11', '8248600401', '', 'shanaabishek@gmail.com', '1996-11-13', 24, '2', '2', 'Shireen', 'Housewife/clerk', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2110300005', '1', '1', 'upload_files/candidate_tracker/12843859547_SHANON (2).pdf', NULL, '1', '2021-11-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-10-30 01:09:19', 1, '2021-10-30 01:40:20', 0, NULL, 1),
(6699, '', '0', '8072148970', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110300006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-30 10:30:15', 0, NULL, 0, NULL, 1),
(6700, '', '0', '7010573581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2110310001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-10-31 07:28:00', 0, NULL, 0, NULL, 1),
(6701, 'Pavithra', '4', '9952465522', '9884340366', 'Vijayjai50@gmail.com', '1992-11-13', 28, '1', '1', 'T subramani', 'Teacher', 3000.00, 1, 15000.00, 15000.00, 'Perambur', 'Perumber', '2111010001', '', '2', 'upload_files/candidate_tracker/79040310808_Application.pdf', NULL, '1', '2021-11-01', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not ready to work in Targets,no voice process Exp,will not sustain with us\n', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-01 12:23:23', 1, '2021-11-01 12:29:30', 0, NULL, 1),
(6702, '', '0', '8939166833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111010002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-01 03:06:56', 0, NULL, 0, NULL, 1),
(6703, 'Kandhavishnu B', '11', '8778946971', '9994516291', 'balakrishnankandhavishnu@gmail.com', '1997-04-14', 24, '2', '2', 'Balakrishnan', 'Agriculture', 75000.00, 0, 0.00, 25000.00, 'Pollachi', 'Pollachi', '2111010003', '1', '1', 'upload_files/candidate_tracker/57231423805_Kandhavishnu-B-Resume (3).pdf', NULL, '1', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He is in internship till dec 2021,College yet to complete. Communication ok 5050 profile, handling pressure doubtful and sustainability doubts\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-01 03:32:49', 1, '2021-11-01 03:42:09', 0, NULL, 1),
(6704, 'Deshma Marcelin A', '23', '8248032919', '', 'deshmamarcelin6352@gmail.com', '1998-06-18', 23, '2', '2', 'Albert Antony Doss', 'Unemployed', 60000.00, 1, 0.00, 20000.00, 'Tambaram', 'Tambaram', '2111010004', '1', '1', 'upload_files/candidate_tracker/55493769444_0_amazon resume.docx', NULL, '2', '2021-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-01 07:57:15', 1, '2021-11-01 08:00:26', 0, NULL, 1),
(6705, 'Madhuri M', '11', '8754680661', '8778328990', 'madhurim749@gmail.com', '1997-01-17', 24, '2', '2', 'Radhakrishna M', 'Contractor', 50000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2111020001', '1', '1', 'upload_files/candidate_tracker/18810974217_Madhuri_Resume-converted.pdf', NULL, '2', '2021-11-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Got another offer', '6', '1', '0', '1', '1', '0', '2', '2021-11-10', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-02 12:52:11', 1, '2021-11-02 12:55:55', 0, NULL, 1),
(6706, 'harish', '11', '8608608100', '', 'harishkasi95@gmail.com', '1999-04-23', 22, '2', '2', 'kasi', 'human resource management', 20000.00, 1, 0.00, 13500.00, 'krishnagiri', 'chennai', '2111020002', '1', '1', 'upload_files/candidate_tracker/65042838126_Harish_IT Recruiter.pdf', NULL, '1', '2021-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruitment,have 2 yrs of Exp in Govt,Looking for the recruitment,but not ready to work for Non It Sales profile. Sustainability Doubts for our role', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-02 01:29:57', 1, '2021-11-02 05:17:23', 0, NULL, 1),
(6707, '', '0', '9629806214', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-02 02:44:29', 0, NULL, 0, NULL, 1),
(6708, 'Vetrivel', '11', '8667037421', '7299540838', 'velvetri103@gmail.com', '1993-09-14', 28, '2', '2', 'M govindaraj', 'Hr executive', 40000.00, 3, 16000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2111020004', '1', '2', 'upload_files/candidate_tracker/63860623738_Vetrivel G hr profile (1).docx', NULL, '3', '2021-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Focus on the IT profile Recruitment only.Not much comfort with TxxampC.,Will not sustain for a long,also will not handle our pressure', '6', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-02 05:10:51', 1, '2021-11-02 05:19:57', 0, NULL, 1),
(6709, 'nijen . p', '11', '9952066709', '9884534079', 'nijenpeter@gmail.com', '1993-06-09', 28, '2', '2', 'lucy mary', 'house wife', 30000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2111030001', '1', '1', 'upload_files/candidate_tracker/65747196880_Nijen Peter.pdf', NULL, '3', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok,Fresher For REcruitment, Have Exp In AR Caller, Plan To Do MBA In Correspondance, Requested time to check With His Parents On TxxampC, Candidate didnt came back with his confirmation.Dropped', '6', '2', '0', '1', '1', '0', '2', '2021-11-15', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-03 12:13:50', 1, '2021-11-08 02:42:56', 0, NULL, 1),
(6710, 'Janani', '13', '9884152378', '', 'jan.sudha1097@gmail.com', '1997-10-10', 24, '2', '2', 'P R gopi', 'Product Manger', 25000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2111030002', '1', '2', 'upload_files/candidate_tracker/381449365_JananiCV (1) (1).docx', NULL, '1', '2021-11-10', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Having knowledge in the basics of PHP,6 months Exp in PHP,Seems comfort with the TxxampC but the salary Exp is very High 6 months - 18K Exp ,She is from Porur Location', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-03 02:07:51', 1, '2021-11-03 02:16:39', 0, NULL, 1),
(6711, 'S M Iqhbaal Sharif', '14', '8754935761', '', 'iqhbaal@gmail.com', '1997-10-26', 24, '2', '2', 'S M Jaavith Sharif', 'Business', 20000.00, 1, 0.00, 15000.00, 'Pallavaram', 'Pallavaram', '2111030003', '1', '1', 'upload_files/candidate_tracker/7712599991_Iqhbaal Resume.doc', NULL, '1', '2021-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic Knowledge in ReactNative,2021 BCA,Fresher, Need time to check on the TxxampC,Brother is working in the Altencalsoft .If he coesback with his confirmation,can analyse based on the system task', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-03 03:05:30', 1, '2021-11-08 02:51:04', 0, NULL, 1),
(6712, 'suganya', '13', '8825769946', '', 'suganbala597@gmail.com', '1997-03-05', 24, '2', '2', 'r balasubramanian', 'vp', 50000.00, 1, 14000.00, 20000.00, 'chennai', 'chennai', '2111030004', '1', '2', 'upload_files/candidate_tracker/48249557969_Suganya_CV.pdf', NULL, '1', '2021-11-10', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Discussed with her for the Zoom Interview,but after that the candidate not responding to the calls,tried couple of times in multiple days.Finally dropped the profile', '2', '2', '0', '1', '1', '0', '2', '2021-11-11', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-03 03:59:04', 1, '2021-11-03 04:52:53', 0, NULL, 1),
(6713, 'MADHANKUMAR S', '13', '9445825981', '', 'madhankumar05072000@gmail.com', '2000-07-05', 21, '2', '2', 'SARAVANAN', 'security officer', 6000.00, 1, 0.00, 10000.00, 'kanchipuram', 'Kanchipuram', '2111050001', '1', '1', 'upload_files/candidate_tracker/14417122474_MADHANKUMAR.S (1)-converted (1)-converted.pdf', NULL, '1', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'need time to check with parents on TxxampC,5050 profile,not seems to very active.sustainability doubts on the profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-05 01:16:19', 1, '2021-11-05 01:19:46', 0, NULL, 1),
(6714, 'g.prem kumar', '5', '9597635757', '', 'gprem94@gmail.com', '1994-07-15', 27, '2', '2', 'lavanya', 'salaried', 50000.00, 0, 25000.00, 30000.00, 'Gummidipondi', 'madipakkam', '2111060001', '1', '2', 'upload_files/candidate_tracker/93501269274_RESUME .pdf', NULL, '1', '2021-11-08', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'no idea in insurance', '5', '1', '0', '1', '1', '0', '2', '2021-11-15', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-06 11:38:17', 1, '2021-11-06 12:29:40', 0, NULL, 1),
(6715, 'Arvind kumar', '11', '8903264391', '', 'arvind17091998@gmail.com', '1998-05-17', 23, '2', '2', 'A. Prem Kumar', 'Ex - SBI manager', 50000.00, 1, 0.00, 350000.00, 'KRISHNAGIRI', 'KRISHNAGIRI', '2111060002', '1', '1', 'upload_files/candidate_tracker/6892927109_HR recruiter Updated CV.pdf', NULL, '1', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '2 month in byju for 4 LPA, Exp 20-25K as salary, Have a plan to move abraod after few years,5050 profile, very close to bangalore looking for opportunities over there too\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-06 05:28:02', 1, '2021-11-06 05:30:52', 0, NULL, 1),
(6716, '', '0', '9566336145', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111060003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-06 07:15:14', 0, NULL, 0, NULL, 1),
(6717, '', '0', '6380793081', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111060004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-06 08:29:11', 0, NULL, 0, NULL, 1),
(6718, 'A Abdul kasim', '2', '8610904064', '9524756038', 'abdulkasim361998@gmail.com', '1998-06-03', 23, '2', '2', 'A Abbas manthiri', 'Web designer', 30000.00, 2, 0.00, 12000.00, 'Theni', 'Chennai', '2111070001', '1', '1', 'upload_files/candidate_tracker/46641220514_Resume+2.pdf', NULL, '1', '2021-11-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills knowledge, having his own business and he prefers to continue the same. Will not sustain for a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-07 08:58:44', 7, '2022-02-17 12:31:37', 0, NULL, 1),
(6719, '', '0', '7338998342', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111070002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-07 09:33:01', 0, NULL, 0, NULL, 1),
(6720, 'Meena', '5', '7448438263', '8939409260', 'meenameena63585@gmail.com', '1997-12-29', 23, '2', '2', 'Rajaram', 'Masan', 20000.00, 3, 14000.00, 15000.00, 'Kovilambakkam Medavakkam main road', 'Kovilambakkam Medavakkam main road', '2111080001', '3', '2', 'upload_files/candidate_tracker/15740034210_Meena Resume.pdf', NULL, '1', '2021-11-08', 0, '', '3', '59', '2021-11-23', 170496.00, '', '5', '1970-01-01', '2', 'Selected for ESales Profile with CTC 170496 for Karthika Team - Prop', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', 'Selected,Offer Mail sent to the candidate', '', '', '', NULL, NULL, NULL, 1, '2021-11-08 10:30:26', 60, '2021-11-22 10:31:05', 0, NULL, 1),
(6721, 'B. shanthi', '4', '7305379261', '8056090627', 'shanthikuttyma18@gmail.com', '1999-05-18', 22, '2', '2', 'G. balaiya', 'contractor', 30000.00, 1, 0.00, 13000.00, 'kovilambakkam chennai', 'kovilambakkam', '2111080002', '3', '1', 'upload_files/candidate_tracker/3369216657_1636348999621_1636348997672_shanthi (1).pdf', NULL, '1', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, sustainability doubts on this profile,2 companies in 1year,also location constraint', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-08 10:39:41', 1, '2021-11-08 10:53:51', 0, NULL, 1),
(6722, 'Vinothkumar R', '5', '7550189188', '', 'vkvinoth414@gmail.com', '1994-07-30', 27, '2', '2', 'Raji', 'Fishering', 20000.00, 1, 16000.00, 19000.00, 'Chennai', 'Chennai', '2111080003', '1', '2', 'upload_files/candidate_tracker/26647941823_VINOTH Resume 2.docx', NULL, '2', '2021-11-08', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '5050 profile, communication ok, but not much comforts for our sales, no bike ,sustainability doubts on this profile', '5', '1', '0', '1', '1', '0', '2', '2021-11-10', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 10:46:15', 1, '2021-11-08 10:49:27', 0, NULL, 1),
(6723, 'Sudharshan C', '5', '9500716942', '7010042938', 'sudharshanchandrasekar@gmail.com', '1996-09-28', 25, '2', '2', 'Chandrasekar S', 'gold Smith', 15000.00, 1, 0.00, 350000.00, 'Karaikudi', 'Karaikudi', '2111080004', '1', '1', 'upload_files/candidate_tracker/41064825197_Sudharshan Resume.pdf', NULL, '2', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open to take calls,will not sustain', '5', '1', '0', '1', '1', '0', '2', '2021-11-22', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 10:49:47', 1, '2021-11-08 10:52:00', 0, NULL, 1),
(6724, 'Teenu priya.y', '4', '9080914389', '9025538597', 'teenuholic3@gmail.com', '2001-04-03', 20, '2', '2', 'Yuvaraj', 'Electriction', 8.00, 1, 10.00, 16.00, 'Kodabakkam cheenai', 'Kodabakkam cheenai', '2111080005', '1', '2', 'upload_files/candidate_tracker/73335962432_teenu.pdf', NULL, '3', '2021-11-08', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '4 months In Office in star health f electrician M HM,correspondance MCA,ccna course completed,Looking only for the salary,will not sustain with us.next month only she can join \n', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 11:02:31', 1, '2021-11-08 11:38:39', 0, NULL, 1),
(6725, '', '0', '9677303270', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111080006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-08 11:17:00', 0, NULL, 0, NULL, 1),
(6726, 'Aarthi', '11', '7305214014', '', 'aarthusri23@gmail.com', '1999-11-23', 21, '2', '2', 'Kumar', 'Driver', 400000.00, 1, 13000.00, 20000.00, 'Chennai', 'Chennai', '2111080007', '1', '2', 'upload_files/candidate_tracker/41588852011_Aarthi Update Resume.docx', NULL, '2', '2021-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Holding 3-4 Offers 17K max, Communication is Good,3 months exp in Buzzworks.Salary Expectation is very high. Sustainability Doubts\n', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 11:28:23', 1, '2021-11-08 11:34:41', 0, NULL, 1),
(6727, 'Afraz Hussain', '2', '7904541423', '9894598971', 'pmafraz@gmail.com', '1999-12-27', 21, '2', '2', 'Hyder Hussain', 'Employee', 15000.00, 2, 0.00, 10000.00, 'Vellore', 'Vellore', '2111080008', '1', '1', 'upload_files/candidate_tracker/50010118119_Afraz s Resume.pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Got another Offer', '2', '1', '0', '1', '1', '0', '2', '2021-11-11', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 11:41:41', 1, '2021-11-08 11:46:40', 0, NULL, 1),
(6728, '', '0', '8754544015', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-08 11:42:00', 0, NULL, 0, NULL, 1),
(6729, 'Raghavan Sekar', '5', '9940174607', '9566176875', 'raghavansekar369@gmail.com', '1998-03-12', 23, '2', '2', 'gowri', 'clerk', 15000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2111080010', '17', '1', 'upload_files/candidate_tracker/76926645152_null.pdf', NULL, '2', '2021-11-09', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, No Insurance Sales Exp, Have tried for some Govt Exams Earlier, ', '5', '1', '', '1', '1', '', '2', '2021-11-10', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-08 11:56:30', 60, '2021-11-10 11:37:34', 0, NULL, 1),
(6730, 'Aravind Rajkumar', '4', '9360848320', '8838676115', 'aravindofficial17@gmail.com', '1996-09-17', 25, '2', '2', 'Rajkumar', 'Business', 10000.00, 0, 10500.00, 11000.00, 'Thanjavur', 'Thanjavur', '2111080011', '1', '2', 'upload_files/candidate_tracker/23393773234_CV_2021-11-05-112739.pdf', NULL, '1', '2021-11-08', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-08 12:06:25', 50, '2021-11-08 05:19:38', 0, NULL, 1),
(6731, '', '0', '8686369669', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111080012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-08 12:31:22', 0, NULL, 0, NULL, 1),
(6732, 'Sufiyan Patnool', '5', '8332887324', '8919530524', 'Sufiyanpatnool11@gmail.com', '1998-08-24', 23, '2', '2', 'P moula Valli', 'Tailor', 30000.00, 2, 270000.00, 310000.00, 'Chennai', 'Chennai', '2111080013', '1', '2', 'upload_files/candidate_tracker/41060202204_PATNOOL SUFIYAN.pdf', NULL, '2', '2021-11-09', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Local communication, candidate is from andhra he prefers much for Telugu xxamp Hindi communications.Will not suits for our role', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 01:03:35', 1, '2021-11-08 02:59:37', 0, NULL, 1),
(6733, 'JENIFER MARTIN', '11', '9150785836', '7358982309', 'jenimartin1899@gmail.com', '2000-08-18', 21, '2', '2', 'Pushparani P', 'Nurse', 28000.00, 2, 0.00, 15000.00, '2/235,Main road, Sathiyamangalam,Gingee tk.', 'chennai', '2111080014', '1', '1', 'upload_files/candidate_tracker/91809282251_JENIFER MARTIN(Resume).pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communciation ok, Not much comfort with the TxxampC, Fresher, Sustainability Doubts, Father is doing business in Singapore, Brother did his studies in Singapore, Mother Govt Health Dept Staff. Salary Exp also High being a fresher\n\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-08 02:00:43', 60, '2021-11-09 11:33:08', 0, NULL, 1),
(6734, 'nandhagopal s', '11', '7530092312', '8667569946', 'nandhagopal04092000@gmail.com', '2000-09-04', 21, '2', '2', 'shanmugam m', 'labour', 72000.00, 1, 0.00, 16000.00, 'tiruchirappalli', 'Tiruchirappalli', '2111080015', '1', '1', 'upload_files/candidate_tracker/38814754898_Nandhagopal Resume.pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped - RNR', '6', '1', '0', '1', '1', '0', '2', '2021-11-10', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 02:05:33', 1, '2021-11-08 10:25:21', 0, NULL, 1),
(6735, 'balaji t.u', '11', '7402279929', '', 'balajitu5@gmail.com', '1996-06-11', 25, '2', '2', 'umapathi d', 'business', 40000.00, 1, 0.00, 25000.00, 'tanjore', 'chennai', '2111080016', '1', '1', 'upload_files/candidate_tracker/67193948073_Balaji Resume-1(5).pdf', NULL, '3', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, need time to check with parents on the TxxampC, Pressure handling seems to doubt on the profile\n', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 02:37:22', 1, '2021-11-08 06:51:24', 0, NULL, 1),
(6736, 'monikasree', '11', '9094336775', '9500177909', 'monikasree202@gmail.com', '2000-02-20', 21, '2', '2', 'Vijayakumar', 'driver', 1.75, 1, 0.00, 2.75, '19/41 canal bank road ,c.i.t.nagar, Chennai-35', '19/41 Canal Bank Road ,C.I.T.Nagar, Chennai-35', '2111080017', '1', '1', 'upload_files/candidate_tracker/40161453875_Monikasree\'s Resume.pdf', NULL, '3', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Scheduled for a F2F ,but candidate didnt turn', '6', '1', '0', '1', '3', '0', '2', '2021-11-10', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 02:46:26', 1, '2021-11-08 02:52:20', 0, NULL, 1),
(6737, 'Kevin Xavier', '5', '6363671724', '', 'kevinxavier120@gmail.com', '1996-10-24', 25, '2', '2', 'J Xavier Israel', 'Unemployed', 50000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2111080018', '17', '2', 'upload_files/candidate_tracker/50037363944_KEVIN XAVIER (1).pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Communication Is Good, But We Prefer To Have A Good Local Communication For This Insurance Sales. Having Exp In Multiple Domains And Understood From The Discussion Had With The Candidate That He Comforts To Work In Other Domain Areas. For our Insurance Sales seems not to be much comfortable with handling the pressure.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-08 03:35:45', 1, '2021-11-08 03:42:03', 0, NULL, 1),
(6738, 'Abdul Basith', '23', '9710123208', '9710030175', 'abashid75@gmail.com', '1999-04-10', 22, '2', '2', 'Azhar ali', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2111080019', '1', '1', 'upload_files/candidate_tracker/984260875_Abdul.CV.pdf', NULL, '1', '2021-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher, Looking Only For The Internship And Not Open Up To Learn Addtional Skills.Much Comfortable To Work Only In Designing. Candidate commited to share the porfolio but didnt turned', '2', '1', '0', '1', '1', '0', '2', '2021-11-11', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 03:41:03', 1, '2021-11-08 03:46:49', 0, NULL, 1),
(6739, 'MAHAESWARI A', '11', '8220869460', '', 'mahaeswariarumugam@gmail.com', '1996-09-25', 25, '2', '2', 'ARUMUGAM', 'Attender', 7000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2111080020', '1', '1', 'upload_files/candidate_tracker/46783127942_MAHAESWARI A.pdf', NULL, '2', '2021-11-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, will not sustain for a long ,communication average. Pressure handling also doubts and the salary exp is high\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 04:39:02', 1, '2021-11-08 04:45:07', 0, NULL, 1),
(6740, 'saravanakumar d', '11', '9677804321', '', 'saravanatarus@gmail.com', '1992-08-22', 29, '2', '2', 'duraisamy', 'business', 50000.00, 1, 0.00, 25000.00, 'palani', 'chennai', '2111080021', '1', '1', 'upload_files/candidate_tracker/73108498147_SARAVANA.pdf', NULL, '3', '2021-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-08 06:34:13', 1, '2021-11-08 06:42:55', 0, NULL, 1),
(6741, '', '0', '6363671723', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111080022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-08 06:40:43', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6742, 'siddesh', '4', '9884593535', '9884803535', 'sideshtorreto@gmail.com', '1998-11-14', 22, '2', '2', 'sangeetha', 'business', 50000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2111090001', '1', '1', 'upload_files/candidate_tracker/91265868701_P.V._SIDDESH_Resume Adv.pdf', NULL, '1', '2021-11-09', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for tele sales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-09 11:14:34', 60, '2021-11-09 03:58:49', 0, NULL, 1),
(6743, 'SIVAGURUNATH S', '13', '8825903142', '9655969513', 'sivaguruit2015@gmail.com', '1998-04-17', 23, '2', '2', 'SIVARAMAN SUMATHI', 'House wife', 70000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2111090002', '1', '1', 'upload_files/candidate_tracker/58093531051_SIVAGURUNATH\'s Resume (3)(1).pdf', NULL, '1', '2021-11-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-09 12:53:35', 1, '2021-11-09 12:57:20', 0, NULL, 1),
(6744, 'Kanagavel V', '13', '9715506458', '', 'kanagavelvelusamy@gmail.com', '1995-03-27', 26, '2', '2', 'Velusamy V', 'Gas Welder', 10000.00, 2, 0.00, 13000.00, 'Tiruchengode, Namakkal (Dt).', 'Tiruchengode, Namakkal (Dt).', '2111090003', '1', '1', 'upload_files/candidate_tracker/94972478921_Resume.pdf', NULL, '1', '2021-11-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'RNR Dropped', '2', '2', '', '1', '1', '', '2', '2021-11-13', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-09 01:07:35', 60, '2021-11-12 11:59:41', 0, NULL, 1),
(6745, 'Mohammad liyan', '6', '8870454856', '6379540451', 'gmohammedliyan@gmail.com', '2001-04-19', 20, '2', '2', 'G shakeel Ahmed', 'Job', 16000.00, 4, 0.00, 20000.00, 'Vaniyambadi', 'Vaniyambadi', '2111090004', '17', '1', 'upload_files/candidate_tracker/42503602837_Mohammed liyan.pdf', NULL, '3', '2021-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,candidate much comfort to work in non voice process only. Will not sustain in our sales process', '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-09 04:45:15', 1, '2021-11-09 04:55:03', 0, NULL, 1),
(6746, '', '0', '9677303170', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-09 05:02:21', 0, NULL, 0, NULL, 1),
(6747, 'Thowfeek Rahman', '6', '8667347545', '', 'Thowfeekr7@gmail.com', '2000-04-15', 21, '1', '2', 'RAHMATULLAH', 'Self', 8000.00, 1, 0.00, 13000.00, 'Mannady', 'T nagar', '2111100001', '', '1', 'upload_files/candidate_tracker/88791416256_New Doc 2021-09-02 09.39.30_1.pdf', NULL, '1', '2021-11-10', 0, '55574', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-10 11:54:17', 60, '2021-11-10 05:19:11', 0, NULL, 1),
(6748, 'Balasurya', '6', '9710923773', '9710023773', 'Suryasaifai@gmail.c', '1998-11-02', 23, '1', '2', 'M.sathiya moorthy', 'TV mechanic', 15000.00, 1, 15000.00, 20000.00, 'N0.29/105 2nd floor muthamman kom chennai-600023', 'N0.29/105 2nd Floor Muthaanavaram Chennai-600023', '2111100002', '', '2', 'upload_files/candidate_tracker/82480893896_RESUME.docx', NULL, '1', '2021-11-10', 0, 'P1177', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'Internal Reference, have exp in Insurance Sales and the Salary Expectation is very High.Holding an offer for 18K.If hired sustainability doubts, please do check for RE', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-10 02:40:37', 1, '2021-11-10 02:47:23', 0, NULL, 1),
(6749, 'aravind s', '11', '7904562723', '', 'aravindssa12@gmail.com', '1997-03-12', 24, '2', '2', 'sankar p', 'farmer', 10000.00, 1, 0.00, 15000.00, 'vadalur', 'chennai', '2111120001', '1', '1', 'upload_files/candidate_tracker/2224567647_Aravind S HR.pdf', NULL, '2', '2021-11-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Sustainability Doubts he is aving a plan to start business.Handling pressure also doubts on this profile', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-12 12:14:29', 1, '2021-11-12 01:10:53', 0, NULL, 1),
(6750, 'AMUDHA', '4', '7358027240', '9176921979', 'amudhaarunachalam710@gmail.com', '2001-01-21', 20, '3', '2', 'Arunachalam', 'Whatchman', 12000.00, 2, 0.00, 10000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2111120002', '', '1', 'upload_files/candidate_tracker/41461754526_amudha A.docx', NULL, '1', '2021-11-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, need to open up will not handle our pressure. Sustainability doubts', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-12 12:48:59', 1, '2021-11-12 12:58:29', 0, NULL, 1),
(6751, 'Jothika.G', '4', '6380208970', '', 'jothi6120@gmail.com', '2000-12-21', 20, '3', '2', 'L Gopalakrishnan', 'Vegetable sales', 100000.00, 2, 0.00, 12000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2111120003', '', '1', 'upload_files/candidate_tracker/63981031898_Jothika(Resume).pdf', NULL, '1', '2021-11-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,Communication Average, will not sustain xxamp pressure handling doubts.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-12 12:49:59', 1, '2021-11-12 12:59:21', 0, NULL, 1),
(6752, 'keerthana Priya R', '11', '9941925374', '6379061621', 'keerthipria212@gmail.com', '2000-12-02', 20, '2', '2', 'M. Ramesh', 'Driver', 96000.00, 1, 0.00, 175000.00, 'Chennai', 'Chennai', '2111120004', '1', '1', 'upload_files/candidate_tracker/585415834_Resume Keerthanapriya-converted-converted-converted (1).pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-12 01:00:09', 1, '2021-11-12 01:05:49', 0, NULL, 1),
(6753, 'HARIHARAN B', '11', '9444830533', '7904928046', 'harisubramanian480@gmail.com', '1996-08-03', 25, '2', '2', 'Balasubramanian R (Late)', 'Nil', 15000.00, 1, 0.00, 15000.00, '22, Gayathri Amman koil street,Chidambaram', '22, Gayathri Amman Koil Street,Chidambaram', '2111120005', '1', '1', 'upload_files/candidate_tracker/26013051522_RESUME.pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-12 01:07:48', 1, '2021-11-12 01:12:28', 0, NULL, 1),
(6754, 'Dillibabu', '6', '9566085368', '8248754501', 'dillibabu5652@gmail.com', '1990-06-28', 31, '3', '1', 'Gomathy chandrasekar', 'Working', 40000.00, 2, 220000.00, 350000.00, 'Chennai', 'Chennai', '2111120006', '', '2', 'upload_files/candidate_tracker/89831517373_Resume dilli today .file mac - Copy (1)mani.docx', NULL, '1', '2021-11-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,have backend exp ,not much open with Target,not open for collections.looking only for Sr Level positions and the salary exp is very high ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-12 01:16:31', 1, '2021-11-12 01:21:03', 0, NULL, 1),
(6755, 'M.vijayalakshmi', '4', '9150711221', '9043388245', 'Vv231837@gmail.com', '1997-10-08', 24, '4', '1', 'Mathiazhagan', 'Cooly', 20000.00, 4, 0.00, 15000.00, 'No:489/955,p.h road,arumbakkam,chennai-600106', 'Chennai arumbakkam', '2111120007', '', '2', 'upload_files/candidate_tracker/65834105636_Vijayalakshmi resume.pdf', NULL, '1', '2021-11-12', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile, Have Exp In Telecaller, Kindly Check For E Sales RM And Let Me Know', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '6', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-12 02:13:12', 60, '2021-11-12 07:02:54', 0, NULL, 1),
(6756, 'k.iyappan', '2', '8610593462', '9176814202', 'iyappank717@gmail.com', '2001-09-28', 20, '2', '2', 'Kandasamy', 'Mason', 20000.00, 1, 0.00, 15000.00, 'No : 8/96 Pillayar Koil Street Paraniputhur', 'No : 8/96 Pillayar Koil Street Paraniputhur', '2111120008', '1', '1', 'upload_files/candidate_tracker/6538939148_myResume.pdf', NULL, '1', '2021-11-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,No basic skills knowledge,Not much open with internship cum employment,sustainability Doubts', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-12 06:41:20', 1, '2021-11-12 07:04:14', 0, NULL, 1),
(6757, 'Vignesh S', '4', '8754176560', '', 'svignesh20000@gmail.com', '2000-10-21', 21, '3', '2', 'Sivaprakash', 'Cooli', 75000.00, 1, 0.00, 13000.00, 'Chittathur', 'Chittathur', '2111130001', '', '1', 'upload_files/candidate_tracker/56911127689_Vignesh resume.pdf', NULL, '1', '2021-11-13', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'not suitable this profile looking for non- voice ', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-13 10:06:06', 1, '2021-11-13 10:15:41', 0, NULL, 1),
(6758, 'mohan raj s', '22', '9176455565', '', 'mohansraj2001@gmail.com', '2006-11-13', 0, '2', '2', 'sathyavathy s', 'junior executive', 60000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2111130002', '1', '1', 'upload_files/candidate_tracker/17794640778_Resume LS.pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Offered him for the internship cum employment, candidate expects very high pay of 20K Gross, Suggested him for the Internship alone too, but not interested for this', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-13 12:29:04', 1, '2021-11-13 12:34:52', 0, NULL, 1),
(6759, 'Ananthi P R', '21', '9363273473', '', 'ananthi.PR.411@gmail.com', '1997-11-05', 24, '3', '2', 'P Rajendiran', 'Driver', 9000.00, 1, 270000.00, 351000.00, 'Chennai', 'Chennai', '2111130003', '', '2', 'upload_files/candidate_tracker/52767824997_ANANTHI P R RESUME.docx', NULL, '1', '2021-11-13', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interviewed by Gokul and profile has been rejected', '3', '1', '', '1', '1', '', '1', '1970-01-01', '2', '4', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-13 12:51:10', 60, '2021-11-13 06:51:57', 0, NULL, 1),
(6760, 'Andrea Jency Lawrence', '11', '7358261899', '9150957722', 'andreajency4@gmail.com', '2000-08-22', 21, '2', '2', 'Lawrence', 'VRS', 20000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2111140001', '1', '1', 'upload_files/candidate_tracker/16497239964_andrea_jency-updated1-converted 22-converted.pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 10:26:59', 1, '2021-11-14 12:16:08', 0, NULL, 1),
(6761, 'Maharajan R', '11', '7448496755', '9345283859', 'maharajah0002@gmail.com', '1995-10-09', 26, '2', '2', 'Nil', 'Student', 25000.00, 1, 0.00, 16000.00, 'Chennai', 'chennai', '2111140002', '1', '1', 'upload_files/candidate_tracker/85919104600_RESUME R MAHARAJAN123(1).pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication, little attitude, currently working in ICICI prudential and looking for HR Recruitment. Not open for TxxampC, will not sustain', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 10:46:41', 1, '2021-11-14 11:21:55', 0, NULL, 1),
(6762, 'Samynathan', '4', '6381882623', '7358464133', 'samys4849@gmail.com', '1998-07-27', 23, '2', '2', 'Rajendran', 'Daily wages', 12000.00, 1, 12000.00, 16000.00, 'Chennai', 'Chennai', '2111140003', '1', '2', 'upload_files/candidate_tracker/32904269997_resume 1(1).pdf', NULL, '1', '2021-11-15', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Sales, he worked as a coordinator in his previous exp, looking for non voice opening only/backend operations like KYC verification', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-14 12:11:27', 1, '2021-11-14 12:17:36', 0, NULL, 1),
(6763, 'Ranjith sugumar', '11', '9092248648', '', 'ranjithsugu1997@gmail.com', '1997-12-24', 23, '2', '2', 'Sugumar Mohan', 'Business', 35000.00, 1, 0.00, 20000.00, '13/6 New Street, Broadway, Chennai-600001', '40/13 4th Street,Vasantha Nagar,Thiruvattiyur,Ch.', '2111140004', '1', '1', 'upload_files/candidate_tracker/50210966249_1636874532731Resume_Ranjith.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Have Interest towards robotics and automation, Not much comfort to work in Target', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 12:43:28', 1, '2021-11-14 12:59:28', 0, NULL, 1),
(6764, 'sundar. j', '22', '9884343572', '', 'shansub97@gmail.com', '1997-07-26', 24, '2', '2', 'jagadeesan', 'deputy general manager', 75000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2111140005', '1', '1', 'upload_files/candidate_tracker/93646764757_SUNDAR RESUME.pdf', NULL, '1', '2021-11-16', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate not suitable for the profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 12:50:34', 1, '2021-11-14 01:08:30', 0, NULL, 1),
(6765, 'AKASH JOHNSON A', '11', '8270179864', '7871937266', 'akashjohnson43@gmail.com', '2000-09-30', 21, '2', '2', 'Albert s', 'Agriculture', 12000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2111140006', '1', '1', 'upload_files/candidate_tracker/54097137054_Resume_AKASH JOHNSON_Format7.pdf', NULL, '1', '2021-11-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 01:03:25', 1, '2021-11-14 01:29:35', 0, NULL, 1),
(6766, 'RajaSuma.D.K', '13', '7358800276', '9962103042', 'rs.dk.25@gmail.com', '1999-09-13', 22, '2', '2', 'Kanaga.D', 'Homemaker', 13000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2111140007', '1', '1', 'upload_files/candidate_tracker/21625852690_rsfinal 128.pdf', NULL, '3', '2021-11-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic knowledge in Javascript,,Handling pressure and sustainability doubts on this profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-14 01:06:47', 60, '2021-11-16 05:40:36', 0, NULL, 1),
(6767, '', '0', '8939257822', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-14 01:26:42', 0, NULL, 0, NULL, 1),
(6768, 'Parthasarathy Ethirajan', '23', '9962332986', '7397353470', 'parthasarathy289@gmail.com', '2000-10-24', 21, '2', '2', 'Kasthuri', 'Homemaker', 10000.00, 1, 0.00, 150000.00, 'No:57,maduranaicken St,Maduravoyal,Chennai', 'No:57,Maduranaicken St,Maduravoyal,Chennai', '2111140009', '1', '1', 'upload_files/candidate_tracker/35323273259_Parthsarathy _Resume 2021.pdf', NULL, '1', '2021-11-15', 0, '', '3', '60', '2021-11-16', 0.00, '', '3', '2021-11-17', '1', 'Selected the candidate for the internship', '2', '1', '', '1', '1', '', '2', '2021-11-16', '1', '2', 'Selected fot the internship,Joined and abscond from the second day', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-14 02:58:28', 60, '2021-11-17 07:06:20', 0, NULL, 1),
(6769, 'Priyanka.s', '11', '9790729121', '9551152440', 'priyankasekat1097@gmail.com', '1997-10-23', 24, '2', '2', 'P.sekar', 'Secretariat [JA]', 35000.00, 2, 15000.00, 20000.00, 'Chennai near oldwashermenpet', 'Chennau near oldwashermenpet', '2111140010', '1', '2', 'upload_files/candidate_tracker/79712840901_PRIYANKA RESUME NEW 1.doc', NULL, '1', '2021-11-16', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Not much comfortable with TxxampC, Not ready to work in target if we have for the recruitment,In 10 months 2 companies and working in FMCG company with 15K TH and Expecting more ', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 03:02:51', 1, '2021-11-14 03:34:43', 0, NULL, 1),
(6770, 'C.Queen Elizabeth Joswana', '11', '8015889494', '9940369855', 'queen140101@gmail.com', '2001-01-14', 20, '2', '2', 'Arulraj', 'Employee', 20000.00, 1, 0.00, 20000.00, '74,sathyamoorthy Street,Jeeva Nagar,Korukkupet,C21', '74,sathyamoorthy Street,Jeeva Nagar,Korukkupet,C21', '2111140011', '1', '1', 'upload_files/candidate_tracker/26567510901_RESUME-converted (1).pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very poor communication, no basic knowledge, Poor understanding, not suitable.', '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-14 03:13:40', 1, '2021-11-15 10:07:47', 0, NULL, 1),
(6771, 'Devakar Balachandran', '13', '9677756724', '', 'devakarbalachandran@gmail.com', '1997-06-17', 24, '2', '2', 'R.Balachandran', 'Retired Supredent', 15000.00, 1, 15000.00, 15000.00, 'Trichy', 'Chennai', '2111140012', '1', '2', 'upload_files/candidate_tracker/69590741994_Devakar Balachandran_Profile (1).pdf', NULL, '1', '2021-11-16', 0, '', '3', '59', '2021-12-01', 96000.00, '', '', '2021-12-04', '2', 'Selected for PHP - Intern for 3 months then employement overall 3 yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-14 04:45:18', 60, '2021-12-01 07:33:36', 0, NULL, 1),
(6772, 'Peter jerald.s', '21', '8220435283', '', 'jeraldpeter2308@gemail.com', '2000-08-23', 21, '2', '2', 'Savari mathu. A', '8th', 72000.00, 1, 0.00, 20000.00, 'Thiruvallur', 'Thiruvallur', '2111140013', '1', '1', 'upload_files/candidate_tracker/65546594445_resume.pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication no, no sustainability in his previous exp. not clear on the position he looks. Comforts to work in Non voice. Not suitable for our role ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-14 05:28:55', 60, '2021-11-15 03:57:44', 0, NULL, 1),
(6773, 'Vasanthra', '22', '6379498593', '', 'vasanthraalagar1234@gmail.com', '1999-03-17', 22, '2', '2', 'KK Alagarsamy', 'Street vendor', 25000.00, 2, 0.00, 20000.00, 'Mogappair east, chennai', 'Mogappair east, chennai', '2111150001', '1', '1', 'upload_files/candidate_tracker/46747999034_Vasanthra Resume 2-1-converted.pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication very average, no basic knowledge about digital marketing, salary Exp is very high. worked in Accounts/Admin no stability in her experience', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-15 10:33:37', 1, '2021-11-15 10:37:52', 0, NULL, 1),
(6774, 'Gogulnath s', '6', '9789071988', '8754812988', 'gokulnethu@gmail.com', '1995-05-29', 26, '2', '2', 'Subramani', 'Farmer', 100000.00, 3, 16500.00, 21000.00, 'Cuddalore', 'Poonamallee', '2111150002', '1', '2', 'upload_files/candidate_tracker/77527222640_GOGULNATH N resume.docx', NULL, '1', '2021-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication,no sustainability in his previous exp. Worked in various domain. Not suitable for our sales ,will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-15 10:45:32', 1, '2021-11-15 10:52:21', 0, NULL, 1),
(6775, 'Divyabharathi.b', '5', '7401572278', '8122373003', 'Dheemasaran@gmail.com', '1999-01-04', 22, '2', '1', 'Satheeshkumar.M', 'A.z.Manager', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2111150003', '1', '2', 'upload_files/candidate_tracker/11229027521_Divya Satheesh New Resume.pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-15 10:48:10', 1, '2021-11-15 11:14:57', 0, NULL, 1),
(6776, 'Dorathi', '5', '7550109464', '8939081404', 'dorathi417@gmail.com', '1998-06-03', 23, '2', '2', 'Dhanasingh', 'watch man', 10000.00, 1, 0.00, 15000.00, 'Iyyapanthangal', 'Iyyapanthangal', '2111150004', '1', '1', 'upload_files/candidate_tracker/11269264911_Resume Dorathy Photo (1).pdf', NULL, '1', '2021-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-15 11:04:05', 1, '2021-11-15 11:10:45', 0, NULL, 1),
(6777, 'Vetrivel.j', '6', '8838501548', '', 'vetrivel19993010@gmail.com', '1999-10-30', 22, '1', '2', 'Jagadheesan. S', 'Civil', 20000.00, 2, 0.00, 15000.00, 'Geragambakkam', 'Geragambakkam', '2111150005', '', '1', 'upload_files/candidate_tracker/97065320976_VETRIVEL RESUME-1.docx', NULL, '1', '2021-11-15', 0, 'P1072', '3', '59', '2021-12-06', 168000.00, '', '4', '2021-12-13', '1', 'Selected for Arumbakkam - Saravanan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'offer Link shared', '', '', '', NULL, NULL, NULL, 1, '2021-11-15 12:11:16', 60, '2021-12-06 01:44:42', 0, NULL, 1),
(6778, '', '0', '9290444788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111150006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-15 12:21:59', 0, NULL, 0, NULL, 1),
(6779, 'Sugi.L', '5', '9176179913', '9176342833', 'sugismart03@gmail.com', '2001-08-29', 20, '2', '2', 'Lingam . S', 'Kuzhi', 45000.00, 1, 0.00, 15000.00, 'Yes', 'Yes', '2111150007', '1', '1', 'upload_files/candidate_tracker/14426994249_imgtopdf_15112021012632.pdf', NULL, '1', '2021-11-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much open up, have exp in accounts - super market.Much comforts to work in Non voice process only', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-15 01:13:51', 50, '2021-11-15 01:52:42', 0, NULL, 1),
(6780, 'Naveenraj', '11', '8489895286', '9790532365', 'naveenranrajendran95@gmail.com', '1995-09-27', 26, '2', '2', 'Rajendran', 'Mechanic', 20000.00, 2, 20000.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2111150008', '1', '2', 'upload_files/candidate_tracker/42291485730_Resume-Naveen.pdf', NULL, '1', '2021-11-16', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication average, In 1.10 yrs 2 companies and the salary expectation is very high. Candidate location is from Chengalpet', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-15 02:58:48', 1, '2021-11-16 02:16:52', 0, NULL, 1),
(6781, '', '0', '7871320026', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111150009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-15 03:23:57', 0, NULL, 0, NULL, 1),
(6782, 'R Aravindh', '11', '9600517709', '6374507686', 'aravindhstalin.97@gmail.com', '1997-06-12', 24, '2', '2', 'R.Vellathai', 'Housewife', 30000.00, 1, 249958.00, 300000.00, 'Madurai', 'Chennai', '2111150010', '1', '2', 'upload_files/candidate_tracker/52768113841_Aravindh resume-1.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, Attitude is there, Have Exp in US IT Recruitment.10 months 2 companies worked Last drawn Salary is 20100 and not ready to negotiate less than this. Sustainability doubts on this profile', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-15 04:25:35', 1, '2021-11-15 04:31:53', 0, NULL, 1),
(6783, '', '0', '7449023167', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111150011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-15 04:34:02', 0, NULL, 0, NULL, 1),
(6784, 'T.Tamilarasi', '13', '9629760517', '8056511840', 'tamilarasithirumalai2017@gmail.com', '2000-07-09', 21, '2', '2', 'Thirumalai', 'Coolie', 36000.00, 2, 0.00, 12000.00, 'Thiruvannamalai', 'Ambattur', '2111150012', '1', '1', 'upload_files/candidate_tracker/92352341582_Jaba resume-converted.docx', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Active, No basic knowledge in HTML,CSS,JS, will not sustain. Not suitable for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-15 07:03:25', 1, '2021-11-15 07:25:00', 0, NULL, 1),
(6785, 'R MARIA DASAN STANLEY', '5', '7010746455', '', 'stanleymaria1994@gmail.com', '1994-11-28', 26, '2', '2', 'D ROSARY MORAIS', 'Marketing', 500000.00, 2, 22.00, 30.00, '4/131 state bank colony', 'Infinity urban Porur', '2111160001', '1', '2', 'upload_files/candidate_tracker/78779033414_resume- maria dasan stanley.docx', NULL, '1', '2021-11-16', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, No relevant Exp in Sales. He is into business for a long. Kindly check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-16 10:38:06', 1, '2021-11-16 10:44:58', 0, NULL, 1),
(6786, 'D.kishorekumar', '4', '8248438845', '9003240412', 'Kishoreduke125@gmail.com', '1999-02-16', 22, '2', '2', 'Lakshmi', 'Housewife', 15000.00, 1, 13000.00, 15000.00, 'Arumbakkam', 'chennai', '2111160002', '3', '2', 'upload_files/candidate_tracker/35748567462_MBA ex.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok,have 1 yr of exp but frequent permission/leaves during the work. Will not sustain and not suitable for our role', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 10:42:24', 1, '2021-11-16 10:50:33', 0, NULL, 1),
(6787, '', '0', '8939493493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 10:51:41', 0, NULL, 0, NULL, 1),
(6788, 'Sevanthi', '4', '9345754861', '9790882981', 'ramyasweety0402@gmail.com', '2000-07-02', 21, '3', '2', 'Selvi', '-', 13000.00, 2, 12000.00, 15000.00, 'Ennore', 'Ennore', '2111160004', '', '2', 'upload_files/candidate_tracker/51232497073_TapScanner 11-01-2021-11.55(1).pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much open up, too long distance from Ennore.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 11:06:18', 1, '2021-11-16 11:18:21', 0, NULL, 1),
(6789, 'Mahalakshmi', '4', '7338786212', '9840796313', 'mahag6212@gmail.com', '1993-10-11', 28, '3', '2', 'Banumathy', 'Housewife', 40000.00, 2, 12.50, 15.00, 'CHENNAI', 'CHENNAI', '2111160005', '', '2', 'upload_files/candidate_tracker/19675603826_MAHALAKSHMI-1.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Worked in Voice xxamp Non Voice 3 yrs 4 companies handling pressure and sustainability doubts on this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 11:08:19', 1, '2021-11-16 11:14:04', 0, NULL, 1),
(6790, 'S Mahalakshmi', '11', '9940425965', '', 'selvakumar.mahalakshmi@gmail.com', '1996-10-08', 25, '2', '2', 'V. SELVAKUMAR', 'Driver', 72000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2111160006', '1', '1', 'upload_files/candidate_tracker/91653097279_S MAHALAKSHMI_RESUME.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Good, Career Gap, Holding offer with CTS for 3 LPA, and looking for some more offers. Will not sustain with us', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-16 11:39:59', 50, '2021-11-17 12:05:04', 0, NULL, 1),
(6791, 'VIGNESH V', '4', '9043388245', '9884645978', 'vicky3011997@gmail.com', '1997-11-30', 23, '4', '2', 'VENKATESAN', 'Business', 25000.00, 2, 19500.00, 20000.00, 'Chennai', 'Chennai', '2111160007', '', '2', 'upload_files/candidate_tracker/18102588483_VICKY RESUME.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,working in share trading company,just as a coordinator.In 1.2 yrs changed 2 companies .Pressure handling doubts and salary expectation is very high as he was getting around 19.5 TH', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 12:14:40', 1, '2021-11-16 12:19:07', 0, NULL, 1),
(6792, 'Anandhi', '11', '9600189404', '', 'anandhi10121998@gmail.com', '1998-12-10', 22, '2', '2', 'Subramanian', 'Driver', 150000.00, 1, 0.00, 18000.00, '11/598 kannadhasan salai mogappair east Chennai 37', '11/598 Kannadhasan Salai Mogappair East Chennai', '2111160008', '1', '1', 'upload_files/candidate_tracker/52528539754_Anandhi S (1).pdf', NULL, '1', '2021-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-16 01:25:22', 1, '2021-11-16 02:37:27', 0, NULL, 1),
(6793, 'PAWAN GIRI', '5', '9676541939', '8074598417', 'pavangirimktg@gmail.com', '1992-07-15', 29, '2', '1', 'RUBY GIRI', 'Job', 40000.00, 3, 21700.00, 28000.00, 'Mau, Uttarpradesh, India', 'Hyderabad, Telangana, India', '2111160009', '19', '2', 'upload_files/candidate_tracker/9103089303_Pawan Giri Resume_PAWAN GIRI(6).pdf', NULL, '2', '2021-11-19', 15, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Rejected - Will not sustain, Poor communication, Previous working experience is unapt, not having a laptop.\n', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 01:55:32', 1, '2021-11-16 03:12:05', 0, NULL, 1),
(6794, 'Ganesh GR', '4', '8825975466', '9884344145', 'ganeshyadhav1313@gmail.com', '1999-12-13', 21, '3', '2', 'G Rajamani', 'Skilled assistant', 20000.00, 0, 0.00, 13000.00, 'Oldwashermenpet', 'Oldwashermenpet', '2111160010', '', '1', 'upload_files/candidate_tracker/91752970570_ganesh resu.pdf', NULL, '1', '2021-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average not open for Target based position. Looking for the Core Mechanical position. For time being looking for other positions', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 02:07:59', 1, '2021-11-16 02:11:24', 0, NULL, 1),
(6795, '', '0', '9505320305', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 02:24:31', 0, NULL, 0, NULL, 1),
(6796, '', '0', '7985249154', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 02:40:46', 0, NULL, 0, NULL, 1),
(6797, 'SIDDANTAPU NAVEEN KUMAR', '17', '9441121402', '', 'naveenks93@yahoo.com', '1993-05-05', 28, '2', '2', 'KRISHNA', 'Agriculture', 633000.00, 2, 633000.00, 790000.00, 'Hyderabad', 'Warangal', '2111160013', '19', '2', 'upload_files/candidate_tracker/85970911246_Resume_NaveenKS_B4.pdf', NULL, '1', '2021-11-20', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' the candidate is expecting the high Pay than we suggested. Dropped', '5', '2', '0', '3', '4', '0', '2', '2021-11-23', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 02:41:00', 1, '2021-11-16 02:45:51', 0, NULL, 1),
(6798, '', '0', '8754536032', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 03:36:34', 0, NULL, 0, NULL, 1),
(6799, '', '0', '8428526435', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111160015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-16 04:28:33', 0, NULL, 0, NULL, 1),
(6800, 'Anandhi', '11', '9841760945', '9600189404', 'anandhi10121998@gmail.com', '1998-12-10', 22, '2', '2', 'Subramanian', 'Driver', 1.50, 1, 0.00, 18000.00, '11/598 Kannadhasan Salai Mogappair East Chennai', '11/598 mogappair east Chennai 37', '2111160016', '1', '1', 'upload_files/candidate_tracker/48411494838_Anandhi S (1).pdf', NULL, '1', '2021-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-16 05:00:30', 1, '2021-11-16 05:06:45', 0, NULL, 1),
(6801, 'rajaparthi satya naga karthik', '4', '9107511999', '', 'rsnk2011@gmail.com', '1992-07-04', 29, '3', '2', 'somalingam', 'rmp', 100000.00, 0, 22000.00, 25000.00, 'amalapuram', 'visakapatnam', '2111160017', '', '2', 'upload_files/candidate_tracker/56977340035_Resume.doc', NULL, '3', '2021-11-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-16 10:12:37', 1, '2021-11-16 10:16:44', 0, NULL, 1),
(6802, 'Indrajith', '4', '9176830382', '7305656292', 'viratindrajith3118@gmail.com', '2006-11-17', 0, '2', '2', 'Dhanasekar', 'Cooly', 20000.00, 2, 0.00, 15000.00, 'Tondiarpet', 'Tondiarpet', '2111170001', '1', '1', 'upload_files/candidate_tracker/60337073802_Indrajith_Resume.pdf', NULL, '1', '2021-11-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 2 months exp in voice process, left the company due to work pressure and looking for Admin openings, also plan to do Course related to IT. Will not handle our pressure, Not suits for our role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-17 10:54:07', 50, '2021-11-17 12:01:35', 0, NULL, 1),
(6803, 'Inba kumar', '23', '6379885635', '8838804119', 'Inbak434@gmail.com', '1999-04-18', 22, '2', '2', 'Sagaya doss', 'Mechanic', 12000.00, 1, 10000.00, 15000.00, 'Chennai', 'Perambur chennai', '2111170002', '1', '2', 'upload_files/candidate_tracker/28232354813_1_INBA KUMAR RESUME 2021.docx', NULL, '1', '2021-11-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Collections and looking for non voice openings(data Entry/Documentation),not comfortable for voice process', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-17 11:11:57', 50, '2021-11-17 12:02:50', 0, NULL, 1),
(6804, 'N Divya', '4', '7358405384', '9043524026', 'Divyan248@gmail.com', '1994-11-02', 27, '1', '2', 'J Nagarajan', 'Father', 15000.00, 5, 15000.00, 180000.00, 'Perungudi', 'Perungudi', '2111170003', '', '2', 'upload_files/candidate_tracker/47257635533_DIVYA RESUME.doc', NULL, '3', '2021-11-17', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Frequent Job changer,have exp in both voice xxamp non voice but much comfort for non voice.Long career Gap.Will not sustain with us', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-17 12:30:13', 1, '2021-11-17 12:50:03', 0, NULL, 1),
(6805, 'Sharmila.B', '4', '7358740133', '9363193108', 'sharmila06061996@gmail.com', '1996-06-06', 25, '1', '2', 'Shanthi', 'Mother', 10000.00, 4, 15000.00, 18000.00, 'Vyasarpadi', 'Vyasarpadi', '2111170004', '', '2', 'upload_files/candidate_tracker/4538523120_Resume.pdf', NULL, '1', '2021-11-17', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Hold On Long Pending', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-17 12:33:50', 1, '2021-11-17 12:43:56', 0, NULL, 1),
(6806, 'Mohan Raj T', '4', '9080464881', '9941678836', 'mohanmithran44@gmailcom', '1996-04-30', 25, '4', '2', 'Thangavel M', 'Hotel Room boy', 14000.00, 2, 0.00, 17000.00, 'Chennai', 'Mgr nagar', '2111170005', '', '1', 'upload_files/candidate_tracker/91329357585_m.priyanka.doc', NULL, '1', '2021-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-17 01:22:27', 1, '2021-11-17 01:32:17', 0, NULL, 1),
(6807, 'R.Elumalai', '4', '7826981544', '6369159713', 'Erselumalai1999@gmail.com', '1999-07-28', 22, '4', '2', 'Ramachadiran.r', 'Clerk', 15000.00, 1, 0.00, 15000.00, 'Kallakurichi dt . Chinnasalem.', 'Urappakkam', '2111170006', '', '1', 'upload_files/candidate_tracker/78973286949_Resume.pdf', NULL, '1', '2021-11-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,Career Gap and he is interest to go with the agriculture, but his parents push him to get into Job, No communication, will not sustain for our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-17 01:33:56', 1, '2021-11-17 01:40:18', 0, NULL, 1),
(6808, '', '0', '9710332849', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111170007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-17 04:01:01', 0, NULL, 0, NULL, 1),
(6809, 'Tamizh selvan', '11', '7010032896', '', 'tamizhselvan619@gmail.com', '1997-06-17', 24, '2', '2', 'Selvarajan', 'Retd pvt company worker', 15000.00, 1, 0.00, 25000.00, 'Ranipet', 'Chennai', '2111180001', '1', '1', 'upload_files/candidate_tracker/69225794482_Tamizh resume.pdf', NULL, '1', '2021-11-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, Pursuing MBA In Evening College - Final Year. Have 2 Yrs Of Sales Exp. Looking For HR Openings, But Not Comfort With The TxxampC, Need Some Time To Check With Family. If He Comes Back Let Us Review And Consider - didnt Turn back with his opinion', '6', '1', '0', '1', '3', '0', '2', '2021-11-20', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 11:10:07', 1, '2021-11-18 11:13:37', 0, NULL, 1),
(6810, 'AJAY.S', '4', '6383808437', '9942812196', 'ajaydav0702@gmail.com', '2001-02-07', 20, '4', '2', 'Geetha senthil Kumar', 'Farmer', 50000.00, 1, 0.00, 10000.00, 'Kumbakonam', 'Kumbakonam', '2111180002', '', '1', 'upload_files/candidate_tracker/88170532476_AJAY RESUME 2021.docx', NULL, '1', '2021-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-18 01:02:32', 1, '2021-11-18 01:28:53', 0, NULL, 1),
(6811, 'Sakthivel G', '13', '8344733276', '9843869401', 'sakthivelbca123@gmail.com', '1998-05-08', 23, '2', '1', 'Govindaraji G', 'Farmar', 180000.00, 2, 15000.00, 25000.00, 'Tirupattur', 'Tirupattur', '2111180003', '1', '2', 'upload_files/candidate_tracker/22402998443_Sakthivel Resume.pdf', NULL, '2', '2021-11-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate have basic exp in Core PHP, have 1 year exp in PHP and his Salary Exp is High not ready to come down from his exp, also not much comfort with TxxampC', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 01:08:12', 1, '2021-11-18 01:18:51', 0, NULL, 1),
(6812, '', '0', '7639486078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-18 01:10:14', 0, NULL, 0, NULL, 1),
(6813, 'Karthik n', '23', '9791116892', '', 'karthikn776@gmail.com', '1997-03-16', 24, '2', '2', 'Neelagandan', 'Business', 400000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2111180005', '1', '1', 'upload_files/candidate_tracker/16431062317_karthik resume-compressed.pdf', NULL, '1', '2021-11-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have only designing knowledge. Looking for high pay, holding multiple offers with 12K and not much open for UI development Skills learning. Not much comfort with TxxampC too.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 01:21:44', 1, '2021-11-18 01:25:04', 0, NULL, 1),
(6814, 'AnandaSurya.s', '4', '6382761788', '9092159464', 'anandasurya0307@gmail.com', '2001-07-23', 20, '3', '2', 'K.r. sekar', 'Weaving', 20000.00, 1, 0.00, 10000.00, 'Thirubuvanam', 'Thirubuvanam', '2111180006', '', '1', 'upload_files/candidate_tracker/60681494401_ANANDASURYA.pdf', NULL, '1', '2021-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-18 01:35:21', 1, '2021-11-18 01:45:58', 0, NULL, 1),
(6815, '', '0', '8489422426', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111180007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-18 01:41:28', 0, NULL, 0, NULL, 1),
(6816, 'Harishkumar', '13', '7639486079', '8300870858', 'sharishsk24@gmail.com', '1997-05-24', 24, '2', '2', 'R selvakumaran', 'Formar', 150000.00, 2, 10000.00, 16000.00, 'Dharmapuri', 'Dharmapuri', '2111180008', '1', '2', 'upload_files/candidate_tracker/54253146876_Harish13_2021.docx', NULL, '2', '2021-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 01:42:28', 1, '2021-11-18 01:49:42', 0, NULL, 1),
(6817, 'AJAY.S', '4', '9489422426', '9442698605', 'ajaysaravanan2211@gmail.com', '2001-09-04', 20, '4', '2', 'Saravanan', 'Business', 30000.00, 1, 0.00, 11000.00, 'Kumbakonam', 'Kumbakonam', '2111180009', '', '1', 'upload_files/candidate_tracker/5203439791_ajay resume edited.pdf', NULL, '1', '2021-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-18 01:47:35', 1, '2021-11-18 02:03:51', 0, NULL, 1),
(6818, 'Ajithkumar', '11', '8148167068', '9600552184', 'ajith.mahendran96@gmail.com', '1996-06-06', 25, '2', '2', 'Mahendran', 'Agriculture', 200000.00, 1, 0.00, 200000.00, 'Mannargudi', 'Mannargudi', '2111180010', '1', '1', 'upload_files/candidate_tracker/94662011628_Ajith MBA CV.pdf', NULL, '2', '2021-11-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, career gap and the salary exp is very high, stating that he looks for HR openings but hold an offer with ICICI for 26K.Sustainability doubts ', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 04:21:30', 1, '2021-11-18 06:04:13', 0, NULL, 1),
(6819, 'Arunprasad Ravi', '11', '7010097887', '9600561360', 'arunsusee.786@gmail.com', '1996-08-07', 25, '2', '2', 'Ravi', 'Salesman in Jewellery', 350000.00, 0, 20000.00, 23000.00, 'Chennai', 'Chennai', '2111180011', '1', '2', 'upload_files/candidate_tracker/76210422174_ARUN PRASAD HR resume.pdf', NULL, '2', '2021-11-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1yr Exp in HR,Last drawn salary is 21K from manufacturing company and his exp is more. Not much comfort to sign the Service Agreement', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-18 04:23:58', 60, '2021-11-18 06:25:14', 0, NULL, 1),
(6820, '', '0', '9500000972', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111180012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-18 04:34:07', 0, NULL, 0, NULL, 1),
(6821, 'K.Amirtha', '11', '6380900438', '7402119869', 'amirthakumar30@gmail.com', '1996-10-30', 25, '2', '2', 'T.kumar', 'TNSTC', 50000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2111180013', '1', '1', 'upload_files/candidate_tracker/44810218055_Amirtha resume .pdf', NULL, '2', '2021-11-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Have Exp in Core field,fresher for the recruitment,no much knowledge in the recruitment, Sustainability doubts on the profile', '6', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-18 08:25:35', 1, '2021-11-18 08:35:16', 0, NULL, 1),
(6822, 'Sowmiya', '21', '7401119544', '9884924492', 'sowmiguna92@gmail.com', '1992-04-24', 29, '2', '1', 'Bharani raj', 'Store manager', 40000.00, 1, 16000.00, 19000.00, 'Oldwashermenpet', 'Oldwashermenpet', '2111190001', '1', '2', 'upload_files/candidate_tracker/39907678243_sowmiya_CV_new_1._(1).pdf', NULL, '1', '2021-11-19', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate not interested with TxxampC', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-19 11:17:50', 50, '2021-11-20 08:39:49', 0, NULL, 1),
(6823, 'Mohamed Shahirudeen', '30', '8148865568', '', 'mshahir879@gmail.com', '1999-02-22', 22, '2', '2', 'Mohamed safi', 'Employee', 13000.00, 2, 0.00, 15000.00, '3/772, Deen Street, Budamangalam, Thiruvaur 610102', 'Thiruvaur', '2111190002', '1', '1', 'upload_files/candidate_tracker/10983583043_Resume.pdf', NULL, '2', '2021-11-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped ,not responding to the calls. Tried couple of Days', '9', '1', '0', '1', '1', '0', '2', '2021-11-24', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-19 12:01:07', 1, '2021-11-19 01:00:56', 0, NULL, 1),
(6824, 'AVINASH KUMAR', '5', '7205718028', '9766568103', 'avinash.mech938@gmail.com', '1995-08-09', 26, '2', '2', 'Dilip Rajak', 'Employee', 30000.00, 2, 17000.00, 23000.00, 'Rampur colony near panni tanki jamalpur bihar', 'Madhapur, Hyderabad', '2111190003', '19', '2', 'upload_files/candidate_tracker/721538500_experience Cv_30-Dec-20_17_21_42.pdf', NULL, '1', '2021-11-22', 30, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in sales profile', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-19 02:30:47', 60, '2021-11-22 12:14:28', 0, NULL, 1),
(6825, '', '0', '7205748028', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-19 02:35:01', 0, NULL, 0, NULL, 1),
(6826, 'Gopalakrishnan', '22', '7358512446', '', 'S.gopal1993.7@gmail.com', '1994-08-06', 27, '2', '1', 'Roja', 'Documentation specialist', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2111190005', '1', '1', 'upload_files/candidate_tracker/12710799157_Resume___BDE.pdf', NULL, '1', '2021-11-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-19 03:00:29', 1, '2021-11-19 03:05:59', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6827, 'abishek b b', '2', '8220817007', '6382172751', 'abishekb958@gmail.com', '1999-07-22', 22, '2', '2', 'babu', 'businessman', 15000.00, 2, 0.00, 3500.00, 'chennai', 'chennai', '2111190006', '1', '1', 'upload_files/candidate_tracker/73063496779_abishekcv.pdf', NULL, '1', '2021-11-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-19 04:34:17', 1, '2021-11-19 04:40:43', 0, NULL, 1),
(6828, '', '0', '9442248159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-19 04:39:08', 0, NULL, 0, NULL, 1),
(6829, 'Kamaraj', '5', '9566054387', '', 'rajaraj387@gmail.com', '1991-12-10', 29, '1', '2', 'Mariyal', 'House wife', 700000.00, 2, 400000.00, 525000.00, 'Chennai', 'Chennai', '2111190008', '', '2', 'upload_files/candidate_tracker/46776953855_KAMARAJ CV 2020 feb.docx', NULL, '1', '2021-11-19', 30, '55641', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Expected saalry is 4.5L Not fit for that salary', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-19 05:43:15', 1, '2021-11-19 05:58:48', 0, NULL, 1),
(6830, 'R Akash', '11', '6383144691', '9344533611', 'akashravindranath48@gmail.com', '1995-08-30', 26, '2', '2', 'V Ravindranath', 'English teacher', 1200000.00, 2, 0.00, 240000.00, 'Chennai', 'Chennai', '2111200001', '1', '1', 'upload_files/candidate_tracker/5621092500_akash resume MBA HR(1).pdf', NULL, '1', '2021-11-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-20 01:29:35', 1, '2021-11-20 02:24:40', 0, NULL, 1),
(6831, '', '0', '7338712273', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111200002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-20 03:04:21', 0, NULL, 0, NULL, 1),
(6832, '', '0', '6379760976', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111200003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-20 03:04:25', 0, NULL, 0, NULL, 1),
(6833, '', '0', '9597913519', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-21 02:54:28', 0, NULL, 0, NULL, 1),
(6834, '', '0', '9791133706', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-22 10:31:47', 0, NULL, 0, NULL, 1),
(6835, 'Raju saravanan', '5', '9042824361', '8122100148', 'rjr2721@gmail.com', '1998-04-15', 23, '1', '2', 'Saravanan', 'Business', 10000.00, 1, 18000.00, 25000.00, 'No 90,bajanai Kovil street,Vettur distric_635812', 'Saithapet', '2111220002', '', '2', 'upload_files/candidate_tracker/9294461030_raju resume 1.docx', NULL, '1', '2021-11-22', 0, 'Jobs', '3', '59', '2021-11-29', 280430.00, '', NULL, '2023-11-04', '1', 'Selected for RM - Shanmuga Kutralinigam Team with PF/PT Deductions', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', 'Offer Letter Link sent to upload the documents', '', '', '', NULL, NULL, NULL, 1, '2021-11-22 10:39:23', 60, '2021-11-24 03:33:45', 0, NULL, 1),
(6836, 'r.manjula', '4', '9791133704', '9994851218', 'manjula2012b.com@gmail.com', '1992-07-31', 29, '2', '1', 'e.karthick', 'manager', 40000.00, 1, 0.00, 15000.00, 'thiruvallur', 'thiruvalur', '2111220003', '3', '1', 'upload_files/candidate_tracker/22232305716_Manjula _Resume 2021 [Read-Only] [Compatibility Mode](3).pdf', NULL, '1', '2021-11-22', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile,highly doubt for pressure handling. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-22 11:11:39', 1, '2021-11-22 11:19:05', 0, NULL, 1),
(6837, 'Raparthi Mukesh', '5', '8142219869', '', 'Raparthimukesh1997@gmail.com', '1997-12-24', 23, '2', '2', 'Raparthi raju', 'Driver', 40000.00, 2, 21000.00, 29000.00, 'Hyderabad', 'Hyderabad', '2111220004', '19', '2', 'upload_files/candidate_tracker/74189023762_Raparthi_Mukesh_1.docx', NULL, '1', '2021-11-24', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate is in dilemma to continue with his current company for another 6months to complete his 1 yr with ICICI, Even we projected him the salary offered. Candidate dropped', '5', '1', '', '3', '4', '', '2', '2021-11-26', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-22 11:38:16', 60, '2021-11-24 10:06:37', 0, NULL, 1),
(6838, '', '0', '8925191994', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111220005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-22 12:06:00', 0, NULL, 0, NULL, 1),
(6839, 'R.Deepan', '5', '9790848421', '', 'deepandeepan851@gmail.com', '1999-11-08', 22, '1', '2', 'S.Rajendran', '10000', 10000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2111220006', '', '1', 'upload_files/candidate_tracker/9528988096_deepan resume new 1.pdf', NULL, '1', '2021-11-22', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,currently pursuing his graduation in correspondance,have exp in Finance company,much comfort to work in non voice process.Will not suits for our role', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-22 12:08:05', 1, '2021-11-22 12:18:27', 0, NULL, 1),
(6840, 'M.Surya', '4', '9566630838', '9500587813', 'supkingsurya1999@gmail.com', '2000-08-05', 21, '3', '2', 'A.Murugan', 'Farmer', 9000.00, 1, 0.00, 13000.00, 'Tiruvannamalai', 'Thiruverkadu', '2111220007', '', '1', 'upload_files/candidate_tracker/61262152002_Document from Krisvinsurya1.doc', NULL, '1', '2021-11-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have collection call Exp, not much open up, will not handle the pressure. Sustainability dooubts', '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-22 12:27:08', 1, '2021-11-22 12:40:45', 0, NULL, 1),
(6841, 'Ajithkumar U', '2', '9677834815', '', 'cuajith08@gmail.com', '1997-10-08', 24, '2', '2', 'Uthandaraman C', 'Business', 35000.00, 2, 0.00, 15000.00, 'Chennai', 'Thoothukudi', '2111220008', '1', '1', 'upload_files/candidate_tracker/79637586161_mostRecent.pdf', NULL, '3', '2021-11-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'didnt come back and RNR\n', '2', '1', '0', '1', '1', '0', '2', '2021-11-24', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-22 04:25:34', 1, '2021-11-22 04:31:25', 0, NULL, 1),
(6842, 'Amal Raj. M', '11', '7010471719', '', 'amalrajhrmba@gmail.com', '1995-04-11', 26, '2', '2', 'Maria dhasan', 'Fisherman', 15000.00, 5, 0.00, 12000.00, 'Kanyakumari', 'Kanyakumari', '2111230001', '1', '1', 'upload_files/candidate_tracker/75469092040_Amalrajresume.pdf', NULL, '3', '2021-11-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Poor Communication, In 6 months 2 companies changed. Will not handle our pressure and sustainability doubts.', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-23 08:59:10', 1, '2021-11-23 09:24:50', 0, NULL, 1),
(6843, 'Chindam sai charan', '5', '8247374899', '', 'Sai.charan1707@gmail.com', '1997-07-17', 24, '2', '2', 'Chindam gopal', 'Govt employee', 100000.00, 1, 12000.00, 20000.00, 'Hyderabad', 'Hyderabad', '2111230002', '1', '2', 'upload_files/candidate_tracker/17437980613_RESUME.doc', NULL, '2', '2021-11-25', 15, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not looking for field sales xxamp will not suit for our profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-23 01:24:32', 1, '2021-11-25 07:55:34', 0, NULL, 1),
(6844, 'Deepak R', '5', '9840373421', '9840353840', 'deepakmsn98@gmail.com', '1998-03-25', 23, '1', '2', 'Suguna', 'Manager of a marriage hall', 40000.00, 0, 0.00, 27000.00, 'Chennai', 'Chennai', '2111230003', '', '1', 'upload_files/candidate_tracker/49609912650_CV_2021-11-17-022432.pdf', NULL, '1', '2021-11-23', 0, '55641', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-23 02:17:13', 1, '2021-11-23 02:24:58', 0, NULL, 1),
(6845, 'Kota.showry', '5', '9642918268', '6302480187', 'franchisshowry143@gmail.com', '1995-12-17', 25, '2', '1', 'Pushpa', 'House wife', 40000.00, 2, 250000.00, 2.80, 'Nalgonda', 'Chintal', '2111230004', '1', '2', 'upload_files/candidate_tracker/60035807165_showry kota.docx', NULL, '1', '2021-11-24', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will doesnxquott suit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-23 02:44:55', 1, '2021-11-23 02:47:54', 0, NULL, 1),
(6846, 'sai kumar Jella', '5', '7036359321', '7659999517', 'saekumar0404@gmail.com', '1998-02-02', 23, '2', '1', 'Jella lalitha', 'Housewife', 25000.00, 1, 0.00, 25000.00, 'Hyderabad', 'Hyderabad', '2111230005', '1', '2', 'upload_files/candidate_tracker/13881841932_SaiRESUME_Saikumar.docx.pdf', NULL, '1', '2021-11-25', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not fit for our profile', '5', '1', '', '3', '4', '', '2', '2021-11-29', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-23 02:53:29', 60, '2021-11-25 10:38:58', 0, NULL, 1),
(6847, 'dhanasekar g', '5', '7904615513', '', 'dhanasekargds@yahoo.co.in', '1992-07-06', 29, '2', '1', 'nandhini', 'house wife', 10000.00, 2, 18000.00, 23000.00, 'vilupuram', 'vilupuram', '2111230006', '1', '2', 'upload_files/candidate_tracker/71939132412_Dhana resume updated 2020.docx', NULL, '2', '2021-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate was busy with some bank purpose. Finally had a call with the candidate in evening and understood that he holds an offer and planning to go with the same.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-23 02:53:54', 50, '2021-11-23 05:23:32', 0, NULL, 1),
(6848, '', '0', '0011223344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111230007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-23 02:55:36', 0, NULL, 0, NULL, 1),
(6849, 'md fahath khan', '5', '6281529950', '', 'khanfahath@gmail.com', '2000-06-14', 21, '2', '2', 'raheem khan', 'driver', 30.00, 0, 18.00, 25.00, 'hyderabad', 'hyderabad', '2111230008', '1', '2', 'upload_files/candidate_tracker/52461874229_Fahath Khan Resume.pdf', NULL, '3', '2021-11-24', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Selected but he does not have a laptop and he couldnxquott able to arrange it also, in that case, we canxquott do anything if he can arrange it means proceed with next level. Else drop it. \nHe said he informed the same thing to HR who schedule it. ', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-23 04:15:16', 1, '2021-11-23 04:38:48', 0, NULL, 1),
(6850, 'vijayamani', '5', '9003298104', '', 'vijaymani3110@gmail.com', '1997-10-31', 24, '2', '2', 'shankar', 'auto', 20000.00, 1, 20000.00, 25000.00, 'chennai', 'chennai', '2111240001', '1', '2', 'upload_files/candidate_tracker/96327663505_vijay resume NEW .pdf', NULL, '1', '2021-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Sales, No sustainability in the previous experience. Not comfortable to take calls, much comfort to go for field only. Salary Exp is very high. Will not sustain and handle our pressure. Candidate Need time to think on the CTC what we suggested.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-24 10:17:33', 50, '2021-11-24 11:49:47', 0, NULL, 1),
(6851, 'Mohamed Azarudeen M F', '4', '9566416067', '9976898136', 'mfazarmohd99@gmail.com', '1999-07-17', 22, '3', '2', 'Mohamed Farook A', 'Compounder', 5000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2111240002', '', '1', 'upload_files/candidate_tracker/43436321925_Mohamed Azarudeen M.F.resume.pdf.docx', NULL, '1', '2021-11-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-24 10:27:06', 1, '2021-11-24 10:31:28', 0, NULL, 1),
(6852, 'Vasanth', '2', '8610802633', '', 'vasamohan00@gmail.com', '1998-12-23', 22, '2', '2', 'MOHANAKRISHNAN', 'Farmer', 10000.00, 1, 0.00, 10000.00, '643, cross street chittrachavadi panruti', '643, Cross street chittrachavadi panruti', '2111240003', '1', '1', 'upload_files/candidate_tracker/95038381046_Vasanth MCA.pdf', NULL, '2', '2021-11-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communciation Averege, No basic ideas on the Skills, Handling Pressure no and sustainability doubts on this profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-24 11:18:28', 60, '2021-11-27 10:17:31', 0, NULL, 1),
(6853, 'k. tamil selvan', '4', '8825643340', '9790800679', 'tamilkts978@gmail.com', '2001-06-03', 20, '1', '2', 'm. karuppu samy', 'finance collection', 18000.00, 1, 0.00, 12000.00, '45,ramakrishna nagar, 2nd st , adambakkam, Ch-88', '45,ramakrishna nagar, 2nd st, adambakkam, ch -88', '2111240004', '', '1', 'upload_files/candidate_tracker/938540823_Tamil selvan resume.docx', NULL, '3', '2021-11-24', 0, 'jobs', '3', '59', '2021-11-25', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team - Elite RE in cash mode', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-11-24 11:38:06', 60, '2021-11-24 02:36:24', 0, NULL, 1),
(6854, '', '0', '8176746385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111240005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-24 12:34:14', 0, NULL, 0, NULL, 1),
(6855, '', '0', '9176746385', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-24 12:57:53', 0, NULL, 0, NULL, 1),
(6856, 'Vengadesvararao m', '4', '8072899511', '', 'rao54.vr@gmail.com', '1995-06-22', 26, '2', '2', 'Manirao r', 'Sewage', 12000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2111240007', '1', '1', 'upload_files/candidate_tracker/1936102858_rAO nEW.docx', NULL, '1', '2021-11-29', 0, '', '3', '59', '2021-11-01', 126312.00, '', '3', '2022-06-08', '1', 'Selected for Elite - Thanjavur - CASH Mode', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Selected for Thanjavur,Offer Mail has been Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-24 01:00:11', 60, '2021-11-30 05:05:41', 0, NULL, 1),
(6857, 'Panjala Tarun Goud', '5', '9553776297', '', 'panjalatarungoud@gmail.com', '1996-04-06', 25, '2', '1', 'Usha rani', 'Salaried', 200000.00, 4, 13500.00, 30000.00, 'Khammam', 'Khammam', '2111240008', '1', '2', 'upload_files/candidate_tracker/58062934139_1629716355422_Tarun resume.pdf', NULL, '2', '2021-11-25', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is expecting min 80-90% Hike on the pay. Already we suggested him with the good percentage. But candidate is not ok with the pay.', '5', '1', '0', '3', '4', '0', '2', '2021-11-30', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-24 01:08:23', 1, '2021-11-24 01:13:43', 0, NULL, 1),
(6858, 'Sussmita.R', '4', '8015070098', '', 'Sussmita1998@gmail.com', '2006-11-24', 15, '2', '2', 'Ramesh', 'Salesman', 120000.00, 0, 0.00, 18000.00, 'Sidconagar,Villivakkam, chennai', 'Chennai', '2111240009', '1', '1', 'upload_files/candidate_tracker/92809997973_Sussmita Resume (1)-1.pdf', NULL, '1', '2021-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telecaller profile, Focus on the Non Voice process,6 months 2 companies changed and career gap for 2.5 yrs. Will not sustain and handling pressure no with our profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-24 04:01:40', 50, '2021-11-24 04:24:47', 0, NULL, 1),
(6859, 'Dheeraj', '5', '9494971662', '8125323263', 'Avarudheeraj@gmail.com', '1997-08-22', 24, '2', '2', 'Anjamma', 'Home maker', 2.40, 3, 0.00, 2.80, 'Kachiguda Hyderabad', 'Banjara hills', '2111240010', '1', '2', 'upload_files/candidate_tracker/75202378025_dheerajnew.docx', NULL, '2', '2021-11-25', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-24 04:08:17', 1, '2021-11-24 04:22:41', 0, NULL, 1),
(6860, 'Suraj', '5', '9528790382', '', 'skanode1998@gmail.com', '1998-12-04', 22, '2', '2', 'Gorakhnath Kanode', 'Farmer', 10000.00, 2, 2.30, 3.50, 'Hyderabad', 'Hyderabad', '2111240011', '1', '2', 'upload_files/candidate_tracker/88886461633_Surajcvpdf.pdf', NULL, '2', '2021-11-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-24 06:19:41', 1, '2021-11-24 06:24:03', 0, NULL, 1),
(6861, 'Gunal K', '23', '7825979493', '9514159201', 'gunaltamil4400@gmail.com', '2000-05-25', 21, '1', '2', 'Krishnan.S', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Chengalpattu', 'Chinnalambadi', '2111250001', '', '1', 'upload_files/candidate_tracker/56520359992_Sample resume 01 02 (1).pdf', NULL, '3', '2021-11-25', 0, 'jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice process, not comfort to work in IT Domain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 10:04:36', 1, '2021-11-25 10:27:46', 0, NULL, 1),
(6862, 'Prathap', '23', '9894641456', '7397703930', 'Prathapprathap2110230@gmail.com', '2000-01-21', 21, '2', '2', 'Ezhumalai', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Melmaruvathour', 'Melmaruvathour', '2111250002', '1', '1', 'upload_files/candidate_tracker/62942132497_prathap.docx resume.pdf', NULL, '3', '2021-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up, Looking for Java openings. Will not sustain and pressure handling doubts. Not much comfort with TxxampC', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-25 10:05:42', 50, '2021-11-25 05:41:53', 0, NULL, 1),
(6863, 'J.ANANTHARAMAN', '13', '7418332294', '6383683941', 'aspanand21@gmail.com', '1999-03-22', 22, '2', '2', 'G.JAGADEESON', 'Fresher', 18000.00, 3, 0.00, 12000.00, 'Guduvanchery', 'Guduvanchery', '2111250003', '1', '1', 'upload_files/candidate_tracker/19981468241_Anantharaman resume.pdf', NULL, '1', '2021-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher and no basic skills, Seems not much ok with TxxampC ,sustainability doubts on the profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-25 10:06:42', 50, '2021-11-25 05:43:03', 0, NULL, 1),
(6864, 'R. Pugazh', '23', '8778561046', '9629106283', 'Pugazhkms@gmail.com', '2000-06-11', 21, '2', '2', 'Ravi', 'Farmer', 5000.00, 1, 0.00, 20000.00, 'Chegalpattu', 'Kottakayapakkam', '2111250004', '1', '1', 'upload_files/candidate_tracker/75636511136_sa.pdf', NULL, '3', '2021-11-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Java openings only. not suitable for our positions', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-25 10:08:55', 50, '2021-11-25 05:43:49', 0, NULL, 1),
(6865, 'B.Gowtham', '22', '9444106527', '9445181849', 'gowthambala20@gmail.com', '2000-06-20', 21, '1', '2', 'G.Bhagyalakshmi', 'Freshers', 30000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2111250005', '', '1', 'upload_files/candidate_tracker/22520410008_RESUME GOWTHAM-1.pdf', NULL, '1', '2021-11-25', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Clear communication, No basic knowledge in Digital Marketing. Will not sustain with us. Not suitable for DM', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 10:20:21', 1, '2021-11-25 10:32:29', 0, NULL, 1),
(6866, '', '0', '9344232960', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111250006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-25 10:45:50', 0, NULL, 0, NULL, 1),
(6867, 'Sivaraman', '30', '9361309156', '8807956571', 'sivaram30122000@gmail.com', '2000-12-30', 20, '3', '2', 'Shanmugam', 'Catering', 15000.00, 1, 0.00, 12000.00, 'Ayanavaram', 'Ayanavaram', '2111250007', '', '1', 'upload_files/candidate_tracker/5121840664_SIVARAMAN RESUME.docx', NULL, '1', '2021-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Voice - Stock/Equity positions, Looking for non voice process only', '9', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 10:59:51', 1, '2021-11-25 11:42:32', 0, NULL, 1),
(6868, 'Diwakar. R', '30', '8939644633', '9566270017', 'divakarsandy2001@gmail.com', '2001-01-28', 20, '3', '2', 'Ramesh. J', 'Wages employee', 15000.00, 1, 0.00, 12000.00, 'Ayanavaram', 'Ayanavaram', '2111250008', '', '1', 'upload_files/candidate_tracker/25260105842_DIWAKAR RES PDF.pdf', NULL, '1', '2021-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested for Stocks/Share market positions. Looking for Finance based accounting profile.', '9', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 11:00:32', 1, '2021-11-25 11:48:04', 0, NULL, 1),
(6869, 'M. Hariharan', '4', '9791566289', '9894414122', 'haran1791@gmail.com', '2000-11-16', 21, '2', '2', 'M. Manickam', 'Supervisor in mahindra car company', 20000.00, 1, 0.00, 13000.00, 'Ranipet district, walajapet', 'Ranipet district, walajapet', '2111250009', '1', '1', 'upload_files/candidate_tracker/21421578296_Hariharan.M.pdf', NULL, '1', '2021-11-25', 0, '', '3', '59', '2021-11-29', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team,No PF.ESI/PT deductions', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1000', '', NULL, NULL, NULL, 1, '2021-11-25 11:18:35', 60, '2021-11-26 07:12:16', 0, NULL, 1),
(6870, 'A.b.partha sarathy', '4', '9789453092', '7708333675', 'rainasarathy018@gmail.com', '2001-08-01', 20, '2', '2', 'A.g.baskar', 'Company staff', 14000.00, 1, 0.00, 13000.00, 'Walajapet', 'Walajapet', '2111250010', '1', '1', 'upload_files/candidate_tracker/17111501678_Parthasarathy-converted.pdf', NULL, '1', '2021-11-25', 0, '', '3', '59', '2021-11-29', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team ,no PF/ESI/Deductions.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1000', '', NULL, NULL, NULL, 1, '2021-11-25 11:19:50', 60, '2021-11-26 07:11:39', 0, NULL, 1),
(6871, 'Mohamed Apsal', '23', '9080457255', '8883726005', 'mohamedapsal29@gmail.com', '2000-03-07', 21, '3', '2', 'Kalanther', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Arakkonam', 'Arakkonam', '2111250011', '', '1', 'upload_files/candidate_tracker/87133746404_MOHAMED_APSAL.K.pdf', NULL, '1', '2021-11-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher, Not much familiar with the skills, need time to give his confirmation on the TxxampC.If he comes back let us see', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 12:02:32', 1, '2021-11-25 12:09:20', 0, NULL, 1),
(6872, 'Allanraj Abraham A', '11', '9080458770', '7402737809', 'allanrajabraham@gmail.com', '1998-07-14', 23, '2', '2', 'Amirtha Thangaraj Jacob', 'Teacher', 30000.00, 2, 0.00, 250000.00, 'Vellore', 'Tambaram', '2111250012', '1', '1', 'upload_files/candidate_tracker/59397372799_Resume.pdf', NULL, '1', '2021-11-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 12:21:42', 1, '2021-11-25 12:26:55', 0, NULL, 1),
(6873, 'Yamini', '13', '7010836133', '', 'yamininagaraj19@gmail.com', '2006-11-25', 0, '4', '2', 'Nagaraj', 'Auto contractor', 25000.00, 1, 10000.00, 20000.00, 'Chennai', 'Chennai', '2111250013', '', '2', 'upload_files/candidate_tracker/16781271149_Yamini-Profile-2.docx', NULL, '1', '2021-11-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-25 12:45:53', 1, '2021-11-25 12:47:49', 0, NULL, 1),
(6874, 'Nareshkumar Nehru', '30', '9094113104', '7092932503', 'nareshkumarn111998@gmail.com', '1998-11-24', 23, '2', '2', 'Nehru', 'Chennai Corporation', 140000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2111250014', '1', '1', 'upload_files/candidate_tracker/15565727996_Naresh+update-resume.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in AR caller,Looking for any finance opportunities.Will not sustain for a Stocks /Dealer profiel - Salary Exp is very high', '9', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 12:47:58', 1, '2021-11-25 12:55:54', 0, NULL, 1),
(6875, '', '0', '8270192149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111250015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-25 12:50:30', 0, NULL, 0, NULL, 1),
(6876, 'Vishal M', '8', '9566205240', '', 'vishal123blanked@gmail.com', '2000-11-22', 21, '2', '2', 'R. maheshwaran', 'Business', 50000.00, 2, 0.00, 2.50, '124, Swamy naicken street, Chintadripet, Ch- 02', '124, Swamy Naicken Street, Chintadripet, Ch- 02', '2111250016', '1', '1', 'upload_files/candidate_tracker/99722669567_;.pdf', NULL, '1', '2021-11-26', 0, '', '4', '35', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,interest to learn in the areas of stocks/share market, check for Equity dealer and let me know your inputs', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-25 01:27:21', 60, '2021-11-30 08:02:31', 0, NULL, 1),
(6877, 'deepan', '2', '9443710029', '8220593410', 'deepanappu1999@gmail.com', '1999-07-22', 22, '2', '2', 'palani', 'retired sbi employee', 15000.00, 2, 0.00, 240000.00, 'kallakkurichi', 'kallakkurichi', '2111250017', '1', '1', 'upload_files/candidate_tracker/221219228_Resume.pdf', NULL, '2', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,candidate preferes for Pythin and interest to learn additional skills. Not much comfort with terms and conditions. Sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 01:32:50', 1, '2021-11-25 02:25:28', 0, NULL, 1),
(6878, 'DENESH C L', '30', '9042255447', '', 'Cldenesh123@gmail.com', '1993-05-27', 28, '2', '2', 'N.a', 'Shop Employee', 40000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2111250018', '1', '1', 'upload_files/candidate_tracker/81731202243_denesh resume 2 (1) (1).docx', NULL, '1', '2021-11-26', 0, '', '3', '59', '2021-11-29', 96000.00, '', '0', NULL, '2', 'Selected for Stocks/Dealer profile. will be in training for 15 days in Motilal.3 months intern cum employment.SA for 2.3 yrs', '9', '1', '0', '1', '1', '0', '2', '2021-11-27', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 02:14:05', 1, '2021-11-25 02:22:06', 0, NULL, 1),
(6879, 'JUDE INFANT AROCKIARAJ J', '11', '7867977135', '', 'judesmart166@gmail.com', '1998-09-09', 23, '2', '2', 'Jerome', 'Bank stafft', 80000.00, 1, 0.00, 15000.00, 'Madurai', 'Madurai', '2111250019', '1', '1', 'upload_files/candidate_tracker/14961116463_ jude resume.pdf', NULL, '2', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Will not handle our pressure .Not much comfort with terms xxamp conditions. Sustainability Doubts. Seems not much to work under targets', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 03:15:05', 1, '2021-11-25 03:26:24', 0, NULL, 1),
(6880, 'Adithya baskaran', '30', '8248358271', '', 'Adithyabaskaran6@gmail.com', '2000-10-17', 21, '2', '2', 'K. Elango baskaran', 'Business', 40000.00, 2, 0.00, 25000.00, '4/146A 6th main road kKD nagar kodungaiyur', '4/146A 6th Main Road KKD Nagar kodungaiyur', '2111250020', '1', '1', 'upload_files/candidate_tracker/64085850214_ADITHYA BASKARAN RESUME-converted (1).pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Not much importance towards the work, Last few months he was doing trading, Salary Exp is high being fresher, Not comfort to go with Internship', '9', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 03:38:45', 1, '2021-11-25 03:46:05', 0, NULL, 1),
(6881, 'Suraj kanode', '5', '9518790382', '', 'skanode1998@gmail.com', '1998-12-04', 22, '2', '2', 'Gorakhnath Kanode', 'Farmer', 10000.00, 4, 22000.00, 280000.00, 'Nagpur', 'Hyderabad', '2111250021', '1', '2', 'upload_files/candidate_tracker/5633470366_Surajcvpdf.pdf', NULL, '2', '2021-11-26', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '2', 'Rejected over the call - He is not interested in the sales profile and he is not proficient in Telugu as well.', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 04:46:21', 1, '2021-11-25 04:48:37', 0, NULL, 1),
(6882, 'Manoj Teja', '5', '8688879663', '9059757106', 'manojteja.b143@gmail.com', '2006-11-25', 0, '2', '1', 'Kavya', 'House wife', 25000.00, 1, 2.30, 3.20, 'Hyderabad', 'Hyderabad', '2111250022', '1', '2', 'upload_files/candidate_tracker/3866042375_mba resume 2 years.docx', NULL, '3', '2021-11-27', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not sustain', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-25 06:59:45', 60, '2021-11-27 10:15:10', 0, NULL, 1),
(6883, 'R Helen Sharon', '4', '8939337822', '', 'elizabethshibra@gmail.com', '2001-03-12', 20, '2', '2', 'PK Rajkumar -', 'Business', 15000.00, 1, 15000.00, 16000.00, 'Kodambakkam', 'Kodambakkam', '2111250023', '1', '2', 'upload_files/candidate_tracker/68355510298_scanner_20211125_195114.pdf', NULL, '1', '2021-11-26', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok,11th Std discontinued, Handling Pressure Doubt, Will not sustain for a long ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-25 07:44:43', 1, '2021-11-25 08:02:29', 0, NULL, 1),
(6884, 'karthick kumar', '5', '7871848587', '', 'karthicsurandai@gmail.com', '1995-04-14', 26, '2', '2', 'arumugam', 'farmer', 33000.00, 1, 19000.00, 25000.00, 'chennai', 'Chennai', '2111260001', '1', '2', 'upload_files/candidate_tracker/29436844658_CV_2021-11-26-111131.pdf', NULL, '2', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate didnt come back and no responses', '5', '1', '0', '1', '1', '0', '2', '2021-12-01', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-26 10:50:41', 1, '2021-11-26 01:18:22', 0, NULL, 1),
(6885, 'vignesh s', '5', '9094294402', '', 'vignesh7219@gmail.com', '1999-07-24', 22, '2', '2', 'santhosh raj s', 'painter', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2111260002', '1', '1', 'upload_files/candidate_tracker/35183813013_Vignesh S (2).pdf', NULL, '1', '2021-11-26', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not picking up calls', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-26 10:51:12', 60, '2021-11-26 02:27:30', 0, NULL, 1),
(6886, 'Yuvaraj', '4', '9940092979', '6379737922', 'davendrakumar.thala1129@gmail.com', '1999-05-03', 22, '1', '2', 'P.mani', 'Farmer', 8000.00, 1, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2111260003', '', '1', 'upload_files/candidate_tracker/35010149695_raju resume 1.docx', NULL, '1', '2021-11-26', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested for Voice Process, Looking for Core Micro Biology openings only. Not suitable for our role', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-26 10:54:06', 1, '2021-11-26 11:50:41', 0, NULL, 1),
(6887, 'janarthanan c', '4', '8778668068', '', 'janarthanan7094@gmail.com', '1999-05-09', 22, '2', '2', 'chandran d', 'Driver', 10000.00, 2, 0.00, 15000.00, 'Ranipet', 'Ranipet', '2111260004', '1', '1', 'upload_files/candidate_tracker/93907592560_JANARAR RESUME.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non voice process only\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2021-11-26 11:24:42', 1, '2021-11-26 11:31:15', 0, NULL, 1),
(6888, 'Kanmani', '5', '9080813045', '', 'kanmanimanimegalai@gmail.com', '1999-07-03', 22, '3', '2', 'Manimegalai', 'House wife', 15000.00, 2, 15000.00, 16000.00, 'Teynampet', 'Teynampet', '2111260005', '', '2', 'upload_files/candidate_tracker/60767079687_KANMANI - RESUME.pdf', NULL, '1', '2021-11-26', 5, '', '3', '59', '2021-12-01', 170496.00, '', '3', '2022-09-05', '2', 'Selected for Esales RM - Karthika Team - PT - Prop', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', 'Offer mail sent - CAFSinfotech Prop - Staff', '', '', '', NULL, NULL, NULL, 1, '2021-11-26 11:27:58', 60, '2021-12-01 07:26:44', 0, NULL, 1),
(6889, 'RUBAVATHI.V', '4', '8248341775', '', 'rupaanu18@gmail.com', '2000-04-19', 21, '2', '2', 'Velmurugan', 'Driver', 12000.00, 2, 15000.00, 16000.00, 'Mylapore', 'Mylapore', '2111260006', '1', '2', 'upload_files/candidate_tracker/71542581683_rupa RESUME (1).doc', NULL, '1', '2021-11-26', 5, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', '5050 profile,communication Average,have 3 months of Exp in Voice,Family need is there. Kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 11:30:18', 1, '2021-11-26 11:38:22', 0, NULL, 1),
(6890, 'Parimala Devi', '4', '7305240701', '', 'parisuresh247@gmail.com', '2000-01-07', 21, '3', '2', 'Suresh', 'Coolie', 15000.00, 1, 15000.00, 16000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2111260007', '', '2', 'upload_files/candidate_tracker/37975650297_PARI RESUME.pdf', NULL, '1', '2021-11-26', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'communication ok, but much prefers for non voice process only. too long Will not sustain in our role. Have much non voice exp only ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-26 11:53:45', 1, '2021-11-26 11:57:35', 0, NULL, 1),
(6891, 'Manikandan ashokkumar', '4', '7904614438', '7339594886', 'kmani4186@gmail.com', '1999-07-15', 22, '1', '2', 'Ashokkumar', 'Former', 15000.00, 0, 15000.00, 13000.00, 'Thanjavur', 'Chennai', '2111260008', '', '2', 'upload_files/candidate_tracker/44186773026_Resume.docx', NULL, '1', '2021-11-26', 0, 'P1046', '3', '59', '2021-11-29', 144000.00, '', '5', '1970-01-01', '2', 'Selected for Priyanka Jeni Team Elite RE - ex employee of CAFS', '1', '1', '', '1', '1', '', '2', '2021-11-27', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-11-26 11:53:59', 60, '2021-11-26 08:05:54', 0, NULL, 1),
(6892, 'p kamalesh', '20', '9940585590', '', 'kamalesh_er@rocketmail.com', '1995-07-13', 26, '2', '1', 'prabakaran', 'development officer', 50000.00, 1, 0.00, 20000.00, 'mylapore', 'mylapore', '2111260009', '1', '1', 'upload_files/candidate_tracker/24937361583_Document 1.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Employment, Long career gap,Not serious on his career earlier, Communication ok but will not sustain in our process. ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-26 11:54:36', 50, '2021-11-26 12:24:32', 0, NULL, 1),
(6893, 'Balasubramani H', '23', '6381604167', '', 'Balasm795@gmail.com', '1999-08-22', 22, '3', '2', 'Harikirshnan', 'Student', 80000.00, 1, 0.00, 22000.00, 'Thiruvallur', 'Thiruvallur', '2111260010', '', '1', 'upload_files/candidate_tracker/48013065292_resume new bala.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Currently pursuing graduation,1 more year to go. Looking for intern no basic skills', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-26 11:55:29', 1, '2021-11-26 11:58:53', 0, NULL, 1),
(6894, 'Kavya', '11', '6379320368', '7397223958', 'kavyathyagaraajan@gmail.com', '1999-08-18', 22, '2', '2', 'thyagarajan', 'Fresher', 300000.00, 1, 0.00, 20000.00, 'Thoraipakkam', 'Thoraipakkam', '2111260011', '1', '1', 'upload_files/candidate_tracker/42045951388_Resume - Kavya.pdf', NULL, '2', '2021-11-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 11:56:13', 1, '2021-11-26 12:00:21', 0, NULL, 1),
(6895, 'Vanmathi A', '4', '9840685725', '9952962099', 'Vanmathiashok01@gmail.c', '2000-06-09', 21, '2', '2', 'Ashok G', 'Coly', 15000.00, 3, 0.00, 10000.00, 'Chrompet', 'Chrompet', '2111260012', '1', '1', 'upload_files/candidate_tracker/76301459592_resume .pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up on communication, will not handle our pressure .Not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-26 12:34:45', 50, '2021-11-26 01:00:22', 0, NULL, 1),
(6896, 'A.suganthi', '4', '8939467192', '', 'suganthiayyadhurai99@gmail.com', '1999-08-31', 22, '2', '2', 'P.Ayya dhurai', 'Cooly', 15000.00, 2, 0.00, 10000.00, 'Tambaram', 'Tambaram', '2111260013', '1', '1', 'upload_files/candidate_tracker/41246153680_1635251264648_1635251258518_200100.pdf', NULL, '1', '2021-11-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication, Looking for Non Voice Process, Will not handle our pressure .', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-26 12:37:59', 50, '2021-11-26 01:12:20', 0, NULL, 1),
(6897, 'Mahadevan c', '11', '9787502563', '', 'mahadevanc1997@gmail.com', '1997-01-26', 24, '2', '2', 'Chinnaraj', 'Daily wages', 8000.00, 6, 0.00, 20000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2111260014', '1', '1', 'upload_files/candidate_tracker/60586483128_Resume-Mahadevan-c (1) (1).pdf', NULL, '2', '2021-11-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 12:39:28', 1, '2021-11-26 12:52:56', 0, NULL, 1),
(6898, 'divakar', '5', '9791070744', '', 'kisordiva@gmail.com', '1994-08-09', 27, '2', '2', 'kuppan', 'working', 25000.00, 1, 20000.00, 25000.00, 'Chennai', 'chennai', '2111260015', '1', '2', 'upload_files/candidate_tracker/90515383682_Divakar_Resume.pdf', NULL, '2', '2021-11-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed by Jennifer - Will not sustain in our role', '5', '1', '0', '1', '1', '0', '2', '2021-11-29', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-26 01:22:27', 1, '2021-11-26 01:26:27', 0, NULL, 1),
(6899, 'sakthivel', '2', '9092380057', '', 'sakthimail2006@gmail.com', '1994-05-30', 27, '2', '1', 'gayathiri', 'customer executive', 30000.00, 3, 0.00, 5000.00, 'CHENNAI', 'CHENNAI', '2111260016', '1', '1', 'upload_files/candidate_tracker/52045323755_Sakthi_React_Resume -CAFS.doc', NULL, '1', '2021-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Profile, Have Exp In Byju As BDA, Fresher For IT Profile, Long Stay Not Sure On This Profile. Not suitable', '2', '1', '0', '1', '1', '0', '2', '2021-11-30', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 02:33:10', 1, '2021-11-26 02:40:21', 0, NULL, 1),
(6900, 'Nisha. G', '11', '9894877084', '', 'nishjeson@gmail.com', '1998-03-10', 23, '2', '2', 'Gajendra basker', 'Business', 190000.00, 2, 13000.00, 16000.00, 'Vellore', 'Chennai', '2111260017', '1', '2', 'upload_files/candidate_tracker/783229049_NISHA RESUEM NEW OCT.docx', NULL, '2', '2021-11-28', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 3 months Recruiter Exp,not comforrtable with TxxampC Sustainability Doubts', '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-26 03:04:13', 1, '2021-11-26 03:10:56', 0, NULL, 1),
(6901, '', '0', '9884114864', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111260018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-26 09:22:15', 0, NULL, 0, NULL, 1),
(6902, 'Hariohmsiva S', '5', '9940667633', '8122233328', 'hrsiva27@gmail.com', '1993-06-03', 28, '2', '1', 'jayapriya', 'house Wife’s', 20000.00, 1, 2.70, 3.70, 'kallakurichi', 'chrnnai', '2111270001', '1', '2', 'upload_files/candidate_tracker/13085708622_Hariohmsiva s (1).doc', NULL, '2', '2021-11-27', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Holded the candidate for 2nd round try ,but he didnt come back and finally dropped', '5', '1', '', '1', '1', '', '2', '2021-12-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-27 09:40:46', 50, '2021-11-27 09:56:07', 0, NULL, 1),
(6903, '', '0', '9940456362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-27 10:33:06', 0, NULL, 0, NULL, 1),
(6904, 'Kowziksudhan k', '4', '9940456351', '9940273035', 'Kowziksudhan@gmail.com', '2002-05-22', 19, '2', '2', 'Kannan', 'Police', 45000.00, 2, 15000.00, 16000.00, 'Chennai', 'Chennai', '2111270003', '1', '2', 'upload_files/candidate_tracker/69935657319_kowzik ces.pdf', NULL, '3', '2021-11-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Non Voice only,Attitude issue,Not open for Field Sales,Exp is very high for our CRM role.Will not sustain in our position.Highest graudation is 12th only.Not much importance on the work', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-27 10:35:04', 50, '2021-11-27 10:51:31', 0, NULL, 1),
(6905, 'kathi mallesham', '5', '8374578905', '', 'malleshkathi1992@gmail.com', '1991-10-19', 30, '2', '1', 'working', 'admin in college', 45000.00, 0, 30000.00, 35000.00, 'hyderabad', 'uppal', '2111270004', '1', '2', 'upload_files/candidate_tracker/57200291318_MALLESHAM RESUME NEWWW DG 32.docx', NULL, '2', '2021-11-29', 7, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-27 12:01:43', 50, '2021-11-29 10:07:10', 0, NULL, 1),
(6906, 'Gudikandula Venkateshwar', '5', '7286867002', '8121002986', 'venkateshwargudikandula@gmail.com', '2000-05-28', 21, '2', '2', 'Gudikandula Ramulu', 'Government Employee', 50000.00, 1, 0.00, 17000.00, 'Himayatnagar', 'B.N.Reddy', '2111270005', '1', '1', 'upload_files/candidate_tracker/64373170399_venkateshwar(1).pdf', NULL, '1', '2021-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-27 03:55:30', 1, '2021-11-27 03:58:25', 0, NULL, 1),
(6907, 'Vethantham', '11', '9159700414', '6381297170', 'Vethahr@gmail.com', '1996-07-28', 25, '2', '2', 'Rajamani', 'Priest', 20000.00, 2, 0.00, 20000.00, 'Tirunelveli', 'Chennai', '2111270006', '1', '1', 'upload_files/candidate_tracker/86117208567_Vethantham R.pdf', NULL, '1', '2021-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not clear with his passion towards the work,Pressure handling doubt, and the salary exp is also high in terms of Internship', '6', '1', '0', '1', '1', '0', '2', '2021-11-30', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-27 04:47:14', 1, '2021-11-27 04:53:54', 0, NULL, 1),
(6908, '', '0', '9346397510', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111270007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-27 08:41:26', 0, NULL, 0, NULL, 1),
(6909, '', '0', '7338921521', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-27 11:46:08', 0, NULL, 0, NULL, 1),
(6910, 'A. Ajith', '5', '6383981898', '8428025026', 'Ajithvijay936@gmail.com', '2000-02-19', 21, '1', '2', 'K. Anantha rama krishnan', 'Buisness', 200000.00, 1, 14000.00, 20000.00, 'No:247papermills road perambur chennai-11', 'No15annapornanagar 3rdextst madhavaram chennai-110', '2111280001', '', '2', 'upload_files/candidate_tracker/64637805923_A. Ajith - Resume - 27-Nov-2021.pdf', NULL, '1', '2021-11-28', 0, '1', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-28 12:04:50', 1, '2021-11-28 12:19:42', 0, NULL, 1),
(6911, '', '0', '9176061452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-28 12:43:29', 0, NULL, 0, NULL, 1),
(6912, '', '0', '8270725701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111280003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-28 06:31:24', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6913, 'Karthikeyan B', '6', '9600497033', '', 'karthik0163@gmail.com', '1994-04-05', 27, '2', '1', 'Jayalakshmi', 'In', 300000.00, 1, 18500.00, 18500.00, '5/253, Jothi mani st ,prem nagar,Pozhichalurch-74', '5/253,Jothi mani st,prem nagar, pozhichalur,ch-74', '2111290001', '1', '2', 'upload_files/candidate_tracker/40673198192_Karthikeyan_resume.2021.pdf', NULL, '1', '2021-11-29', 0, '', '3', '59', '1970-01-01', 274000.00, '', '2', '1970-01-01', '1', 'Selected for GK sir Team with PF/PT Deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Link has been shared', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-29 10:31:38', 60, '2021-12-01 05:58:02', 0, NULL, 1),
(6914, 'shrut p bhayani', '5', '9042207941', '', 'shrutbhayani017@gmail.com', '2000-03-28', 21, '2', '2', 'Parulkumar P Bhayani', 'business', 50000.00, 1, 0.00, 18000.00, 'kilpauk', 'Kilpauk', '2111290002', '1', '1', 'upload_files/candidate_tracker/81540255837_Shrut Bhayani resume (1).docx', NULL, '1', '2021-11-29', 0, '', '3', '59', '1970-01-01', 260000.00, '', '2', '1970-01-01', '1', 'Selected for Pandiarajan Team - RM with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Link has been shared to upload the documents', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-11-29 10:36:13', 60, '2021-12-03 03:44:39', 0, NULL, 1),
(6915, 'RAJESH', '5', '8056211777', '9787820273', 'rajeshvrs09@gmail.com', '1996-09-27', 25, '2', '2', 'REKHA V', 'B.E', 30000.00, 1, 18.50, 25.00, 'Chennai', 'Chennai', '2111290003', '1', '2', 'upload_files/candidate_tracker/9909851932_RAJESH RESUME 2021.pdf', NULL, '1', '2021-11-29', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for insurance Sales, Looking for the same domain sales\n', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-11-29 11:08:12', 1, '2021-11-29 11:15:49', 0, NULL, 1),
(6916, 'Keerthana.s', '23', '9600061728', '', 'sureshkeerthana027@gmail.com', '2001-03-22', 20, '2', '2', 'Suresh Kumar', 'Student', 40000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2111290004', '1', '1', 'upload_files/candidate_tracker/93674716832_resume.pdf', NULL, '1', '2021-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 12:36:29', 1, '2021-11-29 02:56:52', 0, NULL, 1),
(6917, 'Kausalya.K', '2', '7639361259', '', 'Kausalya17897@gmail.com', '1997-08-17', 24, '2', '2', 'Kulandaivel.S', 'Teacher', 60000.00, 1, 0.00, 20000.00, 'Neyveli', 'Neyveli', '2111290005', '1', '1', 'upload_files/candidate_tracker/31351689913_kausi resume(4).docx', NULL, '2', '2021-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 12:51:59', 1, '2021-11-29 12:55:10', 0, NULL, 1),
(6918, 'Rasheed Abdur Rahman', '5', '9894681981', '', 'rasheedabdur12@gmail.com', '1995-12-31', 25, '2', '2', 'Rabik', 'Accountant', 15000.00, 3, 16000.00, 16000.00, 'Chengalpattu', 'Chengalpattu', '2111290006', '1', '2', 'upload_files/candidate_tracker/33068939836_JANARAR RESUME.pdf', NULL, '1', '2021-11-29', 0, '', '3', '59', '2021-12-01', 274000.00, '', '4', '2022-12-01', '2', 'Selected for Sarath Team with PF/ PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-29 12:57:15', 60, '2021-12-01 10:34:41', 0, NULL, 1),
(6919, 'b. harif mohamed', '23', '7708781168', '', 'harifmohamed15@gmail.com', '2006-11-29', 0, '2', '2', 'badhusha.z', 'driver', 75000.00, 1, 0.00, 12000.00, 'salem', 'salem', '2111290007', '1', '1', 'upload_files/candidate_tracker/8081240654_Resume(Harif).pdf', NULL, '2', '2021-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 01:25:21', 1, '2021-11-29 01:29:56', 0, NULL, 1),
(6920, 'P.LOKESH.', '5', '7845357059', '', 'lokeshengg1992@gmail.com', '1993-05-21', 28, '2', '2', 'palani', 'working', 10000.00, 1, 15000.00, 20000.00, 'vellore', 'Vellore', '2111290008', '1', '2', 'upload_files/candidate_tracker/44631891741_Lokesh_Resume.Doc.docx', NULL, '2', '2021-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is not clear on the position he applied. No Ideas on this insurance Sales, He just open for any sales openings in Chennai,Have Exp in Jio Retail B2B sales Sustainability doubts in our sales profile. Reviewed in the telephonic Discussion', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 02:58:38', 1, '2021-11-29 03:06:57', 0, NULL, 1),
(6921, 'navamani', '5', '9751213154', '', 'navamani5130@gmail.com', '1995-06-12', 26, '2', '2', 'pitchaivel', 'interior designer', 20000.00, 2, 23000.00, 30000.00, 'adambakkam', 'adambakkam', '2111290009', '1', '2', 'upload_files/candidate_tracker/83913084249_Navamani-3_2-.pdf', NULL, '2', '2021-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 03:10:57', 1, '2021-11-29 03:15:12', 0, NULL, 1),
(6922, 'dinesh', '5', '9940033295', '', 'bobydinesh1994@gmail.com', '2006-11-29', 0, '2', '1', 'sathya', 'nil', 25000.00, 1, 25000.00, 30000.00, 'thoraipakkam', 'Thoraipakkam', '2111290010', '1', '2', 'upload_files/candidate_tracker/30360309829_ResumeN.S.Dinesh.pdf', NULL, '2', '2021-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 03:20:28', 1, '2021-11-29 03:24:43', 0, NULL, 1),
(6923, 'dasanarayanan', '5', '9597235791', '', 'messiarun95@gmail.com', '1995-07-16', 26, '2', '2', 'Sivakumar', 'working', 15000.00, 1, 20000.00, 25000.00, 'chennai', 'chennai', '2111290011', '1', '2', 'upload_files/candidate_tracker/70427008126_Das resume.docx', NULL, '2', '2021-11-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 03:35:12', 1, '2021-11-29 03:48:14', 0, NULL, 1),
(6924, 'hari krishnan', '5', '8148630501', '', 'mervinhari7321@gmail.com', '1999-10-09', 0, '2', '2', 'prakash', 'security', 50000.00, 1, 13000.00, 18000.00, 'chennai', 'Chennai', '2111290012', '1', '2', 'upload_files/candidate_tracker/79524134302_HARIKRISHNAN CV -1.pdf', NULL, '2', '2021-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interresetd to take Calls and the sales ,looking only for the collections', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-29 04:01:58', 1, '2021-11-29 04:18:50', 0, NULL, 1),
(6925, 'Ragul.B', '13', '8903857325', '7871012293', 'ragul1347@gmail.com', '2000-06-18', 21, '2', '2', 'Bagavathi raj', 'Mason', 20.00, 1, 0.00, 15000.00, 'Theni', 'Kundrathur', '2111290013', '1', '1', 'upload_files/candidate_tracker/29986283438_ragul.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no basic ideas in the skills,not comfort with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 04:06:19', 1, '2021-11-29 04:12:25', 0, NULL, 1),
(6926, 'Ajin C.R', '22', '7598028924', '', 'ajincr137@gmail.com', '1993-12-21', 27, '2', '2', 'J.Christian Robinson', 'Collie', 15000.00, 1, 0.00, 15000.00, 'Kanyakumari', 'Chennai', '2111290014', '1', '2', 'upload_files/candidate_tracker/51540020713_AJIN CR_ Resume.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Reyaz,Not suitable no basic ideas ,will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-29 08:25:28', 1, '2021-11-30 03:32:44', 0, NULL, 1),
(6927, 'Venkatesh', '4', '7092207890', '', 'venkysethupathi24@gmail.com', '2000-08-01', 21, '2', '2', 'R subramanian', 'Bus driver', 30000.00, 0, 0.00, 10000.00, 'Ankaputhur', 'Ankaputhur', '2111300001', '1', '1', 'upload_files/candidate_tracker/38690089380_RESUME VENKAT-converted.pdf', NULL, '2', '2021-12-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up, not ready to do sales calls much. Will not sustain in our positions', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-11-30 10:01:39', 50, '2021-12-01 09:33:18', 0, NULL, 1),
(6928, 'Korupolu shankar', '5', '9640758402', '9640752483', 'Shankarmanikorupolu7626@gmail', '1997-11-06', 24, '2', '2', 'Korupolu krishna', 'Day labor', 14000.00, 1, 0.00, 20000.00, 'Hyderabad', 'Hayathnagar', '2111300002', '1', '1', 'upload_files/candidate_tracker/4281153268_K-Shankar-Resume-1.pdf', NULL, '2', '2021-11-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-30 10:24:13', 50, '2021-11-30 10:53:36', 0, NULL, 1),
(6929, 'Prabaharan S', '22', '6383437825', '', 'spraba27091999@gmail.com', '1999-09-27', 22, '2', '2', 'selvan arul Prakasam A', 'coolie', 6000.00, 3, 0.00, 10000.00, 'Tuticorin', 'Kundrathur, chennai', '2111300003', '1', '1', 'upload_files/candidate_tracker/95604365522_prabaharanS resume.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic ideas on the digital Marketing,will not sustain on our role', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-30 11:25:29', 1, '2021-11-30 11:34:06', 0, NULL, 1),
(6930, 'sp abarna', '4', '8248012803', '7667936787', 'abarnaabu2351@gmail.com', '2001-05-25', 20, '2', '2', 'perumal', 'own busniess', 20000.00, 0, 0.00, 10000.00, 'veppampattu', 'Veppampattu', '2111300004', '1', '1', 'upload_files/candidate_tracker/28506089420_Abarna new resume .docx', NULL, '2', '2021-11-30', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', ' no important for job this profile , xxamp looking for non - voice also.', '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-11-30 11:26:48', 1, '2021-11-30 11:31:53', 0, NULL, 1),
(6931, 'PARAMASIVAM. A', '22', '7826082383', '9626641390', 'sivamparama231@gmail.com', '1996-06-01', 25, '2', '2', 'Arasan.G', 'Farmer', 6000.00, 5, 0.00, 10000.00, 'Chennai', 'Kundrathur, chennai', '2111300005', '1', '1', 'upload_files/candidate_tracker/27753884409_paramasivam h.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped, seems not much comfort with the position as his friend didnt get selected\n', '2', '1', '0', '1', '1', '0', '2', '2021-12-01', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-30 11:33:01', 1, '2021-11-30 11:44:13', 0, NULL, 1),
(6932, 'Syed GouseSamdani', '13', '9032852714', '', 'Syedgousesamdani@gmail.com', '1996-09-21', 25, '3', '2', 'Syed Jilani Basha', 'Ret.Govnment employee', 300000.00, 1, 360000.00, 540000.00, 'Guntur', 'Chennai', '2111300006', '', '2', 'upload_files/candidate_tracker/33155875559_syedgousesamdani.pdf', NULL, '1', '2021-11-30', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Sabeha - very High Exp with 4 yrs of Experience', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 11:33:32', 1, '2021-11-30 11:39:14', 0, NULL, 1),
(6933, 'Sabana Yasmin.m', '4', '8939786465', '9888458351', 'sabuyas22@gmail.com', '1996-12-23', 24, '2', '2', 'Rahuman bee vee', 'Business', 30000.00, 2, 22000.00, 20000.00, 'Ramnadu', 'Chennai', '2111300007', '3', '2', 'upload_files/candidate_tracker/30455263689_SABABA YASMIN.pdf', NULL, '1', '2021-11-30', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Jeniffer - Have Exp in Telecaller, kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 12:33:15', 1, '2021-11-30 12:39:21', 0, NULL, 1),
(6934, 'Karthika Selvam. P', '4', '9655656458', '', 'Karthikaselvam1512@gmail.com', '1993-05-20', 28, '2', '2', 'Panneeraselvam. C', 'Farmer', 50000.00, 3, 0.00, 15000.00, 'Adirampattinam', 'Chennai', '2111300008', '3', '1', 'upload_files/candidate_tracker/78237497951_karthika resume2.docx', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Jennifer - Not interested in Telesales', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 12:33:25', 1, '2021-11-30 12:45:49', 0, NULL, 1),
(6935, 'Murugeswari. M', '4', '8220148713', '7603935007', 'Sathyakuttyma881@gmail.com', '1999-07-27', 22, '2', '2', 'Murugan. E', 'Building contractor', 25000.00, 3, 18000.00, 18000.00, 'Madurai', 'Chennai', '2111300009', '3', '2', 'upload_files/candidate_tracker/83937907760_Murgeswari_Resume.pdf', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Jennifer - Sustainability Doubt xxamp Attitude ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 12:33:31', 1, '2021-11-30 12:41:18', 0, NULL, 1),
(6936, 'Sevvanthi M', '4', '7358051709', '7868863270', 'sevvanthi199817@gmail.com', '1998-09-17', 23, '2', '2', 'Murugesan', 'Former', 20000.00, 2, 15500.00, 17000.00, 'Chennai', 'T nagar', '2111300010', '1', '2', 'upload_files/candidate_tracker/11584810673_Sevvanthi .M (Resume).docx', NULL, '1', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Jennifer - Will not suit for Calling', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-30 12:34:58', 1, '2021-11-30 12:48:02', 0, NULL, 1),
(6937, 'N. mohammed Rafiq', '5', '9360206798', '9600185461', 'djrafiq2412@gmail.com', '1997-07-16', 24, '2', '2', 'A. nagoor meeran', 'Working', 20000.00, 1, 18000.00, 15000.00, 'Chennai', 'Choolaimedu', '2111300011', '1', '2', 'upload_files/candidate_tracker/4287015777_rafiq resume.pdf', NULL, '1', '2021-11-30', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Unable to reach him', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-30 12:52:56', 1, '2021-11-30 01:17:52', 0, NULL, 1),
(6938, 'JANAGAMA PRIYANKA', '5', '8790679825', '9581377870', 'priya.janagama@gmail.com', '1991-03-19', 30, '2', '2', 'muthaiya', 'employeer', 30000.00, 2, 12000.00, 20000.00, 'varangal', 'ameerpet', '2111300012', '19', '2', 'upload_files/candidate_tracker/19480660058_priyanka J-converted.pdf', NULL, '2', '2021-12-02', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for the profile', '5', '2', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-11-30 01:29:49', 50, '2021-12-02 10:20:52', 0, NULL, 1),
(6939, 'MichaelRaj B', '4', '6379871697', '9600136845', 'praveenmichael17@gmail.com', '2000-03-17', 21, '2', '2', 'Boobesh Karun P', 'Turner', 18000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2111300013', '21', '1', 'upload_files/candidate_tracker/16564203589_MICHAEL - Resume.pdf', NULL, '3', '2021-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Non Voice ,candidate communication sounds good,Not suits for CRM,RE Profile - No Bike 5050 handling the field Sales. Will not sustain in our role', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-11-30 01:53:51', 1, '2021-11-30 02:17:18', 0, NULL, 1),
(6940, '', '0', '9840257251', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2111300014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-11-30 02:40:07', 0, NULL, 0, NULL, 1),
(6941, 'Dinesh', '11', '9629239066', '8608490080', 'dineshmech2004@gmail.com', '2000-04-20', 21, '2', '2', 'Shanmugam', 'Electrition', 12000.00, 0, 0.00, 20000.00, 'Salem', 'Salem', '2111300015', '1', '1', 'upload_files/candidate_tracker/42315193147_5 fresh resume(1).pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No clarity on the job he looks, profile shows he much prefers to be in Mechanical Design .Will not sustain in our recruitment Role\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-30 03:04:55', 50, '2021-12-08 10:02:07', 0, NULL, 1),
(6942, 'Karthik.K', '5', '9840357252', '', 'Karthik.k14324@gmail.com', '1995-01-14', 26, '2', '2', 'Kumar', 'Auto Driver', 20000.00, 1, 20000.00, 35000.00, 'Ennore', 'Ennore', '2111300016', '1', '2', 'upload_files/candidate_tracker/8592362705_karthik resumeNew.pdf', NULL, '1', '2021-11-30', 10, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Not fit for sales', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-11-30 03:20:49', 1, '2021-11-30 03:24:58', 0, NULL, 1),
(6943, 'G.Dinesh Kumar', '11', '9791216220', '9042859449', 'dineshkumarhr037@gmail.com', '1999-03-16', 22, '2', '2', 'S.Gurumoorthy', 'Catering', 20000.00, 1, 0.00, 20000.00, 'S.S.Colony, Madurai', 'S.S.Colony, Madurai', '2111300017', '1', '1', 'upload_files/candidate_tracker/95458148425_Document (3).pdf', NULL, '2', '2021-12-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Poor,No clear ideas on the Recruitment, Will not handle our pressure and sustainability Doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-11-30 03:28:27', 60, '2021-12-01 03:21:36', 0, NULL, 1),
(6944, 'Deepika A', '11', '8608135811', '', 'deepika21700@gmail.com', '2000-07-21', 21, '2', '2', 'Ashok Kumar R', 'Carpenter', 20000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2111300018', '1', '1', 'upload_files/candidate_tracker/16439428697_Deepika A - Resume.pdf', NULL, '1', '2021-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Profile Is Good, Have Little Exp In Recruitment, Can Be Trained, But She Is Currently Pursuing Her Graduation. If She Comes Back Will Consider Her Profile. As she is in her graduation final year full time, will not be comfortable to work in our profile.Sustainability Doubts she didnt turn back with her confirmation', '6', '2', '0', '1', '1', '0', '2', '2021-12-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-30 05:02:15', 1, '2021-11-30 08:38:13', 0, NULL, 1),
(6945, 'Akashraj', '30', '8870681177', '', 'akashraj0981@gmail.com', '1999-05-06', 22, '2', '2', 'Rangaraj', 'Driver', 20000.00, 1, 0.00, 17000.00, 'PUDUCHEERY', 'PUDUCHEERY', '2111300019', '1', '1', 'upload_files/candidate_tracker/38993130104_Akashraj resume.pdf', NULL, '3', '2021-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '9', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-11-30 05:12:02', 1, '2021-11-30 05:17:43', 0, NULL, 1),
(6946, 'K.mohana sundar', '4', '9962427388', '7010303601', 'mohankul313@gmail.com', '1999-11-03', 22, '2', '2', 'M.kumar', 'Business', 60000.00, 2, 0.00, 13000.00, 'Plot no 287 omshakthy Kanopus Ayappakam', 'Plot no 287 omshakthy kanopus ayappakam Chennai 77', '2112010001', '1', '1', 'upload_files/candidate_tracker/52641563298_RESUME ...pdf', NULL, '3', '2021-12-01', 0, '', '3', '59', '2021-12-06', 120000.00, '', '', '2021-12-08', '1', 'Selected for Tiruvallur Team in Cash mode - Patroniss', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-01 09:02:12', 60, '2021-12-02 04:41:20', 0, NULL, 1),
(6947, 'K. SABEERA', '4', '9952226203', '', 'Thaslenazakirthaslenazakir@gmail.com', '2001-08-30', 20, '1', '2', 'S. B. KUTHARATHULLA', 'Coolie', 8000.00, 2, 0.00, 25000.00, 'Arakkonam', 'Arakkonam', '2112010002', '', '1', 'upload_files/candidate_tracker/19719813037_Sabeera Resume.docx', NULL, '1', '2021-12-01', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up,Too long distance, Will not sustain in our role.Not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-01 10:20:36', 1, '2021-12-01 10:49:48', 0, NULL, 1),
(6948, 'Z. THASLENA ZAKIR', '4', '9381133092', '', 'Thaslenazakirthaslenazakir@gmail.com', '2001-06-24', 20, '1', '2', 'ZAKIR HUSSAIN', 'Coolie', 8000.00, 1, 0.00, 25000.00, 'Arakkonam', 'Arakkonam', '2112010003', '', '1', 'upload_files/candidate_tracker/57241218544_Z. TASLENA ZAKIR.pdf', NULL, '1', '2021-12-01', 0, 'Jobs', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-01 10:22:29', 1, '2021-12-01 10:33:58', 0, NULL, 1),
(6949, 'ganesh', '4', '7904629805', '7299895510', 'ganeshkaran2018@gmail.com', '1999-09-05', 22, '2', '2', 'kuppuswamy', 'lab technician', 20000.00, 1, 0.00, 10000.00, 'chennai', 'mogapair', '2112010004', '1', '1', 'upload_files/candidate_tracker/20829345539_RESUME.pdf', NULL, '2', '2021-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-01 10:22:51', 1, '2021-12-01 10:33:21', 0, NULL, 1),
(6950, 'Arul murugan rajendran', '5', '8012383693', '', 'arulmurugan996@hotmail.com', '1996-01-04', 25, '2', '2', 'THENMOZHI T', 'Teacher', 20000.00, 1, 25000.00, 30000.00, 'Visalachi nagar jayankondam', 'chennai', '2112010005', '1', '2', 'upload_files/candidate_tracker/15088837956_ARULupdatedresume18FEB2021-compressed.pdf', NULL, '1', '2021-12-01', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp in Sales, have worked in multiple domain.Will not handle our sales pressure. Sustainability doubts', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-01 10:38:19', 60, '2021-12-01 06:19:04', 0, NULL, 1),
(6951, 'nivetha.v', '11', '9514332207', '9092621065', 'nivethaviswa704@gmail.com', '1998-08-03', 23, '2', '2', 'viswanathan.g', '-', 30000.00, 0, 15000.00, 25000.00, 'mangali neethiman nagar kolathur chennai', 'chennai', '2112010006', '1', '2', 'upload_files/candidate_tracker/26429128410_Nivetha98.pdf', NULL, '1', '2021-12-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed by Sabeha,only 3 months exp and looking for a change. Will not sustain with us and the salary Exp is high', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 10:49:43', 1, '2021-12-01 10:31:11', 0, NULL, 1),
(6952, 'Ajith Kumar S', '4', '7871721336', '', 'ajisriram1712@gmail.com', '1997-12-17', 23, '3', '2', 'Sriramulu K', 'State transport', 38000.00, 2, 19000.00, 24000.00, '2/76, durugam main road palayanur kallakurichi dts', 'No 27 gangaiamman kovil street choolaimedu', '2112010007', '', '2', 'upload_files/candidate_tracker/60250267006_Ajith Kumar.docx', NULL, '1', '2021-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have much only in inbound calls,Will not handle our sales.Salary Exp is also high\n', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-01 10:55:49', 1, '2021-12-01 11:02:00', 0, NULL, 1),
(6953, 'keerthana', '4', '9791542971', '9043668602', 'anbazhagan010268@gmail.com', '1999-06-16', 22, '2', '2', 'anbalagan', 'farmer', 25000.00, 2, 15000.00, 15000.00, 'chennai', 'nandhanam', '2112010008', '1', '2', 'upload_files/candidate_tracker/99073985716_Keerthana Resume (1).pdf', NULL, '1', '2021-12-01', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '4 months Exp in recruitment an looking for Telecaller position, No communication too. Will not handle our pressure .Not suitable ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-01 11:47:06', 1, '2021-12-01 12:22:18', 0, NULL, 1),
(6954, 'Vignesh.M', '4', '8667090925', '', 'vickysathish311@gmail.com', '1998-11-07', 23, '2', '2', 'mathiyazhagan', 'working', 20000.00, 1, 0.00, 10000.00, 'tanjavur', 'thriuvaiyaru', '2112010009', '1', '1', 'upload_files/candidate_tracker/4243356034_vicky resume (1).pdf', NULL, '1', '2021-12-01', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'not fit', '1', '1', '0', '4', '5', '0', '2', '2021-12-06', '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-01 11:56:25', 1, '2021-12-01 03:56:25', 0, NULL, 1),
(6955, 'Manikandan', '22', '9003427202', '9790711480', 'sankarimani.13@gmail.com', '2000-02-14', 21, '2', '2', 'parent/father', 'retired', 23000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2112010010', '1', '1', 'upload_files/candidate_tracker/1716649232_Manikandan_Srinivasan_.PDF', NULL, '1', '2021-12-02', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate not suitable, he is not okay with job role', '2', '1', '0', '1', '1', '0', '2', '2021-12-03', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 12:52:33', 1, '2021-12-01 03:07:28', 0, NULL, 1),
(6956, 'asthaaq ahmed', '11', '8220723101', '', 'asthaaqrafee@gmail.com', '1999-01-01', 22, '2', '2', 'k.mohamed rafee', 'tamilnadu unorganised labour union', 50000.00, 1, 0.00, 17000.00, 'namakkal', 'namakkal', '2112010011', '1', '1', 'upload_files/candidate_tracker/24478085298_ASTHAAQ AHMED - RESUME.pdf', NULL, '1', '2021-12-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 01:15:31', 1, '2021-12-01 01:21:10', 0, NULL, 1),
(6957, '', '0', '6369932271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112010012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-01 01:52:58', 0, NULL, 0, NULL, 1),
(6958, '', '0', '9677989848', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112010013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-01 02:26:49', 0, NULL, 0, NULL, 1),
(6959, 'Sujeet kumar Mandal', '5', '7981972056', '9848087657', 'immandal1008@gmail.com', '1999-11-01', 22, '2', '2', 'Shatrughan mandal', 'Mechanical engineer', 100000.00, 4, 25000.00, 32000.00, 'Hyderabad', 'Hyderabad', '2112010014', '1', '2', 'upload_files/candidate_tracker/35727359873_Resume_Sujeet Kumar Mandal .docx', NULL, '2', '2021-12-02', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '2', 'WIll not suit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 03:17:50', 1, '2021-12-01 03:27:01', 0, NULL, 1),
(6960, 'Karthika', '4', '7708232135', '', 'karthikajk25@gmail.com', '1996-02-25', 25, '2', '2', 'Jamuna', 'Housewife', 15000.00, 1, 13500.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2112010015', '1', '2', 'upload_files/candidate_tracker/81924263124_Karthika resume-1.pdf', NULL, '1', '2021-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate is not interested for the Telecaller, looking for opportunities in Admin. Earlier worked with Bluechip - Same Domain Insurance Sales,but no interest to continue in telecalling. For time being she s looking for the telecaller. Will not sustain ', '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-01 03:59:32', 1, '2021-12-01 04:13:50', 0, NULL, 1),
(6961, 'chandolu mani prasanth', '5', '9515582129', '', 'mani1413.prash@gmail.com', '1994-08-04', 27, '2', '1', 'ramya', 'house wife', 13000.00, 1, 12815.00, 25000.00, 'hyderabad', 'hyderabad', '2112010016', '1', '2', 'upload_files/candidate_tracker/63437775257_Mani prasanth-resume.pdf', NULL, '1', '2021-12-02', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'intersted in Opertions Job. Not Intersted in the sales', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 04:30:18', 1, '2021-12-01 04:34:20', 0, NULL, 1),
(6962, 'HEMALATHA S', '11', '9092621065', '', 'preethashiv2@gmail.com', '1999-05-20', 22, '2', '2', 'Siva sankaran V', 'Health department', 30000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2112010017', '1', '2', 'upload_files/candidate_tracker/19886403856_Hema résumé (2) (1).pdf', NULL, '1', '2021-12-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Interviewed By Sabeha,Only 3 Months Exp And Looking For A Change. Will Not Sustain With Us And The Salary Exp Is High', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-01 09:27:36', 1, '2021-12-01 09:49:20', 0, NULL, 1),
(6963, 'karthika', '4', '6380967122', '', 'karthika2cse@gmail.com', '1999-10-29', 22, '2', '2', 'subramani', 'printer', 20000.00, 1, 12000.00, 12000.00, 'madurai', 'sriperambature', '2112020001', '3', '2', 'upload_files/candidate_tracker/64285596659_Karthika Resume.pdf', NULL, '1', '2021-12-02', 0, '', '3', '59', '2021-12-06', 132000.00, '', '3', '2021-12-07', '2', 'Selected for Tiruvallur location in Patroniss No PF/ESI/PT', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-12-02 10:30:15', 60, '2021-12-17 04:44:53', 0, NULL, 1),
(6964, 'divya', '4', '9080579620', '', 'divyamithrasri@gmail.com', '1999-06-07', 22, '2', '1', 'loganathan', 'software developer', 25000.00, 1, 0.00, 10000.00, 'thodukadu', 'thodukadu', '2112020002', '3', '1', 'upload_files/candidate_tracker/47115160764_Divya Resume(1).pdf', NULL, '1', '2021-12-02', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'pronoun to disease very poor. qualification 12th std only . married . near to location. but drop.', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-02 11:02:12', 1, '2021-12-02 11:11:29', 0, NULL, 1),
(6965, 'Omprakash', '2', '9962133452', '', 'omprakashlott@gmail.com', '1997-12-03', 23, '3', '2', 'Kannan', 'BE Mechanical', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112020003', '', '1', 'upload_files/candidate_tracker/64584629500_Resume.pdf', NULL, '1', '2021-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable REjected', '2', '1', '0', '1', '1', '0', '2', '2021-12-03', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-02 11:53:57', 1, '2021-12-02 11:58:04', 0, NULL, 1),
(6966, 'Poovarasan S', '20', '9751373526', '', 'itzmevijay09@gmail.com', '1999-01-09', 22, '3', '2', 'Subramaniyan N', 'Daily wages', 120000.00, 1, 0.00, 16000.00, 'Kanchipuram', 'Chennai', '2112020004', '', '1', 'upload_files/candidate_tracker/5128365635_VijayResume_2021-converted.pdf', NULL, '1', '2021-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Semivoice process and looking for Nonvoice/IT.In IT no basic knowledge will not sustain in our role', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-02 12:44:59', 1, '2021-12-02 12:55:21', 0, NULL, 1),
(6967, 'sajan', '5', '9944970525', '', 's.sajannikam@gmail.com', '1993-04-01', 28, '2', '1', 'ishwarya', 'housewife', 17500.00, 1, 17500.00, 17500.00, 'aiyapakkam', 'Aiyapakkam', '2112020005', '1', '2', 'upload_files/candidate_tracker/7068916487_sj-cv-2021che.pdf', NULL, '2', '2021-12-02', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable will not sustain', '5', '2', '0', '1', '1', '0', '2', '2021-12-06', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-02 04:36:11', 1, '2021-12-02 04:39:14', 0, NULL, 1),
(6968, 'Walthati Akash', '4', '7993636016', '', 'walthatiakash@gmail.com', '2000-07-04', 21, '2', '2', 'Ravinder', 'Annual maintenance work', 40000.00, 1, 19.00, 20.00, '30-276/13/35A old safilguda, Malkajgiri', '30-276/13/35A Old Safilguda, Malkajgiri', '2112020006', '1', '2', 'upload_files/candidate_tracker/91863789201_Akash04.docx', NULL, '1', '2021-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '3', '4', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-02 04:52:25', 1, '2021-12-02 05:03:12', 0, NULL, 1),
(6969, 'Jambiga Prajwal', '5', '8121188475', '8179459073', 'prajwalkanna1995@gmail.com', '1995-05-05', 26, '2', '2', 'J.Mogalaiah', 'Postal Assistant', 70000.00, 1, 23000.00, 30000.00, 'H.no:5-11-312/b, yellamagutta, Nizambad', 'Hyderabad', '2112020007', '1', '2', 'upload_files/candidate_tracker/62726816518_prajwal accenture.pdf', NULL, '2', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate decided to go with the offer he holds for 3.5 LPA. Not interested', '5', '2', '', '3', '4', '', '2', '2021-12-08', '3', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-02 05:03:36', 60, '2021-12-04 03:25:08', 0, NULL, 1),
(6970, 'Sathish Udutha', '5', '6301720283', '7075701730', 'uduthasathish5@gmail.com', '1994-08-18', 27, '2', '2', 'kethamma ilaiah', 'farmar', 300000.00, 2, 245000.00, 350000.00, 'warangal', 'Ameerpet', '2112020008', '1', '2', 'upload_files/candidate_tracker/92976906662_Resume.doc', NULL, '1', '2021-12-03', 45, '', '8', '18', NULL, 0.00, '', '0', NULL, '2', 'connected twice\n but he did not attend', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-02 05:16:18', 1, '2021-12-02 05:22:17', 0, NULL, 1),
(6971, '', '0', '7416784431', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112020009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-02 08:12:25', 0, NULL, 0, NULL, 1),
(6972, '', '0', '9840290923', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-03 10:32:32', 0, NULL, 0, NULL, 1),
(6973, 'Kamali P', '4', '9159751911', '9962855857', 'kamalipazhani36@gmail.com', '1998-04-03', 23, '1', '2', 'Pazhani R', 'Former', 15000.00, 1, 14200.00, 16000.00, 'Cuddalore', 'Chennai', '2112030002', '', '2', 'upload_files/candidate_tracker/3659936202_kamali (1).pdf', NULL, '1', '2021-12-03', 0, '5560', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in same Domain - Life insurance Sales, No proper relieving from the previous company. Internal Team Reference, can check for ESales. Kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-03 10:34:06', 60, '2021-12-03 12:12:05', 0, NULL, 1),
(6974, 'kasimahanti harish', '17', '9000581650', '', 'Harish.patnaik5@gmail.com', '1992-05-28', 29, '2', '1', 'k madhuri', 'employee', 70000.00, 1, 500000.00, 600000.00, 'hyderabad', 'hyderabad', '2112030003', '19', '2', 'upload_files/candidate_tracker/27900488443_harish Kasimahanti updated resume (updated).docx', NULL, '3', '2021-12-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-03 11:05:10', 1, '2021-12-03 11:12:28', 0, NULL, 1),
(6975, 'Shafeeq', '5', '7899346081', '', 'shafeeq@jobcento.com', '2006-10-12', 15, '2', '2', 'Zeenat', '2', 20000.00, 0, 23455.00, 20000.00, 'Hyderabad', 'Hyderabad', '2112030004', '19', '2', 'upload_files/candidate_tracker/40592092903_kasim CV 3.docx', NULL, '2', '2021-12-21', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-03 11:24:39', 1, '2021-12-16 11:44:15', 0, NULL, 1),
(6976, 'D indu', '4', '7358426230', '', 'induself1997@gmail.com', '1997-08-30', 24, '2', '2', 'D mohan rao', 'Beautician', 400000.00, 1, 14000.00, 16000.00, 'Madipakkam', 'Madipakkam', '2112030005', '1', '2', 'upload_files/candidate_tracker/27210569669_INDU RESUME.pdf', NULL, '1', '2021-12-03', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not intrested in telecalling', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-03 12:45:15', 50, '2021-12-03 12:56:30', 0, NULL, 1),
(6977, 'Sathish kumar C', '11', '9080689287', '8754444916', 'sathishkumarsk2200@gmail.com', '2000-02-09', 21, '2', '2', 'Chandran S R', 'Student', 40000.00, 1, 0.00, 15000.00, 'No 26, pettai Street, pudhupettai, Panruti', 'No 5th kaalingarayan street , wahsermanpet', '2112030006', '1', '1', 'upload_files/candidate_tracker/33903382451_Sathish_Kumar C_Resume_30-11-2021-10-26-37.pdf', NULL, '1', '2021-12-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Got another offer\n', '6', '1', '0', '1', '1', '0', '2', '2021-12-07', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-03 01:30:57', 1, '2021-12-03 02:29:25', 0, NULL, 1),
(6978, 'Karthick Selvam', '5', '9345601781', '6374689548', 'kselvammaddy36@gmail.com', '1990-11-04', 31, '2', '2', 'Poongothai', 'Office admin', 10000.00, 2, 0.00, 25.00, '3950 lig1a mmda 6', 'Mathur', '2112030007', '1', '2', 'upload_files/candidate_tracker/81790981245_Karthick Selvam New Resume 2021.docx', NULL, '1', '2021-12-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok have sales Exp but into sales of multiple domain .Not comfortable to take call. Will not suitable for our role .Sustainability doubts in our profiles', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-03 02:31:47', 50, '2021-12-03 02:55:58', 0, NULL, 1),
(6979, 'Kranthi Kumar Gogula', '17', '7013319139', '8121407918', 'kranthi.gog777@gmail.com', '1987-05-18', 34, '2', '1', 'Sivakumari', 'Home Maker', 29000.00, 2, 29000.00, 37000.00, 'Madhira', 'Hyderabad', '2112030008', '1', '2', 'upload_files/candidate_tracker/89037926911_kranthi updated resume 7 99-converted.pdf', NULL, '1', '2021-12-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-03 03:06:21', 1, '2021-12-03 03:17:57', 0, NULL, 1),
(6980, 'Sudarsan P', '11', '9710832873', '', 'p.sudarsan.suresh@gmail.com', '2006-12-03', 0, '2', '2', 'K.M.Palanisamy', 'BSF WORKER', 30000.00, 0, 0.00, 200000.00, 'Coimbatore', 'Coimbatore', '2112030009', '1', '1', 'upload_files/candidate_tracker/91510344330_Sudarsan P.pdf', NULL, '2', '2021-12-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Recruitment, seems not much comfort on the SA. Much comfortable for yr of SA, Need time to give us the confirmation, if he comes back let us see', '6', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-03 03:41:39', 1, '2021-12-03 03:44:00', 0, NULL, 1),
(6981, 'Karthika Ashok Kumar', '11', '9600175882', '', 'karthikaak1508@gmail.com', '2000-08-15', 21, '2', '2', 'Ashok Kumar', 'Fresher', 22000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112030010', '1', '1', 'upload_files/candidate_tracker/74310087880_Karthika Ashok Kumar.pdf', NULL, '1', '2021-12-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Recruitment, Communication ok, but not much comfort with txxampC. Salary Exp is very high being fresher. Will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-03 03:44:16', 1, '2021-12-03 03:47:14', 0, NULL, 1),
(6982, '', '0', '8798234567', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-03 04:13:01', 0, NULL, 0, NULL, 1),
(6983, 'Ananya Jayanand', '11', '7358179123', '', 'ananyajayanand@gmail.com', '1996-10-16', 25, '2', '1', 'Maneesh mohan', 'Marketing', 10000.00, 2, 0.00, 18000.00, 'Pallikaranai', 'Pallikaranai', '2112030012', '1', '1', 'upload_files/candidate_tracker/14550615385_Ananya Resume 140721-1.docx', NULL, '1', '2021-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 3 months Exp in HR operations fresher for Recruitment, Communication ok, Married,Not comfort with TxxampC, need time to check with family, Pressure handling doubts. Long Stay doubts on the profile', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-03 04:13:10', 50, '2021-12-07 12:32:20', 0, NULL, 1),
(6984, 'Arjun T R', '11', '8754413445', '', 'arjuntr32@gmail.com', '1996-03-21', 25, '2', '2', 'AP Haridas', 'Business', 25000.00, 0, 0.00, 25000.00, 'Ernakulam', 'Ernakulam', '2112030013', '1', '1', 'upload_files/candidate_tracker/63832078134_Arjun TR_CV.pdf', NULL, '2', '2021-12-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Recruitment, have exp as trainee HR executive from Kerela, looking for Recruitment with high salary Exp. Sustainability Doubts,', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-03 04:36:22', 60, '2021-12-04 04:19:35', 0, NULL, 1),
(6985, 'Dharanishankar P', '30', '8754925292', '9841343926', 'dharanishankar01@gmail.com', '2000-09-26', 21, '2', '2', 'prabhakaran j', 'business', 80000.00, 1, 0.00, 400000.00, 'Madambakkam, Chennai', 'Madambakkam, Chennai', '2112030014', '1', '1', 'upload_files/candidate_tracker/15631094382_DHARANISHANKAR P resume.docx', NULL, '1', '2021-12-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Exp and Not much Comfort on TxxampC,Dropped ', '9', '1', '0', '1', '1', '0', '2', '2021-12-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-03 08:14:25', 1, '2021-12-03 08:39:54', 0, NULL, 1),
(6986, 'manikandan krishankumar', '9', '8939060026', '', 'manikris92@gmail.com', '1993-08-17', 28, '2', '2', 'krishan kumar', 'working', 30000.00, 0, 22000.00, 30000.00, 'triplicane', 'triplicane', '2112040001', '1', '2', 'upload_files/candidate_tracker/18941606413_Manikandan Resume.docx', NULL, '1', '2021-12-04', 0, '', '1', '58', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-04 10:05:57', 1, '2021-12-04 10:20:26', 0, NULL, 1),
(6987, 'Riyazsudhin. A', '5', '9345445313', '7358551243', 'riyazsudhin1243@gmail.com', '1997-09-27', 24, '2', '2', 'Abdul Rashees', 'Tailor', 30000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2112040002', '1', '2', 'upload_files/candidate_tracker/16877833662_RIYAS.A Resume 202107-1.docx', NULL, '1', '2021-12-04', 0, '', '1', '58', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-04 10:48:02', 1, '2021-12-04 10:56:08', 0, NULL, 1),
(6988, 'Sharmila. N', '11', '8428542266', '9841869721', 'sharmilakanchana7160@gmail.com', '2001-06-02', 20, '2', '2', 'Kanchana. N', 'Homemaker', 16000.00, 1, 0.00, 14000.00, 'T. Nagar', 'T. Nagar', '2112040003', '1', '1', 'upload_files/candidate_tracker/5461670017_resume.docx', NULL, '1', '2021-12-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-04 11:44:55', 1, '2021-12-04 11:47:59', 0, NULL, 1),
(6989, '', '0', '9999993421', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112040004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-04 12:00:47', 0, NULL, 0, NULL, 1),
(6990, 'Saiyogesh', '4', '7619283143', '9448426900', 'Saiyogesh003@gmail.com', '1997-02-03', 24, '3', '2', 'Venu gopal', 'Contractor', 30000.00, 1, 0.00, 25000.00, 'rt nagar dinnur bangalore 560032', 'Rt nagar', '2112040005', '', '1', 'upload_files/candidate_tracker/73332473069_SAI YOGESH .V.pdf', NULL, '1', '2021-12-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles,will not sustain\n', '1', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-04 12:24:49', 1, '2021-12-04 12:30:23', 0, NULL, 1),
(6991, 'Karthick', '5', '8072029926', '8124853632', 'lokeshkarthick0412@gmail.com', '1998-12-04', 23, '3', '2', 'Krishna moorthi', 'Tailor', 12000.00, 1, 0.00, 20000.00, '2-79 karthanur ramiyampatti Dharmapuri Tamil Nadu', 'Bommanahalli', '2112040006', '', '1', 'upload_files/candidate_tracker/68431149894_RESUME.pdf', NULL, '3', '2021-12-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate communication is not clear - Stammering - Not comfortable to take the Call, Will not sustain in our role', '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-04 02:58:51', 1, '2021-12-04 04:58:15', 0, NULL, 1),
(6992, 'Ramya Mallapur', '20', '7349653436', '', 'ramyamallapur7412@gmail.com', '2000-03-24', 21, '4', '2', 'Mallapa', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Ranebennur', 'Hubli', '2112040007', '', '1', 'upload_files/candidate_tracker/56752907591_RAMYA.docx', NULL, '2', '2021-12-05', 0, '', '5', '30', NULL, 0.00, '', '0', NULL, '2', 'communication Skill', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-04 09:02:20', 1, '2021-12-04 09:39:36', 0, NULL, 1),
(6993, 'srikanth b', '4', '9949104894', '', 'bairagonisrikanthb@gmail.com', '1993-10-17', 28, '2', '1', 'b yadagiri', 'auto driver', 60000.00, 2, 350000.00, 500000.00, 'hyderabad', 'hyderabad', '2112050001', '19', '2', 'upload_files/candidate_tracker/7465087812_Updated Experience Srikanth.pdf', NULL, '3', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-05 07:58:23', 1, '2021-12-29 07:45:50', 0, NULL, 1),
(6994, 'Laxmi C B', '5', '8073961577', '9972759714', 'lakshmicb1912@gmail.com', '1999-12-19', 21, '4', '2', 'Channabasavaraj balikai', 'Medical representative', 50000.00, 1, 0.00, 20000.00, 'Sriram Nagar ranebennur', 'Gokul road Nehru Nagar hubballi', '2112050002', '', '1', 'upload_files/candidate_tracker/97049722988_LAXMI.docx', NULL, '2', '2021-12-05', 0, '', '4', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, Fresher for Sales, Can be Trained for Sales .Kindly check for ESales RM and let me know your inputs', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-05 12:40:13', 60, '2021-12-07 09:55:28', 0, NULL, 1),
(6995, 'Logeshnathan L', '5', '8072240898', '9342924620', 'logesh183dhoni@gmail.com', '1998-04-26', 23, '2', '2', 'Lakshmanan R', 'Farmer', 30000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Velachery chennai', '2112060001', '1', '2', 'upload_files/candidate_tracker/40542925403_Loghan.Docx', NULL, '1', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Insurance Sales,have worked with Reliance for 2 months,in 10 months 2 companies,not comfort to spend additional time in the work. Not suitable for our role', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-06 11:33:32', 50, '2021-12-06 05:27:06', 0, NULL, 1),
(6996, '', '0', '7358719123', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112060002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-06 12:10:26', 0, NULL, 0, NULL, 1),
(6997, 'Padmapriya.R', '4', '6379151487', '9176202422', 'rampriya1314@gmail.com', '1998-11-14', 23, '2', '1', 'Kuppusamy', 'Kulli', 10000.00, 1, 12000.00, 12000.00, 'CHENNAI', 'Sanatorium', '2112060003', '16', '2', 'upload_files/candidate_tracker/91061285427_Padmapriya resume new edit.pdf', NULL, '1', '2021-12-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-06 12:52:23', 1, '2021-12-06 12:57:50', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(6998, 'Mkmanoj kumar', '5', '8019667626', '9515298612', 'ma1019910@gmail.com', '1990-09-15', 31, '2', '2', 'M renuka', 'Senior sales executive', 25000.00, 2, 25000.00, 25000.00, 'HYD', 'Oldbowenpally', '2112060004', '1', '2', 'upload_files/candidate_tracker/52752760404_Document.docx', NULL, '3', '2021-12-07', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Will not suit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-06 12:56:21', 1, '2021-12-06 03:07:55', 0, NULL, 1),
(6999, 'KATHIRAVAN', '20', '7904025698', '8220756112', 'Kathiravankathir127@gmail.com', '1995-07-30', 26, '2', '2', 'THIRAVIDAMANI', 'ATM SECURITY', 15000.00, 1, 0.00, 15000.00, 'Pattukkottai', 'Iyyappanthangal', '2112060005', '1', '1', 'upload_files/candidate_tracker/63856334143_Kathir RESUME main (1) (1).pdf', NULL, '1', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telecaller, Have Exp in Core only,Also seems to much comfort in the non voice/Core only. Not suitable for our role', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-06 02:01:31', 50, '2021-12-07 10:41:38', 0, NULL, 1),
(7000, 'DHANASEKARA PANDIAN', '20', '8220756112', '7904025698', 'dhanasekarapandianp21@gmail.com', '1994-12-21', 26, '2', '2', 'Gandhimathi N', 'Home maker', 15000.00, 1, 0.00, 15000.00, 'Madukkur', 'Madukkur', '2112060006', '1', '1', 'upload_files/candidate_tracker/70277796974_Dhanasekarapandian new resume (1).pdf', NULL, '1', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, Fresher for Telecaller Sales Profile,Looking for IT Domain only and for the time being he is looking for the telecaller positions.Will not sustain and not suits for our role', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-06 02:03:13', 50, '2021-12-07 10:41:51', 0, NULL, 1),
(7001, 'R.vignesh', '5', '9790099623', '8220756112', 'Vigneshrajadurai97@gmail.com', '1997-11-01', 24, '2', '2', 'Rajadurai', 'Labour', 15000.00, 1, 0.00, 15000.00, 'Madukkur', 'Denappettai', '2112060007', '1', '1', 'upload_files/candidate_tracker/25035697505_vignesh resume (1).pdf', NULL, '1', '2021-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no Communication,no sustainability in his previous exp,will not handle our pressure on sales.Not suitable', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-06 02:04:43', 50, '2021-12-07 10:42:14', 0, NULL, 1),
(7002, 'P.Jayasurya', '6', '8428144200', '9074894563', 'jayasurya042001@gmail.com', '2001-08-04', 20, '1', '2', 'Vijayalakshmi prakash', 'Father', 25000.00, 1, 0.00, 15000.00, 'No:35 second cross street c.i.t nagar nandhanam-35', 'No:35 second cross street c.i.t Nagar nandhanam-35', '2112060008', '', '1', 'upload_files/candidate_tracker/25521676843_Jayasurya Resume.pdf', NULL, '1', '2021-12-06', 0, 'Jobs', '3', '59', '2021-12-13', 168000.00, '', '3', '2021-12-14', '1', 'Selected for Syed Team - RE with PF/ESI/PT Dedcutions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Link Sent to upload the documents', '', '', '', NULL, NULL, NULL, 1, '2021-12-06 02:36:57', 60, '2021-12-07 11:12:29', 0, NULL, 1),
(7003, 'Sai Bharath', '5', '9676808007', '9014572801', 'nanibharath777@gmail.com', '1997-10-17', 24, '2', '2', 'Mohan', 'Contractor', 100000.00, 1, 20000.00, 28000.00, 'Hyderabad', 'Hyderabad', '2112060009', '1', '2', 'upload_files/candidate_tracker/61860462412_B.SAI BHARATH. new.pdf', NULL, '2', '2021-12-07', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-06 03:32:28', 1, '2021-12-07 10:25:39', 0, NULL, 1),
(7004, '', '0', '6381806833', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112060010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-06 04:29:06', 0, NULL, 0, NULL, 1),
(7005, 'kishore kumar', '13', '7708962016', '', 'kishorehari221@gmail.com', '2000-04-27', 21, '3', '2', 'kimaravel', 'ailway police', 50000.00, 1, 0.00, 20000.00, 'new perungalathur', 'new Perungalathur', '2112060011', '', '1', 'upload_files/candidate_tracker/36231202976_MY RESUME- kishorepdf-convertedb.pdf', NULL, '3', '2021-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-06 04:48:47', 1, '2021-12-06 04:54:41', 0, NULL, 1),
(7006, 'M satyanarayana murthy', '5', '9121406807', '', 'murthyjgd@gmail.com', '1998-04-28', 23, '2', '2', 'M Nuka raju', 'Business', 30000.00, 1, 15000.00, 25000.00, 'Marripudi', 'Marripudi', '2112060012', '1', '2', 'upload_files/candidate_tracker/42593786718_Murthy_Resume.pdf', NULL, '1', '2021-12-10', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-06 04:56:54', 50, '2021-12-10 10:13:00', 0, NULL, 1),
(7007, 'MUBARAK Basha', '4', '7010896863', '9710772040', 'Mubarakbasha1786@gmail.com', '1997-12-31', 23, '2', '2', 'Basha', 'Gaming', 20000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2112060013', '1', '2', 'upload_files/candidate_tracker/53335221387_mubarak basha Resume.docx', NULL, '1', '2021-12-07', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-06 06:14:51', 1, '2021-12-06 06:20:17', 0, NULL, 1),
(7008, 'Saravanan P.R', '5', '9003590216', '', 'prsaravanan7@gmail.com', '1994-02-20', 27, '2', '2', 'Ramarao', 'Salaried', 18000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2112060014', '17', '2', 'upload_files/candidate_tracker/30289476157_Saravana resume update.docx', NULL, '1', '2021-12-08', 31, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-06 07:00:58', 1, '2021-12-06 07:05:25', 0, NULL, 1),
(7009, 'S. RAJA', '11', '9176478617', '6383551511', 'Rajaselvaraj1503@gmail.com', '1992-03-15', 29, '2', '2', 'N. Selvaraj', 'Production manager', 25000.00, 2, 0.00, 15000.00, 'chennai', 'Gergampakkam', '2112070001', '16', '1', 'upload_files/candidate_tracker/99746224351_raja .1503.docx', NULL, '1', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in multiple domain, not interested for Sales calls. Not suitable', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-07 07:34:37', 1, '2021-12-07 07:47:25', 0, NULL, 1),
(7010, 'Nithya. M', '11', '7358740605', '6381806833', 'nithya1506ssadhana@gmail.com', '1993-06-15', 28, '2', '1', 'Manikandan', 'Driver', 15500.00, 5, 0.00, 15000.00, 'Chennai', 'Nespakkam', '2112070002', '16', '1', 'upload_files/candidate_tracker/86464394252_Nithya-1.doc', NULL, '1', '2021-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have Exp as a receptionist, not clear for which position she applied. Will not handle the Telecaller Sales. Not Suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-07 10:27:06', 60, '2021-12-07 11:16:12', 0, NULL, 1),
(7011, 'SASIKANTH SALAPATHI', '5', '9940635752', '7550140196', 'sasi.pavi414@gmail.com', '1996-10-04', 25, '2', '2', 'Salapathi', 'Laundry shop and Tailor garments', 78650.00, 4, 18500.00, 20000.00, 'Chennai', 'Chennai', '2112070003', '3', '2', 'upload_files/candidate_tracker/90835528377_sasikanth 421.pdf', NULL, '1', '2021-12-07', 0, '', '3', '59', '2021-12-08', 274000.00, '', '3', '2021-12-14', '1', 'Selected for Pandiarajan Team - RM Candidate - With PF/PT Deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-07 11:04:52', 60, '2021-12-08 09:59:13', 0, NULL, 1),
(7012, 'abitha', '20', '8754789012', '', 'abitha28029@gmail.com', '2000-07-29', 21, '2', '1', 'parasuraman', 'working', 10000.00, 2, 0.00, 10000.00, 'kalpakkam', 'Kalpakkam', '2112070004', '1', '1', 'upload_files/candidate_tracker/79652917442_Resume_Abitha P_Format7.pdf', NULL, '1', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 8 months exp in loan collections, Not interested to take the outbound calls. Not suitable and will not sustain. No Sustainability in her previous exp too.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-07 11:32:09', 1, '2021-12-07 12:24:53', 0, NULL, 1),
(7013, 'Jayasree s', '4', '6380373886', '9884549398', 'Jaiswathi49@gamail.com', '2000-03-31', 21, '3', '2', 'Shankar c', 'Contractor', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112070005', '', '1', 'upload_files/candidate_tracker/45182142561_JAYASHREE RESUME.pdf', NULL, '1', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'communication ok, seems not showing much importance to the job.Earlier 2 months worked as call coordinator then career gap,No Graduation, Will not sustain in our role', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-07 11:33:18', 1, '2021-12-07 11:40:58', 0, NULL, 1),
(7014, '', '0', '9342616390', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-07 11:48:52', 0, NULL, 0, NULL, 1),
(7015, 'ajai', '5', '9789564200', '', 'ajayagarwalg2000@gmail.com', '2000-08-10', 21, '2', '2', 'govindhasami', 'business', 20000.00, 0, 25000.00, 30000.00, 'salem', 'chennai', '2112070007', '1', '2', 'upload_files/candidate_tracker/63882117763_AJAY RESUME.pdf', NULL, '2', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Appeared for an Interview and the salary Exp is very High,Not open for Field Sales looking only for Telecaller roles', '5', '1', '0', '1', '1', '0', '2', '2021-12-17', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-07 12:00:06', 1, '2021-12-07 12:04:43', 0, NULL, 1),
(7016, 'Mathsyagiri manimadde', '5', '8074080390', '9849256209', 'machagirimanimadde@gmail.com', '1999-06-01', 22, '2', '2', 'Venkataiah manimadde', 'Former', 12000.00, 3, 17000.00, 25000.00, 'Hyderabad', 'Hyderabad', '2112070008', '1', '2', 'upload_files/candidate_tracker/9623824693_Giri Resume (1).doc', NULL, '1', '2021-12-11', 15, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-07 12:22:54', 1, '2021-12-07 12:26:33', 0, NULL, 1),
(7017, 'ratchagar', '5', '9698760769', '', 'ratchagar23@gmail.com', '1993-11-22', 28, '2', '2', 'dhanraj', 'working', 10000.00, 2, 16500.00, 20000.00, 'arumbakkam', 'Arumbakkam', '2112070009', '1', '2', 'upload_files/candidate_tracker/86435169540_ratchagar hd.pdf', NULL, '2', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Recently joined reliance and looking for change in terms of salary, also he is not comfort to take the calls and generating the leads.Will not sustain,not suitable', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-07 12:26:11', 1, '2021-12-07 12:29:45', 0, NULL, 1),
(7018, '', '0', '7396851848', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112070010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-07 01:11:57', 0, NULL, 0, NULL, 1),
(7019, 'Kalisetty Prem Sai', '5', '8555057579', '', 'kpsai26@gmail.com', '1990-04-27', 31, '2', '2', 'Narayana Swamy', 'Retired', 25000.00, 2, 24000.00, 35000.00, 'Hyderabad', 'Jyothi Nagar, R.C.Puram, Medak', '2112070011', '19', '2', 'upload_files/candidate_tracker/63996069387_PremSai.doc', NULL, '1', '2021-12-10', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '2', 'Will not fit for the profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-07 01:34:05', 1, '2021-12-07 01:46:07', 0, NULL, 1),
(7020, 'monisha.m', '4', '8778456972', '', 'monijamun34@gmail.com', '1999-12-04', 22, '2', '2', 'subramani', 'farmer', 10000.00, 2, 12000.00, 15000.00, 'vellore', 'electronic city', '2112070012', '1', '2', 'upload_files/candidate_tracker/61849588824_CV_2021-09-24-055832.pdf', NULL, '1', '2021-12-07', 0, '', '3', '59', '2021-12-09', 170496.00, '', '', '2021-12-24', '2', 'Selected for ESales Bangalore Reporting to Sathish Kumar in Prop - 208 Deductions', '1', '2', '', '2', '2', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-07 02:56:31', 60, '2021-12-08 05:52:05', 0, NULL, 1),
(7021, 'Anbarasi. T', '25', '6369598288', '9003834473', 'Anbarasi14281428@gmail.com', '1997-05-20', 24, '2', '2', 'Babu', 'Working', 15000.00, 5, 13000.00, 15000.00, 'Kaniyakumari', 'Chennai', '2112070013', '3', '2', 'upload_files/candidate_tracker/5933455870_Anbarasi new resume 2021- (2).pdf', NULL, '1', '2021-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not ready for ESales and for the CRM profile Exp is very high', '8', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-07 03:03:19', 1, '2021-12-07 03:14:21', 0, NULL, 1),
(7022, 'anjali.j', '4', '7639327422', '', 'anjalijamu2000@gmail.com', '2000-02-01', 21, '2', '2', 'jayaseelan', 'unemployed', 15000.00, 2, 10000.00, 12000.00, 'vellore', 'electronic city', '2112070014', '1', '2', 'upload_files/candidate_tracker/48819555116_Anjali CV 1-converted-converted.pdf', NULL, '1', '2021-12-07', 0, '', '3', '59', '2021-12-09', 170496.00, '', '', '2021-12-24', '2', 'Selected For ESales Bangalore Reporting To Sathish Kumar In Prop - 208 Deductions', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', 'Offer Mail Sent,candidate joined on 10-Dec-2021', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-07 03:06:14', 60, '2021-12-10 11:47:07', 0, NULL, 1),
(7023, 'VISHALAKSHI M', '5', '9902864253', '', 'vishalakshivishu129@gmail.com', '1997-01-04', 24, '2', '2', 'moorthy', 'working', 20000.00, 2, 15000.00, 16000.00, 'madikeri', 'batranpura', '2112070015', '1', '2', 'upload_files/candidate_tracker/58293594024_VISHALAKSHI M (CV).docx', NULL, '2', '2021-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok,Long Distance around 20 kms and the candidate is not ready to relocate ,also the salary exp is around min 18K PM. No Relevant Exp in Telecaller Sales Will not sustain in our role', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-07 03:16:28', 50, '2021-12-07 03:26:25', 0, NULL, 1),
(7024, 'R.Sivaramakrishnan', '31', '6383259610', '', 'srksivaram262@gmail.com', '2001-06-03', 20, '2', '2', 'S.A.Ramalingam', 'Business', 100000.00, 5, 0.00, 10000.00, '17c, Natchiyaar amman koil Street, Jayankondam', 'Jayankondam', '2112070016', '1', '1', 'upload_files/candidate_tracker/18230913159_Newresume1.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,No basic skills knowledge,not comfirt with the terms and conditions,need time to confirm on the TxxampC,if comes back let us check\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-07 03:27:56', 1, '2021-12-07 03:34:22', 0, NULL, 1),
(7025, 'Roopa', '4', '7349623512', '', 'badigerroopa14@gmail.com', '1998-05-27', 23, '2', '2', 'Parent', 'No', 5000.00, 5, 17000.00, 17000.00, 'Jigani', 'Jigani apc circle', '2112070017', '1', '2', 'upload_files/candidate_tracker/53319338731_roopa resume.docx', NULL, '3', '2021-12-07', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, seems not much genuine on the exp mentioned in the resume.Sustainability Doubts on this profile', '1', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-07 03:30:10', 50, '2021-12-07 03:42:02', 0, NULL, 1),
(7026, 'JESWANI PRAKASH', '5', '9885437481', '', 'prakash271098@gmail.com', '1998-10-27', 23, '2', '2', 'JESWANI ANITHA', 'HOUSEWIFE', 30000.00, 0, 15000.00, 20000.00, 'Mettuguda', 'Mettuguda', '2112070018', '1', '2', 'upload_files/candidate_tracker/17852790114_APR - 2021 RESUME (J PRAKASH).doc', NULL, '2', '2021-12-08', 10, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-07 04:41:30', 50, '2021-12-08 10:02:30', 0, NULL, 1),
(7027, 'Murugan A', '13', '9655439064', '9361638084', 'Aravind30495@gmail.com', '1995-04-30', 26, '2', '2', 'Anandhan', 'Farmer', 10000.00, 1, 0.00, 8000.00, 'Sholinganallur', 'Sholinganallur', '2112070019', '1', '1', 'upload_files/candidate_tracker/68990314316_Murugan resume 1.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT he has exp in Core Civil Domian,Looking for IT openings.Not Strong with the basic skills.2nd LEvel Interviewed by Latha and the profile has been rejected', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-07 04:43:46', 1, '2021-12-07 04:57:09', 0, NULL, 1),
(7028, '', '0', '9790749922', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112070020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-07 04:50:24', 0, NULL, 0, NULL, 1),
(7029, 'P PRAVEEN REDDY', '5', '8125240983', '8309956928', 'paillapraveenreddy@gmail.com', '1997-10-20', 24, '2', '2', 'No', 'Job', 40000.00, 1, 14500.00, 17000.00, 'Jagathgirigutta/ kukatpally', 'Jagathgirigutta/ kukatpally', '2112080001', '1', '2', 'upload_files/candidate_tracker/11923127770_Final document resume 2021.doc', NULL, '3', '2021-12-09', 15, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-08 10:34:06', 50, '2021-12-09 10:12:57', 0, NULL, 1),
(7030, '', '0', '9945746876', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 10:41:18', 0, NULL, 0, NULL, 1),
(7031, 'Sitharasan', '6', '9841457177', '8522888741', 'sitharasansitharasan6738@gmail.com', '1997-05-04', 24, '2', '2', 'Mohan doss', 'Sales', 25000.00, 2, 15090.00, 22000.00, '4,Murugan kovil street, vadhanur,Pondicherry-01', '15146,kanngi Nagar,Thuraipakkam,chennai-97', '2112080003', '1', '2', 'upload_files/candidate_tracker/1590987556_sith resume new resume.docx', NULL, '1', '2021-12-08', 30, '', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He went lunch after that he doesnxquott come to office', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-08 11:22:26', 50, '2021-12-08 11:47:23', 0, NULL, 1),
(7032, '', '0', '9962581755', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 11:38:39', 0, NULL, 0, NULL, 1),
(7033, 'Vimalkumar V', '4', '7904279223', '9840758013', 'removimalkumar1819@gmail.com', '1999-09-10', 22, '2', '2', 'Vijayakumar', 'Driver', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2112080005', '3', '1', 'upload_files/candidate_tracker/54429015840_RESUME Vimalkumar V.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Telecaller, have Exp in Data Entry, Comfort to work in Non Voice Process, .He is a Dancer Too, Will not sustain with our role for a long', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-08 12:52:52', 1, '2021-12-08 12:57:20', 0, NULL, 1),
(7034, 'S. Pavithran', '4', '6369587200', '9176813084', 'Pavisangee758@gmail.com', '2000-02-21', 21, '2', '2', 'R. Sivasankaran', 'Railway', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2112080006', '3', '1', 'upload_files/candidate_tracker/96949854693_1638949020353_1638948938406_RESUME - PAVITHRAN.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not ready to work under Targets. Not suitable ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-08 12:59:36', 1, '2021-12-08 01:12:03', 0, NULL, 1),
(7035, 'Harini Kunguma Gayathri', '5', '9884673107', '9789500425', 'harinigayathri04@gmail.com', '2000-07-31', 21, '2', '1', 'Naveen Kumar. S', 'mechanical engineering', 50000.00, 1, 0.00, 22000.00, 'Banglore', 'Banglore', '2112080007', '20', '1', 'upload_files/candidate_tracker/35706018921_ResumeHKG.docx', NULL, '2', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For Telecaller-Esales,Sustainability Doubts,She Recently Married,Not Comfort To Travel From Her Location To Madiwalla, Didnt come back with her interest', '5', '2', '0', '2', '2', '0', '2', '2021-12-18', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-08 01:11:51', 1, '2021-12-15 09:14:59', 0, NULL, 1),
(7036, '', '0', '9025121149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 01:22:02', 0, NULL, 0, NULL, 1),
(7037, 'Syed abil nijam', '5', '7448740775', '9600017846', 'syedabilnijam@gmail.com', '1996-03-20', 25, '2', '1', 'Taslim', 'Business', 300000.00, 1, 23000.00, 28000.00, 'Tambaram', 'Tambaram', '2112080009', '1', '2', 'upload_files/candidate_tracker/38960872714_ABIL NIJAM new.docx', NULL, '1', '2021-12-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much suitable for the RM role, no relevant Sales Exp too, have worked in B2B earlier. no clarity on the previous job changes.Sustainability Doubts on this position', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-08 02:10:02', 1, '2021-12-08 02:13:17', 0, NULL, 1),
(7038, '', '0', '9398730168', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 02:59:52', 0, NULL, 0, NULL, 1),
(7039, 'chennu hari krishna', '5', '8317548488', '8247671377', 'harikrishna.5965@gmail.com', '1996-07-15', 25, '1', '2', 'venkata ramulu', 'farmer', 25000.00, 0, 0.00, 25000.00, 'hyderabad', 'hyderabad', '2112080011', '', '1', 'upload_files/candidate_tracker/87167831883_Hari krishna111.docx', NULL, '1', '2021-12-08', 0, 'p1241', '3', '59', '2021-12-13', 299999.00, '', '4', '2022-04-11', '1', 'selected for Veben Team with PF/PT. Commitment has been given to the candidate on the revision of the salary after 6 months', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '2', '1', 'Offer link has been shared', '', '', '', NULL, NULL, NULL, 1, '2021-12-08 03:06:41', 60, '2021-12-10 06:32:41', 0, NULL, 1),
(7040, 'Suriyakumar J', '11', '9894014815', '', 'suriyakumar688@gmail.com', '1994-05-09', 27, '2', '2', 'JAYAGOPAL P', 'CHIEF HEALTH INSPECTOR', 60000.00, 1, 0.00, 20000.00, 'Karur', 'Karur', '2112080012', '1', '1', 'upload_files/candidate_tracker/20349150365_SURIYAKUMAR resume.pdf', NULL, '2', '2021-12-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, 3 yrs 3 companies, seems not much good profile for our recruitment, Sustainability also doubts, handling pressure Doubts, Father is Govt Chief Health Inspector', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-08 03:19:52', 50, '2021-12-09 10:13:35', 0, NULL, 1),
(7041, 'GOKUL', '4', '9171115404', '6369645421', 'Gokulram803@gmail.com', '1996-11-18', 25, '2', '2', 'M.Vijayaraghavan', 'Security in charge', 20000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2112080013', '1', '2', 'upload_files/candidate_tracker/39107542884_1629536394033Resume_Gokul.pdf', NULL, '1', '2021-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Customer Support and looking for IT openings but not relevant to our skill sets.Currently pursuing AWS course.Will not sustain in our Telecaller\n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-08 03:21:58', 50, '2021-12-08 03:56:05', 0, NULL, 1),
(7042, 'Vignesh', '4', '7010943869', '8220725442', 'Vigneshr.v647@gmail.com', '1995-07-24', 26, '2', '2', 'Rajasekar', 'Goldsmith', 25000.00, 2, 0.00, 15000.00, 'Keelkattalai', 'Keelkattalai', '2112080014', '1', '1', 'upload_files/candidate_tracker/65142046139_Vignesh CV fresher.docx', NULL, '1', '2021-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp in Sales,Will not handle our telecaller pressure.Looking for AWs openings', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-08 03:24:55', 50, '2021-12-08 03:56:17', 0, NULL, 1),
(7043, 'SAKTHIVEL R', '11', '7010971327', '8056765202', 'rsakthivel311@gmail.com', '1996-11-03', 25, '2', '2', 'RAJENDRAN L', 'Clerk', 35000.00, 1, 0.00, 10000.00, 'Trichy', 'Trichy', '2112080015', '1', '1', 'upload_files/candidate_tracker/8916221696_sakthi resume.pdf', NULL, '2', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate communication is ok,No basic knowledge in the Recruitment.Worked in the core for almost 2 yrs, have a plan to go with Master degree. Preparing Civil Service Exam too. Will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-08 03:29:38', 1, '2021-12-09 03:50:15', 0, NULL, 1),
(7044, '', '0', '7094976450', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112080016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-08 05:45:56', 0, NULL, 0, NULL, 1),
(7045, 'S.H.SAMURAIFA', '4', '7200178813', '', 'raifa7116@gmail.com', '1997-11-16', 24, '2', '2', 'V.T. Shahul Hameed', 'Business', 12000.00, 1, 0.00, 15000.00, '71/16,aliyar street,kayalpatnam-628204', 'Sheikh abdhullah nagar,virugambakkam, chennai', '2112080017', '17', '1', 'upload_files/candidate_tracker/21272356448_Cv_Raifa..pdf', NULL, '1', '2021-12-09', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this voice process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-08 05:56:42', 1, '2021-12-08 06:01:54', 0, NULL, 1),
(7046, 'Vemulawada Ganesh', '5', '7095272348', '', 'ganeshchary48@gmail.com', '1996-06-29', 25, '2', '2', 'Ramaswamy', 'Corpenter', 20000.00, 1, 2.40, 3.20, 'Karimnagar', 'Karimnagar', '2112090001', '19', '2', 'upload_files/candidate_tracker/8436659374_ganesh-2.pdf', NULL, '1', '2021-12-15', 15, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-09 09:35:55', 64, '2021-12-15 11:25:50', 0, NULL, 1),
(7047, 'Ashwin Kumar', '4', '9962887822', '', '9962887822a@gmail.com', '2000-06-29', 21, '2', '2', 'Arun D', 'Transport', 50000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112090002', '20', '1', 'upload_files/candidate_tracker/23432617685_Ashwin Kumar A.pdf', NULL, '1', '2021-12-13', 0, '', '3', '59', '2021-12-16', 126000.00, '', '5', '1970-01-01', '1', 'Selected for Elite RE- Muthu Team in Patroniss Cash', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2021-12-09 10:03:04', 60, '2021-12-14 06:34:03', 0, NULL, 1),
(7048, 'Arun balji', '5', '8056422864', '9342318296', 'balaji.rarun97@gmail.com', '1997-08-25', 24, '2', '2', 'Rajeswari', 'House wife', 25.00, 1, 25000.00, 30000.00, 'Kodambakam', 'Kodambakkam', '2112090003', '1', '2', 'upload_files/candidate_tracker/97816487272_Arun Balaji - resume1.pdf', NULL, '1', '2021-12-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp,have worked in multiple domain,in 2yrs worked with 4 companies. salary Exp is very high.Will not sustain in our position.Not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-09 10:33:27', 50, '2021-12-09 10:44:34', 0, NULL, 1),
(7049, 'Janaki raman', '4', '7358379305', '7358475162', 'ravanasura29@gmail.com', '1999-01-29', 22, '2', '2', 'Jothi Lakshmi', 'Tailor', 60000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112090004', '3', '1', 'upload_files/candidate_tracker/80714359464_pdf24-JANAKIRAMAN.pdf', NULL, '1', '2021-12-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher ,not a Graduate,Have worked in non voice process only,Not comfort to work in Voice Process.Will not sustain in our role', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-09 11:13:17', 1, '2021-12-09 11:26:36', 0, NULL, 1),
(7050, '', '0', '8124031743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112090005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-09 11:55:12', 0, NULL, 0, NULL, 1),
(7051, 'Durga Devi M', '11', '9962474678', '', 'durgaderryy1908@gmail.com', '1998-08-19', 23, '2', '2', 'Murugesan', 'Business', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112090006', '20', '1', 'upload_files/candidate_tracker/36930438642_DURGA_DEVI_MBA 2.pdf', NULL, '3', '2021-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-09 11:57:21', 1, '2021-12-09 12:03:37', 0, NULL, 1),
(7052, 'Ashwitha Balasubramanian', '11', '7904176709', '8056077920', 'ashwithabalasubramanian002@gmail.com', '1998-01-20', 23, '2', '1', 'K S Aniruddha', 'IT', 50000.00, 1, 10000.00, 20000.00, 'Nanganallur', 'Nanganallur', '2112090007', '1', '2', 'upload_files/candidate_tracker/94422219333_Ashwitha Balasubramanian.pdf', NULL, '1', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, have 1 yr exp as HR Trainee in TVS, Recently Married, Salary Exp is very high Min 17K.No relevant Exp in Recruitment, can be trained, but sustainability doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-09 12:40:15', 1, '2021-12-09 12:46:01', 0, NULL, 1),
(7053, 'PAVITHRA M', '30', '9944355523', '7708855985', 'pavithrasuresh0303@gmail.com', '1997-05-26', 24, '2', '1', 'SURESH P', 'Software Engineer', 80000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112090008', '1', '1', 'upload_files/candidate_tracker/45511372287_Pavithra Resume.pdf', NULL, '1', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, Fresher for Stocks, Much into finance/Accounting. Recently married and sustainability doubts on this profile.', '9', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-09 12:52:35', 1, '2021-12-09 12:59:03', 0, NULL, 1),
(7054, 'Abhishek P', '2', '7401153273', '', 'abhishekpunithan@gmail.com', '1998-08-05', 23, '2', '2', 'Punithan', 'Probation officer', 15000.00, 1, 0.00, 10000.00, '3b, Kannadasan Street, chembarambakkam, Chennai', '3b, Kannadasan Street, Chembarambakkam, Chennai', '2112090009', '1', '1', 'upload_files/candidate_tracker/47832313791_ResumeAbhi.pdf', NULL, '1', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, no strong knowledge in React, Having knowledge only in HTML,CSS. Too long distance around60kms up and down.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-09 01:21:10', 1, '2021-12-09 01:27:29', 0, NULL, 1),
(7055, '', '0', '9176423432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112090010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-09 02:18:59', 0, NULL, 0, NULL, 1),
(7056, 'E.Praveen', '5', '9551626704', '7395902282', 'praveentn22ck7022@gmail.com', '1998-03-13', 23, '2', '2', 'E.Gomathy', 'Central Government', 35000.00, 1, 18000.00, 20000.00, 'Pozchichalur', 'Pozchichalur', '2112090011', '1', '2', 'upload_files/candidate_tracker/67657325736_Praveen Resume.pdf', NULL, '1', '2021-12-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Relevant Exp ,Earlier he was a Field Service Engineer .Candidate not open for Field Sales, looking for office based Telecaller work and his last drawn monthly 18K .Will not sustain in our roles.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-09 02:48:39', 1, '2021-12-09 03:04:11', 0, NULL, 1),
(7057, 'Bharath Kumar', '5', '8143090737', '8143725075', 'bharathkumarsb57@gmail.com', '1997-09-12', 24, '2', '2', 'anitha', 'private', 10000.00, 0, 25000.00, 30000.00, 'hyderabad', 'Hyderabad', '2112090012', '1', '2', 'upload_files/candidate_tracker/98193564720_Bharath Kumar SB57.pdf', NULL, '2', '2021-12-10', 0, '', '3', '59', '2022-01-03', 360000.00, '', '4', '2022-02-09', '1', 'Selected for Veben, Discussed with Sriram Sir and Finalized the pay for 3.6LPA', '5', '1', '1', '3', '4', '', '2', '2021-12-18', '2', '1', 'Offer Document Link shared', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-09 02:50:24', 60, '2021-12-28 04:43:32', 0, NULL, 1),
(7058, 'Ajith P', '13', '9597963144', '7845661338', 'ajithpunniaseelan0604@gmail.com', '1998-10-22', 23, '2', '2', 'Punniyaseelan A', 'Shopkeeper', 80000.00, 1, 0.00, 12000.00, 'SIPCOT, RANIPET', 'SIPCOT, RANIPET', '2112090013', '1', '1', 'upload_files/candidate_tracker/66088556711_Ajith_Resume.pdf', NULL, '1', '2021-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-09 03:06:42', 1, '2021-12-09 03:11:21', 0, NULL, 1),
(7059, 'Mahalakshmi', '4', '9884376548', '9841800422', 'mahalakshmim728@gmail.com', '2000-08-01', 21, '2', '2', 'Ganeshan', 'Oil Sales man', 25000.00, 1, 0.00, 14000.00, 'Old washermanpet', 'Old washermanpet', '2112090014', '17', '1', 'upload_files/candidate_tracker/12677100325_MAHALAKSHMI.. RESUME.pdf', NULL, '1', '2021-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-09 05:33:05', 1, '2021-12-09 06:36:25', 0, NULL, 1),
(7060, 'Mohammad Sahal Afroz', '5', '8466887721', '', 'sahal.mohammad351@gmail.com', '1996-07-15', 25, '2', '2', 'Mohammad Jarrar', 'Lorry Driver', 20000.00, 1, 0.00, 22000.00, 'Sathupally', 'Hyderabad', '2112090015', '17', '1', 'upload_files/candidate_tracker/99019455121__Sahall_Resume-converted.pdf', NULL, '2', '2021-12-10', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Raj BDM took the Interview, sustainability issue and not having relavant experienvce so rejected', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-09 05:46:22', 50, '2021-12-10 10:13:32', 0, NULL, 1),
(7061, '', '0', '9042220610', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112090016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-09 06:34:56', 0, NULL, 0, NULL, 1),
(7062, 'shaik mahammd vali', '4', '9959203704', '', 'shaikmahammadvali340@gmail.com', '1998-06-14', 23, '2', '2', 'shaik mohammad rafi', 'driver', 15000.00, 1, 13000.00, 15000.00, 'ganga nagar anantapur', 'near jntuh hyderabad', '2112090017', '17', '2', 'upload_files/candidate_tracker/83744572919_my resume-pdf.pdf', NULL, '2', '2021-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-09 10:55:27', 1, '2021-12-12 02:24:27', 0, NULL, 1),
(7063, 'r Harikrishna', '5', '9032294541', '', 'rharikrishna3746@gmail.com', '1996-05-20', 25, '2', '2', 'r Adilakshmi', 'housewife', 250000.00, 3, 0.00, 400000.00, 'Banglore', 'Banglore', '2112100001', '19', '2', 'upload_files/candidate_tracker/44689405190_updated resume harikrishna.docx', NULL, '3', '2021-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-10 10:23:44', 1, '2021-12-10 10:27:42', 0, NULL, 1),
(7064, 'P.prathyusha', '4', '9985688622', '9502765296', 'pprathyusha812@gmail.com', '1998-05-07', 23, '2', '2', 'P.anil kumar reddy', '4lakh', 27000.00, 1, 0.00, 18000.00, 'Tirupati', 'Tirupati', '2112100002', '1', '1', 'upload_files/candidate_tracker/32755115268_1638020400435_1638020122058_1635165823511_pprathyusha resume.pdf', NULL, '3', '2021-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, much focus on the salary only. Pressure handling doubt, will not sustain', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 10:24:01', 50, '2021-12-10 11:02:31', 0, NULL, 1),
(7065, 'priyanka yadav', '20', '8050096787', '9606416454', 'priyankayadav9980@gmail.com', '2006-12-10', 0, '2', '2', 'hanumanthaiah', 'Salaried', 20000.00, 0, 15000.00, 15000.00, 'bangalore', 'adugodi', '2112100003', '1', '2', 'upload_files/candidate_tracker/22026421579_priyanka- 3(1).pdf', NULL, '1', '2021-12-10', 0, '', '3', '59', '2021-12-13', 194496.00, '', '6', '2022-10-05', '2', 'Selected for Esales - Madiwalla with PT only in CAFS Infotech Prop', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent - CAFS Infotech Prop Staff Role', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 10:41:30', 60, '2021-12-11 12:54:20', 0, NULL, 1),
(7066, 'sudha.r', '20', '9113660641', '9611870351', 'sudhatr2228@gmail.com', '1996-08-26', 25, '2', '2', 'lakshmi', 'house wife', 14000.00, 1, 13800.00, 14800.00, 'tumkur', 'lakshbandra', '2112100004', '1', '2', 'upload_files/candidate_tracker/13391600968_Resume Saviii new(1).pdf', NULL, '1', '2021-12-07', 0, '', '3', '59', '2021-12-13', 227300.00, '', '3', '2022-03-03', '2', 'Selected for Bangalore ESales - PF/ESI/PT Deductions', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 10:46:53', 60, '2021-12-10 06:37:03', 0, NULL, 1),
(7067, '', '0', '6303444058', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 11:09:54', 0, NULL, 0, NULL, 1),
(7068, 'Naveen Kumar G', '23', '7708036794', '9944953455', 'naveen.iet.it@gmail.com', '2000-06-14', 21, '2', '2', 'Gurunathan K', 'Textile business', 25000.00, 2, 0.00, 20000.00, 'Tiruppur', 'Tiruppur', '2112100006', '1', '1', 'upload_files/candidate_tracker/94731629531_Naveen kumar resume.pdf', NULL, '1', '2021-12-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '3', '0', '2', '2021-12-13', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 11:12:28', 1, '2021-12-10 11:22:16', 0, NULL, 1),
(7069, '', '0', '7032420068', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 11:13:54', 0, NULL, 0, NULL, 1),
(7070, 'Mahalakshmi R', '11', '9791057767', '9790367034', 'ravisuntharmahalakshmi@gmail.com', '1995-12-20', 25, '2', '1', 'Gautham G', 'Senior business analyst in FIS', 146000.00, 1, 0.00, 200000.00, 'MJ IV second floor thirumangalam high road', 'MJ IV second floor Tirumangalam high road', '2112100008', '1', '1', 'upload_files/candidate_tracker/77110779632_Resume dt 27.7.2021.pdf', NULL, '1', '2021-12-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 11:17:23', 1, '2021-12-10 11:21:28', 0, NULL, 1),
(7071, '', '0', '9502765296', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 11:29:43', 0, NULL, 0, NULL, 1),
(7072, 'nishchitha h m', '20', '9611583587', '8277499854', 'nischiharshi9486@gmail.com', '2000-01-05', 21, '2', '2', 'bhagya', 'Salaried', 15000.00, 2, 0.00, 15000.00, 'sakaleshpur', 'rajarajeshwarinagar', '2112100010', '1', '1', 'upload_files/candidate_tracker/55807384046_Nishcitha-converted.pdf', NULL, '1', '2021-12-10', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not selected', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 11:30:51', 50, '2021-12-10 11:48:36', 0, NULL, 1),
(7073, 'Rahul K', '5', '9952052846', '9940504194', 'jeremiahrahul@gmail.com', '1996-08-02', 25, '2', '2', 'A. Kalimuthu', 'Driver', 25000.00, 1, 15000.00, 20000.00, 'Kolathur', 'Kolathur', '2112100011', '1', '2', 'upload_files/candidate_tracker/21319225178_Jeremiah Rahul 07.docx', NULL, '1', '2021-12-10', 25, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', '5050 profile, no relevant Exp,Every 1 year changed the job, kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-10 11:40:37', 1, '2021-12-10 11:45:16', 0, NULL, 1),
(7074, 'kavya k r', '20', '6360430859', '9980405207', 'kavyakrkanyakr@gmail.com', '2001-05-28', 20, '2', '2', 'lalitha', 'Salaried', 15000.00, 2, 0.00, 15000.00, 'hassan', 'rajarajeshwarinagar', '2112100012', '1', '1', 'upload_files/candidate_tracker/41153712718_kavya K R - Copy-converted (1).pdf', NULL, '1', '2021-12-10', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not selected', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 11:46:34', 50, '2021-12-10 12:16:00', 0, NULL, 1),
(7075, 'Likhitha. V', '20', '9880601368', '', 'Likhitha3155@gmail.com', '1997-06-30', 24, '2', '2', 'Father- Vijaya kumar', 'Student', 30000.00, 0, 0.00, 15000.00, '#24, 5th cross Kamath layout Kodigahalli bangalore', '24, 5th Cross Kamath Layout Kodigahalli Bangalore', '2112100013', '1', '1', 'upload_files/candidate_tracker/13067282091_CV_2021-11-29-024528.pdf', NULL, '1', '2021-12-10', 0, '', '3', '59', '2021-12-20', 170496.00, '', NULL, '2023-06-12', '2', 'Selected for ESales - Bangalore Location with PT only', '5', '1', '', '2', '2', '', '2', '2021-12-13', '1', '1', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 11:48:24', 60, '2021-12-17 03:37:59', 0, NULL, 1),
(7076, 'Riyazoor Rahman R', '4', '8667238515', '', 'riyazoorrahman1750@gmail.com', '2000-11-08', 21, '1', '2', 'Rabik M E', 'Accountant', 15000.00, 2, 0.00, 20000.00, '139/225, Mettu Street, Gandhi Salai, Chengalpattu.', '139/225, Mettu street, Gandhi Salai, Chengalpattu.', '2112100014', '', '1', 'upload_files/candidate_tracker/94063689421_cvriyaz66.pdf', NULL, '1', '2021-12-10', 0, 'P1282', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic knowledge in the required skills,much comfort to work in the non voice process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-10 12:37:59', 50, '2021-12-10 12:54:38', 0, NULL, 1),
(7077, 'NAJUMUDEEN', '5', '8939541553', '9360962102', 'najumul.M@gmail.com', '1991-08-16', 30, '2', '1', 'Jannathy', 'House wife', 12000.00, 2, 21000.00, 25000.00, 'No. 16 school 3rd street, Panaiyur Chennai 119', 'Same as permanent Address', '2112100015', '3', '2', 'upload_files/candidate_tracker/14532072969_1639122191323_resume-najumudeen.docx.pdf', NULL, '1', '2021-12-10', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested for Insurance Sales', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-10 01:06:45', 1, '2021-12-10 01:15:40', 0, NULL, 1),
(7078, '', '0', '7358497383', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 01:16:02', 0, NULL, 0, NULL, 1),
(7079, 'c ramesh', '5', '7893053266', '', 'chintakayalaramesh4@gmail.com', '1995-10-06', 26, '2', '2', 'gangadri', 'agriculture', 300000.00, 1, 360000.00, 400000.00, 'andhra pradesh', 'marathalli bangalore', '2112100017', '19', '2', 'upload_files/candidate_tracker/61963307343_C RAMESH RESUME.docx', NULL, '2', '2021-12-15', 10, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Rejected will not fit', '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-10 03:03:33', 1, '2021-12-13 02:33:41', 0, NULL, 1),
(7080, 'Karthika D', '11', '8667481357', '', 'karthikad999@gmail.com', '1999-10-09', 22, '2', '2', 'Devan M', 'Farmer', 5000.00, 2, 0.00, 15000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2112100018', '1', '1', 'upload_files/candidate_tracker/70362230675_KARTHIKA DEVAN-new-hr_removed.pdf', NULL, '2', '2021-12-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Now the number is not reachable', '6', '1', '0', '1', '1', '0', '2', '2021-12-20', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 03:16:30', 1, '2021-12-10 03:21:56', 0, NULL, 1),
(7081, 'Chowtipalle hareesh', '5', '8297262585', '8328192369', 'chowtipallihareesh878@gmail.com', '1995-06-14', 26, '2', '2', 'Narayana', 'Farming', 6000.00, 1, 0.00, 25000.00, 'Kadapa, aP', 'Banglore', '2112100019', '1', '1', 'upload_files/candidate_tracker/64781951357_HAREESH.C RESUME_hareesh.pdf', NULL, '2', '2021-12-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-10 03:19:48', 50, '2021-12-11 08:16:45', 0, NULL, 1),
(7082, 'Theja swaroop', '6', '9014025854', '9441846164', 'swaroop1.pgo@Gmailcom', '1992-09-13', 29, '2', '1', 'Sireesha', 'Sales', 40000.00, 1, 20000.00, 30000.00, 'Hyderabad', 'Hyderabad', '2112100020', '17', '2', 'upload_files/candidate_tracker/41689107305_swaroop.docx', NULL, '1', '2021-12-13', 15, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Rejected will not fit for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-10 04:42:37', 1, '2021-12-10 05:00:15', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7083, 'Gokulnath', '5', '9087075802', '', 'gokulnth03@gmail.com', '1989-04-03', 32, '2', '2', 'N.Ravichandran', 'Daily wages', 10000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2112100021', '1', '1', 'upload_files/candidate_tracker/85329105604_GOKUL RESUME 2.1docx.docx', NULL, '1', '2021-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average ,Frequent Job Changes,Exp as a service Engineer,Not suitable for Telecaller/RE/RM', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-10 05:45:32', 1, '2021-12-10 05:51:01', 0, NULL, 1),
(7084, 'Degavath Sardhar', '5', '9000726932', '9866438763', 'degavadh.sardhar@gmail.com', '1997-12-15', 23, '2', '1', 'Veena', 'Employee', 30.00, 3, 15000.00, 25000.00, 'Medak', 'Medak', '2112100022', '1', '2', 'upload_files/candidate_tracker/42419135892_sardhar new resume.pdf', NULL, '2', '2021-12-11', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 06:14:03', 1, '2021-12-10 06:18:19', 0, NULL, 1),
(7085, 'swathi m', '11', '9384825510', '', 'swatheemurali@gmail.com', '2000-12-21', 20, '2', '2', 'p r murali babu', 'business', 100000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2112100023', '1', '1', 'upload_files/candidate_tracker/69569709859_Resume.pdf', NULL, '1', '2021-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate Communication is Good, Fresher for Recruitment, Currently pursuing MBA and she will be having saturday xxamp sunday class. Salary expectation seems high .Not much comfort with the submission of documents. Doubts to stay not more than a year. If she comes back let us see', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-10 08:15:18', 1, '2021-12-11 01:55:04', 0, NULL, 1),
(7086, '', '0', '8328406603', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112100024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-10 08:22:03', 0, NULL, 0, NULL, 1),
(7087, 'Vysakh Rajan', '5', '9809277286', '', 'vaisakh4694@gmail.com', '1995-10-13', 26, '2', '2', 'J Rajan', 'Homoeopathy Doctor', 20000.00, 1, 0.00, 20000.00, 'Thrissur', 'BTM Layout', '2112110001', '1', '1', 'upload_files/candidate_tracker/72411063838_Vysakh Rajan - CV.pdf', NULL, '2', '2021-12-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, Fresher profile, Salary Exp is very high,Already he holds offer multiple offers and awaiting for the final discussion with byjuxquots. Will not sustain ', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-11 10:12:05', 50, '2021-12-11 10:21:54', 0, NULL, 1),
(7088, 'Rohith', '5', '7092674300', '', 'rohithavaliondcruze@gmail.com', '1998-05-11', 23, '2', '2', 'Velayutham K', 'Electriction', 20000.00, 1, 230000.00, 250000.00, 'CHENNAI', 'CHENNAI', '2112110002', '1', '2', 'upload_files/candidate_tracker/86423240410_(CV ).pdf', NULL, '1', '2021-12-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much comfortable for Field Sales, looking for Inventory and Stocks maintenance Roles much', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-11 10:43:26', 1, '2021-12-11 10:46:28', 0, NULL, 1),
(7089, 'Jaya Deepika. E', '5', '9789001206', '9710603439', 'deepangelin@gmail.com', '1998-11-27', 23, '2', '2', 'Elumalai', 'Security', 30000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2112110003', '3', '2', 'upload_files/candidate_tracker/9547718891_JayaDeepika.pdf', NULL, '1', '2021-12-11', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-11 11:06:46', 60, '2021-12-11 01:25:39', 0, NULL, 1),
(7090, 'PRATIK Agarwal', '6', '9945190431', '', 'pratikagarwal041994@gmail.com', '1994-04-24', 27, '2', '2', 'Mahendra Agarwal', 'Business', 50000.00, 2, 20000.00, 30000.00, 'Bangalore', 'Bangalore', '2112110004', '1', '2', 'upload_files/candidate_tracker/20054328515_pratik resume (5).pdf', NULL, '2', '2021-12-11', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'did not come for interview', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-11 11:15:57', 50, '2021-12-11 11:59:43', 0, NULL, 1),
(7091, 'Sanjina.Y', '11', '9841131990', '6384998154', 'olivyasanju98@gmail.com', '1998-04-18', 23, '2', '2', 'R.yuvaraj', 'Business', 20000.00, 3, 0.00, 15000.00, 'Thambaram (padappai)', 'Thambaram (padappai)', '2112110005', '1', '1', 'upload_files/candidate_tracker/62174226421_sanjina Resume.docx', NULL, '1', '2021-12-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-11 12:04:00', 1, '2021-12-11 05:31:37', 0, NULL, 1),
(7092, 'B.Arunmozhi Varamban', '11', '9600809633', '9655723477', 'arunkrishram541@gmail.com', '1999-01-15', 22, '2', '2', 'Balakrishnan.M', 'Agriculture', 16000.00, 1, 0.00, 16000.00, 'Mayiladuthurai', 'chennai', '2112110006', '1', '1', 'upload_files/candidate_tracker/33260157743_Arun final resume.docx.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped not responding to the calls properly\n', '6', '2', '', '1', '3', '', '2', '2021-12-21', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-11 12:37:33', 64, '2021-12-20 02:51:06', 0, NULL, 1),
(7093, 'M Venitha', '11', '8838334605', '9566104666', 'venithamohan96@gmail.com', '1996-03-25', 25, '2', '2', 'Mohan C', 'Bus driver', 40000.00, 1, 0.00, 15000.00, 'Valasaravakkam', 'Valasaravakkam', '2112110007', '1', '1', 'upload_files/candidate_tracker/5346704026_VENITHA CV2.pdf', NULL, '1', '2021-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, fresher for recruitment, Salary Exp is high, Need to confirm with her family on SA, if she comes back let us see', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-11 12:56:04', 1, '2021-12-11 01:01:28', 0, NULL, 1),
(7094, '', '0', '9600808633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-11 01:09:55', 0, NULL, 0, NULL, 1),
(7095, 'Ezhilarasi', '11', '7358266447', '', 'ezhilranji019278@gmail.com', '1995-01-23', 26, '2', '1', 'Shivaram', 'Technical support', 15000.00, 1, 0.00, 2.80, 'Guduvanchery', 'TAMBARAM', '2112120001', '1', '1', 'upload_files/candidate_tracker/41419733136_Ezhilarasi (MBA CV) (1).pdf', NULL, '3', '2021-12-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-12 07:15:02', 1, '2021-12-12 07:20:32', 0, NULL, 1),
(7096, '', '0', '9043050585', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112130001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-13 09:32:12', 0, NULL, 0, NULL, 1),
(7097, 'Ruby Angel.p', '4', '9025955295', '', 'arulmurugan996@hotmail.com', '1999-11-21', 22, '1', '2', 'Paul savari Nathan R', 'Security', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Vysarpadi', '2112130002', '', '1', 'upload_files/candidate_tracker/12203654628_ Resume 1.pdf', NULL, '1', '2021-12-13', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is interested towards the non voice process only', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-13 11:22:47', 1, '2021-12-13 12:20:35', 0, NULL, 1),
(7098, '', '0', '7259130431', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112130003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-13 11:41:05', 0, NULL, 0, NULL, 1),
(7099, '', '0', '9676020822', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112130004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-13 11:46:22', 0, NULL, 0, NULL, 1),
(7100, '', '0', '9094257631', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112130005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-13 11:56:53', 0, NULL, 0, NULL, 1),
(7101, 'rakesh kumar gs', '5', '9566002508', '', 'garakeshkumar058@gmail.com', '1999-12-04', 22, '2', '2', 'selvakumar/subashini', 'ba economics', 12000.00, 2, 0.00, 18000.00, 'chennai', 'chennai', '2112130006', '20', '1', 'upload_files/candidate_tracker/3062568022_RAKESH RESUME.docx.pdf', NULL, '1', '2021-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-13 01:27:41', 1, '2021-12-13 01:41:11', 0, NULL, 1),
(7102, 'madhavan', '6', '9791220842', '', 'madhavanperiyasamy@gmail.com', '2006-12-13', 15, '2', '2', 'vasantha', 'not working', 12000.00, 2, 0.00, 15000.00, 'trichy', 'annanagar', '2112130007', '1', '1', 'upload_files/candidate_tracker/29565375359_MADHAVAN_CV (1).pdf', NULL, '1', '2021-12-13', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-13 04:21:23', 60, '2021-12-14 03:31:25', 0, NULL, 1),
(7103, 'Gudibandla Shyam Kumar', '5', '8341279973', '9490795319', 'sgudibandla9999@gmail.com', '1993-11-09', 28, '2', '2', 'Gudibandla Devaraju', 'Former', 40000.00, 4, 19000.00, 22000.00, '3-47, thilaknagar, yellandu, Bhadradri kothagdem', 'Sarasvathinagar, Dilsukhnagar, Hyderabad', '2112130008', '17', '2', 'upload_files/candidate_tracker/82345350356_1597665085728_shyam-resume-2016(1)-1_28-Jul-17_09.11.51.pdf', NULL, '1', '2021-12-15', 5, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for our profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-13 05:05:03', 64, '2021-12-15 12:18:46', 0, NULL, 1),
(7104, 'Thanisha T', '4', '8072961234', '6381038841', 'Thanunisha7486@gmail.com', '2000-04-20', 21, '2', '2', 'Thanabal', 'Nil', 10000.00, 2, 0.00, 13000.00, 'Ariyalur', 'Velachery', '2112130009', '20', '1', 'upload_files/candidate_tracker/74949575718_Thanisha -T Bsc.pdf', NULL, '1', '2021-12-23', 0, '', '3', '59', '2021-12-27', 126000.00, '', '5', '1970-01-01', '2', 'Selected for CRm Role - Banu Team in consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-13 06:35:03', 60, '2021-12-24 05:39:45', 0, NULL, 1),
(7105, 'sakthi vel V.M', '5', '9551553860', '6385406647', 'sakthidharshini73@gmail.com', '2001-06-03', 20, '2', '2', 'Malathi v', 'Home maker', 16000.00, 1, 14000.00, 20000.00, 'chennai', 'chennai', '2112130010', '20', '2', 'upload_files/candidate_tracker/25704619358_SVM CV.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Retail Sales only.Will not sustain', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-13 11:22:50', 1, '2021-12-14 10:51:36', 0, NULL, 1),
(7106, '', '0', '8124976394', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-14 10:53:08', 0, NULL, 0, NULL, 1),
(7107, 'S.rohit manikandan', '5', '9342663100', '', 'smartrohit0707@gmail.com', '1995-07-07', 26, '1', '2', 'Saravanan.v', 'Police', 40000.00, 1, 18000.00, 20000.00, 'Tondiarpet', 'Tondiarpet', '2112140002', '', '2', 'upload_files/candidate_tracker/85340011594_ROHITH MANI S FINAL.pdf', NULL, '1', '2021-12-14', 0, 'P1269', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'rejected', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-14 11:08:13', 1, '2021-12-14 11:13:02', 0, NULL, 1),
(7108, 'deepak l', '6', '7358333745', '', 'deepakd236@gmail.com', '1998-03-04', 23, '2', '2', 'logesan', 'business', 20000.00, 1, 0.00, 10000.00, 'chennai', 'perambur', '2112140003', '2', '1', 'upload_files/candidate_tracker/46220000467_Deepak.L.docx', NULL, '1', '2021-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Just 3 months Exp in Telecaller and much prefer to work in Non Voice process,Will not sustain in our roles', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-14 11:09:36', 1, '2021-12-14 11:14:12', 0, NULL, 1),
(7109, 'Mumtaz Jabeen.A', '11', '9514024290', '9176330187', 'jabeen0523@gmail.com', '2000-05-23', 21, '2', '2', 'Abdul Azeez .A.M', 'Pharmacist', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2112140004', '1', '1', 'upload_files/candidate_tracker/81726580591_Mumtaz Jabeen _ Resume 2021.docx', NULL, '1', '2021-12-15', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-14 12:10:42', 64, '2021-12-15 10:52:15', 0, NULL, 1),
(7110, 'Pavithran.A', '5', '7358204211', '', 'Pavithran.anbu@gmail.com', '1999-04-08', 22, '2', '2', 'Parent', 'Customer relationship manager', 30000.00, 3, 0.00, 17000.00, 'Chennai', 'Chennai', '2112140005', '1', '2', 'upload_files/candidate_tracker/10273276459_Document from Saranya Anbu (1)-converted.docx', NULL, '1', '2021-12-15', 0, '', '3', '59', '2021-12-17', 213000.00, '', '5', '1970-01-01', '1', 'Selected for RE - Syed Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer mail link sent to upload the documents', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-14 02:23:36', 60, '2021-12-16 05:53:45', 0, NULL, 1),
(7111, 'Hari Shankar k', '6', '9445679016', '8072149471', 'Harishankargee571@gmail.com', '2000-01-23', 21, '2', '2', 'Kesvan', 'Railway', 35000.00, 1, 10000.00, 15000.00, 'Kolathur chennai', 'Kolathur chennai', '2112140006', '1', '2', 'upload_files/candidate_tracker/27267626954_HARI SHANKAR (RESUME)-pdf.pdf', NULL, '1', '2021-12-14', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'i dont remember on this .. old candidate', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-14 02:30:45', 50, '2022-01-05 05:19:28', 0, NULL, 1),
(7112, '', '0', '9042080736', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-14 04:19:19', 0, NULL, 0, NULL, 1),
(7113, '', '0', '7639161967', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-14 04:20:29', 0, NULL, 0, NULL, 1),
(7114, 'Yeddu Raju', '5', '9652080607', '', 'Yedduraju07@gmail.com', '1995-05-18', 26, '2', '2', 'Babji', 'Sales', 400000.00, 1, 250000.00, 350000.00, 'Visakhapatnam', 'Hyderabad', '2112140009', '17', '2', 'upload_files/candidate_tracker/92387850743_Raju Resume..pdf', NULL, '2', '2021-12-15', 15, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Expectation is high and not having proper exp in sales and sustainability issue is there, and not having laptop as well.', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-14 05:01:44', 64, '2021-12-15 12:19:11', 0, NULL, 1),
(7115, '', '0', '7200909979', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112140010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-14 05:17:12', 0, NULL, 0, NULL, 1),
(7116, 'Dharamjith MP', '5', '9995814887', '', 'dharamjith@rediffmail.com', '1995-12-20', 25, '2', '2', 'Gangadharan', 'Engineer', 20000.00, 1, 0.00, 28000.00, 'Kannur', 'Kannur', '2112140011', '17', '1', 'upload_files/candidate_tracker/93611307512_CVDJ (1).pdf', NULL, '2', '2021-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-14 06:49:58', 1, '2021-12-14 06:53:18', 0, NULL, 1),
(7117, 'Manoj kumar', '6', '7358450561', '9283210257', 'riomanoj20@gmail.com', '2000-11-20', 21, '2', '1', 'Jayavel', 'Auto Driver', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112150001', '22', '1', 'upload_files/candidate_tracker/75356009455_karthik resumeNew.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Not Comfortable With The Positions .Will Not Sustain In Our Roles.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 10:09:04', 60, '2021-12-15 07:41:26', 0, NULL, 1),
(7118, 'John', '4', '7338762428', '9962810307', 'aravintha733@gmail.com', '1999-11-14', 22, '1', '2', 'Rose', 'Housewife', 20000.00, 1, 0.00, 15000.00, 'Shake mister street /6?0/3', 'Shake Mister Street /6?0/3', '2112150002', '', '2', 'upload_files/candidate_tracker/53060795886_Adobe Scan Dec 15, 2021.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,No basic knowledge relates to the telecaller skills, Will not sustain in our positions.Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-15 10:31:41', 1, '2021-12-15 10:41:35', 0, NULL, 1),
(7119, 'Bharath kumar.D', '4', '8148826945', '', 'Bharathkumar15042001@gmail.com', '2006-12-15', 15, '2', '2', 'Deenadhayalan.V', 'Electrician', 100000.00, 0, 0.00, 15000.00, 'Guduvanchery', 'Guduvanchery', '2112150003', '22', '1', 'upload_files/candidate_tracker/88315412768_Bharat_Kumar_Resume.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is comfort to work in nonvoice process only, Too long Distance. Not suitable for our roles, will not sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 10:33:07', 64, '2021-12-15 10:53:17', 0, NULL, 1),
(7120, 'Ranjitha.M', '20', '7406574479', '', 'Ranjithammanju77@gmail.com', '2001-10-22', 20, '2', '2', 'Manju Bhagya', 'Tailor', 20000.00, 1, 10000.00, 12.00, 'No 244,24th main road 3rd B cross agara', 'Agara bangalore', '2112150004', '1', '2', 'upload_files/candidate_tracker/81457076848_21832.pdf', NULL, '1', '2021-12-15', 0, '', '3', '59', '2021-12-20', 170496.00, '', '4', '2022-11-05', '2', 'Selected for ESales Rm - Bangalore - PT deduction only', '5', '2', '', '2', '2', '', '2', '2021-12-17', '2', '1', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-15 11:26:26', 60, '2021-12-17 03:42:00', 0, NULL, 1),
(7121, '', '0', '9500020170', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 11:48:20', 0, NULL, 0, NULL, 1),
(7122, 'Kouthavarapu Bala Rama Krishna', '5', '7674077482', '', 'balaramakrishnak@gmail.com', '1997-04-09', 24, '2', '2', 'K.Venkateswara Rao', 'Business', 25000.00, 1, 0.00, 25000.00, 'Avanigadda', 'Hyderabad', '2112150006', '22', '1', 'upload_files/candidate_tracker/53697022543_K.Bala Rama Krishna.pdf', NULL, '3', '2021-12-16', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for the profile', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 12:00:42', 64, '2021-12-16 11:16:34', 0, NULL, 1),
(7123, '', '0', '9597378697', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 12:02:25', 0, NULL, 0, NULL, 1),
(7124, 'Yogesh RA', '11', '9597886161', '', 'rayogeshcbm@gmail.com', '1998-04-08', 23, '2', '2', 'Raja S', 'Coconut merchant', 40000.00, 1, 0.00, 18000.00, '9/3 kallar school street uthamapuram cumbum theni', '9/3 kallar school street uthamapuram cumbum theni', '2112150008', '1', '1', 'upload_files/candidate_tracker/5084012703_Cv.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,Not much comfort with TxxampC,Document submission need to check with family,if he comes back let us decide', '6', '2', '', '1', '3', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-15 12:02:43', 64, '2021-12-15 12:13:34', 0, NULL, 1),
(7125, 'Harikrishnan.M', '5', '9597478697', '7339640019', 'harigovedu@gmail.com', '1998-10-29', 0, '2', '2', 'Munusamy.K', 'Tillar', 6000.00, 0, 0.00, 19000.00, '4/156-1,palacode(t.k), Dharmapuri', 'Tansi nagar, Velachery', '2112150009', '22', '1', 'upload_files/candidate_tracker/14259786290_Resume.pdf', NULL, '1', '2021-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not clear in his job preference, looking for Sales, IT openings. Pressure handling doubt on this profile.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 12:09:23', 64, '2021-12-15 12:23:27', 0, NULL, 1),
(7126, 'Greeshma Mohan', '25', '7594008536', '', 'greesh984@gmail.com', '1998-08-27', 23, '2', '2', 'G.Mohanan', 'Carpenter', 10000.00, 0, 0.00, 20000.00, 'Kollam , Kerala', 'Kollam, Kerala', '2112150010', '22', '1', 'upload_files/candidate_tracker/42730140796_Your paragraph text.pdf', NULL, '2', '2021-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is a fresher profile and not comfortable for the Chennai location, looking for opportunities in and around Kerala. Prefer to work only in the IT openings only', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 12:22:58', 64, '2021-12-15 01:05:45', 0, NULL, 1),
(7127, 'Dharani.r', '11', '9840889804', '9025213590', 'dharaniravi75@gmail.com', '2000-09-03', 21, '2', '2', 'Ravichandran', 'Private company', 20000.00, 2, 0.00, 12000.00, 'Kk Nagar, Chennai', 'Kk Nagar', '2112150011', '1', '1', 'upload_files/candidate_tracker/1596430548_DHARANI R.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'communication average, not comfort with the Terms and the salary also, will not sustain in our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 12:38:09', 1, '2021-12-15 02:40:59', 0, NULL, 1),
(7128, 'Shaikh Fahmeeda', '20', '9740638785', '', 'shaikhfahmeedashaikh94@gmail.com', '1995-06-01', 26, '2', '1', 'Khadar Basha', 'Engineer', 20000.00, 2, 0.00, 20000.00, 'Chandapura', 'Chandapura', '2112150012', '1', '2', 'upload_files/candidate_tracker/62739153337_F B CV.pdf', NULL, '1', '2021-12-15', 0, '', '3', '59', '2021-12-20', 182496.00, '', '5', '1970-01-01', '2', 'Selected for ESales RM - Bangalore Location', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-15 12:39:37', 60, '2021-12-15 07:18:18', 0, NULL, 1),
(7129, 'Rakshana Rajan', '5', '8778539076', '', 'raksharajan154@gmail.com', '1997-09-15', 24, '2', '2', 'Rajan v', 'Cable operator', 700000.00, 1, 145000.00, 245000.00, 'Chennai', 'Chennai', '2112150013', '22', '2', 'upload_files/candidate_tracker/5140169515_aug resume rekshana.pdf', NULL, '2', '2021-12-16', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Working With HCL In Non Voice, Looking For Both Voice/Nonvoice, But The Salary Exp Is High.Candidate is in Dilemma.If she comes back let us try', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 01:06:44', 64, '2021-12-16 10:24:33', 0, NULL, 1),
(7130, 's.abishek', '11', '9500624692', '', 'sabishek92@gmail.com', '1996-01-05', 25, '2', '2', 'sundaram', 'senior assistant', 30000.00, 1, 0.00, 12000.00, 'hosur', 'hosur', '2112150014', '1', '1', 'upload_files/candidate_tracker/29484901955_CV NEW-converted.pdf', NULL, '2', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Not much comfort on the Document Submission, Seems to be slow and pressure handling doubt', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 01:15:59', 1, '2021-12-15 01:28:16', 0, NULL, 1),
(7131, 'Musthafa', '2', '8012811821', '', 'musthafazahid86@gmail.com', '1996-07-18', 25, '2', '2', 'Fazil ahamed', 'Welder', 15000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2112150015', '1', '1', 'upload_files/candidate_tracker/7144205035_musthafa-1 bang.docx (1).pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for React, have Exp in graphic Designing not in depth. Looking for opportunities in IT, But no basic skill knowledge. If he come back let us decide ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 01:25:03', 1, '2021-12-15 01:36:01', 0, NULL, 1),
(7132, '', '0', '7012196968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 02:02:25', 0, NULL, 0, NULL, 1),
(7133, '', '0', '9342254617', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 02:02:55', 0, NULL, 0, NULL, 1),
(7134, 'K S Venkata Saravana Kumar', '5', '9963387594', '', 'saravanakonduru@gmail.com', '1999-04-11', 22, '2', '2', 'K SATYANARAYANA', 'Operator', 15000.00, 1, 0.00, 300000.00, 'Tirupati', 'Tirupati', '2112150018', '22', '1', 'upload_files/candidate_tracker/16680157166_Resume.pdf', NULL, '2', '2021-12-16', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for the profilw', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 02:16:36', 64, '2021-12-16 11:15:25', 0, NULL, 1),
(7135, 'Kopula navneetha', '5', '7702809106', '', 'Navaneethakopula97@gmail.com', '1997-06-14', 24, '2', '2', 'Parent', 'private employee', 10000.00, 1, 2.40, 3.50, 'Hyderabad', 'Hyderabad', '2112150019', '22', '2', 'upload_files/candidate_tracker/4210466865_Resume.docx', NULL, '3', '2021-12-16', 30, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected Over the call', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-15 02:18:05', 64, '2021-12-15 02:59:33', 0, NULL, 1),
(7136, '', '0', '9940733570', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112150020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-15 02:39:37', 0, NULL, 0, NULL, 1),
(7137, 'Mageshwari.M', '11', '7449178113', '8056923741', 'mgmurugan1997@gmail.com', '1997-07-08', 24, '2', '2', 'Muthu Murugan', 'Driver', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112150021', '1', '1', 'upload_files/candidate_tracker/23010735592_DOC-20190724-WA0052(1).pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Career Gap,No Relevant Exp ,Sustainability Doubt.Will not handle the pressure\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 03:52:00', 1, '2021-12-15 03:58:58', 0, NULL, 1),
(7138, 'Mohamed Ibrahim Akram', '13', '8190858555', '6381537828', 'Mohamedakram1071@gmail.com', '1999-09-03', 22, '2', '2', 'Mohamed', 'Business', 15000.00, 2, 10000.00, 15000.00, 'Chennai', 'Coimbatore', '2112150022', '1', '2', 'upload_files/candidate_tracker/53844004185_Akram-Resume.pdf', NULL, '1', '2021-12-20', 15, '', '5', '27', NULL, 0.00, '', '', '2022-01-05', '2', 'No Response.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 04:33:49', 1, '2021-12-15 04:38:35', 0, NULL, 1),
(7139, 'Gayathri', '16', '9841630685', '', 'Gayathrikaruppasamy23@gmail.com', '1997-03-02', 24, '2', '2', 'Karuppasamy', 'Nil', 200000.00, 1, 156000.00, 250000.00, 'Chennai', 'West mamabalm', '2112150023', '1', '2', 'upload_files/candidate_tracker/11850243861_Gayathri karuppasamy.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good,Looking only for MIS Activities,but not comfortable in handling the calls for a long as she is having some ear problem.The profile can be considered later for any immeidate circumstances', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 04:42:03', 1, '2021-12-16 12:11:08', 0, NULL, 1),
(7140, 'vinothini .r', '16', '9751824865', '9080534102', 'vinothinirajendran909@gmail.com', '1995-01-13', 26, '2', '2', 'chitra', 'hr', 10000.00, 3, 24000.00, 26000.00, 'chennai', 'chennai', '2112150024', '1', '2', 'upload_files/candidate_tracker/33987178358_vno prfl (2) mastr 1.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Frequent Job changer and the salary exp 25K TH in very high. Will not sustain', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 04:47:29', 1, '2021-12-15 04:54:51', 0, NULL, 1),
(7141, 'Agilandeswari A', '22', '7395989414', '7550275906', 'akilaananth4@gmail.com', '1998-12-19', 22, '4', '2', 'Ananthanarayanan V', 'Self Employed', 50000.00, 1, 15800.00, 20000.00, 'Chennai', 'Chennai', '2112150025', '', '2', 'upload_files/candidate_tracker/53054209684_Agilandeswari A-1-compressed.pdf', NULL, '1', '2021-12-15', 15, '', '3', '59', '2022-01-03', 146496.00, '', '', '1970-01-01', '2', 'Selected for Digital Marketing - PT only\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', 'Candidate okay, please check for bond and salary.', '', '', NULL, NULL, NULL, 1, '2021-12-15 05:49:20', 69, '2021-12-15 07:12:51', 0, NULL, 1),
(7142, 'Mukesh', '11', '8072317915', '', 'Mukes241994@gmail.com', '1994-01-24', 27, '2', '2', 'Thilakavathi', 'House wife', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112150026', '1', '1', 'upload_files/candidate_tracker/10911891484_Mukesh newly edited resume.docx', NULL, '1', '2021-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude, Fresher for the recruitment age around 27 yrs,Career Gap,No sustainability in the previous companies.Will not suits to our role', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-15 07:06:04', 1, '2021-12-15 07:10:29', 0, NULL, 1),
(7143, '', '0', '8500959937', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112160001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-16 12:30:31', 0, NULL, 0, NULL, 1),
(7144, 'Anoop', '5', '9745864359', '', 'rajeshanoop257@gmail.com', '1999-12-08', 22, '3', '2', 'RAJESH C', 'Fresher', 15000.00, 1, 0.00, 25000.00, 'Kerala', 'Bangalore', '2112160002', '', '1', 'upload_files/candidate_tracker/916126140_ANOOP new RESME .pdf', NULL, '2', '2021-12-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 09:38:56', 1, '2021-12-16 09:42:13', 0, NULL, 1),
(7145, 'Ajith kumar', '4', '7395903200', '7904000903', 'pajithkumar0412@gmail.com', '1999-01-04', 22, '3', '2', 'Ponnusamy\'', 'Cooli', 15000.00, 1, 15000.00, 18000.00, 'Ayanambakkam', 'keel ayanambakkam', '2112160003', '', '2', 'upload_files/candidate_tracker/68826052334_AJITH RESUME NEW 2.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate 5050 profile,fresher for Sales,Scheduled the candidate for 2nd level,but left without attending the 2nd round', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 10:17:17', 1, '2021-12-16 10:28:57', 0, NULL, 1),
(7146, 'Barath P', '4', '6382105833', '', 'barathda94@gmail.com', '1998-04-09', 23, '2', '2', 'Pavalarajan', 'Business', 10000.00, 1, 12000.00, 15000.00, 'CHENNAI', 'CHENNAI', '2112160004', '1', '2', 'upload_files/candidate_tracker/65765994431_Barath_Resume.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped.Candidate got another offer', '1', '1', '', '1', '1', '', '2', '2021-12-16', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-16 10:21:50', 50, '2021-12-16 02:54:28', 0, NULL, 1),
(7147, 'NAGARAJ.S', '5', '8526746396', '8667058895', 'nagarajmech1994@gmail.com', '1994-05-18', 27, '2', '2', 'Subramani.c', 'Farmer', 15000.00, 3, 22000.00, 25000.00, 'No 242 pillaiyar kovil street,Athur Vadapathi', 'Guindy', '2112160005', '22', '2', 'upload_files/candidate_tracker/31977812566_Nagaraj s.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude Issue,Frequent Job changes,Looking only for the Salary Growth.Will not handle our sales pressure.Not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 10:55:23', 1, '2021-12-16 11:03:06', 0, NULL, 1),
(7148, 'D.Sathishraj', '5', '8608066353', '', 'rajsathish857@gmail.com', '1999-11-19', 22, '2', '2', 'Dilli', 'Machine mechanic', 11000.00, 1, 0.00, 15000.00, 'Alamathi,redhills', 'Alamathi, redhills', '2112160006', '22', '1', 'upload_files/candidate_tracker/81787342050_SATHISHRAJ-converted.pdf', NULL, '1', '2021-12-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfortable with the Targets, Will not sustain ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 11:08:16', 1, '2021-12-16 11:19:08', 0, NULL, 1),
(7149, 'Shubham Bhattacharjee', '5', '9051419751', '', 'shubhambhattacharjee59@gmail.com', '1994-08-25', 27, '2', '2', 'Dipa Bhattacharjee', 'Private Service.', 40000.00, 2, 23000.00, 30000.00, 'Howrah.', 'Howrah.', '2112160007', '19', '2', 'upload_files/candidate_tracker/44486835229_cv70574798_shubham-bhattacharjee_business-development-executiv.pdf', NULL, '2', '2021-12-16', 15, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our profile', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 11:40:39', 1, '2021-12-16 11:44:08', 0, NULL, 1),
(7150, 'Borra pavani vinaya sai', '5', '8985835422', '9505994456', 'naidupavani933@gmail.com', '1998-09-20', 23, '2', '1', 'D.Shivaram', 'Business', 30000.00, 1, 0.00, 18000.00, 'Hyderabad', 'Hyderabad', '2112160008', '22', '1', 'upload_files/candidate_tracker/32252073887_final_resume.docx', NULL, '2', '2021-12-17', 0, '', '3', '59', '2022-01-03', 194496.00, '', '6', '2022-06-17', '1', 'Selected for ESales Hyderabad with PT Only', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2021-12-16 11:56:42', 60, '2021-12-28 04:43:09', 0, NULL, 1),
(7151, 'Challa Rupa', '4', '6361552080', '8310600976', 'rupaindrakumar1009@gmail.com', '1995-06-17', 26, '2', '1', 'Indira kumar', 'Business', 20000.00, 0, 15000.00, 20000.00, 'No.1/965/2 Arava gudiselu Kadiri anatapur', 'No.26 house No.2 jelly machine road', '2112160009', '19', '2', 'upload_files/candidate_tracker/72346674776_Roopa Resume Updated 2020-converted.pdf', NULL, '3', '2021-12-16', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 12:15:09', 1, '2021-12-16 12:28:46', 0, NULL, 1),
(7152, 'M Mohan Raj', '6', '7871372588', '9840312940', 'muruganmohan54@gmail.com', '2000-08-01', 21, '1', '2', 'N MURUGAN', 'Ward boy', 10000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2112160010', '', '1', 'upload_files/candidate_tracker/30442460882_RESUME 3.docx', NULL, '1', '2021-12-16', 0, 'Jobs', '3', '59', '2021-12-17', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Suthagar - PF/ESI/PT', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '2', '3', 'Offer document link has been sent', '', '', '', NULL, NULL, NULL, 1, '2021-12-16 12:49:27', 60, '2021-12-16 06:28:19', 0, NULL, 1),
(7153, 'Hema Rakshanaa V M', '11', '7338935853', '', 'hemarakshanaa1998@gmail.com', '1998-11-10', 23, '2', '2', 'V D M Mahipathy', 'Business', 30000.00, 0, 0.00, 25000.00, 'CHENNAI', 'CHENNAI', '2112160011', '1', '1', 'upload_files/candidate_tracker/81482435912_RESUME.docx', NULL, '1', '2021-12-17', 0, '', '4', '72', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good, Have interest to learn,Can be trained in HR Recruitment.Need to schedule for a virtual interview\n', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 01:14:25', 1, '2021-12-16 01:19:10', 0, NULL, 1),
(7154, 'Sharmila s', '11', '9176725320', '', 'Sagajuviyas@gmail.com', '1999-06-06', 22, '2', '2', 'Samidurai.m', 'Vegetable merchant', 26000.00, 2, 0.00, 15000.00, 'Poonamallee', 'Poonamallee', '2112160012', '1', '1', 'upload_files/candidate_tracker/78179206333_Sharmila Resume.pdf', NULL, '1', '2021-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication Understanding poor, Not suitable ', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-16 01:58:20', 64, '2021-12-17 11:08:33', 0, NULL, 1),
(7155, 'Rugesh', '22', '9445142724', '', 'rugesh9000@gmail.com', '2000-02-24', 21, '4', '2', 'MuthuKrishnan', 'BE', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112160013', '', '1', 'upload_files/candidate_tracker/98536551001_CV_DM_2021-12-16-112146.pdf', NULL, '1', '2021-12-16', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CSE degree holder but cant reply more than 3 HTML tags', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-16 02:28:01', 60, '2021-12-16 06:32:10', 0, NULL, 1),
(7156, 'M Janaki', '25', '9025450191', '', 'janakipriya000@gmail.com', '1998-07-10', 23, '2', '2', 'R Munusamy', 'Coolie work', 10000.00, 1, 0.00, 18000.00, 'Chennai in Kodambakkam', 'Chennai', '2112160014', '20', '1', 'upload_files/candidate_tracker/81956009253_JANAKI RECENT.pdf', NULL, '1', '2021-12-18', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'She is looking non voice process', '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-16 02:49:57', 1, '2021-12-16 04:39:57', 0, NULL, 1),
(7157, '', '0', '7397257220', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112160015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-16 02:51:51', 0, NULL, 0, NULL, 1),
(7158, 'Adnan Mohammed', '11', '7305438183', '', 'adnanmhd0786@gmail.com', '1998-04-22', 23, '2', '2', 'Mohammed Ali', 'Government servants', 100000.00, 1, 0.00, 18000.00, 'Port Blair', 'Kelambakkam', '2112160016', '1', '1', 'upload_files/candidate_tracker/62971595024_Adnan\'s Resume.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,No native language,candidate is from Andaman,Salary Exp is high.Not suitable ', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 02:54:50', 1, '2021-12-16 02:57:34', 0, NULL, 1),
(7159, 'Akash S', '11', '6383289498', '', 'akashantony2107@gmail.com', '2000-07-21', 21, '2', '2', 'Sathish', 'Business', 20000.00, 1, 0.00, 20000.00, 'Kodambakkam, chennai', 'Kodambakkam, Chennai', '2112160017', '1', '1', 'upload_files/candidate_tracker/33695007551_Anto.pdf', NULL, '1', '2021-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, Prefers to work much in Non voice only, Seems not much comfort with the targets, Preparing for the Bank Exams, Will not sustain and pressure handling doubt', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 03:11:23', 1, '2021-12-16 03:16:58', 0, NULL, 1),
(7160, 'Kirthana', '11', '7358338160', '', 'mail.kirthana97@gmail.com', '1997-07-14', 24, '2', '2', 'Arumugam', 'Fisherman', 40000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2112160018', '1', '1', 'upload_files/candidate_tracker/16878535679_MBAKirthana online resume.docx', NULL, '1', '2021-12-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Candidate seems to be slow, sustainability and pressure holding Doubt ', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-16 03:33:17', 64, '2021-12-18 11:19:07', 0, NULL, 1),
(7161, 'Kalaivanan', '11', '7092910007', '', 'kalaivanankaran28042001@gmail.com', '2001-04-28', 20, '2', '2', 'Senthilkumar m', 'Driver', 15000.00, 0, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2112160019', '1', '1', 'upload_files/candidate_tracker/25727970795_1630913206954_new resume.docx', NULL, '1', '2021-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped - RNR,even he didnt come back with his confirmation', '6', '2', '0', '1', '1', '0', '2', '2021-12-20', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 04:05:03', 1, '2021-12-17 12:19:10', 0, NULL, 1),
(7162, 'Priya Arumugam', '11', '9087930400', '', 'priyadrshni886@gmail.com', '1993-07-04', 28, '2', '1', 'Arumugam', 'Business', 500000.00, 1, 240000.00, 300000.00, 'Chennai', 'Chennai', '2112160020', '1', '2', 'upload_files/candidate_tracker/58115389965_Priya resume updated.pdf', NULL, '3', '2021-12-18', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-16 07:55:16', 1, '2021-12-16 07:58:46', 0, NULL, 1),
(7163, 'Aravinthakumar a', '5', '9042121118', '9884096448', 'Aravinthakumar199@gmail.com', '1995-03-01', 26, '2', '2', 'ashokkumar', 'business', 50000.00, 1, 240000.00, 300000.00, 'chennai', 'chennai', '2112170001', '19', '2', 'upload_files/candidate_tracker/19439740903_Aravinth 2021 resume.pdf', NULL, '3', '2021-12-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-17 09:59:24', 64, '2021-12-20 10:40:31', 0, NULL, 1),
(7164, '', '0', '9186343821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 10:49:01', 0, NULL, 0, NULL, 1),
(7165, 'Ramalingam', '5', '8124201523', '7639965912', 'sramalingam250@gmail.com', '1995-07-25', 26, '2', '2', 'Settu', 'Sales', 30000.00, 3, 15000.00, 26000.00, 'Mittapalli', 'Mittapalli', '2112170003', '22', '2', 'upload_files/candidate_tracker/54531344868_1600336907678Resume_Ramalingam (1) (1).pdf', NULL, '2', '2021-12-17', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to Reschedule', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-17 10:55:43', 64, '2021-12-17 12:03:42', 0, NULL, 1),
(7166, 'Narmatha.A', '11', '9092011543', '8056156874', 'Narmathakumar01@gmail.com', '1994-12-02', 27, '2', '2', 'Arul kumar', 'Working in Railways', 70000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2112170004', '1', '2', 'upload_files/candidate_tracker/72040692190_Narmatha.A resume .docx', NULL, '1', '2021-12-21', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped ,we offered her for the Recruiter Role,but candidate didnt join\n', '6', '2', '', '1', '1', '', '2', '2021-12-23', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-17 12:59:11', 64, '2021-12-21 02:08:40', 0, NULL, 1),
(7167, '', '0', '7824865091', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 01:40:36', 0, NULL, 0, NULL, 1),
(7168, '', '0', '9092673742', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 02:28:51', 0, NULL, 0, NULL, 1),
(7169, 'Sathish', '5', '7200962961', '7200491414', 'sathishnallaradha86@gmail.com', '1986-08-08', 35, '2', '2', 'Vasanthi', 'Homemaker', 60000.00, 1, 27000.00, 35000.00, 'Chennai', 'Chennai', '2112170007', '22', '2', 'upload_files/candidate_tracker/64481638250_Sathish Resume.pdf', NULL, '1', '2021-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communicaiton ok,5050 profile,no relevant Exp,Age around 36 yrs,Sustainability Doubts,2nd round interviewed by Shanmuga K and Rejected', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-17 02:44:49', 1, '2021-12-17 03:41:37', 0, NULL, 1),
(7170, 'Shiva Kumar m n', '5', '7624963275', '8105830869', 'rohitshiva294@gmail.com', '1999-02-12', 22, '2', '2', 'Nagaraj', 'Still Working', 12000.00, 1, 0.00, 15000.00, 'Chinthamani', 'Chinthamani', '2112170008', '22', '1', 'upload_files/candidate_tracker/24993208354_Shiva Resume.pdf', NULL, '2', '2021-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate no response', '5', '1', '', '2', '2', '', '2', '2021-12-18', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-17 03:05:13', 64, '2021-12-17 03:51:18', 0, NULL, 1),
(7171, 'Azhaguraja', '11', '9361263732', '9698671519', 'akashmessi37@gmail.com', '1998-06-18', 23, '2', '2', 'Selvarani', 'Housewife', 15000.00, 1, 0.00, 20000.00, 'Perambalur', 'Chennai', '2112170009', '1', '1', 'upload_files/candidate_tracker/23396294517_AKASH experience resume-2.docx', NULL, '1', '2021-12-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-17 03:28:29', 1, '2021-12-17 03:35:25', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7172, 'Preethi', '11', '6382623747', '', 'Priyapreethi736@gmail.com', '2000-10-28', 21, '2', '2', 'Pachaiyappan', 'Tiffen center', 30000.00, 1, 0.00, 12000.00, 'Purasaiwalkam', 'Purasaiwalkam', '2112170010', '1', '1', 'upload_files/candidate_tracker/8482818196_CV_2021-04-08-124220.pdf', NULL, '1', '2021-12-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested with Terms xxamp Conditions,will not sustain', '6', '2', '0', '1', '1', '0', '2', '2021-12-21', '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-17 03:33:49', 1, '2021-12-17 03:39:17', 0, NULL, 1),
(7173, 'Tamizh Selvan K', '11', '9025338528', '9677801197', 'mktamizhselvan95@gmail.com', '1995-04-17', 26, '2', '1', 'nandhini', 'house wife', 15000.00, 2, 15000.00, 17000.00, 'South Arcot', 'South Arcot', '2112170011', '1', '2', 'upload_files/candidate_tracker/20112917792_Tamizhselvan Resume.pdf', NULL, '1', '2021-12-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-17 04:07:41', 1, '2021-12-17 04:17:03', 0, NULL, 1),
(7174, '', '0', '7619505794', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 06:01:45', 0, NULL, 0, NULL, 1),
(7175, 'Abhishek Chaurasia', '5', '7278231651', '7003828580', 'abhishekchaurasia255@yahoo.com', '1995-07-23', 26, '3', '2', 'Opendra Chaurasia', 'Student', 50000.00, 1, 0.00, 350000.00, 'Howrah', 'Howrah', '2112170013', '', '1', 'upload_files/candidate_tracker/91156996641_Abhi cv 2021.pdf', NULL, '2', '2021-12-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-17 06:05:10', 1, '2021-12-17 06:08:46', 0, NULL, 1),
(7176, 'prashanth', '25', '7019546941', '9620352825', 'dsprashanth91@gmail.com', '1996-02-26', 25, '2', '2', 'lakshmi', 'house wife', 10000.00, 0, 0.00, 28000.00, 'basvangudi', 'basvangudi', '2112170014', '22', '1', 'upload_files/candidate_tracker/11186964770_PRASHANTH RESUME (Fresher).pdf', NULL, '2', '2021-12-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-17 06:05:54', 1, '2021-12-18 09:50:09', 0, NULL, 1),
(7177, '', '0', '7816976518', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 06:29:07', 0, NULL, 0, NULL, 1),
(7178, 'Sujitha.M', '11', '8778190468', '6382849606', 'sujithakrishnan99@gmail.com', '2000-07-03', 21, '2', '2', 'Muthukrishnan', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Mayiladuthurai', 'Tambaram', '2112170016', '1', '1', 'upload_files/candidate_tracker/86216033553_SUJITHA RESUME.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the interview', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-17 07:43:59', 64, '2021-12-24 12:59:15', 0, NULL, 1),
(7179, '', '0', '9791152983', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 07:44:10', 0, NULL, 0, NULL, 1),
(7180, '', '0', '7483615151', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112170018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-17 08:12:43', 0, NULL, 0, NULL, 1),
(7181, 'S.Sreelakshmi', '4', '9551543257', '7358009361', 'srilakshmi24497@gmail.com', '1997-04-24', 24, '2', '2', 'R Srinivasa Prabhu', 'Admin', 20000.00, 1, 0.00, 15000.00, 'Korattur chennai', 'Korattur chennai', '2112180001', '1', '1', 'upload_files/candidate_tracker/10040458171_Sreelakshimi CV - May 21_1.pdf', NULL, '2', '2021-12-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Received a message from candidate that she got another offer', '1', '1', '', '1', '1', '', '2', '2021-12-20', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-18 08:06:03', 50, '2021-12-18 11:11:44', 0, NULL, 1),
(7182, 'Lavanya R', '4', '9150450881', '7338767969', 'lavanyalavanya1008@gmail.com', '2000-03-10', 21, '2', '2', 'Sarala R', 'Tailor', 8000.00, 1, 19500.00, 21000.00, 'Thiruverkadu', 'Chennai', '2112180002', '20', '2', 'upload_files/candidate_tracker/64535922931_Lavanya resume new.docx', NULL, '3', '2021-12-23', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-18 09:53:08', 1, '2021-12-18 09:56:09', 0, NULL, 1),
(7183, 'Amirthalingam', '5', '9751896143', '', 'amirthalingam7373@gmail.com', '1992-11-12', 29, '2', '2', 'Selvakumar', 'Farmer', 30000.00, 1, 20000.00, 250000.00, '219a near pudhu colony kurichi valapadi salem', 'Velachery', '2112180003', '22', '2', 'upload_files/candidate_tracker/48258804936_1638290187288_AMIRTHALINGAM RESUME 2021.pdf', NULL, '1', '2021-12-18', 0, '', '3', '59', '2021-12-21', 285696.00, '', '3', '2021-12-22', '1', 'Selected for RM - with PF/PT Deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-18 10:51:28', 60, '2021-12-20 06:33:35', 0, NULL, 1),
(7184, 'Ramana Esheari. t', '4', '9344288013', '9600071858', 'Maharamana42@gmail.com', '2000-04-22', 21, '2', '2', 'Thamarai kanan', 'Driver', 25000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112180004', '1', '1', 'upload_files/candidate_tracker/12624543308_RESUME FOR RAMANA-1.docx', NULL, '1', '2021-12-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Clarity on her interest towards the profile. Have a thought of doing B.L.Much preferes to go in Non voice, Will not sustain and handle the pressure Doubts', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-18 11:22:28', 1, '2021-12-18 12:00:22', 0, NULL, 1),
(7185, 'Harish Kumar', '22', '9677027886', '', 'Harish.anand0298@gmail.com', '1998-05-02', 23, '4', '2', 'anand', 'Business', 100000.00, 1, 0.00, 225000.00, 'Chennai', 'Chennai', '2112180005', '', '1', 'upload_files/candidate_tracker/34253948680_Harish Kumar Resume.pdf', NULL, '1', '2021-12-18', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate did not turn up for the final round\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-18 12:21:17', 1, '2021-12-18 12:25:39', 0, NULL, 1),
(7186, 'Mohideen Asker Ali K', '5', '6380995184', '9626353593', 'azkee1998@gmail.com', '1998-06-19', 23, '2', '2', 'Kyleer Mohamed P', 'Auto Driver', 10000.00, 2, 23000.00, 30000.00, 'Ambattur', 'Ambattur', '2112180006', '22', '2', 'upload_files/candidate_tracker/72453356517_Mohideen Asker Ali _Color Format – 03(1)(1).pdf', NULL, '1', '2021-12-18', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Loan Collections, Not Comfortable to travel due to his health conditions, Will not Sustain for a long', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-18 01:28:53', 64, '2021-12-18 02:36:54', 0, NULL, 1),
(7187, 'Naveen kumar selvam', '11', '8637493012', '', 'naveenkumarsel1999@gmail.com', '1999-09-15', 22, '2', '2', 'Selvam', 'Security', 10000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2112180007', '1', '1', 'upload_files/candidate_tracker/89235905781_6a6d2f59-2fe3-4c79-a1d1-ce6e21d2b3e4naveenres.doc.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude,Too long distance,Communication,Sustainability Doubts.In internship with the company and his expectation is also high.', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-18 03:23:01', 1, '2021-12-18 03:27:40', 0, NULL, 1),
(7188, 'Syed aijaz', '5', '8790053101', '8978875330', 'Saaijaz143@gmail.com', '1998-07-15', 23, '2', '2', 'Syed hassan', 'I Worked in credit card department', 30000.00, 7, 0.00, 22000.00, 'Fathe darwaz', 'Fathe darwaz', '2112180008', '1', '1', 'upload_files/candidate_tracker/32479602651_aijaz (1).pdf', NULL, '1', '2021-12-20', 0, '', '5', '40', NULL, 0.00, '', '0', NULL, '1', 'Not fit for the profile', '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-18 03:57:53', 1, '2021-12-18 04:17:45', 0, NULL, 1),
(7189, 'Vinodkumar', '5', '7780494050', '9553726167', 'vinodkumar.peddi67@gmail.com', '1996-09-05', 25, '2', '2', 'Peddi nagaiah', 'Farmer', 30000.00, 1, 18300.00, 28000.00, 'Hyderabad', 'Hyderabad', '2112180009', '1', '2', 'upload_files/candidate_tracker/33114388024_Resume.pdf', NULL, '3', '2021-12-22', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '1', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-18 04:36:11', 1, '2021-12-22 08:02:36', 0, NULL, 1),
(7190, 'vinod kumar', '5', '9553726167', '7780494050', 'vinodkumar.peddi67@gmail.com', '1996-09-05', 25, '2', '2', 'Peddi nagaiah', 'Farmer', 30000.00, 1, 2.20, 3.50, 'Hyderabad', 'Hyderabad', '2112180010', '1', '2', 'upload_files/candidate_tracker/29672296164_vinu.pdf', NULL, '3', '2021-12-20', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-18 04:57:57', 1, '2021-12-22 07:41:50', 0, NULL, 1),
(7191, 'Chaitra B L', '25', '8970549088', '8660614715', 'chaithralakshman26@gmail.com', '1998-04-26', 23, '2', '2', 'Lakshman.bc', 'Own business', 50.00, 1, 0.00, 20.00, 'BANGALORE', 'BANGALORE', '2112180011', '22', '1', 'upload_files/candidate_tracker/87206922326_file1.pdf', NULL, '3', '2021-12-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-18 06:39:37', 1, '2021-12-18 06:57:25', 0, NULL, 1),
(7192, '', '0', '7022384811', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-19 09:34:03', 0, NULL, 0, NULL, 1),
(7193, 'Kishore', '16', '7871588084', '8838547521', 'Kishore01102021@gmail.com', '1999-07-12', 22, '2', '2', 'Puratchi kumar', 'Driver', 7000.00, 1, 15000.00, 25000.00, 'Mylapore', 'Mylapore', '2112190002', '1', '2', 'upload_files/candidate_tracker/75184332698_Resume-Kishore-Resume-Final.pdf', NULL, '1', '2021-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication no basic knowledge,Will not sustain in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-19 03:47:51', 60, '2021-12-21 04:07:33', 0, NULL, 1),
(7194, 'Madhumitha', '25', '7695957823', '', 'madhumithamadhumitha41@gmail.com', '1999-11-12', 22, '2', '2', 'Paun', 'House keeping', 15000.00, 0, 15000.00, 16000.00, 'Chennai', 'Thiruverkadu', '2112190003', '20', '2', 'upload_files/candidate_tracker/73774237486_Madhuradhan-converted-converted-compressed.pdf', NULL, '1', '2021-12-20', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-19 09:01:08', 1, '2021-12-19 09:20:17', 0, NULL, 1),
(7195, 'Madhumitha', '5', '7696957823', '', 'madhumithamadhumitha41@gmail.com', '1999-11-12', 22, '2', '2', 'Paun', 'House keeping', 15000.00, 0, 15000.00, 16000.00, 'Chennai', 'Thiruverkadu', '2112190004', '20', '2', 'upload_files/candidate_tracker/8405484227_Madhuradhan-converted-converted-compressed.pdf', NULL, '3', '2021-12-20', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-19 09:48:49', 1, '2021-12-19 09:52:24', 0, NULL, 1),
(7196, '', '0', '8056156874', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-20 09:31:39', 0, NULL, 0, NULL, 1),
(7197, '', '0', '9620352825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112200002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-20 09:42:26', 0, NULL, 0, NULL, 1),
(7198, 'Mamatha v', '5', '8105332951', '', 'Mamathaammu407@gmail.com', '0998-12-12', 1023, '2', '1', 'Gopal mg', 'Madiwala', 15000.00, 0, 0.00, 16000.00, 'Hoskote', 'Hoskote', '2112200003', '22', '1', 'upload_files/candidate_tracker/69781839757_MAMATHA V.docx', NULL, '1', '2021-12-21', 0, '', '1', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-20 10:59:43', 64, '2021-12-21 11:21:52', 0, NULL, 1),
(7199, 'DEEPAK SRINIVASAN', '5', '8754530549', '7845866374', 'Deepakarjun277@gmail.com', '1998-06-27', 23, '2', '2', 'L srinivasan', 'DEEE', 50000.00, 0, 22000.00, 22000.00, 'No 18 sri sairam nager mannivakkam', 'No 18 sri sairam nager Mannivakkam', '2112200004', '22', '2', 'upload_files/candidate_tracker/57437463093__Deepak resume.docx', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Preferred to work in Non Voice process', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 11:06:42', 1, '2021-12-20 11:20:39', 0, NULL, 1),
(7200, 'Priyadharshini', '25', '9940429868', '', 'Priyapriya9798@gmail.com', '2006-12-20', 0, '2', '2', 'Jphnbabu', 'Real estate', 15000.00, 1, 27000.00, 27000.00, 'No 19 tholkappair street pammal Chennai 75', 'No19 tholkappair street pammal Chennai-75', '2112200005', '22', '2', 'upload_files/candidate_tracker/29006676239_priyadharshini 2021.docx', NULL, '3', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, no relevant Exp, Will not sustain in Insurance Sales.', '8', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 11:08:25', 1, '2021-12-20 11:14:12', 0, NULL, 1),
(7201, 'Nithya s', '4', '7904259690', '7904259590', 'nithyasenthilnathan9098@gmail.com', '1998-09-22', 23, '2', '1', 'P.senthilnathan', 'Admin', 21000.00, 1, 13000.00, 15000.00, 'Velachery', 'Velachery', '2112200006', '22', '2', 'upload_files/candidate_tracker/81541372917_Nithya - CV updated.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt come back with her confirmation\n', '1', '1', '0', '1', '1', '0', '2', '2021-12-21', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 11:46:56', 1, '2021-12-20 11:50:26', 0, NULL, 1),
(7202, 'N Shunckar', '5', '9551631211', '', 'shunckar1989@gmail.com', '1989-08-26', 32, '2', '1', 'Bavithra', 'Business', 10000.00, 1, 21000.00, 25000.00, 'No 403/34 bharathi nagar tiruvottiyur chennai', 'Same', '2112200007', '16', '2', 'upload_files/candidate_tracker/40265524458_shunckar BBA Resume.docx', NULL, '1', '2021-12-20', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'not fit for sales profile', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 01:06:38', 1, '2021-12-20 01:15:57', 0, NULL, 1),
(7203, 'Abubakkar siddiq', '5', '6362855591', '8277572889', 'abubakars1600@gmail.com', '1997-11-24', 24, '2', '2', 'Ahamed jaan', 'Former', 35000.00, 2, 0.00, 25.00, 'Bangalore', 'Bangalore', '2112200008', '1', '1', 'upload_files/candidate_tracker/45146010111_Resume ABUBAKKAR SIDDIQ 101.docx', NULL, '1', '2021-12-20', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'did not come for interview', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-20 01:21:28', 50, '2021-12-21 08:45:14', 0, NULL, 1),
(7204, 'Dhivya Pradeepa', '11', '9600163418', '8754562630', 'dhivya040397@gmail.com', '1997-03-04', 24, '2', '1', 'Dharmarajan T S', 'Cycle mechanic', 20000.00, 1, 12000.00, 15000.00, 'Chennai', 'Hasthinapuram', '2112200009', '1', '2', 'upload_files/candidate_tracker/37024548452_Dhivya Pradeepa Resume Doc.docx', NULL, '3', '2021-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, Few months Exp in Recruitment, Handling pressure Doubts.Sustainability Doubts in our role', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-20 01:37:59', 64, '2021-12-21 11:32:05', 0, NULL, 1),
(7205, 'Akilandeshwari', '11', '8056226379', '8825730654', 'AKila.archu07@gmail.com', '1998-12-21', 22, '2', '1', 'Vignesh', 'Assistant manager', 45000.00, 1, 21500.00, 18.00, 'Mandaveli', 'Ayanavaram', '2112200010', '1', '2', 'upload_files/candidate_tracker/43196456309_Akila.doc', NULL, '1', '2021-12-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication, have exp as coordinator in the recruitment process.Will not sustain in our roles', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-20 01:43:03', 1, '2021-12-20 01:48:17', 0, NULL, 1),
(7206, 'Pavithra T M', '4', '8778962899', '9884317917', 'paviramya8891@gmail.com', '1988-08-16', 33, '2', '2', 'Sarala T M', 'House wife', 15.00, 1, 15.00, 13.00, 'Thirumazhisai', 'Thirumazhisai', '2112200011', '3', '2', 'upload_files/candidate_tracker/23534184762_Pavi resume.pdf', NULL, '1', '2021-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Sustainability in the previous Exp,Attitude,will not sustain,handling pressure No.Not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-20 03:13:14', 1, '2021-12-20 03:28:03', 0, NULL, 1),
(7207, '', '0', '8939164971', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112200012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-20 03:18:21', 0, NULL, 0, NULL, 1),
(7208, 'Kokilan P', '11', '8778115397', '', 'kogo1697@gmail.com', '1997-12-16', 24, '2', '2', 'Parameswaran', 'Government employee', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2112200013', '1', '1', 'upload_files/candidate_tracker/50977173588_Kokilan Resume_Resume_Format17-compressed (1).pdf', NULL, '1', '2021-12-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Will not handle the pressure, Sustainability Doubts .Not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-20 05:29:05', 1, '2021-12-20 05:34:38', 0, NULL, 1),
(7209, '', '0', '6304869420', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112200014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-20 06:57:07', 0, NULL, 0, NULL, 1),
(7210, 'nandini s', '11', '9994723256', '', 'nandinisrinivasan1897@gmail.com', '1997-08-18', 24, '2', '1', 'sakthivel p', 'software engineer', 50000.00, 1, 14000.00, 20000.00, 'pennadam', 'sholinganalur', '2112210001', '1', '2', 'upload_files/candidate_tracker/50228992217_Nandini Resume 03.06.2021.pdf', NULL, '1', '2021-12-27', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-21 10:53:48', 1, '2021-12-23 05:23:25', 0, NULL, 1),
(7211, 'Subash.R', '6', '7358418068', '9884110329', 'Tharmisu3010@gmail.com', '2000-05-30', 21, '4', '2', 'Rajendiran', 'Fisherman', 10000.00, 1, 0.00, 15000.00, 'Royapuram', 'Royapuram', '2112210002', '', '1', 'upload_files/candidate_tracker/175945182_ Resume 1.pdf', NULL, '1', '2021-12-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non voice process only', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-21 11:06:10', 1, '2021-12-21 11:44:00', 0, NULL, 1),
(7212, 'Vijay', '5', '9600002365', '8056107348', 'r.kvijay8816@gmail.com', '1998-10-08', 23, '2', '2', 'Ramesh', 'Contractor', 200000.00, 1, 19500.00, 20000.00, 'Perambur', 'Perambur', '2112210003', '16', '2', 'upload_files/candidate_tracker/68269528059_VIJAY RESUME.docx', NULL, '1', '2021-12-21', 0, '', '3', '59', '1970-01-01', 300000.00, '', '2', '1970-01-01', '1', 'Selected for Pandian Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail Link Shared', '', '', '', NULL, NULL, NULL, 1, '2021-12-21 11:23:05', 60, '2021-12-27 05:44:04', 0, NULL, 1),
(7213, 'Elangovan J', '4', '8610599629', '9585026267', 'elangoelango1637@gmail.com', '1998-06-07', 23, '2', '2', 'Jayaseelan P', 'Farmer', 7000.00, 0, 0.00, 18000.00, 'Tiruvannamalai', 'Camp road tambaram', '2112210004', '22', '1', 'upload_files/candidate_tracker/2121346745_1639132233129_MY RESUME vj org.docx', NULL, '3', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is open for the Non Voice Process only', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-21 11:34:00', 64, '2021-12-23 11:53:34', 0, NULL, 1),
(7214, 'Amuthan Robin m', '6', '9790895637', '', 'amuthanrobin98@gmail.com', '1998-05-23', 23, '2', '2', 'Marianayagam', 'ICF', 50000.00, 1, 16500.00, 17000.00, 'No: 579/4 6th Street ICF south colony chennai-38', 'No:579/4 6th Street ICF south colony chennai-38', '2112210005', '16', '2', 'upload_files/candidate_tracker/77616951989_ Resume 1.pdf', NULL, '1', '2021-12-21', 0, '', '3', '59', '2021-12-27', 246000.00, '', '3', '2022-03-08', '1', 'Selected for Sarath Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-21 12:35:57', 60, '2021-12-24 04:11:26', 0, NULL, 1),
(7215, 'Afzal Ahamed J', '11', '9940824982', '', 'afzalahamed24@gmail.com', '1998-05-12', 23, '2', '2', 'Jinnah M B', 'Business', 20000.00, 2, 0.00, 15000.00, 'Kumbakonam', 'Chennai', '2112210006', '1', '1', 'upload_files/candidate_tracker/18757958178_AFZAL RESUME UG.pdf', NULL, '1', '2021-12-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Recruitment,Focus much in Aviation,for time being looking for other opportunities', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-21 01:14:54', 1, '2021-12-21 01:17:07', 0, NULL, 1),
(7216, 'Gopi madhan', '5', '9884519602', '9710821633', 'Gopimadhan883@gmail.com', '1998-06-02', 23, '2', '2', 'Muthuraman', 'Business', 15000.00, 2, 18000.00, 30000.00, 'Chennai', 'Chennai', '2112210007', '1', '2', 'upload_files/candidate_tracker/21060571784_GOPI.docx', NULL, '1', '2021-12-21', 0, '', '3', '59', '1970-01-01', 300000.00, '', '2', '1970-01-01', '1', 'Selected for Raj Kumar Team - Relationship Manager with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Mail Link Shared', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-21 01:28:56', 60, '2021-12-27 05:43:21', 0, NULL, 1),
(7217, 'Karthick', '4', '8610625344', '9786394713', 'kaj63156@gmail.com', '1997-10-27', 24, '1', '2', 'Jothi', 'Finance', 15000.00, 1, 0.00, 25000.00, 'Sivakasi', 'Sivakasi', '2112210008', '', '2', 'upload_files/candidate_tracker/32118894343_New Doc 2021-12-21 07.00.51.pdf', NULL, '2', '2021-12-21', 0, 'Cha002513', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-21 02:13:29', 1, '2021-12-21 02:46:33', 0, NULL, 1),
(7218, 'Suriyaprakash', '5', '9677466808', '9884114029', 'sg.surya007@gmail.com', '1994-06-07', 27, '2', '2', 'Gopal', 'Self employe', 300000.00, 1, 21000.00, 26000.00, 'Salem', 'Salem', '2112210009', '16', '2', 'upload_files/candidate_tracker/48844096009_ss-converted.pdf', NULL, '1', '2021-12-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability in the previous Exp, Attitude, Looking only on the monetory growth .Will not sustain', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-21 02:37:48', 1, '2021-12-21 02:43:44', 0, NULL, 1),
(7219, 'Mohanakarthick', '6', '7397287464', '', 'mohanakarthick10121998@gmail.com', '1998-12-10', 23, '2', '2', 'Ramesh', 'Tennis coach', 20000.00, 1, 0.00, 15000.00, 'Kelambakkam', 'Kelambakkam', '2112210010', '1', '1', 'upload_files/candidate_tracker/34937207366_mohana_converted.PDF', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sounds very low and too long distance around 60 kms,will not sustain', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-21 02:47:36', 64, '2021-12-22 11:39:46', 0, NULL, 1),
(7220, 'Krishna Priya U', '11', '9633693342', '7736679806', 'kittykrish074@gmail.com', '1996-04-26', 25, '2', '2', 'P N Udaya Kumar', 'Government servant', 25000.00, 1, 0.00, 20000.00, 'Palakkad', 'Palakkad', '2112210011', '1', '1', 'upload_files/candidate_tracker/23899995435_my resume 1.docx', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate didnt come back with her confirmation for joining - not responding the calls too\n', '6', '1', '', '1', '1', '', '2', '2022-01-13', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-21 03:43:11', 64, '2022-01-03 10:17:29', 0, NULL, 1),
(7221, 'Kiruthiga', '11', '9003526407', '9500057296', 'kiruthigarp0114@gmail.com', '2006-12-21', 0, '2', '2', 'Santhanam', 'Branch manager', 80000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2112210012', '1', '1', 'upload_files/candidate_tracker/46485291242_HR Kiruthiga Resume.pdf', NULL, '1', '2021-12-22', 0, '', '3', '59', '2022-01-17', 146496.00, '', '0', NULL, '2', 'Will come and join after pongal - IJOBS', '6', '2', '0', '1', '1', '0', '2', '2021-12-27', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-21 03:58:02', 1, '2021-12-21 04:05:10', 0, NULL, 1),
(7222, '', '0', '9003626407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-22 12:00:46', 0, NULL, 0, NULL, 1),
(7223, 'l. sabari vas', '5', '9360818402', '', 'sabarivas7@gmail.con', '1999-10-02', 22, '2', '2', 'l dharanipathy', 'medical representative', 60000.00, 0, 0.00, 20000.00, 'arumbakkam', 'arumbakkam', '2112220002', '1', '1', 'upload_files/candidate_tracker/80698665153_RESUME.docx', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Logistics opportunites,Travelling to UK in the month of Aug 2022..Will not sustain and not interested for Insurance Sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-22 10:21:32', 60, '2021-12-22 05:03:41', 0, NULL, 1),
(7224, 'PARTHIBAN', '5', '9360043944', '8525079986', 'parthibanm625@gmail.com', '1996-05-06', 25, '2', '2', 'MALATHI', 'BCA', 500000.00, 1, 16000.00, 22000.00, 'MADURAI', 'CHENNAI', '2112220003', '1', '2', 'upload_files/candidate_tracker/96485552163_Partha Resume.pdf', NULL, '1', '2021-12-22', 0, '', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate didnt came for the final round', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-22 10:49:25', 50, '2021-12-22 11:01:03', 0, NULL, 1),
(7225, 'Rajalakshmi', '5', '7639491464', '7904558840', 'rajalaxmisekar198@gmail.com', '1996-08-19', 25, '2', '2', 'Chandrasekaran', 'Farmer', 25000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2112220004', '1', '2', 'upload_files/candidate_tracker/4610084756_1631596316015_rajalakshmi Resume.pdf', NULL, '3', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain,Salary Exp is Very High', '5', '1', '', '1', '3', '', '2', '2021-12-23', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-22 11:15:13', 50, '2021-12-22 11:56:17', 0, NULL, 1),
(7226, 'M.Durai murugan', '5', '8110896865', '9363586445', 'duraimurugan811089@gmail.com', '1992-04-19', 29, '2', '2', 'Marimuthu', 'Agree culture', 100000.00, 3, 18000.00, 20000.00, 'Madurai', 'Kknager', '2112220005', '16', '2', 'upload_files/candidate_tracker/64521115452_Durai muruganResume (1).pdf', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much comfortable with taking calls, will not sustain in the field', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-22 11:37:27', 64, '2021-12-22 12:18:13', 0, NULL, 1),
(7227, 'Prasanth', '5', '8754486420', '8754481903', 'prasanthdcruze@gmail.com', '1995-06-07', 26, '2', '2', 'chittu babu', 'retired railways', 50000.00, 1, 20000.00, 22000.00, 'chennai', 'chennai', '2112220006', '1', '2', 'upload_files/candidate_tracker/24180102281_Resume.docx', NULL, '1', '2021-12-22', 1, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for this profile\n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-22 11:43:41', 50, '2021-12-22 11:56:00', 0, NULL, 1),
(7228, 'Sangavi', '4', '9025451437', '8056447479', 'Govidhansangavi@gmail.com', '1997-01-07', 24, '2', '2', 'Vengadesan', 'Business', 15000.00, 2, 12000.00, 12500.00, 'Chennai', 'Nugambakkam', '2112220007', '1', '2', 'upload_files/candidate_tracker/13284738247_sankavi.docx', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication,Not open for Voice process,looking for Accounting positions only.No clarity in the speech', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-22 11:53:12', 50, '2021-12-22 12:35:10', 0, NULL, 1),
(7229, 'Ismail sheriff', '11', '8939525395', '9789036602', 'ismailsheriff910@gmail.com', '1997-04-06', 24, '2', '2', 'Asif Sheriff', 'MBA', 20000.00, 2, 0.00, 22000.00, 'No 50/70, MG road, vannandhurai, Thiruvanmiyur', 'No 50/70, MG Road, Vannandhurai, Thiruvanmiyur', '2112220008', '1', '1', 'upload_files/candidate_tracker/93010727209_Ismail sheriff final._ISMAIL SHERIFF A.pdf', NULL, '1', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Prefer to work in logistics,since no opportunities joined HR Recruitment before 20 days and looking for another as there is issue inthe management,SAlary Exp is very high being a fresher', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-22 11:53:52', 64, '2021-12-23 02:37:57', 0, NULL, 1),
(7230, 'Nisha jain', '4', '8667492389', '8124544768', 'Nishajain2796@gmail.com', '2006-12-22', 0, '2', '2', 'Vijayraj', 'Electronics business', 20000.00, 2, 18000.00, 20000.00, 'Vadapalani', 'Vadapalani', '2112220009', '1', '2', 'upload_files/candidate_tracker/15202038673_CV_2021-10-18-124451.pdf', NULL, '3', '2021-12-22', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for positions without target,much focus on the office timings.Will not handle the pressure .Not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-22 12:33:15', 60, '2021-12-22 03:54:54', 0, NULL, 1),
(7231, 'Santhya.k', '11', '8056058525', '', 'Santhyakumar28996@gmail.com', '1999-06-28', 22, '2', '2', 'Kumar', 'Hotel supervicer', 15.00, 1, 0.00, 13.00, 'Chennai', 'Chennai100', '2112220010', '1', '1', 'upload_files/candidate_tracker/27062828759_New doc Nov 9, 2020 1.30 PM.pdf', NULL, '1', '2021-12-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-22 12:42:49', 1, '2021-12-22 12:49:05', 0, NULL, 1),
(7232, '', '0', '6379038189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112220011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-22 12:58:42', 0, NULL, 0, NULL, 1),
(7233, 'Karthick. M', '6', '8680823176', '6379038189', 'Murugankarthik17@gmail.com', '1999-11-17', 22, '2', '2', 'Murugan', 'Machine operator', 14000.00, 2, 12000.00, 16000.00, 'Chennai', 'Chennai', '2112220012', '16', '2', 'upload_files/candidate_tracker/55645510718_Karthik 1Bcom.pdf', NULL, '1', '2021-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Internshi[ Exp in Muthoot,No bike ,Too long Distance up and down 40 kms and the Salary Expectation is high', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-22 01:13:23', 60, '2021-12-22 03:50:23', 0, NULL, 1),
(7234, 'Samiksha jayasankar', '11', '7708228100', '', 'samijay96@gmail.com', '1994-10-08', 27, '2', '1', 'R.sudhakar', 'Project engineer', 60000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2112220013', '1', '2', 'upload_files/candidate_tracker/21361606792_Resume_Samiksha updated.docx', NULL, '1', '2021-12-31', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Got another Offer', '6', '1', '', '1', '1', '', '2', '2022-01-03', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-22 02:54:34', 64, '2021-12-31 02:59:21', 0, NULL, 1),
(7235, 'Mohana Sri .p', '4', '7010847992', '', 'msrimohana@gmail.com', '1997-04-18', 24, '3', '2', 'Na', 'Na', 10000.00, 1, 375000.00, 375000.00, 'Chennai', 'Chennai', '2112220014', '', '2', 'upload_files/candidate_tracker/80642765167_P_MOHANA_SRI_Resume (2)-converted-converted.pdf', NULL, '1', '2021-12-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok have exp as ESales RM in ICICI bank,Looking for opportunities in CRM/Esales but the salary Exp is very High.Around 23-25K she expects.Need time to confirm her interest', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-22 03:45:18', 1, '2021-12-22 03:49:21', 0, NULL, 1),
(7236, 'Akula Deepika', '5', '7658925680', '8121771987', 'deepikaakula96@gmail.com', '1996-05-07', 25, '2', '1', 'Mallikarjun reddy p', 'Art director', 35000.00, 0, 25000.00, 25000.00, 'Hyderabad', 'Hyderabad', '2112220015', '1', '2', 'upload_files/candidate_tracker/30088701657_Resume_Deepika_2021 july.docx', NULL, '2', '2021-12-23', 0, '', '1', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-22 06:31:03', 64, '2021-12-23 12:33:22', 0, NULL, 1),
(7237, 'Sivakumar', '5', '8754936667', '7338956393', 'sivap6667@gmail.com', '1993-05-13', 28, '3', '2', 'Perumal', 'Sales Executive', 30000.00, 2, 22400.00, 35000.00, 'Tirunelveli', 'Palavakkam', '2112230001', '', '2', 'upload_files/candidate_tracker/63939820555_Sivakumar New Resume.docx', NULL, '1', '2021-12-23', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is very slow,No Communication ,looking only for the salary,Will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-23 10:36:49', 64, '2021-12-23 12:18:56', 0, NULL, 1),
(7238, 'Sivakumar S', '5', '7448416115', '8667699262', 'sivakumarbcoms4@gmail.com', '1997-04-19', 24, '2', '2', 'Sivam', 'Sales officer', 30000.00, 2, 0.00, 15000.00, 'Dharmapuri', 'Ramapuram Chennai', '2112230002', '22', '1', 'upload_files/candidate_tracker/42039724210_sivakumar-1 (2).docx', NULL, '1', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking much for non Voice process only,will not sustain', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-23 10:43:34', 60, '2021-12-23 11:03:09', 0, NULL, 1),
(7239, 'Sivakumar', '20', '9884037796', '9952920875', 'Sivasmart303@gamil.com', '2001-01-31', 20, '2', '2', 'P.sivakumar', 'Daily Wages', 23000.00, 1, 10500.00, 14000.00, 'Chennai', 'Chennai', '2112230003', '1', '2', 'upload_files/candidate_tracker/15537729385_SIVAKUMAR RESUME.docx', NULL, '1', '2021-12-23', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process only', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-23 10:45:48', 50, '2021-12-23 04:02:12', 0, NULL, 1),
(7240, 'Rakesh', '4', '9500487014', '9597395660', 'rockyraj045@gmail.com', '1997-05-04', 24, '2', '2', 'ravi', 'Bike business', 200000.00, 2, 0.00, 15000.00, 'Sevvapet', 'sevvapet', '2112230004', '1', '1', 'upload_files/candidate_tracker/52212849737_Rakesh Resume (1).docx', NULL, '1', '2021-12-23', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'rejected', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-23 11:08:44', 1, '2021-12-23 11:19:56', 0, NULL, 1),
(7241, 'Nagalojini.K', '25', '6383617466', '', 'nagalojini03072001@gmail.com', '2001-07-03', 20, '2', '2', 'Kumarasami', 'Coolie', 10000.00, 4, 0.00, 13000.00, 'Thiruvannamalai', 'Velachery', '2112230005', '20', '1', 'upload_files/candidate_tracker/13664726856_1634026783336Resume_Nagalojini.pdf', NULL, '1', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Non Voice Process only ', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-23 11:20:19', 64, '2021-12-23 11:47:14', 0, NULL, 1),
(7242, '', '0', '9962336091', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112230006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-23 11:22:35', 0, NULL, 0, NULL, 1),
(7243, 'Monica', '4', '7871758221', '7338986967', 'Monicaraj.apr9@gmail.com', '1996-04-09', 25, '2', '2', 'C.arokiyaraj', 'Water proofing work', 25000.00, 2, 15900.00, 18000.00, 'Chennai', 'Chennai', '2112230007', '1', '2', 'upload_files/candidate_tracker/87647545874_P_MOHANA_SRI_Resume (2)-converted-converted.pdf', NULL, '1', '2021-12-23', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile have Exp in Telecaller for ! yr postpaid Collection,kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-23 11:25:14', 60, '2021-12-23 05:56:09', 0, NULL, 1),
(7244, 'M. Mukesh', '6', '7904173779', '8925827411', 'mathimugi003@gmail.com', '2000-11-03', 21, '2', '2', 'M. Mathiyazagan', 'Fisher man', 12000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2112230008', '1', '1', 'upload_files/candidate_tracker/6017837366_MUKESH(CV).pdf', NULL, '1', '2021-12-23', 0, '', '3', '59', '2021-12-27', 180000.00, '', '3', '2021-12-30', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Link shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-23 11:41:48', 60, '2021-12-24 02:25:52', 0, NULL, 1),
(7245, 'Ali sk', '4', '7305383290', '7904173779', 'alisk.05mrc.dme@gmail.com', '2000-03-05', 21, '2', '2', 'Thamina .s', 'Home maker', 120000.00, 2, 0.00, 15000.00, 'No 72 quaidmillath street kudumiyandi thoppu', 'chennai', '2112230009', '1', '1', 'upload_files/candidate_tracker/25196323356_alinew-1.docx', NULL, '1', '2021-12-23', 0, '', '3', '59', '2021-12-28', 120000.00, '', '', '2021-12-29', '1', 'Initially he has been rejected for Telecaller as he shows interest towards the Non Voice position,He appeared again ,also he is in need so considered and offered him the position of RE Elite in 5% TDS', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-23 11:42:51', 60, '2021-12-27 05:31:53', 0, NULL, 1),
(7246, 'Sridevi', '5', '7010875676', '9710268825', 'Sridevi041289@gmail.com', '1989-12-04', 32, '3', '1', 'Pradeep n', 'Working', 30000.00, 1, 28000.00, 26000.00, 'Chennai', 'Chennai', '2112230010', '', '2', 'upload_files/candidate_tracker/95477623129_sri', NULL, '1', '2021-12-23', 0, '', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Age criteria not met', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-23 11:57:07', 64, '2021-12-23 12:11:49', 0, NULL, 1),
(7247, 'j. jayaraman', '6', '9551755370', '7299624215', 'jairam5986@gmail.com', '1995-10-03', 26, '2', '2', 'j.prema', 'housewife', 100000.00, 0, 16000.00, 19000.00, 'chennai', 'chennai', '2112230011', '1', '2', 'upload_files/candidate_tracker/77244483294_J.Jayaram CV 2021.pdf', NULL, '1', '2021-12-23', 0, '', '3', '59', '2022-01-03', 204000.00, '', '3', '2022-05-31', '1', 'Selected for Ravi Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer link Mail for Document sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-23 01:35:53', 60, '2021-12-24 02:31:34', 0, NULL, 1),
(7248, 'Amsa. G', '4', '9087979377', '8940230648', 'Akijune.7@gmail.com', '1996-06-26', 25, '2', '2', 'Gopal', 'Mechanic', 15000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2112230012', '1', '2', 'upload_files/candidate_tracker/81509454610_RameshN (2)(1).docx', NULL, '1', '2021-12-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very slow,Will not handle the pressure,Sustainability Doubts', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-12-23 03:04:26', 1, '2021-12-23 03:06:49', 0, NULL, 1),
(7249, 'Jerry Alleluiah', '4', '8438076085', '', 'jerryalleluiah@gmail.com', '1998-05-09', 23, '2', '2', 'Rita Alleluiah', 'House wife', 9999.00, 7, 0.00, 15000.00, 'Kanyakumari,kollencode', 'Velachery, chennai', '2112230013', '1', '1', 'upload_files/candidate_tracker/96254121108_JERRY ALLELUIAH Y.pdf', NULL, '1', '2021-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - Candidate didnt turn with his response', '1', '1', '', '1', '1', '', '2', '2021-12-24', '3', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-23 04:39:20', 64, '2021-12-23 04:47:54', 0, NULL, 1),
(7250, '', '0', '9578082308', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112230014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-23 05:30:19', 0, NULL, 0, NULL, 1),
(7251, 'Madhusoodhanan', '11', '7397004824', '', 'madhuchandran18@gmail.com', '1998-03-11', 23, '2', '2', 'Chandran', 'Station manager (Railway)', 50000.00, 2, 0.00, 15000.00, 'No.74 k.k.nagar silavattam madurantakam', 'No.4 rose nagar kovilambakkam chennai', '2112230015', '1', '1', 'upload_files/candidate_tracker/97535636323_madhusoodhanan resume.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication,Sustainability Doubts ,not suitable for our recruitment Roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-23 07:43:06', 64, '2021-12-24 10:38:59', 0, NULL, 1),
(7252, 'Dinesh Kumar.M', '11', '6382358451', '', 'dineshkumar.rambo@gmail.com', '1998-01-22', 23, '2', '2', 'mohan.v', 'driver', 30000.00, 1, 0.00, 20000.00, 'chengallpatu', 'chengallpatu', '2112230016', '1', '1', 'upload_files/candidate_tracker/97250061879_Dinesh_resume_2020[1]4.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication Career Gap,Will not handle the pressure and sustainability Doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-23 11:18:04', 64, '2021-12-24 10:39:07', 0, NULL, 1),
(7253, 'Chaithanya G', '17', '7019072125', '', 'chaithanya.gopalakrishna@gmail.com', '1999-05-02', 22, '2', '2', 'Gopalakrishna', 'Sales revenue officer', 18000.00, 1, 16700.00, 25000.00, 'Bangalore', 'Bangalore', '2112240001', '1', '2', 'upload_files/candidate_tracker/28243673246_1639551463228_Resume (cv).pdf', NULL, '1', '2021-12-24', 0, '', '5', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Due to high package, not experience related our profile', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-24 10:44:50', 50, '2021-12-25 09:09:37', 0, NULL, 1),
(7254, 'Y RISHI RAJ', '11', '8248035148', '9786541682', 'rraj39667@gmail.com', '1997-09-04', 24, '2', '2', 'S Yuvaraj', 'Driver', 15000.00, 4, 15000.00, 20000.00, 'Chennai', 'Chennai', '2112240002', '1', '2', 'upload_files/candidate_tracker/20565051424_Rishi Updated Resume (1).pdf', NULL, '1', '2021-12-27', 0, '', '7', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for Recruiter Role with TH 12K xxamp208 PT', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-24 10:58:30', 64, '2021-12-27 02:33:45', 0, NULL, 1),
(7255, 'Manimegalai.R', '20', '8317313601', '7892597534', 'megalai020420@gmail.com', '2000-04-02', 21, '2', '2', 'Rajendra and devi', 'Building contractor', 20000.00, 2, 0.00, 10000.00, 'Bengaluru', 'Bengaluru', '2112240003', '1', '1', 'upload_files/candidate_tracker/61755137128_MANIMEGALAI-resume-col-1.docx', NULL, '1', '2021-12-24', 0, '', '3', '59', '2021-12-27', 170496.00, '', '6', '2022-05-03', '1', 'Selected for esales bangalore - PF/ESI/PT - Patroniss Staff', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-24 10:58:45', 60, '2021-12-25 01:41:58', 0, NULL, 1),
(7256, '', '0', '8248306227', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112240004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-24 11:10:22', 0, NULL, 0, NULL, 1),
(7257, 'Aarthi. J', '4', '9150140131', '', 'Aarthijayachandran61@gmail.com', '1999-05-09', 22, '2', '2', 'Jayachandran', 'Cooli', 25.00, 2, 15000.00, 17000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2112240005', '1', '2', 'upload_files/candidate_tracker/11106943746_Aarthi resume.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Loan Sales,Handling Pressure Doubt,Sustainability doubts,Salary Exp is also high', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-12-24 11:19:10', 1, '2021-12-24 11:26:56', 0, NULL, 1),
(7258, 'Nithyashree', '4', '9344515691', '', 'nithyashree1831@gmail.com', '2001-07-31', 20, '2', '2', 'Elangovan', 'Tailor', 6000.00, 1, 15.00, 19.00, 'Saidapet', 'Perungalathur', '2112240006', '1', '2', 'upload_files/candidate_tracker/26495363454_New Nithyashree file.pdf', NULL, '1', '2021-12-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate Didnxquott come back with her confirmation in the time she requested', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2021-12-24 11:20:45', 1, '2021-12-24 11:26:06', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7259, 'Atiya Fatima', '5', '9989543381', '9700180205', 'atiyahyder7@gmail.com', '1996-09-18', 25, '2', '1', 'Kumail hyder', 'Intermediate', 20000.00, 2, 10000.00, 15000.00, 'Hyderabad', 'Hyderabad', '2112240007', '19', '2', 'upload_files/candidate_tracker/51323688125_Atiya resume.docx', NULL, '1', '2021-12-25', 25, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-24 11:23:38', 1, '2021-12-24 11:40:27', 0, NULL, 1),
(7260, '', '0', '8939150079', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112240008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-24 11:25:51', 0, NULL, 0, NULL, 1),
(7261, 'cheduruvelli vrnkatesh', '17', '9652213000', '', 'saisreehan112@gmail.com', '1993-06-03', 28, '3', '1', 'kalpana', 'house wife', 50000.00, 2, 45000.00, 65000.00, 'nalgonda', 'nalgonda', '2112240009', '', '2', 'upload_files/candidate_tracker/23450018072_VENKATESH RESUME.docx', NULL, '1', '2021-12-27', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-24 12:05:52', 1, '2021-12-24 12:19:43', 0, NULL, 1),
(7262, 'Bhavani kannan', '4', '6379827970', '9094063340', 'smilybhavani19@gmail.com', '2001-09-23', 20, '2', '2', 'Kannan', 'Coolie', 96000.00, 1, 0.00, 11000.00, 'Pattinapakkam', 'Pattinapakkam', '2112240010', '1', '1', 'upload_files/candidate_tracker/40611113951_Bhavani resume (3).docx', NULL, '1', '2021-12-24', 0, '', '3', '59', '2021-12-27', 120000.00, '', '5', '1970-01-01', '2', 'Selected for Banu CRM Role - 5% TDS', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-24 12:25:31', 60, '2021-12-24 05:15:49', 0, NULL, 1),
(7263, 'p.Babu', '6', '9841906703', '9500027461', 'babujm819@gmail.com', '1999-04-20', 22, '2', '2', 'k.peaduru', 'Wildcraft', 25000.00, 3, 15000.00, 20000.00, 'Zamin Pallavaram', 'Chennai', '2112240011', '1', '2', 'upload_files/candidate_tracker/28518356201_P.BABU - 2021.doc1- Resume 20-10-2021 - for merge-converted.pdf', NULL, '3', '2021-12-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open Up Will not suits in our role', '5', '1', '', '1', '1', '', '1', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-24 12:39:06', 60, '2021-12-24 05:20:51', 0, NULL, 1),
(7264, 'arshad azeez', '5', '9847045739', '8124514239', 'jinuarshad22@gmail.com', '1995-04-09', 26, '2', '2', 's/o abdul azeez', 'sale', 25000.00, 2, 7.00, 25000.00, 'ambalapparamban hvaniyambala.p.o kerala pin', 'perumkudi.sanjay boye pg', '2112240012', '1', '2', 'upload_files/candidate_tracker/77557828446_ARSHAD RESUME .pdf', NULL, '1', '2021-12-24', 3, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Local Communication, have Exp in Sales Worked in UAE for a long, Will not sustain if he gets opportunity may leave', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-24 12:48:07', 50, '2021-12-25 09:10:15', 0, NULL, 1),
(7265, 'Shaik Ahmed Rasool', '17', '7095626167', '', 'ahmedrasool.shaik@gmail.com', '1983-01-13', 38, '2', '1', 'Ayesha', 'Service', 50000.00, 1, 4.00, 6.00, 'Hyderabad', 'Hyderabad', '2112240013', '19', '2', 'upload_files/candidate_tracker/77470390064_Updated Resume New Rasool (1) (1).docx', NULL, '1', '2021-12-28', 30, '', '1', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-24 01:45:57', 64, '2021-12-28 10:51:12', 0, NULL, 1),
(7266, 'Usha.c', '4', '6361890955', '8494855291', 'ushak12264@gmail.com', '1998-05-26', 23, '2', '2', 'Chindranna', 'Former', 20000.00, 0, 0.00, 20000.00, 'Chithradurga', 'Yalahanka', '2112250001', '1', '1', 'upload_files/candidate_tracker/83085013063_USHA RESUME_2.docx', NULL, '1', '2021-12-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Average communication,not interested in telesales looking for opportunities in finance accounts background only.Understanding capacity s poor will not sustain in our roles', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-25 08:22:39', 50, '2021-12-25 11:31:03', 0, NULL, 1),
(7267, 'Prathipati Pal Edwin', '5', '9573637076', '', 'pauledwinprathipati96@gmail.com', '1996-06-11', 25, '2', '2', 'Prathipati Mariya Das', 'Private', 20000.00, 1, 18000.00, 28000.00, 'Tiruvuru, Krishna District', 'Shaikpet', '2112250002', '1', '2', 'upload_files/candidate_tracker/62868194770_Paul edwin resume.docx', NULL, '2', '2021-12-27', 3, '', '1', '40', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-25 11:42:09', 1, '2021-12-26 02:23:25', 0, NULL, 1),
(7268, 'Kadem sangameshwar', '5', '8247842474', '9700006973', 'Kademsangameshwar1234@gmail.com', '1994-01-15', 27, '2', '1', 'Kadem lakeshmi', 'House maker', 17500.00, 2, 17500.00, 20000.00, 'Hyderabad', 'Hyderabad', '2112250003', '1', '2', 'upload_files/candidate_tracker/4491532224_sangameshwar resume.docx', NULL, '2', '2021-12-27', 1, '', '1', '40', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-25 12:16:02', 1, '2021-12-25 12:23:46', 0, NULL, 1),
(7269, 'Bhasker anurag', '5', '7993888428', '7097724524', 'naiduanuraag@gmail.com', '1994-10-16', 27, '2', '2', 'Kiran mai', 'Housewife', 25000.00, 0, 0.00, 3.20, 'Hyderabad', 'Hyderabad', '2112250004', '1', '2', 'upload_files/candidate_tracker/60373160107_Anuraag Resume.docx', NULL, '2', '2021-12-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-25 02:10:45', 1, '2021-12-25 02:13:54', 0, NULL, 1),
(7270, 'Akshaya R', '11', '6379094737', '', 'ra2710357@gmail.com', '1996-04-29', 25, '2', '1', 'Sriram', 'Works in sundaram infotech', 40.00, 0, 0.00, 15.00, 'Chennai', 'Arcot', '2112250005', '1', '1', 'upload_files/candidate_tracker/63451276146_Resume-1.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 6 months Exp in Recruitment, Career Gap due to marriage.Handling pressure Doubt,will not handle our pressure.She requested to confirm on the TxxampC If she comes back let us see', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-25 06:58:44', 64, '2021-12-29 02:31:34', 0, NULL, 1),
(7271, 'Mohammed Hafiz', '6', '7448512497', '', 'hafizmd879@gmail.com', '1997-04-02', 24, '2', '2', 'Mohamed Riyaz', 'Business', 30000.00, 2, 0.00, 16000.00, 'Kodambakkam', 'Kodambakkam', '2112270001', '22', '1', 'upload_files/candidate_tracker/2107649016_resume (2).pdf', NULL, '1', '2021-12-27', 0, '', '3', '59', '2021-12-28', 171000.00, '', '3', '2021-12-29', '1', 'Selected for Ravi Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-27 10:06:25', 60, '2021-12-27 05:23:27', 0, NULL, 1),
(7272, 'Rajaprabhu A', '4', '8489591392', '9047294116', 'ihtnana96@gmail.com', '1998-02-09', 23, '2', '2', 'Arockiaraj A', 'ATM Operator', 30000.00, 2, 0.00, 20000.00, 'Rajapalayam', 'Rajapalayam', '2112270002', '1', '1', 'upload_files/candidate_tracker/32060624318_CV_2021-08-06-020417.pdf', NULL, '1', '2021-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is preparing for the NET/PHD exams, just for the time to learn he is looking for the opportunities, will not sustain for a long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 10:18:00', 50, '2021-12-27 12:16:34', 0, NULL, 1),
(7273, 'K. Saranya', '4', '9566543232', '7305767155', 'Saranyaayyasamy2015@gmail.com', '1988-08-25', 33, '2', '1', 'P.Ayyasamy', 'Business', 15000.00, 1, 0.00, 12000.00, 'Ekkaduthangal', 'Ekkaduthangal', '2112270003', '1', '1', 'upload_files/candidate_tracker/97716567427_Scan_0002.pdf', NULL, '1', '2021-12-27', 0, '', '3', '59', '2022-01-03', 151584.00, '', '3', '2022-09-12', '2', 'Selected for Banu Team - B2B - 5% TDS Deduction 12K TH', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 10:30:51', 60, '2021-12-29 06:06:19', 0, NULL, 1),
(7274, 'Jeena prasath', '5', '7548833400', '', 'Jeenaprasath003@gmail.com', '1999-08-24', 22, '2', '2', 'Saravanan', 'Tax collector', 15500.00, 1, 18000.00, 24000.00, 'Mandhavali chennai -28', 'Mandhavali chennai-28', '2112270004', '22', '2', 'upload_files/candidate_tracker/32558467707_JEENA NEW.pdf', NULL, '1', '2021-12-27', 2, '', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'We discussed Package but person not accept ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-27 10:44:26', 64, '2021-12-27 11:46:02', 0, NULL, 1),
(7275, 'Mohamed Nakif A', '11', '9566838799', '7892171451', 'nakifamhd@gmail.com', '1994-11-01', 27, '2', '1', 'Safura Fathima M', 'Doctor', 40000.00, 0, 20000.00, 25000.00, 'Chennai', 'Poonamallee', '2112270005', '16', '2', 'upload_files/candidate_tracker/85715058715_NAKIF CURICULLAM-converted_organized.pdf', NULL, '3', '2021-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,no ideas in the recruitment,have interest towards the business onlyalso too long distance,will not sustain for a long', '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-27 10:59:09', 1, '2021-12-27 11:07:40', 0, NULL, 1),
(7276, 'Suresh', '4', '7806910855', '8778366608', 'sureshdoss6198@gmail.com', '1998-01-06', 23, '2', '2', 'Doss', 'Tidc', 20000.00, 1, 13000.00, 15000.00, 'Sevvapet', 'Sevvapet', '2112270006', '1', '2', 'upload_files/candidate_tracker/72189557369_SURESH NEW RESUME.pdf', NULL, '1', '2021-12-27', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'Already experienced with other field. exp salary 15k . not need for job highly doubt for sustainability. drop the candidate.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-27 11:12:49', 1, '2021-12-27 11:20:27', 0, NULL, 1),
(7277, 'Praveen kumar', '4', '6379503804', '9500622086', 'Praveenjava5111997@gmail.com', '1997-11-05', 24, '2', '2', 'Prakasam', 'Clerk', 20000.00, 1, 0.00, 13000.00, 'Sevvapet', 'Sevvapet', '2112270007', '1', '1', 'upload_files/candidate_tracker/56924278979_BHARATH RESUME 2021.docx', NULL, '1', '2021-12-27', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'looking for non voice , not handle to pressure handling. so drop.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-27 11:14:59', 1, '2021-12-27 11:31:06', 0, NULL, 1),
(7278, '', '0', '8904094713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-27 11:27:45', 0, NULL, 0, NULL, 1),
(7279, 'Ragul R', '4', '9500190435', '9962182913', 'raghulrockzz5757@gmail.com', '2000-08-05', 21, '2', '2', 'Rajendran K', 'Tiffin shop', 13000.00, 2, 11000.00, 15000.00, '8/a MGR main road Rajiv Gandhi Nagar alapakkam', '8/a MGR main road Rajiv Gandhi Nagar alapakkam', '2112270009', '1', '2', 'upload_files/candidate_tracker/79121068252_raghul resume.docx', NULL, '1', '2021-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Preparing for the Exams, have Exp in Loan Collections for 3 months, Exp is around 13,but not open for Field Sales. Sustaianability Doubts', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 11:54:35', 50, '2021-12-27 12:25:25', 0, NULL, 1),
(7280, 'B.Rakesh', '4', '9688319359', '8754975703', 'rakesh.john.230@gmail.com', '2001-03-02', 20, '2', '2', 'G.babu', 'Kuli', 10000.00, 1, 11000.00, 15000.00, '11/30 James Street poonamalle', '11/30 James Street poonamalle', '2112270010', '1', '2', 'upload_files/candidate_tracker/21260896801_rakesh.docx', NULL, '1', '2021-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Distance up and Down 42 kms,have Exp in Loan Sales for 3 months and the Exp is High not open for Field Sales too\n', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 11:55:05', 50, '2021-12-27 12:25:44', 0, NULL, 1),
(7281, 'Srinivasan D', '4', '9080324799', '8056041154', 'cheenujana863@gmail.com', '2000-06-25', 21, '2', '2', 'Durairajan vS', 'Koyambedu market', 10000.00, 1, 0.00, 15000.00, 'Kk.nagar', 'Kk.nagar', '2112270011', '1', '1', 'upload_files/candidate_tracker/51502199482__RESUME Srinivasan D new (1) (1) (1).pdf', NULL, '1', '2021-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher much comfort to work in Non Voice Process Only, Came for the interview as a group, Sustainability Doubts on the profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-27 11:56:09', 50, '2021-12-27 12:18:01', 0, NULL, 1),
(7282, 'MANIKANDAN A', '4', '9944386503', '', 'amk9944@yahoo.com', '1998-04-15', 23, '2', '2', 'alagappan', 'former', 10000.00, 2, 180000.00, 3.50, 'Kumbakonam', 'Kumbakonam', '2112270012', '22', '2', 'upload_files/candidate_tracker/30422104879_A.MANIKANDAN CV FILE .pdf', NULL, '3', '2021-12-28', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is looking for Core production opportunities only. Not interested in Telecaller/RE/RM Sales positions', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-27 12:17:30', 1, '2021-12-27 12:25:04', 0, NULL, 1),
(7283, 'Tamilmani', '4', '7339288259', '8438545212', 'AVPtamilmani@gmail.com', '1995-03-14', 26, '2', '2', 'Vignesh', 'CNC machine operator', 12000.00, 3, 12000.00, 18000.00, 'Vilivakam chennai', 'Vilivakam chennai', '2112270013', '3', '2', 'upload_files/candidate_tracker/28261377428_tamil.docx', NULL, '1', '2021-12-27', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-27 12:30:40', 64, '2021-12-27 02:32:53', 0, NULL, 1),
(7284, '', '0', '7090097090', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112270014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-27 12:58:18', 0, NULL, 0, NULL, 1),
(7285, 'Shwetha kN', '25', '9880316378', '9019389846', 'Shwethamahie123@gmail.com', '1995-12-08', 26, '2', '2', 'Nagarja', 'Agriculture', 12000.00, 2, 0.00, 15000.00, 'Gauribanur', 'Yelahanka', '2112270015', '1', '1', 'upload_files/candidate_tracker/98450508875_Shwetha 01.12.21.pdf', NULL, '1', '2021-12-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '2', '', '2', '2', '', '1', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-27 01:25:28', 50, '2021-12-27 03:38:54', 0, NULL, 1),
(7286, 'HYMA', '4', '7349552275', '8105432516', 'hymah735@gmail.com', '1997-08-30', 24, '2', '2', 'Prasad', 'Agriculture', 10000.00, 2, 0.00, 18000.00, 'Bangalore', 'Bangalore', '2112270016', '1', '1', 'upload_files/candidate_tracker/40367458096_HYMA GUTHULA.pdf', NULL, '1', '2022-02-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2021-12-27 01:41:05', 60, '2022-02-25 01:32:15', 0, NULL, 1),
(7287, 'V.karthikeyan', '5', '9940278359', '9551790038', 'Keyanpeace2893@gmail.com', '2006-12-27', 0, '2', '2', 'N.venkatesalu', 'No 21/10 loco works road Agaram chennai 600082', 25000.00, 1, 0.00, 25000.00, 'No 21/10 loco works road Agaram chennai 600082', 'No 15/8 Chinnaswamy Street Chennai 600082', '2112270017', '1', '2', 'upload_files/candidate_tracker/57923980149_karthikeyan.v.pdf', NULL, '1', '2021-12-27', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', 'Selected for MF long back and the profile on hold, now he appears for the RM profile, kindly check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-27 03:25:26', 1, '2021-12-27 03:33:26', 0, NULL, 1),
(7288, 'Adarsh Bohra', '5', '8184824179', '', 'adarshbohra81@gmail.com', '1995-01-02', 26, '2', '2', 'Bhagwaan Das', 'Business', 500000.00, 0, 3.30, 3.80, 'Hyderabad', 'Hyderabad', '2112270018', '1', '2', 'upload_files/candidate_tracker/2126728716_CV _ Adarsh Bohra (1).docx', NULL, '1', '2021-12-29', 0, '', '5', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate will not sustain for long and not fit for the profile', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-27 03:30:22', 64, '2021-12-28 03:24:41', 0, NULL, 1),
(7289, '', '0', '9676084258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112270019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-27 04:08:19', 0, NULL, 0, NULL, 1),
(7290, 'Yamini.n', '11', '7305391766', '6369538436', 'yazhiniyazhini938@gmail.com', '2000-09-06', 21, '2', '2', 'Nagarajan', 'Coolie', 10000.00, 1, 0.00, 14000.00, 'Kodungaiyur', 'Kodungaiyur', '2112270020', '1', '1', 'upload_files/candidate_tracker/51598494173_RESUME-1.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basic knowledge in Recruitment,Handling Pressure and Sustainability Doubts not much comfort on the distance\n', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-27 06:00:21', 64, '2021-12-28 12:12:08', 0, NULL, 1),
(7291, 'GOKUL GS', '4', '9384653567', '7418899914', 'gokulgs1807@gmail.com', '2000-07-18', 21, '2', '2', 'Girisan', 'Electrician', 20000.00, 1, 17000.00, 20000.00, 'Ambathur', 'Ambathur', '2112270021', '1', '2', 'upload_files/candidate_tracker/40846817127_GK RESUME.docx', NULL, '1', '2021-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude,High CTC Expectation,Not open for Field Sales too,Pressure handling doubt', '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-27 06:04:56', 1, '2021-12-28 12:52:09', 0, NULL, 1),
(7292, '', '0', '7416206846', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-27 07:09:20', 0, NULL, 0, NULL, 1),
(7293, 'Pooja Shetty', '5', '8088004797', '7892441839', 'shettypooja891@gmail.com', '1995-11-13', 26, '2', '2', 'Diwakar', 'Business', 40000.00, 2, 0.00, 16000.00, 'Bengaluru', 'Bengaluru', '2112280001', '1', '1', 'upload_files/candidate_tracker/92076656115_Pic.pdf', NULL, '3', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate didnt turn back and not looking for a change\n', '5', '1', '', '2', '2', '', '2', '2022-01-03', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 10:54:46', 60, '2021-12-28 03:53:00', 0, NULL, 1),
(7294, 'S. Gajalakshmi', '11', '9942137253', '8300670742', 'gajasubu26@gmail.com', '1998-01-26', 23, '2', '2', 'N. Subramanian', 'Sales & clerk in co-operative society', 35000.00, 1, 0.00, 15000.00, 'Kattumannarkoil, Cuddalore dt.', 'Teynampet', '2112280002', '1', '1', 'upload_files/candidate_tracker/12471495441_CV_2021-12-11-063529.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sounds Low will not handle the job pressure and sustainability Doubts.Not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 11:13:09', 64, '2021-12-29 12:29:22', 0, NULL, 1),
(7295, 'Leena Ashwini', '4', '9940105963', '9342063079', 'leenaashwini06@gmail.com', '1993-09-06', 28, '2', '1', 'TamilArasu', 'Deputy Manager', 28000.00, 1, 8000.00, 15000.00, 'Perambur Chennai', 'Perambur chennai', '2112280003', '1', '2', 'upload_files/candidate_tracker/46111622497_Scan_0002.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped, She got another offer. Will not join us ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 11:28:52', 50, '2021-12-28 12:07:44', 0, NULL, 1),
(7296, 'T. Rajapriya', '11', '6383197505', '8608401542', 'tpriya2017mba@gmail.com', '1996-04-05', 25, '2', '2', 'R. Thyagarajan', 'Passaway', 10000.00, 3, 0.00, 13000.00, 'Madurai', 'Chennai', '2112280004', '1', '1', 'upload_files/candidate_tracker/90299739631_priya. T 2302.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication ,no basic understandings on the positions.Not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 11:36:46', 64, '2021-12-28 12:05:13', 0, NULL, 1),
(7297, 'Tamilarasan E.k', '4', '6380906572', '9363688575', 'tamil2561997@gmail.com', '1997-06-25', 24, '2', '2', 'kavitha', 'business', 30000.00, 10, 17000.00, 20000.00, 'avadi', 'avadi', '2112280005', '1', '2', 'upload_files/candidate_tracker/15004776906_IMG_3103 2.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in AR Caller not open for fieldsales,Salary Exp is more than 17K,Will not sustain for a long', '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 12:07:20', 1, '2021-12-28 12:39:30', 0, NULL, 1),
(7298, 'Kishore. S', '4', '8939051061', '8754535403', 'kishoresundar1110@gmail.com', '2001-10-11', 20, '2', '2', 'Sundar Raj. C', 'Sales representative', 60000.00, 1, 0.00, 10000.00, 'Kovur', 'Kovur', '2112280006', '1', '1', 'upload_files/candidate_tracker/42230147517_KISHORE RESUME - Google Docs.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,having interest in Non Voice process,location distance around 36 up and down no bike will not sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-28 12:10:04', 60, '2021-12-28 07:04:17', 0, NULL, 1),
(7299, 'Bharath Kumar', '4', '7092193082', '', 'bharathneo10@gmail.com', '1999-07-10', 22, '2', '2', 'Ravethi k', 'Export', 70000.00, 3, 10000.00, 14000.00, 'Chennai', 'Chennai', '2112280007', '1', '2', 'upload_files/candidate_tracker/58900683109_RESUME - BHARATH KUMAR K.pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher fir Sales,Career Gap,Came along with his friend.Looking for opportunites in the non voice process only.Not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-28 12:10:46', 60, '2021-12-28 07:05:07', 0, NULL, 1),
(7300, 'Nivetha R', '11', '9150753177', '9994174630', 'nivetha161198@gmail.com', '1998-11-16', 23, '2', '2', 'Rajagopal', 'Business', 300000.00, 1, 0.00, 14000.00, 'Pattukkottai', 'Pattukkottai', '2112280008', '1', '2', 'upload_files/candidate_tracker/91552026013_CV_Nivetha Rajagopal_Nivetha.pdf', NULL, '1', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 12:14:28', 1, '2021-12-28 12:17:46', 0, NULL, 1),
(7301, 'JAYAKUMAR', '4', '7550276121', '9884515009', 'mortinspoty@gmail.com', '2000-06-20', 21, '2', '2', 'KUMAR', 'CARPENTER', 15.00, 1, 0.00, 12000.00, 'City', 'City', '2112280009', '1', '1', 'upload_files/candidate_tracker/99602976538_resumejk martin.docx', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Chat process only not much open up ,pressure handling no,Not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 12:36:34', 50, '2021-12-28 01:18:04', 0, NULL, 1),
(7302, 'Dinesh Kumar Charles', '4', '9094099950', '9941565006', 'dail9094099950.dinesh@gmail.com', '1998-11-19', 23, '2', '2', 'Parent', 'Security', 13000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2112280010', '1', '1', 'upload_files/candidate_tracker/63054924808_Dinesh Resume Updated (1) (1).pdf', NULL, '1', '2021-12-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Career Gap Fresher for Sales, Looking for opportunities in Testing Profiles for time being looking for other opportunities. Will not Sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 12:41:00', 50, '2021-12-28 01:12:18', 0, NULL, 1),
(7303, 'christo Raphael', '5', '9600123054', '', 'christoremo@yahoo.com', '2006-12-28', 0, '2', '2', 'raphael', 'rtd bank employee', 100000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2112280011', '22', '2', 'upload_files/candidate_tracker/96734212820_Resume april 2021-2.docx', NULL, '1', '2021-12-28', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Worked in different domain,but no sustainability in the previous exp,Pressure handling Doubt and will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-28 12:44:09', 1, '2021-12-28 12:47:34', 0, NULL, 1),
(7304, 'Naresh Tata', '5', '9160542846', '7330917915', 'tatanaresh@gmail.com', '1990-07-20', 31, '2', '1', 'veena korada', 'employee', 50000.00, 3, 25000.00, 25000.00, 'hyderabad', 'hyderabad', '2112280012', '1', '2', 'upload_files/candidate_tracker/58565524135_RESUME (1).docx.pdf', NULL, '1', '2021-12-29', 1, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Attended', '5', '2', '', '3', '4', '', '2', '1970-01-01', '1', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 01:03:59', 64, '2021-12-29 09:56:54', 0, NULL, 1),
(7305, 'Madhankumar', '11', '9566897911', '', 'madhanrba123@gmail.com', '1997-05-17', 24, '2', '2', 'Ravi C', 'Weaver', 20000.00, 0, 0.00, 15000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2112280013', '1', '1', 'upload_files/candidate_tracker/41401150878_Resume_19_12_2021_0_20_666.pdf', NULL, '1', '2022-01-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 01:11:01', 1, '2021-12-31 03:12:49', 0, NULL, 1),
(7306, 'Sreehari T P', '5', '9048151630', '', 'tpsreehari07@gmail.com', '2000-01-07', 21, '2', '2', 'Raji', 'Private Company', 20000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2112280014', '1', '2', 'upload_files/candidate_tracker/11095022373_Sreehari_Resume_2021.docx', NULL, '1', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 01:16:28', 1, '2021-12-28 01:20:26', 0, NULL, 1),
(7307, 'Malligeshwari R', '5', '9003109204', '', 'malliram10@gmail.com', '2000-06-10', 21, '2', '2', 'Ramanathan V', 'Private business', 15000.00, 1, 18000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2112280015', '1', '2', 'upload_files/candidate_tracker/1675290160_Malligeshwari.pdf', NULL, '1', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 01:37:29', 1, '2021-12-28 02:52:04', 0, NULL, 1),
(7308, 'DHANA SHREE K', '25', '7358269125', '8015133757', 'dhanashreemicky1516@gmail.com', '1995-05-16', 26, '2', '2', 'Mr.Kathirvel, Mrs.Selvi Kathirvel', 'Tiffen center', 100000.00, 1, 15000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2112280016', '1', '2', 'upload_files/candidate_tracker/16773640344_dhana new resume ( 17.11.21).pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication was good ,No relevant Sales Exp much into Non Voice,Scheduled for 2nd Round with Karthika for ESales post lunch but she left without attending', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 01:44:14', 64, '2021-12-28 02:34:12', 0, NULL, 1),
(7309, '', '0', '7358269115', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112280017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-28 02:00:23', 0, NULL, 0, NULL, 1),
(7310, '', '0', '8190908236', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112280018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-28 02:26:19', 0, NULL, 0, NULL, 1),
(7311, 'Saddulabai Anil Kumar', '6', '6309699349', '6309494892', 'anilambani4006@gmail.com', '2001-02-09', 20, '2', '2', 'Saddulabai Rajender', 'Diploma (EEE)', 20000.00, 2, 0.00, 15000.00, 'HYDERABAD', 'HYDERABAD', '2112280019', '1', '1', 'upload_files/candidate_tracker/6829078680_my Resume.pdf', NULL, '3', '2021-12-30', 0, '', '1', '40', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 03:12:22', 1, '2021-12-28 03:15:16', 0, NULL, 1),
(7312, 'Karimullah Baig', '5', '9790849777', '', 'Karimullahbaigf@gmail.com', '1993-11-06', 28, '2', '2', 'abida begum', 'housewife', 150000.00, 3, 25000.00, 30000.00, 'chennai', 'chennai', '2112280020', '1', '2', 'upload_files/candidate_tracker/66837813761_karimullahbaig_updateresume.docx', NULL, '1', '2021-12-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 03:15:43', 1, '2021-12-28 03:20:25', 0, NULL, 1),
(7313, 'SYED AIJAZ ALI', '5', '8686290484', '', 'Atifbhai249@gmail.com', '1997-03-10', 24, '2', '2', 'Parent', 'Self Employed', 20000.00, 4, 14000.00, 18000.00, 'Borabanda Hyderabad Telangana 500018', 'Borabanda Hyderabad Telangana 500018', '2112280021', '1', '2', 'upload_files/candidate_tracker/66482978684_Aijaz_Resume.pdf', NULL, '1', '2021-12-29', 3, '', '8', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interview not attended', '5', '2', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-28 03:22:21', 64, '2021-12-28 04:58:32', 0, NULL, 1),
(7314, '', '0', '7200423957', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112280022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-28 03:30:42', 0, NULL, 0, NULL, 1),
(7315, 'MD SAMEER AHMED', '6', '9704784563', '9848554099', 'md.cielo08@gmail.com', '2001-06-30', 20, '2', '2', 'MD QURSHEED AHMED', 'works in set up box company', 150000.00, 1, 0.00, 15000.00, '108/9 Suraram colony , Jeedimetla , Hyderabad', '108/9 Suraram Colony , Jeedimetla , Hyderabad', '2112280023', '1', '1', 'upload_files/candidate_tracker/313313426_1640686924753_SAMEER AHMED MD.doc', NULL, '2', '2021-12-30', 0, '', '8', '40', NULL, 0.00, '', '0', NULL, '1', 'Not attended the interview', '5', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 03:42:08', 1, '2021-12-28 03:53:40', 0, NULL, 1),
(7316, '', '0', '6309669346', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112280024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-28 03:45:23', 0, NULL, 0, NULL, 1),
(7317, 'PRADEEP M', '11', '9840199223', '', 'mpradeep2021hr@gmail.com', '1992-12-20', 29, '2', '2', 'Manoharan', 'Engineer', 45000.00, 0, 0.00, 18000.00, 'CHENNAI', 'AMBATTUR', '2112280025', '1', '1', 'upload_files/candidate_tracker/71312093916_pradeepM MBA HR 2021 Resume.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruitment, Salary Exp is very high, will not sustain with us. Not suitable', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-28 04:03:41', 1, '2021-12-28 04:08:09', 0, NULL, 1),
(7318, 'Paul Methew R', '6', '9444011496', '9344254014', 'Paulmathew.richard@gmail.com', '2001-12-09', 20, '2', '2', 'Richard', 'Painter', 72000.00, 2, 15000.00, 18000.00, 'Thuraipakkam', 'Mylapore', '2112280026', '1', '2', 'upload_files/candidate_tracker/17202010424_Paul MATHEW.RESUME.pdf', NULL, '1', '2021-12-28', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'document fake', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-28 05:33:34', 60, '2021-12-28 07:00:24', 0, NULL, 1),
(7319, 'mohamed azarudin', '6', '8124668134', '', 'azarbashabsc@gmail.com', '1998-08-26', 23, '2', '2', 'sathick basha', 'working', 10000.00, 1, 0.00, 12000.00, 'Tondairpet', 'tondairpet', '2112290001', '1', '1', 'upload_files/candidate_tracker/35172705604_RESUME-Azar...pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate prefers to work in Networking profile,looking for time being opportunites attended few networking interview,Will not sustain in our role.If he get any networking profile will move.If he comes back let us try', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-29 10:20:47', 1, '2021-12-29 10:26:35', 0, NULL, 1),
(7320, 'elakiya', '4', '6369887041', '9500714858', 'nesiseilian560@gmail.com', '2000-03-09', 21, '2', '2', 'Neduchizhiyan', 'farmer', 20000.00, 1, 0.00, 10000.00, 'tanjavur', 'Tanjavur', '2112290002', '1', '1', 'upload_files/candidate_tracker/62476122593_Elakkiya resume pdf.pdf', NULL, '1', '2021-12-29', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'due to lag of self confident fully pampering girl damn sure not fit for telesales no mobile and laptop no exposure salary expectation is high', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-29 10:29:36', 50, '2021-12-29 11:41:41', 0, NULL, 1),
(7321, 'Dhana Lakshmi G', '11', '7305903533', '', 'dl4075956@gmail.com', '2000-06-07', 21, '2', '2', 'Lalitha', 'Homemaker', 20.00, 2, 0.00, 12.00, 'Vandalur', 'Vandalur', '2112290003', '1', '1', 'upload_files/candidate_tracker/69055604721_DHANALAKSHMI.G(CV)_Dhana Lakshmi G.pdf', NULL, '1', '2021-12-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2021-12-29 10:45:50', 1, '2021-12-29 10:52:43', 0, NULL, 1),
(7322, 'R. Rajasekaran', '6', '8825565784', '', 'rajasekaran2298@gmail.com', '1998-06-22', 23, '2', '2', 'K. Ramachandran', 'Farmer', 60000.00, 4, 0.00, 14000.00, 'Cuddalore', 'Ponamalle', '2112290004', '1', '1', 'upload_files/candidate_tracker/68833344729_CV_2021-11-23-010242.pdf', NULL, '1', '2021-12-29', 0, '', '3', '59', '2022-01-05', 171000.00, '', NULL, '2023-11-25', '2', 'Selected for Suthagar Team with PF/ESI/PT deductions - Arumbakkam Location', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer document Link mail shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-29 10:58:26', 60, '2021-12-30 12:51:00', 0, NULL, 1),
(7323, 'Melluri Aditya', '5', '9652904094', '', 'adihyt@gmail.com', '1994-01-29', 27, '2', '1', 'Sree divya', 'Housewife', 33567.00, 2, 13122.00, 21000.00, 'Hyderabad', 'Hyderabad', '2112290005', '1', '2', 'upload_files/candidate_tracker/6681049857_Resume updated.docx', NULL, '2', '2021-12-30', 0, '', '3', '59', '2022-01-12', 294000.00, '', '2', '1970-01-01', '1', 'Selected for Veben Team in PF/PT deductions', '5', '2', '1', '3', '4', '', '2', '2022-01-05', '1', '1', 'Offer Link Mail Shared', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 11:08:47', 60, '2022-01-05 01:42:33', 0, NULL, 1),
(7324, 'Badri Sai Ram', '17', '9381210852', '8978608098', 'sairam.badri524@gmail.com', '1993-05-06', 28, '2', '2', 'Murali', 'MBA', 20000.00, 2, 400000.00, 500000.00, 'Dharmaram peddapally', 'kukkatpally hyderabad', '2112290006', '19', '2', 'upload_files/candidate_tracker/31026911278_RESUME.pdf', NULL, '3', '2022-01-03', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-29 11:11:35', 64, '2021-12-31 10:41:22', 0, NULL, 1),
(7325, 'musarafa', '6', '8946055926', '', 'musafarkhan1998@gmail.com', '1999-05-12', 22, '2', '2', 'Mohamed aboobakar', 'Crean operator', 10000.00, 1, 0.00, 10000.00, 'tondairpet', 'Tondairpet', '2112290007', '1', '1', 'upload_files/candidate_tracker/43843655975_my resume (1).pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested in Voice process looking for Opportunities Networking IT profile, For time being looking for Job', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-29 11:12:39', 1, '2021-12-29 12:11:12', 0, NULL, 1),
(7326, 'Kotti Naveen', '17', '8309787813', '', 'kottenaveen25@gmail.com', '1995-05-25', 26, '2', '2', 'Anijaiah', 'Former', 360000.00, 1, 360000.00, 450000.00, 'Hyderabad', 'Hyderabad', '2112290008', '19', '2', 'upload_files/candidate_tracker/65386802137_ new .docx', NULL, '1', '2022-01-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-29 11:28:24', 64, '2022-01-03 11:59:57', 0, NULL, 1),
(7327, 'Rithinika.L', '4', '9176672334', '8939651280', 'rithii1525@gmail.com', '2001-10-15', 20, '2', '2', 'Radha.p', '01', 25000.00, 1, 12000.00, 13000.00, '16/8 srinivasapuram pattinapakkum chenni_600028', 'Chennai', '2112290009', '1', '2', 'upload_files/candidate_tracker/22908550227_Document.pdf', NULL, '1', '2021-12-29', 2, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking Non voice process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 11:44:14', 64, '2021-12-29 12:21:32', 0, NULL, 1),
(7328, 'Rakesh Barath C', '4', '7550133409', '8072581917', 'rakeshbarath12@gmail.com', '2001-03-12', 20, '2', '2', 'Christhu Raj P', 'Daily wages', 7000.00, 1, 0.00, 13000.00, 'Chennai saidapet', 'Chennai saidapet', '2112290010', '1', '1', 'upload_files/candidate_tracker/43614515372_ Resume.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Interested to work in nonvoice process only. Not open for Field Sales too if we try him based on the salary Expectation', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-29 12:07:35', 60, '2021-12-29 02:30:30', 0, NULL, 1),
(7329, 'J.m.venkataramanan', '4', '8072581917', '7550133409', 'J.m.venkata@gmail.com', '2001-07-08', 20, '2', '2', 'J.Murthy', 'Office assistant', 25000.00, 1, 0.00, 13000.00, 'Chennai saidapet', 'Chennai saidapet', '2112290011', '1', '1', 'upload_files/candidate_tracker/90851669286_1639117779607_VENKATA+Resume.pdf', NULL, '1', '2021-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open to work in Targets and pressure handling no will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2021-12-29 12:08:43', 60, '2021-12-29 02:30:51', 0, NULL, 1),
(7330, 'F Arif Ahmed', '11', '8667836539', '', 'farifahmed78@gmail.com', '2000-04-18', 21, '2', '2', 'Fazal Ahmed', 'PG student', 15000.00, 1, 0.00, 25000.00, 'TNP STREET dhanammal street Perambur Chennai- 11', 'TNP STREET Dhanammal Street Perambur Chennai- 11', '2112290012', '1', '1', 'upload_files/candidate_tracker/79004268264_Arif Ahmed F CV.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,fresher have 2 months internship exp,Salary Exp is very high,Sustainability Doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 03:48:22', 64, '2021-12-31 10:12:17', 0, NULL, 1),
(7331, '', '0', '7373454565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112290013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-29 05:33:46', 0, NULL, 0, NULL, 1),
(7332, 'Bachu Karthik', '5', '9398323728', '7093101529', 'bachukarthik1999@gmail.com', '1999-07-03', 22, '2', '2', 'Srinivas', 'Business', 25000.00, 1, 0.00, 18000.00, 'Warangal', 'Hyderabad', '2112290014', '1', '1', 'upload_files/candidate_tracker/64770132767_Resume_B.Karthik_.pdf', NULL, '1', '2021-12-30', 0, '', '8', '40', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not attended', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 06:47:27', 64, '2021-12-30 02:35:09', 0, NULL, 1),
(7333, 'Abdul Rahman', '11', '7904676492', '', 'abdulrahmans1772001@gmail.com', '2001-07-17', 20, '2', '2', 'Sahabdeen', 'Pg student', 10000.00, 1, 0.00, 24000.00, '69/2 narayana naiken street pudupet Chennai-2', '69/2 Narayana Naiken Street Pudupet Chennai-2', '2112290015', '1', '1', 'upload_files/candidate_tracker/49070975956_Abdul Rahman S CV.docx', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok, Fresher Have a Month Internship Exp, Salary Exp Is negotable, Sustainability Doubts as he is already running his own online business.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-29 06:48:28', 64, '2021-12-31 10:12:07', 0, NULL, 1),
(7334, '', '0', '8667836538', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112290016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-29 08:29:17', 0, NULL, 0, NULL, 1),
(7335, 'subalaxmi', '4', '9629512877', '', 'subamaha00@gmail.com', '1999-08-12', 22, '2', '2', 'rajamohan', 'working', 10000.00, 1, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2112300001', '1', '1', 'upload_files/candidate_tracker/11731384777_SUBALAKSHMI RESUME.doc', NULL, '1', '2021-12-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales financial crisis but he is not attend the interview that much better and not answering any question vioice is not fluence', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-30 09:49:55', 50, '2021-12-30 01:23:25', 0, NULL, 1),
(7336, 'soundarya', '4', '9952686979', '', 'soundarya22199@gmail.com', '1999-01-22', 22, '2', '2', 'mohan', 'not working', 9000.00, 2, 0.00, 10000.00, 'tanjavur', 'tanjavur', '2112300002', '1', '1', 'upload_files/candidate_tracker/44055935625_RESUME.pdf', NULL, '1', '2021-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Continuous RNR Dropped\n', '1', '1', '', '4', '5', '', '2', '2021-12-31', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-30 09:54:48', 50, '2021-12-30 01:23:51', 0, NULL, 1),
(7337, 'maheshwaran', '4', '9003070592', '', 'MAHESH20MATHAN@GMAIL.COM', '2001-01-20', 20, '2', '2', 'marimuthu', 'no more', 1000.00, 2, 0.00, 10000.00, 'aavadi', 'aavadi', '2112300003', '1', '1', 'upload_files/candidate_tracker/15670622929_madhan resume.pdf', NULL, '1', '2021-12-30', 0, '', '3', '59', '2022-01-05', 126000.00, '', '5', '1970-01-01', '2', 'Selected for Tiruvallur Location in Consultant 5% TDS', '1', '1', '', '4', '6', '', '2', '2021-12-31', '2', '9', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-30 10:21:35', 60, '2022-01-03 05:31:40', 0, NULL, 1),
(7338, 'Lavanya D', '4', '8610906912', '7806910855', 'lavatobby21082000@gmail.com', '2000-08-21', 21, '2', '2', 'Dass m', 'Tidc machine operator', 20000.00, 1, 0.00, 13000.00, 'Sevvapet', 'Sevvapet', '2112300004', '1', '1', 'upload_files/candidate_tracker/10876724900_LAVANYA RESUME-converted.docx', NULL, '1', '2021-12-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate prefer much towards the Non Voice process,for time being she looks for this.Looking for the opportunities near to her home only.Will not sustain for a long.will not handle the pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2021-12-30 10:23:18', 1, '2021-12-30 11:32:06', 0, NULL, 1),
(7339, 'subasshini', '4', '7358401264', '', 'gsasubhashini@gmail.com', '2000-08-28', 21, '2', '2', 'sudhakar', 't.master', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2112300005', '1', '1', 'upload_files/candidate_tracker/81341878744_Subhashini.S .pdf', NULL, '1', '2021-12-30', 0, '', '3', '59', '2022-01-03', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Priyanka Jenit Team in 10K TH Consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-30 10:26:31', 60, '2021-12-30 07:03:26', 0, NULL, 1),
(7340, 'rajkumar', '6', '9840137830', '', 'Rajkumarjackgd@gmail.com', '2006-12-30', 0, '2', '2', 'devan', 'electrician', 15000.00, 3, 0.00, 15000.00, 'chennai', 'chennai', '2112300006', '1', '1', 'upload_files/candidate_tracker/58378155729_RAJKUMAR Resume fresher.pdf', NULL, '1', '2021-12-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-30 10:45:20', 1, '2021-12-30 10:53:25', 0, NULL, 1),
(7341, 'Deerajprasad.V', '4', '8754497679', '', 'deerajprasad98@gmail.com', '1997-03-29', 24, '1', '2', 'Vijayparsad', 'Retirement officer', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2112300007', '', '1', 'upload_files/candidate_tracker/5586121480_deeraj_resume.docx', NULL, '1', '2021-12-30', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-30 11:32:10', 1, '2021-12-30 11:42:07', 0, NULL, 1),
(7342, 'nagarajan', '5', '9176646774', '', 'nagarajanrajan4295@gmail.com', '1995-11-01', 26, '2', '2', 'iyappan', 'catering', 25000.00, 0, 21000.00, 21000.00, 'tiruninravur', 'Tiruninravur', '2112300008', '1', '2', 'upload_files/candidate_tracker/79796790156_nagarajan resume.docx', NULL, '1', '2021-12-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Telecaller Field Sales have Exp in Store Sales and looking only for opportunities inside the office. Salary Exp is also high,Time being only he is looking for openings,He specifically trying for opportunites in Anchor roles ,he already attended some interview related to anchor openings,Will not sustain for a long. Not Suitable', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-30 12:20:34', 1, '2021-12-30 12:37:40', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7343, 'Bekas Kumar Patra.A', '11', '7550281234', '9791148818', 'bekaskumar23@gmail.com', '1998-12-14', 23, '2', '2', 'Ajay Kumar Patra', 'Catering', 40000.00, 1, 0.00, 15000.00, 'no.27 V.O.C Nagar Anna nagar East Ch-102', 'no.9/4, R.V Nagar 6th cross Street east Ch-102', '2112300009', '1', '1', 'upload_files/candidate_tracker/27326381355_BEKAS RESUME.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped by Gokul in the final round,', '6', '1', '', '1', '1', '', '2', '2022-01-03', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-30 12:22:28', 64, '2021-12-31 10:26:35', 0, NULL, 1),
(7344, 'divashiya', '4', '7358293101', '', 'divshiyachandran25@gmail.com', '2001-08-25', 20, '2', '2', 'chandran', 'painter', 12000.00, 1, 0.00, 10000.00, 'saidapet', 'Saidapet', '2112300010', '1', '1', 'upload_files/candidate_tracker/84212297123_Divshiya C resume.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,no convincing,Much comfort to work in Non Voice,already her sister is working in non voice only.For time being looking for Voice process.Will not sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2021-12-30 12:27:51', 50, '2021-12-31 11:35:48', 0, NULL, 1),
(7345, 'kalaivani', '4', '7397359467', '', 'vanishanvani@gmail.com', '1995-11-01', 26, '2', '2', 'rameskumar', 'government employe', 60000.00, 1, 0.00, 12000.00, 'thirumangalam', 'Thirumangalam', '2112300011', '1', '1', 'upload_files/candidate_tracker/90366214866_pdf.pdf', NULL, '1', '2021-12-30', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'Sports player not suit for telecalling', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-30 02:27:45', 1, '2021-12-30 02:33:53', 0, NULL, 1),
(7346, 'Baskar.D', '4', '9940377854', '7094508655', 'Baskarsubash058@gmail.com', '1999-06-01', 22, '3', '2', 'Dhanasekran', 'Telecalling', 15000.00, 2, 0.00, 12000.00, 'Tiruvallur', 'Tiruvallur', '2112300012', '', '1', 'upload_files/candidate_tracker/42583086756_BASKAR RESUME-2.pdf', NULL, '1', '2021-12-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped,candidate will not sustain ', '1', '1', '0', '4', '6', '0', '2', '2021-12-31', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2021-12-30 02:50:02', 1, '2021-12-30 03:04:01', 0, NULL, 1),
(7347, 'swathi b', '31', '9384730071', '', 'shawtisri1997@gmail.com', '1997-11-13', 24, '2', '2', 'babu', 'officer', 100000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2112300013', '1', '1', 'upload_files/candidate_tracker/75126473004_swathinewresume3.doc', NULL, '2', '2022-02-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '1', '1970-01-01', '2', '2', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2021-12-30 02:56:38', 87, '2022-02-28 06:27:18', 0, NULL, 1),
(7348, 'priya dharshni', '4', '6374383832', '', 'priyadharshini9301@gmail.com', '2006-12-30', 0, '2', '2', 'baskar', 'driver', 20000.00, 1, 0.00, 10000.00, 'perambur', 'perambur', '2112300014', '1', '1', 'upload_files/candidate_tracker/65965938029_PRIYA RESUME.docx', NULL, '1', '2021-12-30', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2021-12-30 03:57:19', 1, '2021-12-30 04:00:04', 0, NULL, 1),
(7349, 'Jagapathi Babu', '11', '8248661208', '9885327823', 'Jagapathibabu90@gmail.com', '1999-10-08', 22, '2', '2', 'Janathan', 'Businesd', 20000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2112300015', '1', '1', 'upload_files/candidate_tracker/29012021593_Jagapathi cv.docx', NULL, '1', '2021-12-31', 0, '', '3', '59', '2022-01-04', 146496.00, '', '', '2022-04-01', '1', 'Selected for Recruitment Role with Stipend 7500 PM for 3 months post internship salary will be confirmed min 12K TH', '6', '1', '', '1', '1', '', '2', '2022-01-03', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-30 04:13:25', 60, '2022-01-05 10:21:59', 0, NULL, 1),
(7350, 'hari hara sudhan', '6', '9840679509', '', 'hari27325@gmail.com', '2000-12-29', 21, '2', '2', 'balakumar', 'not working', 10000.00, 0, 0.00, 12000.00, 'mylapore', 'mylapore', '2112310001', '1', '1', 'upload_files/candidate_tracker/34024648029_Hari_Resume.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Sales,Have interest towards Non Voice xxamp IT Testinf positions,not open on saturdays to work,will not sustain in our roles', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 10:08:09', 64, '2021-12-31 10:27:05', 0, NULL, 1),
(7351, 'Raghav PV', '11', '7010713977', '', 'pv.raghav123@gmail.com', '1996-09-28', 25, '2', '2', 'M D PRASANNA Venkatesan', 'Ex serviceman', 50.00, 0, 0.00, 14000.00, 'East Tambaram', 'East Tambaram', '2112310002', '1', '1', 'upload_files/candidate_tracker/55504212876_Raghav resume (Updated ).pdf', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Seems to be clow and too long distance around 72kms up and down, will not sustain and handling pressure doubtful', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-31 10:38:50', 64, '2022-01-03 10:18:12', 0, NULL, 1),
(7352, 'Lokesh J', '6', '9176401496', '9500101496', 'lokeshjagadeesan1@gmail.com', '1996-04-01', 25, '1', '2', 'Jagadeesan', 'Southern Railway(Retired)', 400000.00, 1, 0.00, 15000.00, 'Perambur', 'Perambur', '2112310003', '', '1', 'upload_files/candidate_tracker/92667358661_lokesh Resume 3.pdf', NULL, '1', '2021-12-31', 0, 'P5556', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No relevant Exp looking much for opportunites in Non Voice,will not sustain in our role', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-31 10:51:07', 64, '2021-12-31 11:47:37', 0, NULL, 1),
(7353, 'sandhiya', '4', '9962359820', '9600138017', 'Sandhiyal1418@gmail.com', '2001-10-18', 20, '2', '2', 'erammiah', 'cooly', 22000.00, 1, 0.00, 15000.00, 'Chennai', 'chennai', '2112310004', '1', '2', 'upload_files/candidate_tracker/80491187035_Nirmal Resume.docx', NULL, '1', '2021-12-31', 0, '', '3', '59', '2022-01-03', 144000.00, '', '5', '1970-01-01', '1', 'selected for Muthu Team in Consultant 5% TDS role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-31 11:56:47', 60, '2021-12-31 05:18:35', 0, NULL, 1),
(7354, 'keerthana', '4', '9944976571', '', 'keerthanagansean@gmail.com', '2000-03-05', 21, '2', '2', 'Ganeshan', 'Violine maker', 15000.00, 3, 0.00, 10000.00, 'tanjavurtanjavur', 'tanjavur', '2112310005', '1', '1', 'upload_files/candidate_tracker/7463443719_KEERTHANA.pdf', NULL, '1', '2021-12-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'family financial crisis but very lazy not a talk active person and poor performance in interview..not fit for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 12:01:43', 50, '2021-12-31 12:52:43', 0, NULL, 1),
(7355, 'Iyyappan', '11', '9786422527', '', 'iyyappan29m@gmail.com', '1999-05-29', 22, '2', '2', 'Soranam bigia', 'Nurse', 400000.00, 1, 0.00, 18000.00, 'Uthiramerur', 'Chengalpattu', '2112310006', '3', '1', 'upload_files/candidate_tracker/51570692387_IYYAPPAN M.docx', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in Voice process,Looking for design oriented positions,too long distance', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-31 12:11:33', 64, '2021-12-31 12:19:03', 0, NULL, 1),
(7356, 'Vidhya Sagar', '4', '6379246949', '', 'sagarda123123@gmail.com', '2001-04-17', 20, '2', '2', 'Mahendra.M', 'Pepsico private limited company', 30000.00, 2, 0.00, 12000.00, 'Chengalpattu', 'Chengalpattu', '2112310007', '3', '1', 'upload_files/candidate_tracker/52789134469_VIDHYA SAGAR I RESUME.pdf', NULL, '1', '2021-12-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long distance not ready to relocate, Much prefer to work in non voice process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-31 12:12:34', 64, '2021-12-31 12:26:00', 0, NULL, 1),
(7357, 'Shanmugam D', '4', '9600893852', '6369657499', 'shanmugamamutha50@gmail.com', '2000-03-19', 21, '2', '2', 'Dhuraimanikam', 'Father', 10000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2112310008', '1', '1', 'upload_files/candidate_tracker/24130191476_sanmugam resume1.docx', NULL, '1', '2021-12-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'highly job need 6 months experience but high salary expectation and attitude is very poor not fit for team over attitude person', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 12:28:13', 50, '2021-12-31 12:52:19', 0, NULL, 1),
(7358, 'Rohith Raj', '5', '9989291542', '9110749100', 'rohithrajarragokula@gmail.com', '1994-07-06', 27, '2', '1', 'a r lingam', 'govt employee', 1.30, 1, 22300.00, 25000.00, 'hyderabad', 'hyderabad', '2112310009', '22', '2', 'upload_files/candidate_tracker/85068103759_ROHIT updated resume 3.docx', NULL, '3', '2022-01-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2021-12-31 01:52:25', 64, '2021-12-31 02:56:15', 0, NULL, 1),
(7359, '', '0', '9361733997', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2112310010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2021-12-31 02:10:28', 0, NULL, 0, NULL, 1),
(7360, 'Megha Shyamli', '11', '7598979013', '8939353426', 'meghashyamli7011@gmail.com', '1999-04-23', 22, '2', '2', 'Ram', 'Business', 50000.00, 1, 0.00, 4.50, 'Coimbatore', 'Coimbatore', '2112310011', '1', '1', 'upload_files/candidate_tracker/75306511321_MEGHA SHYAMLI R RESUME k,giri (2)-1.pdf', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good ,Have Exp in Internship ,but the salary exp is very high,min exp is 25K will not come down', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2021-12-31 03:09:05', 64, '2022-01-03 10:47:56', 0, NULL, 1),
(7361, 'Gayathri Anand', '4', '9360006078', '', 'gayathrianand19@gmail.com', '2001-07-19', 20, '2', '2', 'Vani', 'House wife', 10000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2112310012', '1', '1', 'upload_files/candidate_tracker/74434282983_A.Gayathri.docx', NULL, '1', '2021-12-31', 0, '', '3', '59', '2022-01-03', 126312.00, '', '', '2022-01-11', '2', 'Selected for Sithy Team - Elite RE - Thanjavur location', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 03:17:35', 60, '2022-01-03 02:34:48', 0, NULL, 1),
(7362, 'Veerajayakumar T', '4', '7339586438', '9585808729', 'veerajayakumar05071999@gmail.com', '1999-07-05', 22, '2', '2', 'Thiyagarajan M', 'Fresher', 5000.00, 4, 0.00, 12000.00, 'Alathur', 'Alathur', '2112310013', '1', '1', 'upload_files/candidate_tracker/39709091262_veera resume 01.pdf', NULL, '1', '2021-12-31', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher in field not talk active and not fit for telesales....salary highly expected need a job like part time ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2021-12-31 03:54:13', 50, '2021-12-31 05:42:34', 0, NULL, 1),
(7363, 'Sukumaran S', '4', '9176499252', '9176144238', 'Sukus793028@gmail.com', '1997-12-31', 24, '2', '2', 'M soundarajan', 'Auto Driver', 12000.00, 1, 8500.00, 12000.00, 'DR Thomas Road T Nagar', 'chennai', '2201030001', '1', '2', 'upload_files/candidate_tracker/70248810444_ resume Sukumaran.pdf', NULL, '1', '2022-01-03', 30, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-03 10:03:56', 58, '2022-01-05 05:33:00', 0, NULL, 1),
(7364, 'Ameer Arsath M', '11', '8248772758', '9629188220', 'ameer.arsath199935@gmail.com', '1999-03-05', 22, '3', '2', 'Firdows', 'House wife', 30000.00, 1, 0.00, 180000.00, '3/92B-6 New East street,kilakarai,ramanathapuram', 'parrys,chennai', '2201030002', '', '1', 'upload_files/candidate_tracker/7966407901_AMEER ARSATH .M.pdf', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication,sustainability Doubts,Not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-03 10:50:54', 64, '2022-01-03 12:17:44', 0, NULL, 1),
(7365, 'Deepak Singh', '5', '9344453676', '', 'champdeepak18@gmail.com', '2002-05-15', 19, '2', '2', 'Prabhu Singh', 'Catering', 30000.00, 3, 20000.00, 22000.00, 'Chennai', 'Chennai', '2201030003', '1', '2', 'upload_files/candidate_tracker/17803262934_LatestCV_2021-12-29-043142.pdf', NULL, '1', '2022-01-03', 0, '', '3', '59', '2022-01-10', 288000.00, '', '3', '2022-01-12', '1', 'Selected for Pandian Team with PF/PT Deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-03 11:38:28', 60, '2022-01-06 04:11:46', 0, NULL, 1),
(7366, 'Rajeshwari.p', '4', '9042004961', '', 'rajeshwarirajeshwari194@gmail.com', '2000-07-09', 21, '3', '2', 'Panner', 'Kuli velai', 6500.00, 2, 0.00, 10000.00, 'Kadambathur', 'Kadambathur', '2201030004', '', '1', 'upload_files/candidate_tracker/86941149853_DocScanner 03-Jan-2022 12.19 pm.pdf', NULL, '1', '2022-01-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped - Candidate didnt turn back', '1', '1', '0', '4', '6', '0', '2', '2022-01-04', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-03 11:51:52', 1, '2022-01-03 12:29:46', 0, NULL, 1),
(7367, 'Shemanithi E', '11', '9159522104', '9842498464', 'shemanithi17@gmail.com', '1997-10-17', 24, '2', '1', 'Subramanian', 'Own business', 40000.00, 1, 0.00, 15000.00, 'Sivagangai', 'Chennai', '2201030005', '1', '1', 'upload_files/candidate_tracker/86904936532_SS.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication No,REcently married,will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-03 12:37:33', 1, '2022-01-03 12:42:48', 0, NULL, 1),
(7368, 'C. Nirmala', '11', '6369088969', '', 'niladurai1999@gmail.com', '1999-07-23', 22, '2', '2', 'Chinnadurai', 'Tailor', 15000.00, 1, 0.00, 12000.00, 'Gingee', 'Tambaram', '2201030006', '1', '1', 'upload_files/candidate_tracker/70906036523_Nirmala resume-3.docx', NULL, '1', '2022-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication,will not handle the pressure and sustainability doubts', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-03 01:36:16', 64, '2022-01-03 02:40:03', 0, NULL, 1),
(7369, 'francy', '20', '9353457208', '', 'francyb7411@gmail.com', '2000-03-17', 21, '2', '2', 'benjamin', 'employee', 12000.00, 2, 0.00, 10000.00, 'yeshwanthpur', 'Yeshwanthpur', '2201030007', '1', '1', 'upload_files/candidate_tracker/66931644269_Francy.pdf', NULL, '1', '2022-01-03', 0, '', '1', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-03 03:15:06', 50, '2022-01-03 04:32:27', 0, NULL, 1),
(7370, 'S.Muthukumar', '31', '8072696278', '7598681726', 'muthukumarbe24@gmail.com', '2000-04-03', 21, '2', '2', 'Saravanan', 'Gold smith', 5000.00, 1, 0.00, 15000.00, 'Peravurani', 'Peravurani', '2201030008', '1', '1', 'upload_files/candidate_tracker/99712628160_RESUME24.pdf', NULL, '2', '2022-01-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-03 03:41:48', 1, '2022-01-03 03:44:48', 0, NULL, 1),
(7371, '', '0', '7978116279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201030009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-03 06:17:26', 0, NULL, 0, NULL, 1),
(7372, 'Purna chandra gouda', '5', '8327766926', '', 'purnachandragouda1996@gmail.com', '1996-04-01', 25, '2', '2', 'Bideshi gouda', 'Farmer', 14000.00, 3, 16000.00, 20000.00, 'Odisha', 'Bangalore', '2201030010', '22', '2', 'upload_files/candidate_tracker/69302627098_Purna_Resume.docx', NULL, '1', '2022-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-03 06:17:28', 1, '2022-01-03 06:30:19', 0, NULL, 1),
(7373, '', '0', '8456861012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-03 06:22:21', 0, NULL, 0, NULL, 1),
(7374, 'R.ureka', '23', '9500265655', '', 'Urekadoll.08@gamil.com', '2001-03-16', 20, '2', '2', 'Ravichandran.p', 'EX Army', 20000.00, 0, 0.00, 15000.00, 'valangaiman, Thiruvarur Dt', 'Mount road, Chennai', '2201030012', '1', '1', 'upload_files/candidate_tracker/15251025708_ Resume_R.Ureka.pdf', NULL, '3', '2022-01-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-03 06:48:22', 1, '2022-01-03 09:44:42', 0, NULL, 1),
(7375, 'Vijay .K', '11', '8610172867', '', 'vijaysabari.k@gmail.com', '1998-06-22', 23, '2', '2', 'Kannan .R', 'Driver', 15000.00, 1, 0.00, 12000.00, 'Dindigul', 'Chennai', '2201030013', '1', '1', 'upload_files/candidate_tracker/52499153065_Resume .pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication will not sustain not suitable ', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-03 07:54:09', 1, '2022-01-03 07:58:58', 0, NULL, 1),
(7376, 'G Ramaraj', '11', '9003610964', '8220523170', 'ramarajpadmavathi@gmail.com', '1996-06-10', 25, '2', '2', 'R.Gajendhiran (father)', 'Farmer', 100000.00, 1, 0.00, 12000.00, 'Pondicherry', 'Chennai', '2201040001', '1', '1', 'upload_files/candidate_tracker/12091490225_Add.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,No confidence,handling Pressure Doubts will not sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-04 08:38:05', 60, '2022-01-05 04:35:37', 0, NULL, 1),
(7377, 'Praveen A', '6', '7904448312', '7200240207', 'praveen.a24081998@gmail.com', '1998-08-24', 23, '2', '2', 'Karpagam A', 'Daily Wages', 126000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2201040002', '1', '1', 'upload_files/candidate_tracker/81413382940_Praveen A MBA (New) Resume.pdf', NULL, '1', '2022-01-04', 0, '', '3', '59', '1970-01-01', 185000.00, '', '2', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-04 10:39:48', 60, '2022-01-06 07:28:55', 0, NULL, 1),
(7378, 'R.Shanmuga Priyan', '4', '8870175010', '', 'shanmugapriyan1025@gmail.com', '2000-10-25', 21, '2', '2', 'Raj kumar S', 'Driver', 45000.00, 1, 10000.00, 15000.00, 'Ponneri', 'Ponneri', '2201040003', '1', '2', 'upload_files/candidate_tracker/69342263783_priyan resume 1.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-01-04 10:43:14', 1, '2022-01-04 11:06:52', 0, NULL, 1),
(7379, 'E Raghul', '4', '7373539371', '', 'raghulragu55@gmail.com', '1998-07-30', 23, '2', '2', 'C Elumalai', 'Welder', 82000.00, 2, 10000.00, 15000.00, 'Ponneri', 'Ponneri', '2201040004', '1', '2', 'upload_files/candidate_tracker/98136920126_Raghul Resume.docx', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have a part time job as karate Coach,Salary Exp is very high,not suitable for CRM', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-01-04 10:46:24', 1, '2022-01-04 10:55:22', 0, NULL, 1),
(7380, 'C Vijaya kumar', '4', '9884907623', '', 'vijaybarathi147@gmail.com', '2000-07-14', 21, '2', '2', 'Jaya barathi', 'Tailor', 8000.00, 1, 10000.00, 15000.00, 'Ponneri', 'Ponneri', '2201040005', '1', '2', 'upload_files/candidate_tracker/80062821276_vijaya Kumar resume.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-01-04 10:48:29', 1, '2022-01-04 10:56:16', 0, NULL, 1),
(7381, 'Ajith Kumar E', '4', '9715853060', '', 'ajithsivagami0679@gmail.com', '1996-05-28', 25, '2', '2', 'Sivagami', 'Cooli', 8000.00, 0, 12000.00, 15000.00, 'Ponneri', 'Ponneri', '2201040006', '1', '2', 'upload_files/candidate_tracker/24231629563_5_6242303629760398274.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary Exp Is Very High,Came For Interview As A Group,Will Not Join If Others Didnt Get Opportunity.Not Open For Field Sales Too Compare To The Salary Exp', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-04 11:04:19', 60, '2022-01-04 03:26:16', 0, NULL, 1),
(7382, 'Aarthi.p', '4', '9025684859', '', 'aarthip1034@gmail.com', '2001-07-28', 20, '2', '2', 'Pachaidurai', 'Store', 100000.00, 2, 0.00, 15000.00, 'Thiruvallur', 'Manavalanagar', '2201040007', '1', '1', 'upload_files/candidate_tracker/97710136324_AARTHI.P_Color Format – 07.pdf', NULL, '1', '2022-01-04', 0, '', '5', '73', NULL, 0.00, '', '0', NULL, '1', 'Job no need, Parents not accept to job so rejected. ', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-04 11:07:12', 1, '2022-01-04 11:28:45', 0, NULL, 1),
(7383, '', '0', '8508793982', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201040008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-04 11:22:00', 0, NULL, 0, NULL, 1),
(7384, 'Santhosh Kumar', '6', '9551763375', '9087549646', 'santhoshsandy1415@gmail.com', '1997-10-15', 24, '2', '2', 'K.durairaj', 'Auto driver', 10000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2201040009', '1', '2', 'upload_files/candidate_tracker/69175385031_santhosh_resume.docx', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Non Voice Exp ,no communication, looking only for non voice process', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-04 11:37:32', 1, '2022-01-04 11:45:22', 0, NULL, 1),
(7385, 'Ajith Kumar.M', '4', '9524863015', '', '1523003@saec.ac.in', '1997-11-19', 24, '3', '2', 'Madhavan', 'Daily wages', 120000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2201040010', '', '1', 'upload_files/candidate_tracker/50796111053_AJITH RESUME.pdf', NULL, '1', '2022-01-04', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is looking for non Voice xxamp trying job IT field. Sustainability is highly doubt. So Rejected. ', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-04 11:45:17', 60, '2022-01-04 03:27:02', 0, NULL, 1),
(7386, 'prince richard', '17', '8680944161', '', 'princyrich44@gmail.com', '1996-12-23', 25, '1', '2', 'Paul samuel', 'Physical education director', 100000.00, 1, 25000.00, 25000.00, 'Chengalpattu', 'Chennai', '2201040011', '', '2', 'upload_files/candidate_tracker/53341075523_Prince Richard resume.docx', NULL, '1', '2022-01-04', 1, 'P1282', '3', '59', '2022-01-12', 300000.00, '', '6', '2022-08-01', '1', 'Selected for Sarath Team,Gaurav have given a commitment on salary revisal based on the Target achievement of 2L each for 2 months with 15%', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Link Document mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-04 11:57:25', 60, '2022-01-11 05:26:37', 0, NULL, 1),
(7387, 'S suriya', '22', '7449095086', '', 'suriyagoutham4@gmail.com', '1997-10-24', 24, '3', '2', 'G SELVARAJ', 'Painter', 15000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2201040012', '', '1', 'upload_files/candidate_tracker/71504288035_bba resume.pdf', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no communication, have B2B sales only, will not sustain for a long.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-04 01:06:02', 1, '2022-01-04 01:14:27', 0, NULL, 1),
(7388, 'PONNI.P', '4', '7904757180', '7305517180', 'vaayaadiabi@gmail.com', '2001-05-05', 20, '2', '2', 'Lakshmi.p', 'House keeping', 20000.00, 1, 16000.00, 15000.00, 'Tharamai', 'Anna nagar', '2201040013', '1', '2', 'upload_files/candidate_tracker/94722647411_Ponni Resume.docx', NULL, '1', '2022-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped she didnt turn as her friend got rejected in the interview', '1', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-04 01:14:25', 1, '2022-01-04 02:42:19', 0, NULL, 1),
(7389, 'Archana G', '4', '9944203526', '6369438008', 'archanagnanavelan@gmail.com', '2001-06-18', 20, '2', '2', 'R.Gnanavelan', 'Farmer', 36000.00, 1, 16000.00, 15000.00, 'Nagapattinam', 'Anna nagar', '2201040014', '1', '2', 'upload_files/candidate_tracker/81385920276_Archana resume_Translated.docx', NULL, '1', '2022-01-04', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '1', 'not fit for telesales', '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-04 01:16:50', 1, '2022-01-04 01:27:11', 0, NULL, 1),
(7390, '', '0', '7979116279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201040015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-04 02:16:03', 0, NULL, 0, NULL, 1),
(7391, 'Chaitra B L', '5', '8660614815', '8970549088', 'chaithralakshman26@gmail.com', '2007-01-04', 0, '2', '2', 'Lakshman.bc', 'Own business', 50.00, 1, 0.00, 20.00, 'BANGALORE', 'BANGALORE', '2201040016', '22', '1', 'upload_files/candidate_tracker/74009923695_file1.pdf', NULL, '1', '2022-01-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-04 07:06:28', 1, '2022-01-04 07:08:46', 0, NULL, 1),
(7392, 'divya', '4', '6383696396', '', 'meraclin68@gmail.com', '2000-06-02', 21, '2', '2', 'masilamani', 'employee', 11000.00, 2, 0.00, 10000.00, 'tiruvallur', 'Tiruvallur', '2201050001', '1', '1', 'upload_files/candidate_tracker/33630909401_RESUME DIVYA.pdf', NULL, '1', '2022-01-05', 0, '', '3', '59', '2022-01-06', 126000.00, '', '2', '1970-01-01', '2', 'Selected for Tiruvallur Team in Consultant 5% TDS,can give a try 5050 profile', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-05 10:11:17', 60, '2022-01-12 01:17:08', 0, NULL, 1),
(7393, 'Prabhakaran B', '4', '7338971968', '', 'prabhabaskaran96@gmail.com', '1996-01-14', 25, '3', '2', 'Baskaran', 'Mason ( Buliding work)', 12000.00, 1, 13000.00, 15000.00, 'No.6 Eswaran nagar 1st cross street Thiruverkadu', 'Chennai', '2201050002', '', '2', 'upload_files/candidate_tracker/27169616780_Prabha21.docx.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for Non Voice Process,not suitable for our roles', '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-05 10:12:42', 1, '2022-01-05 10:21:36', 0, NULL, 1),
(7394, 'Sathyan D', '4', '9344815149', '9710522230', 'sathyand95@gmail.com', '1995-02-27', 26, '3', '2', 'Dharmalingam K', 'Plumber', 12000.00, 0, 13000.00, 16000.00, '4/230 nakkirar street, jJ Nagar, moggpair', 'Chennai:600037', '2201050003', '', '2', 'upload_files/candidate_tracker/40261355482_RESUME....docx', NULL, '1', '2022-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice or networking profile only\n', '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-05 10:13:21', 1, '2022-01-05 10:21:44', 0, NULL, 1),
(7395, 'Sivaramakrishnan V', '4', '8903510669', '', 'Sivaramkrishnan8111@gmail.com', '1995-02-18', 26, '3', '1', 'Venkasubramani', 'Chennai', 25000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2201050004', '', '2', 'upload_files/candidate_tracker/4661094619_Siva Resume 143.docx', NULL, '1', '2022-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non voice Process only', '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-05 10:13:54', 1, '2022-01-05 10:33:46', 0, NULL, 1),
(7396, 'P. Deepika', '4', '6385948458', '', 'deepidhichu02@gmail.com', '2001-01-02', 21, '2', '2', 'A.Purushothaman', 'Father', 15000.00, 1, 8000.00, 12000.00, 'Ponneri', 'Ponneri', '2201050005', '3', '2', 'upload_files/candidate_tracker/96341068852_file_05Jan22.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance not ready to relocate,will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-05 11:30:20', 60, '2022-01-05 06:41:34', 0, NULL, 1),
(7397, 'Nivetha .G', '4', '8122592626', '', 'nivethanivetha2017319@gmail.com', '2001-12-23', 20, '2', '2', 'Kumar', 'Farmer', 20000.00, 2, 8000.00, 12000.00, 'Ponneri', 'Ponneri', '2201050006', '3', '2', 'upload_files/candidate_tracker/9910204242_Add.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance Not Ready To Relocate,Will Not Sustain', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-05 11:30:44', 60, '2022-01-05 06:41:21', 0, NULL, 1),
(7398, 'Ajay Anthony. P', '4', '8248299303', '', 'ajayanthony509@gmail.com', '2001-03-15', 20, '3', '2', 'Periyanayagam', 'Security', 15000.00, 2, 0.00, 14000.00, 'Padappai', 'Padappai', '2201050007', '', '1', 'upload_files/candidate_tracker/57841501257_RESUME.pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Too long Distance around 64kms up and down,will not sustain for a long', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-05 12:00:12', 1, '2022-01-05 12:10:48', 0, NULL, 1),
(7399, '', '0', '7550191566', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201050008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-05 12:55:06', 0, NULL, 0, NULL, 1),
(7400, 'janani.K', '4', '9677011430', '7305509560', 'jananikannan561@gmail.Com', '2001-06-09', 20, '2', '2', 'kannan.L', 'coolie', 80000.00, 1, 0.00, 15000.00, 'maraimalainagar', 'maraimalainagar', '2201050009', '3', '1', 'upload_files/candidate_tracker/85714376739_Janani Resume(2).pdf', NULL, '1', '2022-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Non Voice only,Speaking but sustainability Doubts on this profile', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-05 12:57:21', 60, '2022-01-05 06:40:42', 0, NULL, 1),
(7401, 'Vinothkanna', '14', '8248528862', '', 'vinovino43198@gmail.com', '1999-05-07', 22, '2', '2', 'Murugan R', 'Cutting master', 100000.00, 3, 0.00, 20000.00, 'Dindigul', 'Pallavaram', '2201050010', '1', '1', 'upload_files/candidate_tracker/62748924492_VinothKanna-Resume.pdf', NULL, '3', '2022-01-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1008', '0', NULL, NULL, NULL, 1, '2022-01-05 02:54:58', 1, '2022-01-05 03:04:51', 0, NULL, 1),
(7402, 'Dheepeka', '11', '9087024709', '', 'deepikasre1998@gmail.com', '1998-07-07', 23, '2', '2', 'E.DHAMODHARAN', 'Emboraidery', 12000.00, 2, 12000.00, 10000.00, 'Chennai', 'Chennai', '2201050011', '1', '2', 'upload_files/candidate_tracker/46230514976_Document (2)-2.pdf', NULL, '1', '2022-01-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-05 03:50:36', 60, '2022-01-05 04:50:44', 0, NULL, 1),
(7403, '', '0', '9550821142', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-05 09:15:03', 0, NULL, 0, NULL, 1),
(7404, 'Vikas.B', '4', '9789829206', '', 'b.vikash.2000@gmail.com', '2000-04-15', 21, '1', '2', 'Sankari.b', 'Eletrition', 12000.00, 1, 12000.00, 15000.00, 'Chennai', 'chennai', '2201060001', '', '2', 'upload_files/candidate_tracker/80116505884_B.VIKAS - RESUME(2).pdf', NULL, '1', '2022-01-06', 2, 'Jops', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Salary Exp is High,not open for Field Sales,Will not Sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-06 10:10:58', 1, '2022-01-06 10:32:46', 0, NULL, 1),
(7405, 'DINESH KUMAR SRINIVASAN', '4', '9840271059', '8124266297', 'RDJ8553@GMAIL.COM', '1998-01-04', 24, '2', '2', 'Geetha lakshmi', 'House wife', 15000.00, 1, 12000.00, 12000.00, 'Thiruvallur', 'Thiruvallur', '2201060002', '1', '2', 'upload_files/candidate_tracker/30908668305_Dinesh_Kumar_Resume.pdf', NULL, '1', '2022-01-06', 0, '', '3', '59', '2022-01-10', 126312.00, '', '2', '1970-01-01', '1', 'Selected for Tiruvallur Location in consultant role', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '9', 'Offer MAil Sent', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-06 11:16:54', 60, '2022-01-12 03:06:36', 0, NULL, 1),
(7406, '', '0', '9655995988', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201060003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-06 12:44:49', 0, NULL, 0, NULL, 1),
(7407, 'Nithin Y', '5', '7010769364', '8428391452', 'Nitinhunt1999@gmail.com', '1999-01-13', 22, '3', '2', 'Jothi Lakshmi', 'Tutor', 20000.00, 1, 24000.00, 24000.00, 'Chennai', 'chennai', '2201060004', '', '2', 'upload_files/candidate_tracker/27163149536_1250166000052611 _ 18-AUG-2020_17-SEP-2020(1).pdf', NULL, '1', '2022-01-06', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'Not fit for this profile\n', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-06 01:18:37', 1, '2022-01-06 02:39:25', 0, NULL, 1),
(7408, 'Revathi.M', '4', '9790659068', '6381377331', 'revathimanickavelu95@gmail.c', '1995-12-18', 26, '3', '2', 'Devasena', 'no', 10000.00, 2, 10000.00, 18000.00, 'Dharmapuri', 'chennai', '2201070001', '', '2', 'upload_files/candidate_tracker/47559639887_REVATHI.RESUME-converted(1).pdf', NULL, '1', '2022-01-07', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is average, looking for system admin roles, will not sustain for a long', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-07 10:00:17', 1, '2022-01-07 10:10:34', 0, NULL, 1),
(7409, 'Bala vignesh', '6', '9176222216', '', 'Findtoreachme@gmail.com', '1995-10-02', 26, '2', '2', 'Jeganathan', 'Tailor', 25000.00, 1, 16000.00, 17500.00, 'Velachery', 'Velachery', '2201070002', '1', '2', 'upload_files/candidate_tracker/76434109624_0_Resume...pdf', NULL, '1', '2022-01-07', 0, '', '3', '59', '1970-01-01', 240000.00, '', '2', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-01-07 11:06:01', 60, '2022-01-08 09:56:23', 0, NULL, 1),
(7410, 'Deepalakshmi A', '4', '9626975287', '7097188367', 'Lakshmideepa0307@gmail.com', '1996-07-03', 25, '2', '2', 'Arivalakan', 'Formar', 25000.00, 2, 19000.00, 19000.00, 'Medavakkam', 'Medavakkam', '2201070003', '1', '2', 'upload_files/candidate_tracker/92720863258_DEEPALAKSHMI Resume.pdf', NULL, '1', '2022-01-07', 0, '', '3', '59', '2022-01-10', 138948.00, '', '3', '2022-05-02', '2', 'Selected for Priyanka Jenit Team in Consultant Role - 5% TDS', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-07 11:19:31', 60, '2022-01-07 06:30:56', 0, NULL, 1),
(7411, 'J.deepan kumar', '6', '8220527160', '', 'vjdeepan97@gmail.com', '1998-05-20', 23, '2', '2', 'P.jeeva rathinam', 'Load man', 20000.00, 1, 15000.00, 15000.00, 'No 1/2 4th lane andiappan street old Washermenpet', 'Chennai', '2201070004', '1', '2', 'upload_files/candidate_tracker/33929856183_deepan.docx', NULL, '1', '2022-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Sales/Telecaller Exp,Low BP,will not handle our pressure,not open to take the targets xxamp pressure', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-07 11:51:09', 58, '2022-01-07 12:14:35', 0, NULL, 1),
(7412, 'mohammed aashiq', '11', '8939309890', '6369351652', 'smartaashiq1997@gmail.com', '2007-01-07', 0, '2', '2', 'haneef', 'studying', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2201070005', '1', '1', 'upload_files/candidate_tracker/49585019871_Md Aashiq CV-converted.pdf', NULL, '1', '2022-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2022-01-07 12:35:05', 1, '2022-01-07 12:39:33', 0, NULL, 1),
(7413, 'SK. AJMAL', '4', '8015409785', '', 'ajmalche03@gmail.com', '1998-07-03', 23, '2', '2', '7200775578', 'Fresher', 15000.00, 3, 0.00, 15000.00, 'No.26, V.M.X.complex, M.P.C.Nagar, Gummidipundi', 'No.26, V.M.X. complex, M.P.C.Nagar, Gummidipundi', '2201070006', '1', '1', 'upload_files/candidate_tracker/87700057290_Ajmal resume(1).pdf', NULL, '1', '2022-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance no Telecaller Exp only retail store Exp,Will not sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-01-07 01:21:11', 1, '2022-01-07 01:30:13', 0, NULL, 1),
(7414, 'Ramar G', '5', '8248380232', '7639862064', 'ramgv092@gmail.com', '1992-05-05', 29, '1', '2', 'Ganesan', 'Wages', 5000.00, 1, 19000.00, 25000.00, 'Kallakurichi', 'Chennai', '2201070007', '', '2', 'upload_files/candidate_tracker/88349497672_Ramar G Resume new 2022.docx', NULL, '1', '2022-01-07', 0, '55641', '3', '59', '2022-01-19', 299999.00, '', NULL, '2023-11-25', '1', 'Selected for Pandian Team,Candidate Exp is high,Team manager should give a mail commitment with the target based increment', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Link mail shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-07 02:55:44', 60, '2022-01-18 06:11:55', 0, NULL, 1),
(7415, 'R. Vigneshwaran', '4', '9788194404', '', 'vickycriz4322@gmail.com', '1997-10-19', 24, '2', '2', 'Rajamani p', 'Bank security', 15000.00, 1, 15000.00, 20000.00, 'Bodinayakanur', 'Ayyanavaram', '2201070008', '1', '2', 'upload_files/candidate_tracker/80742652622_VIGNESHWARAN.R-converted (1).pdf', NULL, '1', '2022-01-08', 0, '', '3', '59', '2022-01-10', 132000.00, '', '', '2022-01-21', '1', 'selected for muthu team in consultant role for 5% TDS', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-07 03:24:50', 60, '2022-01-08 05:28:56', 0, NULL, 1),
(7416, 'SAKTHI P', '4', '7094369475', '', 'sharmasakthi850@gmail.com', '1997-06-04', 24, '2', '2', 'Palanivel S', 'Agriculture', 10000.00, 0, 0.00, 15000.00, 'Gandravakkottai', 'Gandravakkottai', '2201070009', '1', '1', 'upload_files/candidate_tracker/20951233170_RESUME IJK-converted (2).pdf', NULL, '1', '2022-01-07', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-07 03:53:05', 58, '2022-01-07 06:34:38', 0, NULL, 1),
(7417, 'thilagavathy', '4', '9360046992', '', 'thilaga2330bhada@gmail.com', '2007-01-08', 0, '2', '2', 'rani', 'working', 10000.00, 1, 9000.00, 11000.00, 'Tiruvallur', 'Tiruvallur', '2201080001', '1', '2', 'upload_files/candidate_tracker/52714744160_G.THILAGAVATHI-Resume.pdf', NULL, '1', '2022-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-08 09:58:07', 1, '2022-01-08 10:01:06', 0, NULL, 1),
(7418, 'vijay', '6', '8608326387', '', 'vijaykrishnan578@gmail.com', '1998-08-08', 23, '2', '2', 'chandrasekar', 'carpenter', 10000.00, 4, 0.00, 12000.00, 'guduvanchery', 'ashok nagar', '2201080002', '1', '1', 'upload_files/candidate_tracker/14914129223_Resume.C.Vijay.docx.pdf', NULL, '1', '2022-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-08 10:07:51', 1, '2022-01-08 10:10:58', 0, NULL, 1),
(7419, 'saravana kumar', '11', '7603949143', '', 'rajsaravana999@gmail.com', '1997-04-24', 24, '2', '2', 'kannan', 'working', 10000.00, 1, 0.00, 10000.00, 'theni', 'theni', '2201080003', '1', '1', 'upload_files/candidate_tracker/37638376268_Resume 1 (1).pdf', NULL, '2', '2022-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Completed his graduation in 2019 and have exp in different domains, looking for HR position and the salary Exp is very high.We should consider this candidate as a fresher only with Internship,Will not sustain,not much comfort with TxxampC.. Had a telephoinic discussion. Sustainability doubts a lot', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-08 10:14:49', 1, '2022-01-08 10:18:38', 0, NULL, 1),
(7420, 'Marella.Hema Durga Kalyani', '25', '9392399905', '9652455539', 'hemamarella111@gmail.com', '2000-02-18', 21, '2', '2', 'M.Sujatha', 'Self-employe', 12000.00, 1, 15000.00, 21000.00, 'At Aghraharam 11th Line,Ap, Guntur', 'At Aghraharam 11thline, Guntur', '2201080004', '22', '2', 'upload_files/candidate_tracker/42159466359_HDK_RESUME_HR.pdf', NULL, '2', '2022-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-08 11:21:48', 1, '2022-01-08 02:02:16', 0, NULL, 1),
(7421, 'Syed Fahad Hussain', '5', '9550462912', '', 'sfahadhussain91@gmail.com', '1992-08-16', 29, '2', '2', 'syed ahamed', 'sales executive', 30000.00, 2, 15000.00, 20000.00, 'hyderabad', 'hyderabad', '2201080005', '1', '2', 'upload_files/candidate_tracker/86676824961_Fahad\'s.docx', NULL, '2', '2022-01-08', 0, '', '4', '40', NULL, 0.00, '', '0', NULL, '1', 'Candidate communication is good, degree incomplete and there is no sustainability in the previous exp. Have worked in retail store B2C/B2B.Salary Exp is ok, but there is no set of salary proof for previous experiences. Can be trained 50/50 profile. Have a bike but no laptop and he canxquott arrange it. He is available for F2F next week by Tuesday. Let Veben have a round of interview and decide on the profile.', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-08 12:04:37', 1, '2022-01-08 12:08:49', 0, NULL, 1),
(7422, 'K Vishwa Priya', '20', '8015306770', '', 'priyakp690@gmail.com', '1999-05-16', 22, '2', '2', 'Kumar s', 'Business', 50000.00, 1, 12000.00, 15000.00, 'Madhavaram', 'Madhavaram', '2201080006', '1', '2', 'upload_files/candidate_tracker/1868176460_RESUME vp(1).pdf', NULL, '1', '2022-01-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'have exp in both voice and non voice, sustaianability doubt as she is getting married in the month of march,also much prefers to work in non voice', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-08 12:35:39', 1, '2022-01-08 12:44:06', 0, NULL, 1),
(7423, 'Santhiya', '4', '8056418538', '', 'Santhyasuresh2707@gmail.com', '2000-07-27', 21, '2', '2', 'Suresh', 'Formar', 18000.00, 2, 13500.00, 15000.00, 'Tirunelveli', 'Mugapair west', '2201080007', '1', '2', 'upload_files/candidate_tracker/47752492581_santhiya resume 2021-1.pdf', NULL, '1', '2022-01-08', 0, '', '3', '59', '2022-01-10', 132000.00, '', '2', '1970-01-01', '2', 'Selected for Priyanka Jenit Elite PRofile in Consultant Role TDS 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-08 12:49:30', 60, '2022-01-12 03:05:51', 0, NULL, 1),
(7424, 'M.HemaDurga kalyani', '25', '6300515679', '9392399905', 'hemamarella111@gmail.com', '2000-02-18', 21, '2', '2', 'M Sujatha', 'Self employe', 15000.00, 1, 15000.00, 20000.00, 'At Aghraharam 11th line, Guntur', 'At Aghraharam 11th line, Guntur', '2201080008', '22', '2', 'upload_files/candidate_tracker/16742792334_HDK_RESUME_HR.pdf', NULL, '2', '2022-01-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-08 04:22:34', 1, '2022-01-08 04:26:43', 0, NULL, 1),
(7425, 'P.kaviya', '4', '9080528856', '9445646379', 'kaviya15p@gmail.com', '1999-11-15', 22, '2', '2', 'Parent', 'Tea stall', 100000.00, 1, 11500.00, 13000.00, 'Chengalpattu', 'Kodambakkam', '2201080009', '1', '2', 'upload_files/candidate_tracker/4791861094_NEW2.docx', NULL, '1', '2022-01-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Pressure handling doubts on this profile,timing she was not comfortable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-08 05:27:37', 60, '2022-01-11 07:03:51', 0, NULL, 1),
(7426, 'H HASHIM AHMED', '4', '8220663979', '', 'www.hashimahmed4047@gmail.com', '2001-07-28', 20, '2', '2', 'Hilal ahmed', 'Labour', 10000.00, 2, 15000.00, 16000.00, 'chennai', 'chennai', '2201080010', '1', '2', 'upload_files/candidate_tracker/72431101091_resume of Hash.pdf', NULL, '1', '2022-01-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1007', '0', NULL, NULL, NULL, 1, '2022-01-08 05:39:31', 1, '2022-01-10 10:37:28', 0, NULL, 1),
(7427, '', '0', '9177935936', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-09 10:31:19', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7428, 'P.sivasurya', '4', '6383814240', '', 'sivasurya1631999@gmail.com', '1999-03-16', 22, '2', '2', 'R.pichaimuthu', 'Farmer', 15000.00, 1, 0.00, 10000.00, 'Peravurani', 'Peravurani', '2201090002', '1', '1', 'upload_files/candidate_tracker/13315243248_Surya .pdf', NULL, '1', '2022-01-13', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-09 01:29:49', 58, '2022-01-17 06:19:28', 0, NULL, 1),
(7429, '', '0', '7338707260', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201100001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-10 10:02:12', 0, NULL, 0, NULL, 1),
(7430, '', '0', '8682851842', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201100002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-10 10:22:53', 0, NULL, 0, NULL, 1),
(7431, 'Shruthi s', '4', '7868941550', '', 'shruthi1550@gmail.com', '1995-06-22', 26, '1', '2', 'Nalini d', 'Teacher', 30000.00, 0, 0.00, 12500.00, 'Thanjavur', 'Thanjavur', '2201100003', '', '2', 'upload_files/candidate_tracker/57889422588_CV_2021-04-21-114241.pdf', NULL, '1', '2022-01-10', 0, 'Priyanka', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped,she already holds IRDA,currently workin in tata AIA,not interested', '1', '1', '0', '4', '5', '0', '2', '2022-01-11', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-10 10:48:24', 1, '2022-01-10 10:53:34', 0, NULL, 1),
(7432, 'R Monisha', '11', '9514332128', '8682851842', 'mssbrwnng@gmail.com', '1999-08-03', 22, '2', '2', 'K. s. Ravikumar', 'Real estate business', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2201100004', '1', '1', 'upload_files/candidate_tracker/40768400921_Browny.pdf', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non Voice only,but no Exp in Excel ', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-10 10:50:16', 1, '2022-01-10 11:10:00', 0, NULL, 1),
(7433, 'Ganesh k', '6', '7092251887', '8807723071', 'Ganesh19972233@gmail.com', '1997-12-22', 24, '2', '2', 'Valli k', 'Home Maker', 20000.00, 1, 12500.00, 15000.00, '4/300 neathaji st , pallavana nagar, chennai', '4/300 neathaji st , pallavana nagar,Chennai', '2201100005', '1', '2', 'upload_files/candidate_tracker/9938355246_Ganesh rusume-1.pdf', NULL, '1', '2022-01-10', 15, '', '3', '59', '2022-01-11', 186000.00, '', '4', '2022-01-28', '1', 'Selected for Syed Team with PF/ESI/PT deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Link', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-10 11:52:57', 60, '2022-01-10 05:25:24', 0, NULL, 1),
(7434, 'david', '6', '7305736455', '', 'davidmaran512@gmail.com', '2000-12-05', 21, '2', '2', 'maran', 'real estate', 40000.00, 0, 0.00, 12000.00, 'Perambur', 'Perambur', '2201100006', '1', '1', 'upload_files/candidate_tracker/20429155209_original resume.pdf', NULL, '1', '2022-01-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-10 11:59:40', 1, '2022-01-10 12:03:23', 0, NULL, 1),
(7435, 'Aishwareya', '5', '8861487754', '', 'sathaishu03@gmail.com', '1995-06-03', 26, '2', '2', 'sitrarasan', 'electrician', 20000.00, 1, 15000.00, 20000.00, 'banglore', 'Banglore', '2201100007', '1', '2', 'upload_files/candidate_tracker/50322639090_Aishwareya.C resume.pdf', NULL, '2', '2022-01-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Continuous RNR Dropped', '5', '1', '', '2', '2', '', '2', '2022-01-11', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-10 01:02:11', 58, '2022-01-10 01:26:53', 0, NULL, 1),
(7436, 'Saravana Moorthy N', '11', '7299667136', '9941067196', 'saravanamoorthy.n.10@gmail.com', '1995-10-10', 26, '2', '2', 'Shanthi N', 'House Wife', 18000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2201100008', '1', '2', 'upload_files/candidate_tracker/22668757582_Saravana 2021.docx', NULL, '1', '2022-01-11', 20, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Average Communication no ideas in the recruitment,Not comfort on TxxampC,Will not Sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-10 01:28:22', 1, '2022-01-10 01:35:26', 0, NULL, 1),
(7437, '', '0', '7993048127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201100009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-10 03:32:16', 0, NULL, 0, NULL, 1),
(7438, 'Nargis Shaik', '32', '9849318017', '', 'nargiswagon@yahoo.co.in', '1979-01-03', 43, '3', '1', 'Wajeed Shaik', 'Business', 200000.00, 2, 1180000.00, 500000.00, 'Hyderabad', 'Hyderabad', '2201100010', '', '2', 'upload_files/candidate_tracker/75785174515_Nargis Khan Resume.docx', NULL, '3', '2022-01-10', 0, '', '3', '59', '2022-01-17', 400000.00, '', '6', '2022-04-26', '1', 'Selected for Partner Channel-Hyderabad direct reporting to Suresh Sir Level 1 xxamp2', '5', '2', '1', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-10 03:40:46', 60, '2022-01-17 10:42:25', 0, NULL, 1),
(7439, 'hema r', '4', '9677536708', '9442357558', 'hemasmart78@gmail.com', '1996-06-07', 25, '2', '2', 'raja p', 'farmer', 25000.00, 2, 10000.00, 15000.00, 'namakkal', 'namakkal', '2201100011', '1', '2', 'upload_files/candidate_tracker/53772101336_R Hema Resume.pdf', NULL, '3', '2022-01-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-10 06:07:33', 1, '2022-01-10 06:37:30', 0, NULL, 1),
(7440, 'Schelsia .J', '11', '8778352984', '8525993321', 'jayanthschelsia@gmail.com', '2000-07-06', 21, '2', '2', 'Jayanth .A', 'Dance choreographer', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2201100012', '1', '1', 'upload_files/candidate_tracker/76493151809_orginal resume .docx', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Scheduled for 2nd round with Karthika,but left without attending as her friend got rejected in the final round', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-10 08:41:10', 1, '2022-01-12 08:46:17', 0, NULL, 1),
(7441, 'subash', '5', '8124016620', '', 'subhashrandy.45@gmail.com', '2007-01-11', 0, '2', '2', 'udaikumar', 'business', 40000.00, 1, 25000.00, 25000.00, 'ecr', 'Ecr', '2201110001', '1', '2', 'upload_files/candidate_tracker/64085076328_CURRICULUM VITAE.pdf', NULL, '1', '2022-01-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-11 09:56:42', 1, '2022-01-11 10:04:41', 0, NULL, 1),
(7442, 'suresh', '5', '7812879463', '', 'thamizhpaiyan001@gmail.com', '2000-05-23', 21, '2', '2', 'murugan', 'farmer', 25000.00, 1, 13000.00, 18000.00, 'chennai', 'Chennai', '2201110002', '1', '2', 'upload_files/candidate_tracker/62424440331_SH_01_RESUME[1].pdf', NULL, '1', '2022-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Attitude,no sustainability with the previous Exp,fresher for our sales,not ready to relocate distance around 40kms up and down', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-11 10:20:19', 1, '2022-01-11 10:24:00', 0, NULL, 1),
(7443, 'Sharmila.j', '4', '7397445576', '9962528854', 'Sharmilajaishankar11032001@gmail.com', '2001-03-11', 20, '2', '2', 'Suganthi.j', 'House wife', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2201110003', '1', '1', 'upload_files/candidate_tracker/54133149557_1250166000052611 _ 18-AUG-2020_17-SEP-2020(1).pdf', NULL, '1', '2022-01-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Nonvoice and much prefers to work in the same domain,for time being open for Voice Process,Will not sustain for a long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-11 10:50:13', 58, '2022-01-11 11:30:42', 0, NULL, 1),
(7444, 'Saranya.g', '4', '9962316159', '7448738258', 'saro79532@gmail.com', '2000-04-29', 21, '2', '2', 't.gopalakrishnan', 'Security mam', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2201110004', '1', '1', 'upload_files/candidate_tracker/16885931817_G.saranya 3rd year B.sc Maths.pdf', NULL, '1', '2022-01-11', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for telesales and expected salary also high', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-11 10:51:05', 58, '2022-01-11 11:40:49', 0, NULL, 1),
(7445, 'sivasankari.m', '5', '9176172647', '9884632027', 'sivasankarimanikandan92@gmail.com', '1992-12-02', 29, '2', '1', 'manikandan.j', 'admin executive', 20000.00, 2, 20000.00, 21000.00, 'chennai', 't.nagar', '2201110005', '22', '2', 'upload_files/candidate_tracker/1065719832_Sivasankari_Resume.pdf', NULL, '1', '2022-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 11:59:50', 1, '2022-01-11 12:15:08', 0, NULL, 1),
(7446, 'AbineshMarjalinRC', '4', '6383326140', '9043440559', 'abineshmarjalin2000@gmail.com', '2000-07-01', 21, '2', '2', 'RajaSinghM', 'Daily wages', 20000.00, 2, 14500.00, 15000.00, 'Avadi', 'Avadi', '2201110006', '1', '2', 'upload_files/candidate_tracker/93738327709_10e80d5e-ae2e-4848-95b9-d50119f8160a1630415600878Resume_Abinesh (3) (1).pdf', NULL, '1', '2022-01-11', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up,handling pressure no, Came along with her sister, if she didnt join he wont.Will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-11 12:21:35', 60, '2022-01-11 04:16:54', 0, NULL, 1),
(7447, 'Ajisha Marjalin R C', '11', '6374175545', '9043440559', 'ajishamarjalin25@gmail.com', '1999-03-25', 22, '2', '2', 'M. Raja Singh', 'Daily Wages', 20000.00, 2, 0.00, 14000.00, 'Morai', 'Morai', '2201110007', '1', '1', 'upload_files/candidate_tracker/21849613209_Ajisha_Marjalin__1628501176157.docx', NULL, '1', '2022-01-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Handling Pressure No,No basic knowledge in terms of skills,not suitable ', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1006', '', NULL, NULL, NULL, 1, '2022-01-11 12:25:02', 60, '2022-01-11 04:17:38', 0, NULL, 1),
(7448, '', '0', '8056811977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-11 12:34:01', 0, NULL, 0, NULL, 1),
(7449, 'sivakumar', '5', '9840272119', '', 'smartsathish60@gmail.com', '1994-07-01', 27, '2', '2', 'kanchana', 'ouse wife', 30000.00, 1, 15500.00, 20000.00, 'chennai', 'chennai', '2201110009', '1', '2', 'upload_files/candidate_tracker/92677103807_SIVAKUMAR.docx', NULL, '1', '2022-01-11', 7, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Final Round interviewed by Gaurav Sir and the Profile has been rejected. Will not sustain and not fit in our company roles. Seems to have much false communications.', '5', '1', '', '1', '1', '', '1', '2022-01-12', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-11 12:52:40', 60, '2022-01-12 02:32:51', 0, NULL, 1),
(7450, '', '', '', '', '', '1970-01-01', 0, '', '', '', '', 0.00, 0, 0.00, 0.00, '', '', '', '', '', '', NULL, '', '1970-01-01', 0, '', '6', '0', NULL, 0.00, '', '3', '2024-07-30', '', NULL, '', '2', '0', '', '', '0', '1', NULL, '', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 01:16:47', 1, '2022-01-11 01:19:08', 0, NULL, 1),
(7451, 'Ramkumar', '5', '8668194844', '', 'ramkumar.k8383@gmail.com', '1994-02-18', 27, '2', '2', 'karupaiya', 'passed away', 13000.00, 1, 13000.00, 18000.00, 'theni', 'theni', '2201110010', '1', '2', 'upload_files/candidate_tracker/77634661520_891b8008-9c2c-469d-a43b-cf388caa40a6resume_ramkumar__1_.docx', NULL, '2', '2022-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate no Response', '5', '1', '0', '1', '1', '0', '2', '2022-01-12', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-11 01:20:57', 1, '2022-01-11 01:24:23', 0, NULL, 1),
(7452, 'praveenraj k', '4', '9884446498', '9791067550', 'praveensss55559@gmail.com', '2000-01-06', 22, '1', '2', 'magesh', 'sintex', 18000.00, 1, 0.00, 10000.00, 'urapakkam', 'urapakkam', '2201110011', '', '1', 'upload_files/candidate_tracker/11111733851_pravennraj 2.pdf', NULL, '1', '2022-01-11', 0, 'p1002', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance ,no exp Fresher for telecaller,need to open up a lot,much comfort in non voice ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 02:32:11', 1, '2022-01-11 02:39:00', 0, NULL, 1),
(7453, 'S. vigneshwaran', '4', '8610832336', '7358020565', 'Anishmaha7602@gmail.com', '1999-10-27', 22, '1', '2', 'Manjula. S', 'System management', 15000.00, 1, 0.00, 11000.00, 'Urapakkam', 'Urapakkam', '2201110012', '', '1', 'upload_files/candidate_tracker/54472393880_Aneesh Resume-1.pdf', NULL, '1', '2022-01-11', 0, 'P1002', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non Voice process,will not sustain\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 02:33:06', 1, '2022-01-11 02:39:51', 0, NULL, 1),
(7454, 'Kalpana k', '4', '8220110701', '9566462033', 'dineshkarthick3117@gmail.com', '2000-03-13', 21, '2', '2', 'Kalimuthu S', 'Flower shop', 15000.00, 1, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2201110013', '1', '1', 'upload_files/candidate_tracker/70145684768_KALPANA K.docx', NULL, '1', '2022-01-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance from chengalpet,,Preparing for the bank exams,focus is on the govt jobs only,time being looking for openings,will not sustain in a long run,fresher\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-11 02:38:03', 60, '2022-01-11 04:42:33', 0, NULL, 1),
(7455, 'H.Mythili', '4', '8248986176', '8610595850', 'mythilihemraj@gmail.com', '1994-11-25', 27, '4', '2', 'K.Hemraj', 'Business', 20000.00, 1, 15000.00, 20000.00, 'No.40, Ponnappa street,purasiwalkam,chennai-84', 'Chennai', '2201110014', '', '2', 'upload_files/candidate_tracker/10850393576_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'She was into teaching and now open for voice/Non voice process,Interested to work much in the non pressure areas will not sustain for along', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 02:54:04', 1, '2022-01-11 03:06:28', 0, NULL, 1),
(7456, '', '0', '8838695120', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201110015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-11 03:05:19', 0, NULL, 0, NULL, 1),
(7457, 'RAJ KU MAR.S', '11', '7358240198', '', 'maniraj8363@gmail.com', '1998-06-12', 23, '2', '2', 'M.Sekar.', 'Catring service.', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2201110016', '1', '2', 'upload_files/candidate_tracker/92461026544_raj profile.pdf', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in the recruitment,Pressure handling Doubt,Will not sustain', '6', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-11 03:34:41', 1, '2022-01-12 04:05:23', 0, NULL, 1),
(7458, 'Gowtham D', '11', '7904355372', '', 'dgowtham287@gmail.com', '2000-04-01', 21, '2', '2', 'Na', 'Na', 240000.00, 1, 165964.00, 300000.00, 'Chennai', 'Chennai', '2201110017', '1', '2', 'upload_files/candidate_tracker/54413863579_New Resume_Gowtham.pdf', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt come back and got another offer too', '6', '2', '0', '1', '1', '0', '2', '2022-01-13', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-11 05:42:29', 1, '2022-01-11 05:53:33', 0, NULL, 1),
(7459, 'DHARMESH. B', '11', '8056141841', '', 'bdharmeshrao@gmail.com', '1999-04-13', 22, '2', '2', 'G. Babu rao', 'OFFICE BOY(CHENNAI FORD)', 8000.00, 1, 0.00, 23000.00, 'CHENNAI', 'CHENNAI', '2201110018', '1', '2', 'upload_files/candidate_tracker/16647338561_1st edited work resume 1.pdf', NULL, '1', '2022-01-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-11 06:30:05', 1, '2022-01-11 06:36:37', 0, NULL, 1),
(7460, 'Sanjanaa.S', '4', '9841013396', '9150992410', 'sanjuusann0110@gmail.com', '2001-10-10', 20, '2', '2', 'Shanthi', 'Student', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2201110019', '14', '1', 'upload_files/candidate_tracker/27903035407_Sanjanaa_1641889564081 (1).pdf', NULL, '1', '2022-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-11 09:22:37', 1, '2022-01-11 09:41:03', 0, NULL, 1),
(7461, '', '0', '7338947734', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201110020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-11 09:30:28', 0, NULL, 0, NULL, 1),
(7462, '', '0', '7904052783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201120001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-12 08:55:48', 0, NULL, 0, NULL, 1),
(7463, 'Muthumari M', '4', '9361972098', '', 'muthumurugesan14@gmail.com', '1996-01-14', 25, '2', '1', 'surya', 'supervisor', 22000.00, 2, 15000.00, 15000.00, 'thiruvallur', 'Thiruvallur', '2201120002', '1', '2', 'upload_files/candidate_tracker/96448815588_MUTHUMARI M New.pdf.PDF', NULL, '1', '2022-01-12', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'expected salary very high and try to job for IT company. rejected.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-12 09:45:41', 58, '2022-01-12 02:33:56', 0, NULL, 1),
(7464, 'B.Mohsin', '11', '7550276400', '', 'jobimohsin@gmail.com', '2001-10-02', 20, '1', '2', 'Parent', 'Account clerk', 1200000.00, 2, 0.00, 15000.00, 'No 19/2 nainiappan garden old washermenpet ch21', 'No 19/2 nainiappan garden old washermenpet ch21', '2201120003', '', '1', 'upload_files/candidate_tracker/14155485251_imgtopdf_1201221041013.pdf.pdf', NULL, '1', '2022-01-12', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'College yet to complete, Will not sustain for a long,need to open up a lot\n', '6', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-12 10:32:25', 1, '2022-01-12 10:44:17', 0, NULL, 1),
(7465, 'Pragadish G', '4', '8525099432', '8608854188', 'pragadish1234@gmail.com', '1999-08-16', 22, '1', '2', 'GNANASEKARAN D', 'Farmer', 40000.00, 2, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2201120004', '', '1', 'upload_files/candidate_tracker/91012317642_RESUME.docx', NULL, '1', '2022-01-12', 0, 'P1002', '3', '59', '2022-01-17', 132000.00, '', '3', '2022-02-01', '1', 'Selected for Sithyvinayagam Team in consultant mode - 5% TDS', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-12 01:13:19', 60, '2022-01-15 12:41:36', 0, NULL, 1),
(7466, 'vijaykumar', '6', '9940896315', '', 'vijayvenkar3010@gmail.com', '1999-10-30', 22, '2', '2', 'venkat', 'tailor', 15000.00, 1, 0.00, 12000.00, 'st.thomas mount', 'St.Thomas Mount', '2201120005', '1', '1', 'upload_files/candidate_tracker/83782103739_Adobe Scan Jan 12, 2022.pdf', NULL, '1', '2022-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-12 02:28:23', 1, '2022-01-12 02:31:37', 0, NULL, 1),
(7467, 'S.Ramki', '4', '9047975081', '9940896315', 'ramkiram121@gmail.com', '1999-09-13', 22, '2', '2', 'Sivaperumal', 'Office clerk', 15000.00, 0, 0.00, 10000.00, 'Tambaram', 'Tambaram', '2201120006', '1', '1', 'upload_files/candidate_tracker/31039810894_ram resume.pdf', NULL, '1', '2022-01-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-12 02:29:47', 1, '2022-01-12 03:50:38', 0, NULL, 1),
(7468, 'Rathi priya', '4', '7539906768', '8754836768', 'priyadhanapal0299@gmail.com', '1999-07-20', 22, '1', '2', 'Do. P.Dhanapal', 'Cylinder suplier', 25000.00, 1, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2201120007', '', '1', 'upload_files/candidate_tracker/33551538264_rathi priya NEW RESUME.docx', NULL, '1', '2022-01-12', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-12 03:18:20', 1, '2022-01-12 03:24:15', 0, NULL, 1),
(7469, 'Rathi priya', '4', '7539906767', '8754836768', 'priyadhanapal0299@gmail.com', '1999-07-20', 22, '1', '2', 'Dhanapal', 'Cylinder suplier', 25000.00, 1, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2201120008', '', '1', 'upload_files/candidate_tracker/58184444378_rathi priya NEW RESUME.docx', NULL, '1', '2022-01-12', 0, 'P1023', '3', '59', '2022-01-17', 126312.00, '', '3', '2022-03-01', '2', 'Selected for Sithy Thanjavur Team in Consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-12 03:25:35', 60, '2022-01-17 06:32:27', 0, NULL, 1),
(7470, 'bhavani', '4', '7358561143', '', 'sbbhavani43@gmail.com', '2000-10-24', 21, '2', '2', 'subramani', 'daily wages', 9000.00, 2, 0.00, 10000.00, 'royapuram', 'Royapuram', '2201120009', '1', '1', 'upload_files/candidate_tracker/82188284980_New Resume bhavani.pdf', NULL, '1', '2022-01-12', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-12 03:51:48', 60, '2022-01-12 06:04:28', 0, NULL, 1),
(7471, 'Mohanprasad D', '31', '9566086520', '', 'mohanprasad2798@gmail.com', '1998-07-27', 23, '2', '2', 'Dhanasekaran', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2201130001', '1', '1', 'upload_files/candidate_tracker/29809818370_mohanprasad.pdf', NULL, '1', '2022-01-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-13 10:23:54', 1, '2022-01-13 10:29:33', 0, NULL, 1),
(7472, 'priyanaka', '4', '8270638801', '', 'priyaavel@gmail.com', '1998-01-08', 24, '2', '2', 'chitravel', 'farmer', 16000.00, 2, 0.00, 10000.00, 'Thiruvarur', 'medavakkam', '2201130002', '1', '1', 'upload_files/candidate_tracker/19144979463_1642049778190_RESUME - prianka.pdf', NULL, '1', '2022-01-13', 0, '', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-13 10:28:34', 58, '2022-01-13 10:35:25', 0, NULL, 1),
(7473, 'Yoogesh', '6', '9500105677', '', 'yoogeshss@gmail.com', '1998-07-25', 23, '2', '2', 'Siva kumar .b.s', 'Self employed', 155000.00, 1, 0.00, 15000.00, '17 singarayan street metha nagar ii', 'Chennai', '2201130003', '1', '1', 'upload_files/candidate_tracker/4075133058_resume.doc', NULL, '1', '2022-01-13', 0, '', '3', '59', '2022-01-17', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team with PF/ESI.But candidate seems to be doubtful,need to analyse in 7 Days,', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-13 10:43:00', 60, '2022-01-15 01:10:08', 0, NULL, 1),
(7474, 'Harish s', '6', '7550153302', '9840873872', 'harishmaddy23@gmail.com', '2000-04-23', 21, '2', '2', 'Kalaivani', 'Business', 40000.00, 1, 12000.00, 15000.00, 'No 304 Dblock amaraprakash heritage chrompet', 'Chrompate', '2201130004', '1', '2', 'upload_files/candidate_tracker/31753722782_1642049778190_RESUME_-_prianka.pdf', NULL, '1', '2022-01-13', 0, '', '3', '59', '2022-01-17', 186000.00, '', '5', '1970-01-01', '1', 'Selected for Thiyagu Team - PF/ESI/PT,5050 Profile,sustainability Doubts', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-13 11:38:18', 60, '2022-01-15 01:30:09', 0, NULL, 1),
(7475, 'preethi', '4', '7397594702', '6379003638', 'ravipreethi012@gmail.com', '1999-11-04', 22, '1', '2', 'revathi', 'agriculture', 10000.00, 1, 0.00, 10000.00, 'pookara layam villar road thanjavur', 'thanjavur', '2201130005', '', '1', 'upload_files/candidate_tracker/14251300408_Preethi resume .docx', NULL, '1', '2022-01-13', 0, 'p1023', '3', '59', '2022-01-17', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur Team in Consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-13 11:42:24', 60, '2022-01-15 01:10:43', 0, NULL, 1),
(7476, 'Kiran I', '5', '8124262675', '', 'kiranasdf4717@gmail.com', '1998-04-25', 23, '2', '2', 'Indra Bahadur', 'Retired', 15000.00, 2, 13000.00, 18000.00, 'Manali new town chennai', 'Chennai', '2201130006', '1', '2', 'upload_files/candidate_tracker/80215065998_KIRAN RESUME.pdf', NULL, '1', '2022-01-13', 0, '', '5', '80', NULL, 0.00, '', '0', NULL, '1', 'Person not come for an final round', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-13 11:50:15', 1, '2022-01-13 11:58:20', 0, NULL, 1),
(7477, 'Mathew', '11', '9094427672', '', 'mathewdennis2505@gmail.com', '1998-07-25', 23, '3', '2', 'S. Dennis chelladurai', 'Cnc computer operator', 50000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2201130007', '', '1', 'upload_files/candidate_tracker/60694665537_my resume25_11132021 (1).docx', NULL, '1', '2022-01-13', 0, '', '5', '83', NULL, 0.00, '', '0', NULL, '1', 'candidate not willing to work for insurance sales', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-13 11:52:07', 1, '2022-01-13 11:57:13', 0, NULL, 1),
(7478, 'Pandurangan', '5', '8778667998', '9159265962', 'panduranganvpr@gmail.com', '1996-03-14', 25, '2', '2', 'Velu', 'Former', 200000.00, 0, 22000.00, 25000.00, 'Tindivanam', 'Tambaram', '2201130008', '17', '2', 'upload_files/candidate_tracker/15910780289_CV_2022-01-06-051930.pdf', NULL, '1', '2022-01-13', 0, '', '5', '83', NULL, 0.00, '', '0', NULL, '1', 'candidate expecting high salary xxamp will not be suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-13 11:53:20', 1, '2022-01-13 12:10:10', 0, NULL, 1),
(7479, 'Edwin Prakash', '11', '9123598927', '6381351728', 'edwinrose97@gmail.com', '1997-02-28', 24, '3', '2', 'Roselin', 'House wife', 25000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2201130009', '', '2', 'upload_files/candidate_tracker/58362794655_EDWIN_Resume_Format12.pdf', NULL, '1', '2022-01-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-13 12:08:52', 1, '2022-01-13 12:12:32', 0, NULL, 1),
(7480, 'Roselin L', '11', '8610441907', '', 'roselin97priskilla@gmail.com', '1997-02-17', 24, '3', '2', 'Vimala', 'Ntcl', 30000.00, 1, 15000.00, 16000.00, 'Chennai', 'Chennai', '2201130010', '', '2', 'upload_files/candidate_tracker/66232368616_Roselin_Resume_Format4.pdf', NULL, '1', '2022-01-13', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-13 12:09:35', 1, '2022-01-13 12:15:06', 0, NULL, 1),
(7481, 'Tamil sevi', '20', '8428165043', '', 'dgtamil97@gmail.com', '1997-10-03', 24, '3', '2', 'Dhakshna moorthy', 'Retired Tneb', 40000.00, 1, 13000.00, 17000.00, 'Chennai', 'T.nagar', '2201130011', '', '2', 'upload_files/candidate_tracker/27900597551_Tamil resume.pdf', NULL, '1', '2022-01-13', 0, '', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice process', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-01-13 12:39:03', 58, '2022-01-13 02:32:45', 0, NULL, 1),
(7482, 'mohamed riyaz m', '11', '7395970357', '', 'mohamedriyazm2411@gmail.com', '2000-05-15', 21, '2', '2', 'mujibre rahman s', 'tvs', 500000.00, 1, 0.00, 6000.00, 'porur', 'porur', '2201130012', '1', '1', 'upload_files/candidate_tracker/91029848413_Mohamed Riyaz M Resume.pdf', NULL, '1', '2022-01-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested ', '6', '1', '0', '1', '1', '0', '2', '2022-01-18', '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-13 02:10:24', 1, '2022-01-15 10:59:38', 0, NULL, 1),
(7483, '', '0', '7338968247', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201130013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-13 03:42:12', 0, NULL, 0, NULL, 1),
(7484, 'DILLI BABU V', '7', '8056916069', '8056090332', 'Karthiraina10@gmail.com', '1995-10-18', 26, '2', '2', 'M VELAN', 'Auto Driver', 15.00, 0, 14000.00, 20000.00, 'Broadway', 'Broadway', '2201170001', '4', '2', 'upload_files/candidate_tracker/94982905669_DilliBabu Profile.pdf', NULL, '1', '2022-01-17', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no relevant Exp,he is much into Backend process,but not much into Excels,Currently working and his notice is 30 Days ,Salary Exp is high, not open for Sales', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-17 10:52:04', 1, '2022-01-17 10:59:53', 0, NULL, 1),
(7485, 'Prashanth.U', '7', '7338753213', '9952949325', 'Itsmeprashanth07@gmail.com', '1996-11-07', 25, '2', '2', 'UnniKrishnan', 'Electrion', 20000.00, 0, 14500.00, 20000.00, 'Royapuram', 'Royapurama', '2201170002', '4', '2', 'upload_files/candidate_tracker/17740908421_prashanth.pdf', NULL, '1', '2021-12-02', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Relevant Exp, He Is Into Backend Process and looking for the same, But Not Much Into Excels, Currently Working And His Notice Is 30 Days ,Salary Exp Is High,', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-17 10:53:11', 99, '2022-12-02 11:47:07', 0, NULL, 1),
(7486, '', '0', '7397254908', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201170003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-17 01:22:08', 0, NULL, 0, NULL, 1),
(7487, '', '0', '8248210706', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201170004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-17 07:57:20', 0, NULL, 0, NULL, 1),
(7488, 'Santhosh.k', '4', '9361285764', '', 'santhoshtnb007@gmail.com', '2002-12-31', 19, '2', '2', 'No', 'Cnc machine operator', 12.00, 2, 0.00, 12.00, '2/1106 Anna street thozhur Thiruvallur 602025', '2/106 Anna street thozhur Thiruvallur 602025', '2201180001', '1', '1', 'upload_files/candidate_tracker/71807339441_Santhosh resume.docx', NULL, '1', '2022-01-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-18 10:05:41', 1, '2022-01-18 10:34:04', 0, NULL, 1),
(7489, 'S.SWETHA', '4', '6381876374', '6379714443', 'Swethaem0510@gmail.com', '1999-10-05', 22, '2', '2', 'V.selvan', 'B.sc', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2201180002', '1', '1', 'upload_files/candidate_tracker/96076282268_swetha.pdf', NULL, '3', '2022-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok but not much suit towards the sales, not comfortable with previous Exp as there was much pressure, sustainability Doubts on this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-18 11:08:43', 60, '2022-01-18 11:39:16', 0, NULL, 1),
(7490, 'S.Bhuvaneshwari', '4', '8189974678', '9500182521', 'Bhaviyasamy471@gmail.com', '2000-11-23', 21, '2', '2', 'A.Samy', 'Carpenter', 7000.00, 2, 0.00, 15000.00, 'Parumbakkam', 'Parumbakkam', '2201180003', '1', '1', 'upload_files/candidate_tracker/99017412745_cafs.pdf', NULL, '3', '2022-01-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Average Commuication,Too long Distance around 40kms up and down,Will not sustain and handling pressure no\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-18 11:10:26', 1, '2022-01-18 11:28:23', 0, NULL, 1),
(7491, 'S.GNANA SELSIYA', '4', '6379714443', '6382178066', 'gnanaselsiya24@gmail.com', '2000-09-24', 21, '2', '2', 'M.Selvan', 'BA.Economics', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2201180004', '1', '1', 'upload_files/candidate_tracker/62398832356_Gnana selsiya.pdf', NULL, '1', '2022-01-18', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not fit for telesales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-18 11:12:38', 1, '2022-01-18 11:19:34', 0, NULL, 1),
(7492, 'Karthikeyan', '4', '9344244610', '', 'karthimass077@gmail.com', '2000-11-14', 21, '1', '2', 'Dharmaraj', 'Not working', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2201180005', '', '1', 'upload_files/candidate_tracker/9344510590_Karthikeyan.D-5.pdf', NULL, '1', '2022-01-18', 0, 'P1003', '3', '59', '2022-01-19', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Muthu Team in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-18 11:32:40', 60, '2022-01-18 06:03:57', 0, NULL, 1),
(7493, '', '0', '9444365229', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201180006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-18 11:44:30', 0, NULL, 0, NULL, 1),
(7494, 'Sakiya Fathima', '11', '9791075992', '', 'Sakiyafathima110@gmail.com', '1997-11-19', 24, '2', '2', 'Irfan ali', 'Tailor', 30000.00, 1, 21600.00, 25000.00, 'Chennai', 'Chennai', '2201180007', '1', '2', 'upload_files/candidate_tracker/43748674545_I SAKIYA FATHIMA - Resume - 06.01.2022.docx', NULL, '1', '2022-01-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate not comfortable with the Pay', '6', '1', '0', '1', '1', '0', '2', '2022-01-19', '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-18 12:04:57', 1, '2022-01-18 12:11:39', 0, NULL, 1),
(7495, 'Arulraj A', '11', '8675815164', '7358684700', 'arulraja30@gmail.com', '1995-04-30', 26, '2', '2', 'Alphones', 'Office helper', 120000.00, 1, 12000.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2201180008', '1', '2', 'upload_files/candidate_tracker/44620628242_Arul Resume Mba New 2022.docx', NULL, '1', '2022-01-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication no,will not sustain not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-01-18 12:26:51', 1, '2022-01-18 12:35:09', 0, NULL, 1),
(7496, 'vijay', '5', '8489559616', '', 'vijayvid1503@gmail.com', '1997-03-15', 24, '2', '2', 'nagaraj', 'driver', 20000.00, 1, 14000.00, 20000.00, 'ossur', 'banglore', '2201180009', '1', '2', 'upload_files/candidate_tracker/20386740743_VIjay edited Resume (1) (1).docx', NULL, '2', '2022-01-17', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'did not come for interview', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-18 01:37:06', 58, '2022-01-18 02:45:38', 0, NULL, 1),
(7497, 'm.mohammed esa', '6', '9677777175', '9884166943', 'mdesa843@gmail.com', '2007-01-18', 0, '1', '1', 'moosa', 'painter', 20000.00, 1, 0.00, 18000.00, 'thangal', 'thangal', '2201180010', '', '1', 'upload_files/candidate_tracker/81102527134_Document from ????????.pdf', NULL, '1', '2022-01-18', 0, 'P1121', '3', '59', '1970-01-01', 186000.00, '', '2', '1970-01-01', '1', 'Ok for Ravi,need to analyse in 7 days of training', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Link mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-18 02:45:33', 60, '2022-01-18 06:03:38', 0, NULL, 1),
(7498, 'Mubeena S', '4', '9361076685', '7010268706', 'Saleemadam60385@gmail.com', '1996-06-23', 25, '2', '1', 'Syed Riyaz', 'Service advisor', 19000.00, 4, 0.00, 15.50, 'Abdul khader street, Anna Salai Chennai', 'Abdul leader street, Anna Salai Chennai', '2201180011', '1', '1', 'upload_files/candidate_tracker/6007210809_resume .pdf', NULL, '1', '2022-01-18', 0, '', '3', '59', '2022-01-24', 126312.00, '', '5', '1970-01-01', '2', 'Selected for B2B in 5% consultant', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-18 05:14:23', 60, '2022-01-21 03:50:08', 0, NULL, 1),
(7499, 'JANARTHANAN. S', '11', '9677119229', '', 'JANARTHANANSHANKAR55@GMAIL.COM', '1997-03-05', 24, '2', '2', 'Shankar', 'Building construction work', 12500.00, 1, 0.00, 15.00, 'No64/A Annai abirami nagar Thiruverkadu chennai 77', 'No64/A Annai Abirami nagar Thiruverkadu chennai 77', '2201180012', '1', '1', 'upload_files/candidate_tracker/82373761642_1618121086722_1618121075045_0_JANACV.pdf', NULL, '1', '2022-01-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Average, Fresher for Recruitment, no sustainability, Will not handle the pressure.Not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-18 06:07:13', 60, '2022-01-19 04:02:36', 0, NULL, 1),
(7500, 'Visalini. A', '4', '6381607637', '8248190664', 'visavisa124@gmail.co', '2000-07-31', 21, '1', '2', 'Ayyadurai. K', 'Former', 7000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thiruttani', '2201190001', '', '1', 'upload_files/candidate_tracker/86505016567_Document 6.pdf', NULL, '1', '2022-01-19', 0, 'B1002', '3', '59', '2022-01-24', 126312.00, '', '3', '2022-04-20', '2', 'Selected for Priyanka Jenit Team in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-19 09:55:50', 60, '2022-01-19 04:43:03', 0, NULL, 1),
(7501, 'senthil velan', '4', '9751631757', '', 'arun9751@gmail.com', '1999-04-24', 22, '2', '2', 'arumugam', 'farmer', 10000.00, 1, 0.00, 10000.00, 'trichy', 'Trichy', '2201190002', '1', '1', 'upload_files/candidate_tracker/38395760674_resume_Senthil velan.pdf', NULL, '2', '2022-01-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-19 10:54:02', 1, '2022-01-19 11:12:30', 0, NULL, 1),
(7502, 'S. Ahamed Basha', '4', '9728998829', '', 'ahamedbasha7863@gmail.com', '1996-07-14', 25, '1', '2', 'Samus kani .A', 'System work', 13000.00, 0, 0.00, 12000.00, 'Chrompet', 'Chrompet', '2201190003', '', '1', 'upload_files/candidate_tracker/41368857575_Resume-Basha-1.pdf', NULL, '3', '2022-01-19', 0, 'Job', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Non Voice pressure only, need to open a lot, Will not sustain and handle our pressure.Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-19 11:44:21', 1, '2022-01-19 11:55:58', 0, NULL, 1),
(7503, 'Saratha Preetha K P', '11', '9600464747', '', 'saradapreetha2498@gmail.com', '1998-04-02', 23, '2', '2', 'Pandian K', 'Retired BSNL officer', 35000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2201190004', '1', '1', 'upload_files/candidate_tracker/20341967895_Sarada resume (3).docx', NULL, '1', '2022-01-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-19 11:53:23', 60, '2022-01-21 06:32:52', 0, NULL, 1),
(7504, 'Sharmila Ashokan', '11', '7806858891', '9698310486', 'sharmiomi17@gmail.com', '1999-11-17', 22, '2', '2', 'Ashokan', 'Former', 20000.00, 2, 12.00, 14.00, 'No:649,Anna street,Vengal, Tiruvallur District', 'No:38,Bajanai Kovil Street,Thirumazhisai', '2201190005', '1', '2', 'upload_files/candidate_tracker/59009248913_black (CV)sharmi-converted.pdf', NULL, '3', '2022-01-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-19 01:10:14', 60, '2022-01-20 09:46:24', 0, NULL, 1),
(7505, 'Sharan Kumar', '11', '6381572102', '7448516565', 'Sharan.sko@gmail.com', '1999-08-15', 22, '2', '1', 'Vinitha', 'Technical Support', 30000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2201190006', '1', '2', 'upload_files/candidate_tracker/99274155635_Sharan SK Updated Resume...docx', NULL, '1', '2022-01-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average ,No Stability in the previous Exp, every Six months shifted and there are multiple reason. Doing a part time family business too. No ideas in the recruitment, earlier he worked just as a coordinator. Will not sustain and the Salary Exp is Very High.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-19 01:11:41', 58, '2022-01-19 02:55:35', 0, NULL, 1),
(7506, '', '0', '8189896311', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-19 03:12:08', 0, NULL, 0, NULL, 1),
(7507, 'J.lavanya', '4', '8949724103', '8189896311', 'jmsjeni2023@gmail.com', '1998-04-23', 23, '2', '1', 'A.silambarasan', 'Technician', 20000.00, 1, 14000.00, 15000.00, 'No16/22,palmore Street,west mambalam,ch-3', 'No.11/1,padavattamman Street,west mamblam,ch-33', '2201190008', '1', '2', 'upload_files/candidate_tracker/51043171323_WhatsApp Image 2022-01-19 at 3.36.36 PM-converted.pdf', NULL, '1', '2022-01-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok, not comfortable with the timings and the salary Exp is very high, will not sustain for a long, not comfort to take much calls.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-19 03:53:10', 1, '2022-01-19 03:59:26', 0, NULL, 1),
(7508, 'Suriya. S', '11', '9345423554', '', 'suriyasubramani32@gmail.com', '1999-07-06', 22, '3', '2', 'Ml. Subramani', 'Business man', 60000.00, 1, 25000.00, 20000.00, 'villupuram', 'Villupuram', '2201190009', '', '2', 'upload_files/candidate_tracker/56529343691_SURIYA RESUME 32.docx', NULL, '2', '2022-01-20', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-19 04:53:55', 1, '2022-01-19 05:08:20', 0, NULL, 1),
(7509, 'Kavitha S', '11', '9940183576', '9940184576', 'kavithasekar444@gmail.com', '1999-07-30', 22, '2', '1', 'Sathish Kumar PS', 'Internal audit manager', 30000.00, 1, 0.00, 15000.00, 'No 3 Avvai salai Stephanson road vyasarpadi ch 39', 'No 3 Avvai Salai Stephanson Road Vyasarpadi Ch 39', '2201190010', '1', '1', 'upload_files/candidate_tracker/4854498255_KAVITHA RESUME.pdf', NULL, '1', '2022-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-19 05:11:35', 1, '2022-01-19 05:43:24', 0, NULL, 1),
(7510, 'sharnila', '4', '6380873177', '', 'cathrineabi77@gmail.com', '2000-07-21', 21, '2', '2', 'dhanasekar', 'not working', 8000.00, 1, 0.00, 10000.00, 'kadambathur', 'Kadambathur', '2201190011', '1', '1', 'upload_files/candidate_tracker/27689335078_sharmila resume.docx', NULL, '1', '2022-01-20', 0, '', '3', '59', '2022-01-21', 126000.00, '', '', '2022-01-25', '2', 'Candidate seems to be slow,kindly analyse in 7 days of training,Proceed with the Joining Formalities.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-19 05:41:00', 60, '2022-01-20 05:17:15', 0, NULL, 1),
(7511, 'Kavitha S', '11', '9940184576', '9003000188', 'kavithasekar444@gmail.com', '1999-07-30', 22, '2', '1', 'Sathish Kumar PS', 'Internal audit manager', 30000.00, 1, 0.00, 15000.00, 'No 3 Avvai salai Stephanson road vyasarpadi ch 39', 'No 3 Avvai Salai Stephanson Road Vyasarpadi Ch 39', '2201190012', '1', '1', 'upload_files/candidate_tracker/19812491495_KAVITHA RESUME.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Fresher for Recruitment,no clear ideas in the recruitment,not much comfort on the timings,will not handle the pressure,not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-19 05:45:24', 1, '2022-01-19 05:47:26', 0, NULL, 1),
(7512, 'Gowri.c', '4', '6374532399', '9962956914', 'Gowrimicetich9@gmail.com', '1999-07-14', 22, '1', '2', 'Chandrasekeran', 'Tea master', 20000.00, 1, 10000.00, 13000.00, 'Padi', 'Padi', '2201190013', '', '2', 'upload_files/candidate_tracker/45539763408_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-20', 0, 'JOBS', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt turn back and will not sustain', '1', '1', '0', '1', '1', '0', '2', '2022-01-21', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-19 07:24:01', 1, '2022-01-20 11:51:14', 0, NULL, 1),
(7513, 'Hammathu Jahir Hussain.J', '6', '8056604267', '', 'hammadthahir10@gmail.com', '1998-03-31', 23, '2', '2', 'jahir husain', 'Professor', 15000.00, 2, 0.00, 12000.00, 'Triplicane', 'triplicane', '2201200001', '1', '1', 'upload_files/candidate_tracker/81415872884_Hammathu VITAR.pdf', NULL, '1', '2022-01-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-20 10:05:26', 1, '2022-01-20 10:09:52', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7514, 'kishore', '6', '9361798761', '', 'KISHOREKAMARAJ1234@GMAIL.COM', '1997-11-08', 24, '2', '2', 'Mathavan', 'retired', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2201200002', '1', '1', 'upload_files/candidate_tracker/18556181430_RESUME.DOCX', NULL, '1', '2022-01-20', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Star Health for 3 months,left due to pressure/continuous calls.Not ok for our roles,will not sustain.Handling Pressure no.Due to the releavnt Exp kinldy check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 10:11:51', 58, '2022-01-20 10:26:58', 0, NULL, 1),
(7515, 'JEGAN.K', '4', '7338997339', '9629521733', 'nithijegan57@gmail.com', '1999-01-31', 22, '1', '2', 'ROJAPPU.D', 'Police head constable', 18000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Maraimalainagar', '2201200003', '', '1', 'upload_files/candidate_tracker/64373821972_1250166000052611 _ 18-AUG-2020_17-SEP-2020(1).pdf', NULL, '1', '2022-01-20', 0, 'banupriya', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-20 10:13:03', 58, '2022-01-20 11:13:22', 0, NULL, 1),
(7516, 'banupriya', '4', '9751451447', '', 'banupriyadp@gmail.com', '2000-08-27', 21, '2', '2', 'partha sarathi', 'working', 15000.00, 1, 0.00, 10000.00, 'kadambattur', 'Kadambattur', '2201200004', '1', '1', 'upload_files/candidate_tracker/26886031464_D.P.BANUPRIYA. RESUME.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped,final Interview by banu priya and rejected as her salary Exp is too high', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 10:19:22', 58, '2022-01-20 11:17:06', 0, NULL, 1),
(7517, 'Rekha', '4', '9551519334', '', 'M.rekhamohan2020@gmail.com', '1991-08-05', 30, '2', '1', 'Magala', 'Cooly', 8000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2201200005', '1', '1', 'upload_files/candidate_tracker/12962096087_1642049778190_RESUME_-_prianka.pdf', NULL, '1', '2022-01-20', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'already marrieed 2 kids irukku but maturity level low and timing not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 10:21:23', 58, '2022-01-20 10:44:59', 0, NULL, 1),
(7518, 'Subhiksha', '4', '9884856401', '8939503266', 'Attitudesubi1209@gmail.com', '2000-09-12', 21, '2', '2', 'R. Kasthuri', 'Tailor', 10000.00, 1, 15000.00, 14500.00, 'Perambur', 'Perambur', '2201200006', '1', '2', 'upload_files/candidate_tracker/18761022987_subi resume 3.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'As Sales team requested for the SA, Candidate not interested with the same and she will not sustain for a long .Dropped', '1', '1', '', '1', '1', '', '2', '2022-01-21', '1', '1', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-20 11:02:42', 52, '2022-01-20 01:08:54', 0, NULL, 1),
(7519, 'C.Brintha', '4', '9600698861', '', 'printharaja542@gmail.com', '1995-07-24', 26, '1', '2', 'Parents', 'Farmer', 20000.00, 3, 9000.00, 10000.00, 'Poondi', 'Poondi', '2201200007', '', '2', 'upload_files/candidate_tracker/68976426200_resume brintha.docx', NULL, '1', '2022-01-20', 2, 'muthu', '3', '59', '2022-01-24', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B thanjavur Location, Consultant Role - 5% TDS', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '1', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-20 11:03:30', 60, '2022-01-22 04:21:30', 0, NULL, 1),
(7520, 'Saravanan b', '4', '8778578132', '7397306721', 'saravana1999vj@gmail.com', '1999-08-30', 22, '2', '2', 'B.gajalakshmi', 'House wife', 60000.00, 2, 13000.00, 15000.00, 'Chennai', 'Chennai', '2201200008', '1', '2', 'upload_files/candidate_tracker/87570498271_SARAVANAN RESUME(1)-converted.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Store Sales only ,pressure handling no,sustainability Doubts.Need to speak,Degree incomplete,not suitable', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 11:13:58', 58, '2022-01-20 11:29:12', 0, NULL, 1),
(7521, 'Ghanesh Karthick .D', '6', '9080838317', '9710234923', 'Ghaneshkarthick846@gmail', '1999-07-02', 22, '2', '2', 'Father', 'Cooly', 15000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2201200009', '1', '1', 'upload_files/candidate_tracker/25150942567_1642049778190_RESUME_-_prianka.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication Average,need to open up,Looking much for core Automobile domain, Will not sustain, comfortable to work much in the non voice ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-20 11:14:17', 58, '2022-01-20 11:43:42', 0, NULL, 1),
(7522, 'AJEETH H', '5', '8754701265', '8754603643', 'ajeethhari2811@gmail.com', '1999-11-28', 22, '1', '2', 'Harikrishnan', 'Farmer', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2201200010', '', '1', 'upload_files/candidate_tracker/95233976245_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-20', 0, 'P1264', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance no bike no laptop, fresher, need to open a lot ,will not handle our pressure.Not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-20 11:35:28', 1, '2022-01-20 11:43:09', 0, NULL, 1),
(7523, 'Bhuvaneshwaran G', '6', '9962032122', '8939534360', 'bhuvanesh0031@gmail.com', '1999-10-08', 22, '2', '2', 'G.MALLIKA', 'House wife', 200000.00, 1, 0.00, 25000.00, 'Madurai', 'Chennai', '2201200011', '17', '1', 'upload_files/candidate_tracker/10798792888_BHUVBANESH RESUME .pdf', NULL, '1', '2022-01-20', 0, '', '3', '59', '2022-01-24', 285696.00, '', '4', '2022-03-03', '1', 'Communication Ok, Have Exp In Paytm Sales, Can Be Trained As Rm, Kindly Check And Let Me Know Your Inputs\n\nselected for GK SIr team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Link Mail shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-20 11:58:59', 60, '2022-01-22 03:26:36', 0, NULL, 1),
(7524, 'Srinithy', '11', '8072773151', '9841799378', 'srinithysrinivas@gmail.com', '1997-12-09', 24, '2', '2', 'Sumathy', 'Self occupation', 120000.00, 1, 15000.00, 3.50, 'St.thomas Mount', 'St.thomas Mount', '2201200012', '1', '2', 'upload_files/candidate_tracker/3672856413_RESUME sri updated.doc.pdf', NULL, '2', '2022-01-25', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is good,have multiple intern Exp and the current is ready to pay her 4 LPA in 3 months time,Salary Exp is around 3.5 LPA,Will not sustain for a long', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-20 12:53:34', 60, '2022-01-25 04:49:43', 0, NULL, 1),
(7525, 'Mohamed riyasudeen', '13', '9791503069', '', 'riyasdeen4455@gmail.com', '2006-10-14', 15, '2', '2', 'Haseena', 'House wife', 30000.00, 2, 18500.00, 16000.00, 'Royapetha', 'Royapetha', '2201200013', '1', '2', 'upload_files/candidate_tracker/34384720453_resume riyas.pdf', NULL, '1', '2022-01-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no basic ideas in the IT domain,came along with the his freind for telecaller role,Need to open a lot,will not sustain in our roles,Salary Exp is very high,not suits', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-20 01:16:36', 1, '2022-01-20 01:20:43', 0, NULL, 1),
(7526, 'Rohini', '11', '7305629960', '', 'rohinibaskar3004@gmail.com', '2007-01-20', 15, '2', '2', '04-12-1999', 'Analyst at Springbord System Private limited', 20000.00, 1, 0.00, 12000.00, '58 Valmiki street thiruvanmiyur Chennai 41', '58 Valmiki street thiruvanmiyur Chennai 41', '2201200014', '1', '1', 'upload_files/candidate_tracker/98817541724_CV Rohini.pdf', NULL, '2', '2022-01-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfortable with TxxampC', '6', '2', '', '1', '1', '', '2', '2022-01-24', '1', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-20 06:21:32', 60, '2022-01-22 10:55:12', 0, NULL, 1),
(7527, 'Sushmitha Shiva Kumar', '4', '8056193551', '9566208637', 'sushmithashivakumar060@gmail.com', '2001-04-13', 20, '2', '2', 'Ambiga S', 'Sushmitha', 8000.00, 1, 0.00, 15000.00, 'Amjakarai', 'Amjakarai', '2201200015', '1', '1', 'upload_files/candidate_tracker/21679835942_sushmitha.S cv.docx', NULL, '1', '2022-01-21', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not suitable for this profile', '1', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-20 06:45:50', 1, '2022-01-21 05:16:14', 0, NULL, 1),
(7528, 'caroline', '11', '9789080220', '9962231833', 'acsofia1698@gmail.com', '1998-07-16', 23, '2', '1', 'arockiasamy', 'marketinghead', 30000.00, 0, 0.00, 25000.00, 'guduvanchery', 'guduvanchery', '2201200016', '1', '1', 'upload_files/candidate_tracker/66767111525_Caroline Sofia-CV.docx', NULL, '1', '2022-01-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interestde with txxampC', '6', '1', '0', '1', '1', '0', '2', '2022-01-22', '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-20 09:31:02', 1, '2022-01-20 09:35:34', 0, NULL, 1),
(7529, 'Udhaya surya', '11', '9047262901', '9042113532', 'Yuvanranjith3@gmail.com', '1999-01-31', 22, '2', '2', 'Thatchanamoorthi', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Velachery chennai', '2201210001', '1', '1', 'upload_files/candidate_tracker/37478201224_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Looking for recruitment Roles not for CRM,No basic ideas in the recruitment,will not sustain and handling pressure doubt', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-21 10:05:28', 58, '2022-01-21 10:27:31', 0, NULL, 1),
(7530, 'Priyadarshini. A', '11', '9176457065', '', 'priyadarsini927@gmail.com', '1998-07-28', 23, '2', '2', 'Ananda padmanadan. P', 'Self employed', 30000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2201210002', '1', '1', 'upload_files/candidate_tracker/91519406657_Priyadarshini resume 2022.pdf', NULL, '1', '2022-01-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok but very soft and slow,fresher for recruiter,need time to give confirmation on the SA also the Stipend pay,She was working in Healthcare night shift 15K TH. If she comes back let us decide', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-21 10:07:46', 1, '2022-01-22 12:40:28', 0, NULL, 1),
(7531, 'Megala.M', '4', '8428491835', '9940123691', 'Megalamurugan2025@gmail.com', '1999-04-25', 22, '2', '2', 'Murugan.P', 'Electrician', 12000.00, 2, 0.00, 15000.00, 'Guduvancheri', 'West Mambalam', '2201210003', '1', '1', 'upload_files/candidate_tracker/65446543174_Resume Megala.docx', NULL, '1', '2022-01-21', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not intrested in voice process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 10:37:22', 52, '2022-01-21 11:45:21', 0, NULL, 1),
(7532, 'Pavithra. m', '11', '8608014418', '', 'pavipavithra0507@gmail.com', '2001-07-05', 20, '2', '2', 'Murugan.P', 'Electrician', 12000.00, 2, 0.00, 15000.00, 'West Mambalam', 'West Mambalam', '2201210004', '1', '1', 'upload_files/candidate_tracker/59629724233_Pavithra Resume.pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Non voice Process , not fit for our operations and HR roles, will not sustain', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 10:38:14', 52, '2022-01-21 11:44:40', 0, NULL, 1),
(7533, 'Dhanush', '4', '6382559804', '8838006441', 'dd5826254@gmail.com', '2001-02-24', 20, '1', '2', 'Ravikumar', 'Painter', 20000.00, 1, 8000.00, 11000.00, 'Thirunindravuur', 'Koyambedu', '2201210005', '', '2', 'upload_files/candidate_tracker/2152261696_CV_2021-12-14-071838.pdf', NULL, '1', '2022-01-21', 0, 'P1003', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainabilty,3 months 2 companies changed,Career Gap.Graduation discontinued,not opne up, need to speak,will not sustain and handling pressure no', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-21 10:45:13', 60, '2022-01-21 12:41:47', 0, NULL, 1),
(7534, 'raghavi v', '11', '8144333115', '', 'raghavi.raaghu1@gmail.com', '1996-12-01', 25, '2', '2', 'vadivelu', 'business', 20000.00, 0, 11677.00, 15000.00, 'chennai', 'chennai', '2201210006', '1', '2', 'upload_files/candidate_tracker/64282805776_Raghavi_resume.pdf', NULL, '1', '2022-01-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, have 6 months exp in Recruitment, little attitude, but seems ok for the profile, scheduled her for the 2nd round but left without attending the interview', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-21 11:11:38', 1, '2022-01-21 03:43:03', 0, NULL, 1),
(7535, 'Diwakar s', '4', '8072336711', '9789329781', 'dmyc8880@gmail.com', '1999-09-15', 22, '2', '1', 'Subramani N', 'Vegetables Business', 25000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2201210007', '1', '1', 'upload_files/candidate_tracker/66902675089_Diwakar file.docx', NULL, '1', '2022-01-21', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He already having health issues so not suitable for this profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 11:35:37', 60, '2022-01-21 12:43:11', 0, NULL, 1),
(7536, 'Muhammad.H', '6', '7358282745', '8825575186', 'Muhammad786bilali@gmail.com', '2007-01-21', 0, '2', '2', 'S.M. Muhammad Hashim', 'Real Estate Consultant', 25000.00, 1, 18000.00, 20000.00, 'Manadi', 'Manadi', '2201210008', '1', '2', 'upload_files/candidate_tracker/18282961857_1642593170629_1642593169195_1642593162964_Muhammad Resume.pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,no relevant Exp,open for any positions for time being.he much prefers to work as Arabic Tutor/Looking for international vaccanicies too.He needs time to give his confirmation but sustainability doubts.If candidate comes back let us see.He much focus in the Salary part', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-21 12:19:20', 1, '2022-01-21 12:23:41', 0, NULL, 1),
(7537, 'Monaliza', '4', '9629443930', '', 'monaphilip19@gmail.com', '1998-10-19', 23, '2', '2', 'Fathima mary', 'House wife', 10000.00, 2, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2201210009', '1', '2', 'upload_files/candidate_tracker/37792342009_Monaliza_P Resume.docx', NULL, '1', '2022-01-21', 30, '', '3', '59', '2022-01-24', 151584.00, '', '', '2022-02-18', '1', 'Selected for B2B Thanjavur Consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-21 12:45:28', 60, '2022-01-22 06:19:19', 0, NULL, 1),
(7538, 'Mangayarkkarasi', '11', '9003744059', '', 'Mangai.sudan1020@gmail.com', '1989-02-21', 32, '2', '1', 'Rajasudan', 'Software Engineer', 1200000.00, 2, 12000.00, 25000.00, 'Mogappair', 'Mogappair', '2201210010', '1', '2', 'upload_files/candidate_tracker/59374144670_Mangai MA(HRM).docx', NULL, '1', '2022-01-21', 20, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Didnt turn back with her confirmation', '6', '2', '0', '1', '1', '0', '2', '2022-01-22', '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-21 12:47:57', 1, '2022-01-21 12:52:44', 0, NULL, 1),
(7539, 'Ashwin', '4', '8220133002', '9710674495', 'bobbypreethiammu@gmail.com', '2001-04-23', 20, '2', '2', 'Johnson', 'Driver', 25000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2201210011', '1', '1', 'upload_files/candidate_tracker/15546452795_4 sheet poster copy12.pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very Poor Candidate,no communication,Will not sustain,not suitable for our telecaller roles', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 01:10:32', 60, '2022-01-21 02:28:55', 0, NULL, 1),
(7540, '', '0', '8056192551', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201210012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-21 01:31:05', 0, NULL, 0, NULL, 1),
(7541, 'Dhanushkrishnan', '4', '9500780124', '7339368442', 'Dhanushkrishnan04@gmail.com', '1999-11-12', 22, '2', '2', 'Mohanakrishnan', 'Framer', 150000.00, 1, 8000.00, 12000.00, 'Chennai', 'Chennai', '2201210013', '1', '2', 'upload_files/candidate_tracker/816723370_DHANUSH RESUME (1).pdf', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Graduation,no importance on the job,College terminated due to attendance,Will not sustain for a long,not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 03:46:07', 60, '2022-01-21 06:26:40', 0, NULL, 1),
(7542, 'Mohamed mabruk husain', '4', '7339368442', '9500780124', 'Ishanmabruk02@gmail.com', '2002-03-13', 19, '2', '2', 'Zakir husain', 'Driver', 150000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2201210014', '1', '1', 'upload_files/candidate_tracker/72398696057_mohamed resume.docx', NULL, '1', '2022-01-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No graduation,not showing any interest on the job,will not handle the pressure and sustainability doubts', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-21 04:01:14', 60, '2022-01-21 06:26:16', 0, NULL, 1),
(7543, 'simitha s', '11', '8939223495', '', 'simithas19@gmail.com', '1998-06-10', 23, '2', '1', 'prasanth s', 'assistant manager', 30000.00, 0, 0.00, 20000.00, 'chebbaj', 'porur', '2201210015', '1', '1', 'upload_files/candidate_tracker/54005911806_simitha resume final.docx', NULL, '1', '2022-01-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-21 04:34:03', 1, '2022-01-21 04:37:55', 0, NULL, 1),
(7544, 'Muthilaksai B', '6', '7826880685', '', 'muthilaksai1969@gmail.com', '1996-06-07', 25, '2', '2', 'pakiyaraj', 'farmer', 12000.00, 1, 15000.00, 13000.00, 'ramanadhapuram', 'perumbakkam', '2201210016', '1', '2', 'upload_files/candidate_tracker/92514802549_Akshai Resume (1).docx', NULL, '2', '2022-01-21', 0, '', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'Communication okay. 3yrs in sales, but no document proof for the exp. Can be trained in RE level, Kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-21 06:08:00', 1, '2022-01-21 06:10:43', 0, NULL, 1),
(7545, '', '0', '9952742065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201210017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-21 08:18:50', 0, NULL, 0, NULL, 1),
(7546, 'Ansari. A', '4', '8428585800', '', 'ansaria7606@gmail.com', '2000-10-07', 21, '2', '2', 'Sarfunisha', 'No', 10000.00, 0, 0.00, 13000.00, 'Royapettah chennai', 'Royapettah chennai', '2201220001', '1', '1', 'upload_files/candidate_tracker/49936214821_Resume .pdf', NULL, '1', '2022-01-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for TElecaller,communication ok but slow,and much to prefer to work in Non voice process only', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-22 09:56:48', 60, '2022-01-22 10:57:44', 0, NULL, 1),
(7547, 'Anuradha', '4', '9941386204', '', 'kswati1806@gmail.com', '1975-04-14', 46, '2', '1', 'M.Kandaswamy (late)', 'Rice broker', 15000.00, 1, 0.00, 12000.00, '5 Karikalan stret kandachavadi', '5 Karikalan stret. Kandachavadi', '2201220002', '1', '1', 'upload_files/candidate_tracker/74636298600_PDF Gallery_20220122_122050.pdf', NULL, '1', '2022-01-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Aged profile, worked in multiple non voice domain, not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-22 12:11:33', 60, '2022-01-22 02:44:33', 0, NULL, 1),
(7548, 'Sangeetha B', '11', '6381946363', '', 'sangeetha99thirumal@gmail.com', '1999-09-25', 22, '2', '2', 'Kavitha', 'Assistant professor', 70000.00, 1, 0.00, 15000.00, 'Maduravoyal', 'Maduravoyal', '2201220003', '1', '1', 'upload_files/candidate_tracker/84227194238_pdf_20220121_220846_0000.pdf', NULL, '1', '2022-01-22', 0, '', '3', '59', '2022-02-01', 96000.00, '', '', '1970-01-01', '1', 'Selected as an employee 8k for 3 months then the salary will be revised after 3 moths - 1.6 yrs SA,no document submission', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-22 12:39:45', 60, '2022-01-22 02:45:02', 0, NULL, 1),
(7549, 'B.Periyathambi', '4', '9360501439', '8838512457', 'Periyathambiperiyathambi@gmail.com', '1999-06-23', 22, '2', '2', 'Valli', 'Valli', 10000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Maduravoyal', '2201220004', '1', '1', 'upload_files/candidate_tracker/62960624241_PERIYA_THAMBI_RESUME.docx', NULL, '1', '2022-01-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2022-01-22 12:57:36', 1, '2022-01-22 01:17:14', 0, NULL, 1),
(7550, 'Sam Nesakumar S', '6', '8610257675', '9940767529', 'samuelsolomon0709@gmail.com', '1996-12-09', 25, '1', '2', 'Suresh Kumar G', 'Teacher', 40000.00, 1, 0.00, 20000.00, 'VIRUDHUNAGAR', 'VIRUDHUNAGAR', '2201220005', '', '2', 'upload_files/candidate_tracker/33801847575_SAM RESUME.docx', NULL, '1', '2022-01-22', 0, '', '3', '59', '1970-01-01', 192000.00, '', '2', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Link shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-22 04:24:12', 60, '2022-01-22 06:26:40', 0, NULL, 1),
(7551, 'Joseph Amirtharaj', '4', '9952265647', '8610257615', 'jamirtharaj96@gmail.com', '1996-07-17', 25, '1', '2', '-', '-', 50000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Kallakurichi', '2201220006', '', '1', 'upload_files/candidate_tracker/10634295815_Joseph RESUME -.pdf', NULL, '1', '2022-01-22', 0, 'P1290', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open up a lot will not sustain\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-22 04:25:22', 1, '2022-01-22 04:36:30', 0, NULL, 1),
(7552, '', '0', '9952050039', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201220007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-22 04:27:48', 0, NULL, 0, NULL, 1),
(7553, 'Bharathi D', '4', '9789925123', '9952050039', 'tanishba13@gmail.com', '1986-09-13', 35, '1', '1', 'Kumaravel', 'Procurement', 25000.00, 2, 21000.00, 25000.00, 'Chennai', 'Chennai', '2201220008', '', '2', 'upload_files/candidate_tracker/71206556413_Bharathi_Resume.doc.docx', NULL, '1', '2022-01-22', 0, 'P1254', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable age around 35 will not handle our pressure will not sustain too', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-22 04:52:41', 1, '2022-01-22 05:01:32', 0, NULL, 1),
(7554, 'A.HELEN MARY', '11', '7358639727', '9840406408', 'helenanto27@gmail.com', '1997-07-27', 24, '2', '2', 'R. ANTONY SAMY', 'Retired', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2201230001', '1', '1', 'upload_files/candidate_tracker/24539151799_0_1642554484394Resume_Helen.doc', NULL, '1', '2022-01-24', 0, '', '3', '59', '2022-04-26', 170496.00, '', NULL, '2023-12-23', '1', 'Selected for 3 months intern with 7.5 K,then 12K TH with 208 Deductions - iJobs joined as a intern on 29 Jan 2022', '6', '1', '1', '1', '1', '1', '2', '2022-01-25', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-23 03:48:59', 60, '2023-05-22 11:10:27', 0, NULL, 1),
(7555, 'Elumalai', '4', '7200153941', '', 'elumalaikali81@gmail.com', '2000-07-19', 21, '2', '2', 'Vengadesan', 'Business', 25000.00, 2, 0.00, 16000.00, 'Villupuram', 'Villupuram', '2201240001', '22', '1', 'upload_files/candidate_tracker/58861313985_elumalai resume.pdf', NULL, '1', '2022-01-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice process ,will not handle the pressure Not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-24 10:07:36', 1, '2022-01-24 10:18:22', 0, NULL, 1),
(7556, 'Ramya. J', '4', '9361729293', '', 'Jesuramya612@gmail.com', '1998-09-03', 23, '2', '2', 'Jesuraj. M', 'Farmer', 12000.00, 2, 16000.00, 20000.00, 'Saidapet', 'Saidapet', '2201240002', '1', '2', 'upload_files/candidate_tracker/94197687173_j.ramya.pdf', NULL, '3', '2022-01-24', 0, '', '3', '59', '2022-02-14', 164208.00, '', '', '2022-02-18', '2', 'Selected for B2B in consultant 5% TDS', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer mail sent', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-24 10:35:25', 60, '2022-02-12 07:31:23', 0, NULL, 1),
(7557, 'Lokesh', '4', '9080249943', '7010663213', 'lokeshatp44@gmail.com', '2000-10-15', 21, '2', '2', 'Kumaran', 'Self employed', 17000.00, 1, 0.00, 17000.00, 'Thiruvallur', 'Thiruvallur', '2201240003', '22', '1', 'upload_files/candidate_tracker/23493159287_lokesh.K.pdf', NULL, '1', '2022-01-24', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for this profile', '1', '2', '0', '1', '1', '0', '2', '2022-02-10', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-24 10:45:20', 1, '2022-01-24 11:01:25', 0, NULL, 1),
(7558, 'Zavith Hussain R', '4', '6385830335', '9994769851', 'Javithjack41@gmail.com', '1999-08-07', 22, '2', '2', 'K.rasheeth', 'Fish shop', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'T.nagar', '2201240004', '1', '1', 'upload_files/candidate_tracker/88223776476_1250166000052611 _ 18-OCT-2021_17-NOV-2021.pdf', NULL, '1', '2022-01-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sustainability in the previous positions,Will not handle the pressure,personal marriage issue,will not focus much in work,will not sustain for a long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-24 11:34:10', 52, '2022-01-24 01:23:46', 0, NULL, 1),
(7559, 'R. Priyanka', '4', '9840606776', '9840295775', 'Priyankarr0108@gmail.com', '1997-08-01', 24, '2', '2', 'S. Raja', 'Boxing coach', 20000.00, 1, 0.00, 11000.00, '14/100ellaiamman colony teynampet chennai -86', 'Teynampet', '2201240005', '1', '1', 'upload_files/candidate_tracker/26150863760_Share Document RESUME Priyanka-8.docx', NULL, '1', '2022-01-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telecaller, need to speak, much comfort to work in non voice,will not sustain for long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-24 11:48:59', 52, '2022-01-24 01:24:45', 0, NULL, 1),
(7560, 'mohammed farhan m', '11', '6374496215', '7200559462', 'farhanmohammed615@gmail.com', '2000-01-11', 22, '2', '2', 'mohammed mustafa a', 'islamic teacher', 10000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2201240006', '1', '1', 'upload_files/candidate_tracker/80606508234_MD FARHAN NEW RESUME Dated Dec16th 2021.pdf', NULL, '1', '2022-01-25', 0, '', '3', '59', '2022-01-27', 120000.00, '', '0', NULL, '1', 'Selected as an intern for 5 months with 5K Stipend and 10K Salary thereafter,2 yrs SA 10/12 Submission- Selected by Gokul in the 2nd round', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-24 12:48:21', 1, '2022-01-24 12:52:02', 0, NULL, 1),
(7561, 'B.Rakesh', '4', '9176209600', '8939315303', 'nagamma1509@gmail.com', '2002-12-23', 19, '3', '2', 'Nagamma', 'House keeping', 5000.00, 2, 0.00, 15000.00, 'Korukkupet chennai', 'Korukkupet chennai', '2201240007', '', '1', 'upload_files/candidate_tracker/99317612791_1250166000052611 _ 18-NOV-2021_17-DEC-2021.pdf', NULL, '1', '2022-01-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Age 19yrs 12th passed, comfort to work in non voice process,too long distance too,Not Suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-24 01:02:35', 1, '2022-01-24 01:15:56', 0, NULL, 1),
(7562, 'PAZHANI M', '11', '9003443256', '9884221034', 'Pazhaniraja21@gmail.com', '1995-06-03', 26, '2', '2', 'Murugan', 'Pot maker', 6000.00, 2, 0.00, 25000.00, 'Tiruvannamalai', 'Coimbatore', '2201240008', '1', '1', 'upload_files/candidate_tracker/25782682820_Pazhani (HRM Payroll Questionnaire).pdf', NULL, '3', '2022-01-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-24 07:42:36', 1, '2022-01-24 07:46:47', 0, NULL, 1),
(7563, 'Sandhiya', '11', '8124628747', '8939369432', 'Sandhiyasri27@gmail.com', '1997-06-27', 24, '2', '2', 'Saravanan', 'Sales executive', 20000.00, 1, 15320.00, 16000.00, 'Tharamani', 'Tharamani', '2201240009', '1', '2', 'upload_files/candidate_tracker/27574507553_Resume.pdf', NULL, '1', '2022-01-25', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-24 07:49:27', 1, '2022-01-24 10:06:08', 0, NULL, 1),
(7564, 'Shaik Hamza thabraiz', '4', '9000539738', '9000631270', 'thabraizshaik@gmail.com', '1997-12-16', 24, '2', '2', 'Shaik ghousia Begum', 'House wife', 20000.00, 2, 0.00, 15000.00, 'Kurnool', 'Kurnool', '2201240010', '17', '1', 'upload_files/candidate_tracker/14205904233_hamza\'s resume.docx', NULL, '2', '2022-01-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-24 08:03:29', 1, '2022-01-24 08:10:14', 0, NULL, 1),
(7565, '', '0', '8074966571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-24 08:08:14', 0, NULL, 0, NULL, 1),
(7566, 'Sandhiya', '11', '8124628647', '8939369432', 'Sandhiyasri27@gmail.com', '1997-06-27', 24, '2', '2', 'Saravanan', 'Marketing executive', 18000.00, 1, 15300.00, 16000.00, 'Tharamani', 'Tharamani', '2201240012', '1', '2', 'upload_files/candidate_tracker/62523962584_Sandhiya Saravanan.pdf', NULL, '1', '2022-02-05', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'expt16k since her last th sal is 15k. no Relevant exp in recruitment and no basic idea about the profile. she was handling 6ppl in previous org. will not sustain for us. not clear about her current Position. but okay with service agmt.', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-24 09:55:35', 1, '2022-02-04 06:36:33', 0, NULL, 1),
(7567, '', '0', '9786963359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-25 09:31:46', 0, NULL, 0, NULL, 1),
(7568, 'Selvam.A', '6', '8825777067', '9025579465', 'Selav1418@Gmail.Com', '1999-12-14', 22, '1', '2', 'Anandhan.V', 'Hotel Supervisor', 10000.00, 0, 0.00, 13000.00, '467,main Road, Perumpakkam, villupuram District', 'Villupuram', '2201250002', '', '1', 'upload_files/candidate_tracker/49544300045_selvam format of resume .pdf', NULL, '1', '2022-01-25', 0, 'P1065', '3', '59', '2022-02-11', 192000.00, '', NULL, '2023-08-25', '2', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'Offer Mail link shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-25 09:46:46', 60, '2022-02-10 05:19:16', 0, NULL, 1),
(7569, 'thirupathi', '4', '9543147379', '', 'thirupathityr18@gmail.com', '2000-10-01', 21, '2', '2', 'G.Sekar', 'farmer', 10000.00, 1, 0.00, 10000.00, 'Tanjavur', 'tanjavur', '2201250003', '1', '1', 'upload_files/candidate_tracker/81747299512_Thirupathi resume pdf 18.12.2021.pdf', NULL, '1', '2022-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'discussed and shared the salary breakup,requestde time to gove his confirmation,but after that he is not responding to the calls.Dropped', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-25 09:55:42', 1, '2022-01-25 09:58:42', 0, NULL, 1),
(7570, 'Dhanalakshmi', '4', '6374761418', '8939676190', 'Dhana3372@gmail.com', '1998-07-09', 23, '2', '2', 'Santhana kumar', 'Car driver', 60000.00, 1, 14500.00, 18000.00, 'Chennai', 'Chennai', '2201250004', '1', '2', 'upload_files/candidate_tracker/14099287604_DhanalakshmiCVFinal.pdf', NULL, '1', '2022-01-25', 1, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not intrested in teleclling', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-25 10:12:37', 60, '2022-01-25 04:48:23', 0, NULL, 1),
(7571, 'M.KIRUBA', '16', '8939478545', '', 'kirubamuruganmk@gmail.com', '1998-07-21', 23, '2', '1', 'N.Murugan', 'Retired employee of state govt', 15000.00, 1, 15000.00, 23000.00, 'Kundrathur chennai', 'Kundrathur chennai', '2201250005', '1', '2', 'upload_files/candidate_tracker/30337134104_RESUME_KIRUBA_2022.(C)-converted.pdf', NULL, '1', '2022-01-25', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,not much strong in the areas of excel, but worked in the operations/MIS roles. long distance,will not sustain in our roles\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-25 10:41:50', 58, '2022-01-25 11:04:13', 0, NULL, 1),
(7572, 'P.ajay', '4', '9790807216', '7358688158', 'www.ajaymoni0426@gmail.com', '1998-05-04', 23, '3', '2', 'K.pandian', 'Sristi builders', 25000.00, 0, 22000.00, 18000.00, 'Adyar', 'Adyar', '2201250006', '', '2', 'upload_files/candidate_tracker/91368848197_Ajay resume.pdf', NULL, '1', '2022-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-25 11:22:38', 1, '2022-01-25 11:31:31', 0, NULL, 1),
(7573, 'A.Justin santhosh', '6', '6382528230', '', 'justinsanthosh12322@gmail.com', '2001-03-08', 20, '2', '2', 'J.Arokia Dass', 'Photo grapher', 20000.00, 1, 0.00, 13000.00, 'Ambattur chennai', 'Ambattur Chennai', '2201250007', '1', '1', 'upload_files/candidate_tracker/53269864521_Justin Santhosh-1.pdf', NULL, '1', '2022-01-25', 0, '', '3', '59', '1970-01-01', 180000.00, '', '2', '1970-01-01', '2', 'Selected for Syed team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail link shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-25 11:29:10', 60, '2022-01-25 05:36:29', 0, NULL, 1),
(7574, '', '0', '8608907388', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201250008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-25 11:36:30', 0, NULL, 0, NULL, 1),
(7575, 'Kavipriya U', '4', '8056857225', '8610897123', 'kavipriyaulaganathan@gmail.com', '1995-05-03', 26, '1', '2', 'Ulaganathan M', 'H.r & c.e dept A.a.o (rtd)', 25000.00, 1, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2201250009', '', '2', 'upload_files/candidate_tracker/24152892180_Kavipriya.U Resume.docx', NULL, '1', '2022-01-25', 7, 'P1002', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-25 11:43:53', 1, '2022-01-25 11:49:12', 0, NULL, 1),
(7576, '', '0', '7358731495', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201250010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-25 11:50:05', 0, NULL, 0, NULL, 1),
(7577, '', '0', '9342387882', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201250011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-25 11:59:51', 0, NULL, 0, NULL, 1),
(7578, 'Mohammed mushtaq', '4', '7200451755', '7092852944', 'Mushtaqevil3@gmail.com', '2007-01-25', 0, '1', '2', 'Abdul Razak', 'Business', 20000.00, 1, 15000.00, 18000.00, 'Chennai', 'Old washermenpet', '2201250012', '', '2', 'upload_files/candidate_tracker/59620981137_MOHAMMED MUSHTAQ.pdf', NULL, '3', '2022-01-25', 0, 'JOBS', '3', '59', '2022-01-28', 151584.00, '', '5', '1970-01-01', '1', 'Selected for Muthu Team in Consultant Role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-25 12:46:26', 60, '2022-01-27 07:00:53', 0, NULL, 1),
(7579, 'RAMAPRIYA', '5', '8072323428', '8807804845', 'Rjrama1697@gmail.com', '1997-07-16', 24, '2', '1', 'Jayaprakash', 'Private companies', 15000.00, 0, 15000.00, 18000.00, 'Tiruverkadu', 'Tiruverkadu', '2201250013', '1', '2', 'upload_files/candidate_tracker/18720679900_rama resume.pdf', NULL, '1', '2022-01-25', 0, '', '3', '59', '2022-01-27', 151584.00, '', '0', NULL, '2', 'Selected for B2B in consultant Role', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-25 01:39:08', 1, '2022-01-25 01:43:46', 0, NULL, 1),
(7580, 'M.dhatchana moorthi', '6', '9087715459', '9176889866', 'dhatchanaking007@gmail.com', '2000-08-09', 21, '2', '2', 'R.murugesan', 'Business', 12000.00, 0, 0.00, 20000.00, 'Korukkupet', 'Korukkupet', '2201250014', '1', '1', 'upload_files/candidate_tracker/31219354440_1250166000052611 _ 18-OCT-2021_17-NOV-2021.pdf', NULL, '1', '2022-01-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication no,need to open a lot, will not sustain in our roles', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-25 02:35:14', 60, '2022-01-25 06:56:39', 0, NULL, 1),
(7581, 'Mohana priya', '16', '6374770226', '8807804845', 'Mohanapriya1606@gmail.com', '1996-11-06', 25, '2', '1', 'Ramachandran. K', 'Private companies', 13000.00, 1, 13000.00, 15000.00, 'Tiruverkadu', 'Tiruverkadu', '2201250015', '1', '2', 'upload_files/candidate_tracker/49453460410_Akka RESUME.pdf', NULL, '1', '2022-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have exp in renewals,but no sustainability,holding an offer for 18K TH,will not sustain and handle our pressure', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-25 03:24:10', 1, '2022-01-25 03:30:41', 0, NULL, 1),
(7582, 'kowsalya', '11', '9629702353', '9629270776', 'gunakowsi1998@gmail.com', '1998-07-27', 23, '2', '2', 'gunasekaran', 'farmer', 20000.00, 2, 13000.00, 15000.00, 'mannargudi', 'chennai', '2201250016', '1', '2', 'upload_files/candidate_tracker/1893717549_Updated Resume Kowsalya - HR Consulatant.pdf', NULL, '1', '2022-01-25', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-25 05:54:24', 1, '2022-01-25 05:58:45', 0, NULL, 1),
(7583, 'Vishal N', '11', '9551869013', '', 'Vishaljohn6395@gmail.com', '1995-03-06', 26, '2', '2', 'Wilson babu maha laskhmi', 'Ttdc', 100000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2201250017', '1', '1', 'upload_files/candidate_tracker/92792635939_vishal updated cv.docx', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no sustainability ,5yrs 4 companies in different domain,salary Exp is too high,fresher for Recruitment,need to train but will not sustain and even the communication also Average', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-25 06:28:27', 1, '2022-01-25 06:31:55', 0, NULL, 1),
(7584, 'Sriram Satish u', '4', '6360931079', '', 'sriramsatish.179@gmail.com', '1994-08-22', 27, '2', '2', 'Shanthi', 'Homemaker', 50.00, 1, 0.00, 18.00, 'Chennai', 'Chennai', '2201260001', '1', '1', 'upload_files/candidate_tracker/60956155004_sriram resume.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'In the second round with Banu/Priyanka he said ok for RE Field for Elite,but in the final round he said not ok for the Field and looking only for the Telecaller but the Salary Exp is around 13K with 1 yr SA,Requestd him to wait for the confirmation on the Salary,but left without attending', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-26 10:06:31', 1, '2022-01-26 10:13:14', 0, NULL, 1),
(7585, 'Prakash G', '4', '7401439180', '', 'prakashgajendran14@gmail.com', '1996-11-14', 25, '2', '2', 'Gajendran', 'Auto driver', 15000.00, 1, 18500.00, 22000.00, 'Choolai chennai', 'Chennai', '2201270001', '1', '2', 'upload_files/candidate_tracker/47125281140_Prakash Resume-Updated-converted (1) (1).pdf', NULL, '1', '2022-01-27', 1, '', '1', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 06:43:47', 60, '2022-01-27 09:56:46', 0, NULL, 1),
(7586, 'A.varsha', '5', '6383027229', '9962032122', 'Varsha.anbazhagan003@gmail.com', '1999-12-21', 22, '2', '2', 'Anbazhagan', 'BSNL', 30000.00, 1, 0.00, 17000.00, 'Velacherry', 'velachery', '2201270002', '17', '1', 'upload_files/candidate_tracker/15704593266_varsharesume old.pdf', NULL, '1', '2022-01-27', 0, '', '3', '59', '2022-01-31', 158496.00, '', '', '2022-02-03', '2', 'Selected for Esale KArthika in PTonly 13K TH', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-27 09:48:05', 60, '2022-01-31 05:00:00', 0, NULL, 1),
(7587, 'Karthick.m', '4', '9080049927', '9042143979', 'Karthickmuthu56@gmail.com', '2000-09-04', 21, '2', '2', 'T.Muthukrishnan', 'Tailor', 11000.00, 1, 12000.00, 15000.00, 'No58 sri srinivasanagar main road', 'Ponniammanmedu, Chennai', '2201270003', '1', '2', 'upload_files/candidate_tracker/34200344925_karthick resume.docx', NULL, '1', '2022-01-27', 3, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have Exp in Starhealth but looking for the opportunities without tsrget and the pressure,will not sustain\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-27 09:57:49', 60, '2022-01-27 10:21:42', 0, NULL, 1),
(7588, 'ARUL M', '4', '6379318044', '9344144233', 'arulajith2707@gmail.com', '1999-07-27', 22, '1', '2', 'Murugesan v', 'Former', 6000.00, 1, 0.00, 15000.00, 'Perungalathur', 'Perungalathur', '2201270004', '', '1', 'upload_files/candidate_tracker/72271171640_ARUL M RESUME.pdf', NULL, '1', '2022-01-27', 0, '55576', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice he will c\nHandle pressure . So drop\n', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 10:18:44', 1, '2022-01-27 10:37:37', 0, NULL, 1),
(7589, 'R.J.murali', '4', '9344144233', '6379318044', 'mmurali8263@gmail.com', '1999-02-04', 22, '1', '2', 'V.Ravi', 'Former', 15000.00, 2, 0.00, 15000.00, 'Balakrishna Puram', 'Balakrishna Puram', '2201270005', '', '1', 'upload_files/candidate_tracker/12645445156_MURALI RESUME.pdf', NULL, '1', '2022-01-27', 0, '55576', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'Expected salary 16k to 17k . So drop 1 yrs experience but digital marketing field other platform. He will not sustain this job.\n', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 10:22:25', 1, '2022-01-27 10:40:34', 0, NULL, 1),
(7590, 'Jaya G', '4', '9444287864', '8527761208', 'jayaguru0207@gmail.com', '1998-07-02', 23, '2', '1', 'Shankar S', 'Manager', 25000.00, 2, 15000.00, 18000.00, 'Porur', 'Thiruvallur', '2201270006', '1', '2', 'upload_files/candidate_tracker/47139387732_Document.pdf', NULL, '1', '2022-01-27', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Job not mandatory working for calm place . She will not handle in pressure . So drop.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 10:25:04', 58, '2022-01-27 02:42:36', 0, NULL, 1),
(7591, 'Jishma p k', '4', '9061091899', '', 'jishmapk@gmail.com', '1999-08-21', 22, '1', '2', 'Valsala', 'Father', 20000.00, 1, 0.00, 10000.00, 'Teynamet', 'Teynamet', '2201270007', '', '1', 'upload_files/candidate_tracker/40470145412_file_27Jan22.pdf', NULL, '1', '2022-01-27', 0, 'thiyagu', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this profile she donxquott know tamil ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-27 10:29:30', 58, '2022-01-27 01:24:13', 0, NULL, 1),
(7592, 'Saranya.C', '11', '7358617172', '9884443936', 'Saranychandran1807@gmail.com', '1995-07-18', 26, '2', '1', 'Manikandan', 'Admin', 15000.00, 1, 13000.00, 16000.00, 'Keelkatalai', 'Keelkatalai', '2201270008', '1', '2', 'upload_files/candidate_tracker/52464777796_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Average communication, Recently married and not open for targets and pressure, will not sustain', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 10:32:17', 58, '2022-01-27 11:02:02', 0, NULL, 1),
(7593, 'Geerthana', '5', '8098891542', '8675891891', 'geerthanacs27@gmail.com', '1996-11-27', 25, '2', '1', 'Gowtham ram', 'Assistant manager at jio', 35000.00, 1, 300000.00, 360000.00, 'Chennai', 'Chennai', '2201270009', '1', '2', 'upload_files/candidate_tracker/45490602540_RESUME GERTHANA-converted.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Good,not interested in operations,not open for Esales looking for norml CRM but the salary Exp is 20K min and recently married sustainability doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 10:49:37', 58, '2022-01-27 11:02:32', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7594, 'Prem kumar', '4', '8667693260', '7550116437', 'kumarprem2626@gmail.com', '2007-01-27', 0, '3', '2', 'Anandhan', 'Driver', 30000.00, 1, 0.00, 13000.00, '4/49 Jeeva nagar 4th Street New washermenpet', '4/49 Jeeva Nagar 4th Street New Washermenpet', '2201270010', '', '1', 'upload_files/candidate_tracker/71690424136_Prem Kumar Resume.doc', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have 3 yrs of Exp as Delivery and operation but not interested in MIS Roles,tried for sales but the salary exp is min 25K,recenlt married and sustainabiity in the long run doubts', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 10:49:39', 1, '2022-01-27 11:05:36', 0, NULL, 1),
(7595, 'Gowtham', '4', '8428926097', '9884385699', 'Gowthamappu12@gmail.com', '1998-02-06', 23, '3', '2', 'Ramkumar', 'Election', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2201270011', '', '1', 'upload_files/candidate_tracker/47134846457_gowtham resumee11 (1) (1).pdf', NULL, '1', '2022-01-27', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'looking for non voice process not suitable for this profile', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 10:49:52', 1, '2022-01-27 11:06:19', 0, NULL, 1),
(7596, 'Vishal', '4', '7358484932', '', 'vishalvishalvishal32470@gmail.com', '1997-07-26', 24, '1', '2', 'Saravanan', 'Employ', 20000.00, 0, 0.00, 15000.00, 'Korattur', 'Chennai', '2201270012', '', '1', 'upload_files/candidate_tracker/13669281581_NEW RESUME.pdf', NULL, '1', '2022-01-27', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'not suitable for voice process he is looking for non voice process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 11:43:03', 1, '2022-01-27 12:09:06', 0, NULL, 1),
(7597, 'Saravanan', '13', '9551345755', '9444821010', 'saravnan.tn@gmail.com', '1990-07-05', 31, '1', '1', 'Lakshmi (mother)', 'Html developer', 5000.00, 1, 30000.00, 30000.00, '7, nehru Street, L.Endathur', 'Mylapore', '2201270013', '', '2', 'upload_files/candidate_tracker/29218378377_Resume.docx', NULL, '1', '2022-01-27', 4, 'JOBSARUN', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' No Basic Knowledge Related To Php,Have Ideas In Html ,Css Only But Interested To Learn, Age Around 31 Yrs,Pressure handling doubt and will not sustain\n', '2', '2', '0', '1', '1', '0', '2', '2022-01-29', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 11:43:46', 1, '2022-01-27 11:49:28', 0, NULL, 1),
(7598, 'Hariharan.p', '4', '6369390898', '8098587975', 'hariharanpazhamalai@gmail.com', '1998-02-08', 23, '2', '2', 'Pazhamalai', 'Shop', 10000.00, 2, 15000.00, 18000.00, 'Ashok nagar', 'Ashok nagar', '2201270014', '1', '2', 'upload_files/candidate_tracker/66501432839_hariharan resum.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt come back with his confirmation', '1', '1', '0', '1', '1', '0', '2', '2022-01-29', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-27 12:17:32', 1, '2022-01-27 12:27:00', 0, NULL, 1),
(7599, 'C.R.VENGATESH', '4', '6374551172', '9342466055', 'sathishsandy476@gmail.com', '1999-04-04', 22, '2', '2', 'C.Ramasamy', 'Collector office (OA)', 10000.00, 2, 17000.00, 18000.00, 'Cuddalore', 'Ashok nagar', '2201270015', '1', '2', 'upload_files/candidate_tracker/26986541352_C.R. VENGATESH_CHAN.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Shared the SAlary breakup,candidate didnt cmoe back with his confirmation', '1', '1', '0', '1', '1', '0', '2', '2022-01-29', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-27 12:18:30', 1, '2022-01-27 12:23:09', 0, NULL, 1),
(7600, 'Joslin Rashmi', '11', '9962086211', '7397462939', 'rashmiramesh98jj@gmail.com', '1998-03-08', 23, '2', '2', 'Ramesh F', 'Teashop', 70000.00, 1, 29992.00, 23000.00, 'Kodambakkam, Chennai T. Nagar', 'Kodambakkam,Chennai T. Nagar', '2201270016', '1', '2', 'upload_files/candidate_tracker/10007912417_JS resume.docx', NULL, '1', '2022-01-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication is Good,have exp in recruitment for 3 months and her current pay 30K,Salary Exp is very high and will not sustain for a long as she is getting married in few months', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-27 12:27:00', 58, '2022-01-27 12:41:52', 0, NULL, 1),
(7601, 'Saravana Babu', '26', '9941248604', '7550263477', 'saravananbabu93@gmail.com', '1993-06-20', 28, '2', '1', 'Lakshmi B', 'House wife', 15000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2201270017', '1', '2', 'upload_files/candidate_tracker/92927173979_Resume saravanan Jan 2022.pdf', NULL, '1', '2022-01-27', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication,no basic knowledge in terms of MF,Have Exp as a document verifier only,will not handle our pressure and sustain ', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 12:44:20', 58, '2022-01-27 01:12:51', 0, NULL, 1),
(7602, 'S.Vinoth', '6', '7401771782', '9941825241', 'vinodsthevaan@gmail.com', '1997-06-05', 24, '1', '2', 'Selva kumar', 'Daily veges', 25000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2201270018', '', '1', 'upload_files/candidate_tracker/70972486379_Vinoth Original.. .pdf', NULL, '1', '2022-01-27', 0, 'P1145', '5', '19', NULL, 0.00, '', '0', NULL, '1', 'No fit', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-27 01:16:34', 1, '2022-01-27 01:29:22', 0, NULL, 1),
(7603, 'balaji mohan', '4', '8015578811', '9894855896', 'mohanbalaji553@gmail.com', '1999-01-30', 22, '2', '2', 'Ananthi', 'Housewife', 10000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2201270019', '1', '1', 'upload_files/candidate_tracker/66349194801_balaji resum.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication looking for the core, for time being looking for opportunities,Will not sustain.Need to open up a lot', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-27 01:26:58', 1, '2022-01-27 01:30:56', 0, NULL, 1),
(7604, 'Manikandan', '4', '7502961100', '9486838300', 'manikandan00411@gmail.com', '1999-02-15', 22, '2', '2', 'Ramalingam', 'Gold work', 10000.00, 1, 0.00, 15000.00, '15 ER st Cuddalore', '15 ER st Cuddalore', '2201270020', '1', '1', 'upload_files/candidate_tracker/14134987520_1643014179040_RESUME_-__Manikandan_2021.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open,no communication,Looking for non voice only', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-27 01:27:09', 1, '2022-01-27 01:38:31', 0, NULL, 1),
(7605, '', '0', '9025175457', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201270021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-27 02:53:44', 0, NULL, 0, NULL, 1),
(7606, 'Divya bai', '16', '9790818069', '9025175457', 'n.divyabai@gmail.com', '1994-08-14', 27, '2', '1', 'Veda', 'Salesman', 27000.00, 1, 2.50, 2.50, 'Chennai', 'Chennai', '2201270022', '1', '2', 'upload_files/candidate_tracker/20864681123_1250166000052611 _ 18-NOV-2021_17-DEC-2021.pdf', NULL, '1', '2022-01-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication,Career Gap and looking for accounts positions,not good in MIS Activities,no ideas on Excel,will not sustain and the exp is also high', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-27 03:08:56', 58, '2022-01-27 03:25:39', 0, NULL, 1),
(7607, 'Kousalya.r', '4', '7373994585', '8760101589', 'kousalyaraja1997@gmail.com', '1997-03-09', 24, '1', '2', 'Raja', 'Farmar', 40000.00, 1, 0.00, 17000.00, 'Kumbakonam', 'Nungapakkam', '2201280001', '', '1', 'upload_files/candidate_tracker/4852913226_Document (1).docx', NULL, '1', '2022-01-28', 0, 'muthu', '3', '59', '2022-01-29', 150000.00, '', '', '2022-02-04', '2', 'Selected for Muthu Team in consultant role 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-28 10:22:53', 60, '2022-01-28 06:52:32', 0, NULL, 1),
(7608, 'Asha', '4', '9025971957', '9786708029', 'ashaas24062000@gmail.com', '2000-07-24', 21, '3', '2', 'K.Aruldoss', 'BBA', 20000.00, 2, 9500.00, 10000.00, 'Tiruttani', 'Tiruttani', '2201280002', '', '2', 'upload_files/candidate_tracker/69983955284_ASHA RESUME.docx', NULL, '3', '2022-01-28', 0, '', '3', '59', '2022-01-29', 126312.00, '', '6', '2022-03-12', '2', 'Selected for Dhanalakshmi in consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-01-28 10:33:00', 60, '2022-01-28 06:35:28', 0, NULL, 1),
(7609, 'PALANIYANDI', '6', '8778800889', '', 'vijayranjithith@gmail.com', '1998-06-17', 23, '2', '2', 'palaniappan', 'passed away', 15000.00, 1, 0.00, 10000.00, 'dindigul', 'Dindigul', '2201280003', '1', '1', 'upload_files/candidate_tracker/50048463996_Resume202010110428 (1).pdf', NULL, '2', '2022-01-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-28 10:34:31', 1, '2022-01-28 10:38:15', 0, NULL, 1),
(7610, 'M BHAVANI', '4', '7338790719', '', 'bhavanim867@gmail.com', '1998-01-18', 24, '1', '2', 'No.18/19 R,block Kottupuram', 'Painter', 15000.00, 4, 0.00, 12000.00, 'No.18,19R,block kotturpuram', 'Chennai', '2201280004', '', '1', 'upload_files/candidate_tracker/18487891907_BHAVANI RESUME.docx', NULL, '1', '2022-01-28', 0, 'P1145', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-28 10:35:37', 1, '2022-01-28 10:50:53', 0, NULL, 1),
(7611, 'Nibash.S', '4', '9080681365', '7092888364', 'Nibash2666@gmail.com', '1999-06-26', 22, '2', '2', 'Sivamoorthy', 'Business', 40000.00, 2, 15000.00, 15000.00, 'Chinnamanur', 'Medavakkam', '2201280005', '1', '2', 'upload_files/candidate_tracker/79499633677_1250166000052611 _ 18-NOV-2021_17-DEC-2021.pdf', NULL, '1', '2022-01-28', 0, '', '3', '59', '2022-01-31', 150000.00, '', '4', '2022-10-01', '2', 'Selected for Muthu team in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-28 11:45:36', 60, '2022-01-28 07:13:22', 0, NULL, 1),
(7612, 'Shabeer Ahmed', '6', '7305435492', '7305681452', 'shabeerahmed3117@gmail.com', '2000-08-17', 21, '2', '2', 'Basheer Ahmed', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2201280006', '1', '2', 'upload_files/candidate_tracker/52507194751_Resume Shabeer Ahamed Resume.docx', NULL, '1', '2022-01-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,have exp in telecalling,Salary Exp is very High,Not open for Field will not sustain for a long', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-28 12:05:42', 1, '2022-01-28 12:20:50', 0, NULL, 1),
(7613, 'Gokulnath S', '6', '7010823043', '9360071651', 'rgokulgr@gmail.com', '1997-09-13', 24, '2', '2', 'Siva', 'Former', 20000.00, 1, 18000.00, 20000.00, 'Panruti', 'Sri nidhi appartment,sivasubramanian St,madipakkam', '2201280007', '1', '2', 'upload_files/candidate_tracker/46644120883_gokul resume.docx new 28-01-22.pdf', NULL, '1', '2022-01-28', 1, '', '3', '59', '2022-01-31', 216000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent,Selected for Syed in Consultant Role,need to move in Staff Role after 3-6 months', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-28 01:00:54', 60, '2022-01-28 06:43:22', 0, NULL, 1),
(7614, 'Praveena', '4', '8667795460', '7395990290', 'crazypraveena84@gmail.com', '2001-06-28', 20, '1', '2', 'Marimuthu', 'Security', 20000.00, 0, 0.00, 14000.00, 'Chennai', 'Velachery', '2201280008', '', '1', 'upload_files/candidate_tracker/74145844321_kavitha resume.docx', NULL, '1', '2022-01-28', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice,no communication,5 months 2 companies', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-28 02:43:02', 1, '2022-01-28 02:47:31', 0, NULL, 1),
(7615, 'Arungopi', '4', '8760101589', '9786016030', 'Arungopis1995@gmail.com', '1995-07-01', 26, '3', '2', '2', 'Former', 200000.00, 2, 12500.00, 20000.00, 'Kumbakonam', 'Nungambakkam', '2201280009', '', '2', 'upload_files/candidate_tracker/49527736085_1250166000052611 _ 18-JUL-2020_17-AUG-2020.pdf', NULL, '1', '2022-01-28', 5, '', '3', '59', '2022-02-07', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Muthu team in consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-01-28 03:45:40', 60, '2022-01-28 07:18:39', 0, NULL, 1),
(7616, 'B.Kalaiselvi', '4', '6374887203', '8248801462', 'selvikalai6475@gmail.com', '2001-09-24', 20, '2', '2', 'E.Baskar', 'B.sc Maths', 10000.00, 2, 0.00, 11000.00, 'Gudapakkam', 'Gudapakkam', '2201290001', '1', '1', 'upload_files/candidate_tracker/49462659253_Kalaiselvi B Resume (1).pdf', NULL, '1', '2022-01-29', 0, '', '3', '59', '2022-01-31', 126312.00, '', '6', '2022-03-12', '2', 'Selected for Tiruvallur Consultant 5%', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-01-29 10:32:47', 60, '2022-01-29 05:36:28', 0, NULL, 1),
(7617, 'M. Priyanga', '11', '6369614668', '8056109566', 'priyamurugesan2514@gmail.com', '1994-07-25', 27, '2', '2', 'Parent', 'Nil', 18000.00, 1, 15000.00, 18000.00, 'Velachery', 'Velachery', '2201290002', '1', '2', 'upload_files/candidate_tracker/22542837795_Priyanga Experience Resume-2022.pdf', NULL, '1', '2022-01-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication,every 6 month shofter jobs,will not sustain in our roles', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-29 11:29:51', 1, '2022-01-29 11:35:00', 0, NULL, 1),
(7618, '', '0', '7358219686', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201290003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-29 01:18:22', 0, NULL, 0, NULL, 1),
(7619, 'S.P.RAMU', '6', '8825747736', '9514408221', 'Ramusp101098@gmail.com', '1998-10-10', 23, '2', '2', 'S.P.PUNNIYAKOTI', 'Daily wages', 10000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2201290004', '1', '2', 'upload_files/candidate_tracker/46330916522_Ramu.doc', NULL, '1', '2022-01-29', 1, '', '3', '59', '2022-01-31', 186000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-29 01:19:09', 60, '2022-01-31 05:02:31', 0, NULL, 1),
(7620, '', '0', '8428054673', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201290005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-29 01:47:18', 0, NULL, 0, NULL, 1),
(7621, '', '0', '7868099362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201290006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-29 02:39:50', 0, NULL, 0, NULL, 1),
(7622, '', '0', '9524644743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-29 05:24:17', 0, NULL, 0, NULL, 1),
(7623, 'Priya srinivasan', '11', '9597950113', '9597676113', 'priyasrinivasan711@gmail.com', '1998-07-28', 23, '2', '2', 'Eswari S', 'Business', 10000.00, 1, 11000.00, 13000.00, 'Chennai', 'Chennai', '2201290008', '1', '2', 'upload_files/candidate_tracker/67405088449_1638339484228_Priyatharsini', NULL, '3', '2022-02-02', 7, '', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no flow in speech, will not be suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-01-29 08:01:03', 58, '2022-02-02 10:03:24', 0, NULL, 1),
(7624, 'Atheeswaran k', '5', '8946096837', '7448441200', 'atheeav2252@gmail.com', '1993-11-19', 28, '2', '1', 'GEETHA', 'Chennai', 400000.00, 4, 30000.00, 33000.00, 'Madurai', 'Chennai', '2201310001', '22', '2', 'upload_files/candidate_tracker/74790120715_AtheeswaranRESUME.pdf', NULL, '1', '2022-01-31', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 10:25:59', 1, '2022-01-31 10:30:27', 0, NULL, 1),
(7625, 'prasanakumar', '4', '9790768362', '', '19PRAS96@GMAIL.COM', '1996-11-17', 25, '1', '2', 'kumaraguruparan', 'ashok leland', 45000.00, 1, 0.00, 12000.00, 'chennai', 'Chennai', '2201310002', '', '1', 'upload_files/candidate_tracker/92807595635_kumar96resume96.docx', NULL, '1', '2022-01-31', 0, 'muthu', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for hassle free job ,no pressure handling will not sustain', '1', '1', '', '', '', '', '1', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-31 10:27:11', 58, '2022-01-31 11:25:26', 0, NULL, 1),
(7626, 'nathishs', '4', '9094070051', '7358620995', 'rajanadhi418@gmail.com', '1999-02-02', 22, '2', '1', 'Raja', 'AC mechanic', 15000.00, 1, 0.00, 13000.00, 'T.Nagar', 'Saidapet', '2201310003', '1', '2', 'upload_files/candidate_tracker/40746724538_AllPDF.pdf', NULL, '1', '2022-01-31', 0, '', '3', '59', '2022-02-03', 164208.00, '', '6', '2022-09-12', '1', 'Selected for B2B Staff Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-31 10:28:57', 60, '2022-01-31 06:37:57', 0, NULL, 1),
(7627, 'Rathi priya', '4', '6385674317', '', 'Rathipriya1100@gmail.com', '1999-11-21', 22, '2', '2', 'Gunasekar', 'Frammer', 10000.00, 1, 0.00, 12000.00, 'Ranipet', 'Kovilapakam', '2201310004', '1', '1', 'upload_files/candidate_tracker/73083403928_resume.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot,much suits for non voice ,will not handle the pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-01-31 10:32:43', 58, '2022-01-31 11:24:22', 0, NULL, 1),
(7628, 'Thamilarasan u', '4', '8668073288', '', 'U.thamizharasan1990@gmaim.com', '1990-05-25', 31, '2', '1', 'Christianna presious', 'Nill', 15000.00, 2, 20000.00, 25000.00, 'Thiruvallur', 'Thiruvallur', '2201310005', '16', '2', 'upload_files/candidate_tracker/13670220305_Today resume.docx', NULL, '1', '2022-01-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 10:56:51', 1, '2022-01-31 11:06:26', 0, NULL, 1),
(7629, 'Anusuya K.R', '13', '7358371383', '9551200584', 'anuanusuyakr@gmail.com', '2000-08-22', 21, '3', '2', 'Krishna moorthi', 'Supervisor', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2201310006', '', '1', 'upload_files/candidate_tracker/31475000064_anusuya.k.r. resume.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Moved for 2nd Round,but left in between as her parents are not ok with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 11:26:20', 1, '2022-01-31 11:29:43', 0, NULL, 1),
(7630, 'S.lakeetharan', '4', '9629463203', '9629527520', 'lakeetharan@gmail.com', '1995-12-31', 26, '1', '2', 'Selvaraj', 'Real estate', 40000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2201310007', '', '1', 'upload_files/candidate_tracker/77806980386_Lakeetharan_MechanicalDesignEngineer_CV (1)-1.pdf', NULL, '1', '2022-01-31', 0, 'P1002', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 11:58:12', 1, '2022-01-31 12:06:22', 0, NULL, 1),
(7631, 'Ramachandran M', '16', '7871770216', '9791753725', 'kuttyrama30@gmail.com', '1999-07-20', 22, '2', '2', 'G murugahaiya', 'Car driver', 15000.00, 2, 10700.00, 18000.00, 'Chennai', 'Chennai', '2201310008', '1', '2', 'upload_files/candidate_tracker/91430450986_Resume_Ramachandran M_Format2.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication,not much comfort in the Exel areas,will not handle the pressure', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-01-31 12:32:52', 1, '2022-01-31 12:37:10', 0, NULL, 1),
(7632, 'M. Suguna', '4', '6381377956', '8608569364', 'Suguna172@gmail.com', '1987-02-17', 34, '2', '2', 'M. Kasthuri', 'House wife', 20000.00, 3, 0.00, 18000.00, 'Thiruvarur', 'Tambaram -urapakkam', '2201310009', '1', '2', 'upload_files/candidate_tracker/94005080797_CV_2021-08-12-080534.pdf', NULL, '1', '2022-01-31', 0, '', '3', '59', '2022-02-01', 164208.00, '', '', '2022-02-04', '2', 'Selected for Banu B2B 5% TDS', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-31 12:56:00', 60, '2022-01-31 06:25:15', 0, NULL, 1),
(7633, 'R. Manikandan', '5', '9789897179', '8973240132', 'Manisiva290788@gmail.com', '1988-07-29', 33, '2', '1', 'M. Deepa', 'House wife', 21000.00, 3, 21000.00, 35000.00, 'Needamangalam', 'Ambattur', '2201310010', '1', '2', 'upload_files/candidate_tracker/75822017033_MANI RESUME.pdf', NULL, '1', '2022-01-31', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking Only For The Team Lead Role,Very High Exp Ut Not Much Capable As Per Expectation.Can Give A Try For RM,But Salary Exceeds The More', '5', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-01-31 01:05:52', 1, '2022-01-31 01:25:35', 0, NULL, 1),
(7634, '', '0', '9962839542', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201310011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-31 01:06:59', 0, NULL, 0, NULL, 1),
(7635, 'Ramamoorthy', '4', '9025347240', '7810073084', 'sakthimubi27@gmail.com', '2001-08-27', 20, '2', '2', 'Murugan. M', 'Formar', 80000.00, 0, 0.00, 20000.00, 'Kalakurichi', 'Chennai', '2201310012', '1', '1', 'upload_files/candidate_tracker/27562433647_RAMAMOORTHY M.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok but much comfort to work in non voice ,Yet to complete his graduation and the statement seems to be wrong in most of the places', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-01-31 01:39:10', 52, '2022-01-31 02:38:41', 0, NULL, 1),
(7636, 'Prathibha M', '11', '8639979905', '', 'mprathibha54@gmail.com', '1987-10-10', 34, '2', '1', 'Sreenivasulu C', 'IT', 45000.00, 3, 15000.00, 20000.00, 'Chennai', 'Chennai', '2201310013', '1', '2', 'upload_files/candidate_tracker/10623402156_1643603027681_Prathibha Resume 200122.doc', NULL, '1', '2022-01-31', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication long career Gap,will not sustain\n', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-01-31 02:35:50', 1, '2022-01-31 02:52:35', 0, NULL, 1),
(7637, 'Kesavan', '5', '9884664451', '8122862896', 'kesjay2420@gmail.com', '1990-06-24', 31, '2', '2', 'Thilagavathy', 'Cooli', 15000.00, 2, 21000.00, 25000.00, 'Ambattur', 'Ambattur', '2201310014', '16', '2', 'upload_files/candidate_tracker/9632298446_KESAVAN RESUME.pdf', NULL, '1', '2022-01-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking only for the team lead role,very high Exp ut not much capable as per expectation.Can give a try for RM,but Salary Exceeds the more', '5', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 02:46:24', 1, '2022-01-31 02:51:33', 0, NULL, 1),
(7638, 'Lokesh', '4', '9159482071', '9080249943', 'lokeshatp44@gmail.com', '2000-10-15', 21, '1', '2', 'Kumaran', 'Self employed', 17000.00, 1, 0.00, 17000.00, 'Thiruvallur', 'Thiruvallur', '2201310015', '', '1', 'upload_files/candidate_tracker/53401311510_lokesh.K.pdf', NULL, '1', '2022-01-31', 0, 'R55562', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-01-31 03:08:03', 1, '2022-01-31 03:16:22', 0, NULL, 1),
(7639, 'Saraswathi', '4', '6383105068', '7010102949', 'saraswathipalanivel55@gmail.com', '1998-07-20', 23, '2', '2', 'Aravinth', 'Weaving', 20000.00, 5, 12000.00, 20000.00, 'Jayakondam', 'Sripermbathur', '2201310016', '1', '2', 'upload_files/candidate_tracker/16971228941_saraswathi resume.pdf', NULL, '1', '2022-02-01', 15, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SHE IS LOOKING FOR NON VOICE xxamp NOT HANDLE TO PRESSURE HANDLING. SO REJECTED.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-01-31 06:48:21', 58, '2022-02-01 10:47:14', 0, NULL, 1),
(7640, '', '0', '6380735459', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2201310017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-01-31 07:47:46', 0, NULL, 0, NULL, 1),
(7641, 'ramesh prasanna b', '5', '9176660388', '7010734939', 'ramesh.prasanna16@gmail.com', '1980-12-16', 41, '3', '2', 'sundari b', 'homemaker', 1150000.00, 1, 1150000.00, 1300000.00, 'chennai', 'chennai', '2201310018', '', '2', 'upload_files/candidate_tracker/15170014513_Ramesh Prasanna.pdf', NULL, '1', '2022-01-31', 0, '', '3', '59', '2022-02-07', 1300000.00, '', NULL, '2023-05-18', '1', 'Selected as regional head Direct Marketing with PF/PT', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-01-31 09:00:26', 60, '2022-02-01 01:19:25', 0, NULL, 1),
(7642, 'vinith kumar', '6', '9384637613', '', 'vinithkumardv@gmail.com', '1999-06-07', 22, '2', '2', 'd dhandapani', 'painter', 200000.00, 1, 12000.00, 14000.00, 'teyanmp', 'saidapet', '2202010001', '1', '2', 'upload_files/candidate_tracker/98338726725_VINITH RESUME.docx', NULL, '1', '2022-02-01', 0, '', '3', '59', '2022-02-02', 210000.00, '', '', '2022-03-03', '1', 'Selected for Syed Team in PF/ESI /PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-01 10:06:02', 60, '2022-03-03 12:03:32', 0, NULL, 1),
(7643, 'Vignesh .v', '6', '7358040450', '7418498540', 'Vignesh12.vijayakumar@gmail.com', '1999-09-12', 22, '2', '2', 'Vijayakumar', 'Railway', 80000.00, 3, 16500.00, 2.00, 'Jolarpettai', 'Ambattur', '2202010002', '1', '2', 'upload_files/candidate_tracker/19404359947_1643279809423Resume_Vignesh.pdf', NULL, '1', '2022-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-01 10:55:56', 58, '2022-02-01 11:50:16', 0, NULL, 1),
(7644, 'Vaitheshwari Udeshkumar', '11', '6383795808', '9003121386', 'Vaithyudesh@gmail.com', '2000-10-21', 21, '2', '2', 'Udeshkumar', 'Business', 50000.00, 1, 240000.00, 240000.00, 'Chennai', 'chennai', '2202010003', '1', '2', 'upload_files/candidate_tracker/67037959901_VAITHESHWARI RESUME.pdf', NULL, '1', '2022-02-01', 0, '', '3', '59', '2022-02-09', 144000.00, '', '6', '2022-02-11', '2', 'Selected for HR Recruitment in Internship Employment model', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-01 11:04:30', 1, '2022-02-01 11:57:49', 0, NULL, 1),
(7645, 'nivedha', '4', '9677577067', '', 'nivisekar7@gmail.com', '1996-07-30', 25, '1', '2', 'unmarried', 'nil', 25000.00, 3, 9000.00, 11500.00, 'vaduvur', 'vaduvur', '2202010004', '', '2', 'upload_files/candidate_tracker/68335606587_nivi cv 2021(1).pdf', NULL, '1', '2022-02-01', 12, 'p1023', '3', '59', '2022-02-04', 138948.00, '', '3', '2022-05-05', '2', 'Seleceted for Thanjavur Location in consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-01 11:29:23', 60, '2022-02-03 08:35:46', 0, NULL, 1),
(7646, 'Manimaran.T', '4', '9751215484', '6369494681', 'manimaranjr007@gmail.com', '1998-12-01', 23, '1', '2', 'Thiyagarajan.m', 'Meshan', 15000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2202010005', '', '1', 'upload_files/candidate_tracker/87155908699_Manimaran cv.pdf', NULL, '1', '2022-02-01', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 11:46:47', 1, '2022-02-01 11:56:50', 0, NULL, 1),
(7647, 'Mohamed asith.D', '4', '9080939292', '8220203284', 'mohamedasith6741@gmail.com', '1999-09-14', 22, '1', '2', 'DEEN mohamed', 'Cooli', 6000.00, 1, 0.00, 10000.00, 'No.8 Mariyal 3rd Street ,n.k road, Thanjavur', 'Mariyal 6th Street New colony ,n.k road Thanjavur', '2202010006', '', '1', 'upload_files/candidate_tracker/74541125428_asith bbb.pdf', NULL, '1', '2022-02-01', 0, 'P1023', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 11:46:58', 1, '2022-02-01 11:54:33', 0, NULL, 1),
(7648, 'Mohamed satharkhan. M', '4', '9159700965', '6369494681', 'Veangaisathar@gmail.com', '1998-06-06', 23, '1', '2', 'A. Mahaboobkhan', 'Welder', 15000.00, 2, 0.00, 10000.00, '44. Seedha nagar, vilar road thanjavur', '44.seedha nagar,vilar road thanjavur', '2202010007', '', '1', 'upload_files/candidate_tracker/49099423838_DOC-20190719-WA0000-1-[1].docx', NULL, '1', '2022-02-01', 0, 'P1023', '3', '59', '2022-02-07', 126312.00, '', '6', '2023-01-23', '1', 'selected for Thanjavur Location in Consultant 5%', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-01 11:47:05', 60, '2022-02-04 03:19:21', 0, NULL, 1),
(7649, 'DinaKaran M', '11', '9600330486', '8270590490', 'dinakaran015@gmail.com', '1998-12-12', 23, '3', '2', 'Munusamy N', 'Farmer', 3000000.00, 1, 0.00, 10000.00, 'No. 367 ettiyapuram vallivagai post Tiruvannamalai', 'Perambur', '2202010008', '', '1', 'upload_files/candidate_tracker/86854536634__DINAKARAN M.RESUME-converted.pdf', NULL, '1', '2022-02-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'communiation average,will not sustain in our role', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 12:02:41', 1, '2022-02-01 12:06:12', 0, NULL, 1),
(7650, 'Priya s', '4', '6382610561', '', 'priyasp1321@gmail.com', '2001-09-13', 20, '3', '2', 'Seenan', 'Cooli', 6000.00, 2, 0.00, 15000.00, 'Mayor bas dev1 St,Oldwashermenpet', 'Oldwashermenpet', '2202010009', '', '1', 'upload_files/candidate_tracker/86502818212_RESUME 2 side.docx', NULL, '1', '2022-02-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 12:41:59', 1, '2022-02-01 12:51:39', 0, NULL, 1),
(7651, 'VIGNESH', '4', '6382768311', '8680804053', 'vigneshm1413@gmail.com', '1999-06-13', 22, '2', '1', 'Mary shoba', 'Nurse', 25000.00, 1, 18000.00, 22000.00, 'Perambur', 'Moolakadai', '2202010010', '1', '2', 'upload_files/candidate_tracker/79921845620_vignesh (1).pdf', NULL, '1', '2022-02-01', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Shortlisted but dropped as the candidate was not turned back with his confirmation,also seems to have large expectation on the Pay', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-01 01:06:32', 1, '2022-02-01 01:12:14', 0, NULL, 1),
(7652, '', '0', '6381748104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202010011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-01 01:41:57', 0, NULL, 0, NULL, 1),
(7653, '', '0', '8660630067', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202010012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-01 01:57:20', 0, NULL, 0, NULL, 1),
(7654, 'Keshavraj S', '5', '8660630066', '9916277265', 'keshavraj191@gmail.com', '1990-04-30', 31, '1', '2', 'Sampath', 'Auto driver', 20000.00, 2, 23000.00, 30000.00, 'Bangalore', 'Bangalore', '2202010013', '', '2', 'upload_files/candidate_tracker/78419603401_my%20updated%20resume.docx', NULL, '1', '2022-02-01', 0, '55601', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 02:03:39', 1, '2022-02-01 02:07:09', 0, NULL, 1),
(7655, 'Sathish', '4', '8925010051', '', 'Sathishasha0000@gmail.com', '1996-08-28', 25, '2', '2', 'Mohan', 'Self employed', 30000.00, 0, 16000.00, 20000.00, 'Tiruvannamalai', 'Chennai', '2202010014', '1', '2', 'upload_files/candidate_tracker/66889409834_Sathish(2)-converted(2).pdf', NULL, '1', '2022-02-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Working Exp in Telecalling, currently looking for WFH,need some time to come out of his sudden demise of their parents\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-01 02:27:47', 1, '2022-02-03 11:47:25', 0, NULL, 1),
(7656, 'Harrshini M N', '11', '8147466545', '', 'harrshini.mn@gmail.com', '1996-11-29', 25, '2', '2', 'Murali V', 'Retired advertising manager', 60000.00, 1, 0.00, 200000.00, 'Chennai', 'Chei', '2202010015', '1', '1', 'upload_files/candidate_tracker/10016169046_Harshini CV.pdf', NULL, '1', '2022-02-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-01 03:49:27', 1, '2022-02-01 03:52:42', 0, NULL, 1),
(7657, '', '0', '9985882127', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202010016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-01 04:00:26', 0, NULL, 0, NULL, 1),
(7658, 'Gaddam Gopi Krishna', '17', '7304561945', '9392736475', 'Gopi.krishna1203@gmail.com', '1985-07-04', 0, '2', '2', 'Gaddam niranjan reddy', 'Retired bank manager', 30000.00, 2, 54166.00, 53000.00, '70000', 'Hyderabad', '2202010017', '19', '2', 'upload_files/candidate_tracker/76754704786_gopi krishna CV (1).docx', NULL, '1', '2022-02-03', 0, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Ok candidate but not suitable for our profile', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-01 05:04:23', 1, '2022-02-01 05:18:48', 0, NULL, 1),
(7659, '', '0', '7358629452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202010018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-01 06:16:22', 0, NULL, 0, NULL, 1),
(7660, 'suganya devi s', '4', '8015809959', '9600992243', 'suganya.christ16@gmail.com', '1993-06-16', 28, '2', '1', 'manoj', 'software', 35000.00, 2, 0.00, 18000.00, 'tiruvallur', 'Tiruvallur', '2202010019', '1', '1', 'upload_files/candidate_tracker/7952201265_Suganya Devi S -CV.pdf', NULL, '1', '2022-02-03', 0, '', '3', '59', '2022-02-07', 151584.00, '', '6', '2022-03-12', '1', 'Selected for Tiruvallur Location in Consltant 5%', '1', '1', '', '1', '6', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-01 06:48:11', 60, '2022-02-04 06:18:12', 0, NULL, 1),
(7661, '', '0', '9791283265', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202020001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-02 07:40:05', 0, NULL, 0, NULL, 1),
(7662, 'Stephen raj.m', '4', '9176098625', '', 'Iamsteve2k@email.com', '2000-11-15', 21, '2', '2', 'MURUGANANTHAM', 'Mason', 30000.00, 0, 0.00, 13000.00, 'Avadi', 'Avadi', '2202020002', '1', '1', 'upload_files/candidate_tracker/27637472793_stephen raj resume-1.pdf', NULL, '1', '2022-02-02', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Doubt for Sustainability and 2 times called him for this he said will confirm will call like that so not suitable for this profile', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-02 08:35:02', 58, '2022-02-02 04:05:29', 0, NULL, 1),
(7663, 'B.LEELAVATHY', '4', '8754710094', '', 'leelap03@gmail.com', '1992-10-13', 29, '2', '1', 'G.BALAJI', 'CUSTOMER SERVICE EXECUTIVE', 15000.00, 1, 12000.00, 15000.00, '45/3 Sharma nagar 4th Street Chennai', '45/3 Sharma nagar 4th Street Chennai', '2202020003', '1', '2', 'upload_files/candidate_tracker/86648043348_Leela.pdf', NULL, '1', '2022-02-02', 0, '', '3', '59', '2022-02-07', 156000.00, '', '3', '2022-02-21', '1', 'Selected for B2B Staff Role', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-02 10:54:51', 60, '2022-02-05 05:10:01', 0, NULL, 1),
(7664, 'Jayasri R', '4', '9585506154', '7094839323', 'jayasriravi2502@gmail.com', '1998-02-25', 23, '2', '2', 'ravikavitha', 'Farmer', 20000.00, 4, 15000.00, 17000.00, 'Nemili', 'Nemili', '2202020004', '1', '2', 'upload_files/candidate_tracker/10177739863_Resume - Jayasree 01.11.2021.pdf', NULL, '1', '2022-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Tried Reaching Again On 10Feb Not Responding /Disconnecting The Call', '1', '1', '', '1', '1', '', '1', '2022-02-11', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-02 11:37:43', 58, '2022-02-08 01:08:29', 0, NULL, 1),
(7665, 'Divya T', '4', '7305688765', '', 'divyathangaiyan99@gmail.com', '2000-06-14', 21, '1', '2', 'Thangaiyan.T', 'Former', 15000.00, 3, 0.00, 10000.00, 'Rajaghiri', 'Rajaghiri', '2202020005', '', '1', 'upload_files/candidate_tracker/12526032852_Divya.pdf', NULL, '1', '2022-02-02', 0, 'P1023', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-02 12:08:43', 1, '2022-02-02 12:32:10', 0, NULL, 1),
(7666, 'M.mahalakshmi', '4', '8489514882', '', 'Mahadevanlakshmi460@gmail.com', '2000-04-14', 21, '3', '2', 'Mahadevan', 'Former', 15000.00, 3, 0.00, 10000.00, 'Rajaghiri', 'Rajaghiri', '2202020006', '', '1', 'upload_files/candidate_tracker/28945569757_Mahalakshmi_Resume_23578639.pdf', NULL, '1', '2022-02-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-02 12:09:23', 1, '2022-02-02 12:38:12', 0, NULL, 1),
(7667, 'Mathi prakash.J', '23', '6383317847', '', 'Mastermathi07@gmail.com', '1999-06-13', 22, '2', '2', 'Jeya prakash.R', 'Farmer', 30000.00, 1, 0.00, 10000.00, 'Thoothukudi', 'Thoothukudi', '2202020007', '1', '1', 'upload_files/candidate_tracker/39217687598_Mathi CV.pdf', NULL, '3', '2022-02-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-02 02:55:25', 1, '2022-02-02 03:16:06', 0, NULL, 1),
(7668, '', '0', '8098985845', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202020008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-02 03:17:23', 0, NULL, 0, NULL, 1),
(7669, '', '0', '7018307964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202020009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-02 03:23:50', 0, NULL, 0, NULL, 1),
(7670, 'Sathyamoorthi', '6', '7358505391', '9710994227', 'Valarsathya0001@gmail.com', '1999-04-01', 22, '2', '2', 'Janaki', 'Pr ledhars', 60000.00, 1, 14.50, 16000.00, 'Tambaram', 'Tambaram', '2202020010', '1', '2', 'upload_files/candidate_tracker/72455477833_valarsathya resume 2.docx', NULL, '1', '2022-02-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate didnt turn with his confirmation on the salary,No responses to the call,we requestd himto share the previous documents butno responses after that', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-02 04:36:54', 84, '2022-02-26 12:05:41', 0, NULL, 1),
(7671, 'Prince raj', '4', '9677985568', '', 'Princeraj12122021@gi', '2001-07-20', 20, '1', '2', 'Lawrance', 'Watchman', 7000.00, 1, 0.00, 12000.00, 'Kandanvilai', 'Vandalur', '2202030001', '', '1', 'upload_files/candidate_tracker/31893580216_1639997337109_RESUME Prince pdf.pdf', NULL, '1', '2022-02-03', 0, 'Muthu', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-03 09:45:47', 1, '2022-02-03 09:50:25', 0, NULL, 1),
(7672, 'Basheer Ahamed', '4', '7395872370', '', 'basheerahamed2350@gmail.com', '2000-02-13', 21, '1', '2', 'Jabar Shathik', 'Hotel', 20000.00, 1, 0.00, 13000.00, 'Paramakudi', 'Chennai', '2202030002', '', '1', 'upload_files/candidate_tracker/59773869294_Basheer_Resume.pdf', NULL, '1', '2022-02-03', 0, 'Jobs', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'Not response (continues RNR)', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-03 10:33:07', 1, '2022-02-03 10:38:21', 0, NULL, 1),
(7673, 'Chitra. R', '4', '7338932914', '', 'rrchitra1998@gmail.com', '1998-04-24', 23, '1', '2', 'Rani. R', 'House keeping', 10000.00, 1, 0.00, 11000.00, 'Thiruvllur', 'Thiruvllur', '2202030003', '', '1', 'upload_files/candidate_tracker/55338724155_Resume.pdf', NULL, '1', '2022-02-03', 0, 'R55558', '5', '73', NULL, 0.00, '', '0', NULL, '2', 'voice very low not suitable for this profile.', '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-03 10:40:36', 1, '2022-02-03 10:52:27', 0, NULL, 1),
(7674, 'Aravind Kumar. T', '4', '8939342420', '7358486946', 'aravindany07@gmail.com', '1998-05-20', 23, '2', '2', 'A. Thanga Thirupathi', 'Manager in Arun oil enterprises', 26000.00, 1, 0.00, 15000.00, 'Thamaraipakkam, Thiruvallur district', 'Thamaraipakkam, Thiruvallur district', '2202030004', '1', '1', 'upload_files/candidate_tracker/1162165973_ARAVIND RESUME.pdf', NULL, '1', '2022-02-03', 0, '', '3', '59', '2022-02-07', 126312.00, '', '4', '2022-04-16', '1', 'selected for Tiruvallur in consultant 5%', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-03 11:31:07', 60, '2022-02-04 02:58:35', 0, NULL, 1),
(7675, '', '0', '7871312816', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-03 01:55:06', 0, NULL, 0, NULL, 1),
(7676, 'Deepika R', '4', '7871322816', '7397348800', 'aruldeepika2807@email.com', '2000-08-28', 21, '1', '2', 'Ammu', 'Housekeeping', 17000.00, 1, 15000.00, 15000.00, 'Chennai', 'Chennai', '2202030006', '', '2', 'upload_files/candidate_tracker/55519288427_Deepika Resume.docx', NULL, '3', '2022-02-03', 2, 'JOBS', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Telecalling Activities,much focus on her core profession only,will not sustain for a long\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-03 02:26:48', 1, '2022-02-03 02:29:36', 0, NULL, 1),
(7677, 'A.Naveen kumar', '16', '8428655873', '', 'honeyboynaveen@gmail.com', '2000-04-21', 21, '2', '2', 'Ashok kumar', 'Ashok leyland', 20000.00, 1, 0.00, 15000.00, '78/56.A.sadananthapuram,thangal,thiruvottiyur', 'Chennai 600019', '2202040001', '1', '1', 'upload_files/candidate_tracker/91019272638_Naveen CV.doc', NULL, '1', '2022-02-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication no,looking for non voice only,but not much interest on the job openings,no basic excel knowledge will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-04 09:59:05', 84, '2022-02-26 12:15:12', 0, NULL, 1),
(7678, 'Hari Madhavan S', '11', '6380890925', '', 'harimadhavan44@gmail.com', '2002-01-01', 20, '2', '2', 'Father', '200000', 2000000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2202040002', '16', '1', 'upload_files/candidate_tracker/39244447073_file_04Feb22.pdf', NULL, '1', '2022-02-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for telecalling his slang is not good and will not sustain and will not handle pressure. expt is 12k as fresher.', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-04 11:40:54', 7, '2022-02-04 06:23:04', 0, NULL, 1),
(7679, '', '0', '8939555149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202040003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-04 12:15:21', 0, NULL, 0, NULL, 1),
(7680, 'K.Bennet', '4', '7339269783', '', 'bennetbennet665@gmail.com', '1996-11-09', 25, '2', '2', 'J.kumar', 'Mason', 84000.00, 2, 0.00, 15000.00, 'Nagercoil', 'Chennai', '2202040004', '16', '1', 'upload_files/candidate_tracker/84410446732_0_maria johin-converted.pdf', NULL, '1', '2022-02-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'his slang is too native and will not suite and sustain for telecalling. looking for IT related jobs but no idea about it. expt 15k.', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-04 01:36:14', 1, '2022-02-04 01:57:30', 0, NULL, 1),
(7681, 'M.lagesan', '4', '7397050519', '7904290136', 'abilagesan1996@gmail.co', '1996-05-16', 25, '2', '1', 'Charulatha', 'Housewife', 13000.00, 0, 14000.00, 15000.00, 'Ponneri', 'Thiruvattiyur', '2202040005', '16', '2', 'upload_files/candidate_tracker/87784495886_file_04Feb22.pdf', NULL, '1', '2022-02-04', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not looking for telecalling job and will not suite for calling to. married and then shifted to chennai. expt 15k. looking for office assistance job.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-04 01:48:25', 1, '2022-02-04 02:22:15', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7682, 'Prasath S', '26', '7358208203', '7401041559', 'subramanianprasath@gmail.com', '1993-12-14', 28, '2', '2', 'Kumudha', 'Nil', 14000.00, 1, 15000.00, 20000.00, 'Vyasarpadi', 'Vyasarpadi', '2202040006', '1', '2', 'upload_files/candidate_tracker/91150945834_Prasath S Resume.docx', NULL, '1', '2022-02-04', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'high job need but no communication and avg skills. need lot of training, has 9m exp in complete MIS, 13.5k tH and has proper doc. okay with 2yr service agreement.', '7', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-04 02:09:40', 8, '2022-02-04 04:53:37', 0, NULL, 1),
(7683, 'karthika raj', '11', '9495171550', '8667761595', 'karthikamadhavam1995@gmail.com', '1995-10-11', 26, '2', '1', 'sreejith r', 'business coordinator', 50000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2202050001', '1', '1', 'upload_files/candidate_tracker/37210712243_Karthika Resume-converted.pdf', NULL, '1', '2022-02-05', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Avg communication and she dont speak regional lang, no basic idea about the profile and expt 15k, married 3m back and settled in chennai. husband- biz asso. ', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-05 10:02:14', 1, '2022-02-05 10:09:42', 0, NULL, 1),
(7684, 'Arunkumar Palagiri', '5', '8297976863', '7288067520', 'palagiriarunkumar95@gmail.com', '1997-07-15', 24, '1', '2', 'Nagendramma palagiri', 'House wife', 50000.00, 1, 16.00, 20.00, '3/2-1, Brahmin street nandalur,Kadapa , AP-516150', 'Marathahalli, banglore-560037', '2202050002', '', '2', 'upload_files/candidate_tracker/41974443_ARUNKUMAR_149535320.doc', NULL, '1', '2022-02-05', 0, 'CAFSUSR00273', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-05 10:28:38', 1, '2022-02-05 10:33:58', 0, NULL, 1),
(7685, 'Preethi', '4', '9962838069', '9941678779', 'preethiparameshwari22@gmail.com', '2000-10-25', 21, '2', '2', 'Parameshwari', 'Father', 10000.00, 0, 10000.00, 12000.00, 'Chennai', 'Anna nagar', '2202050003', '1', '2', 'upload_files/candidate_tracker/75256985138_file_04Feb22.pdf', NULL, '1', '2022-02-05', 0, '', '3', '59', '2022-02-11', 132000.00, '', NULL, '2023-12-30', '2', 'Selected for B2B in consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-05 10:38:28', 60, '2022-02-26 11:38:22', 0, NULL, 1),
(7686, 'M.divya', '4', '9361164257', '7904031965', 'sakthidivya54@gmail.com', '1998-03-18', 23, '2', '1', 'S.sakthivel', 'Ac technician', 15000.00, 3, 12000.00, 15000.00, 'Chindhatripet', 'Perambur', '2202050004', '1', '2', 'upload_files/candidate_tracker/8234505751_1644080749247_Divya. M Resume.pdf', NULL, '1', '2022-02-07', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-05 10:55:45', 1, '2022-02-05 10:38:03', 0, NULL, 1),
(7687, 'Rajesh Kannan', '2', '7358495178', '9380942056', 'rajeshkannan1999.rk@gmail.com', '1999-05-26', 22, '4', '2', 'Kumar', 'Daily wager', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2202050005', '', '1', 'upload_files/candidate_tracker/55313577505_rajeshkannan.new-14-1.pdf', NULL, '1', '2022-02-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic knowledge need to train a lot,thinking a lot on the SA,TxxampC,Will not sustain in our role', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-05 11:00:24', 1, '2022-02-05 11:04:18', 0, NULL, 1),
(7688, 'Arockia jenifer. A', '11', '9025017256', '9944517322', 'jeniaro25@gmail.com', '1998-04-22', 23, '2', '2', 'Arockia samy. T', 'Former', 50000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2202050006', '1', '2', 'upload_files/candidate_tracker/57022251327_ArockiaJenifer A (2).pdf', NULL, '3', '2022-02-12', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-02-05 11:04:14', 1, '2022-02-05 11:30:04', 0, NULL, 1),
(7689, 'Anitha.A', '4', '7708364599', '', 'anithaanitha146663@gmail.com', '2000-10-16', 21, '2', '2', 'Aruumugam. V', 'Ironing', 30000.00, 11, 10000.00, 14000.00, '3/66 Giriyappa road ,t.nagar, chennai - 17', 'T.nagar', '2202050007', '1', '2', 'upload_files/candidate_tracker/75393731217_file_04Feb22.pdf', NULL, '1', '2022-02-07', 0, '', '3', '59', '2022-02-09', 132000.00, '', NULL, '2023-09-30', '2', 'Selected for B2B in Consultant5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-05 05:58:44', 60, '2022-02-08 01:06:43', 0, NULL, 1),
(7690, 'Praveen Kumar R', '4', '7299390755', '6374946392', 'shanokumar007@gmail.com', '1998-09-28', 23, '2', '2', 'B.Ramesh', 'Security', 18000.00, 1, 12000.00, 14000.00, 'Otteri', 'Otteri', '2202050008', '1', '2', 'upload_files/candidate_tracker/69981721487_resume.docx', NULL, '1', '2022-02-07', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-05 06:45:19', 1, '2022-02-05 06:54:08', 0, NULL, 1),
(7691, 'J.Vijaykumaran.', '5', '9941954404', '', 'vijaykumaranelixir@gmail.com', '1980-12-04', 41, '2', '2', 'janaorthanan', 'retired', 15000.00, 0, 15000.00, 30000.00, 'West Mambalam', 'West Mambalam', '2202070001', '1', '2', 'upload_files/candidate_tracker/67156021474_vijay resume new 1.docx', NULL, '1', '2022-02-07', 0, '', '5', '80', NULL, 0.00, '', '0', NULL, '1', 'He came Final round inbetween the interview he gone away', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-02-07 10:08:21', 1, '2022-02-07 12:29:17', 0, NULL, 1),
(7692, 'Vasanth', '4', '6385231382', '9566575249', '1111vasanth@gmail.com', '2000-12-09', 21, '2', '2', 'Ramalingam', 'Bussnies', 40000.00, 2, 12500.00, 15000.00, 'Chennai', 'Chennai', '2202070002', '1', '2', 'upload_files/candidate_tracker/34203234350_VASANTH RAMALINGAM 123.pdf', NULL, '1', '2022-02-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'his pronunciation is not clear and stammering to speak, will not suite for our process.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-07 11:10:11', 1, '2022-02-07 11:38:12', 0, NULL, 1),
(7693, 'J. S. K. Leelavathi', '4', '6380095535', '6383259291', 'leelarini8@gmail.com', '2000-11-11', 21, '2', '2', 'J.siva kumar', 'Retired', 10000.00, 1, 0.00, 20000.00, 'No. 7, 5th street ulaganathapuram encore Chennai57', 'No. 7, 5th Street Ulaganathapuram Encore Chennai57', '2202070003', '16', '1', 'upload_files/candidate_tracker/86705998393_updated leela resume.docx', NULL, '1', '2022-02-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 5m exp in rbl credit card renewal 10k, expt is 15k and will not suite for our process.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-07 11:34:47', 8, '2022-02-07 06:25:45', 0, NULL, 1),
(7694, 'Nelson m', '6', '8946010394', '9840392875', 'nelsonrio1100@gmail.com', '1999-08-18', 22, '2', '2', 'S.micheal raj', 'Driver', 15000.00, 1, 14500.00, 16000.00, 'Ennore chennai', 'Ennore chenni', '2202070004', '16', '2', 'upload_files/candidate_tracker/62358166350_1630664844030Resume_Nelson.docx', NULL, '1', '2022-02-07', 0, '', '3', '59', '1970-01-01', 170000.00, '', '2', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-07 11:35:58', 60, '2022-02-08 07:46:25', 0, NULL, 1),
(7695, 'K.vimal', '4', '6380193380', '7401380171', 'Darkweb7401@gmail.com', '1999-12-27', 22, '2', '2', 'Ammulu', 'House wife', 15000.00, 1, 10000.00, 15000.00, 'Ennore', 'Ennore', '2202070005', '16', '2', 'upload_files/candidate_tracker/9909397091_New Doc 02-07-2022 10.12.51.pdf', NULL, '1', '2022-02-07', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '1', 'Not suit for telecalling', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-07 11:35:59', 1, '2022-02-07 11:42:37', 0, NULL, 1),
(7696, 'Parthiban', '4', '9087153086', '9094700865', 'parthiparthi529@gmail.com', '1996-06-01', 25, '2', '2', 'Manoharan', 'Two Wheeler Mechanic', 35000.00, 0, 20000.00, 25000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2202070006', '16', '2', 'upload_files/candidate_tracker/98420003382_Parthi.pdff.pdf', NULL, '1', '2022-02-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not sustain, doesnt have Relevant exp expt is 25k, was getting 16k in next company he got 20k and served only 6m and now expt 25k, relived due to work pressure.', '1', '1', '', '1', '1', '', '1', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-07 12:38:49', 7, '2022-02-07 03:13:05', 0, NULL, 1),
(7697, 'Pavatharani', '4', '9384146383', '', 'pavatharaninadhan@gmail.com', '1998-05-11', 23, '2', '2', 'Kolanchinadhan.S', 'Farmer', 10000.00, 1, 14000.00, 18000.00, '1/118,Gandhi Nagar, ponparappi.Ariyalur(dt)', 'Santhiyamman kovil street, chrompet.', '2202070007', '1', '2', 'upload_files/candidate_tracker/33711284038_Resume Pavatharani.pdf', NULL, '1', '2022-02-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1yr exp in holidays Package 14k and expt 18k, will not join without her fnd madavi', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-07 12:40:43', 1, '2022-02-07 12:49:56', 0, NULL, 1),
(7698, 'P.Madhavi', '4', '9025304955', '', 'madhavip8698@gmail.com', '1998-06-08', 23, '2', '2', 'Pazhanimuthu.R', 'Farmer', 10000.00, 2, 0.00, 15000.00, '72B,mariyamman kovil street,keeranur.v', 'No.23,parris,kothachavadi.', '2202070008', '1', '1', 'upload_files/candidate_tracker/91387497255_res mad.docx', NULL, '1', '2022-02-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, very slow and will not handle pressure.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-07 12:56:16', 1, '2022-02-07 01:02:40', 0, NULL, 1),
(7699, 'Pavithra', '5', '9566203393', '8667558564', 'pavithrahoney85@gmail.com', '2007-02-07', 0, '2', '1', 'Sampath kumar', 'Sports', 30000.00, 1, 0.00, 20000.00, 'Maduravoyal', 'Mafuravoyal', '2202070009', '16', '2', 'upload_files/candidate_tracker/17626813320_Resume- Pavithra.doc', NULL, '3', '2022-02-07', 0, '', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'REJECTED ', '5', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-07 01:29:41', 1, '2022-02-07 01:35:43', 0, NULL, 1),
(7700, 'KA Adithya', '5', '8289809228', '8189809228', 'adithyaka156@gmail.com', '1993-06-15', 28, '2', '1', 'Preethi', 'House wife', 30.00, 2, 20.00, 25.00, 'Kilpauk', 'Kilpauk', '2202070010', '1', '2', 'upload_files/candidate_tracker/80055579134_ADITHYa-1.docx', NULL, '1', '2022-02-07', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No direct sales experience, ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-07 02:25:16', 8, '2022-02-07 03:47:19', 0, NULL, 1),
(7701, 'S. PRITHIBA', '4', '6385615550', '', 'prithiba2000@gmail.com', '2000-12-18', 21, '2', '2', 'Selvam', 'carpenter', 25000.00, 1, 0.00, 12000.00, 'Mailadudurai', 'mailadudurai', '2202070011', '1', '1', 'upload_files/candidate_tracker/25789267788_Resume_ Prithiba (1).docx', NULL, '2', '2022-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '1', '', '4', '5', '', '2', '2022-02-10', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-07 03:00:30', 85, '2022-03-17 10:18:11', 0, NULL, 1),
(7702, 'Praveen D', '20', '7550207154', '', 'praveendaya1994@gmail.c', '1995-07-11', 26, '2', '2', 'Dayalan C', 'Provision shop', 10000.00, 1, 15000.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2202070012', '1', '2', 'upload_files/candidate_tracker/15125878323_2 PAGE RESUME 2,1.docx', NULL, '1', '2022-02-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no sustainability, has Carrier gap due to his personal reason and accident. no payslips and expt is 15k+. overall 2yrs exp in calling but not into sales. ', '5', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-07 03:05:34', 1, '2022-02-08 12:19:33', 0, NULL, 1),
(7703, 'B.Raju', '4', '7904793968', '', 'stephenraj9797@gmail.com', '1998-04-07', 23, '2', '2', 'baskar', 'maison', 10000.00, 1, 0.00, 12000.00, 'chennai', 'Chennai', '2202070013', '1', '1', 'upload_files/candidate_tracker/32510490413_Document from Raju.pdf', NULL, '2', '2022-02-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-07 03:08:17', 58, '2022-02-08 10:47:01', 0, NULL, 1),
(7704, 'anjali', '4', '8754432710', '', 'sranjali2710@gmail.com', '1999-10-27', 22, '2', '2', 'sakthivel', 'carpenter', 1000.00, 2, 0.00, 12000.00, '12000', 'Chennai', '2202070014', '16', '1', 'upload_files/candidate_tracker/16681821375_Anjali...........pdf', NULL, '1', '2022-02-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not Suit for recruiter profile and too long padi, very childish.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-07 06:07:20', 7, '2022-02-08 11:19:15', 0, NULL, 1),
(7705, '', '0', '7358289295', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202070015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-07 06:32:45', 0, NULL, 0, NULL, 1),
(7706, 'K.Rupavidhya', '13', '7418635998', '', 'ruphakannan@gmail.com', '1997-07-06', 24, '2', '1', 'B.V.Gowtham', 'NA', 50000.00, 1, 0.00, 10000.00, 'No.50,nethaji street,cheyyar.', 'Anna nagar', '2202070016', '1', '1', 'upload_files/candidate_tracker/54934172322_RUPAVIDHYA97-6.pdf', NULL, '1', '2022-02-08', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'married 6m back, Recently shifted to chennai with her. husband. she knows basics only in sql, she dont even knows php basics.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-07 07:05:28', 1, '2022-02-08 12:38:09', 0, NULL, 1),
(7707, 'Surya', '11', '9843471400', '6369803636', 'amuthasurya93@gmail.com', '1993-06-07', 28, '2', '2', 'Narasimman', 'Weaver', 10000.00, 1, 1600.00, 20000.00, '4/61 Perumal koil street vanganur', 'Velachery', '2202080001', '16', '2', 'upload_files/candidate_tracker/26755729355_Surya resume1234.docx', NULL, '1', '2022-02-08', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'zero communication, will not suite for recruiter profile.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-08 10:45:53', 1, '2022-02-08 10:48:54', 0, NULL, 1),
(7708, 'Kalpana', '4', '8939480216', '8508719848', 'www.s43382121@gmail.com', '1999-03-15', 23, '2', '1', 'Kamal kavithai', 'Driving', 20000.00, 0, 10500.00, 12000.00, 'Thanjavur', 'Thanjavur', '2202080002', '1', '2', 'upload_files/candidate_tracker/78821690391_kalpana Resume-converted.pdf', NULL, '1', '2022-05-02', 0, '', '3', '59', '2022-05-05', 138948.00, '', '4', '2022-05-28', '2', 'Selected for Thanjavur Location - Elite - Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 10:52:34', 60, '2022-05-03 11:13:01', 0, NULL, 1),
(7709, 'kaleeswaran', '4', '7904480081', '9524953802', 'kaleeswaran077@gmail.com', '1999-03-25', 22, '2', '2', 'selvaraj', 'salesman', 500000.00, 1, 14000.00, 16000.00, 'dindigul', 'pattabiram', '2202080003', '1', '2', 'upload_files/candidate_tracker/24291721236_Resume blue 2022.pdf', NULL, '1', '2022-02-08', 10, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'salary expectation is high 14200/. previous exp furniture sales.\ndoubt for sustainability.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 11:11:47', 58, '2022-02-08 11:31:25', 0, NULL, 1),
(7710, 'Surya', '6', '6374397983', '', 'sunsurya6374@gmail.com', '2000-03-04', 21, '2', '2', 'Thaiyalnayagi', 'Maison', 5000.00, 5, 0.00, 15000.00, 'Porour', 'Porour', '2202080004', '1', '1', 'upload_files/candidate_tracker/16496228723_1644300288234_1644300276769_surya resume.doc', NULL, '1', '2022-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, fresher and slow learner and need lot of training. expt 15k. as he Pronounce will move to next company if sal is not satisfied.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 11:22:35', 58, '2022-02-08 12:09:21', 0, NULL, 1),
(7711, 'Y. Sharmila', '4', '9597828954', '9786960276', 'Sharmilayesurevathi@gmail.com', '1992-06-02', 29, '2', '1', 'Yesu', 'Cooli', 10000.00, 2, 13000.00, 15000.00, 'Othikadu', 'Ikkadu', '2202080005', '3', '2', 'upload_files/candidate_tracker/63012588432_sharmi.docx', NULL, '1', '2022-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain, expt package is high, her self pronounced she will not sustain if got better offer.', '1', '1', '', '4', '6', '', '1', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-08 11:33:36', 7, '2022-02-10 01:25:23', 0, NULL, 1),
(7712, 'divya', '5', '9344251917', '', 'divyamonika1406@gmail.com', '1999-06-14', 22, '2', '2', 'K. Martin Ramesh', 'tailor', 20000.00, 1, 15000.00, 15000.00, 'tirupur', 'Tirupur', '2202080006', '1', '2', 'upload_files/candidate_tracker/68368046657_Divya resume .pdf', NULL, '2', '2022-02-08', 0, '', '3', '59', '2022-02-25', 170496.00, '', '', '2022-03-02', '2', 'Selected for ESales Chennai with PT Deductions only,5050 candidate ,11 months 2 companies travelled, 1st company started with 12K,in the month of relieving only she was revised as 15K', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 11:59:26', 60, '2022-02-19 11:41:58', 0, NULL, 1),
(7713, 'AJMEEE S', '4', '6369350614', '', 'ajuajmeer68@gmail.com', '2000-08-18', 21, '2', '2', 'Sadiq basha I', 'Coolie', 20000.00, 1, 9000.00, 15000.00, 'Old washermenpet', 'Old washermenpet', '2202080007', '1', '2', 'upload_files/candidate_tracker/29040211222_Resume_04_02_2022_04_14_23_PM.pdf', NULL, '1', '2022-02-14', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-08 01:22:12', 1, '2022-02-08 01:45:34', 0, NULL, 1),
(7714, 'GOWTHAM.A', '6', '9791082471', '', 'gowthamarg2020@gmail.com', '1996-12-06', 25, '4', '2', 'RAJESWARI', 'HOUSE WIFE', 5000.00, 0, 0.00, 17000.00, 'CHENNAI', 'CHENNAI', '2202080008', '', '2', 'upload_files/candidate_tracker/25253934189_GOWTHAM.A RESUMEt.pdf', NULL, '1', '2022-02-08', 0, '', '3', '59', '2022-02-11', 185000.00, '', '3', '2022-03-08', '1', 'Selected for Arumbakkam with Pf/ESI /PT', '5', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '3', 'Offer Mail Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-08 02:21:08', 60, '2022-02-09 06:18:48', 0, NULL, 1),
(7715, '', '0', '9384311547', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-08 03:29:56', 0, NULL, 0, NULL, 1),
(7716, 'Arul Raj', '13', '9094630125', '6383738798', 'arulr4405@gmail.com', '1998-11-17', 23, '3', '2', 'P.Amal Raj', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Koyambedu', 'Koyambedu', '2202080010', '', '1', 'upload_files/candidate_tracker/94537628836_CV_2022-01-21-024004 resume_arulraj.pdf', NULL, '3', '2022-02-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-08 03:54:56', 1, '2022-02-08 04:06:52', 0, NULL, 1),
(7717, 'E.kavibharathi', '4', '7397567454', '9363100532', 'Kavibharathiond@gmail.com', '2000-12-10', 21, '2', '2', 'S.Elangovan', 'farmer', 32000.00, 2, 12000.00, 13000.00, 'Thanjavur', 'thanjavur', '2202080011', '1', '2', 'upload_files/candidate_tracker/58758151052_KAVI BHARATHI RESUME .docx', NULL, '1', '2022-02-09', 30, '', '3', '59', '2022-02-14', 138948.00, '', '', '2022-02-16', '2', 'Selected for Thanjavur Team in Consultant 5%', '1', '2', '', '4', '5', '', '2', '2022-02-10', '1', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 04:04:31', 60, '2022-02-16 06:37:11', 0, NULL, 1),
(7718, 'RAVI SANKAR.K', '6', '9092600915', '', 'sankarravi003@gmail.com', '2007-02-08', 0, '2', '2', 'Alazhageshan', 'business', 10000.00, 1, 15000.00, 15000.00, 'Dhindukal', 'dhindukal', '2202080012', '1', '2', 'upload_files/candidate_tracker/28233873931_Ravi sankar resume.pdf', NULL, '2', '2022-02-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response.', '5', '2', '', '1', '1', '', '2', '2022-02-10', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 04:28:48', 8, '2022-02-08 05:15:22', 0, NULL, 1),
(7719, 'Meenakshi s', '4', '7338946652', '', 'meenakshisekar8@gmail.com', '1996-04-01', 25, '2', '2', 'V c sekar', 'Business', 30000.00, 1, 16500.00, 17000.00, 'Vanagaram', 'Vanagaram', '2202080013', '1', '2', 'upload_files/candidate_tracker/58188417292_Updated resume-1.pdf', NULL, '1', '2022-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-08 05:15:22', 1, '2022-02-08 05:34:41', 0, NULL, 1),
(7720, 'Sinduja Sakthivel', '4', '9698942158', '7708951420', 'sindujasakthivel08@gmail.com', '1994-05-08', 27, '2', '2', 'Sakthivel P', 'MBA', 15000.00, 0, 20000.00, 15000.00, 'Budalur', 'Budalur', '2202080014', '1', '2', 'upload_files/candidate_tracker/41612323212_Resume.pdf', NULL, '1', '2022-02-09', 30, '', '3', '59', '2022-02-16', 164208.00, '', '', '2022-12-31', '2', 'Selected for Thanjavur in consultant 5%', '1', '2', '', '4', '5', '', '2', '2022-02-10', '1', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-08 05:49:14', 60, '2022-02-11 08:17:13', 0, NULL, 1),
(7721, '', '0', '8778282554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202080015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-08 07:19:51', 0, NULL, 0, NULL, 1),
(7722, 'Appadurai', '4', '9629041262', '', 'Dub.techit@gmail.com', '1992-05-28', 29, '2', '2', 'Subramanian', 'Farmer', 10000.00, 0, 12000.00, 14000.00, 'Virudhunagar', 'Chennai', '2202080016', '1', '2', 'upload_files/candidate_tracker/57516976193_resume-converted.pdf', NULL, '1', '2022-02-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is 30 and was working in medical shop for 1.8yrs and 12K take home . he is from maraimalainagar his train travelling time itself more than 1hr. talkative but no convincing skill will not suite for our process. expt sal 12k+', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-08 08:20:48', 87, '2022-02-28 10:21:28', 0, NULL, 1),
(7723, 'Guna.V', '13', '6382109270', '', 'gunavelraj23@gmail.com', '2000-06-07', 21, '3', '2', 'Parent', 'Workers', 12000.00, 1, 0.00, 18000.00, 'Vandavasi', 'Vandavasi', '2202090001', '', '1', 'upload_files/candidate_tracker/48278000756_GUNA\'S RESUME.docx', NULL, '3', '2022-02-09', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 09:58:15', 1, '2022-02-09 10:04:35', 0, NULL, 1),
(7724, 'JAYAPRAKASH', '5', '8807804845', '6380175096', 'Jillujai180198@gmail.com', '1998-06-02', 23, '2', '1', 'Ramapriya', 'Home maker', 18000.00, 1, 18000.00, 20000.00, 'Vellore', 'Thiruverkadu (chennai)', '2202090002', '1', '2', 'upload_files/candidate_tracker/47561524054_Resume_JAYAPRAKASH_2022.pdf', NULL, '1', '2022-02-09', 0, '', '3', '59', '2022-02-11', 227364.00, '', '4', '2022-12-17', '2', 'Selected for Syed Team ,hired as a consultant last drwan package around 21637 TH-18K,we mapped the same .After 3-6 months based on the performance we can revise the pay and bring him in the Staff', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'offer Mail Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-09 09:58:15', 60, '2022-02-10 07:21:59', 0, NULL, 1),
(7725, 'Durgadevi', '4', '7824992286', '7094630226', 'Durgaduga29@gmail.com', '1997-06-25', 24, '2', '2', 'Ramachanthiran', 'Farmar', 40000.00, 1, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2202090003', '1', '1', 'upload_files/candidate_tracker/21772191716_durga resume Jul 14, 2021.pdf', NULL, '1', '2022-02-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '2022-02-21', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-09 09:59:56', 58, '2022-02-09 12:34:13', 0, NULL, 1),
(7726, 'S.Dineshkumar', '5', '9597704697', '8610150116', 'DINESHKUMAR4003@gmail.com', '1991-01-03', 31, '1', '2', 'Shanmugam', 'Farmer', 9200.00, 0, 17000.00, 25000.00, 'Madipakkam', 'Madipakkam', '2202090004', '', '2', 'upload_files/candidate_tracker/52001978924_New Doc 2022-02-09 10.56.15.pdf', NULL, '1', '2022-02-09', 0, '55559', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not profiled, has exp in qc, maintenance, currently working in manpower company no fixed pay. will not suite for RM profile, expt is 20k, his wife is working in justdial. ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 10:55:05', 1, '2022-02-09 11:04:21', 0, NULL, 1),
(7727, 'Kowsalya. S', '4', '6381865133', '9840752942', 'sumo6381865133@gmail.com', '2001-11-29', 20, '1', '2', 'Sekar', 'No', 10000.00, 2, 0.00, 10000.00, 'Ponnamalle', 'Ponnamalle', '2202090005', '', '1', 'upload_files/candidate_tracker/21472934388_DocScanner 09-Feb-2022 11-32 am.pdf', NULL, '1', '2022-02-09', 0, 'CA120', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 10:59:12', 1, '2022-02-09 11:40:39', 0, NULL, 1),
(7728, 'Sivaguru R', '4', '6380188475', '7373369192', 'Sivaravi910@gmail.com', '2000-07-13', 21, '2', '2', 'Ravikumar C', 'own business', 100000.00, 1, 0.00, 15000.00, 'Mohanur(poi).Namakkal-637015', 'Chennai.metha nagar', '2202090006', '1', '1', 'upload_files/candidate_tracker/39770665875_SivaGuru resume(1).pdf', NULL, '1', '2022-02-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped - Not interested got another offer\n', '1', '1', '0', '1', '1', '0', '2', '2022-02-17', '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-09 11:18:51', 1, '2022-02-09 11:55:05', 0, NULL, 1),
(7729, 'Yurekha . N', '4', '9360821094', '7824029649', 'yurekhagirija@gmail.com', '2001-02-17', 20, '4', '2', 'Natarajan.M', 'Car driver', 15.00, 2, 16.00, 20.00, 'Thondairpet', 'Thondairpet', '2202090007', '', '2', 'upload_files/candidate_tracker/91389418097_FAQ_DND_Registration_unlocked.pdf', NULL, '3', '2022-02-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process, sal expt is also high, not that much bold ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 11:44:49', 1, '2022-02-09 12:24:02', 0, NULL, 1),
(7730, 'Rengarajan', '21', '7358286151', '8608299202', 'balabalaji944@gmail.com', '1997-10-04', 24, '2', '2', 'Muniyappan', 'ATM maintenance', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2202090008', '1', '1', 'upload_files/candidate_tracker/51968728157_UPdated Resume.pdf', NULL, '1', '2022-02-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher for IT, interest towards web front end, has 2yr exp in QC due to his sal issues he relived from previous org. 12k. expt 12k and for service agmnt he need to discuss with his parents.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-09 01:05:21', 87, '2022-02-28 10:21:52', 0, NULL, 1),
(7731, 'AKSHAYA P', '4', '7904990124', '9751855102', 'akshaya.p20aprldcse@gmail.com', '2002-04-19', 19, '2', '2', 'Pandiyan g', 'Carpenter', 12000.00, 2, 12000.00, 15000.00, 'Vellore', 'Vellore', '2202090009', '1', '2', 'upload_files/candidate_tracker/3743788516_Akshaya p_Color Format – 03.pdf', NULL, '3', '2022-02-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-09 03:07:08', 1, '2022-02-09 03:58:41', 0, NULL, 1),
(7732, 'Justin Rajadurai', '13', '6383842680', '', 'Rajaduraijustin2@gmail.com', '1996-05-26', 25, '3', '2', 'Ponraj', 'Farmer', 10000.00, 5, 0.00, 12000.00, 'South kaduvetti, kalakad, Thirunelveli -627152', 'Vadapalani', '2202090010', '', '1', 'upload_files/candidate_tracker/18582227754_Justin_Resume.pdf', NULL, '1', '2022-02-09', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-09 03:48:23', 1, '2022-02-09 03:52:24', 0, NULL, 1),
(7733, 'Andrews g', '13', '7806974054', '', 'andreamose988@gmail.com', '1998-05-28', 23, '3', '2', 'Gnana doss', 'Farmer', 10000.00, 5, 0.00, 12000.00, 'Tirunleveli', 'Vadapalani', '2202090011', '', '1', 'upload_files/candidate_tracker/56477859787_Andrews_Resume.pdf', NULL, '1', '2022-02-09', 0, '', '3', '59', '2022-02-12', 96000.00, '', '', '2022-09-22', '2', '1 month unpaid,then 5 months 5K,then 2.6 yrs Employment - Overall 3 yrs Document Sub', '2', '1', '', '4', '6', '', '2', '1970-01-01', '3', '2', 'For the payroll Feb 26 to Mar 25 we have reduced the pay to 3500', '', '', '', NULL, NULL, NULL, 1, '2022-02-09 03:50:08', 60, '2022-04-01 12:10:54', 0, NULL, 1),
(7734, '', '0', '9025274169', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202090012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-09 05:15:50', 0, NULL, 0, NULL, 1),
(7735, 'Vaishnavi', '4', '9884030610', '', 'vaishnavi.u453@gmail.com', '1989-06-06', 32, '2', '1', 'Varadharajan', 'Working', 60000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2202090013', '1', '2', 'upload_files/candidate_tracker/28553117393_resume new.doc', NULL, '3', '2022-02-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-09 06:03:59', 1, '2022-02-09 06:18:27', 0, NULL, 1),
(7736, 'Ravikishore', '4', '9380767409', '', 'Kishoreravi1119825@gmail.com', '2003-07-07', 18, '2', '2', 'Priya dharsini', 'Diploma in computer engineering', 25000.00, 2, 0.00, 1600000.00, 'chennai', 'chennai', '2202100001', '1', '1', 'upload_files/candidate_tracker/78779343258_RESUME TATA.docx', NULL, '1', '2022-02-10', 0, '', '3', '59', '2022-02-11', 126312.00, '', '4', '2022-02-15', '2', 'Selected for Priyanka Jenit Team as consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-02-10 09:45:56', 60, '2022-02-10 07:15:40', 0, NULL, 1),
(7737, 'Divya .M', '4', '9390628085', '8179859840', 'kannamma31052000@gmail.com', '2000-05-31', 21, '1', '2', 'Mani.A', 'Weaver', 15000.00, 3, 10500.00, 14000.00, 'Chittoor (dist) ,Andhra pradesh', 'Triplicate, chennai', '2202100002', '', '2', 'upload_files/candidate_tracker/96124237283_DIVYA Resume.docx', NULL, '1', '2022-02-10', 0, 'P1021', '3', '59', '2022-02-14', 132000.00, '', '6', '2022-10-05', '2', 'Selected for Muthu TEam in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-10 10:12:47', 60, '2022-02-13 11:47:46', 0, NULL, 1),
(7738, 'R.DEEPIKALA', '4', '7708601980', '9840051280', 'deepikala770@gmail.com', '2001-02-20', 20, '1', '2', 'J.Ramesh', 'Auto driver', 10.00, 1, 10.50, 14.00, 'Kotturpuram', 'Kotturpuram', '2202100003', '', '2', 'upload_files/candidate_tracker/82748675605_DocScanner Feb 10, 2022 10-24 AM.pdf', NULL, '1', '2022-02-10', 0, 'P1021', '3', '59', '2022-02-14', 132000.00, '', '3', '2022-10-27', '2', 'Selected for Muthu Team Consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-10 10:13:48', 60, '2022-02-13 11:50:06', 0, NULL, 1),
(7739, 'Muthuraja.s', '13', '6382436291', '9751876901', 'rajashankarmr@gmail.com', '2000-12-23', 21, '4', '2', 'M.sankar', 'Daily Wages', 10000.00, 3, 0.00, 8000.00, 'Pudukkottai', 'Tondiarpet', '2202100004', '', '1', 'upload_files/candidate_tracker/13875526400_Resume.docx', NULL, '1', '2022-02-10', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'No Response.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-10 10:57:30', 1, '2022-02-10 11:18:19', 0, NULL, 1),
(7740, 'Divya', '6', '9962486617', '9841792078', 'divyanithya98@gmail.com', '1998-11-27', 23, '1', '2', 'Nithya', 'Business', 40000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2202100005', '', '2', 'upload_files/candidate_tracker/7894445315_Divya resume.pdf', NULL, '1', '2022-02-10', 0, '55574', '3', '59', '2022-02-14', 164208.00, '', '4', '2023-01-28', '1', 'selected for Thiyagarajan Team in consultant 5%', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-10 11:54:31', 60, '2022-02-13 11:55:37', 0, NULL, 1),
(7741, 'K.Keerthi', '4', '9663267657', '9840652893', 'keerthivedamoorthy1@gmail', '1991-02-28', 30, '2', '1', 'Vedamoorthy. U', 'Manager', 60000.00, 2, 18000.00, 20000.00, '113 RAJALAKSHMI Avenu nsk nagar Tiruninravur', '36 vinayaka nagar baglur cross Yelehanka', '2202100006', '1', '2', 'upload_files/candidate_tracker/2558335721_Keerthi Resume.docx', NULL, '1', '2022-02-17', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-10 01:08:11', 1, '2022-02-10 01:46:06', 0, NULL, 1),
(7742, 'K.VAITHEESWARI', '4', '9626219382', '', 'vaitheekumar95@gmail.com', '1994-04-25', 27, '2', '1', 'K.RAJA', 'Engineer', 25000.00, 2, 0.00, 15000.00, 'Villupuram', 'Porur', '2202100007', '1', '1', 'upload_files/candidate_tracker/514330665_Vaithee Resume.pdf', NULL, '1', '2022-02-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-10 01:39:44', 1, '2022-02-10 02:29:18', 0, NULL, 1),
(7743, '', '0', '0940652893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202100008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-10 01:50:29', 0, NULL, 0, NULL, 1),
(7744, 'Hemalatha k', '4', '9600433952', '8220956512', 'Hmkrthk@gmail.com', '1995-05-07', 26, '2', '1', 'Karthikeyan T', 'IT', 40000.00, 2, 8000.00, 15000.00, 'Rajapalayam', 'Thiruvanmiyur chennai', '2202100009', '1', '2', 'upload_files/candidate_tracker/52381400814_RESUME hema.docx', NULL, '1', '2022-02-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-10 03:45:43', 1, '2022-02-10 04:04:09', 0, NULL, 1),
(7745, 'Bhuvaneshwari', '6', '6382329359', '9186466687', 'bhuvanamurugan222@gmail.com', '2000-06-19', 25, '1', '2', 'Murugan', 'Painting contractor', 400000.00, 1, 26500.00, 31000.00, 'Chennai', 'Chennai', '2202100010', '', '2', 'upload_files/candidate_tracker/34739342908_BhuvanaResumeUpdated.pdf', NULL, '1', '2026-05-08', 30, '55905', '5', '137', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'SALERY EXP IS VERY HIGH SO NOT FIT FOR MY TEAM', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', '', '', '1970-01-01', 1, '2022-02-10 04:54:36', 154, '2026-05-08 02:51:06', 0, NULL, 1),
(7746, '', '0', '9003797472', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202100011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-10 06:55:34', 0, NULL, 0, NULL, 1),
(7747, '', '0', '9962728980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202110001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-11 09:00:41', 0, NULL, 0, NULL, 1),
(7748, 'MADHAN', '6', '9840350925', '', 'madanselvaraj2931@gmail.com', '1996-03-31', 25, '1', '2', 'Selvaraj', 'House Wife', 15000.00, 1, 14000.00, 14000.00, 'Chennai', 'Chennai', '2202110002', '', '2', 'upload_files/candidate_tracker/11809077165_Madhan.Resume.pdf', NULL, '1', '2022-02-11', 0, 'P1146', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate will not sustain xxamp not willing to work for target job', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-11 10:22:32', 58, '2022-02-11 10:54:01', 0, NULL, 1),
(7749, 'sandhiya.m', '6', '8124766721', '9962131162', 'sandhiyasandy.1224@gmail.com', '1998-04-23', 23, '1', '2', 'murugesan.k', 'Electrician', 10000.00, 0, 0.00, 16000.00, 'ashok nagar', 'Ashok Nagar', '2202110003', '', '2', 'upload_files/candidate_tracker/27500306332_SANDHYA RESUME (2).pdf', NULL, '1', '2022-02-11', 0, 'thiyagu', '3', '59', '2022-02-14', 164208.00, '', '4', '2022-12-01', '1', 'Selected for Thiyagu Team RE in Consultant 5%', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-11 11:56:51', 60, '2022-02-12 03:02:25', 0, NULL, 1),
(7750, '', '0', '8987668884', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202110004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-11 12:01:16', 0, NULL, 0, NULL, 1),
(7751, 'Nandhini', '4', '7395954581', '9791162188', 'nandhupn57@gmail.com', '1999-04-05', 22, '1', '2', 'Parent', 'Retired', 13000.00, 0, 13000.00, 15000.00, 'New washermanpet', 'New washermanpet', '2202110005', '', '2', 'upload_files/candidate_tracker/7179165096_NANDHINI resume1.pdf', NULL, '1', '2022-02-11', 0, 'Muthu', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not suitable for tele sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-11 12:08:46', 1, '2022-02-11 12:35:56', 0, NULL, 1),
(7752, 'Pavithra', '4', '6382503074', '9840473442', 'pavithraqw@gmail.com', '2000-03-24', 21, '1', '2', 'Parent', 'Sweet shop', 2000.00, 3, 0.00, 15000.00, 'Old washermanpet', 'Old washermanpet', '2202110006', '', '2', 'upload_files/candidate_tracker/11589483092_NANDHINI resume1.pdf', NULL, '1', '2022-02-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview,came alog with the friend and she got rejected\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-11 12:09:15', 1, '2022-02-11 12:21:17', 0, NULL, 1),
(7753, '', '0', '7845790002', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202110007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-11 02:13:55', 0, NULL, 0, NULL, 1),
(7754, 'Karthick', '5', '9962425393', '9884264249', 'Karthee227@gmail.com', '1995-07-22', 26, '1', '2', 'Shantha', 'House wife', 50000.00, 1, 17000.00, 5.00, 'Chennai', 'Chennai', '2202110008', '', '2', 'upload_files/candidate_tracker/79135388027_karthick.doc', NULL, '1', '2022-02-11', 0, 'CA111', '3', '59', '2022-02-14', 299999.00, '', '3', '2022-11-01', '1', 'Selected for Manikandan with Pf/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-11 02:44:47', 60, '2022-02-12 02:54:58', 0, NULL, 1),
(7755, 'NIRMALKUMAR M', '2', '9884173975', '', '18j041.nirmalkumar@gmail.com', '2000-09-05', 21, '2', '2', 'Muthukumar A', 'Store Manager', 15000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2202110009', '1', '1', 'upload_files/candidate_tracker/46544699582_Nirmalkumar 3.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, currently doing his basics course in igenuine till march. dont know any basics and expt is 15k, need time to think about the company norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-11 06:49:22', 1, '2022-02-14 11:56:43', 0, NULL, 1),
(7756, 'R.SANJAYKUMAR', '23', '8667039411', '', 'rsksanjay45@gmail.com', '2001-06-09', 20, '2', '2', 'R.RAJAGOPAL', 'Catering', 30000.00, 1, 0.00, 15000.00, 'Villupuram', 'Chennai', '2202110010', '1', '1', 'upload_files/candidate_tracker/46537752582_Sanjaykumar_R_CV.docx', NULL, '1', '2022-02-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher completed 4m course in besant tech but no basic skills and slow learner, he need to check with his brother regarding company norms and he is working in cognizant. parents into catering.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-02-11 08:14:38', 1, '2022-02-13 07:51:59', 0, NULL, 1),
(7757, 'D Iyyappan', '23', '6379009286', '', 'iyyappansri286@gmail.com', '2001-06-10', 20, '2', '2', 'P Thandapani', 'Veldar', 20000.00, 0, 0.00, 15000.00, 'Tambaram', 'Tambaram', '2202110011', '1', '1', 'upload_files/candidate_tracker/3875459718_D_IYYAPPAN_CV.pdf', NULL, '1', '2022-02-15', 0, '', '4', '63', NULL, 0.00, '', '0', NULL, '2', 'Fresher completed 4m course in besant tech willing to learn and job need, he is okay with company norms, expt 10k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-02-11 08:17:17', 1, '2022-02-13 07:50:17', 0, NULL, 1),
(7758, 'Smithan', '4', '8248190926', '', 'smithanraj99@gmail.com', '1996-01-18', 26, '2', '2', 'Santhi(Mother)', 'Housewife', 13000.00, 2, 0.00, 15000.00, 'Nagarcoil', 'Poonamallee', '2202120001', '1', '1', 'upload_files/candidate_tracker/59099715013_CV_2021-07-05-072436.pdf', NULL, '3', '2022-02-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication average,handling Pressure No.No relevant Exp will not sustain in our roles', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-12 09:52:56', 60, '2022-02-12 10:43:48', 0, NULL, 1),
(7759, 'Sridevi.p', '21', '9940633024', '7904322029', 'Prabhaash@yahoo.com', '1986-07-26', 35, '2', '1', 'Prabhakaran.s', 'IT', 650000.00, 2, 20000.00, 24000.00, 'No.17,niranjan Nagar,natha medu,Chennai -602024', 'No.160,sribalaji nagar,puzhal', '2202120002', '1', '2', 'upload_files/candidate_tracker/55849562472_Sridevi Resume.docx', NULL, '1', '2022-02-12', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance,looking only for the receptionist role,no basic knowledge in the Excel Data,will not sustain ,matured butwill not run for a long\n', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-02-12 11:18:42', 1, '2022-02-12 11:31:28', 0, NULL, 1),
(7760, 'Antonyselvam.S', '6', '7538830859', '9025562857', 'antonyselvamlawrence@gmail.com', '2001-02-14', 20, '3', '2', 'S.savari Raj', 'Parmer', 10000.00, 1, 0.00, 13000.00, 'Thirunelveli', 'Thiruvottiur', '2202120003', '', '1', 'upload_files/candidate_tracker/22142226282_Selvam_resume-converted.pdf', NULL, '1', '2022-02-12', 0, '', '3', '59', '2022-02-14', 176000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team with PF/ESI', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer mail link shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-12 12:19:20', 60, '2022-02-12 02:35:43', 0, NULL, 1),
(7761, '', '0', '9344153648', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202120004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-12 04:10:40', 0, NULL, 0, NULL, 1),
(7762, 'MOHAMED MANSOOR A', '5', '8056241056', '', 'm.mansoor67@gmail.com', '2007-02-12', 15, '2', '2', 'MANSOOR', 'engineer', 70000.00, 1, 23000.00, 30000.00, 'chennai', 'Chennai', '2202120005', '1', '2', 'upload_files/candidate_tracker/42192562147_1644396234535__Mohamed Mansoor 2022.docx.pdf', NULL, '2', '2022-03-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed And Following Up With The Candidate,Yet To Get The Previous Payslips xxamp Documents,Official 60 Days Notice,Can Negotiate Upto 30-45 Days - His expectation is very as he will be getting increment in next few days\n', '5', '2', '', '1', '1', '', '2', '2022-04-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-12 04:28:58', 58, '2022-03-05 02:23:31', 0, NULL, 1),
(7763, 'Shanmuga', '5', '9965948485', '', 'shanmuga12172@gmail.com', '1992-08-17', 29, '2', '2', 'manivanan', 'retired', 40000.00, 1, 25000.00, 30000.00, 'omr', 'Chennai', '2202120006', '1', '2', 'upload_files/candidate_tracker/48012696683_Shanmuga (1).pdf', NULL, '2', '2022-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-12 04:59:59', 1, '2022-02-12 05:03:20', 0, NULL, 1),
(7764, 'Mahalakshmi J', '31', '6381534613', '', 'lakshmimaha079@gmail.com', '1997-03-21', 24, '2', '2', 'Jeyaraman K', 'Chennai', 4.00, 1, 0.00, 2.80, 'Chennai', 'Chennai', '2202120007', '1', '1', 'upload_files/candidate_tracker/16898221517_MAHALAKSHMI_feb.pdf', NULL, '1', '2022-02-14', 0, '', '4', '63', NULL, 0.00, '', '0', NULL, '2', 'ece-2018 batch, no basic knowledge and said i read in google. for career gap she blames her parents. expt 3L, since her bro is working in IT she chosen IT, for terms and conditions she has to check with her family, will relocate to tnagar. ', '2', '1', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-12 07:52:37', 1, '2022-02-12 07:59:46', 0, NULL, 1),
(7765, '', '0', '8300181577', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-12 11:09:15', 0, NULL, 0, NULL, 1),
(7766, 'Sangeetha m', '4', '8270433621', '9841554949', 'sangeethasmart4949@gmail.com', '2000-06-12', 21, '2', '2', 'Murugan', 'Daily Worker', 30000.00, 2, 14000.00, 17000.00, 'Ponneri', 'Ponneri', '2202130001', '1', '2', 'upload_files/candidate_tracker/43269746645_sangeetha resume.pdf', NULL, '1', '2022-02-14', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for WFH. from ponneri too long and sal expt is 16-17k TH, currently working in amazon seller, came with friends.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-13 09:47:56', 87, '2022-02-28 10:25:03', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7767, 'Arun kumar', '5', '8056250466', '', 'arunastro623@gmail.com', '1999-07-09', 22, '2', '2', 'Devaraj', 'Watch man', 45000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2202130002', '1', '2', 'upload_files/candidate_tracker/81131677641_ARUNKUMAR.D Banca Chennai.doc', NULL, '1', '2022-02-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-13 11:06:38', 1, '2022-02-13 11:09:03', 0, NULL, 1),
(7768, 'SHEERIN BANU.A', '4', '6382877447', '', 'banuafsar111197@gmail.com', '1997-11-11', 24, '2', '2', 'batsha', 'passed away', 16000.00, 2, 17000.00, 17000.00, 'chennai', 'chennai', '2202140001', '1', '2', 'upload_files/candidate_tracker/1727638031_Sheerin_resume.pdf (2) (1).docx', NULL, '2', '2022-02-14', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'currently working in Travels handling end to end admin and booking, she dont have esi and pf there and that is the only reason for job change. has 3+ yrs exp in calling. she is from chengalpet but 2yrs she worked in imarqu, Mctc is 16k and expt is 17k. father-late and her mom was working in clg. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-14 09:33:46', 8, '2022-02-14 04:19:43', 0, NULL, 1),
(7769, 'vijay', '4', '9629693589', '9486067762', 'vijayanand181299@gmail.com', '1999-12-18', 22, '2', '2', 'anandhan', 'nil', 40000.00, 1, 0.00, 10000.00, 'thanjavur', 'thanjavur', '2202140002', '1', '1', 'upload_files/candidate_tracker/893008563_vijay RESUME.docx', NULL, '1', '2022-02-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not that much profile have no vision to where he is going to work.doing his msc in regular last sem due to covid attendingonline classes xxamp intrested in it field so will not suit for crm', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-14 10:14:05', 58, '2022-02-14 02:53:11', 0, NULL, 1),
(7770, 'Jessy Juliet.j', '6', '9042911572', '8925481620', 'jessyjuliet485@gmail.com', '1997-09-30', 24, '3', '2', 'I. Joseph', 'Cooli', 45000.00, 2, 17500.00, 18000.00, 'Chennai', 'Chennai', '2202140003', '', '2', 'upload_files/candidate_tracker/16717097972_RESUME FINAL.docx', NULL, '1', '2022-02-14', 0, '', '3', '59', '2022-02-17', 164496.00, '', '5', '1970-01-01', '2', 'Selected for Thiyagu Team in Staff Role Prop Company,have exp in Telecalling but not a relevant one,let us analyse the candidate in 7 Days training', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-14 10:51:01', 60, '2022-02-15 07:19:28', 0, NULL, 1),
(7771, 'rahamath nisha', '25', '9176436070', '', 'rahanisha7@gmail.com', '2000-01-26', 22, '2', '2', 'syed ibrahim', 'officer', 100000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2202140004', '1', '2', 'upload_files/candidate_tracker/66399741428_Raha Nisha Resume-1.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in telecalling, since she is not interested in calling she dont wanna to attend interview and her way of talking and attitude will not suite for us, still serving in accenture(contract based) 22days notice. expt 18-20k. and looking for similar kind of job and no excel knowledge, no idea about gsheets.', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-14 11:15:20', 87, '2022-02-28 10:23:32', 0, NULL, 1),
(7772, 'Jagadeeshwaran', '13', '9677240750', '', 'jagadeeshw67@gmail.com', '1999-10-18', 22, '2', '2', 'Parameswaran', 'Tiles worker', 15000.00, 1, 12000.00, 12000.00, '33/67 p.v.koil 2 Street Royapettah, Chennai-600014', 'Chennai, Royapettah', '2202140005', '1', '2', 'upload_files/candidate_tracker/64040250080_RESUME.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no sustainability, 6m as part time in pizza maker, 6m in sriram li, 3m as game designer, no basic knowledge in lang like php. not clear about his previous jobs, not interested in calling, expt 10-12k. need time to think about the company norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-14 11:32:46', 1, '2022-02-14 11:47:10', 0, NULL, 1),
(7773, 'Karnati praneeth', '5', '8500612699', '8099122223', 'Praneethchowdary057@gmail.com', '2007-02-14', 15, '2', '2', 'Karnati Umamaheswar Rao', 'CONTRACTER', 40000.00, 1, 16000.00, 21000.00, 'Nellore Andhra pradesh', 'Chennai', '2202140006', '1', '2', 'upload_files/candidate_tracker/40625952163_praneeth resum 1.docx', NULL, '2', '2022-02-15', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate didnt share the required data, informed him multiple times over the call.Even today(22 Mar) tried reaching him ,but no Response', '5', '2', '', '3', '4', '', '2', '2022-03-04', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-14 11:53:13', 60, '2022-02-26 04:11:55', 0, NULL, 1),
(7774, 'Dinesh.p', '4', '9344441092', '8124060378', 'dineshpasupathi2000@gmail.com', '2000-04-30', 21, '2', '2', 'Geetha.p', 'House wife', 20000.00, 1, 0.00, 18000.00, 'Ponneri', 'Ponneri', '2202140007', '1', '1', 'upload_files/candidate_tracker/75801669005_CV_202202141019517.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested in calling, from ponneri too long, okay with collection profile but sal expt is 15k TH, currently working in amazon seller, came with friends.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-14 12:08:38', 87, '2022-02-28 10:28:35', 0, NULL, 1),
(7775, 'MANI.T', '4', '6380823818', '9344515702', 'mathewmani1161998@gamil.com', '1998-06-11', 23, '3', '2', 'Paravathi', 'Hose wife', 30.00, 3, 0.00, 18000.00, 'Ponneri', 'Ponneri', '2202140008', '', '1', 'upload_files/candidate_tracker/67739978627_MANI RESUME-2.pdf', NULL, '1', '2022-02-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'not speaking up, will not suite for telecalling, from ponneri too long, okay with collection profile but sal expt is 15k TH, currently working in amazon seller, came with friends.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-14 12:09:34', 1, '2022-02-14 12:19:41', 0, NULL, 1),
(7776, 'Nivetha', '11', '9361799794', '9600719695', 'Nivethu09@gmail.com', '1996-01-09', 26, '2', '2', 'Ravi', 'Driver', 25000.00, 1, 15000.00, 20000.00, 'Kumbakonam', 'Kumbakonam', '2202140009', '1', '2', 'upload_files/candidate_tracker/97126662105_8l6ae-ztrzw.pdf', NULL, '2', '2022-02-14', 2, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Communication below average, has recruitment exp but am not convinced with her existing profile analysis . has only basic knowledge in sourcing. 1yr in finance company as recruiter-10k and past 2yrs in house recruitment as WFH module with 15k take home, expt 20k as take home. not an immediate joiner 2m notice period. reason for job change- since she in recruitment for past 3yrs looking for career growth. she doesnt prefer recruiter profile.', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-14 02:18:28', 1, '2022-02-14 02:46:55', 0, NULL, 1),
(7777, 'Deva R', '13', '7904083980', '', 'Aved2998@gmail.com', '1998-08-29', 23, '2', '2', 'Radhakrishnan K', 'Barbender', 30000.00, 1, 0.00, 12000.00, 'Mangadu', 'Mangadu', '2202140010', '1', '1', 'upload_files/candidate_tracker/32591621303_Deva_Resume.pdf', NULL, '1', '2022-02-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not okay with company norms, has 3m exp in php 7k and expt 12k, will not sustain.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-14 03:57:44', 1, '2022-02-14 04:02:51', 0, NULL, 1),
(7778, '', '0', '7598117702', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202140011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-14 05:37:44', 0, NULL, 0, NULL, 1),
(7779, 'R jaysankar', '4', '6381309796', '9003075994', 'jaisankarragunathan789@gmail.com', '1993-07-07', 28, '2', '2', 'K Ragunathan', 'Civil engineer', 60000.00, 1, 0.00, 18000.00, 'Sembakkam,east Tambaram', 'Sembakkam,east tambaram', '2202140012', '1', '1', 'upload_files/candidate_tracker/68272269248_Andrews_Resume.pdf', NULL, '1', '2022-02-15', 0, '', '3', '59', '2022-02-16', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Renewal with CTC 180000 includes PF/ESI/PT', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '5', 'Offer Mail Link Shared', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-14 05:44:09', 60, '2022-02-15 05:59:56', 0, NULL, 1),
(7780, 'sANAM BALAJINADH', '5', '9391915082', '9346904722', 'sanambalajinadh@gmail.com', '1997-08-04', 24, '2', '2', 'Sanam purnachandra rao', 'Accountant', 35000.00, 1, 0.00, 2000.00, 'Guntur', 'Guntur', '2202140013', '1', '1', 'upload_files/candidate_tracker/59874500500_balaji resume full.docx', NULL, '3', '2022-02-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very poor English communication and speaks telugu, not profiled, has 2yr exp in reliance retail as TL 20k and expt the same, his father got transfer to Hyderabad, his father accountant and mother teacher and he is only son. not interested in field sales will not suite for RM profile.', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-14 06:59:14', 87, '2022-02-28 10:34:56', 0, NULL, 1),
(7781, 'Mohd Arbaaz', '5', '9666096091', '', 'arbaazsabri16@gmail.com', '1990-03-26', 31, '2', '1', 'Abdul raheem', 'Businessman', 60000.00, 3, 25000.00, 30000.00, 'Nizamabad', 'Hyderabad', '2202140014', '1', '2', 'upload_files/candidate_tracker/29666114784_1644828096474_1644828008261_arbaaz cv.docx', NULL, '2', '2022-02-15', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he was an agent in exide LI (commission based) for 2yrs, 4yrs as sales incharge like maintanance, 2yrs in real estate as freelancer (commission based) selling plots and house, for past 2m he is working in a real estate company as BDM with 20k. his expt is 25k take home. he is from telugana and relocated to hyderabad with his wife and kid. father into hotel biz. his communication is not good and expt is high will not suite for RM profile.', '5', '2', '', '3', '4', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-14 07:08:17', 87, '2022-02-28 10:36:13', 0, NULL, 1),
(7782, 'Bharathi Priya S', '22', '8072721447', '', 'bharathi52.bp@gmail.com', '1997-02-05', 25, '2', '1', 'ganesamoorthi', 'business', 30000.00, 1, 0.00, 2.60, 'pallikaranai', 'palli', '2202150001', '1', '1', 'upload_files/candidate_tracker/54874838286_BHARATHI PRIYA - Resume.pdf', NULL, '1', '2022-02-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-15 10:18:08', 1, '2022-02-15 10:24:51', 0, NULL, 1),
(7783, 'R.Devi', '4', '9791016044', '9940275328', 'devi98974@gmail.com', '1998-02-05', 24, '2', '2', 'M.Ravikumar', 'Own business', 15.00, 2, 14.00, 20.00, 'Chennai', 'Chennai', '2202150002', '1', '2', 'upload_files/candidate_tracker/28653398150_Document 37.pdf', NULL, '1', '2022-02-15', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '2yrs in credit card and fresher for us. will not suite for our process, Mctc is 13.5k and expt 20k. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-15 11:35:46', 1, '2022-02-15 11:45:16', 0, NULL, 1),
(7784, 'preethi', '4', '9176686136', '', 'preethuelumalai4400@gmail.com', '2000-04-04', 21, '3', '2', 'elumalai', 'cooli', 5000.00, 2, 0.00, 10000.00, 'ashok nagar', 'Ashok Nagar', '2202150003', '', '1', 'upload_files/candidate_tracker/71171384420_file_15Feb22.pdf', NULL, '1', '2022-02-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not speaking up and will not suite for calling and she is not interested in calling too', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-02-15 11:59:48', 8, '2022-02-15 04:11:59', 0, NULL, 1),
(7785, 'Raja.p', '5', '9500100182', '', 'don.raja.182@gmail.com', '1996-05-29', 25, '2', '2', 'pachaiyappan.G', 'nil', 16000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2202150004', '1', '2', 'upload_files/candidate_tracker/17062234319_document.pdf', NULL, '1', '2022-02-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed and requeted him to share the required documents later not responding to the calls', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-15 12:10:59', 60, '2022-02-26 04:11:04', 0, NULL, 1),
(7786, 'Jayashree', '20', '8778343492', '6380099715', 'Jaibalajai66@gmail.com', '1996-12-14', 25, '2', '1', 'Chandrasekaran', 'Health department', 50000.00, 1, 17500.00, 16.00, 'Aranvoyal kuppam', 'Aranvoyal kuppam', '2202150005', '1', '2', 'upload_files/candidate_tracker/97329856423_R.C. JAYA SHREE-converted.pdf', NULL, '1', '2022-02-15', 1, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'exp but donxquott have any offer letter xxamp reliving letter . salary expectation also very high so rejected.', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-15 12:34:17', 58, '2022-02-15 04:43:11', 0, NULL, 1),
(7787, 'Mandal Manikantan', '22', '6380853075', '9629933955', 'Manikantan9944@gmail.com', '1994-02-05', 28, '2', '2', 'Paramasivam', 'Business', 15000.00, 1, 17000.00, 25000.00, 'Nungambakkam Chennai', 'Nungambakkam Chennai', '2202150006', '1', '2', 'upload_files/candidate_tracker/87527048344_Manikantan Resume 23.pdf', NULL, '1', '2022-02-15', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher for digital marketing, completed 4m internship with 15k and expt is 20k. he is not strong in basics and he is not active. shared profile with reyaz and received the same feedback.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-15 01:17:20', 1, '2022-02-15 01:28:38', 0, NULL, 1),
(7788, 'B.Balaji', '4', '9786660196', '9786660166', 'bala07shinde.bs7@gmail.com', '1994-05-11', 27, '2', '2', 'Sunitha B', 'Diploma in Hotel Management', 35000.00, 2, 0.00, 18000.00, '1 Kallarai Thoppu Street MAYILADUTHURAI', 'No11 Gandhi nagar,shangar Nagar, pammal', '2202150007', '1', '2', 'upload_files/candidate_tracker/37910035043_Resume_Balaji.pdf', NULL, '1', '2022-02-15', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very poor English communication and speaks telugu, not profiled, has 2yr exp in reliance retail as TL 20k and expt the same, his father got transfer to Hyderabad, his father accountant and mother teacher and he is only son. not interested in field sales will not suite for RM profile.', '1', '1', '', '1', '1', '', '2', '2022-02-16', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-15 02:45:42', 60, '2022-02-24 07:08:30', 0, NULL, 1),
(7789, 'Rajalakshmi', '16', '7871287526', '7305465187', 'vrajimech@gmail.com', '1997-05-09', 24, '2', '2', 'Venkatesan', 'Business', 150000.00, 2, 14600.00, 20000.00, 'Little kanchipuram', 'Little kanchipuram', '2202160001', '14', '2', 'upload_files/candidate_tracker/35975527149_Rajalakshmi Mech with SD.pdf', NULL, '1', '2022-02-16', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 2.9m exp as mis but her skill set are avg. we need lot of time to train her.', '3', '1', '0', '1', '1', '0', '2', '2022-02-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-16 10:49:14', 1, '2022-02-16 10:53:46', 0, NULL, 1),
(7790, '', '0', '8754818967', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-16 11:21:30', 0, NULL, 0, NULL, 1),
(7791, 'P.SATHISH KUMAR', '5', '8610885092', '9677143798', 'joesathish4u1996@gmail.com', '1996-08-13', 25, '2', '1', 'PALANISAMY D', 'Stationary shop', 25000.00, 3, 13000.00, 18000.00, 'Tambaram', 'Tambaram', '2202160003', '1', '2', 'upload_files/candidate_tracker/12496622480_RESUME sathish-1.pdf', NULL, '1', '2022-02-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 2.5yr exp in consultancy and loan process. no existing analysis his expt is 15k th and his mctc is 13k and 11.5k th, 6m gap and got married 15days back. will not sustain for our process and salary.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-16 11:24:06', 58, '2022-02-16 11:58:25', 0, NULL, 1),
(7792, 'M.priyadharshini', '4', '8608606128', '', 'Priyadharshini.kbi1991@gmail.com', '1991-12-07', 30, '2', '2', 'P.murugan', 'Retired police', 25000.00, 3, 0.00, 12000.00, 'Theni', 'Velachery', '2202160004', '1', '1', 'upload_files/candidate_tracker/95327071411_IBGM Semester Template.pdf', NULL, '1', '2022-02-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, not interested in sales and will not handle pressure and sustain. expt 11-12k she is from theni and currently residing in velacherry.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-16 11:32:32', 1, '2022-02-16 11:48:58', 0, NULL, 1),
(7793, 'SETHUPATHI.A', '5', '8489948095', '', 'aksethu95@gmail.com', '2007-02-16', 0, '2', '1', 'buvaneshwari', 'not working', 20000.00, 6, 20000.00, 22000.00, 'vizupuram', 'vizupuram', '2202160005', '1', '2', 'upload_files/candidate_tracker/38108216242_Sethupathi1608%20resume.docx', NULL, '2', '2022-02-16', 0, '', '5', '80', NULL, 0.00, '', '0', NULL, '1', 'Rejected ', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-16 12:00:13', 1, '2022-02-16 12:02:49', 0, NULL, 1),
(7794, 'B. Chandrika', '4', '8428733911', '9940137962', 'chandulucky580@gmail.com', '1994-10-19', 27, '3', '1', 'Sakthival. N', 'Atuo mechanical', 15000.00, 1, 0.00, 11000.00, 'Gopal chetty Street anakaputhur Chennai', 'Gopal chetty Street anakaputhur Chennai', '2202160006', '', '2', 'upload_files/candidate_tracker/67822723752_Resume.doc', NULL, '1', '2022-02-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No degree 10th, married 2kids, husband auto mechanic, 1.6yr in child life trust as caller 9K, reason for reliving work pressure, will not handle sales pressure and no convincing skill will not suite for us. expt 11k.', '1', '2', '', '1', '1', '', '1', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-16 12:01:13', 7, '2022-02-16 01:26:08', 0, NULL, 1),
(7795, 'S Sangameswaran', '15', '8778949728', '9384436503', 'Saisakthi226@gmail.com', '1997-11-03', 24, '3', '2', 'M Santhi', 'Government', 40000.00, 1, 0.00, 15000.00, 'Aruppukottai', 'Ponneri', '2202160007', '', '1', 'upload_files/candidate_tracker/75371564748_Sanga_New.pdf', NULL, '1', '2022-02-16', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'bsc maths due to BL he completed in 2021, no basic knowledge in development. will learn and come. father late, mom aeo in govt. ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-16 12:28:09', 1, '2022-02-16 12:35:30', 0, NULL, 1),
(7796, 'Vishnu R', '5', '9940359682', '9940431950', 'Vishnuapple007@gmail.com', '1997-12-04', 24, '2', '2', 'Rajendran', 'Supervisor', 40000.00, 2, 21000.00, 25000.00, 'Chennai', 'Chennai', '2202160008', '14', '2', 'upload_files/candidate_tracker/66808601094_Vishnu%20resume%20new.docx', NULL, '1', '2022-02-16', 30, '', '3', '59', '2022-03-18', 334620.00, '', '4', '2022-05-05', '1', 'Selected for Manikandan Team with PF.ESI/PT BGV cleared', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-16 12:41:36', 60, '2022-02-23 07:19:34', 0, NULL, 1),
(7797, '', '0', '9703220242', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202160009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-16 06:16:25', 0, NULL, 0, NULL, 1),
(7798, 'asamwar saikrishna', '5', '8519944542', '', 'kittusaikittu5275@gmail.com', '1996-07-10', 25, '2', '2', 'srinivas', 'officer', 100000.00, 1, 15000.00, 20000.00, 'hyderabad', 'hyderabad', '2202160010', '1', '2', 'upload_files/candidate_tracker/64239605500_NEWSAIKRISHNARESUME (3).docx', NULL, '2', '2022-02-16', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Avg communication, has 2w and no laptop and cant arrange. father runs a grocery shop, mom house wife, 15days notice. he is From Bhainsa 10km to mathapur, currently working in HDB fin credit card sales for the pastr 10m and ctc is 1.5L expt is 3L, due to work pressure and low salary he is looking for job change, will not sustain for us,', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-16 06:20:52', 60, '2022-02-16 06:42:24', 0, NULL, 1),
(7799, 'Arulkumar', '4', '8220770268', '9095597504', 'Arul1996.AG@gmail.com', '1996-06-03', 25, '2', '2', 'Govindaraj', 'Tailaor', 100000.00, 1, 13000.00, 16000.00, 'Minjur', 'T.nagar', '2202160011', '1', '2', 'upload_files/candidate_tracker/86056804959_Arul.resume.doc', NULL, '3', '2022-02-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 2yr exp in semi voice with 12.5K, was taking care of his father tailoring biz for the past 1 yr. not bold and not speaking up will not suite for our process. expt 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-16 06:49:20', 1, '2022-02-17 10:35:43', 0, NULL, 1),
(7800, 'Arunkumar E', '5', '6382593352', '8525058001', 'arunmani567@gmail.com', '1990-02-17', 0, '1', '2', 'G.Elango', 'Building Contract', 31000.00, 1, 0.00, 23500.00, 'Erode', 'Erode', '2202160012', '', '1', 'upload_files/candidate_tracker/39655426770_1645019229468_resume-22.docx', NULL, '2', '2022-02-16', 0, '66667', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly Refix', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-16 06:56:13', 1, '2022-02-16 07:17:39', 0, NULL, 1),
(7801, 'Abdul Rahim.K', '13', '9600846929', '8667833662', 'kh.abdulrahim98@gmail.com', '1998-02-20', 23, '2', '2', 'Kadhar Hussain', 'Tailor', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2202170001', '1', '1', 'upload_files/candidate_tracker/63256658336_Rahim Resume-1 (1).pdf', NULL, '1', '2022-02-17', 0, '', '3', '59', '2022-02-21', 96000.00, '', '', '2022-03-31', '1', 'Selected for PHP - 6 months Intern - 3.5K Stipend plus 2.6 yrs of Employment', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-17 10:45:16', 60, '2022-02-21 03:08:12', 0, NULL, 1),
(7802, 'Vignesh v', '4', '9551601051', '9097041693', 'Vickyhari123456@gmail.com', '1999-11-17', 22, '2', '2', 'Velmurugan', 'Driver', 15000.00, 1, 15000.00, 15000.00, 'T nagar', 'T.nagar', '2202170002', '1', '2', 'upload_files/candidate_tracker/78576586310_1630074436846Resume_Vignesh.pdf', NULL, '1', '2022-02-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for calling, was working in chennai corparation for past 2yrs timing 7:00am to 12:00pm with 15K, looking for similar kind of job with 15K+ salary. very lethargic he dont prefer target based job, will not suite for our process and his father and brother-driver, mom-hw.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-17 10:58:07', 60, '2022-02-17 01:06:10', 0, NULL, 1),
(7803, 'M.janaki', '13', '9944293583', '', 'Janakiamj111@gamil.com', '2000-05-20', 21, '1', '2', 'Muthusamy', 'Farmer', 10000.00, 6, 0.00, 15000.00, 'Chennai', 'Chrompet', '2202170003', '', '1', 'upload_files/candidate_tracker/83864612175_1630074436846Resume_Vignesh.pdf', NULL, '1', '2022-02-17', 0, 'P1039', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'attened technical and got same feedback from all, no practical knowledge. she memorized all interview questions. expt 10K+ and initially she was not okay with 3m internship and norms later on she is okay with it. ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-17 12:20:49', 1, '2022-02-17 12:28:54', 0, NULL, 1),
(7804, 'S. Logeswari', '4', '9962623505', '7338909349', 'Ammalogukaviamma@gmail.com', '2002-02-19', 19, '1', '2', 'Sankar', 'Cooli', 15000.00, 2, 0.00, 110000.00, 'No. 35corporation small line pattalam chennai-12', 'No. 35corporation Small Line Pattalam Chennai-12', '2202170004', '', '1', 'upload_files/candidate_tracker/40484444092_New doc Feb 17, 2022 12.37 PM.pdf', NULL, '1', '2022-02-17', 0, 'P1275', '3', '59', '2022-02-21', 120000.00, '', '3', '2023-02-01', '2', 'Selected for Elite Consultant Role 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-17 12:42:13', 60, '2022-02-18 06:18:32', 0, NULL, 1),
(7805, '', '0', '8074098994', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202170005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-17 03:17:47', 0, NULL, 0, NULL, 1),
(7806, 'Sathishkumar s', '4', '9597324931', '', 'sathishofficl@gmail.com', '2001-11-28', 20, '2', '2', 'Sakthivel', 'Carpenter', 25000.00, 2, 0.00, 13000.00, 'Kallakurichi', 'Chennai', '2202170006', '1', '1', 'upload_files/candidate_tracker/96715636619_sathish kumar.pdf', NULL, '1', '2022-02-18', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', 'fresher, immature and all his dissensions are taken by his sister, got offer for 12.5k and not joined there. has basic calling skills. check once.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-17 03:40:23', 1, '2022-02-17 03:53:31', 0, NULL, 1),
(7807, 'Kaushal Diwedi', '5', '7032211504', '9676615917', 'dewedikaushal@gmail.com', '1996-05-13', 25, '2', '2', 'D. Kishan das', 'Advocate', 40000.00, 2, 0.00, 3.20, 'Hyderabad', 'Hyderabad', '2202170007', '1', '2', 'upload_files/candidate_tracker/30282044966_kdresume.pdf', NULL, '2', '2022-02-17', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Kindly Refix', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-17 04:05:45', 7, '2022-02-17 05:00:35', 0, NULL, 1),
(7808, 'Vedant GOP', '5', '7058478364', '', 'gopvedant@gmail.com', '1998-09-12', 23, '2', '2', 'Dashrath Gop ( Father )', '12th', 50000.00, 1, 16000.00, 25000.00, 'Solapur', 'Hyderabad jubliee hills', '2202170008', '1', '2', 'upload_files/candidate_tracker/13182496620_resume.pdf', NULL, '2', '2022-02-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is from maharastra and if got offer he will relocate to hyderabad, his english comm is not convincing he is looking for team lead category since he is handling 15 ppl in current org. and he is not interested in target based and field sales job, his existing analysis is not convincing. no notice period and expt 25k take home, no relavant sales exp. he need a time to think about it too.', '5', '2', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-17 04:13:22', 60, '2022-02-17 04:47:13', 0, NULL, 1),
(7809, '', '0', '7092182825', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-17 05:13:09', 0, NULL, 0, NULL, 1),
(7810, 'Sathish Kumar R', '4', '9360796614', '7845600573', 'sathish36196kumar@gmail.com', '2007-02-17', 0, '2', '2', 'M.Ravi', 'Farmer', 20000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2202170010', '1', '1', 'upload_files/candidate_tracker/50010330029_RESUME.pdf', NULL, '1', '2022-02-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has stammering issues, will not suite for voice, no xl skills will not suite for backend too. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-17 06:24:39', 7, '2022-02-24 04:02:19', 0, NULL, 1),
(7811, 'Yelisetty venkatarao', '5', '6300317328', '8008794576', 'venkataraoyelisetty@gmail.com', '1999-04-14', 22, '3', '2', 'Yelisetty thirupathirao', 'Forming', 9000.00, 2, 0.00, 20000.00, 'Village: Nanadirajupalem,d.no9-97, pin code522411', 'Village: Nanadirajupalem,D.no9-97,pincode:522411', '2202170011', '', '1', 'upload_files/candidate_tracker/1371914778_Resume.pdf', NULL, '3', '2022-02-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '10', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-17 07:41:33', 1, '2022-02-17 08:06:43', 0, NULL, 1),
(7812, 'Yogesswari', '22', '8939655740', '', 'yogesswarimn@gmail.com', '1985-06-05', 36, '2', '1', 'Balaji', 'Software Engineer', 100000.00, 2, 0.00, 17000.00, 'Cgennai', 'Kandhanchavadi chennai', '2202170012', '1', '2', 'upload_files/candidate_tracker/7269303956_Yogesswari_Nagasayanan_-_Content_Writer (1).pdf', NULL, '1', '2022-02-18', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 9m exp in content writing in 2014 has 8yr gap in between, no basic idea about DM, expt 17k.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-17 08:14:20', 1, '2022-02-17 08:18:23', 0, NULL, 1),
(7813, 'Lenin prabhakaran. K', '4', '9677701358', '9688708954', 'leninprabhakaran0718@gmail.com', '1998-06-21', 23, '2', '2', 'Kannan. N', 'Painter', 10000.00, 1, 0.00, 13000.00, 'west street kattuparamakudi paramakudi', 'First kamaraj nagar Anna Nedum pathai choolaimedu', '2202170013', '1', '1', 'upload_files/candidate_tracker/98575345975_lenin resume_updated.pdf', NULL, '1', '2022-02-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'his pronunciation is not clear, will not suite for our process , 2m in calling 9k he is not okay sal, expt 11-12k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-17 08:29:52', 1, '2022-02-18 11:02:37', 0, NULL, 1),
(7814, 'Mari ram lakshmanan', '22', '9345477204', '', 'Mariram.mr@gmail.com', '1995-07-30', 26, '2', '2', 'Mayil vahanan', 'Homemade food products', 1000000.00, 2, 200000.00, 400000.00, 'Theni', 'Chennai', '2202170014', '1', '2', 'upload_files/candidate_tracker/56365801438_MARI RAM LAKSHMANAN (4).pdf', NULL, '1', '2022-02-18', 30, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'HIgh salary expectations', '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-17 11:39:20', 1, '2022-02-18 11:01:27', 0, NULL, 1),
(7815, 'A.N.V.VIJAYABALAAJI', '4', '6379748635', '9840158727', 'Vijayabalaaji1572@gmail.com', '2000-07-15', 21, '1', '2', 'Vishnu hasan', 'Business', 30000.00, 0, 11000.00, 12000.00, 'T.nagar', 'T.nagar', '2202180001', '', '2', 'upload_files/candidate_tracker/24945033264_CV_2022010512553561.pdf', NULL, '1', '2022-02-18', 0, 'P1021', '3', '59', '2022-02-21', 132000.00, '', '6', '2022-08-01', '2', 'Selected for Elite RE in consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer mail shared', '', '', '', NULL, NULL, NULL, 1, '2022-02-18 10:02:32', 60, '2022-02-18 06:16:24', 0, NULL, 1),
(7816, 'Santhosh kumar S', '16', '8807945982', '', 'Stsanthosh24@gmail.com', '1989-08-24', 32, '2', '2', 'Subramani', 'Own business', 50000.00, 2, 19400.00, 25000.00, 'Madhuranthagam', 'Chennai kovilambakkam', '2202180002', '14', '2', 'upload_files/candidate_tracker/19690798396_1630074436846Resume_Vignesh.pdf', NULL, '1', '2022-02-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'oral and writing is below avg, has around 10yr exp with 19k ctc and expt 30%, he is very slow and couldnt see his exp in terms of skills.', '3', '2', '', '1', '1', '', '1', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-18 10:19:58', 7, '2022-02-18 11:31:35', 0, NULL, 1),
(7817, 'Bala Rajesh D', '11', '9361357588', '', 'balarajesh9197@gmail.com', '1997-09-03', 24, '2', '2', 'B deivachamy', 'Sub Inspector of police', 60000.00, 1, 0.00, 17000.00, 'T.Nagar', 'T.Nagar', '2202180003', '1', '1', 'upload_files/candidate_tracker/63628107127_Bala Rajesh Re?sume?.pdf', NULL, '1', '2022-02-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basic skills, father traffic police, since he is not interested in training he is looking for job. expt 15k', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-18 10:34:38', 58, '2022-02-18 02:36:53', 0, NULL, 1),
(7818, 'A.SHIVA RAJ', '5', '7207087207', '', 'Shivarazz@gmail.com', '1999-07-21', 22, '2', '2', 'amandhu', 'accountant', 1.00, 1, 13000.00, 18000.00, 'banglore', 'banglore', '2202180004', '1', '2', 'upload_files/candidate_tracker/37064970032_shivaraj resume nizamabad.docx', NULL, '2', '2022-02-18', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'was waiting to connect. no response', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-18 11:31:20', 1, '2022-02-18 11:43:36', 0, NULL, 1),
(7819, 'S.Keerthana', '11', '9566172516', '9342062551', 'keerthanasaravanan1199@gmail.com', '1999-01-01', 23, '1', '1', 's Theresa', 'House wife', 20000.00, 1, 16000.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2202180005', '', '2', 'upload_files/candidate_tracker/9367983956_Keerthana-1.docx', NULL, '1', '2022-02-18', 0, 'HR7M', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'her communication is below avg, not interested in calling profile and target based. she will not suit for both CRM and recruiter profile. she is separated with her parents and kid.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-18 11:37:21', 1, '2022-02-18 11:45:47', 0, NULL, 1),
(7820, '', '0', '7010761246', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202180006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-18 11:52:42', 0, NULL, 0, NULL, 1),
(7821, 'KALAIVANAN', '6', '6382297445', '8124528283', 'kalaivananaero@gmail.com', '1999-06-12', 22, '3', '2', 'NAGAJOTHI', 'Coolie', 15000.00, 2, 0.00, 14000.00, 'KUMBAKONAM', 'Kuduvanchery', '2202180007', '', '1', 'upload_files/candidate_tracker/46100453496_kalai updated resume.pdf', NULL, '1', '2022-02-18', 0, '', '3', '59', '2022-02-21', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-18 12:03:38', 60, '2022-02-19 11:39:44', 0, NULL, 1),
(7822, 'vivek', '5', '8884226038', '', 'Vivekvemula@gmail.com', '2007-02-18', 0, '2', '2', 'V SUBRAMANYAM', 'Agriculture', 25000.00, 0, 25000.00, 30000.00, 'banglore', 'Banglore', '2202180008', '1', '2', 'upload_files/candidate_tracker/86416595513_Vivek resume.pdf', NULL, '2', '2022-02-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 5yrs exp in credit card but not convinced with his analysis. comm. below avg. last mctc is 23k and expt 28K +, holds an offer for 28k. 6m worked in HDB and no doc for that. parents farmer and only son.', '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-18 12:04:38', 1, '2022-02-18 12:12:16', 0, NULL, 1),
(7823, 'Mohith Isai', '22', '9942266076', '', 'mohithisai@gmail.com', '2000-09-26', 21, '2', '2', 'Minila', 'Home maker', 10000.00, 2, 15000.00, 20000.00, 'Madurai', 'Chennai', '2202180009', '1', '2', 'upload_files/candidate_tracker/52475018638_Media Mohith Isai Resume.pdf', NULL, '1', '2022-02-21', 10, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no english comm. he is learning and completed 3m paid internship and he is doing freelance projects. expt 15-20k, reyaz checked his website and rejected.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-18 12:15:40', 7, '2022-02-21 04:10:40', 0, NULL, 1),
(7824, 'P Divakar', '5', '9100835121', '', 'pabbathidivakar1@gmail.com', '1996-04-21', 25, '2', '2', 'P.NAGA BABU', 'driver', 25000.00, 0, 14000.00, 18000.00, 'Kukatpalli', 'kukatpalli', '2202180010', '1', '2', 'upload_files/candidate_tracker/34880913398_1617125527914Resume_P.pdf', NULL, '2', '2022-02-18', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly Reschedule', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-18 12:53:58', 1, '2022-02-18 12:57:01', 0, NULL, 1),
(7825, 'K.Nagaraj', '4', '8438900411', '7305702502', 'nagasri411@gmail.com', '1993-05-01', 28, '4', '1', 'Krishnamoorthy', 'Driver', 9000.00, 1, 13443.00, 15000.00, 'Thiruvannamalai', 'chennai', '2202180011', '', '2', 'upload_files/candidate_tracker/35138350251_ScannerGo_24Sep2021_778262.pdf', NULL, '1', '2022-02-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'his pronunciation is not good, will not suite for health, has sales exp and expt 15k tH.ref suthagar.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-18 02:35:00', 1, '2022-02-18 02:41:28', 0, NULL, 1),
(7826, 'Lavanya vT', '4', '8438210138', '', 'Lavanthulasidar060295@gmail.com', '1995-02-06', 27, '2', '2', 'Thulasidar', 'Business', 40000.00, 1, 11000.00, 18000.00, '32/33 thandavarayan street Sowcarpet, Chennai 79', '32/33 Thandavarayan Street Sowcarpet, Chennai 79', '2202180012', '1', '2', 'upload_files/candidate_tracker/41506007913_Lavanya Profile-converted.pdf', NULL, '1', '2022-02-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process and expt high', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-18 05:54:39', 7, '2022-02-21 12:29:16', 0, NULL, 1),
(7827, 'R Srinivas', '5', '9550179991', '7989907952', 'srinivasryakam4@gmail.com', '1995-03-31', 26, '2', '2', 'Father', 'Former', 10000.00, 0, 170000.00, 280000.00, 'MARKOOK SIDDIPET', 'MARKOOK SIDDIPET', '2202180013', '1', '2', 'upload_files/candidate_tracker/44846677731_SRINIVAS RESUME 1.docx', NULL, '2', '2022-02-18', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Kindly Reschedule', '5', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-02-18 06:29:04', 1, '2022-02-18 06:38:11', 0, NULL, 1),
(7828, 'M Pritheka', '22', '9566822085', '', 'pritheka.m.shanthi@gmail.com', '1994-03-15', 27, '2', '2', 'G manoharan', 'Retired', 5000.00, 2, 0.00, 2.75, 'Vellore', 'Chennai', '2202180014', '1', '1', 'upload_files/candidate_tracker/79662238792_MPritheka.pdf', NULL, '2', '2022-02-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '1', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-18 06:33:15', 84, '2022-02-26 12:27:48', 0, NULL, 1),
(7829, '', '0', '9344594654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202180015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-18 06:51:40', 0, NULL, 0, NULL, 1),
(7830, 'g.jacob jayakumar', '6', '8056171745', '8925731890', 'jacobchris97@gmail.com', '1994-09-14', 27, '2', '2', 'George and nancy', 'Rcm', 30.00, 1, 14000.00, 22000.00, 'Chennai', 'Chennai', '2202180016', '1', '2', 'upload_files/candidate_tracker/78635743908_jacob.2021.pdf', NULL, '1', '2022-02-21', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, expt is high and no relevant exp. previously he was working in retail. no sales and convincing skills.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-18 10:59:01', 58, '2022-02-21 09:54:55', 0, NULL, 1),
(7831, '', '0', '7358259835', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-19 10:04:28', 0, NULL, 0, NULL, 1),
(7832, 'S.Manimegalai', '4', '9940188662', '7299197034', 'manimegalai1226akila@gmail.com', '1999-04-12', 22, '2', '2', 'T.Suresh kumar', 'Plumber', 10000.00, 1, 12000.00, 14000.00, 'Vellore', 'Saidapet', '2202190002', '1', '2', 'upload_files/candidate_tracker/19408828770_S.MANIMEGALAI Resume-WPS Office(1).pdf', NULL, '1', '2022-02-19', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 5m exp in loan with 12k no proper reliving, not good in script and expt 13-14k, will not handle sales pressure.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-19 10:51:57', 85, '2022-02-26 12:28:14', 0, NULL, 1),
(7833, 'geetha', '4', '8838797920', '', 'geethaprasath91@gmail.com', '2001-06-25', 20, '2', '2', 'ravi', 'hondai', 10000.00, 2, 0.00, 10000.00, 'pualliwalkam', 'Pualliwalkam', '2202190003', '1', '1', 'upload_files/candidate_tracker/65319505268_Geetha.Rresumepdf.pdf', NULL, '1', '2022-02-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped not suitable - Feedback from Interviewer', '1', '1', '', '', '', '', '1', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-19 12:01:01', 58, '2022-02-19 12:45:56', 0, NULL, 1),
(7834, 'THASLIN FIRDOUS', '6', '9342446912', '8838619705', 'thaslinfirdous06@gmail.com', '1998-06-16', 23, '3', '1', 'BAISUR RAHMAN', 'Daily wages', 15000.00, 2, 0.00, 12.00, 'Chennai', 'Chennai', '2202190004', '', '1', 'upload_files/candidate_tracker/52179213016_Resume_Tsln-1.PDF', NULL, '1', '2022-02-19', 0, '', '3', '59', '2022-02-21', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Guru Team in consultant role 5%', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-19 12:18:10', 60, '2022-02-19 06:47:28', 0, NULL, 1),
(7835, 'sahithya preethi m', '5', '9949350359', '', 'preethimuttamsetty16@gmail.com', '1998-01-01', 24, '2', '2', 'asha deepu', 'business', 30000.00, 0, 18000.00, 20000.00, 'vuyyuru', 'hyderabad', '2202190005', '1', '2', 'upload_files/candidate_tracker/10200305708_preethirsmm (6)-11 (2).pdf', NULL, '2', '2022-02-19', 0, '', '3', '59', '2022-02-28', 240000.00, '', '7', '2022-03-02', '2', 'Selected for ESales Rm in Hyderabad with PF/ESI/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-19 12:31:30', 60, '2022-02-25 05:34:56', 0, NULL, 1),
(7836, '', '0', '8074988337', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-19 01:15:03', 0, NULL, 0, NULL, 1),
(7837, 'Karthick', '31', '9976390283', '', 'karthiashok5604@gmail.com', '1999-09-04', 22, '2', '2', 'Ashok kumar', 'Self employee', 70000.00, 1, 22000.00, 30000.00, 'Salem', 'Salem', '2202190007', '1', '2', 'upload_files/candidate_tracker/15244363786_KARTHICK A CV.docx', NULL, '2', '2022-02-22', 1, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for ReactJS, currently working with his bro (WFH) in html and css with 22k. not answered for the very basic questions but says he is not good in oral and strong in practical. i suggest team to give him any system task. . expt 25k-30k. from salem will relocate to chennai.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-19 05:57:43', 7, '2022-02-22 03:51:42', 0, NULL, 1),
(7838, 'M Latha', '13', '8015868307', '', 'Lathanandhini0707@gmail.com', '2000-12-07', 21, '2', '2', 'Muthu', 'Labour', 10000.00, 0, 0.00, 12000.00, 'No 43, Mettu Street, Thiruvottiyur, Chennai –19', 'Chennai', '2202190008', '1', '1', 'upload_files/candidate_tracker/20581717256_RESUME12.docx', NULL, '1', '2022-02-21', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'working as data entry operator, no basic knowledge in tech., she just started learning but no skills, expt 12k.', '2', '2', '', '', '', '', '1', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-19 09:24:52', 7, '2022-02-21 04:05:42', 0, NULL, 1),
(7839, 'Raj Sandhya', '22', '9790844072', '8072465967', 'abisandy10@gmail.com', '1994-10-10', 27, '2', '2', 'Thangaraj B', 'Cine field', 40000.00, 2, 13000.00, 18000.00, 'Chennai', 'Chennai', '2202200001', '1', '2', 'upload_files/candidate_tracker/4504883342_Raj Sandhya Resume (2).pdf', NULL, '1', '2022-02-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-20 01:03:05', 1, '2022-02-20 01:18:58', 0, NULL, 1),
(7840, 'Angelin Suganthi L', '22', '9677308542', '', 'angelinmetilda309@gmail.com', '1998-09-30', 23, '2', '2', '-', '-', 80000.00, 3, 13000.00, 25000.00, 'Chennai', 'Chennai', '2202210001', '1', '2', 'upload_files/candidate_tracker/32260893530_ANGELIN_SUGANTHI_L.docx', NULL, '1', '2022-02-21', 10, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'her comm is avg, no idea in blogs and has exp in ecom content writing. will not suite for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-21 08:16:33', 1, '2022-02-21 08:20:01', 0, NULL, 1),
(7841, 'Dinesh Dinesh', '4', '7010663213', '9025157409', 'TAMILPASANGA770971@GMAIL.COM', '2000-07-21', 21, '2', '2', 'Lalalajapathy', '13k', 16.00, 1, 0.00, 13.00, 'Thiruvallur', 'Thiruvallur', '2202210002', '22', '1', 'upload_files/candidate_tracker/20330100158_dinesh to saran.pdf', NULL, '1', '2022-02-21', 0, '', '3', '59', '2022-02-25', 126312.00, '', '3', '2022-03-02', '1', 'Selected for Tiruvallur Location - Consultant 5%', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', 'Offer Mail sentxquot- Changes in th joining Date', '', '', '', NULL, NULL, NULL, 1, '2022-02-21 10:55:37', 60, '2022-03-08 12:55:20', 0, NULL, 1),
(7842, 'Paramesh', '5', '8096615438', '', 'susanthuppula666@gmail.com', '1995-04-10', 26, '2', '1', 'UPPULA MALLAIAH', 'fresher', 20000.00, 2, 0.00, 15000.00, 'hyderabad', 'hyderabad', '2202210003', '1', '1', 'upload_files/candidate_tracker/96824183450_0_yellamma.doc', NULL, '2', '2022-02-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for RM profile, English comm bellow avg, father and brother into farming, he is fresher will not suite for calling and sales. ', '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-21 10:58:05', 1, '2022-02-21 11:02:23', 0, NULL, 1),
(7843, 'Suber Khan M', '6', '7871272259', '9123577330', 'zubairsafi1997@gmail.com', '1997-12-08', 24, '2', '2', 'Mahin S', 'Bike mechanic', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2202210004', '1', '1', 'upload_files/candidate_tracker/87928157830_Upadated Resume (Subaer).doc', NULL, '1', '2022-02-21', 0, '', '3', '59', '2022-02-24', 182496.00, '', '3', '2022-03-03', '1', 'Selected for Suthagar Team,No relevant Exp,candidate need to open a lot,can be trained,need to analyse him in the training period', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '02/Mar- Discussed with the candidate,committed that he will come today(03-Mar-2022),but didnt turn', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-21 12:18:56', 60, '2022-03-03 02:26:48', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7844, '', '0', '7550110793', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202210005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-21 01:44:23', 0, NULL, 0, NULL, 1),
(7845, 'sivaranjani n', '4', '8940433230', '', 'sivaranjanink@gmail.com', '2007-02-21', 0, '2', '2', 'jaya n', 'coolie', 120000.00, 1, 0.00, 12000.00, 'Chengalpattu', 'venpakkam chengalpattu', '2202210006', '1', '1', 'upload_files/candidate_tracker/75974313364_resume1.pdf', NULL, '1', '2022-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-21 01:47:20', 1, '2022-02-21 01:54:11', 0, NULL, 1),
(7846, 'R. Raja', '6', '8667631579', '', 'rajarsaa@gmail.com', '1998-02-16', 24, '2', '2', 'Rathish', 'Business', 12000.00, 1, 0.00, 12000.00, 'Nandhanam', 'Nandhanam', '2202210007', '1', '1', 'upload_files/candidate_tracker/30504623131_Resume.pdf', NULL, '1', '2022-02-21', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'looking for IT jobs, will not suite for voice and sales profile, not speaking up, told him to learn and come.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-21 02:20:15', 1, '2022-02-21 02:24:29', 0, NULL, 1),
(7847, 'Rajkumar P', '31', '6382209795', '7094058536', 'rajkumarprjpm@gmail.com', '2001-01-02', 21, '2', '2', 'Poolar', 'Cooli', 100000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Rajapalayam', '2202210008', '1', '1', 'upload_files/candidate_tracker/5972940961_Rajkumar P.Resume-converted (2).pdf', NULL, '2', '2022-02-22', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ignore the previous feedback. Fresher, not strong in basics, but okay with 3m as trainee. willing to learn he is from rajapalayam, will relocate and immediate joiner. parents- daily wages, expt 10k.', '2', '1', '', '2', '2', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-21 04:00:36', 7, '2022-02-22 06:03:26', 0, NULL, 1),
(7848, 'Aravindh', '31', '8270714653', '8098923053', 'daravindh533@gmail.com', '1997-03-26', 24, '2', '2', 'P.Durai', 'Cooli', 10000.00, 3, 0.00, 10000.00, 'Tirunelveli.', 'Oragadam, Kanchipuram.', '2202210009', '1', '1', 'upload_files/candidate_tracker/97661959631_Aravindh.docx', NULL, '1', '2022-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-21 05:31:09', 1, '2022-02-21 05:48:23', 0, NULL, 1),
(7849, 'Navin Kumar N', '4', '6383473708', '', 'nk7203002@gmail.com', '1999-08-20', 22, '2', '2', 'N.sasikala', 'Garments', 15000.00, 0, 0.00, 20000.00, 'Thiruvalleeswarar Nagar', 'Thiruvalleeswarar Nagar', '2202210010', '1', '1', 'upload_files/candidate_tracker/8102224270_DocScanner Jan 31, 2022 8.02 PM.pdf', NULL, '1', '2022-02-22', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hving 2 yrs experience, but he s not opening his mouth abt his previous calling script.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-21 08:41:19', 60, '2022-02-22 10:25:35', 0, NULL, 1),
(7850, '', '0', '7904626362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-22 09:57:22', 0, NULL, 0, NULL, 1),
(7851, '', '0', '2345678901', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202220002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-22 11:09:35', 0, NULL, 0, NULL, 1),
(7852, 'Gopalakrishnan', '4', '8754676771', '9444445264', 'gopalakrishnan1721@gmail.com', '1999-11-17', 22, '2', '2', 'Subramani', 'Xerox Shop', 16000.00, 0, 0.00, 15000.00, 'Sriperumbhdur', 'Sriperumbhdur', '2202220003', '1', '1', 'upload_files/candidate_tracker/78422889336_gopal resume.docx', NULL, '1', '2022-02-22', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he looking for non-voice process. couldnxquott handled pressure so dropped.', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-22 11:23:09', 58, '2022-02-22 04:02:29', 0, NULL, 1),
(7853, 'Karthikeyan', '4', '9786251942', '8637443078', 'karthikeyansankarbca@gmail.com', '2000-11-05', 21, '2', '2', 'Sankary', 'Hotel', 12000.00, 1, 0.00, 15000.00, 'No 4 AK Mottur thimunamuthur thirupattur dt', 'Sriperumbudur', '2202220004', '1', '1', 'upload_files/candidate_tracker/4675916078_Karthikeyan S.pdf', NULL, '1', '2022-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'asked for a time to confirm - too long distance- much prefers for Non Voice- Didnt turn back -Tried calling him No response', '1', '1', '', '4', '6', '', '2', '2022-02-23', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-22 11:25:31', 58, '2022-02-22 04:02:55', 0, NULL, 1),
(7854, 'Monisha M', '13', '9842403906', '', 'monishamanikandan2000@gmail.com', '2000-05-12', 21, '2', '2', 'Manikandan M', 'Supervisor in construction field', 45000.00, 1, 0.00, 18000.00, 'Theni', 'Theni', '2202220005', '1', '1', 'upload_files/candidate_tracker/52324688654_MONISHA_B.E_TN.pdf', NULL, '3', '2022-02-25', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no vacency in php, so check with other like react and mern. she is willing to relocate and join.', '2', '1', '', '1', '1', '', '2', '2022-03-07', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-22 01:06:50', 84, '2022-02-25 11:21:08', 0, NULL, 1),
(7855, 'pranav', '31', '7845175619', '', 'pranavkth7@gmail.com', '1997-10-10', 24, '2', '2', 'Usha moni', 'Nurse', 20000.00, 0, 0.00, 10000.00, 'Nagercoil', 'Nagercoil', '2202220006', '1', '1', 'upload_files/candidate_tracker/86996666657_PRANAV Lal - CV-4.docx', NULL, '2', '2022-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 03:22:37', 1, '2022-02-22 03:26:30', 0, NULL, 1),
(7856, 'Vishnuvarathan', '6', '6383796211', '', 'Vishnuvarathan678@gmail.con', '1996-09-07', 25, '2', '2', 'R. Pandiyan', 'Sme operator', 60000.00, 3, 0.00, 12000.00, 'Neyveli', 'Neyveli', '2202220007', '1', '1', 'upload_files/candidate_tracker/54675068431_Resumes (1).pdf', NULL, '2', '2022-02-23', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he wrote GATE exam and also he attend coaching classes.. so he not suitable for us.. ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-22 04:00:50', 8, '2022-02-23 06:54:57', 0, NULL, 1),
(7857, 'Anantharaj', '13', '7871974912', '', 'happykingttk@gmail.com', '2001-03-15', 20, '2', '2', 'Sivanantham', 'Farmers', 45000.00, 1, 0.00, 15000.00, 'Vedaranyam', 'Vedaranyam', '2202220008', '1', '1', 'upload_files/candidate_tracker/67755306_Anantharaj_RESUME.pdf', NULL, '2', '2022-02-23', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, from vedaranyam will relocate to chennai, no basic skills, willing to learn in PHP. told him to learn and get back to you. parents farmers, expt 15k.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-22 04:16:24', 60, '2022-02-22 04:27:29', 0, NULL, 1),
(7858, 'Kavi Nilavu.R', '4', '9344250301', '7904808415', 'knilavu95@gmail.com', '1997-11-08', 24, '2', '2', 'Jesintha.R', 'House keeping', 20000.00, 1, 10000.00, 15000.00, 'Villivakkam chennai', 'Villivakkam chennai', '2202220009', '1', '2', 'upload_files/candidate_tracker/40442912385_KAVI new.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Has 1yr exp in customer support. not interested in calling, looking for chat support and backend. no knowledge in Excel. expt 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-22 05:03:08', 1, '2022-02-22 06:24:33', 0, NULL, 1),
(7859, 'raghavendar b', '22', '9176265680', '', 'raghavaa97@gmail.com', '1997-02-18', 25, '2', '2', 'baskar m', 'digital associate', 800000.00, 1, 250000.00, 150000.00, 'chennai', 'chennai', '2202220010', '1', '2', 'upload_files/candidate_tracker/50189855620_RESUME RAG.docx', NULL, '1', '2022-02-23', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '1', 'Candidate selected for final round', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 05:05:18', 1, '2022-02-22 05:19:15', 0, NULL, 1),
(7860, 'BHARANIDHARAN G', '31', '8610716620', '7538824366', 'bharanigopal29@gmail.com', '1998-12-29', 23, '2', '2', 'Gopal C', 'Building contractor', 30000.00, 1, 0.00, 2.50, 'Erode', 'Bangalore', '2202220011', '1', '1', 'upload_files/candidate_tracker/70028273720_BHARANIDHARAN.G-Resume.pdf', NULL, '2', '2022-02-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 06:01:32', 1, '2022-02-22 06:05:39', 0, NULL, 1),
(7861, 'Theri Ganesh G', '6', '7418115478', '8939885024', 'theriganesh.aaa@gmail.com', '1994-04-27', 27, '2', '2', 'Gunasekaran A', 'Accountant in rice mill', 14000.00, 2, 12000.00, 15000.00, 'Srivilliputhur', 'Adambakkam', '2202220012', '1', '2', 'upload_files/candidate_tracker/77151558762_Theri 2021.pdf', NULL, '1', '2022-02-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed and proposed the salary breakup for his approval,finally the candidate messaged that he is not interested in the profile.REquested for the reasons but no response after that', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-22 06:02:19', 58, '2022-02-23 11:03:10', 0, NULL, 1),
(7862, '', '0', '9585695162', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202220013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-22 06:05:34', 0, NULL, 0, NULL, 1),
(7863, 'K.Diwakar', '4', '8675035189', '', 'divakar8141@gmail.com', '1999-12-05', 22, '2', '2', 'Kuppuswamy', 'Sathosh Electrical', 18000.00, 1, 12000.00, 18000.00, 'Thiruvallur', 'Thiruvallur', '2202220014', '1', '2', 'upload_files/candidate_tracker/63362895886_Divakar updated resume.docx.pdf', NULL, '1', '2022-02-23', 15, '', '1', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '6', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-22 06:24:01', 60, '2022-02-23 05:14:53', 0, NULL, 1),
(7864, 'Siva R', '4', '9159307700', '9566618712', 'siva915930@gmail.com', '1999-05-25', 22, '2', '2', 'Ravi', 'Vegetable seller', 200000.00, 0, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2202220015', '1', '1', 'upload_files/candidate_tracker/44619587967_i9th3-jbqnb.pdf', NULL, '1', '2022-02-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-22 06:26:36', 1, '2022-02-22 06:29:57', 0, NULL, 1),
(7865, 'M.Mujeeb Rahman', '4', '9941762200', '7401174149', 'mujeebro143@gmail.com', '1999-08-29', 22, '2', '2', 'Sajitha parveen', 'Housewife', 150000.00, 1, 0.00, 15000.00, '46/76 Savari muthu street mannady', 'Chennai parrys', '2202220016', '1', '1', 'upload_files/candidate_tracker/8590665440_Mujib resume(1).pdf', NULL, '3', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 6m exp in airtel inbound process as customer support with 15k mctc, he prefer non voice. will not sustain and he dont have proper reliving and payslip for 15k. expt 14-16k take home. in non voice he dont have excel knowledge.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-22 06:46:43', 1, '2022-02-22 06:54:00', 0, NULL, 1),
(7866, '', '0', '7845490630', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202220017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-22 06:50:41', 0, NULL, 0, NULL, 1),
(7867, 'Roslind Vasantha A', '31', '9600950636', '', 'roslindvasantha@gmail.com', '1995-04-10', 26, '2', '2', 'aruna vijayan s', 'teacher', 150000.00, 1, 0.00, 350000.00, 'Tirunelveli', 'chennai', '2202220018', '1', '2', 'upload_files/candidate_tracker/2588754381_resume.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 7m exp 2.4l ctc and expt 3.5l.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 07:41:45', 1, '2022-02-23 12:39:22', 0, NULL, 1),
(7868, 'Sivanesan S', '22', '7395822106', '', 'sivanesans777@gmail.com', '1998-10-31', 23, '2', '2', 'Subramani A', 'Agriculture', 25000.00, 1, 9000.00, 15000.00, 'Dindigul', 'Chennai', '2202220019', '1', '2', 'upload_files/candidate_tracker/66765637834_SIVANESAN.S.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'poor comm. from guduvancherry too long, has5m exp in seo and expt 15k, need time to check with company norms', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-22 11:12:14', 1, '2022-02-23 09:57:18', 0, NULL, 1),
(7869, 'Sifat Naiyer', '31', '9718553438', '9555992412', 'sifatnyr@gmail.com', '1998-12-21', 23, '2', '2', 'ausaf naiyer', 'teacher', 20000.00, 6, 0.00, 2.00, 'bihar', 'Chennai', '2202230001', '1', '1', 'upload_files/candidate_tracker/3806666282_Recent online CV-converted.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'From bihar, language issues, he couldnt speak and understand english easily, no basic knowledge in react js. need lot of learning. but he is okay with our norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-23 06:38:44', 1, '2022-02-23 06:44:48', 0, NULL, 1),
(7870, 'Raja A', '4', '9787182401', '', 'rajaraki4121@gmail.com', '2001-08-23', 20, '2', '2', 'Anandhan', 'Working in shop', 15000.00, 1, 0.00, 15000.00, 'Arakkonam', 'Arakkonam', '2202230002', '1', '1', 'upload_files/candidate_tracker/72749853361_RAJA RESUME.docx', NULL, '1', '2022-02-23', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'dropped , looking for accounts department ', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-23 08:50:57', 58, '2022-02-23 10:38:58', 0, NULL, 1),
(7871, 'menaka', '4', '8248837446', '', 'meenumenaka130298@gmail.com', '1998-02-03', 24, '2', '2', 'gajendren', 'server', 10000.00, 1, 11500.00, 11500.00, 'Thiruvallur', 'thiruvallur', '2202230003', '1', '2', 'upload_files/candidate_tracker/94913790116_1637491217848_MENAKA GAJENDARAN.pdf', NULL, '1', '2022-02-23', 0, '', '5', '73', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice because already worked in voice process now not interest to this field. so dropped', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-23 10:09:06', 58, '2022-02-23 10:39:11', 0, NULL, 1),
(7872, 'Ramya', '6', '9952319892', '9962147265', 'Ramyaravi006@gmail.com', '1998-03-27', 23, '1', '2', 'Nasar', 'Farmer', 23000.00, 1, 15000.00, 18000.00, 'No 10 1st main road nemantham Village', 'No 22x block RV nagar jafferkhanpet', '2202230004', '', '2', 'upload_files/candidate_tracker/22504075860_RAMYA.R.pdf', NULL, '1', '2022-02-23', 0, 'Abi1070', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped she didnt provide the payslips and not responding to the calls too', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-23 10:23:12', 88, '2022-02-26 04:48:20', 0, NULL, 1),
(7873, 'soumya', '5', '8142848109', '', 'soumyamamunuri11@gmail.com', '1998-06-23', 23, '2', '2', 'mamunuri sathish', 'officer', 100000.00, 0, 12000.00, 16000.00, 'hyderabad', 'hyderabad', '2202230005', '1', '2', 'upload_files/candidate_tracker/91433054019_Soumya M (1).docx', NULL, '2', '2022-02-24', 0, '', '3', '59', '2022-03-18', 182496.00, '', '3', '2022-05-02', '2', 'Selected for Hyderabad ESales - Staff Role PT only', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-23 10:24:05', 60, '2022-03-18 04:44:50', 0, NULL, 1),
(7874, 'Ajith Kumar', '6', '7397287224', '8778219110', 'ajithkumar150052000@gmail.com', '2000-05-15', 24, '2', '2', 'Rajkumar', 'Medical rep', 30000.00, 2, 16000.00, 20000.00, '302, Raman Nagar perambur', 'No : 72 rrb super market madhavaram', '2202230006', '1', '2', 'upload_files/candidate_tracker/22748039860_AjithResume1.pdf', NULL, '1', '2024-12-18', 1, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit fot sales and not worth of his asking salary,he will join only in the mind of jan', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1027', '', '55651', '5151', '1970-01-01', 1, '2022-02-23 10:27:44', 154, '2024-12-18 11:58:13', 0, NULL, 1),
(7875, 'Peethala Venkata Nanda Kishore', '4', '9398762821', '', 'nandhubhai143@gmail.com', '1999-06-01', 22, '2', '2', 'Satyanarayana', 'Government school teacher', 90000.00, 1, 0.00, 18000.00, 'Vizianagaram', 'Vizianagaram', '2202230007', '1', '1', 'upload_files/candidate_tracker/53686459736_MY RESUME.docx', NULL, '1', '2022-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-02-23 11:00:44', 1, '2022-02-23 11:05:32', 0, NULL, 1),
(7876, 'Karthikeyan s', '31', '9362613559', '', 'karthikeyankarthi27695@gmail.com', '1995-06-27', 26, '2', '2', 'Sundararajan p', 'Fire and rescue service', 300000.00, 1, 15000.00, 19000.00, 'Virudhunagar', 'Chennai', '2202230008', '1', '2', 'upload_files/candidate_tracker/28644806607_Karthikeyan IT new-converted.pdf', NULL, '3', '2022-02-23', 20, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'He is a fireman and has 4yr exp in fire and safty, last 6m he was working with his bro as front end developer with 16k, expt 17-18k, for trainee he need to check with his family it seems. his father is also a fireman.', '2', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-23 11:20:48', 1, '2022-02-23 11:26:42', 0, NULL, 1),
(7877, 'Pavithra.m', '4', '9094423061', '9344250301', 'Pavi1604priya@gmail.com', '1997-04-16', 24, '2', '2', 'Manavalaraja', 'Self employed', 10000.00, 2, 0.00, 14000.00, '45,sundharam power line,vyasarpadi, chennai-39.', '45,sundharam power line,vyasarpadi,Chennai-39.', '2202230009', '1', '1', 'upload_files/candidate_tracker/48108119717_pavithra.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, came with kavi nilavu, she knows nothing and not speaking up, will not suite for any of our openings. expt 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-23 11:25:01', 1, '2022-02-23 11:32:37', 0, NULL, 1),
(7878, 'Joseph', '4', '9080613890', '', 'joeraina24@gmail.com', '1995-04-03', 26, '1', '2', 'Sugumar', 'Coolie', 8000.00, 1, 0.00, 12000.00, 'Nagpattinam', 'Nagpattinam', '2202230010', '', '1', 'upload_files/candidate_tracker/74422464111_joseph (1).pdf', NULL, '1', '2022-02-23', 0, 'P1065', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling and not active, very slow. expt 10k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-23 11:26:15', 1, '2022-02-23 11:30:17', 0, NULL, 1),
(7879, 'F. SUDALAI', '4', '6369752440', '9003953072', 'fsudalai@gmail.com', '2001-08-03', 20, '1', '2', 'K. Fathima', 'Farmer', 12000.00, 2, 0.00, 14000.00, '148 South Street Shenbagaramanallur Tirunelveli', '14 4th CROSS STREET DHARMARAJANAGAR KARAMPAKKAM', '2202230011', '', '2', 'upload_files/candidate_tracker/76112428447_RESUME.docx', NULL, '1', '2022-02-23', 0, '', '3', '59', '2022-02-24', 132000.00, '', '6', '2022-07-21', '2', 'Selected for Muthu Team - consultant 5%', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-02-23 11:28:02', 60, '2022-02-23 03:56:24', 0, NULL, 1),
(7880, 'Prakash.M', '6', '9176506654', '8190978663', 'Priyaprakash8870@gmail.com', '1999-06-01', 22, '2', '2', 'Parent', 'Working in shop', 1.25, 3, 0.00, 14000.00, 'Chennai', 'Prambur', '2202230012', '1', '1', 'upload_files/candidate_tracker/98113548342_PRAKASH.M Resume.pdf', NULL, '1', '2022-02-23', 0, '', '3', '59', '2022-02-25', 168000.00, '', '4', '2022-04-18', '1', 'Selected for Priyanka Jenit Team in consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-23 11:36:19', 60, '2022-02-25 09:41:33', 0, NULL, 1),
(7881, '', '0', '9789767791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 11:37:00', 0, NULL, 0, NULL, 1),
(7882, 'Mahammad Ibrahim', '5', '8143192197', '', 'ibrahim525282@gmail.com', '1989-03-09', 32, '2', '1', 'JAHANGEER', 'officer', 100000.00, 2, 18000.00, 25000.00, 'hyderabad', 'hyderabad', '2202230014', '1', '2', 'upload_files/candidate_tracker/62968439466_ibrahim new resume 2022.pdf', NULL, '2', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Has 4yr exp in moothut gold loan as asst manager and handling 6 members am not convinced with his existing analysis. looking for similar kind of profile, english comm. is poor. will not suite for team handling and our process, mctc is 20k and expt 25k.', '5', '2', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-02-23 12:24:09', 1, '2022-02-23 06:59:50', 0, NULL, 1),
(7883, '', '0', '9840915769', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 12:48:15', 0, NULL, 0, NULL, 1),
(7884, 'Sridhar R', '4', '8667886381', '', 'Rajsridhar91@gmail.com', '1997-07-14', 24, '2', '2', 'Rajendran', 'Farmer', 70000.00, 1, 16.00, 18.00, 'Orathanadu , Thanjavur', 'Orathanadu , Thanjavur', '2202230016', '1', '2', 'upload_files/candidate_tracker/5992124702_UPDATED CV.pdf', NULL, '1', '2022-02-28', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-23 12:51:21', 58, '2022-02-28 10:27:46', 0, NULL, 1),
(7885, '', '0', '9143192197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 12:52:47', 0, NULL, 0, NULL, 1),
(7886, 'Bharathi Baskar', '4', '7539910598', '9585695162', 'Bharathibaskar311994@gmail.com', '1994-06-04', 27, '2', '1', 'Muthukamarasamy', 'Civil engineer', 20000.00, 1, 15000.00, 13000.00, 'Kumbakonam', 'Tajore', '2202230018', '1', '2', 'upload_files/candidate_tracker/94109509443_bharathi 4.docx', NULL, '1', '2022-02-23', 15, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'highly salary expected not fit to team high age', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-23 01:16:15', 60, '2022-02-23 03:47:09', 0, NULL, 1),
(7887, 'Manoj Kumar J', '4', '8428634836', '9489251953', 'mk1072999@gmail.com', '1999-11-02', 22, '2', '2', 'Doss', 'Dying manager', 500000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2202230019', '1', '1', 'upload_files/candidate_tracker/54105019345_MANOJ RESUME (1).docx', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher for us, has 7m exp in bijus with 7L. expt 25k, he is not comfortable with RM profile, for crm he need time to think about it. his passion into modeling and thats the only reason he came chennai. will not sustain here.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-23 03:06:48', 1, '2022-02-23 03:11:18', 0, NULL, 1),
(7888, 'Praveen Kumar', '4', '6381883585', '9715435129', 'praveenpk971543@gmail.com', '2000-11-01', 21, '2', '2', 'MOHAN', 'Daily works', 15000.00, 2, 0.00, 15000.00, '477 mullai nagar viridhambattu Vellore 632006', '150 A, Omsakthi Street Baraniputhur Chennai-600122', '2202230020', '1', '1', 'upload_files/candidate_tracker/6843780839_1638942276539_RESUME(PRAVEENKUMAR_M).pdf', NULL, '3', '2022-02-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-23 03:16:45', 85, '2022-02-24 12:09:07', 0, NULL, 1),
(7889, 'Ranjith R', '22', '9095854864', '', 'ranjithjoseph773@gmail.com', '2007-02-23', 0, '2', '2', 'Raman k', 'Farmer', 10000.00, 1, 18000.00, 18000.00, 'Tiruvannamalai', 'Bangalore', '2202230021', '1', '2', 'upload_files/candidate_tracker/33730220351_Resume-16-Feb-2022(1).pdf', NULL, '2', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Comm. is not as we expect. overall 7m exp and 4m in DM with 18k, expt the same. has 3more days of notice and will relocate to chennai. parents farmers. he knows basics in DM.', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-23 03:39:05', 1, '2022-02-23 03:44:13', 0, NULL, 1),
(7890, 'Avinash', '6', '6383452371', '', 'Asaviortan96@gmail.com', '1996-06-24', 25, '1', '2', 'Father', 'Security', 30000.00, 2, 0.00, 18000.00, 'Chennai', 'Iyyapanthagal', '2202230022', '', '1', 'upload_files/candidate_tracker/52818665294_iq07o-bs7a2.pdf', NULL, '1', '2022-02-23', 0, '1065', '3', '59', '2022-02-28', 230000.00, '', '4', '2023-05-03', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-23 03:52:14', 60, '2022-02-28 09:49:14', 0, NULL, 1),
(7891, 'Yuvaani', '6', '7502033241', '7502282233', 'dineshammu241@gmail.com', '2000-07-13', 21, '1', '1', 'Dinesh', 'Driver', 20000.00, 2, 14000.00, 16000.00, 'Chennai', 'Arumbakkam', '2202230023', '', '2', 'upload_files/candidate_tracker/17814857031_Yuvaani Resume_REVISED.docx', NULL, '1', '2022-02-23', 0, 'P1065', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'salary issue ', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-23 04:04:25', 8, '2022-02-24 10:04:30', 0, NULL, 1),
(7892, 'Harini', '4', '7358046315', '9962555554', 'privateharini@gmail.com', '2000-08-02', 21, '4', '2', 'Bhuvana', 'Accountant', 50000.00, 0, 14000.00, 16000.00, 'Ayanabakkam', 'Ayanabakkam', '2202230024', '', '2', 'upload_files/candidate_tracker/74996537226_Harini Resume.pdf', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, as 3m exp in sbi cards 12.5k th and expt 15k. no job need and time being looking for job. will not handle pressure and very childish. ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-23 04:04:30', 1, '2022-02-23 04:21:03', 0, NULL, 1),
(7893, 'Sathya priya . U', '4', '7604910292', '7806933270', 'sathyapriya0411@gmail.com', '2000-01-04', 22, '4', '2', 'Udhayarajan', 'Hotel', 50000.00, 1, 14000.00, 16000.00, 'Kk Nagar', 'Kk Nagar', '2202230025', '', '2', 'upload_files/candidate_tracker/81986200915_sathya resume_REVISED.docx', NULL, '1', '2022-02-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 3m exp in sbi cards 14k th and expt 18k, she is a beautician and no job need, settled family. time being looking for job and she will take leave during booking dates.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-23 04:05:46', 1, '2022-02-23 04:20:18', 0, NULL, 1),
(7894, 'vinod kumar', '5', '9640402168', '9553726167', 'vinodkumar.peddi67@gmail.con', '1996-09-05', 25, '2', '2', 'nagaiah', 'officer', 100000.00, 1, 18000.00, 21000.00, 'hyderabad', 'hyderabad', '2202230026', '1', '2', 'upload_files/candidate_tracker/90720707699_Vinnu final resume.pdf', NULL, '2', '2022-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-02-23 04:08:06', 1, '2022-02-23 04:13:08', 0, NULL, 1),
(7895, 'Rahulsanjai R', '4', '9894810983', '', 'Tamilrahul53@gmail.com', '1995-06-12', 26, '2', '2', 'Ramachandran K v', 'Gold smith', 25000.00, 1, 15000.00, 15000.00, 'Dindigul', 'Chennai , poonamalle', '2202230027', '1', '2', 'upload_files/candidate_tracker/25214151112_RAHULSANJAI R POONAMALLEE NEAR (1).pdf', NULL, '1', '2022-02-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-23 05:02:49', 85, '2022-02-24 10:18:24', 0, NULL, 1),
(7896, 'Srivani kudikala', '25', '9666022240', '', 'srivanichitti00@gmail.com', '1997-05-02', 24, '2', '2', 'Anasurya', 'Home maker', 8000.00, 3, 0.00, 15000.00, '1_2, mandelagudem, ragunathpally ,jangoan', 'Ameerpet', '2202230028', '1', '1', 'upload_files/candidate_tracker/34140933566_srivani.resume.docx', NULL, '2', '2022-02-24', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr exp in core and 2yrs gap. her communication is not good. will not suite for esale. expt is 15-16k. staying in pg, her parents farmers.', '8', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-23 05:19:35', 60, '2022-02-24 04:15:28', 0, NULL, 1),
(7897, 'Vishnu raj kumar', '31', '9094473869', '', 'Vishnucvl50@gmail.com', '1994-06-21', 27, '2', '2', 'C. Subramanian', 'Aspiring front end developer', 21000.00, 2, 0.00, 10000.00, 'Pudukottai', 'Pudukottai', '2202230029', '1', '1', 'upload_files/candidate_tracker/18229940286_Resume-1-converted-converted.pdf', NULL, '1', '2022-02-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-23 06:02:51', 1, '2022-02-23 06:07:40', 0, NULL, 1),
(7898, 'Gayathri K p', '4', '7397634565', '8072210411', 'gayathriinfotech4196@gmail.com', '1996-01-04', 26, '2', '2', 'Prabhuraman K k', 'Saree business', 24000.00, 1, 13000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2202230030', '1', '2', 'upload_files/candidate_tracker/83977285642_gayathri resume.pdf', NULL, '1', '2022-02-24', 0, '', '3', '59', '2022-03-03', 164220.00, '', '', '2022-03-14', '2', 'Selected for Sithyvinayagam team in consultant role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-23 06:11:33', 60, '2022-03-02 04:33:14', 0, NULL, 1),
(7899, '', '0', '9791011437', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 06:29:09', 0, NULL, 0, NULL, 1),
(7900, '', '0', '7550072313', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202230032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-23 09:07:52', 0, NULL, 0, NULL, 1),
(7901, 'Monisha', '31', '9003074612', '', 'Monishainfo999@gmail.com', '1999-09-09', 22, '2', '2', 'Thanikachalam', 'Wellder', 50000.00, 1, 8000.00, 16000.00, 'Chennai', 'Chennai', '2202240001', '1', '2', 'upload_files/candidate_tracker/38061040477_resume(1).pdf', NULL, '1', '2022-02-24', 1, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', '7m in ui/ux, okay with all the company norms, has 28days notice. gokul told to come on last day of notice. trainee then placement. ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-24 09:46:50', 1, '2022-02-24 02:42:33', 0, NULL, 1),
(7902, 'A.Rajeshwari', '4', '9585030690', '', 'rajisam9585@gmail.com', '2000-05-04', 21, '1', '2', 'A.Samundeeswari', 'Good salary', 15000.00, 0, 0.00, 15000.00, 'No.36 Sp main road Koppur village', 'No.36 Sp Main Road Koppur Village', '2202240002', '', '2', 'upload_files/candidate_tracker/18333981316_resume pdf.pdf', NULL, '1', '2022-02-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-24 10:39:11', 1, '2022-02-24 11:12:04', 0, NULL, 1),
(7903, 'Madhavi', '4', '8682805845', '', 'madhavimani97@gmail.com', '1996-07-02', 25, '2', '2', 'Elumalai', 'Cooli', 20000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2202240003', '1', '2', 'upload_files/candidate_tracker/13287809421_MADHAVI.pdf', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 3yr exp in credit card sales. came with her friend. both from same clg worked in same company previously and relived in current company together. 18k th and expt 20k th. sal expt is high for crm, will not suite for rm since not interested in field sales. job need.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-24 10:40:26', 1, '2022-02-25 08:55:09', 0, NULL, 1),
(7904, 'Subathra', '4', '7094037312', '7708408457', 'Celinesuba9@gmail.com', '1997-04-01', 24, '2', '2', 'Ayyalu', 'Business', 300000.00, 3, 9000.00, 12000.00, 'Mariyamman kovil', 'Mariyamman kovil', '2202240004', '1', '2', 'upload_files/candidate_tracker/78138325436_1606626710754_Suba.PDF', NULL, '3', '2022-02-24', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not that much profile and no voive clarity not fit for teloe sales', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-24 10:41:36', 1, '2022-02-24 10:49:08', 0, NULL, 1),
(7905, '', '0', '7010394576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 11:08:26', 0, NULL, 0, NULL, 1),
(7906, 'Anbarasan', '16', '9500890127', '', 'Anbarasanr55@gmail', '1997-05-10', 24, '2', '2', 'Rajamanickam p', 'Electrician', 40000.00, 2, 0.00, 20000.00, 'Kallakurichi', 'Porur', '2202240006', '1', '2', 'upload_files/candidate_tracker/73404204666_Anbarasan CVm.pdf', NULL, '1', '2022-02-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'comm below avg, has 2yr mis exp. basic xl knowledge and mctc 15k and expt 20k. already worked for 2yr contract now he need time to think about our company norms. ', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-24 12:02:06', 1, '2022-02-24 12:08:48', 0, NULL, 1),
(7907, 'Vishnupriya k', '4', '8870405390', '9791801748', 'vishnutamiltnj2594@gmail.com', '1995-11-17', 26, '3', '2', 'M kalayana kumar', 'Carpenter', 30000.00, 2, 10000.00, 10000.00, 'Tps nagar Thanjavur', 'Tps nagar Thanjavur', '2202240007', '', '2', 'upload_files/candidate_tracker/74875245011_VP.pdf', NULL, '1', '2022-02-24', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit', '1', '1', '0', '4', '5', '0', '2', '2022-03-10', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-24 12:12:18', 1, '2022-02-24 12:18:42', 0, NULL, 1),
(7908, '', '0', '9842183382', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 12:28:25', 0, NULL, 0, NULL, 1),
(7909, 'Hariharan', '4', '8778619558', '7373153522', 'Srhariharanh@gmail.com', '2001-09-07', 20, '2', '2', 'Sivaguru', 'Family Preffesional', 30000.00, 2, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2202240009', '1', '1', 'upload_files/candidate_tracker/59160173284_CV_2021-03-05-092820.pdf', NULL, '1', '2022-02-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-24 12:35:46', 85, '2022-02-24 12:43:41', 0, NULL, 1),
(7910, 'JAYALAKSHMI', '31', '9597849782', '', 'jayalakshmi2000e@gmail.com', '2000-09-09', 21, '2', '2', 'ELUMALAI', 'Business', 50000.00, 0, 25000.00, 35000.00, '47 , Vaniya Street karanthai Thanjavur -613002', 'Thanjavur', '2202240010', '1', '2', 'upload_files/candidate_tracker/38053099146_JayalakshmiRes.docx.pdf', NULL, '2', '2022-02-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '', '', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-24 12:36:59', 60, '2022-02-24 04:13:35', 0, NULL, 1),
(7911, '', '0', '7401394100', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 12:39:49', 0, NULL, 0, NULL, 1),
(7912, '', '0', '8939418160', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 01:07:22', 0, NULL, 0, NULL, 1),
(7913, 'Bhuvaneshwari.B', '4', '6374353401', '9095118164', 'shugashinibhuvii@gmail.com', '2001-01-09', 21, '2', '2', 'J.P.Balachandran', 'Goldsmith', 10000.00, 1, 0.00, 8000.00, 'thanjavur', 'thanjavur', '2202240013', '1', '1', 'upload_files/candidate_tracker/73187789888_Bhuvaneshwari.B.docx', NULL, '1', '2022-02-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-24 06:29:23', 85, '2022-02-25 09:35:25', 0, NULL, 1),
(7914, 'Saravana Perumal P', '13', '8300923800', '', 'saravanaperumal886@gmail.com', '1997-11-08', 24, '2', '2', 'Perumal Samy M', 'Clerk', 12000.00, 2, 0.00, 15000.00, 'Viswanatham sivakasi', 'Choolaimedu chennai', '2202240014', '1', '1', 'upload_files/candidate_tracker/2398446036_Saravana_PerumaL.pdf', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '6m exp in php 11.5k expt 15k, looking for job not okay with internship, not okay with company norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-24 06:50:04', 1, '2022-02-24 06:55:22', 0, NULL, 1),
(7915, '', '0', '9841320863', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 06:53:23', 0, NULL, 0, NULL, 1),
(7916, 'Saravana Perumal', '23', '9384704689', '8300923800', 'saravanaperumal768@gmail.com', '1998-11-08', 24, '2', '2', 'M.Perumal Samy', 'Clerk', 20000.00, 2, 12000.00, 25000.00, 'Viswanatham sivakasi', 'Choolaimedu chennai', '2202240016', '1', '2', 'upload_files/candidate_tracker/90399713924_Saravana_Perumal P Resume.PDF', NULL, '1', '2022-12-03', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills just looking for Salary growth will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-02-24 06:56:30', 99, '2022-12-03 11:24:36', 0, NULL, 1),
(7917, '', '0', '9677700469', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202240017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-24 07:39:02', 0, NULL, 0, NULL, 1),
(7918, 'Amrish', '16', '9597181362', '9489323859', 'vijeyamrish@gmail.com', '1999-03-14', 22, '2', '2', 'Prabhakaran', 'Business', 200000.00, 1, 0.00, 18000.00, 'Vellore', 'Vellore', '2202250001', '1', '1', 'upload_files/candidate_tracker/78930548780_amrish resume-converted.pdf', NULL, '3', '2022-02-25', 0, '', '4', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'okay with his comm and convincing, expt 15k take home, from vellore will relocate to chennai. herash completed next level interview. check for renewal. okay with service agreement.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-25 09:48:29', 8, '2022-03-01 12:43:29', 0, NULL, 1),
(7919, 'Bheemashankar', '5', '8217374830', '', 'bheemupatil97@gmail.com', '1997-07-01', 24, '2', '2', 'devendrapa', 'real estate', 3.00, 3, 3.00, 4.00, 'Banglore', 'Banglore', '2202250002', '1', '2', 'upload_files/candidate_tracker/35100680426_Bhimashankar.pdf', NULL, '2', '2022-02-25', 0, '', '4', '30', NULL, 0.00, '', '0', NULL, '1', '25/02/2022 jennifer Bhimashankar RM Bangalore SNR 2yr exp in sales, was working in bounce with 16k and currently working in reliance retail backend sales with 23k. parents in gulbarka and he staying in pg. if required he will relocate nearby. has 2w and lap. expt 3.5-4L. 15days notice.', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-25 10:33:57', 1, '2022-02-25 10:41:38', 0, NULL, 1),
(7920, 'Divakar.R', '16', '9791324090', '', 'gaanadiva07@gmail.com', '1998-04-14', 23, '2', '2', 'Ravi kumar.p', 'Village assistant', 15000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2202250003', '1', '2', 'upload_files/candidate_tracker/34780668583_DIVAKAR.R-converted.pdf', NULL, '1', '2022-02-25', 0, '', '4', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 2yrs mis exp with 15k and expt 18k, has basic xl skills, father asst for vao, from kovur. okay with calling but comm is not as expected.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-25 10:42:56', 58, '2022-03-09 03:46:48', 0, NULL, 1),
(7921, 'Manoj MR', '5', '9632624710', '', 'manojmr097@gmail.com', '1997-12-20', 24, '2', '2', 'renukiah', 'passed away', 18000.00, 1, 0.00, 18000.00, 'Banglore', 'Banglore', '2202250004', '1', '1', 'upload_files/candidate_tracker/38489572014_Manoj M R resume.pdf', NULL, '2', '2022-02-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-25 10:46:12', 1, '2022-02-25 11:50:06', 0, NULL, 1),
(7922, '', '0', '9597630973', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202250005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-25 10:55:10', 0, NULL, 0, NULL, 1),
(7923, 'V.Janani', '4', '6374509699', '', 'jananijana3014@gmail.com', '1999-11-14', 22, '3', '2', 'G.vembuli', 'Electtician', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Medavakkam', '2202250006', '', '2', 'upload_files/candidate_tracker/63484399770_janani resume.docx', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 3yr exp in retail 13k. will not suite for our process and will not sustain, expt 15k', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-25 11:54:34', 1, '2022-02-25 11:59:35', 0, NULL, 1),
(7924, 'JOTHIKA', '4', '6374640773', '', 'kkjothika20@gmail.com', '2000-06-20', 21, '2', '2', 'karunakaran', 'farmer', 15000.00, 2, 0.00, 12000.00, 'namakkal', 'namakkal', '2202250007', '1', '1', 'upload_files/candidate_tracker/61819019178_jothika resume-converted (3) (1).pdf', NULL, '3', '2022-02-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-25 11:59:15', 1, '2022-02-25 12:05:14', 0, NULL, 1),
(7925, 'Laiqhur Rahman', '5', '9894908904', '', 'laiqhurrahman@gmail.com', '1992-12-07', 29, '2', '2', 'Nayeemur Rahman', 'Self Employed', 450000.00, 1, 30000.00, 30000.00, 'Avadi', 'Avadi', '2202250008', '14', '2', 'upload_files/candidate_tracker/82722227369_MY RESUME.pdf', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for RM profile, he is looking for team handling profile. not interested in field sales. ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-25 12:17:19', 1, '2022-02-25 12:19:14', 0, NULL, 1),
(7926, 'R SANGEETHA', '4', '7092657044', '7550281093', 'sangeemaha96@gmail.com', '1996-10-28', 25, '2', '1', 'Sathish kumar', 'Cashier', 30000.00, 0, 18000.00, 20000.00, 'Chennai', 'Chennai', '2202250009', '1', '2', 'upload_files/candidate_tracker/16681889817_Sangeetha-Resume (1).pdf', NULL, '1', '2022-02-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 3yr exp in credit card sales. came with her friend madhavi. both from same clg worked in same company previously and relived in current company together. 18k th and expt 20k th. sal expt is high for crm, will not suite for rm since not interested in field sales. job need.her husband working in moothut fin.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-25 01:13:40', 1, '2022-02-25 01:18:53', 0, NULL, 1),
(7927, 'Subhasri', '4', '8072903877', '9367724635', 'subhapapu9@gamil.com', '1999-09-09', 22, '2', '2', 'Chockalingam', 'Business', 30000.00, 1, 0.00, 18000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2202250010', '1', '1', 'upload_files/candidate_tracker/73597797669_resume subhasri.c.pdf', NULL, '3', '2022-02-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher expt 15k and she prefers non voice. pursuing her Mba. from mailaduthurai she will relocate to thanjavur so she is not okay with 9-10k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-25 02:38:29', 60, '2022-02-26 07:04:34', 0, NULL, 1),
(7928, 'Vivek', '5', '7092315607', '', 'vivekgokul13v98@gmail.com', '1998-03-13', 26, '6', '2', 'Parent', 'Senior cre', 100000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2202250011', '', '2', 'upload_files/candidate_tracker/86271629206_ResumeBuilder_02_05_2024_10_31_01_am.pdf', NULL, '1', '2024-05-15', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dont have sales skill, and communication\n', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-25 02:57:49', 112, '2024-05-15 03:19:24', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(7929, 'Manikandan', '6', '6380331649', '8344235208', 'manikandandms97@gmail.com', '1997-10-10', 24, '2', '2', 'Durairaj', 'Former', 10000.00, 1, 13500.00, 17000.00, 'Chennai', 'Chennai', '2202250012', '1', '2', 'upload_files/candidate_tracker/79292164254_Mainkandan_1997.pdf.pdf.pdf', NULL, '1', '2022-02-25', 0, '', '3', '59', '2022-02-28', 182496.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team in Staff Role Prop company only PT Deductions', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-25 03:53:47', 60, '2022-02-26 05:58:42', 0, NULL, 1),
(7930, 'SHAKIRA BANU AE', '25', '8124274919', '9840274919', 'Shakirabaanu2715@gmail.com', '1999-08-27', 22, '2', '2', 'MOHAMMAD ELEYAS A', 'Tailor', 12000.00, 2, 14000.00, 17000.00, 'Chennai', 'Chennai', '2202250013', '1', '2', 'upload_files/candidate_tracker/56259096414__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-02-26', 20, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has overall 10m exp 14k and expt 16-17k take home, okay with her scripts but her salary expt is high. she will not sustain and not okay with service agreement incase we hire for renewal.', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-25 04:09:10', 87, '2022-02-28 10:43:16', 0, NULL, 1),
(7931, 'Akhila Rampelly', '25', '7330794283', '', 'akhilarampellyakhilarampelly@gmail.com', '2001-07-07', 20, '2', '2', 'Ramjamogili', 'Farmer', 40000.00, 1, 0.00, 15000.00, 'Hyderabad', 'Hyderabad', '2202250014', '1', '1', 'upload_files/candidate_tracker/66200661250_akhila ramply.pdf', NULL, '2', '2022-02-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,Her communication is below avg and she couldn’t understand me and deliver exactly. Will not suite for our process and expect is 15k. Parents are farmers and she is staying in PG at amirpet.', '8', '2', '', '3', '4', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-25 04:37:09', 60, '2022-02-25 05:21:03', 0, NULL, 1),
(7932, '', '0', '8122221496', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202250015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-25 05:25:36', 0, NULL, 0, NULL, 1),
(7933, 'Eralla Manisha', '5', '9398340630', '9963652943', 'erallamanisha99@gmail.com', '1999-05-22', 22, '2', '2', 'erallaposhalu', 'Farmer', 10000.00, 3, 0.00, 15000.00, '6-88/31/13 saidapur mandal karimnagar district', 'Saidapur', '2202250016', '1', '1', 'upload_files/candidate_tracker/34352516223_Eralla Manisha Resume.pdf', NULL, '2', '2022-02-26', 0, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Kindly Reschedule', '5', '1', '', '3', '4', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-25 06:48:15', 60, '2022-03-01 11:53:29', 0, NULL, 1),
(7934, 'sakthikumar', '31', '8072970033', '', 'sakthikumar_97@outlook.com', '1997-06-05', 24, '2', '2', 'mathiyazhagan', 'agriculture', 10000.00, 1, 0.00, 15000.00, 'thanjavur', 'chennai', '2202250017', '1', '1', 'upload_files/candidate_tracker/29434063951_sakthi bio1.pdf', NULL, '1', '2022-02-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'done 3m course in react, no basic tech. skills, has 1yr exp in construction. he need time to think about company norms. looking for job not internship. min 1 yr he can sign agreement. ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-25 06:56:39', 1, '2022-02-25 07:17:17', 0, NULL, 1),
(7935, 'kannan mariyppan', '13', '9042397995', '9942332495', 'mayakkannan.mari@gmail.com', '1986-10-15', 35, '2', '1', 'amuthaveni', 'business', 50.00, 1, 35000.00, 45000.00, 'chennai', 'chennai', '2202250018', '1', '2', 'upload_files/candidate_tracker/85692922425_Kannan PHP developer.pdf', NULL, '1', '2022-02-26', 0, '', '4', '63', NULL, 0.00, '', '0', NULL, '2', 'says 6+ exp in php, check with tech skills. holds offer for 40k', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-25 07:00:05', 1, '2022-02-25 07:04:56', 0, NULL, 1),
(7936, 'Dhivya.S', '4', '9655414081', '', 'dhivyasingarayan@gmail.com', '1999-11-09', 22, '2', '2', 'Singarayan.V', 'Farmer', 10000.00, 2, 0.00, 20000.00, '10-3-110a, Amma nagar, Kodairoad, Dindugal,624206.', 'Dindugal', '2202250019', '1', '1', 'upload_files/candidate_tracker/20426219769_Resume- Dhivya.pdf', NULL, '2', '2022-02-26', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not suitable for telesales', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-25 07:10:22', 1, '2022-02-25 07:19:03', 0, NULL, 1),
(7937, 'S Hassain', '6', '7358738048', '9941535431', 'Hassanhassan03036@gmail.com', '2000-05-04', 21, '2', '2', 'K Safi', 'Auto driver', 40000.00, 1, 13500.00, 15000.00, 'Andhra', 'Ambattur', '2202250020', '1', '2', 'upload_files/candidate_tracker/35906737680_hassain (1).docx', NULL, '1', '2022-02-28', 0, '', '3', '59', '2022-03-09', 192000.00, '', '3', '2022-03-16', '1', 'Selected for Ravi Team in PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-25 08:13:55', 60, '2022-03-07 04:14:53', 0, NULL, 1),
(7938, 'Aravindhan Santhakumar', '4', '6380209041', '9976477320', 'aravindhanks1102@gmail.com', '2000-03-11', 21, '2', '2', 'Santhakumar', 'Civil foreman', 120000.00, 0, 0.00, 10.00, 'Thanjavur', 'Thanjavur', '2202260001', '1', '1', 'upload_files/candidate_tracker/10819858037_aravindhansold2.pdf', NULL, '1', '2022-02-26', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability looking for IT but well profiled not fit for team and tele sales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-26 09:11:06', 58, '2022-02-26 03:00:14', 0, NULL, 1),
(7939, 'Prem Kumar', '26', '8122221493', '', 'ybpremkumar@gmail.com', '1995-06-06', 26, '2', '1', 'Baskar', 'Business', 200000.00, 2, 10500.00, 16000.00, 'Chennai', 'Chennai', '2202260002', '1', '2', 'upload_files/candidate_tracker/81752982241_nPrem Curriculam Vitae-1.docx', NULL, '1', '2022-02-26', 30, '', '4', '72', NULL, 0.00, '', '0', NULL, '1', 'has 5yr exp in cams. 11.5k expt 15-18k. married 15days notice. father into construction.', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-26 09:49:39', 1, '2022-02-26 09:53:53', 0, NULL, 1),
(7940, 'Ragul', '4', '9626038846', '8524883883', 'ksragul001@gmail.com', '1999-06-29', 22, '2', '2', 'Subramani and krishnaveni', 'Business', 10000.00, 2, 0.00, 20000.00, 'Dharmapuri', 'Chennai', '2202260003', '1', '1', 'upload_files/candidate_tracker/45518946569_Ragul Resume22.docx', NULL, '2', '2022-02-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Has 1yr exp as dealer in aurkya milk with 10k from dharmaburi will relocate to Chennai and stay in chrompet with friends. No convincing and expt is 15k+, not interested in field sales. As crm expt is high and will not suite for RE.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-26 10:02:11', 85, '2022-02-26 11:29:20', 0, NULL, 1),
(7941, 'Suresh', '4', '9655041675', '8973294912', 'karanthaisuresh@gmail.com', '1998-06-13', 23, '2', '2', 'Anjammal', 'Home Maker', 6000.00, 1, 12500.00, 13000.00, 'Thanjavur', 'Thanjavur', '2202260004', '1', '2', 'upload_files/candidate_tracker/82294766043_Suresh Regu New.docx', NULL, '1', '2022-02-26', 0, '', '3', '59', '2022-03-01', 151584.00, '', '3', '2022-03-02', '1', 'Selected for Thanjavur location in consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', 'Joined and next day called and informed that he is getting relieve as he got another offer', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-26 10:54:30', 60, '2022-03-03 11:48:19', 0, NULL, 1),
(7942, 'thallapaka david boon', '5', '9160576797', '', 'davidboon.t6@gmail.com', '1993-05-28', 28, '2', '2', 't shanthamma', 'business', 30000.00, 2, 21000.00, 30000.00, 'rs konadapuram ysr kadapa', 'ameerpethyderab', '2202260005', '1', '2', 'upload_files/candidate_tracker/54107580508_David.pdf', NULL, '2', '2022-02-26', 0, '', '3', '59', '2022-03-17', 325000.00, '', '4', '2022-05-31', '1', 'Selected for Hyderabad with PF/ESI/PT', '5', '1', '1', '3', '4', '', '2', '2022-03-11', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-26 12:24:02', 60, '2022-03-11 01:25:52', 0, NULL, 1),
(7943, 'Jibaliya', '4', '9025424908', '9025423908', 'jibareshu402@gmail.com', '2000-11-04', 21, '2', '2', 'Nayeem', 'Tailor', 20000.00, 3, 12000.00, 20000.00, 'No.159/3 VM street, Royapettah,chennai_14', 'No.159/3 VM street, Royapettah,chennai_14', '2202260006', '1', '2', 'upload_files/candidate_tracker/32481609050_28335_Resume (1).docx', NULL, '1', '2022-02-26', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '6', '0', '1', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-02-26 01:27:41', 1, '2022-02-26 08:43:16', 0, NULL, 1),
(7944, 'T.GOWTHAM', '4', '9710176475', '9003126614', 'GOUTAMMUNNA32@GMAIL.COM', '1996-10-06', 25, '2', '2', 'L.THANGAM', 'Voices process', 16000.00, 1, 0.00, 18000.00, 'Thiruvottiyur chennai19', 'Thiruvottiyur chennai19', '2202260007', '1', '1', 'upload_files/candidate_tracker/44349164557_T. Gowtham.pdf', NULL, '1', '2022-02-28', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', '5050 Profile,fresher for Telecaller, Sustainability kindly check and let me know your inputs', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-26 02:40:31', 1, '2022-02-26 07:07:14', 0, NULL, 1),
(7945, 'Ranjith.T', '31', '8489837981', '8838791032', 'ranjiththiyagu971@gmail.com', '1999-07-20', 22, '2', '2', 'v.thiyagarajan', 'Runs a Store', 20000.00, 1, 0.00, 22000.00, 'Chennai south , Ekkatuthangal,ambal Nagar,chennal', 'Ekkatuthangal ,ambal Nagar, Chennai', '2202260008', '1', '1', 'upload_files/candidate_tracker/35120993225_full stack developer.pdf', NULL, '1', '2022-03-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-26 03:45:37', 84, '2022-03-02 10:07:55', 0, NULL, 1),
(7946, 'Unguturi v v s n s vasanthi', '4', '7207438733', '7307438733', 'Vasanthiunguturi3@gmail.com', '2000-11-13', 21, '2', '2', 'Unguturi venkateswararao', 'Private employee', 10000.00, 1, 0.00, 15000.00, 'West godavari', 'West godavari', '2202260009', '1', '1', 'upload_files/candidate_tracker/81484494644_vasanthi-converted.pdf', NULL, '2', '2022-03-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '3', '4', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-02-26 05:36:49', 1, '2022-02-26 05:40:18', 0, NULL, 1),
(7947, 'BHUVANESH', '25', '8526515789', '', 'buvanesh6496@gmail.com', '1996-07-06', 25, '2', '2', 'baskaran', 'officer', 10000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2202260010', '1', '2', 'upload_files/candidate_tracker/68185004368_res.pdf', NULL, '2', '2022-02-28', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'from thiruvarur, has 4yr exp in 2w sales at pondicherry and for the past 2m working in yamaha showroom sales. has 2w and lap, he is okay with field sales. father farmer and 2bros working. expt 16-18k. we can check him for RE profile.', '8', '1', '', '', '', '', '1', '2022-03-02', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-26 06:29:37', 87, '2022-03-11 07:42:48', 0, NULL, 1),
(7948, 'AMBEDKAR THASAN K', '4', '8940810802', '9715961493', 'ambeth1811@gmail.com', '2007-02-26', 0, '2', '2', 'Kumaraguru A', 'Farmer', 10000.00, 3, 0.00, 15000.00, 'Chidambaram', 'Chidambaram', '2202260011', '1', '1', 'upload_files/candidate_tracker/8506081223_AMBEDKAR THASAN K RESUME.pdf', NULL, '2', '2022-02-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no response', '1', '2', '', '1', '1', '', '2', '2022-03-02', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-26 06:45:55', 60, '2022-02-26 07:06:42', 0, NULL, 1),
(7949, 'MOHAMED IRFANUDDIN', '31', '9840698089', '', 'Mdirfanuddin03@gmail.com', '1996-04-22', 25, '2', '2', 'MD AJAZ MOHIDEEN', 'Retired govt.staff', 40000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2202260012', '1', '1', 'upload_files/candidate_tracker/9018136681_FS.IRFAN.CV.pdf', NULL, '1', '2022-02-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 4yrs exp in construction. doing 6m course in fullstack, no basic practical knowledge. prepared few interview ques. need time to think about company norms.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-26 07:21:59', 1, '2022-02-28 11:21:04', 0, NULL, 1),
(7950, 'Bhavesh', '9', '7010841459', '8438171718', 'bhaviigates000@gmail.com', '1999-08-27', 22, '2', '2', 'Priyanka', 'Sales', 15000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2202270001', '1', '1', 'upload_files/candidate_tracker/29680340540_Resume.pdf', NULL, '1', '2022-03-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-02-27 10:00:12', 1, '2022-02-27 10:05:40', 0, NULL, 1),
(7951, 'Mohamed Asraf Ali', '26', '9894636579', '8778825944', 'mohamedasrafalip@gmail.com', '1997-06-08', 24, '2', '2', 'Peer mohmed', 'Business', 35000.00, 2, 10000.00, 20000.00, 'Chennai', 'Chennai', '2202280001', '1', '2', 'upload_files/candidate_tracker/81117769477_Asraf Resume.pdf', NULL, '1', '2022-02-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication ,no basic knowledge in Exccel,Will not handle our pressure and sustainability doubts\n', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-02-28 07:08:53', 1, '2022-02-28 07:15:15', 0, NULL, 1),
(7952, '', '0', '9715961493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-28 08:04:19', 0, NULL, 0, NULL, 1),
(7953, 'Aravind Kumar . G', '25', '8608155919', '9940503544', 'valentinasarjana04@gmail.com', '1998-03-04', 23, '2', '2', 'Govindan Raj, Jaya Lakshmi', 'Fresher', 30000.00, 1, 10000.00, 15000.00, 'Chennai', 'Mogappair east', '2202280003', '1', '2', 'upload_files/candidate_tracker/10762841688_ara.docx', NULL, '1', '2022-03-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-28 09:57:31', 87, '2022-02-28 12:14:00', 0, NULL, 1),
(7954, '', '0', '7358482341', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-28 10:53:21', 0, NULL, 0, NULL, 1),
(7955, 'Rajesh k', '25', '8838668305', '', 'kamarajrajesh23@gmail.com', '2001-05-23', 20, '2', '2', 'Kamaraj', 'Farmer', 100000.00, 2, 0.00, 15000.00, 'Ramanathapuram', 'Ramanathapuram', '2202280005', '1', '1', 'upload_files/candidate_tracker/46857854256_resume.docx', NULL, '3', '2022-03-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '1', '', '1', '1', '', '2', '1970-01-01', '3', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-02-28 11:23:37', 60, '2022-03-01 05:46:21', 0, NULL, 1),
(7956, '', '0', '7397397761', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2202280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-02-28 11:34:47', 0, NULL, 0, NULL, 1),
(7957, 'Hema.R', '11', '7397377761', '', 'grahema27@gmail.com', '1995-12-27', 26, '2', '2', 'Ramakrishnan', 'CMDA', 20000.00, 1, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2202280007', '14', '1', 'upload_files/candidate_tracker/34320088808_612200186537_Renewal_Notice.pdf', NULL, '1', '2022-02-28', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'no idea about HR rec profile, done MA history and her passion towards teaching for time being she looking for job, expt 15k as fresher. her attitude is not good during interview. ', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 11:54:15', 1, '2022-02-28 11:59:04', 0, NULL, 1),
(7958, 'V.varsha', '4', '8526714590', '6381867733', 'Vimallcr@gmail.com', '2003-11-10', 18, '1', '2', 'Vijayan.k', 'Fresher', 8000.00, 0, 0.00, 10000.00, 'Manavur', 'Arrokonam', '2202280008', '', '1', 'upload_files/candidate_tracker/43203699447_DocScanner 28-Feb-2022 12-30 pm.pdf', NULL, '1', '2022-02-28', 0, 'R55558', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 12:18:52', 1, '2022-02-28 12:43:25', 0, NULL, 1),
(7959, 'N. Deepa', '4', '7092340571', '', 'Deepas3198@gmail.com', '1998-01-31', 24, '1', '1', 'K. Nandhakumar', 'Painting', 18000.00, 2, 13000.00, 15000.00, 'No. 133/b poongavanapuram kaladipet ch.19', 'No. 133/b poongavanapuram kaladipet check. 19', '2202280009', '', '2', 'upload_files/candidate_tracker/51634873744_CURRICULUM VITAE1-3.docx', NULL, '1', '2022-02-28', 0, 'P1258', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'int-ref, was working in poorvika mobile sales, not okay with her lang, will not suite for our process, job need.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 12:23:55', 1, '2022-02-28 12:50:35', 0, NULL, 1),
(7960, 'Kaviya.', '4', '9176799876', '8939103163', 'Kaviyapradheesh@gmail.com', '1998-04-28', 23, '1', '1', 'K DINESH', 'AIR COMPRESSIOR', 20000.00, 2, 15000.00, 18000.00, 'No 10/10 2nd street poongavanapuram kaladipet', 'no 10/10 2nd street poongavapuram kaladipet', '2202280010', '', '2', 'upload_files/candidate_tracker/24176007133_aadhar0001.pdf', NULL, '1', '2022-02-28', 0, 'P1258', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'int-ref, was working in poorvika has to convert walkin customer for EMI working wor hdb fin, no convincing has 3yr exp. lctc 15k and expt 16-18k. will not suite for our process.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 12:24:28', 1, '2022-02-28 12:41:19', 0, NULL, 1),
(7961, 'M.shayeela', '4', '7339312014', '9095482599', 'shansaidrish@gmail.com', '1998-10-22', 23, '2', '2', 'Prasanakumar', 'Own business', 40000.00, 1, 13000.00, 10000.00, '1/44 lakshmivilasa puram, manavur_631210', '1/44, lakshmivilasa puram, manavur_631210', '2202280011', '1', '2', 'upload_files/candidate_tracker/8968894123_shayeela civil.docx', NULL, '1', '2022-03-01', 0, '', '3', '59', '2022-03-09', 126312.00, '', '', '2022-03-10', '2', 'Selected for Tiruvallur Location - Consultant Role/Interviewed by Dhanalakshmi', '1', '1', '', '4', '6', '', '2', '1970-01-01', '1', '9', 'offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-02-28 02:50:50', 60, '2022-03-08 06:49:34', 0, NULL, 1),
(7962, 'dhanalakshmi', '4', '9600595506', '', 'dhana@gmail.com', '1996-04-17', 25, '2', '1', 'suresh', 'travels', 20000.00, 0, 0.00, 0.00, 'chennai', 'chennai', '2202280012', '14', '1', '0', NULL, '1', '2022-02-28', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for sales calling, also checked for front office. will not suite for that. expt 15k, married, sustainability issues.', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-02-28 03:00:24', 7, '2022-03-01 12:21:34', 0, NULL, 1),
(7963, '', '', '', '', '', '1970-01-01', 0, '', '', '', '', 0.00, 0, 0.00, 0.00, '', '', '', '', '', '', NULL, '', '1970-01-01', 0, '', '6', '0', NULL, 0.00, '', '3', '2024-07-30', '', NULL, '', '2', '0', '', '', '0', '1', NULL, '', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-02-28 03:22:51', 1, '2022-02-28 03:22:54', 0, NULL, 1),
(7964, 'B.SURYA', '13', '8883358652', '', 'suryaa731@gmail.com', '1997-11-14', 24, '2', '2', 'bala', 'Self Employed', 40000.00, 0, 8000.00, 15000.00, '1/15 Lf Road, Arumuganeri, Tuticorin-628202', 'Tuticorin', '2202280013', '1', '2', 'upload_files/candidate_tracker/34253992787_suryaresume.pdf', NULL, '2', '2022-03-01', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr exp in php, avg in tech skills, while interview he answered by referring some notes. expt 15k. check with the team regarding technical.', '2', '2', '', '', '', '', '1', '2022-03-07', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-02-28 03:49:51', 84, '2022-03-01 12:12:59', 0, NULL, 1),
(7965, 'Resiga R', '4', '9087796693', '', 'resiananthi@gmail.com', '2000-08-14', 21, '2', '2', 'Ramaraj', 'Own shop', 50000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2202280014', '1', '1', 'upload_files/candidate_tracker/64974211409_Resiga R .pdf', NULL, '1', '2022-03-01', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher from uurapakkam more than 1hr travel.too long and will not sustain. expt 10-12k. job need.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-02-28 06:56:37', 85, '2022-02-28 07:04:04', 0, NULL, 1),
(7966, 'M john Joseph', '4', '6380107475', '9894782132', 'Jj60539@gmail.com', '1997-11-20', 24, '2', '2', 'T munuswamy', 'Business', 40000.00, 1, 0.00, 20000.00, 'Melmaruvathur', 'Melmaruvathur', '2202280015', '1', '1', 'upload_files/candidate_tracker/60272745886_resume_1641384794901.pdf', NULL, '1', '2022-03-01', 0, '', '8', '8', NULL, 0.00, '', '0', NULL, '1', 'not attended', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-02-28 07:03:26', 1, '2022-02-28 07:38:11', 0, NULL, 1),
(7967, 'Vaishnavi chandrasekar', '31', '9962075252', '9962777567', 'Vaishnavichandrasekar123@gmail.com', '2001-05-28', 20, '2', '1', 'Sathish Kumar', 'Mechanical engineer', 30000.00, 1, 0.00, 20000.00, 'Mogappair', 'Mogappair', '2202280016', '1', '1', 'upload_files/candidate_tracker/64237696636_Copy of vaishnavi chandrasekar new cv.docx', NULL, '1', '2022-03-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'gokul droped', '2', '1', '0', '1', '1', '0', '2', '2022-03-07', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-02-28 10:23:32', 1, '2022-03-01 02:40:46', 0, NULL, 1),
(7968, 'Surya', '14', '7845680177', '', 'suryacinnadurai10@gmail.com', '1997-10-27', 24, '2', '2', 'Chinnadurai', 'Formar', 20000.00, 1, 3.35, 6.50, 'Kallakurichi', 'Kallakurichi', '2203010001', '1', '2', 'upload_files/candidate_tracker/90123462889_Surya Resume.pdf', NULL, '3', '2022-03-01', 30, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not attended', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-01 10:07:25', 84, '2022-03-01 10:18:26', 0, NULL, 1),
(7969, 'Janani s', '4', '7339242859', '7695875594', 'jjananis195@gmail.coom', '2000-05-06', 21, '2', '2', 'Sengeni t /father', 'Farmer', 20000.00, 2, 0.00, 15000.00, '56pillaiyar Kovil street chendur', 'Viyasarbady', '2203010002', '1', '1', 'upload_files/candidate_tracker/53013295057_Andrews_Resume.pdf', NULL, '1', '2022-03-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not handle pressure, has 2m exp in credit card. due to work pressure she relived from job. she prefers job with out target.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-01 10:12:12', 1, '2022-03-01 10:17:06', 0, NULL, 1),
(7970, 'Saravanan.c', '6', '7418212350', '8838999247', 'Saravanansekaran1997cse@gmail.com', '1997-09-18', 24, '2', '2', 'Chandrasekeran.p', 'Business', 25000.00, 1, 13.50, 17000.00, 'Perambalur', 'Vandalur', '2203010003', '1', '2', 'upload_files/candidate_tracker/12254227177_DocScanner 01-Mar-2022 10-48 am.pdf', NULL, '1', '2022-03-01', 0, '', '3', '59', '2022-03-02', 204000.00, '', '6', '2022-09-06', '1', 'Selected for Suthagar team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-01 10:37:32', 60, '2022-03-07 03:00:34', 0, NULL, 1),
(7971, 'Manoj Kumar p', '5', '9361841022', '', 'blackmortal1998@gmail.com', '1998-06-28', 23, '2', '2', 'Palani', 'Chennai', 30000.00, 4, 2.00, 20000.00, 'Chennai', 'K.k nagar', '2203010004', '1', '2', 'upload_files/candidate_tracker/90103001123_Resume.docx', NULL, '1', '2022-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 2yr exp in grt jewelry as sales person. mctc 16k and expt 20k+, reason for reliving is low salary will not sustain for us, no calling and convincing skills. will not suite for RM. ', '5', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-01 11:44:00', 1, '2022-03-01 12:13:41', 0, NULL, 1),
(7972, 'Renugadevi', '14', '7708574337', '', 'Renugasadagoban@gmail.com', '1998-02-15', 24, '2', '2', 'Parent', 'Former', 15000.00, 1, 3.50, 7.00, 'Virudhunagar', 'Virudhunagar', '2203010005', '1', '2', 'upload_files/candidate_tracker/71063632721_renugadevi_resume.pdf', NULL, '2', '2022-03-01', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-01 11:57:20', 1, '2022-03-01 12:09:14', 0, NULL, 1),
(7973, 'E.Karikalan', '4', '9597468276', '7904127043', 'kaththikarikalan890@gmail.com', '1998-02-02', 24, '2', '2', 'Elayaperumal.k', 'Nlc employee', 100000.00, 1, 0.00, 15000.00, 'Cuddalore', 'Cuddalore', '2203010006', '1', '1', 'upload_files/candidate_tracker/1505962349_1621505586155Resume_KARIKALAN.pdf', NULL, '1', '2022-03-02', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, not speaking up and will not suite for calling,from cuddalore expt 15-20k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-01 12:08:41', 85, '2022-03-01 05:44:06', 0, NULL, 1),
(7974, 'Muthu kumar', '31', '8072965537', '', 'ksrmk437@gmail.com', '1994-04-11', 27, '2', '2', 'K.S. Ramalingam', 'Labour', 40000.00, 0, 0.00, 20000.00, '2-7-10/G, Thoppu Muniyandi Kovil Street, Theni 12.', '2-7-10/G, Thoppu muniyandi kovil street, Theni 12.', '2203010007', '1', '1', 'upload_files/candidate_tracker/50687933157_14096412618CV20220225214302393.pdf', NULL, '2', '2022-03-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No clarity on the previous exp related to React was not clear,also the salary exp is very high,will not sustain', '2', '2', '', '', '', '', '1', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-01 12:45:32', 84, '2022-03-03 11:00:04', 0, NULL, 1),
(7975, '', '0', '8667251831', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203010008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-01 01:06:30', 0, NULL, 0, NULL, 1),
(7976, 'vijay n', '4', '8608405553', '', 'vijay.nagappan21797@gmail.com', '1997-07-21', 24, '1', '2', 'nagappan r', 'real estate', 60000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2203010009', '', '2', 'upload_files/candidate_tracker/23306718259_vijay pdf.pdf', NULL, '1', '2022-03-02', 0, 'p1065', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-01 01:08:12', 1, '2022-03-01 01:58:24', 0, NULL, 1),
(7977, 'JOHNSON S', '4', '6381647196', '', 'joyson1297@gmail.com', '1997-12-22', 24, '3', '2', 'Amala', 'Daily Vegius', 10000.00, 0, 16000.00, 20000.00, 'Paraniputhur Chennai', 'Paraniputhur Chennai', '2203010010', '', '2', 'upload_files/candidate_tracker/48799379604_Document-WPS Office.pdf', NULL, '1', '2022-03-01', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling, has 6m exp in collection.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-01 01:09:35', 1, '2022-03-01 01:23:06', 0, NULL, 1),
(7978, '', '0', '9677689076', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203010011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-01 01:14:39', 0, NULL, 0, NULL, 1),
(7979, 'gomathi g', '31', '9600967003', '7010168165', 'gomathimanik9792@gmail.com', '1997-02-23', 25, '2', '1', 'Manikandan S', 'Teacher', 15000.00, 2, 0.00, 25000.00, 'Trichy', 'Trichy', '2203010012', '1', '1', 'upload_files/candidate_tracker/46201251128_gomathi resume.pdf', NULL, '2', '2022-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, completed course in besent tech-3m. married will relocate to chennai, expt 3-3.5l', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-01 01:17:33', 1, '2022-03-02 08:40:31', 0, NULL, 1),
(7980, 'Shaik Mashukh Basha', '20', '8074117017', '', 'Mashukhshaik@gmail.com', '1999-06-29', 22, '2', '2', 'Shaik Azeez Basha', 'Farmer', 25000.00, 1, 22500.00, 27000.00, 'Hyderabad', 'Nellore', '2203010013', '1', '2', 'upload_files/candidate_tracker/75359496966_Resume_Mashu_Format2.pdf', NULL, '2', '2022-03-08', 14, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-01 01:22:33', 87, '2022-03-07 07:18:02', 0, NULL, 1),
(7981, 'arshad husham', '4', '7358539063', '', 'arshadhushamhussain263@gmail.com', '1998-11-23', 23, '2', '2', 'hussain basha', 'mgr nagar', 0.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2203010014', '1', '1', 'upload_files/candidate_tracker/16568527797_0Resumejb.job.pdf', NULL, '1', '2022-03-02', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2min credit card and 2m in collection 14k and expt 16-18k th. will not suite for voice process and will not sustain.', '1', '1', '', '', '', '', '1', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-01 04:38:42', 58, '2022-03-02 12:47:07', 0, NULL, 1),
(7982, 'VINOBASTALIN T', '31', '6383397325', '', 'vinobastalin99@gmail.com', '1999-03-07', 22, '2', '2', 'thangapandiyan', 'farmer', 15000.00, 2, 0.00, 20000.00, 'Sankarankovil', 'chennai', '2203010015', '1', '1', 'upload_files/candidate_tracker/2176812296_VINOBA\'s Resume.pdf', NULL, '3', '2022-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-01 04:48:04', 1, '2022-03-01 04:54:58', 0, NULL, 1),
(7983, 'Vijaykumar', '31', '9965395522', '9944237814', 'vijaykumarvk0636@gmail.com', '1997-07-09', 24, '2', '2', 'Manoharan', 'Weaving', 10000.00, 0, 0.00, 15000.00, 'Erode', 'Erode', '2203010016', '1', '1', 'upload_files/candidate_tracker/14096412618_CV_2022022521430239.pdf', NULL, '3', '2022-03-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-01 07:58:21', 1, '2022-03-01 08:03:34', 0, NULL, 1),
(7984, 'Krishnamoorthy J', '4', '9884375826', '', 'Kmoorthy892@gmail.com', '1995-12-07', 26, '2', '2', 'N nai kumar', 'Private company', 10000.00, 1, 0.00, 14000.00, 'Pattabiram chennai', 'Pattabiram', '2203020001', '1', '1', 'upload_files/candidate_tracker/80854340813_krishna-WORD-converted.pdf', NULL, '1', '2022-03-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '6', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-02 10:08:15', 85, '2022-03-02 10:17:46', 0, NULL, 1),
(7985, 'Rajesh', '16', '9790825095', '7200318055', 'rajeshkumar.kumar115@gmail.com', '1989-08-29', 32, '3', '1', 'Kavitha', 'MIS Executive & Document controller', 20000.00, 1, 55000.00, 35000.00, 'Chennai', 'Chennai', '2203020002', '', '2', 'upload_files/candidate_tracker/14343035753_CV_Rajesh .pdf', NULL, '1', '2022-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has 4yr exp in mis, last working in oman. expt is high will not suite for us, wife-accountant and expt 30-35k.', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-03-02 10:57:32', 1, '2022-03-02 11:04:00', 0, NULL, 1),
(7986, '', '0', '7397361053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-02 11:00:30', 0, NULL, 0, NULL, 1),
(7987, 'Prasath', '5', '9043636506', '', 'prasath14794@gmail.com', '1994-07-14', 27, '2', '2', 'Rajalingam', 'Former', 20000.00, 0, 15000.00, 230000.00, 'Dharmapuri', 'Chennai', '2203020004', '1', '2', 'upload_files/candidate_tracker/49831320955_PRASATH R RESUME-1-converted.pdf', NULL, '2', '2022-03-02', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has sales exp but not in insurance. 7m in hdb loan process and 2yr in collection. from dharmapuri will relocate to chennai. little bit slow and we can check for RM. lmct is 16k and expt 20k. ', '5', '2', '', '1', '1', '', '2', '2022-03-03', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-02 11:25:14', 58, '2022-03-02 11:48:03', 0, NULL, 1),
(7988, 'Mohith.c', '25', '8431250895', '8722125375', 'mohithmaddy4043@gmail.com', '1996-11-06', 25, '2', '2', 'Chandu rao', 'Police officer', 25.00, 1, 12500.00, 20000.00, 'MYSORE', 'Srinagar near satlight bus stand banglore', '2203020005', '1', '2', 'upload_files/candidate_tracker/76301284269_cv 2022.pdf', NULL, '2', '2022-03-02', 15, '', '8', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'na', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-02 12:55:58', 58, '2022-03-02 02:52:00', 0, NULL, 1),
(7989, 'SHANTHI K S', '5', '9941450874', '', 'SHANTHI1002@GMAIL.COM', '1987-02-10', 35, '2', '1', 'Raja raghuveer G B', 'AGM', 70000.00, 2, 0.00, 5.00, 'Chennai', 'Chennai', '2203020006', '3', '2', 'upload_files/candidate_tracker/18881167899_Shanthi CV Latest.doc', NULL, '1', '2022-03-02', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'irda has not approved her profile. will not suite for other profile too bcoz her expt is 5L above.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-02 01:21:11', 1, '2022-03-02 01:30:47', 0, NULL, 1),
(7990, 'Abhash kumar upadhyay', '5', '6303859202', '9515869548', 'abhiupadhyay929@gmail.com', '1995-10-03', 26, '2', '2', 'Prem upadhyay', 'Electrician', 15.00, 4, 2.80, 4.00, 'Hyderabad', 'Hyderabad', '2203020007', '1', '2', 'upload_files/candidate_tracker/48608624851_Abhash_Abbu_Updated_resume2.pdf', NULL, '2', '2022-03-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-02 05:50:30', 58, '2022-03-03 11:25:43', 0, NULL, 1),
(7991, 'Murali krishnan V', '31', '8825870425', '', 'muralikrish1029@gmail.com', '1999-11-03', 22, '2', '2', 'Vasudevan', 'EX-ARMY', 180000.00, 0, 0.00, 15000.00, 'virudhunagar', 'virudhunagar', '2203020008', '1', '1', 'upload_files/candidate_tracker/32746331784_Murali krishnan V_updated resume1-converted (2) (1) (1) (1).pdf', NULL, '2', '2022-03-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped,need amonth time to decide', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-02 06:24:20', 1, '2022-03-02 06:43:09', 0, NULL, 1),
(7992, 'kannadhasan S', '4', '6384667439', '', 'kannadhasanraj007@gmail.com', '1999-06-02', 22, '2', '2', 'Selvaraj ,mochagandhi', 'Agricultural industry', 8000.00, 1, 0.00, 15000.00, 'Kovilpalaiyam Annanagar', 'Kovilpalaiyam Annanagar ,perambalur (District)', '2203020009', '1', '1', 'upload_files/candidate_tracker/7564787907_RESUME - kannadhasan (1).docx', NULL, '3', '2022-03-03', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher for calling, was working in bakery with 13k, will not suite for our process expt 15k since he has to stay in chennai', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-02 08:37:56', 85, '2022-03-03 09:53:58', 0, NULL, 1),
(7993, 'pradeep', '4', '9043006300', '9789588471', 'pithareep@gmil.com', '1996-06-24', 25, '2', '2', 'muthusamy', 'railways retired', 40000.00, 4, 0.00, 12000.00, 'trichy', 'kodambakam', '2203030001', '1', '1', 'upload_files/candidate_tracker/1590053577_Resume.pdf', NULL, '1', '2022-03-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-03 10:11:10', 85, '2022-03-04 10:53:02', 0, NULL, 1),
(7994, 'Mohamedasik E', '25', '9787156261', '9751710154', 'mohamedashik250@gmail.com', '1997-08-25', 24, '2', '2', 'Ehasanalla K', 'Former labour', 10000.00, 1, 0.00, 20000.00, 'Perambalur', 'Perambalur', '2203030002', '1', '1', 'upload_files/candidate_tracker/93452840441_CV_2022-02-13-065002.pdf', NULL, '2', '2022-03-03', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'Fresher for us. Don’t have sales exp. has 1.5yr exp in qc and production. Due to work pressure he relieved he will not handle sales pressure. Not speaking up and no convincing. Expt 20k take home. Parents into agriculture.', '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-03 10:43:52', 1, '2022-03-03 11:34:44', 0, NULL, 1),
(7995, 'Shri Ram Sethu g', '22', '9442137318', '', 'shriram27899@gmail.com', '1999-08-27', 22, '2', '2', 'ganesha nehru', 'district revenue officer', 50000.00, 1, 12000.00, 18000.00, 'Tirunelveli', 'chennai', '2203030003', '1', '2', 'upload_files/candidate_tracker/35185075974_Shri ram\'s Resume.pdf', NULL, '1', '2022-03-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-03 11:24:34', 1, '2022-03-03 11:28:22', 0, NULL, 1),
(7996, 'Sivaprasath P', '6', '8637435905', '8344831264', 'sivakiddo138@gmail.com', '1997-08-13', 24, '3', '2', 'Periyasamy', 'Agriculture', 25000.00, 1, 20000.00, 25000.00, 'Erode', 'Erode', '2203030004', '', '2', 'upload_files/candidate_tracker/44325619487_Sivaprasath_Resume.docx', NULL, '1', '2022-03-03', 0, '', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'has 2yr exp in other sales 25k. 2m in byjus, good in comm and convincing, expt min 20k. from saidhapet has 2w and lap.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-03 11:30:21', 1, '2022-03-03 11:40:55', 0, NULL, 1),
(7997, 'K.venkatesan', '6', '8754718537', '', 'venkatvenkat0703@gmail.com', '2001-03-07', 20, '1', '2', 'K.kannan', 'Carpenter', 10000.00, 0, 0.00, 15000.00, 'KALLAKURICHI', 'KALLAKURICHI', '2203030005', '', '1', 'upload_files/candidate_tracker/21689903727_ScannerGo_22Sep2021_134153.pdf', NULL, '1', '2022-03-03', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling and not speaking up. ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-03 12:07:28', 1, '2022-03-03 12:25:44', 0, NULL, 1),
(7998, 'Prakash.D', '6', '9361493676', '9442595651', 'prakash123chitra@gmail.com', '2001-04-14', 20, '1', '2', 'Devaraj.R', 'Farmar', 10000.00, 0, 0.00, 15000.00, 'Kallakurichi', 'Namachivayapuram', '2203030006', '', '1', 'upload_files/candidate_tracker/60053504420_DocScanner 04-Dec-2021 4.09 pm.pdf', NULL, '1', '2022-03-03', 0, '55576', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling. ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-03 12:08:41', 1, '2022-03-03 12:25:37', 0, NULL, 1),
(7999, 'Vasanthakumar', '5', '8870538796', '', 'vasanthinfolimax@gmail.com', '1990-07-09', 31, '2', '1', 'Maha', 'Salary', 28500.00, 1, 28500.00, 40000.00, 'CUDDALORE', 'Porur, Chennai', '2203030007', '1', '2', 'upload_files/candidate_tracker/45746573213_Resume_VT.doc', NULL, '1', '2022-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Insurance, but no sustainability in previous, Telecalling activities doubtful,will not handle our pressure and will not sustain in our roles', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-03 01:02:15', 1, '2022-03-03 01:07:13', 0, NULL, 1),
(8000, 'devadarshan nirmal', '22', '7395954421', '', 'ddnirmal11@gmail.com', '1999-05-29', 22, '2', '2', 'john britto', 'teacher', 40000.00, 1, 0.00, 20000.00, 'chennai', 'krishnagiri', '2203030008', '1', '1', 'upload_files/candidate_tracker/68391735743_Resume DEVA.pdf', NULL, '3', '2022-03-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for content writing,His focus is fully towards the film making only,for time being to continue the practice of writing he is looking for opportunities.Will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-03 01:05:05', 84, '2022-03-03 01:29:42', 0, NULL, 1),
(8001, 'Jeyakarthick', '31', '9944425946', '', 'jeyakarthick406@gmail.com', '1998-01-18', 24, '2', '2', 'Allwin', 'Salesman', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Madurai', '2203030009', '1', '1', 'upload_files/candidate_tracker/61629393145_jeyakarthick333.pdf', NULL, '2', '2022-03-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not comfortable with terms xxampconditions\n', '2', '1', '0', '4', '6', '0', '2', '2022-03-04', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-03 01:38:22', 1, '2022-03-03 01:43:16', 0, NULL, 1),
(8002, 'Vinothkumar m', '5', '9962751657', '', 'vinojoy91@gmail.com', '1991-04-20', 30, '2', '1', 'Ranjitha', 'Lab technician', 30000.00, 0, 25000.00, 35000.00, 'Mylapore', 'Mylapore', '2203030010', '1', '2', 'upload_files/candidate_tracker/34277702983_RESUME VINOTH M.docx', NULL, '1', '2022-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Finance Sales, no field Sales Exp,2nd round interviewed by gaurav and got rejected.Will not sustain and not suitable', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-03 02:49:55', 1, '2022-03-04 10:24:40', 0, NULL, 1),
(8003, '', '0', '7093427916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203030011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-03 03:30:22', 0, NULL, 0, NULL, 1),
(8004, '', '0', '7449064118', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203030012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-03 04:01:55', 0, NULL, 0, NULL, 1),
(8005, 'Arvindrao', '5', '9884537628', '4424951275', 'arvindrao1980@gmail.com', '1980-06-28', 41, '2', '2', 'Vasanthi', 'Chennai', 30000.00, 3, 30000.00, 30000.00, 'Chennai', 'chennai', '2203030013', '1', '2', 'upload_files/candidate_tracker/78215480512_612200186537_Renewal_Notice.pdf', NULL, '1', '2022-03-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Age around 40 yrs,will not comfort in taking calls,sustainability doubts,not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-03 04:25:27', 58, '2022-03-04 11:07:51', 0, NULL, 1),
(8006, 'Prakash', '6', '8973257365', '', 'prakashplantscience@gmail.com', '1996-05-07', 25, '2', '2', 'Sankar', 'Flower vendor', 16000.00, 2, 0.00, 12000.00, 'Palayakudiyana street, nanimangalam lalgudi,trichy', 'Palayakudiyana Street, Nanimangalam Lalgudi,Trichy', '2203030014', '1', '1', 'upload_files/candidate_tracker/70537472666_Prakash resume.docx', NULL, '3', '2022-03-04', 0, '', '3', '59', '2022-03-14', 201000.00, '', '3', '2022-05-06', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-03 08:25:47', 60, '2022-03-12 03:00:46', 0, NULL, 1),
(8007, 'NAVEEN P', '4', '9894386105', '', 'victonavee105@gmail.com', '2000-01-03', 22, '2', '2', 'P PALANI', 'Farmer', 15000.00, 1, 0.00, 13000.00, 'Arani', 'Arani', '2203040001', '1', '1', 'upload_files/candidate_tracker/20891567937_RESUME.pdf', NULL, '3', '2022-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped didnt appear for the F2F Interview', '1', '2', '0', '1', '1', '0', '2', '2022-03-07', '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-04 09:46:09', 1, '2022-03-04 09:53:28', 0, NULL, 1),
(8008, 'PREMAKUMARI. R', '5', '9884013140', '9941164241', 'Prema8731@gmail.com', '1987-10-31', 34, '2', '1', 'MAHALINGAM.S', 'Shipping&Logistics', 400000.00, 2, 285000.00, 4.00, 'Annapoorni Apartments,Flat No:F2,13th Mangala Cro', 'Porur', '2203040002', '1', '2', 'upload_files/candidate_tracker/41975470496_PREMA KUMARI R - Resume.pdf', NULL, '1', '2022-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped,she is looking for Non Voice Process(Husband insisted her to look for Non Voice)', '5', '2', '0', '1', '1', '0', '2', '2022-03-07', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-04 10:01:12', 1, '2022-03-04 10:11:23', 0, NULL, 1),
(8009, 'C.SOWMIYA', '4', '9677294013', '9790739305', 'deepogusowmi@gmail.com', '2000-04-23', 21, '2', '2', 'D.CHINNA VENKATAIAH', 'Coolie', 5000.00, 1, 0.00, 10000.00, 'No.14 jothiammal Nagar, Alan,Saidapet Chennai-15', 'Chennal', '2203040003', '1', '1', 'upload_files/candidate_tracker/54801795323_C.Sowmiya resume.docx', NULL, '1', '2022-03-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice process,not open up will not handle our pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-04 11:45:30', 85, '2022-03-04 12:05:30', 0, NULL, 1),
(8010, 'Vigneshwaran D', '6', '7358056287', '', 'Vickyyvigneshwaran@gmail.com', '1995-11-10', 26, '1', '1', 'Swetha', 'House maker', 30000.00, 1, 0.00, 16000.00, '30, Ponnan street purasawalkam Chennai 600007', '30, Ponnan Street Purasawalkam Chennai 600007', '2203040004', '', '1', 'upload_files/candidate_tracker/69569048004_Resume.pdf', NULL, '1', '2022-03-04', 0, 'P1145', '3', '59', '2022-03-07', 204000.00, '', '3', '2022-05-31', '1', 'Selected for Ravi Team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-04 12:32:14', 60, '2022-03-04 06:29:12', 0, NULL, 1),
(8011, '', '0', '9080613913', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203040005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-04 01:18:59', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8012, 'Janga rajkiran reddy', '5', '8520011930', '', 'jangarajkiranreddy56@gmail.com', '2001-06-29', 20, '2', '2', 'Sahdev reddy', 'Agriculture', 200000.00, 0, 14000.00, 20000.00, 'Marthalli', 'Marthalli', '2203040006', '1', '2', 'upload_files/candidate_tracker/51054708108_JANGARAJKIRANREDDY.docx', NULL, '1', '2022-03-05', 0, '', '3', '59', '2022-03-11', 258000.00, '', '3', '2022-05-06', '1', 'Selected for Manivel team with PF/ESI/PT', '5', '2', '1', '2', '2', '1', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-04 01:46:00', 60, '2022-03-08 11:30:23', 0, NULL, 1),
(8013, 'seshathri', '5', '9003294514', '', 'seshathriv78@gmail.com', '1978-06-06', 43, '2', '1', 'vishnusree', 'sr.relationship manager', 600000.00, 1, 400000.00, 500000.00, 'Chennai', 'Chennai', '2203040007', '1', '2', 'upload_files/candidate_tracker/47861701161_SESHATHRI RESUME.doc', NULL, '1', '2022-03-07', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-04 03:28:23', 1, '2022-03-04 03:41:58', 0, NULL, 1),
(8014, 'Naresh N', '5', '7305905330', '', 'nareshflyerz@gmail.com', '2007-03-04', 0, '2', '2', 'Nandakumar', 'Driver', 15000.00, 2, 18000.00, 22000.00, 'Chennai', 'Chennai', '2203040008', '1', '2', 'upload_files/candidate_tracker/68503687844_0_naresh resume.docx', NULL, '1', '2022-03-05', 0, '', '3', '59', '2022-03-14', 264000.00, '', '7', '1970-01-01', '1', 'Selected for Pandian Team with PF/PT Deductions', '5', '2', '1', '1', '1', '1', '2', '2022-03-11', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-04 05:26:28', 60, '2022-03-12 11:55:13', 0, NULL, 1),
(8015, '', '0', '8122879874', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203040009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-04 06:06:20', 0, NULL, 0, NULL, 1),
(8016, 'DEEPAK . P', '21', '8122809053', '8122809038', 'daviddeepak.pv@gmail.com', '1994-09-22', 27, '2', '2', 'VASU . P', 'Admin', 30000.00, 2, 20000.00, 30000.00, 'Chennai', 'Chennai', '2203040010', '1', '2', 'upload_files/candidate_tracker/6937084173_Deepak_Resume_ (1) (1) (1) (1) (1)-converted (1) (1) (1) (1) (1) (1) (3).docx', NULL, '2', '2022-03-05', 0, '', '5', '83', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not be suitable due to salary xxamp sustainability issue', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-04 07:10:42', 58, '2022-03-05 02:22:52', 0, NULL, 1),
(8017, 'Jawahar', '4', '8300913728', '', 'jawaharkutty0610@gmail.com', '2000-10-06', 21, '2', '2', 'Mani', 'No', 25.00, 0, 0.00, 12.00, 'Ooty', 'Ooty', '2203050001', '1', '1', 'upload_files/candidate_tracker/43212194893_jawahar resume.docx', NULL, '3', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher from ooty, currently staying with brother in namakkal, will relocate to chennai. parents working in estate. his expt is 12k, he will discuses with family and get back. if he is okay with 10k we can proceed with next round interview.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-05 11:06:14', 85, '2022-03-05 02:28:14', 0, NULL, 1),
(8018, 'V.Jebin', '31', '9344039114', '', 'barson004@gmail.com', '2001-01-11', 21, '2', '2', 'Valiant', 'Self Employed', 20000.00, 1, 0.00, 18000.00, 'Kanniyakumari', 'Kanniyakumari', '2203050002', '1', '1', 'upload_files/candidate_tracker/14717155227_1642849020305JebinResume1.pdf', NULL, '2', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, told him to learn and come, no basic skills.', '2', '2', '', '', '', '', '1', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-05 11:37:41', 84, '2022-03-07 10:31:21', 0, NULL, 1),
(8019, '', '0', '9940206419', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203050003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-05 12:12:56', 0, NULL, 0, NULL, 1),
(8020, 'Ohmprakash', '13', '8778291646', '', 'ohmprakashsridhar@gmail.com', '1997-05-08', 24, '2', '2', 'Sridhar', 'Cooking', 12000.00, 1, 21000.00, 21000.00, 'No 145', 'Chengalpattu', '2203050004', '1', '2', 'upload_files/candidate_tracker/47698133352_Resume_OHMPRAKASH S. .pdf', NULL, '3', '2022-03-08', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-05 01:13:21', 1, '2022-03-08 10:25:14', 0, NULL, 1),
(8021, 'PRABHAKARAN A', '5', '9361073040', '7339671397', 'prabhakaralagar48@gmail.com', '1991-01-15', 31, '2', '1', 'Kalai Selvi R', 'Operation Manager', 40000.00, 0, 25000.00, 35000.00, '227/9 eeswaran Kovil street Madipakkam', 'Madipakkam chennai', '2203050005', '1', '2', 'upload_files/candidate_tracker/63320341905_Prabhakaran Resume -.pdf', NULL, '1', '2022-03-07', 30, '', '5', '86', NULL, 0.00, '', '0', NULL, '1', 'He interested in collection type of job.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-05 04:58:11', 1, '2022-03-05 05:03:56', 0, NULL, 1),
(8022, 'Mukrshlal v', '5', '9600777268', '', 'Msd7mukeshlal@gmail.com', '1995-12-03', 26, '2', '2', 'Vivekananda', 'Bussines', 10000.00, 1, 25000.00, 25000.00, 'Shencottai', 'Chennai', '2203050006', '1', '2', 'upload_files/candidate_tracker/10478727138_Mukesh_resume 2021 dec.pdf', NULL, '1', '2022-03-07', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 6yr exp into construction with 25k and expt 30k. will not suite for our process.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-05 05:30:22', 87, '2022-03-07 04:04:50', 0, NULL, 1),
(8023, 'B.vaidegi', '4', '9080106853', '', 'swethavaidegi@gmail.com', '1996-10-02', 25, '2', '2', 'V.boorasamy', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Cuddalore', 'PondIcherry', '2203050007', '1', '1', 'upload_files/candidate_tracker/14246832254_VAIDEGI Resume NEW.pdf', NULL, '3', '2022-03-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-05 06:07:06', 87, '2022-03-22 05:02:11', 0, NULL, 1),
(8024, 'RAMU V.R', '5', '9941909232', '', 'ramsuresh_182@yahoo.com', '1987-02-18', 35, '2', '1', 'V.V.Rajan', 'officer', 200000.00, 2, 30000.00, 45000.00, 'chennai', 'chennai', '2203060001', '1', '2', 'upload_files/candidate_tracker/14943049940_RamuVR.pdf', NULL, '1', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no sustainability, each 1yr job change, over all 10yr esp, las t 4m in gomechanic with 4.5l and looking for better offer 5.5l. will not suite for rm since he had team handling exp and looking for the same', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-06 03:47:49', 60, '2022-03-07 03:55:30', 0, NULL, 1),
(8025, 'Sai Surya', '22', '7548876285', '', 'ngksaisurya@gmail.com', '1997-12-23', 24, '2', '2', 'Arumugan', 'Self Employed', 10000.00, 0, 15000.00, 20000.00, 'chennai', 'chennai', '2203070001', '1', '2', 'upload_files/candidate_tracker/19257857218_1SAISURYARESUME2021.pdf', NULL, '2', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for this profile', '2', '1', '', '', '', '', '1', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-07 10:15:01', 84, '2022-03-07 11:03:34', 0, NULL, 1),
(8026, '', '0', '8754869258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203070002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-07 10:22:52', 0, NULL, 0, NULL, 1),
(8027, 'M.Nizamudhin', '4', '7358373101', '8122207198', 'Nizamudhin98@gmail.com', '1998-05-01', 23, '2', '1', 'Siraj', 'No.71 durai Abdul Wahab street', 20000.00, 1, 0.00, 13000.00, 'Redhills', 'Redhills', '2203070003', '1', '1', 'upload_files/candidate_tracker/28978521898__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response', '1', '1', '', '1', '1', '', '2', '2022-03-14', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-07 10:23:54', 85, '2022-03-07 11:12:25', 0, NULL, 1),
(8028, 'A Mohammed Anas', '5', '7904931319', '', 'amohammedanas7@gmail.com', '1994-07-31', 27, '2', '2', 'ar mohamed', 'no more', 25000.00, 1, 3.90, 4.20, 'vellore', 'Vellore', '2203070004', '1', '2', 'upload_files/candidate_tracker/35774507029_Ak Acc_Professional Resume – 01.pdf', NULL, '2', '2022-03-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-07 10:24:22', 1, '2022-03-07 10:59:19', 0, NULL, 1),
(8029, 'Valli', '6', '9344007201', '8870793882', 'Vallimuthu3@gmail.com', '1995-06-08', 26, '1', '2', 'Mahalakshmi', 'Working', 20000.00, 2, 21000.00, 24000.00, 'Chennai', 'Chennai', '2203070005', '', '2', 'upload_files/candidate_tracker/6755303460_VALLI new resume-converted-converted (1).pdf', NULL, '1', '2022-03-07', 0, 'P1245', '3', '59', '2022-03-10', 224496.00, '', '3', '2022-09-05', '2', 'Selected for Guru Team with PT only - Prop Staff', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-07 10:32:14', 1, '2022-03-07 10:39:31', 0, NULL, 1),
(8030, 'Surendar T.T', '31', '9791757313', '9750758433', 'itssurendar98@gmail.com', '1998-07-01', 23, '2', '2', 'Thirumalaisamy A', 'Entrepreneur', 1.00, 1, 0.00, 1.00, 'Coimbatore', 'Coimbatore', '2203070006', '1', '1', 'upload_files/candidate_tracker/55052618470_Surendar', NULL, '2', '2022-03-07', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'hold for technical. has 1yr exp in sales but looking for it job expt 15k. check with team.', '2', '1', '', '1', '1', '', '2', '2022-03-10', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-07 10:34:48', 84, '2022-03-07 10:42:35', 0, NULL, 1),
(8031, 'Sabitha.p', '4', '9585941507', '9791534084', 'Sabithapichandi.15@gmail.com', '0199-07-15', 1822, '3', '2', 'Manikam.p', 'Business', 15000.00, 3, 0.00, 15000.00, 'Manavalanagar', 'No:35A School street, manavalanagar -602002', '2203070007', '', '1', 'upload_files/candidate_tracker/96261848795_sabitha P resume 050322new.pdf', NULL, '1', '2022-03-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-07 10:56:59', 1, '2022-03-07 11:46:11', 0, NULL, 1),
(8032, 'Suriya Prakash', '31', '8825712975', '8344740677', 'suriyaprakashuidev@gmail.co', '2000-01-06', 22, '2', '2', 'Paramasivan - Selvi', 'Software Developer', 400000.00, 1, 300000.00, 400000.00, 'Kamaraj Street Panagudi Tirunelveli', 'Pallavaram Chennai', '2203070008', '1', '2', 'upload_files/candidate_tracker/23932888009_resume-converted.pdf', NULL, '1', '2022-03-07', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sale expt is 3.5-4l, 7m in internship and 6m as trainee. he is not okay with the company norms, not even a year. but okay with his technical skills. he knows the basics.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-07 11:31:27', 84, '2022-03-07 11:45:36', 0, NULL, 1),
(8033, '', '0', '9952727456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203070009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-07 11:56:17', 0, NULL, 0, NULL, 1),
(8034, 'Manigandan CT', '5', '8939124224', '', 'Mani8939124224@gmail.com', '1980-02-24', 42, '2', '1', 'Sudhamani', 'House wife', 35000.00, 1, 450000.00, 600000.00, 'Chennai', 'Royapuram', '2203070010', '1', '2', 'upload_files/candidate_tracker/60254784298_Resume mani.doc', NULL, '1', '2022-03-07', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'has baking exp, then legal asst. with a advocate, then agency manager as 9m in hdfc, 2yrs in bhratiaxa, 4m in tataaig. 4.5l ctc and expt upto 6l. will not suite for rm, no GI exp so will not suit for that too.', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-07 12:14:36', 1, '2022-03-07 12:24:30', 0, NULL, 1),
(8035, 'K.Anitha', '11', '7448445858', '8428519984', 'anithakalai2017@gmail.com', '1998-11-19', 23, '2', '2', 'Father', 'Daily wages', 20000.00, 1, 13000.00, 17000.00, 'Jeeva Nagar 4th Street New Washermenpet Chennai-81', 'Jeeva nagar 4th Street new washermenpet chennai-81', '2203070011', '1', '2', 'upload_files/candidate_tracker/30046200574_Document (2) (3).pdf', NULL, '1', '2022-05-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-07 12:34:28', 1, '2022-05-08 08:58:13', 0, NULL, 1),
(8036, 'Komala. M', '16', '6379083361', '9094561024', 'Komalamuthaiah@gmail.com', '1998-08-19', 23, '2', '1', 'Muthaiah', 'Driver', 150000.00, 1, 200000.00, 250000.00, '18Abarathiyar street ,Srinevasa Nagar padi', '18Abarathiyar Street ,Srinevasa Nagar Padi', '2203070012', '1', '2', 'upload_files/candidate_tracker/90184669552_KOMALA(1).pdf', NULL, '1', '2022-03-07', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 2.5yrs exp in hdb and looking for better offer. not speaking up and couldnt deliver her script clearly. ctc 2k and expr 22k th. married will not suite for any process, her attire and body lang was not good.', '3', '1', '', '1', '3', '', '2', '1970-01-01', '3', '5', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-07 12:52:19', 58, '2022-03-07 03:06:48', 0, NULL, 1),
(8037, 'Manikandan R', '31', '8610703249', '9047833710', 'rmanidevi04@gmail.com', '1999-09-04', 22, '2', '2', 'Rengasamy T', 'Former', 20000.00, 0, 0.00, 15000.00, 'Pudukkottai', 'Tambaram', '2203070013', '1', '1', 'upload_files/candidate_tracker/41530763114_1638807826086_maniresume.pdf', NULL, '1', '2022-03-08', 0, '', '3', '59', '2022-03-09', 96000.00, '', '', '2022-03-28', '2', 'Selected for React Profile 1st month - 3.5K 2-4 months - 5K 3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-07 02:39:20', 60, '2022-03-09 05:27:57', 0, NULL, 1),
(8038, 'Mohamed abuthahir', '4', '9345324125', '9092478178', 'Mohamedabuthahir.ma21@gmail.com', '1999-04-30', 22, '2', '2', 'Mohamed ibrahim', 'Daily wager', 25000.00, 1, 300000.00, 450000.00, 'Chennai', 'Chennai', '2203070014', '1', '2', 'upload_files/candidate_tracker/59100559150_Resume_25_09_2021_08_24_15_PM.pdf', NULL, '1', '2022-03-14', 45, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 3yrs exp in kyc, no sales exp. ctc 2.5l and expt 4-4.5l. no calling and convincing skills. ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-07 06:52:02', 7, '2022-03-14 01:45:09', 0, NULL, 1),
(8039, 'Bishal Das', '4', '9915346422', '7986953034', 'bishal.das3464@gmail.com', '1995-02-20', 27, '2', '1', 'Bipul Das', 'Private job', 360000.00, 1, 17500.00, 22500.00, 'Assam', 'Bangalore', '2203070015', '1', '2', 'upload_files/candidate_tracker/29486053665_BISHAL.RESUME-converted.pdf', NULL, '1', '2022-03-09', 12, '', '8', '8', NULL, 0.00, '', '0', NULL, '2', 'na', '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-07 08:01:50', 1, '2022-03-07 08:09:21', 0, NULL, 1),
(8040, 'SILVESTER So', '2', '8870042323', '', 'silvesterrajnirmal@gmail.com', '2000-06-13', 21, '2', '2', 'Sagayaraj S', 'Electrician', 75000.00, 2, 0.00, 20.00, 'Villupuram', 'Yelahanka, Bangalore', '2203070016', '1', '1', 'upload_files/candidate_tracker/67501129463_Silvester CV.pdf', NULL, '2', '2022-03-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-07 08:34:29', 1, '2022-03-07 08:43:15', 0, NULL, 1),
(8041, 'Sowmya.E', '5', '9986757913', '8050741151', 'Sowmyasom4310@gmail.com', '2000-04-10', 21, '2', '2', 'Erappa', 'Painter', 20000.00, 1, 14000.00, 20000.00, '#22 8th Cross NR colony murgeshpalya blore560017', '#22 8th cross NR colony murgeshpalya blore 560017', '2203070017', '1', '2', 'upload_files/candidate_tracker/53490845560_Sowmya Resume.pdf', NULL, '1', '2022-03-08', 15, '', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-07 09:01:05', 60, '2022-03-22 11:45:21', 0, NULL, 1),
(8042, 'Karmugilan', '5', '8754033470', '', 'Mugilsutha@gmail.com', '1980-01-10', 42, '2', '1', 'Jayasutha', 'Housewife', 20000.00, 3, 340000.00, 380000.00, 'Kattumannarkoil, Cuddalore dt.', 'Nungambakkam', '2203080001', '1', '2', 'upload_files/candidate_tracker/30051107369_612200186537_Renewal_Notice.pdf', NULL, '1', '2022-03-08', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, he drunk and came for interview yesterday so we sent him out. again he came today for interview. has overall exp in telecom and 2yrs in religer broking. expt 3.8L. 6m in pondicherry axa.', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-08 10:04:44', 58, '2022-03-08 03:42:58', 0, NULL, 1),
(8043, 'Abitha', '4', '6379613858', '', 'abitha0798@gmail.com', '1998-09-07', 23, '2', '2', 'Jayanthi', 'CSR', 18000.00, 1, 15000.00, 20000.00, 'Thiruvannamalai', 'thiruvannamalai', '2203080002', '1', '2', 'upload_files/candidate_tracker/48961841154_ABITHA PROFILE.pdf', NULL, '3', '2022-03-08', 1022022, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-08 10:26:13', 1, '2022-03-08 10:48:40', 0, NULL, 1),
(8044, '', '0', '9123563526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203080003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-08 10:56:27', 0, NULL, 0, NULL, 1),
(8045, '', '0', '9677780828', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203080004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-08 12:01:08', 0, NULL, 0, NULL, 1),
(8046, 'SHAHEEN ANJUM', '5', '7022713675', '', 'shaheenanjumshah@gmail.com', '1996-11-29', 25, '2', '2', 'Mohammed shameem', 'officer', 100000.00, 2, 12000.00, 16000.00, 'banglore', 'Banglore', '2203080005', '1', '2', 'upload_files/candidate_tracker/19899159630_CURRICULUMVITAEofShaheen.docx1.pdf', NULL, '1', '2022-03-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-08 01:52:41', 1, '2022-03-09 07:03:40', 0, NULL, 1),
(8047, 'Dhinakaran', '4', '8680948408', '7904811123', 'dheenakaran3@gmail.com', '2001-04-11', 20, '2', '2', 'Sekar', 'Farmer', 12000.00, 1, 10000.00, 18000.00, 'Ramanathapuram', 'Ramanathapuram', '2203080006', '1', '2', 'upload_files/candidate_tracker/16927449620_RESUME-1-1.pdf', NULL, '3', '2022-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, his slang is not good and expt is 20k since he need to relocate. from dharmaphuri and parents farmers, has 1yr exp in masala company and 4m in tractor company with 12k.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-08 03:50:09', 1, '2022-03-08 03:52:56', 0, NULL, 1),
(8048, '', '0', '8610604259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203080007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-08 06:04:31', 0, NULL, 0, NULL, 1),
(8049, '', '0', '7986953034', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-09 09:25:51', 0, NULL, 0, NULL, 1),
(8050, 'F Devanathan', '22', '8667073728', '', 'devafrancis97@gmail.com', '1997-12-26', 24, '2', '2', 'F Kamala Devi', 'Mother', 10000.00, 1, 18000.00, 10000.00, 'No:84/56, 3rd Street, Aziz Mulk, Thousand Lights', 'Chennai', '2203090002', '1', '2', 'upload_files/candidate_tracker/99181136480_Resume.pdf', NULL, '1', '2022-03-09', 0, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'candidate good with basic skills, has family needs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-09 09:52:44', 1, '2022-03-09 10:52:22', 0, NULL, 1),
(8051, 'G.saranya', '4', '8637618423', '9025423442', 'Saranrajdurai@gmail.com', '1991-03-20', 30, '2', '1', 'V.Raju', 'Car Travels', 30.00, 1, 15.00, 12.00, 'Thiruvottiyur', 'Thiruvotttiyur', '2203090003', '1', '2', 'upload_files/candidate_tracker/16334541302_to5sl-7kb9p (1).docx', NULL, '2', '2022-03-09', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking childish, not suit for Telecalling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-09 11:44:59', 85, '2022-03-09 12:01:23', 0, NULL, 1),
(8052, 'thiagarajan apparsam', '4', '7092891991', '', 'soft.thiyagarajan@gmail.com', '1991-06-03', 30, '3', '2', 'apparsam', 'designer', 10000.00, 1, 16000.00, 20000.00, 'chennai', 'chennai', '2203090004', '', '2', 'upload_files/candidate_tracker/88548794772_Kamakshi.docx', NULL, '1', '2022-03-09', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for our process, has 1yr exp in designing and has 2yrs gap, in between 10th and dip 10yrs gap, last ctc 20k and expt 22k for calling. will not suite for calling. no clarity in speech.', '1', '1', '', '', '', '', '1', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-09 12:04:00', 7, '2022-03-09 01:22:54', 0, NULL, 1),
(8053, 'Yuvaraj', '4', '7358172711', '', 'yuvarajuvirider@gmail.com', '1995-11-23', 26, '2', '2', 'Harikrishanan', 'Buiding work', 10000.00, 0, 0.00, 12000.00, 'Poonamallee', 'Poonamallee', '2203090005', '1', '1', 'upload_files/candidate_tracker/156410693_yuvarajCAFS.pdf', NULL, '1', '2022-03-09', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for voice process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-09 12:04:36', 85, '2022-03-11 12:33:38', 0, NULL, 1),
(8054, 'K jone williams', '4', '6380757946', '9940274145', 'Jonewilliams@gmail.com', '1992-06-25', 29, '3', '2', 'A kanikairaj', 'Business', 20000.00, 1, 15000.00, 15000.00, 'Chennai', 'Ayyapakkam', '2203090006', '', '2', 'upload_files/candidate_tracker/51867004197_Latest Resume Oct.2020.pdf', NULL, '1', '2022-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not sustain, planning to start hotel in next 6m. expt 15k and has 1yr exp in calling', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-09 12:10:19', 1, '2022-03-09 12:16:27', 0, NULL, 1),
(8055, 'Ns.baskar', '31', '9524345607', '8610012754', 'nsbaskar075@gmail.com', '1997-10-17', 24, '2', '2', 'Saravanan', 'Weaver', 8000.00, 3, 0.00, 12000.00, 'Kumbakonam', 'Kumbakonam', '2203090007', '1', '1', 'upload_files/candidate_tracker/88797236777_Resume.docx', NULL, '2', '2022-03-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-09 01:00:50', 84, '2022-03-09 03:28:48', 0, NULL, 1),
(8056, 'Saranraj', '5', '9830353350', '7305296985', 'saranrajrajendhran@gmail.com', '1987-05-31', 34, '2', '1', 'Rajendiran', 'Farmer', 70000.00, 0, 20000.00, 23000.00, 'Salem', 'Kolkata', '2203090008', '1', '2', 'upload_files/candidate_tracker/36475494452_saranraj resume new update.pdf', NULL, '2', '2022-03-09', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-09 02:02:39', 58, '2022-03-09 03:59:37', 0, NULL, 1),
(8057, '', '0', '9363201434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203090009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-09 02:58:32', 0, NULL, 0, NULL, 1),
(8058, 'Thenmozhi', '4', '9360096308', '', 'Thenmozithenmozhi12@gmail.com', '2001-01-20', 21, '2', '2', 'Babu', 'Farmer', 18000.00, 2, 0.00, 15000.00, 'Vellore', 'Vellore', '2203090010', '1', '1', 'upload_files/candidate_tracker/92083226743_Thenmozhi.pdf', NULL, '3', '2022-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'very childish will not suite for sales process, expt is 15k. from vellore she has to relocate to chennai.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-09 03:07:24', 1, '2022-03-10 06:27:06', 0, NULL, 1),
(8059, '', '0', '7980071487', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-09 03:18:53', 0, NULL, 0, NULL, 1),
(8060, 'AFRIN ASHAR', '31', '7502447880', '7502481135', 'afrinashar1@gmail.com', '1997-11-22', 24, '2', '2', 'Johnson manoher', 'Shop keeper', 1.50, 1, 0.00, 2.50, 'Moolaikadu', 'Moolaikadu', '2203090012', '1', '1', 'upload_files/candidate_tracker/26764047032_react AFRIN ASHAR.PDF', NULL, '2', '2022-03-09', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'doing freelance projects with his brother know very basics. expt 2.5-3L min. from thirunelveli will relocate to chennai.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-09 03:26:47', 1, '2022-03-09 03:29:52', 0, NULL, 1),
(8061, 'Gopala krishna', '5', '7095986152', '9347314780', 'gk0056759@gmail', '2000-07-28', 21, '2', '2', 'Parent', 'Farmer', 1600000.00, 2, 0.00, 17.00, 'Mahubububad', 'Hitch city', '2203090013', '1', '2', 'upload_files/candidate_tracker/17193722112_RESUME-2_Guguloth Gopala Krishna.docx', NULL, '1', '2022-03-09', 4, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-09 04:59:44', 1, '2022-03-09 05:04:04', 0, NULL, 1),
(8062, 'Divya P.', '4', '7358252628', '9677041373', 'Divzz.SPD@gmail.com', '1990-11-27', 31, '3', '1', 'N. Balaji', 'vice President ( purchase and procurement)', 50000.00, 1, 27000.00, 30000.00, 'Saidapet', 'saidapet', '2203090014', '', '2', 'upload_files/candidate_tracker/76047048041_Divya_Resume.pdf', NULL, '1', '2022-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 4yrs exp in content developing with 27k take home in 2019 then had maternity gap. expt 20k+, husband wise president in miot hospital. she dont have any idea about writing and not okay with backend or sales.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-09 05:13:10', 1, '2022-03-09 05:19:35', 0, NULL, 1),
(8063, 'Jeriel k jimo', '22', '9362161054', '9774442271', 'Jimomijeriel@gmail.com', '1996-02-04', 26, '2', '2', 'Kashiho Zhimo', 'Farmer', 20000.00, 4, 0.00, 20000.00, 'Dimapur, Nagaland', 'Chennai', '2203090015', '1', '1', 'upload_files/candidate_tracker/68669092283_612200186537_Renewal_Notice.pdf', NULL, '1', '2022-03-10', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'high salary expectations', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-09 06:30:28', 8, '2022-03-10 05:13:15', 0, NULL, 1),
(8064, 'M.lokeshwari', '26', '8778377233', '9171638282', 'lekham96@gmail.com', '1996-02-24', 26, '2', '2', 'Murali', 'Mechanical govt', 40000.00, 1, 18000.00, 18000.00, 'Chennai', 'Chennai', '2203090016', '1', '2', 'upload_files/candidate_tracker/11744519955_LOKI RESUME-PDF.pdf', NULL, '2', '2022-03-23', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '2yrs in hdb kyc process, 7m in indusbank calling. due to calling work pressure she is looking for change. no basic skills like excel and convincing. expt 20k.', '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-09 06:43:36', 1, '2022-03-23 11:26:16', 0, NULL, 1),
(8065, '', '0', '9791425857', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203090017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-09 07:03:09', 0, NULL, 0, NULL, 1),
(8066, 'Sakthi', '22', '9003295881', '', 'Sakthiselvam.n23@gmail.com', '1994-02-13', 28, '2', '2', 'Natarajan', 'Nil', 10000.00, 1, 0.00, 20000.00, 'Kk nagar, backside of Kasi theatre', 'Kk nagar, backside of Kasi theatre', '2203100001', '1', '1', 'upload_files/candidate_tracker/77643836086_fresh one cadfs.docx', NULL, '1', '2022-03-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'was a teacher for 2yrs now pursuing montessori training, no idea about DM, okay with communication. expt 20k as fresher.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-10 09:10:21', 84, '2022-03-10 10:26:58', 0, NULL, 1),
(8067, 'Nithya S', '4', '7667730326', '', 'nithyasenthil.10@gmail.com', '1993-05-14', 28, '3', '2', 'Senthilmurugan', 'Farmer', 30000.00, 1, 15000.00, 19000.00, 'Saidapet', 'Saidapet', '2203100002', '', '2', 'upload_files/candidate_tracker/36468363430_resume-min.pdf', NULL, '1', '2022-03-10', 30, '', '4', '67', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ignore the above cmnt.\nshe has 2.5yrs exp in service and sales and previously in qc. job need and mctc 15k and expt 18k. she is okay with field sales as well. check once. for salary hike she is looking for job change.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-10 09:51:14', 7, '2022-03-10 04:54:54', 0, NULL, 1),
(8068, '', '0', '9940155410', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 09:54:35', 0, NULL, 0, NULL, 1),
(8069, 'Swathi Priya', '4', '9345724171', '', 'swathipriyagnanarathinam@gmail.com', '1998-10-16', 23, '2', '2', 'Gomathi.G', 'Homemaker', 15000.00, 1, 0.00, 15000.00, 'Ambhathur', 'Ambhathur', '2203100004', '1', '1', 'upload_files/candidate_tracker/83817758243_swa.pdf', NULL, '1', '2022-03-10', 0, '', '3', '59', '2022-03-14', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Arumbakkam team in Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-10 10:25:46', 60, '2022-03-12 03:40:10', 0, NULL, 1),
(8070, '', '0', '7550168330', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 10:56:01', 0, NULL, 0, NULL, 1),
(8071, 'SUDHARSANAM. R', '2', '9498017436', '6381316883', 'sudharsanam1997@gmail.com', '1997-09-19', 24, '3', '2', 'RAJENDRAN', 'TEXTILE BUSINESS', 100000.00, 1, 0.00, 10000.00, 'CHENNAI', 'CHENNAI', '2203100006', '', '1', 'upload_files/candidate_tracker/17359362752_SUDHARSANAM.R RESUME.docx', NULL, '1', '2022-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'dont know any developing lang. completed many courses but no knowledge about it. will not suite for calling as well IT.', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-10 11:00:44', 1, '2022-03-10 11:12:46', 0, NULL, 1),
(8072, '', '0', '8248748153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 12:03:33', 0, NULL, 0, NULL, 1),
(8073, 'Jayalalitha', '4', '7502241412', '7402586174', 'jayalali05@gmail.com', '1991-06-01', 30, '2', '2', 'Arunagiri', 'Business man', 10000.00, 2, 18000.00, 20000.00, 'Chennai', 'Chennai', '2203100008', '1', '2', 'upload_files/candidate_tracker/45236886746_lalitha Resume.docx', NULL, '1', '2022-03-10', 0, '', '5', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is intrested in Non voice only', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-10 12:06:11', 85, '2022-03-10 05:25:21', 0, NULL, 1),
(8074, 'Abinaya S', '31', '9384322709', '', 'abinayas887@gmail.com', '1999-05-21', 22, '2', '2', 'Samuthirakani R', 'Tailor', 13000.00, 2, 15000.00, 25000.00, 'Chennai', 'Chennai', '2203100009', '1', '2', 'upload_files/candidate_tracker/2117695553_Abinaya_resume.pdf', NULL, '1', '2022-03-14', 0, '', '2', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1.5yrs exp with 12k and serving her notice expt 25k. gokul told her to come after her notice.', '2', '1', '0', '1', '1', '0', '2', '2022-03-15', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-10 12:47:29', 1, '2022-03-10 12:53:48', 0, NULL, 1),
(8075, 'Tamilarasi.I', '4', '8220989754', '8428938671', 'tamilarasiinba785@gmail.com', '1997-04-28', 24, '2', '2', 'inbasekaran.k', 'Mason', 20000.00, 2, 0.00, 10000.00, 'No 14,Ambethkar st,Periyar nagar,,Chromepet', 'Chromepet', '2203100010', '1', '1', 'upload_files/candidate_tracker/96312985922_0_Tamilarasi Resum.pdf', NULL, '1', '2022-03-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-10 12:57:43', 1, '2022-03-10 01:05:18', 0, NULL, 1),
(8076, 'Merlin', '4', '8754392924', '', 'merlinmerly99@gmail.com', '1999-03-03', 23, '2', '2', 'Denis mary', 'House wife', 10000.00, 2, 0.00, 12000.00, 'Thiruvanamalai', 'Thiruvanamalai', '2203100011', '1', '1', 'upload_files/candidate_tracker/41329618667_MERLINRESUME1.pdf', NULL, '3', '2022-03-11', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'from thiruvannamalai will relocate to chennai arumbakkam and stay with her friends, has 3m calling exp in credit card with 12k and expt 15k as take home. avg convincing and will not sustain for us. no father and mom house wife, her brothers taking care of family.', '1', '1', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-10 01:57:01', 1, '2022-03-11 04:46:43', 0, NULL, 1),
(8077, 'Senthilkumar', '5', '9791613172', '', 'Clickinsenthil@gmail.com', '1990-02-13', 32, '2', '2', 'Rajendran', 'Army', 40000.00, 1, 23000.00, 28000.00, 'Chennai', 'Chennai', '2203100012', '22', '2', 'upload_files/candidate_tracker/22893928281_SSEresume.pdf', NULL, '1', '2022-03-10', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'interested in data entry comparing with sales', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-10 02:35:43', 8, '2022-03-10 04:58:57', 0, NULL, 1),
(8078, 'SHAHIRA BANU M', '22', '9629618711', '', 'shahira162k@gmail.com', '2000-06-01', 22, '2', '1', 'SYED ALI S', 'ENGINEER', 20000.00, 0, 15000.00, 25000.00, 'Kalpakkam', 'Kalpakkam', '2203100013', '1', '2', 'upload_files/candidate_tracker/91871162753_Shahira Banu M .pdf', NULL, '2', '2022-08-19', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Schedule the candidate for F2f', '2', '1', '', '1', '1', '', '2', '2022-09-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-03-10 02:55:24', 92, '2022-08-19 11:14:27', 0, NULL, 1),
(8079, 'Nandha kumar', '4', '9176074349', '9500089801', 'Jn87830@gmail.com', '1997-03-28', 24, '2', '2', 'Vijaya Lakshmi', 'Home maker', 20000.00, 1, 15000.00, 17000.00, 'Guindy', 'Guindy', '2203100014', '1', '2', 'upload_files/candidate_tracker/81193268671_Resume of Nandha.pdf', NULL, '1', '2022-03-11', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-10 04:13:49', 1, '2022-03-10 05:03:02', 0, NULL, 1),
(8080, 'karthika', '4', '9551146403', '', 'g.p.karthika@gmail.com', '2000-06-01', 21, '3', '2', 'penchaiaiahh', 'late', 13000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2203100015', '', '1', 'upload_files/candidate_tracker/77496350024_Kamakshi.docx', NULL, '1', '2022-03-10', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no 12th, was working in pharmacy 13k, will not suite for calling, expt 15k', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-10 04:15:01', 7, '2022-03-10 06:10:15', 0, NULL, 1),
(8081, '', '0', '9092710080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 04:31:04', 0, NULL, 0, NULL, 1),
(8082, 'vijayalakshmi', '4', '9940587260', '', 'viji.2000@gmail.com', '2000-09-20', 21, '3', '2', 'obulish', 'unemployee', 10000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2203100017', '', '1', 'upload_files/candidate_tracker/82590277317_sample.doc', NULL, '1', '2022-03-10', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '12th, was working in pharmacy 10k, lang is not good will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-10 06:03:10', 1, '2022-03-10 06:05:04', 0, NULL, 1),
(8083, '', '0', '8682916202', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203100018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-10 06:52:03', 0, NULL, 0, NULL, 1),
(8084, 'Sriram S', '6', '9840926061', '', 'ramsri71112@gmail.com', '2000-08-18', 21, '3', '2', 'SURENDERAN S', 'Apollo Pharmacy', 20000.00, 1, 13000.00, 16000.00, 'Chennai', 'Chennai', '2203100019', '', '2', 'upload_files/candidate_tracker/70328288231_SRI RAM RESUME-1.pdf', NULL, '1', '2022-03-11', 1, '', '4', '82', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher for us, 7m exp in loan process like kyc with 13k, expt 15k, from cetpet, check with sustainability once. has 2w and laptop.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-10 07:10:34', 8, '2022-03-11 01:16:17', 0, NULL, 1),
(8085, 'A.N.yamini', '22', '8682916201', '', 'Yamininagharajan2000@gmail.com', '2000-09-06', 21, '2', '2', 'Nagharajan', 'Production manager', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2203100020', '1', '2', 'upload_files/candidate_tracker/47398117290_yamini_resume.pdf', NULL, '1', '2022-03-12', 5, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'her communication is not good will not suite for writing. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-10 09:09:42', 84, '2022-03-12 11:23:10', 0, NULL, 1),
(8086, 'Ruthish Kumar Hari', '14', '7358204324', '8248748153', 'ruthishkumar1711@gmail.com', '1998-11-17', 23, '2', '2', 'Kasthuri H', 'Home Maker', 130000.00, 2, 12000.00, 25000.00, 'Chennai', 'Chennai', '2203110001', '1', '2', 'upload_files/candidate_tracker/65253686732_Ruthish Resume.pdf', NULL, '1', '2022-03-11', 15, '', '4', '54', NULL, 0.00, '', '0', NULL, '2', 'has 11m exp in flutter with 12k and expt 25k.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-11 11:14:52', 1, '2022-03-11 11:18:07', 0, NULL, 1),
(8087, 'jayaprabhu', '4', '8270626272', '7639291144', 'pjayaprabhu@gmail.com', '1994-03-23', 27, '2', '2', 'Arjunan', 'Car consultant', 20000.00, 4, 13000.00, 18000.00, 'salem', 'salem', '2203110002', '1', '2', 'upload_files/candidate_tracker/37722247140_j5 (1).pdf', NULL, '3', '2022-03-11', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-11 12:46:25', 1, '2022-03-11 12:51:32', 0, NULL, 1),
(8088, 'Durga.D', '4', '9585668959', '8015831010', 'durgaaji2228@gmail.com', '1999-05-28', 22, '2', '2', 'V.Desappan', 'Fisherman', 25000.00, 2, 14000.00, 14000.00, 'Pulicat-601205', 'Lighthouse chennai', '2203110003', '1', '2', 'upload_files/candidate_tracker/20594756963_I am sharing \'durgaresume-converted (1)\' with you.pdf', NULL, '1', '2022-03-11', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'expt 14k for calling, for fresher we cant offer 14k', '1', '1', '0', '1', '1', '0', '2', '2022-03-18', '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-11 12:56:50', 1, '2022-03-11 01:05:36', 0, NULL, 1),
(8089, 'T PREM KIRAN', '5', '9150633288', '', 'premkirant8@gmail.com', '1997-11-26', 24, '2', '2', 'G THENRAJ', 'Business', 600000.00, 1, 19000.00, 24500.00, 'Chennai', 'Chennai', '2203110004', '1', '2', 'upload_files/candidate_tracker/60574958930_PREM(resume)final.pdf', NULL, '2', '2022-03-23', 90, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 3yrs exp in care. looking for TL and no relevant exp and expt is 30k.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-11 02:43:53', 87, '2022-03-26 11:39:33', 0, NULL, 1),
(8090, 'Divya J', '16', '9092981955', '8124754222', 'jdivya9727@gmail.com', '1997-03-27', 24, '2', '2', 'M Jayakumar', 'Business', 80000.00, 1, 12000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2203110005', '1', '2', 'upload_files/candidate_tracker/75950838388_My Resume.docx', NULL, '1', '2022-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-11 05:01:08', 1, '2022-03-11 05:11:36', 0, NULL, 1),
(8091, 'Sathya S', '16', '7358546928', '8939701267', 'sathyars3008@gmail.com', '1994-10-29', 27, '2', '2', 'P Shanmugaraj', 'MTC Conductor', 90000.00, 1, 14000.00, 20000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2203110006', '1', '2', 'upload_files/candidate_tracker/84225942926_Sathya Updated Resume.docx', NULL, '1', '2022-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-11 05:12:07', 1, '2022-03-11 05:20:15', 0, NULL, 1),
(8092, 'Suganya', '21', '9940091243', '9940133259', 'suganya.8291@gmail.com', '1991-02-08', 31, '2', '1', 'Sasi kumar', 'Supervisor', 20.00, 2, 18.00, 30.00, 'Chennai', 'Chennai', '2203110007', '1', '2', 'upload_files/candidate_tracker/57043667776_RESUME-suganya (1) (1) (1).pdf', NULL, '1', '2022-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-11 05:21:22', 1, '2022-03-11 05:29:53', 0, NULL, 1),
(8093, '', '0', '7358471108', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-11 05:28:46', 0, NULL, 0, NULL, 1),
(8094, '', '0', '8838232312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-11 05:30:16', 0, NULL, 0, NULL, 1),
(8095, '', '0', '9940594355', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203110010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-11 06:02:00', 0, NULL, 0, NULL, 1),
(8096, 'charless', '9', '7373996883', '9080653417', 'charlessmct@gmail.com', '1994-05-08', 27, '2', '2', 'raja', 'farmer', 50000.00, 1, 27000.00, 35000.00, 'dharmapuri', 'chennai', '2203110011', '1', '2', 'upload_files/candidate_tracker/41242793254_Charless Resume.docx', NULL, '1', '2022-03-24', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-11 07:06:05', 1, '2022-03-22 01:01:00', 0, NULL, 1),
(8097, 'Shridharan', '16', '9080510185', '9092981955', 'Shridharshri04@gmail.com', '1999-04-06', 22, '2', '2', 'R palani', 'Defence', 30000.00, 2, 14000.00, 20000.00, 'Ramapuram', 'Ramapuram', '2203110012', '1', '2', 'upload_files/candidate_tracker/15055725524_Shridharan Resume (1).pdf', NULL, '1', '2022-03-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-11 07:23:52', 1, '2022-03-11 07:28:30', 0, NULL, 1),
(8098, 'M. Simal Ahamed', '4', '8248020546', '8300507236', 'Simalahamed2725@gmail.com', '2000-03-27', 21, '2', '2', 'Mohammed Nijamudeen', 'Own shop', 9000.00, 4, 0.00, 13000.00, 'Chennai', 'Velachery', '2203110013', '1', '1', 'upload_files/candidate_tracker/44417481667_Resume .pdf', NULL, '1', '2022-03-12', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'he is hyperactive will not suite for our process, his pronunciation are not clear. expt 14-16k. 6m exp in billing with 12k, looking for job change.', '1', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-11 08:52:59', 1, '2022-03-11 09:01:43', 0, NULL, 1),
(8099, 'Sundaramoorthy j', '4', '6379525619', '', 'Moorthysundara51@gmail.com', '2001-05-06', 20, '2', '2', 'Jayaraman g', 'Farmer', 8000.00, 1, 0.00, 8000.00, 'Chengapattu', 'Thirunilai', '2203120001', '1', '1', 'upload_files/candidate_tracker/81196242556_resume.pdf', NULL, '1', '2022-03-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, no convincing and he is from chengalpattu too long distance. he cant relocate too.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 11:37:22', 85, '2022-03-12 12:32:43', 0, NULL, 1),
(8100, 'Vinoth', '4', '9677186320', '', 'vinothkumar130298@mail.com', '1998-02-13', 24, '2', '2', 'Subashini', 'House wife', 20000.00, 1, 12000.00, 14000.00, 'RA puram', 'RA Puram', '2203120002', '1', '2', 'upload_files/candidate_tracker/42847400448_VinothKumarResumes22.doc', NULL, '1', '2022-03-12', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for telesales', '1', '1', '', '', '', '', '1', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 11:51:30', 85, '2022-03-12 02:36:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8101, 'S manojkumar', '6', '9087396235', '', 'Manojmoji63@gmail.com', '1998-03-01', 24, '1', '2', 'S. Suresh', 'Cooli', 20000.00, 2, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2203120003', '', '1', 'upload_files/candidate_tracker/89810375392_S.MANOJ RESUME-1.doc', NULL, '1', '2022-03-12', 0, 'Cl126', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not okay with his lang and attitude, will not sustain and handle sales pressure. has 4m and 3m exp. was handling father biz in b/w. expt 15-16k.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-12 12:02:20', 1, '2022-03-12 12:09:13', 0, NULL, 1),
(8102, 'Abianaya', '4', '8270235902', '8300447131', 'abinayakaran444@gmail.com', '2001-09-15', 20, '2', '2', 'V.Manoharan', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'Chennai', '2203120004', '1', '1', 'upload_files/candidate_tracker/54602847352_Abinaya resume.pdf', NULL, '1', '2022-03-12', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling, not convinced with her lang, expt is 15k will not sustain. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 12:03:04', 85, '2022-03-12 12:31:47', 0, NULL, 1),
(8103, 'Ebin Joe CL', '31', '6383084965', '8754275427', 'ebin.joe14@gmail.com', '1998-04-21', 23, '2', '2', 'Stella', 'Housewife', 25000.00, 2, 12000.00, 20000.00, 'Marthandam', 'Sozhinganallor', '2203120005', '1', '2', 'upload_files/candidate_tracker/39031646405__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-12', 8, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'drop him', '2', '1', '', '1', '1', '', '2', '2022-03-14', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-12 12:18:01', 84, '2022-03-12 12:32:27', 0, NULL, 1),
(8104, 'Vishnu gopan', '4', '6383804038', '9884166122', 'vishnuvardhan954@gmail.com', '1996-10-03', 25, '2', '2', 'Gopa kumar', 'Business', 10000.00, 1, 17000.00, 20000.00, 'Chennai', 'Chennai', '2203120006', '1', '2', 'upload_files/candidate_tracker/55759039384_Vishnu', NULL, '1', '2022-03-12', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has to check with sriram, no sales exp but good in lang and convincing. expt 18k. ', '1', '1', '', '1', '1', '', '2', '2022-03-19', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-12 12:31:11', 7, '2022-03-12 02:41:12', 0, NULL, 1),
(8105, 'Nandhakumar', '4', '8940616992', '', 'samratnanthu@gmail.com', '2001-01-21', 21, '2', '2', 'Thandapani', 'Electric', 400000.00, 2, 0.00, 18000.00, 'Kalaiyar koil', 'Kalaiyar koil', '2203120007', '1', '1', 'upload_files/candidate_tracker/7779006557_my resume.docx', NULL, '1', '2022-03-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for our process. has 7m exp in airtel sim sales, not clear with his existing analysis, no 2w and lap, expt 16-17k. talkative but no convincing skill.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-12 03:54:12', 1, '2022-03-12 04:02:09', 0, NULL, 1),
(8106, 'Ashok Kumar Kancharla', '4', '9940304057', '', 'kancharla.ashok5@gmail.com', '1984-10-13', 37, '2', '1', 'Subashini', 'Home Maker', 25000.00, 2, 25000.00, 30000.00, 'Anakaputhur', 'Anakaputhur', '2203120008', '1', '2', 'upload_files/candidate_tracker/54121710245_Ashok_Kumar.docx', NULL, '1', '2022-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-12 04:58:44', 1, '2022-03-12 05:02:22', 0, NULL, 1),
(8107, 'Aruna', '4', '9629926285', '', 'arunarajaram9629@gmail.com', '2001-02-27', 21, '2', '2', 'Rajaram', 'Farmer', 400000.00, 2, 0.00, 15000.00, '1/72 , mariyamman kovil street,Puravadai , vpm', '1/72 , mariyamman kovil street, puravadai , vpm', '2203120009', '1', '1', 'upload_files/candidate_tracker/9528041684_ARUNA_resume1(1).pdf', NULL, '2', '2022-03-14', 0, '', '3', '59', '2022-04-04', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Arumbakkam Elite Team in consultant Role', '1', '2', '', '1', '1', '', '2', '2022-03-28', '3', '9', 'Offer Mail Sent', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-12 05:10:06', 60, '2022-03-28 10:35:10', 0, NULL, 1),
(8108, 'Kumaresan.s', '4', '9788054312', '', 'thalask03@gmail.com', '1996-10-03', 25, '2', '2', 'Sakthivel', 'Farmer', 15000.00, 3, 0.00, 15000.00, 'Thanjavur', 'Thanjavur, alakkudi', '2203120010', '1', '1', 'upload_files/candidate_tracker/81166016610_sakthi Kumaresan', NULL, '3', '2022-03-14', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not profiled..not fit for telesales ..purely civil oriented field working experience ...and salary expectation also high...sustainability issues also..he is willing to do business in future and intrested in farming also.....', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 06:46:12', 85, '2022-03-14 02:54:16', 0, NULL, 1),
(8109, 'G MUNI', '16', '9943333954', '', 'muni.g1991@gmail.com', '1991-06-25', 30, '2', '1', 'E MANJULA', 'Student', 10000.00, 1, 18500.00, 22000.00, 'Chittoor', 'Chennai', '2203120011', '1', '2', 'upload_files/candidate_tracker/60268503763_muni 2021 updated Resume (1).docx', NULL, '3', '2022-03-18', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr exp in data entry, 1.5yrs in go fashion as backend support with 15k, 3m in sbi gi with 20k, expt 25k. poor communication and will not sustain. knows only basics in excel. will not suite for calling.', '3', '1', '', '1', '3', '', '2', '1970-01-01', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-12 07:06:08', 60, '2022-03-18 12:09:49', 0, NULL, 1),
(8110, 'A. Jasmine leethiyal', '4', '7708100157', '', 'jasleethi19@gmail.com', '2001-02-19', 21, '2', '2', 'A. Prema', 'House wife', 10000.00, 1, 0.00, 15000.00, 'Muthukrishna Puram, Thoothukudi', 'Muthukrishna puram, Thoothukudi', '2203120012', '1', '1', 'upload_files/candidate_tracker/23288352894_Jasmine resume.pdf', NULL, '2', '2022-03-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'from tutukudi, fresher and no convincing skill will not suite for calling, expt 15k min. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 07:09:51', 85, '2022-03-14 09:47:48', 0, NULL, 1),
(8111, '', '0', '8144622123', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203120013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-12 07:14:52', 0, NULL, 0, NULL, 1),
(8112, 'D Jayasuriya', '16', '7299784508', '9003243180', 'ssuriya24c@gmail.com', '1998-01-28', 24, '2', '2', 'Dharmalingam', 'Cooli', 15000.00, 2, 17000.00, 20000.00, '6/43, Nayar Varatha Pillai street Royapettah', '6/43, Nayar Varatha Pillai street Royapettah', '2203120014', '1', '2', 'upload_files/candidate_tracker/75240523878_suriya.resumenew2022march.pdf', NULL, '1', '2022-03-14', 30, '', '4', '72', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 1yr exp in tcs as mis exe, 3m in cams, looking for job change. 15k ctc expt 20k, 30 days notice, okay with our company norms. 16k ctc.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-12 07:24:37', 60, '2022-03-14 04:58:23', 0, NULL, 1),
(8113, 'Kalaiselvi R', '17', '9952796017', '7339671397', 'kalaiselvi.ad111@gmail.com', '1992-10-30', 29, '2', '1', 'Prabhakaran P', 'Unit managee', 50000.00, 0, 18000.00, 25000.00, 'Madipakkam', 'Madipakkam', '2203120015', '1', '2', 'upload_files/candidate_tracker/23784983334_Kalai Selvi resume pdf (1).pdf', NULL, '1', '2022-03-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-12 07:48:16', 1, '2022-03-12 08:08:06', 0, NULL, 1),
(8114, 'Akkash. T', '4', '6381669202', '6369200698', 'akkashthiyagu18@gmail.com', '2000-11-18', 21, '2', '2', 'Thiyagarajan. M', 'Cashier', 15000.00, 2, 0.00, 15000.00, 'Kanchipuram', 'Kanchipuram', '2203120016', '1', '1', 'upload_files/candidate_tracker/49287870079_Akkash CV.pdf', NULL, '3', '2022-03-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable,much prefer for non voice,will not sustain and handlle the pressure\n', '1', '2', '', '4', '6', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-12 08:02:31', 85, '2022-03-14 10:25:13', 0, NULL, 1),
(8115, 'vignesh', '5', '9600438179', '', 'vignesh9111995@gmail.com', '1995-11-09', 26, '2', '2', 'ramalingam', 'dealer', 15000.00, 1, 15000.00, 22000.00, 'kaveripakkam', 'Kaveripakkam', '2203120017', '1', '2', 'upload_files/candidate_tracker/21221984461_sample.doc', NULL, '1', '2022-03-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher for sales, has 3yrs exp in production and qc, no convincing and no calling skills, will not suite for us, expt 22k.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-12 08:03:06', 1, '2022-03-14 01:49:01', 0, NULL, 1),
(8116, 'Thulasidharan', '22', '9677588128', '', 'thirunavakarassu93@gmail.com', '2002-04-19', 19, '2', '1', 'Manickam', 'Cattle shop', 25000.00, 1, 23000.00, 30000.00, 'Tindivanam', 'Tindivanam', '2203140001', '1', '2', 'upload_files/candidate_tracker/63291632857_thulasi.docx', NULL, '1', '2022-03-24', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for content writing. poor comm and no exp in writing. expt 25k.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-14 08:05:02', 87, '2022-03-24 04:41:18', 0, NULL, 1),
(8117, 'Catherine', '4', '7904979044', '9786012978', 'Cathufdo@gmail.com', '1997-07-09', 24, '2', '2', 'Raj', 'Fisher man', 25000.00, 3, 0.00, 20000.00, 'Thirunelveli', 'Thirunelveli', '2203140002', '1', '1', 'upload_files/candidate_tracker/72804323416_temp-1cdfa7ee-41e2-421e-8b8c-7e2b2f502f48.doc.pdf', NULL, '3', '2022-03-14', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'after her degree 2018 she was serching job in chenni and got offer but didnt joined due to health issues, 1m in native due to health issues she relived from that job too, will not sustain and expt is 15k.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-14 09:44:54', 1, '2022-03-14 10:04:04', 0, NULL, 1),
(8118, 'C.nirmala', '16', '6383248472', '9444775974', 'mercychandran88@gmail.com', '1999-06-29', 22, '2', '2', 'J.chandran', 'Working', 20000.00, 3, 13000.00, 15000.00, 'Thirutani', 'Santhom', '2203140003', '1', '2', 'upload_files/candidate_tracker/45073266332_Nirmala - Resume - 2pg.docx', NULL, '1', '2022-03-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2yrs exp in customer support, avg in convincing, expt 16+, looking for backend and op. no knowledge in excel and sheets. ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-14 10:22:09', 58, '2022-03-14 10:37:54', 0, NULL, 1),
(8119, 'Aswin Alagappan', '5', '9003208143', '8778707186', 'cuteashwin55@gmail.com', '1994-09-29', 27, '2', '2', 'Sekar', 'Finance', 25000.00, 1, 17000.00, 20000.00, 'Boardway', 'Mannady', '2203140004', '1', '2', 'upload_files/candidate_tracker/85817491325_Ashvathy 29.pdf', NULL, '1', '2022-03-15', 1, '', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Kindly Reschedule', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-14 12:39:39', 85, '2022-03-16 10:36:45', 0, NULL, 1),
(8120, 'G.Pavan Kumar', '17', '7981210181', '8143902139', 'pavanmudiraj1993@gmail.com', '1993-03-28', 28, '2', '2', 'G Lakshmi Devi', 'House wife', 30000.00, 2, 300000.00, 400000.00, 'Kurnool', 'Anantapur', '2203140005', '1', '2', 'upload_files/candidate_tracker/70877408747_Pavan Resume.docx', NULL, '2', '2022-03-14', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-14 01:48:10', 58, '2022-03-14 02:46:26', 0, NULL, 1),
(8121, 'V. Yuvasri', '4', '6369451732', '', 'Vyuvasri4@gmail.com', '2000-10-03', 21, '2', '2', 'P. Velusamy', 'Salesman', 30000.00, 1, 0.00, 20000.00, 'Mmnagar 6th street kalavasal Madurai', 'Mmnagar 6th street kalavasal Madurai', '2203140006', '1', '1', 'upload_files/candidate_tracker/71782583654__Template_1640165565432.pdf', NULL, '3', '2022-03-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-03-14 02:26:33', 1, '2022-03-14 02:37:44', 0, NULL, 1),
(8122, 'Ramya', '4', '9344736721', '', 'ramyabalaji848@gmail.com', '2000-03-21', 21, '2', '2', 'Balaji', 'Driver', 10000.00, 1, 0.00, 12000.00, 'thanjavur', 'thanjavur', '2203140007', '1', '1', 'upload_files/candidate_tracker/76241859654_Resume.pdf', NULL, '3', '2022-03-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-14 05:19:05', 1, '2022-03-14 05:21:55', 0, NULL, 1),
(8123, 'Balaji C', '4', '7395861365', '', 'balajib91103@gmail.com', '2001-06-03', 20, '2', '2', 'CHINNAKANNU', 'Farmar', 150000.00, 2, 0.00, 15000.00, 'KALLAKKURICHI', 'KALLAKKURICHI', '2203140008', '1', '1', 'upload_files/candidate_tracker/34424021879_RESUME - BALAJI-1.docx', NULL, '2', '2022-05-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-14 05:52:28', 85, '2022-05-04 10:06:57', 0, NULL, 1),
(8124, '', '0', '9840085298', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203140009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-14 06:13:40', 0, NULL, 0, NULL, 1),
(8125, '', '0', '9003872638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203140010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-14 06:19:11', 0, NULL, 0, NULL, 1),
(8126, 'Ramya D', '25', '9952813717', '', 'ramyadivya91@gmail.com', '1991-06-16', 30, '2', '1', 'PRABHAKARAN SANKAR RAJA M', 'Assistant manager at HCL', 40000.00, 1, 240000.00, 270000.00, 'Ambattur', 'Ambattur', '2203140011', '1', '2', 'upload_files/candidate_tracker/93765582812_Resume-converted (1).pdf', NULL, '1', '2022-03-16', 10, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not okay with agmt', '8', '2', '', '1', '3', '', '2', '2022-03-17', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-14 07:43:44', 7, '2022-03-16 11:44:16', 0, NULL, 1),
(8127, 'Sreeganesh', '4', '9446329561', '9344283451', 'sree93361@gmail.com', '2000-10-31', 21, '2', '2', 'No', 'Nothing', 22000.00, 0, 0.00, 18000.00, 'Idukki, Kerala', 'Shollinganallur', '2203140012', '1', '1', 'upload_files/candidate_tracker/12120986559_Sreeganesh -10.pdf', NULL, '3', '2022-03-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-14 08:09:01', 85, '2022-03-16 10:35:08', 0, NULL, 1),
(8128, 'gowtham', '6', '9962606474', '', 'gauthamravi598@gmail.com', '1994-09-06', 27, '2', '2', 'R', 'officer', 100000.00, 0, 0.00, 120000.00, 'chennai', 'chennai', '2203140013', '1', '1', 'upload_files/candidate_tracker/20262855361_DocumentfromGauthamRavichandran1.docx', NULL, '1', '2022-03-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling and backend. very childish and no understanding. only son and training him is also tough. ', '5', '1', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-14 09:40:43', 87, '2022-03-22 04:59:16', 0, NULL, 1),
(8129, 'A Mohammed Furqanullah', '31', '7397596247', '', 'furqanmohammed328@gmail.com', '1997-04-02', 24, '2', '2', 'Farhathullah', 'Worker', 12000.00, 2, 0.00, 20000.00, 'Ambur', 'Chennai', '2203140014', '1', '1', 'upload_files/candidate_tracker/9443340560_Furqan0008.pdf', NULL, '3', '2022-03-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-14 11:11:07', 85, '2022-03-16 10:37:12', 0, NULL, 1),
(8130, 'Selvam', '4', '6381350603', '6380669699', 'selvam1993slp@gmail.com', '1993-11-13', 28, '2', '2', 'Marry', 'Housewife', 10000.00, 1, 0.00, 13000.00, 'Kanchipuram', 'Kanchipuram', '2203150001', '1', '1', 'upload_files/candidate_tracker/53554494504_Selvam B (1).pdf', NULL, '1', '2022-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Voice Process,relevant Star Health only but no sustainability, and will not sustain in our Roles xxamp Pressure\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-15 11:01:56', 1, '2022-03-15 11:07:14', 0, NULL, 1),
(8131, 'Rajalakshmi G', '4', '9840379873', '8220606278', 'rajalakshmi26388@gmail.com', '1998-07-03', 23, '2', '1', 'Gopi K', 'Travel agency', 20000.00, 1, 0.00, 19000.00, 'No-17/9, mangapathi street, pattalam, chennai-12', 'No-17/9, Mangapathi Street, Pattalam, Chennai-12', '2203150002', '1', '2', 'upload_files/candidate_tracker/39741645959_Raji resume.docx', NULL, '1', '2022-03-22', 0, '', '3', '59', '2022-04-01', 182496.00, '', '3', '2022-10-04', '2', 'Selected for Arumbakkam Location with PT only,TH-15K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', 'Offer Mail Shared', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-15 12:33:08', 60, '2022-03-25 05:03:59', 0, NULL, 1),
(8132, 'Vigneshwari.T', '11', '8056935467', '8778032926', 'vigneshwari2601@gmail.com', '2007-03-15', 0, '2', '2', 'S.thiravidamani', 'Farmer', 10000.00, 1, 15000.00, 15000.00, '212 Mela street pazhayanalur,chidambaram', '36 masque Street taramani, Chennai', '2203150003', '1', '2', 'upload_files/candidate_tracker/13151040241_Vigneshwari[0_0] (1).pdf', NULL, '1', '2022-03-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,no sustainability in previous company stating mothexquots health issue,Handling Pressure,also she mention that she is ok with SA,but doubtful', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-15 03:35:49', 1, '2022-03-15 03:39:08', 0, NULL, 1),
(8133, 'Fathima', '11', '7397397229', '6369159542', 'fathuaf1998@gmail.com', '1998-05-01', 23, '2', '2', 'K.Ahmed Basha', 'Mutton merchant', 35000.00, 1, 10000.00, 17000.00, 'Poondhamalli', 'Poondhamalli', '2203150004', '1', '2', 'upload_files/candidate_tracker/13716688220_Fathima- .Resume..pdf', NULL, '1', '2022-03-16', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '6', '1', '0', '1', '1', '0', '2', '2022-03-17', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-15 04:20:21', 1, '2022-03-15 04:31:08', 0, NULL, 1),
(8134, 'Shivaani.P', '11', '9791801422', '', 'shankari20498@gmail.com', '2022-04-20', 0, '2', '2', 'prithvraj', 'business', 50000.00, 1, 0.00, 12000.00, 'annanagar', 'annanagar', '2203150005', '1', '1', 'upload_files/candidate_tracker/66610111008_Shivaani.presume.pdf', NULL, '1', '2022-03-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, done literature then fashion designing, worked 1m in consultancy for 10k absconded due to low salary. no job need. she is not clear with her carrier. expt 13-15k.', '6', '1', '', '', '', '', '2', '1970-01-01', '2', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-15 04:44:00', 58, '2022-03-16 11:40:53', 0, NULL, 1),
(8135, 'MAHESHRAJ', '7', '8072015926', '', 'massmahesh398@gmail.com', '2000-02-09', 22, '2', '2', 'Balasubramanian', 'Farmer', 15000.00, 1, 12000.00, 16000.00, 'THACHANALLUR', 'THACHANALLUR', '2203150006', '1', '2', 'upload_files/candidate_tracker/57152533915_CV_2021-11-28-064914.pdf', NULL, '3', '2022-03-16', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process. he is not interested in insurance. he has 6m exp in mf and insurance. he has no idea about amc and funds. known nothing about insurance too. was getting 12k and expt 15k min.', '7', '1', '', '1', '3', '', '2', '1970-01-01', '3', '4', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-15 04:51:09', 84, '2022-03-16 10:05:10', 0, NULL, 1),
(8136, 'Sunil Kumar R', '11', '6374989131', '7358473613', 'sjjsunil10@gmail.com', '1999-04-17', 22, '2', '2', 'Ramesh', 'Business', 25000.00, 1, 12500.00, 16000.00, 'Chennai', 'Chennai', '2203150007', '1', '2', 'upload_files/candidate_tracker/40685217873_SUNILKUMAR.R (B.E. & MBA) 05.pdf', NULL, '1', '2022-03-16', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-15 05:50:38', 1, '2022-03-15 05:52:48', 0, NULL, 1),
(8137, 'Saranya', '31', '9789726850', '', 'saranyaseswaran@gmail.com', '1995-06-28', 26, '2', '1', 'Sathish kumar', 'Mechanical Engineer', 90000.00, 1, 30000.00, 40000.00, 'Coimbatore', 'Chennai', '2203160001', '1', '2', 'upload_files/candidate_tracker/73797589757_Saranya_Eswaran (2).pdf', NULL, '3', '2022-03-16', 7, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'was completely in teaching, currently working in bijus with 30-40k variable salary based on classes. married and willing to relocate to chennai. expt in between 30-40k, fresher and knows only the basic in react. not answered few ques. ', '2', '1', '', '1', '1', '', '1', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-16 11:22:54', 7, '2022-03-16 05:47:02', 0, NULL, 1),
(8138, '', '0', '9176820644', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-16 11:29:22', 0, NULL, 0, NULL, 1),
(8139, 'salmankhan', '11', '8438515277', '', 'salmananvar21@gmail.com', '1997-02-21', 25, '2', '2', 'anvar basha', 'farmer', 40000.00, 3, 12000.00, 20000.00, 'kallakurichi', 'kallakurichi', '2203160003', '1', '2', 'upload_files/candidate_tracker/12214538108_salman Resume.pdf', NULL, '2', '2022-03-16', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-16 11:34:27', 1, '2022-03-16 12:44:32', 0, NULL, 1),
(8140, 'Saravanan', '16', '9787272383', '', 'selvasaravana2020@gmail.com', '1991-01-10', 31, '2', '1', 'Anitha', 'Home maker', 32000.00, 2, 420000.00, 500000.00, 'Sivagangai', 'Sivagangai', '2203160004', '1', '2', 'upload_files/candidate_tracker/17202696949_Resume-New.pdf', NULL, '1', '2022-03-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suit for mis, expt 4.2l. was doing freelancing for content. has to check with it.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-03-16 11:39:51', 7, '2022-03-19 10:31:47', 0, NULL, 1),
(8141, 'Suvatha Sekar', '4', '8148922206', '9176071351', 'suvethasks90@gmail.com', '2001-06-17', 20, '2', '2', 'Sekar k', 'Driver', 10000.00, 1, 14000.00, 18000.00, 'Karaikal', 'Saidapet', '2203160005', '1', '2', 'upload_files/candidate_tracker/61375535731_RESUME (Suvetha)-converted.pdf', NULL, '1', '2022-03-17', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'she is not interested in calling. was asking for non voice. she dont know any basics in excel. then she is okay with calling but expt 12-14k. will not sustain for calling. ', '1', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-16 11:53:50', 1, '2022-03-16 11:59:37', 0, NULL, 1),
(8142, 'Naveena. R', '6', '9566310813', '8344421010', 'naveenanaveenar3@gmail.com', '2000-02-05', 22, '3', '2', 'Indhumathi', 'Housewife', 15000.00, 2, 12000.00, 14000.00, 'New washermenpet', 'New Washermenpet', '2203160006', '', '2', 'upload_files/candidate_tracker/21760813430_Ra-111.docx', NULL, '1', '2022-03-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'We proposed our Salary and turned before joining as not interested', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-16 12:50:53', 7, '2022-03-16 02:46:15', 0, NULL, 1),
(8143, 'Yamuna. M', '6', '9962168005', '9962168214', 'yamuna8300@gmail.com', '2000-03-08', 22, '3', '2', 'Chitra. M', 'House wife', 20000.00, 1, 12000.00, 14000.00, 'New Washermenpet', 'New Washermenpet', '2203160007', '', '2', 'upload_files/candidate_tracker/35592528474_M.Yamuna_F2.docx', NULL, '1', '2022-03-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'We Proposed Our Salary And Turned Before Joining As Not Interested', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-16 01:05:33', 7, '2022-03-16 02:45:19', 0, NULL, 1),
(8144, '', '0', '9047031218', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203160008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-16 01:36:12', 0, NULL, 0, NULL, 1),
(8145, 'akash', '6', '9786550502', '8940433709', 'akashbsc18@gmail.com', '1999-10-10', 22, '2', '2', 'maheswaran', 'farmer', 50000.00, 1, 16000.00, 20000.00, 'southstreet thuvarankurichi thanjavur', 'choolaimedu', '2203160009', '1', '2', 'upload_files/candidate_tracker/22809919774_Akash.pdf', NULL, '1', '2022-03-16', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for our process, has 1yr exp in cash collection. 4m in real estate. lang is not good and expt is 15k and no 2w and laptop will not suite for re too.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-16 02:26:46', 60, '2022-03-18 11:51:12', 0, NULL, 1),
(8146, 'Jose Prabhakaran', '5', '9167634324', '7678083539', 'mjpkaran@gmail.com', '1994-05-25', 27, '2', '2', 'Murugesan', 'Cook', 30000.00, 2, 35000.00, 50000.00, 'Tirunelveli', 'Pallikaranai', '2203160010', '1', '2', 'upload_files/candidate_tracker/55097354149_Jose resume 032022.pdf', NULL, '1', '2022-03-16', 0, '', '3', '59', '2022-04-07', 450000.00, '', '7', '1970-01-01', '1', 'Selected for Pandian Team -RM wiht 7% Hike from previous CTC and 6 month target based incentive will be given by manager', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-16 02:37:03', 60, '2022-03-24 12:22:07', 0, NULL, 1),
(8147, 'Kamali', '16', '8148888564', '8778536960', 'kamalijayachandran2611@gmail.com', '1995-06-05', 26, '2', '2', 'S.Jayachandran', 'Govt Officer', 35000.00, 1, 1.98, 2.20, 'Chennai', 'Avadi, Chennai', '2203160011', '1', '2', 'upload_files/candidate_tracker/97643744694_Kamali. J.docx', NULL, '1', '2022-03-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-16 03:02:12', 1, '2022-03-16 03:09:14', 0, NULL, 1),
(8148, '', '0', '8939554613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-16 05:35:13', 0, NULL, 0, NULL, 1),
(8149, 'Guruwaran', '4', '7338918826', '9042496694', 'guruwaran007@yahoo.com', '1994-08-21', 27, '2', '2', 'Thiyagu kanchana', 'Reated', 15000.00, 1, 0.00, 15000.00, 'No 15 cg colony 3rd Street royapuram', 'Chennai kasimadu', '2203160013', '1', '1', 'upload_files/candidate_tracker/12005674681_gurauvaran cv-1.docx', NULL, '3', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not speaking up will not suite for calling and sales. was working n dhubai and will not sustain here.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-16 05:55:04', 85, '2022-03-18 01:29:56', 0, NULL, 1),
(8150, 'Shanmugi G', '11', '9941155308', '', 'Shanmugigunasekaran@gmail.com', '1998-12-25', 23, '2', '2', 'Gunasekaran p', 'Other', 75000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2203170001', '1', '2', 'upload_files/candidate_tracker/83924427234_HARI SHANKAR.pdf', NULL, '1', '2022-03-17', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 6m exp in a consultancy, no basic skills in calling and will not suite for our company. given negative feedback about the present org. expt 15k. ', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-17 09:16:53', 7, '2022-03-17 12:03:50', 0, NULL, 1),
(8151, 'Mohamed Aslam', '4', '7871397272', '7904637461', 'aslampno1@gmail.com', '1998-04-12', 23, '2', '2', 'Ghouse Mohideen', 'mosque Hajrath', 40000.00, 2, 12000.00, 16000.00, 'Parangipettai Cuddalore', 'Parangipettai Cuddalore', '2203170002', '1', '2', 'upload_files/candidate_tracker/96062549870_aslam resume.docx', NULL, '3', '2022-03-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile. need to check with him again due to his network issues couldnt continue the call too.\nrejected over the call', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-17 10:29:13', 85, '2022-03-17 10:56:55', 0, NULL, 1),
(8152, 'Suvatha Sekar', '4', '9715636801', '8870367691', 'suvethasks90@gmail.com', '2001-06-17', 20, '2', '2', 'Sekar k', 'Driver', 10000.00, 1, 14000.00, 18000.00, 'Karaikal', 'Saidapet', '2203170003', '1', '2', 'upload_files/candidate_tracker/97692775346_RESUME (Suvetha)-converted.pdf', NULL, '1', '2022-03-17', 15, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 7m exp in calling but now looking for non voice, due to pressure she relived so will not sustain here. expt 14-15k.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-17 10:31:32', 85, '2022-03-17 10:55:36', 0, NULL, 1),
(8153, '', '0', '7373548451', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 10:32:21', 0, NULL, 0, NULL, 1),
(8154, '', '0', '7448735798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 10:35:42', 0, NULL, 0, NULL, 1),
(8155, 'Navamani', '25', '9176991958', '9551118566', 'nnavamanii1998@gmail.com', '1998-10-25', 23, '2', '2', 'Neelaram', 'Electrician', 20000.00, 1, 11000.00, 17000.00, 'Villivakkam', 'Villivakkam', '2203170006', '1', '2', 'upload_files/candidate_tracker/43321276281_Navamani Resume.pdf', NULL, '1', '2022-03-17', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2yrs exp in data analyst but she was doing data entry there. no knowledge in basic excel. not interested in calling.', '8', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-17 10:40:56', 85, '2022-03-17 12:09:46', 0, NULL, 1),
(8156, 'G. Evanglin', '4', '9344043791', '9551291668', 'gevanglin@gmail.Com', '2001-02-23', 21, '2', '2', 'Gnanam', 'Bank', 10000.00, 4, 0.00, 10000.00, 'Royapuram', 'Royapuram', '2203170007', '1', '1', 'upload_files/candidate_tracker/73488724693_resume G. Evanglin.docx', NULL, '1', '2022-03-17', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'she has stammering issues, not interested in calling as well. will not for any process.', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-17 12:31:54', 1, '2022-03-17 12:55:21', 0, NULL, 1),
(8157, '', '0', '9384616288', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 03:09:33', 0, NULL, 0, NULL, 1),
(8158, '', '0', '9791157528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 03:47:04', 0, NULL, 0, NULL, 1),
(8159, '', '0', '7010104371', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 05:54:50', 0, NULL, 0, NULL, 1),
(8160, '', '0', '8096328175', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203170011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-17 08:19:15', 0, NULL, 0, NULL, 1),
(8161, 'Ranjith vijayan', '21', '7395982712', '', 'ranjithabi0777@gmail.com', '2001-06-30', 20, '2', '2', 'Sumathi vijayan', 'Tailor', 150000.00, 1, 13000.00, 16000.00, 'Sriperumbudhur', 'Aminjikarai', '2203170012', '1', '2', 'upload_files/candidate_tracker/67973272516_RANJITH VIJAYAN CURRICULUM VITAE.pdf', NULL, '1', '2022-03-18', 0, '', '4', '72', NULL, 0.00, '', '0', NULL, '1', 'has 1yr exp in new india gi with 13k, high job need and expt 16k. looking for job change for sal. below avg comm. okay with 1yr terms for renewal.', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-17 09:40:34', 1, '2022-03-18 12:17:44', 0, NULL, 1),
(8162, 'Hariharan R', '13', '9566889014', '', 'ravichandranhari98@gmail.com', '1998-05-16', 23, '2', '2', 'Ravichandran', 'Farmar', 10000.00, 1, 12000.00, 22000.00, 'Attur', 'Salem District', '2203170013', '1', '2', 'upload_files/candidate_tracker/4050806075_Hariharan Ravichandran-1.docx', NULL, '2', '2022-03-18', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-17 10:40:37', 84, '2022-03-18 10:01:09', 0, NULL, 1),
(8163, 'Punitha', '4', '8056624356', '', 'Punithasanmugam@gmail.com', '1999-08-15', 22, '2', '2', 'Sanmugam', 'carpenter', 20000.00, 1, 0.00, 15000.00, '34 maruthupadiyan Nagar', '34 maruthupadiyan Nagar', '2203180001', '1', '1', 'upload_files/candidate_tracker/12007460348_PUNITHA RESUME.docx', NULL, '3', '2022-03-18', 0, '', '3', '59', '2022-03-23', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur Location in Consultant Role', '1', '1', '', '4', '5', '', '2', '2022-03-22', '1', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 09:54:35', 60, '2022-03-21 06:35:25', 0, NULL, 1),
(8164, 'c.tamilarasan', '4', '8056883473', '', 'antonytamil00@gmail.com', '2000-05-06', 21, '2', '2', 'c.marry', 'house wife', 12000.00, 3, 0.00, 15000.00, 'thoothukudi', 'thoothukudi', '2203180002', '1', '1', 'upload_files/candidate_tracker/83719992687_Tamilarasan CV-converted (1).pdf', NULL, '3', '2022-03-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 10:19:16', 85, '2022-03-18 10:42:45', 0, NULL, 1),
(8165, 'Narendhar', '16', '7397353096', '', 'narenkarthi54@gmail.com', '1997-11-02', 24, '2', '2', 'Karthick', 'Carpenter', 20000.00, 1, 13000.00, 17000.00, 'ICF, Anna nager, Chennai-38', 'ICF, Anna nager, Chennai-38', '2203180003', '1', '2', 'upload_files/candidate_tracker/29675445575_Narendhar Resume.pdf', NULL, '1', '2022-03-21', 0, '', '2', '8', NULL, 0.00, '', '0', NULL, '1', 'need to check with gokul. no eng comm. he is okay wit all terms.', '3', '1', '0', '1', '1', '0', '2', '2022-03-22', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-18 10:20:38', 1, '2022-03-21 03:28:35', 0, NULL, 1),
(8166, '', '0', '9884040063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-18 10:30:59', 0, NULL, 0, NULL, 1),
(8167, '', '0', '9345572889', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203180005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-18 10:41:37', 0, NULL, 0, NULL, 1),
(8168, 'Vanitha s', '4', '9360611675', '9629183219', 'Vanivani1078@gmail.com', '2001-07-10', 20, '2', '2', 'Father name: s.sekar', 'farmer', 30000.00, 2, 0.00, 15000.00, 'Ariyalur', 'T.nagar', '2203180006', '1', '1', 'upload_files/candidate_tracker/55314084405_9962303801 quotation.docx', NULL, '1', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, will not suite for calling and sales, not speaking at all, will not sustain too. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 11:17:58', 85, '2022-03-18 12:05:10', 0, NULL, 1),
(8169, 'Lekha Lavanya', '11', '9940560670', '9600078881', 'Lekha_lavanya@yahoo.in', '1992-09-17', 29, '2', '2', 'Kumar. Y', 'Sub inspector of police', 148000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2203180007', '1', '1', 'upload_files/candidate_tracker/1502683487_122022.pdf', NULL, '1', '2022-03-18', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', '2016 batch, worked 4m in operations in dm company in b/w aug 21 to nov 21. no basci knowledge in recruitment. will not suite for our process no job need.', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-18 11:41:30', 1, '2022-03-18 11:57:36', 0, NULL, 1),
(8170, 'kaviarasan', '5', '9677411515', '', 'kaviarasan11@gmail.com', '1998-01-01', 24, '2', '2', 'r', 'officer', 100000.00, 0, 18000.00, 18000.00, 'chennai', 'chennai', '2203180008', '1', '2', 'upload_files/candidate_tracker/92970853945_DocumentfromGauthamRavichandran1.docx', NULL, '1', '2022-03-14', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has exp in hdfc loan with 14k, expt 18-20k. due to pressure he relived and not comfortable with calling.', '5', '2', '', '', '', '', '2', '1970-01-01', '2', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-18 11:59:07', 87, '2022-03-22 04:59:26', 0, NULL, 1),
(8171, 'KB.SHRIGANESHBHARATHI', '4', '9840691845', '', 'ganeshbharathi.k@gmail.com', '2000-01-01', 22, '2', '2', 'G.Subbulkshmi', 'Nurse', 250000.00, 1, 0.00, 15000.00, 'No:1/17,Dharmarajapuram,Manapakkam,Chennai-600125', 'No:1/17,Dharmarajapuram,Manapakkam,Chennai-600125', '2203180009', '1', '1', 'upload_files/candidate_tracker/25036521570_Ganesh resume.docx', NULL, '1', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, will not suite for our process and sales.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 12:24:12', 85, '2022-03-18 01:28:47', 0, NULL, 1),
(8172, 'E.BALAJI', '4', '7395871598', '', 'balaji02011999@mail.com', '1999-01-02', 23, '2', '2', 'K.ELUMALAI', 'Farmer', 100000.00, 1, 0.00, 15000.00, '171,kalathumettu Street, Arani', 'Mint Street, Central', '2203180010', '1', '1', 'upload_files/candidate_tracker/28417310107_1644855211510_1644839548649_balaji balaji .com.docx', NULL, '1', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher, not speaking up and no convincing. will not suite for our process and sales.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-18 12:25:45', 85, '2022-03-18 01:29:25', 0, NULL, 1),
(8173, 'Muthukrishnan', '11', '9092135758', '9487717136', 'krishsingle10@gmail.com', '1992-11-10', 29, '2', '2', 'Muthuraman', 'Retired', 20000.00, 1, 0.00, 13000.00, 'Trichy', 'Trichy', '2203180011', '1', '1', 'upload_files/candidate_tracker/20041345922_MUTHU KRISHNAN-2.pdf', NULL, '2', '2022-03-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-18 12:39:29', 1, '2022-03-18 12:44:55', 0, NULL, 1),
(8174, 'ranjith', '4', '8189919698', '', 'ranjithkumar.govin@gmail.com', '1992-12-22', 29, '2', '2', 'Govindharaj C', 'Self Employed', 40000.00, 0, 0.00, 12000.00, 'Villupuram', 'chennai', '2203180012', '1', '1', 'upload_files/candidate_tracker/78337628201_HariharanRavichandran1.docx', NULL, '1', '2022-03-18', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'was working in merto ticket counter for past 1yr and not interested in sales and calling. not speaking up will not suite for our process.', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-18 01:32:17', 7, '2022-03-19 09:47:42', 0, NULL, 1),
(8175, 'Vinu R', '13', '8270525325', '9994391813', 'vinurj98@gmail.com', '1998-12-20', 23, '2', '2', 'Ravi', 'Mason', 10000.00, 2, 0.00, 15000.00, 'Marthandam, Tamilnadu.', 'Marthandam,Tamilnadu', '2203180013', '1', '1', 'upload_files/candidate_tracker/44236088962_CV_2022020412215138-1.pdf', NULL, '2', '2022-03-19', 0, '', '2', '8', NULL, 0.00, '', '0', NULL, '1', 'fresher, completed 6m course in php, didnt answered any basic ques, said he can do the task. i told him to call back after learning. if he calls check with tech team., ', '2', '2', '0', '1', '1', '0', '2', '2022-03-28', '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-18 05:30:10', 1, '2022-03-18 05:35:28', 0, NULL, 1),
(8176, 'Nelfred Peter Kingsly', '11', '7358300901', '', 'itsmecode761@gmail.com', '1997-05-22', 24, '2', '2', 'Benedict', 'Worker', 200000.00, 1, 0.00, 20000.00, 'Marai malai nagar', 'Marai malai nagar', '2203190001', '1', '1', 'upload_files/candidate_tracker/42048263018_NPK rec_nelfred peter kingsly.pdf', NULL, '1', '2022-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, not convinced with his profile and his pitch. expt 15k. has 1yr exp in diploma technical ppl.', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-19 09:55:42', 1, '2022-03-19 10:18:27', 0, NULL, 1),
(8177, 'Sabareesan', '4', '7708878012', '7092712140', 'Sabaredevan@gmail', '1988-12-16', 33, '2', '1', 'Naveena', 'Software services engineer', 12.00, 3, 15000.00, 14000.00, '60,gandhipuram mill Street, erode', 'Erode', '2203190002', '1', '2', 'upload_files/candidate_tracker/58592418295_Resume sabari.docx', NULL, '2', '2022-03-19', 1, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling and our process. as per his profile he is 33 and he said 43 during interview. has exp as service engg. expt 13-14k. no convincing.', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-19 10:02:18', 85, '2022-03-19 10:28:17', 0, NULL, 1),
(8178, 'Farzik ahamed', '22', '7358737597', '', 'Farzikahamed@gmail.com', '1995-07-18', 26, '2', '2', 'Mohamed hanifa', 'Security guard', 7000.00, 1, 0.00, 20000.00, 'KUMBAKONAM', 'Royapettah', '2203190003', '1', '1', 'upload_files/candidate_tracker/30478909121_ahamed resume.docx', NULL, '1', '2022-03-19', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'completed online dm course. comm. is below avg and knows only basics in dm. will not suite for us.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-19 10:06:04', 1, '2022-03-19 10:14:37', 0, NULL, 1),
(8179, '', '0', '7359737597', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-19 10:17:15', 0, NULL, 0, NULL, 1),
(8180, 'Mohamed Riyaz Khan', '11', '8754702767', '9361935278', 'Mdriyazkhan0318@gmail.com', '2000-01-03', 22, '2', '2', 'Mahaboob khan', 'hR', 30000.00, 2, 16200.00, 21000.00, 'Chennai', 'Chennai', '2203190005', '1', '2', 'upload_files/candidate_tracker/73149826714_RIYAZ HR RESUME.pdf', NULL, '1', '2022-03-19', 2, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 1yr exp in hr admin. 15k expt 30%. has basic idea about sourcing. he is not okay to work with ijobs consultancy. he is not okay with service agmt.', '6', '1', '', '4', '6', '', '2', '1970-01-01', '1', '8', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-19 11:21:06', 7, '2022-03-19 11:43:20', 0, NULL, 1),
(8181, '', '0', '9774320243', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-19 12:39:28', 0, NULL, 0, NULL, 1),
(8182, 'baskaran p', '5', '9952258282', '', 'baskar05.pb@gmail.com', '1997-05-12', 24, '2', '2', 'na', 'na', 50000.00, 1, 18000.00, 25000.00, 'kallakurichi', 'kallakurichi', '2203190007', '1', '2', 'upload_files/candidate_tracker/43812394416_baskar Resume2 (1).pdf', NULL, '2', '2022-03-21', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for rm profile. 8m in manapuram with 2.4l and expt 3.5l', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-19 01:03:37', 1, '2022-03-21 08:15:16', 0, NULL, 1),
(8183, '', '0', '8148821927', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203190008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-19 01:54:36', 0, NULL, 0, NULL, 1),
(8184, 'Subhash chandru', '22', '6382551203', '9894594131', 'subhashchandru@outlook.com', '1999-02-21', 23, '2', '2', 'Muthukumari', 'Teacher', 100000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2203190009', '1', '1', 'upload_files/candidate_tracker/68669430281_SubhashChandru_InternshalaResume.pdf', NULL, '1', '2022-03-19', 0, '', '4', '69', '1970-01-01', 0.00, '', '4', '2022-07-01', '1', 'good in oral check with his content. was working in a company for 20days. he terminated his contact and chedk with this once. has basic idea about DM. willing to learn and expt 10k', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-19 05:27:58', 60, '2022-03-19 07:04:03', 69, '2022-08-30 05:51:35', 0),
(8185, 'Dinesh kumar', '4', '8610761229', '9688918073', 'dineshkumarnataraj7498@gmail.com', '1998-04-07', 23, '2', '2', 'Jayamani A', 'Chick form', 8000.00, 0, 1.56, 20000.00, 'Udumalai', 'Udumalai', '2203190010', '1', '2', 'upload_files/candidate_tracker/22983069402_Dineshkumar-converted.pdf', NULL, '3', '2022-03-21', 40, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is working in Accenture with 11.5k and expt 18k. salary is his only concern he okay with any profile. ', '1', '1', '', '1', '3', '', '1', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-19 06:26:07', 85, '2022-03-21 03:20:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8186, 'Sathish S', '16', '8939460509', '9841528014', 'sizekutty121294@gmail.com', '1994-12-12', 27, '2', '2', 'S.Amudha', 'Housing keeping', 25000.00, 2, 18000.00, 21000.00, 'Chennai,Thoraipakkam', 'Chennai,Thoraipakkam', '2203190011', '1', '2', 'upload_files/candidate_tracker/40531430447_Sathish Resume new.pdf', NULL, '1', '2022-03-22', 15, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'poor comm. will not suite for this profile. expt 20-22k with esi and pf. ', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-19 08:25:22', 1, '2022-03-19 09:14:34', 0, NULL, 1),
(8187, 'K Anitha', '28', '7806925604', '7448499033', 'anithakamaraj247@gmail.com', '1999-05-09', 22, '2', '2', 'K Dhanalakshmi', 'House wife', 20000.00, 1, 14000.00, 16000.00, 'Redhills', 'Redhills', '2203190012', '1', '2', 'upload_files/candidate_tracker/23522913710_Anitha_Resume.pdf', NULL, '1', '2022-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2.5yrs in teleperfomance kyc. 3min yes bank due to over pressure looking for job change. she is not okay with calling and renewal. will not suite for mis. will not handle pressure.', '3', '1', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-19 08:50:10', 7, '2022-03-22 11:39:50', 0, NULL, 1),
(8188, '', '0', '7358473613', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-20 05:00:55', 0, NULL, 0, NULL, 1),
(8189, 'C. BRANAND SURYA', '6', '8248021982', '7299790996', 'branadsurya48@gmail.com', '1998-07-22', 23, '1', '2', 'D. Chinnappan', 'Business', 15000.00, 2, 0.00, 18000.00, 'Ullagaram, Chennai', 'Ullagaram, Chennai', '2203210001', '', '1', 'upload_files/candidate_tracker/43557398403_C.BRANAND SURYA mail-converted-1.pdf', NULL, '1', '2022-03-21', 0, '', '4', '89', NULL, 0.00, '', '0', NULL, '1', 'fresher for us but has sales exp. due to low sal looking for change. expt 17-18k check with the sustainability once. job need.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-21 10:58:35', 1, '2022-03-21 11:11:08', 0, NULL, 1),
(8190, 'jaisurya', '6', '9884856467', '8248021982', 'charanjai10@gmail.com', '1997-10-10', 24, '3', '2', 'Alli H', 'House wife', 10000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2203210002', '', '1', 'upload_files/candidate_tracker/22361653176_1647841509423_1647841507616_jaisuriyaRESUME0999.pdf', NULL, '1', '2022-03-21', 0, '', '4', '89', NULL, 0.00, '', '0', NULL, '1', '5050 for me. fresher for us, has 2yrs site exp in b/w was taking care of his fathers biz, sustainability and pressure handling doubt. expt 18k. little bit slow too.', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-21 10:59:21', 1, '2022-03-21 11:15:56', 0, NULL, 1),
(8191, '', '0', '6380645053', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203210003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-21 11:51:12', 0, NULL, 0, NULL, 1),
(8192, 'Sheela', '4', '8870884923', '', 'diasheea1@gmail.com', '2000-04-02', 21, '2', '2', 'murugamal', 'nurse', 9000.00, 1, 0.00, 15000.00, 'thirupattur', 'Thirupattur', '2203210004', '1', '1', 'upload_files/candidate_tracker/2217060396_Resume20.pdf', NULL, '3', '2022-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'pursuing her mca. okay with any job but in bangalore. expt 15k, poor communication and convincing too. referred by her friend pavithra.', '1', '1', '', '', '', '', '1', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-21 12:03:26', 85, '2022-03-22 10:58:32', 0, NULL, 1),
(8193, 'laxmi priya', '13', '9790218732', '', 'laxmiraj0496@gmail.com', '1995-07-19', 26, '2', '2', 'kaamaraj', 'cloths business', 15000.00, 0, 204000.00, 400000.00, 'aruppukottai', 'chennai', '2203210005', '1', '2', 'upload_files/candidate_tracker/4928522930_Laxmipriya (1).docx', NULL, '3', '2022-03-22', 20, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'check for tech. 3yrs in same company and has 1.5yrs gap in between. looking for better offer. ctc 2.4l and expt 4L. only daughter and right now in wfh.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-21 12:03:33', 1, '2022-03-21 12:15:05', 0, NULL, 1),
(8194, 'Pavithra', '4', '6380465053', '', 'Pavithrakutty1210@gmail.com', '2000-07-16', 21, '2', '2', 'raghupathi', 'milk sale', 6000.00, 1, 0.00, 15000.00, 'vellore', 'vellore', '2203210006', '1', '1', 'upload_files/candidate_tracker/92145870815_pavi2.pdf', NULL, '3', '2022-03-22', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no response from her', '1', '1', '', '', '', '', '1', '2022-03-23', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-21 12:27:25', 8, '2022-03-22 06:40:20', 0, NULL, 1),
(8195, 'Ilayarasan', '4', '6381084757', '', 'ilaysharp12@gmail.com', '2000-04-12', 21, '2', '2', 'Kavitha', 'Former', 5000.00, 1, 0.00, 15000.00, 'Tirupature', 'Tirupature', '2203210007', '1', '1', 'upload_files/candidate_tracker/17609170051_ILAYARASAN RESUME.pdf', NULL, '3', '2022-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-03-21 12:35:09', 1, '2022-03-21 12:40:07', 0, NULL, 1),
(8196, '', '0', '8925489027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203210008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-21 01:02:17', 0, NULL, 0, NULL, 1),
(8197, 'Anusha', '4', '9003671417', '', 'anushaelumalai1994@gmail.com', '1994-09-19', 27, '2', '1', 'Vasantha', 'Cook', 150000.00, 1, 0.00, 17000.00, 'No.10 ,thendral nagar ,thirumullaivayol,ch 62', 'No 10,thendral nagar ,thirumullaivayol,ch 62', '2203210009', '1', '1', 'upload_files/candidate_tracker/55496612290_Anusha Resume.docx', NULL, '1', '2022-03-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-21 01:24:38', 1, '2022-03-22 04:58:07', 0, NULL, 1),
(8198, 'Maheswari', '17', '9750964289', '8489568067', 'Mahasiva8617019@gmail.com', '1998-12-23', 23, '1', '2', 'Sivakumar', 'Farmer', 300000.00, 0, 16000.00, 20000.00, 'Pandanallur', 'Chennai', '2203210010', '', '2', 'upload_files/candidate_tracker/7033516738_7129589721E768F4262E9A671B0DE712958972140322124849251_.pdf', NULL, '1', '2022-03-21', 0, 'Karthik', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'has 1.5yr exp in hdb fin as caller with 9k, 7n in indus bank 16k. looking for team lead but no relevant exp. in insurance. will not suite for tl and sal expt is 20k. ', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-21 03:17:56', 1, '2022-03-21 03:42:08', 0, NULL, 1),
(8199, 'Karthick raja', '13', '9965231276', '8015114445', 'karthickraja3996@gmail.com', '1996-09-03', 25, '2', '2', 'Suyamprakasam', 'Farmer', 10000.00, 1, 0.00, 5000.00, 'thanjavur', 'Mogappair, Chennai', '2203210011', '1', '1', 'upload_files/candidate_tracker/90954305986_karthi resume.pdf', NULL, '1', '2022-03-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no basic knowledge in php, was doing xml epub in freelancing 10k, okay with training and placement but no basic idea.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-21 04:53:28', 1, '2022-03-21 04:59:29', 0, NULL, 1),
(8200, 'ARUNKUMAR THANGAVEL', '4', '7639663074', '', 'arunsiva44444@gmail.com', '1998-01-18', 24, '2', '2', 'THANGAVEL', 'Farmer', 70000.00, 0, 0.00, 13000.00, 'Kallakurichi', 'Kallakurichi', '2203210012', '1', '1', 'upload_files/candidate_tracker/10588221094_updated Resume new.PDF', NULL, '3', '2022-03-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-21 05:56:22', 1, '2022-03-21 06:07:08', 0, NULL, 1),
(8201, 'safeeq ahamed', '13', '9597466740', '9629000039', 'safeeqkasim@gmail.com', '1997-02-21', 25, '2', '2', 'mohamed kasim', 'nill', 20000.00, 2, 20000.00, 35000.00, 'thanjavur', 'thanjavur', '2203210013', '1', '2', 'upload_files/candidate_tracker/34222302196_Safeeq_Resume-2202-1.pdf', NULL, '3', '2022-03-22', 10, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'has 3yrs exp in same company and complete 1yr in core php. ctc 20k and expt 35k. current company is ready to offer 25k but he is looking for better offer. ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-21 06:11:58', 1, '2022-03-21 06:17:56', 0, NULL, 1),
(8202, 'iswarya k', '4', '9514461804', '', 'Kiswarya73@gmail.com', '1996-06-05', 25, '2', '1', 'karuppaiah', 'meson', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2203220001', '2', '1', 'upload_files/candidate_tracker/94352854417_ishu resume 2021.docx', NULL, '1', '2022-03-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'everything is okay but long distance. she is from paalavakkam too long more than 1.30 hrs travel. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 09:49:15', 1, '2022-03-22 09:51:26', 0, NULL, 1),
(8203, 'Satheeshkumar M', '5', '8428932765', '', 'satheeshalan3@gmail.com', '2000-07-07', 21, '2', '2', 'D Marisamy', 'Former', 20000.00, 1, 0.00, 13000.00, 'Madurai', 'Tambaram', '2203220002', '1', '1', 'upload_files/candidate_tracker/32578988736_Satheeshkumar CV.pdf', NULL, '1', '2022-03-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not suite for calling, no sustainability. has complete core exp but 2m ,1m,6m and 3m. ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-22 10:12:42', 1, '2022-03-22 10:16:06', 0, NULL, 1),
(8204, 'Mohamed Thanjeem', '4', '9487737435', '', 'thanjeemm@gmail.com', '1999-01-01', 23, '2', '2', 'Mohamed saleem', 'Unemployed', 1.20, 2, 0.00, 16000.00, 'Adambakkam', 'Adambakkam', '2203220003', '1', '1', 'upload_files/candidate_tracker/87930374254_THANJEEMEX.pdf', NULL, '1', '2022-03-22', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, not active and he is not okay with sales profile. need time to think about it. comm is okay. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-22 10:35:38', 1, '2022-03-22 10:40:15', 0, NULL, 1),
(8205, 'Jayakumari V', '16', '9789026615', '', 'jayakumarivelu1610@gmail.com', '1995-04-14', 26, '2', '2', 'Velu', 'None', 18000.00, 1, 10000.00, 15000.00, 'Chennai', 'Chennai', '2203220004', '1', '2', 'upload_files/candidate_tracker/21477494103_Jayakumariresume2021.pdf', NULL, '1', '2022-03-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-03-22 11:00:05', 1, '2022-03-22 11:17:06', 0, NULL, 1),
(8206, 'Lavanya', '4', '9790818119', '', 'lavanyaragu24@gmail.com', '1996-02-24', 26, '2', '1', 'Parthasarathi', 'Auto Driver', 15000.00, 0, 13500.00, 14500.00, 'Chennai', 'Triplicane', '2203220005', '1', '2', 'upload_files/candidate_tracker/28921348563_9962303801 quotation.docx', NULL, '1', '2022-03-22', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 1yr exp in calling and 1yr in admin. expt is 14k. in need of job but check with her attitude as we discussed. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-22 11:53:58', 85, '2022-03-22 12:55:00', 0, NULL, 1),
(8207, 'Arunkumar ND', '4', '6380809640', '9578705899', 'Ndarun3097@gmail.com', '1997-08-30', 24, '2', '2', 'Hari prasath D', 'Cheque collection offiver', 15000.00, 1, 10000.00, 17000.00, 'Kolathur, chennai', 'Kolathur, chennai', '2203220006', '1', '2', 'upload_files/candidate_tracker/72886913097_Arunkumar N D New Resume.docx', NULL, '1', '2022-03-23', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-22 12:30:48', 1, '2022-03-22 12:40:53', 0, NULL, 1),
(8208, 'Jasmine M', '4', '7397049879', '', 'jasminem7833@gmail.com', '1999-04-12', 22, '3', '2', 'Batchammal', 'House wife', 5000.00, 0, 0.00, 10000.00, 'VLoothoor', 'Valoothoor', '2203220007', '', '1', 'upload_files/candidate_tracker/95291178777_Share .docx', NULL, '1', '2022-03-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 12:55:54', 1, '2022-03-22 01:03:41', 0, NULL, 1),
(8209, 'Giriraja.M', '5', '8015118465', '9677928372', 'mgrgiri415@gmail.com', '2001-03-31', 20, '2', '2', 'Manivannan', 'Saree business', 20000.00, 1, 15000.00, 18000.00, 'Dindigul', 'Chennai', '2203220008', '1', '1', 'upload_files/candidate_tracker/39801174875_Giriraja resume.docx', NULL, '1', '2022-03-23', 0, '', '3', '59', '2022-03-26', 194496.00, '', NULL, '2024-09-25', '1', 'Selected for Babu Team in PT only', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1009', '', '', '', '1970-01-01', 1, '2022-03-22 04:03:58', 154, '2025-04-12 03:57:25', 0, NULL, 1),
(8210, 'Prabakaran', '4', '7871661014', '', 'antopraba1014@gmail.com', '1994-01-15', 28, '2', '2', 'raghu', 'steel work', 20000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2203220009', '2', '2', 'upload_files/candidate_tracker/19939384956_PRABA (RESUME)5.docx', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 04:44:17', 1, '2022-03-22 04:46:38', 0, NULL, 1),
(8211, 'naveen n', '5', '6382040698', '', 'naveennagaraj98@gmail.com', '1998-11-10', 23, '2', '2', 'nagaraj', 'security', 10000.00, 1, 0.00, 14000.00, 'chennai', 'vadapalni', '2203220010', '2', '1', 'upload_files/candidate_tracker/14971850205_Naveennagaraj.pdf', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 04:50:45', 1, '2022-03-22 04:53:34', 0, NULL, 1),
(8212, 'sam christopher', '4', '6379915612', '', 'davidpowerchris@gmail.com', '1995-11-29', 26, '2', '2', 'selvaraj', 'business painter', 10000.00, 1, 0.00, 10000.00, 'chennai', 'pallavaram', '2203220011', '2', '1', 'upload_files/candidate_tracker/72254185920_samchristoper.docx', NULL, '1', '2022-03-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 04:57:21', 1, '2022-03-22 05:03:51', 0, NULL, 1),
(8213, 'gayathri r', '4', '9842516520', '', 'gayukarthi2502@gmail.com', '2002-10-25', 19, '2', '2', 'ramasamy', 'driver', 10000.00, 1, 0.00, 10000.00, 'namakal', 'ekkatuthangal', '2203220012', '2', '1', 'upload_files/candidate_tracker/72421735611_GAYATHIRI.Resume-1.docx', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 05:25:57', 1, '2022-03-22 05:27:29', 0, NULL, 1),
(8214, 'Dayana', '30', '8637682416', '', 'dayanarathinavel@gmail.com', '1997-07-12', 24, '2', '2', 'Rethinavel', 'Chennai', 14000.00, 1, 11000.00, 15000.00, 'Mannargudi', 'Chennai', '2203220013', '1', '1', 'upload_files/candidate_tracker/85451097570_RESUME- Dayana R.pdf', NULL, '1', '2022-03-26', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '9', '1', '', '1', '3', '', '1', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-22 05:47:50', 87, '2022-03-30 01:11:21', 0, NULL, 1),
(8215, 'Ramya P', '4', '7826033049', '', 'ramyasaran64866@gmail.com', '2000-04-18', 21, '2', '2', 'Perumal', 'Self', 8000.00, 2, 0.00, 17000.00, 'chennai', 'chennai', '2203220014', '1', '2', 'upload_files/candidate_tracker/4918432408_RESUME RAMYA(1).pdf', NULL, '2', '2022-03-23', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher form theni will relocate to chennai. expt 10-12k. was selected in sriram but not joined. check with her sustainability once.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-22 06:46:02', 87, '2022-03-22 07:48:25', 0, NULL, 1),
(8216, 'abhinav', '6', '7358565397', '', 'abhinavnarasimhan64@gmail.com', '1990-09-05', 31, '2', '2', 'narasiman', 'engineer', 10000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2203220015', '2', '2', 'upload_files/candidate_tracker/34971768880_NEW RESUM ABHI-1.pdf', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 08:01:54', 1, '2022-03-22 08:04:40', 0, NULL, 1),
(8217, 'manikandan', '4', '8949373903', '', 'manikandan90j@gmail.com', '1990-04-13', 31, '2', '2', 'jayaraman', 'retired', 15000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2203220016', '2', '1', 'upload_files/candidate_tracker/44648914991_WhatsApp Image 2022-03-21 at 6.27.53 PM (1).pdf', NULL, '1', '2022-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-22 08:16:01', 1, '2022-03-22 08:19:40', 0, NULL, 1),
(8218, 'Rakshika Santhoshi GV', '6', '8668081824', '', 'Rakshu3197.manju@gmail.com', '1997-01-31', 25, '3', '2', 'D v Manjula', 'Singer', 70000.00, 1, 20000.00, 25000.00, 'Vellore', 'Chennai', '2203230001', '', '2', 'upload_files/candidate_tracker/44325064350_provisional certificate BBA &Mba_1.pdf', NULL, '1', '2022-03-23', 0, '', '3', '59', '2022-03-24', 176844.00, '', '3', '2022-05-05', '2', 'Selected for RE Babu Team in Consultant 5 %', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-03-23 10:12:24', 60, '2022-03-24 12:03:16', 0, NULL, 1),
(8219, 'Padmapriya', '4', '9790091102', '', 'padthuma1619@gmail.com', '1997-04-19', 24, '2', '2', 'Venkateshwaran', 'working', 6000.00, 3, 8000.00, 12000.00, 'erode', 'Erode', '2203230002', '1', '2', 'upload_files/candidate_tracker/92471968328_Share Resume latest.docx', NULL, '2', '2022-03-23', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-23 10:16:21', 1, '2022-03-23 10:19:07', 0, NULL, 1),
(8220, 'Sriram', '2', '9095752752', '', 'srirammani14@gmail.com', '2000-03-14', 22, '2', '2', 'Manikandan', 'Business', 30000.00, 1, 300000.00, 450000.00, 'Aranthangi', 'Chennai', '2203230003', '1', '2', 'upload_files/candidate_tracker/84876327407_SRIRAM M Resume.pdf', NULL, '2', '2022-03-24', 10, '', '2', '8', NULL, 0.00, '', '0', NULL, '2', 'has to check with his payslip. 10m exp in react and expt 4L. looking job in mern.', '2', '2', '0', '1', '1', '0', '2', '2022-03-25', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-23 10:52:31', 1, '2022-03-23 11:05:22', 0, NULL, 1),
(8221, 'J Rajaram', '4', '8973326329', '8754681936', 'Rajaram9750@gmail.com', '1994-09-17', 27, '2', '2', 'N Jayakumar', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'udaiyar street,melathukurichi,thanjavur. 612501', 'Udaiyar Street,Melathukurichi,Thanjavur. 612501', '2203230004', '1', '1', 'upload_files/candidate_tracker/65456267950_imgtopdf_2303221104037.pdf', NULL, '1', '2022-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropeed.Received a call on Sunday(28-Mar) candidate informed that he is not going to join due to the location constraint and not much comfort with target based work', '1', '1', '0', '4', '5', '0', '2', '2022-03-28', '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-23 12:47:47', 1, '2022-03-23 12:57:51', 0, NULL, 1),
(8222, 'Abdul Razak A', '5', '6383428284', '7358680374', 'abdulrazakdjamk20@gmail.com', '2000-02-12', 22, '2', '1', 'Anwar khan M', 'Tailor', 22000.00, 1, 21100.00, 27000.00, 'Chennai Mr nagar', 'Chennai MR nagar', '2203230005', '1', '2', 'upload_files/candidate_tracker/63056189450_Abdul%20razak%20resume%20new_Abdul%20Razak.%20A%20new2.docx', NULL, '1', '2022-03-23', 0, '', '3', '59', '2022-03-29', 278500.00, '', '4', '2022-04-27', '1', 'Selected for Pandian Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-23 01:45:23', 60, '2022-03-25 03:45:08', 0, NULL, 1),
(8223, 'Sreenuvaasan s', '16', '9962752952', '9445242651', 'svaasan131@gmail.com', '1999-10-05', 22, '2', '2', 'Saridha', 'Home maker', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2203230006', '1', '1', 'upload_files/candidate_tracker/9962049256_Sreenuvasan_Resume 17.pdf.pdf', NULL, '1', '2022-03-23', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'not speaking up, will not suite for calling and backend too. was a promoter in avt part time.', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-23 01:46:48', 1, '2022-03-23 01:58:57', 0, NULL, 1),
(8224, 'N T Srivathsan', '4', '9342310061', '8825648573', 'srivathsan29oct@gmail.com', '1997-10-29', 24, '2', '2', 'N Thiruvenkatachari', 'Senior Executive', 35000.00, 0, 0.00, 13000.00, 'Ambttur', 'Ambattur', '2203230007', '1', '1', 'upload_files/candidate_tracker/86323231862_S_Resume.docx (1).pdf', NULL, '1', '2022-03-24', 0, '', '1', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-23 02:28:18', 85, '2022-03-25 10:31:21', 0, NULL, 1),
(8225, 'Kavin Raj', '4', '8778283411', '', 'Kavinraj2739@email.com', '2001-03-31', 20, '2', '2', 'Bangajam', 'Agriculture', 10000.00, 0, 0.00, 10000.00, 'erode', 'erode', '2203230008', '1', '1', 'upload_files/candidate_tracker/53827281789_Kavinraj cv.pdf', NULL, '3', '2022-03-24', 0, '', '3', '59', '2022-04-06', 126312.00, '', '', '2022-05-06', '1', 'Selected for Erode Location in consultant role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-23 04:21:28', 60, '2022-04-06 05:17:00', 0, NULL, 1),
(8226, '', '0', '8072141191', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-24 10:17:00', 0, NULL, 0, NULL, 1),
(8227, 'elizharasi', '4', '9384481557', '', 'ezhil.rkb@gmail.com', '1997-06-24', 24, '2', '1', 'ravi', 'painter', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2203240002', '2', '1', 'upload_files/candidate_tracker/29957447871_Ezhil Rajiv.docx', NULL, '1', '2022-03-24', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'will not work for long term and long distance too.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-24 10:54:33', 1, '2022-03-24 10:56:14', 0, NULL, 1),
(8228, 'B AJAY AROKKIYARAJ', '4', '9994526776', '', 'ajayarokkiyaraj.96@gmail.com', '1996-06-15', 25, '2', '2', 'R K BABU', 'Salex Executive', 15000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2203240003', '1', '1', 'upload_files/candidate_tracker/77120484904_1606115802890_ajjay resume M.Sc(CS) (1).docx.pdf', NULL, '3', '2022-03-25', 0, '', '3', '59', '2022-04-06', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Erode - Consultant Role', '1', '1', '', '4', '7', '', '2', '2022-03-30', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-24 03:55:40', 60, '2022-04-01 05:28:57', 0, NULL, 1),
(8229, 'Kalaivani.m', '4', '9042999581', '8778702190', 'kalaim2711@gmail.com', '1999-08-16', 22, '2', '1', 'Mohan', 'Bank employe', 15000.00, 2, 0.00, 15000.00, 'Erode', 'Erode', '2203240004', '1', '1', 'upload_files/candidate_tracker/33529516002_resume_kalaivani 27.docx', NULL, '3', '2022-03-25', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-24 04:00:30', 85, '2022-03-26 10:57:52', 0, NULL, 1),
(8230, 'Nikhilesh G N', '5', '9789752420', '', 'niki09.Nn@gmail.com', '1992-08-29', 29, '2', '1', 'Vanitha', 'Analyst', 60000.00, 2, 450000.00, 720000.00, 'Chennai', 'Chennai', '2203240005', '1', '2', 'upload_files/candidate_tracker/3509836209_Niki_Resume.pdf', NULL, '1', '2022-03-24', 60, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'comm and convincing is fine but no sales exp. 60days notice and getting 40k expt 30%. wife is also working.', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-24 04:29:57', 1, '2022-03-24 04:33:38', 0, NULL, 1),
(8231, 'ranjith kumar', '4', '7358980904', '', 'ranjithkumar97@gmail.com', '1996-04-26', 25, '2', '2', 'selvaraj t', 'officer', 50000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2203240006', '1', '1', 'upload_files/candidate_tracker/92384882326_Resume1.docx', NULL, '2', '2022-04-21', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not active person so not suitable for tele sales', '1', '2', '', '', '', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-24 04:55:00', 60, '2022-04-21 07:18:31', 0, NULL, 1),
(8232, 'Kalaiyarasan Kannaiya', '4', '7708688356', '6382318733', 'sinkalai2501@gmail.com', '2001-05-02', 20, '2', '2', 'Kannaiya', 'Welder', 10000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2203240007', '1', '1', 'upload_files/candidate_tracker/64332166396_kalai resume 1 - Copy.docx', NULL, '3', '2022-03-26', 0, '', '3', '59', '2022-04-06', 126312.00, '', '4', '2022-12-01', '2', 'Selected for Erode - Consultant Role', '1', '2', '', '4', '7', '', '2', '2022-03-30', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-24 05:04:54', 60, '2022-04-01 05:29:47', 0, NULL, 1),
(8233, 'SANGEETHA', '4', '8754760383', '9787001135', 'sangeetha1862001@gmail.com', '2001-06-18', 20, '2', '2', 'RAJENDRAN', 'Daily wages', 100000.00, 3, 0.00, 15000.00, 'Chennai', 'Kundrathur', '2203240008', '1', '1', 'upload_files/candidate_tracker/81665534929_software engineering.pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', ' pursuing degree has exam in june and yet to complete projects. will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-24 07:00:04', 1, '2022-03-24 07:13:45', 0, NULL, 1),
(8234, 'Rajeswari', '13', '9384122595', '', 'rajeswari281199@gmail.com', '1999-11-28', 22, '2', '2', 'Gurunathan', 'Process serveror in court', 27000.00, 2, 0.00, 15000.00, 'TIRUNELVELI', 'TIRUNELVELI', '2203240009', '1', '1', 'upload_files/candidate_tracker/84572765210_Resume.pdf', NULL, '2', '2022-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'couldnt do sys task', '2', '1', '0', '1', '1', '0', '2', '2022-04-04', '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-24 08:03:53', 1, '2022-03-24 08:06:39', 0, NULL, 1),
(8235, 'Kokilavani. N', '4', '9361356386', '9095061046', 'kokilavaninallasamy@gmail.com', '2001-10-10', 20, '2', '1', 'Sudhakar. K', 'Civil Engineering', 14000.00, 1, 0.00, 12000.00, 'Kanjikovil', 'Kanjikovil', '2203240010', '1', '1', 'upload_files/candidate_tracker/36324976876_Kokila resume-1.pdf', NULL, '3', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'fresher, after degree she got married and has 1m baby. will not sustain and asking for wfh.', '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-24 08:15:11', 1, '2022-03-26 08:50:14', 0, NULL, 1),
(8236, 'VEERAPPAN T', '14', '6379773878', '', 'veerappansubash@gmail.com', '2000-05-30', 21, '2', '2', 'B. E', 'Student', 180000.00, 3, 0.00, 10000.00, 'Poonamallee', 'Poonamallee', '2203240011', '1', '1', 'upload_files/candidate_tracker/15032453735_VEERAPPAN T (1).pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', ' pursuing degree has exam in june and yet to complete projects. will not suite for calling.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-24 08:18:26', 1, '2022-03-24 08:22:38', 0, NULL, 1),
(8237, 'JEYARATHNA', '4', '9384573031', '9952583031', 'JEYARATHNAb@Gmail.Com', '2001-05-14', 20, '2', '1', 'Basker', 'Farmer', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Thoothukudi', '2203250001', '1', '1', 'upload_files/candidate_tracker/28035805679_RESUME.pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', ' pursuing degree has exam in june and yet to complete projects. will not suite for calling.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 09:06:06', 1, '2022-03-26 10:24:28', 0, NULL, 1),
(8238, 'Vinoth Kumar', '5', '9952036413', '9789741518', 'Vinothkumarraveen@gmail.com', '1987-07-05', 34, '2', '2', 'Amudhavalli', 'Retired', 25000.00, 0, 12000.00, 17000.00, 'Ramapuram', 'Ramapuram', '2203250002', '1', '2', 'upload_files/candidate_tracker/37856983934_RESUME VINOTH KUMAR.docx', NULL, '1', '2022-03-25', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for MIS and op. no excel knowledge and knows only kyc and data entry will not suite. was getting 12k and expt 17k. reason for reliving is no hike. ', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 09:48:20', 1, '2022-03-25 09:55:18', 0, NULL, 1),
(8239, 'Lakshmipriya', '4', '9952050450', '', 'jagapriya89@gmail.com', '1995-11-26', 26, '2', '1', 'Jagadeesh', 'Self Business', 200000.00, 1, 18000.00, 20000.00, '68/56 anthanar street,vishar village, kanchipuram', 'Thambaram', '2203250003', '1', '2', 'upload_files/candidate_tracker/2997426533_LAKSMIPRIYA RESUME (1).docx', NULL, '1', '2022-03-25', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no response', '1', '2', '0', '1', '1', '0', '2', '2022-03-26', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 10:23:35', 1, '2022-03-25 10:32:17', 0, NULL, 1),
(8240, 'Jagadeesh', '4', '9600616956', '9952704501', 'jagadeesh92jaga@gmail.com', '1992-08-14', 29, '2', '1', 'Arumugam', 'Farmer', 100000.00, 1, 130000.00, 25000.00, 'Kanchipuram', 'Tambaram', '2203250004', '1', '2', 'upload_files/candidate_tracker/85459059862_1648184491920_1648184485223_1648184415670_1648184411762_jagadeesh RESUME.docx', NULL, '1', '2022-03-25', 1, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process. has complete exp as site engg in singapore and planning to settle in canada. came along with his wife for interview. expt 25k. comm is manageable. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 10:23:45', 1, '2022-03-25 10:32:30', 0, NULL, 1),
(8241, '', '0', '9500665452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203250005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-25 10:31:27', 0, NULL, 0, NULL, 1),
(8242, 'Jothika.M', '4', '7558117252', '8675042485', 'jothikakpt@gmail.com', '1998-04-07', 23, '2', '2', 'Murugan.S', 'Agriculture', 20000.00, 1, 15000.00, 15000.00, 'Salem', 'Salem', '2203250006', '1', '2', 'upload_files/candidate_tracker/75415246531_JOTHIKA_RESUME (1)-1_JOTHIKA M.docx', NULL, '2', '2022-03-25', 0, '', '3', '59', '2022-04-06', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Erode - Consultant Role', '1', '1', '', '1', '1', '', '2', '2022-03-31', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 10:35:49', 60, '2022-04-01 05:33:04', 0, NULL, 1),
(8243, 'C anand', '26', '9092646474', '9382992999', 'anandc.eswaran@gmail.com', '1990-03-03', 32, '2', '2', 'S Chandran', 'Business', 20000.00, 0, 18000.00, 25000.00, '35/17 pallappan street triplicane Chennai 5', '35/17 Pallappan Street Triplicane Chennai', '2203250007', '1', '2', 'upload_files/candidate_tracker/25253437630_Anand Resume.docx', NULL, '1', '2022-03-25', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for mis, poor comm and no skills, expt is 20k. was doing biz with his uncle so will not sustain for us.', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1000', '', NULL, NULL, NULL, 1, '2022-03-25 11:27:17', 7, '2022-03-25 11:54:03', 0, NULL, 1),
(8244, 'NancY', '4', '6380276764', '', 'nancmaryj1998@gmail.com', '1998-03-26', 24, '2', '2', 'Jayaraj', 'Textiles processing', 0.00, 1, 0.00, 0.00, 'salem', 'salem', '2203250008', '1', '1', 'upload_files/candidate_tracker/96043173724_nancyresume1.pdf', NULL, '2', '2022-04-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 11:29:26', 85, '2022-04-04 11:53:52', 0, NULL, 1),
(8245, 'Keerthana', '4', '9443355627', '9080984652', 'keerthuprabakar@gmail.com', '1998-04-20', 23, '2', '2', 'Prabakar M', 'Clerk', 18000.00, 1, 15000.00, 15000.00, 'Appakudal', 'Appakudal', '2203250009', '1', '2', 'upload_files/candidate_tracker/92482842977_Keerthana Resume.pdf', NULL, '3', '2022-03-26', 0, '', '3', '59', '2022-04-06', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Consultant Role - Erode', '1', '1', '', '4', '7', '', '2', '2022-03-31', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 11:33:44', 60, '2022-04-01 05:31:03', 0, NULL, 1),
(8246, 'Surya K', '13', '8072122594', '', 'ayrus4444@gmail.com', '2000-10-10', 21, '2', '2', 'KANNUSAMY C', 'Sequrity', 12000.00, 0, 15000.00, 18000.00, 'Chennai', 'Chennai', '2203250010', '1', '2', 'upload_files/candidate_tracker/8114731161_surya+k+(8).pdf', NULL, '1', '2022-03-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Distance and not comfortable with the timings\n', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-25 11:44:47', 1, '2022-03-25 03:57:29', 0, NULL, 1),
(8247, 'Divya', '13', '8524033351', '', 'diviammu2097@gmail.com', '2007-03-25', 0, '2', '2', 'aa', 'q', 20000.00, 1, 300000.00, 550000.00, 'chennai', 'thiruvanamalai', '2203250011', '1', '2', 'upload_files/candidate_tracker/83807999514_Divya.pdf', NULL, '2', '2022-03-26', 60, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'overall 3yrs exp 1yr in core php 2yrs in laravel, worked in 3 companies, ctc 3L and expt 5.5L, 60 days notice. check with sathish once', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-25 11:50:25', 84, '2022-03-30 06:05:29', 0, NULL, 1),
(8248, 'Joy Jenipher M', '2', '8610655191', '', 'joyjeni02091999@gmail.com', '1999-09-02', 22, '2', '2', 'Jayanthi Martin M', 'BE', 90000.00, 1, 0.00, 15000.00, 'Chidambaram', 'Velachery', '2203250012', '1', '1', 'upload_files/candidate_tracker/75693776001_JENIPHER RESUME.doc', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', ' pursuing degree has exam in june and yet to complete projects okay with her calling skills.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-25 02:35:54', 1, '2022-03-26 10:13:58', 0, NULL, 1),
(8249, '', '0', '9600335004', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203250013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-25 04:24:43', 0, NULL, 0, NULL, 1),
(8250, 'Nitheswar D', '4', '9629815258', '', 'nitheshdevaraj@gmail.com', '2000-10-02', 21, '2', '2', 'Devaraj D', 'Building contractor', 400000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2203250014', '1', '1', 'upload_files/candidate_tracker/90827631419_resume nithi-converted.pdf', NULL, '3', '2022-03-26', 0, '', '3', '59', '2022-05-16', 138948.00, '', '3', '2022-11-01', '2', 'Selected for Muthu Team - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 04:45:05', 60, '2022-05-11 07:01:31', 0, NULL, 1),
(8251, '', '0', '9597115078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203250015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-25 05:25:20', 0, NULL, 0, NULL, 1),
(8252, 'Dipaksounder', '4', '9159723856', '9524830456', 'Dipaksounderb@gmail.com', '2000-04-07', 21, '2', '2', 'K.balraj', 'rtd Deputycollector', 3200000.00, 1, 0.00, 2000000.00, 'Coimbatore', 'coimbatore', '2203250016', '1', '1', 'upload_files/candidate_tracker/21180842822_Dipak resume-converted(1).pdf', NULL, '2', '2022-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for calling, not speaking up. father dept. collector, mom hw, sis working in amazon.', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 05:57:08', 85, '2022-03-26 09:28:56', 0, NULL, 1),
(8253, 'sowmiya', '4', '6380161323', '', 'sowmiaeswaran@gmail.com', '1999-12-16', 22, '2', '2', 'v.a.Parameswaran', 'farmer', 15000.00, 0, 0.00, 15000.00, 'Sathyamangalam', 'sathyamangalam', '2203250017', '1', '1', 'upload_files/candidate_tracker/13981655014_sowmiya.docx', NULL, '3', '2022-03-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-25 06:08:34', 85, '2022-03-31 09:49:58', 0, NULL, 1),
(8254, 'lavanyagovindhan', '4', '9500620232', '6384224492', 'lavanyagovindhanbio@gmail.com', '1998-07-26', 23, '2', '2', 'Govindhan.E, Seetha.G', 'daily worker', 25000.00, 3, 15000.00, 20000.00, 'Cuddalore ,panruti', 'chennai, vadapalani', '2203250018', '1', '2', 'upload_files/candidate_tracker/74061517702_Lavanya+Govindhan resume (1).pdf', NULL, '1', '2022-03-26', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'was working in ecg lab 6m, then 1yr in hdb collection, 15k th and expt 20k, not negotiable, avg communication and has 30 days notice. ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-25 06:19:11', 1, '2022-03-25 07:18:15', 0, NULL, 1),
(8255, 'kishore', '13', '7639285838', '', 'shivakishire97@gmail.com', '1997-08-18', 24, '2', '2', 'natarajan', 'farmer', 20000.00, 0, 10000.00, 30000.00, 'kallakurichi', 'chennai', '2203250019', '1', '2', 'upload_files/candidate_tracker/12256067174_kishorepdf.pdf', NULL, '2', '2022-03-26', 25, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-25 10:09:31', 1, '2022-03-25 10:14:07', 0, NULL, 1),
(8256, 'Kiruthika K', '4', '8122987792', '', 'kiruthikak858@gmail.com', '2000-12-10', 21, '2', '2', 'Mr.Kamaraj', 'Farmer', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2203260001', '1', '1', 'upload_files/candidate_tracker/46989439219_61e180e354e72_Ather_CRAZE-A-THON_-_JD_for_Software_Developer__1_ (1).pdf', NULL, '2', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pursuing degree has exam in june and yet to complete projects.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-26 10:08:56', 1, '2022-03-26 10:14:22', 0, NULL, 1),
(8257, 'Bunga Pavan', '2', '8608140617', '7989041789', 'pavanbungaece@gmail.com', '2001-06-29', 20, '2', '2', 'B . Chengaiah', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Kolathur', 'Kolathur', '2203260002', '1', '1', 'upload_files/candidate_tracker/51523410380_Bunga\'s Resume (1).pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'pursuing degree has exam in june and yet to complete projects.\nwill not suite for calling.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-26 10:09:02', 1, '2022-03-26 10:16:30', 0, NULL, 1),
(8258, 'Meena kumari', '4', '7871392542', '9865782051', 'meena19092001@gmail.com', '2001-09-19', 20, '2', '2', 'Eswara muthu', 'Daily wages', 6000.00, 2, 0.00, 17000.00, 'Chennai', 'Thoothukudi', '2203260003', '1', '1', 'upload_files/candidate_tracker/36747157694_meena-Resume-converted.pdf', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'pursuing degree has exam in june and yet to complete projects.', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-26 10:11:11', 1, '2022-03-26 10:28:21', 0, NULL, 1),
(8259, 'Kalai vanan', '13', '6382782394', '', 'Malairajkalai98@gmail.com', '1998-12-08', 23, '2', '2', 'Malairaj', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Ramanathapuram', 'Ramanathpuram', '2203260004', '1', '1', 'upload_files/candidate_tracker/53065967242_KALAI (1).pdf', NULL, '2', '2022-03-26', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'for tech. fresher and he is okay with company norms.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-26 10:29:52', 1, '2022-03-26 10:54:31', 0, NULL, 1),
(8260, 'E koushik ram', '4', '7010949343', '6381480050', 'ram260494@gmail.com', '1994-04-26', 27, '2', '2', 'Eagappan', 'Hotel manager', 200000.00, 1, 30000.00, 15000.00, 'Chennai', 'Chennai', '2203260005', '1', '2', 'upload_files/candidate_tracker/33085402987_koushi (1).doc', NULL, '1', '2022-03-26', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was into cini field. runs grocery shop. will not suite for rm. expt 25-30k.', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-26 10:55:54', 1, '2022-03-26 11:00:04', 0, NULL, 1),
(8261, 'vignesh', '5', '7358010026', '', 'vignesh.g146@gmail.com', '1989-06-14', 32, '2', '2', 'ganesan', 'buisness', 50000.00, 1, 280000.00, 400000.00, 'chennai', 'chennai', '2203260006', '1', '2', 'upload_files/candidate_tracker/95655731737_Vignesh -2022 resume.doc', NULL, '2', '2022-03-26', 30, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'he is not interested in li. for GI no expt exp. sal expt is high so will not suite for re', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-26 11:01:11', 1, '2022-03-26 11:06:41', 0, NULL, 1),
(8262, 'Dhanraj', '5', '7010776286', '9629241516', 'dhanraj3663@gmail.com', '1998-07-09', 23, '2', '2', 'NATARAJAN', 'Self Employed', 10000.00, 1, 18500.00, 19000.00, 'Namakkal', 'Namakkal', '2203260007', '1', '2', 'upload_files/candidate_tracker/63201935187_DHANRAJRESUME1.docx', NULL, '2', '2022-03-26', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not come chennai for next round.', '5', '1', '', '', '', '', '1', '2022-04-04', '3', '1', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-26 11:03:19', 84, '2022-03-26 11:38:39', 0, NULL, 1),
(8263, 'Sumalatha', '16', '9841695618', '9841095618', 'Pandiansumalatha4@gmail.com', '1993-06-15', 28, '2', '1', 'Karthik', 'Logistics', 30000.00, 1, 10000.00, 18000.00, 'Virugambakkam', 'Virugambakkam', '2203260008', '1', '2', 'upload_files/candidate_tracker/76054764967_latha.docx', NULL, '1', '2022-03-26', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'was working in cafs 2yrs and relived due to personal reasons. will suite for b2b. check with her sustainability once.', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2022-03-26 11:29:23', 1, '2022-03-26 11:33:51', 0, NULL, 1),
(8264, 'Udaykumar', '5', '8309921558', '', 'udaykumar.patnani@gmail.com', '1994-04-11', 27, '2', '1', 'Mahitha', 'Home maker', 0.00, 0, 0.00, 30000.00, 'Vizag', 'Chennai', '2203260009', '1', '2', 'upload_files/candidate_tracker/48242156336_P. UDAY KUMAR CV-converted-converted-1.pdf', NULL, '1', '2022-03-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'RNR', '5', '1', '', '1', '1', '', '2', '2022-04-22', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-26 11:47:15', 60, '2022-04-18 05:05:48', 0, NULL, 1),
(8265, 'sowmia', '4', '8807575012', '', 'liyaraj75@gmail.com', '1999-08-22', 22, '2', '2', 'raj', 'Engineer', 500000.00, 2, 15000.00, 15000.00, 'erode', 'Erode', '2203260010', '1', '2', 'upload_files/candidate_tracker/83141508904_SowmiyaRaj.pdf', NULL, '2', '2022-03-26', 0, '', '1', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-26 11:52:10', 85, '2022-03-26 12:32:24', 0, NULL, 1),
(8266, 'Raaghul.M', '6', '7502348338', '', 'raaghul619@gmail.com', '2000-10-26', 21, '2', '2', 'Matheswaran', 'Gang muzdor', 20000.00, 1, 0.00, 15.00, 'Lakshmi Nagar, bhavani, erode dt', 'Lakshmi Nagar, bhavani, erode dt', '2203260011', '1', '1', 'upload_files/candidate_tracker/47353464637_Raaghul resume.docx', NULL, '2', '2022-03-26', 0, '', '3', '59', '2022-04-11', 180000.00, '', '3', '2023-02-04', '1', 'Selected for Suthagar Team Erode Location', '5', '2', '1', '4', '7', '', '2', '2022-04-04', '3', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-26 12:36:05', 60, '2022-04-09 05:50:31', 0, NULL, 1),
(8267, 'Ramkumar', '4', '8667547495', '8508000122', 'nsking0910@gmail.com', '2000-09-02', 21, '2', '2', 'Thangaraj', 'Hotel', 20000.00, 1, 0.00, 15.00, 'Surampatti valasu', 'Surampatti valasu', '2203260012', '1', '1', 'upload_files/candidate_tracker/53248524795_ramkumar resume.pdf', NULL, '3', '2022-03-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '1', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-26 12:53:14', 87, '2022-03-30 01:10:45', 0, NULL, 1),
(8268, 'Surya.m', '4', '8838623940', '8940386351', 'ssmartsurya7@gmail.com', '1999-06-11', 22, '2', '2', 'V.Murugesan', 'Daily wages', 16000.00, 2, 20000.00, 16000.00, '24 Thasildhar Thottam vairapalayam', '24 Thasildhar Thottam Vairapalayam', '2203260013', '1', '2', 'upload_files/candidate_tracker/20813495631_SURYA RESUME.docx', NULL, '3', '2022-03-28', 0, '', '1', '8', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-26 04:17:18', 1, '2022-03-26 04:24:02', 0, NULL, 1),
(8269, 'Bhuvaneswari', '4', '9488559863', '7010526899', 'sonanagendiran111@gmail.com', '1999-06-15', 22, '2', '2', 'Anjalai', 'Tea worker', 12000.00, 5, 0.00, 15000.00, 'Coimbatore', 'Valparai', '2203260014', '1', '1', 'upload_files/candidate_tracker/30588080751_CV_2021-08-06-095230.pdf', NULL, '3', '2022-03-28', 0, '', '1', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-26 05:30:39', 85, '2022-03-28 09:52:21', 0, NULL, 1),
(8270, '', '0', '9385778720', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-27 09:08:05', 0, NULL, 0, NULL, 1),
(8271, '', '0', '9566240259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-27 10:00:32', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8272, '', '0', '6382172751', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-28 11:34:37', 0, NULL, 0, NULL, 1),
(8273, 'S.porselvi', '4', '7094366133', '9843335248', 'sporselvi778@gmail.com', '1996-09-01', 25, '3', '2', 'N.suresh', 'Former', 10000.00, 1, 10000.00, 10000.00, 'Thanjavur', 'Thanjavur', '2203280002', '', '2', 'upload_files/candidate_tracker/56575425263_Resume.pdf', NULL, '1', '2022-03-28', 30, '', '3', '59', '2022-04-01', 138948.00, '', '3', '2022-05-05', '2', 'Selected for Consultant role in Thanjavur location', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-28 12:03:57', 60, '2022-04-01 12:07:49', 0, NULL, 1),
(8274, 'Sasidharan ad', '13', '9790719961', '9941605881', 'sasidharan2811993@gmail.com', '1998-05-21', 23, '2', '2', 'Dillibabu R', 'Self', 30000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2203280003', '1', '1', 'upload_files/candidate_tracker/93463471746_sasidharan resume.pdf', NULL, '1', '2022-03-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-28 12:21:34', 1, '2022-03-28 12:25:40', 0, NULL, 1),
(8275, 'G RANJITH', '5', '9940681085', '8637628257', 'ranjithash33@gmail.com', '1998-07-03', 23, '2', '2', 'S. Gopalsamy', 'Hair stylist', 30000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2203280004', '14', '2', 'upload_files/candidate_tracker/74928412576_Resume_28_03_2022_12_01_33_PM.pdf', NULL, '1', '2022-03-28', 0, '', '3', '59', '2022-04-04', 273696.00, '', '5', '1970-01-01', '1', 'Selected for GK sir Team,, Gaurav Sir Committed with the task 1.5 L per month if completes then 3 LPA will be fixed as a salary', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-28 01:23:18', 60, '2022-04-01 05:37:08', 0, NULL, 1),
(8276, 'Subaranjani p', '4', '9344290745', '7339597533', 'Subaranjanip2001@gmail.com', '2001-04-23', 20, '2', '2', 'Palanisamy', 'Graduate', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2203280005', '1', '1', 'upload_files/candidate_tracker/18807979786_Subaranjani_ Resume (2) (1).docx', NULL, '2', '2022-03-29', 0, '', '1', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 01:23:37', 7, '2022-03-29 03:08:43', 0, NULL, 1),
(8277, 'M.mohamed ajmal thagseen', '21', '8695169300', '', 'ajmalthagseen.786@gmail.com', '2000-04-16', 21, '2', '2', 'M.mohamed ibrahim', 'Labour', 300000.00, 1, 15000.00, 16000.00, 'Erode', 'Erode', '2203280006', '1', '2', 'upload_files/candidate_tracker/97896888907_ajmal resume new pdf_edited.pdf', NULL, '2', '2022-03-29', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 01:39:58', 85, '2022-04-04 06:45:42', 0, NULL, 1),
(8278, 'M.mohamed ajmal thagseen', '4', '9092535991', '8695169300', 'ajmalthagseen.786@gmail.com', '2000-04-16', 21, '2', '2', 'M.mohamed ibrahim', 'Labour', 300000.00, 1, 0.00, 16000.00, 'Erode', 'Erode', '2203280007', '1', '2', 'upload_files/candidate_tracker/69268681021_ajmal resume new pdf_edited.pdf', NULL, '3', '2022-03-28', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate much focus for non voice process, also he is dragging his joining', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 02:50:03', 60, '2022-04-04 07:25:36', 0, NULL, 1),
(8279, 'Vimalraj R', '6', '9080798933', '', 'rameshvimal314@gmail.com', '1999-12-21', 22, '2', '2', 'Ramesh', 'Salesman', 12000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2203280008', '1', '1', 'upload_files/candidate_tracker/1197762825_vimal raj (1).pdf', NULL, '1', '2022-05-17', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate okay but need to check job important and sustainability ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 04:30:16', 60, '2022-05-17 03:44:53', 88, '2022-09-13 05:50:48', 0),
(8280, '', '0', '8939616360', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203280009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-28 04:41:39', 0, NULL, 0, NULL, 1),
(8281, 'Saleem.A', '6', '9345343296', '7448950773', 'Saleemsparrow123@gmail.com', '1999-07-20', 22, '2', '2', 'Abdullah', 'Esguard', 10000.00, 0, 18000.00, 20000.00, 'Anakaputhur', 'Anakaputhur', '2203280010', '1', '2', 'upload_files/candidate_tracker/73663015631__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Bad Attitude, Focus only on the salary, Seems very Arrogant, will not sustain for a long in sales,No proper relieving from previous organizations. Not comfortable to come back after sales calls. Not Suitable for our roles', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-28 04:51:30', 60, '2022-03-29 10:45:44', 0, NULL, 1),
(8282, 'V.priya', '4', '8973597124', '8438598798', 'priyamythili2000@gmail.com', '2000-04-16', 21, '2', '2', 'Vaithiyalingam', 'Construction site', 8000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2203280011', '1', '1', 'upload_files/candidate_tracker/4243290315_PRIYA-Resume.pdf', NULL, '3', '2022-03-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-28 06:26:07', 85, '2022-03-29 10:33:28', 0, NULL, 1),
(8283, 'v.priya', '4', '8438598798', '8973597124', 'priyamythili2000@gmail.com', '2000-04-16', 21, '2', '2', 'Vaithiyalingam', 'Construction work', 8000.00, 1, 0.00, 11000.00, 'Erode', 'Erode', '2203280012', '1', '1', 'upload_files/candidate_tracker/15995903755_PRIYA-Resume.pdf', NULL, '3', '2022-03-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-28 08:31:19', 1, '2022-03-28 09:10:34', 0, NULL, 1),
(8284, 's arulprakash', '5', '9566087463', '', 'arulprakash89@yahoo.co.in', '1989-02-19', 33, '2', '1', 'k vanitha', 'relationship manager', 33000.00, 1, 33000.00, 42000.00, 'chennai', 'chennai', '2203280013', '1', '2', 'upload_files/candidate_tracker/86445167817_Component 2 – 1.pdf', NULL, '1', '2022-03-29', 0, '', '2', '8', NULL, 0.00, '', '0', NULL, '1', 'has off roll exp in GI not int o sales. has 6m and 7m exp in life ins. into agency channel. will not suite for RM profile. bcoz he is not comfortable with cold calling and looking for same agency channel. expt 5l.', '5', '2', '0', '1', '1', '0', '2', '2022-04-04', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-28 08:48:28', 1, '2022-03-29 11:54:02', 0, NULL, 1),
(8285, 'Rajkumar', '4', '8190009889', '', 'rajkumarcoolbilla1997@gmail.com', '1997-12-24', 24, '2', '2', 'Kumaresan', 'B.com', 400000.00, 1, 0.00, 16000.00, 'Pondicherry', 'Pondicherry', '2203290001', '1', '1', 'upload_files/candidate_tracker/21692600880_Raj Resume (1).pdf', NULL, '3', '2022-03-29', 0, '', '1', '8', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-29 09:48:43', 1, '2022-03-29 09:58:43', 0, NULL, 1),
(8286, 'antony sijo', '6', '8248845682', '', 'antonysijo210@gmail.com', '2000-10-01', 21, '2', '2', 'Antony Thason.S', 'fishermen', 25000.00, 1, 0.00, 12000.00, 'kanyakumari', 'Chennai', '2203290002', '1', '1', 'upload_files/candidate_tracker/7924482349_Sijo Resum.docx', NULL, '2', '2022-04-06', 0, '', '3', '59', '2022-04-18', 151584.00, '', '5', '1970-01-01', '2', 'Selected for Guru Team in consultant role ,but candidate seems to be doubtful,if joins let see', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-29 10:17:08', 60, '2022-04-16 12:54:01', 0, NULL, 1),
(8287, 'KARTHIKEYAN', '16', '8610775403', '', 'karthickkanu@gmail.com', '1998-05-15', 23, '2', '2', 'SATHYAMOORTHY', 'Backend', 12000.00, 1, 0.00, 24000.00, 'Chennai', 'Chennai', '2203290003', '1', '1', 'upload_files/candidate_tracker/95530234484_Karthick Resume.pdf', NULL, '1', '2022-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'will not suite for this process. poor comm. and no clarity in his speech. will not suite for calling and sales. not interested in current process. ctc 11.5k and expt 20k and he is requesting in interview to give him job. dont even knows basics in excel.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-29 12:05:20', 85, '2022-03-29 12:14:26', 0, NULL, 1),
(8288, 'SHALINI r', '16', '7871527741', '6379502489', 'shaliniraj0011@gmail.com', '1999-09-25', 22, '2', '2', 'JAYANTHI', 'Back end development', 13500.00, 3, 13500.00, 20.00, 'CHENNAI', 'CHENNAI', '2203290004', '1', '2', 'upload_files/candidate_tracker/3359635466_Shalini R (Resume).pdf', NULL, '1', '2022-03-29', 30, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 2yrs exp in data entry. 1+ yrs in sbi credit card back end. she was doing data entry there too with 13.5k. her company revised her salary as 16k. since she completed hdca course and 16k increment she is looking for better offer. expt min 20k take home. she in need of job but she dont have patience and understanding. i couldnt see adaptability. ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-29 12:05:55', 85, '2022-03-29 12:28:37', 0, NULL, 1),
(8289, 'M.Muthupanndy', '20', '8848593446', '6369981486', 'andrewalex.1411@gmail.com', '1998-11-14', 23, '2', '2', 'K.Muniyasamy', 'Mason', 10000.00, 2, 0.00, 12000.00, 'Chengelpet', 'Chengelpet', '2203290005', '1', '1', 'upload_files/candidate_tracker/19682811505_CV_2021-09-07-021717.pdf', NULL, '1', '2022-03-29', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'planning for higher study. will not suite for calling and long distance too. changalpattu', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-29 03:14:06', 1, '2022-03-29 03:18:44', 0, NULL, 1),
(8290, 'manoharan', '6', '7094675188', '', 'mano@gmail.com', '1999-04-05', 22, '2', '2', 'kathir', 'farmer', 0.02, 1, 0.00, 15000.00, 'perambalur', 'chengalpattu', '2203290006', '1', '1', 'upload_files/candidate_tracker/77621156140_Kamakshi.docx', NULL, '1', '2022-03-29', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not suite for calling, 6m in harbor as acc with 18k. expt 15k th. no convincing.', '5', '2', '', '', '', '', '1', '1970-01-01', '3', '3', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-29 03:14:10', 8, '2022-03-29 04:19:00', 0, NULL, 1),
(8291, '', '0', '7094676188', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-29 03:20:05', 0, NULL, 0, NULL, 1),
(8292, 'Avinash v', '5', '7397195260', '7094802633', 'postboxno1100@gmail.com', '1998-05-24', 23, '2', '2', 'Vijayan. E', 'Artist', 48000.00, 2, 26540.00, 30000.00, 'No:66ambedkar St 66.Thandalam (Vill) Madurantakam', 'Chengalpattu', '2203290008', '1', '2', 'upload_files/candidate_tracker/91328662356_Avin updated.pdf', NULL, '1', '2022-03-31', 7, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, no sustainability. was worked in home credit, vodafone, paytm, realestate and airtel and so on. expt 25k.', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-29 03:46:04', 1, '2022-03-31 12:17:13', 0, NULL, 1),
(8293, 'Deena Yaghal Suganthi', '4', '9384690595', '', 'deenasuganthi24@gmail.com', '1992-05-24', 29, '2', '2', 'gideon', 'security', 12000.00, 1, 0.00, 10000.00, 'chennai', 'aminjikarai', '2203290009', '2', '1', 'upload_files/candidate_tracker/19820561305_Deena resume (2).docx', NULL, '1', '2022-03-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-29 08:08:36', 1, '2022-03-29 08:12:39', 0, NULL, 1),
(8294, 'Meron Abin', '4', '9894268950', '', 'meronms89@gmail.com', '2001-09-12', 20, '2', '2', 'seliathu mary', 'cooli', 9000.00, 1, 0.00, 10000.00, 'punavasal', 'thanjavur', '2203290010', '2', '1', 'upload_files/candidate_tracker/58885829673_CV_2021-09-26-090621.pdf', NULL, '3', '2022-03-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-29 08:14:38', 1, '2022-03-29 08:16:38', 0, NULL, 1),
(8295, 'Priyanka', '13', '9361613142', '6374004133', 'Priyamclansys@gmail.com', '2000-12-26', 21, '2', '2', 'Karthikeyan', 'Own business', 8000.00, 0, 14000.00, 18000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2203290011', '1', '2', 'upload_files/candidate_tracker/82094095856_Priyanka Resume (1).docx', NULL, '3', '2022-03-30', 15, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'hold for tech. has 1yr exp in php with 14k in mailaduthurai. will relocate to chennai expt 16-17k. ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-29 09:08:18', 1, '2022-03-30 11:31:17', 0, NULL, 1),
(8296, 'Bharath Kumar Rajendran', '14', '9791898643', '', 'bharathkumar1507bk36@gmail.com', '2000-07-15', 21, '2', '2', 'K.Rajendran', 'Electrician', 120000.00, 1, 0.00, 300000.00, 'Subramaniyapuram', 'Madurai', '2203290012', '1', '1', 'upload_files/candidate_tracker/6614746495_resume new.pdf', NULL, '3', '2022-03-31', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-03-29 11:00:34', 1, '2022-03-29 11:05:18', 0, NULL, 1),
(8297, 'S.LOGESWARAN', '4', '7550353553', '', 'sloges28@gmail.com', '2000-06-28', 21, '2', '2', 'Sumathi', 'Telecalling', 15000.00, 1, 0.00, 13000.00, 'Erode', 'Erode', '2203300001', '1', '1', 'upload_files/candidate_tracker/39644143941_1609990641198Resume_logeswaran.docx', NULL, '3', '2022-03-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-30 01:23:06', 85, '2022-04-04 10:15:18', 0, NULL, 1),
(8298, 'Divesh R Shah', '4', '9841775622', '', 'Diveshshah1997@gmail.com', '1997-07-19', 24, '2', '2', 'Rajesh A Shah', 'Sales Manager', 100000.00, 0, 14000.00, 17000.00, 'Perambur', 'Perambur', '2203300002', '1', '2', 'upload_files/candidate_tracker/3191583722_CV DIVESH R SHAH - New.pdf', NULL, '1', '2022-03-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, he runs a event mgnt and professional photographer he is. will not sustain more than 6m. expt 15k. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-30 09:47:19', 1, '2022-03-30 10:05:13', 0, NULL, 1),
(8299, 'Preethi.v', '4', '7358636282', '9094168537', 'Preethivenkatesan846@gmail.com', '2001-03-01', 21, '1', '2', 'Venkatesan.B', 'Auto Driver', 10000.00, 1, 11000.00, 14000.00, 'Kotturpuram', 'Kotturpuram', '2203300003', '', '2', 'upload_files/candidate_tracker/23295684415__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-30', 0, 'Jobs', '3', '59', '2022-04-07', 132000.00, '', '', '2022-04-20', '2', 'Selected for Arumbakkam location in consultant role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-03-30 11:26:44', 60, '2022-04-07 10:18:31', 0, NULL, 1),
(8300, 'Nisha G M', '14', '6383679919', '', 'nishamariyanna0503@gmail.com', '2001-07-03', 20, '2', '2', 'Mariyanna G', 'Worker in wheels India limited', 17000.00, 1, 0.00, 20000.00, 'Villivakkam Chennai', 'Villivakkam Chennai', '2203300004', '1', '1', 'upload_files/candidate_tracker/47809719519_DocScanner Mar 12, 2022 4-43 PM.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'no basics so told her to learn and come back', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-30 11:38:37', 1, '2022-03-30 11:53:28', 0, NULL, 1),
(8301, 'Narmadha A', '4', '7305247209', '9710571209', 'narmadhaarul2304@gmail.com', '2001-04-23', 20, '2', '2', 'Arulraj D', 'Maintenance (private school)', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2203300005', '1', '1', 'upload_files/candidate_tracker/53425391027_Narmadha A.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for calling, not speaking up, time being looking for job.', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-30 11:58:34', 1, '2022-03-30 06:01:11', 0, NULL, 1),
(8302, 'Sivaraman.G', '13', '7338714210', '9080285071', 'mrsparrow786@gmail.com', '2000-11-19', 21, '2', '2', 'Ganesan', 'Daily wages', 30000.00, 1, 0.00, 15000.00, 'No:55,Eden Street,Balaji Hagar,Ambattur', 'Chennai', '2203300006', '1', '1', 'upload_files/candidate_tracker/94574988614_Sivaraman G__CV d2.pdf', NULL, '2', '2022-03-30', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'Pursuing his final year, yet to complete his projects and exams. expt 15k. okay with company norms. let him complete his exam.', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-03-30 12:10:58', 1, '2022-03-30 12:15:27', 0, NULL, 1),
(8303, 'basil s', '13', '9597817060', '', 'basil7583@gmail.com', '2000-03-18', 22, '2', '2', 'j.selvin kumar', 'former', 5000.00, 0, 0.00, 15000.00, 'nagercoil', 'chennai', '2203300007', '1', '1', 'upload_files/candidate_tracker/10784490078_basilnew-min.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '2', 'dosent know basics. told him to learn and come back.', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-30 12:36:54', 1, '2022-03-30 12:56:40', 0, NULL, 1),
(8304, 'Mohammed Nowsath S', '6', '9843641830', '9042241830', 'nowsathsulaimaan@gmail.com', '2000-04-02', 21, '2', '1', 'MARIYAM NISHA M', 'Customer Support Associate', 12000.00, 1, 0.00, 20000.00, 'Erode', 'Erode', '2203300008', '1', '2', 'upload_files/candidate_tracker/61969825675_Mohammed Nowsath S.pdf', NULL, '2', '2022-04-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'CANDIDATE EXPECT HIGH SALARY FRESHERS.. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-30 05:10:51', 60, '2022-04-27 04:54:09', 0, NULL, 1),
(8305, 'Abhilakshman', '13', '9626941876', '8754261654', 'abhilakshman6697@gmail.com', '1997-06-06', 24, '2', '2', 'M.Kalaichelvan', 'Head master', 800000.00, 1, 0.00, 150000.00, 'Salem', 'Salem', '2203300009', '1', '1', 'upload_files/candidate_tracker/76195352409_Abhilakhman.pdf', NULL, '3', '2022-03-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-30 06:04:08', 84, '2022-03-31 09:54:17', 0, NULL, 1),
(8306, 'karthikeyan s', '20', '6385891911', '', 'karthik24sekar@gmail.com', '1990-01-24', 32, '2', '1', 'sekar', 'own Business', 10000.00, 1, 28000.00, 35000.00, 'Chennai', 'Chennai', '2203300010', '23', '2', 'upload_files/candidate_tracker/60103471714_MSHRS - Business Profile .pdf', NULL, '1', '2022-04-01', 20, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-30 06:11:29', 1, '2022-03-30 06:26:22', 0, NULL, 1),
(8307, 'YASAR ARAFATH', '13', '7010443479', '', 'yasararafath2698@gmail.com', '1998-12-26', 23, '2', '2', 'Abdul Kapoor', 'Business', 20000.00, 1, 18000.00, 23000.00, '18 kavarai street, Vandavasi', '18 kavarai street, Vandavasi', '2203300011', '1', '2', 'upload_files/candidate_tracker/32495431509_Myfinal Resume.pdf', NULL, '2', '2022-04-02', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-03-30 06:13:54', 1, '2022-03-30 06:20:50', 0, NULL, 1),
(8308, 'Preethi.m', '4', '6374095427', '7299580181', 'Preethiuma2904@gmail.com', '2001-04-29', 20, '2', '2', 'Uma&sundari', 'Not now', 12000.00, 0, 15000.00, 16000.00, 'Chennai , medavakkam', 'Chennai medavakkam', '2203300012', '1', '2', 'upload_files/candidate_tracker/96498517571_Andrews_Resume.pdf', NULL, '1', '2022-03-31', 2, '', '2', '8', NULL, 0.00, '', '0', NULL, '2', 'has to check with banu ahs 1yr calling exp. high job need and ctc 14k and ecpt 15-16k. ', '1', '2', '0', '1', '1', '0', '2', '2022-04-01', '3', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-03-30 10:19:14', 1, '2022-03-31 12:50:43', 0, NULL, 1),
(8309, 'Kaminimerlin A', '4', '8925061209', '', 'merlinarul1030@gmail.com', '1999-02-27', 23, '2', '2', 'Arulraj D', 'School maintanence', 120000.00, 2, 17500.00, 20000.00, 'Chrompet', 'Chrompet', '2203310001', '1', '2', 'upload_files/candidate_tracker/22362249791_CV_2022032008255626.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for tL, has only 6m exp in calling-new india. in 3m she got promoted as asst. tl with 17.5k. due to late logout she is looking for job change. will not sustain here and long distance too. expt 20k. she will think and get back to vishal.', '1', '1', '', '1', '1', '', '1', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-03-31 07:05:38', 7, '2022-03-31 10:59:57', 0, NULL, 1),
(8310, 'Ragunath', '17', '9551805805', '', 'ragu91nath@gmail.com', '1990-05-10', 31, '2', '2', 'Not applicable', 'Business', 30000.00, 1, 500000.00, 700000.00, 'Chennai', 'Chennai', '2203310002', '14', '2', 'upload_files/candidate_tracker/36885049542_Ragunath resume.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'will not suite for our process, has 4yr in hdfs and 2 yes in max, the reason for reliving is not acceptable and his performance was not convincing. has avg convincing skills. expt 6.8l', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 11:05:10', 1, '2022-03-31 11:10:55', 0, NULL, 1),
(8311, 'Ravikumar m', '5', '8148016155', '8667315424', 'ravikumar888222@gmail.com', '1991-11-25', 30, '1', '2', 'Thirupammal', 'House wife', 9500.00, 2, 19000.00, 25000.00, 'Chennai', 'Chennai', '2203310003', '', '2', 'upload_files/candidate_tracker/38963588577_Ravikumar Resume EDIT 2019(1).docx', NULL, '1', '2022-03-31', 0, 'P1242', '3', '59', '2022-05-09', 264000.00, '', NULL, '2025-03-05', '1', 'Selected for Santhosh Team with PF/PT ,will give a target for 4-5 months based on that revision will be provided on achieving', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-03-31 11:24:44', 60, '2022-04-28 07:25:25', 0, NULL, 1),
(8312, 'THIYAGARAJAN R', '6', '8190052057', '9940587446', 'vallalarmani05@gmail.com', '1997-10-05', 24, '1', '2', 'Shanthi', 'Kooli', 10000.00, 1, 21000.00, 25000.00, 'Chennai', 'Chennai', '2203310004', '', '2', 'upload_files/candidate_tracker/8923831056_R.Thiyagarajan_Chennai.docx', NULL, '1', '2022-03-31', 0, 'P1242', '1', '8', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 11:25:49', 1, '2022-03-31 11:40:11', 0, NULL, 1),
(8313, 'Steena Mary.G', '4', '8838381915', '7092891151', 'Steenamaryg@gmail.com', '2000-11-16', 21, '2', '2', 'Gnana sekar', 'A/c mechanic', 400000.00, 0, 0.00, 13000.00, 'Tirunelveli', 'Ramapuram', '2203310005', '1', '1', 'upload_files/candidate_tracker/44681261518__STARDM_premiadms_export6_DMS_FRM_FEB_2021_From_FTP_622021_80713006_SCHEDULE-1.PDF', NULL, '1', '2022-03-31', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 6m exp in sbi cards. good in her scripts and talkative. expt 12k take home. check with her distance once', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-03-31 11:27:26', 84, '2022-03-31 12:08:49', 0, NULL, 1),
(8314, 'Naveenkumar.j', '4', '6383009713', '9363668456', 'navicrish@gmail.com', '2001-05-03', 20, '1', '1', 'Moulika', 'House wife', 13000.00, 1, 13000.00, 22000.00, 'Chennai', 'Chennai', '2203310006', '', '2', 'upload_files/candidate_tracker/54200730292_Ravikumar new.docx', NULL, '1', '2022-03-31', 0, 'Jobs', '5', '8', NULL, 0.00, '', '0', NULL, '1', 'was working in blue dart doing cut copy paste in sys and says system admin. 20 and got married. will not suite for calling and sales. language is not good. expt 22k', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 12:00:14', 1, '2022-03-31 12:42:46', 0, NULL, 1),
(8315, '', '0', '8825786458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 12:05:35', 0, NULL, 0, NULL, 1),
(8316, 'Suba', '4', '8608721485', '9841992192', 'Suba.m1981@mail.com', '1982-09-30', 39, '1', '1', 'Santhy', 'Not now', 15000.00, 3, 15000.00, 15000.00, 'Chennai', 'Chennai', '2203310008', '', '2', 'upload_files/candidate_tracker/10490319050_1639026338971_1637580586516_RESUME Suba-converted.docx', NULL, '1', '2022-03-31', 2, 'Jobs', '2', '8', NULL, 0.00, '', '0', NULL, '1', 'has to check with banu. age-40, has 4yrs exp in pl calling exp with 15k, expt the same. no husband and has 2 son.', '1', '2', '0', '1', '1', '0', '2', '2022-04-01', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 12:09:20', 1, '2022-03-31 01:13:52', 0, NULL, 1),
(8317, '', '0', '9092420522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 12:18:35', 0, NULL, 0, NULL, 1),
(8318, 'Vidya barathi', '5', '9176759355', '9342538801', '3001vidyaa@gmail.com', '1993-11-30', 28, '2', '2', 'Dayalan.S', 'Electician', 8000.00, 2, 15000.00, 17000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2203310010', '1', '2', 'upload_files/candidate_tracker/90877363033_Vidya Resume.pdf', NULL, '1', '2022-03-31', 0, '', '5', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain. past 2yrs as doing fashion design and doing it. expt 17-18k. avg convincing and sales skills.', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-31 12:26:50', 58, '2022-04-01 03:32:45', 0, NULL, 1),
(8319, 'R priya', '4', '9150049863', '8608572385', '3001vidyaa@gmail.com', '1995-07-15', 26, '2', '2', 'S raja', 'Security', 10000.00, 1, 15000.00, 17000.00, 'Manapakkam', 'Manapakkam', '2203310011', '1', '2', 'upload_files/candidate_tracker/26795358678_priya resume.pdf', NULL, '1', '2022-03-31', 0, '', '2', '8', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has to check for renewal and whether coming without her friend for interview.was working in apollo clg as admin with 15k. expt the same.', '1', '1', '', '1', '1', '', '2', '2022-04-01', '2', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-03-31 12:33:19', 58, '2022-04-01 03:31:31', 0, NULL, 1),
(8320, 'LOGESH S', '4', '8754956863', '9790556863', 'logeshsenthil55@gmail.com', '2002-07-05', 19, '2', '2', 'SENTHIL R', 'Sipcort', 20000.00, 1, 0.00, 250000.00, 'Chennimalai', 'Chennimalai', '2203310012', '1', '1', 'upload_files/candidate_tracker/46392654415_Resume.pdf', NULL, '3', '2022-03-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-03-31 01:22:54', 85, '2022-03-31 03:33:20', 0, NULL, 1),
(8321, 'Vaishnavi. B', '4', '7397711994', '7502211994', 'Vaishnavibalaji19121999@gmail.com', '1999-12-19', 22, '2', '2', 'Balaji.t', 'Dtp operator', 15000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2203310013', '1', '1', 'upload_files/candidate_tracker/12654650387_VAISHNAVI BALAJI-1.pdf', NULL, '3', '2022-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-03-31 03:44:00', 1, '2022-03-31 03:48:50', 0, NULL, 1),
(8322, '', '0', '9344624012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 05:50:25', 0, NULL, 0, NULL, 1),
(8323, '', '0', '8124493894', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 05:58:44', 0, NULL, 0, NULL, 1),
(8324, 'Mohanraj', '5', '9343624012', '9176997144', 'mohansam0910@gmail.com', '1994-10-30', 27, '2', '1', 'Vijayalakshmi', 'Teacher', 30000.00, 0, 23000.00, 28000.00, 'Chennai', 'Chennai', '2203310016', '23', '2', 'upload_files/candidate_tracker/42654114576_MOHAN RESUME-converted.pdf', NULL, '1', '2022-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-03-31 07:30:18', 1, '2022-03-31 07:37:37', 0, NULL, 1),
(8325, '', '0', '9994963324', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2203310017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-03-31 10:19:13', 0, NULL, 0, NULL, 1),
(8326, 'Dhivya Ravi', '4', '9884269426', '9094764436', 'dhivyabandaru@gmail.com', '1997-02-23', 25, '2', '1', 'Mohammed Mushtaq R', 'Project support engineer', 19000.00, 1, 23000.00, 25000.00, 'Chennai', 'Pallavaram', '2204010001', '1', '2', 'upload_files/candidate_tracker/87794990569_Dhivya Ravi Resume.docx', NULL, '1', '2022-04-01', 0, '', '1', '53', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-01 08:06:06', 1, '2022-04-01 08:09:53', 0, NULL, 1),
(8327, 'Rahul. S', '6', '8248078584', '', 'Rahulofficial303@gmail.com', '2000-07-09', 21, '2', '2', 'D. Selva Raja', 'Building contractor', 25000.00, 0, 12000.00, 15000.00, 'Veerapandi Perivuu, Coimbatore', 'Brindhavan Pg Plat No. 60, Thirumali Nager', '2204010002', '1', '2', 'upload_files/candidate_tracker/57886382581_RESUME.Pdf.pdf', NULL, '1', '2022-04-01', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-01 10:04:45', 60, '2022-04-05 05:17:16', 0, NULL, 1),
(8328, 'Jagadheesan Ak', '4', '9361122514', '', 'Akjothi65@gmail.com', '2001-01-24', 21, '2', '2', 'Mr.Saravanan', 'Yes', 25.00, 1, 15.00, 15.00, 'Arakkonam', 'Arakkonam', '2204010003', '1', '2', 'upload_files/candidate_tracker/18702223867_1646729815001_1646578064301_UTIITSL_ePAN_G057371637_04032022_224738.pdf', NULL, '2', '2022-04-01', 1, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-04-01 10:38:20', 1, '2022-04-01 11:05:17', 0, NULL, 1),
(8329, 'Avinash', '31', '9500060182', '', 'Vavinash716@gmail.com', '1999-06-30', 22, '2', '2', 'Veeragan', 'Information Technology', 1.50, 2, 0.00, 1.50, 'Thiriyalam(Po/vill), tirupatture(dt)', 'Paddapi', '2204010004', '1', '1', 'upload_files/candidate_tracker/65683896678_Avinash Resume_Professional Resume – 01.pdf', NULL, '1', '2022-04-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-04-01 10:38:21', 1, '2022-04-01 10:44:59', 0, NULL, 1),
(8330, 'Kaviya s m', '4', '9087576772', '', 'sm.kaviya15@gmail.com', '1999-06-15', 22, '2', '2', 'Sivakumar s', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Salem', 'Salem', '2204010005', '1', '1', 'upload_files/candidate_tracker/72660949515_KAVIYA RESUME-converted.pdf', NULL, '3', '2022-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-01 11:24:51', 1, '2022-04-04 08:49:53', 0, NULL, 1),
(8331, 'velmurgan', '4', '9344562938', '', 'astagan12@gmail.com', '1995-12-12', 26, '2', '2', 'aYasamY', 'Farmer', 30000.00, 1, 0.00, 150000.00, 'kadalur', 'Kadalur', '2204010006', '1', '1', 'upload_files/candidate_tracker/59787615530_Resume22.pdf', NULL, '2', '2022-04-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '', '', '', '1', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-01 11:44:28', 85, '2022-04-01 12:04:30', 0, NULL, 1),
(8332, 'Shaik aleemudin H N', '5', '7904845693', '', 'aleemudin11@gmail.com', '1998-11-11', 23, '3', '2', 'Niyamathullah', 'Real-estate', 200000.00, 2, 18000.00, 25000.00, 'Royapettah', 'Royapettah', '2204010007', '', '2', 'upload_files/candidate_tracker/6643861173_ALEEM RESUME (2) (1) (1).pdf', NULL, '1', '2022-04-01', 0, '', '3', '59', '2022-04-07', 261700.00, '', '5', '1970-01-01', '1', 'Selected for Kannan Team - PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-01 11:51:09', 60, '2022-04-06 01:09:52', 0, NULL, 1),
(8333, 'JOY JOE', '13', '8838045140', '9751845013', 'j.joyjoe92@gmail.com', '1992-05-06', 29, '2', '2', 'Jesu rethinam', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Devakottai', 'Chennai', '2204010008', '1', '1', 'upload_files/candidate_tracker/86383078016_obb9d-8qpyd.pdf', NULL, '1', '2022-04-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1009', '', NULL, NULL, NULL, 1, '2022-04-01 11:53:28', 84, '2022-04-01 12:21:53', 0, NULL, 1),
(8334, '', '0', '9524368327', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204010009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-01 12:07:50', 0, NULL, 0, NULL, 1),
(8335, 'Preethi', '4', '9884816927', '9500189463', 'Preethikanmani9@gmail.com', '1990-12-18', 31, '1', '2', 'Chandirakumaran', 'Eletrition', 20000.00, 1, 15000.00, 15000.00, 'Chennai', 'Teynampet', '2204010010', '', '2', 'upload_files/candidate_tracker/90147611366_D NARAYANA RAO.PDF', NULL, '1', '2022-04-26', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-01 12:46:10', 1, '2022-04-26 01:15:37', 0, NULL, 1),
(8336, 'Subathra', '16', '9384642981', '9941272779', 'subathrareddy123@gmail.com', '1997-05-16', 24, '1', '2', 'Sithureddy', 'Tea man', 20000.00, 1, 13000.00, 15000.00, 'No 6 Divya homes ganapathi colony 1st Street St', 'Chennai', '2204010011', '', '2', 'upload_files/candidate_tracker/82409211191_SUBATHRA S.pdf', NULL, '1', '2022-04-01', 10, 'Experience', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-01 01:07:44', 1, '2022-04-01 01:21:55', 0, NULL, 1),
(8337, 'a.Rajalakshmi', '16', '7397343630', '6381299986', 'rajihlakshmi862@gmail.com', '1996-10-10', 25, '2', '2', 'anbu', 'milkman', 120000.00, 1, 13000.00, 15000.00, 'mettukuppam maduroyuval chenni', 'mettukuppam maduroyuval chenni', '2204010012', '1', '2', 'upload_files/candidate_tracker/94444335362_Rajalakshmi_Resume.pdf', NULL, '1', '2022-04-01', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-01 01:07:59', 1, '2022-04-01 01:15:17', 0, NULL, 1),
(8338, '', '0', '8610966929', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204010013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-01 04:55:54', 0, NULL, 0, NULL, 1),
(8339, 'B.Akash', '4', '7708182215', '', 'akashbalanas312@gmail.com', '1999-12-22', 22, '2', '2', 'M.Balasubramani', 'Electrician', 14000.00, 1, 10000.00, 15000.00, 'Erode', 'Erode', '2204010014', '1', '2', 'upload_files/candidate_tracker/91050511699_B.Akash resume 1_Akash Balan.docx', NULL, '3', '2022-04-01', 30, '', '3', '59', '2022-05-16', 132000.00, '', '3', '2022-05-27', '2', 'Selected for Erode - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-04-01 05:00:58', 60, '2022-05-14 02:45:33', 0, NULL, 1),
(8340, 'G Bharathi', '4', '7558124134', '', 'Tharatamil143@gmail.com', '1997-08-16', 24, '2', '1', 'Tamil arasan', 'Self-employed', 15000.00, 1, 10000.00, 15000.00, 'Mettur ,Salem district', 'Mettur', '2204040001', '1', '2', 'upload_files/candidate_tracker/13102181175_Bharathiresume.pdf', NULL, '3', '2022-04-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Around 55kms from Erode,Married have Kid,Difficult in travel for a long will not sustain', '1', '2', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-04 10:32:44', 85, '2022-04-04 11:32:08', 0, NULL, 1),
(8341, '', '0', '9994211879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204040002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-04 10:52:03', 0, NULL, 0, NULL, 1),
(8342, 'divya.s', '4', '8610866929', '8124251417', 'divyasuresh97@gmail.com', '1997-09-22', 24, '2', '1', 'suresh', 'business', 50000.00, 1, 0.00, 12000.00, 'kottur chennai', 'chennai', '2204040003', '1', '1', 'upload_files/candidate_tracker/9216730033_Divya Updated .pdf', NULL, '1', '2022-04-04', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,No basic knowledge in telecalling,if she comes back lets try', '1', '1', '0', '1', '1', '0', '2', '2022-04-05', '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-04 10:56:38', 1, '2022-04-04 11:01:21', 0, NULL, 1),
(8343, '', '0', '7397017044', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204040004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-04 10:57:10', 0, NULL, 0, NULL, 1),
(8344, 'E.Rahul', '4', '8939164475', '9884687402', '0221370163pulcs@gmail.com', '1998-04-08', 23, '2', '2', 'P.Elangovan', 'Car driver', 25000.00, 1, 20000.00, 21500.00, 'Chennai', 'Virugambakkam chennai', '2204040005', '1', '2', 'upload_files/candidate_tracker/51149674280_resume rahul.docx', NULL, '1', '2022-04-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-04 12:27:35', 85, '2022-04-05 11:39:49', 0, NULL, 1),
(8345, 'Suriya s', '4', '6380014480', '9629380738', 'Suriyasridhar07@gmail.com', '1997-10-25', 24, '3', '2', 'S.Selvi', 'Housewife', 10000.00, 1, 13000.00, 14000.00, 'Madurai', 'Chennai', '2204040006', '', '2', 'upload_files/candidate_tracker/78424524775_2022 JATHAGAM.pdf', NULL, '1', '2022-04-04', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to schedule for 2nd round RE profile', '1', '2', '0', '1', '1', '0', '2', '2022-04-05', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-04 12:32:20', 1, '2022-04-04 12:53:17', 0, NULL, 1),
(8346, 'Indhu.g', '4', '8778969909', '', 'Indhukarnela07@gmail.com', '2002-02-07', 20, '2', '2', 'Nil', 'Nil', 10000.00, 0, 16000.00, 18000.00, 'Amijikarai', 'Amijikarai', '2204040007', '1', '2', 'upload_files/candidate_tracker/8252383631_2022 JATHAGAM.pdf', NULL, '1', '2022-04-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Frequent Job Changes,Lot of health issue and leave issues a lot with previous companies,will not sustain for a long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-04 02:29:16', 85, '2022-04-04 03:30:06', 0, NULL, 1),
(8347, 'Haritha T', '4', '9025617190', '', 'haritj1904@gmail', '1997-07-19', 24, '2', '1', 'Vignesh', 'Employer in private sector', 40.00, 1, 0.00, 25.00, 'Sankari,salem', 'Sankari,salem', '2204040008', '1', '1', 'upload_files/candidate_tracker/44849921306_Haritha 1904 T.docx', NULL, '2', '2022-04-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Distance around 48 kms, married have a kid, daily travel doubtful, need time to discuss with her husband,Also she may relocate to Chennai,Long Run with CAFS doubtful,Seems dilemma in Voice/Non voice process too,if she comes back arrange her for a F2F in Erode', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-04 03:35:35', 1, '2022-04-04 03:52:45', 0, NULL, 1),
(8348, 'Dhanush R', '21', '9884104944', '9884545104', 'dhanushdhanu262000@gmail.com', '2000-12-26', 21, '2', '2', 'Parents', 'Pvt Transport supervisor', 15000.00, 0, 15000.00, 18000.00, 'Attipattu', 'Attipattu', '2204050001', '1', '2', 'upload_files/candidate_tracker/2932021077_Dhanush resume one sheet.pdf', NULL, '3', '2022-04-07', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-05 11:42:42', 1, '2022-04-05 11:59:31', 0, NULL, 1),
(8349, 'Nandhini', '5', '8124796567', '8148991773', 'abhinandhu0728@gmail.com', '2000-06-07', 21, '2', '2', 'Guardian', 'Leather inspection', 20000.00, 0, 0.00, 19000.00, 'Kolathur', 'Kolathur', '2204050002', '1', '2', 'upload_files/candidate_tracker/99359432879_pdf.pdf', NULL, '1', '2022-04-05', 0, '', '3', '59', '2022-04-07', 170496.00, '', '5', '1970-01-01', '2', 'Selected for B2B - Staff role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', 'Offer Mail Sent', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-04-05 12:09:41', 60, '2022-04-06 03:31:46', 0, NULL, 1),
(8350, 'Mohammed Raffik', '11', '7092051692', '8608990059', 'mhdraffik1993@gmail.com', '1994-09-23', 27, '2', '2', 'A.K Mohideen Gaffar', 'Journalists Editor', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Pudupet', '2204050003', '1', '1', 'upload_files/candidate_tracker/50851428136_Microsoft Word - RESUME.pdf', NULL, '3', '2022-04-05', 0, '', '5', '83', NULL, 0.00, '', '0', NULL, '2', 'will not be suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-05 12:31:14', 1, '2022-04-05 12:48:38', 0, NULL, 1),
(8351, 'Ananth', '4', '9159453371', '', 'ananthp561997@gmail.com', '1997-06-05', 24, '2', '2', 'Palani samy', 'Farmers', 13000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2204050004', '1', '1', 'upload_files/candidate_tracker/39348994733_1629352922294Resume_Ananth.pdf', NULL, '3', '2022-04-07', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not suitable for pressure handling he is like non-voice process only', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-05 01:14:32', 85, '2022-04-07 01:04:41', 0, NULL, 1),
(8352, 'Kavitha', '4', '9789044032', '', 'Kavithasundaresan14@gmail.com', '1999-06-14', 22, '3', '2', 'Premila', 'Corporation', 10000.00, 2, 0.00, 13000.00, 'Vellore', 'Perambur', '2204050005', '', '1', 'upload_files/candidate_tracker/54440469566_KAVI RESUME 1ST(1) (1).pdf', NULL, '1', '2022-04-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Much focusing on Accounts xxamp Non voice process only\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-05 01:30:38', 60, '2022-04-05 02:23:15', 0, NULL, 1),
(8353, 'Kowsalya suresh', '4', '8248803807', '9894670234', 'kowsalyasureshkowsisri@gmail.com', '1999-07-14', 22, '2', '2', 'Suresh', 'Powerloom workers', 100000.00, 1, 15000.00, 15000.00, 'Erode', 'Erode', '2204050006', '1', '2', 'upload_files/candidate_tracker/14670391337_Kowsalya Resume.pdf', NULL, '3', '2022-04-05', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-05 01:40:24', 1, '2022-04-05 01:44:22', 0, NULL, 1),
(8354, 'Anil Kumar.S', '21', '9944737234', '', 'anibabysb@gmail.com', '1990-06-20', 31, '3', '1', 'Sandhya.R', 'Farmer', 90000.00, 0, 19000.00, 18000.00, 'Kanyakumari', 'Chennai', '2204050007', '', '2', 'upload_files/candidate_tracker/7172271248_Anil Resume modified20022.docx', NULL, '1', '2022-04-05', 50422, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no communication,career Gap,not much serious with the job,will not sustain and not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-05 03:32:31', 1, '2022-04-05 03:51:41', 0, NULL, 1),
(8355, 'Mugunthan', '14', '7708204006', '7339064043', 'hasanmohamed473guy@gmail.com', '1999-05-17', 22, '2', '2', 'Jaisankar', 'Driver', 20000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2204050008', '23', '2', 'upload_files/candidate_tracker/4170755887_Mugunthan IT-1.docx', NULL, '1', '2022-04-07', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-05 04:10:12', 1, '2022-04-05 04:29:15', 0, NULL, 1),
(8356, 'Logapriya', '4', '6374134322', '4820183230', 'LOGAPRIYAKST@GMAIl.COM', '2000-11-11', 21, '2', '2', 'Kulandhaivel', 'Agriculture', 15000.00, 0, 0.00, 10000.00, 'Thalakulam Bhavani', 'Thalakulam Bhavani', '2204050009', '1', '1', 'upload_files/candidate_tracker/97388372064_Resume logapriya.pdf', NULL, '1', '2022-04-06', 0, '', '3', '59', '2022-04-06', 126312.00, '', '4', '2022-09-08', '1', 'Selected for Erode - Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-05 04:26:11', 60, '2022-04-06 05:28:29', 0, NULL, 1),
(8357, '', '0', '7397334656', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204050010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-05 06:41:35', 0, NULL, 0, NULL, 1),
(8358, '', '0', '9954737135', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204050011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-05 08:02:09', 0, NULL, 0, NULL, 1),
(8359, '', '0', '9047867703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-05 08:46:51', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8360, 'Nandha Kumar M', '6', '9025957660', '7092881229', 'Nk9423147@gmail.com', '2000-06-14', 21, '2', '2', 'Murugan', 'Sapathi', 100000.00, 3, 0.00, 15000.00, 'velachery', 'Velachery', '2204060001', '1', '1', 'upload_files/candidate_tracker/60326955340_Nandha resume.docx', NULL, '1', '2022-04-06', 0, '', '4', '82', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile,fresher for Insurance Sales,have Career Gap kindly check and let me know your interest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-06 11:03:35', 60, '2022-04-06 06:29:25', 0, NULL, 1),
(8361, 'Thiruselvi', '4', '6382462032', '9629420083', 'selvihari7@gmail.com', '1997-11-25', 24, '2', '2', 'Saravan', 'Nill', 50000.00, 2, 0.00, 17000.00, 'Tiruppur', 'Tiruppur', '2204060002', '1', '1', 'upload_files/candidate_tracker/97318299525_Resume.docx', NULL, '1', '2022-04-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-06 11:19:32', 85, '2022-04-06 04:29:00', 0, NULL, 1),
(8362, 'GUNASEELAN A', '4', '6369865570', '8925335904', 'GUNASEELAN6369@gmail.com', '1998-11-08', 23, '2', '2', 'ARUMUGAM P', 'Former', 30000.00, 2, 0.00, 15000.00, 'Pattanam', 'Velachery', '2204060003', '1', '1', 'upload_files/candidate_tracker/63186323689_Gunaseelan Resume.docx', NULL, '1', '2022-04-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication ,will not sustain and not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-04-06 11:29:16', 1, '2022-04-06 11:44:02', 0, NULL, 1),
(8363, 'Ravina F', '6', '7550346057', '9952039456', 'ravinashyam24073@gmail.com', '2002-02-09', 20, '1', '2', 'Dhanasekaran', 'Fisherman', 80000.00, 1, 13000.00, 15000.00, '460 jeevarathinam nagar', 'Kasimedu royapuram', '2204060004', '', '2', 'upload_files/candidate_tracker/14599896833_RAVINA.D%20BIO%20DATA%2029.03.2022.docx', NULL, '1', '2022-04-06', 0, 'P1065', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate is ok , kindly confirm the joining date ... ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-06 01:50:31', 60, '2022-04-06 06:29:47', 88, '2022-09-13 05:50:48', 0),
(8364, '', '0', '8056033734', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204060005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-06 02:43:18', 0, NULL, 0, NULL, 1),
(8365, 'Dhana lakshmi. P', '4', '9488086002', '9597874433', 'Pmadkumar000@gmail.com', '2001-05-07', 20, '1', '2', 'Peryasami. S', 'Taliner', 10000.00, 1, 0.00, 10000.00, 'Thindal', 'Thindal', '2204060006', '', '1', 'upload_files/candidate_tracker/74473848896_dhana resume.docx', NULL, '1', '2022-04-06', 0, 'CA131', '3', '59', '2022-04-06', 126312.00, '', '4', '2022-12-01', '2', 'Selected for Erode - Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-04-06 04:21:40', 60, '2022-08-16 07:46:13', 0, NULL, 1),
(8366, 'Logapriya. K', '4', '9489153124', '6374134322', 'Logapriyakst@gamil.com', '2000-11-11', 21, '3', '2', 'Kulandhaivel. P', 'Agriculture', 15000.00, 0, 0.00, 10000.00, 'Thalakulam Bhavani', 'Thalakulam Bhavani', '2204060007', '', '1', 'upload_files/candidate_tracker/78134695106_Resume logapriya.pdf', NULL, '1', '2022-04-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-06 04:24:56', 1, '2022-04-06 04:27:27', 0, NULL, 1),
(8367, '', '0', '7904294117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204060008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-06 06:54:42', 0, NULL, 0, NULL, 1),
(8368, 'Balaji', '29', '8428102769', '', 'D.v.balaji1234@gmail.com', '1999-02-04', 23, '2', '2', 'Devendran', 'Maeson', 14000.00, 1, 0.00, 18000.00, 'Kundrathur', 'Pudhu nallur', '2204060009', '1', '2', 'upload_files/candidate_tracker/21870466182_D.BALAJI.docx', NULL, '3', '2022-04-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-06 07:00:42', 1, '2022-04-06 07:21:12', 0, NULL, 1),
(8369, 'Rakesh', '4', '8610374149', '', 'chiyaan5799@gmail.com', '1999-02-06', 23, '2', '2', 'Ramesh', 'Security', 20000.00, 2, 18000.00, 18000.00, 'ROYAPETTAH', 'ROYAPETTAH', '2204070001', '1', '2', 'upload_files/candidate_tracker/44301756268_RAKESH Resume.pdf', NULL, '1', '2022-04-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-07 09:50:28', 1, '2022-04-07 09:54:25', 0, NULL, 1),
(8370, 'pavithra s', '11', '8122022337', '', 'pavithrahema98@gmail.com', '1998-06-11', 23, '2', '2', 'sekar a', 'data associate', 50000.00, 1, 325000.00, 600000.00, 'chennai', 'thiruvarur', '2204070002', '1', '2', 'upload_files/candidate_tracker/55260750266_Pavithra_SH.pdf', NULL, '2', '2022-04-07', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate communication is good. working in Amazon with 30 days notice. she is a fresher for recruitment. Her current salary is 3.25 lPA and her min expectation is 4.5 lpa being a fresher for recruitment. will focus much on the salary, sustainability doubts based on her expectations', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-07 10:04:12', 1, '2022-04-07 10:22:34', 0, NULL, 1),
(8371, 'Parasudeen', '4', '8190807873', '9003084110', 'parasudeen@gmail.com', '1996-09-19', 25, '2', '2', 'Shajahan', 'Iron and steel business', 35000.00, 3, 11500.00, 18000.00, 'Adambakkam chennai', 'Adambakkam chennai', '2204070003', '1', '2', 'upload_files/candidate_tracker/6245920196_Resume Parasudeen.docx', NULL, '1', '2022-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up, Prefer to go in non voice only, not comfort in Target/Pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-07 10:56:28', 1, '2022-04-07 10:59:58', 0, NULL, 1),
(8372, 'Sathish k', '4', '9080207604', '8883124246', 'Sathishkumarskm96@gmail.com', '1996-01-12', 26, '2', '2', 'Kumar s', 'Labour', 50000.00, 3, 0.00, 15000.00, 'Nagapattinam', 'Chennai', '2204070004', '1', '1', 'upload_files/candidate_tracker/95239232080_sathish resume.pdf', NULL, '1', '2022-04-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot,Will not handle the pressure,much prefer for Non Voice only', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-07 11:59:20', 85, '2022-04-07 12:43:47', 0, NULL, 1),
(8373, 'Sivaraman M', '4', '8825458702', '7708070342', 'msiva0342@gmail.com', '1998-06-06', 23, '2', '2', 'Madhavan N', 'Flower shop merchant', 10000.00, 1, 12000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2204070005', '1', '2', 'upload_files/candidate_tracker/1144479631_SIVARAMAN-Resume.docx', NULL, '3', '2022-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-04-07 12:04:06', 1, '2022-04-07 12:10:32', 0, NULL, 1),
(8374, '', '0', '9962051754', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-07 12:25:09', 0, NULL, 0, NULL, 1),
(8375, 'Saranya s', '6', '7397331388', '6381334688', 'Saranyasaro550@gmail.com', '2000-12-12', 21, '4', '2', 'Shankar', 'Driver', 20000.00, 1, 10000.00, 20000.00, '32/4 Devi Bhavani ellaiamman Kovil Street otteri', 'Purasawalkam', '2204070007', '', '2', 'upload_files/candidate_tracker/36916677571_saranya s.pdf', NULL, '1', '2022-04-07', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile,have 5 months Exp in Telecalling,Sustainability Doubt,but can give a try kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-07 12:28:18', 60, '2022-04-07 05:24:06', 0, NULL, 1),
(8376, 'Lakshmanan.v', '4', '8754640995', '9500381850', 'Lakshram485@gmail.com', '2000-12-05', 21, '2', '2', 'Varatharajan.r', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2204070008', '1', '1', 'upload_files/candidate_tracker/63125091115_Resume lax 2.pdf', NULL, '3', '2022-04-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'we shared the offer proposal,but He is going with another offer', '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-07 12:39:39', 1, '2022-04-07 01:13:48', 0, NULL, 1),
(8377, 'Sanjay Kumar', '4', '9790172734', '9042666227', 'sksanjaykumar1921@gmail.com', '2001-05-19', 20, '2', '2', 'Sangeeta', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2204070009', '1', '1', 'upload_files/candidate_tracker/70910937106_Sanjay K.pdf', NULL, '1', '2022-04-07', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '1', 'he is not suitable for tele sales', '1', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-07 12:39:41', 1, '2022-04-07 12:53:20', 0, NULL, 1),
(8378, '', '0', '8110885193', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204070010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-07 01:27:01', 0, NULL, 0, NULL, 1),
(8379, '', '0', '8270400419', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '2', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-07 04:24:56', 0, NULL, 0, NULL, 1),
(8380, 'Vishnu priya . C', '4', '6369899908', '6374762383', 'Priyavishnu2517@gmail.com', '2000-10-17', 21, '2', '2', 'Chandru kumar . G N', 'Business', 25000.00, 1, 0.00, 13000.00, 'Gobi', 'Gobi', '2204070012', '1', '1', 'upload_files/candidate_tracker/88584797491_Vishnu priya.pdf', NULL, '1', '2022-04-12', 0, '', '3', '59', '2022-04-13', 126312.00, '', '3', '2022-11-01', '2', 'Selected for Erode Consultant Role - 5% TDS', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-07 05:08:17', 60, '2022-04-12 06:06:17', 0, NULL, 1),
(8381, '', '0', '7010092595', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204070013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-07 08:05:06', 0, NULL, 0, NULL, 1),
(8382, 'JOHN FRANCIS', '4', '8248138233', '9003199594', 'john0612prakash@gmail.com', '1999-08-06', 22, '2', '2', 'SUGANTHI', 'House wife', 25000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2204070014', '1', '1', 'upload_files/candidate_tracker/24583800561_John resume.doc', NULL, '1', '2022-04-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking much for backend operations,Tried for our operation by giving him written task but not upto the mark as we expected.Will not sustain in Telecalling Sales', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-07 10:49:33', 85, '2022-04-08 10:52:33', 0, NULL, 1),
(8383, 'Shanmuhe sekar', '16', '9361037399', '', 'shanmuhesiva@gmail.com', '1992-03-07', 30, '2', '1', 'Sivaselvan v', 'Software Engineer', 70000.00, 1, 120000.00, 300000.00, 'Chennai', 'Chennai', '2204080001', '1', '2', 'upload_files/candidate_tracker/40542572944_Shanmuhe resume-5.docx', NULL, '2', '2022-04-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-08 10:53:12', 1, '2022-04-08 11:00:08', 0, NULL, 1),
(8384, 'S.Sharunkumar', '4', '8925401570', '', 'shasharun875@gmail.com', '1998-10-09', 23, '2', '2', 'Mother name: kalaivani.S ,Sridhar.S', 'Telecaller', 125000.00, 2, 0.00, 12000.00, 'Chennai ,saidapet', 'Chennai ,saidapet', '2204080002', '1', '1', 'upload_files/candidate_tracker/58454890715_S.Sharunkumar Resume.pdf', NULL, '1', '2022-04-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open up a lot, will not handle the pressure not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-08 11:02:22', 1, '2022-04-08 11:18:15', 0, NULL, 1),
(8385, '', '0', '6379250818', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204080003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-08 11:20:37', 0, NULL, 0, NULL, 1),
(8386, 'Pavithra', '16', '8838019568', '', 'pavithrakrish2025@gmail.com', '2000-12-25', 21, '2', '2', 'Krishnamoorthy', 'Supervisor', 30000.00, 1, 0.00, 15000.00, 'Tambaram Sanatorium', 'Tambaram Sanatorium', '2204080004', '1', '2', 'upload_files/candidate_tracker/12527810678_PAVITHRA K-RESUME.pdf', NULL, '1', '2022-04-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication ok,already holds offer near to her home,much focus towards the accounts profile,will not sustain and handle pressure doubtful - Not Suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-08 11:57:44', 60, '2022-04-08 05:31:09', 0, NULL, 1),
(8387, 'Vignesh kumar', '5', '9791195387', '9176012041', 'Vkrvicky@gmail.com', '1995-09-21', 26, '2', '2', 'Ramesh', 'Business', 25000.00, 1, 30000.00, 40.00, 'Chennai', 'Anna nagar east', '2204080005', '14', '2', 'upload_files/candidate_tracker/74979508384_Vignesh Resume-2.docx', NULL, '1', '2022-04-08', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'Attitude issue. ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-08 11:58:47', 1, '2022-04-08 12:03:38', 0, NULL, 1),
(8388, 'Vijay Ananthan', '5', '9841111915', '', 'Vijayananthan@yamail.com', '1987-12-24', 34, '1', '1', 'Mithra', 'House wife', 25000.00, 0, 25000.00, 28000.00, 'Chennai', 'Saligramam', '2204080006', '', '2', 'upload_files/candidate_tracker/13028500947_16494022643662341374295647983061-converted-compressed.pdf', NULL, '1', '2022-04-08', 30, '55559', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'REJECTED ', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-08 12:38:45', 1, '2022-04-08 12:49:43', 0, NULL, 1),
(8389, 'Ashwini', '7', '6369076708', '9566194818', 'ashwini1999t@mail.com', '1999-03-20', 23, '2', '2', 'Thirupathi', 'Security', 30000.00, 1, 13000.00, 18000.00, 'Tondiarpet', 'Tondiarpet', '2204080007', '1', '2', 'upload_files/candidate_tracker/81297537136_2022 JATHAGAM.pdf', NULL, '1', '2022-04-09', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication just a manageble, not much strong in the areas of Excel,Will not handle our pressure,will not sustain in our roless\n', '7', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-08 01:19:24', 87, '2022-04-09 11:20:13', 0, NULL, 1),
(8390, 'Berlin nayagam', '6', '8525021167', '', 'berlinnayagam03@gmail.com', '1996-09-09', 25, '2', '2', 'Sahaya angela', 'Skill development', 20000.00, 3, 0.00, 200000.00, 'Chennai', 'Chennai', '2204080008', '1', '1', 'upload_files/candidate_tracker/71592912672_Berlin resume pdf ch.pdf', NULL, '1', '2022-04-08', 0, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Intrest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 01:43:09', 60, '2022-04-08 05:40:43', 0, NULL, 1),
(8391, 'Sundaram M', '6', '8838732967', '9095606628', 'meensundar5@gmail.com', '1996-05-22', 25, '1', '2', 'Poovayee M', 'Century worker', 20000.00, 3, 0.00, 15000.00, 'Erode', 'Erode', '2204080009', '', '1', 'upload_files/candidate_tracker/19576537502_Resume - Sundaran-1 (1).pdf', NULL, '1', '2022-04-08', 0, 'P1303', '8', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have to validate again by Suthagar', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-08 02:25:19', 60, '2022-04-08 02:39:23', 0, NULL, 1),
(8392, 'Kuppuraj', '9', '9944818327', '', 'kuppurajvlr@gmail.com', '1977-04-29', 44, '2', '1', 'Gomathi', 'House wife', 40000.00, 3, 35000.00, 45000.00, 'Vellore', 'Tambaram', '2204080010', '14', '2', 'upload_files/candidate_tracker/8260122277_Kuppuraj CV 2022.pdf', NULL, '1', '2022-04-08', 30, '', '5', '18', NULL, 0.00, '', '0', NULL, '1', 'Not fit for us', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-08 02:34:37', 1, '2022-04-08 02:41:50', 0, NULL, 1),
(8393, '', '0', '9360649432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204080011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-08 02:45:01', 0, NULL, 0, NULL, 1),
(8394, 'KOKILAVANI S', '6', '9952154164', '8270400419', 'kokilasivakumar00@gmail.com', '1999-07-03', 22, '2', '2', 'Sivakumar', 'Labour', 12000.00, 1, 7500.00, 10000.00, 'Erode', 'Erode', '2204080012', '1', '2', 'upload_files/candidate_tracker/30303751045_kokila-resume new-converted.docx', NULL, '1', '2022-04-08', 0, '', '8', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have to validate again by suthagar', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 02:48:36', 85, '2022-04-08 03:22:06', 0, NULL, 1),
(8395, 'Aabid Hussain', '16', '8838370973', '', 'HUSSAINVIJAY97@GMAIL.COM', '1997-05-18', 24, '2', '1', 'Wahidha Parveen', 'Home maker', 15000.00, 2, 15000.00, 18000.00, 'Chennai', 'TAMBARAM', '2204080013', '1', '2', 'upload_files/candidate_tracker/85669932056_Resume.pdf', NULL, '1', '2022-04-09', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to train alot in MIS,Location constraint,long run doubtful in our company', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-08 03:08:30', 1, '2022-04-08 11:40:48', 0, NULL, 1),
(8396, 'Keerthika V', '16', '7200689637', '7397360148', 'kv4keerthi@gmail.com', '2001-02-04', 21, '2', '2', 'Venkatavarathan', 'Cooli', 80000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2204080014', '1', '1', 'upload_files/candidate_tracker/39684275110_Keerthika - Resume.pdf', NULL, '1', '2022-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication,Sustainability with the previous exp no not open with TxxampC not open with telecalling Activities', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 03:17:48', 85, '2022-07-19 12:34:02', 0, NULL, 1),
(8397, 'RAJESHKUMAR P G', '1', '8015832802', '', 'pgrajeshkumar24@gmail.com', '1998-06-25', 23, '1', '2', 'GOVINDAIYAN P R', 'Mechanic', 45000.00, 1, 0.00, 25000.00, 'Paramakudi', 'Chennai', '2204080015', '', '1', 'upload_files/candidate_tracker/76717614485_Resume.docx', NULL, '1', '2022-04-08', 0, 'P1065', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice process, will not sustain and not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-08 03:22:19', 60, '2022-04-08 05:32:24', 0, NULL, 1),
(8398, 'Sridhar. K', '5', '9940494797', '', 'Sridhar0127@gmail.com', '1993-01-27', 29, '1', '2', 'Kamalak Kannan . S', 'Wages', 37000.00, 1, 360000.00, 400000.00, 'Chennai', 'Chennai', '2204080016', '', '2', 'upload_files/candidate_tracker/63084557661_Sridhar Updated CV.doc', NULL, '1', '2022-04-08', 1, '55641', '3', '59', '2022-04-11', 400000.00, '', '4', '2022-05-20', '1', 'Selected for Pandian Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Salary has been Provided based on the commitment given by the Sriram Sir', '', '', '', NULL, NULL, NULL, 1, '2022-04-08 03:37:23', 60, '2022-04-11 11:41:39', 0, NULL, 1),
(8399, '', '0', '8270965742', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204080017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-08 03:41:11', 0, NULL, 0, NULL, 1),
(8400, '', '0', '8428822282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204080018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-08 03:57:50', 0, NULL, 0, NULL, 1),
(8401, 'Preatham N', '16', '9962198953', '', 'preathamlodha01@gmail.com', '2001-04-08', 21, '2', '2', 'Rekhadevi', 'Housewife', 10000.00, 0, 12000.00, 16000.00, 'Chennai', 'Chennai', '2204080019', '1', '2', 'upload_files/candidate_tracker/48131330314_preatham resume.pdf', NULL, '1', '2022-04-09', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, not open for the Terms xxamp conditions,will not sustain for a long,no basic knowledge in the Position', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-08 06:56:48', 1, '2022-04-08 07:03:15', 0, NULL, 1),
(8402, 'ashwin s r', '16', '9962765639', '', 'achuravi016@gmail.com', '2000-03-16', 22, '2', '2', 'ravichandran', 'salesman', 30000.00, 2, 15000.00, 20000.00, 'mangadu', 'mangadu', '2204080020', '1', '2', 'upload_files/candidate_tracker/98728476287_Ashiwn Resume.docx', NULL, '3', '2022-04-11', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-08 07:09:59', 1, '2022-04-08 07:20:10', 0, NULL, 1),
(8403, 'Sakthimathan.k', '6', '8667230146', '7502637232', 'Sakthimathan007sm@gmail.com', '1998-10-28', 23, '2', '2', 'Kumar.m', 'Wages', 14000.00, 0, 0.00, 13000.00, 'Erode', 'Erode', '2204080021', '1', '1', 'upload_files/candidate_tracker/54727341537_sakthimathan.pdf', NULL, '1', '2022-04-11', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainabilty doubt so rejected.. existing company working 3 mnth and 6mnth only ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 07:10:21', 60, '2022-04-11 01:07:49', 0, NULL, 1),
(8404, 'Aravind kumar. V', '6', '6383683467', '7825915798', 'aruviak1010@gmail.com', '1998-05-03', 23, '2', '2', 'Vijaya kumar', 'Gold smith', 40000.00, 1, 0.00, 15000.00, 'Balusamy nagar solar', 'Solar', '2204080022', '1', '1', 'upload_files/candidate_tracker/43916248787_Document from aruviak (1).pdf', NULL, '1', '2022-04-11', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'sustainability doubt so rejected.. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 10:34:59', 60, '2022-04-11 01:07:32', 0, NULL, 1),
(8405, 'Kaviya .s', '4', '6374762383', '6369899908', 'kaviyasaravanan710@gmail.com', '2000-11-07', 21, '2', '2', 'Saravanan.k.s', 'Government job', 25000.00, 1, 0.00, 12000.00, 'Gobi', 'Gobi', '2204080023', '1', '1', 'upload_files/candidate_tracker/46210846439_Share KAVIYA CV.pdf', NULL, '1', '2022-04-12', 0, '', '3', '59', '2022-04-13', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Erode Location in Consultant 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-08 11:03:07', 60, '2022-04-12 06:06:33', 0, NULL, 1),
(8406, 'Priyadharshini Ramasamy', '6', '9790361331', '9659958331', 'priyadharshiniramasamy1331@gmail.com', '1997-05-25', 24, '2', '2', 'SELVI R', 'Tea Shop', 12000.00, 2, 13000.00, 14000.00, 'Tiruchengode', 'Tiruchengode', '2204090001', '1', '2', 'upload_files/candidate_tracker/52598286313_PRIYA RESUME 2022 PDF.pdf', NULL, '1', '2022-04-09', 0, '', '3', '59', '2022-04-11', 216000.00, '', '6', '2023-02-09', '2', 'Selected for Erode Suthagar Team with PF/ESI/PT', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-09 10:01:30', 60, '2022-04-10 03:51:25', 0, NULL, 1),
(8407, 'AML PREM SUTHEESH .G', '6', '9659059663', '', 'sutheeshsuthe67@gmail.com', '1999-12-05', 22, '2', '2', 'George', 'fishermen', 25000.00, 3, 0.00, 12000.00, 'kanyakumari', 'chennai', '2204090002', '1', '1', 'upload_files/candidate_tracker/78988845246_Sutheesh.docx', NULL, '2', '2022-04-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - Candidate is not interested to join, plan to go with the same business,also not comfortable with the Take home 12K\n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1004', '', NULL, NULL, NULL, 1, '2022-04-09 10:38:44', 58, '2022-04-09 11:13:38', 0, NULL, 1),
(8408, 'Mohanapriya M.J', '6', '8838418014', '9344332505', 'Jaishankarjai19@gmail.co', '2000-06-09', 21, '2', '2', 'Jayasankar', 'General manager', 25000.00, 1, 0.00, 14000.00, 'Perungudi', 'Perungudi', '2204090003', '1', '1', 'upload_files/candidate_tracker/8959783896_Mohanapriya M.J _Resume_Format12.pdf', NULL, '1', '2022-04-09', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telecaller,can give a try,5050 profile kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-09 11:03:39', 60, '2022-04-11 04:49:25', 0, NULL, 1),
(8409, 'D.sandhiya', '6', '9962943840', '9884301158', 'Sandhiyadhandapani97@gmail.com', '2001-07-09', 20, '2', '2', 'Dhandapani', 'Security', 15000.00, 2, 0.00, 13000.00, 'No.14 kabilar street M.G.R nagar', 'No.14 kabilar street M.G.R nagr', '2204090004', '1', '1', 'upload_files/candidate_tracker/9115501683_sample.pdf', NULL, '1', '2022-04-09', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot,5050 profile kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-09 11:10:13', 60, '2022-04-11 04:49:36', 0, NULL, 1),
(8410, 'Vijayalakshmi', '20', '9952932043', '8754587953', 'vijirams22@gmail.com', '1994-12-22', 27, '2', '1', 'Shanmugam', 'Operating engineer', 25000.00, 1, 13000.00, 17000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2204090005', '1', '2', 'upload_files/candidate_tracker/11820414500_R Vijayalakshmi-1.pdf', NULL, '1', '2022-04-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance,recently married,have exp in sales telecaller,but a career gap she has.will not sustain for a long,much she looks for work from home \n', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-09 01:18:26', 1, '2022-04-09 01:22:27', 0, NULL, 1),
(8411, 'Vignesh A', '4', '8248396802', '8531901380', 'vicky.murugan719@gmail.com', '1997-07-18', 24, '2', '2', 'Arumugam R', 'Tea shop', 100000.00, 1, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2204090006', '1', '1', 'upload_files/candidate_tracker/83134511486_RESUME.pdf', NULL, '3', '2022-04-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-09 04:13:37', 1, '2022-04-09 04:38:19', 0, NULL, 1),
(8412, '', '0', '6383128914', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204090007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-09 04:49:55', 0, NULL, 0, NULL, 1),
(8413, 'Aishwarya.G', '11', '9445930032', '9361627198', 'aishwaryagopal06@gmail.com', '1997-12-06', 24, '2', '2', 'S.Gopalakrishnan', 'Retired', 75000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2204090008', '1', '1', 'upload_files/candidate_tracker/92986007862_CV_2022040510344096.pdf', NULL, '1', '2022-04-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good, Fresher for HR Recruitment, need time to give her confirmation,Sustainability doubts,5050 if she comes back let us try', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-09 04:56:35', 1, '2022-04-09 05:31:51', 0, NULL, 1),
(8414, '', '0', '8778935033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204090009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-09 05:56:02', 0, NULL, 0, NULL, 1),
(8415, 'Mohammed Ismail', '6', '8667430034', '9976822264', 'mohammedismailn23@gmail.com', '1999-03-23', 23, '2', '2', 'Abul Kalam Azad', 'Electrition', 13000.00, 2, 14000.00, 20000.00, 'Salem', 'Salem', '2204110001', '1', '2', 'upload_files/candidate_tracker/7429785032_Mohammed Ismail Resume_2022.PDF', NULL, '1', '2022-04-11', 30, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Intrest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-04-11 09:51:45', 60, '2022-04-11 04:39:28', 0, NULL, 1),
(8416, 'vignesh.m', '31', '9003100957', '', 'vigneshmj128@gmail.com', '1995-08-12', 26, '2', '2', 'murugan', 'coolie', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2204110002', '1', '1', 'upload_files/candidate_tracker/9342567051_RESUME(pdf).pdf', NULL, '2', '2022-04-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Will come for a direct F2F interview', '2', '1', '0', '1', '1', '0', '2', '2022-04-15', '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-11 10:51:38', 1, '2022-04-11 11:00:53', 0, NULL, 1),
(8417, 'Thanusha S', '25', '9150671130', '', 'thanusha11082000@gmail.com', '2000-08-11', 21, '1', '2', 'Sivaraj R', 'Farmer', 10000.00, 1, 0.00, 16500.00, 'Viruddhachalam', 'Viruddhachalam', '2204110003', '', '1', 'upload_files/candidate_tracker/67800689281_Thanusha\'s Resume 3.pdf', NULL, '1', '2022-04-11', 0, 'P1255', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not open up,not suitable', '8', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-11 11:07:13', 1, '2022-04-11 11:15:34', 0, NULL, 1),
(8418, 'Senthil kumar', '5', '6380814427', '', 'Senthil1991ece@gmail.com', '1991-02-22', 31, '3', '2', 'S kumaravel', 'Real estate', 6000.00, 1, 14000.00, 15000.00, 'No 26 shakthivel main road puzhal chennai 600066', 'Same as above', '2204110004', '', '2', 'upload_files/candidate_tracker/22143250063_sathish resume.pdf', NULL, '1', '2022-04-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'need to open a lot, Seems not to be much interested towards the career.Not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-11 11:11:00', 85, '2022-04-11 12:38:37', 0, NULL, 1),
(8419, '', '0', '8722729344', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204110005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-11 11:37:53', 0, NULL, 0, NULL, 1),
(8420, 'P. ABEL', '4', '9345629400', '8903260331', 'abel17502595@gmail.com', '2001-09-15', 20, '2', '2', 'C. PHILLIP', 'CARPENTER', 20000.00, 1, 0.00, 15000.00, '97/2/1 manjakuttai(po) yercaud, salem.', 'Salem', '2204110006', '1', '1', 'upload_files/candidate_tracker/24542293229_ABEL.doc', NULL, '1', '2022-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-11 11:54:30', 1, '2022-04-11 12:04:32', 0, NULL, 1),
(8421, 'Kesavan. K', '4', '9361019592', '7598263776', 'kesavan99yercaud@gmail.com', '1999-07-13', 22, '2', '2', 'Kanagaraj V', 'Formar', 20000.00, 2, 0.00, 15000.00, 'Manjakuttai (po), yercaud(Tk), salem(Dt)', 'Salem', '2204110007', '1', '1', 'upload_files/candidate_tracker/4988429083_KESAVAN. K RESUME.doc', NULL, '1', '2022-04-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-11 11:54:38', 85, '2022-04-11 12:45:07', 0, NULL, 1),
(8422, 'YOKESHWARAN P', '4', '9489852877', '8667284653', 'yknp100399@gmail.com', '1999-03-10', 23, '2', '2', 'PARAMASIVAM', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Yercaud', 'Yercaud', '2204110008', '1', '1', 'upload_files/candidate_tracker/80440796324_CV.pdf', NULL, '1', '2022-04-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-11 11:54:49', 1, '2022-04-11 12:02:34', 0, NULL, 1),
(8423, '', '0', '9677206771', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204110009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-11 04:04:52', 0, NULL, 0, NULL, 1),
(8424, 'Z sulthana begum', '16', '9176456036', '', 'zsulthanabegum20@gmail.com', '1994-12-20', 27, '2', '1', 'Mohammed ibrahim', 'Insurance field', 15000.00, 0, 14500.00, 20000.00, 'Triplicane, chennai', 'Triplicane, chennai', '2204110010', '1', '2', 'upload_files/candidate_tracker/40759135070_CV (Resume).docx', NULL, '1', '2022-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication need to focus ,handling pressure in MIS doubtful,will not sustain,not suitable', '3', '1', '0', '1', '1', '0', '2', '2022-04-13', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-11 04:55:25', 1, '2022-04-11 05:01:06', 0, NULL, 1),
(8425, 'Boopathy S', '4', '8825909824', '7639831832', 'rdx5030@gmail.com', '1999-11-05', 22, '2', '2', 'Saravanan', 'Cook', 20000.00, 1, 0.00, 160000.00, 'Madurai', 'Madurai', '2204110011', '1', '1', 'upload_files/candidate_tracker/25652846069_CV.docx', NULL, '3', '2022-04-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-11 05:39:59', 85, '2022-04-11 06:55:15', 0, NULL, 1),
(8426, '', '0', '7639831832', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-11 05:57:12', 0, NULL, 0, NULL, 1),
(8427, 'Joysri R', '11', '9710039538', '', 'joysrirayappan@gmail.com', '1999-05-07', 22, '2', '2', 'Raghunathan', 'Admin', 300000.00, 1, 240000.00, 300000.00, 'Tambaram', 'Tambaram', '2204110013', '1', '2', 'upload_files/candidate_tracker/76485726310_Joysri\'s Resume (1).pdf', NULL, '1', '2022-04-12', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good,have basic knowledge in Recruitment,Have around 1 yr exp including the internship exp too and her current CTC is 20K and her expectation is more, She needs to travel from tambaram', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-11 07:31:05', 1, '2022-04-11 07:38:05', 0, NULL, 1),
(8428, 'Sridhar M', '4', '9344072858', '', '24srisurya@gmail.com', '2000-09-24', 21, '2', '2', 'Marikrishnan P', 'Nil', 28000.00, 2, 0.00, 18000.00, '34/c santhai madam st,ambasamudram.', 'Opposite to ruby Building,mannivackam.', '2204110014', '1', '1', 'upload_files/candidate_tracker/86287193763_SRIDHAR M resume.pdf', NULL, '1', '2022-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Camdidate need to open up a lot and not interested towards the telecaller,will not sustain for a long', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-11 07:54:06', 1, '2022-04-11 08:05:22', 0, NULL, 1),
(8429, 'Shawn micheal', '4', '7358193257', '', 'Shawn987nov@gmail.com', '2002-11-12', 19, '2', '2', 'Helen', 'House wife', 8000.00, 0, 0.00, 10000.00, 'St.thomesmount,chennai16', 'Guindy', '2204120001', '1', '1', 'upload_files/candidate_tracker/90608215930_Shawn Michael(1).pdf', NULL, '1', '2022-04-12', 0, '', '4', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,not a graduate,19 yrs old family need is there,no parents,Can give a try for Elite Will come for Interview tomorrow, kindly check and let me know your inputs', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-12 02:10:42', 85, '2022-04-12 12:26:34', 0, NULL, 1),
(8430, 'mirunalini', '11', '9080560154', '', 'mirunatg94@gmail.com', '1994-03-01', 28, '2', '2', 'tg', 'officer', 100000.00, 0, 20000.00, 25000.00, 'chennai', 'chennai', '2204120002', '1', '2', 'upload_files/candidate_tracker/43527623381_Mirunaresume27thmarch.pdf', NULL, '2', '2022-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very high CTC exp,Will not sustain in our roles,not suitable', '6', '2', '', '', '', '', '2', '2022-04-12', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-12 10:13:37', 60, '2022-04-12 07:25:43', 0, NULL, 1),
(8431, 'haripriya', '11', '9003201601', '', 'jharipriya@gmail.com', '1996-01-30', 26, '2', '2', 'j', 'officer', 100000.00, 0, 250000.00, 300000.00, 'chennai', 'chennai', '2204120003', '1', '2', 'upload_files/candidate_tracker/90452782006_Naukri_HaripriyaJ[1y_6m].pdf', NULL, '2', '2022-04-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-12 10:20:34', 87, '2022-04-12 10:37:18', 0, NULL, 1),
(8432, 'thamothar v', '20', '8951435197', '', 'thamothar65@gmail.com', '1998-01-10', 24, '2', '2', 'r venkatesh', 'driver', 15000.00, 1, 16000.00, 18000.00, 'karnadaka', 'manali', '2204120004', '23', '2', 'upload_files/candidate_tracker/28933515383_TOMMY RESUME.pdf', NULL, '1', '2022-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped - Didnt come for the interview', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-12 10:49:58', 60, '2022-04-12 11:33:41', 0, NULL, 1),
(8433, '', '0', '6382900968', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-12 10:50:39', 0, NULL, 0, NULL, 1),
(8434, 'mukesh', '16', '8072507355', '', 'hrd@thepathweavers.com', '1998-11-11', 23, '2', '2', 'mg mohan', 'officer', 200000.00, 0, 11000.00, 20000.00, 'chennai', 'chennai', '2204120006', '1', '2', 'upload_files/candidate_tracker/46541084316_MukeshResume.docx', NULL, '2', '2022-04-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too lon distance up and down 50 kms,and not much comfortable with the timings,no much knowledge in the excel, Will not sustain in our roles', '3', '2', '', '', '', '', '2', '1970-01-01', '2', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-12 11:07:20', 60, '2022-04-12 03:05:53', 0, NULL, 1),
(8435, '', '0', '8925124374', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204120007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-12 11:13:18', 0, NULL, 0, NULL, 1),
(8436, 'Manikandan.S', '6', '9488102309', '6369906344', 'manikavi17031998@gmail.com', '1998-03-17', 24, '1', '2', 'Tamilarasi', 'Farmar', 5000.00, 0, 0.00, 15000.00, 'Valaiyappatti kumaravadi Manapparai trichy 621302', 'West mambalam', '2204120008', '', '1', 'upload_files/candidate_tracker/46829901312_RESUME.pdf', NULL, '1', '2022-04-12', 0, 'Jobs', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to open a lot,not much aggressive,5050 profile,do check and let me know ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-12 11:16:28', 60, '2022-04-12 05:05:01', 0, NULL, 1),
(8437, 'Sumathi s', '11', '9840789863', '8925124374', 'Sumihp1316@gmail.com', '2000-03-16', 22, '4', '1', 'Gopinath', 'Deputy officer', 18000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2204120009', '', '1', 'upload_files/candidate_tracker/25452551101_Sumathi (1) (1) resume.pdf', NULL, '1', '2022-04-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have basic knowledge in recruitment, have internship Exp but the communication is not upto the mark as we expected.', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-12 11:22:37', 1, '2022-04-12 11:24:43', 0, NULL, 1),
(8438, 'Shahida banu', '4', '7338990738', '7338920738', 'leehida29@gmail.com', '1985-01-01', 37, '1', '2', 'Khadar', 'Retire', 20000.00, 1, 0.00, 20000.00, 'Sri Ranga mahalakshmi ladies Hostel', 'Chennai', '2204120010', '', '1', 'upload_files/candidate_tracker/19671405759_SHAHIDA BANU.docx', NULL, '1', '2022-04-12', 0, 'P1290', '4', '60', NULL, 0.00, '', '0', NULL, '2', 'selected for e sales', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-12 11:47:35', 1, '2022-04-12 12:00:14', 0, NULL, 1),
(8439, 'P. Iswarya', '4', '9655995198', '9843386549', 'Aishwaryasweet9655@gmail.com', '2002-04-09', 20, '2', '2', 'N. Palanisamy', 'Tailor', 30000.00, 3, 0.00, 11000.00, 'Tirupur', 'Tirupur', '2204120011', '1', '1', 'upload_files/candidate_tracker/3981113548_resume aishu.pdf', NULL, '1', '2022-04-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate can join only after completing their College Studies', '1', '2', '', '4', '7', '', '2', '2022-05-31', '2', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-04-12 11:55:33', 60, '2022-04-12 03:25:11', 0, NULL, 1),
(8440, 'Karthika devi', '4', '7358927724', '9003586272', 'karthikad213@gmail.com', '2002-06-24', 19, '2', '2', 'C.selvam', 'Checking', 30.00, 2, 0.00, 11.00, 'Tirupur', 'Tirupur', '2204120012', '1', '1', 'upload_files/candidate_tracker/90509933911_resume karthika.pdf', NULL, '1', '2022-04-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Can Join Only After Completing Their College Studies', '1', '2', '', '4', '7', '', '2', '2022-05-31', '2', '9', '', '', 'H1001', '', NULL, NULL, NULL, 1, '2022-04-12 11:55:57', 60, '2022-04-12 03:25:43', 0, NULL, 1),
(8441, 'R.kowsalya', '4', '7395833949', '8122214478', 'kowsalaya0kowsi@gmail.com', '2001-05-30', 20, '2', '2', 'K.rajendran', 'Cutting master', 20000.00, 2, 0.00, 11000.00, 'Tirupur', 'Tirupur', '2204120013', '1', '1', 'upload_files/candidate_tracker/90120926455_kowsalya.R..ptf.pdf', NULL, '1', '2022-04-12', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not fit for telesales', '1', '1', '0', '4', '7', '0', '1', NULL, '2', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-04-12 11:56:04', 1, '2022-04-12 12:23:46', 0, NULL, 1),
(8442, 'Abhishek', '16', '7358236407', '', 'cskabi601@gmail.com', '1997-12-24', 24, '2', '2', 'Pranesh', 'Sale rep', 150000.00, 1, 15800.00, 20000.00, 'Madipakkam', 'Madipakkam', '2204120014', '1', '2', 'upload_files/candidate_tracker/10418219978_Abhishek Resume.pdf', NULL, '1', '2022-04-13', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication, not much strong in Excel, Focusing only on the salary, last company only 6 months and looking for salary growth, Will not handle our pressure', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-12 12:47:37', 1, '2022-04-12 01:41:41', 0, NULL, 1),
(8443, 'N. Dinesh Babu', '5', '7305421384', '9884319587', 'dhanushstephen290998@gmail.com', '1999-06-07', 22, '1', '2', 'N. Ethindra babu', 'Coolie', 8000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2204120015', '', '1', 'upload_files/candidate_tracker/50922740638_Resume - Dinesh Babu9.pdf', NULL, '1', '2022-04-12', 0, 'Jobs', '3', '59', '2022-04-22', 146052.00, '', '', '2022-05-04', '2', 'Selected for MIS/Renewals - with take home 12K + PT', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-12 01:07:42', 60, '2022-04-22 10:35:09', 0, NULL, 1),
(8444, 'swathi', '11', '9677767575', '9943542500', 'swathiimahesh@gmail.com', '1990-05-08', 31, '2', '1', 'j umamaheshwaran', 'assistant manager', 55000.00, 1, 12000.00, 18000.00, 'CHENNAI', 'CHENNAI', '2204120016', '1', '2', 'upload_files/candidate_tracker/77505224781_swathi.docx', NULL, '1', '2022-04-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is not suitable for our roles,will not handle our pressure\n', '6', '2', '0', '1', '1', '0', '2', '2022-04-15', '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-12 07:00:27', 1, '2022-04-12 07:33:39', 0, NULL, 1),
(8445, '', '0', '9515571095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204120017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-12 08:41:48', 0, NULL, 0, NULL, 1),
(8446, 'MJ. SARATH KUMAR', '4', '7339466562', '', 'sarathkumarj02@gmail.com', '1998-04-02', 24, '2', '2', 'John Raj velangannni', 'Formar', 15000.00, 0, 13000.00, 15000.00, 'Chennai', 'Chennai', '2204130001', '23', '2', 'upload_files/candidate_tracker/38279781707_ Sarath Kumar 1998.pdf', NULL, '1', '2022-04-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-13 07:52:43', 1, '2022-04-29 05:18:58', 0, NULL, 1),
(8447, 'Azarudeen', '4', '9486305496', '', 'azarsyed2197@gmail.com', '1997-11-21', 24, '2', '2', 'Syed Ibrahim', 'Business', 30000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2204130002', '1', '1', 'upload_files/candidate_tracker/15220417550_AzarCV_2022-01-20-091533.pdf', NULL, '1', '2022-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Graduation,poor communication,will not handle the sales pressure,not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 09:51:26', 85, '2022-04-13 10:07:23', 0, NULL, 1),
(8448, 'Karthikeyan', '4', '9791645020', '8248303907', 'karthikriomathew@gmail.com', '1997-05-17', 24, '2', '2', 'Dheenadhayalan', 'Fertilizer Godown', 19000.00, 1, 0.00, 20000.00, 'Madurai', 'Madurai', '2204130003', '1', '2', 'upload_files/candidate_tracker/23331219386_karthik RioMathew .docx', NULL, '3', '2022-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped - High Salary Min 18K TH ,need to relocate from madurai,much prefer for Madurai only,will not join as he holds multiple offer and looking for additional offers', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 11:00:04', 85, '2022-04-13 01:19:01', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8449, 'Sathishkumar', '4', '9965428429', '9500964216', 'Sathishkumar123095@gmail.com', '1996-05-20', 25, '2', '2', 'Velan', 'Garments supervisor', 30000.00, 1, 0.00, 20000.00, 'Tirupur', 'Tirupur', '2204130004', '1', '1', 'upload_files/candidate_tracker/51515882476_sk resume.docx', NULL, '3', '2022-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2nd Interview Reject by Muthu-by mistake he mentioned as selected', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 11:26:31', 85, '2022-04-13 11:49:13', 0, NULL, 1),
(8450, 'Akhilesh', '11', '7348949447', '9113562678', 'akhileshbalkur2@gmail.com', '2001-05-30', 20, '1', '2', 'Soora', 'Cooly', 11000.00, 3, 0.00, 20000.00, 'Kuruvina hithlu Nada padukone', 'Kuruvina hithlu', '2204130005', '', '1', 'upload_files/candidate_tracker/84382364044_Akhilesh.docx', NULL, '1', '2022-04-13', 0, '55636', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-13 11:46:28', 1, '2022-04-13 11:55:41', 0, NULL, 1),
(8451, 'Monisha M', '14', '8124617647', '9842403906', 'monishamanikandan2000@gmail.com', '2000-05-12', 21, '2', '2', 'Manikandan M', 'Supervisor in construction field', 45000.00, 1, 0.00, 18000.00, 'Theni', 'Theni', '2204130006', '1', '1', 'upload_files/candidate_tracker/54809764135_MONISHA_B.E_TN.pdf', NULL, '3', '2022-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-04-13 01:17:35', 1, '2022-04-13 01:24:49', 0, NULL, 1),
(8452, 'Revathi', '4', '6381447809', '7094362587', 'revsri75@gmail.com', '2000-04-05', 22, '3', '2', 'Marudhakasi', 'Farmer', 48000.00, 0, 12000.00, 15000.00, 'Pallavaram', 'Pallavaram', '2204130007', '', '2', 'upload_files/candidate_tracker/55088727915_revathi.pdf', NULL, '1', '2022-04-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not suitable have exp in non voice process,no convincing skills,nont comfortable for Arumbakkam location,will not sustain for a long in our roles', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-13 01:50:43', 1, '2022-04-13 01:56:49', 0, NULL, 1),
(8453, 'Hariprasad chandrasekar', '6', '7904921519', '9342389545', 'Haric1999@gmail.com', '1996-01-02', 26, '2', '2', 'Chandrasekar', 'Own business', 40000.00, 1, 19000.00, 20000.00, 'Bhavani', 'Bhavani', '2204130008', '1', '2', 'upload_files/candidate_tracker/1927597578_1593012062275_Hari Resume.pdf', NULL, '1', '2022-04-13', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he want and suitable for part time job only.. because he is working agency in bajaj loan. and shawarma shop. so not suitable for our profile', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 02:26:27', 60, '2022-04-13 03:52:12', 0, NULL, 1),
(8454, 'C.Ananthi', '28', '6374762079', '9150951675', 'meera2yadhav@gmail.com', '1999-07-25', 22, '2', '1', 'D/O V.Chinnadurai', 'Farmer', 8000.00, 2, 0.00, 10000.00, 'Kizha minnathur, Kurugulam (po),Thanjavur', 'Minnathur', '2204130009', '1', '1', 'upload_files/candidate_tracker/16433529467_MY RESUME.doc', NULL, '3', '2022-04-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2022-04-13 02:41:31', 1, '2022-04-13 08:24:39', 0, NULL, 1),
(8455, 'Nandha Kumar', '6', '7904370919', '', 'nandhakumar46595@gmail.com', '1996-04-21', 25, '2', '2', 'NATARAJAN', 'Silver Smith', 200000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2204130010', '1', '2', 'upload_files/candidate_tracker/89126412373_NANDHA RESUME.doc', NULL, '3', '2022-04-13', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit our profile..', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-13 03:35:03', 85, '2022-04-13 05:21:27', 0, NULL, 1),
(8456, 'AISWARYA S', '6', '8428071968', '9585368684', 'aiswaryagomathi23@gmail.com', '1999-06-23', 22, '4', '1', 'S KARTHIKRAMAN', 'ICL FINCORP PVT LTD', 20000.00, 1, 14500.00, 15000.00, '18, Bhagavathi Amman Kovil Street, ERODE', '18, Bhagavathi Amman Kovil Street, Erode', '2204130011', '', '2', 'upload_files/candidate_tracker/61159375946_AISWARYA RESUME (1).docx', NULL, '1', '2022-04-13', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'marriage women.. but not sure to do this job .. kindly cross check', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-13 03:50:56', 60, '2022-04-13 04:10:33', 88, '2022-09-13 05:50:48', 0),
(8457, 'Sivaranjani G', '11', '7708505735', '', 'gsranjani07@gmail.com', '1997-03-07', 25, '2', '2', 'Gangadharan', 'Driver', 10000.00, 0, 0.00, 2500000.00, 'Neyveli', 'Neyveli', '2204130012', '1', '1', 'upload_files/candidate_tracker/5260873165_SIVARANJANI G_ Resume[1.0].pdf', NULL, '2', '2022-04-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Is Good, Fresher For Recruitment, Have 3 Months Internship Exp In SAP Profiles Only. Looking Much For IT Recruitment Positions Only, Not Sure To Handle The Other Domains. Salary Exp In Very High Min 15K Being A Fresher. Sustainability Doubts A Lot, Let Us Hold And Decide Later.', '6', '1', '', '1', '1', '', '2', '2022-04-22', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-13 04:10:32', 60, '2022-04-13 06:13:17', 0, NULL, 1),
(8458, 'KESHIKA.P', '11', '9176150179', '', 'kavikeshu66@gmail.com', '1996-10-22', 25, '2', '1', 'Panneer selvam', 'Driver', 30000.00, 0, 15000.00, 18000.00, 'Sholingaur', 'Sholingaur', '2204130013', '1', '2', 'upload_files/candidate_tracker/45634395462_Updated resume.keshika.docx', NULL, '3', '2022-04-15', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruitment, Looking for WFH only also she is pregnant now, will not sustain for a long ,not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-13 04:27:02', 1, '2022-04-15 11:35:58', 0, NULL, 1),
(8459, 'PARTHIPAN', '21', '9500404296', '', 'parthi638104@gmail.com', '1988-11-04', 33, '2', '2', 'Shanmugam', 'Home Maker', 0.00, 0, 11000.00, 15000.00, 'Erode', 'Coimbatore', '2204130014', '1', '2', 'upload_files/candidate_tracker/72102938002_RESUME NEW .pdf', NULL, '1', '2022-04-15', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-13 06:00:51', 1, '2022-04-13 06:06:12', 0, NULL, 1),
(8460, '', '0', '7598263776', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-14 10:56:31', 0, NULL, 0, NULL, 1),
(8461, 'Kayalvizhi Periyasamy', '4', '9952594388', '9788691537', 'Kayalperiyasamy011@gmail.com', '1997-06-26', 24, '1', '2', 'Periyasamy', 'Lorry driver', 20000.00, 2, 12000.00, 12000.00, 'Sankagiri', 'Sankagiri', '2204150001', '', '2', 'upload_files/candidate_tracker/34335603955_23462.docx', NULL, '1', '2022-04-15', 0, 'Cafs', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is not suitable for tele sales she is like only non-voice process', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-15 10:01:28', 60, '2022-04-15 11:47:16', 0, NULL, 1),
(8462, 'K.MOHABUKHAN', '6', '8148750744', '9566384713', 'Benazirkhan94@gmail.com', '1994-06-15', 27, '1', '1', 'SHERIN FATHIMA', 'House wife', 28000.00, 1, 28000.00, 30000.00, 'Nuggambakkam', 'Nuggambakkam', '2204150002', '', '2', 'upload_files/candidate_tracker/23499803291_RESUME1.docx', NULL, '1', '2022-04-15', 0, 'P1065', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'shortlist not joining\n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-15 03:01:28', 60, '2022-04-15 03:48:02', 0, NULL, 1),
(8463, 'Sakthivel', '4', '9597609636', '8428695302', 'sakthisai7758@gmail.com', '2000-08-18', 21, '2', '2', 'Alagarsamy', 'Driver', 25000.00, 1, 0.00, 18000.00, 'Theni', 'Theni', '2204160001', '1', '1', 'upload_files/candidate_tracker/81415312481_SAKTHIVEL(1).pdf', NULL, '3', '2022-04-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-16 10:47:16', 85, '2022-04-16 11:10:42', 0, NULL, 1),
(8464, 'Aravind Ramalingam', '4', '7904540194', '7373449073', 'aravindepp19@gmail.com', '1999-08-19', 22, '2', '2', 'Ramalingam', 'Farmer', 13000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2204160002', '1', '1', 'upload_files/candidate_tracker/24282449686_Aravind Resume (1).pdf', NULL, '1', '2022-04-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped as the candidate is not interested to take forward this position', '1', '1', '', '4', '5', '', '2', '2022-04-19', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-16 11:28:17', 85, '2022-04-18 09:38:52', 0, NULL, 1),
(8465, 'Jagadeeshwar', '6', '9080404533', '9941421099', 'jwar5687@gmail.com', '1996-10-20', 25, '2', '2', 'Eswar', 'Self employed', 30000.00, 2, 19000.00, 22000.00, 'Chennai', 'Chennai', '2204160003', '1', '2', 'upload_files/candidate_tracker/83374977834_j.pdf', NULL, '1', '2022-04-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not interested in Insurance Sales', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-16 11:32:05', 1, '2022-04-18 11:17:10', 0, NULL, 1),
(8466, 'Anand', '6', '7217708252', '', 'anand5668123@gmail.com', '1997-02-06', 25, '1', '2', 'P.mani....M.saraswathii', 'Tellecaaler', 8000.00, 3, 18000.00, 17000.00, 'Ellachiipalayam', 'Ellachiipalayam', '2204160004', '', '2', 'upload_files/candidate_tracker/4207585314_PDF Gallery_20220226_170127.pdf', NULL, '3', '2022-04-16', 0, 'P1303', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no degree and no interview basic skills.. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-16 12:50:24', 60, '2022-04-16 04:08:49', 0, NULL, 1),
(8467, '', '0', '6374131991', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-16 12:53:03', 0, NULL, 0, NULL, 1),
(8468, 'S.Ishwarya', '4', '7092795728', '7373309867', 'Ishuaakash98@gmail.com', '1998-06-20', 23, '3', '2', 'R.Sivakumar', 'Machine operator', 23000.00, 1, 12000.00, 15000.00, 'Erode', 'Erode', '2204160006', '', '2', 'upload_files/candidate_tracker/28451945334_RESUME..pdf', NULL, '1', '2022-04-16', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-16 02:17:50', 1, '2022-04-16 03:24:42', 0, NULL, 1),
(8469, 'Kiruthiga K', '4', '9384298300', '7010658183', 'keerthikathir99@gmail.com', '1999-10-29', 22, '2', '2', 'Kathiresan P', 'Driver', 25000.00, 1, 10000.00, 25000.00, '13 Pandi Kovil 1st St sammattipuram Madurai - 16', '13 Pandi Kovil 1st St Sammattipuram Madurai - 16', '2204160007', '1', '2', 'upload_files/candidate_tracker/22843820100_Kiruthiga K CV1.pdf', NULL, '2', '2022-04-18', 30, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Sounds Good Looking for Opportunites in Chennai,Salary Exp is Hgh,we suggested the max what we can offer,she needs time to give her confirmation', '1', '1', '0', '1', '3', '0', '2', '2022-04-21', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-16 07:40:08', 1, '2022-04-17 02:09:15', 0, NULL, 1),
(8470, '', '0', '9585521875', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-17 04:27:00', 0, NULL, 0, NULL, 1),
(8471, '', '0', '7010658183', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204170002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-17 05:19:39', 0, NULL, 0, NULL, 1),
(8472, 'Mohamed Lathan M. M', '4', '7502499318', '', 'salmanffc1610@gmail.com', '2001-10-16', 20, '2', '2', 'Mohamed Hussain', 'Decoration', 10000.00, 2, 0.00, 15000.00, '2/345, Yahya Nagar, Mela valuthoor, Thanjavur', '2/345, Yahya Nagar, Mela valuthoor, Thanjavur', '2204170003', '1', '1', 'upload_files/candidate_tracker/72563244507_Mohamed Lathan.pdf', NULL, '1', '2022-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-17 07:51:04', 1, '2022-04-17 08:15:43', 0, NULL, 1),
(8473, 'Jayashree S', '4', '9840982904', '9789803151', 'jayashree201833@gmail.com', '2000-03-03', 22, '1', '2', 'Sampath Kumar', 'Painter', 10000.00, 1, 0.00, 15000.00, 'No 4/A Padavattamman Kovil street', 'Chinthadripet', '2204180001', '', '1', 'upload_files/candidate_tracker/14603238988_S Jayashree Resume..pdf', NULL, '1', '2022-04-18', 0, 'CI114', '3', '59', '2022-04-20', 132000.00, '', '6', '2022-06-18', '2', 'Selected for B2B in Staff Role - Patroniss Employee', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '6', 'Offer - Documents upload link shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-18 10:34:46', 60, '2022-04-18 05:24:22', 0, NULL, 1),
(8474, 'D DINAKAR PRASAD', '4', '9344821928', '7868812617', 'dinakar273@gmail.com', '2000-06-11', 21, '1', '2', 'DURAISAMY', 'Former', 20000.00, 2, 0.00, 20000.00, '2/122 arasamaram street karlambakkam', 'Vadapalani', '2204180002', '', '1', 'upload_files/candidate_tracker/53339403538_Resume_08_11_2021_01_32_49_pm.pdf', NULL, '1', '2022-04-18', 0, 'P1065', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open up ,will not sustain in our sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-18 10:57:17', 1, '2022-04-18 11:02:19', 0, NULL, 1),
(8475, 'Srilakshmi.R', '4', '7395891837', '7373191837', 'srilakshmiraja12345@gmail.com', '2001-06-25', 20, '1', '2', 'Poongodi', 'House Keeping', 20000.00, 2, 9000.00, 15000.00, 'Erode', 'Erode', '2204180003', '', '2', 'upload_files/candidate_tracker/40135320888_Srilakshmi resume.pdf', NULL, '1', '2022-04-18', 0, 'CI133', '3', '59', '2022-04-19', 132000.00, '', '3', '2022-12-01', '2', 'Selected for Tanjore Lcoation in consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-04-18 11:06:21', 60, '2022-08-16 07:50:34', 0, NULL, 1),
(8476, 'S. piruthika', '4', '7010590282', '', 'piruthika@gmail.com', '1998-07-28', 23, '2', '2', 'Somasundaram', 'House wife', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2204180004', '1', '1', 'upload_files/candidate_tracker/3949307107_1610866861384_piruthika.s%20resume%202-1.pdf', NULL, '1', '2022-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1004', '0', NULL, NULL, NULL, 1, '2022-04-18 12:05:59', 1, '2022-04-18 12:10:45', 0, NULL, 1),
(8477, 'Ramkumar', '4', '9600639305', '8248203009', 'ramk2830@gmail.com', '1993-10-16', 28, '2', '2', 'Ravichandran', 'Working', 20000.00, 1, 18000.00, 20000.00, 'Viralimalai', 'Viralimalai', '2204180005', '1', '2', 'upload_files/candidate_tracker/11495939785_ramkumar (1).pdf', NULL, '3', '2022-04-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Tried couple of times,RNR', '1', '1', '', '1', '1', '', '2', '2022-05-02', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-18 12:12:15', 85, '2022-04-18 12:38:11', 0, NULL, 1),
(8478, 'ashok kumar', '4', '8838325355', '', 'ashok.B.Sc41@gmail.com', '1994-03-18', 28, '2', '2', 'venkatesan', 'retailer', 15000.00, 0, 13000.00, 15000.00, 'chennai', 'chennai', '2204180006', '2', '2', 'upload_files/candidate_tracker/77852886711_WhatsApp Image 2022-04-18 at 11.29.42 AM (2).pdf', NULL, '1', '2022-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-18 12:25:15', 1, '2022-04-18 12:32:29', 0, NULL, 1),
(8479, 'Muthamil selvi', '4', '8925039463', '8807692925', 'smuthamil04@gmail.com', '1999-01-05', 23, '2', '2', 'Sasikumar', 'Wages', 10000.00, 1, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2204180007', '1', '2', 'upload_files/candidate_tracker/21970400898_Muthamil Selvi.pdf', NULL, '1', '2022-04-18', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-18 02:13:06', 1, '2022-04-18 03:06:08', 0, NULL, 1),
(8480, 'R.jeevarathinam', '4', '9384223025', '9944280489', 'jeevasai22@gmail.com', '2000-03-29', 22, '2', '2', 'R.m. rajanayagam', 'Wages', 10000.00, 2, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2204180008', '1', '2', 'upload_files/candidate_tracker/4302763254_Jeevarathinam.R.pdf', NULL, '1', '2022-04-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-18 02:13:44', 1, '2022-04-18 02:39:12', 0, NULL, 1),
(8481, 'VISHALI A', '10', '7358026369', '', 'vishali0107@gmail.com', '2007-04-18', 15, '2', '2', '01/07/2001', 'Sales officer', 10000.00, 1, 17000.00, 25000.00, 'Pallavaram', 'Pallavaram', '2204180009', '1', '2', 'upload_files/candidate_tracker/80771133614_VISHALI RESUME.docx', NULL, '1', '2022-04-23', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-18 03:37:36', 1, '2022-04-18 04:33:31', 0, NULL, 1),
(8482, 'prabhakaran', '4', '9176301212', '', 'antopraba1014@gmail.com', '1994-01-15', 28, '2', '2', 'raghu', 'steel work', 15000.00, 1, 13000.00, 15000.00, 'chennai', 'tobdairpet', '2204180010', '2', '2', 'upload_files/candidate_tracker/7163549460_PRABA (RESUME)5 (1).docx', NULL, '1', '2022-04-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-18 04:40:14', 1, '2022-04-18 04:41:44', 0, NULL, 1),
(8483, 'sakthi', '6', '9952846759', '', 'sakthidcruze006@gmail.com', '1999-11-25', 22, '2', '2', 'ramachandran', 'mechanical', 15000.00, 0, 0.00, 13000.00, 'bpagraharam', 'bpagraharam', '2204180011', '1', '1', 'upload_files/candidate_tracker/11960754939_0_RESUME.docx', NULL, '1', '2022-04-21', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for our profile.. not fit in sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-18 06:14:45', 60, '2022-04-21 01:17:10', 0, NULL, 1),
(8484, 'Pavithra . B', '4', '6381548977', '6374434417', 'itspavi54@gmail.com', '2001-04-06', 21, '2', '2', 'Boopathi.C', 'Daily weager', 12000.00, 2, 0.00, 15000.00, '400/Kuthiraikkalmedu, Bhavani (T.K),Erode(D.T)', '400/Kuthiraikkalmedu, Bhavani (T.K),Erode(D.T)', '2204180012', '1', '1', 'upload_files/candidate_tracker/70455513482_Pavithra resume.pdf', NULL, '1', '2022-04-21', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'she is not suitable for telesales', '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-18 06:44:57', 1, '2022-04-18 06:56:54', 0, NULL, 1),
(8485, 'M.cibe', '4', '8610698215', '7418477501', 'cibemack@gmail.com', '1999-04-02', 23, '2', '2', 'J.Mariaselvam, Jothi', 'Ex army', 40000.00, 4, 0.00, 15000.00, 'No15 Annai Theresa Street, Nirmala Nagar, chetpet,', 'Pallavaram', '2204190001', '1', '1', 'upload_files/candidate_tracker/27428129896_lastshared.pdf', NULL, '1', '2022-04-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-19 09:56:29', 1, '2022-04-19 10:01:51', 0, NULL, 1),
(8486, 'S Bhagavathi', '6', '9659844039', '9942245799', 'bhagalit@gmail.com', '1998-12-12', 23, '2', '2', 'Sivalakshmi', 'None', 12.00, 1, 0.00, 15.00, 'Erode', 'Erode', '2204190002', '1', '1', 'upload_files/candidate_tracker/53309356170_Resume.pdf', NULL, '1', '2022-04-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'she is 50 50 only.. she is discuss with family and informed so we will rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-19 10:56:49', 60, '2022-04-20 10:36:13', 0, NULL, 1),
(8487, 'Prem Kumark', '6', '9591236931', '8056240068', 'Premjipj17@gmail.com', '1995-06-17', 26, '1', '2', 'Kanthraj', 'Building contract', 45000.00, 1, 35000.00, 35000.00, 'Banglore', 'Banglore', '2204190003', '', '2', 'upload_files/candidate_tracker/99124316476_prem kumar resume.docx', NULL, '1', '2022-04-19', 15, 'Pp1174', '1', '34', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-19 12:25:51', 1, '2022-04-19 12:56:37', 0, NULL, 1),
(8488, 'Vinothini Veerasekar', '11', '8925653715', '', 'Vinothiniveerasekar@gmail.com', '1995-12-20', 26, '2', '2', 'Veerasekaran R', 'Refinery technician', 80000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2204190004', '1', '1', 'upload_files/candidate_tracker/16145503364_Vinothini Resume U.docx', NULL, '1', '2022-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-19 03:16:53', 1, '2022-04-19 03:25:59', 0, NULL, 1),
(8489, '', '0', '8610406113', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204190005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-19 06:29:32', 0, NULL, 0, NULL, 1),
(8490, 'Sugapriya', '6', '8754286933', '6380277298', 'sugikapoor.97@gmail.com', '1996-07-26', 25, '2', '2', 'S.thangavelu', 'Retired co-operative sales man', 15000.00, 1, 15000.00, 18000.00, 'Erode', 'Erode', '2204190006', '1', '2', 'upload_files/candidate_tracker/80747172160_Sugapriya Resume-converted-2-converted.pdf', NULL, '1', '2022-04-20', 1, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not interested in sales ', '5', '1', '', '4', '7', '', '2', '2022-04-21', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-19 07:15:08', 60, '2022-04-20 10:36:49', 0, NULL, 1),
(8491, 'S. Anitha', '6', '7305866936', '8939583530', 'Anithasankar888@gmail.com', '2001-01-08', 21, '3', '2', 'Mr . Sankar', 'Daily wage', 15000.00, 1, 12000.00, 14000.00, 'Pallavaram', 'Pallavaram', '2204190007', '', '2', 'upload_files/candidate_tracker/57136698591_anitha resume.docx', NULL, '1', '2022-04-19', 0, '', '3', '59', '2022-05-05', 156000.00, '', '5', '1970-01-01', '1', 'Dropped ,candidate is not interested in the position, messaged us stating not interested,Not responding the calls', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Candidate had come back with her confirmation to join', '', '', '', NULL, NULL, NULL, 1, '2022-04-19 08:21:32', 60, '2022-05-04 07:04:52', 0, NULL, 1),
(8492, 'Samuvel A', '6', '9095264315', '9489761801', 'samuelthiaar@gmail.com', '1996-12-24', 25, '1', '2', 'Arunugam K', 'Electrician', 12000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2204200001', '', '1', 'upload_files/candidate_tracker/64402328747_SAMUVEL A-converted.pdf', NULL, '1', '2022-04-20', 0, 'P1303', '3', '59', '2022-04-22', 192000.00, '', '', '2022-05-02', '1', 'Selected for Suthagar Erode Team in consultant role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-20 11:30:14', 60, '2022-04-21 06:18:37', 0, NULL, 1),
(8493, 'Logeswari', '11', '9940128413', '9940012269', 'Logeswari411@gmail.con', '1998-11-04', 23, '3', '2', 'V. Sivakumar', 'Watchman', 15000.00, 1, 0.00, 15000.00, '145 Vengadason st,new Anna nagar,Thirumullaivoyal', '145 Vengadason St,New Anna Nagar, Thirumullaivoyal', '2204200002', '', '1', 'upload_files/candidate_tracker/68467165055_LOGESWARI.pdf', NULL, '1', '2022-04-20', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher and have internship Exp, can be trained, only location distance need to be considered, kindly check and let me know your inputs', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-20 11:34:31', 1, '2022-04-20 12:05:24', 0, NULL, 1),
(8494, 'Vaitheeswari c', '4', '9150206911', '', 'vaitheeswari.vaithee5454@gmail.com', '1998-11-01', 23, '3', '2', 'chandrakanth r', 'watchman', 8000.00, 0, 0.00, 15000.00, 'tvk', 'Tvk', '2204200003', '', '1', 'upload_files/candidate_tracker/47661504248_CADD_Confirm.pdf', NULL, '1', '2022-04-20', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Internal Team(Esales Kanmani Reference),Suitability for ESales doubt,check for B2B and let me know', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-20 11:57:44', 60, '2022-04-20 05:48:32', 0, NULL, 1),
(8495, 'deepak kumar', '4', '9944061860', '', 'lookdeepakkumar@gmail.com', '1997-07-11', 24, '2', '2', 'sanjay kumar', 'oil operator', 15000.00, 1, 0.00, 12000.00, 'villupuram', 'chennai', '2204200004', '2', '1', 'upload_files/candidate_tracker/43673920333_Resume .pdf', NULL, '1', '2022-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much prefer for non voice,also no basic ideas using Excel,Will not sustain and handle our work pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-20 12:14:14', 1, '2022-04-20 12:16:17', 0, NULL, 1),
(8496, 'prakash', '4', '9655135248', '', 'yoyoprakash94@gmail.com', '2001-01-18', 21, '2', '2', 'rajan', 'civil worker', 30000.00, 1, 0.00, 15000.00, 'sathiyamanagalm', 'Sathiyamanagalm', '2204200005', '1', '1', 'upload_files/candidate_tracker/86940224061_R.Prakash resume.docx', NULL, '2', '2022-04-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-20 12:17:01', 1, '2022-04-20 01:23:16', 0, NULL, 1),
(8497, 'Manish Kumar R K', '11', '9597741613', '7708450764', 'manishmk1516@gmail.com', '1998-10-15', 23, '2', '2', 'Kumara Guru R', 'Railways', 800000.00, 1, 240000.00, 320000.00, 'Thiruvallur', 'Thiruvallur', '2204200006', '1', '2', 'upload_files/candidate_tracker/17833381040_ManishMBAResumeFinal.pdf', NULL, '1', '2022-04-20', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Good in communication,have 6 months Exp in Recruitment,travelling from so long,kinldy check and let me know your inputs', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-20 12:49:39', 1, '2022-04-20 12:52:54', 0, NULL, 1),
(8498, 'R. Sivanandhan', '6', '8778336849', '9003636247', 'Sivanithyasri72@gmail.com', '2001-06-28', 20, '2', '2', 'N. Raman', 'Cooli', 18000.00, 1, 0.00, 15000.00, '25/1 poosarithottam kaveri Street soolai erode', 'Erode', '2204200007', '1', '1', 'upload_files/candidate_tracker/91135681805_Resume (2).docx', NULL, '1', '2022-04-20', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'selected..', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-20 01:05:01', 60, '2022-04-20 05:50:44', 88, '2022-09-13 05:50:48', 0),
(8499, 'V.vigneshwaran', '4', '9841093730', '', 'vigneshvasu25@gmail.com', '2000-07-20', 21, '2', '2', 'Vasu', 'Business', 70000.00, 0, 0.00, 15000.00, 'Mannady', 'Mannady', '2204200008', '1', '1', 'upload_files/candidate_tracker/93205428681_5_6251313122527676105.pdf', NULL, '1', '2022-04-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,he is focus only for IT positions particularly python and just for time being 6 months he will be in telecalling also need to open a lot,not suitable.In python not that much strong', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-20 01:41:00', 1, '2022-04-20 02:03:13', 0, NULL, 1),
(8500, '', '0', '8608709913', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-20 03:54:10', 0, NULL, 0, NULL, 1),
(8501, 'Sasikumar', '6', '6379681691', '6865954242', 'sasikumark69575@gmail.com', '2000-10-12', 21, '2', '2', 'Karuppannan,vhitra', 'Former', 8000.00, 1, 10000.00, 16000.00, 'Kaveripatti', 'Kaveripatti', '2204200010', '1', '2', 'upload_files/candidate_tracker/6406499019_Sasikumar.pdf', NULL, '1', '2022-04-21', 3, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is not fit for sales .. he is interested in data entry job only', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-20 05:07:02', 60, '2022-04-21 01:17:19', 0, NULL, 1),
(8502, 'Pavithra', '11', '9363584782', '7395946737', 'Pavithramahalingam2012@gmail.com', '1998-12-20', 23, '2', '2', 'Mahalingam', 'Business', 20000.00, 2, 12000.00, 18000.00, 'Chennai', 'T.nagar', '2204200011', '1', '2', 'upload_files/candidate_tracker/29377868025_Pavithra Resume - HR Assistant.pdf', NULL, '1', '2022-04-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication No,Have 7 months but no basic knowledge in the recruitment,Not suitable for our postiion,will not sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-20 07:29:51', 60, '2022-04-25 04:40:17', 0, NULL, 1),
(8503, 'Mohanraj', '6', '9095930064', '9629298961', 'mohanrajperiyasamy98@gmail.com', '1998-05-06', 23, '2', '2', 'Nandhini', 'Agriculture', 15000.00, 0, 14000.00, 17000.00, 'Tiruppur', 'Tiruppur', '2204200012', '1', '2', 'upload_files/candidate_tracker/22348452600_Mohanraj Resume.pdf', NULL, '3', '2022-04-21', 15, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-20 09:49:38', 60, '2022-04-22 11:43:41', 0, NULL, 1),
(8504, 'M.Bowsika', '4', '9841128709', '9840444016', 'Bowsika@gmail.com', '2000-08-31', 21, '2', '2', 'V.Muthu M.laskmi', 'Vegetable Shop owner', 20000.00, 2, 0.00, 10000.00, 'Chepauk', 'Chepauk', '2204210001', '1', '1', 'upload_files/candidate_tracker/6835066638_D NARAYANA RAO.PDF', NULL, '1', '2022-04-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NOt suitable,will not sustain in our pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-21 01:34:26', 85, '2022-04-22 12:42:26', 0, NULL, 1),
(8505, 'Gayathri. V', '11', '9360570407', '6374892059', 'kannama2817@gmail.com', '2001-04-28', 20, '4', '2', 'S. P. Venkatesh', 'Business', 300000.00, 1, 20000.00, 25000.00, '116/57 chinnamanikar street chengalpattu', '116/57 chinnamanikar street chengalpattu', '2204210002', '', '2', 'upload_files/candidate_tracker/27861843844_GAYATHRI-converted.pdf', NULL, '1', '2022-04-21', 15, '', '2', '59', NULL, 0.00, '', '4', '2022-09-08', '2', 'communication ok,have exp in recruitment,can be trained,only thing is location she is from chengalpet,2nd Round interviewed by gokul and the profile is on hold', '6', '1', '0', '1', '1', '0', '2', '2022-04-25', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-21 02:48:15', 1, '2022-04-21 02:55:04', 0, NULL, 1),
(8506, '', '0', '9346672085', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204210003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-21 06:02:15', 0, NULL, 0, NULL, 1),
(8507, 'Ganga T', '4', '7871472701', '', 'gangasri9121@gmail.com', '2000-01-09', 22, '2', '2', 'Thangaraj', 'Plummer', 15000.00, 1, 10000.00, 12000.00, 'Erode', 'Erode', '2204210004', '1', '2', 'upload_files/candidate_tracker/22651835665_Ganga (2).pdf', NULL, '1', '2022-04-21', 0, '', '3', '59', '2022-05-02', 132000.00, '', '6', '2022-10-12', '2', 'Selected for Erode - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-21 06:57:37', 60, '2022-04-22 04:17:56', 0, NULL, 1),
(8508, 'SURYAKUMAR', '4', '9025108697', '9486504887', 'suryakumar.m1000@gmail.com', '1999-02-08', 23, '2', '2', 'Murugavel A', 'Retired police officer', 20000.00, 1, 0.00, 18000.00, 'Chidambaram', 'Chidambaram', '2204210005', '1', '1', 'upload_files/candidate_tracker/84958156669_Surya Kumar M Resume.pdf', NULL, '2', '2022-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-21 07:02:05', 1, '2022-04-21 07:21:41', 0, NULL, 1),
(8509, 'Sukanya', '11', '8610975312', '8056351557', 'vijaysindhu0922@gmail.com', '1992-11-25', 29, '2', '1', 'Vishwam', 'Engineer', 45000.00, 1, 14000.00, 17000.00, 'Chennai', 'Hyderabad', '2204210006', '1', '2', 'upload_files/candidate_tracker/20274311592_sukanyaresumeee nw.docx', NULL, '3', '2022-04-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Few Months Exp In Recruitment,Career Gap Is There,Long Run Doubt With This Profile,Can Hold This Profile And Let Us Try Later', '6', '2', '0', '1', '1', '0', '2', '2022-05-02', '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-21 07:24:36', 1, '2022-04-21 07:51:40', 0, NULL, 1),
(8510, 'Nehru. G', '4', '8489475413', '', 'nehrupolice100@gmail.com', '1998-11-21', 23, '3', '2', 'P. Ganesan', 'Farmer', 17000.00, 2, 14000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2204210007', '', '2', 'upload_files/candidate_tracker/10407963677_NEHRU RESUME EDIT Edit-1.docx', NULL, '1', '2022-09-26', 30, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-21 08:28:28', 85, '2022-09-26 11:50:52', 0, NULL, 1),
(8511, 'Gokulraj', '4', '8667740239', '9443880480', 'ngokulraj98@gmail.com', '1998-07-31', 23, '2', '2', 'Neelamegam', 'Home', 15000.00, 1, 12000.00, 15000.00, 'Salem', 'Salem', '2204220001', '1', '2', 'upload_files/candidate_tracker/37656752425_RAJ final 1.pdf', NULL, '3', '2022-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-22 09:43:28', 1, '2022-04-22 09:50:16', 0, NULL, 1),
(8512, 'Akshay prabhu', '5', '7624877904', '', 'akshayprabhu306@gmail.com', '2000-02-20', 22, '1', '2', 'Ganesh prabhu', 'Business', 15000.00, 0, 0.00, 25000.00, 'Mantri Alpyne', 'Mantri Alpyne', '2204220002', '', '1', 'upload_files/candidate_tracker/98171649947_Resume_Akshay Prabhu_Format3.pdf', NULL, '1', '2022-04-22', 0, '55636', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-22 11:30:34', 1, '2022-04-22 11:39:29', 0, NULL, 1),
(8513, 'M.Gokila', '4', '6383211457', '9585153548', 'GOKILAPADMA1405@GMAIL.COM', '2001-05-14', 20, '1', '2', 'M.padmaselvam', 'Mannargudi', 48000.00, 3, 15000.00, 15000.00, '462,Athaniyar street,eda-melaiyur', '462,Athaniyar street eda-melaiyur', '2204220003', '', '2', 'upload_files/candidate_tracker/85038922805_goki resume.docx', NULL, '1', '2022-04-22', 1, 'P1023', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-22 11:35:50', 60, '2022-04-22 12:30:13', 0, NULL, 1),
(8514, 'Haarish Abdullah S', '4', '9952784928', '', 'haarishabdullah@gmail.com', '2007-04-22', 0, '4', '2', 'Sheik Abdullah N', 'Business', 30000.00, 1, 0.00, 15000.00, 'Bodinayakanur-theni district', 'Anna nagar chennai', '2204220004', '', '1', 'upload_files/candidate_tracker/44942494271_HAARISH RESUME new.pdf', NULL, '1', '2022-04-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-22 11:39:25', 1, '2022-04-22 11:42:38', 0, NULL, 1),
(8515, 'k.gayathri', '4', '8110943565', '8220527785', 'gayukamaraj1@gmail.com', '1998-12-29', 23, '3', '2', 'k.devi', 'housewife', 300000.00, 0, 0.00, 15000.00, 'karambakudi', 'karambakudi', '2204220005', '', '1', 'upload_files/candidate_tracker/76791361053_RESUME gayu.pdf', NULL, '1', '2022-04-22', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-22 12:00:33', 1, '2022-04-22 02:40:12', 0, NULL, 1),
(8516, 'M.Elakkia', '4', '8098443305', '9047895574', 'elakkiamogan02@gmail.com', '1997-08-02', 24, '1', '2', 'L.Mohan doss', 'Driver', 50000.00, 1, 0.00, 9000.00, 'Pattukottai bypass road', 'Thanjavur', '2204220006', '', '2', 'upload_files/candidate_tracker/32203677184_ELAKKIA RESUME.pdf.pdf', NULL, '1', '2022-04-22', 0, 'P1023', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped Candidate didnt come back with her Confirmation and not responding to the calls\n', '1', '2', '', '4', '2', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-22 12:01:12', 60, '2022-04-22 12:30:37', 0, NULL, 1),
(8517, 'LAKSHANA', '21', '8072283679', '7358469215', 'lakshanavicky1980@gmail.com', '1998-09-10', 23, '2', '2', 'Priya', 'Junior associated', 30500.00, 0, 10500.00, 18000.00, 'New perungalathur', 'New perungalathur', '2204220007', '1', '2', 'upload_files/candidate_tracker/864754693_Resume_K.R. Lakshana_Format1.pdf', NULL, '1', '2022-04-23', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-22 01:32:35', 1, '2022-04-22 01:42:12', 0, NULL, 1),
(8518, 'PREETHI J', '11', '8939022650', '', 'preethijohnson12@gmail.com', '1999-08-12', 22, '2', '1', 'N ASAIPANDI', 'Physical director', 40000.00, 0, 18000.00, 25000.00, 'TIRUVALLUR', 'Medavakkam', '2204220008', '1', '2', 'upload_files/candidate_tracker/21138949736_Preethi Johnson.pdf', NULL, '1', '2022-04-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Didnt Turn with her confirmation', '6', '1', '', '1', '1', '', '2', '2022-05-23', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-22 03:52:12', 1, '2022-04-23 11:44:13', 0, NULL, 1),
(8519, 'JAYABHARATHI. D', '4', '7200667809', '', 'djayabharathi1997@gmail.com', '1997-07-20', 24, '2', '2', 'M.Dharumalingam', 'Daily wages', 3000.00, 3, 0.00, 15000.00, 'Villupuram', 'Ambattur', '2204220009', '1', '1', 'upload_files/candidate_tracker/58736733743_DocScanner 22 Apr 2022 4-44 pm.pdf', NULL, '1', '2022-04-23', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok have Exp in telecalling Bajaj Finance, can give a try kindly check and let me know your inputs', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-22 04:24:56', 85, '2022-04-22 06:19:56', 0, NULL, 1),
(8520, '', '0', '8056456821', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-22 06:51:54', 0, NULL, 0, NULL, 1),
(8521, 'Ragul S', '4', '8807332373', '8072570513', 'ragulsmba@gmail.com', '1996-09-16', 25, '2', '2', 'Selvaraj C', 'Daily Wages', 30000.00, 1, 0.00, 13000.00, 'Erode', 'Erode', '2204230001', '1', '1', 'upload_files/candidate_tracker/62388084754_New Resume Ragul.docx', NULL, '1', '2022-04-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-23 10:33:05', 85, '2022-04-23 10:51:14', 0, NULL, 1),
(8522, 'S RAMAKRISHNA', '4', '9787191429', '', 'ramakrishna.2146@gmail.com', '1999-07-21', 22, '3', '2', 'SEKAR R', 'CURRENTLY SEARCHING', 20.00, 1, 0.00, 10000.00, 'Thanjavur', 'THANJAVUR', '2204230002', '', '1', 'upload_files/candidate_tracker/24768134_RESUME .pdf', NULL, '1', '2022-04-23', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-23 10:37:16', 1, '2022-04-23 10:42:21', 0, NULL, 1),
(8523, 'Sasi kumar S', '4', '6379558021', '', 'ssasi9539@gmail.com', '2000-04-15', 22, '3', '2', 'Nil', 'Nil', 0.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2204230003', '', '1', 'upload_files/candidate_tracker/97842445183_WhatsAppImage20220422at12.30.09PMconverted.pdf', NULL, '1', '2022-04-23', 0, '', '3', '59', '2022-04-25', 138948.00, '', '', '1970-01-01', '1', 'Selected for Elite Arumbakkam,After 3 months will promote him as a RE Arumbakam along with the salary revision based on the performance\n', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-23 12:01:13', 60, '2022-04-23 02:47:58', 0, NULL, 1),
(8524, '', '0', '7975754580', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-23 12:28:31', 0, NULL, 0, NULL, 1),
(8525, 'narthana', '13', '8903708746', '', 'narthanakrishnaraj19@gmail.com', '1998-03-19', 24, '2', '2', 'krishnaraj', 'dentist', 20000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2204230005', '2', '2', 'upload_files/candidate_tracker/39949365318_0_Narthana Resume.pdf', NULL, '1', '2022-04-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking opportunities in Remote, not comfortable with the timings', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-23 12:42:45', 1, '2022-04-23 12:45:35', 0, NULL, 1),
(8526, 'Priyadharshini', '16', '9840623347', '', 'Dharshini1200@gmail.com', '2000-06-10', 21, '2', '2', 'S.Thainasmary', 'House wife', 20000.00, 1, 15000.00, 20000.00, 'No:2786 firstmain road ,MMDA , Mathur chennai', 'No:2786 Firstmain Road ,MMDA , Mathur Chennai', '2204230006', '1', '2', 'upload_files/candidate_tracker/75785509735_RESUME-PRIYA DHARSHINI S.docx', NULL, '1', '2022-04-25', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication,not open up,will not handle the pressure,not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-23 01:19:03', 1, '2022-04-23 07:17:57', 0, NULL, 1),
(8527, 'A.Durga devi', '4', '9498890420', '', 'durgadurai01@gmail.com', '2001-03-14', 21, '2', '2', 'G Ayyadurai', 'Business', 10000.00, 1, 0.00, 11000.00, 'Thiruvarur', 'Thiruvarur', '2204230007', '1', '1', 'upload_files/candidate_tracker/66385284306_durga resume.pdf', NULL, '1', '2022-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-23 02:49:26', 1, '2022-04-23 02:54:56', 0, NULL, 1),
(8528, 'MEENASSHI SUNDARAM K B', '4', '9489792566', '9003332566', 'sundaramkvd@gmail.com', '1997-11-06', 24, '2', '2', 'K BALASUBRAMANI', 'City union bank (Appraiser)', 9000.00, 1, 0.00, 12000.00, 'Oddanchatram', 'Oddanchatram', '2204230008', '1', '1', 'upload_files/candidate_tracker/66538623570_MEENA CV-converted.pdf', NULL, '1', '2022-04-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-23 04:11:37', 1, '2022-04-23 04:39:35', 0, NULL, 1),
(8529, 'RAMYA K', '16', '8910600940', '9159703020', '2001blvr@gmail.com', '2001-08-22', 20, '2', '2', 'K Balaji', 'Carpenter', 15000.00, 1, 1.75, 2.50, 'Irala cross road village, chittoor distic,', 'Nellore', '2204230009', '1', '2', 'upload_files/candidate_tracker/20141538288_Ramya Resume(3).pdf', NULL, '3', '2022-04-26', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,Will not handle the pressure,not suitable for our Roles,understanding capacity is poor,will not sustain', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-23 04:26:03', 87, '2022-04-26 06:55:25', 0, NULL, 1),
(8530, 'R. Manimegalai', '16', '7305350186', '7358194938', 'Manimegalairamasamy2710@gmail.com', '2000-10-27', 21, '2', '2', 'R. Kalaiselvi', 'House Keeping supervisor', 22000.00, 1, 9000.00, 15000.00, '3/2 kamarajar salai teynampet, chennai _18', '3/2 Kamarajar Salai Teynampet, Chennai _18', '2204230010', '1', '2', 'upload_files/candidate_tracker/52661514770_mani resume-1.docx', NULL, '1', '2022-04-25', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication,not able to understand,Sustainability Doubt,not suitable', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-23 04:43:29', 1, '2022-04-23 06:30:39', 0, NULL, 1),
(8531, 'M.famitha', '16', '7358688869', '8939792108', 'Famithafamitha486@gmail.com', '2001-03-08', 21, '2', '2', 'A.mohammed umar', 'Auto driver', 125000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2204230011', '1', '1', 'upload_files/candidate_tracker/27950437213_Kaagaz_20220303_153913717322 (1).pdf', NULL, '1', '2022-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-23 07:01:23', 1, '2022-04-23 07:11:20', 0, NULL, 1),
(8532, 'bhakialakshmi', '16', '7904489371', '', 'bklakshmi0205@gmail.com', '1997-05-02', 24, '2', '2', 'arumugam', 'officer', 100000.00, 0, 12000.00, 18000.00, 'chennai', 'chennai', '2204230012', '1', '2', 'upload_files/candidate_tracker/40287110263_Bakiya.docx', NULL, '1', '2022-04-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '', '', '', '1', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-23 07:05:48', 87, '2022-04-25 12:35:47', 0, NULL, 1),
(8533, 'Rajesh janakiraman', '16', '8637484145', '7338911692', 'Rajeshmj0908@gmail.com', '1997-08-09', 24, '2', '2', 'Lokesh J', 'Own business', 20000.00, 1, 10000.00, 20000.00, 'Pallavaram', 'Pallavaram', '2204230013', '1', '2', 'upload_files/candidate_tracker/72205211665_Resume(1).pdf', NULL, '1', '2022-04-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-23 07:09:29', 1, '2022-04-23 07:20:50', 0, NULL, 1),
(8534, 'M.hari haran', '6', '8778177170', '9750832490', 'jd0382115@gmail.com', '1998-04-04', 24, '4', '2', 'K.murugan', 'Mechanical Engineer( Salem Bharat Benze)', 25000.00, 2, 0.00, 17000.00, 'Erode SURAMPATI', 'Erode SURAMPATI', '2204250001', '', '2', 'upload_files/candidate_tracker/76543767439_Image to PDF 20220425 10.47.01.pdf', NULL, '1', '2022-04-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not suitable for our profile.. because Convincing skill 0 ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-25 10:34:59', 60, '2022-04-25 12:32:12', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8535, 'KARVENDHAN S', '6', '9578216161', '9578013231', 'Kameshvolley@gmail.com', '1999-09-22', 22, '2', '2', 'Subramani p', 'Farmer', 55000.00, 1, 15500.00, 16000.00, 'Koneripatti', 'Koneripatti', '2204250002', '1', '2', 'upload_files/candidate_tracker/22485712051_Kameshvolley.pdf', NULL, '1', '2022-04-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-25 10:48:02', 60, '2022-04-25 12:31:56', 0, NULL, 1),
(8536, 'Saranya.N', '6', '6374492698', '9677386187', 'Sarannatraj51@gmail.com', '1990-04-04', 32, '2', '1', 'Senthil', 'Manager', 45000.00, 1, 0.00, 18000.00, '28,avvaiyar street,teachers colony', 'Erode', '2204250003', '1', '1', 'upload_files/candidate_tracker/93341144765_Saranya resu.docx', NULL, '1', '2022-04-27', 0, '', '3', '59', '2022-05-02', 202104.00, '', '', '2022-05-05', '1', 'Selectd for Suthagar Team - Consultant 16K TH', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-25 11:22:09', 60, '2022-05-02 10:45:38', 0, NULL, 1),
(8537, 'aisha abi fathima br', '4', '7305374439', '', 'mizayisha10@gmail.com', '1999-10-12', 22, '2', '2', 'babu rahamathulla', 'officer', 20000.00, 1, 18000.00, 12000.00, 'chennai', 'chennai', '2204250004', '3', '2', 'upload_files/candidate_tracker/51041222073_WhatsAppImage20220425at12.53.31PM.pdf', NULL, '1', '2022-04-25', 0, '', '3', '59', '2022-04-26', 164208.00, '', '2', '1970-01-01', '1', 'Selected for Banu Team in Staff Role, PF/ESI/PT', '1', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '6', 'Offer Document Link shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-25 12:46:13', 60, '2022-04-26 10:09:34', 0, NULL, 1),
(8538, 'S Muthulakshmi', '4', '9444100017', '', 'smuthulakshmisaroja@gmail.com', '2000-07-24', 21, '2', '2', 'D Senthilkumar', 'Business', 10000.00, 2, 0.00, 14000.00, 'Chennai', 'Chennai', '2204250005', '1', '2', 'upload_files/candidate_tracker/2272783472_Muthulakshmi24.docx.pdf', NULL, '1', '2022-04-26', 0, '', '3', '59', '2022-04-27', 138948.00, '', '3', '2022-05-09', '2', 'selected for Arumbakkam in Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-25 01:15:59', 60, '2022-04-26 06:21:16', 0, NULL, 1),
(8539, 'Radha krishnan p', '5', '8754677142', '', 'Rksiva0517@gmail.com', '1990-09-05', 31, '1', '2', 'C periyandi', 'BE', 50000.00, 1, 27000.00, 27000.00, 'Madurai', 'Chennai', '2204250006', '', '2', 'upload_files/candidate_tracker/75196484969_Radha resume-converted.pdf', NULL, '1', '2022-04-25', 0, 'P1242', '3', '59', '2022-05-09', 390000.00, '', '4', '2023-11-20', '1', 'Selected for Santhosh Team - PF/PT deductions', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', 'Offer Document link shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-25 01:33:58', 60, '2022-05-07 11:38:22', 0, NULL, 1),
(8540, 'Leo Sharmila', '4', '7092698620', '', 'dossjakemukesh@gmail.com', '1991-05-08', 31, '2', '2', 'Selva doss', 'Labour', 15.00, 1, 15.00, 20.00, 'AYYAMPETTAI THANJAVUR DISTRICT', 'AYYAMPETTAI THANJAVUR DISTRICT', '2204250007', '1', '2', 'upload_files/candidate_tracker/11374914148_682bfdc0-2d4b-40d8-b46c-27cca0e03257Sharmi_Resume-2.pdf', NULL, '3', '2022-06-12', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '1', NULL, '3', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-04-25 03:10:19', 1, '2022-05-31 03:23:47', 0, NULL, 1),
(8541, 'Antony Richard', '6', '7305631020', '9444831841', 'antonyricharf@gmail.com', '1999-10-25', 22, '3', '2', 'Edwin Thomas', 'Watch man', 200000.00, 1, 0.00, 15000.00, 'Besant Nagar', 'Besant Nagar', '2204250008', '', '1', 'upload_files/candidate_tracker/36549694155_SURIYA RESUME.doc', NULL, '1', '2022-04-25', 0, '', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Shortlist but not joinined', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-25 03:21:48', 60, '2022-04-25 08:10:39', 0, NULL, 1),
(8542, 'Preethi M', '4', '8525862596', '7397027945', 'm.preethi019@gmail.com', '1996-06-13', 25, '2', '2', 'Mannar Mannan', 'Agriculture', 35000.00, 2, 16000.00, 19000.00, 'THANJAVUR', 'THANJAVUR', '2204250009', '1', '2', 'upload_files/candidate_tracker/72996430801_1650035034855_Resume.pdf', NULL, '1', '2022-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-25 04:04:15', 1, '2022-04-25 04:21:51', 0, NULL, 1),
(8543, 'Dilli prabhu', '26', '8838166404', '', 'dilliprabhu8@gmail.com', '1998-12-08', 23, '2', '2', 'Nil', 'Gruated', 20000.00, 1, 8000.00, 20000.00, 'Chengalpattu', 'Thambaram', '2204250010', '1', '2', 'upload_files/candidate_tracker/83432877231_Share Dilli Prabhu Resume_Dilliprabhu.pdf', NULL, '1', '2022-04-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Fresher for MIS and not much strong in Excel,not much suits for MIS and tried for Sales,need time to confirm his interest,if he comes back lets see\n', '3', '1', '', '1', '1', '', '2', '2022-04-27', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-25 06:42:28', 87, '2022-04-25 07:09:31', 0, NULL, 1),
(8544, 'Ponnaiya', '16', '9094541486', '8056223148', 'Ponnaiya1011@gmail.com', '1999-01-10', 23, '2', '1', 'Palani', 'Labor', 10000.00, 1, 16000.00, 25000.00, 'Chennai', 'Chennai', '2204250011', '1', '2', 'upload_files/candidate_tracker/73444424480_P.PONNAIYA resume.pdf', NULL, '1', '2022-04-30', 30, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-25 08:12:37', 87, '2022-04-30 10:32:03', 0, NULL, 1),
(8545, 'sonali', '11', '8897924328', '', 'sonaliambavaram.crn@gmail.com', '1998-09-07', 23, '2', '2', 'chandra reddy', 'mutual fund', 25000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2204260001', '2', '1', 'upload_files/candidate_tracker/34476952765_Sonali.pdf', NULL, '1', '2022-04-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable', '6', '1', '0', '1', '1', '0', '2', '2022-05-01', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 10:10:08', 1, '2022-04-26 10:13:32', 0, NULL, 1),
(8546, 'manimegalai', '4', '9789081965', '', 'manimegalaiguna@mail.com', '1997-09-01', 24, '2', '2', 'gunasekran', 'kooli', 10000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2204260002', '2', '2', 'upload_files/candidate_tracker/87622280228_RESUME.MANI-converted.pdf', NULL, '1', '2022-04-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 10:22:11', 1, '2022-04-26 10:25:30', 0, NULL, 1),
(8547, 'Surendhar', '4', '9487437011', '', 'surendharhi5@gmail.com', '1999-06-04', 22, '2', '1', 'Chinna samy', 'Driver', 16000.00, 1, 15000.00, 15000.00, 'Dharmapuri', 'Erode', '2204260003', '1', '2', 'upload_files/candidate_tracker/47283529311_Surendhar. C_Color Format – 01.pdf', NULL, '2', '2022-04-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-26 10:28:06', 85, '2022-04-26 12:12:50', 0, NULL, 1),
(8548, 'Rajesh.R', '31', '8825851481', '7530016600', 'Samuravi2@gmail.com', '1998-03-15', 24, '1', '2', 'Ravi.R', 'House keeping', 13000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2204260004', '', '1', 'upload_files/candidate_tracker/73226307705_Rajesh Resume 1-4.doc', NULL, '1', '2022-04-26', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,not comfortable to relocate,Not much strong in React,Not comfortable with SA too', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 11:45:47', 1, '2022-04-26 11:52:36', 0, NULL, 1),
(8549, 'Kalai Mathi Pl', '31', '8838495844', '8760735578', 'Kalaiajipl@gmail.com', '1996-12-30', 25, '1', '2', 'Pazhaniyappan m', 'Retirement person', 30000.00, 2, 0.00, 16000.00, 'Sivagangai', 'Sivagangai', '2204260005', '', '1', 'upload_files/candidate_tracker/37736406696_Kalai.pdf', NULL, '1', '2022-04-26', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'fresher for React,Not comfort with SA,High salary Expectation,sustainability dooubts', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 11:46:12', 1, '2022-04-26 11:51:59', 0, NULL, 1),
(8550, 'PARTHASARATHI A', '31', '8807564856', '', 'parthascorpion2020@gmail.com', '1995-05-20', 26, '1', '2', 'AYYARSIGAMANI A', 'Tea Shop', 9000.00, 1, 0.00, 15000.00, 'Rajapalayam', 'Tambaram', '2204260006', '', '1', 'upload_files/candidate_tracker/1086078718_Partha Frontend onepage.pdf', NULL, '1', '2022-04-26', 0, 'JOBS', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher,Seems to be slow,5050 Profile,kindly check for PHP/React', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 11:46:52', 1, '2022-04-26 11:52:12', 0, NULL, 1),
(8551, '', '0', '9361484670', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204260007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-26 03:51:06', 0, NULL, 0, NULL, 1),
(8552, 'Arul', '4', '9944210627', '6383059241', 'arulvijay2000@gmail.com', '2007-04-26', 0, '2', '2', 'Sarojini Sanmugam', 'Job searching', 4000.00, 0, 0.00, 15000.00, 'Avinashi', 'Avinashi', '2204260008', '1', '1', 'upload_files/candidate_tracker/7074730790_Arul.Resume(1).docx', NULL, '2', '2022-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-26 04:11:42', 1, '2022-04-26 04:16:29', 0, NULL, 1),
(8553, 'Suresh v', '5', '9152122769', '7975754580', 'Sureshdevan1996@gmail.com', '1996-07-31', 25, '1', '2', 'Veerakannan p', 'civil work', 25000.00, 5, 15000.00, 20000.00, 'S/Oveerkannan#27/asunnadaguducomoundgowdanapalya', 'uttarahalli', '2204260009', '', '2', 'upload_files/candidate_tracker/57533225557_my resume.pdf', NULL, '1', '2022-04-26', 20, '55583', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-26 04:46:04', 1, '2022-04-26 04:52:53', 0, NULL, 1),
(8554, '', '0', '6380894213', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204260010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-26 04:51:27', 0, NULL, 0, NULL, 1),
(8555, 'Suresh v', '5', '7975754580', '9152122769', 'Sureshdevan1996@gmail.com', '1996-07-31', 25, '1', '2', 'Veerakannan p', 'civil work', 25000.00, 5, 15000.00, 20000.00, 's/Oveerakannan27/Asunnadaguducompoundgowdanapalya', 'uttarahalli', '2204260011', '', '2', 'upload_files/candidate_tracker/44743988479_my resume.pdf', NULL, '1', '2022-04-26', 20, '55583', '3', '59', '2022-04-27', 255600.00, '', '', '2022-04-29', '1', 'Selected for PF/PT - Bangalore Location', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-26 05:41:32', 60, '2022-04-27 05:39:22', 0, NULL, 1),
(8556, 'Kamala nachiar', '4', '9789813675', '', 'kamali.nachiar@gmail.com', '1990-05-07', 31, '3', '1', 'Vivek', 'System engineer', 25000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2204260012', '', '1', 'upload_files/candidate_tracker/74345531498_1646820754736_kamali resume (3) (1) (1).doc', NULL, '1', '2022-04-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need time to confirm with her husband\n', '1', '2', '', '4', '5', '', '2', '2022-05-02', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-26 06:28:15', 85, '2022-04-27 03:19:25', 0, NULL, 1),
(8557, 'Ambika', '5', '6281972674', '8884836762', 'ambikarg262452@gmail.com', '1997-06-07', 24, '1', '2', 'Revanasiddappa', 'Business', 25000.00, 3, 20000.00, 25000.00, '1-33 Kallur Road Taluk Chincholi dist Kalaburagi', 'Shivbagh colony Ameerpet', '2204260013', '', '2', 'upload_files/candidate_tracker/34448171226_ambika latest cv.pdf', NULL, '2', '2022-04-27', 0, 'P1306', '3', '59', '2022-05-16', 277000.00, '', '', '2022-05-30', '1', 'Selected for Hyderabad - PF/ESI/PT', '5', '1', '1', '3', '4', '', '2', '1970-01-01', '3', '1', 'Offer document Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-26 07:21:25', 60, '2022-05-12 12:21:19', 0, NULL, 1),
(8558, 'Umamageshwari', '4', '9150825378', '9444485761', 'Uma2mail21@gmail.com', '2000-06-07', 21, '2', '1', 'Subhashchandra bose v G', 'Workmen', 25000.00, 3, 15000.00, 20000.00, 'Avadi', 'Avadi', '2204270001', '1', '2', 'upload_files/candidate_tracker/83330524733_UMA RESUME.pdf', NULL, '1', '2022-04-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, Communication Average, month back married and right now in Avadi and ready to relocate but her husband is working in Srioerumbuthur,much comfort to work in nonvoice only as she hold a few months exp in non voice,In our Position,will not sustain and handle the pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-27 09:57:36', 1, '2022-04-27 10:26:32', 0, NULL, 1),
(8559, '', '0', '7540075240', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-27 11:24:27', 0, NULL, 0, NULL, 1),
(8560, 'Saranya S', '11', '8220886346', '8190846346', 'sharanyaraj83@gmail.com', '1998-11-08', 23, '2', '2', 'Hamitha selvaraj', 'House wife', 25000.00, 1, 15000.00, 1800.00, 'Perambalur', 'Perambalur', '2204270003', '1', '2', 'upload_files/candidate_tracker/95574554984_sharanyaa cv.pdf', NULL, '2', '2022-04-27', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication Average, have 6 months exp in Admin/Marketing but not a profiled resume, will not sustain in our positions, need to relocate from Trichy, Salary exp in min 15K,If she comes back let us decide on the profile', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', 'Communication Average, Have 6 Months Exp In Admin/Marketing But Not A Profiled Resume, Will Not Sustain In Our Positions, Need To Relocate From Trichy, Salary Exp In Min 15K,If She Comes Back Let Us Decide On The Profile', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-27 11:45:12', 60, '2022-04-27 06:19:46', 0, NULL, 1),
(8561, 'Manikandan', '4', '9894752772', '', 'Mani1707kandan@gmail.com', '1994-07-17', 27, '2', '1', 'Natarajan', 'Government employee', 1.50, 1, 0.00, 11.00, 'Thanjavur', 'Thanjavur', '2204270004', '1', '1', 'upload_files/candidate_tracker/10303286141_mani.docx', NULL, '1', '2022-04-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-27 11:55:32', 1, '2022-04-27 12:00:51', 0, NULL, 1),
(8562, 'Sai Priya', '11', '7032157733', '', 'saipriya4199@gmail.com', '1999-01-04', 23, '2', '2', 'Ramesh', 'Business', 20000.00, 1, 0.00, 15000.00, 'Chittoor', 'Chittoor', '2204270005', '1', '1', 'upload_files/candidate_tracker/5436034347_Sai Resume Updated.docx', NULL, '2', '2022-05-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-27 11:58:02', 85, '2022-04-30 12:14:57', 0, NULL, 1),
(8563, 'Naveenkumar', '6', '8825475732', '8489953631', 'mnaveenece684@gmail.com', '1998-12-17', 23, '2', '1', 'Mani', 'Teacher', 150000.00, 0, 15000.00, 15000.00, 'Erode', 'Erode', '2204270006', '1', '2', 'upload_files/candidate_tracker/62107996068_naveen resme 2021.pdf', NULL, '1', '2022-04-27', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'sALES NOT INTERESTED', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-27 12:03:29', 1, '2022-04-27 12:08:31', 0, NULL, 1),
(8564, 'Karthick M', '17', '8825412002', '', 'Karthickmuruganltr@gmail.com', '1983-10-30', 38, '2', '1', 'Saranya K S', 'Home maker', 50000.00, 2, 500000.00, 650000.00, 'Chennai', 'Chennai', '2204270007', '14', '2', 'upload_files/candidate_tracker/64783225653_M Karthick Resume 2022 latest.docx', NULL, '1', '2022-04-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No sustainability in his profile,have exp in agency handling only,not suitable for GI profile,Will not sustain', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 12:08:28', 1, '2022-04-27 12:16:25', 0, NULL, 1),
(8565, 's.anushuyasangaralingam', '6', '9597458914', '9976167759', 'Anusangaralingam@gmail.com', '2000-06-20', 21, '3', '2', 'sangaralingam,muthu', 'Watch man', 10000.00, 2, 0.00, 15000.00, '.Veerappampalayam Thindal, Perundurai Road Erode', 'Veerappampalayam Thindal, Perundurai Road Erode', '2204270008', '', '1', 'upload_files/candidate_tracker/62472229999_CV_2022030822380958 (1).pdf', NULL, '3', '2022-04-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not intersted in sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-27 12:12:10', 60, '2022-04-27 04:56:08', 0, NULL, 1),
(8566, 'Varsha', '11', '6374892815', '', 'varshazzz238@gmail.com', '2000-08-23', 21, '2', '2', 'Balakrishnan', 'Chef', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2204270009', '1', '1', 'upload_files/candidate_tracker/22427131622_CV_2022042712332862.pdf', NULL, '1', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-27 12:36:52', 1, '2022-04-27 12:40:16', 0, NULL, 1),
(8567, 'Varsha', '11', '6374892915', '', 'varshabalakrishnan23@gmail.com', '2000-08-23', 21, '2', '2', 'Balakrishnan', 'Chef', 25000.00, 1, 11000.00, 15000.00, 'Chennai', 'Chennai', '2204270010', '1', '2', 'upload_files/candidate_tracker/49223072112_CV_2022042712332862.pdf', NULL, '1', '2022-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped.She got aoother offer\n', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-27 12:44:51', 1, '2022-04-27 12:46:55', 0, NULL, 1),
(8568, 'Amudha.a', '6', '6379252811', '', 'ramudha348@gmail.com', '2000-06-06', 21, '1', '2', 'Ammasai.p', 'Forms', 15000.00, 1, 0.00, 10000.00, 'Erode', 'Aval poondurai', '2204270011', '', '1', 'upload_files/candidate_tracker/85089388696_amutha sanmuganathapuram.docx', NULL, '1', '2022-04-27', 0, 'P1303', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CANDIDATE TIMING WAS NOT SUITABLE.. SHES EXPCT LOGUT TIME 6PM. SO REJECTED', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-27 12:53:49', 60, '2022-04-27 04:55:04', 0, NULL, 1),
(8569, 'Saranya.s', '11', '9176843140', '', 'saranyasekar0411@gmail', '2000-11-11', 21, '2', '2', 'Sekar', 'Business', 30000.00, 2, 12000.00, 15000.00, 'Nerkundram', 'Nerkudram', '2204270012', '1', '2', 'upload_files/candidate_tracker/16880345342_Resume - add comp.doc', NULL, '1', '2022-04-27', 5, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Prefer To Speak In Tamil Only, 6 Months Exp In Recruitment But Not A Profiled Resume,Will Not Sustain In Our Positions', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-27 12:57:23', 1, '2022-04-27 01:09:21', 0, NULL, 1),
(8570, 'Monika', '11', '9840204347', '', 'monikamoni2211@gmail.com', '1997-11-22', 24, '2', '2', 'Subramani', 'Business', 25000.00, 1, 13500.00, 15000.00, 'Kolathur', 'Kolathur', '2204270013', '1', '2', 'upload_files/candidate_tracker/71534114717_MONIKARAJ A S (2)-converted.pdf', NULL, '1', '2022-04-27', 4, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Have Exp For A Year But Need To Check Clearly,Not Much Exposure To The Recruitment,Long Run DoubtsCommunication Average,Have Exp For A Year But Need To Check Clearly,Not Much Exposure To The Recruitment,Long Run Doubts', '6', '1', '0', '1', '1', '0', '2', '2022-05-02', '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-27 12:57:30', 1, '2022-04-27 01:02:48', 0, NULL, 1),
(8571, 'S.PRIYANKA', '6', '6383291628', '7010815596', 'sekarpriyanka710@gmail.com', '2001-04-06', 21, '4', '2', 'Mallika', 'Kiri export company', 20000.00, 1, 0.00, 10000.00, 'No.6 nadesha Shetti street murugan opp set', 'Pallipalayam', '2204270014', '', '1', 'upload_files/candidate_tracker/24025223842_Adobe Scan Apr 27, 2022.pdf', NULL, '3', '2022-04-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NO SKILLS.. SO REJECTED', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-27 12:58:30', 60, '2022-04-27 04:55:39', 0, NULL, 1),
(8572, 'Balraji B', '4', '9597977180', '7871515304', 'ragavbala1786@gmail.com', '2001-07-05', 20, '1', '2', 'Bhkthavachalam p', 'Farmer', 85000.00, 3, 0.00, 18000.00, 'Mallapuram', 'Sankarapuram', '2204270015', '', '1', 'upload_files/candidate_tracker/13454683818_Balraji.B .pdf', NULL, '1', '2022-04-27', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 12:59:35', 1, '2022-04-27 01:28:23', 0, NULL, 1),
(8573, '', '0', '8056298879', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204270016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-27 05:44:46', 0, NULL, 0, NULL, 1),
(8574, 'deepika', '11', '8838162651', '', 'rdeepika1902@gmail.com', '1996-06-08', 25, '2', '1', 'sakithvel', 'business', 20000.00, 2, 20000.00, 25000.00, 'chennai', 'chennai', '2204270017', '2', '2', 'upload_files/candidate_tracker/49639879550_Deepinewresume.pdf', NULL, '1', '2022-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Is Good, Have Basic Exp In HR, But Not In Recruitment, Her Current Pay Is Very High Also Her Expectation Is Also High, No Exp In Sourcing Screening,', '6', '1', '0', '1', '1', '0', '2', '2022-05-02', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 06:16:00', 1, '2022-04-27 06:18:51', 0, NULL, 1),
(8575, 'divya m l', '4', '9488869418', '', 'write2divya06@gmail.com', '1992-03-05', 30, '2', '1', 'ramesh', 'banking', 18000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2204270018', '2', '2', 'upload_files/candidate_tracker/25386093622_divya resume new.pdf', NULL, '1', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 06:25:22', 1, '2022-04-27 06:28:22', 0, NULL, 1),
(8576, 'sundar', '6', '7010798197', '', 'sundarseenu440@gmail.com', '2000-06-27', 21, '2', '2', 'srinivasan', 'shop keeper', 20000.00, 3, 0.00, 12000.00, 'chennai', 'chennai', '2204270019', '2', '1', 'upload_files/candidate_tracker/16488785487_5_6105128610618672089.pdf', NULL, '1', '2022-04-28', 0, '', '3', '59', '2022-05-02', 198000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Document Link Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-27 06:36:24', 60, '2022-04-29 04:55:06', 0, NULL, 1),
(8577, 'karanthi kumar', '4', '7397271633', '', 'kranthi.bhass@gmail.com', '1998-10-11', 23, '2', '2', 'bhasker', 'plumber', 15000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2204270020', '2', '2', 'upload_files/candidate_tracker/48485716968_Kranthi Kumar 1.docx', NULL, '1', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-27 06:43:24', 1, '2022-04-27 06:45:51', 0, NULL, 1),
(8578, 'P.RAJA', '4', '8754952095', '9655540258', 'praja10592@gmail.com', '1992-05-10', 29, '2', '2', 'Pandian', 'Farmer', 10000.00, 4, 0.00, 10000.00, 'Ariyalur', 'Kandarathitham', '2204270021', '1', '1', 'upload_files/candidate_tracker/18011485091_RAJAS RESUME(1)(1).pdf', NULL, '1', '2022-04-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-27 06:45:06', 85, '2022-04-28 10:33:49', 0, NULL, 1),
(8579, '', '0', '6382309500', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-27 11:00:26', 0, NULL, 0, NULL, 1),
(8580, '', '0', '7812815640', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-28 07:23:46', 0, NULL, 0, NULL, 1),
(8581, '', '0', '7708760662', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-28 07:24:45', 0, NULL, 0, NULL, 1),
(8582, 'deva prem', '4', '6385142481', '', 'premdeva933@gmail.com', '1999-12-30', 22, '2', '2', 'vellayutham', 'fisherman', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2204280003', '2', '1', 'upload_files/candidate_tracker/59758037158_V.pdf', NULL, '1', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-28 08:15:34', 1, '2022-04-28 08:20:02', 0, NULL, 1),
(8583, 'preethi', '4', '9159294974', '', 'anpreethi27@gmail.com', '1995-02-27', 27, '2', '1', 'shyam', 'contract', 17000.00, 3, 10000.00, 12000.00, 'chennai', 'chennai', '2204280004', '2', '2', 'upload_files/candidate_tracker/64860345452_Preethianjeelien Resume.docx', NULL, '1', '2022-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'frequent Job Changes,will not sustain for a long in Telecaller,also sounds low for for this profile,need to open a lot', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-28 08:21:43', 1, '2022-04-28 08:23:35', 0, NULL, 1),
(8584, 'santhosh', '4', '9940876967', '', 'sansanthosh425@gmail.com', '1997-10-30', 24, '2', '2', 'sagadevan', 'daily wages', 15000.00, 2, 12000.00, 13000.00, 'chennai', 'chennai', '2204280005', '2', '2', 'upload_files/candidate_tracker/66677054909_My resume 2 year QC.pdf', NULL, '1', '2022-04-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have exp in voice process,but as a male candidate we prefer to for field,but he is not ready to go as he is having a plate in the side and comfort to travel,Treid of operations but he is not suitable as there is no communication,no basic ideas using excel', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-28 08:26:12', 60, '2022-04-29 12:34:47', 0, NULL, 1),
(8585, 'manoj princeton', '4', '9751956507', '', 'manojsks1601@gmail.com', '2000-01-16', 22, '2', '2', 'kulanthasamy', 'teacher', 15000.00, 1, 0.00, 12000.00, 'thanjavur', 'thanjavur', '2204280006', '2', '1', 'upload_files/candidate_tracker/42540039135_Manoj Resume-1.pdf', NULL, '2', '2022-04-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-28 08:32:53', 1, '2022-04-28 08:35:09', 0, NULL, 1),
(8586, 'R.S.Hariharasudhan', '4', '9789427405', '8270128027', 'rshariharan90@gmail.com', '1990-03-05', 32, '2', '2', 'R.S.Senthilvelavan', 'IT field', 40000.00, 3, 13500.00, 17000.00, 'Vellore', 'Taramani', '2204280007', '1', '2', 'upload_files/candidate_tracker/39102788918_Resume new.docx', NULL, '1', '2022-04-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok, Have Exp In Collection But Not In Telecaller Sales, Age Around 31 Yrs And Not Suitable For Our Sales RM, He Has 6 Yrs Exp In Core Field, Attitude Issue, Not Suitable For Us', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-28 11:21:39', 1, '2022-04-28 11:27:07', 0, NULL, 1),
(8587, 'Nandini c', '6', '7708054179', '8870602411', 'ssvel2411@gmail.com', '2002-03-04', 20, '1', '1', 'SHAKTHIVEL S', 'Government employe', 40000.00, 0, 17000.00, 20000.00, 'Chennai', 'Velachery chennai', '2204280008', '', '2', 'upload_files/candidate_tracker/60365202399_ScannerGo_28-04-2022-12.16.46.816.pdf', NULL, '1', '2022-04-28', 0, 'JOBS', '3', '59', '2022-05-09', 168000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team in consultant role', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-04-28 12:03:40', 60, '2022-04-29 05:00:52', 0, NULL, 1),
(8588, 'Irshad jalal', '5', '9901960307', '8050990405', 'irshad.koteshwar@gmail.com', '1994-05-21', 27, '3', '2', 'Rahamath', 'Sales', 600000.00, 1, 23000.00, 25000.00, 'Banglore', 'Banglore', '2204280009', '', '2', 'upload_files/candidate_tracker/11857600139_IRSHAD RESUME.pdf', NULL, '1', '2022-04-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not reponding to the calls\n', '5', '2', '', '2', '2', '', '2', '2022-05-04', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-28 01:12:46', 60, '2022-05-03 10:23:12', 0, NULL, 1),
(8589, 'Iswarya B', '4', '9894788364', '7811874911', 'iswaryabaskar64@gmail.com', '2000-04-08', 22, '2', '2', 'Baskar D', 'Weever', 60000.00, 3, 0.00, 16000.00, 'Ellampillai, salem', 'Ellampillai, salem', '2204280010', '1', '1', 'upload_files/candidate_tracker/50846425035_Ishu resume new pdf.pdf', NULL, '3', '2022-04-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-28 03:05:22', 1, '2022-04-28 03:12:20', 0, NULL, 1),
(8590, 'Anjana', '11', '7550228475', '', 'anjanagovind3@gmail.com', '1999-03-03', 23, '2', '2', 'A Govindarajan( Late)', 'Central government employee(late)', 180000.00, 1, 180000.00, 300000.00, 'Chennai', 'Chennai', '2204280011', '1', '2', 'upload_files/candidate_tracker/81495199368_Anjana Resume.pdf', NULL, '2', '2022-04-30', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-28 03:08:41', 1, '2022-04-28 03:44:34', 0, NULL, 1),
(8591, '', '0', '6382789081', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204280012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-28 04:09:53', 0, NULL, 0, NULL, 1),
(8592, '', '0', '9597074576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-29 07:37:13', 0, NULL, 0, NULL, 1),
(8593, 'Jagadesh', '4', '6383298344', '', 'jagadeeshdon1999@gmail.com', '1999-05-24', 22, '2', '2', 'Pacheyaapan', 'Chennai', 65000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2204290002', '1', '2', 'upload_files/candidate_tracker/23452596966_CV_2022042817333478.pdf', NULL, '1', '2022-04-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No clarity in his previous exp,not ready to telecalling and the field sales, Looking for Non voice, but will not sustain in our backend process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-29 10:27:25', 85, '2022-04-29 10:48:28', 0, NULL, 1),
(8594, 'Ramya', '5', '6380755329', '9524222495', 'Santhivramya91@gmail.com', '1991-06-20', 30, '3', '2', 'Muniyappan', 'Farmer', 10000.00, 1, 22000.00, 25000.00, 'Krishnagiri', 'Chennai', '2204290003', '', '2', 'upload_files/candidate_tracker/91442670106_Ramya bio data.pdf', NULL, '1', '2022-04-29', 0, '', '4', '34', NULL, 0.00, '', '0', NULL, '2', 'No relevant Exp ,5 yrs in Backend only,Have a career gap,salary exp is high around 23K,5050 profile,do check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-29 11:17:49', 1, '2022-04-29 11:46:33', 0, NULL, 1),
(8595, 'vinodhini m', '4', '7904770778', '', 'vinothini.mu@gmail.com', '2000-05-16', 21, '2', '2', 'munivel', 'daily wages', 15000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2204290004', '2', '1', 'upload_files/candidate_tracker/63580568860_Document (2) (1).pdf', NULL, '1', '2022-04-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-29 11:38:58', 1, '2022-04-29 11:40:29', 0, NULL, 1),
(8596, 'ganesh', '5', '9677316266', '', 'ganeshscivilganesh@gmail.com', '1989-01-25', 33, '1', '2', '.', 'salaried', 15000.00, 1, 0.00, 18000.00, 'coimbatore', 'banglore', '2204290005', '', '1', 'upload_files/candidate_tracker/16552497045_Ganesh Resume.docx', NULL, '1', '2022-04-29', 0, '55583', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-29 12:36:42', 1, '2022-04-29 12:52:00', 0, NULL, 1),
(8597, 'Tharini. R', '4', '8428329853', '', 'ttharini815@gmail.com', '2000-09-09', 21, '2', '2', 'B. Ravichandran', 'Police man', 45000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2204290006', '1', '1', 'upload_files/candidate_tracker/56707827290_thariniresume.pdf', NULL, '1', '2022-04-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-29 01:03:57', 1, '2022-04-29 01:25:19', 0, NULL, 1),
(8598, 'Sudarson sp', '4', '7502683007', '7200529601', 'sonsudar98@gmail.com', '1998-06-20', 23, '2', '2', 'Palanivel', 'Carpenter', 1.00, 0, 0.00, 15.00, 'Thanjavur', 'Thanjavur', '2204290007', '1', '1', 'upload_files/candidate_tracker/26726260335_sudar- 98resume-2.pdf', NULL, '1', '2022-04-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-29 02:57:56', 85, '2022-04-29 04:28:44', 0, NULL, 1),
(8599, 'Amudha.R', '4', '7358363463', '9840245274', 'amudha.r2020@gmail.com', '2000-03-11', 22, '1', '2', 'Krishna veni.R', 'Super market sales girl', 11000.00, 1, 16000.00, 15000.00, 'Chennai', 'Chennai', '2204290008', '', '2', 'upload_files/candidate_tracker/8469688892_AMUDHA-1.pdf', NULL, '1', '2022-04-29', 0, 'Ci114', '4', '11', NULL, 0.00, '', '0', NULL, '2', '5050Profile,Communication sounds Bold ,can be trained,fresher and sustainability doubts,kindly check and let me know your interest', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-04-29 03:20:52', 1, '2022-04-29 03:27:12', 0, NULL, 1),
(8600, '', '0', '9962364051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-29 04:31:46', 0, NULL, 0, NULL, 1),
(8601, 'Ezhilarasi', '11', '9566374690', '', 'ezhilchinnathambi1991@gmail.com', '1991-07-08', 30, '2', '2', 'Chinnathambi', 'Driver', 40000.00, 1, 18000.00, 20000.00, 'thanjavur', 'thanjavur', '2204290010', '1', '2', 'upload_files/candidate_tracker/33510128874_ezhil resume 2021 August.docx', NULL, '2', '2022-05-02', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Overall 1.5 yrs she traveled with 3 companies and this is her 4th company. In that, last 8 months, only she been in recruitment and looking for min exp of 17K.Long run sustainability doubts in this profile.Letshold this profile and decide later', '6', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-04-29 05:37:01', 1, '2022-04-29 05:41:02', 0, NULL, 1),
(8602, 'Ezhilarasan.H', '11', '8508898730', '', 'ezhi5904@gmail.com', '1998-08-26', 23, '2', '2', 'Haridass.R , Rajalakshmi.H', 'Farmer', 15000.00, 1, 0.00, 16000.00, 'Puducherry', 'Puducherry', '2204290011', '1', '1', 'upload_files/candidate_tracker/99442912814_Ezhil Resume -1.pdf', NULL, '2', '2022-05-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, no basic knowledge in the recruitment, Fresher for the recruitment profile, salary exp in min 14-15K being a fresher,long run as recruiter doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-29 05:41:32', 85, '2022-05-02 09:44:37', 0, NULL, 1),
(8603, 'Bhavani', '11', '7395953671', '', 'bhavaniramadass19@gmail.com', '1998-01-19', 24, '2', '2', 'Ramadass', 'Real estate', 100000.00, 2, 0.00, 25000.00, 'Teynampet', 'Porur', '2204290012', '1', '1', 'upload_files/candidate_tracker/18927950289_resume.pdf', NULL, '1', '2022-05-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok,having multiple offers and focus much on CMMI level companies only, not comfort with the salary,Holding offes and lookin for additionalxquot\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-29 05:47:02', 85, '2022-05-02 10:23:06', 0, NULL, 1),
(8604, '', '0', '8610627538', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204290013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-29 09:48:20', 0, NULL, 0, NULL, 1),
(8605, 'Inthusha K', '11', '7812827615', '', 'inthushainthusha9@gmail.com', '1999-07-06', 22, '2', '2', 'V. Kosalram', 'Business', 3000.00, 2, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2204300001', '1', '1', 'upload_files/candidate_tracker/97244171220_K.Inthusha Resume (1).docx', NULL, '1', '2022-04-30', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '4m exp in Recruiting in bangalore but Donxquott know about sourcing profile . Prefer to talk in tamil From tutukudi relocate to uncle home in avadi long distance too', '6', '1', '', '1', '1', '', '1', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-30 07:59:06', 85, '2022-05-24 10:10:47', 0, NULL, 1),
(8606, 'Janarthanan r', '4', '6381691183', '', 'Www.vickyjans@gmail.com', '1998-06-13', 23, '3', '2', 'Gejalakshmi', 'Housewife', 15000.00, 0, 0.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2204300002', '', '1', 'upload_files/candidate_tracker/56088488570_2022 JATHAGAM.pdf', NULL, '1', '2022-04-30', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-04-30 09:43:50', 85, '2022-04-30 10:58:09', 0, NULL, 1),
(8607, 'Kristen Gonsago A', '11', '9790940629', '9444774519', 'kirstenmerin@gmail.com', '1996-08-20', 25, '2', '2', 'Alosious Gonsago.C', 'Customer service executive', 30000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2204300003', '1', '1', 'upload_files/candidate_tracker/24370349278_Kristen resume.docx', NULL, '1', '2022-04-30', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-30 10:15:02', 85, '2022-04-30 10:56:58', 0, NULL, 1),
(8608, 'T.Karthikeyan', '4', '6369973353', '8754874226', 'karthiviji260598@gmail.com', '1998-05-26', 23, '2', '2', 'Thatchinamoorthi', 'Wiver', 10000.00, 1, 12000.00, 15000.00, 'Sivagiri', 'Sivagiri', '2204300004', '1', '2', 'upload_files/candidate_tracker/71562877091_karthikeyan resume.pdf', NULL, '1', '2022-04-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-04-30 10:36:42', 1, '2022-04-30 10:53:00', 0, NULL, 1),
(8609, '', '0', '7867990665', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204300005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-30 10:58:11', 0, NULL, 0, NULL, 1),
(8610, 'Roshan Ara', '4', '7305692988', '9094419291', 'roshrosh618@gmail.com', '2001-06-06', 20, '2', '2', 'Mohammad jaffer', 'Painter', 6000.00, 1, 0.00, 15000.00, '3/2 Mirza gulam hussain ali khan st, Royapettah', '3/2 mirza gulam hussain ali khan st, Royapettah', '2204300006', '1', '1', 'upload_files/candidate_tracker/36487710805_ROSHANARA (1).pdf', NULL, '1', '2022-04-30', 0, '', '6', '87', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-30 01:01:20', 87, '2022-04-30 02:48:03', 0, NULL, 1),
(8611, '', '0', '9843532318', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2204300007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-04-30 04:11:41', 0, NULL, 0, NULL, 1),
(8612, 'M.R.Parvathavarthini', '6', '9025521171', '9750042391', 'madhurambika@gmail.com', '2000-01-05', 22, '2', '2', 'S .Mahalingam', 'Business', 20000.00, 0, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2204300008', '1', '1', 'upload_files/candidate_tracker/54813675409_Resume_Madhura_Format7.pdf', NULL, '1', '2022-05-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suits for our roles\n', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-30 04:31:55', 60, '2022-05-03 06:04:00', 0, NULL, 1),
(8613, 'naresh kumar', '11', '9655955146', '', 'knareshkumar6474@gmail.com', '1998-06-09', 23, '2', '2', 'karunakara', 'accountant', 20000.00, 0, 0.00, 16000.00, 'chennai', 'krishnagiri', '2204300009', '1', '1', 'upload_files/candidate_tracker/85913995277_Naresh Resume Krishnagiri.pdf', NULL, '2', '2022-05-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-04-30 04:43:49', 85, '2022-05-02 09:46:22', 0, NULL, 1),
(8614, 'Ashwini s', '6', '6380773708', '7395994583', 'ashwinicu30@gmail.com', '1997-04-14', 25, '2', '1', 'Gandhimathi', 'House work', 10000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2204300010', '1', '2', 'upload_files/candidate_tracker/24974191467_ShareRESUMEASHvb.docx', NULL, '1', '2025-02-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1018', '', '', '', '1970-01-01', 1, '2022-04-30 06:55:09', 153, '2025-02-21 11:23:25', 0, NULL, 1),
(8615, 'Balaji i', '11', '7299302346', '', 'balaji.i1998@gmail.com', '1998-12-19', 23, '2', '2', 'Kamatchi i', 'Housewife', 25000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2204300011', '1', '1', 'upload_files/candidate_tracker/15247694253_Balaji', NULL, '1', '2022-05-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected and we offered,but candidate dropped as he is not comfortable in Package', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-04-30 07:58:14', 85, '2022-05-02 02:58:10', 0, NULL, 1),
(8616, 'M.Dharani', '4', '9585128981', '9942522554', 'dharanimohanraj5271@gmail.com', '2001-02-24', 21, '1', '2', 'P.Mohan raj', 'Driver', 15000.00, 1, 0.00, 10000.00, 'Palakkarai', 'Palakkarai', '2205020001', '', '1', 'upload_files/candidate_tracker/75714913983_DHARANI.M (Resume).pdf', NULL, '1', '2022-05-02', 0, 'CI133', '3', '59', '2022-05-02', 126312.00, '', '4', '2022-11-01', '1', 'Consultant Role - Erode - Muthu Elite Team', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-02 10:56:03', 60, '2022-08-16 07:51:57', 0, NULL, 1),
(8617, 'Nithya.M', '4', '7502225680', '8220835547', 'www.nithyamba98@gmail.com', '1998-05-26', 23, '2', '2', 'Mohan .p', 'Former', 50000.00, 2, 0.00, 10000.00, 'Ariyalur', 'Ariyalur', '2205020002', '1', '1', 'upload_files/candidate_tracker/28015901235_resume new (1).pdf', NULL, '1', '2022-05-02', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-02 11:44:14', 85, '2022-05-02 12:30:33', 0, NULL, 1),
(8618, '', '0', '9790079278', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 12:58:56', 0, NULL, 0, NULL, 1),
(8619, 'Jaisurya k', '11', '9092344795', '9003255916', 'Imjaisurya@gmail.com', '1999-01-31', 23, '2', '2', 'Kumar', 'Business', 50000.00, 1, 0.00, 0.00, 'Chennai', 'Chennai', '2205020004', '1', '1', 'upload_files/candidate_tracker/90767326502_Jai_Surya cv.pdf', NULL, '1', '2022-05-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruitment,No basic knowledge in Protal,have a career gap,Sustainability doubts,We tried checking for Back End,but the candidate left without attending the interview', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-02 01:34:11', 1, '2022-05-02 01:37:47', 0, NULL, 1),
(8620, 'Surya M', '6', '9916437793', '7348984382', 'Suryam12071997@gmail.com', '1997-07-12', 24, '1', '2', 'Mohan', 'Work', 40000.00, 5, 0.00, 20000.00, 'Bangalore', 'Bangalore', '2205020005', '', '2', 'upload_files/candidate_tracker/32016847932_CURRICULUM VITAE.docx s123.docx', NULL, '1', '2022-05-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-02 01:36:25', 1, '2022-05-02 02:25:09', 0, NULL, 1),
(8621, '', '0', '9847058486', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 01:40:52', 0, NULL, 0, NULL, 1),
(8622, 'Maheshwari v', '4', '9176294145', '', 'vmaheshwari512@gmail.com', '1999-10-22', 22, '3', '2', 'C.Veeramuthu', 'Carpenter', 70000.00, 2, 9000.00, 12000.00, 'Chennai', 'Chennai', '2205020007', '', '2', 'upload_files/candidate_tracker/82545318383_\'Maheshwari RESUME 2.docx\'.docx\'.pdf', NULL, '1', '2022-05-02', 6, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication and looking for non voice only', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-02 03:01:59', 1, '2022-05-02 03:29:31', 0, NULL, 1),
(8623, '', '0', '9080522165', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 03:02:51', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8624, 'M.Iswarya', '4', '9080523165', '', 'ishwarya5999@gmail.com', '2000-04-03', 0, '1', '2', 'S.maharaja', 'Vegetable merchant', 60000.00, 2, 0.00, 11000.00, 'Chennai', 'Chennai', '2205020009', '', '1', 'upload_files/candidate_tracker/89627406652_ \'\'ISWARYA RESUME 11.docx\'.docx\'.docx', NULL, '1', '2022-05-02', 0, 'CI114', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'much prefer to work in non voice will not sustain and not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-02 03:13:13', 1, '2022-05-02 03:13:59', 0, NULL, 1),
(8625, 'Bhaskar', '4', '6281969205', '7702553244', 'bhaskarraogosu43@gmail', '1996-10-10', 25, '2', '2', 'Vishal', 'Vishal', 10000.00, 0, 0.00, 15000.00, 'Paralapalli village konadapuram mandal', 'Bangalore (BTM)', '2205020010', '1', '1', 'upload_files/candidate_tracker/28891935718_my_resume[1].1.pdf', NULL, '1', '2022-05-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '3', '9', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-02 04:06:28', 85, '2022-05-02 04:50:47', 0, NULL, 1),
(8626, 'JAGADHEESH S', '6', '9080188370', '', 'Jagadheesh927@gmail.com', '1999-05-14', 22, '1', '2', 'Subramani P', 'Daily wages', 20000.00, 4, 0.00, 18000.00, 'Koyambedu', 'Koyambedu', '2205020011', '', '2', 'upload_files/candidate_tracker/73006434930_Jagadheesh S.docx', NULL, '1', '2022-05-02', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,No Relevant sales Exp.no sustainability too,Internal Reference,kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-02 04:48:07', 60, '2022-05-03 01:29:33', 0, NULL, 1),
(8627, '', '0', '6369721804', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 06:25:58', 0, NULL, 0, NULL, 1),
(8628, '', '0', '9245406791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205020013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-02 08:41:57', 0, NULL, 0, NULL, 1),
(8629, 'Kiruthika.s', '6', '8883467332', '9486134206', 'Kiruthi2430@gmail.com', '2000-12-30', 21, '3', '2', 'Saravanan .s', 'Electrion', 15000.00, 0, 0.00, 10000.00, 'Erode', 'Erode', '2205030001', '', '1', 'upload_files/candidate_tracker/67302463822_kri.pdf', NULL, '1', '2022-05-03', 0, '', '3', '59', '2022-05-09', 150000.00, '', '3', '2022-06-22', '2', 'Selected for Suthagar Team - Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-03 09:39:43', 60, '2022-05-09 05:46:05', 0, NULL, 1),
(8630, 'Ravi Raghavan', '11', '9597881437', '8056191437', 'raviraghavan.v@outlook.com', '1995-07-06', 26, '2', '2', 'Vetriveeran', 'Daily Wager', 10000.00, 1, 17695.00, 20000.00, 'Chennai', 'Chennai', '2205030002', '1', '2', 'upload_files/candidate_tracker/1334099011_RAVI RESUME-1.doc', NULL, '1', '2022-05-03', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,have 8 months Exp in recruitment,salary exp is high and his official notice is 30 days and it cant be negotiable.But sustainability doubts,discussed with Gokul too and he is not interested in this profile too', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 09:56:41', 85, '2022-05-03 10:16:04', 0, NULL, 1),
(8631, 'Aiswarya. S', '4', '9597377416', '8220371014', 'aiswarya192923@gmail.com', '1997-05-17', 24, '2', '2', 'S. Sabapathy', 'Cashier', 30000.00, 1, 0.00, 8000.00, 'D. No 26,annamalai nagar, 2nd street, thanjavur.', 'D. No 25,annamalai nagar, 2nd street, thanjavur.', '2205030003', '1', '1', 'upload_files/candidate_tracker/9500717956_Aiswarya resume.pdf', NULL, '1', '2022-05-03', 0, '', '3', '59', '2022-05-05', 126312.00, '', '2', '1970-01-01', '2', 'Selected for Thanjavur - Erode - Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 10:45:41', 60, '2022-05-20 05:11:09', 0, NULL, 1),
(8632, 'Vinothini M', '4', '6385597258', '', 'Www.agalyavinothini563@gmail.com', '1996-10-29', 25, '2', '1', 'g.s.mohanasundaram, shanthi', 'Document writer', 12000.00, 1, 0.00, 10000.00, '22, North Street Ganapathi Nagar Thanjavur', '22, North Street Ganapathi Nagar Thanjavur', '2205030004', '1', '1', 'upload_files/candidate_tracker/8773182666_Vinothini.MS_Vinothini M.pdf', NULL, '1', '2022-05-03', 0, '', '3', '59', '2022-05-05', 126312.00, '', '4', '2022-05-28', '2', 'Selected for Thanjavur - Elite - Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 10:45:55', 60, '2022-05-03 05:10:40', 0, NULL, 1),
(8633, 'Manikandan', '6', '9342157956', '9944650312', 'www.msmanikandan9842@gmail.com', '1999-03-16', 23, '2', '2', 'Meena', 'Tailor', 25000.00, 0, 0.00, 15000.00, '117 singampettai bhavani erode 638311', '117singampettai bhavani erode. 638311', '2205030005', '1', '1', 'upload_files/candidate_tracker/12409669503_mani doc 225_Manikandan_Manikandan C.pdf', NULL, '1', '2022-05-03', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is not fit for sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 10:57:26', 60, '2022-05-03 06:03:23', 0, NULL, 1),
(8634, '', '0', '8610951052', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205030006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-03 11:11:29', 0, NULL, 0, NULL, 1),
(8635, 'Maiyazhagan', '11', '7418279917', '8438211996', 'maiydass01@gmail.com', '1996-12-01', 24, '2', '2', 'Lakshmanan', 'Driver', 30000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2205030007', '1', '1', 'upload_files/candidate_tracker/62845488170_Maiyazhagan-1.pdf', NULL, '1', '2022-05-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He is looking for opportunities in Logistics,long back he attended interview for RE sales and now he appeared for Recruitment.Career Gap and continuously looking for opportunities in Logistics,Will not sustain and not suitable for REcruitment,also his communication is poor', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-03 11:12:16', 85, '2022-05-03 11:29:06', 0, NULL, 1),
(8636, 'A.Rangasamy', '6', '9524766027', '', 'rangasamybcom15@gmail.com', '1998-04-05', 24, '4', '1', 'R.thamaraiselvi', 'Studying', 24000.00, 0, 12000.00, 13000.00, '4/127c, muthananayakkan Palayam, Thokkavadi', '4/127, muthananayakkan Palayam, Thokkavadi', '2205030008', '', '2', 'upload_files/candidate_tracker/9699100702_Rangasamy RESUME-1.docx', NULL, '1', '2022-05-03', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for telecalling', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-03 11:33:22', 60, '2022-05-03 06:05:43', 0, NULL, 1),
(8637, 'SATHISH KUMAR S', '11', '7708129101', '8608981612', 'sathishkumar12298@gmail.com', '1998-06-15', 23, '2', '2', 'Sakthivel', 'Farmer', 40000.00, 2, 15000.00, 20000.00, 'Villupuram', 'Chennai', '2205030009', '1', '2', 'upload_files/candidate_tracker/64600107564_S.SATHISH KUMAR .pdf', NULL, '1', '2022-05-03', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1,8 yrs 3 companies recently 2 months back joined a company and looking for a change only for the salary part,no communication,will not sustain in our roles,not comfortable intaking many calls', '6', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-03 11:45:30', 1, '2022-05-03 11:49:27', 0, NULL, 1),
(8638, 'R.kowsalya', '28', '8939146802', '', 'druga.yashini@gmail.com', '2000-06-03', 21, '2', '2', 'M.Ramalingam', 'Employe', 5000.00, 1, 0.00, 15000.00, 'Bhuvanagiri', 'Mylapore', '2205030010', '1', '1', 'upload_files/candidate_tracker/15995951945_Kowsalya_Resume_Format1.pdf', NULL, '1', '2022-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher ,no basic skills ,have 1 yr exp in textiles sales,but not open up for our Roles,will not handle our pressure not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-03 05:04:44', 1, '2022-05-04 10:13:59', 0, NULL, 1),
(8639, 'K.maha', '13', '6385787975', '9787118279', 'Lakshmim9534@gmail.com', '2000-11-21', 21, '2', '2', 'Kathamparaj', 'farmer', 100000.00, 0, 0.00, 18000.00, 'Chennai', 'Velachery chennai', '2205030011', '1', '1', 'upload_files/candidate_tracker/92897696111_CV_2022032310381632.pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills , yet to complete her graduation,will not sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-03 06:36:47', 87, '2022-05-06 01:04:13', 0, NULL, 1),
(8640, '', '0', '9566048925', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205030012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-03 06:41:47', 0, NULL, 0, NULL, 1),
(8641, 'Shalini Geethanjali', '11', '8610258645', '', 'shalinigeethanjali12@yahoo.com', '1996-10-12', 25, '2', '2', 'Maniselvi', 'Unemployed', 100000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2205030013', '1', '2', 'upload_files/candidate_tracker/5908775491_Shalini resume.pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good,fresher for Recruitment,Min exp is 20 and not ready to come down,Sustainability doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-03 11:31:43', 1, '2022-05-03 11:36:15', 0, NULL, 1),
(8642, 'Praveen.n', '4', '8248472488', '8072046490', 'Jy.praveen007@gmail.com', '1998-07-08', 23, '3', '2', 'Samanasmary.n', 'Home maker', 25000.00, 1, 0.00, 20000.00, 'No:43, near canara bank, nanjikottai road, tanjore', 'No76,arulanandha nagar 1st cross, near barnabas,', '2205040001', '', '1', 'upload_files/candidate_tracker/42857787510_CV_2021-07-20-011547.pdf', NULL, '1', '2022-05-04', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'not fit', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-04 10:21:17', 1, '2022-05-04 10:33:18', 0, NULL, 1),
(8643, 'Agilandeeswari R', '4', '8681947047', '', 'Agila01062000@gmail.com', '2000-06-01', 21, '1', '2', 'Ravi', 'Driver', 10000.00, 1, 0.00, 12000.00, 'Old washermenpet', 'Old washermenpet', '2205040002', '', '1', 'upload_files/candidate_tracker/34768167899_agiiRESUME-converted.pdf', NULL, '1', '2022-05-04', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-04 10:38:33', 1, '2022-05-04 11:09:37', 0, NULL, 1),
(8644, '', '0', '6380590510', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205040003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-04 10:43:41', 0, NULL, 0, NULL, 1),
(8645, 'Pradeep R', '11', '9940563212', '6369627814', 'pradeepchrismas02@gmail.com', '1995-09-02', 26, '2', '2', 'Parent', 'Labour', 15000.00, 2, 17000.00, 20000.00, 'Chennai', 'Chennai', '2205040004', '1', '2', 'upload_files/candidate_tracker/16700464767_Pradeep resume (1).pdf', NULL, '1', '2022-05-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No,have exp but not in recruitment,just a coordination,Salary Exp is high comparing the exp,not suitable\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-04 10:46:23', 85, '2022-05-04 10:58:43', 0, NULL, 1),
(8646, 'anushpri', '11', '9688422232', '', 'ansuhpriya16@gmail.com', '1998-03-19', 24, '2', '2', 'adaikalam', 'officer', 100000.00, 1, 12000.00, 15000.00, 'madurai', 'chennai', '2205040005', '1', '2', 'upload_files/candidate_tracker/98860377389_Anushpriya.A.docx', NULL, '3', '2022-05-03', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok, Have Only 6 Months Exp In Recruitment, Need To Relocate From Madurai But Her Salary Expect Is Around 18K.His Current Salary Is 10K.Her Sustainability Doubts In The Long Run Comparing Her Salary Expectation.', '6', '1', '', '', '', '', '2', '2022-05-23', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-04 10:50:56', 60, '2022-05-18 02:56:00', 0, NULL, 1),
(8647, 'Karthika', '4', '7339589013', '8489400240', 'karthikabalu967@gmail.com', '1996-08-07', 25, '2', '2', 'Balasubramaniyan', 'Driver', 20000.00, 1, 12.50, 15000.00, 'Thaneerkunnam', 'Thaneerkunnam', '2205040006', '1', '2', 'upload_files/candidate_tracker/99055648400_DocScanner Jan 22, 2022 2.57 PM.pdf', NULL, '1', '2022-05-04', 0, '', '3', '59', '2022-05-05', 164208.00, '', '2', '1970-01-01', '2', 'Selected for Elite - Thanjavur - Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-04 11:11:22', 60, '2022-05-20 05:10:52', 0, NULL, 1),
(8648, 'Vinitha', '4', '6379822661', '9486015809', 'Vinidurairajan97@gmail.com', '1997-05-07', 24, '4', '2', 'L.durairajan', 'Farmer', 25000.00, 1, 13000.00, 15000.00, 'Ammanpettai', 'Ammanpettai', '2205040007', '', '2', 'upload_files/candidate_tracker/19224094026_Vanitha resume new.pdf', NULL, '1', '2022-05-04', 0, '', '3', '59', '2022-05-05', 164208.00, '', '2', '1970-01-01', '1', 'Selected for Thanjavur location- Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-05-04 11:20:39', 60, '2022-05-20 05:12:02', 0, NULL, 1),
(8649, 'G.Jackuline', '6', '9790806205', '', 'Jackuline0111@gmail.com', '2000-11-01', 21, '1', '2', 'R.Gnana Sekar', 'Transport', 300000.00, 1, 10000.00, 15000.00, 'No.47 7th St Annai Sivagami Nagar Ennore Ch -57', 'No.47 7th St Annai Sivagami Nagar Ennore Ch-57', '2205040008', '', '2', 'upload_files/candidate_tracker/20832953718_Jack-4.docx', NULL, '1', '2022-05-04', 0, 'P1269', '3', '59', '2022-05-11', 156000.00, '', '4', '2023-02-08', '2', 'Staff Role - Kannan - Balaji Reference - DM RE', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-04 11:30:08', 60, '2022-05-07 11:44:35', 0, NULL, 1),
(8650, 'A Sathiskumar', '6', '9750159149', '', 'sathiskumar12591@gmail.com', '1991-05-12', 30, '4', '1', 'Anbalagan', 'Tailore', 20000.00, 1, 23000.00, 20000.00, 'Bhavani', 'Bhavani', '2205040009', '', '2', 'upload_files/candidate_tracker/26898070288_A.Sathiskumar Resume &.doc', NULL, '1', '2022-05-04', 0, '', '3', '59', '2022-05-10', 216000.00, '', '', '2022-05-16', '1', 'Selected for Erode - PT only - Prop Company', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-04 12:26:08', 60, '2022-05-05 06:46:16', 0, NULL, 1),
(8651, 'Tamilmani', '14', '9171384733', '', 'Ans.tamilmani2828@gmail.com', '1998-08-28', 23, '3', '2', 'N shanmugam', 'Weaver', 10000.00, 1, 0.00, 20000.00, 'Salem', 'Saidapet', '2205040010', '', '1', 'upload_files/candidate_tracker/33412598638_Tamilmani Testing.pdf', NULL, '1', '2022-05-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Full testing profile,no basic skills of HTML CSS JS,Much focus in Testing profile,not comfort in TxxampC,Not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-04 04:42:01', 1, '2022-05-04 04:45:34', 0, NULL, 1),
(8652, 'DineshKumar.p', '13', '7418120206', '8248544161', 'Pgdkumar161@gmail.com', '1997-02-01', 25, '3', '2', 'Paruvaraj v', 'Vegitables', 20000.00, 2, 10000.00, 18000.00, 'Salem', 'Chennai', '2205040011', '', '2', 'upload_files/candidate_tracker/66674481690_Dineshkumar.P (1).pdf', NULL, '1', '2022-05-04', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'have exp in PHP,Exp is almost ok but need to negotiate,can give a try ,check for PHP and let us know', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-04 04:42:10', 1, '2022-05-04 04:49:33', 0, NULL, 1),
(8653, 'malathi', '4', '6369560106', '', 'malathi199710@gmail.com', '1997-07-10', 24, '3', '2', 'ashokkumar', 'hotel business', 200000.00, 1, 0.00, 12000.00, 'Thanjavur', 'thanjavur', '2205050001', '', '1', 'upload_files/candidate_tracker/23197069362_res.pdf', NULL, '1', '2022-05-05', 0, '', '3', '59', '2022-05-06', 126312.00, '', '3', '2022-08-03', '1', 'Selected for Elite - Thanjavur - Consultant', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-05 09:46:18', 60, '2022-05-05 06:35:08', 0, NULL, 1),
(8654, 'Santhosh.A', '4', '9360158774', '7305256102', 'santhoshsri802@gmail.com', '1996-04-04', 26, '3', '2', 'Ayyappan.E', 'Coolie', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2205050002', '', '2', 'upload_files/candidate_tracker/39520921967_santhosh resume .pdf', NULL, '1', '2022-05-05', 0, '', '3', '59', '2022-05-07', 156000.00, '', '3', '2022-06-11', '1', 'Selected for Erode - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-05 10:17:48', 60, '2022-05-07 11:50:52', 0, NULL, 1),
(8655, 'Saranya', '4', '9150574413', '', 'Saranyasamantha136@gmail.com', '1999-06-13', 22, '2', '2', 'G.seenivasan', 'Contractor painter', 30000.00, 2, 0.00, 12000.00, '16/39cit nagar 3rd cross street tnagar', 'T.nagar', '2205050003', '1', '1', 'upload_files/candidate_tracker/41626121739_file_05May22.pdf', NULL, '1', '2022-05-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile,fresher,not sustained in the previous company more than 20 days,Sustainability doubts in our roles,kindly check and let me know your interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-05 10:26:59', 85, '2022-05-05 11:12:27', 0, NULL, 1),
(8656, 'Swathi suresh', '4', '6282409973', '', 'Swathisuresh2255@gmail.com', '2001-09-05', 20, '3', '2', 'Suresh P S', 'Business', 10000.00, 1, 0.00, 19000.00, 'Cherthala, kerala', 'K r puram ,bangaloe', '2205050004', '', '1', 'upload_files/candidate_tracker/13667863522_resume.pdf', NULL, '1', '2022-05-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-05 10:35:06', 1, '2022-05-05 10:40:06', 0, NULL, 1),
(8657, 'jayakumar m.s', '4', '9945327270', '', 'jayakumarmsjaikumar@gmail.com', '1976-10-29', 45, '1', '1', 's.lakshmi', 'house wife', 25000.00, 2, 22000.00, 25000.00, 'BENGALURU', 'BENGALURU', '2205050005', '', '2', 'upload_files/candidate_tracker/67840905183_Resume.pdf', NULL, '1', '2022-05-05', 0, '55555', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-05 10:45:52', 1, '2022-05-05 11:32:54', 0, NULL, 1),
(8658, 'Marimuthu. S', '6', '9944460583', '9894727984', 'marimuthu11052001@gmail.com', '2001-05-11', 20, '1', '2', 'Subramaniyam', 'Carpenter', 20000.00, 1, 0.00, 15000.00, 'Perundurai', 'Erode', '2205050006', '', '1', 'upload_files/candidate_tracker/79892858162_MARIMUTHU S.doc', NULL, '1', '2022-05-05', 0, 'P1311', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-05 10:58:12', 1, '2022-05-05 11:06:57', 0, NULL, 1),
(8659, 'Abdul samad', '11', '9551675471', '7305448661', 'samadsam18@gmail.com', '1994-08-23', 27, '2', '2', 'Parents', 'Nil', 8000.00, 0, 12500.00, 15000.00, '2/51 strahans road 5th Street dadashamakkan ch-12', '2/51 strahans road 5th Street dadashamakkan ch-12', '2205050007', '1', '2', 'upload_files/candidate_tracker/63519437024_abdul samad resume -Final.pdf', NULL, '1', '2022-05-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good,but seems much attentive seeker,will not run for a long in our positions,Pressure handling doubts ', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-05 03:06:36', 85, '2022-05-05 04:17:18', 0, NULL, 1),
(8660, 'Harish Gopalakrishnan', '6', '8825769295', '8524954230', 'harishg7999@gmail.com', '1999-09-07', 22, '3', '2', 'Gopalakrishnan', 'Driver', 30000.00, 1, 0.00, 25000.00, 'Tindivanam', 'Chennai', '2205050008', '', '1', 'upload_files/candidate_tracker/80665970583_CV_2022040411311429.pdf', NULL, '1', '2022-05-05', 0, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'Candidate is okay need to conform the salary', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-05 04:00:05', 1, '2022-05-05 04:02:27', 0, NULL, 1),
(8661, 'Nandhini.B', '11', '9566058830', '9941907555', 'nandhinibaskar3@gmail.com', '1993-05-24', 28, '2', '1', 'RAGHUVARAN', 'IT support in chola ms', 35000.00, 1, 16000.00, 25000.00, 'Chennai', 'Medavakkam', '2205050009', '1', '2', 'upload_files/candidate_tracker/31884845739_Resume%20nan.docx', NULL, '1', '2022-05-06', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication very Average,married sustainability doubts,1.5 yrs but seems not a good profile,will no sustain', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-05 05:05:06', 1, '2022-05-05 05:17:17', 0, NULL, 1),
(8662, 'Karthika m', '4', '9677349415', '', 'Ivalkarthika@gmail.com', '1999-11-19', 22, '3', '2', 'Murugesan K', 'Howskeeping', 15000.00, 3, 10000.00, 10000.00, 'Kumarapalayam', 'Kumarapalayam', '2205060001', '', '2', 'upload_files/candidate_tracker/94345942277_Karthika resume.pdf', NULL, '1', '2022-05-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-06 09:26:26', 1, '2022-05-06 09:34:03', 0, NULL, 1),
(8663, 'Yuvan Shankar', '11', '7358496540', '8056002904', 'ajaybabu7358@gmail.com', '1999-06-28', 22, '2', '2', 'K babu', 'Cleark', 10000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2205060002', '1', '1', 'upload_files/candidate_tracker/41770627997_shankarnew resume (2)-converted-converted (1).pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher,no basic in recruitment,even in excel,will not handle the work pressure,will not run in a long', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 09:41:30', 1, '2022-05-06 10:34:24', 0, NULL, 1),
(8664, 'S. Harini', '11', '9629490002', '9940462234', 'harinibava@gmail', '1989-09-01', 32, '3', '1', 'R. Sundarajan', 'Production manager', 45000.00, 1, 0.00, 20000.00, 'No. 113/1, swamy Naicken St, chindradripet, ch. 2', 'Same as above', '2205060003', '', '2', 'upload_files/candidate_tracker/98877857653_resume (1).docx', NULL, '1', '2022-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Aged,9yrs gap,Fresher for Recruitment,Not comfort to work on saturdays,will not sustain not suitable', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-06 09:42:03', 1, '2022-05-06 09:52:21', 0, NULL, 1),
(8665, 'g padmapriya', '6', '9080959069', '', 'padmapriya3097@gmail.com', '1997-12-30', 24, '1', '2', 'govindasamy', 'driver', 15000.00, 1, 12000.00, 14000.00, 'bhavani', 'bhavani', '2205060004', '', '2', 'upload_files/candidate_tracker/35119998905_Padmapriya CV-3.pdf', NULL, '1', '2022-05-06', 0, 'p1303', '3', '59', '2022-05-09', 168000.00, '', '', '2022-05-14', '2', 'Selected for Suthagar Team - Consultant Role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', 'Offer Mail sent', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 09:47:36', 60, '2022-05-07 04:39:23', 0, NULL, 1),
(8666, 'C.nivedha', '16', '6374039875', '6379013087', 'nivedhasekar9@gmail.com', '2002-04-29', 20, '2', '2', 'S.chandrasekar', 'Salesman', 11000.00, 1, 0.00, 15000.00, '6/1 ramaligam street sevenwells mint chennai -1', '6/1 ramaligam street sevenwells mint chennai -1', '2205060005', '1', '1', 'upload_files/candidate_tracker/37524679537_TapScanner 05-06-2022-10?51.pdf', NULL, '1', '2022-05-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for MIS,can give a try,Gokul Interviewed,Yet to complete their exams,if they come back lets see', '3', '2', '0', '1', '1', '0', '2', '2022-05-16', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 10:32:23', 1, '2022-05-06 10:52:57', 0, NULL, 1),
(8667, 'Ashwitha C', '16', '8248113250', '', 'ashwithachandrasekar02@gmail.com', '2002-07-24', 19, '2', '2', 'Chandraseker S', 'Shopkeeper', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2205060006', '1', '1', 'upload_files/candidate_tracker/5522427608_Ashwitha C Resume.pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,need to open alot,will not handle our pressure not suitable', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 10:32:33', 1, '2022-05-06 11:46:47', 0, NULL, 1),
(8668, 'D.v.Bharathi', '16', '9176317450', '', 'Bharathivasanth2806@gmail.com', '2002-05-28', 19, '2', '2', 'D.Vasantha kumar', 'Business', 22000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2205060007', '1', '1', 'upload_files/candidate_tracker/47677815704_TapScanner 05-06-2022-10?42.pdf', NULL, '1', '2022-05-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher For MIS,Can Give A Try, Gokul Interviewed,Yet To Complete Their Exams,If They Come Back Lets See', '3', '2', '0', '1', '1', '0', '2', '2022-05-16', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 10:32:42', 1, '2022-05-06 10:46:19', 0, NULL, 1),
(8669, 'R.Shalini', '16', '9080158585', '9444443747', 'Shaluma17012002@gmail.com', '2002-01-17', 20, '2', '2', 'Ramesh SD', 'Sub Inspector', 40000.00, 1, 0.00, 15000.00, 'No.41 A block Triplicane police quarters', 'Chennai', '2205060008', '1', '1', 'upload_files/candidate_tracker/13741390076_CV_2022032310381632.pdf', NULL, '1', '2022-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher,Need To Open Alot,Will Not Handle Our Pressure Not Suitable', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-06 10:32:59', 87, '2022-05-06 01:05:14', 0, NULL, 1),
(8670, 'Mythily. N', '6', '9344697831', '', 'mythilynagarajan08@gmail.com', '2001-03-08', 21, '1', '2', 'Nagarajan. R', 'Construction supervisor', 50000.00, 1, 0.00, 12000.00, 'Chennimalai', 'Chennimalai', '2205060009', '', '1', 'upload_files/candidate_tracker/7110119998_Mythily profile oct.pdf', NULL, '1', '2022-05-06', 0, 'P1311', '3', '59', '2022-05-09', 144000.00, '', '6', '2022-09-01', '2', 'Selected for Suthagar Erode - Consultant', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', 'Offer Mail shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 10:39:17', 60, '2022-05-07 04:53:49', 0, NULL, 1),
(8671, 'Sundarapandi. R', '6', '9677018364', '', 'Johnsonjanath1303@gmail.com', '1996-03-13', 26, '1', '2', 'Rathinam. m', 'Dailywages', 15000.00, 3, 0.00, 20000.00, 'No 36 ponnan street purasaiwalkam chennai 600007', '36 Ponnan Street Purasaiwalkam Chennai 600007', '2205060010', '', '1', 'upload_files/candidate_tracker/37970686101_Latest SUNDARAPANDIYAN Resume(1)(1)(1).pdf', NULL, '1', '2022-05-06', 0, 'P1304', '3', '59', '2022-05-11', 185000.00, '', '', '2022-05-17', '1', 'Selected for Ravi Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', 'Offer Letter Document Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 11:24:26', 60, '2022-05-11 10:30:08', 0, NULL, 1),
(8672, '', '0', '9444443747', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-06 11:30:52', 0, NULL, 0, NULL, 1),
(8673, 'Shanmuga priya', '6', '9443009343', '9080284348', 'gshanmugapriyaece@gmail.com', '1996-01-02', 26, '3', '2', 'Nirmala Devi G', 'Sales women', 7000.00, 1, 20000.00, 16000.00, 'Sivagiri', 'Sivagiri', '2205060012', '', '2', 'upload_files/candidate_tracker/36626251833_RESUME 2022 SHANMUGA PRIYA WITH PHOTO (1).pdf', NULL, '1', '2022-05-06', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'nO RELAVAND EXPERIENCE.. ALREADY HAVING 20K SALARY SO EXPECT SALARY WE NOT PROVIDE', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 11:49:31', 60, '2022-05-06 03:38:53', 0, NULL, 1),
(8674, 'Gokul k', '11', '7358589737', '9080413328', 'gokularvind97@gmail.com', '1997-01-07', 25, '2', '2', 'Kannan', 'Private job', 30.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2205060013', '1', '1', 'upload_files/candidate_tracker/77960822235_CV_2022050514064633.pdf', NULL, '1', '2022-05-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking much focus on the core,will not run for a long in our roles,will not sustain', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-06 11:54:54', 1, '2022-05-06 11:59:05', 0, NULL, 1),
(8675, 'Thiruvengadam', '5', '8610250716', '8489884724', 'tvsunsilk@gmail.com', '1989-05-15', 32, '1', '1', 'Tamil elakkiya', 'Agriculture', 20000.00, 2, 31000.00, 40000.00, 'Chennai', 'Chennai', '2205060014', '', '2', 'upload_files/candidate_tracker/26126974565_update resume.pdf', NULL, '1', '2022-05-06', 0, '55559', '4', '34', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Sales,but not sure on the calling activities,age around 32 years,,taking calls doubts a lot,5050 profile do check and let me know\n', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 12:28:07', 60, '2022-05-06 03:43:53', 0, NULL, 1),
(8676, 'Madhavan.m', '1', '9361548365', '', 'madhavanba49@gmail.com', '2001-12-15', 20, '2', '2', 'Murugan.m', 'Farmer', 10000.00, 1, 13000.00, 15000.00, 'Marakkanam', 'Velachery', '2205060015', '1', '2', 'upload_files/candidate_tracker/42139921208_mathavan.docx', NULL, '1', '2022-05-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open up,will not handle our pressure', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-06 12:30:46', 85, '2022-05-06 12:55:42', 0, NULL, 1),
(8677, 'Sivaraman D', '5', '8072946509', '', 'sndgsivaraman@gmail.com', '1996-05-17', 25, '1', '2', 'Dharmalingam', 'Wever', 15000.00, 1, 30000.00, 30000.00, 'Chennai', 'Chennai', '2205060016', '', '2', 'upload_files/candidate_tracker/32613442654_CV_2022032310381632.pdf', NULL, '1', '2022-05-06', 0, 'P1191', '3', '59', '2022-05-11', 375000.00, '', '4', '2022-09-07', '1', 'Selected for Pandian Team - PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Letter Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-06 01:24:33', 60, '2022-05-10 05:12:34', 0, NULL, 1),
(8678, 'kiruthika.m', '11', '9345234199', '8098725806', 'keerthimurugaiyan1224@gmail.com', '1999-07-02', 22, '2', '2', 'murugaiyan.p', 'accounts and finance', 20000.00, 0, 0.00, 12000.00, 'chennai', 'velacherry check post', '2205060017', '1', '1', 'upload_files/candidate_tracker/63581798936_keerthi Resume.pdf', NULL, '1', '2022-05-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication,not suits for recruitment,not interested to go in telesales too , not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-06 02:04:11', 87, '2022-05-07 10:21:33', 0, NULL, 1),
(8679, '', '0', '9566057441', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205060018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-06 10:37:04', 0, NULL, 0, NULL, 1),
(8680, 'Premkumar', '4', '7200378444', '', 'bpremkumar030@gmail.com', '1995-01-30', 27, '3', '2', 'Balaji', 'Tailor', 10000.00, 1, 25000.00, 20000.00, '43, pillayarkoil st reddiyur', 'Svs Nagar, valasaravakam', '2205070001', '', '2', 'upload_files/candidate_tracker/47759058414_prem.docx', NULL, '1', '2022-05-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-07 09:47:41', 1, '2022-05-07 09:54:39', 0, NULL, 1),
(8681, 'Naresh M', '11', '8148142608', '', 'Naresh.uv2112@gmail.com', '1995-12-21', 26, '2', '2', 'Alamelu', 'Home maker', 20000.00, 0, 18500.00, 22000.00, 'Chennai', 'Chennai', '2205070002', '1', '2', 'upload_files/candidate_tracker/9285988289_naresh resume 2.pdf', NULL, '1', '2022-05-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Recruiter,but his exp is very high concern the previous exp,not ready to come down on the salary and being a fresher exp very high', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-07 10:44:39', 1, '2022-05-07 10:47:59', 0, NULL, 1),
(8682, '', '0', '9562984098', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205070003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-07 11:38:24', 0, NULL, 0, NULL, 1),
(8683, '', '0', '9886678878', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205070004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-07 11:56:27', 0, NULL, 0, NULL, 1),
(8684, 'Meghana. J', '5', '7019666545', '9353390310', 'santhusanthosh01738@gmail.com', '2000-09-06', 21, '1', '1', 'Santosh', 'Self employee', 20000.00, 1, 0.00, 20000.00, 'Bellandur BBMP office 2nd cross opposite', 'Bellandur BBMP office 2nd cross', '2205070005', '', '1', 'upload_files/candidate_tracker/59135935898_MEGHA J.doc', NULL, '1', '2022-05-07', 0, '55599', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-07 12:59:29', 60, '2022-05-09 11:40:37', 0, NULL, 1),
(8685, '', '0', '8062628152', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-07 03:12:33', 0, NULL, 0, NULL, 1),
(8686, 'nagaraj.s', '4', '8270455986', '9688742015', 'masternaga986@gmail.com', '2000-10-27', 21, '1', '2', 'shanmugam', 'business', 20000.00, 1, 0.00, 14000.00, 'bhavani', 'bhavani', '2205070007', '', '1', 'upload_files/candidate_tracker/69658163305_Resume (1).pdf', NULL, '1', '2022-05-07', 0, 'p1311', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-07 03:21:11', 1, '2022-05-07 03:57:09', 0, NULL, 1),
(8687, '', '0', '9840132752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205070008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-07 03:27:35', 0, NULL, 0, NULL, 1),
(8688, 'chiranjeevi n', '5', '7760323801', '', 'chiranjeevinmba@gmail.com', '1993-01-03', 29, '1', '2', 'anantha p', 'housewife', 100000.00, 0, 0.00, 20000.00, 'marathahalli', 'marathahalli', '2205070009', '', '1', 'upload_files/candidate_tracker/28629488177_chiru_resume-6.doc', NULL, '1', '2022-05-07', 0, '55601', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-07 03:32:34', 1, '2022-05-07 03:43:31', 0, NULL, 1),
(8689, 'Divya', '4', '6374387075', '7598424651', 'Divyaravi2632000@gmail.com', '2000-03-26', 22, '2', '2', 'Ravi', 'Business', 25000.00, 1, 15000.00, 18000.00, 'Surandai', 'Chennai', '2205070010', '1', '2', 'upload_files/candidate_tracker/16274086273_Divya R.pdf', NULL, '1', '2022-05-13', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-05-07 08:29:19', 1, '2022-05-07 08:42:28', 0, NULL, 1),
(8690, 'vasanth k', '4', '8838072383', '', 'kvasanth1203@gmail.com', '2000-03-12', 22, '2', '2', 'kumar', 'agriculture', 15000.00, 1, 0.00, 12000.00, 'erode', 'chennai', '2205090001', '2', '1', 'upload_files/candidate_tracker/79001602139_vasanth. k _ resume.pdf', NULL, '1', '2022-05-09', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,need to open a lot,can give a try for Erode,Once done with next round lets see', '1', '1', '0', '1', '1', '0', '2', '2022-05-10', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-09 09:18:53', 1, '2022-05-09 09:20:30', 0, NULL, 1),
(8691, 'Wilson', '6', '9025565434', '9384623380', 'Willuwilson96@gmail.com', '1999-06-22', 22, '1', '2', 'Moses', 'Cooli', 10000.00, 2, 17000.00, 20000.00, 'No. 3, 1st Street, Sasthri Nagar, Chennai 600084.', 'No. 3, 1st Street, Sasthri Nagar, Chennai 600084.', '2205090002', '', '2', 'upload_files/candidate_tracker/46064066565_Kaagaz_20220509_105433055391.pdf', NULL, '1', '2022-05-09', 0, 'P1306', '3', '59', '2022-05-16', 204000.00, '', '', '2022-05-17', '1', 'Selected for Thiyagu Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-09 10:42:52', 60, '2022-05-14 05:44:30', 0, NULL, 1),
(8692, 'mohammed ABINAS', '4', '6381266022', '', 'mdabina97@gmail.com', '1997-11-09', 24, '2', '2', 'syed', 'bussiness', 20000.00, 1, 0.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2205090003', '1', '1', 'upload_files/candidate_tracker/67835003390_RESUME (27).pdf', NULL, '1', '2022-05-09', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for voice process', '1', '1', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-09 11:05:39', 85, '2022-05-11 12:59:15', 0, NULL, 1),
(8693, 'Bharathraj', '31', '8925686482', '7708660293', 'Bharathraj7598@gmail.com', '1998-05-07', 24, '1', '2', 'Tamizhmani', 'Residency manager', 10000.00, 2, 0.00, 15000.00, 'Tindivanam', 'Adambakkam chennai', '2205090004', '', '1', 'upload_files/candidate_tracker/33434621962_Bharathraj', NULL, '1', '2022-05-09', 0, 'JOBS', '3', '59', '2022-05-10', 120000.00, '', '3', '2024-03-01', '1', 'Selected for Mern - 5K stipend for 5 month then 10-12K Salary 3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-09 11:49:22', 60, '2022-05-10 04:54:36', 0, NULL, 1),
(8694, 'Venkatesan S', '6', '9840279313', '9952069674', 'Venkatesans2810@gmail.com', '1991-10-28', 30, '1', '2', 'Driver', '15000', 20000.00, 0, 0.00, 20000.00, 'Vandavasi', 'Chennai, pallikaranai', '2205090005', '', '1', 'upload_files/candidate_tracker/85213844863_RESUME 4.docx.pdf', NULL, '1', '2022-05-09', 0, 'Joba', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-09 12:23:05', 1, '2022-05-09 12:35:37', 0, NULL, 1),
(8695, '', '0', '7358468026', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-09 12:26:23', 0, NULL, 0, NULL, 1),
(8696, 'Paviya p', '11', '8248624152', '7305155580', 'Paviya3176@gmail.com', '2001-02-09', 21, '2', '2', 'Sukesh', 'Hr', 20.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2205090007', '1', '2', 'upload_files/candidate_tracker/42824289358_paviya updated.docx', NULL, '3', '2022-05-14', 20, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok,Have Exp In Telecalling And 3 Months In Recruitment,Need To Be Trained,5050 Profile,Not Comfirtable With TxxampC', '6', '1', '0', '1', '1', '0', '2', '2022-05-16', '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-09 03:35:08', 1, '2022-05-09 04:08:04', 0, NULL, 1),
(8697, 'M.sai Lakshit', '11', '9363510119', '9840172472', 'sailogesh0852@gmail', '1998-02-04', 24, '2', '2', 'Madhavan', 'Daily wages', 1500.00, 0, 0.00, 14000.00, 'Guduvanchery', 'Guduvanchery', '2205090008', '1', '1', 'upload_files/candidate_tracker/80278741364_resume sai final.pdf', NULL, '1', '2022-05-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-09 05:12:55', 1, '2022-05-09 05:25:45', 0, NULL, 1),
(8698, 'sahana', '11', '8682912393', '', 'sahanasara1997@gmail.com', '1997-12-19', 24, '2', '2', 'kirupanandam', 'officer', 10000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2205090009', '1', '1', 'upload_files/candidate_tracker/97348395015_sahana1.pdf', NULL, '1', '2022-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication is Good, has exp in IT recruitment, her current salary is 2.5 LPA, earlier when she joins the company it was 2.3 LPA. Now she is expecting 3 LPA finally ready to come down to 2.6 LPA but only 6 months strong in IT profiles. In our sales profile, she was ok but seems not much comfortable with TxxampC.Ask her to come for F2F and lets decide', '6', '1', '', '', '', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-09 05:16:43', 60, '2022-05-18 02:59:08', 0, NULL, 1),
(8699, '', '0', '7305457458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205090010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-09 08:30:14', 0, NULL, 0, NULL, 1),
(8700, 'Jagan p', '6', '7604998198', '9965128841', 'jaganperiyasamy1234@gmail.com', '2002-08-20', 19, '2', '2', 'PERIYASAMY EP', 'Couli', 72.00, 0, 7000.00, 12.00, 'Ganapathypalayam', 'Ganapathypalayam', '2205100001', '1', '2', 'upload_files/candidate_tracker/53136367553_jagan new resumes.pdf', NULL, '1', '2022-05-10', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '19yrs old .. not suitable for our profile.. ', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-10 10:29:07', 60, '2022-05-10 04:31:11', 0, NULL, 1),
(8701, 'Vimalraj', '6', '9344149629', '', 'priyanprithvi980@gmail.com', '2003-06-27', 18, '2', '2', 'Veerappan v', 'Couli', 70.00, 1, 13000.00, 13000.00, 'NANJAIPULIYAMPATTI', 'GOBICHETTIPALAYAM', '2205100002', '1', '1', 'upload_files/candidate_tracker/70102212860_vimalraj resume msv.pdf', NULL, '1', '2022-05-10', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '19yrs Old .. Not Suitable For Our Profile.. ', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-10 10:29:18', 60, '2022-05-10 04:30:42', 0, NULL, 1),
(8702, 'naveen prasanth', '4', '9600894625', '', 'svnaveenprasanth@gmail.com', '1992-08-07', 29, '2', '2', 'vaitheeswaran', 'driver', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2205100003', '2', '1', 'upload_files/candidate_tracker/65319361058_Naveenprasanth_resume-converted.pdf', NULL, '1', '2022-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-10 11:53:05', 1, '2022-05-10 11:56:10', 0, NULL, 1),
(8703, 'Magesh .K', '6', '8667575204', '9043578051', 'davidmagesh1997@gmail.com', '1997-05-22', 24, '2', '2', 'Poongodi.p', 'Working court staff. Bhavani', 20000.00, 1, 0.00, 15.00, 'Perundurai', 'erode', '2205100004', '1', '1', 'upload_files/candidate_tracker/70159517268_David resume 3.pdf', NULL, '1', '2022-05-10', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate okay.. but candidate need to discuss with family because here target job so', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-10 12:27:41', 85, '2022-05-10 12:35:24', 0, NULL, 1),
(8704, 'Manikandan M', '4', '9080006765', '', 'lovrymani@gmail.com', '1998-01-14', 24, '4', '1', 'Karthipriya', 'Housewife', 30000.00, 1, 14700.00, 15000.00, 'ERODE', 'ERODE', '2205100005', '', '2', 'upload_files/candidate_tracker/93789786868_Mani resume.docx', NULL, '1', '2022-05-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-10 12:44:21', 1, '2022-05-10 12:51:58', 0, NULL, 1),
(8705, 'Pushparaj.R', '11', '8807988890', '9940545308', 'rohitraj98404@gmail.com', '2001-06-28', 20, '2', '2', 'E.Rajan', 'Land survey and settlement department.', 20000.00, 1, 20000.00, 23000.00, '40/9 new street dhamodrapuram adyar Chennai 600020', '40/9 new street dhamodrapuram adyar Chennai 600020', '2205100006', '1', '2', 'upload_files/candidate_tracker/38021697418_Pushparaj.R (Resume)(2).pdf', NULL, '1', '2022-05-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-10 01:15:19', 1, '2022-05-10 03:02:35', 0, NULL, 1),
(8706, 'SAI KUMAR KJ', '6', '9940277607', '9176589807', 'sksai2119@gmail.com', '1999-01-21', 23, '3', '2', 'KANNAN', 'Business', 90000.00, 1, 0.00, 22000.00, 'AP 50,9th Street ,ANNA NAGAR WEST , CH- 600101', 'AP 50,9th Street ,ANNA NAGAR WEST , CH- 600101', '2205100007', '', '1', 'upload_files/candidate_tracker/82526742239_RESUME ( SAI KUMAR KJ).docx', NULL, '1', '2022-05-10', 0, '', '3', '59', '2022-05-12', 198000.00, '', '', '1970-01-01', '1', 'Selected for Syed Team - Staff Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-10 01:26:11', 60, '2022-05-10 07:06:02', 0, NULL, 1),
(8707, 'chandana', '11', '9182354935', '', 'chandanapentyala@gmail.com', '1997-05-05', 25, '2', '2', 'chandanapentyala', 'officer', 100000.00, 0, 18000.00, 20000.00, 'chennai', 'chennai', '2205100008', '1', '2', 'upload_files/candidate_tracker/9606962625_chandanaresume221.docx', NULL, '2', '2022-05-14', 0, '', '6', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '', '', '', '1', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-10 06:53:18', 87, '2022-05-18 03:19:40', 0, NULL, 1),
(8708, 'JEEVAGAN.R', '4', '9600818965', '9025415733', 'Jeevagan44633@gmail.com', '2003-06-30', 18, '2', '2', 'RAJASEKAR.M', 'DRIVER', 10000.00, 1, 0.00, 13000.00, 'MANNARGUDI', 'MANNARGUDI', '2205110001', '1', '1', 'upload_files/candidate_tracker/91195586194_ Resume.pdf', NULL, '1', '2022-05-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 10:35:32', 85, '2022-05-11 10:57:32', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8709, 'Ganesh Kumar.R', '4', '9025415733', '9600818965', 'Gkt0707gkt@gmail.com', '2002-05-04', 20, '2', '2', 'Rajasekar.S', 'Driver', 13.00, 1, 0.00, 12.00, 'Rukmanikulam thenkarai,Mannargudi', 'Rukmanikulam Thenkarai,Mannargudi', '2205110002', '1', '1', 'upload_files/candidate_tracker/26713794383_Ganesh resume.docx', NULL, '1', '2022-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped No response', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 10:35:34', 85, '2022-05-11 10:57:52', 0, NULL, 1),
(8710, 'Mohana Priya', '11', '9094205983', '', 'Mohana2000priya@gmail.com', '2000-02-20', 22, '2', '2', 'Anbu raj', 'Self employee', 50000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2205110003', '1', '1', 'upload_files/candidate_tracker/96182210775_Mohana Priya.pdf', NULL, '1', '2022-05-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,For recruiter she need to open a lot no basic ideas in the recritment,have exp in telecalling sales,but no sustainability in the previous exp.not comfort on the TxxampC.Will not sustain and not suitable for sales too ', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-11 11:09:06', 1, '2022-05-11 11:13:14', 0, NULL, 1),
(8711, 'Ezhilarasan', '5', '7708312615', '', 'ezhilarasan.seshadri@gmail.com', '1997-08-20', 24, '3', '2', 'Seshadri', 'Despatch clerk', 16000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2205110004', '', '1', 'upload_files/candidate_tracker/92366936205_Resume ezhilarasan.docx', NULL, '1', '2022-05-11', 0, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'not ok with calling', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-11 11:29:51', 1, '2022-05-11 11:37:42', 0, NULL, 1),
(8712, 'K.Sandhiya Dharshini', '4', '7338726771', '9025583735', 'sandhiyasandhu27@gmail.com', '2000-03-08', 22, '2', '2', 'K.Gayathri', 'Housewife', 12000.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2205110005', '1', '1', 'upload_files/candidate_tracker/45763696903_K.Sandhiya Dharshini Resume.pdf', NULL, '1', '2022-05-11', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile,focus much in accounts profile,Fresher for Telecalling ,kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 11:43:40', 85, '2022-05-11 12:12:02', 0, NULL, 1),
(8713, 'Sukumar', '4', '6383259415', '8124142475', 'sukumar6198@gmail.com', '1997-07-06', 24, '2', '2', 'Chandrasekaran', 'Painter', 6000.00, 0, 0.00, 13000.00, '719/2, ashok nagar manojipatti Thanjavur', '719/2, Ashok Nagar Manojipatti Thanjavur', '2205110006', '1', '1', 'upload_files/candidate_tracker/22359553615_SUKUMAR.C RESUME (1).pdf', NULL, '1', '2022-05-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sithyvinayagam rejected the profile\n', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 12:15:49', 85, '2022-05-11 12:49:21', 0, NULL, 1),
(8714, 'Mugesh.s', '4', '6382969563', '8608055163', 'Mugeshselvaraj533@gmail.com', '2002-06-11', 19, '2', '2', 'P.selvaraj', 'Painter', 10000.00, 0, 0.00, 13000.00, 'TPS nagar Thanjavur', 'TPS nagar Thanjavur', '2205110007', '1', '1', 'upload_files/candidate_tracker/67591539104_Mukesh Resume.pdf', NULL, '1', '2022-05-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-11 12:15:50', 85, '2022-05-11 12:47:50', 0, NULL, 1),
(8715, 'K.sathishkumar', '6', '8124455938', '8056495927', 'sathishh1404@gmail.com', '1997-04-14', 25, '1', '1', 'Manimala.s', 'Assistant professor', 20000.00, 2, 16000.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2205110008', '', '2', 'upload_files/candidate_tracker/7469793876_Sathish updated Resume-converted.pdf', NULL, '1', '2022-05-11', 0, 'P1290', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal REference,not interested in telesales,not interested in Insurance domain too.not suitable ', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-11 12:31:51', 1, '2022-05-11 01:02:48', 0, NULL, 1),
(8716, 'Carole grace', '11', '7338822191', '9003026937', 'Carolegrace1503@gmail.com', '2000-05-15', 21, '2', '2', 'Andrew robert', 'Social worker', 60000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2205110009', '1', '1', 'upload_files/candidate_tracker/3265019304_carole resume.pdf', NULL, '1', '2022-05-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-11 12:33:07', 1, '2022-05-11 12:37:53', 0, NULL, 1),
(8717, 'mopidevi sirisha', '5', '8886442344', '6281410021', 'm.sirisha1004@gmail.com', '1991-04-10', 31, '1', '2', 'm.vijayalakshmi', 'working', 25000.00, 2, 15000.00, 25000.00, 'tenali', 'tenali', '2205110010', '', '2', 'upload_files/candidate_tracker/21575716312_MBA.pdf', NULL, '2', '2022-05-12', 0, 'p1232', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'This is Hyd Candidate and we have freezed recruitment there', '5', '2', '', '3', '4', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-11 01:08:59', 60, '2022-05-12 10:59:18', 0, NULL, 1),
(8718, 'Sanjay Krishna M', '5', '8056165200', '', 'sanjaykrishna8496@gmail.com', '1996-04-08', 26, '1', '2', 'Manisekar G', 'Retired teacher', 1500000.00, 1, 450000.00, 600000.00, 'Chennai', 'Chennai', '2205110011', '', '2', 'upload_files/candidate_tracker/32200040740_Sanjay krishna Resume-3.pdf', NULL, '1', '2022-05-11', 1, '55585', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-11 02:52:53', 1, '2022-05-11 02:55:44', 0, NULL, 1),
(8719, 'Vijay', '4', '9787818136', '', 'ryanvijay0505@gmail.com', '1998-03-03', 24, '2', '2', 'Ravi', 'Man\'s', 12000.00, 2, 0.00, 15000.00, 'Sholinghur', 'Sholinghur', '2205110012', '1', '1', 'upload_files/candidate_tracker/69169698339_Resume_R.VIJAY.pdf', NULL, '3', '2022-05-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-05-11 03:16:08', 1, '2022-05-11 03:50:21', 0, NULL, 1),
(8720, 'A.m.Oshama Ul Bayaz Parves', '11', '6383775098', '', 'bayazparves2001@gmail.com', '1999-05-17', 22, '2', '2', 'Mohamed Hussain', 'Transaction processing representative', 13000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2205110013', '1', '1', 'upload_files/candidate_tracker/25103581877_Oshama resume crt.docx', NULL, '1', '2022-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communicaiton Average,no basic ideas in the recruitment and understanding poor.will not sustain in our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-05-11 03:37:53', 1, '2022-05-11 03:42:13', 0, NULL, 1),
(8721, 'janani', '11', '9003233170', '', 'jananishera@gmail.com', '1998-01-15', 24, '2', '2', 'father', 'officer', 100000.00, 0, 0.00, 16000.00, 'chennai', 'chennai', '2205110014', '1', '2', 'upload_files/candidate_tracker/60401000613_Janani Ciel Resume.pdf', NULL, '1', '2022-05-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-11 03:52:53', 1, '2022-05-11 03:57:10', 0, NULL, 1),
(8722, 'nivedha', '11', '9941202534', '', 'nivisubi1997@gmail.com', '1997-08-16', 24, '2', '2', 'barani durai', 'officer', 100000.00, 0, 18000.00, 16000.00, 'chennai', 'chennai', '2205110015', '1', '2', 'upload_files/candidate_tracker/25887823065_NEW NIVEDHA.pdf', NULL, '1', '2022-05-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-11 03:59:55', 1, '2022-05-11 04:13:19', 0, NULL, 1),
(8723, '', '0', '6385666001', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205110016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-11 04:13:40', 0, NULL, 0, NULL, 1),
(8724, '', '0', '9597281766', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205110017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-11 04:15:34', 0, NULL, 0, NULL, 1),
(8725, 'Balaji k', '11', '6379497559', '9080909330', 'balajikr070@gmail.com', '1999-10-04', 22, '2', '2', 'V . Karthikeyan', 'Business man', 30000.00, 2, 0.00, 15000.00, 'old Perungalathur', 'Old Perungalathur', '2205120001', '1', '1', 'upload_files/candidate_tracker/36105183379_RESUME BALAJI (1).docx', NULL, '1', '2022-05-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communicaiton,will not suits for our roles,up and down 50 kms', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-12 09:50:17', 85, '2022-05-12 10:34:20', 0, NULL, 1),
(8726, 'Kalaivani', '4', '8925322804', '9677940577', 'stephenaishu2804@gmail.com', '2002-05-04', 20, '2', '2', 'Arun', 'Export garments', 25000.00, 0, 15000.00, 15000.00, 'Ayanavaram Chennai', 'Ayanavaram Chennai', '2205120002', '1', '2', 'upload_files/candidate_tracker/17214308859_kALAI RESUME.pdf', NULL, '1', '2022-05-12', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped ,kept the call on hold for a long and not responding later', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-05-12 10:35:54', 1, '2022-05-12 10:39:25', 0, NULL, 1),
(8727, 'Aarthi', '4', '8778637151', '9176474398', 'aarthisai0019@gmail.com', '1999-06-19', 22, '2', '2', 'Srinivasan', 'Printer', 25000.00, 1, 15000.00, 15000.00, 'Redhills', 'Redhills', '2205120003', '1', '2', 'upload_files/candidate_tracker/41370730146_aarthi resume.pdf', NULL, '1', '2022-05-12', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped RNR\n', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-05-12 10:36:20', 1, '2022-05-12 10:56:23', 0, NULL, 1),
(8728, 'N.Mohammed Haarish Sherif', '4', '9600029159', '7339629159', 'Haarishsherif@gmail.com', '1992-10-25', 29, '4', '1', 'Noor Mohammed.H', 'Business', 50000.00, 2, 22000.00, 25000.00, '45,porkai pandian street sk thottam', 'Erode.1', '2205120004', '', '2', 'upload_files/candidate_tracker/49345149237_HAARISH resume.docx', NULL, '1', '2022-05-12', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-12 11:08:24', 1, '2022-05-12 11:23:19', 0, NULL, 1),
(8729, 'Mohaideen Abuthahir M', '4', '8531957357', '9524667495', '08121998abuthahir@gmail.com', '1998-12-08', 23, '1', '2', 'Mohamed kassim', 'Computer science', 25000.00, 1, 0.00, 20000.00, '1/8 , Nagur meeran street , ayyampet , Thanjavur', '2/177-1 , Mela valuthoor, Thanjavur,614210', '2205120005', '', '1', 'upload_files/candidate_tracker/81341527814_MOHAIDEEN ABUTHAHIR M(Resume).pdf', NULL, '1', '2022-05-12', 0, 'R55579', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped very high cTC,fresher for Telecalling not ready to come down than 13K', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-12 11:34:56', 60, '2022-05-12 12:58:33', 0, NULL, 1),
(8730, 'Hari.a', '6', '9500133295', '', 'Arunhari4135@email.com', '1997-12-16', 24, '1', '2', 'K.Arumugam', 'Fisherman', 15000.00, 1, 16750.00, 18000.00, 'Pattinapakkam', 'Chennai', '2205120006', '', '2', 'upload_files/candidate_tracker/67928170881_resume (1).docx', NULL, '1', '2022-05-12', 0, 'P1066', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Quality', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-12 12:01:17', 60, '2022-05-12 07:20:11', 0, NULL, 1),
(8731, 'Jestin Prabhu.x', '6', '9677167269', '9884506129', 'Prabhujestin@gmail.com', '1991-07-04', 30, '1', '2', 'Xavier', 'Own business', 30000.00, 1, 20000.00, 25000.00, 'Chennai', 'Vyasarpadi', '2205120007', '', '2', 'upload_files/candidate_tracker/81224057222_jestin resume.docx', NULL, '1', '2022-05-12', 0, '55577', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok Have Exp in Showroom and filed sales,5050 for Telecalling kindly check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-12 01:26:15', 1, '2022-05-12 01:49:24', 0, NULL, 1),
(8732, 'S RUBAN KUMAR', '33', '8610805816', '', 'rubanmercy02@gmail.com', '1995-03-20', 28, '1', '2', 'Srinivasan', 'home', 1.00, 1, 29000.00, 32000.00, 'Royapettah', 'Choolaimedu', '2205120008', '', '1', 'upload_files/candidate_tracker/77941335377_Ruban Resume .pdf', NULL, '1', '2024-01-19', 0, 'Suganya hr', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sustainability not open to handle the work pressure', '4', '2', '', '1', '8', '', '2', '1970-01-01', '1', '7', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-12 01:46:13', 110, '2024-01-19 01:19:46', 0, NULL, 1),
(8733, 'P Karthick', '4', '8667756984', '9600175264', 'vijaykarthick0607@gmail.com', '1997-07-06', 24, '2', '2', 'Vasantha P', 'Hard work and communication skills', 240000.00, 0, 0.00, 17000.00, 'Nanganallur', 'Nanganallur', '2205120009', '1', '1', 'upload_files/candidate_tracker/27709806627_Karthick_resume (1).pdf', NULL, '1', '2022-05-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communicaiton not open up have 3 yrs in non voice,even not suitable for our MIS Roles', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-12 02:17:29', 1, '2022-05-12 02:27:02', 0, NULL, 1),
(8734, 'HARIPRIYA M', '11', '7092527595', '', 'haripriya1592@gmail.com', '1992-11-15', 29, '2', '1', 'Murali TV', 'Aged person', 17490.00, 1, 19875.00, 27000.00, 'West Tambaram', 'West Tambaram', '2205120010', '1', '2', 'upload_files/candidate_tracker/68691736602_Hari Priya-Resume.doc', NULL, '1', '2022-05-13', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-12 02:29:44', 1, '2022-05-12 02:34:58', 0, NULL, 1),
(8735, 'Viknesh roshan', '11', '7010499044', '9952915353', 'roshanviknesh13@gmail.com', '1993-09-13', 28, '2', '1', 'Angel jaculin epzhiba', 'Bussiness', 120000.00, 1, 28000.00, 25000.00, 'Chennai', 'Chennai', '2205120011', '1', '2', 'upload_files/candidate_tracker/67842578116_Roshan CV updated.pdf', NULL, '1', '2022-05-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-12 03:51:21', 1, '2022-05-12 03:54:15', 0, NULL, 1),
(8736, '', '0', '8939639614', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205120012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-12 05:37:52', 0, NULL, 0, NULL, 1),
(8737, 'Madhavan', '4', '6369919398', '7094037831', 'madhavanreigns9798@gmail.com', '2000-10-09', 21, '2', '2', 'Srinivasan', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Sankarapuram', 'Sankarapuram', '2205120013', '1', '1', 'upload_files/candidate_tracker/11220636238_MADHAVAN RESUME.pdf', NULL, '1', '2022-05-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in Telesales,will not handle ourSales pressure,not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-12 09:20:01', 85, '2022-05-17 11:59:47', 0, NULL, 1),
(8738, 'meentachi', '4', '8438356945', '', 'meenatchia557@gmail.com', '1998-05-15', 23, '2', '1', 'alagansamy', 'coolie', 10000.00, 1, 13000.00, 15000.00, 'chennai', 'chennai', '2205130001', '2', '2', 'upload_files/candidate_tracker/43749037866_WhatsApp Image 2022-05-12 at 3.53.56 PM.pdf', NULL, '1', '2022-05-13', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 profile,have 1 yr exp but need to open a lot,kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-13 10:05:49', 1, '2022-05-13 10:07:46', 0, NULL, 1),
(8739, 'Angel Jalwin', '4', '8072365397', '', 'angeljalwin11193@gmail.com', '1993-11-01', 28, '2', '2', 'Sahayaraj', 'Hotel supervisor', 100000.00, 1, 13000.00, 25000.00, '12/115 kanmalai Illam old post office mukuperi', '2c/112 bazaar road saidapet chennai', '2205130002', '1', '2', 'upload_files/candidate_tracker/34704851066_resume angel.docx', NULL, '1', '2022-05-13', 15, '', '3', '59', '2022-05-30', 204000.00, '', '5', '1970-01-01', '2', 'Selected for ESales - PF/PT.ESI Deductions', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-05-13 10:17:12', 60, '2022-05-25 07:27:30', 0, NULL, 1),
(8740, 'Dharanee Dharan', '5', '7339624168', '8190975994', 'dharaneedharan1424619@gmail.com', '1997-05-12', 25, '2', '2', 'Venkatesan', 'Farmer', 18000.00, 2, 3.30, 32000.00, 'Kallakurchi', 'Madiwala', '2205130003', '1', '2', 'upload_files/candidate_tracker/73509338715_Dharanee DD .docx', NULL, '1', '2022-05-13', 0, '', '3', '59', '2022-05-16', 348000.00, '', '4', '2022-11-15', '2', 'Selected for Manivel - Staff Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-13 11:13:21', 60, '2022-05-14 01:34:12', 0, NULL, 1),
(8741, 'DINESH BABU R', '6', '7867010473', '', 'rajendrandinesh97@gmail.com', '1997-01-05', 25, '2', '2', 'RAJENDRAN K', 'PRIVATE', 20000.00, 1, 0.00, 15000.00, 'ERODE', 'ERODE', '2205130004', '1', '1', 'upload_files/candidate_tracker/60821579751_resume -dinesh26.07.17.pdf', NULL, '1', '2022-05-13', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'hexquots Thinking over and take time also long time so we rejected.. ', '5', '1', '', '4', '7', '', '2', '2022-05-16', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-13 11:20:57', 60, '2022-05-13 06:23:42', 0, NULL, 1),
(8742, 'Jayasri', '6', '9940034123', '', 'Jayasridhanasekar06@gmail.com', '1998-12-06', 23, '2', '1', 'Somasundram', 'Sales', 20000.00, 1, 0.00, 10000.00, 'Royapuram', 'Royapuram', '2205130005', '1', '1', 'upload_files/candidate_tracker/94241768158_jestin resume.docx', NULL, '1', '2022-05-13', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Exp in Sales,fresher family need is there,kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-13 12:13:34', 60, '2022-05-13 07:00:59', 0, NULL, 1),
(8743, 'R BALAJI', '4', '7904399653', '9566246815', 'balavishal1999@gmail.com', '1999-10-08', 22, '2', '2', 'N RAVICHANDRAN', 'Additional secretary @ secretariat chennai', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2205130006', '1', '1', 'upload_files/candidate_tracker/93417844662_Resume with Sign.pdf', NULL, '3', '2022-05-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOt open up not suitable for Telesales,Attitude issue', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-13 03:10:26', 60, '2022-05-14 11:36:52', 0, NULL, 1),
(8744, '', '0', '9087893909', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205130007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-13 03:19:36', 0, NULL, 0, NULL, 1),
(8745, 'R.saminathan', '6', '9597342441', '9384565864', 'www.samimech2@gmail.com', '1995-02-10', 27, '1', '1', 'Mathammal.R', 'Cooly', 25000.00, 2, 0.00, 15000.00, 'Chennampatti', 'Chennampatti', '2205130008', '', '1', 'upload_files/candidate_tracker/9994811983_Saminathan (1).doc', NULL, '1', '2022-05-13', 0, 'P1303', '3', '59', '2022-05-18', 185000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar Team,Fresher Suthagar Team PF/ESI/PT', '5', '2', '1', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-13 03:22:34', 60, '2022-05-20 05:11:41', 0, NULL, 1),
(8746, 'M nivetha', '4', '9600631823', '9342024866', 'Nivi0826@gmail.com', '2001-08-26', 20, '2', '2', 'Mageshwari', 'Labour', 7000.00, 1, 0.00, 12000.00, 'Rameswaram', 'Rameswaram', '2205130009', '1', '1', 'upload_files/candidate_tracker/83994246286_nivetha resume.pdf', NULL, '3', '2022-05-14', 0, '', '3', '59', '2022-06-17', 126312.00, '', '3', '2022-08-04', '2', 'Selected for Arumbakkam team consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-13 03:59:51', 60, '2022-06-15 03:06:44', 0, NULL, 1),
(8747, '', '0', '8428550808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-13 04:33:39', 0, NULL, 0, NULL, 1),
(8748, 'Sridhar', '11', '6380160480', '8940818695', 'sridharsri0027@gmail.com', '1997-06-06', 24, '2', '2', 'Rajendran', 'Construction supervisor', 30000.00, 0, 18000.00, 21000.00, 'Chennai', 'Chennai', '2205130011', '1', '2', 'upload_files/candidate_tracker/15351472909_Sridhar Resume.pdf', NULL, '3', '2022-05-14', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication,will not sustain and not suitabe for the position', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-13 04:36:06', 1, '2022-05-13 04:55:44', 0, NULL, 1),
(8749, 'A U ELUMALAI', '11', '8074140206', '8686755489', 'auelumalai007@gmail.com', '1996-12-01', 25, '2', '2', 'A R UDAYAN', 'WEAVER', 10000.00, 2, 17000.00, 20000.00, 'NAGARI', 'SAIDAPET', '2205130012', '1', '2', 'upload_files/candidate_tracker/46608345262_Elumalai 05.docx', NULL, '3', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Poor,no basic knowledge in recruitment areas,he was a kind of executive handled admin activities,will not handle our work pressure,also sustainability issues will be,Salary exp is very high', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-13 04:54:14', 1, '2022-05-13 04:58:57', 0, NULL, 1),
(8750, 'Dhivyapriya.B', '4', '8220736792', '9363214829', 'Dhivyaammu@gmail.com', '2001-11-14', 20, '2', '2', 'P.Baskarraj', 'Farmer', 14000.00, 2, 0.00, 20000.00, 'Trichy', 'Vadapalani', '2205130013', '1', '2', 'upload_files/candidate_tracker/30589304355_DHIVYA PRIYA B.pdf', NULL, '1', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Voice Low,very high salary Expectation,not suitable for our roles', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-13 10:50:23', 1, '2022-05-13 11:11:53', 0, NULL, 1),
(8751, 'Ramya.A', '6', '9500778512', '7708110011', 'riyaramya.a@gmail.com', '1996-04-12', 26, '1', '1', 'Arumugam', 'Former', 15000.00, 1, 11500.00, 15000.00, 'Elishpet', 'Elishpet', '2205140001', '', '2', 'upload_files/candidate_tracker/98771865947_RAMYA RESUME-converted.docx..pdf', NULL, '1', '2022-05-14', 0, 'P1303', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not speaking well.. Family women timing also not suitable for her', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-14 10:13:36', 60, '2022-05-14 11:14:58', 0, NULL, 1),
(8752, 'Ashish Raysing', '5', '7875465282', '9021128500', 'ashray1177@gmail.com', '1998-11-28', 23, '1', '2', 'Motilal Raysing', 'Accounts officer', 8.00, 1, 18000.00, 25000.00, 'Jalna, Maharashtra', 'Whitefield, Bangalore', '2205140002', '', '2', 'upload_files/candidate_tracker/84447569697_Ashish CV.pdf', NULL, '1', '2022-05-14', 15, 'P1246', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dorpped as the candidate is not ready to join us\n', '5', '1', '', '2', '2', '', '2', '2022-05-17', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-14 10:34:45', 60, '2022-05-14 01:28:57', 0, NULL, 1),
(8753, 'Saraswathi.A', '4', '9940471780', '8760130247', 'marunpandi1994@gmail.com', '2000-10-06', 21, '1', '1', 'Arunpandi', 'GRT Jewellers Sales', 12000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2205140003', '', '2', 'upload_files/candidate_tracker/80084292396_SARASWATHI RESUME(3) (1).pdf', NULL, '3', '2022-05-14', 1, 'P142', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication very average,have 8 months in telesales,career Gap ,5050 profile internal reference kindly check and let me know your inputs\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-14 10:54:49', 60, '2022-05-14 05:31:48', 0, NULL, 1),
(8754, 'Deenadhayalan T', '6', '7904955828', '8072225629', 'Deenathangavel9624@gmail.com', '2001-05-17', 20, '1', '2', 'S Thangavel', 'Business', 15000.00, 0, 12000.00, 15000.00, 'Erode', 'Erode', '2205140004', '', '2', 'upload_files/candidate_tracker/80866452217_Deenadhayalan.resume.pdf', NULL, '1', '2022-05-14', 0, 'P1310', '3', '59', '2022-05-18', 190000.00, '', '3', '2022-06-02', '2', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '4', '7', '1', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-14 10:56:35', 60, '2022-05-17 05:18:12', 0, NULL, 1),
(8755, 'Nidish', '6', '8870290748', '7824020757', 'nidishearnest@gmail.com', '2000-05-08', 22, '2', '2', 'Murali . Dad', 'Cooli', 56.00, 1, 0.00, 13.00, 'Vellore', 'Vellore', '2205140005', '1', '1', 'upload_files/candidate_tracker/21523071861_Resume_2022-04-23-102334.pdf', NULL, '2', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable for our roles', '5', '1', '0', '4', '6', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-14 12:13:13', 1, '2022-05-14 01:32:02', 0, NULL, 1),
(8756, 'Gokul Prasath R', '23', '9361039164', '', 'prasatharg@gmail.com', '2001-09-02', 20, '3', '2', 'Ramakrishnan R', 'Freelance designer', 20000.00, 0, 0.00, 25000.00, 'Pollachi', 'Chennai', '2205140006', '', '1', 'upload_files/candidate_tracker/7360665434_Resume.pdf', NULL, '1', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Only into UX designing,candidate is clear that he is just looking for initial learning will not sustain in our roles,no basic knowledge in UI Development', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-14 12:51:14', 1, '2022-05-14 12:56:39', 0, NULL, 1),
(8757, 'G K NIVETHA', '4', '9003459219', '9443359416', 'nivethanive483@gmail.com', '2001-07-31', 20, '2', '1', 'G. krishnakumar', 'Manager', 30000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2205140007', '1', '1', 'upload_files/candidate_tracker/98213831505_NIVETHA GK.pdf', NULL, '3', '2022-05-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open up fresher not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-14 03:30:46', 85, '2022-05-16 09:55:18', 0, NULL, 1),
(8758, 'Govintharaj.R', '4', '6385658859', '', 'govinth753@gmail.com', '1993-05-07', 29, '2', '2', 'Ramakrishnan', 'Engineer supery', 25000.00, 0, 0.00, 25000.00, 'Ramanathapuram,keela selvanoor', 'Chennai porur', '2205140008', '1', '1', 'upload_files/candidate_tracker/47316914452_Template_1652196242034.pdf', NULL, '1', '2022-05-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Sales Exp,No Communication not suitable for our roles', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-14 03:51:00', 1, '2022-05-14 04:07:08', 0, NULL, 1),
(8759, 'Kamalesh', '11', '9840626632', '', 'baalykamalesh@gmail.com', '1993-05-13', 29, '2', '2', 'K Sammanthamoorthy', 'Security', 35000.00, 1, 26000.00, 35000.00, 'Chennai', 'Chennai', '2205160001', '1', '2', 'upload_files/candidate_tracker/89661919067_Kamalesh Resume-1.pdf', NULL, '1', '2022-05-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,No Exp in recruitment,hr executive and min 30K Exp on Salary,also not much comfort on TxxampC,will not sustain for a long', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-16 08:29:49', 1, '2022-05-16 08:42:37', 0, NULL, 1),
(8760, 'Shanmugam', '16', '8883636113', '', 'shan.ss2408@gmail.com', '1992-03-11', 30, '2', '2', 'Shan', 'Business', 15000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2205160002', '2', '2', 'upload_files/candidate_tracker/27681370556_RESUME Bhanu.docx', NULL, '1', '2022-05-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no communication,not much strong in the excel work,will not handle our pressure', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-16 11:00:19', 1, '2022-05-16 11:05:35', 0, NULL, 1),
(8761, 'Ramesh K', '28', '9940698540', '', 'ramesh.karuna@yahoo.in', '1989-06-04', 32, '1', '1', 'Uvarani', 'Homemaker', 20000.00, 1, 386000.00, 475000.00, 'Tiruvannamalai', 'Tiruvannamalai', '2205160003', '', '2', 'upload_files/candidate_tracker/53754624231_Ramesh_Resume-2.docx', NULL, '1', '2022-05-16', 60, '5185', '1', '72', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-16 11:29:53', 1, '2022-05-16 11:34:25', 0, NULL, 1),
(8762, 'Srinivasan shanmugam', '23', '9940314966', '6380330996', 'Designercode25@gmail.com', '1997-11-25', 24, '2', '2', 'Usha', 'Ui/ux designer', 25000.00, 1, 15000.00, 22000.00, '1/54, thiruvalluvar street, babu garden, kovur,', '1/54, Thiruvalluvar Street, Babu Garden, Kovur', '2205160004', '1', '2', 'upload_files/candidate_tracker/51316358268_srinivasan resume.pdf', NULL, '1', '2022-05-16', 30, '', '4', '69', NULL, 0.00, '', '0', NULL, '1', 'Check with the task and let us decide\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-16 11:51:56', 1, '2022-05-16 12:01:13', 0, NULL, 1),
(8763, 'Kanagaraj.j', '23', '8220869961', '', 'kanagaraj0817@gmail.com', '1999-08-08', 22, '2', '2', 'jayachandran np', 'mason', 14000.00, 0, 12000.00, 13000.00, 'ranipet', 'Chennai', '2205160005', '1', '2', 'upload_files/candidate_tracker/76277107115_Kanagaraj Resume 01.pdf', NULL, '1', '2022-05-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no communication no basic knowledge in Figma,Designing Skills,need to open a lot,will not handle our pressure', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-16 11:59:18', 1, '2022-05-16 12:20:45', 0, NULL, 1),
(8764, 'Siranjeevi', '4', '9345687455', '8939650138', 'sirangv0015@gmail.com', '1997-01-15', 25, '2', '2', 'Dhandabani', 'Head Master', 95000.00, 2, 0.00, 15000.00, 'Tindivanam', 'Perambur', '2205170001', '1', '1', 'upload_files/candidate_tracker/49680569637_Siran.docx', NULL, '1', '2022-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-17 10:44:29', 1, '2022-05-17 10:48:42', 0, NULL, 1),
(8765, 'Sangeeta k', '4', '9962294432', '9094597139', 'sangikannil98@gmail.com', '1998-07-16', 23, '2', '2', 'Kanniyappan', 'Cooly', 12000.00, 1, 0.00, 12000.00, 'No:183 sasthri nagar 9th Streethope, Chennai-12', 'Chennai', '2205170002', '1', '2', 'upload_files/candidate_tracker/45995611728_Resume_Sangee resume_Format7.pdf', NULL, '1', '2022-05-17', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 2.3 yrs exp in telecalling,but ni collections,can give atry for ESales kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-17 10:51:58', 85, '2022-05-17 11:31:31', 0, NULL, 1),
(8766, 'Ajithkumar k', '6', '7604800370', '6379952708', 'ajithkumar30042001@gmail.com', '2001-04-30', 21, '2', '2', 'Lakshmi', 'Cooli', 10000.00, 5, 0.00, 15000.00, 'Chennampatti', 'Sanisanthai', '2205170003', '1', '1', 'upload_files/candidate_tracker/96236887463_CamScanner 05-17-2022 11.10.pdf', NULL, '1', '2022-05-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-17 11:00:40', 60, '2022-05-17 03:53:00', 0, NULL, 1),
(8767, 'yeshwanth.R', '6', '7019758349', '8150062317', 'yeshwanth877@gmail.com', '1996-07-27', 25, '3', '2', 'Rukmeni.B', 'House wife', 25000.00, 1, 25300.00, 20000.00, 'BANGALORE', 'BANGALORE', '2205170004', '', '2', 'upload_files/candidate_tracker/89311443338_Resume 1111.docx', NULL, '1', '2022-05-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-17 11:23:54', 1, '2022-05-17 11:27:45', 0, NULL, 1),
(8768, 'Kalaiyarasi', '6', '9361660830', '9095060156', 'Kalaiyarasithiruchelvam@gmail.com', '2001-06-15', 20, '2', '2', 'Thiruchelvam', 'Cooli', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2205170005', '1', '1', 'upload_files/candidate_tracker/67016668518_kalai resume-1.docx', NULL, '1', '2022-05-17', 0, '', '3', '59', '2022-05-18', 156000.00, '', '3', '2022-06-02', '2', 'Selected for RE - Consultant Role - Erode Suthagar Team', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-17 11:51:31', 60, '2022-05-17 06:59:42', 0, NULL, 1),
(8769, 'Abdul Rahuman A', '5', '7010521174', '8682956686', 'arrahu7010@gmail.com', '1992-05-20', 29, '1', '2', 'Abdul Kadhar', 'Security Job', 10000.00, 1, 27200.00, 32000.00, 'Chennai', 'Chennai', '2205170006', '', '2', 'upload_files/candidate_tracker/77507234004_Abdul Rahuman Resume 2022.docx', NULL, '1', '2022-05-17', 0, 'P1313', '3', '59', '2022-05-23', 396000.00, '', '3', '2023-06-03', '1', 'Selected for Manikandan - RM profile with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-17 12:22:21', 60, '2022-05-20 12:17:59', 0, NULL, 1),
(8770, 'Vinothraja', '6', '6379561059', '', 'vinothlee87@gmail.com', '1997-05-30', 24, '2', '2', 'T.manoharan', 'Carpenter', 25000.00, 1, 0.00, 25000.00, 'Karaikal', 'Pondicherry', '2205170007', '1', '1', 'upload_files/candidate_tracker/28175059663_Vinothraja. M Resume.pdf', NULL, '1', '2022-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-17 03:21:29', 1, '2022-05-17 03:44:16', 0, NULL, 1),
(8771, 'aksheya murugan', '14', '6380989837', '', 'aksheyamurugan@gmail.com', '2001-01-19', 21, '2', '2', 'karunakaran', 'business', 14000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2205170008', '2', '1', 'upload_files/candidate_tracker/74171465214_CV_202204301508472.pdf', NULL, '1', '2022-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-17 08:44:07', 1, '2022-05-17 08:46:11', 0, NULL, 1),
(8772, 'chittibabu', '4', '7092736042', '', 'chittibabujohn@gmail.com', '1995-08-15', 26, '2', '2', 'anthony raj', 'business', 10000.00, 2, 14000.00, 16000.00, 'chennai', 'chennai', '2205170009', '2', '2', 'upload_files/candidate_tracker/19436419439_Chitti Babu Resume.docx', NULL, '1', '2022-05-18', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-17 08:48:57', 85, '2022-05-19 06:35:23', 0, NULL, 1),
(8773, 'suresh babu', '11', '7010270581', '', 'shsuresh66@gmail.com', '1991-02-01', 31, '2', '2', 'natrajan', 'business', 10000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2205170010', '2', '2', 'upload_files/candidate_tracker/3718711104_Document.pdf', NULL, '3', '2022-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-17 09:13:13', 1, '2022-05-19 11:34:59', 0, NULL, 1),
(8774, 'shankar', '6', '7397303133', '', 'shankar121870@gmail.com', '1996-02-01', 26, '2', '2', 'subramani', 'tailor', 14000.00, 0, 12000.00, 15000.00, 'chennai', 'chennai', '2205170011', '2', '2', 'upload_files/candidate_tracker/56753178709_Resume.pdf', NULL, '1', '2022-05-18', 0, '', '3', '59', '2022-05-19', 210000.00, '', '2', '1970-01-01', '1', 'Selected for RE Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-17 09:46:10', 60, '2022-05-20 05:11:26', 0, NULL, 1),
(8775, '', '0', '7550220450', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205180001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-18 09:31:00', 0, NULL, 0, NULL, 1),
(8776, 'M Harshavardhanreddy', '25', '8919598379', '9676202667', 'harshavardhanreddy0667@gmail.com', '1994-06-20', 27, '2', '2', 'M Siva reddy', 'Farmer', 60000.00, 1, 0.00, 15000.00, 'Thurakavandla palli anantapur dist', 'Btm 1st stage old madiwala', '2205180002', '24', '1', 'upload_files/candidate_tracker/75340299431_harsha.docx', NULL, '1', '2022-05-18', 0, '', '5', '93', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No response ', '8', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-18 11:32:38', 60, '2022-05-20 01:26:55', 0, NULL, 1),
(8777, 'monisha', '4', '8072681112', '', 'monjid121198@gmail.com', '1998-11-12', 23, '2', '2', 'kannan', 'business', 13000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2205180003', '2', '2', 'upload_files/candidate_tracker/25467450544_MONISHA- RESUME.docx', NULL, '1', '2022-05-18', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'No Sustainability,Not inrerested in Telecalling,Checked for Bakend,Also not comfortable in TxxampC,If she come back lets try', '1', '1', '0', '1', '1', '0', '2', '2022-05-20', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-18 11:33:51', 1, '2022-05-18 11:49:55', 0, NULL, 1),
(8778, 'Ajisri.S', '23', '8925652820', '', 'ajishreesridharan28@gmail.com', '1995-09-28', 26, '2', '2', 'Sridharan', 'Graphic designer', 50000.00, 1, 25000.00, 30000.00, '3/2 saiva muthiah street, Royapet, Chennai - 86', '3/2 Saiva Muthiah Street, Royapet, Chennai - 86', '2205180004', '1', '2', 'upload_files/candidate_tracker/52557077173_Ajisri.pdf', NULL, '1', '2022-05-18', 7, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'need to learn lot about this process', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-18 11:38:53', 85, '2022-05-18 05:09:23', 0, NULL, 1),
(8779, 'Prasanna', '5', '9791310528', '', 'prasanna761@gmail.com', '1992-11-07', 29, '2', '2', 'Venkateswara', 'archagar', 40000.00, 1, 20000.00, 250000.00, 'puthukottai', 'Puthukottai', '2205180005', '1', '2', '0', NULL, '3', '2022-05-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communcition,not interested in Sales profile,also looking for admin roles only,Checked for our backend positions too,but not suitable and not interested towards the profile will not sustain', '5', '1', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-18 12:38:07', 60, '2022-05-19 06:40:49', 0, NULL, 1),
(8780, 'Thatchayani', '25', '9025518309', '9150337178', 'thatchayanis032103@gmail.com', '1998-05-23', 23, '1', '2', 'Sivakumar', '-', 20000.00, 1, 0.00, 12000.00, 'Krishnagiri', 'Bangolore Madiwala', '2205180006', '', '1', 'upload_files/candidate_tracker/19264148113_Pooja resume.pdf', NULL, '1', '2022-05-18', 0, 'P1210', '3', '59', '2022-05-20', 168000.00, '', NULL, '2023-08-05', '2', 'Selected for ESales Bangalore - Consultant - 5050Profile sounds low lets see', '8', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-18 01:00:30', 60, '2022-05-19 06:47:30', 0, NULL, 1),
(8781, 'Thatchayani', '4', '9025518409', '9150337178', 'thatchayanis0321@gmail.com', '1998-05-23', 23, '2', '2', 'Sivakumar', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Krishnagiri', 'Bangolore Madiwala', '2205180007', '1', '1', 'upload_files/candidate_tracker/83556773416_Pooja resume.pdf', NULL, '1', '2022-05-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-18 01:10:45', 1, '2022-05-18 01:15:43', 0, NULL, 1),
(8782, 'joel subin', '11', '8072169435', '', 'joelsubin61@gmail.com', '1996-01-01', 26, '2', '2', 's', 'officer', 100000.00, 0, 12000.00, 15000.00, 'chennai', 'chennai', '2205180008', '1', '2', 'upload_files/candidate_tracker/84124229444_JOEL SUBIN Updated resume 2022 (2)-1 (1).pdf', NULL, '1', '2022-05-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-18 03:01:12', 85, '2022-05-18 03:19:32', 0, NULL, 1),
(8783, '', '0', '9999999999', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205180009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-18 03:45:59', 0, NULL, 0, NULL, 1),
(8784, '', '0', '9700000000', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205180010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-18 03:49:30', 0, NULL, 0, NULL, 1),
(8785, 'wilson abraham n', '4', '9566141261', '', 'nabraham116@gmail.com', '1991-06-11', 30, '2', '1', 'angel', 'not working', 13000.00, 0, 0.00, 14000.00, 'chennai', 'chennai', '2205180011', '2', '1', 'upload_files/candidate_tracker/55728173128_CV_202204301508472.pdf', NULL, '1', '2022-05-19', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Profile,fresher for our domain,need to come for final round,can be trained ', '1', '2', '0', '1', '1', '0', '2', '2022-05-20', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-18 10:57:53', 1, '2022-05-18 11:01:44', 0, NULL, 1),
(8786, '', '0', '9047613720', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205190001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-19 09:56:11', 0, NULL, 0, NULL, 1),
(8787, 'james davison', '4', '6374109261', '', 'jamesdavison506@gmail.com', '2002-04-17', 20, '2', '2', 'sekran', 'srly', 15000.00, 1, 0.00, 12000.00, 'rameshwaram', 'rameshwaram', '2205190002', '2', '1', 'upload_files/candidate_tracker/94413836576_Davi Resume.pdf', NULL, '3', '2022-05-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-19 11:42:51', 1, '2022-05-19 11:45:41', 0, NULL, 1),
(8788, 'Syed Nadeem Pasha', '25', '9141518750', '9740981044', 'Syednadeem63134@gmail.com', '2004-04-02', 18, '2', '2', 'Salman', 'Automobiles', 20000.00, 2, 15500.00, 17000.00, 'Electronic City phase 1 wipro Gate', 'Electronic City phase 1 wipro Gate', '2205190003', '24', '2', 'upload_files/candidate_tracker/69690148599_CURRICULUM VITAE.docx', NULL, '1', '2022-05-19', 0, '', '3', '59', '2022-05-26', 252000.00, '', '3', '2022-06-08', '2', 'Selected for ESales RM with PF/ESI/PT Deductions', '8', '2', '1', '2', '2', '1', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-19 11:47:32', 60, '2022-06-08 05:04:11', 0, NULL, 1),
(8789, 'Aaron Kevin Paul. J', '4', '7449089181', '9514820405', 'aaronpaul376@gmail.com', '2000-04-16', 22, '2', '2', 'G. John Paulraj', 'Accountant', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2205190004', '1', '1', 'upload_files/candidate_tracker/38594981985_My CV.pdf', NULL, '1', '2022-05-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested in telesales and not comforts with the TxxampC for Backend and no basic skills in the operations.Will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-19 11:52:22', 85, '2022-05-19 01:06:02', 0, NULL, 1),
(8790, 'Janifer R', '6', '6374833965', '8220911306', 'jeniferrajujeniferraju785@gmail.com', '2001-05-12', 21, '1', '2', 'Raja S', 'Mechanic', 10000.00, 1, 0.00, 13000.00, '210/1 VSH BHAVAN 46 L PUDOR POST NOCHINAGAR ERODE', '210/1 VSH BHAVAN 46 L PUDOR POST NOCHINAGAR ERODE', '2205190005', '', '1', 'upload_files/candidate_tracker/50126431308_3a7443e5-4ae3-4846-9459-60a908b37f7a.docx', NULL, '1', '2022-05-19', 0, 'P1303', '3', '59', '2022-05-23', 156000.00, '', '6', '2023-02-08', '1', 'Selected for RE Profile - Suthagar - Consultant Role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', 'Offer Mail has been shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-19 11:54:26', 60, '2022-05-21 01:09:06', 0, NULL, 1),
(8791, 'Rajkumar. L', '11', '8608259987', '', 'Rajkumarsha.sha@gmail.com', '1996-08-19', 25, '1', '2', 'V. Lakshmansha', 'Coolie', 50000.00, 1, 0.00, 20000.00, 'No:22 Sakthi Nagar Mangadu Chennai-122', 'No:22 Sakthi Nagar Mangadu Chennai-122', '2205190006', '', '1', 'upload_files/candidate_tracker/96566449685_Raj Resume.pdf', NULL, '1', '2022-05-19', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Internal Team Reference for operations,no communicaiton,no basic skills in Excel will not handle our pressure', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-19 12:04:18', 1, '2022-05-19 12:11:06', 0, NULL, 1),
(8792, 'Rajeshwari', '6', '9786835357', '', 'Rajeshwari29031997@gmail.com', '1997-03-29', 25, '2', '1', 'Sivanasan', 'Porthey\'s Incharge', 20000.00, 2, 11000.00, 15000.00, 'Trichy', 'T nagar chennai', '2205190007', '1', '2', 'upload_files/candidate_tracker/73052516616_Document.docx', NULL, '1', '2022-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,no convincing,handling pressure doubts,will not sustain', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-19 12:05:53', 1, '2022-05-19 10:33:13', 0, NULL, 1),
(8793, 'n.rajaviknesh', '4', '9360843069', '', 'rajaviknesh08@gmail.com', '1999-06-11', 22, '2', '2', 'selvarani', 'nil', 15000.00, 0, 15000.00, 15000.00, 'THIRUVARUR', 'THIRUVARUR', '2205190008', '1', '2', 'upload_files/candidate_tracker/2878712525_raja resume.pdf', NULL, '1', '2022-05-19', 0, '', '3', '59', '2022-05-23', 138948.00, '', '4', '2022-06-17', '1', 'Selected for Thanjavur Elite - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', 'Offer Mail yet to share', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-19 12:35:15', 60, '2022-05-19 07:38:02', 0, NULL, 1),
(8794, '', '0', '6360133953', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205190009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-19 01:47:01', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8795, 'Rajesh', '6', '9566142049', '9080906089', 'Rajesh4728@gmail.com', '1997-07-04', 24, '2', '2', 'Kumar', 'Farmer', 15000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2205190010', '1', '1', 'upload_files/candidate_tracker/9918544121_Rajesh.Resume.pdf', NULL, '1', '2022-05-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,No Sales Exp he is into collections only,not suits for our sales process', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-19 02:55:18', 85, '2022-05-19 03:26:12', 0, NULL, 1),
(8796, 'MAHALAKSH R', '6', '7502136031', '8778723482', 'mahabbarangu@gmail.com', '1996-01-12', 26, '1', '2', 'Vijayalakshmi R', 'House wife', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2205190011', '', '1', 'upload_files/candidate_tracker/84433263215_MAHA CV.pdf', NULL, '1', '2022-05-20', 0, 'P1310', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped not interested in Sales Target will not join\n', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-19 03:59:39', 60, '2022-05-20 03:14:38', 0, NULL, 1),
(8797, '', '0', '8526197432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205190012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-19 04:18:28', 0, NULL, 0, NULL, 1),
(8798, 'eshwari', '11', '7395984702', '', 'eshwarikalaimani1997@gmail.com', '1997-08-14', 24, '2', '2', 'kalaimani', 'officer', 100000.00, 2, 0.00, 16000.00, 'chennai', 'chennai', '2205190013', '1', '1', 'upload_files/candidate_tracker/67264444480_B.Eswari CV (1).pdf', NULL, '1', '2022-05-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,not comfort in TxxampC,Will not handle our Pressure\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-19 06:20:41', 87, '2022-05-19 06:27:20', 0, NULL, 1),
(8799, 'Uthiravelu', '25', '6369196831', '7550022274', 'Www.velu321@gmail.com', '2001-05-04', 21, '2', '2', 'Iyyanar', 'Farmer', 36000.00, 1, 0.00, 16000.00, 'No. 45,jaisakthinagar, Krishnapuram , villupuram', 'Saidapet (chinnamalai)', '2205200001', '1', '1', 'upload_files/candidate_tracker/35469579426_UthiraVelu.docx', NULL, '1', '2022-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication no,not comfortable in taking calls and field,not suits for the backend positions too,not suitable', '8', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-20 09:44:24', 1, '2022-05-20 09:51:04', 0, NULL, 1),
(8800, 'Abarna', '4', '8072346284', '', 'abarna300620@gmail.com', '2007-05-20', 0, '2', '1', 'Balaji', 'iT admin', 125000.00, 1, 17000.00, 25000.00, 'Chennai', 'Chennai', '2205200002', '1', '2', 'upload_files/candidate_tracker/14878822159_Updated resume Abarna.docx', NULL, '2', '2022-05-20', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Is Good, She Has Exp In The Backend, But Not Much In Excel Works Needs To Train A Lot. She Is Currently In Hexaware And Looking For Opportunities Only For The 2 Days Of Weekend Leaves Required. Need To Serve 30 Days Of Notice. She Will Not Handle Our Pressure And Sustain With Us. Every Year She Jumps To A Different Company Stating Health Conditions. She Needs To Travel From Tambaram.', '1', '2', '0', '1', '1', '0', '2', '2022-05-23', '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-20 10:56:38', 1, '2022-05-20 11:00:50', 0, NULL, 1),
(8801, 'Ramya R', '6', '6381399161', '', 'ramyar1804@gmail.com', '2000-04-18', 22, '2', '2', 'Raja A', 'Cooli', 15000.00, 0, 0.00, 12000.00, 'Erode', 'Erode', '2205200003', '1', '1', 'upload_files/candidate_tracker/49242095017_resume.Ramya.docx', NULL, '1', '2022-05-20', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-20 11:13:32', 60, '2022-05-20 03:10:48', 0, NULL, 1),
(8802, 'Vijayalakshmi', '6', '9025985823', '', 'vijimavijima68@gmail.com', '2000-01-03', 22, '2', '2', 'Chinnusamy', 'Cooli', 20000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2205200004', '1', '1', 'upload_files/candidate_tracker/96240422588_VIJAYALAKSHMI C.docx', NULL, '1', '2022-05-20', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-20 11:16:31', 60, '2022-05-20 03:10:08', 0, NULL, 1),
(8803, 'Kamali. B', '4', '7339273833', '9600851289', 'kamaligeetha1998@gmail.com', '1998-11-26', 23, '2', '2', 'Babu', 'Post Master', 15000.00, 0, 10000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2205200005', '1', '2', 'upload_files/candidate_tracker/48533878569_Resume5.pdf', NULL, '1', '2022-05-20', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not interested to join\n', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-20 11:17:40', 85, '2022-05-20 12:39:59', 0, NULL, 1),
(8804, 'Aishwariya', '4', '6374039908', '', 'Worldskyintha@gamil.com', '1998-11-30', 23, '1', '1', 'Seenu', '30000', 12000.00, 1, 12000.00, 13000.00, 'Adayar', 'Chennai', '2205200006', '', '2', 'upload_files/candidate_tracker/30120853024_CV_202201272101067.pdf', NULL, '1', '2022-05-20', 0, 'Jobs', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Fresher for our sales,Internal team reference, need to train a lot, kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-20 12:35:40', 1, '2022-05-20 12:49:05', 0, NULL, 1),
(8805, 'Chinnadurai r', '5', '8939375721', '', 'rcdhurai2@gmail.com', '1998-07-06', 23, '2', '2', 'Sulochana', 'House wife', 15000.00, 3, 18000.00, 20000.00, 'Cuddalore', 'Koyambedu', '2205200007', '1', '2', 'upload_files/candidate_tracker/16102039177_chinnadurai123.pdf', NULL, '1', '2022-05-20', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, need to open a lot, not much comfort in Field Sales, not suits for CRM too, will not handle the pressure', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-20 02:20:13', 1, '2022-05-20 02:58:36', 0, NULL, 1),
(8806, 'Subashree G', '25', '9940186586', '', 'subashree0103@gmail.com', '1990-03-10', 32, '2', '1', 'S.naresh', 'Lab technician', 40000.00, 1, 25000.00, 25000.00, 'Chennai', 'Chennai', '2205200008', '1', '2', 'upload_files/candidate_tracker/53845300335_Suba resume new (1) (1).docx', NULL, '1', '2022-05-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok,Age Around 32 Yrs,Need To Train A Lot In Our Roles,9yrs In Backend But Not In Excel Works,Thinking A Lot On The Service Agreements,If She Comes Back Lets Try', '8', '2', '0', '1', '1', '0', '2', '2022-05-21', '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-20 02:38:35', 1, '2022-05-20 02:46:45', 0, NULL, 1),
(8807, 'Arvinth sharma', '4', '9790506006', '9363391006', 'arvinthrajmanogar@gmail.com', '1994-06-07', 27, '3', '2', 'Raj manogar', 'Building contractor', 15000.00, 1, 15000.00, 15000.00, 'Erode', 'Erode', '2205200009', '', '2', 'upload_files/candidate_tracker/73148381125_ARVINTH RESUME.docx', NULL, '1', '2022-05-20', 0, '', '3', '59', '2022-06-13', 156000.00, '', '3', '2022-07-13', '1', 'Selected for Muthu Team - Consultant Role', '1', '1', '', '4', '7', '', '2', '1970-01-01', '3', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-20 05:19:45', 60, '2022-06-10 06:13:46', 0, NULL, 1),
(8808, 'shabhana', '11', '6369358474', '', 'eshabbu448@gmail.com', '2001-04-12', 21, '2', '2', 'eliyas basha', 'gold smith', 20000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2205210001', '2', '2', 'upload_files/candidate_tracker/15434357974_Shabana Resume part 12.pdf', NULL, '1', '2022-05-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-21 09:26:02', 1, '2022-05-21 09:27:39', 0, NULL, 1),
(8809, 'Vetrikodi T', '6', '9791695276', '9840589331', 'merlin6643@gmail.com', '2000-03-04', 22, '1', '2', 'S Thirupoorkumaran', 'Care taker', 25000.00, 1, 10000.00, 15000.00, 'Chennai,chetput', 'Chetput', '2205210002', '', '2', 'upload_files/candidate_tracker/90379436228_Vetrikodi T Resume.pdf', NULL, '1', '2022-05-21', 30, 'Jobs', '3', '60', '2022-06-13', 156000.00, '', '4', '2022-12-01', '2', 'Communication is Good have exp in Telesales,Star Health - Can give a try for our roles,sounds good kindly check and let me know your inputs', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', 'Selected for Kannan Team with PF/ESI/PT deductions.2nd round interviewed by Ramesh Prasanna and selected for Ravi team, later the candidate has been moved to Kannan Team', '', '', '', NULL, NULL, NULL, 1, '2022-05-21 09:45:09', 60, '2022-06-13 10:37:32', 0, NULL, 1),
(8810, 'gunasekar', '16', '7397398921', '8148868188', 'gunasekar009988@gmail.com', '1999-10-19', 22, '2', '2', 'sundar', 'driver', 30000.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2205210003', '1', '2', 'upload_files/candidate_tracker/62674769048_1603881589329Resume_Gunasekar-converted.pdf', NULL, '1', '2022-05-21', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, no basic skills in Excel, Frequent Job changes, Distance to long,have worked in same domain but not interested,Not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-21 11:07:36', 85, '2022-05-21 11:28:01', 0, NULL, 1),
(8811, 'Vasanthakrishnan m', '16', '9791097820', '9694895876', 'vasanthvibes@gmail.com', '1998-09-12', 23, '2', '2', 'N. Manivel', 'Tailor', 30000.00, 1, 15000.00, 20000.00, 'Vandalur', 'Vandalur', '2205210004', '1', '2', 'upload_files/candidate_tracker/64052634908_Vasanthakrishnan resume.pdf', NULL, '1', '2022-05-21', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in other domain,fresher for MIS,only basic in Excel Need to trian a lot,Too long distance,not comfort in SA,Will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-21 11:08:10', 85, '2022-05-21 11:27:39', 0, NULL, 1),
(8812, 'S.kokila', '16', '7358263780', '', 'Nijanijanthan31@gmail.com', '2001-01-31', 21, '2', '2', 'S . Gomathi', 'House wife', 20000.00, 1, 17000.00, 20000.00, 'Chetpet', 'Chetpet', '2205210005', '1', '2', 'upload_files/candidate_tracker/97198469147_Resume_2022-05-21-112602.pdf', NULL, '1', '2022-05-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'For MIS No communication and no basic knowledge in the Excel, also not interested in Sales Telecaling ,not suitable ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-21 01:28:14', 85, '2022-05-21 02:27:46', 0, NULL, 1),
(8813, 'K.Shalini', '4', '9344484709', '6382898104', 'sekarrakesh007kd@gmail.com', '1998-02-07', 24, '2', '1', 'Rakesh', 'Medical Representative', 15000.00, 1, 10.00, 12000.00, 'Pillayarpatti Vallam', 'Pillayarpatti vallam', '2205230001', '1', '2', 'upload_files/candidate_tracker/50908916914_IMG_20220522_214012.pdf', NULL, '1', '2022-05-23', 0, '', '3', '59', '2022-05-23', 138948.00, '', '3', '2022-06-09', '2', 'Selected for Elite Thanjavur Location - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-23 09:31:53', 60, '2022-05-23 01:30:00', 0, NULL, 1),
(8814, 'Lakshmipathi', '4', '9150264235', '', 'Mlakshmipathiganasan@gmail.com', '1997-09-19', 24, '2', '2', 'Manikkam', 'Late', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2205230002', '2', '1', 'upload_files/candidate_tracker/41882531714_M. Lakshmipathi Resume.pdf', NULL, '1', '2022-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up not suitable for our roles', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-23 09:39:05', 1, '2022-05-23 09:42:22', 0, NULL, 1),
(8815, 'Ruban bose R', '11', '7871729846', '', 'ruban17062000@gmail.com', '2000-06-17', 21, '2', '2', 'Russel N', 'Appraiser', 10000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2205230003', '1', '1', 'upload_files/candidate_tracker/50383080243_Ruban MBA Resume-converted-2.pdf', NULL, '2', '2022-05-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable', '6', '1', '0', '1', '1', '0', '2', '2022-06-25', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-23 10:06:27', 1, '2022-05-23 10:09:07', 0, NULL, 1),
(8816, '', '0', '9840619581', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-23 10:19:30', 0, NULL, 0, NULL, 1),
(8817, 'G.MOHANAPRIYA', '11', '7550206262', '', 'PRIYAGANESH2321@GMA', '1984-10-21', 37, '2', '1', 'Ganeshkumar', 'Office Administrator', 30000.00, 1, 20000.00, 25000.00, 'No.105p, Mullai Garden 2nd St, Manali', 'Chennao', '2205230005', '1', '2', 'upload_files/candidate_tracker/23246223068_priyaganesh resume. new.docx', NULL, '1', '2022-05-23', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Age around 38 yrs,Worked in Various Sectors,Foreign Return,Have Exp in HR but not strong in our recruitment areas,will not handle our pressuce, Will not sustain ', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-23 10:34:13', 87, '2022-05-23 11:51:02', 0, NULL, 1),
(8818, 'Bharathinelson', '4', '7639328056', '8608410655', 'Bharathiece397@gmail.com', '1997-05-16', 25, '1', '1', 'VIJAY KUMAR', 'Sales manager', 20.00, 3, 0.00, 16.00, 'Ariyalur', 'Thiruvanmyr', '2205230006', '', '2', 'upload_files/candidate_tracker/27726367252_resume_1653269663961.pdf', NULL, '1', '2022-05-23', 0, 'CA111', '3', '59', '2022-05-26', 176844.00, '', '6', '2022-09-12', '2', 'Selected for B2B - consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-05-23 10:50:31', 60, '2022-05-27 11:30:04', 0, NULL, 1),
(8819, 'R Vijay', '4', '9841324010', '', 'vijaysandy2809@gmail.com', '1998-11-09', 23, '1', '2', 'Parent', 'Father', 15000.00, 2, 13000.00, 15.00, 'Chennai', '61/29vm Street royapettha chennai-14', '2205230007', '', '2', 'upload_files/candidate_tracker/50324209320_Document 4.pdf', NULL, '1', '2022-05-23', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No communication,PRevious Exp seems to be false,sustainability doubts,will not handle our pressure Target', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-23 11:05:17', 1, '2022-05-23 11:32:31', 0, NULL, 1),
(8820, 'DHANUSHYA.d', '11', '8072746764', '8838826011', 'danushyadpv29@gmail.com', '2001-01-11', 21, '2', '2', 'Dharman.c', 'Business', 20000.00, 1, 0.00, 15000.00, 'Triplicane', 'Triplicane', '2205230008', '1', '1', 'upload_files/candidate_tracker/69884022103_Dhan.pdf', NULL, '1', '2022-05-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Didnt Turn with her confirmation', '6', '1', '', '1', '1', '', '2', '2022-05-28', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-23 11:11:46', 60, '2022-05-23 11:58:32', 0, NULL, 1),
(8821, '', '0', '7200999093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205230009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-23 11:13:36', 0, NULL, 0, NULL, 1),
(8822, 'ThenmozhiKannan', '2', '9791978898', '9443575536', 'thenmozhikannan1295@gmail.com', '1995-05-12', 27, '2', '2', 'Kannan', 'Farmar', 15000.00, 1, 27000.00, 30000.00, 'Salem', 'Marathahalli', '2205230010', '1', '2', 'upload_files/candidate_tracker/71836026050_Thenmozhi kanan 1295resum (1).docx', NULL, '1', '2022-05-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-23 11:21:00', 1, '2022-05-23 11:31:24', 0, NULL, 1),
(8823, '', '0', '7448847010', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205230011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-23 11:22:41', 0, NULL, 0, NULL, 1),
(8824, 'S.manonmani', '6', '6385689068', '', 'manonmani6130@gmail.com', '2000-05-12', 22, '1', '2', 'V.shanmuganathan', 'Farmer', 72000.00, 2, 0.00, 12000.00, 'M.kalathur', 'M.kalathur', '2205230012', '', '1', 'upload_files/candidate_tracker/40484500012_report_Aarthi.pdf', NULL, '1', '2022-05-23', 0, '2205230012', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-23 11:26:06', 60, '2022-05-23 02:47:21', 0, NULL, 1),
(8825, 'Madhubala.S', '4', '8610281724', '9600654544', 'madhubalasrinivasan7@gmail.com', '1993-05-28', 28, '2', '1', 'M.Rajasekar', 'Four wheeler Mechanic', 15000.00, 2, 0.00, 12000.00, 'Kandiyur', 'Thanjavur', '2205230013', '1', '1', 'upload_files/candidate_tracker/86919357835_Madhu resume.pdf', NULL, '1', '2022-05-23', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-23 11:44:49', 85, '2022-05-23 11:57:18', 0, NULL, 1),
(8826, 'Y.Kowsalya', '6', '9345828298', '', 'kowsalya6130@gmail.com', '2000-07-03', 21, '1', '1', 'K.Yuvaraj', 'Farmer', 72000.00, 2, 0.00, 12000.00, 'Vijayamangalam', 'Vijayamangalam', '2205230014', '', '1', 'upload_files/candidate_tracker/89056191661_Resume_Kowsi_Format1.pdf', NULL, '1', '2022-05-23', 0, 'P1303', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-23 11:55:39', 60, '2022-05-23 02:46:51', 0, NULL, 1),
(8827, 'M.mohana sundari', '11', '9087816736', '9025917247', 'mohanasundarimohana27@gmail.com', '1997-10-27', 24, '2', '2', 'Banumathi', 'Research Executive', 20000.00, 0, 0.00, 20000.00, 'Panapakkam', 'Panapakkam', '2205240001', '1', '1', 'upload_files/candidate_tracker/76709444857_Mohana Sundari.M.pdf', NULL, '2', '2022-05-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Is Good, Have Exp As A Research Executive In Native, Ready To Relocate And Can Give A Try For The MIS Role, Need Some Time To Confirm This Profile, Will Check Again For The Sustainability And Let You Know.Lets Hold This Profile', '6', '1', '0', '1', '3', '0', '2', '2022-05-30', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-24 10:19:30', 1, '2022-05-24 10:23:45', 0, NULL, 1),
(8828, 'Naresh', '5', '9840566144', '9677285844', 'naresh.eee11@gmail.com', '1989-07-14', 32, '1', '2', 'Baskar', 'Worker', 80000.00, 0, 40000.00, 50000.00, 'Ennore', 'Chennai ennore', '2205240002', '', '2', 'upload_files/candidate_tracker/5464374023_NKR NEW.docx', NULL, '1', '2022-05-24', 0, '5585', '3', '59', '1970-01-01', 500000.00, '', '8', '1970-01-01', '1', 'Selected for GK Sir Team PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '1,3,4,6', NULL, NULL, NULL, 1, '2022-05-24 11:42:30', 60, '2022-05-26 12:18:34', 0, NULL, 1),
(8829, 'Aravind narayanan', '4', '8056049590', '9444079558', 'aravind992008@gmail.com', '1995-05-19', 27, '3', '2', 'Sundararajan', 'Income tax', 120000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2205240003', '', '1', 'upload_files/candidate_tracker/28006669718_scan410 (1).pdf', NULL, '1', '2022-10-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-24 11:42:55', 1, '2022-10-13 03:02:36', 0, NULL, 1),
(8830, 'S. Ayyammal', '4', '9884577463', '', 'Aymasudip2885@gmail.com', '1998-01-12', 24, '2', '1', 'Selvam', 'Teacher', 45000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2205240004', '1', '1', 'upload_files/candidate_tracker/87411947871_DocScanner May 18, 2022 06-52.pdf', NULL, '3', '2022-05-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate is not available,should give a call tomorrow\n', '1', '1', '0', '1', '1', '0', '2', '2022-05-25', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-05-24 12:01:41', 1, '2022-05-24 12:11:07', 0, NULL, 1),
(8831, 'Edwin Rajkumar J', '6', '9360387948', '', 'edwined1211@gmail.com', '1997-11-12', 24, '2', '1', 'Sheeba D', 'Studying', 25000.00, 0, 15000.00, 20000.00, 'Erode', 'Erode', '2205240005', '1', '2', 'upload_files/candidate_tracker/24403832765_edwin RESUME.pdf', NULL, '1', '2022-05-24', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected.. he is not interested..', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 12:02:55', 60, '2022-05-24 12:48:38', 0, NULL, 1),
(8832, 'Nivas Raj M', '6', '8344748941', '', 'Nivasrajbvn@gmail.com', '1995-06-10', 26, '2', '2', 'Manikam P', 'Ex- Police man', 12000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2205240006', '1', '1', 'upload_files/candidate_tracker/35840103141_RESUME FINAL 2021.docx', NULL, '1', '2022-05-24', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Voice not bold and also very low.. not confident', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 12:03:33', 60, '2022-05-24 12:49:18', 0, NULL, 1),
(8833, 'Anantharaj', '6', '9597701467', '7871974912', 'happykingttk@gmail.com', '2001-03-15', 21, '2', '2', 'Sivanantham', 'Farmer', 45000.00, 1, 0.00, 12000.00, 'Vedaranyam', 'Vedaranyam', '2205240007', '1', '1', 'upload_files/candidate_tracker/36228864563_Anantharaj_RESUME.pdf', NULL, '2', '2022-05-25', 0, '', '5', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No skill', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 12:23:50', 60, '2022-05-25 04:52:53', 0, NULL, 1),
(8834, 'Kishore', '1', '7871419103', '7358282858', 'Mr.kishore0215@gmail.com', '2000-07-02', 21, '2', '2', 'Pushpa.G', 'House Holder', 12000.00, 0, 0.00, 17000.00, 'Thirumullaivoyal', 'Thirumullaivoyal', '2205240008', '1', '1', 'upload_files/candidate_tracker/17272833079_Kishore (sales Resume).pdf', NULL, '1', '2022-05-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,not yet completed his graduation,Exams are there,Not much comfort in field sales,Need to change his dressings ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-05-24 12:39:14', 85, '2022-05-24 12:46:03', 0, NULL, 1),
(8835, 'Dinesh Kumar', '6', '8754135563', '', 'dINESHKUMAR970412@GMail.com', '1997-04-12', 25, '2', '2', 'Kalimuthu', 'eB line', 170000.00, 1, 0.00, 13000.00, 'tirupur', 'tirupur', '2205240009', '1', '1', 'upload_files/candidate_tracker/34110193796_NaukriDhineshKumar0y0m.pdf', NULL, '3', '2022-05-24', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candiate ok pls confirm joining date and salary ', '5', '1', '', '', '', '', '2', '2022-05-25', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 01:07:28', 60, '2022-05-24 07:02:32', 88, '2022-09-13 05:50:48', 0),
(8836, 'Mohammed shoiab', '5', '7337668694', '9035014360', 'shoiabsrk1234@gmail.com', '1996-06-23', 25, '3', '1', 'Mohammed ghani', 'Rice merchant', 30000.00, 2, 22500.00, 27000.00, 'Mysore', 'Thanisandra', '2205240010', '', '2', 'upload_files/candidate_tracker/67903834127_Resume srk.docx', NULL, '1', '2022-05-24', 0, '', '3', '59', '1970-01-01', 330000.00, '', '8', '1970-01-01', '1', 'Selected for Muppudathy team with PF/PT', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '2,5,6', NULL, NULL, NULL, 1, '2022-05-24 03:15:45', 60, '2022-05-27 04:48:54', 0, NULL, 1),
(8837, 'Manikandan', '6', '9444046482', '', 'mk410556@gmail.com', '1996-12-01', 25, '2', '2', 'Vaithiyanathan', 'Priest in temple', 40000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2205240011', '1', '2', 'upload_files/candidate_tracker/30959940810_Resume(Jun 9, 2018 74628 PM)-converted 1.docx', NULL, '1', '2022-05-26', 0, '', '4', '82', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,have exp in sales but not a relevant one,can give a try check and let me know\n', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-24 03:34:40', 60, '2022-05-26 06:37:22', 0, NULL, 1),
(8838, 'giyasuddin', '5', '6361755061', '', 'giyas7242@gmail.com', '1998-03-30', 24, '2', '2', 'abduljalil', 'twelve pass', 22000.00, 0, 0.00, 22000.00, 'dakishnpadmabilnorthtripura', 'kormangalamadiwalachekpost', '2205250001', '24', '1', 'upload_files/candidate_tracker/83031841139_3681dc1c2b8049b386e91442b1c72912.pdf', NULL, '1', '2022-05-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-25 10:27:43', 1, '2022-05-25 10:56:45', 0, NULL, 1),
(8839, 'Anupriya', '6', '9384183834', '6369043948', 'Anu265771@gmail.com', '1999-11-18', 22, '2', '2', 'Velmurugan', 'Driver', 15000.00, 2, 0.00, 20000.00, 'No4/978.2 maravar street, kumbakonam. 612702', '4th street, sriram Nagar, tharamani,chennai.', '2205250002', '1', '2', 'upload_files/candidate_tracker/52791085412_Adobe Scan 24 Jun 2022 (1).pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-11', 192000.00, '', '3', '2023-06-17', '1', 'Selected for Syed Team - Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-25 12:05:39', 60, '2022-07-09 10:21:49', 0, NULL, 1),
(8840, 'Venkatpathi', '5', '9886221544', '', 'venkatpathilvb988@gmail.com', '1999-07-09', 22, '4', '2', 'Narayanappa', 'Farming', 15000.00, 1, 0.00, 20000.00, 'Basavanapura village Anekal thaluk', 'Basavanapura village Anekal thaluk', '2205250003', '', '1', 'upload_files/candidate_tracker/42356532065_RESUME ven.docx', NULL, '2', '2022-05-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-25 12:18:25', 1, '2022-05-25 12:33:23', 0, NULL, 1),
(8841, 'm divya bharathi', '11', '9344308357', '', 'divyamurugesan.rpt@gmail.com', '2000-06-14', 21, '2', '2', 'c murugesan', 'working', 30000.00, 0, 0.00, 30000.00, 'RANIPET', 'RANIPET', '2205250004', '1', '1', 'upload_files/candidate_tracker/89345149123_DIVYA BHARATHI RESUME.pdf', NULL, '1', '2022-05-28', 0, '', '3', '59', '2022-06-01', 146052.00, '', '0', NULL, '1', 'Selected for REcrutier Intern cum employment', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-25 06:56:26', 1, '2022-05-27 10:30:24', 0, NULL, 1),
(8842, 'NARAYANAGURU', '6', '8838912653', '', 'gnguru71@gmail.com', '2001-08-24', 20, '2', '2', 'Gopal', 'Hotel', 20000.00, 1, 0.00, 15000.00, 'Kalugumalai', 'Kalugumalai', '2205260001', '1', '1', 'upload_files/candidate_tracker/22902022313_resume (5)-converted', NULL, '1', '2022-05-26', 0, '', '3', '59', '2022-05-30', 185000.00, '', NULL, '2023-08-02', '2', 'Selected for Babu Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-26 10:50:14', 60, '2022-05-28 05:52:21', 0, NULL, 1),
(8843, '', '0', '7010769536', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205260002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-26 01:40:47', 0, NULL, 0, NULL, 1),
(8844, 'Naveenkumar', '6', '8248918662', '', 'Kumarnaveen22581@gmail.com', '1994-12-02', 27, '2', '2', 'Ravikumar', 'Painter', 20000.00, 0, 0.00, 12000.00, 'Choolaimedu', 'Choolaimedu', '2205260003', '1', '1', 'upload_files/candidate_tracker/56755583942_NAVEEN1.pdf', NULL, '1', '2022-05-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Sales,backend exp but not in Excel works,no basic ideas too,will not handle the pressure and not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-26 02:54:32', 85, '2022-05-26 06:45:13', 0, NULL, 1),
(8845, 'bharanidharan', '21', '9941105454', '', 'baranis5454@gmail.com', '1989-08-14', 32, '2', '1', 'selvam', 'clerk', 15000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2205260004', '2', '2', 'upload_files/candidate_tracker/26340537591_BARANI UPDATE.docx', NULL, '1', '2022-05-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for System Admin and high Exp, no positions in system admin', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-26 10:42:46', 1, '2022-05-26 10:45:34', 0, NULL, 1),
(8846, 'parthiban b', '21', '6379200724', '', 'dhanveerkarnaa786@gmail.com', '1992-04-29', 30, '2', '1', 'baskar', 'sales man', 20000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2205260005', '2', '2', 'upload_files/candidate_tracker/82404738048_CamScanner 05-13-2022 15.56.06.pdf', NULL, '1', '2022-05-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-26 10:50:36', 1, '2022-05-26 10:53:23', 0, NULL, 1),
(8847, 'siraj judheen s', '4', '8838444636', '', 'sira993@gmail.com', '1996-03-20', 26, '2', '2', 'sheik', 'printing', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2205260006', '2', '1', 'upload_files/candidate_tracker/27363056376_CV - SIRA.docx', NULL, '1', '2022-05-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not interested in telesales will not sustain\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-26 10:57:17', 1, '2022-05-26 10:59:51', 0, NULL, 1),
(8848, 'K. Sireesha', '5', '8179999118', '9538493718', 'kusupatisiri2802@gmail.com', '2000-02-28', 22, '2', '2', 'K. Soma sekhar reddy', 'Farmer', 30000.00, 0, 0.00, 18000.00, 'Alampur', 'Kudlu gate', '2205270001', '24', '1', 'upload_files/candidate_tracker/55288978751_K. SIREESHA.pdf', NULL, '1', '2022-05-27', 0, '', '3', '59', '2022-05-30', 174000.00, '', '4', '2022-08-30', '2', 'Selected for ESales RM in the consultant Role', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-05-27 10:17:46', 60, '2022-05-30 01:22:00', 0, NULL, 1),
(8849, 'Sivasakthi. G', '16', '9363048457', '7305703145', 'Lavanyagopinath@gmail.com', '1992-09-15', 29, '2', '1', 'Gopinath', 'Late', 20000.00, 2, 20000.00, 20000.00, 'Chennai', 'Chennai', '2205270002', '1', '2', 'upload_files/candidate_tracker/89009435623_Sivasakthi_Resume.pdf', NULL, '1', '2022-05-28', 0, '', '3', '59', '2022-05-30', 182496.00, '', '', '2022-06-06', '2', 'selected for Renewal with PT only', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-27 11:18:36', 85, '2022-05-28 10:55:51', 0, NULL, 1),
(8850, 'Harikrishnan', '23', '8428987948', '8939783796', 'harikulfi12@gmail.com', '1999-01-30', 23, '4', '2', 'Sridevi', 'Tailor', 1.50, 1, 18000.00, 20000.00, '1368,newkanniyamman nagar,morai,Avadi,chennai-62', '1368,newkanniyamman nagar,morai,avadi,chennai-62', '2205270003', '', '2', 'upload_files/candidate_tracker/8906194102_Resume f.pdf', NULL, '1', '2022-05-27', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-27 12:20:10', 1, '2022-05-27 12:25:22', 0, NULL, 1),
(8851, 'Shivanand shidhe', '5', '9380187186', '9663080803', 'vv2929714@gmail.com', '1998-09-01', 23, '1', '2', 'Baburao Shinde', 'Driver', 25000.00, 2, 20000.00, 22000.00, 'Sindabandagi tq.Humnabad Dt.Bidar Karnataka', 'Banglore', '2205270004', '', '2', 'upload_files/candidate_tracker/31953043402_Shivanand Shinde.docx', NULL, '1', '2022-05-27', 0, 'RMB93163', '1', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-27 01:18:41', 60, '2022-05-27 04:40:12', 0, NULL, 1),
(8852, 'Sangeetha', '11', '7094066255', '', 'sangeethaorathur@gmail.com', '1994-05-05', 28, '2', '2', 'Sankar', 'Farmers', 35000.00, 2, 18000.00, 25000.00, 'Trichy', 'Kodambakkam', '2205270005', '1', '2', 'upload_files/candidate_tracker/50409644536_Resume (1).docx', NULL, '1', '2022-05-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not suitable for our other roles too', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-27 02:14:49', 87, '2022-05-27 06:48:25', 0, NULL, 1),
(8853, 'Karthika.c', '11', '6382188334', '', 'Karthikachandran58@gmqil.com', '1999-12-13', 22, '2', '2', 'Chandiran', 'Buss driver', 30000.00, 0, 18000.00, 18000.00, 'Chennai', 'New washerman pet', '2205270006', '1', '2', 'upload_files/candidate_tracker/35118148724_KARTHIKA CHANDRAN RESUME.docx', NULL, '1', '2022-05-27', 0, '', '3', '59', '2022-06-05', 150000.00, '', '', '1970-01-01', '2', 'Selected for Recruiter with 12.5K,after 5 months can be increased if her performance is good', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-27 02:51:24', 85, '2022-05-27 03:08:11', 0, NULL, 1),
(8854, 'Monika. M', '16', '9042945170', '9940195004', 'muralitharanmonika@gmail.com', '2000-08-02', 21, '2', '2', 'E. Muralidharan', 'Retired', 35000.00, 1, 24000.00, 28000.00, 'Chennai', 'Chennai', '2205270007', '1', '2', 'upload_files/candidate_tracker/77253099280_Monika. M _ Resume.docx', NULL, '1', '2022-05-28', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'High Exp on Salary,not comfort in TxxampC', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-27 03:38:45', 85, '2022-05-28 10:06:13', 0, NULL, 1),
(8855, 'Syed Ali fathima', '4', '7338967595', '', 'Fathiibu786@gmail.Com', '1999-02-09', 23, '2', '1', 'Shajahan', 'Customs', 30000.00, 1, 0.00, 18000.00, 'No.51,nainiappan street,mannady', 'No.51,Nainiappan Street,Mannady', '2205270008', '1', '1', 'upload_files/candidate_tracker/13834939376_Document (4).docx', NULL, '1', '2022-05-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-27 03:57:56', 1, '2022-05-27 04:19:04', 0, NULL, 1),
(8856, 'Sandhiya.G', '11', '7092587207', '7010655668', 'sandhiyag30@gmail.com', '1998-11-30', 23, '2', '2', 'Gunasekaran.L', 'Accountant', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2205270009', '1', '1', 'upload_files/candidate_tracker/36016808882_RESUME - SANDHIYA G.pdf', NULL, '1', '2022-05-28', 0, '', '3', '59', '2022-06-01', 146052.00, '', '0', NULL, '2', 'Selected for Recruiter Intern cum employee', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-27 09:57:38', 1, '2022-05-27 10:03:48', 0, NULL, 1),
(8857, '', '0', '9444646497', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-28 11:51:27', 0, NULL, 0, NULL, 1),
(8858, 'S.Ezhilarasi', '11', '9176131167', '8888888888', 'ezhil132k@gmail.com', '2000-11-13', 21, '2', '2', 'P.Seenivasan', 'Export', 30000.00, 1, 12.00, 16.00, 'Chennai', 'Chennai', '2205280002', '1', '2', 'upload_files/candidate_tracker/7403459883_Ezhilarasi 3.pdf', NULL, '1', '2022-05-30', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-28 11:54:11', 1, '2022-05-28 12:01:00', 0, NULL, 1),
(8859, 'Naveen kumar', '11', '9865711188', '7904125139', 'naveenk6776@gmail.com', '1997-01-17', 25, '2', '2', 'Ravi', 'Driver', 15000.00, 0, 0.00, 15000.00, 'Tiruppur', 'Tiruppur', '2205280003', '1', '1', 'upload_files/candidate_tracker/91293871363_CV_2022051615403896.pdf', NULL, '3', '2022-05-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '3', '', '2', '1970-01-01', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-28 12:48:08', 85, '2022-05-28 01:21:42', 0, NULL, 1),
(8860, 'Samy Theophile Monica gracey', '4', '8807108953', '9894408419', 'maniyamonica96@gmail.com', '1993-05-19', 29, '2', '2', 'Rosy', 'Housewife', 45000.00, 2, 19000.00, 20.00, 'Pondicherry', 'Electronic city', '2205280004', '24', '2', 'upload_files/candidate_tracker/2216083043_monica edit resume.docx', NULL, '1', '2022-05-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-28 12:50:47', 1, '2022-05-28 01:03:27', 0, NULL, 1),
(8861, 'Hemamalini. S', '16', '9940673996', '9094120136', 'hemamalinilokesh29@gmail.com', '1993-04-29', 29, '2', '1', 'Logesh kumar', 'Marketing', 60000.00, 1, 15000.00, 20000.00, 'Thiruninravur', 'Thiruninravur', '2205280005', '1', '2', 'upload_files/candidate_tracker/14244535888_Hemamalini Resume (1).docx', NULL, '1', '2022-05-30', 0, '', '3', '59', '2022-06-02', 152496.00, '', '4', '2022-07-12', '1', 'Selected for Operation team with PT', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-28 05:13:06', 60, '2022-06-08 10:43:03', 0, NULL, 1),
(8862, 'tamil selvi', '11', '9710462590', '', 'tamilselvi@gmail.com', '1997-08-16', 24, '2', '2', 'e', 'officer', 100000.00, 0, 0.00, 16000.00, 'chennai', 'chennai', '2205280006', '1', '2', 'upload_files/candidate_tracker/63512064986_DIVYA RESUME 1.pdf', NULL, '1', '2022-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Communication ok,not comfort in Terms and conditions', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-28 05:35:27', 1, '2022-05-31 07:14:30', 0, NULL, 1),
(8863, 'Jagan M', '5', '9941332540', '9941936097', 'Jaganraja9941@gmail.com', '1992-06-12', 29, '1', '1', 'Durga Devi', 'Office', 26000.00, 1, 0.00, 29000.00, 'Chennai', 'Chennai', '2205280007', '', '1', 'upload_files/candidate_tracker/35666407211_jagan 22.pdf', NULL, '1', '2022-05-28', 0, 'Vinoth', '3', '59', '2022-06-01', 330000.00, '', '4', '2022-07-08', '1', 'Selected for gk sir team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-28 06:10:48', 60, '2022-05-31 09:12:11', 0, NULL, 1),
(8864, 'P.Gurugannesh', '11', '7094276826', '9865610625', 'guruselvam2422@gmail.com', '2000-08-15', 21, '2', '2', 'P.Thenmozhi', 'Working in private company', 14000.00, 1, 0.00, 16000.00, 'Acharapakkam', 'Tambaram', '2205280008', '1', '2', 'upload_files/candidate_tracker/13984782887_Gurugannesh Resume-2.docx', NULL, '1', '2022-05-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-28 07:17:55', 1, '2022-05-28 11:09:51', 0, NULL, 1),
(8865, 'M.Kaviya', '6', '7695816539', '9344530440', 'kaviyamj2001@gmail.com', '2001-10-08', 20, '2', '2', 'C.Malaisamy', 'Building masthery', 40000.00, 1, 0.00, 15000.00, 'Elumathur', 'Elumathur', '2205300001', '1', '1', 'upload_files/candidate_tracker/98737210237_kaviya.M RESUME.pdf', NULL, '1', '2022-05-30', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Distance and scared about sales', '5', '2', '', '4', '7', '', '2', '2022-07-20', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-30 10:19:55', 60, '2022-05-30 06:34:26', 0, NULL, 1),
(8866, 'A JAFAR', '21', '8939774088', '8608460082', 'jafarhussain1077@gmail.com', '1999-03-31', 23, '1', '1', 'M AKBAR BASHA', 'PAINTER', 20000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2205300002', '', '1', 'upload_files/candidate_tracker/1994636604_JAFAR_RESUME-NETWORKING.pdf', NULL, '1', '2022-05-30', 0, 'P1528', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for networking Profile only', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-30 10:38:35', 1, '2022-05-30 10:44:26', 0, NULL, 1),
(8867, 'sudharma', '4', '7299296927', '', 'sudharmakm1997@gmail.com', '1997-06-08', 24, '2', '2', 'muralidharan', 'business', 15000.00, 1, 0.00, 12000.00, 'chennai', 'mandaveli', '2205300003', '2', '1', 'upload_files/candidate_tracker/42064941426_Resume_Sudharma.docx', NULL, '1', '2022-05-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'comfort to work in nonvoice only ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-30 10:46:45', 1, '2022-05-30 10:52:13', 0, NULL, 1),
(8868, 'Babu', '5', '9972246581', '', 'Babubasavaraju662@gmail.com', '1999-06-21', 22, '2', '2', 'Basavaraja', 'Late', 60000.00, 0, 0.00, 19000.00, 'S/o basavaraja no krishnappa bangalure560045', 'No 16,k no 164/13/3 Chelekere Bangalore 560043', '2205300004', '24', '1', 'upload_files/candidate_tracker/79798782280_Babu Resume.pdf', NULL, '1', '2022-05-30', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate will give a call back', '5', '1', '0', '2', '2', '0', '2', '2022-05-31', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-30 11:38:53', 1, '2022-05-30 12:00:05', 0, NULL, 1),
(8869, 'Surya santhosh', '11', '9952074127', '', 'Surya.s9514@mail.com', '1997-08-24', 24, '2', '2', 'Santhoshkumar', 'Driver', 25000.00, 1, 17000.00, 17000.00, 'Vandalur', 'Vandalur', '2205300005', '1', '2', 'upload_files/candidate_tracker/4716999964_surya 2022(1).pdf', NULL, '1', '2022-06-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-30 01:29:29', 1, '2022-05-30 01:52:42', 0, NULL, 1),
(8870, 'Keerthana N', '11', '9791342598', '', 'keerthanaumarani@gmail.com', '1995-10-14', 26, '2', '1', 'S.k thiruselvan', 'Flexi operator', 15000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2205300006', '1', '1', 'upload_files/candidate_tracker/7237813228_keerthana resume 1.docx', NULL, '1', '2022-06-01', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication ok. Long distance and have some health Issues', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-30 03:45:55', 85, '2022-06-01 05:45:03', 0, NULL, 1),
(8871, 'Harini', '25', '6382485765', '9840022429', 'poojahari2307@gmail.com', '1998-07-23', 23, '2', '2', 'E.Hari', 'TNEB', 35000.00, 1, 17500.00, 20000.00, 'Chennai', 'chennai', '2205300007', '1', '2', 'upload_files/candidate_tracker/80819380733_Harini', NULL, '1', '2022-05-31', 0, '', '3', '59', '2022-06-01', 216000.00, '', '6', '2022-07-22', '2', 'Selected for ESales - 2nd Round by Gajalakshmi,3rd round by GK Sir Selected - Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', 'Offer Mail Shared', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-30 05:54:25', 60, '2022-05-31 07:12:56', 0, NULL, 1),
(8872, 'Barath B K', '11', '9677250300', '9445379427', 'bkbneverfails@gmail.com', '2000-05-22', 22, '2', '1', 'Karthikeyan B', 'Office Assistant', 20000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2205300008', '1', '1', 'upload_files/candidate_tracker/33836473447_Barath B K CV.pdf', NULL, '1', '2022-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'didnt Turn back with her confirmation\n', '6', '1', '0', '1', '1', '0', '2', '2022-06-06', '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-30 07:34:25', 1, '2022-05-30 07:42:41', 0, NULL, 1),
(8873, '', '0', '9445379427', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-30 11:10:09', 0, NULL, 0, NULL, 1),
(8874, 'Sivasakhi', '5', '9789489382', '9361181757', 'Normansandy03@gmail.com', '1998-06-11', 23, '2', '2', 'Siva', 'Meson', 50000.00, 1, 17000.00, 20000.00, 'Manapakkam', 'Manapakkam', '2205310001', '1', '2', 'upload_files/candidate_tracker/89593545465_Sivasakthi', NULL, '1', '2022-05-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok not a relevant Exp ,salary Exp is high', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-31 10:02:16', 85, '2022-05-31 11:01:27', 0, NULL, 1),
(8875, 'Shahira banu', '4', '9025176795', '9994106717', 'Sahira3773@gmail.com', '2001-03-28', 21, '3', '2', 'R .Radhika', 'Coli', 15000.00, 1, 10000.00, 13000.00, 'Erode', 'Erode', '2205310002', '', '2', 'upload_files/candidate_tracker/59568676245_CV_2022053109111036.pdf', NULL, '1', '2022-05-31', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 10:12:48', 1, '2022-05-31 10:24:30', 0, NULL, 1),
(8876, 'jaya pradha', '4', '9025563656', '', 'jeyapradha07@gmail.com', '1995-12-13', 26, '2', '1', 'ramakrishnan', 'nil', 13000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2205310003', '2', '1', 'upload_files/candidate_tracker/359708799_RJ_Resume.doc', NULL, '1', '2022-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication not clear no pronunciation,will not handle our sales', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 10:35:21', 1, '2022-05-31 10:37:03', 0, NULL, 1),
(8877, 'ajith kumar', '4', '6379440752', '', 'ajithkumarKS815@gmail.com', '1996-01-05', 26, '2', '2', 'sundarajan', 'business', 10000.00, 2, 15000.00, 16000.00, 'chennai', 't nagar', '2205310004', '2', '2', 'upload_files/candidate_tracker/77594537725_AJITHKUMAR RESUME-convertedpdf.pdf', NULL, '1', '2022-05-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot,much comfort in non voice process only', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 10:39:13', 1, '2022-05-31 10:42:53', 0, NULL, 1),
(8878, 'Pravin', '4', '9787586993', '6374566916', 'pravienvisage9@gmail.com', '2001-04-06', 21, '2', '2', 'Ramasamy.k', 'Two wheeler mechanic', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Perundurai', '2205310005', '1', '1', 'upload_files/candidate_tracker/168693172_PRAVIN_RAMASAMY_Resume_20-03-2022-22-36-41.pdf', NULL, '1', '2022-05-31', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-31 10:44:04', 85, '2022-06-02 04:27:56', 0, NULL, 1),
(8879, 'Dharaneeshwaran.s', '4', '9944710727', '7448695727', 'rdharani3535@gmail.com', '2001-06-03', 20, '2', '2', 'Senthilkumar.c', 'Tailor', 25000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2205310006', '1', '1', 'upload_files/candidate_tracker/69536867094_DHARANI-.pdf', NULL, '1', '2022-05-31', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-05-31 10:44:17', 85, '2022-06-02 04:28:10', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8880, 'Sathish', '5', '9080047931', '9965490206', 'sathishg2122@gmail.com', '1985-07-21', 36, '1', '2', 'M.Gopal', 'Tamilnadu electric board', 20000.00, 3, 24000.00, 25000.00, 'Ramamurthy Nagar', 'Madiwal', '2205310007', '', '2', 'upload_files/candidate_tracker/87736609030_Non - voice (1).pdf', NULL, '1', '2022-05-31', 0, '55601', '3', '59', '2022-06-03', 333696.00, '', '4', '2023-02-09', '2', 'Selected for Manivel Team with PF/PT', '5', '2', '1', '2', '2', '1', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-31 11:04:11', 60, '2022-05-31 06:12:54', 0, NULL, 1),
(8881, 'Pooja v', '25', '9731589634', '8884887735', 'poojashashi0715@gmail.com', '2003-07-08', 18, '2', '2', 'Shashikala', 'House keeping cooking', 15.00, 1, 13.50, 18000.00, 'H251st Main, 1st Cross Murgeshpalya HAL Bangalore', 'H251st Main, 1st Cross Murgeshpalya HAL Bangalore', '2205310008', '24', '2', 'upload_files/candidate_tracker/21446440735_POOJIII.pdf', NULL, '1', '2022-05-31', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Is Good 1 yr exp too long distance Need Time To Give Confirmation', '8', '2', '', '2', '2', '', '2', '2022-06-06', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-05-31 11:06:24', 93, '2022-05-31 05:18:28', 0, NULL, 1),
(8882, 'Saranya R', '4', '9500671168', '9043343617', 'honeyharshithasaranya@gmail.com', '1991-06-15', 30, '1', '1', 'M.Rajeshkanna', 'Plumber and electrician', 100000.00, 1, 12000.00, 13000.00, '710,Ganga lane,Rajagobala Swamy street,Thanjavur-3', 'Vilar road, sanmuganadhan nagar , Thanjavur', '2205310009', '', '2', 'upload_files/candidate_tracker/52248485741_pdf_converter_202205244713.pdf', NULL, '1', '2022-05-31', 0, 'R55577', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Dropped - We have offered her 156000 but she didnt turn with her confirmation', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 11:54:58', 1, '2022-05-31 12:09:56', 0, NULL, 1),
(8883, 'Janani EA', '11', '6381090551', '6380593584', 'eajanani123@gmail.com', '1997-04-21', 25, '2', '1', 'Gowtham E', 'DHL - Processing', 20000.00, 1, 0.00, 20000.00, 'Pattalam', 'Perambur', '2205310010', '1', '1', 'upload_files/candidate_tracker/29486057329_jan resume 2.0.docx', NULL, '1', '2022-05-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'will not sustain not suitable', '6', '1', '', '1', '1', '', '2', '2022-06-06', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-31 01:16:21', 60, '2022-05-31 02:34:33', 0, NULL, 1),
(8884, 'Pramod S', '5', '8722211227', '', 'pramod.hpt9@gmail.com', '1991-12-24', 30, '1', '1', 'Meghana', 'House wife', 21000.00, 0, 25000.00, 32000.00, 'Bommanhalli', 'Bommanhalli', '2205310011', '', '2', 'upload_files/candidate_tracker/74469610392_Pramod Resume (1).pdf', NULL, '3', '2022-05-31', 70, '55601', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-05-31 01:59:47', 1, '2022-05-31 02:03:41', 0, NULL, 1),
(8885, '', '0', '9150298892', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205310012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-31 02:44:58', 0, NULL, 0, NULL, 1),
(8886, 'Naresha R', '5', '8746012727', '9019979605', 'naresharpd@gmail.com', '1998-07-10', 23, '2', '2', 'Gangadhar', 'Engineering', 10.00, 1, 21.00, 21.00, 'Kolar', 'Bommanahallli', '2205310013', '1', '2', 'upload_files/candidate_tracker/9337814582_Resume_Naresha_Resume_for_NARESHA_R.pdf', NULL, '3', '2022-05-31', 5, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-05-31 02:58:20', 1, '2022-05-31 03:05:15', 0, NULL, 1),
(8887, '', '0', '8073370056', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205310014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-31 03:11:52', 0, NULL, 0, NULL, 1),
(8888, 'Riya Francis', '11', '8056076109', '9941140862', 'riyafrancisn30@gmail.com', '1999-06-30', 22, '2', '2', 'Francis N.M', 'Sole trader proprietorship', 24000.00, 1, 198000.00, 280000.00, 'Kottivakkam', 'Kottivakkam', '2205310015', '1', '2', 'upload_files/candidate_tracker/11354219816_updated resume riya-converted.pdf', NULL, '1', '2022-06-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-05-31 03:48:54', 1, '2022-05-31 04:00:35', 0, NULL, 1),
(8889, 'Yuvarani s', '16', '7904357458', '7418336968', 'yuvarani.tech@gmail', '1990-08-29', 31, '2', '1', 'K singaravelu', 'Railway', 20000.00, 1, 15000.00, 18000.00, 'Arakkonam', 'Arakkonam', '2205310016', '1', '2', 'upload_files/candidate_tracker/85672127633_Yuvarani.pdf', NULL, '3', '2022-06-02', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '2', '', '1', '1', '', '1', '1970-01-01', '2', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-31 05:33:04', 87, '2022-06-02 01:31:54', 0, NULL, 1),
(8890, 'John Trevor', '11', '8754597708', '', 'johntrevor2595@gmail.com', '1995-12-25', 26, '2', '2', 'Parent', 'HR admin', 70000.00, 1, 25000.00, 28000.00, 'Chennai City South', 'Chennai City South', '2205310017', '1', '2', 'upload_files/candidate_tracker/97169229742_JOHN TREVOR (CV) (1).docx', NULL, '1', '2022-06-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '2', '', '1', '3', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-05-31 07:18:43', 85, '2022-06-01 10:47:45', 0, NULL, 1),
(8891, '', '0', '7904634962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2205310018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-05-31 07:33:23', 0, NULL, 0, NULL, 1),
(8892, 'Gowri', '11', '9514226131', '9962483465', 'gowri17sm@gmail', '2000-03-17', 22, '2', '2', 'A.Saravanan', 'Tennis marker', 20000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2206010001', '1', '1', 'upload_files/candidate_tracker/38574943582_GOWRI(RESUME).docx', NULL, '1', '2022-06-01', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication average, pronunciation is not clear.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-01 10:49:51', 85, '2022-06-01 11:34:06', 0, NULL, 1),
(8893, 'Melvin A', '4', '8870738314', '', 'melvinsharon96@gmail.com', '1996-02-05', 26, '4', '2', 'Amaladoss.S', 'Digital banking India', 15000.00, 2, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2206010002', '', '2', 'upload_files/candidate_tracker/12965209505_Melvin Resume -1.pdf', NULL, '1', '2022-06-01', 0, '', '3', '59', '2022-06-06', 156000.00, '', '4', '2022-09-14', '1', 'Selected for Thanjavur in Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-06-01 11:23:20', 60, '2022-06-26 10:36:48', 0, NULL, 1),
(8894, 'Ravikiran R', '5', '9632013611', '', 'rrkiran@outlook.com', '1993-06-29', 28, '1', '2', 'Raghupathi A', 'Business', 40000.00, 1, 23000.00, 30000.00, 'Bangalore', 'Bangalore', '2206010003', '', '2', 'upload_files/candidate_tracker/72518686331_RAVIKIRAN R.pdf', NULL, '1', '2022-06-01', 15, '55599', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-01 12:08:02', 1, '2022-06-01 12:10:56', 0, NULL, 1),
(8895, 'Kiran Kumar G', '5', '9731865716', '', 'kirank62041@gmail.com', '2000-07-01', 21, '3', '2', 'M D Gopala Krishna', 'Police', 540000.00, 1, 18000.00, 20000.00, 'Madhugiri Tumkur', '52 5th Palaguna bolc Ksrp Quartes Koramangala', '2206010004', '', '2', 'upload_files/candidate_tracker/60887269317_G KIRAN KUMAR (1).pdf', NULL, '1', '2022-06-01', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-01 12:18:10', 1, '2022-06-01 12:23:37', 0, NULL, 1),
(8896, 'Shaista taranum', '4', '8088330523', '9880007150', 'shaistashaikh64374@gmail.com', '2005-03-09', 17, '2', '2', 'Abdul Baki', 'Arrabi teacher', 10000.00, 0, 0.00, 13000.00, 'Modi road near gouse medical DJ Halli Bangalore', 'Modi road near gouse medical DJ Halli Bangalore', '2206010005', '24', '1', 'upload_files/candidate_tracker/75468918915_Kaagaz_20220601_134239122361.pdf', NULL, '3', '2022-06-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-01 01:22:28', 1, '2022-06-01 02:07:24', 0, NULL, 1),
(8897, 'Elakkiya M', '11', '8778362112', '9514466558', 'elakki9815@gmail.Com', '1998-05-15', 24, '2', '2', 'Sarala', 'HR', 20000.00, 1, 13980.00, 25000.00, 'Avadi', 'Avadi', '2206010006', '1', '2', 'upload_files/candidate_tracker/11222189348_Updated Resume_Elakkiya.pdf', NULL, '1', '2022-06-03', 30, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'from avadi long distance xxamp sal Expectation is too high compare to cCTC', '6', '1', '', '1', '3', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-01 05:45:27', 85, '2022-06-03 01:20:34', 0, NULL, 1),
(8898, 'VISHNU', '6', '6379952640', '7871943076', 'Vishnudurga7815@gmail.com', '2000-06-07', 21, '2', '2', 'P.Ramesh', 'Auto Driver', 15000.00, 1, 13000.00, 16000.00, 'Chennai', 'Chennai', '2206020001', '1', '2', 'upload_files/candidate_tracker/77167993393_VISHNU VD.docx', NULL, '1', '2022-06-02', 0, '', '3', '59', '2022-06-08', 192000.00, '', '2', '1970-01-01', '1', 'Selected for Kannan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-02 10:32:49', 60, '2022-06-07 04:29:18', 0, NULL, 1),
(8899, 'Sangeetha.S', '11', '9150736733', '8610167269', 'sangeethasd2426@gmail.com', '2002-01-26', 20, '2', '2', 'Suresh.d', 'Driver', 28000.00, 1, 0.00, 15000.00, '15/A sakthi nagar 16th street, nerkundram, chennai', '15/A Sakthi Nagar 16th Street, Nerkundram, Chennai', '2206020002', '1', '1', 'upload_files/candidate_tracker/95936397560_Kaagaz_20220602_113011677829.pdf', NULL, '1', '2022-06-02', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication. Prefer to talk in tamil', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-02 11:00:28', 85, '2022-06-02 02:36:03', 0, NULL, 1),
(8900, 'Agrima Dutta', '25', '7086489262', '', 'agrimadutta1@gmail.com', '2001-04-16', 21, '2', '2', 'Mrs. Shanta Dutta', 'Worker', 20000.00, 1, 0.00, 30000.00, 'Guwahati', 'Guwahati', '2206020003', '1', '1', 'upload_files/candidate_tracker/34476633563_RESUME.pdf', NULL, '2', '2022-06-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-02 11:02:25', 1, '2022-06-02 11:41:21', 0, NULL, 1),
(8901, '', '0', '9730754965', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206020004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-02 11:12:31', 0, NULL, 0, NULL, 1),
(8902, 'Gunasekaran S', '4', '7373339145', '', 'gunasekaran707@gmail.com', '1994-07-01', 27, '2', '1', 'Shanmugam V', 'Daily wages', 10000.00, 1, 300000.00, 350000.00, 'Namakkal', 'Namakkal', '2206020005', '1', '2', 'upload_files/candidate_tracker/47547461157_resume new.pdf', NULL, '1', '2022-06-02', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is exp Higher salary', '1', '1', '', '4', '7', '', '1', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-02 01:07:10', 85, '2022-06-02 04:44:04', 0, NULL, 1),
(8903, 'Johnson J', '5', '9551363702', '9840927447', 'yoyomale555@gmail.com', '1995-09-10', 0, '2', '2', 'N. Jebarajan', 'Salesman', 14.00, 3, 18500.00, 20000.00, 'Chennai', 'Chennai', '2206020006', '1', '2', 'upload_files/candidate_tracker/50066011313_JOHNSON.J RESUME_.pdf', NULL, '1', '2022-06-02', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Interested in Feild work Sustainability doubts', '5', '2', '', '1', '1', '', '2', '2022-06-06', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-02 01:10:22', 85, '2022-06-11 10:53:40', 0, NULL, 1),
(8904, 'Rajesh Kumar.R', '4', '7338998231', '9791090861', 'rajeshraina05@gmail.com', '2000-08-08', 21, '2', '2', 'Ramachandran', 'Corpanter', 10.00, 1, 0.00, 15000.00, 'Ennore', 'Chennai-57', '2206020007', '1', '1', 'upload_files/candidate_tracker/97061351883_file_04Jun22.pdf', NULL, '1', '2022-06-04', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-02 01:17:40', 85, '2022-06-04 12:07:18', 0, NULL, 1),
(8905, 'Santosh M', '5', '9060667557', '', 'santosh.gedion@gmail.com', '1982-09-28', 39, '2', '1', 'Shubha', 'House wife', 18000.00, 4, 18000.00, 28000.00, 'Bangalore', 'Bangalore', '2206020008', '24', '2', 'upload_files/candidate_tracker/54462219912_cv...pdf', NULL, '1', '2022-06-02', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-02 03:08:27', 1, '2022-06-02 03:13:49', 0, NULL, 1),
(8906, 'Malini', '11', '9677305486', '9489834143', 'malinikulasekaran@gmail.com', '1997-04-07', 25, '2', '2', 'Kulasegaran', 'Police', 400000.00, 1, 10000.00, 18000.00, 'No 75 angalamman Kovil Street pooranankuppam post', 'No 75 angalamman Kovil Street pooranankuppam post', '2206020009', '1', '2', 'upload_files/candidate_tracker/39960391382_Malini_resume.pdf', NULL, '3', '2022-06-10', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-02 05:06:29', 1, '2022-06-02 05:31:50', 0, NULL, 1),
(8907, 'Nivetha.R', '11', '9384308152', '8098818029', 'nivetharavichandhran1@gmail.com', '1999-05-27', 23, '2', '2', 'Ravichandran', 'Mechine operator', 14000.00, 1, 0.00, 17000.00, 'Mayiladuthurai', 'Madipakkam', '2206020010', '1', '1', 'upload_files/candidate_tracker/14570875017_R.Nivetha(CV) (1).pdf', NULL, '1', '2022-06-03', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long distance xxamp Donxquott know the basic about recruitment', '6', '1', '', '1', '1', '', '2', '2022-06-07', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-02 05:27:00', 85, '2022-06-06 12:13:55', 0, NULL, 1),
(8908, 'Jayavel.r', '11', '9715034105', '', 'jjayavel6@gmail.com', '1998-04-20', 24, '2', '2', 'Raja', 'Account manager', 20000.00, 0, 0.00, 18000.00, 'Tirupur', 'Kundrathur', '2206020011', '1', '1', 'upload_files/candidate_tracker/94998584597_resume_1653022973466.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Holding multiple offers,will not sustain for a long', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-06-02 06:57:53', 85, '2022-08-01 12:06:00', 0, NULL, 1),
(8909, '', '0', '9500964216', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206030001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-03 06:59:39', 0, NULL, 0, NULL, 1),
(8910, 'ANANDHA KRISHNAN J', '4', '9597919190', '9442633765', 'jackrish116@gmail.com', '1999-06-11', 22, '2', '2', 'JAYABALAN K', 'IOB Senior Manager (Retd)', 30000.00, 3, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2206030002', '1', '1', 'upload_files/candidate_tracker/67861790088_Anand Resume 2022.pdf', NULL, '1', '2022-06-03', 0, '', '3', '59', '2022-06-09', 150000.00, '', '1', '1970-01-01', '1', 'Selected for Thanjavur in Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-03 09:45:34', 60, '2022-06-26 10:41:55', 0, NULL, 1),
(8911, 'Mohammedyusf', '4', '9043859474', '', 'mdyusufyf1999@gmail.com', '1999-05-25', 23, '2', '2', 'Mahaboob basha', 'Mechanic machine', 15000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2206030003', '2', '1', 'upload_files/candidate_tracker/89679652202_BIO DATA.pdf', NULL, '1', '2022-06-03', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'YTC with his parents', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-03 10:57:28', 85, '2022-06-03 01:21:40', 0, NULL, 1),
(8912, 'Nithish', '6', '6381191373', '9360668182', 'Viratnithish@gmail.com', '2002-02-26', 20, '2', '2', 'Subashini', '120000', 12000.00, 0, 17500.00, 20000.00, 'Ranipet', 'Iyyappanthangal', '2206030004', '1', '2', 'upload_files/candidate_tracker/58308490056_Resume.1.pdf', NULL, '1', '2022-06-07', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have 8 months Exp in Insurance Sales,but not seems much confident,5050 Profile,can give a try kindly check and let me know your interest', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-03 01:11:51', 60, '2022-06-07 04:10:47', 0, NULL, 1),
(8913, 'Arun. R', '4', '7639089519', '8508583940', 'rsarun8754@gmail.com', '2000-09-27', 21, '2', '2', 'Rajendran', 'Farmer', 20000.00, 1, 15000.00, 20000.00, 'Thiruvannamalai', 'Thiruvannamalai', '2206030005', '1', '2', 'upload_files/candidate_tracker/20537464006_Resume.1.pdf', NULL, '3', '2022-06-03', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-03 01:15:54', 85, '2022-06-03 01:45:28', 0, NULL, 1),
(8914, 'Manikandan.n', '4', '7010233535', '', 'manikandanmanikandan8362@gmail.com', '1998-11-13', 23, '2', '2', 'Uma.n', 'Home make', 49.00, 4, 0.00, 13000.00, 'TAMBARAM EAST', 'TAMBARAM EAST', '2206030006', '1', '1', 'upload_files/candidate_tracker/63995030592_RESUME..pdf', NULL, '1', '2022-06-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-03 05:21:01', 1, '2022-06-03 05:30:29', 0, NULL, 1),
(8915, '', '0', '9688802719', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206030007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-03 06:01:27', 0, NULL, 0, NULL, 1),
(8916, 'Devika .m', '4', '9150369865', '9691753433', 'devikamurugesam1999@gmail.com', '1999-11-09', 22, '3', '2', 'M.murugesan', 'Farmer', 20000.00, 1, 0.00, 8000.00, 'Thanjavur', 'Thanjavur', '2206040001', '', '1', 'upload_files/candidate_tracker/86553215456_devika resume.pdf', NULL, '1', '2022-06-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-04 11:04:10', 1, '2022-06-04 11:09:26', 0, NULL, 1),
(8917, 'A.AKASH', '4', '8925142003', '', 'AKASHLAVANYALAVANYA@gmail.com', '2000-04-08', 22, '2', '2', 'ANNADURAI.B', 'Karbender', 10.00, 0, 0.00, 15.00, 'ENNORE', 'ENNORE', '2206040002', '1', '1', 'upload_files/candidate_tracker/29799376281_certificate (1) (1).pdf', NULL, '1', '2022-06-04', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for calling', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-04 11:10:36', 85, '2022-06-04 12:08:07', 0, NULL, 1),
(8918, 'M pratheep kumar', '5', '9071170196', '9347026518', 'pradeepmohary619@gmail.com', '1994-08-15', 27, '2', '2', 'M venkatesh', 'Farmer', 10000.00, 2, 18000.00, 22000.00, 'Rachapalli Hindupur mandal satyasai district', 'Btm 1st stage', '2206040003', '24', '2', 'upload_files/candidate_tracker/79277231397_new pradeep moharY resume.pdf', NULL, '1', '2022-06-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-04 11:43:01', 1, '2022-06-04 11:55:26', 0, NULL, 1),
(8919, 'anisha', '11', '9087140138', '', 'anishakannan10@gmail.com', '1997-08-19', 24, '2', '2', 'sundararaman.k.l', 'scm', 300000.00, 1, 150000.00, 200000.00, 'chennai', 'chennai', '2206040004', '1', '2', 'upload_files/candidate_tracker/402815573_ANISHA RESUME May 3 2022.pdf', NULL, '1', '2022-06-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Recruitment,have a month internship Exp Salary Exp is high,also not comfort in TxxampC.will not sustain\n', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-04 01:04:50', 1, '2022-06-04 01:20:40', 0, NULL, 1),
(8920, 'BALAJI G P', '16', '9884267732', '', 'balajigpugazhendi@gmail.com', '1999-07-27', 22, '2', '2', 'PUGAZHENDI G', 'TEACHER', 40000.00, 3, 10000.00, 25000.00, 'MELMARUVATUR', 'TARAMANI', '2206040005', '1', '2', 'upload_files/candidate_tracker/60532081049_GPB BIO.pdf', NULL, '1', '2022-06-04', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-04 02:45:48', 85, '2022-06-04 04:15:14', 0, NULL, 1),
(8921, 'anushia', '11', '6383525047', '', 'anushiyamurugavel30@gmail.com', '1999-08-30', 22, '2', '2', 'murugavel', 'officer', 100000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2206040006', '1', '1', 'upload_files/candidate_tracker/43181287233_ANUSHIYAM.pdf', NULL, '2', '2022-06-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-04 05:48:14', 1, '2022-06-08 05:09:13', 0, NULL, 1),
(8922, 'Priya dharshini.k', '4', '8220715192', '9965354601', 'Shivasakthi682@gmail.com', '2001-05-16', 21, '4', '2', 'Muniyappan.s(gardian)', 'Chemist', 20000.00, 1, 10000.00, 13000.00, 'M-155,manickam palayam,housing unit,erode-638009', 'M-155,manickam palayam,housing unit,erode-638009', '2206040007', '', '2', 'upload_files/candidate_tracker/19361102786_Priya dharshini 2022 resume.pdf', NULL, '1', '2022-06-04', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-04 06:05:19', 1, '2022-06-04 06:25:02', 0, NULL, 1),
(8923, 'Surya Prakash.V', '6', '8300071988', '6382059589', 'psuriya561@gmail.com', '1999-11-29', 22, '1', '2', 'Varatharajan.V', 'Sub inspector of police', 400000.00, 1, 10500.00, 13500.00, 'Police quarters,Theni.', 'Mogappair west, Chennai', '2206060001', '', '2', 'upload_files/candidate_tracker/78680329853_My Resume 2022.pdf', NULL, '1', '2022-06-06', 0, 'P1272', '3', '59', '2022-06-07', 192000.00, '', '3', '2022-06-16', '1', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-06 09:51:20', 60, '2022-06-07 10:04:33', 0, NULL, 1),
(8924, 'Abdullah', '13', '8489351923', '9894846968', 'abdullah.bca98@gmail.com', '1998-10-12', 23, '4', '2', 'Mohamed yousuf and Rasheethal beevi', 'Retired and house wife', 50000.00, 3, 0.00, 10000.00, 'Tenkasi', 'Perumpakkam', '2206060002', '', '1', 'upload_files/candidate_tracker/67602289183_abdulla-resume.docx', NULL, '1', '2022-06-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very Slow,will not sustain and suits for our roles', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 10:43:06', 1, '2022-06-06 10:48:19', 0, NULL, 1),
(8925, 'Parthiban', '5', '9710759828', '', 'parthi2610@gmail.com', '1989-10-26', 32, '1', '2', 'Gomathi Mani', 'Home maker', 23000.00, 1, 23000.00, 30000.00, 'Chennai', 'Chennai', '2206060003', '', '2', 'upload_files/candidate_tracker/52330512188_Resume - Parthiban New.docx', NULL, '1', '2022-06-06', 30, 'P1242', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'reject', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 11:10:59', 1, '2022-06-06 11:17:49', 0, NULL, 1),
(8926, 'anitha r', '5', '7022795699', '', 'anitha25304@gmail.com', '2004-03-25', 18, '2', '2', 'rajaram', 'water supply', 20000.00, 2, 0.00, 13000.00, 'bommanahalli', 'bommanahalli', '2206060004', '24', '1', 'upload_files/candidate_tracker/30371810048_Anitha Resume.pdf', NULL, '1', '2022-06-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 11:47:43', 1, '2022-06-06 12:11:44', 0, NULL, 1),
(8927, 'Aarthi', '11', '8870281286', '8870690403', 'aarthiaarthi04337@gmail.com', '1999-11-24', 22, '2', '2', 'Ravichandran', 'Farmer', 200000.00, 2, 0.00, 15000.00, 'Perambalur', 'Tambaram', '2206060005', '1', '1', 'upload_files/candidate_tracker/65039950631_AARTHI RESUME.pdf', NULL, '3', '2022-06-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-06 12:24:31', 87, '2022-06-07 02:48:16', 0, NULL, 1),
(8928, 'Jacop pradeep .g', '4', '9551489076', '9566230701', 'jacobpradeep07@gmail.com', '1998-01-07', 24, '1', '2', 'Gopi .a', 'Marai Malai Nagar', 25000.00, 1, 0.00, 15000.00, 'Marai Malai Nagar Samiyargate 603209', 'Sai Baba Kovil street Samiyargate mm nagar 603209', '2206060006', '', '1', 'upload_files/candidate_tracker/10266411754_certificate (2).pdf', NULL, '1', '2022-06-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too high Exp,long distance,will not run in long not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 12:25:28', 1, '2022-06-06 12:39:56', 0, NULL, 1),
(8929, '', '0', '8610806388', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206060007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-06 12:26:19', 0, NULL, 0, NULL, 1),
(8930, 'VENUGOPAL r', '11', '7550158440', '', 'venupremila@gmail.com', '1999-02-24', 23, '2', '2', 'Premika', 'Supervisor', 17000.00, 0, 25000.00, 30000.00, 'Andhra Pradesh', 'Chroumpet,Chennai', '2206060008', '1', '2', 'upload_files/candidate_tracker/10765612602_Venugopal R Resuem.pdf', NULL, '1', '2022-06-06', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication,veru high Exp,not much comfort in TxxampC,will not sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-06 12:45:29', 85, '2022-06-06 01:17:19', 0, NULL, 1),
(8931, 'goutham', '11', '9841884846', '', 'goutham27smart@gmail.com', '1998-06-27', 23, '2', '2', 'parent', 'Government employer', 40000.00, 1, 0.50, 2.50, 'perambur', 'perambur', '2206060009', '1', '2', 'upload_files/candidate_tracker/36213276553_Goutham_Resume.pdf', NULL, '1', '2022-06-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Exp is veru high,will not sustain in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-06 02:04:30', 85, '2022-06-06 02:33:30', 0, NULL, 1),
(8932, 'V. Sai prasad', '5', '9676372949', '9885409932', 'saiprasadvelpula165@gmail.com', '1997-07-10', 24, '3', '2', 'V. Venkatappa', 'Real Estate', 30000.00, 2, 0.00, 300000.00, '501,jcr layout, Panathur, kadabeesanahalli', 'Banglore', '2206060010', '', '1', 'upload_files/candidate_tracker/7343871908_SAIPRASAD_RESUME.docx', NULL, '1', '2022-06-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-06 02:26:35', 1, '2022-06-06 02:33:09', 0, NULL, 1),
(8933, '', '0', '7550345725', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-06 02:39:55', 0, NULL, 0, NULL, 1),
(8934, 'Sandhiya ravi', '11', '6382842131', '7397722294', 'sandhiyaselvi1506@gmail.com', '2001-06-15', 20, '2', '2', 'Selvi ravi', 'Accountant', 15000.00, 0, 0.00, 20.00, 'Chennai', 'Chennai', '2206060012', '1', '1', 'upload_files/candidate_tracker/64727653896_Sandhiya Resume word format.docx', NULL, '1', '2022-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok,Fresher For Recruitment,Can Give A Try But Her Min Is Very High And Not Ready To Come Down, Given Her Time If She Comes Back Lets See', '6', '1', '', '1', '1', '', '2', '2022-06-16', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-06 03:18:11', 87, '2022-06-08 01:42:05', 0, NULL, 1),
(8935, 'Vijay', '4', '8903027490', '9245395140', 'karthikpskarthik847@gmail.com', '2001-03-03', 21, '2', '2', 'Sekar', 'Wever', 60000.00, 1, 0.00, 15000.00, 'Dindigul', 'Dindigul', '2206060013', '1', '1', 'upload_files/candidate_tracker/56802328347_vijay resume.docx', NULL, '3', '2022-06-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1009', '0', NULL, NULL, NULL, 1, '2022-06-06 03:31:57', 1, '2022-06-06 03:35:14', 0, NULL, 1),
(8936, 'Darathy Infant Aruna', '11', '8760102551', '9360108357', 'darathyphilipkumar@gmail.com', '2001-12-18', 20, '2', '2', 'Philip Kumar', 'Daily Wages', 10000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Ulunthurpet', '2206060014', '1', '1', 'upload_files/candidate_tracker/23409876933_Aruna.pdf', NULL, '2', '2022-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', '6', '2', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-06 06:22:00', 87, '2022-06-09 10:20:36', 0, NULL, 1),
(8937, 'Pavithara', '11', '8072895862', '8667282248', 'pavitharam10@hotmail.com', '1998-06-04', 24, '2', '2', 'Mathiyalagan', 'Retired press officer', 30000.00, 2, 240000.00, 300000.00, 'Chennai', 'Chennai', '2206060015', '1', '2', 'upload_files/candidate_tracker/31544434220_Pavithara.CV.pdf', NULL, '2', '2022-06-25', 20, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dsiscussed 15K for 3 months if achieved 12 profiles per month then 2K incentive PM and the salary will be revised to 2.4LPA after 3 months...Candidate yet to give her confirmation', '6', '1', '', '1', '1', '', '2', '2022-06-27', '2', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-06 06:47:23', 60, '2022-06-25 12:01:17', 0, NULL, 1),
(8938, 'Preethi. S', '11', '6381529998', '', 'psypreethi26@gmail.com', '1999-07-26', 22, '2', '2', 'Sekar. M', 'Painter', 25000.00, 2, 0.00, 22000.00, '6/238 Samy puram colony, sivakasi', '600094, Kodambakkam High Rd, Choolaimedu, Chennai', '2206060016', '1', '1', 'upload_files/candidate_tracker/73614072607_PREETHI RESUME.pdf', NULL, '1', '2022-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,Fresher for Recruitment have internship Exp She is from Psychology background.Almost ok with the TxxampC but her expectation as fresher is minimum 20K.Not ready to come down on the salary', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-06 07:00:25', 1, '2022-06-08 04:59:27', 0, NULL, 1),
(8939, 'Sanjaikumar.v', '4', '6369426169', '8870065752', 'sanjaikumar7105@gmail.com', '2001-07-27', 20, '1', '2', 'Krishnaveni.v', 'Nil', 10000.00, 2, 0.00, 15000.00, 'Taramani', 'Taramani', '2206070001', '', '1', 'upload_files/candidate_tracker/81982132614_SANJAKUMAR DOCUMENT_removed.pdf', NULL, '2', '2022-06-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-07 10:09:25', 1, '2022-06-07 10:22:13', 0, NULL, 1),
(8940, 'Uthamasethupathy. V', '6', '6382572456', '9965230274', 'Vsethupathy18@gmail.com', '1997-03-13', 25, '2', '2', 'V. Selvi', 'Housewife', 10000.00, 0, 0.00, 15000.00, 'Erode', 'Erode', '2206070002', '1', '1', 'upload_files/candidate_tracker/22945542623_RESUME 6.pdf', NULL, '1', '2022-06-07', 0, '', '3', '59', '2022-06-08', 186000.00, '', '3', '2022-06-22', '1', 'Selected for RE - PF/ESI/PT - Erode Location', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-07 10:46:11', 60, '2022-06-07 06:03:57', 0, NULL, 1),
(8941, 'E santhosh kumar', '16', '8248171013', '9940474576', 'skumar73639@gmail.com', '1999-11-19', 22, '2', '2', 'Elumalai', 'Tailor', 15000.00, 1, 0.00, 250000.00, 'Madhavaram', 'Madhavaram', '2206070003', '1', '1', 'upload_files/candidate_tracker/44063596167_pdf_20220427_122955_0000_compressed_compressed1.pdf', NULL, '1', '2022-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication,no basic skills in the MIS,also not comfortable for Sales .Too Long distance will not sustain\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-07 10:51:43', 85, '2022-06-09 10:54:24', 0, NULL, 1),
(8942, 'Nichenametla Ashok', '5', '9603380132', '', 'nichenametlaashok0007@gmail.com', '2000-10-02', 21, '1', '2', 'Shankariah', 'Andhra Pradesh', 25000.00, 1, 0.00, 15000.00, 'Perusomula ,sanjamula(m), kurnool (d),Andhra', 'Bangalore', '2206070004', '', '1', 'upload_files/candidate_tracker/26536671654_RESUME ASHOK.pdf', NULL, '1', '2022-06-07', 0, '55597', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-07 11:11:13', 1, '2022-06-07 11:16:59', 0, NULL, 1),
(8943, 'Balavignesh', '2', '9443855817', '', 'vimi168135@gmail.com', '1998-07-09', 23, '2', '2', 'Sarveshwaran', 'Supervisor', 17000.00, 2, 0.00, 17000.00, 'CHENNAI TAMIL NADU', 'CHENNAI TAMIL NADU', '2206070005', '1', '1', 'upload_files/candidate_tracker/4343103317_balarr.pdf', NULL, '1', '2022-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not comfortable with the package', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-07 11:22:17', 1, '2022-06-07 11:24:33', 0, NULL, 1),
(8944, 'Shruthi', '5', '7806826938', '9087751231', 'Shruthisekar9@gmail.com', '1993-04-09', 29, '1', '1', 'Father', 'Housewife', 20000.00, 3, 16000.00, 15000.00, 'Chennai', 'West mamabalm', '2206070006', '', '2', 'upload_files/candidate_tracker/83796020116_R.Nivetha(CV) (1).pdf', NULL, '1', '2022-06-07', 0, 'Jobs', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not fit for Rm role', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-07 12:27:13', 60, '2022-06-07 04:12:09', 0, NULL, 1),
(8945, 'K.Arun', '6', '9080624900', '9994576433', 'arunkrishnan132@gmail.com', '1998-01-09', 24, '2', '2', 'K.Selvi', 'Coolie', 17000.00, 2, 0.00, 13000.00, 'Erode', 'Erode', '2206070007', '1', '1', 'upload_files/candidate_tracker/32789446264_Arun Resume.pdf', NULL, '1', '2022-06-07', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Voice low..', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-07 12:38:26', 60, '2022-06-07 04:06:28', 0, NULL, 1),
(8946, 'Gokul', '6', '9344299936', '8300914661', 'gokulvathy1517@gmail.com', '1998-07-15', 23, '2', '2', 'Murugesan', 'Cooli', 13000.00, 1, 10000.00, 13000.00, 'Erode', 'Erode', '2206070008', '1', '2', 'upload_files/candidate_tracker/26731698978_Gokul.resume.docx', NULL, '1', '2022-06-07', 0, '', '3', '59', '2022-06-13', 194000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-07 12:38:28', 60, '2022-06-26 10:29:52', 0, NULL, 1),
(8947, 'Dhanalakshmi.R', '11', '9150202974', '8939001974', 'dhanalakShmir587@gmail.com', '2001-10-28', 20, '4', '2', 'Amsa.R', 'Coolie', 70000.00, 0, 0.00, 14.00, 'Pattabiram', 'pattabiram', '2206070009', '', '1', 'upload_files/candidate_tracker/62644356034_dhana.resume ^^.pdf', NULL, '1', '2022-06-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not yet completed her graduation,23 days to complete her exams ,frehser,sustainability doubts on this profile,after exams if she comes back lets try', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-07 03:05:50', 1, '2022-06-07 03:17:29', 0, NULL, 1),
(8948, 'geetha', '26', '7358435462', '', 'geetha.july14@gmail.com', '1995-07-14', 26, '2', '2', 'mani', 'labour', 10000.00, 1, 15000.00, 18000.00, 'coimbatore', 'coimbatore', '2206070010', '1', '2', 'upload_files/candidate_tracker/49539463649_1580108053575Resume_Geetha.doc', NULL, '2', '2022-06-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, Career Gap, No Relevant Exp, Age around 25yrs, while communicating with her seems not much confident. The candidate says that she will be able to sign the SA but does not seems to be. Also, her expectation is high(18-20K) being a fresher', '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-07 05:26:45', 1, '2022-06-07 07:15:41', 0, NULL, 1),
(8949, 'Dharankumar', '10', '9047517243', '8072460710', 'im.dharankumar@gmail.com', '1997-09-20', 24, '2', '2', 'Arutjothi', 'Retired teacher', 28.00, 2, 0.00, 30000.00, 'Siruvalur vada', 'Siruvalur vada', '2206070011', '1', '2', 'upload_files/candidate_tracker/24907884347_My%20Resume%201.docx', NULL, '2', '2022-06-08', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our Sales and the candidate is looking for team lead profiles only, also he is not comfortable in taking calls. Not suitable', '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-07 05:30:21', 1, '2022-06-07 05:33:28', 0, NULL, 1),
(8950, 'Pravalika', '25', '7795261710', '9945531728', 'pravalikachoudary1432@gmail.com', '2000-05-10', 22, '1', '2', 'Bhaskar Rao', 'Farmer', 25000.00, 0, 0.00, 15000.00, 'Kudlu gate', 'Kudlu gate', '2206080001', '', '1', 'upload_files/candidate_tracker/20331852042_RESUME.doc', NULL, '1', '2022-06-08', 0, '5447', '3', '59', '2022-06-13', 168000.00, '', '6', '2022-09-21', '2', 'Selected for ESales RM Mohanraj Team Consultant Role', '8', '1', '', '2', '2', '', '2', '1970-01-01', '1', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-06-08 11:06:49', 60, '2022-06-26 10:36:30', 0, NULL, 1),
(8951, 'M dillibabu', '16', '9600643453', '', 'dillisrm98@gmail.com', '1998-07-25', 23, '2', '2', 'Munniyappan', 'Farmer', 10.00, 4, 17000.00, 20000.00, 'Chengalpattu', 'Chengalpattu', '2206080002', '1', '2', 'upload_files/candidate_tracker/85151095962_dilliresume-converted.docx', NULL, '1', '2022-06-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication,not able to understand what we communicate will not sustain and not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-08 11:36:44', 85, '2022-06-08 11:52:49', 0, NULL, 1),
(8952, 'A.Nithiyasri', '16', '8637471975', '6369957193', 'nithiyaarun8@gmail.com', '1998-08-30', 23, '2', '2', 'Kumari', 'Non teaching staff', 10.00, 4, 16000.00, 19000.00, 'Chennai', 'Chennai', '2206080003', '1', '2', 'upload_files/candidate_tracker/5284725521_nithi hdfc(2).pdf', NULL, '1', '2022-06-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'communication Average, not ready to handle the pressure,will not sustain', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-08 11:45:30', 1, '2022-06-08 12:07:49', 0, NULL, 1),
(8953, 'Shabeer ahamed', '6', '9566199442', '7010947964', 'Shabeerahamed662@gmail.com', '1994-09-21', 27, '4', '2', 'Umarsadiq', 'Garnent Tailor', 30000.00, 2, 15000.00, 18000.00, 'Mangadu', 'Mangadu', '2206080004', '', '2', 'upload_files/candidate_tracker/19880675424_Resume_Shabeer (1).docx', NULL, '3', '2022-06-08', 0, '', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sustain doubt', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-08 12:03:13', 1, '2022-06-08 12:15:04', 0, NULL, 1),
(8954, '', '0', '9159175490', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206080005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-08 12:03:48', 0, NULL, 0, NULL, 1),
(8955, '', '0', '7548832523', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206080006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-08 12:04:17', 0, NULL, 0, NULL, 1),
(8956, '', '0', '7548832423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206080007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-08 12:09:27', 0, NULL, 0, NULL, 1),
(8957, 'Siva V', '5', '7094181720', '', 'siva.vanamamalai@gmail.com', '1996-08-31', 25, '4', '2', 'vanamamalai.S', 'Farmar', 20000.00, 0, 25000.00, 30000.00, 'Tirunelveli', 'Chennai', '2206080008', '', '2', 'upload_files/candidate_tracker/86089979837_RESUME (1).docx', NULL, '1', '2022-06-08', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,no relevant Exp,but in B2B Sales 5050 profile can give a try and analyse in 7 days,ready to take calls,but exp seems somewhat high', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-08 12:25:49', 60, '2022-06-08 07:28:44', 0, NULL, 1),
(8958, 'Ajay', '6', '8838314063', '8012251436', 'aajay5928@gmail.com', '1997-04-25', 25, '2', '2', 'V. Ramaseshan', 'Temple priest', 20000.00, 1, 198000.00, 276000.00, 'No:53, South West Boag Road, T.nagar Chennai -17', 'No:53, South West Boag Road, T.Nagar Chennai -17', '2206080009', '1', '2', 'upload_files/candidate_tracker/25710281734_Resume updated 2021.pdf', NULL, '3', '2022-06-08', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,60 days notice,written communication no,High CTC exp sustainability doubts', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-08 02:40:00', 85, '2022-06-08 03:02:41', 0, NULL, 1),
(8959, 'Uthra S', '11', '9566085250', '8838119759', 'uthraglassy96@gmail.com', '1996-02-08', 26, '2', '2', 'Sundaram S', 'Car dealer', 20000.00, 0, 27000.00, 32000.00, 'No 29/2b new st Nungambakkam ch 34', 'No 29/2b new st Nungambakkam ch 34', '2206080010', '1', '2', 'upload_files/candidate_tracker/81930490952_Uthracv.pdf', NULL, '1', '2022-06-09', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,have exp in US IT recruitement 2 yrs back and she was into different domain.now again she is looking for Recruitment. not much comfort with the txxampC, also her expectation is very high compare to her experience.IF she comes back Let us try', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-08 04:41:28', 1, '2022-06-08 05:29:31', 0, NULL, 1),
(8960, 'Abbass. K', '6', '7200450264', '', 'abuabu3564@gmail.com', '1995-02-18', 27, '2', '2', 'Kaja hussain. S', 'business', 15000.00, 1, 12000.00, 12000.00, 'Erode', 'Erode', '2206080011', '1', '2', 'upload_files/candidate_tracker/46179194374_MY%20RESUME.docx', NULL, '1', '2022-06-09', 1, '', '3', '59', '2022-06-13', 156000.00, '', '2', '1970-01-01', '1', 'Selected for Suthagar - PF/ESI/PT', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-08 04:44:53', 60, '2022-06-11 03:34:02', 0, NULL, 1),
(8961, '', '0', '8015452762', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206080012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-08 06:13:14', 0, NULL, 0, NULL, 1),
(8962, 'divakaer', '11', '7358407223', '', 'divakaerjs@gmail.com', '1999-09-12', 22, '2', '2', 'jayaprakash', 'business', 100000.00, 1, 0.00, 20000.00, 'tambaram', 'tambaram', '2206080013', '1', '1', 'upload_files/candidate_tracker/41974214287_J S DIVAKAER', NULL, '2', '2022-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-08 06:18:43', 87, '2022-06-09 10:19:15', 0, NULL, 1),
(8963, 'Vaishyakanmani', '21', '8098290294', '', 'Vaishukas13@gmail.com', '1995-05-16', 27, '2', '2', 'K. Ramasamy', 'Farmer', 100000.00, 0, 0.00, 16.00, 'Pattukottai', 'Saidapet', '2206080014', '1', '2', 'upload_files/candidate_tracker/32397885327_vaishya resume.pdf', NULL, '1', '2022-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have exp in telecalling sales,not suits for our MIS,Processed her for second round ESales,but got rejected in the final round with Gaurav sir.Rejected', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-08 07:44:07', 1, '2022-06-08 07:56:47', 0, NULL, 1),
(8964, 'Kalpesh Kumar', '16', '9790972104', '7401794279', 'kalpeshramesh316@gmail.com', '1999-11-25', 22, '2', '2', 'Ramesh', 'Driver', 18000.00, 1, 15000.00, 19000.00, 'Chennai', 'Chennai', '2206090001', '1', '2', 'upload_files/candidate_tracker/98016400512_Kalpesh_Kumar Resume 2022.docx', NULL, '1', '2022-06-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average, not clear in his speech, not ok with TxxampC, Very slow and will not handle the pressure.Not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 10:17:08', 1, '2022-06-09 10:20:03', 0, NULL, 1),
(8965, 'Salman athkham k a', '11', '6369935964', '', 'salmanathkham@gmail.com', '1998-05-07', 24, '2', '2', 'Abul gulam', 'Driving', 12000.00, 2, 16000.00, 16000.00, '105/52 new Street kadayanallur', 'Kadayanallur', '2206090002', '1', '2', 'upload_files/candidate_tracker/37216080523_salman resume-1.pdf', NULL, '2', '2022-06-10', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average, not comfortable with the TxxampC,Will not run in a long,not suitable', '6', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 10:59:23', 1, '2022-06-09 11:02:36', 0, NULL, 1),
(8966, 'hari haran ruban', '16', '9566478661', '', 'hariharan1996@gmail.com', '1995-12-18', 26, '2', '2', 'chelliah', 'farmer', 10000.00, 0, 18000.00, 23000.00, 'Tenkasi District,', 'bangalore', '2206090003', '1', '2', 'upload_files/candidate_tracker/94450154450_Hariharan_Chelliah_May-2022 (3).pdf', NULL, '2', '2022-06-10', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok, Diploma graduate in 2014, had his own business then worked on different bank projects. Currently, he is in Bangalore working in Wintronics and looking for an opportunity, Min 18K Exp and not much with TxxampC, will not sustain in our roles.', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 11:04:08', 1, '2022-06-09 11:36:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(8967, 'DHANALAKSHMI', '5', '9962779148', '6380128566', 'Poojavenkat13@gmail.com', '1999-11-13', 22, '1', '2', 'VENKATESAN', 'Self Employee', 40000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2206090004', '', '2', 'upload_files/candidate_tracker/60502236273_Resume DHANALAKSHM.V.docx', NULL, '1', '2022-06-09', 0, '55641', '5', '80', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is not speak out ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-09 12:01:39', 60, '2022-06-09 05:17:19', 0, NULL, 1),
(8968, 'RANGARAJAN.R', '6', '9176878709', '', 'rangarajan1638@gmail.com', '1999-06-16', 22, '2', '2', 'R. Ranganathan', 'daily wager', 12000.00, 3, 20000.00, 25000.00, 'Kodambakkam, Chennai', 'Kodambakkam, Chennai', '2206090005', '1', '2', 'upload_files/candidate_tracker/76298436186_resume_RANGARAJAN_R[3] (2).pdf', NULL, '2', '2022-06-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 12:16:11', 1, '2022-06-10 09:43:32', 0, NULL, 1),
(8969, 'Thalapathy d', '5', '9043617810', '7824898752', 'D.KARTHICK47@GMAIL.COM', '1993-06-14', 28, '1', '2', 'K.durai', 'Late', 7000.00, 2, 24150.00, 30000.00, '6/34 SOUTH BOAG ROAD T.NAGAR CHENNAI 600017', 'Chennai', '2206090006', '', '2', 'upload_files/candidate_tracker/61893758097_Karthik Resume.pdf', NULL, '1', '2022-06-09', 0, '55643', '3', '59', '2022-06-10', 336000.00, '', NULL, '2023-06-02', '1', 'Selected for Pandiarajan Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-09 12:37:09', 60, '2022-06-10 05:00:45', 0, NULL, 1),
(8970, 'Balachandar, M', '16', '9940726858', '8754611596', 'artsbalachandar555@gmill.com', '1998-07-09', 23, '2', '2', 'Muthu', 'Company', 15000.00, 1, 0.00, 17000.00, 'Thiruvalur', 'Thiruvallur', '2206090007', '1', '1', 'upload_files/candidate_tracker/61765053776_Adobe Scan Jun 02, 2022.pdf', NULL, '1', '2022-06-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Sales Collections, but not comfortable to go in sales again, appeared for MIS role, but no basic ideas.Too long Distance he is from tiruvallur and not ready to relocate,not suitable', '3', '1', '', '4', '6', '', '2', '1970-01-01', '2', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-09 01:13:04', 85, '2022-06-09 04:07:33', 0, NULL, 1),
(8971, 'Anupriya', '11', '7904130674', '9688306032', 'anupriyajagadeesan@gmail.com', '1989-07-14', 32, '2', '1', 'Jagadeesan', 'Engineer', 40000.00, 3, 25000.00, 25000.00, 'Chennai', 'Chennai', '2206090008', '1', '2', 'upload_files/candidate_tracker/93951359635_resume_anu.doc', NULL, '3', '2022-06-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for WFH,Having a long career gap,6 months Exp in IT recruitment,Married,need some time to finalise the Profile', '6', '1', '0', '1', '3', '0', '2', '2022-06-17', '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-09 03:18:54', 1, '2022-06-09 03:22:34', 0, NULL, 1),
(8972, 'Sangeetha A', '11', '9943937328', '', 'sangeethaarunachalam1997@gmail.com', '1997-06-11', 24, '2', '2', 'Arunachalam.s', 'Business', 20000.00, 1, 0.00, 300000.00, 'Thoothukudi (Tuticorin)', 'Thoothukudi (Tuticorin)', '2206090009', '1', '1', 'upload_files/candidate_tracker/85757800857_SANGEETHA RESUME (1).pdf', NULL, '3', '2022-06-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-09 04:29:36', 1, '2022-06-09 04:34:52', 0, NULL, 1),
(8973, 'Tamilselvan L', '4', '9092499398', '9380794634', 'tamildhanush23@gmail.com', '2000-02-24', 22, '2', '2', 'Loganathan B', 'Clerk', 30000.00, 2, 10000.00, 20000.00, 'Chennai', 'Chennai', '2206090010', '1', '2', 'upload_files/candidate_tracker/69165127495_TAMILSELVAN L.docx', NULL, '1', '2022-06-10', 1, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-09 05:30:50', 1, '2022-06-10 10:37:54', 0, NULL, 1),
(8974, 'Hema r', '11', '8072785074', '8778821962', 'Hem.resh09@gmail.com', '1991-10-02', 30, '2', '1', 'Kathiresan c', 'Private', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2206090011', '1', '1', 'upload_files/candidate_tracker/1205593812_Resume.pdf', NULL, '1', '2022-06-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Huge career gap, no basic knowledge in recruitment ,need to train from the scratch, too long distance 36kms up and down married 2 kids not comfort with the timings too', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-09 05:55:09', 60, '2022-06-10 03:29:56', 0, NULL, 1),
(8975, '', '0', '9176815197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206090012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-09 06:35:15', 0, NULL, 0, NULL, 1),
(8976, 'Deepasri', '11', '6385920097', '7708892321', '08srideepa97@gmail.com', '1997-12-08', 24, '2', '2', 'Rajagopal', 'Policeman', 800000.00, 1, 240000.00, 300000.00, 'Tiruchengode', 'Tiruchengode', '2206090013', '1', '2', 'upload_files/candidate_tracker/6027054485_DEEPASRI RAJAGOPAL- UPDATED CV.docx', NULL, '2', '2023-06-10', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-09 06:46:04', 1, '2022-06-09 07:09:16', 0, NULL, 1),
(8977, 'KUMARESAN K', '4', '7010062060', '7200632154', 'Reachkumaresa@gmail.com', '1998-06-28', 23, '1', '2', 'Kannappan M', 'Labour', 5000.00, 2, 16000.00, 20000.00, 'Cheyyar', 'Chennai', '2206100001', '', '2', 'upload_files/candidate_tracker/39096073336_Kumaresan K Resume 2022.pdf', NULL, '1', '2022-06-10', 30, 'P1066', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 10:03:24', 1, '2022-06-10 10:19:57', 0, NULL, 1),
(8978, 'Mohamed Nazeerudeen', '4', '8778818736', '9840731938', 'mohamednazirdeen16@gmail.com', '2000-04-16', 22, '1', '2', 'Mohamed Samimudeen', 'Sales Executive', 15000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2206100002', '', '1', 'upload_files/candidate_tracker/97598557948_Nazir resume.pdf', NULL, '1', '2022-06-10', 0, 'Ci121', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 10:15:19', 1, '2022-06-10 10:31:14', 0, NULL, 1),
(8979, 'TAMILSELVAN', '4', '8248598127', '', 'selvamessi07081998@gmail.com', '1998-08-07', 23, '2', '2', 'Thamindran', 'worker', 20000.00, 1, 13000.00, 18000.00, 'Thirumullaivoyal colony', 'Thirumullaivoyal colony', '2206100003', '1', '2', 'upload_files/candidate_tracker/46083777085_T.Tamilselvan resume (2).pdf', NULL, '1', '2022-06-13', 15, '', '1', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-10 10:26:31', 60, '2022-06-14 06:21:11', 0, NULL, 1),
(8980, 'Monica N', '25', '7019136761', '', 'monicamoni1145@gmail.com', '1998-05-05', 24, '1', '2', 'Nagaraju', 'No', 80000.00, 1, 10000.00, 15000.00, 'Adugodi', 'Adugodi', '2206100004', '', '2', 'upload_files/candidate_tracker/63500304377_monika resume.pdf', NULL, '1', '2022-06-10', 0, 'Cafsusr00272', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 10:39:02', 1, '2022-06-10 10:54:41', 0, NULL, 1),
(8981, '', '0', '8904392934', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-10 10:41:42', 0, NULL, 0, NULL, 1),
(8982, '', '0', '7358507171', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206100006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-10 10:54:54', 0, NULL, 0, NULL, 1),
(8983, 'Suman nihar', '4', '6381567917', '9092252171', 'Sumannihar786@gmail.com', '2000-04-22', 22, '2', '2', 'Mohammed', 'Driver', 30000.00, 1, 15000.00, 15000.00, 'Pallavaram', 'Pallavaram', '2206100007', '1', '2', 'upload_files/candidate_tracker/48269810829_Suman nihar resume.pdf', NULL, '1', '2022-06-10', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 Profile 6 months in Inbound calls,2nd round interviewed by karthika in your absence do check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-10 11:20:24', 1, '2022-06-10 11:55:01', 0, NULL, 1),
(8984, 'V.Oviya', '6', '9384653068', '', 'ooviyavjkumar02@gmail.com', '2002-05-14', 20, '2', '2', 'V.Delsi', 'Garment company', 10000.00, 1, 0.00, 15000.00, 'No.5/5 Vinayagapuram , Tondiarpet,ch-81', 'No.5/5 Vinayagapuram , Tondiarpet,Ch-81', '2206100008', '1', '1', 'upload_files/candidate_tracker/22933957995_Resume Of Oviya.docx', NULL, '1', '2022-06-10', 0, '', '4', '89', NULL, 0.00, '', '0', NULL, '2', 'Communication ok 5050 profile fresher for Sales do check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-06-10 11:55:07', 1, '2022-06-10 12:05:58', 0, NULL, 1),
(8985, 'Anand', '7', '9880241888', '9738176606', 'anandgowda2901@gmail.com', '1985-01-29', 37, '2', '1', 'Rangadham', 'Mag Dr i', 50000.00, 0, 31500.00, 30000.00, 'BYLAKONENAHALLI', 'BYLAKONENAHALLI', '2206100009', '12', '2', 'upload_files/candidate_tracker/25409116695_Image to PDF 20220515 08.00.10.pdf', NULL, '1', '2022-06-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 11:55:40', 1, '2022-06-10 12:02:53', 0, NULL, 1),
(8986, 'Leena.s', '6', '8122073634', '', 'priyaleena837@gmail.com', '2001-08-17', 20, '2', '2', 'Sankar.b', 'Fisherman', 12000.00, 2, 0.00, 13000.00, 'No.9 s.n chetty 3rd Street royapuram ch-13', 'No.9 s.n chetty 3rd Street royapuram ch-13', '2206100010', '1', '1', 'upload_files/candidate_tracker/33670266105_Document 2022-06-10 12.00.42.pdf', NULL, '1', '2022-06-10', 0, '', '4', '89', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,very low profile 5050 check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-06-10 11:57:32', 1, '2022-06-10 12:28:23', 0, NULL, 1),
(8987, 'yogesh rajan', '6', '9884843578', '', 'yogeshrajan8362@gmail.com', '1997-05-25', 25, '1', '2', 'rajan', 'building contractor', 35000.00, 0, 0.00, 15000.00, 'ambattur', 'ambattur', '2206100011', '', '1', 'upload_files/candidate_tracker/74979270405_yog.pdf', NULL, '1', '2022-06-10', 0, 'P1290', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Ned to open a lot,no sustainability 2yrs 3 companies,Fresher will not hanlde our pressure', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 12:02:34', 1, '2022-06-10 12:11:29', 0, NULL, 1),
(8988, 'Cyrus.S', '6', '7200947123', '7358337157', 'joshuacyrus171@gmail.com', '1996-09-07', 25, '2', '2', 'M.Rani pramila', 'house wife', 25000.00, 1, 16000.00, 18000.00, 'no 51 siruvallur road Perambur ch6000011', 'no 778,sectraitrait colony Vinyagpuram kolathur ch', '2206100012', '1', '2', 'upload_files/candidate_tracker/90611701987_resume.docx', NULL, '1', '2022-06-10', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,12th highest graduation,Have Exp in Collection Calls,5050 Profile left without attending the 2nd Round minimum 15-16K TH', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-10 12:19:35', 85, '2022-06-10 12:47:39', 0, NULL, 1),
(8989, 'S vishnu', '5', '8939618088', '8825787661', 'svishnu1811@gmail.com', '1995-04-18', 27, '1', '2', 'Geetha', 'Housemaid', 25000.00, 1, 17000.00, 25000.00, 'CHENNAI', 'CHENNAI', '2206100013', '', '2', 'upload_files/candidate_tracker/21857432586_Vishnu Word -converted (1).pdf', NULL, '1', '2022-06-10', 0, '55634', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'Asked one week time to Join for arranging laptop. Expected salary is 16+ take home+PF. Selected from Mani Team', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 12:23:36', 1, '2022-06-10 12:35:28', 0, NULL, 1),
(8990, 'Divya', '6', '7305911902', '', 'dsri4052@gmail.com', '1999-08-18', 22, '2', '2', 'Thirumalai', 'Carpenter', 45000.00, 2, 14000.00, 18000.00, 'Erukancherry', 'Erukancherry', '2206100014', '25', '2', 'upload_files/candidate_tracker/71826928597_TVP REPORT TAMIL.docx', NULL, '1', '2022-06-10', 0, '', '3', '59', '2022-06-13', 201600.00, '', NULL, '2023-09-11', '2', 'Selected for Pandian Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-10 12:37:10', 60, '2022-06-14 06:10:06', 0, NULL, 1),
(8991, 'Deepa.S', '11', '9884024116', '', 'Deepasweetheart24@gmail.com', '2000-11-24', 21, '2', '2', 'Saraswathi.S', 'Home maker', 180000.00, 0, 15000.00, 17000.00, 'CHENNAI', 'CHENNAI', '2206100015', '1', '2', 'upload_files/candidate_tracker/15423558064_Resume_10_06_2022_02_58_34_PM.pdf', NULL, '1', '2022-06-10', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 4 months Exp in Recruitment,Distance up and down 36 kms,Not much comfort with TxxampC,Salary Exp min 15K TH ,if she come back let us try', '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-10 03:23:09', 1, '2022-06-10 03:29:51', 0, NULL, 1),
(8992, 'prasad', '6', '8122757926', '', 'prasadsreedharan1995@gmail.com', '1995-02-11', 27, '2', '2', 'sreedharan', 'retired', 15000.00, 1, 18000.00, 20000.00, 'chennai', 'chennai', '2206100016', '2', '2', 'upload_files/candidate_tracker/60249333780_Prasad Resume.docx', NULL, '1', '2022-06-11', 0, '', '3', '59', '2022-06-20', 252100.00, '', '4', '2022-12-01', '1', 'Selected for RM Pandia Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-10 09:52:16', 60, '2022-06-17 01:03:24', 0, NULL, 1),
(8993, 'viknesh m', '5', '9345539008', '', 'vickymech13721@gmail.com', '1996-07-10', 25, '2', '2', 'manickam p', 'farmer', 10000.00, 3, 20000.00, 23000.00, 'chennai', 'chennai', '2206100017', '2', '2', 'upload_files/candidate_tracker/98140481395_Resume M. Viknesh 1.docx', NULL, '1', '2022-06-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-10 09:58:19', 1, '2022-06-10 10:01:09', 0, NULL, 1),
(8994, 'Manikandan', '4', '9944896365', '9597535627', 'maniarjun0302@gmail.com', '1999-06-30', 22, '1', '2', 'Archunan', 'Former', 100000.00, 1, 0.00, 16000.00, 'Kallakkurichi', 'Chennai', '2206110001', '', '1', 'upload_files/candidate_tracker/27977868291_CV_2022-05-27-120301.pdf', NULL, '1', '2022-06-11', 0, 'Gajalakshmi', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Sounds low,have exp in calling,internal reference from Gajalakshmi,check and let me know your inputsxquot\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-11 10:23:03', 1, '2022-06-11 10:51:20', 0, NULL, 1),
(8995, 'BARATHRAJ V', '11', '9791615014', '', 'barath.v2000@gmail.com', '2000-11-02', 21, '2', '2', 'DEEBALAKSHMI V', 'HOME MAKER', 15000.00, 1, 0.00, 15000.00, 'Udaiyarpalayam,thammapatty,salem(dt) 636113', 'Sowrastra nagar,choolaimedu,chennai 600094', '2206110002', '1', '1', 'upload_files/candidate_tracker/81010532821_Resume for HR.pdf', NULL, '1', '2022-06-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Fresher,no basic ideas about recrruitment,will not sustain in our Role for a long not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-11 11:22:39', 1, '2022-06-11 11:30:04', 0, NULL, 1),
(8996, 'Samuel', '4', '6381128402', '', 'samuelbaruch46@gmail.com', '2001-08-30', 20, '2', '2', 'Stanley Raj Kumar', 'Teacher', 25000.00, 1, 0.00, 15000.00, '483, arulappa 23rd street, g.k.m. colony', '483, arulappa 23rd street, g.k.m. colony', '2206110003', '1', '1', 'upload_files/candidate_tracker/99221033159_Samuel', NULL, '1', '2022-06-11', 0, '', '3', '59', '2022-07-01', 162000.00, '', '3', '2022-07-21', '1', 'Selected for Staff Role Patroniss', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '9', 'Document Link Shared', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-11 11:36:48', 60, '2022-06-28 01:30:04', 0, NULL, 1),
(8997, 'Arunkumar M', '4', '9655031461', '9500612010', 'Smanoarun007@gmail.com', '1997-06-02', 25, '2', '2', 'Manokaran S', 'Political', 35000.00, 2, 0.00, 12000.00, 'Soorakkottai, thanjavur', 'Soorakkottai, thanjavur', '2206110004', '1', '1', 'upload_files/candidate_tracker/57189434544_M.ARUNKUMARresume-1.pdf', NULL, '1', '2022-06-11', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-11 11:46:03', 85, '2022-06-11 12:16:16', 0, NULL, 1),
(8998, 'Polipogu jayarao', '5', '7338952436', '', 'Jayarao088@gmail.com', '1991-05-05', 31, '3', '2', 'Atcharao', 'Farmar', 200000.00, 2, 320000.00, 420000.00, 'Oguru kandukur praksam ap', 'Medavakkam', '2206110005', '', '2', 'upload_files/candidate_tracker/23415851555_jayarao Resume.docx', NULL, '1', '2022-06-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'very high Exp in Sales and looking only for the lead level positions,', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1006', '0', NULL, NULL, NULL, 1, '2022-06-11 01:16:38', 1, '2022-06-11 01:24:23', 0, NULL, 1),
(8999, '', '0', '6381350369', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206110006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-11 02:17:44', 0, NULL, 0, NULL, 1),
(9000, 'Sarathkumar', '11', '6380265646', '', 'ssarathkumar826@gmail.com', '1997-12-08', 24, '2', '2', 'Lavanya', 'Government Employee', 50000.00, 1, 15000.00, 20000.00, 'Tiruttani', 'Oragadam', '2206110007', '1', '2', 'upload_files/candidate_tracker/6292495441_SARATH HR 22.pdf', NULL, '1', '2022-06-11', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp as generalist applied for recruiter,Min Salary Exp is 18K,30 days notice', '6', '1', '', '1', '1', '', '2', '2022-06-30', '3', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-11 03:38:59', 85, '2022-06-11 03:55:56', 0, NULL, 1),
(9001, '', '0', '8610937064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-11 06:52:20', 0, NULL, 0, NULL, 1),
(9002, 'Vignesh V', '4', '9677080429', '6369144535', 'vv838728@gmail.com', '2001-12-28', 20, '3', '2', 'Venugopal A', 'Cooli', 12000.00, 2, 0.00, 11000.00, 'Avadi', 'Avadi', '2206120001', '', '1', 'upload_files/candidate_tracker/92217984126_vicky.pdf', NULL, '1', '2022-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not Sustain and handle our pressure, too long distance and having health issue too', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-12 12:34:35', 1, '2022-06-12 02:09:44', 0, NULL, 1),
(9003, 'gokul', '11', '6369244820', '', 'gokultamil21@gmail.com', '1995-11-13', 26, '2', '2', 'tamil', 'accounting', 14000.00, 1, 17000.00, 19000.00, 'chennai', 'chennai', '2206130001', '2', '2', 'upload_files/candidate_tracker/49007963483__Template_1654672326223.pdf', NULL, '1', '2022-06-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good, Can give a try for HR Recruiter Profile, candidatexquots exp is high, need to finalise ', '6', '1', '0', '1', '1', '0', '2', '2022-06-17', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 10:18:07', 1, '2022-06-13 10:22:20', 0, NULL, 1),
(9004, 'Tamilarasu', '6', '8939757984', '8610537503', 'tamilsundari1999@gmail.com', '1999-10-18', 22, '2', '2', 'Sundari A', 'Employed', 30000.00, 1, 15500.00, 23000.00, 'No 2 Reddy street mudichur Road', 'Chennai', '2206130002', '1', '2', 'upload_files/candidate_tracker/65936782432_Tamilarasu A_MOB200004750.pdf', NULL, '2', '2022-06-13', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-13 11:00:29', 85, '2022-06-14 06:02:22', 0, NULL, 1),
(9005, 'Mohankumar', '25', '8838116379', '9790865862', 'santhidme1971@gmail.com', '1998-06-29', 23, '2', '2', 'Santhiappan', 'Supervisor', 75000.00, 1, 24000.00, 28000.00, 'Selaiyur chennai', 'Selaiyur chennai', '2206130003', '1', '2', 'upload_files/candidate_tracker/20500868674_mohan resume.pdf', NULL, '1', '2022-06-13', 7, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not selcted', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-13 11:03:21', 60, '2022-06-13 07:04:33', 0, NULL, 1),
(9006, 'VIJAYA KUMAR.R', '4', '9940619572', '', 'vijayrcipet@gmail.com', '1989-08-05', 32, '2', '2', 'N.Ramu', 'Farmer', 10000.00, 2, 15000.00, 23000.00, 'Kallakurichi district', 'Chennai', '2206130004', '1', '2', 'upload_files/candidate_tracker/65493238222_CV_2022052910265747.pdf', NULL, '1', '2022-06-13', 15, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-13 11:14:26', 1, '2022-06-13 01:39:11', 0, NULL, 1),
(9007, 'Amina majid', '4', '6385418398', '', 'amisaf003@gmail.com', '2004-01-05', 18, '4', '2', 'Salma majid', 'House wife', 10000.00, 0, 0.00, 15000.00, 'Nagore', 'Nagore', '2206130005', '', '1', 'upload_files/candidate_tracker/15381977040_amina_resume_1.pdf', NULL, '3', '2022-06-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 11:28:11', 1, '2022-06-13 11:33:36', 0, NULL, 1),
(9008, 'Venkatesh', '4', '6374465447', '', 'manitanjaore49@gmai.comm', '1994-01-26', 28, '4', '2', 'srivasan', 'late', 10000.00, 0, 14000.00, 13000.00, 'thanjavur', 'thanjavur', '2206130006', '', '2', 'upload_files/candidate_tracker/43042741896_CV202110040522161.pdf', NULL, '1', '2022-06-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not reposding the calls properly seems not interested in the position\n', '1', '2', '', '', '', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-13 12:47:34', 60, '2022-06-15 12:21:37', 0, NULL, 1),
(9009, 'Loganathan E K', '4', '8610780925', '8124798620', 'loganathankesavan3@gmail.com', '2000-06-01', 22, '3', '2', 'Kesavan E K', 'Weaver', 15000.00, 1, 0.00, 15000.00, '121, silambupalayam street ,Podaturpet.', 'Thiruttani', '2206130007', '', '1', 'upload_files/candidate_tracker/98161626823_LOGANATHAN E K.pdf', NULL, '1', '2022-06-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Non Voice PRocess,no Communication,not suitabe', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 12:48:32', 1, '2022-06-13 12:55:17', 0, NULL, 1),
(9010, 'n.vaishnavi', '4', '8688181202', '', 'vaishnaviroyal1234@gmail.com', '2001-04-23', 21, '2', '2', 'nuka dhanamjayalu', 'former', 50000.00, 0, 0.00, 16000.00, 'chittoor', 'Bangalore', '2206130008', '24', '1', 'upload_files/candidate_tracker/7091202238_Resume (1).pdf', NULL, '1', '2022-06-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 01:18:52', 1, '2022-06-13 01:40:07', 0, NULL, 1),
(9011, '', '0', '9740197093', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206130009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-13 01:36:33', 0, NULL, 0, NULL, 1),
(9012, '', '0', '9940229980', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-13 04:22:36', 0, NULL, 0, NULL, 1),
(9013, 'sathveena a', '11', '9442470124', '6381654009', 'sathveenaarunaraj@gmail.com', '1998-10-21', 23, '2', '2', 'arunaraj p', 'business', 50000.00, 1, 16000.00, 25000.00, 'trichy', 'trichy', '2206130011', '1', '2', 'upload_files/candidate_tracker/66435097421_Sathveena.A Resume..docx', NULL, '3', '2022-06-14', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is ok, have exp in recruitment for 9 months. Currently working and looking for salary growth, Min exp is 23K and not comfortable to work less than.', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-13 04:40:25', 85, '2022-06-14 10:08:57', 0, NULL, 1),
(9014, 'Santhanakrishnan S', '11', '6379452154', '8883521232', 'sankrishsmileonce@gmail.com', '2000-08-17', 21, '2', '2', 'Shanmugam K', 'Agriculture farming', 200000.00, 2, 0.00, 18000.00, 'Neyveli', 'Chennai', '2206130012', '1', '1', 'upload_files/candidate_tracker/71625065445_SAN KRISH _AWSDevOps.pdf', NULL, '2', '2022-06-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok, candidate looking for IT recruitment, also not comfortable with TxxampC being a fresher, he is also clear with the thoughts that will look for other opportunities in a short span.will not sustain and not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-13 05:16:19', 85, '2022-06-14 10:12:12', 0, NULL, 1),
(9015, 'Seenivasan', '4', '9514581020', '9994889538', 'SEenuvas810prime@gmail.com', '2000-10-08', 21, '1', '2', 'Shanmugam', 'Warp Reading', 10000.00, 2, 0.00, 15000.00, 'Salem', 'Kodambakkam', '2206130013', '', '1', 'upload_files/candidate_tracker/56638088923_Resume.pdf', NULL, '1', '2022-06-14', 0, '00001', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,seems slow 5050 profile,need to open a lot kindly check and let me know your inputs', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 05:53:20', 1, '2022-06-13 06:01:03', 0, NULL, 1),
(9016, 'indu', '4', '7305754744', '', 'shine306630@gmail.com', '1990-12-02', 31, '2', '1', 'sundarajan', 'tailor', 20000.00, 1, 0.00, 14000.00, 'chennai', 'chennai', '2206130014', '2', '1', 'upload_files/candidate_tracker/84704799541_IMG_20220611_0002.pdf', NULL, '1', '2022-06-14', 0, '', '3', '59', '2022-06-20', 144000.00, '', '2', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-13 07:52:20', 60, '2022-06-26 10:34:03', 0, NULL, 1),
(9017, 'shafeek ahamed', '4', '6381427110', '', 'shafeekhussain1811@gmail.com', '2000-11-18', 21, '2', '2', 'jahir hussain', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2206130015', '2', '1', 'upload_files/candidate_tracker/21416316628_SHAFEEK AHAMED RESUME.pdf', NULL, '1', '2022-06-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-13 07:55:45', 1, '2022-06-13 07:57:59', 0, NULL, 1),
(9018, '', '0', '9840406408', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-14 09:38:25', 0, NULL, 0, NULL, 1),
(9019, '', '0', '6369538436', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206140002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-14 09:47:27', 0, NULL, 0, NULL, 1),
(9020, 'Apitha N', '4', '6369338844', '', 'apitha2001@gmail.com', '2001-06-19', 20, '2', '2', 'Renuga', 'Business', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2206140003', '1', '1', 'upload_files/candidate_tracker/10970191053_abi resume (1).pdf', NULL, '1', '2022-06-14', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-14 10:35:14', 1, '2022-06-14 10:38:26', 0, NULL, 1),
(9021, 'Banumathi G', '3', '6381103151', '8344221422', 'gbanumathi2001@gmail.com', '2001-05-04', 21, '2', '1', 'Gunasekaran', 'Cooking contractor', 30000.00, 1, 0.00, 20000.00, 'Erode', 'Erode', '2206140004', '1', '1', 'upload_files/candidate_tracker/36016460186_G.BANUMATHI -18CSR008(1).pdf', NULL, '1', '2022-06-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-14 10:37:48', 1, '2022-06-14 10:42:28', 0, NULL, 1),
(9022, 'rajendran m', '5', '9003803740', '9042952686', 'mrahul0398@gmail.com', '2007-06-13', 15, '1', '2', 'meenakshi sundharam', 'manager', 50000.00, 1, 20000.00, 23000.00, 'keelkatalai', 'keelkatalai', '2206140005', '', '2', 'upload_files/candidate_tracker/17582125221_GoBumpr Bridge.pdf', NULL, '1', '2022-06-14', 0, 'ca111', '3', '59', '2022-06-20', 254496.00, '', '4', '2023-02-06', '1', 'Selected for B2B in PT only, Given high pay for B2B,should utilise the candidate for Sales Appointment too', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-14 11:00:35', 60, '2022-06-26 10:36:08', 0, NULL, 1),
(9023, 'mailim sarfraraz ahmed', '5', '7829850198', '', 'malimsarfaraz316@gmail.com', '1993-07-06', 28, '2', '2', 'malim nisar ahmed', 'pharmacit', 20000.00, 2, 23.00, 25.00, 'j.c nagar munireddy palya', 'j.c nagar munireddy palya', '2206140006', '24', '2', 'upload_files/candidate_tracker/33022986785_Malim', NULL, '1', '2022-06-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'discussed and shared the salary details not responding to the calls after that', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-14 11:16:30', 60, '2022-06-14 05:02:17', 0, NULL, 1),
(9024, 'Inbarasan K', '16', '9952100768', '', 'Inbamba1999@gmail.com', '1999-07-17', 22, '2', '2', 'P. Kumar', 'Labor', 15000.00, 2, 14000.00, 20000.00, 'Salem', 'Salem', '2206140007', '1', '2', 'upload_files/candidate_tracker/10745035065_Resume K.INBARASAN.pdf', NULL, '2', '2022-06-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok, no sustainability 1yr 2 companies, not in a stable position worked as HR for 6 months, Sales 7 months now appears for the backend positions, not comfortable much with TxxampC, also his expectation is high min 18K focusing on the relocation.Will not sustain and run for a long.', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-14 11:19:07', 85, '2022-06-14 11:35:05', 0, NULL, 1),
(9025, 'K. Gowtham', '31', '9942350689', '', 'gowthaman1004@gmail.com', '2007-06-14', 0, '3', '2', 'Kumar', 'Farmer', 20000.00, 1, 0.00, 10000.00, 'Erode', 'Chennai', '2206140008', '', '1', 'upload_files/candidate_tracker/7565432157_Gowtham1.pdf', NULL, '1', '2022-06-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have interest to learn,2nd round interviewed by Kaviya, Candidate no basics in Skills if he comes back after a week lets try', '2', '2', '0', '1', '1', '0', '2', '2022-06-21', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 11:25:09', 1, '2022-06-14 11:28:41', 0, NULL, 1),
(9026, 'Rawally c H', '11', '8428880801', '', 'rawallychevuri5@gmail.com', '1998-10-05', 23, '2', '2', 'David C H', 'Private employee', 300000.00, 1, 14000.00, 18000.00, 'Veppemapattu', 'Veppemapattu', '2206140009', '1', '2', 'upload_files/candidate_tracker/55943561293_Rawallychevuri Resume (1).pdf', NULL, '1', '2022-06-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too lon distance from Tiruvallur, not ready to relocate, Fresher for Recruitment, Not ok with TxxampC, Not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1011', '0', NULL, NULL, NULL, 1, '2022-06-14 03:25:19', 1, '2022-06-14 03:29:22', 0, NULL, 1),
(9027, 'Mariya Pravintha.A', '11', '6382591149', '', 'mariyapravintha27@gmail.com', '2000-02-27', 22, '2', '2', 'Hy', 'Hr', 25000.00, 1, 0.00, 1500018000.00, '119,Sagaya Nagar Padalam viz, Chengalpattu', 'Chengalpattu', '2206140010', '1', '1', 'upload_files/candidate_tracker/46811832109_Updated CV Mariya Pravintha.A.pdf', NULL, '2', '2022-06-15', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-14 04:22:16', 85, '2022-06-14 04:58:09', 0, NULL, 1),
(9028, 'Arulmurugan', '6', '9942843150', '9585358095', 'arulm0012@gmail.com', '1996-10-28', 25, '2', '2', 'Palanisamy', 'Farmer', 15000.00, 0, 0.00, 13000.00, 'Komarapalayam', 'Komarapalayam', '2206140011', '1', '1', 'upload_files/candidate_tracker/98202558147_Arul. resume.docx', NULL, '1', '2022-06-15', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'he is only interested in non voice process only.. and not suitable for our profile..', '5', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-14 04:34:16', 1, '2022-06-14 04:38:38', 0, NULL, 1),
(9029, 'S.Bhuvaneshwari', '5', '9345380996', '', 'Bhuvana.180407@gmail.com', '1989-07-11', 32, '2', '1', 'Prabhu k', 'IT', 500000.00, 1, 450000.00, 500000.00, 'Chennai', 'Chennai', '2206140012', '25', '2', 'upload_files/candidate_tracker/21881701110_Bhuvaneshwari.pdf', NULL, '1', '2022-06-14', 0, '', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Know this Candidate Not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-14 04:56:39', 60, '2022-06-14 06:11:18', 0, NULL, 1),
(9030, '', '0', '6385139146', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206140013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-14 05:15:13', 0, NULL, 0, NULL, 1),
(9031, '', '0', '6374601992', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206140014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-14 06:50:46', 0, NULL, 0, NULL, 1),
(9032, 'vignesh s', '4', '9698980469', '', 'vigneshkarthik325@gmail.com', '1999-06-13', 23, '2', '2', 'shanmgasundram', 'former', 20000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2206140015', '2', '2', 'upload_files/candidate_tracker/57068889804_VICKY 2021 RESUME.pdf', NULL, '1', '2022-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 08:50:14', 1, '2022-06-14 08:52:45', 0, NULL, 1),
(9033, 'joice p', '4', '7401047342', '', 'joicejohn92@gmail.com', '1992-08-12', 29, '2', '1', 'karthick', 'supervisor', 20000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2206140016', '2', '2', 'upload_files/candidate_tracker/46705732396_Joice. J (1).pdf', NULL, '1', '2022-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 09:01:57', 1, '2022-06-14 09:03:53', 0, NULL, 1),
(9034, 'arun kumar n', '4', '6383756419', '', 'arunaustin308@gmail.com', '2000-03-11', 22, '2', '2', 'neelakandan', 'electrician', 12000.00, 0, 15000.00, 16000.00, 'chennai', 'chennai', '2206140017', '2', '2', 'upload_files/candidate_tracker/71405092334_WhatsApp Image 2022-06-14 at 9.27.06 AM.pdf', NULL, '1', '2022-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 09:07:56', 1, '2022-06-14 09:09:56', 0, NULL, 1),
(9035, 'k. mohana', '6', '6382234763', '', 'ramcolrr@gmail.com', '1994-06-16', 28, '2', '1', 'peryasami', 'cooli', 20000.00, 0, 0.00, 12000.00, 'edappadi', 'edappadi', '2206140018', '1', '2', 'upload_files/candidate_tracker/19325780464_WhatsApp Image 2022-07-19 at 1.41.37 PM.pdf', NULL, '1', '2022-07-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustainability doubt.. 5yrs gap in last job.. married also so not suit', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-14 09:11:12', 85, '2022-07-19 02:15:51', 0, NULL, 1),
(9036, 'nivetha', '11', '7904879166', '', 'nivethaparthi007@gmail.com', '1998-10-30', 23, '2', '1', 'parthiban', 'supervisor', 19000.00, 1, 14000.00, 16000.00, 'chennai', 'chennai', '2206140019', '2', '2', 'upload_files/candidate_tracker/51154330749_NIVE PARTHI 1.docx', NULL, '1', '2022-06-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 09:13:28', 1, '2022-06-14 09:15:22', 0, NULL, 1),
(9037, 'aravind kumar', '4', '8682942779', '', 'aravindkila@gmail.com', '1999-10-09', 22, '2', '2', 'annadurai', 'catering', 20000.00, 1, 11000.00, 11000.00, 'chennai', 'chennai', '2206140020', '2', '2', 'upload_files/candidate_tracker/4471809074_Aravindkumar - Resume updated (1).pdf', NULL, '1', '2022-06-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles, Will not sustain ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 09:52:17', 1, '2022-06-14 09:54:26', 0, NULL, 1),
(9038, 'Manoj', '4', '7502706524', '', 'manojsatz@gmail.com', '1992-07-03', 29, '3', '1', 'Sathiyaseelan', 'BE cse', 25000.00, 1, 25000.00, 30000.00, 'Erode', 'Erode', '2206140021', '', '2', 'upload_files/candidate_tracker/37526340956_Manoj Resume (1)_220502_225139 (1).pdf', NULL, '2', '2022-06-15', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-14 11:37:53', 1, '2022-06-14 11:41:36', 0, NULL, 1),
(9039, 'Nazish jamal', '4', '9600495972', '7358862275', 'nazujamal333@gmail.com', '1996-12-26', 25, '2', '1', 'Thahira jamal', 'Sales', 20000.00, 1, 21000.00, 17000.00, 'Papanasam', 'Rajagiri', '2206150001', '1', '2', 'upload_files/candidate_tracker/53788140419_NAZISH JAMAL .J - 2022-1.docx', NULL, '1', '2022-06-15', 1, '', '3', '59', '2022-06-16', 168000.00, '', '3', '2022-07-13', '2', 'Selected fr Thanjavur Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Shared', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-15 10:03:51', 60, '2022-06-26 10:40:21', 0, NULL, 1),
(9040, 'SUDHEESH. A.M', '5', '9745790225', '', 'SUDHIGTS94@GMAIL.COM', '1994-06-26', 27, '2', '2', 'MURUGAN AS', 'SELF EMPLOYER', 36000.00, 0, 0.00, 15000.00, 'KOTTAKKAL POST IRINGAL', 'KOTTAKKAL POST IRINGAL', '2206150002', '1', '1', 'upload_files/candidate_tracker/67551442162_2022 new.docx', NULL, '1', '2022-06-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not ready to take calls ,not comfortable in targets,not suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-15 11:13:13', 85, '2022-06-15 11:23:39', 0, NULL, 1),
(9041, 'amrutha v', '5', '9148986953', '', 'amruthavarshi1993@gmail.com', '1993-04-12', 29, '2', '2', 'venkateshreddy', 'farmer', 50000.00, 0, 20000.00, 25000.00, 'chitradurga', 'garvebhavipalya', '2206150003', '24', '2', 'upload_files/candidate_tracker/67465798010_New Amrutharesume(2).docx', NULL, '1', '2022-06-15', 0, '', '1', '39', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-15 12:37:24', 1, '2022-06-15 01:20:10', 0, NULL, 1),
(9042, 'Naveen kumar s p', '5', '9108841626', '9108941320', 'nk8137039@gmail.com', '2003-06-13', 19, '2', '2', 'Papanna s', 'Flower business', 15000.00, 1, 0.00, 15000.00, '1st main 4th cross jakkasandra kormangla 1st block', '1st main 4th cross jakkasandra kormangla', '2206150004', '24', '1', 'upload_files/candidate_tracker/27712811948_NEW RESUME-1.docx', NULL, '1', '2022-06-15', 0, '', '5', '39', NULL, 0.00, '', '0', NULL, '1', '12th only completed he is planing eve college in future.he will not sustain', '5', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-15 12:42:17', 1, '2022-06-15 12:50:57', 0, NULL, 1),
(9043, 'Nikhil', '6', '7795291649', '9379441831', 'Nikhilnikhil79988@gmail.com', '2003-05-16', 19, '2', '2', 'Bojamma', 'House wife', 10000.00, 0, 0.00, 15000.00, '1st main 4th cross jakkasandra kormangla 1st block', '1st Main 4th Cross Jakkasandra Kormangla 1st Block', '2206150005', '24', '1', 'upload_files/candidate_tracker/26608122060_resume 15-Jun-2022 13-09-06.pdf', NULL, '1', '2022-06-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - Candidate has blocked the number and not responding the calls\n', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-15 12:58:53', 60, '2022-06-15 03:43:54', 0, NULL, 1),
(9044, '', '0', '7603668654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206150006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-15 03:06:41', 0, NULL, 0, NULL, 1),
(9045, 'Aravindhan', '11', '8489300210', '6381193199', 'aravindhanpalanivel99@gmail.com', '1999-03-19', 23, '2', '2', 'Palanivel', 'Former', 1.50, 2, 0.00, 30000.00, 'Poompuhar,Mayiladuthurai (D.t), 609105', 'Poompuhar, Mayiladuthurai (D.t), 609105', '2206150007', '1', '1', 'upload_files/candidate_tracker/27005661023_ARAVINDHAN P.pdf', NULL, '2', '2022-06-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-15 03:51:07', 1, '2022-06-15 04:18:21', 0, NULL, 1),
(9046, 'B. Ajay charan royal', '5', '6300259289', '8179999118', 'ajaycharan.hjva1998@gmail.com', '1998-09-10', 23, '1', '2', 'Harinath Raju', 'Business', 30000.00, 1, 0.00, 20000.00, 'Bangalore', 'Bangalore', '2206150008', '', '2', 'upload_files/candidate_tracker/78294743798_Ajay_Slice (1).docx', NULL, '1', '2022-06-15', 0, '377', '3', '59', '2022-06-17', 345696.00, '', '4', '2022-09-05', '2', 'Selected for Manivel Team with PF/PT', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-15 05:19:47', 60, '2022-06-16 04:02:53', 0, NULL, 1),
(9047, 'Sarathapriya C', '4', '9865978441', '', 'charu.raji24@gmail.com', '1997-12-24', 24, '2', '1', 'Chinnadurai M', 'Farmer', 3000.00, 2, 15000.00, 20000.00, 'Salem', 'Amanjikari', '2206160001', '1', '2', 'upload_files/candidate_tracker/86184812311_Sarathapriya.docx', NULL, '1', '2022-06-16', 0, '', '3', '59', '2022-06-23', 144000.00, '', '7', '1970-01-01', '2', 'Selected for Arumbakkam Elite Team in Staff Role PF/ESI/PT', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-16 08:51:43', 60, '2022-06-21 12:31:34', 0, NULL, 1),
(9048, 'raj kumar p', '4', '8220757446', '', 'rajvidyut555@gmail.com', '1997-02-26', 25, '2', '2', 'prabhakaran', 'ex army', 30000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2206160002', '2', '1', 'upload_files/candidate_tracker/17799241936_raj resume.docx', NULL, '1', '2022-06-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 09:14:57', 1, '2022-06-16 09:17:10', 0, NULL, 1),
(9049, 'Gangadharan J', '2', '7448744381', '', 'gangadharanstr@gmail.com', '1999-01-02', 23, '3', '2', 'Jeya seelan', 'Finance', 12000.00, 3, 0.00, 15000.00, 'Trichy', 'Chennai', '2206160003', '', '1', 'upload_files/candidate_tracker/79204179891_GANGADHARAN RESUME (2).pdf', NULL, '1', '2022-06-16', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have knowledge in Mern,but in dilemma for the joining,interviewed by Arun Kaviya Tamilmani Gokul', '2', '1', '0', '1', '1', '0', '2', '2022-07-01', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 10:02:39', 1, '2022-06-16 10:06:21', 0, NULL, 1),
(9050, 'Soniya', '4', '9080323301', '7550240345', 'asoniya0031@gmail.com', '2007-06-16', 0, '2', '2', 'Anand kumar', 'Welder', 12000.00, 1, 0.00, 18000.00, 'No 40 Muthu mariyamman st mgr Nagar', 'No 40 Muthu mariyamman st mgr Nagar', '2206160004', '1', '2', 'upload_files/candidate_tracker/19665888690_soniya1.pdf', NULL, '1', '2022-06-16', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok have exp in Telecalling Can give a try kindly check and let me know your inputs', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1011', '', NULL, NULL, NULL, 1, '2022-06-16 10:05:49', 85, '2022-06-16 10:28:13', 0, NULL, 1),
(9051, 'Punitha', '4', '9994574395', '', 'punitha170119@gmail.com', '1999-01-17', 23, '2', '2', 'Rengaraj', 'Farmer', 10000.00, 2, 0.00, 10000.00, '16, voc stress Nehru Nagar ,Ayyampet, Thanjavur', '16, voc stress Nehru Nagar ,Ayyampet ,Thanjavur', '2206160005', '1', '1', 'upload_files/candidate_tracker/62590750591_Punitha Resume.pdf', NULL, '1', '2022-06-16', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-16 10:12:29', 85, '2022-06-16 11:06:15', 0, NULL, 1),
(9052, 'Elanthalir', '4', '8807820110', '7339573184', 'ELANDHALIR805@gmail.com', '2000-05-08', 22, '2', '2', 'Kabilan', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Kabilan.4/622 muttu street Gunamangala budalur', 'Kabilan.4/622 Muttu Street Gunamangala', '2206160006', '1', '1', 'upload_files/candidate_tracker/49763081932_img835 (2).pdf', NULL, '1', '2022-06-16', 0, '', '3', '59', '2022-06-20', 132000.00, '', '', '2022-07-05', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-16 10:32:08', 60, '2022-06-26 10:40:08', 0, NULL, 1),
(9053, 'Swathi.R', '4', '8610963958', '9524016175', 'swathiraja458@gmail.com', '2001-06-30', 20, '1', '2', 'Raja.D', 'Tailor', 10000.00, 1, 18000.00, 20000.00, 'Chidambaram', 'Chidambaram', '2206160007', '', '2', 'upload_files/candidate_tracker/24883729909_Swathi Resume_compressed2.pdf', NULL, '1', '2022-07-05', 0, 'CA130', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 10:33:34', 1, '2022-06-16 11:03:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9054, 'Sridhar r', '4', '7904788762', '', 'Sriags2013@gmail.com', '1996-05-30', 26, '2', '2', 'Raj', 'Business', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2206160008', '2', '1', 'upload_files/candidate_tracker/24570124823_Sridhar....Resume (3)-converted.pdf', NULL, '1', '2022-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Prefers to work in non voice but no communication as we expected', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 11:29:13', 1, '2022-06-16 11:31:05', 0, NULL, 1),
(9055, 'Alice Diana', '23', '9566134424', '9092395959', 'ar.alice1610diana@gmail.con', '2007-06-16', 0, '2', '2', 'latha dwa', 'architectute', 25000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2206160009', '1', '1', 'upload_files/candidate_tracker/64402860545_Resume -Alice Diana -2022.pdf', NULL, '1', '2022-06-16', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '1', 'Candidate did not turn up after giving task\n', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-16 12:11:29', 1, '2022-06-16 12:15:03', 0, NULL, 1),
(9056, '', '0', '9566134423', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206160010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-16 12:20:07', 0, NULL, 0, NULL, 1),
(9057, 'balachandran r', '4', '8056274448', '', 'bala007.1997@gmail.com', '1997-06-22', 24, '2', '2', 'ravi', 'farmer', 15000.00, 2, 0.00, 14000.00, 'chennai', 'chennai', '2206160011', '2', '1', 'upload_files/candidate_tracker/80453726131_RESUME Balachandran.docx', NULL, '1', '2022-06-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Frequent job changes no stable with the positions,will not sustain and handle the sales pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-16 02:28:24', 1, '2022-06-16 02:39:36', 0, NULL, 1),
(9058, '', '0', '9186416816', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-17 08:34:37', 0, NULL, 0, NULL, 1),
(9059, 'Bharathi H k', '25', '8431063315', '', 'Bharathigowda60@gmail.com', '1999-12-29', 22, '1', '2', 'Shankaegowda', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Ballari', 'gp palya', '2206170002', '', '1', 'upload_files/candidate_tracker/68080083147_bharathi resuma.docx', NULL, '1', '2022-06-17', 0, '377', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested in the position\n', '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-17 09:51:18', 1, '2022-06-17 09:55:26', 0, NULL, 1),
(9060, 'Keerthika N', '22', '9176416816', '9360983675', 'keeki52000@gmail.com', '2000-11-05', 22, '2', '2', 'Malarvizhi N', 'House keeping', 35000.00, 1, 18000.00, 20000.00, 'Teynampet', 'Teynampet', '2206170003', '1', '2', 'upload_files/candidate_tracker/79881142661_Resume_@Keerthika N .pdf', NULL, '1', '2023-03-31', 6, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-17 10:17:51', 85, '2023-03-31 07:08:52', 0, NULL, 1),
(9061, 'N.keerthika', '16', '9176416818', '9176416816', 'Keeki52000@gmail.com', '2000-11-05', 21, '2', '2', 'S.nithyanadhan', 'Watchman', 20000.00, 1, 16000.00, 18000.00, 'Teynampet', 'Teynampet', '2206170004', '1', '2', 'upload_files/candidate_tracker/33290603261_20220607_122513.pdf', NULL, '1', '2022-06-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication no preferred speaking only in tamil,have exp using excel but not much strong,2nd round interviewed by herash and rejected\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-17 10:28:29', 60, '2022-06-17 03:18:01', 0, NULL, 1),
(9062, 'Vinoth.D', '4', '9659654316', '9500964190', 'Vinothdharmaraj.p@gmail.com', '1995-12-03', 26, '1', '2', 'Dharmaraj.p', 'Agriculture', 12000.00, 1, 26000.00, 16000.00, 'Thanjavur', 'Thanjavur', '2206170005', '', '2', 'upload_files/candidate_tracker/65595975428_VINOTHRESUME.pdf', NULL, '1', '2022-06-17', 10, 'CI121', '3', '59', '2022-06-20', 176844.00, '', '', '2022-06-27', '1', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-17 10:32:48', 60, '2022-06-26 10:37:59', 0, NULL, 1),
(9063, 'MOHAMMED HUSSAIN', '4', '9342258988', '', 'mohammedbabu1699@gmail.com', '1999-06-01', 23, '2', '2', 'Ibrahim', 'cooli', 10000.00, 1, 0.00, 13000.00, 'salem', 'salem', '2206170006', '1', '1', 'upload_files/candidate_tracker/46595287301_NaukriMohammedHussain0y0m.pdf', NULL, '1', '2022-06-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Rejected.. sustainability doubt so we reject also Interviewed Ramesh sir ', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-17 11:27:31', 85, '2022-06-17 05:34:46', 0, NULL, 1),
(9064, 'thangaponnu p', '6', '9384522112', '', 'goldriyaa.23@gmail.com', '1995-04-08', 27, '2', '2', 'palanisamy', 'coolie', 15000.00, 0, 0.00, 13000.00, 'seerappalli', 'seerappalli', '2206170007', '1', '2', 'upload_files/candidate_tracker/45416193729_Thangaponnu resume.pdf', NULL, '1', '2022-06-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate 2hrs travel time.. so she will be discuss with family and update so we rejected..', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-17 12:53:14', 60, '2022-06-17 05:33:52', 0, NULL, 1),
(9065, 'g.ramya', '6', '6379659401', '9597772361', 'madhan6101996@gmail.com', '1998-06-24', 23, '1', '1', 'm.madhanraj', 'driver', 18000.00, 0, 13000.00, 15000.00, 'odapalli', 'odapalli', '2206170008', '', '2', 'upload_files/candidate_tracker/93598714686_vfnw7-r1n8k.pdf', NULL, '1', '2022-06-17', 0, '1310', '3', '59', '2022-06-20', 156000.00, '', '', '2022-06-22', '2', 'Selected for Erode - Suthagar Team Consultant Role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-17 01:39:43', 60, '2022-06-18 03:53:20', 0, NULL, 1),
(9066, 'Likhith Gowda D P', '5', '7760723925', '9738643525', 'devillikith@gmail.com', '2004-07-19', 17, '2', '2', 'Parents', 'Job', 45000.00, 1, 0.00, 20000.00, 'Dalimba sathanur Kanakapura ramanagar', 'Yalechenahalli , 2nd main road Krishna devraya', '2206170009', '24', '1', 'upload_files/candidate_tracker/53114141054_16554591266523544564987715832062.pdf', NULL, '1', '2022-06-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-17 03:03:47', 1, '2022-06-17 03:16:09', 0, NULL, 1),
(9067, '', '0', '9884890304', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206170010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-17 03:38:44', 0, NULL, 0, NULL, 1),
(9068, 'Gokul S', '6', '7539909536', '', 'gokulsubramani75@gmail.com', '2001-04-01', 21, '4', '2', 'Subramani R', 'Building contractor', 15000.00, 1, 0.00, 15000.00, '5/291 punnam(po) bhavani (tk), erode -638312', '5/291 Punnam(Po) Bhavani (Tk), Erode -638312', '2206180001', '', '1', 'upload_files/candidate_tracker/63177431905_Gokul S - Resume.pdf', NULL, '1', '2022-06-18', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate Observations skills is low.... Ramesh sir also Interviewed ', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-18 10:08:55', 60, '2022-06-18 03:36:48', 0, NULL, 1),
(9069, 'P.kirthiga', '6', '9894416078', '', 'Kirthigapandi@gmail.com', '2001-10-08', 20, '4', '1', 'M.sabayanathan', 'Supervisor appolo hospital', 20000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai thousend light', '2206180002', '', '1', 'upload_files/candidate_tracker/57090764787_DocScanner Apr 29, 2022 5-27 PM.pdf', NULL, '1', '2022-06-18', 0, '', '5', '88', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for role', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-18 10:38:41', 1, '2022-06-18 10:47:52', 0, NULL, 1),
(9070, 'aksaya keerthi', '6', '6385247654', '', 'akshaikeerthi2@gmail.com', '2000-08-20', 21, '2', '2', 'subramaniyan', 'business', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2206180003', '2', '1', 'upload_files/candidate_tracker/87598204968_null.pdf', NULL, '1', '2022-06-18', 0, '', '3', '59', '2022-06-24', 185000.00, '', '3', '2022-06-27', '2', 'Selected for Syed Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-18 10:50:30', 60, '2022-06-21 05:18:21', 0, NULL, 1),
(9071, 'SNEKA.R', '4', '7397537534', '', 'Www.rsneka74@gmail.com', '2002-07-25', 19, '2', '2', 'Rengasubu', 'Farmer', 10.00, 3, 0.00, 10000.00, 'Trichy', 'Trichy', '2206180004', '1', '1', 'upload_files/candidate_tracker/25269648701_sneha resume.docx', NULL, '1', '2022-06-18', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-18 11:14:50', 85, '2022-06-18 11:38:11', 0, NULL, 1),
(9072, 'Chithra.s', '4', '7305554836', '9840430248', 'ppragathi487@gmail.com', '1998-05-19', 24, '2', '2', 'Srinivasan', 'Security', 40000.00, 2, 15000.00, 15000.00, 'Royapuram', 'Royapuram', '2206180005', '1', '2', 'upload_files/candidate_tracker/70630426408_S.Chitra resume 2.doc', NULL, '1', '2022-06-18', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not comfort with timings have exp in telecalling but particularly looking for Timings also not ready to handle the pressure Target', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-18 11:41:40', 1, '2022-06-18 11:50:34', 0, NULL, 1),
(9073, 'tamil selvi', '6', '6379362749', '6381735379', 'Tamilselvi.m3792@gmail.com', '2001-07-27', 20, '2', '2', 'P.muthu raj', 'Labour', 84000.00, 1, 0.00, 12000.00, 'Perumal malai', 'Bhavani', '2206180006', '1', '1', 'upload_files/candidate_tracker/8858005177_CamScanner 06-18-2022 13.28.pdf', NULL, '1', '2022-06-18', 0, '', '3', '59', '2022-06-20', 144000.00, '', '3', '2022-06-22', '2', 'Selected fr consultant Role - Suthagar Team', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-18 01:01:02', 60, '2022-06-26 10:41:17', 0, NULL, 1),
(9074, 'Priyanka.R', '6', '6383998678', '8675226882', 'priyankabcompa24@gmail.com', '2000-04-14', 22, '2', '2', 'Ravichandran.R', 'Cooli', 80000.00, 1, 0.00, 12000.00, 'Sivagiri', 'Sivagiri', '2206180007', '1', '1', 'upload_files/candidate_tracker/38785292770_Resume.docx', NULL, '1', '2022-06-18', 0, '', '3', '59', '2022-06-20', 144000.00, '', '3', '2022-07-29', '2', 'Selected Fr Consultant Role - Suthagar Team', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-18 01:12:29', 60, '2022-06-26 10:40:53', 0, NULL, 1),
(9075, 'PRIYANKA S.', '3', '9566658835', '6382828689', 'priyankasivakumar3698@gmail.com', '1998-06-03', 24, '2', '2', 'SIVAKUMAR', 'Business', 20000.00, 1, 0.00, 200000.00, 'Tirupur', 'T. Nagar, Chennai', '2206180008', '1', '1', 'upload_files/candidate_tracker/85068315939_PRIYANKA S .pdf', NULL, '1', '2022-06-18', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Applied for REactNative,we checked for Flutter Long run doubts she is comfortable for 1.5 yrs post that may get marry and move on,if she come back with TxxampC let us try', '2', '1', '0', '1', '1', '0', '2', '2022-06-24', '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-18 01:38:20', 1, '2022-06-18 02:08:08', 0, NULL, 1),
(9076, 'Soumya', '5', '6383513885', '', 'soumyakalanjoor@gmail.com', '1988-12-18', 33, '2', '1', 'Praveen Jacob', 'Salaried', 48000.00, 2, 0.00, 450000.00, 'Chennai', 'Chennai', '2206180009', '25', '2', 'upload_files/candidate_tracker/39718177614_Soumya resume updated .pdf', NULL, '1', '2022-06-20', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected For Mani team. need one Month time for Notice. Current CTC is 4L. Negotiate and do the needful', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-18 02:33:50', 60, '2022-06-20 03:39:10', 0, NULL, 1),
(9077, 'Treasa Rose B', '6', '9361614047', '', 'Treasababu237@gmail.com', '1999-08-22', 22, '1', '2', 'Babu - Sheeba', 'Textiles', 65000.00, 1, 10000.00, 15000.00, 'Erode', 'Erode', '2206200001', '', '2', 'upload_files/candidate_tracker/73749594648_Treasa Rose Resume.docx', NULL, '1', '2022-06-21', 0, 'P1303', '3', '59', '2022-06-22', 156000.00, '', '4', '2022-11-01', '2', 'Selected for RE Suthagar Erode - Consultant Role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-20 10:08:42', 60, '2022-06-26 10:37:35', 0, NULL, 1),
(9078, 'S.amudha', '8', '8939235225', '7092444429', 's.amudha1998@gmail.com', '1998-09-10', 23, '2', '1', 'Jagan', 'Network engineer', 25000.00, 1, 12000.00, 16000.00, 'Triplicane', 'Triplicane', '2206200002', '1', '2', 'upload_files/candidate_tracker/85580948715_Amudha Resume,New-2022.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communicatino Average from cAMS,repeated work much into nonvoice only,not suitable', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-20 11:05:13', 85, '2022-06-20 11:54:25', 0, NULL, 1),
(9079, 'Pandi priya', '4', '7695880936', '', 'pandipriiya635@gmail.com', '2000-03-10', 22, '2', '2', 'Balakrishanan', 'Late', 10000.00, 1, 0.00, 13000.00, 'Thirumulaivaiyl', 'Thirumulaivaiyl', '2206200003', '1', '1', 'upload_files/candidate_tracker/43614649699_Pandi Priya Resume (2).pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no communication need to open a lot will not sustain not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-20 11:32:42', 1, '2022-06-20 11:58:33', 0, NULL, 1),
(9080, 'Janu M. S', '16', '9080649628', '9566183378', 'janums99@gmail.com', '1999-11-14', 22, '2', '2', 'M. G. Suresh', 'Painter', 15000.00, 1, 0.00, 15000.00, 'No. 1,main street P. P. Garden Aminjikarai', 'No. 1,Main Street P. P. Garden Aminjikarai', '2206200004', '1', '1', 'upload_files/candidate_tracker/83888036493_Janu m.s resume 4.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton Ok,Fresher for MIS,Need to train a lot not comfort in TxxampC checked her written skill also not upto the mark as we expected', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-20 11:46:23', 85, '2022-06-20 11:54:43', 0, NULL, 1),
(9081, 'M.revathy', '4', '9790921665', '', 'Revathyragavan1994@gmail.com', '1994-11-03', 27, '2', '1', 'R.manivannan', 'Bike mechanic', 10000.00, 1, 10000.00, 15000.00, 'Poonamalli', 'Poonamalli', '2206200005', '1', '2', 'upload_files/candidate_tracker/80422853124_Adobe Scan Apr 26, 2022.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped- too long distance, also she is prefers to work close to poonamalle.Not ready to join', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-20 11:49:45', 85, '2022-06-20 02:39:09', 0, NULL, 1),
(9082, '', '0', '6374005258', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206200006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-20 11:57:56', 0, NULL, 0, NULL, 1),
(9083, 'Vinodhini', '23', '7092828593', '9382110571', 'Vinovinodhini0515@gmail.com', '2001-05-15', 21, '2', '2', 'Venkatesh', 'Cine field', 20000.00, 1, 0.00, 20000.00, 'Chennai, Ashok nagar', 'Chennai, Ashok nagar', '2206200007', '1', '2', 'upload_files/candidate_tracker/44595367347_Resume Vinodhini.V.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Appeared for Telecaller process,also not clear with the profile to go,will not sustain and not suitable left without completing the round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-20 11:58:47', 85, '2022-06-20 12:24:47', 0, NULL, 1),
(9084, 'Reshma banu A', '23', '9360892447', '', 'reshmareshu1007@gmail.com', '2001-07-10', 20, '2', '2', 'Amanullah shariff', 'Tailor', 15000.00, 1, 0.00, 20000.00, 'CHENNAI TAMIL NADU', 'CHENNAI TAMIL NADU', '2206200008', '1', '1', 'upload_files/candidate_tracker/44051805701_Reshma Banu Resume.pdf', NULL, '1', '2022-06-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton ooooooook,no clear with the passion towards the job,if she comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-06-27', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-20 12:07:28', 85, '2022-06-20 12:24:34', 0, NULL, 1),
(9085, 'vignesh s', '2', '7548880026', '', 'vigneshsheakar@gmail.com', '1997-07-29', 24, '4', '2', 'sekar', 'business', 200000.00, 1, 0.00, 400000.00, 'Pondicherry', 'bangalore', '2206200009', '', '1', 'upload_files/candidate_tracker/2324703085_myresume.pdf', NULL, '1', '2022-06-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Knowledge in MERN,Spent around 47K and doing course not comfortable in TxxampC,Need some time to confirm his position,if he comes back let us see\n', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-20 12:13:36', 1, '2022-06-20 12:31:16', 0, NULL, 1),
(9086, 'Bharath p', '4', '9788974178', '', 'bharathdme1997@gmail.com', '1997-08-15', 24, '2', '2', 'Palanivel M', 'Former', 15000.00, 1, 0.00, 15000.00, 'Ulundurpet', 'Velachery', '2206200010', '1', '1', 'upload_files/candidate_tracker/84350751278_Bharath resume new 1.pdf', NULL, '3', '2022-06-21', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-20 04:32:46', 85, '2022-06-21 10:08:47', 0, NULL, 1),
(9087, 'Yamini', '4', '6383445245', '', 'Yaminiramya30@gmail.Com', '1999-05-30', 23, '2', '1', 'Nivas', 'Associate', 25000.00, 1, 210000.00, 360000.00, 'Veppampattu', 'Veppampattu', '2206200011', '1', '2', 'upload_files/candidate_tracker/77870094009_Yamini_Resume.pdf', NULL, '1', '2022-06-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-20 05:37:50', 85, '2022-06-28 06:07:58', 0, NULL, 1),
(9088, 'Lokesh G', '13', '7358723749', '7358823749', 'lokeshkrish432@gmail.com', '1999-09-01', 22, '2', '2', 'T Gopalakrishnan', 'Tinkering', 150000.00, 1, 0.00, 15000.00, '3/1 csi church Street jaya nagar porur chennai', '3/1 csi church Street jaya nagar porur chennai', '2206200012', '1', '1', 'upload_files/candidate_tracker/49861108301_Lokesh Resume-1.pdf', NULL, '1', '2022-06-21', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate have basic knowledge in HTML,CSS,JS,Can give a try ok with TxxampC,but not sure.2nd Round interviewed by Dinesh', '2', '1', '', '1', '1', '', '2', '2022-06-28', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-06-20 07:19:45', 60, '2022-06-21 09:51:19', 0, NULL, 1),
(9089, 'Tharun', '4', '9940899626', '8098895007', 'tharuntharun007420@gmail.com', '2001-09-04', 20, '2', '2', 'Sundaramoorthi', 'Farmer', 40000.00, 2, 0.00, 15000.00, 'KARUMBAKKAM VILLAGE SEETANANCHER', 'KARUMBAKKAM VILLAGE SEETANANCHER', '2206210001', '1', '1', 'upload_files/candidate_tracker/53959244774_resume .pdf', NULL, '1', '2022-07-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-21 10:17:56', 85, '2022-07-01 03:20:29', 0, NULL, 1),
(9090, 'samuel', '4', '9789001927', '', 'samuvel782@gmail.com', '1996-08-22', 25, '2', '2', 'gnanaraj p', 'traders', 18000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2206210002', '2', '1', 'upload_files/candidate_tracker/47453261065_samuvel.docx', NULL, '1', '2022-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-21 10:38:47', 1, '2022-06-21 10:42:21', 0, NULL, 1),
(9091, 'goutham', '4', '9710944794', '', 'gouthamr213@gmail.com', '1996-09-09', 25, '2', '2', 'VENKATESAN', 'ironing', 15000.00, 1, 0.00, 150000.00, 'thiruvekadu', 'Thiruvekadu', '2206210003', '1', '1', 'upload_files/candidate_tracker/87113640871_goutham (1).docx', NULL, '1', '2022-06-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-21 10:59:47', 1, '2022-06-21 01:07:46', 0, NULL, 1),
(9092, 'A JEYANTHAN', '6', '7867078332', '', 'jeyanarullatha1801@gmail.com', '1998-12-18', 23, '1', '2', 'ARULANANDU', 'Teacher', 80000.00, 1, 12000.00, 15500.00, 'Mimisal, Pudukkottai', 'Saidapet', '2206210004', '', '2', 'upload_files/candidate_tracker/68604894642_JEYANTHAN. A.pdf', NULL, '1', '2022-06-21', 0, 'P1255', '3', '59', '2022-06-27', 192000.00, '', NULL, '2023-09-14', '1', 'Selected for Babu Team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-21 11:12:13', 60, '2022-06-25 09:56:20', 0, NULL, 1),
(9093, 'Muthuraman M', '4', '7200228954', '7904524177', 'dhonikingraman@gmail.com', '1995-04-18', 0, '2', '2', 'Valli ammal m', 'Cooli', 6000.00, 2, 0.00, 15000.00, '216,north Street, keela thonithurai, nellai627351.', 'Tirunelveli', '2206210005', '1', '1', 'upload_files/candidate_tracker/58458862500_M. Muthuraman.pdf', NULL, '3', '2022-06-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-21 02:57:07', 85, '2022-06-22 09:57:26', 0, NULL, 1),
(9094, 'M BHOOPATHI', '5', '9182863253', '9092807216', 'boopathy1803@gmail.com', '1995-03-18', 27, '2', '2', 'M SHANTHI', 'SALARIED', 60000.00, 2, 19600.00, 26000.00, '22/249, vathawada street, puttur', '5/15,anna street, korattur chennai 600080', '2206210006', '1', '2', 'upload_files/candidate_tracker/57747412286_MBHOOPATHI_2325362_OfferLetter_07PMB-2022-01-19-11-45-17-610.pdf', NULL, '1', '2022-06-24', 45, '', '3', '59', '2022-08-01', 321696.00, '', '5', '1970-01-01', '1', 'Selected for GK Sir Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-21 05:13:52', 60, '2022-06-30 12:14:26', 0, NULL, 1),
(9095, 'V vijay', '6', '9790563697', '8754946710', 'vijayatwork97@gmail.com', '1997-02-10', 25, '2', '2', 'T vinayagam', 'Former', 12000.00, 0, 14000.00, 15000.00, 'Chengalpattu', 'Mugapair', '2206210007', '1', '2', 'upload_files/candidate_tracker/83392931126_vijay resume.doc', NULL, '1', '2022-06-22', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Seems not much suits for the Role,5050 profile can give a try and analyse in 7 days', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-21 06:42:20', 60, '2022-06-22 07:28:15', 0, NULL, 1),
(9096, 'muniselvi g', '4', '9080179772', '', 'muniselvi0120@gmail.com', '2000-01-26', 22, '2', '2', 'ganesan', 'farmer', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2206220001', '2', '1', 'upload_files/candidate_tracker/65007228657_muniselvi.pdf', NULL, '1', '2022-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 08:29:29', 1, '2022-06-22 08:33:15', 0, NULL, 1),
(9097, 'lokesh kumar a', '4', '8778695659', '', 'lokeshkumarmaramuthan@gmail.com', '2002-02-18', 20, '2', '2', 'amuthan', 'farmer', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2206220002', '2', '1', 'upload_files/candidate_tracker/45940629175_lokesh.pdf', NULL, '1', '2022-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 08:36:24', 1, '2022-06-22 08:38:27', 0, NULL, 1),
(9098, 'Amulya prakash', '5', '9108017853', '7795556338', 'Amulyaprakash03@gmail.com', '1998-04-22', 24, '1', '2', 'Mariyamma', 'Housewife', 30000.00, 2, 16000.00, 18000.00, 'Kalenagaragara', 'Kalenagaragara', '2206220003', '', '2', 'upload_files/candidate_tracker/16410912898_IMG_20220622_100536.pdf', NULL, '1', '2022-06-22', 0, '55583', '3', '59', '2022-06-23', 216000.00, '', '2', '1970-01-01', '2', 'Selected for Muppudathy Team in consultant Role', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-22 09:56:40', 60, '2022-06-26 10:35:46', 0, NULL, 1),
(9099, 'Saranya', '28', '9361458586', '9659369054', 'Saranyasaranya788com7884@gmail.com', '1998-10-05', 23, '3', '2', 'Saravanan', 'Mechanical', 1.00, 2, 20000.00, 25000.00, 'Pudukkottai', 'Pudukkottai', '2206220004', '', '2', 'upload_files/candidate_tracker/72088928963_saranya new resume.pdf', NULL, '1', '2022-06-22', 8, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Syed abthali Reference,Not much interested to take Calls looking for non Voice no communication not suitable and will not sustain', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 11:29:22', 1, '2022-06-22 12:13:16', 0, NULL, 1),
(9100, 'nithya', '4', '8838934558', '', 'nithyasampath1997@gmail.com', '1997-07-16', 24, '3', '2', 'sampath', 'coole', 8000.00, 1, 13000.00, 15000.00, 'erode', 'erode', '2206220005', '', '2', 'upload_files/candidate_tracker/73718083117_nithya (1).pdf', NULL, '1', '2022-06-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 12:08:06', 1, '2022-06-22 12:22:43', 0, NULL, 1),
(9101, '', '0', '9791668384', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206220006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-22 12:47:50', 0, NULL, 0, NULL, 1),
(9102, 'Vetri vel', '13', '9025375179', '', 'Vetri2941@gmail.com', '2001-01-02', 21, '2', '2', 'Paunraj', 'Government employee', 28000.00, 2, 0.00, 15000.00, 'Kovilpatti', 'Kaarapakkam', '2206220007', '1', '1', 'upload_files/candidate_tracker/33685372304__Template_CoverLetter_1655644781680.pdf', NULL, '1', '2022-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have knowledge in IT skills,Rejected in the 2nd rount by LAtha not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-06-22 12:57:55', 1, '2022-06-22 01:15:17', 0, NULL, 1),
(9103, 'Madhuri GK', '11', '8056216082', '9344043806', 'Madhukrishnamoorthy05@gmail.com', '2000-07-05', 21, '2', '2', 'Krishna Moorthy', 'Photographer', 80000.00, 2, 14500.00, 16000.00, 'Triplicane', 'Triplicane', '2206220008', '1', '2', 'upload_files/candidate_tracker/23626226198_MADHU RESUME.docx', NULL, '1', '2022-06-22', 1, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', '2nd round selected by Gokul Can give her 12K TH candidate yet to give her confirmation', '6', '1', '0', '1', '1', '0', '2', '2022-06-24', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-22 01:29:20', 1, '2022-06-22 01:43:16', 0, NULL, 1),
(9104, 'Achamma k', '11', '7358581039', '9791061645', 'Achammak99@gmail.com', '1999-01-08', 23, '2', '2', 'Dhanraj', 'Sanitary worker', 35000.00, 1, 14500.00, 16000.00, 'Triplicane', 'Triplicane', '2206220009', '1', '2', 'upload_files/candidate_tracker/65436557736_achu resume.docx.pdf', NULL, '1', '2022-06-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Recruitment,Salary Exp is high,Will ot sustain and not comffort in TxxampC', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-22 01:29:44', 1, '2022-06-22 01:34:36', 0, NULL, 1),
(9105, 'G jayantg', '25', '9390572346', '', 'Jayanthgarla@gmail.com', '1999-01-01', 23, '1', '2', 'G venkata krishnaiah', 'Finanace', 30000.00, 1, 18500.00, 20000.00, 'Banglore', 'Banglore', '2206220010', '', '2', 'upload_files/candidate_tracker/79107082296_jayanth.pdf', NULL, '1', '2022-06-22', 0, '377', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 02:15:33', 1, '2022-06-22 02:24:53', 0, NULL, 1),
(9106, 'Chandru M', '22', '9952959705', '', 'chandru20017@gmail.com', '2001-06-16', 21, '2', '2', 'Vijaya M', 'Self Employed', 30000.00, 1, 27500.00, 27500.00, 'Chennai', 'Chennai', '2206220011', '1', '2', 'upload_files/candidate_tracker/19419901218_Chandru.pdf', NULL, '1', '2022-06-22', 60, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Digital,have 6 months in sms campaign current 27.5K,expected too high and rejected in the 2nd round by Reyaz', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-06-22 02:19:44', 60, '2022-06-22 04:48:08', 0, NULL, 1),
(9107, '', '0', '8142176166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206220012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-22 02:37:53', 0, NULL, 0, NULL, 1),
(9108, 'Amarnath A', '6', '8940041160', '6374490800', 'amarnatharumugam68@gmail.com', '2007-06-22', 0, '2', '2', 'Arumugam', 'Ex crpf', 180000.00, 1, 10000.00, 180000.00, 'dharmapuri', 'dharmapuri', '2206220013', '1', '2', 'upload_files/candidate_tracker/38342566795_AMARNATH RESUME.pdf', NULL, '2', '2022-06-23', 5, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-22 02:56:53', 85, '2022-06-22 03:07:36', 0, NULL, 1),
(9109, 'Vaishnavi', '4', '9940161433', '', 'vaishusubramani1704@gmail.com', '2007-06-22', 0, '3', '2', 'Subramanian', 'Lorry driver', 40000.00, 1, 20000.00, 35000.00, 'redhills chennai 52', 'Redhills', '2206220014', '', '2', 'upload_files/candidate_tracker/12987771451_Vaishnavi resume.doc', NULL, '1', '2022-06-25', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-22 04:12:45', 1, '2022-06-22 04:15:58', 0, NULL, 1),
(9110, '', '0', '9025949227', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206220015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-22 04:29:44', 0, NULL, 0, NULL, 1),
(9111, 'aatiqa khatoon', '5', '7095615092', '', 'aatiquakhan28@gmail.com', '2000-07-18', 21, '3', '2', 'shaheen sultana', 'job', 15000.00, 2, 0.00, 20000.00, 'murad nagar Mehdipatnam', 'murad nagar mehdipatnam', '2206220016', '', '1', 'upload_files/candidate_tracker/15657209890_New resume 2022 (updated).docx', NULL, '1', '2022-06-22', 0, '', '1', '91', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '3', '4', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-22 07:20:39', 60, '2022-06-28 01:23:15', 0, NULL, 1),
(9112, 'subhash raj m', '5', '9962676629', '9884111056', 'subhashraj2000@gmail.com', '2000-10-14', 21, '2', '2', 'kalai selvi', 'Computer typist', 40.00, 1, 25000.00, 30000.00, 'mahalakshmi flats west kodambakkam road', 'west mambalam chennai', '2206220017', '1', '2', 'upload_files/candidate_tracker/52941227564_Subhash Raj M, Resume.pdf', NULL, '1', '2022-06-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile have sales exp but not an insurance one,Pressure and Target handling doubts,can check for RM Profile do check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '2022-06-25', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-22 09:32:29', 85, '2022-06-24 09:45:08', 0, NULL, 1),
(9113, 'Nancy', '16', '9841982458', '7824026242', 'Jnancy305@gmail.com', '1999-05-30', 23, '2', '2', 'Jeevaraj', 'Business', 10000.00, 1, 10000.00, 15000.00, 'Chennai', 'Porur', '2206230001', '1', '2', 'upload_files/candidate_tracker/9966184936_Nancy_Resume-1.docx', NULL, '1', '2022-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to take calls,communicaiton Average,not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-23 11:14:45', 85, '2022-06-24 09:46:43', 0, NULL, 1),
(9114, 'N.NIVETHA', '16', '9841765619', '9345853595', 'nivetha.nandhagopal@gmail.com', '1996-04-04', 26, '2', '2', 'Nandhagopal.p', 'self employ', 30000.00, 2, 18000.00, 25000.00, 'chennai', 'chennai', '2206230002', '1', '2', 'upload_files/candidate_tracker/84734172275_Resume_Nivetha N_Support executive-1.pdf', NULL, '1', '2022-06-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Backend,but not much strong in excel as we expected,writting skills is not upto the mark,long run doubts,not ready to take calls', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-23 11:43:38', 85, '2022-06-24 09:45:56', 0, NULL, 1),
(9115, '', '0', '7339390503', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206230003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-23 01:51:44', 0, NULL, 0, NULL, 1),
(9116, 'Arfath ulla khan', '5', '9611762542', '7795261710', 'Arfathkhan023@gmail.com', '2007-06-22', 0, '1', '2', 'Sulaiman khan', 'Scarp marchent', 20000.00, 2, 0.00, 30000.00, 'Virat nagar', 'Virat nagar', '2206230004', '', '2', 'upload_files/candidate_tracker/98968633616_Shan_CV_converted_by_abcdpdf.pdf', NULL, '1', '2022-06-23', 0, '377', '1', '39', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-23 02:12:09', 60, '2022-06-23 03:41:57', 0, NULL, 1),
(9117, 'Thirumalai.v', '6', '8667070719', '8610282109', 'Thirumalaimthiru183@gmail.com', '1998-12-16', 23, '2', '2', 'Amaravathy', 'Salaried', 60000.00, 0, 19500.00, 25000.00, 'Tiruvallur', 'Tiruvallur', '2206240001', '1', '2', 'upload_files/candidate_tracker/67929413026_thirumalai 21.06.2022.pdf', NULL, '1', '2022-06-24', 45, '', '3', '59', '2022-08-01', 309696.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 09:13:44', 60, '2022-06-30 12:14:03', 0, NULL, 1),
(9118, 'Raghul', '5', '6382495981', '9940339904', 'raghulraghul0270p@gmail.com', '2000-12-20', 21, '2', '2', 'shanthakumar .L', 'Weeding mangaer', 20000.00, 1, 16500.00, 20000.00, 'Karaikudi', 'Chennai', '2206240002', '1', '2', 'upload_files/candidate_tracker/36591118255_Raghul Resume ICICI Chennai.docx', NULL, '1', '2022-06-24', 15, '', '5', '51', NULL, 0.00, '', '0', NULL, '1', 'not ok', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-24 09:53:30', 1, '2022-06-24 09:59:26', 0, NULL, 1),
(9119, 'Karishma', '26', '7305711933', '6382495981', 'KarishmakarishmaT036@gmail.com', '2000-05-25', 22, '2', '2', 'Thiruchendhuran .c', 'Sales Man', 15000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2206240003', '1', '2', 'upload_files/candidate_tracker/22169369931_Karishma Resume (1).docx', NULL, '1', '2022-06-24', 11, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '8 months 2 companies no communication,confidence level poor,looking much on the distance,will not sustain', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-24 10:02:57', 1, '2022-06-24 10:10:10', 0, NULL, 1),
(9120, 'pavatharani', '6', '9597291806', '9025949227', 'ppava490@gmail.com', '2000-06-18', 22, '2', '2', 'murugavel', 'maze on', 10000.00, 1, 0.00, 12000.00, 'villupuram', 'Villupuram', '2206240004', '1', '1', 'upload_files/candidate_tracker/55761592729_PAVATHARANIRESUME.pdf', NULL, '2', '2022-06-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-24 10:03:08', 85, '2022-06-24 10:42:29', 0, NULL, 1),
(9121, 'ANUPAMA.B.SURESH', '20', '6369764654', '', 'sanupamasuresh@gmail.com', '2000-09-08', 21, '2', '2', 'Suresh', 'Hotel management', 18000.00, 1, 0.00, 15000.00, 'Anna nagar Chennai 101', 'Anna nagar Chennai 101', '2206240005', '1', '1', 'upload_files/candidate_tracker/46767003990_ANUPAMA_RESUME.pdf', NULL, '1', '2022-07-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 10:51:07', 85, '2022-07-18 09:58:55', 0, NULL, 1),
(9122, 'arul raja', '6', '7868063896', '', 'ARUL060595@GMAIL.COM', '1995-05-06', 27, '2', '2', 'SUSAI MANICKAM', 'coolie', 25000.00, 0, 210000.00, 20000.00, 'madurai', 'madurai', '2206240006', '1', '2', 'upload_files/candidate_tracker/19334876503_Arul Resume (1).docx', NULL, '2', '2022-06-24', 0, '', '4', '44', NULL, 0.00, '', '0', NULL, '1', 'Communication ok have exp in sales, but need to check with his sustainability, Salary exp is high but can give a try for RM profile.I have scheduled him for the 2nd round virtual, will let you know once done with the interview.', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-24 11:09:50', 1, '2022-06-24 11:15:55', 0, NULL, 1),
(9123, 'Hari Sanjay', '6', '8946078096', '', 'vampirehari0000@gmail.com', '2002-03-23', 20, '2', '2', '9500515893', 'Fresher', 30000.00, 1, 0.00, 15000.00, 'North Street, devadanapatti,theni dt', 'Mangesh street,t.nagar, Chennai', '2206240007', '1', '1', 'upload_files/candidate_tracker/88973063639_CV_2022062411404123.pdf', NULL, '1', '2022-06-29', 0, '', '3', '59', '2022-07-04', 180000.00, '', '7', '1970-01-01', '2', 'Selected for Syed Team with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 11:15:28', 60, '2022-06-29 06:38:03', 0, NULL, 1),
(9124, 'Muthu raj. K', '11', '7904529475', '9486710564', 'muthuraj34297@gmail.com', '2000-06-16', 22, '2', '2', 'P. T. Kannan', 'Nil', 28000.00, 2, 0.00, 16000.00, 'Neyveli', 'Neyveli', '2206240008', '1', '1', 'upload_files/candidate_tracker/84471650389_Muthu Raj k (Resume).pdf', NULL, '1', '2022-06-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication no,no ideas in the recruitment,not open with TxxampC,will not sustain for a long', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 11:44:19', 85, '2022-06-24 11:52:30', 0, NULL, 1),
(9125, 'E.Devika', '20', '9363352985', '', 'devikaelumalai17@gmail.com', '2002-10-07', 19, '1', '2', 'T.Elumalai', 'Student', 12000.00, 3, 0.00, 11000.00, '2/ 28 M, middle street,viluppuram', 'Chennai ladies hostel,irussappan street,Icehouse.', '2206240009', '', '1', 'upload_files/candidate_tracker/78891328914_devika resume (1).pdf', NULL, '1', '2022-06-24', 0, 'P1070', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to open a lot will not handle our pressure', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 11:45:26', 1, '2022-06-24 11:58:47', 0, NULL, 1),
(9126, 'V Vinoth kumar', '6', '9384327689', '9095146291', 'Vinothkumar6719@gmail.com', '1999-06-02', 23, '1', '2', 'Vijayarangan', 'Farmer', 20000.00, 2, 10000.00, 15000.00, 'Ariyalur', 'Chennai tambaram', '2206240010', '', '2', 'upload_files/candidate_tracker/24140497921_Vinoth resume.docx', NULL, '2', '2022-06-24', 30, 'P1325', '3', '59', '2022-06-27', 185000.00, '', '4', '2022-11-22', '2', 'Selected for Kannan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-24 11:50:57', 60, '2022-06-25 10:32:51', 0, NULL, 1),
(9127, 'LOGESHWARAN V', '6', '8072991247', '6383690978', 'logeshv468@gmail.com', '2002-04-15', 20, '1', '2', 'Venkatesan.p', 'Student', 90000.00, 1, 0.00, 15000.00, 'No/23, vivasaya street, pattabiram ,chennai-72', 'No/23, Vivasaya Street, pattabiram, chennai-72', '2206240011', '', '1', 'upload_files/candidate_tracker/53608468263_1176 edit.docx', NULL, '1', '2022-06-24', 0, 'P1255', '3', '59', '2022-06-27', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team,5050 Profile Sustainability Doubts a lot with PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-24 12:32:34', 60, '2022-06-25 09:56:53', 0, NULL, 1),
(9128, 'K.Gowtham', '16', '7871671835', '9345882243', 'gowthammass7871@gmail.com', '1999-11-27', 22, '2', '2', 'Kumar', 'Law', 20000.00, 1, 15000.00, 17000.00, 'Avadi', 'Kannadapalayam', '2206240012', '1', '2', 'upload_files/candidate_tracker/40797798563_1651475052718_gowtham k resume 1.doc', NULL, '1', '2022-06-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,not much comfort in TxxampC Too long Distance around 50kms up and down will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 01:04:16', 85, '2022-06-25 11:24:39', 0, NULL, 1),
(9129, 'Sangeetha j', '8', '7824049298', '9677235225', 'Sangeethaj789@gmail.com', '2001-02-26', 21, '2', '2', 'Jaishankar', 'Auto driver', 30000.00, 0, 0.00, 15000.00, '66/32 Mangapathi Street Chintadripet Chennai 2', '66/32 mangapathi street chintadripet chennai 2', '2206240013', '1', '1', 'upload_files/candidate_tracker/34274555612_sangeetha j- Resume.pdf', NULL, '1', '2022-06-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Star Health Insurance but not ready to go with same Telecalling,scheduled for Mutual Fund Coordinator,but no communication and not suitable .Internal reference - Raghu', '7', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-06-24 01:57:03', 1, '2022-06-24 02:11:52', 0, NULL, 1),
(9130, 'Thivisha.A', '4', '9094883838', '9342683831', 'Thivishaanandan812@gmail.com', '2001-08-25', 20, '2', '2', 'Anandan', 'Mechanic', 12000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2206240014', '1', '1', 'upload_files/candidate_tracker/23110092507_1655790310192Resume_Thivisha.pdf', NULL, '1', '2022-06-27', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 months Exp in Calling but not a relevant one can give a try for ESales Profile kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 04:38:20', 60, '2022-06-27 07:09:18', 0, NULL, 1),
(9131, '', '0', '6300250289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206240015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-24 05:38:28', 0, NULL, 0, NULL, 1),
(9132, 'abarna s', '13', '9940452206', '9840039033', 'shakthivels416@gmail.com', '2002-02-11', 20, '3', '2', 'sakthivel', 'business', 18000.00, 1, 0.00, 20000.00, 'erukkanchery', 'erukkancherry', '2206240016', '', '1', 'upload_files/candidate_tracker/11122402681_abarna s resume (1).pdf', NULL, '1', '2022-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 05:47:14', 1, '2022-06-24 07:20:53', 0, NULL, 1),
(9133, 'N.S.Arjun', '4', '9360843399', '9840187689', 'ajayarjun972001@gmail.com', '2001-07-09', 20, '2', '2', 'N.srinvasan', 'Business', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2206240017', '1', '1', 'upload_files/candidate_tracker/38393054493_Arjun res.doc', NULL, '3', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-24 06:23:16', 85, '2022-07-04 11:34:01', 0, NULL, 1),
(9134, 'Rekha d', '4', '9150319632', '', 'Rrekha6761@gmail.com', '2000-08-07', 21, '2', '2', 'Dhasnamurthy', 'Late', 12000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2206240018', '2', '2', 'upload_files/candidate_tracker/30554975365_CV_2022061615265228.pdf', NULL, '1', '2022-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance currently working in Kodambakkam and looking for change due to the distance only will not sustain', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 10:59:17', 1, '2022-06-24 11:01:40', 0, NULL, 1),
(9135, 'Rafikraja s', '4', '8056056510', '', 'Kuttisraja001@gmail.com', '1998-08-01', 23, '2', '2', 'Sathik s', 'No', 15000.00, 1, 12000.00, 15000.00, 'Chennai', 'Chennai', '2206240019', '2', '2', 'upload_files/candidate_tracker/8957604314_Rafik CV updated.pdf', NULL, '1', '2022-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance Currently Working In Kodambakkam And Looking For Change Due To The Distance Only Will Not Sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 11:05:11', 1, '2022-06-24 11:07:39', 0, NULL, 1),
(9136, 'Sachin Raj v', '4', '9092772612', '9952901058', 'sachinrajvallaraj@gmail.com', '2000-03-06', 22, '4', '2', 'Sr vallaraj', '10th standard', 15.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2206240020', '', '1', 'upload_files/candidate_tracker/17544174600_Sachin resume.pdf', NULL, '1', '2022-06-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-24 11:44:34', 1, '2022-06-24 11:51:06', 0, NULL, 1),
(9137, '', '0', '7550014841', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-25 08:00:49', 0, NULL, 0, NULL, 1),
(9138, '', '0', '9703997189', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206250002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-25 09:47:30', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9139, 'kowsalya', '25', '6385724682', '', 'kowsiprabhu1234@gmail.com', '1997-11-02', 24, '2', '2', 'T.A.Prabhu', 'chef', 50000.00, 2, 20000.00, 22000.00, 'thanjavur', 'thanjavur', '2206250003', '1', '2', 'upload_files/candidate_tracker/56116425069_KOWSALYA (3).docx', NULL, '2', '2022-06-25', 0, '', '4', '60', NULL, 0.00, '', '0', NULL, '2', 'schedule her for F2F in Thanjavur not suits for ESales also high CTC expectation', '8', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-25 10:14:58', 1, '2022-06-25 10:49:41', 0, NULL, 1),
(9140, 'Jayaram S', '4', '8778149871', '', 'mahijayaram036@gmail.com', '2002-04-21', 20, '2', '2', 'Rukmani S', 'Labour', 4000.00, 1, 0.00, 10000.00, 'Gobi', 'Gobi', '2206250004', '1', '1', 'upload_files/candidate_tracker/19492790669_JAYARAM resume.docx', NULL, '1', '2022-06-25', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not fit for telesales', '1', '2', '', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-25 11:02:54', 85, '2022-06-27 12:09:16', 0, NULL, 1),
(9141, 'Deepika B', '5', '7200941539', '9962744901', 'deepikalaxu@gmail.com', '2000-06-23', 22, '2', '2', 'Baskaran A', 'Ministry of defence', 50.00, 1, 0.00, 20.00, '4th Street , Jothi Nagar , Thiruvotriyur,Chennai', '4th street , Jothi Nagar , Thiruvotriyur,chennai', '2206250005', '1', '1', 'upload_files/candidate_tracker/25252439059_DEEPIKA.B CSE.pdf', NULL, '1', '2022-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,Yet to complete her graduation,Said not interested in technical but attended almost 10-15 interview in the core technical only,Not much ok with fluency communication,Sustainability doubts a lot', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-25 01:02:48', 1, '2022-06-25 01:10:57', 0, NULL, 1),
(9142, 'Iswarya', '16', '9080716419', '9841976730', 'text2ishu@gmail.com', '1999-12-27', 22, '2', '2', 'M. S purushothaman', 'Railway Worker', 50000.00, 1, 15000.00, 2000.00, '4th street jothi Nagar, thiruvottiyur, Chennai-19', '4th Street Jothi Nagar, Thiruvottiyur, Chennai-19', '2206250006', '1', '2', 'upload_files/candidate_tracker/99535712415_iswarya updatee Resumee.pdf', NULL, '1', '2022-06-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Logistics domain,need to check her writting Skills,5050 profile,ask her to come for 2nd round post lunch but didnt appear', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-25 01:04:11', 1, '2022-06-25 01:13:15', 0, NULL, 1),
(9143, 'Parthiban', '4', '8610881425', '', 'parthibansekar30399@gmail.com', '1999-03-30', 23, '2', '2', 'Dhanasekar', 'Farmer', 12000.00, 1, 0.00, 18000.00, 'Thanjavur', 'Thanjavur', '2206250007', '1', '1', 'upload_files/candidate_tracker/74275467353_resume.pdf', NULL, '1', '2022-06-27', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-25 04:24:37', 85, '2022-06-27 12:50:56', 0, NULL, 1),
(9144, 'Shalani', '4', '7904997426', '', 'Kalaimadhi8@gmail.com', '2000-04-17', 22, '2', '2', 'V. Shanmugam', 'Business', 60000.00, 0, 15.00, 20000.00, 'Chennai', 'Chennai', '2206260001', '1', '2', 'upload_files/candidate_tracker/34190509734_file_04Jun22.pdf', NULL, '1', '2022-06-30', 0, '', '3', '59', '2022-07-01', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Karthika ESales Team in Consultant Role 5%', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-26 12:16:29', 60, '2022-06-30 06:13:22', 0, NULL, 1),
(9145, '', '0', '8248956549', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206260002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-26 03:56:00', 0, NULL, 0, NULL, 1),
(9146, 'S. Ramkumar', '4', '8056644693', '9944100730', 'sramkumar881999@gmail.com', '1999-08-08', 22, '2', '2', 'M.Shanmugasundaram', 'Farmer', 17000.00, 1, 0.00, 19500.00, 'Thanjavur', 'Thanjavur', '2206260003', '1', '1', 'upload_files/candidate_tracker/67723925471_resume Ram DocScanner Apr 26, 2022 5-10 PM.pdf', NULL, '1', '2022-06-27', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-26 05:14:47', 85, '2022-06-27 12:51:13', 0, NULL, 1),
(9147, 'b. geetha', '4', '8925339792', '8428786311', 'geethabalan99@gmail.com', '1999-08-25', 22, '2', '2', 'k.balan', 'carpenter', 7000.00, 2, 9000.00, 13000.00, 'thanjavur', 'thanjavur', '2206270001', '1', '2', 'upload_files/candidate_tracker/22007845154_Geetha B - Resume.pdf', NULL, '1', '2022-06-27', 0, '', '3', '59', '2022-07-18', 138948.00, '', '', '2022-07-20', '2', 'Selected for Sithy Team in Consultant Role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-27 10:14:42', 60, '2022-07-02 10:52:28', 0, NULL, 1),
(9148, 'Jananihaa Balraj', '6', '6369463751', '9942595430', 'jananihaa1@gmail.com', '2002-07-24', 19, '1', '2', 'Balraj M', 'Tailor', 10000.00, 0, 0.00, 15000.00, 'Komarapalayam, Namakkal dt', 'Komarapalayam, Namakkal dt', '2206270002', '', '1', 'upload_files/candidate_tracker/65222740952_Career Objectives (1).pdf', NULL, '1', '2022-06-27', 0, 'P1311', '3', '59', '2022-06-29', 150000.00, '', '6', '2022-10-10', '1', 'Selected for Suthagar Team with PF/ESI/PT', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-27 10:22:41', 60, '2022-06-27 05:59:38', 0, NULL, 1),
(9149, 'Hari haran k', '6', '9786251000', '9442239110', 'hariharann.31122001@gmail.com', '2001-12-31', 20, '1', '2', 'Nirmala k', 'House wife', 10000.00, 0, 0.00, 15000.00, 'Perundurai', 'Perundurai', '2206270003', '', '1', 'upload_files/candidate_tracker/61040828546_HARI PDF.pdf', NULL, '1', '2022-06-27', 0, 'P1311', '3', '59', '2022-06-29', 180000.00, '', '3', '2022-10-15', '2', 'Selected for Suthagar Team with PF/ESI/PT Staff Role', '5', '2', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-27 10:22:55', 60, '2022-06-27 06:01:18', 0, NULL, 1),
(9150, 'Pooja. M', '4', '7299773811', '9841850974', 'hannaprincypooja@gmail.com', '2002-01-29', 20, '2', '2', 'Mani Maran', 'Pest Control Of India (PCI)', 20000.00, 1, 0.00, 18000.00, '12/A, Janaki Raman colony, Arumbakkam', '12/A, Janaki Raman colony, Arumbakkam', '2206270004', '1', '1', 'upload_files/candidate_tracker/10866561919_Pooja. M-WPS Office-4.docx', NULL, '1', '2022-06-27', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expected salary high ', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-27 10:47:38', 85, '2022-06-27 01:22:50', 0, NULL, 1),
(9151, 'Meenatchi.R', '4', '8190987074', '', 'Meenatchiraghu25071998@gmail.com', '1998-07-25', 23, '2', '2', 'Raghu.R', 'Welder', 12000.00, 1, 12500.00, 15000.00, 'Saidapet', 'Saidapet', '2206270005', '1', '2', 'upload_files/candidate_tracker/94360011279_meenatch resume N.docx', NULL, '1', '2022-06-27', 30, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 Months Exp In Calling But Not A Relevant One Can Give A Try For ESales Profile Kindly Check And Let Me Know Your Inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-27 10:59:22', 60, '2022-06-27 07:09:31', 0, NULL, 1),
(9152, 'Prasanth A R', '4', '8678921375', '', 'saiar20081998@gmail.com', '1998-08-20', 23, '2', '2', 'Raja', 'Gunny bags', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2206270006', '1', '2', 'upload_files/candidate_tracker/16432594236_AR CV 2.pdf', NULL, '1', '2022-06-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not comfort in Field Sales,Looking only for Collection Calls will not run inour profile for a long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-27 11:01:35', 85, '2022-06-27 11:41:20', 0, NULL, 1),
(9153, 'Vivek', '11', '9625951997', '7904347234', 'cm.vivek25@gmail.com', '1997-08-25', 24, '2', '2', 'Chinnu', 'GREF', 30000.00, 1, 0.00, 17000.00, 'Pudukkottai', 'Perungudi', '2206270007', '1', '1', 'upload_files/candidate_tracker/57130870269_ViveksCV.pdf', NULL, '1', '2022-06-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No,Prefers to work in non voice positions too,not suitable for Reccruiter Have a long career Gap will not sustain and handle our pressure', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-27 11:45:19', 85, '2022-06-27 12:04:31', 0, NULL, 1),
(9154, '', '0', '6374075479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-27 12:24:03', 0, NULL, 0, NULL, 1),
(9155, 'M. Vindhiya', '4', '9080674836', '', 'vincofc@gmail.com', '1998-09-13', 23, '2', '1', 'M. Mari Raja', 'Mechanical Engineer', 25000.00, 2, 0.00, 15000.00, 'Choolaimedu', 'Choolaimedu', '2206270009', '1', '1', 'upload_files/candidate_tracker/17065440693_iroxo-eqq1h.pdf', NULL, '1', '2022-06-30', 0, '', '1', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-27 02:37:03', 85, '2022-06-28 06:08:47', 0, NULL, 1),
(9156, '', '0', '8074252977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206270010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-27 05:03:54', 0, NULL, 0, NULL, 1),
(9157, 'Sangeetha MS', '5', '6379647370', '7200160858', 'Sangeethams2900@gmail.com', '2000-05-30', 22, '2', '2', 'Laitha', 'Coly', 25000.00, 2, 18000.00, 22000.00, '31A Thiyagi nadesan no. 4,ammapet, salem', '31A Thiyagi Nadesan No. 4,Ammapet, Salem', '2206280001', '1', '2', 'upload_files/candidate_tracker/61513676541_Ms.pdf', NULL, '2', '2022-06-28', 15, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-28 10:01:29', 85, '2022-06-28 10:22:47', 0, NULL, 1),
(9158, 'surya', '6', '8056464624', '', 'suryads990@gmail.com', '2000-01-30', 22, '2', '2', 'dasarathan', 'no work', 5000.00, 2, 0.00, 11000.00, 'maraimalai nagar', 'maraimalai nagar', '2206280002', '1', '1', 'upload_files/candidate_tracker/84155337233_resume_surya (2).docx', NULL, '1', '2022-06-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Fresher for Sales no basic ideas in Insurance Domain,left his previous work due to pressure will not sustain and not suitable\n', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-06-28 10:26:03', 1, '2022-06-28 11:08:04', 0, NULL, 1),
(9159, 'Diwakar. M', '6', '8524046760', '9176131236', 'Mdiwa1122@gmail.com', '2000-12-05', 21, '2', '2', 'Murugan. M', 'Chengalpattu', 5000.00, 1, 0.00, 11000.00, 'Chengalpattu', 'Chengalpattu', '2206280003', '1', '1', 'upload_files/candidate_tracker/67193682519_Diwakar CV 2.docx', NULL, '1', '2022-06-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very 5050 profile,fresher for Sales,sustainability doubts kindly check and let me know your inpputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-28 10:26:32', 60, '2022-06-28 06:54:37', 0, NULL, 1),
(9160, 'J Raviteja', '5', '6304519471', '9618266986', 'jraviteja2181@gmail.com', '2001-07-26', 20, '1', '2', 'J krishnappa', 'Mation', 15000.00, 1, 0.00, 20000.00, 'Ankuthotapalli, Akothakota, Chittor (dist)517247', 'Murageshpallya', '2206280004', '', '1', 'upload_files/candidate_tracker/48530818123_Resume(1).pdf', NULL, '1', '2022-06-28', 0, '55585', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-28 10:27:11', 1, '2022-06-28 10:39:32', 0, NULL, 1),
(9161, 'Kavali Vijaya Rani', '5', '6301723212', '9652322644', 'rani8897705710@gmail.com', '2000-08-31', 21, '1', '2', 'Reddeppa', 'Mation', 15000.00, 1, 12000.00, 14000.00, 'Punganur Chittoor district andhrapradesh', 'Murgeshpalya indranagar', '2206280005', '', '2', 'upload_files/candidate_tracker/29454512080_CV_2022060918393035.pdf', NULL, '1', '2022-06-28', 0, '55585', '3', '59', '2022-07-01', 172500.00, '', '5', '1970-01-01', '2', 'Selected for Staff Role - Muppudathy Team', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-28 10:27:19', 60, '2022-06-29 06:26:59', 0, NULL, 1),
(9162, 'J Dhakshinya', '6', '9994019317', '7339670123', 'ddhaks3@gmail.com', '2001-07-27', 20, '1', '2', 'Jothibasu', 'Mechanic', 10000.00, 1, 0.00, 10000.00, 'Vandhavasi', 'Seidapet', '2206280006', '', '1', 'upload_files/candidate_tracker/7196074583_dd.pdf', NULL, '1', '2022-06-28', 0, 'T1070', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile no relevant Exp,Sounding Good can give atry kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-28 10:32:30', 60, '2022-06-28 07:02:40', 0, NULL, 1),
(9163, 'Niyaz S A', '4', '7598818777', '9944161372', 'niyaz.tnj@gmail.com', '1991-10-22', 30, '2', '1', 'FIRDOWS PARVEEN', 'Home Wife', 80000.00, 2, 28000.00, 20000.00, 'Thanjavur', 'Thanjavur', '2206280007', '1', '2', 'upload_files/candidate_tracker/74893841943_Niyaz.S.A - CV.pdf', NULL, '1', '2022-06-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped Salary Exp is high also having attitude issue.For CRM role Exp take home 15 after PF/ESI/PT', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-28 10:53:06', 85, '2022-06-28 04:41:16', 0, NULL, 1),
(9164, 'SARAVANAN J', '4', '9042010834', '', 'Royaltysaravanan@gmail.com', '1998-04-11', 24, '2', '2', 'JAGANATHAN E', 'B.com ( General )', 15000.00, 0, 0.00, 15000.00, 'veppampattu', 'Veppampattu', '2206280008', '2', '1', 'upload_files/candidate_tracker/22092574824_Resume.pdf', NULL, '1', '2022-06-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not interested in telesales,not showing importance towards the job,will not sustain and not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-28 10:53:33', 1, '2022-06-28 10:58:58', 0, NULL, 1),
(9165, 'Nivetha Venugopal', '31', '9840480968', '7010740028', 'Immanuelnivetha05@gmail.com', '1995-03-22', 27, '2', '1', 'Immanuel Kiran prasanna R', 'Admin', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2206280009', '1', '1', 'upload_files/candidate_tracker/35581057807_Nivetha_Front-End-Developer (1).docx', NULL, '1', '2022-06-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Scheduled with the 2ndd round with kavya IT and got rejected not much strong in the basics of Javascript', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-28 11:27:15', 85, '2022-06-28 11:47:32', 0, NULL, 1),
(9166, 'Ponnarasan. P', '4', '9159709523', '9843010533', 'itzponarash@gmail.com', '2001-03-10', 21, '2', '2', 'Porchezliyan.K', 'daily wages', 7000.00, 1, 0.00, 11000.00, 'Rajaghiri', 'Rajaghiri', '2206280010', '1', '1', 'upload_files/candidate_tracker/40578759808_RESUME DOC. PONRASH.docx', NULL, '1', '2022-06-28', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-28 11:39:13', 85, '2022-06-28 01:01:09', 0, NULL, 1),
(9167, 'j mohamed arish', '4', '9698496573', '9629332350', 'shmaualdeen@gmail.com', '2000-04-15', 22, '2', '2', 'jainullabudeen', 'driver', 7000.00, 1, 0.00, 11000.00, 'thanjavur', 'thanjavur', '2206280011', '1', '1', 'upload_files/candidate_tracker/89019017574_ARISH.pdf', NULL, '1', '2022-06-28', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-28 11:39:25', 85, '2022-06-28 01:01:25', 0, NULL, 1),
(9168, 'Gowtham s', '4', '7010807976', '9790075331', 'gowthamraina40@gmail.com', '1999-01-19', 23, '2', '2', 'Sampath m', 'Building contractor', 20000.00, 3, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2206280012', '1', '1', 'upload_files/candidate_tracker/70498008460_Gowtham(1).pdf', NULL, '1', '2022-06-28', 0, '', '3', '59', '2022-07-01', 144000.00, '', '', '1970-01-01', '2', 'Selected for Thanjavur in consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-28 12:13:49', 85, '2022-06-28 12:59:11', 0, NULL, 1),
(9169, 'MOHAMED HALILUR RAHAMAN', '6', '7418825616', '', 'Mohamedhalilrahman@gmail.com', '1996-02-01', 26, '1', '2', 'Mohamed Rasbudeen', 'Agriculture', 10000.00, 1, 17000.00, 21000.00, 'Azad nagar, kodikkalplayam, Thiruvarur', 'Mkn road, Alandur, chennai', '2206280013', '', '2', 'upload_files/candidate_tracker/62479314098_1656043039287_halil word CV 2022.docx', NULL, '1', '2022-06-28', 0, 'P1065', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'Communication ok have exp in showroom Sales new to telecalling sales,5050 profile sustainability in long run doubts ,can give a try for RE check and let me know your interest\n', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-06-28 12:30:07', 1, '2022-06-28 12:37:37', 0, NULL, 1),
(9170, 'Arulselvi.R', '4', '6369447944', '8428069299', 'Arulselvithangam@gmail.com', '1998-05-13', 24, '2', '1', 'P.raman', 'Electrition', 20000.00, 0, 0.00, 15000.00, 'Mgr nagar', 'Mgr nagar', '2206280014', '1', '1', 'upload_files/candidate_tracker/17899660998_Document.pdf', NULL, '1', '2022-06-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Telesales,can give a try for Arumbakkam,candidate will come back with her confirmation,based on that willl schedule her for 2nd round in arumbakkam', '1', '1', '', '1', '1', '', '2', '2022-06-30', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-28 04:39:42', 60, '2022-06-29 11:18:32', 0, NULL, 1),
(9171, 'Rambabu', '25', '7619184191', '', 'nrambabu940@gmail.com', '1998-10-21', 23, '1', '2', 'Nagaraj', 'Carpenter', 20000.00, 1, 18000.00, 22000.00, 'Bangalore', 'Bangalore', '2206280015', '', '2', 'upload_files/candidate_tracker/57537475413_nrambabu940@gmail.com (1).docx', NULL, '1', '2022-06-28', 0, 'P1328', '3', '59', '2022-07-04', 192000.00, '', '4', '2022-08-24', '1', 'Selected for ESales Bangalore in Consultant Role', '8', '1', '', '2', '2', '', '2', '1970-01-01', '3', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-06-28 05:37:14', 60, '2022-06-29 06:40:53', 0, NULL, 1),
(9172, '', '0', '9652322644', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206280016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-28 09:35:48', 0, NULL, 0, NULL, 1),
(9173, '', '0', '9500515893', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-29 08:46:45', 0, NULL, 0, NULL, 1),
(9174, 'riyaz ahamed m', '4', '8807982984', '9500568912', 'riyazahamed6606@gmail.com', '1998-03-07', 24, '2', '1', 'mohamed ibrahim a', 'labour', 15000.00, 3, 18000.00, 15000.00, 'needamangalam', 'needamangalam', '2206290002', '1', '2', 'upload_files/candidate_tracker/49374514314_riyaz resume (1).pdf', NULL, '1', '2022-06-29', 15, '', '3', '59', '2022-07-07', 151584.00, '', '4', '2022-07-29', '1', 'Selected for Thanjavur Sithy Team in Consultant', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-29 10:40:42', 60, '2022-07-07 07:35:24', 0, NULL, 1),
(9175, 'Arunkumar', '6', '9025858299', '9003181891', 'arunsri27022@gmail.com', '1999-09-10', 22, '1', '2', 'Sekar', 'Father', 30000.00, 2, 16000.00, 15000.00, 'G4 G4 AkB Flats Dhuriraj Lane Pazhalavanthagall', 'G4 AkB Flats Dhuriraj Lane Pazhalavanthagall', '2206290003', '', '2', 'upload_files/candidate_tracker/19653118716_Resume (1).pdf', NULL, '1', '2022-06-29', 0, 'P1066', '3', '59', '2022-07-01', 192000.00, '', '5', '1970-01-01', '1', 'Selected for Thiyagu Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-29 11:20:55', 60, '2022-06-29 06:38:21', 0, NULL, 1),
(9176, 'Radhakrishna r', '32', '8807230165', '', 'Radhakrishnaaaaa05@gmail.com', '1988-02-26', 34, '1', '2', 'R.s chalageri', 'Currently seeking for job', 45.00, 2, 3.36, 4.00, 'Thiruvelangadu', 'Chennai', '2206290004', '', '2', 'upload_files/candidate_tracker/96850162878_1626260365756Resume_Radha+%281%29-converted.pdf', NULL, '1', '2022-06-29', 0, '55580', '3', '59', '2022-07-01', 350000.00, '', '4', '2023-04-17', '2', 'Selected for GK Sir Team .Gaurav Sir Commited 1.5L Business per month will lead to 20K additional', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Referral Vinodh - GK Sir Team', '', '', '', NULL, NULL, NULL, 1, '2022-06-29 11:22:08', 60, '2022-09-23 05:59:43', 0, NULL, 1),
(9177, 'Jayadurga jaganathamani', '4', '8925606900', '8940630644', 'sanjanajayadurga@gmail.com', '2001-11-24', 20, '2', '2', 'Jaganathamani', 'Farmer', 15000.00, 2, 10000.00, 12000.00, '2/5B, south street, kumaramanngalam, -612802', 'Ammapet, thanjavur (dt)', '2206290005', '1', '2', 'upload_files/candidate_tracker/68315697537_Jayadurga resume (fisheries student). pdf.pdf', NULL, '1', '2022-07-02', 0, '', '3', '59', '2022-07-25', 144000.00, '', '3', '2022-08-19', '2', 'Selected for Thanjavur in Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-29 11:57:07', 60, '2022-07-09 05:22:07', 0, NULL, 1),
(9178, '', '0', '7358449287', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206290006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-29 12:22:24', 0, NULL, 0, NULL, 1),
(9179, '', '0', '9342314517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206290007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-29 12:29:52', 0, NULL, 0, NULL, 1),
(9180, 'S. Jenifer', '4', '9150194761', '', 'jeniferjeni593@gmail.com', '2002-06-21', 20, '2', '2', 'Kala', 'House keeping', 12000.00, 0, 0.00, 15000.00, 'Y 25 pallaku manager luz Mylapor Chennai', 'Mylapor', '2206290008', '1', '1', 'upload_files/candidate_tracker/99391803143_jenniefer.pdf', NULL, '1', '2022-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not opening ,not suitable for our roles,will not handle the pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-29 01:58:49', 1, '2022-06-29 02:21:57', 0, NULL, 1),
(9181, 'Thenmozhi', '4', '6380587214', '', 'tthenujaya203@gmail.com', '2002-06-05', 20, '2', '2', 'Ravi', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Mayalapore', 'Mayalapore', '2206290009', '1', '1', 'upload_files/candidate_tracker/14887837576_THENMOZHI.pdf', NULL, '1', '2022-06-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,have a plan to go with B.Ed,need to open a lot,Being fresher pressure handling and sustainability doubt on this candidate', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-29 02:02:03', 1, '2022-06-29 02:29:37', 0, NULL, 1),
(9182, 'Kowsik M', '2', '9677717746', '9489592764', 'kowsik.mvi@gmail.com', '1995-04-04', 27, '2', '2', 'Murugan T', 'Teacher', 50000.00, 1, 0.00, 45000.00, 'Kanyakumari', 'Chennai', '2206290010', '1', '1', 'upload_files/candidate_tracker/85400254614_Kowsiknew.pdf', NULL, '1', '2022-06-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Knowledge in Mern Skills need to check with family on the TxxampC,if he comes back let us try\n', '2', '2', '', '1', '1', '', '2', '2022-06-30', '3', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-06-29 02:42:04', 60, '2022-06-29 03:53:59', 0, NULL, 1),
(9183, 'Sivalakshmi K', '4', '9361143838', '', 'sivalakshmi.kumaravel@gmail.com', '2000-06-03', 22, '2', '2', 'Kumaravel G', 'Retired', 25000.00, 1, 0.00, 20000.00, 'Panagudi', 'Panagudi', '2206290011', '1', '1', 'upload_files/candidate_tracker/93787918908_SIVALAKSHMI RESUME.pdf', NULL, '3', '2022-07-01', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok seems not much confident 5050 profile can give a try,Need to confirm again and schedule her for the another round', '1', '1', '0', '1', '1', '0', '2', '2022-07-04', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-29 07:44:49', 1, '2022-06-29 08:05:41', 0, NULL, 1),
(9184, 'Prasanth', '13', '9345828781', '', 'prasanthloganathan78@gmail.com', '2000-08-31', 21, '2', '2', 'Loganathan', 'Logistics', 500000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2206300001', '1', '1', 'upload_files/candidate_tracker/55913932415_Prasanth', NULL, '1', '2022-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic knowledge in the skills ,will not sustain in our roles for long technical reject by Latha', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 09:34:59', 60, '2022-06-30 11:54:28', 0, NULL, 1),
(9185, 'Merlin R', '6', '8940554609', '9047628032', 'merlinraju26@gmail.com', '1997-01-26', 25, '1', '2', 'Lilly Mary', 'Home maker', 20000.00, 2, 15000.00, 17000.00, 'Chennai', 'Valluvarkottam', '2206300002', '', '2', 'upload_files/candidate_tracker/72479463050_Resume (3).pdf', NULL, '1', '2022-06-30', 0, 'Ci125', '3', '59', '2022-07-01', 168000.00, '', '5', '1970-01-01', '2', 'Selected for Thiyagu Team in consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-06-30 10:28:42', 60, '2022-06-30 07:21:03', 0, NULL, 1),
(9186, 'Gopi', '5', '9345620337', '8939705207', 'Gopisparo@gmail.com', '1994-02-12', 28, '2', '2', 'Partha sarathy', '10000', 40000.00, 1, 0.00, 20000.00, 'Ayanavaram', 'Ayanavaram', '2206300003', '1', '1', 'upload_files/candidate_tracker/7766894422_Resume 2 3.docx', NULL, '1', '2022-06-30', 0, '', '3', '59', '2022-07-04', 240000.00, '', '', '1970-01-01', '1', 'Selected for Shanmuga Team with PF/ESI/PT', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-30 10:31:22', 60, '2022-06-30 04:44:09', 0, NULL, 1),
(9187, 'Nandhini', '4', '7094814810', '8838207985', 'Ezhilgovin@gmail.com', '1996-05-01', 26, '2', '1', 'Ezhil', 'Accountant', 40000.00, 1, 0.00, 10000.00, 'Tanjore', 'Tanjore', '2206300004', '1', '1', 'upload_files/candidate_tracker/82743600539_resume.pdf', NULL, '1', '2022-06-30', 0, '', '3', '59', '2022-07-04', 126312.00, '', '', '2022-07-12', '1', 'Selected for Thanjavur - Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-30 10:32:53', 60, '2022-07-04 07:48:40', 0, NULL, 1),
(9188, 'v. sowmiya', '4', '9025385886', '', 'sowmirajpnr@mail.com', '2000-04-18', 22, '2', '2', 'r.vaithiyanathasami', 'former', 10000.00, 2, 0.00, 10000.00, 'kumbakonnam', 'kumbakonnam', '2206300005', '1', '1', 'upload_files/candidate_tracker/13318079854_sowmiya.pdf', NULL, '1', '2022-06-30', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 11:12:55', 85, '2022-06-30 04:19:46', 0, NULL, 1),
(9189, 'mohan r', '6', '9176279505', '6382398125', 'mohanravi0821@gmail.com', '2001-08-21', 20, '1', '2', 'ravi', 'revlot sales', 15000.00, 0, 0.00, 15000.00, 'chennai nungambakkam', 'chennai nungambakkam', '2206300006', '', '1', 'upload_files/candidate_tracker/47009026765_MOHAN RESUME.docx', NULL, '1', '2022-06-30', 0, 'p1036', '3', '59', '2022-07-06', 192000.00, '', '4', '2023-07-12', '1', 'Selected for Thiyagarajan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'Offer Document Link Shared', '', '', '', NULL, NULL, NULL, 1, '2022-06-30 11:23:49', 60, '2022-07-06 10:37:46', 0, NULL, 1),
(9190, 'Satish Babu N', '25', '9738772474', '', 'satishbabu9738772474@gmail.com', '1997-02-09', 25, '1', '2', 'nagaraj a', 'retired employee', 35000.00, 2, 28000.00, 28000.00, 'Bangalore', 'bangalore', '2206300007', '', '2', 'upload_files/candidate_tracker/90159842284_Satish babu. N_Original.docx', NULL, '1', '2022-06-30', 0, '1328', '3', '59', '2022-07-04', 345696.00, '', '4', '2023-01-06', '1', 'Selected for Manivel Team with Pf/Pt', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-06-30 12:05:57', 60, '2022-07-01 12:45:52', 0, NULL, 1),
(9191, 'Kalaimani', '6', '8110046044', '9342314517', 'Kalaimanisubbu1504@gmail.com', '2000-04-15', 22, '2', '2', 'Nainammal subramaniyan', 'Almighty business solutions', 30000.00, 2, 15000.00, 18000.00, 'Teynampet', 'Alwarpet 5th Street', '2206300008', '1', '2', 'upload_files/candidate_tracker/55056504546_KALAI NEW (2).pdf', NULL, '1', '2022-06-30', 0, '', '3', '59', '2022-07-04', 156000.00, '', '3', '2023-11-03', '1', 'Selected for RE Babu Team in consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-06-30 12:41:24', 60, '2022-07-06 10:02:54', 0, NULL, 1),
(9192, '', '0', '9019742388', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-30 01:17:38', 0, NULL, 0, NULL, 1),
(9193, 'Rangeela.R', '4', '7397286074', '9500484358', 'www.rangelaragupathi@gmail.com', '2001-10-03', 20, '2', '2', 'Ragupathi', 'Labour', 30000.00, 1, 0.00, 10000.00, 'Ayyampettai', 'Ayyampettai', '2206300010', '1', '1', 'upload_files/candidate_tracker/35208849239_Rangeela.pdf', NULL, '1', '2022-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped.Candidate is not clear with her interest,just like that blocking the numbers,Will not join and conveyed the same to recruiter/Sales Manager', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 02:36:51', 85, '2022-06-30 04:34:11', 0, NULL, 1),
(9194, 'p.sabithasri', '4', '6369382574', '8220469559', 'p.sabithasri@gmail.com', '1999-05-10', 23, '2', '2', 's.pandiyan', 'coolie', 15000.00, 1, 0.00, 10000.00, 'thanjavur', 'thanjavur', '2206300011', '1', '1', 'upload_files/candidate_tracker/69558715123_sabitha.pdf', NULL, '1', '2022-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Discussed and finalised the package but now the candidate is not interested much as she is not comfortable to take calls continuously', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 02:37:56', 85, '2022-06-30 04:34:53', 0, NULL, 1),
(9195, 'ramya', '4', '7695918020', '', 'sakthidharan33@gmail.com', '1983-08-24', 38, '2', '1', 'saravanan', 'jewellery employee', 10000.00, 3, 0.00, 10000.00, 'orthanadu', 'orathanadu', '2206300012', '1', '1', 'upload_files/candidate_tracker/49664589426_ramya.pdf', NULL, '1', '2022-06-30', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 02:38:54', 85, '2022-06-30 04:33:51', 0, NULL, 1),
(9196, 'BHUVANESWARI.R', '4', '7825942758', '', 'vijaybhuvana596@gmail.com', '2002-02-02', 20, '2', '2', 'RANJAN.K', 'Former', 15000.00, 0, 0.00, 9000.00, 'Needamangala', 'Needamangala', '2206300013', '1', '1', 'upload_files/candidate_tracker/41825220181_BHUVANESHWARI.docx', NULL, '1', '2022-06-30', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 02:41:22', 85, '2022-06-30 04:31:05', 0, NULL, 1),
(9197, 'Nandhini.B', '4', '9629872306', '9655816991', 'nandhinibaskar@gmil.com', '1999-06-15', 23, '2', '2', 'Baskar.k', 'Farmer', 30000.00, 2, 0.00, 10000.00, 'Ayyampettai', 'Ayyampettai', '2206300014', '1', '1', 'upload_files/candidate_tracker/4785989146_Nandhini.pdf', NULL, '1', '2022-06-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped.Candidate Is Not Clear With Her Interest,Now she is committing that she doesnt have laptop and ,Will Not Join Conveyed The Same To Recruiter/Sales Manager', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 03:07:27', 85, '2022-06-30 04:18:45', 0, NULL, 1),
(9198, 'G.priya', '4', '7448778216', '9791570846', 'appupriya9787@gmail.com', '1998-11-03', 23, '2', '1', 'Vijaya Kumar', 'Drive', 30000.00, 3, 0.00, 10000.00, 'Poondi', 'Poondi', '2206300015', '1', '1', 'upload_files/candidate_tracker/25847075595_0_priya resume.pdf', NULL, '1', '2022-06-30', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-06-30 03:18:31', 85, '2022-06-30 04:33:12', 0, NULL, 1),
(9199, '', '0', '9363233359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2206300016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-06-30 07:02:22', 0, NULL, 0, NULL, 1),
(9200, 'archana', '4', '9952036884', '', 'archanavelu3@gmail.com', '2000-04-12', 22, '2', '2', 'velyadham', 'labour', 80000.00, 2, 0.00, 15000.00, 'villivakkam', 'Villivakkam', '2206300017', '1', '1', 'upload_files/candidate_tracker/28075163420_resume (35).pdf', NULL, '1', '2022-07-01', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for this profile', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-06-30 08:03:21', 1, '2022-07-01 11:36:02', 0, NULL, 1),
(9201, '', '0', '9952513788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207010001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-01 09:34:26', 0, NULL, 0, NULL, 1),
(9202, 'Shanmuganandam', '5', '9600470944', '', 'manbest252@gmail.com', '1999-04-01', 23, '1', '2', 'Thirukumaran KC', 'Private trader', 20000.00, 1, 0.00, 21000.00, 'Trichy', 'Trichy', '2207010002', '', '2', 'upload_files/candidate_tracker/85295473270_Shanmugam.pdf', NULL, '1', '2022-07-01', 0, '', '3', '59', '2022-07-11', 246000.00, '', '4', '2022-11-01', '1', 'Selected for Madiwalla MuppudathybTeam Staff Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-01 10:27:17', 60, '2022-07-09 12:33:40', 0, NULL, 1),
(9203, 'M.KEERTHI VASAN', '6', '8344494100', '8248603642', 'Keerthimuni2486@gmail.com', '1997-04-10', 25, '2', '2', 'MUNIRAJ', 'Agriculture', 7000.00, 0, 0.00, 15000.00, 'Thirupathur', 'Chennai (Ashok nagar)', '2207010003', '1', '1', 'upload_files/candidate_tracker/4132281753_Resume_CV_Format1 (2).pdf', NULL, '1', '2022-07-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary Discussed and confirmed but candidate didnt show interest in the profile later', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-01 10:32:22', 60, '2022-07-01 02:57:14', 0, NULL, 1),
(9204, 'Jayasimha KS', '5', '8197337533', '', 'jayasimha.ks1748@gmail.com', '1996-08-26', 25, '1', '2', 'Aruna bai', 'House wife', 150000.00, 3, 22900.00, 25000.00, 'Bengaluru', 'Bengaluru', '2207010004', '', '2', 'upload_files/candidate_tracker/99945978414_CV - JAYASIMHA (2022) .1.doc', NULL, '1', '2022-07-01', 0, 'P1328', '3', '59', '2022-07-04', 345696.00, '', '3', '2022-10-05', '1', 'Selected for Manivel Team with PF/PT', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-01 10:37:09', 60, '2022-07-02 04:33:15', 0, NULL, 1),
(9205, 'V.Tamilselvan', '5', '7871334233', '', 'tamilsuriya777@gmail.com', '1998-08-30', 23, '1', '2', 'M.Velu', 'BEEDI BRANCH', 40000.00, 2, 0.00, 20000.00, 'Tirupattur', 'Tirupattur', '2207010005', '', '1', 'upload_files/candidate_tracker/90411399336_tamil selvan BE updated (1).pdf', NULL, '1', '2022-07-01', 0, '55597', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 10:42:23', 1, '2022-07-01 10:48:26', 0, NULL, 1),
(9206, 'gnanashwaran', '4', '8608922720', '', 'gnanaeswaran95@gmail.com', '2000-11-15', 21, '2', '2', 'mohan', 'daily wages', 10000.00, 1, 0.00, 15000.00, 'chetpet', 'chetpet', '2207010006', '1', '1', 'upload_files/candidate_tracker/76680013680_resume_1629018659034 (1).pdf', NULL, '1', '2022-07-01', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable for this profile', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-01 10:51:49', 85, '2022-07-01 02:59:29', 0, NULL, 1),
(9207, 'K. Saravanan', '22', '8220325903', '', 'ksmech13@gmail.com', '1996-05-13', 26, '4', '2', 'N. Kumar', 'Mechanic', 20000.00, 1, 15000.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2207010007', '', '2', 'upload_files/candidate_tracker/91482560895_Saran resume .pdf', NULL, '1', '2022-07-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Too long Distance from Tiruvallur,Not much suits for Digittal Marketng', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 10:57:11', 1, '2022-07-01 11:04:16', 0, NULL, 1),
(9208, 'M.sivanjineyulu', '5', '9642224461', '9182494092', 'sivacherry63@gmail.com', '1996-01-08', 26, '1', '2', 'M.venkataramudu', 'Farmers', 15000.00, 2, 18500.00, 25000.00, '2/265 Illuru (v) Garladinne (m) Anantapur', 'Pranayas gent\'s pg 2main road murugeshpalya', '2207010008', '', '2', 'upload_files/candidate_tracker/54165670707_Shiva RESUME mba @123-converted.pdf', NULL, '1', '2022-07-01', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 11:30:38', 1, '2022-07-01 11:38:18', 0, NULL, 1),
(9209, 'Geethanjali', '6', '9962480180', '9360750475', 'geethasamuvel877@gmail.com', '1998-09-04', 23, '1', '1', 'Ramesh', 'Driver', 15000.00, 1, 10000.00, 15000.00, 'Arumbakkam', 'Arumbakkam', '2207010009', '', '2', 'upload_files/candidate_tracker/69091401945_WhatsApp Image 2022-07-01 at 11.52.07 AM.pdf', NULL, '1', '2022-07-01', 0, 'Ci125', '5', '16', NULL, 0.00, '', '0', NULL, '2', 'Low Profile', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 11:35:19', 1, '2022-07-01 01:03:37', 0, NULL, 1),
(9210, 'Gayathri', '6', '9360750475', '9962480180', 'nafilagayathri@gmail.com', '2001-09-01', 20, '1', '2', 'Ramesh', 'Driver', 15000.00, 1, 0.00, 15000.00, 'ARUMBAAKKAM', 'ARUMBAAKKAM', '2207010010', '', '1', 'upload_files/candidate_tracker/63349501649_Resume_GAYATHRI_Format1.pdf', NULL, '1', '2022-07-01', 0, '', '4', '16', NULL, 0.00, '', '0', NULL, '2', 'Have Exp For Few Months But Not A Relevant One,5050Profile Need To Train A Lot Kindly Check And Let Me Know Your Inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-01 11:39:18', 1, '2022-07-01 12:07:26', 0, NULL, 1),
(9211, '', '0', '9150554019', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207010011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-01 11:57:58', 0, NULL, 0, NULL, 1),
(9212, 'Jai Sri Ram', '5', '9361267779', '', 'jaisriram2201@gmail.com', '1999-07-01', 23, '2', '2', 'Neelamegan', 'Retired Head master', 60000.00, 3, 0.00, 300000.00, 'KRISHNAGIRI', 'arumbakkam, chennai.', '2207010012', '1', '1', 'upload_files/candidate_tracker/23877375160_JAI_SRI RAM_Resume_25-04-2022-15-36-47.pdf', NULL, '1', '2022-07-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-01 03:12:45', 85, '2022-07-01 04:14:16', 0, NULL, 1),
(9213, '', '0', '9840506887', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207010013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-01 06:30:47', 0, NULL, 0, NULL, 1),
(9214, 'Reddi Arjuna rao', '22', '9666463186', '', 'charanteja087@gmail.com', '1994-04-11', 28, '2', '2', 'Reddi Jagga rao', 'Mba', 30000.00, 1, 0.00, 300000.00, 'VISAKHAPATNAM', 'VISAKHAPATNAM', '2207020001', '1', '1', 'upload_files/candidate_tracker/95167795977_Reddi_Arjuna_Rao_Resume (1).pdf', NULL, '3', '2022-07-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '3', '4', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-02 10:35:56', 85, '2022-07-02 10:44:19', 0, NULL, 1),
(9215, 'Vishali', '6', '9344204028', '', 'vishalivishu19092000@gmail.com', '2000-09-19', 21, '3', '2', 'Kannadasan', 'Tailor', 150000.00, 2, 0.00, 12000.00, 'No. 23(4) Bharath Nagar 4th St Ernavoor Chennai 57', 'No. 38 Perumal 2nd Street purasaiwalkam Chennai 7', '2207020002', '', '1', 'upload_files/candidate_tracker/84091176190_Resume.docx', NULL, '1', '2022-07-02', 0, '', '3', '59', '2022-07-04', 156000.00, '', '3', '2022-11-07', '1', 'Selected for Thiyagu Team - Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-02 10:38:48', 60, '2022-07-05 05:32:10', 0, NULL, 1),
(9216, 'U.indhupriya', '4', '6379926928', '7558145577', 'Sathishindhusri29@gmail.com', '1997-07-14', 24, '2', '1', 'Sathish kannan', 'Electrical technician', 64000.00, 1, 0.00, 120000.00, 'TPS nagar , medical College road, Thanjavur', 'TPS nagar ,mc road,Balaji nagar bustop, Thanjavur.', '2207020003', '1', '1', 'upload_files/candidate_tracker/63816537055_INDHUPRIYA RESUME.pdf', NULL, '1', '2022-07-02', 0, '', '3', '59', '2022-07-07', 126312.00, '', '3', '2022-10-15', '1', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 10:40:14', 60, '2022-07-09 05:19:05', 0, NULL, 1),
(9217, '', '0', '9629433881', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207020004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-02 10:50:50', 0, NULL, 0, NULL, 1),
(9218, 'harikrishnan.s', '4', '7358654674', '', 'harimac46@gmail.com', '2000-10-31', 21, '2', '2', 'sivaraman .s', 'hindu', 15000.00, 0, 0.00, 16000.00, 'manali', 'mathur', '2207020005', '1', '1', 'upload_files/candidate_tracker/36682035997_Hari resume. pdf.pdf', NULL, '3', '2022-07-02', 0, '', '3', '59', '2022-07-11', 156000.00, '', '', '2022-07-21', '1', 'Selected for Arumbakkam in Consultant Role', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-02 11:12:58', 60, '2022-07-07 07:09:03', 0, NULL, 1),
(9219, 'K. Monika', '4', '7418170341', '9791479929', 'Monikakandan24@gmail.com', '2007-07-02', 0, '2', '2', 'Kandan', 'Carpenter', 25000.00, 1, 18.00, 20.00, 'Ambattur', 'Ambattur', '2207020006', '1', '2', 'upload_files/candidate_tracker/73558353812_resume_ACY2knrl2liT_1645515920560(1).pdf', NULL, '1', '2022-07-02', 3, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Salary expectation high ', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:25:15', 85, '2022-07-02 11:39:54', 0, NULL, 1),
(9220, 'pavithra', '4', '9962789750', '', '15pavianu@gmail.com', '2001-01-04', 21, '2', '2', 'arumugam', 'electrician', 15000.00, 1, 0.00, 15000.00, 'thirumulaivoyil', 'Thirumulaivoyil', '2207020007', '1', '1', 'upload_files/candidate_tracker/92095760063_Pavithra resume.docx', NULL, '1', '2022-07-02', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expected salary high', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:25:37', 85, '2022-07-02 04:22:27', 0, NULL, 1),
(9221, 'preethiga', '4', '7305312550', '', 'preethiga9709@violetcollege.co.in', '2000-10-11', 21, '2', '2', 'mohan', 'company staff', 13000.00, 1, 13000.00, 15000.00, 'padi', 'padi', '2207020008', '1', '2', 'upload_files/candidate_tracker/21870846737_1623430269346_Preethiga RESUME (2)-1 (1).docx', NULL, '1', '2022-07-02', 0, '', '5', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Childish behavior and not suitable for this profile ', '1', '2', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:26:10', 85, '2022-07-02 04:21:08', 0, NULL, 1),
(9222, 'Priyadharshini', '4', '9176849660', '9176902427', 'Priyadhrshini2427@gmail.com', '2000-09-27', 21, '2', '2', 'Ranagathan. R', 'moulding press', 60000.00, 1, 15000.00, 20000.00, 'Ramapuram', 'Ramapuram', '2207020009', '1', '2', 'upload_files/candidate_tracker/74626242321_ priya cv.pdf', NULL, '1', '2022-07-02', 0, '', '3', '59', '2022-07-11', 216000.00, '', '4', '2022-12-06', '2', 'Selected for ESales in Staff Role - Final Round interviewed by gaurav', '1', '1', '1', '1', '1', '1', '2', '2022-07-04', '1', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:38:52', 60, '2022-07-11 10:26:11', 0, NULL, 1),
(9223, 'Haresh.P', '4', '7604979898', '7639525043', 'hariroselin1433@gmail.com', '1997-07-01', 25, '2', '2', 'Pazhani', 'Tele caller', 60000.00, 2, 12500.00, 14000.00, 'Thiruvallur.', 'Chennai', '2207020010', '1', '2', 'upload_files/candidate_tracker/47881637169_Haresh.docx', NULL, '1', '2022-07-02', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable every 6 months job changes not showing importance to the job will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 11:49:47', 85, '2022-07-02 12:02:25', 0, NULL, 1),
(9224, 'J.Manogaran', '4', '8778069016', '9176063258', 'mdzmano8939@gmail.com', '1999-06-11', 23, '2', '2', 'J.vijayakumari', 'Taylor', 15.00, 0, 14.00, 13.00, 'Villivakkam', 'Chennai', '2207020011', '1', '2', 'upload_files/candidate_tracker/85379066066_Resume manogaran.doc', NULL, '1', '2022-07-02', 0, '', '5', '14', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for tele calling profile', '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-07-02 12:45:41', 1, '2022-07-02 12:55:23', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9225, 'sathiya.k', '4', '9597347920', '', 'tamilsathiya11@gmail.com', '2000-09-11', 21, '3', '2', 'tamilselvi.k', 'flowermaker', 5000.00, 2, 0.00, 10000.00, 'ammapet', 'thanjavur', '2207020012', '', '1', 'upload_files/candidate_tracker/92584949800_Sathiya K Resume.pdf', NULL, '1', '2022-07-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-02 02:53:06', 1, '2022-07-02 03:17:22', 0, NULL, 1),
(9226, '', '0', '6382328813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207020013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-02 04:25:52', 0, NULL, 0, NULL, 1),
(9227, 'C R Ajith Kumar', '11', '8500019892', '', 'AJITHKUMARPCTR@GMAIL.COM', '2000-06-16', 22, '2', '2', 'M Rajendran', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Tirupati', 'Tirupati', '2207020014', '1', '1', 'upload_files/candidate_tracker/14982700274_Resume Ajith.pdf', NULL, '2', '2022-07-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-02 06:29:25', 85, '2022-07-04 10:31:26', 0, NULL, 1),
(9228, '', '0', '9344331148', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207020015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-02 11:12:09', 0, NULL, 0, NULL, 1),
(9229, 'Ranjithkaran.B', '4', '9790302344', '', 'ranjithkaran052@gmail.com', '2000-01-21', 22, '2', '2', 'Baskaran.S', 'Driver', 24000.00, 2, 14000.00, 14000.00, 'Mannargudi', 'Mannargudi', '2207040001', '1', '2', 'upload_files/candidate_tracker/5825563361_ranjithkaran resume.pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-06', 168000.00, '', '4', '2023-01-05', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-04 09:42:30', 60, '2022-07-05 06:16:11', 0, NULL, 1),
(9230, 'Sakthivel s', '5', '9043684822', '', 'Sakthivj4070@gmail.com', '1996-06-02', 26, '1', '2', 'Saravanan M', 'Municipal Employee', 200000.00, 2, 0.00, 20000.00, 'Tirupathur', 'Tirupathur', '2207040002', '', '1', 'upload_files/candidate_tracker/96435352571_resume .pdf', NULL, '1', '2022-07-04', 0, '55601', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-04 10:35:55', 1, '2022-07-04 10:45:34', 0, NULL, 1),
(9231, 'D gokulapriya', '16', '8438300761', '', 'Gokulapriya1198@gmail.com', '1998-02-11', 24, '1', '2', 'K durairaj', 'Painter', 10.00, 1, 17400.00, 22000.00, 'Moggapir east', 'Mogappair east', '2207040003', '', '2', 'upload_files/candidate_tracker/91977290052_priyaRESUMEjune.pdf', NULL, '1', '2022-07-04', 15, 'P1121', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles, Will Not Sustain ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 10:44:43', 85, '2022-07-04 11:21:49', 0, NULL, 1),
(9232, 'Ruban kumar. P', '11', '9551917316', '', 'rubankumar135@gmail.com', '2000-09-30', 21, '2', '2', 'Padmanabhan', 'Printer', 30000.00, 1, 15000.00, 17000.00, 'No 21/23 A, Check post, Velachery, Chennai 600042', 'No 21/23 A, Check Post, Velachery, Chennai 600042', '2207040004', '1', '2', 'upload_files/candidate_tracker/3254261654_Ruban kumar\'s Resume.pdf', NULL, '1', '2022-07-04', 30, '', '3', '59', '2022-08-01', 158496.00, '', '0', NULL, '1', 'need to serve notice Salary TH 13K plus 208', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-04 10:46:19', 1, '2022-07-04 10:50:34', 0, NULL, 1),
(9233, 'Anand Kumar S', '4', '9514520505', '9042479515', 'ananddhana1307@gmail.com', '2002-05-13', 20, '2', '2', 'Dhanachezian', 'College pro', 80000.00, 1, 0.00, 18000.00, 'Periyapalayam', 'Periyapalayam', '2207040005', '1', '1', 'upload_files/candidate_tracker/69374105739_my resume AK.pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 11:00:09', 85, '2022-07-04 11:34:15', 0, NULL, 1),
(9234, 'Rahul', '4', '6382864368', '9360843399', 'rahulraki039@gmail.com', '2001-05-05', 21, '2', '2', 'Renuka', 'Trailer', 20000.00, 2, 0.00, 15000.00, 'Pattabiram', 'Avadi', '2207040006', '1', '1', 'upload_files/candidate_tracker/32108064098_Rahul res.doc', NULL, '1', '2022-07-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 11:02:45', 85, '2022-07-04 11:34:31', 0, NULL, 1),
(9235, 'Shamila', '11', '7305905827', '', 'Shami.imman3@gmail.com', '1998-01-04', 24, '2', '2', 'Thiyagarajan', 'Business', 20000.00, 0, 20000.00, 20000.00, 'Tambaram', 'Tambaram', '2207040007', '1', '2', 'upload_files/candidate_tracker/27017941884_ShamilaResume (1).pdf', NULL, '1', '2022-07-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much exp in Recruitment but Salary Exp is high,no sustainability in the previous exp,will not sustain\n', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-04 11:25:46', 1, '2022-07-04 11:29:24', 0, NULL, 1),
(9236, 'arun karthik s r', '22', '7708896594', '', 'arunkart1116@gmail.com', '1998-11-16', 23, '2', '2', 'rajasekar s', 'business', 200000.00, 1, 0.00, 27000.00, 'chennai', 'sattur', '2207040008', '1', '1', 'upload_files/candidate_tracker/31229238910_ARUN_KARTHIK_RESUME.pdf', NULL, '2', '2022-07-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 11:41:14', 85, '2022-07-04 12:17:35', 0, NULL, 1),
(9237, 'Praveena Selvakumar', '4', '6383759785', '8248984569', 'praveenaselvakumar0000@gmail.com', '1995-05-17', 27, '2', '2', 'Selvakumar', 'Railway', 30000.00, 1, 0.00, 15000.00, 'Saliyamangalam', 'Saliyamangalam', '2207040009', '1', '1', 'upload_files/candidate_tracker/50310751334_Praveena Selvakumar.pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-07', 132000.00, '', '5', '2022-07-09', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 11:41:29', 60, '2022-07-09 05:26:03', 0, NULL, 1),
(9238, 'ARAVIND C', '4', '7358221135', '6383242264', 'aravindjustin1322@gmail.com', '2001-10-13', 20, '1', '2', 'KANNAKI C', 'Home maker', 150000.00, 0, 0.00, 20000.00, 'India', 'India', '2207040010', '', '1', 'upload_files/candidate_tracker/94820937558_RESUME ARAVIND.pdf', NULL, '1', '2022-07-04', 0, 'P1302', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-07-04 11:57:57', 1, '2022-07-04 12:09:16', 0, NULL, 1),
(9239, '', '0', '8825912651', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207040011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-04 12:02:49', 0, NULL, 0, NULL, 1),
(9240, 'ranjini', '4', '9176524122', '', 'ravideepa1020@gmail.com', '2001-08-10', 20, '2', '2', 'ravi', 'building contractor', 15000.00, 1, 0.00, 14000.00, 'kolathur', 'Kolathur', '2207040012', '1', '1', 'upload_files/candidate_tracker/58087179525_ranjiji resume.pdf', NULL, '1', '2022-07-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-04 12:03:15', 1, '2022-07-04 12:47:07', 0, NULL, 1),
(9241, 'C.Hemavathy', '4', '8925415535', '8754573217', 'hemaranu56@gmail.com', '1999-08-16', 22, '2', '2', 'R.chandrasekar c.Renuka', 'Labour', 70000.00, 0, 0.00, 15000.00, 'Mgr nagar', 'Mgr nagar', '2207040013', '1', '1', 'upload_files/candidate_tracker/78582680974_C Hemavathy resume .pdf', NULL, '1', '2022-07-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher sounding low 5050 profile checked with banu for 2nd round and rejected', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-04 12:11:55', 85, '2022-07-04 12:28:38', 0, NULL, 1),
(9242, 'B.Bhavani', '6', '7358288204', '9092695147', 'bhavanikala0099@gmail.com', '2002-06-02', 20, '2', '2', 'V.Babu', 'Molding', 10000.00, 1, 0.00, 12000.00, 'Saidapet', 'Saidapet', '2207040014', '1', '1', 'upload_files/candidate_tracker/74327601746_Resume26112024110752AM.pdf', NULL, '1', '2024-11-29', 0, '', '7', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate Communication And performance is good,she have 2 years experience in Bharat matrimony.will check with her in the training Period and CTC discussed as 1.8 LPA she is ok with this .joining on 2nd of Dec she conveyed', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1018', '', '55666', '5151', '1970-01-01', 1, '2022-07-04 12:12:43', 104, '2024-11-29 06:03:41', 0, NULL, 1),
(9243, 'Sandhiya S', '4', '7358696298', '9677276722', 'sandhiya2001430@gmail.com', '2001-04-30', 21, '1', '2', 'SELVAM. C. R', 'Ironing', 10000.00, 2, 0.00, 13000.00, 'Jafferkhan pet', 'Saidapet', '2207040015', '', '1', 'upload_files/candidate_tracker/95045560064_Sandhiya Resume New.pdf', NULL, '1', '2022-07-04', 0, 'P130', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication average and much prefers for Non Voice will not sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-04 12:14:35', 1, '2022-07-04 12:25:03', 0, NULL, 1),
(9244, 'Tamilvanan. G', '4', '6369486253', '9944550913', 'tamilvananmsd03@gmail.com', '2002-07-03', 20, '2', '2', 'Govintharaj. K', 'Agriculture', 15.00, 2, 0.00, 15.00, 'Periyapalaiyam', 'Periyapalaiyam', '2207040016', '1', '1', 'upload_files/candidate_tracker/39728085709_file_05Jul22.pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 12:25:17', 85, '2022-07-05 02:57:03', 0, NULL, 1),
(9245, 'N.swetha', '6', '9444429128', '7299822331', 'Swethavaralakshmi2001@gmail.com', '2001-10-31', 20, '1', '2', 'N.Nagaraj', 'Kavari hospital', 10000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2207040017', '', '1', 'upload_files/candidate_tracker/26040754165_swetharesume3.pdf', NULL, '1', '2022-07-04', 0, 'P1272', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'kindly confirm the joining date', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 12:40:06', 60, '2022-07-04 04:37:30', 88, '2022-09-13 05:50:48', 0),
(9246, 'S.priyanka', '6', '9361398946', '9514270325', 'Priyankaneil2001@gmail.com', '2001-09-15', 20, '1', '2', 'R.sunil Kumar', 'Beda shop', 15000.00, 4, 0.00, 13000.00, 'chennai', 'chennai', '2207040018', '', '1', 'upload_files/candidate_tracker/89632396355_Priya (Resume).pdf', NULL, '1', '2022-07-04', 0, 'P1272', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher, candidate is ok .\nkindly confirm the joining date', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 12:40:30', 60, '2022-07-04 04:38:07', 88, '2022-09-13 05:50:48', 0),
(9247, 'Kamali', '11', '9566050702', '9840815460', 'd17py012kamali@gmail.com', '2007-07-04', 0, '2', '2', 'Father - perumal', 'Private employee', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2207040019', '1', '1', 'upload_files/candidate_tracker/11347901772_kamali_resume.docx', NULL, '1', '2022-07-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,Already holding an offer for 12K and looking for more being a fresher will not sustain for a long', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-04 12:54:08', 85, '2022-07-04 01:10:58', 0, NULL, 1),
(9248, 'pavithra', '4', '6369670344', '', 'Pavithra230197@gmail.com', '1997-01-23', 25, '2', '2', 'bhavani', 'flower sales', 10000.00, 0, 15000.00, 15000.00, 'triplicane', 'triplicane', '2207040020', '1', '2', 'upload_files/candidate_tracker/15574884135_Resume (54).pdf', NULL, '1', '2022-07-04', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Having 4 months telecalling Exp Family need is there,kindly check and let me know your inputs', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-04 01:25:02', 1, '2022-07-04 01:29:10', 0, NULL, 1),
(9249, 'Mohan kameshwaran', '4', '9677038212', '', 'muthumohan145@gmail.com', '2003-01-21', 19, '2', '2', 'Dhanasekaran', 'Telecaller', 30000.00, 1, 0.00, 12000.00, '216,pilliyar Kovil street,paapanadu', '216,pilliyar Kovil street,paapanadu', '2207040021', '1', '1', 'upload_files/candidate_tracker/1122363401__Template_1656922841381.pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-11', 151584.00, '', '3', '2022-10-03', '1', 'Selected for Thanjavur - Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 03:40:51', 60, '2022-07-07 05:04:05', 0, NULL, 1),
(9250, 'kamatham bharath simha', '5', '9618053830', '', 'bharathsimha24@gmail.com', '2000-07-09', 21, '1', '2', 'venakata ramana', 'doctor', 50000.00, 1, 0.00, 20000.00, 'bangalore', 'bangalore', '2207040022', '', '1', 'upload_files/candidate_tracker/15707697949_Bharath', NULL, '1', '2022-07-04', 0, 'p1328', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped Holding an offer with Byjuxquots and expecting high Salary not ready to come down ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 03:49:44', 60, '2022-07-06 12:26:59', 0, NULL, 1),
(9251, 'rameswari', '4', '6381693715', '', 'drameswari5@gmail.com', '2000-02-22', 22, '3', '2', 'durai raj', 'farmer', 10000.00, 2, 0.00, 12000.00, 'orathanadu', 'Orathanadu', '2207040023', '', '1', 'upload_files/candidate_tracker/13981963540_ammu.pdf', NULL, '1', '2022-07-04', 0, '', '3', '59', '2022-07-13', 126312.00, '', '5', '1970-01-01', '2', 'selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-04 04:28:12', 60, '2022-07-07 05:08:01', 0, NULL, 1),
(9252, 'Sneha kumar', '4', '9611965241', '', 'snehakumar398@gmail.com', '2001-07-05', 20, '2', '1', 'C.kumar', 'Mesion', 15000.00, 1, 0.00, 15000.00, 'Dharmapuri', 'Dharmapuri', '2207040024', '1', '1', 'upload_files/candidate_tracker/1090044579_sneha resume(1).pdf', NULL, '3', '2022-07-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '1', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-04 05:52:08', 85, '2022-07-08 02:49:35', 0, NULL, 1),
(9253, 'Nivetha.p', '6', '6374062271', '9442736800', 'nivethakrish77@gmail.com', '1998-10-23', 23, '2', '2', 'Perumal.A', 'Sales', 84000.00, 2, 0.00, 12000.00, 'Kollapettai', 'Palanakkanpalayam', '2207050001', '1', '1', 'upload_files/candidate_tracker/27000716884_Nivetha erode.pdf', NULL, '1', '2022-07-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'time not suitable and not speaking well in skills', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 10:31:11', 85, '2022-07-05 11:01:41', 0, NULL, 1),
(9254, 'K Gayathri priyanka', '5', '8892909152', '', 'Srivelece@gmail.com', '1991-08-08', 30, '3', '1', 'S K damodaran', 'Father', 50000.00, 1, 3.00, 4.50, 'Chennai', 'Chennai', '2207050002', '', '2', 'upload_files/candidate_tracker/83554405735_KGP RESUME.doc', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Exp is high and not ready to come down', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 10:38:14', 60, '2022-07-16 05:16:23', 0, NULL, 1),
(9255, 'harish kumar.p', '5', '8328035377', '', 'hari3322kumar@gmail.com', '1996-07-22', 25, '1', '2', 'baswaraj', 'parking incharge', 30000.00, 3, 25000.00, 25000.00, 'bangalore', 'banglore', '2207050003', '', '2', 'upload_files/candidate_tracker/15018421667_harish resume-2-converted (2).pdf', NULL, '1', '2022-07-05', 0, 'p1328', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate is not responding the calls properly he is not showing much interest towards the profile.Discussed and asked him to share the required documents after that not responding', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 10:43:45', 60, '2022-07-05 07:21:54', 0, NULL, 1),
(9256, 'Geetha V', '11', '9176434134', '9710125606', 'Vgeetha042000@gmail.Com', '2000-03-04', 22, '2', '2', 'Veeraraghavan', 'auto driver', 15000.00, 1, 0.00, 14000.00, 'mogappair west', 'mogappair west', '2207050004', '1', '1', 'upload_files/candidate_tracker/91390594844_GEETHA RESUME.doc', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,No basic ideas in the recruitment,no clarity in job will not sustain and not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-05 10:49:12', 85, '2022-07-05 11:02:06', 0, NULL, 1),
(9257, 'Kishore.J', '11', '6379138439', '7092526594', 'kishore585.j@gmail.com', '2001-11-22', 20, '2', '2', 'Manjula', 'House keeping', 15000.00, 1, 0.00, 15000.00, 'Mylapore', 'Mylapore', '2207050005', '1', '1', 'upload_files/candidate_tracker/31876124728_KISHORE RESUME (1).pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no idea on the job Preferred looking for any opportunities as of now ,but much focused in Accounts opening only', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-05 11:20:06', 85, '2022-07-05 11:58:25', 0, NULL, 1),
(9258, 'Ajay', '6', '7349302915', '', 'ajayappu19967@gmail.com', '1998-05-05', 24, '1', '2', 'Manjula', 'House wife', 18000.00, 2, 25000.00, 25000.00, 'MADIWALA', 'MADIWALA', '2207050006', '', '2', 'upload_files/candidate_tracker/11685414483_Ajay (1).docx', NULL, '1', '2022-07-05', 0, 'p1328', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-05 11:26:49', 1, '2022-07-05 11:31:42', 0, NULL, 1),
(9259, 'Sowntharya. T', '4', '6385927506', '8807024267', 'Sowntharyatamil8@gmail.com', '1999-07-01', 23, '3', '2', 'Vanitha. T', 'House wife', 15000.00, 0, 0.00, 8000.00, 'Vadakkur west Street, Vadakkur North', 'Vadakkur North', '2207050007', '', '1', 'upload_files/candidate_tracker/70415730612_SOWNTHARYA res.docx', NULL, '1', '2022-07-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-05 11:57:26', 1, '2022-07-05 12:08:35', 0, NULL, 1),
(9260, 'Bhagya M', '4', '8098014714', '9600943708', 'marimuthubhagya@gmail.com', '1997-06-13', 25, '3', '2', 'Marumuthu N', 'Shop keeper', 15000.00, 3, 8.50, 10000.00, 'Naduppatti', 'Naduppatti', '2207050008', '', '2', 'upload_files/candidate_tracker/48074634591_bhagya resume.docx', NULL, '1', '2022-07-05', 1, '', '3', '59', '2022-07-11', 126312.00, '', '4', '2022-11-01', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 11:57:38', 60, '2022-07-15 04:40:59', 0, NULL, 1),
(9261, 'Mageshwari S', '11', '7339270637', '', 'magisubramanian29@gmail.com', '1999-03-29', 23, '2', '2', 'Subramanian C', 'Supervisor', 30000.00, 1, 0.00, 17000.00, 'Chengalpattu', 'Urapakkam', '2207050009', '1', '1', 'upload_files/candidate_tracker/21538853463_resume_Magi.pdf', NULL, '1', '2022-07-05', 0, '', '3', '59', '2022-07-11', 0.00, '', '4', '2022-11-08', '1', 'Too long Distance Have Exp in Recruitment but into sourcing skills,No sustainability in her previous exp,Longrun doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', 'She appeared again for the interview and ready to relocate before joining- 12K +PT', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-05 11:58:33', 60, '2022-07-09 05:36:43', 0, NULL, 1),
(9262, 'M.GAYATHRI', '4', '8015275478', '', 'ggayathri78337@gmail.com', '2002-01-16', 20, '1', '2', 'N.murugan', 'Relationship Manager', 20000.00, 2, 0.00, 120000.00, 'Velacheery', 'Velacherry', '2207050010', '', '1', 'upload_files/candidate_tracker/2997469375_IMG-20220705-WA0005.pdf', NULL, '1', '2022-07-05', 0, 'P1253', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-05 12:06:21', 1, '2022-07-05 12:19:21', 0, NULL, 1),
(9263, 'elakkiya', '4', '6384171812', '', 'elakkiya312@gmail.com', '2001-10-02', 20, '3', '2', 'kalaiselvan', 'business', 15000.00, 2, 0.00, 10000.00, 'poyyunddarkottai', 'poyyunddarkottai', '2207050011', '', '1', 'upload_files/candidate_tracker/33203169608_elakkiya_compressed.pdf', NULL, '1', '2022-07-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-05 12:24:58', 1, '2022-07-05 12:30:37', 0, NULL, 1),
(9264, '', '0', '9940945987', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-05 12:29:19', 0, NULL, 0, NULL, 1),
(9265, 'M.GAYATHRI', '6', '9941334098', '', 'Ggayathri78337@gamil', '2002-01-16', 20, '1', '2', 'N.murugan', 'Relationship Manager', 20000.00, 2, 0.00, 120000.00, 'Velacheery', 'Velacherry', '2207050013', '', '1', 'upload_files/candidate_tracker/3483745251_IMG-20220705-WA0005.pdf', NULL, '1', '2022-07-05', 0, 'Jobs', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sustain Doubt', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 12:44:34', 60, '2022-07-05 05:16:19', 0, NULL, 1),
(9266, 'madhavan.s', '6', '8778357535', '', 'maddyrichardmaddyrichard966@gmail.com', '1997-05-05', 25, '1', '2', 'subramani', 'formar', 25000.00, 3, 0.00, 17000.00, 'Chennai', 'chenni', '2207050014', '', '2', 'upload_files/candidate_tracker/81094194850_4d6eb80d-f015-4188-ae30-5f5fe6ccd99a.pdf', NULL, '1', '2022-07-05', 0, '', '3', '59', '2022-07-08', 199000.00, '', '3', '2023-10-30', '1', 'Selected for Babu Team in Staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 12:55:07', 60, '2022-07-07 10:35:43', 0, NULL, 1),
(9267, 'Nimmi JM', '4', '9600647243', '9487291961', 'nimmimano535@gmail.com', '1998-02-09', 24, '2', '2', 'Joseph rajmanohar', 'Retired', 20000.00, 2, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2207050015', '1', '2', 'upload_files/candidate_tracker/72064241910_NIMMI RESUME.pdf', NULL, '1', '2022-07-05', 2, '', '3', '59', '2022-07-13', 138948.00, '', '', '2022-07-20', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 12:55:40', 60, '2022-07-09 05:25:26', 0, NULL, 1),
(9268, 'Elavarasi', '4', '8220770403', '9629972735', 'elaa021298@gmail.com', '1998-12-02', 23, '2', '2', 'Rajendran', 'Farmer', 36000.00, 3, 10000.00, 13000.00, 'Thanjavur', 'Thanjavur', '2207050016', '1', '2', 'upload_files/candidate_tracker/67397302934_ELAA-PDF.pdf', NULL, '1', '2022-07-05', 3, '', '3', '59', '2022-07-11', 151584.00, '', '3', '2022-08-09', '2', 'Selected for Thanjavur Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 12:55:48', 60, '2022-07-07 07:06:57', 0, NULL, 1),
(9269, '', '0', '7358731420', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207050017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-05 01:49:32', 0, NULL, 0, NULL, 1),
(9270, '', '0', '6369531405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207050018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-05 01:50:01', 0, NULL, 0, NULL, 1),
(9271, 'Dinesh S', '4', '8925357452', '9994545312', 'dineshharry0007@gmail.com', '2002-01-09', 20, '2', '2', 'Sankar B', 'Motar mechanic', 17000.00, 1, 0.00, 15000.00, 'Periyapalayam', 'Periyapalayam', '2207050019', '1', '1', 'upload_files/candidate_tracker/13781465533_SvInstructions.pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too lon distance came along with his friends,will not sustain and run for a long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 02:01:31', 85, '2022-07-05 02:58:58', 0, NULL, 1),
(9272, 'Vignesh.R', '4', '6381197553', '9043950085', 'Thalavignesh1509@mailcom', '2002-06-15', 20, '2', '2', 'Raghu.M', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Arani', 'Arani', '2207050020', '1', '1', 'upload_files/candidate_tracker/27604878072_RESUME.pdf', NULL, '1', '2022-07-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too Lon Distance Came Along With His Friends,Will Not Sustain And Run For A Long', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 02:02:10', 85, '2022-07-05 02:57:51', 0, NULL, 1),
(9273, 'M ajay', '6', '8220834740', '8190063442', 'majay8134@gmail.com', '2002-10-04', 19, '3', '2', 'Moorthy s', 'Tailor', 20000.00, 1, 0.00, 20000.00, 'Ayanavaram', 'Ayanavaram', '2207050021', '', '1', 'upload_files/candidate_tracker/77734997979_RESUME-AJAY.pdf', NULL, '3', '2022-07-05', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'CONFIRM THE JOINING DATE', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 02:52:41', 60, '2022-07-05 04:40:09', 88, '2022-09-13 05:50:48', 0),
(9274, 'Saranya', '6', '7358604741', '', 'saranyasaran673@gmail.com', '1991-12-23', 30, '1', '1', 'Devaraj', 'Private sector', 12000.00, 1, 14000.00, 18000.00, 'Velachery', 'Velachery', '2207050022', '', '2', 'upload_files/candidate_tracker/82061401435_Saran Resume.docx', NULL, '1', '2022-07-05', 0, 'P1255', '3', '59', '2022-07-13', 199500.00, '', '3', '2022-08-16', '1', 'Staff Role - Babu Team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-05 03:06:28', 60, '2022-07-09 12:44:05', 0, NULL, 1),
(9275, 'Harel Manic Jonah J', '2', '9003802269', '', 'harelmanic12@gmail.com', '2001-06-12', 21, '2', '2', 'Jebaraj', 'Business', 18000.00, 1, 0.00, 250000.00, 'Chennai, Old Washermenpet', 'Chennai, Old Washermenpet', '2207050023', '1', '1', 'upload_files/candidate_tracker/1269558663_Harel J (Resume).pdf', NULL, '1', '2022-07-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic knowledge in skills, need time to confirm the TxxampC with his family if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-07-11', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 04:53:18', 85, '2022-07-26 06:23:52', 0, NULL, 1),
(9276, 'M VEDHA KRISHNAN', '2', '9025786436', '', 'vedhakrishnanmalaiperumal@gmail.com', '1999-12-15', 22, '2', '2', 'C MALAI PERUMAL', 'CIVIL ENGINEERING', 10000.00, 1, 0.00, 30000.00, 'THIRUVALLUR', 'THIRUVALLUR', '2207050024', '1', '1', 'upload_files/candidate_tracker/63995293652_RESUMECV.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas with Skills,not much comfort with TxxampC,Will not sustain for a long not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 05:47:38', 85, '2022-07-05 06:58:42', 0, NULL, 1),
(9277, 's arun kumaran', '31', '9941218578', '', 'arunkumaran1099@gmail.com', '2001-09-09', 20, '2', '2', 'm shanmugam', 'auto driver', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2207050025', '1', '1', 'upload_files/candidate_tracker/71518580410_arun resume..docx', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Basic Ideas With Skills, Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable,need to check with brother for every things ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 06:00:05', 85, '2022-07-06 09:29:15', 0, NULL, 1),
(9278, 'Mahalakshmi', '31', '8270596867', '', 'Gmahamlr@gmail.com', '1999-04-24', 23, '2', '2', 'Govintharaj', 'Former', 15000.00, 1, 0.00, 18000.00, 'Mayiladuthurai', 'Velacheri', '2207050026', '1', '1', 'upload_files/candidate_tracker/56343882081_Abi Resume.docx', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Much ideas with skills not comfort in TxxampC Will not Join', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-05 09:54:32', 85, '2022-07-06 12:25:52', 0, NULL, 1),
(9279, 'Sathish', '31', '9176453925', '', 'tfrsathish@gmail.com', '1999-06-12', 23, '2', '2', 'Ramesh', 'Business', 30000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2207060001', '1', '1', 'upload_files/candidate_tracker/43798808325_Sathish.pdf', NULL, '1', '2022-07-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher have basic ideas need to check with family for TxxampC ', '2', '1', '0', '1', '1', '0', '2', '2022-07-11', '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-06 10:20:26', 1, '2022-07-06 10:23:18', 0, NULL, 1),
(9280, 'Soundharrajan S', '31', '9894339072', '', 'soundharsoundhar1496@gmail.com', '2001-09-08', 20, '2', '2', 'Shanmugasundharam', 'Handloom', 15000.00, 1, 0.00, 23000.00, '2/145 j.j.colony Mettupatti thathanoor salem', 'Lakeview road west Mambalam near bharathimamdabam', '2207060002', '1', '1', 'upload_files/candidate_tracker/86146944410_soundharrajanS Resume.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable,Bit Attitude Salary Exp is high', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-06 10:39:43', 85, '2022-07-06 10:53:47', 0, NULL, 1),
(9281, 'SIDDARTHAN A', '5', '9500559821', '', 'sidh2829@gmail.com', '1996-11-29', 25, '1', '1', 'Adhinarayanan. K', 'Farmer', 10000.00, 1, 23000.00, 30000.00, 'Kurubarapalli', 'Madiwala', '2207060003', '', '2', 'upload_files/candidate_tracker/3585213660_sidh.resume.docx', NULL, '1', '2022-07-06', 0, 'P1318', '3', '59', '2022-07-11', 333000.00, '', '4', '2022-12-19', '2', 'Selected for Muppudathy Team with PF/PT', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-06 11:16:33', 60, '2022-07-09 10:11:51', 0, NULL, 1),
(9282, 'JAFFAR SHARIFF U', '31', '9841233384', '', 'jaffarraider007@gmail.com', '1996-12-16', 25, '2', '2', 'UPHEDUR REHMAN', 'business', 15000.00, 1, 0.00, 15000.00, 'CHENNAi', 'CHENNAi', '2207060004', '1', '1', 'upload_files/candidate_tracker/70501258699_Jaffar IT.pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher only basic ideas in HTML/CSS need to learn a lot Not much comfort in TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-06 12:30:26', 85, '2022-07-07 11:08:46', 0, NULL, 1),
(9283, 'umar farook', '23', '9994251323', '', 'umarfarook1911@gmail.com', '1999-11-19', 22, '2', '2', 'parent', 'daily wage', 12000.00, 2, 0.00, 20000.00, '80/2, Lakshmi nagar,salem-1.', 'sub register office, Adyar, Chennai-600020', '2207060005', '1', '1', 'upload_files/candidate_tracker/77291036184_UMAR FAROOK RESUME_compressed.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Course in Besant tech,Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-06 12:39:34', 85, '2022-07-06 01:05:15', 0, NULL, 1),
(9284, 'Nishanthi', '23', '7397460682', '6369759908', 'nishayashi1234@gmail.com', '2007-07-06', 15, '2', '2', 'Parent', 'House wife', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2207060006', '1', '1', 'upload_files/candidate_tracker/49221032243__Template_1652331377346.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Course In Besant Tech,Not Much Comfort With TxxampC,Will Not Sustain For A Long Not Suitable Too long Distance\n', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-06 12:40:12', 85, '2022-07-06 01:05:48', 0, NULL, 1),
(9285, 'Vinothkumar', '23', '9751456095', '', 'Vinoth97217@gmsil.com', '1997-05-20', 25, '2', '2', 'Parent', 'Farmer', 12000.00, 1, 0.00, 20000.00, 'Neyveli', 'Chennai', '2207060007', '1', '1', 'upload_files/candidate_tracker/10201939482_vinoth resume3.pdf', NULL, '1', '2022-07-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Course In Besant Tech,Ok with TxxampC but need to give his confirmation after check with his family', '2', '1', '', '1', '1', '', '2', '2022-07-11', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-06 12:41:03', 85, '2022-07-06 01:05:30', 0, NULL, 1),
(9286, 'Pavithra', '6', '7358639921', '', 'pavi030701@gmail.com', '2000-10-05', 21, '1', '2', 'Saravanan', 'Cooli', 100000.00, 1, 15.00, 20000.00, 'Vyasarpadi', 'Vyasarpadi', '2207060008', '', '2', 'upload_files/candidate_tracker/90325024779_pavithraRESUME[4].pdf', NULL, '1', '2022-07-06', 0, 'P1272 - hariharan', '3', '59', '2022-07-11', 199500.00, '', '5', '1970-01-01', '2', 'Selectde for Syed Team in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-06 01:23:51', 60, '2022-07-07 07:11:28', 0, NULL, 1),
(9287, 'thirumalai kumar g', '13', '8675315956', '7598204224', 'thirumalaig2000@gmail.com', '2000-04-02', 22, '3', '2', 'gomathinayagam s', 'farmer', 10000.00, 3, 0.00, 300000.00, '4/30c new street pappankulam', '4/30c New Street Pappankulam', '2207060009', '', '1', 'upload_files/candidate_tracker/51244646349_Resume-Thirumalai.pdf', NULL, '1', '2022-07-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Much Comfort With TxxampC, Will Not Sustain For A Long Not Suitable Fresher no basic ideas second Round Reject', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-06 03:19:48', 1, '2022-07-06 03:24:03', 0, NULL, 1),
(9288, 'Nivetha A', '31', '8925672993', '9952949646', 'nivethaadhibca@gmail.com', '1999-05-21', 23, '2', '2', 'Adhikesavan N', 'Welder', 70000.00, 1, 0.00, 15.00, 'Melmaruvathur', 'Melmaruvathur', '2207060010', '1', '1', 'upload_files/candidate_tracker/55045004853_nivethaadhikesavan.pdf-1.pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She in into testing and no basic ideas in PHP/React Skills will not Sustain and not much comfort with TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-06 04:43:42', 85, '2022-07-07 09:44:54', 0, NULL, 1),
(9289, 'siva', '5', '6381157922', '', 'sivabalan9500@gmail.com', '2002-02-07', 20, '2', '2', 'elumalai', 'building contractor', 15000.00, 2, 15000.00, 18000.00, 'avadi', 'avadi', '2207060011', '2', '2', 'upload_files/candidate_tracker/39855589030_E.SIVA.doc', NULL, '1', '2022-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok,have exp in sales Part time but no documents with him,Salary exp in Very high,Will not sustain and the distance also too long,Attended 2nd round and the feedback was same', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-06 08:20:22', 1, '2022-07-06 08:22:31', 0, NULL, 1),
(9290, 'lourdu mary', '4', '9941903365', '', 'lourdumahi@gmail.com', '2002-06-08', 20, '2', '2', 'albert', 'turner', 15000.00, 1, 0.00, 12000.00, 'chennai', 'royapuram', '2207060012', '2', '1', 'upload_files/candidate_tracker/97641092960_lourdumary resume .pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average,Looking much for Non Voice Data Entry only,She also preferred to work in Telecalling - But got rejected in 2nd round Sales Manager', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-06 08:46:22', 1, '2022-07-06 08:47:52', 0, NULL, 1),
(9291, 'VENKATESH S', '23', '9585937785', '9360545203', 'venkatvis003@gmail.com', '1999-02-05', 23, '2', '2', 'SANKARANARAYANAN L', 'Front end developer', 15000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2207070001', '1', '1', 'upload_files/candidate_tracker/70472863293_Resume2.pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, No basic ideas in the Skills, will not sustain for a long not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-07 09:48:30', 85, '2022-07-07 10:03:38', 0, NULL, 1),
(9292, 'Mahendran', '23', '8608120316', '9659254912', 'mahendran361999@gmail.com', '1999-06-03', 23, '2', '2', 'Muthupandi', 'Front end Developer', 15000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2207070002', '1', '1', 'upload_files/candidate_tracker/17603188066_Resume.pdf', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No, No Basic Ideas In The Skills, Will Not Sustain For A Long Not Suitab', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-07 09:48:30', 85, '2022-07-07 10:04:10', 0, NULL, 1),
(9293, 'Aswin', '13', '7305833778', '8681995310', 'aswin23.jan.2002@gmail.com', '2002-01-23', 20, '2', '2', 'Elumalai', 'Driver', 21000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2207070003', '1', '1', 'upload_files/candidate_tracker/54545431330_ASWIN resume.docx', NULL, '1', '2022-07-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic knowledge in the skills can be trained,kindly check and let me know your inputs', '2', '2', '', '1', '1', '', '2', '2022-07-09', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-07 10:11:23', 85, '2022-07-07 10:18:45', 0, NULL, 1),
(9294, 'MOHAMED ASIF', '27', '7339515356', '9751883934', 'mohamedasifcool@gmail.com', '2001-10-11', 20, '2', '2', 'Dawood batcha', 'Web development', 30000.00, 1, 0.00, 16000.00, 'Thanjavur dist, adirampattinam', 'Chennai, royapettah', '2207070004', '1', '1', 'upload_files/candidate_tracker/96104184745_Resume2-Sample.docx', NULL, '1', '2022-07-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication,no basic ideas fresher Will not run in a long,Will not sustain\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-07 10:17:30', 85, '2022-07-07 10:33:45', 0, NULL, 1),
(9295, 'Gokulvel', '5', '6380310787', '8778013368', 'Blackiloveyougb@gmail.com', '2000-06-30', 22, '2', '2', 'Kavita', 'Teacher', 80000.00, 2, 16000.00, 18000.00, 'Dharmapuri', 'Saidapet', '2207070005', '25', '2', 'upload_files/candidate_tracker/53832388064_Gokulvel resume.pdf', NULL, '1', '2022-07-07', 12, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,No sustainability in his previous Exp,also the reasons were not seems to genuine,however ask the candidate to wait for the 2nd round but he left without attending - Rejected', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-07 11:17:39', 60, '2022-07-09 05:16:51', 0, NULL, 1),
(9296, '', '0', '7483071810', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207070006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-07 11:25:30', 0, NULL, 0, NULL, 1),
(9297, 'arun kumar j', '31', '9840322402', '8525886084', 'mrarunjak@gmail.com', '1997-08-02', 24, '2', '2', 'jaya kumar r', 'railways', 70000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2207070007', '1', '1', 'upload_files/candidate_tracker/56458346017_Arun Kumar.J B.E. CSE.pdf', NULL, '1', '2022-07-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Freelancer and Exp is some what high,Have project Exp but sustainability doubts as her sister is in TCS in same React Skills', '2', '1', '', '1', '1', '', '2', '2022-07-11', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 01:30:43', 85, '2022-07-08 11:00:00', 0, NULL, 1),
(9298, 'Joshnna', '5', '6369194571', '', 'joshnnajoe99@gmail.com', '1999-07-28', 22, '2', '1', 'Tamilarasan', 'Event management', 30000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2207070008', '25', '2', 'upload_files/candidate_tracker/51062156526_IMG_20220706_212215.pdf', NULL, '1', '2022-07-07', 0, '', '9', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Wrongly shared to Me', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-07 02:22:53', 60, '2022-07-07 05:24:25', 0, NULL, 1),
(9299, 'Asmath.S', '4', '6382260028', '', 'asmathasma01@gmail.com', '2000-05-25', 22, '3', '2', 's.sheik hussain', 'Real estate', 70000.00, 4, 0.00, 7000.00, 'Thanjavur', 'Thanjavur', '2207070009', '', '1', 'upload_files/candidate_tracker/6433425389_ASMA RESUME.docx', NULL, '1', '2022-07-07', 0, '', '3', '59', '2022-07-08', 126312.00, '', '3', '2022-11-09', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-07 02:55:24', 60, '2022-07-07 04:41:40', 0, NULL, 1),
(9300, 'Sujeeth k', '23', '9080735524', '7639614650', 'sujeethkalaiyarasan09@gmail.com', '1999-04-09', 23, '2', '2', 'Kalaiyarasan k', 'Farmer', 100000.00, 1, 0.00, 280000.00, 'Dharmapuri', 'Chennai', '2207070010', '1', '1', 'upload_files/candidate_tracker/4440827819_SUJEETH_RESUME (1).pdf', NULL, '1', '2022-07-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 03:08:32', 85, '2022-07-07 06:27:21', 0, NULL, 1),
(9301, 'Ravichandran', '2', '8220513662', '8489174516', 'ravichan997@gmail.com', '2001-02-28', 21, '2', '2', 'Perumal', 'Farmer', 10000.00, 2, 0.00, 30000.00, 'Trichy', 'Chennai', '2207070011', '1', '1', 'upload_files/candidate_tracker/34734006732_CHANDRAN RESUME.pdf', NULL, '1', '2022-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No understanding,will not handle our work,not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 03:39:57', 85, '2022-07-07 06:27:50', 0, NULL, 1),
(9302, '', '0', '9566238669', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-07 04:41:46', 0, NULL, 0, NULL, 1),
(9303, 'Vaishnavi', '31', '9566238760', '7548887458', 'vaishnavid1978@gmail.com', '2000-11-22', 21, '2', '2', 'Deivasigamani', 'BDO office working in OA', 15000.00, 2, 0.00, 20000.00, 'Maduranthagam', 'Maduranthagam', '2207070013', '1', '1', 'upload_files/candidate_tracker/38410858277_v.resume.pdf', NULL, '1', '2022-07-11', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 04:42:46', 85, '2022-07-08 09:59:27', 0, NULL, 1),
(9304, 'mohammed imran', '23', '7305858119', '', 'mohammedimransk786@gmail.com', '2000-06-13', 22, '2', '2', 'hadi basha', 'front end developer', 80000.00, 0, 0.00, 18000.00, 'avadi tnhb', 'avadi tnhb', '2207070014', '1', '1', 'upload_files/candidate_tracker/88427459276_MOHAMMED IMRAN CV 2.pdf', NULL, '1', '2022-07-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance ,not much strong in the skills not suitable\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 05:44:08', 1, '2022-07-08 12:13:10', 0, NULL, 1),
(9305, 'Krishika M', '22', '9150427202', '', 'krishikamadesh0412@gmail.com', '1998-12-04', 23, '2', '2', 'Madesh M', 'Cashier', 60000.00, 1, 24000.00, 30000.00, 'Chennai', 'Chennai', '2207070015', '1', '2', 'upload_files/candidate_tracker/15332327598_Krishi resume.pdf', NULL, '1', '2022-07-08', 0, '', '3', '59', '2022-07-20', 146052.00, '', '', '1970-01-01', '1', 'Selected for Content Writing - 12K TH 2yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-07 07:28:50', 85, '2022-07-08 11:33:16', 0, NULL, 1),
(9306, 'Subha a', '4', '6384709243', '', 'Subha20001@gmail.com', '2001-05-05', 21, '2', '2', 'Andhan', 'Not working', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2207080001', '2', '1', 'upload_files/candidate_tracker/95241465855_5_6169996712870938131 (3).pdf', NULL, '1', '2022-07-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 12:47:44', 1, '2022-07-08 12:50:27', 0, NULL, 1),
(9307, 's.subanu', '4', '7092950419', '9791702154', 'subanu709295@gmail.com', '2001-06-17', 21, '3', '2', 'saravanan', 'auto driver', 46000.00, 2, 8000.00, 12000.00, 'thanjavur', 'thanjavur', '2207080002', '', '2', 'upload_files/candidate_tracker/69260614684_SUBANU.pdf', NULL, '1', '2022-07-08', 2, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suite for team voice not clear', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-08 10:11:50', 85, '2022-07-08 02:17:19', 0, NULL, 1),
(9308, 'papit patitha.a', '4', '8056989236', '9092362472', 'papitparitha@gmail.com', '1999-06-02', 23, '3', '2', 's.agustin', 'kumbakonam', 300000.00, 5, 0.00, 10000.00, 'thanjavur', 'kumbakonam', '2207080003', '', '1', 'upload_files/candidate_tracker/96847555574_papit_compressed.pdf', NULL, '1', '2022-07-08', 0, '', '3', '59', '2022-07-11', 126312.00, '', '', '2022-07-22', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-08 11:55:28', 60, '2022-07-09 12:54:38', 0, NULL, 1),
(9309, 'Sona', '4', '8825467847', '', 'charusona6@gmail.com', '2000-05-22', 22, '2', '2', '4/99p anna nagar dharampuri', 'mazan', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2207080004', '1', '1', 'upload_files/candidate_tracker/22680665055_sona resume.pdf', NULL, '1', '2022-07-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-08 01:34:20', 85, '2022-07-08 02:17:38', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9310, 'monisha', '4', '7339167858', '', 'monishaking1718@gmail.com', '1998-08-17', 23, '3', '2', 'madhialagan', 'suppervisor', 14000.00, 2, 0.00, 8000.00, 'thanjavur', 'thanjavur', '2207080005', '', '1', 'upload_files/candidate_tracker/12802630781_CV_202205311400479.pdf', NULL, '1', '2022-07-08', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'voice not clear not suit for team and telesales.......', '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 02:53:52', 1, '2022-07-08 03:29:45', 0, NULL, 1),
(9311, 'Sineka Udhayakumar', '4', '7604930778', '9626390243', 'Snehaudhaya111@gmail.com', '1998-07-11', 23, '3', '2', 'Udhayakumar', 'Farmer', 8000.00, 1, 0.00, 10000.00, 'Budalur', 'Budalur', '2207080006', '', '1', 'upload_files/candidate_tracker/98820870244_RESUME SENEKA.docx', NULL, '1', '2022-07-08', 0, '', '3', '59', '2022-07-12', 126312.00, '', '', '2022-07-20', '2', 'Selected For Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', 'Offer Mail Sent', '', '', '', NULL, NULL, NULL, 1, '2022-07-08 02:54:08', 60, '2022-07-09 12:55:16', 0, NULL, 1),
(9312, 'visalatchi.a', '4', '8870872797', '9080458125', 'visa42108@gemail.com', '1993-03-02', 29, '3', '1', 'ayyappan', 'driver', 12000.00, 2, 0.00, 10000.00, 'thanjavur', 'thanjavur', '2207080007', '', '1', 'upload_files/candidate_tracker/92154431018_Visalatchi Resume HS.pdf', NULL, '1', '2022-07-08', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'age too high technically week and not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 02:54:09', 1, '2022-07-08 03:26:15', 0, NULL, 1),
(9313, 'K.asha', '4', '6383017768', '9442714045', 'ashakannan2748@gmail.com', '1998-10-24', 23, '3', '2', 'Mr G.kannan mrs k vijayalakshmi', 'Business', 40000.00, 2, 0.00, 10000.00, '40A/1 Trichy main road vallam 613403', 'Vallam', '2207080008', '', '1', 'upload_files/candidate_tracker/58656719184_ASHA.docx', NULL, '1', '2022-07-08', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'voice not clear speaking problem not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 02:54:19', 1, '2022-07-08 03:15:48', 0, NULL, 1),
(9314, 'PRABHAKARAN', '31', '9025647338', '', 'asprabha453@gmail.com', '2001-07-31', 20, '2', '2', 'AZHAGAR SAMY', 'FARMER', 7000.00, 1, 0.00, 20000.00, 'Villupuram', 'Villupuram', '2207080009', '1', '1', 'upload_files/candidate_tracker/32251749350_1Resume..pdf', NULL, '3', '2022-07-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher have basic knowledge in HTML, CSS JS, and learnt React on his own, Seems not much convinced with the TxxampC, need time to check with family. If he comes back let us try for the technical round', '2', '1', '', '1', '1', '', '2', '2022-07-11', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-08 03:38:02', 85, '2022-07-11 03:48:12', 0, NULL, 1),
(9315, 'Shaik Abdul Rasheed', '5', '7013366897', '8465889017', 'skrasheed94@gmail.com', '2000-09-27', 21, '1', '2', 'Shaik Masthan vali', 'Worker', 70000.00, 1, 0.00, 15000.00, 'Bangalore', 'Bangalore', '2207080010', '', '1', 'upload_files/candidate_tracker/8655367100_ABDUL RASHEED RESUME-converted.pdf', NULL, '1', '2022-07-08', 0, 'P1328', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 03:59:32', 1, '2022-07-08 04:13:17', 0, NULL, 1),
(9316, 'KUTTALAM B C', '2', '9655802863', '8608287503', 'kuttalambc@gmail.com', '1996-03-23', 26, '3', '2', 'Boothalingam K', 'Labour', 18000.00, 1, 0.00, 25000.00, 'Nagercoil', 'Adambakam', '2207080011', '', '1', 'upload_files/candidate_tracker/76700351331_KUTTALAM RESUME.pdf', NULL, '1', '2022-07-08', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have done with 2nd round technical need to be trained in internship candidate should come backwith his confirmation', '2', '1', '0', '1', '1', '0', '2', '2022-07-11', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-08 04:02:12', 1, '2022-07-08 04:15:11', 0, NULL, 1),
(9317, 'Vijay', '22', '9790758213', '', 'Vijayjan2000@gmail.com', '2001-01-27', 21, '2', '2', 'Lakshman', 'Security', 200000.00, 1, 0.00, 300000.00, 'Chennai', 'Adambakkam, chennai', '2207080012', '1', '1', 'upload_files/candidate_tracker/49131624393_VijayResume.pdf', NULL, '1', '2022-07-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to check the writing content,currently in Full time graduation,Communication ok,Salary Exp is also high.', '2', '2', '', '1', '1', '', '2', '2022-07-11', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-08 05:26:08', 85, '2022-07-09 02:36:30', 0, NULL, 1),
(9318, 'Mohammed Nafees N', '31', '9943955182', '', 'mohammednafeesn08@gmail.com', '2001-01-08', 21, '2', '2', 'Mohammed Niyaz N', 'Business owner', 20000.00, 2, 0.00, 300000.00, 'Vaniyambadi, Tamil Nadu', 'Chennai, Tamilnadu', '2207090001', '1', '1', 'upload_files/candidate_tracker/26110759803_MohammedNafeesN (1) (1).pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have basic skills but not comfortable with the TxxampC being a fresher,also high CTC Exp', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-09 12:13:42', 1, '2022-07-18 10:01:50', 0, NULL, 1),
(9319, 'Sam Daniel S.K', '5', '9840023623', '7358744589', 'stunningsam786@gmail.com', '1996-08-01', 25, '4', '2', 'Senthil Kumar N', 'TNSC Bank Sub-staff', 20000.00, 1, 0.00, 25000.00, 'No:30, Demonte Street, Santhome High Road,', 'Chennai', '2207090002', '', '1', 'upload_files/candidate_tracker/98151982959_Sam Daniel (RESUME).docx', NULL, '1', '2022-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much importance towards the job,he is very clear if he gets an opportunity he will move for that positions.Will not sustain not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-09 10:13:11', 1, '2022-07-09 10:23:12', 0, NULL, 1),
(9320, 'Karthikeyan', '2', '9025959237', '', 'karthikeyanm801@gmail.com', '1999-12-01', 22, '2', '2', 'meenachi sundaram', 'pharmacist', 30000.00, 2, 0.00, 25000.00, 'thanjavur', 'thanjavur', '2207090003', '1', '1', 'upload_files/candidate_tracker/28649470188_Karthikeyan .pdf', NULL, '3', '2022-07-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not interested with TxxampC,Salary Exp is high', '2', '1', '', '1', '3', '', '2', '2022-07-11', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-09 10:13:28', 85, '2022-07-09 12:51:00', 0, NULL, 1),
(9321, 'rakesh r', '4', '9360111378', '', 'rakeshdaniel1112@gmail.com', '2001-04-26', 21, '2', '2', 'rajan', 'tennis marker', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2207090004', '2', '1', 'upload_files/candidate_tracker/23982507109__Template_1657196055897.pdf', NULL, '1', '2022-07-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication average need to open a lot,Will not run in a long not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-09 10:14:13', 1, '2022-07-09 10:16:14', 0, NULL, 1),
(9322, 'yogeshwaran r', '4', '9360400521', '', 'yw476923@gamil.com', '2002-02-08', 20, '2', '2', 'ramesh', 'plumber', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2207090005', '2', '1', 'upload_files/candidate_tracker/58843210768_Yogeshwaran resumae.docx', NULL, '1', '2022-07-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-09 10:18:45', 1, '2022-07-09 10:21:16', 0, NULL, 1),
(9323, '', '0', '9941051550', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-09 10:23:22', 0, NULL, 0, NULL, 1),
(9324, 'Gopi', '4', '9384392427', '9500380204', 'pathmangopi@gmail.com', '1993-06-10', 29, '2', '2', 'Jayavel.D', 'Daily wager', 20000.00, 0, 17000.00, 22000.00, 'Walajabad', 'Walajabad', '2207090007', '1', '2', 'upload_files/candidate_tracker/11868655008_Gopi.J. Resume.pdf', NULL, '1', '2022-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-09 11:13:41', 85, '2022-07-11 09:40:13', 0, NULL, 1),
(9325, 'J VETRI MICHAEL RAJ', '22', '8220764255', '', 'vetri822kryptonian@gmail.com', '2000-05-24', 22, '2', '2', 'M JOHN KARUNAKARAN', 'ELECTRICIAN', 15000.00, 2, 0.00, 20000.00, 'MADURAI', 'CHENNAI', '2207090008', '1', '2', 'upload_files/candidate_tracker/41248913492_Intelligent CV Document.pdf', NULL, '3', '2022-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-09 12:00:06', 85, '2022-07-11 05:48:12', 0, NULL, 1),
(9326, 'Suraj', '25', '9740712717', '8979502772', 'Surajnesaragi2015@gmail.com', '1997-02-01', 25, '3', '2', 'Raju', 'SSLC', 15000.00, 1, 15000.00, 17000.00, 'Examba Tal: chickodi Dist: Belguam', 'HSR LAYOUT Bangalore is', '2207090009', '', '2', 'upload_files/candidate_tracker/3393454427_SURAJ NESARAGI New.doc', NULL, '1', '2022-07-09', 30, '', '3', '59', '2022-07-14', 216000.00, '', NULL, '2024-10-25', '2', 'Selected for ESales Bangalore Consultant Role', '8', '1', '', '2', '2', '', '2', '1970-01-01', '3', '6', 'Offer Mail Shared', '', '', '', NULL, NULL, NULL, 1, '2022-07-09 03:16:13', 60, '2022-07-13 01:36:22', 0, NULL, 1),
(9327, 'Divya', '13', '6385339948', '', 'divyajobvacancy@gmail.com', '2001-03-07', 21, '2', '2', 'Dininakaran', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Mayiladuthurai', 'Mayiladuthurai', '2207090010', '1', '1', 'upload_files/candidate_tracker/54024409403_divya resume.pdf', NULL, '3', '2022-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-09 05:57:31', 85, '2022-07-09 06:24:24', 0, NULL, 1),
(9328, 'Vaithiyanathan.k', '6', '9597580604', '', 'vaithyvijay@gmail.com', '1994-09-04', 27, '2', '2', 'Mother-lakshmi', 'Housewife', 65000.00, 1, 0.00, 15000.00, 'Thiruvanmiyur', 'Thiruvanmiyur', '2207100001', '1', '1', 'upload_files/candidate_tracker/25904497558_Resume(1).pdf', NULL, '1', '2022-07-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-10 05:38:00', 85, '2022-07-11 09:39:53', 0, NULL, 1),
(9329, 'Rojasri. P', '6', '9345353079', '', 'www.roja2022@gmail.com', '2002-05-25', 20, '1', '2', 'Pazhani', 'Employee', 7000.00, 1, 0.00, 15000.00, 'Tiruttani', 'Tiruttani', '2207110001', '', '1', 'upload_files/candidate_tracker/1802666397_Roja Sri. P.docx', NULL, '1', '2022-07-11', 0, 'P1036', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for IT openings but not comfortable inTxxampC No basic ideas in Skills', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 09:52:52', 1, '2022-07-11 10:04:20', 0, NULL, 1),
(9330, 'Deepika.s', '6', '9789079864', '', 'Dpd33156@gmail.com', '2002-02-05', 20, '1', '2', 'Gangammal.s', 'Agriculture work', 7000.00, 3, 0.00, 15000.00, 'Arakkonam', 'Avadi', '2207110002', '', '1', 'upload_files/candidate_tracker/47367237810_Deepika .pdf', NULL, '1', '2022-07-11', 0, 'P1036', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For IT Openings But Not Comfortable InTxxampC No Basic Ideas In Skills', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 09:55:17', 1, '2022-07-11 10:38:07', 0, NULL, 1),
(9331, 'P. Rajeshwari', '6', '9787050269', '', 'rajeshwari444raji@gmail.com', '2002-10-07', 19, '1', '2', 'C. Pachaiyappan', 'Agriculture', 6000.00, 1, 0.00, 15000.00, 'Tiruttani', 'Tiruttani', '2207110003', '', '1', 'upload_files/candidate_tracker/58176282619_raji.pdf', NULL, '1', '2022-07-11', 0, 'P1036', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For IT Openings But Not Comfortable InTxxampC No Basic Ideas In Skills', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 09:55:58', 1, '2022-07-11 10:25:13', 0, NULL, 1),
(9332, 'R.Santhakumar', '6', '7358635529', '9789395241', 'rajavalli.rsk@gmail.com', '2000-01-07', 22, '1', '2', 'Raja', 'Fishing', 20000.00, 1, 0.00, 20000.00, 'Neelangarai', 'Neerangarai', '2207110004', '', '1', 'upload_files/candidate_tracker/49878346518_RSK RESUME fORMAT (1)-converted.pdf', NULL, '1', '2022-07-11', 0, 'P1251-kalaivanan', '4', '57', NULL, 0.00, '', '0', NULL, '1', '5050 Profile not showing importance much with the job,Career Gap,Need to train a lot,Sustainability Doubts kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 10:40:04', 1, '2022-07-11 10:53:27', 0, NULL, 1),
(9333, 'Shalini S', '13', '9843359627', '8220225862', 'shalinisaran1451999@gmail.com', '1999-05-14', 23, '2', '2', 'Saravanan G', 'Fisherman', 12500.00, 2, 0.00, 18000.00, 'Thanjavur', 'Porur Chennai', '2207110005', '1', '1', 'upload_files/candidate_tracker/87729424259_SHALINI - RES.docx', NULL, '1', '2022-07-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have some basic skills knowledge in PHP,completed training in besant tech,2nd interviewed by latha and on hold candidate need to come back with her confirmation', '2', '1', '0', '1', '1', '0', '2', '2022-07-13', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-11 11:19:02', 1, '2022-07-11 11:54:02', 0, NULL, 1),
(9334, 'Monica R', '13', '7448540270', '7338998842', 'monicaramesh1901@gmail.com', '2000-08-01', 21, '2', '2', 'Siva', 'Self employed', 15000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2207110006', '1', '1', 'upload_files/candidate_tracker/35477264912_Monica resume .pdf', NULL, '1', '2022-07-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need time to confirm with her sister on the position and the txxampC She hold another final round interview ,if she comes back need to check', '2', '1', '0', '1', '1', '0', '2', '2022-07-18', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-11 11:21:33', 1, '2022-07-11 11:29:18', 0, NULL, 1),
(9335, 'Siddharth aswin', '6', '7401144352', '9710275456', 'Siddharthaswin24@gmail.com', '2001-03-18', 21, '1', '2', 'Sumathi', 'Computer typist', 20000.00, 2, 0.00, 15000.00, 'Kilpauk', 'Kilpauk', '2207110007', '', '1', 'upload_files/candidate_tracker/61892632258_siddharth resume (FEB 1,22.pdf', NULL, '3', '2022-07-11', 0, 'P1253', '4', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate communication 4 months exp in Vissa Insurance but no proper relieving,Seems 5050 kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 11:32:06', 60, '2022-07-11 06:28:34', 0, NULL, 1),
(9336, '', '0', '9710275456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207110008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-11 11:42:50', 0, NULL, 0, NULL, 1),
(9337, 'Kerrthiga.B', '6', '8925413740', '6383433696', 'kerthibala2002@gmail.com', '2002-01-25', 20, '4', '2', 'Balasubramaniyam', 'Coolie', 80000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2207110009', '', '1', 'upload_files/candidate_tracker/12960374390_KERTHIGA RESUME 2022 (1).pdf', NULL, '3', '2022-07-11', 0, '', '4', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,need to open a lot 5050 profile kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 11:43:43', 60, '2022-07-11 06:35:49', 0, NULL, 1),
(9338, 'POOJA.G.M', '6', '8939169206', '7871622386', 'Poojagm2001@gmail.com', '2001-07-30', 20, '4', '2', 'V.Ganesan', 'Corporation', 80000.00, 1, 0.00, 15000.00, 'Thrivottyour', 'Thrivottyour', '2207110010', '', '1', 'upload_files/candidate_tracker/54076139779_POOJARESUME.pdf', NULL, '3', '2022-07-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate not showing interest as her friend not got selected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 11:44:12', 60, '2022-07-16 05:16:58', 0, NULL, 1),
(9339, 'Stalin tamil selvan.P', '4', '9080840982', '9787574004', 'Stalin112141@gmail.com', '1995-11-22', 26, '2', '2', 'S.palani durai', 'driver', 35000.00, 2, 15000.00, 16000.00, 'Thanjavur', 'thanjavur', '2207110011', '1', '2', 'upload_files/candidate_tracker/56205669152_STALIN_Resume (1) (2).pdf', NULL, '1', '2022-07-11', 0, '', '3', '59', '2022-07-18', 164208.00, '', '3', '2022-08-24', '1', 'Selected for Thanjavur - Consultant Role', '1', '1', '1', '4', '5', '', '2', '2022-07-31', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-11 11:47:08', 60, '2022-07-15 07:29:58', 0, NULL, 1),
(9340, 'Rajesh P', '5', '6379149648', '6382271192', 'rajeshsamantha18@gmail.com', '1999-05-12', 23, '3', '1', 'Mohana priya R', 'Exicutive unit Sales Manager', 15000.00, 2, 18500.00, 30000.00, 'Thindivanam', 'Pallavaram', '2207110012', '', '2', 'upload_files/candidate_tracker/33092553275_Lenin CV.docx', NULL, '1', '2022-07-11', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Expecting higher salary and team handling', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 11:48:47', 60, '2022-07-11 06:46:53', 0, NULL, 1),
(9341, '', '0', '9940902745', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207110013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-11 12:03:54', 0, NULL, 0, NULL, 1),
(9342, 'S VIJAYARAJA', '31', '6380745970', '', 'vijayaraja.s012@gmail.com', '2000-09-03', 21, '2', '2', 'R SUNDARARAJAN', 'Farmer', 10000.00, 1, 0.00, 25000.00, 'Panruti', 'Panruti', '2207110014', '1', '1', 'upload_files/candidate_tracker/86526051134_Myresume.pdf', NULL, '2', '2022-07-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-11 12:23:39', 85, '2022-07-11 12:36:29', 0, NULL, 1),
(9343, 'Thangarasu N', '5', '9629721477', '', 'Maxbroklt@gmail.com', '1995-01-19', 27, '1', '2', 'Kamalam N', 'Farmer', 35000.00, 3, 0.00, 22000.00, 'Kulithalai', 'Kulithalai', '2207110015', '', '1', 'upload_files/candidate_tracker/90276538926_RESUME-July 2022 (1).pdf', NULL, '1', '2022-07-11', 0, 'P1322', '5', '39', NULL, 0.00, '', '0', NULL, '1', 'Candidate is not suit for this profile ', '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 01:14:49', 1, '2022-07-11 01:20:39', 0, NULL, 1),
(9344, 'Ramya DS', '5', '8050425702', '', 'ramyads1997@gmail.com', '1997-05-15', 25, '1', '2', 'Shivappa', 'Farmer', 11000.00, 3, 0.00, 15000.00, 'Bangalore', 'Bangalore', '2207110016', '', '1', 'upload_files/candidate_tracker/61667126059_RAMYA RESUME - Copy-converted.pdf', NULL, '3', '2022-07-11', 0, 'P1328', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher, going to relocate for this job', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 01:17:48', 60, '2022-07-16 01:11:53', 0, NULL, 1),
(9345, 'M C Hemachandra', '31', '7997610157', '', 'hemachandramuppuri7@gmail.com', '2000-07-03', 22, '4', '2', 'E.Parvathi', 'Teacher', 40000.00, 1, 0.00, 400000.00, 'Chittor', 'Chittoor', '2207110017', '', '1', 'upload_files/candidate_tracker/88235466082_React(RESUME).pdf', NULL, '3', '2022-07-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 01:45:38', 1, '2022-07-11 01:48:36', 0, NULL, 1),
(9346, 'Anand J', '5', '9148968424', '', 'Ajs1791998@gmail.com', '1998-09-17', 23, '1', '2', 'Jayaram. M', 'Business', 30000.00, 1, 23700.00, 25000.00, 'Hosapalya', 'Hosapalya', '2207110018', '', '2', 'upload_files/candidate_tracker/73539041629_Anand CV.pdf', NULL, '1', '2022-07-11', 0, 'P1328', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Salary Exp is very high,discussed with him and the candidate is not showing interest in this profile', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 02:22:08', 60, '2022-07-16 04:04:56', 0, NULL, 1),
(9347, 'Divyashree HR', '5', '8197798824', '', 'divyashreedinku@gmail.com', '1996-02-10', 26, '1', '2', 'Rajashekar', 'Farmer', 11000.00, 2, 0.00, 16000.00, 'Banglore', 'Banglore', '2207110019', '', '1', 'upload_files/candidate_tracker/61187710729_DIVYA K.pdf', NULL, '2', '2022-07-11', 0, 'P1328', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,going to relocate for this Job', '5', '2', '', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-11 03:26:14', 60, '2022-07-16 01:14:03', 0, NULL, 1),
(9348, '', '0', '8660731750', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207110020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-11 03:28:26', 0, NULL, 0, NULL, 1),
(9349, 'karthick', '31', '9677193719', '', 'karthick619@gmail.com', '1991-10-18', 30, '2', '1', 'durga', 'homemaker', 38000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2207110021', '1', '1', 'upload_files/candidate_tracker/46706377610_Karthick.docx', NULL, '1', '2022-07-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-11 03:46:11', 85, '2022-07-12 09:40:06', 0, NULL, 1),
(9350, 'G Madhusree', '14', '9177242328', '', 'gmadhusree86@gmail.com', '2001-06-10', 21, '4', '2', 'G Bhaskar', 'Former', 20000.00, 2, 0.00, 3.00, 'Palamaner,chittor , Andra Pradesh', 'Palamaner chittor Andra Pradesh', '2207110022', '', '1', 'upload_files/candidate_tracker/95861401128_Madhusree_resume (1).pdf', NULL, '2', '2022-08-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 04:21:58', 1, '2022-07-11 04:27:40', 0, NULL, 1),
(9351, 'g pavan kalyan', '2', '7013557017', '', 'pavankalyan01212000@gmail.com', '2000-02-21', 22, '4', '2', 'g santhamma', 'home maker', 10000.00, 3, 10.00, 40.00, 'palamaner', 'palamaner', '2207110023', '', '2', 'upload_files/candidate_tracker/23154358363_GPAVAN KALYAN (555) 01212000.pdf', NULL, '2', '2022-07-21', 60, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 05:50:39', 1, '2022-07-11 07:53:07', 0, NULL, 1),
(9352, 'Vignesh Manickam', '31', '7708819284', '', 'vigneshmanickam03@gmail.com', '1997-07-19', 24, '2', '2', 'Anbarasi', 'House Wife', 10000.00, 1, 0.00, 350000.00, 'Salem', 'Chennai', '2207110024', '1', '1', 'upload_files/candidate_tracker/81044863596_Vignesh Manickam - Developer - CV.pdf', NULL, '1', '2022-07-12', 0, '', '3', '59', '2022-07-18', 96000.00, '', '', '1970-01-01', '2', 'Selected for Intern with 5K and salary will be fixed later based on the performance', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-11 06:14:44', 85, '2022-07-12 09:41:02', 0, NULL, 1),
(9353, 'Vijaya Pandian B', '5', '7708900151', '', 'vijayapandian150@gmail.com', '2000-07-25', 21, '3', '2', 'Baskaran C', 'Karaikal Port', 20000.00, 1, 12000.00, 20000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2207110025', '', '2', 'upload_files/candidate_tracker/28951560637_Resume-1.pdf', NULL, '1', '2022-07-11', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles, Will Not Sustain ', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-11 06:53:55', 1, '2022-07-11 06:58:46', 0, NULL, 1),
(9354, 'sureshkrishnakumar s', '13', '7339139744', '', 'suresh31.krishna@gmail.com', '2000-07-31', 21, '2', '2', 'Subramanian s', 'Self employment', 18000.00, 2, 0.00, 25000.00, 'Rajapalayam,virudhunagar', 'Chennai', '2207120001', '1', '1', 'upload_files/candidate_tracker/32886033894_FINAL RESUME-compressed-merged (1).pdf', NULL, '1', '2022-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic ideas need to open a lot will not sustain in a long run', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-12 09:31:25', 1, '2022-07-12 09:34:29', 0, NULL, 1),
(9355, 'Vigneshkannan', '13', '6374946569', '9578780051', 'Vigneshkannan52@gmail.com', '2000-04-27', 22, '2', '2', 'Kathirvel', 'Astrologer', 12000.00, 1, 0.00, 2.00, 'Coimbatore', 'Coimbatore', '2207120002', '1', '1', 'upload_files/candidate_tracker/22712912748_vigneshkannan-profile.pdf', NULL, '2', '2022-07-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-12 09:56:55', 1, '2022-07-12 10:24:22', 0, NULL, 1),
(9356, 'yogasri m', '4', '7418279176', '', 'yogajas3110@gmail.com', '1999-10-31', 22, '2', '2', 'manimaran', 'shop keeper', 600000.00, 1, 10000.00, 15000.00, 'thanjavur', 'thanjavur', '2207120003', '1', '2', 'upload_files/candidate_tracker/39571866409_yoga.pdf', NULL, '1', '2022-07-12', 15, '', '3', '59', '2022-07-14', 132000.00, '', '', '2022-07-22', '2', 'Selected for Thanjavur Location in Consultant Role', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-12 10:18:04', 60, '2022-07-13 01:41:30', 0, NULL, 1),
(9357, 'V.g.prashanth', '4', '9789430282', '7904936157', 'Prashanthguna3@gmail.com', '1999-08-22', 22, '2', '2', 'M.vethagunasekaran', 'Business', 20000.00, 1, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2207120004', '1', '1', 'upload_files/candidate_tracker/52121658215_prashanth resume.docx', NULL, '1', '2022-07-12', 0, '', '3', '59', '2022-07-13', 132000.00, '', '4', '2022-12-16', '1', 'Selected for Thanjavur Location in Consultant role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', 'Offer Mail Sent', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-12 10:27:59', 60, '2022-07-12 06:38:08', 0, NULL, 1),
(9358, 'Sahana E', '25', '7259993295', '8197370127', 'esahana959@gmail.com', '1998-03-13', 24, '1', '2', 'Nethravathi', 'Business', 20000.00, 1, 0.00, 15000.00, 'Karnataka, challakere', 'Madivala', '2207120005', '', '1', 'upload_files/candidate_tracker/20721439788_Sahana.pdf', NULL, '1', '2022-07-12', 0, '0377', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-12 10:53:14', 1, '2022-07-12 10:57:09', 0, NULL, 1),
(9359, 'Sivaranjani.S', '6', '8248414248', '', 'siva19ranjani2001@gmail.com', '2001-05-19', 21, '1', '2', 'Sendan Amuthan .S', 'Musician', 24000.00, 1, 0.00, 15000.00, 'S-4 KGEYES Encalves Vannadhurai, Chennai -41.', 'Chennai', '2207120006', '', '1', 'upload_files/candidate_tracker/60371616560_RESUME.docx.pdf', NULL, '1', '2022-07-12', 0, 'P1251', '3', '59', '2022-07-13', 156000.00, '', '', '1970-01-01', '2', 'Selected for Syed team in Consultant Role', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-12 11:15:34', 60, '2022-07-12 02:46:42', 0, NULL, 1),
(9360, 'Sriranjani', '5', '9066075188', '', 'Sriranjaniyuvaraj1994@gmail.com', '1993-06-26', 29, '1', '1', 'Yucatan B', 'Finance', 60000.00, 0, 28000.00, 32000.00, 'Bangalore', 'Kolatur', '2207120007', '', '2', 'upload_files/candidate_tracker/49754636339_Ranjani.pdf', NULL, '1', '2022-07-12', 0, '55567', '8', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Hyd Candidate and we have freezed recruitment there', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-12 12:01:24', 60, '2022-07-12 03:00:58', 0, NULL, 1),
(9361, 'Melcho Ziegan Balg s', '31', '9585755283', '9150818508', 'melcho.6199@gmail.com', '1999-06-02', 23, '2', '2', 'Sundarraj', 'Press reporter', 20000.00, 2, 0.00, 15000.00, 'No 35, avuli medu st, 53.perumbakkam, Chengalpattu', 'Pallikkaranai', '2207120008', '1', '1', 'upload_files/candidate_tracker/88033078948_Melcho.resume.pdf', NULL, '1', '2022-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Nobasic ideas not much open with TxxampC Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-12 12:02:31', 1, '2022-07-12 12:07:28', 0, NULL, 1),
(9362, 'Ramachandran j', '13', '9080688826', '9698304212', 'ramachandran588282@gmail.com', '1999-05-13', 23, '2', '2', 'Jayabalan', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Tindivanam', 'Velachery', '2207120009', '1', '1', 'upload_files/candidate_tracker/68275387226_Ram.pdf', NULL, '1', '2022-07-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Nobasic Ideas Not Much Open With TxxampC Will Not Sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-12 12:02:50', 1, '2022-07-12 12:07:40', 0, NULL, 1),
(9363, 'Ajitha.V', '2', '9894023405', '9787560958', 'ajithaveerappan@gmail.com', '1999-02-04', 23, '2', '2', 'Veerappan K', 'Finance', 20000.00, 1, 0.00, 200000.00, 'Palani tamilnadu', 'Palani tamilnadu', '2207120010', '1', '1', 'upload_files/candidate_tracker/14660087635_ajitha.pdf', NULL, '3', '2022-07-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-12 03:33:28', 85, '2022-07-13 11:01:45', 0, NULL, 1),
(9364, '', '0', '6374828203', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-12 04:02:41', 0, NULL, 0, NULL, 1),
(9365, 'Vinoth', '2', '8925236831', '', 'm.vinoth2062002@gmail.com', '2002-06-20', 20, '2', '2', 'Muthu', 'Cooley', 12000.00, 1, 0.00, 250000.00, 'ponneri', 'ponneri', '2207120012', '1', '1', 'upload_files/candidate_tracker/91768706016_VINOTH RESUME (2).pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic ideas in HTML,CSS, JS Too Long Distance up and down86KMS,Not ready to relocate And Communication Average', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-12 06:00:14', 85, '2022-07-13 11:01:59', 0, NULL, 1),
(9366, '', '0', '8072641065', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207120013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-12 06:12:01', 0, NULL, 0, NULL, 1),
(9367, 'Shyam babu', '16', '7010428678', '', 'akashkutty.ka2@gmail.com', '2000-11-25', 21, '2', '2', 'Kumaran', 'Kooli', 130000.00, 1, 14000.00, 18000.00, 'Chennai', 'Chennai', '2207120014', '1', '2', 'upload_files/candidate_tracker/37552073761_Resume shyam babu K.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basic Ideas In MIS Too Long Distance Around 66KMS,Will Not Sustain And Communication Average', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-12 07:37:34', 85, '2022-07-13 11:02:14', 0, NULL, 1),
(9368, 'K.J.TEJA', '2', '9159908839', '', 'kjteja@gmail.com', '2001-03-13', 21, '2', '2', 'Jayaraman', 'Agriculture work', 72000.00, 0, 0.00, 15000.00, 'Ponneri', 'Ponneri', '2207120015', '1', '1', 'upload_files/candidate_tracker/41117763434_tejaresume2.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Ideas In HTML,CSS, JS Too Long Distance Up And Down86KMS,Not Ready To Relocate And Communication Average', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-12 09:21:51', 85, '2022-07-13 11:02:27', 0, NULL, 1),
(9369, '', '0', '9500133947', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207120016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-12 11:28:13', 0, NULL, 0, NULL, 1),
(9370, 'Parthiban', '13', '9626111738', '9361424295', 'Parthi1738@gmail.com', '1998-06-02', 24, '3', '2', 'Paranthaman P', 'Former', 12000.00, 1, 0.00, 10000.00, 'Nilgiris', 'Tambaram Chennai', '2207130001', '', '1', 'upload_files/candidate_tracker/25063353025_php sql python.pdf', NULL, '1', '2022-07-13', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate was interviewed and was on hold after 2nd round of interview need to give his confirmation', '2', '1', '', '1', '1', '', '2', '2022-07-16', '1', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-13 09:51:49', 60, '2022-07-13 10:26:13', 0, NULL, 1),
(9371, 'Ram Kumar N', '13', '6380893904', '', 'professional2022ramvig@gmail.com', '2002-03-31', 20, '2', '2', 'Narayanan K', 'Working in jwellery shop', 60000.00, 1, 0.00, 6000.00, 'Panruti', 'Panruti', '2207130002', '1', '1', 'upload_files/candidate_tracker/38518665416_myresume1.pdf', NULL, '2', '2022-07-13', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher have a basic knowledge in Skills interest to learn,ready to relocate kindly check and let me know your inputs', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-13 10:01:59', 1, '2022-07-13 10:06:06', 0, NULL, 1),
(9372, 'baskar', '13', '9626758090', '', 'bossbk259@gmail.com', '1998-09-28', 23, '2', '2', 'munusamy', 'daily wage', 8000.00, 1, 0.00, 10000.00, 'chengalpattu', 'chengalpattu', '2207130003', '1', '1', 'upload_files/candidate_tracker/47846693122_Baskaran Resume.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Ideas In PHP Skills Too Long Distance,Looking for the timings,Will Not Sustain And not ready to relocate', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-13 10:09:53', 1, '2022-07-13 10:34:41', 0, NULL, 1),
(9373, 'NAGOOR KANI', '4', '7395863558', '6380158602', 'Nkani433@gmail.com', '1997-10-12', 24, '2', '2', 'Akbar sheriff', 'Retired', 60000.00, 2, 8900.00, 15000.00, 'Cuddalore', 'Gundy', '2207130004', '1', '2', 'upload_files/candidate_tracker/83599069792_NagoorKaniresume1.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for our role need to open a lot will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-13 10:17:52', 85, '2022-07-13 11:02:39', 0, NULL, 1),
(9374, '', '0', '9698077877', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207130005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-13 10:26:10', 0, NULL, 0, NULL, 1),
(9375, 'P. Arunkumar', '4', '9597285582', '6380600548', 'Arunkumar.p0302@gmail.com', '2001-07-13', 21, '1', '2', 'Pongiyannan', 'Garden', 12000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2207130006', '', '1', 'upload_files/candidate_tracker/61351452790_null.pdf', NULL, '1', '2022-07-13', 0, 'CA133', '3', '59', '2022-07-15', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Erode - Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 10:44:33', 60, '2022-07-15 07:30:48', 0, NULL, 1),
(9376, 'SANTHOSH R', '13', '7010191631', '', 'santhoshhardik@gmail.com', '2000-08-31', 21, '3', '2', 'RAJENDRAN G', 'Driver', 20000.00, 1, 0.00, 15000.00, '7/11,Veeri kulam east lane,Nagapattinam', '7/11,Veeri Kulam East Lane,Nagapattinam', '2207130007', '', '1', 'upload_files/candidate_tracker/85723295608_SANTHOSR_43_951.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to open a lot have ideas only in HTML, CSS, not other ideas in Crud, PHP, Will not handle the pressure', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-13 10:59:58', 1, '2022-07-13 11:11:07', 0, NULL, 1),
(9377, 'saajidhullah', '13', '7305430105', '', 'saajidhullah07@gmail.com', '2000-10-18', 21, '2', '2', 'azenabegum', 'home made', 35000.00, 1, 0.00, 25000.00, 'karaikal', 'chennai', '2207130008', '1', '1', 'upload_files/candidate_tracker/42092930175_My Resume.pdf', NULL, '1', '2022-07-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have ideas in HTML,CSS,not in CRUD Doing ME in Correspondence have a plan to travel abroad in 1-2 yrs will not sustain', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-13 11:00:49', 60, '2022-07-16 05:20:48', 0, NULL, 1),
(9378, 'Akila S', '5', '9751323485', '', '14akilasukumar@gmail.com', '2007-07-13', 0, '2', '1', 'M Nandakumar', 'Employee', 30.00, 0, 25000.00, 30000.00, 'Chennai', 'Chennai', '2207130009', '1', '2', 'upload_files/candidate_tracker/93485676132_AKILA CV.docx', NULL, '1', '2022-07-13', 15, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Good No relevant Exp in Sales ,Fresher for this domain Salary Exp is high, Internal reference from Pamesh Prasanna', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-13 11:18:28', 60, '2022-07-13 12:57:00', 0, NULL, 1),
(9379, 'Gowtham', '16', '6383987223', '', 'sghavoc00@gmail.com', '2001-07-20', 20, '2', '2', 'Mathi vanan R', 'Cooly', 15000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2207130010', '1', '2', 'upload_files/candidate_tracker/82205088565_GOWTHAM Resume1 2021(1).pdf', NULL, '1', '2022-07-13', 20, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in MIS too Long Distance around 66KMS,will not sustain and communication Average', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-13 11:35:23', 85, '2022-07-13 12:06:34', 0, NULL, 1),
(9380, 'balachandhar', '13', '8870265880', '', 'prakashbala508@gmail.com', '1996-06-03', 26, '2', '2', 'malayappan', 'messon', 25000.00, 2, 0.00, 15000.00, 'dindugul', 'chennai', '2207130011', '1', '1', 'upload_files/candidate_tracker/7140560301_balaresume.pdf', NULL, '1', '2022-07-13', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate should come back with his confirmation,having basic knowledge in Skills,can be trained but sustainability doubts', '2', '1', '0', '1', '1', '0', '2', '2022-07-15', '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-13 11:43:18', 1, '2022-07-13 12:27:06', 0, NULL, 1),
(9381, 'Kodandaramu V', '5', '8553744402', '', 'kodandvaradaraju.kv@gmail.com', '1994-06-11', 28, '1', '1', 'Sravani', 'Employee', 35000.00, 2, 22000.00, 26000.00, 'Sunkadakatte Bengaluru', 'Sunkadakatte Bengaluru', '2207130012', '', '2', 'upload_files/candidate_tracker/31465873490_Kodand Ram Resume 2022.docx', NULL, '1', '2022-07-13', 0, 'p1336', '3', '59', '2022-07-18', 310000.00, '', '4', '2023-01-18', '1', 'Selected for Manivel Team with PF/PT', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 12:04:15', 60, '2022-07-16 04:44:11', 0, NULL, 1),
(9382, 'Thameem Fathima', '5', '7305816162', '9884794771', 'thameemfathima240@gmail.com', '1999-02-04', 23, '1', '1', 'Mohammed Yusuff', 'Cooly', 10000.00, 1, 15000.00, 20000.00, 'No 14/48 annasalai 3rd St valasaravakkam ch95', 'No 14/48 annasalai 3rd St valasaravakkam ch95', '2207130013', '', '2', 'upload_files/candidate_tracker/53147825259_Document 205-1.pdf', NULL, '1', '2022-07-13', 0, 'P1302', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our process .....', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 01:00:05', 85, '2022-07-14 05:37:23', 0, NULL, 1),
(9383, 'Yasmeen banu', '5', '7305693317', '7010498020', 'nazriyabanu530@gmail.com', '2000-06-29', 22, '1', '1', 'Hameedha', 'House wife', 10000.00, 1, 0.00, 20000.00, 'No,25th Anna nager 4th cross streets pammal', 'No,25th Anna Nager 4th Cross Streets Pammal', '2207130014', '', '2', 'upload_files/candidate_tracker/6378577623_pdf_converter_202207133417.pdf', NULL, '1', '2022-07-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suit For Our Process ...', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 01:00:34', 85, '2022-07-14 05:38:11', 0, NULL, 1),
(9384, '', '0', '6380893908', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207130015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-13 01:28:49', 0, NULL, 0, NULL, 1),
(9385, 'Krishna Raja', '13', '7402168263', '', 'krishnaking210@gmail.com', '2000-02-10', 22, '2', '2', 'Kalisamy', 'Farmer', 8000.00, 4, 0.00, 15000.00, 'Tirunelveli', 'Chennai', '2207130016', '1', '1', 'upload_files/candidate_tracker/46031597487_Krishna_Raja_Resume.pdf', NULL, '1', '2022-07-13', 0, '', '1', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-13 01:57:59', 60, '2022-07-16 05:19:56', 0, NULL, 1),
(9386, 'Ian Gladwin Alva', '2', '9591518013', '', 'ianalva1998@gmail.com', '1998-07-20', 23, '3', '2', 'Ivan Aquin Alva', 'Accountant', 50000.00, 1, 0.00, 400000.00, 'Udupi', 'Chennai', '2207130017', '', '1', 'upload_files/candidate_tracker/92769749699_Gladwin CV.pdf', NULL, '1', '2022-07-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has knowledge in HTML, CSS only\nxxamp long distance too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-13 04:11:42', 85, '2022-07-13 05:38:10', 0, NULL, 1),
(9387, '', '0', '6374775349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207130018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-13 05:39:52', 0, NULL, 0, NULL, 1),
(9388, '', '0', '6385797826', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207130019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-13 06:27:33', 0, NULL, 0, NULL, 1),
(9389, 'Arjun Kumar', '2', '8124626095', '9344093024', 'kumar.jocky123@gmail.com', '1997-11-06', 24, '2', '2', 'Parasuranan', 'Tiles worker', 25000.00, 2, 0.00, 15000.00, 'Pondicherry', 'Tenamypet, chennai', '2207140001', '1', '1', 'upload_files/candidate_tracker/32986445557_ArjunKumar_P_Resume_1977 (4).PDF', NULL, '1', '2022-07-14', 0, '', '3', '59', '2022-07-15', 96000.00, '', '', '1970-01-01', '2', 'Selected by Gokul 7 days training based on that only will get confirm', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-14 10:11:54', 60, '2022-07-14 07:33:33', 0, NULL, 1),
(9390, 'Dinesh Kumar P', '2', '6381498349', '', 'dineshpalani2001@gmail.com', '2002-02-05', 20, '2', '2', 'Palani S', 'driver', 15000.00, 1, 0.00, 20000.00, 'Cheyyur', 'chrompet Chennai', '2207140002', '1', '1', 'upload_files/candidate_tracker/38632720837__Template_1654769880602.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas not suitable for our Roles will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:13:14', 60, '2022-07-16 05:24:36', 0, NULL, 1),
(9391, 'S.Ramesh', '2', '9626376650', '7094280708', 'raj893478@gmail.com', '1997-08-09', 24, '2', '2', 'S Shanthi', 'House wife', 15000.00, 1, 0.00, 15000.00, 'Dindigul , k.dharmathu patti', 'T. Nagar , chennai', '2207140003', '1', '1', 'upload_files/candidate_tracker/42459587971_RAMESH .pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Much prefer to work in Java Language not suits for our Roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:19:34', 60, '2022-07-16 05:23:43', 0, NULL, 1),
(9392, 'Divyakavi K', '11', '9841945288', '', 'k.divyakavi.chn@gmail.com', '1998-06-08', 24, '2', '2', 'Kumar', 'Clerk', 25000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2207140004', '1', '1', 'upload_files/candidate_tracker/5180930833_Divyakavi Resume 2022 (1).pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Bit Attitude,Already holding offers with good Pay will not join for less not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-14 10:33:57', 1, '2022-07-14 10:39:10', 0, NULL, 1),
(9393, 'Karthik. S', '2', '9080581548', '', 'akashkarthickk@gmail.com', '2001-06-11', 21, '2', '2', 'Punitha. S', 'Housewife', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2207140005', '1', '1', 'upload_files/candidate_tracker/75949881123_karthik-resume.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Final Round Reject by Kavya not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:34:51', 60, '2022-07-16 05:23:09', 0, NULL, 1),
(9394, 'R.Sukumaran', '13', '9150167175', '', 'rsukumaran94@gmail.com', '1995-05-26', 27, '2', '2', 'Rajendran M', 'Former', 20000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2207140006', '1', '1', 'upload_files/candidate_tracker/1988976953_sukumaran _1656902449535.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No ideas in Skills have exp in non voice no communication not suitable for other Roles', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-14 10:39:16', 1, '2022-07-14 10:43:50', 0, NULL, 1),
(9395, 'Manojkumar R', '2', '8675595100', '6380912819', 'rajamanoj100@gmail.com', '1999-12-28', 22, '2', '2', 'P.Raju', 'Gold smith', 15000.00, 2, 0.00, 15000.00, 'Theni', 'Chennai', '2207140007', '1', '1', 'upload_files/candidate_tracker/7823094949_Manojkumar Resume.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No ideas in the skills and sustainability doubts not much active', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:41:37', 60, '2022-07-16 05:21:58', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9396, 'MAREESWARAN J', '2', '6385817055', '', 'Jsmareeswaran47@gmail.com', '2001-03-25', 21, '2', '2', 'Jayaram G', 'Labour', 10000.00, 1, 0.00, 15000.00, 'Viswanatham', 'chennai', '2207140008', '1', '1', 'upload_files/candidate_tracker/18527427874_Mr.Mareeswaran JSK.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very Slow No basic ideas not suitable will not sustainxquot', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-14 10:45:57', 60, '2022-07-16 05:24:13', 0, NULL, 1),
(9397, 'JOHNSON', '13', '8531827174', '9442919082', 'johnson962001@gmail.com', '2001-06-09', 21, '2', '2', 'AROCKIASAMY', 'Former', 20000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Medavagam', '2207140009', '1', '1', 'upload_files/candidate_tracker/59154496772_Johnson A Resume.pdf', NULL, '1', '2022-07-14', 0, '', '4', '63', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic ideas in the PHP can be trained kindly check and let me know\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-14 10:46:30', 85, '2022-07-14 02:35:35', 0, NULL, 1),
(9398, 'Ganne lok preetham', '25', '9182350145', '8499020285', 'preethamchowdary2000@gmail.com', '2000-05-04', 22, '1', '2', 'G SWARUP', 'Farming', 20000.00, 1, 0.00, 14000.00, 'Bengaluru', 'Bengaluru', '2207140010', '', '1', 'upload_files/candidate_tracker/27087693537_resume.pdf', NULL, '1', '2022-07-14', 0, '0377', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 10:49:38', 1, '2022-07-14 11:10:14', 0, NULL, 1),
(9399, 'Arun', '13', '8098876767', '9994143131', 'arunsanthi2110@gmail.com', '1993-10-21', 28, '2', '2', 'Anbudurai', 'Farmers', 10000.00, 1, 0.00, 17000.00, 'Kulithalai,karur.', 'Urapakkam,Chennai.', '2207140011', '1', '1', 'upload_files/candidate_tracker/40103986074_New Arun RESUME--.pdf', NULL, '1', '2022-07-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No ideas in JS focus in Java openings Too long distance will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-14 10:54:38', 1, '2022-07-14 11:00:15', 0, NULL, 1),
(9400, 'Rajesh Kannan S', '2', '7395981062', '', 'rajeshkannansubramanian10@gmail.com', '2001-04-10', 21, '2', '2', 'Subramanian M', 'Tailor', 15000.00, 3, 0.00, 20000.00, 'Chennai', 'Chennai', '2207140012', '1', '1', 'upload_files/candidate_tracker/3413227903_RAJESH', NULL, '1', '2022-07-14', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average Skills but her sister in IT Domain already referred for some roles sustainability Doubt if he coems back let us see', '2', '2', '', '1', '1', '', '2', '2022-07-18', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-14 10:59:03', 85, '2022-07-14 02:34:50', 0, NULL, 1),
(9401, 'J narmadha', '31', '6374680003', '8124838287', 'narmadha1214@gmail.com', '2001-01-16', 21, '3', '2', 'S Jaya Kumar', 'Iron man', 9000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennia', '2207140013', '', '1', 'upload_files/candidate_tracker/19644723116_Minimalist CV Resume (3).pdf', NULL, '1', '2022-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 11:00:31', 1, '2022-07-14 11:21:47', 0, NULL, 1),
(9402, 'Siva Rajani P', '31', '9087313266', '', 'sivaranjani6672@gmail.com', '2001-05-25', 21, '3', '2', 'J.Parthiban', 'Driver', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2207140014', '', '1', 'upload_files/candidate_tracker/31034640360_Siva_Ranjani P_Resume_13-07-20.pdf', NULL, '1', '2022-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 11:00:42', 1, '2022-07-14 11:11:17', 0, NULL, 1),
(9403, 'Sudheer Kumar Ummanni', '25', '8499020285', '8179999118', 'sudheerchowdary69969@gmail.com', '2000-12-16', 21, '1', '2', '0377', 'Farmer', 30000.00, 1, 0.00, 16000.00, 'Marsandra Appartments, dodballapura road', 'Marsandra Appartments, dodballapura road', '2207140015', '', '1', 'upload_files/candidate_tracker/25545888026_sudheer RESUME.pdf', NULL, '1', '2022-07-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 11:04:59', 1, '2022-07-14 11:12:03', 0, NULL, 1),
(9404, '', '0', '7094280708', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207140016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-14 11:15:09', 0, NULL, 0, NULL, 1),
(9405, 'Gayathiri G', '22', '9025018768', '', 'gayathiriliya644@gmail', '2000-03-13', 22, '2', '2', 'Jothilakshmi G', 'Businesses', 25000.00, 1, 0.00, 15000.00, 'Mutharaiyarpalayam , Puducherry -605009', 'Mutharaiyarpalayam, Puducherry - 605009', '2207140017', '1', '1', 'upload_files/candidate_tracker/11364054918_GayathiriResume.pdf', NULL, '3', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain not much comfort with TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-14 11:19:49', 85, '2022-07-15 10:09:42', 0, NULL, 1),
(9406, 'Elangeswaran. P', '10', '7338943924', '', 'Elangeswaran001@gmail.com', '2000-06-01', 22, '1', '2', 'Elangeshwaran', 'Nil', 9000.00, 1, 2.00, 2.00, 'Thouripakkam', 'Thouripakkam', '2207140018', '', '2', 'upload_files/candidate_tracker/69099281960_Adobe Scan 12-Apr-2022.pdf', NULL, '3', '2022-07-14', 15, '55580', '3', '59', '2022-07-15', 262000.00, '', '6', '2022-08-23', '2', 'Selected for GK sir in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-14 11:28:59', 60, '2022-07-14 07:30:16', 0, NULL, 1),
(9407, 'Vemula syam prasad', '5', '9700717051', '', 'Syamprasad00@gmail.com', '1998-09-08', 23, '1', '2', 'Madhu', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Bangalore', 'Bangalore', '2207140019', '', '1', 'upload_files/candidate_tracker/42840342199_V.syam resume.pdf', NULL, '1', '2022-07-14', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-14 01:41:32', 1, '2022-07-14 01:45:09', 0, NULL, 1),
(9408, 'Syed Ibrahim', '31', '8939397243', '', 'syedibrahimsm33@gmail.com', '1995-08-30', 26, '2', '1', 'Afreena', 'None', 15000.00, 1, 0.00, 15000.00, 'Perumbakkam, Chennai', 'Perumbakkam, Chennai', '2207140020', '1', '1', 'upload_files/candidate_tracker/85083646599_syed Resume.docx', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Technical Round Rejected - Have basic knowledge and the distance too long will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-14 03:40:58', 85, '2022-07-15 10:10:02', 0, NULL, 1),
(9409, 'Sathiyapriya N', '2', '8270348761', '8870411782', 'Sathiyapriya1181999@gmail.COM', '1999-08-11', 22, '3', '1', 'Gomathi N', 'Toiler', 15000.00, 0, 0.00, 15000.00, 'Villupuram', 'Chennai', '2207150001', '', '1', 'upload_files/candidate_tracker/69740086831_sathiyapriya (resume).pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'need to open a lot not much with basic ideas given time to learn if she come bank let us try\n', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 10:10:07', 1, '2022-07-15 10:23:37', 0, NULL, 1),
(9410, 'M.KABIN', '13', '6383704120', '8807270901', 'ramkabin8344@gmail.com', '1999-01-04', 23, '2', '2', 'M.KRISHNAVENI', 'House wife', 10000.00, 0, 0.00, 350000.00, 'Cumbum', 'Cumbum', '2207150002', '1', '1', 'upload_files/candidate_tracker/17200675953_kabin resume (1).pdf', NULL, '3', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in Skills, need to learn If he come back after learning let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-15 10:12:01', 60, '2022-07-15 04:13:36', 0, NULL, 1),
(9411, 'Krithika. S', '11', '9962486605', '9841240453', 'Krithika042@gmail.com', '1999-12-20', 22, '3', '2', 'LALITHA N M', 'Home maker', 17000.00, 0, 17000.00, 22000.00, 'Villivakkam, chennai', 'Villivakkam, Chennai', '2207150003', '', '2', 'upload_files/candidate_tracker/76081027876_CV_2022071422395521.pdf', NULL, '1', '2022-07-15', 25, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication OK,Applied for HR Fresher Profile Checked for Mutual Fund too Asked her to wait for final round but the candidate Left', '6', '1', '0', '1', '1', '0', '2', '2022-07-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 10:26:20', 1, '2022-07-15 10:36:29', 0, NULL, 1),
(9412, 'Akash j', '31', '6369316574', '9787967193', 'akashgautham777@gmail.com', '1999-04-13', 23, '2', '2', 'B.Jayakumar', 'Marking', 15000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Velachery chennai', '2207150004', '1', '1', 'upload_files/candidate_tracker/82036246371_resume(2).pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas and looking for Java Openings much', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-15 10:38:59', 85, '2022-07-15 11:17:47', 0, NULL, 1),
(9413, 'Sangeetha k', '5', '8072698997', '', 'Sangeethasri7298@gmail.com', '1998-02-07', 24, '3', '2', 'Krishnamurthy n', 'Retired govt servant', 30000.00, 0, 10500.00, 25000.00, 'Karaikudi', 'Chennai', '2207150005', '', '2', 'upload_files/candidate_tracker/38983115843_SodaPDF-converted-sangeetha resume updated.pdf', NULL, '1', '2022-07-15', 0, '', '3', '59', '2022-07-25', 252000.00, '', '5', '1970-01-01', '2', 'Selected for Shanmugam Team Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-15 10:40:35', 60, '2022-07-23 05:02:16', 0, NULL, 1),
(9414, 'Banupriya', '5', '7550101180', '9345763961', 'banuumapathy96@gmail.com', '1996-12-13', 25, '3', '1', 'Vijay B', 'Car buying selling', 40000.00, 0, 11000.00, 25000.00, 'Chennai', 'Chennai', '2207150006', '', '2', 'upload_files/candidate_tracker/73556802925_Resume new.pdf', NULL, '1', '2022-07-15', 0, '', '3', '59', '2022-07-25', 252000.00, '', '5', '1970-01-01', '2', 'Selected for GK Sir Team Staff Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-15 10:50:01', 60, '2022-07-23 05:03:42', 0, NULL, 1),
(9415, 'Dharani.S', '13', '8610588128', '', 'dharaniselva1998@gmail.com', '1998-07-23', 23, '3', '2', 'Parent', 'Farmer', 30000.00, 1, 0.00, 300000.00, 'C53 municipal Colony Medical college rd ,Thanjavur', 'SAS womens hostel omr road kandanchavadi,perungudi', '2207150007', '', '1', 'upload_files/candidate_tracker/1937689089_Dharani Selvakumar (3).pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Completed Course in Accord,Looking for Java xxamp Web Designing but not much storing in skills need to learn', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-15 10:51:04', 85, '2022-07-15 11:16:59', 0, NULL, 1),
(9416, 'K Chozharajan', '4', '7358889326', '9597964462', 'chozhajackson111@gmail.com', '1999-06-23', 23, '2', '2', 'Kaliyamoorthy', 'Self Employed', 18000.00, 0, 14000.00, 15000.00, 'Ayyampettai', 'Thanjavur', '2207150008', '1', '2', 'upload_files/candidate_tracker/98766456675_My Resume.pdf', NULL, '1', '2022-07-15', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-15 11:15:35', 60, '2022-07-15 12:25:43', 0, NULL, 1),
(9417, 'Rishikesan G G', '31', '8072747610', '', 'rishikavin2621@gmail.com', '2000-04-21', 22, '2', '2', 'Govindharaman G S', 'Weaver', 30000.00, 4, 0.00, 12000.00, 'Paramakudi', 'Chennai', '2207150009', '1', '1', 'upload_files/candidate_tracker/20299680028_Rishikesan.Resume.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic ideas not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-15 11:36:39', 60, '2022-07-15 12:26:33', 0, NULL, 1),
(9418, 'Swarna varsha', '23', '9884947970', '', 'swarnavarsha842@gmail.com', '2001-12-30', 20, '3', '2', 'Balaji', 'Auto driver', 30000.00, 1, 0.00, 15000.00, 'Porur Chennai', 'Porur Chennai', '2207150010', '', '1', 'upload_files/candidate_tracker/34705300442_Varsha Updated.docx', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have mentioned about flutter asked the candidate come for final disussion after lunch but no response after', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 11:42:24', 1, '2022-07-15 11:58:44', 0, NULL, 1),
(9419, 'E.Indhumathi', '4', '9123530782', '9790383768', 'im517581@gmail.com', '2000-08-09', 21, '3', '2', 'C.Ekambaram', 'Painter', 30000.00, 2, 0.00, 12000.00, 'No:1/142,Gangai amman kovil St ,Ramapuram,Ch-89.', 'No:1/142 Gangai amman kovil st,Ramapuram ch-89', '2207150011', '', '1', 'upload_files/candidate_tracker/1022989245_INDHU RESUME.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable Will Not Sustain Have A Plan To In Java Profile', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 11:57:12', 1, '2022-07-15 12:15:09', 0, NULL, 1),
(9420, 'Lingeswaran', '6', '8124330672', '', 'Hariishofficial02@gmail.com', '2003-06-14', 19, '1', '2', 'Sivakumar', 'Electronician', 10000.00, 1, 0.00, 15000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2207150012', '', '1', 'upload_files/candidate_tracker/53396243754_HarishResume.docx.pdf', NULL, '1', '2022-07-15', 0, 'P1325', '3', '59', '2022-07-18', 185000.00, '', '3', '2022-07-26', '1', 'staff role Kannan Team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-15 11:59:35', 60, '2022-07-16 06:50:59', 0, NULL, 1),
(9421, 'K.Preethi', '4', '7358590227', '9094779347', 'preethibe1098@gmail.com', '1998-10-10', 23, '3', '2', 'Kanniyappan', 'Mason', 30000.00, 2, 0.00, 12000.00, 'KKnagar', 'Mettupalayam', '2207150013', '', '1', 'upload_files/candidate_tracker/70286913417_CV_2022-05-25-071920.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable will not sustain have a plan to in Java Profile', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 12:03:16', 1, '2022-07-15 12:14:59', 0, NULL, 1),
(9422, 'REVATHY', '4', '8122800429', '7338755589', 'remurevathy2424@gmail.com', '2007-07-15', 15, '3', '1', 'Muthu saravanan', 'Sales executive', 25000.00, 3, 12000.00, 13000.00, 'West mambalam', 'West mambalam', '2207150014', '', '2', 'upload_files/candidate_tracker/39725514065_Revathy Resume.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp inTelecalling but communication Average and also she looks for Compounder Role(Previous One)', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-15 12:31:02', 1, '2022-07-15 12:46:09', 0, NULL, 1),
(9423, 'Rohith k', '2', '9677463327', '', 'rohith1810pd@gmail.com', '2000-10-18', 21, '2', '2', 'Parrnt', 'Business', 60000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2207150015', '1', '1', 'upload_files/candidate_tracker/96607816384_Rohith K (3).pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Holding an offer with Netaccess for 15K 25th joining in the mean time he is looking for more', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-15 12:45:47', 85, '2022-07-15 06:41:06', 0, NULL, 1),
(9424, 'Madhubalan s', '11', '9751554255', '9445652843', 'madhubalans.official@gmail.com', '2002-03-25', 20, '2', '2', 'Samiyappan v', 'Business', 500000.00, 1, 0.00, 300000.00, 'No 18, jangalapatti, PALLAPATTI, karur', 'No 10, kamarajar Salai, Palani St, Manali, 600068', '2207150016', '1', '1', 'upload_files/candidate_tracker/74362791966_Madhubalan.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a month intern exp and the salary Exp is high,not familiar with the Skills,Need to train a lot not ok with TxxampC', '6', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-15 12:57:46', 85, '2022-07-18 12:03:08', 0, NULL, 1),
(9425, 'R Chidambarasi Keerthiga', '13', '7305615716', '9384695331', 'keerthike35@gmail.com', '2001-10-03', 20, '2', '2', 'Rajasekar M', 'Daily wages', 72000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2207150017', '1', '1', 'upload_files/candidate_tracker/69699567725_keerthiga cv.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no ideas in CRUD operations,Not open for Timings Too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-15 01:14:53', 85, '2022-07-15 06:40:34', 0, NULL, 1),
(9426, 'SELVAMANI.P', '31', '9585122683', '6380098585', 'Maniselva.pt@gmail.com', '1995-04-03', 27, '2', '2', 'Thamizhselvi', 'Formar', 18000.00, 5, 0.00, 10000.00, 'Cuddalore', 'Chennai', '2207150018', '1', '1', 'upload_files/candidate_tracker/14249196741_Resume.pdf', NULL, '1', '2022-07-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for MERN,Career Gap no basic ideas in the Skills given time to learn if he come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-15 03:12:34', 85, '2022-07-18 12:03:46', 0, NULL, 1),
(9427, 'kamalesh kumar s', '2', '9176463639', '', 'kamaleshk610@gmail.com', '1997-09-29', 24, '2', '2', 'sudhaa', 'worker', 30000.00, 1, 0.00, 30000.00, 'ayanavaram', 'ayanavaram', '2207150019', '1', '1', 'upload_files/candidate_tracker/32022607638_Kamalesh CV2.pdf', NULL, '1', '2022-07-18', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher not much strong with the skills ,need to come back with his confirmation.', '2', '1', '0', '1', '1', '0', '2', '2022-07-21', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-07-15 06:24:00', 1, '2022-07-15 06:32:45', 0, NULL, 1),
(9428, 'Rameshkumar p', '13', '8508241287', '', 'rameshkumarp272@gmail.com', '1999-03-04', 23, '2', '2', 'Palanivel', 'Farmer', 76000.00, 2, 0.00, 16000.00, 'Srimushnam,Cuddalore dist.', 'West K.K Nagar, Chennai', '2207160001', '1', '1', 'upload_files/candidate_tracker/47728818108_my resume.pdf', NULL, '1', '2022-07-16', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 profile,kindly check for PHP and let me know your inputs ji\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 09:41:37', 1, '2022-07-16 09:48:58', 0, NULL, 1),
(9429, 'Abhilash Biswal', '31', '8328837940', '', 'abhikanha12345@gmail.com', '1995-05-13', 27, '2', '2', 'Nagesh Chandra biswal', 'Non', 400000.00, 1, 0.00, 20000.00, 'Kankalu,Dhenkanal,odisha', 'Bengaluru, karnataka', '2207160002', '1', '1', 'upload_files/candidate_tracker/71713573214_Abhilash_Biswal _Resume.pdf', NULL, '2', '2022-07-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-16 09:45:32', 1, '2022-07-16 10:09:03', 0, NULL, 1),
(9430, '', '0', '6383579073', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207160003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-16 09:56:52', 0, NULL, 0, NULL, 1),
(9431, 'Kalaikovan B I', '13', '9629287252', '', 'kalaikovanb143@gmail.com', '2000-03-15', 22, '2', '2', 'Balamurugan T', 'Farmet', 20000.00, 1, 0.00, 15000.00, 'Someswaram, Thanjavur.', 'Ondikuppam, Tiruvallur.', '2207160004', '1', '1', 'upload_files/candidate_tracker/41348658373_Cv updation.pdf', NULL, '1', '2022-07-16', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have Exp in Core Field Can be trained kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 10:21:14', 1, '2022-07-16 10:25:19', 0, NULL, 1),
(9432, 'Veeramuthu', '4', '6379542136', '', 'typhon1033@gmail.com', '2001-03-13', 21, '2', '2', 'Mari muthu', 'Bussiness', 10000.00, 1, 0.00, 15000.00, 'Maduravyol', 'Maduravyol', '2207160005', '1', '1', 'upload_files/candidate_tracker/23588618235_CV_2022070710463949.pdf', NULL, '1', '2022-07-16', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-07-16 10:47:21', 1, '2022-07-16 05:54:47', 0, NULL, 1),
(9433, 'V.Sivaranjani', '4', '8124271149', '8220676705', 'sivaranjanivenu2002@gmail.com', '2002-11-07', 19, '3', '2', 'S.Venugopal', 'Auto driver', 10000.00, 0, 0.00, 14000.00, 'Thanjavur', 'Thanajvur', '2207160006', '', '1', 'upload_files/candidate_tracker/74647045506_1657639455068_SIVARANJANI RESUME.pdf', NULL, '1', '2022-07-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-16 11:16:22', 1, '2022-07-16 11:28:47', 0, NULL, 1),
(9434, 'S.jayamurugan', '2', '8248011027', '9445748148', 'mukeshkanna110@gmail.com', '2002-03-26', 20, '2', '2', 'Sakthivel', 'Business', 30000.00, 1, 0.00, 225000.00, 'Porur chennai', 'Porur chennai', '2207160007', '1', '1', 'upload_files/candidate_tracker/27290658769_Modern Professional Resume (1).pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No ideas in Javascript,will not run in a long not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-16 11:59:24', 92, '2022-07-21 11:10:04', 0, NULL, 1),
(9435, 'R. Bhuvaneshwari', '13', '7550283138', '9840543526', 'rbhuvana006@gmail.com', '1998-10-27', 23, '2', '2', 'Rajendran', 'Painter', 15000.00, 1, 0.00, 15000.00, 'Kovilambakkam', 'Kovilambakkam', '2207160008', '1', '1', 'upload_files/candidate_tracker/32627673968_Bhuvana resume-3.pdf', NULL, '1', '2022-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic ideas she was into different Domain need to learn a lot,Already she holds an offer and look for some more distance also need to focus', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 12:26:43', 1, '2022-07-16 12:31:33', 0, NULL, 1),
(9436, 'harsh chatrani', '31', '9884343481', '', 'harsh7v82@gmail.com', '2002-02-25', 20, '2', '2', 'indhrani.m', 'hospital management', 20000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2207160009', '1', '1', 'upload_files/candidate_tracker/97986644514_Harsh2CV.pdf', NULL, '1', '2022-07-21', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for React Can give a try Thinking a lot with TxxampC,if he come back let us try', '2', '2', '', '1', '1', '', '2', '2022-07-25', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-16 12:40:47', 92, '2022-07-19 03:13:59', 0, NULL, 1),
(9437, 'MAHALAKSHMI K', '13', '8778547463', '8098049732', 'mahalakshu24@gmail.com', '1997-06-12', 25, '2', '2', 'Kolanjiyappan', 'Daily wages', 15000.00, 1, 0.00, 18000.00, 'Paramanatham', 'Guindy', '2207160010', '1', '1', 'upload_files/candidate_tracker/1021029364_Maha.pdf', NULL, '1', '2022-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic Skills need time to learn,if she come back after learning let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 01:22:56', 1, '2022-07-16 02:18:14', 0, NULL, 1),
(9438, 'SARATH C', '4', '8754876143', '', 'Sarathsro143@gmail.com', '2001-06-16', 21, '1', '2', 'Sivagami v', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Krishnagiri', 'Madiwala', '2207160011', '', '1', 'upload_files/candidate_tracker/70279663718_SARATH.pdf', NULL, '1', '2022-07-16', 0, 'Cafsusr00272', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-16 01:27:14', 1, '2022-07-16 01:43:59', 0, NULL, 1),
(9439, 'Dhanaseelan.M', '4', '8870559644', '', 'dhanaseelandhana07@gmail.com', '2001-08-29', 20, '1', '2', 'Madhan.P', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Dharumapuri', 'Hannamalihalli', '2207160012', '', '1', 'upload_files/candidate_tracker/69983609065_DHANASEELAN RESUME.doc', NULL, '1', '2022-07-16', 0, 'Cafsusr00272', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-16 01:27:43', 1, '2022-07-16 01:42:23', 0, NULL, 1),
(9440, 'S DINESH', '13', '8525804771', '6379867676', 'dineshoffice635803@gmail.com', '1999-05-15', 23, '2', '2', 'Saker', 'Former', 20000.00, 4, 0.00, 20000.00, 'Vellore', 'Vellore', '2207160013', '1', '1', 'upload_files/candidate_tracker/28623917932_Dinesh web resume.pdf', NULL, '1', '2022-07-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable no skills knowledge and will not handle our pressure and sustainability Doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-16 01:29:01', 1, '2022-07-16 01:35:34', 0, NULL, 1),
(9441, 'E.DUVARAGASH', '6', '9566181291', '8190899199', 'duvara5603@gmail.com', '1997-11-01', 24, '1', '1', 'Radhika', 'Housewife', 35000.00, 0, 0.00, 16000.00, 'Vadapalani', 'Vadapalani', '2207160014', '', '2', 'upload_files/candidate_tracker/20788566803_Duvaragash.Pdf', NULL, '1', '2022-07-16', 0, 'P1036', '3', '59', '2022-07-18', 230000.00, '', '4', '2022-09-15', '1', 'Selected for RE,As finalised by Ramesh We processed with this package', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-16 02:09:09', 60, '2022-07-18 09:45:53', 0, NULL, 1),
(9442, 'Sakthi Priya', '4', '6385463882', '7871062560', 'shakthipriya200228@gmail.com', '2002-05-28', 20, '2', '2', 'Subramani', 'Ex service man', 17.00, 2, 0.00, 15000.00, '423/24,21st nethaji street gkm colony ch-82', '423/24,22st nethaji street gkm colony ch-82', '2207160015', '1', '1', 'upload_files/candidate_tracker/70637759703_Shakti Resume.pdf', NULL, '1', '2022-07-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-16 06:07:07', 85, '2022-07-18 09:58:28', 0, NULL, 1),
(9443, 'Rajasundhar S', '2', '9791852209', '', 'rajasundhar1998@gmail.com', '1998-04-30', 24, '2', '2', 'Sevappurajan S', 'Security', 9000.00, 1, 0.00, 20000.00, 'Madurai', 'Chennai', '2207160016', '1', '1', 'upload_files/candidate_tracker/5839139484_Resume.pdf', NULL, '2', '2022-07-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-16 07:06:14', 85, '2022-07-19 12:34:41', 0, NULL, 1),
(9444, 'Ishwariya . G', '11', '7358771537', '9500092240', 'anuaishu103@gmail.com', '2001-06-03', 21, '4', '2', 'Gajendran', 'Daily wages', 15000.00, 1, 0.00, 1600.00, 'Chennai', 'Chennai', '2207160017', '', '1', 'upload_files/candidate_tracker/74597074003_jaelishu resume.docx', NULL, '1', '2022-07-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-16 10:07:44', 1, '2022-07-16 10:12:13', 0, NULL, 1),
(9445, '', '0', '6379221862', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207160018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-16 11:24:09', 0, NULL, 0, NULL, 1),
(9446, '', '0', '8939615468', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-17 04:57:44', 0, NULL, 0, NULL, 1),
(9447, 'Gayathri T', '11', '7904115419', '9940816006', 'gayathriloki1@gmail.com', '1997-07-21', 24, '2', '2', 'M Thangavel Reddy', 'Ex-army', 600000.00, 1, 0.00, 20000.00, 'Arakkonam', 'Arakkonam', '2207180001', '1', '1', 'upload_files/candidate_tracker/59233468546_GAYATHRI RESUME.pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance communication Average,Not ready to relocate will not sustain\n', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 09:17:19', 1, '2022-07-18 09:21:54', 0, NULL, 1),
(9448, 'RAJESH G', '13', '8525020199', '9123555935', 'rajeshgunasekaran72@gmail.com', '2000-04-18', 22, '2', '2', 'K GUNASEKARAN', 'GOVERNMENT EMPLOYEE', 15000.00, 1, 25000.00, 35000.00, 'THIRUVALLUR', 'THIRUVALLUR', '2207180002', '1', '2', 'upload_files/candidate_tracker/8012613500_Resume 1.pdf', NULL, '1', '2022-07-18', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He prefer to work in Java openings not suitable\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-18 10:07:15', 1, '2022-07-18 10:17:33', 0, NULL, 1),
(9449, 'Ponkumar', '31', '6382394993', '', 'ponkumarbalasubramanian@gmail.com', '1998-12-12', 23, '2', '2', 'Balasubramanian', 'Bachelor of engineering', 15000.00, 3, 0.00, 14000.00, 'Tirunelveli', 'Chennai', '2207180003', '1', '1', 'upload_files/candidate_tracker/39015163097_MyResume (1).pdf', NULL, '3', '2022-07-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not much strong with the skills,seems to be very slow 2nd round rejected by manikandan', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-18 10:42:45', 60, '2022-07-18 07:08:30', 0, NULL, 1),
(9450, 'Paranthaman', '31', '9894454155', '9500283251', 'thamanparan257@gmail.com', '1999-06-03', 23, '2', '2', 'Ravi', 'System Administrator', 15000.00, 2, 0.00, 400000.00, 'Chithamur', 'Chithamur', '2207180004', '1', '1', 'upload_files/candidate_tracker/2144463352_RESUME_-_PARANTHAMAN-converted_original[1].pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance need to relocate sustainability doubt,requested for a time to confirm with parents but left without attending the 2nd level', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 11:10:40', 1, '2022-07-18 11:41:33', 0, NULL, 1),
(9451, 'SARAVANA KUMAR M', '13', '7604905669', '', 'msaravanakumarbca@gmail.com', '2000-02-10', 22, '2', '2', 'Murugesan', 'Cooli', 35000.00, 2, 17050.00, 20000.00, 'Sholinganallur', 'Malanthur', '2207180005', '1', '2', 'upload_files/candidate_tracker/1095448327_Saravana CV (1).pdf', NULL, '1', '2022-07-18', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in native - PHP position,have basic knowledge sustainability doubts thinking a lot on TxxampC ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 11:30:30', 1, '2022-07-18 11:37:31', 0, NULL, 1),
(9452, 'Salimullah khan', '2', '6382726967', '', 'salimullahkhan6382@gmail.com', '1998-11-13', 23, '2', '2', 'Amanullah khan', 'Painter', 39000.00, 1, 0.00, 25000.00, 'Chennai', 'Perambur', '2207180006', '1', '1', 'upload_files/candidate_tracker/19673468813_SALIMULLAH KHAN (resume).pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Python opening xxamp Machine Learning Seems to little attitude,will not sustain,also not much comfort with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 11:31:35', 1, '2022-07-18 11:38:32', 0, NULL, 1),
(9453, 'LOGESHWARAN', '5', '8754714536', '', 'logeshwarandurairaj@gmail.com', '1994-07-03', 28, '1', '2', 'Durairaj', 'Unemployed', 15000.00, 1, 0.00, 20000.00, 'Salem', 'Salem', '2207180007', '', '2', 'upload_files/candidate_tracker/37101289421_logeshresume2 - Copy2os.pdf', NULL, '1', '2022-07-18', 0, 'P1322', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-18 11:38:54', 1, '2022-07-18 11:47:03', 0, NULL, 1),
(9454, 'Vigneshwar Senthilkumar', '5', '9361591303', '', 'vikkiketu@gmail.com', '1994-08-29', 27, '4', '1', 'Suhashini', 'Housewife', 20000.00, 1, 20000.00, 25000.00, 'Salem', 'Chennai', '2207180008', '', '2', 'upload_files/candidate_tracker/24855929504_mY cV.docx', NULL, '1', '2022-07-18', 15, '', '3', '59', '2022-08-10', 300000.00, '', '7', '1970-01-01', '1', 'Selected for GK Sir with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-18 12:02:16', 60, '2022-07-23 05:05:33', 0, NULL, 1),
(9455, 'S.subhasri', '5', '9486642279', '', 's.subasrisuba12@gmail.com', '1994-12-02', 27, '4', '2', 'Siddeswaran', 'Building work', 20000.00, 1, 20000.00, 25000.00, 'MUGAPPAIR', 'MUGAPPAIR', '2207180009', '', '2', 'upload_files/candidate_tracker/48363929_resume_subhasri.pdf', NULL, '1', '2022-07-18', 15, '', '4', '29', NULL, 0.00, '', '0', NULL, '2', 'Have telecaller Exp in Personal Loan,Getting married shortly sustainability doubts kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-18 12:02:24', 1, '2022-07-18 12:08:44', 0, NULL, 1),
(9456, 'Mukeshkanna', '13', '6369437837', '8608656102', 'mukeshgeetha46@gmail.com', '2000-04-05', 22, '2', '2', 'Kasianthantham', 'Businesses', 30000.00, 2, 0.00, 1.80, 'Sithalapakkam', 'Sithalapakkam', '2207180010', '1', '1', 'upload_files/candidate_tracker/85631161537_Mukeshkanna.k Resume.docx', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not ok with TxxampC being fresher his brother is into same PHP Distance around 50Kms up and down,Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-18 12:21:48', 1, '2022-07-18 12:31:17', 0, NULL, 1),
(9457, 'S Arun Prakash', '13', '7010220050', '9788667708', 'arunprakash062002@gmail.com', '2002-06-28', 20, '2', '2', 'K Siva Kumar', 'Cooli', 8000.00, 1, 0.00, 12000.00, 'Ambasamudram, Tirunelveli district', 'Ambasamudram, Tirunelveli district', '2207180011', '1', '1', 'upload_files/candidate_tracker/3209768562_Arun resume.docx', NULL, '3', '2022-07-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-18 03:50:44', 1, '2022-07-18 03:55:02', 0, NULL, 1),
(9458, 'Keerthi vasan', '2', '8682086938', '', 'Keerthiselva222@gmail.com', '1999-09-21', 22, '2', '2', 'Selvaraj', 'Farmer', 60000.00, 1, 0.00, 12000.00, 'Thiruvarur', 'Thiruvarur', '2207180012', '1', '1', 'upload_files/candidate_tracker/29301525911_Keerthi1_resume.docx.pdf', NULL, '1', '2022-07-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic knowledge but checked for 2nd level and rejected by Kaaviya', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-07-18 04:14:13', 1, '2022-07-18 04:18:11', 0, NULL, 1),
(9459, 'Ezhilarasi', '4', '9884880465', '9941540223', 'ezhilarasi4722@gmail.com', '2001-02-17', 21, '2', '2', 'Parent', 'Hospital helper', 13000.00, 0, 17500.00, 20000.00, 'Porur', 'Porur', '2207180013', '1', '2', 'upload_files/candidate_tracker/16003644476_EZHIL RESUME-1.pdf', NULL, '1', '2022-07-19', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-18 06:16:43', 85, '2022-07-19 12:33:19', 0, NULL, 1),
(9460, 'Murugavel V', '31', '9943406869', '', 'murugavel29052000@gmail.com', '2000-05-29', 22, '2', '2', 'Vellaisamy M', 'Farmer', 150000.00, 1, 0.00, 300000.00, 'Dindigul', 'Dindigul', '2207180014', '1', '1', 'upload_files/candidate_tracker/86903607457_Murugavel V.pdf', NULL, '3', '2022-07-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-18 06:30:32', 1, '2022-07-18 07:17:39', 0, NULL, 1),
(9461, 'jenifer joseph', '13', '8169145372', '9867472369', 'jeniferjoseph00@gmail.com', '2000-11-15', 21, '2', '2', 'j joseph justin', 'b.e information technology', 90000.00, 1, 0.00, 350000.00, 'chennai', 'kanyakumari', '2207180015', '1', '1', 'upload_files/candidate_tracker/32909553034_Jenifer-Joseph-Resume.pdf', NULL, '2', '2022-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-18 07:26:41', 1, '2022-07-19 02:06:10', 0, NULL, 1),
(9462, 'Sripriya', '31', '8778252941', '', 'sripriya.sdnbvc@gmail.com', '2000-04-16', 22, '2', '2', 'Krishnaveni', 'House wife', 10000.00, 0, 0.00, 20000.00, 'Chromepet', 'Chromepet', '2207180016', '1', '1', 'upload_files/candidate_tracker/8483150634_resume sripriya.docx.docx', NULL, '2', '2022-07-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-07-18 09:25:19', 1, '2022-07-18 10:28:39', 0, NULL, 1),
(9463, 'Aravind Radhakrishnan', '23', '9094665328', '6382599250', 'aravindradha93@gmail.com', '2001-01-04', 21, '2', '2', 'M.V.Rafhakrishnan', 'Catering', 25000.00, 1, 0.00, 18000.00, 'No:182, 4th St, shanthi nagar, chromepet, Ch-44', 'No:182, 4th st, shanthi nagar, chromepet, ch-44', '2207190001', '1', '1', 'upload_files/candidate_tracker/4785409979_aravind radhakrishnan.pdf', NULL, '1', '2022-07-19', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok,have basic skills but not familiar with React,Open for UI UXdesign too need time to confirm on the TxxampC,if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-07-22', '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-19 09:41:42', 1, '2022-07-19 09:47:48', 0, NULL, 1),
(9464, '', '0', '9360848428', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207190002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-19 10:07:10', 0, NULL, 0, NULL, 1),
(9465, 'Kesavan k', '31', '6383219678', '', 'Kesavan3219@gmail.com', '2001-02-06', 21, '2', '2', 'Kannusamy', 'Farmer', 50000.00, 1, 0.00, 15000.00, 'Perambalur', 'Perambalur', '2207190003', '1', '1', 'upload_files/candidate_tracker/39222749924_Resume_Kesavan k_Format4.pdf', NULL, '1', '2022-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Average communication need to learn a lot 2nd interviewed and the same opinion after learning if he come let us try', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-19 10:53:09', 1, '2022-07-19 11:00:20', 0, NULL, 1),
(9466, 'Surya D', '13', '8637455789', '9585530994', 'Suryaajithsuryaajith73@gmail.com', '2000-03-05', 22, '2', '2', 'DevaRaj R', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Perambalur', 'Perambalur', '2207190004', '1', '1', 'upload_files/candidate_tracker/38272693373_Resume_Professional detail_Format1.pdf', NULL, '1', '2022-07-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication not open up will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-19 10:53:13', 1, '2022-07-19 11:07:06', 0, NULL, 1),
(9467, 'arthi ravikumar', '22', '6379109209', '', 'arthiaishu205@gmail.com', '1997-09-20', 24, '2', '2', 'ravikumar', 'farmer', 30000.00, 2, 0.00, 300000.00, 'dindivanam', 'Dindivanam', '2207190005', '1', '1', 'upload_files/candidate_tracker/56930425981_Arthi (2).pdf', NULL, '2', '2022-07-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-19 10:54:13', 1, '2022-07-19 11:04:56', 0, NULL, 1),
(9468, 'Mohammed Syed Awadh', '31', '7695907137', '', 'msawadh06@gmail.com', '2000-05-25', 22, '2', '2', 'Ebrahim', 'Intern', 50000.00, 2, 0.00, 30000.00, 'Ambattur, Chennai', 'Ambattur, Chennai', '2207190006', '1', '1', 'upload_files/candidate_tracker/36560460354_mohammed syed resume.pdf', NULL, '1', '2022-07-19', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Good Communication have a theoritical knowledge,2nd interviewed by kavya and the same opinion he need time to give his confirmation on TxxampC', '2', '1', '', '1', '1', '', '2', '2022-07-22', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-19 11:09:50', 60, '2022-07-19 11:25:57', 0, NULL, 1),
(9469, 'Prasanth R', '23', '6374777245', '', 'Prasanthram18122000@gmail.com', '2000-12-18', 21, '2', '2', 'Ramakumar', 'Army', 40000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2207190007', '1', '1', 'upload_files/candidate_tracker/77699232143_RESUME.docx', NULL, '1', '2022-07-19', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Have basic skills knowledge did some freelance project in UI UX ,Distance a lot and sustainability Doubt,kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-19 11:13:00', 1, '2022-07-19 11:18:08', 0, NULL, 1),
(9470, 'Poorvitha.M', '4', '7708691233', '7708999672', 'poorvitham2000@gmail.com', '2000-07-23', 21, '2', '2', 'Daddy', 'GH telephone operator in chengelpattu', 30000.00, 1, 0.00, 13.00, 'Walajabad Kanchipuram district', 'Tambaram', '2207190008', '1', '1', 'upload_files/candidate_tracker/27025786565_poorvitha.M.docx', NULL, '1', '2022-07-22', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1003', '0', NULL, NULL, NULL, 1, '2022-07-19 11:32:29', 1, '2022-07-19 01:28:15', 0, NULL, 1),
(9471, 'Srinivasan R', '14', '8667720964', '9940214515', 'srinivasanbolt619@gmail.com', '1999-08-21', 22, '2', '2', 'Nagalakshmi N', 'Teacher', 40000.00, 1, 0.00, 15000.00, 'No 13A, SGR nagar, Gerugambakam, Chennai 122', 'Chennai', '2207190009', '1', '1', 'upload_files/candidate_tracker/71061481024_Resume 5.3.pdf', NULL, '1', '2022-07-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic knowledge in flutter 2nd round interviewed by Gokul and on hold', '2', '1', '', '1', '1', '', '2', '2022-07-25', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-19 12:12:02', 85, '2022-07-19 12:32:16', 0, NULL, 1),
(9472, 'Deenathayalan V', '23', '8940696701', '', 'deenathayalan947@gmail.com', '1999-09-14', 22, '2', '2', 'N venkida subbu', 'Watchman', 10000.00, 1, 0.00, 15000.00, 'Kodambakkam', 'Kodambakkam', '2207190010', '1', '1', 'upload_files/candidate_tracker/50663469095_12 East street,Melachinnaiyapuram,virudhunagar, TamilNadu-626204.pdf', NULL, '1', '2022-07-20', 0, '', '3', '59', '2022-07-25', 120000.00, '', '', '1970-01-01', '2', 'Selected for Flutter Need to analyse 2nd round interviewed by Gokul ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-19 01:27:00', 85, '2022-07-20 10:10:54', 0, NULL, 1),
(9473, 'KARTHIKEYAN B', '5', '9884967360', '8122967360', 'dineshkarthik0501@gmail.com', '1995-01-05', 27, '1', '2', 'BAKYANATHAN', 'Retired', 30000.00, 1, 29000.00, 36000.00, 'Chennai', 'Chennai', '2207190011', '', '2', 'upload_files/candidate_tracker/8052171317_CV_karthik_ 15.06.2022.pdf', NULL, '1', '2022-07-21', 30, 'P1279', '3', '59', '2022-09-12', 360000.00, '', '4', '2023-06-10', '1', 'Selected for Shanmugam Team - Staff Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-19 01:40:37', 60, '2022-12-07 10:45:08', 0, NULL, 1),
(9474, 'P. SIVAKUMAR', '5', '7305325941', '', 'Directsivakumarpostbox@gmail.com', '1988-05-07', 34, '2', '2', 'Pethaboyan', 'Farmer', 5000.00, 2, 300000.00, 25000.00, 'Ashok nagar', 'Ashok nagar', '2207190012', '25', '2', 'upload_files/candidate_tracker/58128087181_sivakumar .pdf', NULL, '1', '2022-07-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Age Around 34 yrs no sustainability with the previous Exp have only field Exp will not sustain with Telecalling RM profiles not Suitable', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-19 02:18:00', 60, '2022-07-20 10:16:34', 0, NULL, 1),
(9475, 'Adhithyan', '6', '9344238236', '9361961552', 'adhithanp1996@gmail.com', '1996-05-15', 26, '1', '1', 'Ponnurangam. P', 'Former', 60000.00, 2, 0.00, 15000.00, 'Dharmapuri', 'Dharmapuri', '2207190013', '', '1', 'upload_files/candidate_tracker/98212872887_Adhithan p resume (1) (1).docx', NULL, '2', '2022-07-19', 0, 'P1272', '3', '59', '2022-07-25', 224000.00, '', '4', '2022-08-17', '2', 'Selected for Staff Role - Syed Team', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-19 03:52:59', 60, '2022-07-22 07:03:42', 0, NULL, 1),
(9476, 'Divya', '31', '9962330724', '', 'divyaravichandran512@gmail.com', '1999-12-05', 22, '2', '2', 'Ravichandran', 'Photographer', 10000.00, 1, 180000.00, 350000.00, 'Chennai', 'Chennai', '2207190014', '1', '2', 'upload_files/candidate_tracker/61145063093_Divya R.pdf', NULL, '1', '2022-07-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-19 04:28:33', 85, '2022-07-20 10:11:26', 0, NULL, 1),
(9477, 'sarath kumar', '2', '9043978103', '7812864322', 'sarathcodeio@gmail.com', '1996-07-07', 26, '2', '2', 'ranganathan', 'weavers', 24000.00, 1, 0.00, 28000.00, 'chennai', 'chennai', '2207190015', '1', '1', 'upload_files/candidate_tracker/14742251091_sarath(resume) (2).pdf', NULL, '1', '2022-07-20', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in PHP Can give a try for PHP Profile kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-19 05:43:20', 85, '2022-07-20 10:11:51', 0, NULL, 1),
(9478, 'Sujithra', '5', '9003202902', '6383638215', 'sujisri2225@gmail.com', '2000-06-22', 22, '4', '2', 'Gayathri', 'House wife', 20000.00, 1, 18000.00, 20000.00, 'Poonnamallee', 'Poonnamallee', '2207190016', '', '2', 'upload_files/candidate_tracker/50069796853_Sujiresume.pdf.pdf', NULL, '1', '2022-07-20', 0, '', '3', '59', '2022-07-21', 264000.00, '', '5', '1970-01-01', '2', 'Selected for Shanmugam Team with PF/PT Deductions', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-19 06:01:38', 60, '2022-07-22 03:49:45', 0, NULL, 1),
(9479, '', '0', '6379242219', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207190017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-19 06:26:53', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9480, 'gunaseelan m', '23', '7010187003', '7871291815', 'gunaseelanengineer@gmail.com', '1998-09-14', 24, '3', '2', 'mathavan', 'wholesale medical shop worker', 14000.00, 1, 0.00, 2.50, 'thanjavur', 'thanjavur', '2207190018', '', '1', 'upload_files/candidate_tracker/30291381331_Gunaseelan-2020- Fullstack.docx', NULL, '2', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject(Written Test) - Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-19 08:24:50', 1, '2022-11-13 05:38:20', 0, NULL, 1),
(9481, '', '0', '9003043369', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207190019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-19 08:53:04', 0, NULL, 0, NULL, 1),
(9482, 'Venkadesh E', '31', '7548850887', '', 'venkijohn66@gmail.com', '2000-11-19', 21, '2', '2', 'Essaki', 'BE Computer science', 20000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Tirunelveli', '2207200001', '1', '1', 'upload_files/candidate_tracker/8832951272_vvenki.pdf', NULL, '1', '2022-07-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-20 10:02:24', 85, '2022-07-20 10:26:13', 0, NULL, 1),
(9483, 'Harsha Kumar U', '2', '9994919989', '', 'harshakumar.u07@gmail.com', '1999-02-07', 23, '2', '2', 'Umachandran S', 'Manager in private company', 20000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2207200002', '1', '1', 'upload_files/candidate_tracker/45712333135_HarshaKumarResume.pdf', NULL, '1', '2022-07-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-20 10:21:42', 1, '2022-07-20 10:25:29', 0, NULL, 1),
(9484, 'S.priya', '6', '7825041715', '', 'priyamuthu872@gmail.com', '1997-04-05', 25, '1', '1', 'Muthu Kumaran', 'Chemical engineering', 30000.00, 0, 0.00, 15000.00, 'Velachery', 'Velachery', '2207200003', '', '1', 'upload_files/candidate_tracker/76312324827_priyaResume.pdf', NULL, '1', '2022-07-20', 0, 'P1340', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Career Gap no Teleslaes Exp Kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-20 10:37:12', 60, '2022-07-20 06:15:30', 0, NULL, 1),
(9485, 'Vijay', '2', '9750645381', '', 'vijaym28021997@gmail.com', '1997-02-28', 25, '2', '2', 'Muthu', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Aranthangi', 'Chennai', '2207200004', '1', '1', 'upload_files/candidate_tracker/28321842559_Vijay Full stack.pdf', NULL, '1', '2022-07-20', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-20 10:44:40', 92, '2022-07-20 11:01:19', 0, NULL, 1),
(9486, 'Gopinath', '2', '9952064821', '8248206837', 'gopinathgr27@gmail.com', '1997-02-27', 25, '2', '2', 'Rajendran', 'Courier service', 10000.00, 2, 0.00, 15000.00, 'Guindy', 'Guindy', '2207200005', '1', '1', 'upload_files/candidate_tracker/28734266482_Gopi new. 2.pdf', NULL, '1', '2022-07-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-20 10:49:25', 1, '2022-07-20 10:53:13', 0, NULL, 1),
(9487, 'Saranya p', '4', '9791495406', '', 'saranyamba1601@gmail.com', '1998-01-16', 24, '2', '2', 'Poiyamozhi', 'Ex army', 15000.00, 4, 0.00, 10000.00, 'MIG142chithamani mc Rode Thanjavur', 'MIG142 chithamani MC Rode Thanjavur', '2207200006', '1', '1', 'upload_files/candidate_tracker/44677756345_Saranya P.docx', NULL, '1', '2022-07-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-20 11:06:04', 85, '2022-07-20 11:31:38', 0, NULL, 1),
(9488, 'VinoBala', '6', '9123581250', '9500987327', 'Vinobala817@gmail.Com', '2000-07-27', 21, '2', '2', 'T.palaimurugan', 'Auto Driver', 13000.00, 1, 0.00, 10000.00, '5/187 North Street, Thanjavur', 'Thanjavur', '2207200007', '1', '1', 'upload_files/candidate_tracker/21489781238_vinobala.Resume 1.docx', NULL, '1', '2022-07-20', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-20 11:18:19', 92, '2022-07-20 11:51:12', 0, NULL, 1),
(9489, 'Praveen D', '13', '7904914341', '', 'praveendhanasekar01@gmail.com', '2001-08-09', 20, '2', '2', 'Sujatha D', 'Housewife', 12000.00, 0, 0.00, 250000.00, 'Chennai', 'Chennai', '2207200008', '1', '1', 'upload_files/candidate_tracker/66110348549_Resume_PraveenD.pdf', NULL, '1', '2022-07-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no basic ideas in PHP,Need time to give his confirmation on the TxxampC If he come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-20 11:22:39', 92, '2022-07-20 11:38:46', 0, NULL, 1),
(9490, 'Gayathri Devi S M', '13', '9790900782', '7358238672', 'gayathridevi60719@gmail.com', '2007-07-20', 0, '2', '2', 'Mohan.S', 'B.tech CSE', 1.50, 0, 0.00, 3.50, 'Chennai', 'Chennai', '2207200009', '1', '1', 'upload_files/candidate_tracker/12950000244_Gayathri Devi S M_Resume.pdf', NULL, '1', '2022-07-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have a good knowledge in java only,no PHP,Looking for earnings much,Sustainability Doubt if she come back let us try', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-20 11:54:33', 92, '2022-07-20 12:02:19', 0, NULL, 1),
(9491, 'M.dinesh kumar', '4', '8072548342', '6383200482', 'dince454545@gmail.com', '1999-10-04', 22, '1', '2', 'G.meganathan', 'Building contractors', 30000.00, 4, 15000.00, 18000.00, 'Chennai', 'Chennai', '2207200010', '', '2', 'upload_files/candidate_tracker/88714719710_CV_dinesh kumar 1.1.pdf', NULL, '1', '2022-07-20', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication ok Have Exp in Recovery Scheduled for the 2nd level but left without attending the interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-20 12:29:22', 1, '2022-07-20 12:44:59', 0, NULL, 1),
(9492, 'LOKESH.V', '4', '8056129671', '', 'lok8056lke@gmail.com', '1998-05-19', 24, '1', '2', 'Pushpa', 'House wife', 20000.00, 2, 18000.00, 20000.00, 'Valasaravakkam chennai', 'Valasaravakkam chennai', '2207200011', '', '2', 'upload_files/candidate_tracker/2904150277_LOKESH RESUME 10.02.2021 (2).doc', NULL, '1', '2022-07-20', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Ok Have Exp In Recovery Scheduled For The 2nd Level But Left Without Attending The Interview', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-20 12:33:13', 1, '2022-07-20 12:46:42', 0, NULL, 1),
(9493, '', '0', '9566188990', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207200012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-20 12:43:52', 0, NULL, 0, NULL, 1),
(9494, 'Renuga', '14', '7871826924', '7449153557', 'renugaselvi1234@gmail.com', '2001-05-29', 21, '2', '2', 'Harisekar', 'Dye work', 90000.00, 0, 0.00, 250000.00, 'Chennai', 'Chennai', '2207200013', '1', '1', 'upload_files/candidate_tracker/10501307264_Renu.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'thinking on TxxampC,Fresher not ready to sustain for a long may get marriage next year', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-20 12:53:04', 60, '2022-07-25 07:32:30', 0, NULL, 1),
(9495, 'karthick raja k', '14', '7708424409', '8667888204', 'karthikrajakamalakannan@gmail.com', '1998-03-16', 24, '2', '2', 'kamalakannan', 'fresher', 30000.00, 1, 0.00, 15000.00, 'rajapalayam', 'chennai', '2207200014', '1', '1', 'upload_files/candidate_tracker/69039241402_[RESUME] KARTHICK RAJA K.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher ,Min Exp is 10K in intern,not open for TxxampC,His sis too in the same domain,will not join in TC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-20 05:03:13', 85, '2022-07-21 09:34:37', 0, NULL, 1),
(9496, 'Sowndhar Rajan T', '2', '9463848823', '8012678719', 'syprogrammer01@gmail.com', '2002-06-08', 20, '2', '2', 'Thangarasu', 'Cooking contractor', 10000.00, 1, 0.00, 25000.00, '28/1,Anthiyur Main Road, Apakudal,Erode-638315', '28/1,Anthiyur Main Road, Apakudal,Erode-638315', '2207200015', '1', '1', 'upload_files/candidate_tracker/36369240924_Sowndhar Rajan T CV (1).pdf', NULL, '3', '2022-07-21', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-20 05:30:06', 1, '2022-07-20 05:39:02', 0, NULL, 1),
(9497, 'saiprasanna', '13', '9790101072', '8220122063', 'saiprasannaktm@gmail.com', '1999-04-21', 23, '2', '2', 'sankaran', 'retirred', 40000.00, 1, 0.00, 400000.00, 'Kuttalam', 'Kuttalam', '2207200016', '1', '1', 'upload_files/candidate_tracker/77475109235_saiprasanna_9790101072.pdf', NULL, '2', '2022-07-21', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have basic knowledge in PHP Skills can be trained but salary Exp is high,kindly check his technical skills and can decide based on the output', '2', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-20 05:53:02', 1, '2022-07-20 05:58:45', 0, NULL, 1),
(9498, 'D . Manikandan', '13', '7401349137', '', 'manikandan740134@gmail.com', '1997-06-14', 25, '2', '2', 'Durai', 'Centring', 13000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2207210001', '1', '1', 'upload_files/candidate_tracker/92103209751_0_Resumedoc5_Manikandan22.docx', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic knowledge in PHP SKills Open for TxxampC,Kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-21 09:47:33', 60, '2022-07-22 04:55:26', 0, NULL, 1),
(9499, 'shanmugam', '31', '9952421356', '', 'zhanmuga.sakthi@gmail.com', '1999-06-20', 23, '2', '2', 'sakthivel', 'driver', 10000.00, 1, 10000.00, 15000.00, 'krishnagiri', 'bangalore', '2207210002', '1', '2', 'upload_files/candidate_tracker/23890918072_shanmugam Resume (1).pdf', NULL, '2', '2022-07-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 5 months Exp in the Front end Working on React Project and his current salary is 12.5K(1.5LPA) and his exp min 15-16K TH. Need to be analyzed by giving the task, Also thinking about the TxxampC.If he come back let us give a try', '2', '1', '', '1', '1', '', '2', '2022-07-25', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-21 09:47:37', 92, '2022-07-22 05:08:07', 0, NULL, 1),
(9500, 'rajukumar r', '2', '8838267320', '', 'rrajukumarramalingam@gmail.com', '1997-05-01', 25, '2', '2', 'ramalingam k', 'bus conductor', 24000.00, 3, 0.00, 18000.00, 'cuddalore', 'cuddalore', '2207210003', '1', '1', 'upload_files/candidate_tracker/89314497396_RajuN.pdf', NULL, '2', '2022-07-22', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Knowledge In React SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '2022-07-25', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-21 10:19:06', 85, '2022-07-22 09:57:55', 0, NULL, 1),
(9501, 'Yuvaraja k', '14', '9994026967', '', 'yuvakraja162@gmail.com', '2000-07-26', 21, '2', '2', 'Kandasamy', 'Site Engineer', 200000.00, 1, 0.00, 350000.00, 'Trichy', 'Chennai', '2207210004', '1', '1', 'upload_files/candidate_tracker/73676732891_Yuvaraja K (1).pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher,Already got some offers and not joined as the salary was around 15K His min Exp is 20-25K ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 10:53:41', 1, '2022-07-21 10:57:13', 0, NULL, 1),
(9502, 'Sinivasan.R', '4', '9994762721', '7845498868', 'Cheenu2952@gmail.com', '2000-05-29', 22, '2', '2', 'P.Ravichandran', 'Velder', 20000.00, 1, 0.00, 12000.00, '263/1 ,nagarachi Nagar,solar,erode-2', '263/1 ,nagarachi nagar,solar,erode-2', '2207210005', '1', '1', 'upload_files/candidate_tracker/22100698535_Sinivasan_Resume-1.docx', NULL, '1', '2022-07-21', 0, '', '3', '59', '2022-07-28', 126312.00, '', '3', '2022-10-15', '1', 'Selected for Erode in Consultant role', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-21 11:14:47', 60, '2022-07-26 07:06:28', 0, NULL, 1),
(9503, 'Asha D', '5', '8549929779', '9980431318', 'Ashadgowda1997@gmail.com', '2007-07-21', 0, '1', '2', 'Doddeerappa', 'Agriculture', 20000.00, 3, 18000.00, 20000.00, 'Pavagada', 'Bangalore', '2207210006', '', '2', 'upload_files/candidate_tracker/53307339278_Asha DGowda.docx', NULL, '1', '2022-07-21', 0, '55583', '3', '59', '2022-07-27', 202104.00, '', '7', '1970-01-01', '2', 'Selected for Consultant Role - Muppudathy Team', '5', '2', '1', '2', '2', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-21 11:20:27', 60, '2022-07-23 03:24:41', 0, NULL, 1),
(9504, 'D kishore', '13', '7358470510', '9360072993', 'kishorektm19@gmail.com', '2002-04-17', 20, '2', '2', 'R dhakshinamoorthy', 'Driver', 100000.00, 0, 0.00, 200000.00, 'Ambattur', 'Ambattur', '2207210007', '1', '1', 'upload_files/candidate_tracker/77800764547_Share new kishore .pdf', NULL, '1', '2022-07-21', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Fresher just learning the skills kindly check and let me know your inputs,He is ok with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:24:54', 1, '2022-07-21 11:47:17', 0, NULL, 1),
(9505, 'Karthikeyan s', '14', '8015275532', '6381013497', 'Mcakarthi3@gmail.com', '1994-02-03', 28, '2', '1', 'M selvam', 'Hand loomer', 10000.00, 2, 432000.00, 800000.00, 'Salem', 'Chennai', '2207210008', '1', '2', 'upload_files/candidate_tracker/76343034474_Karthikeyan Resume.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Flutter position', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:24:55', 1, '2022-07-21 11:31:05', 0, NULL, 1),
(9506, 'Yuvaraj j', '2', '8825535833', '', 'Yuvaraj1336@gmail.com', '2000-09-06', 21, '2', '2', 'Latha j', 'Food packing department', 14000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2207210009', '1', '1', 'upload_files/candidate_tracker/29651597569_YUVARAJ .pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:28:57', 1, '2022-07-21 11:46:49', 0, NULL, 1),
(9507, 'JITHIN VIJAYAN', '2', '8667326236', '', 'vjithin045@gmail.com', '1998-09-11', 23, '2', '2', 'VIJAYAN', 'EX-SERVICE MAN', 1.00, 1, 0.00, 3000.00, 'CHENNAI', 'CHENNAI', '2207210010', '1', '1', 'upload_files/candidate_tracker/53459936026_NEW RESUME.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open with TxxampC fresher did some course in Beeja Technologies ,Came along with friends,no basic ideas in NodeJS will not sustain not suitable have a plan to travel abroad', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-21 11:29:05', 1, '2022-07-21 11:35:03', 0, NULL, 1),
(9508, 'Praveen k', '2', '9080333986', '', 'pravin33986@gmail.com', '1999-12-01', 22, '2', '2', 'KrishnaMoorthy k', 'Field operator', 3.00, 1, 0.00, 300000.00, 'No 2/544a Ganapathy Nagar Thiruninravur', 'Chennai', '2207210011', '1', '1', 'upload_files/candidate_tracker/92036683749_PRAVEEN\'s Resume.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:29:14', 1, '2022-07-21 11:37:18', 0, NULL, 1),
(9509, 'Vignesh R', '2', '9884426708', '7299665912', 'vigneshramalingam8@gmail.com', '1999-06-23', 23, '2', '2', 'Ramalingam U', 'Mason', 12.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2207210012', '1', '1', 'upload_files/candidate_tracker/17536614680_VIGNESH Resume.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Open With TxxampC Fresher Did Some Course In Beeja Technologies ,Came Along With Friends,No Basic Ideas In NodeJS Will Not Sustain Not Suitable ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-21 11:29:15', 1, '2022-07-21 11:38:32', 0, NULL, 1),
(9510, 'vignesh t', '31', '8072510363', '', 'vickyskc06@gmail.com', '1999-06-30', 23, '2', '2', 'tharmar', 'farmer', 15000.00, 0, 0.00, 350000.00, 'manaparai', 'Chennai', '2207210013', '1', '1', 'upload_files/candidate_tracker/23005849661_VICKY WEB RESUME.pdf', NULL, '1', '2022-07-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have basic knowledge in HTMl,CSS,JS not much with React Need time to give his confirmation for TxxampC if he come back let us give a try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-21 11:31:42', 1, '2022-07-21 12:07:14', 0, NULL, 1),
(9511, 'h.mohamed fairoz', '5', '9551817374', '9884331577', 'fairoz2909@gmail.com', '1996-07-29', 25, '1', '1', 'm.nandhini', 'salaried', 30000.00, 1, 19250.00, 25000.00, 'ernavoor', 'ernavoor', '2207210014', '', '2', 'upload_files/candidate_tracker/35976898934_2 Resume.docx', NULL, '1', '2022-07-21', 0, 'p1279', '3', '59', '2022-07-25', 285696.00, '', '4', '2022-09-05', '1', 'Selected for Shanmugam Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-21 02:32:50', 60, '2022-07-22 03:57:23', 0, NULL, 1),
(9512, 'RAMKUMAR.S', '6', '8489761298', '', 'sramkumar2252001@gmail.com', '2001-05-22', 21, '2', '2', 'Sivakumar', 'Spinning mill', 15000.00, 0, 0.00, 15000.00, 'Tiruchengode NAMAKKAL', 'Tiruchengode NAMAKKAL', '2207210015', '1', '1', 'upload_files/candidate_tracker/15813599738_RAMKUMAR.S.pdf', NULL, '1', '2022-07-23', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected not suitable for telecalling job.. ', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-21 05:06:58', 60, '2022-07-23 01:27:42', 0, NULL, 1),
(9513, 'Aadhithiyan Suresh kumar', '13', '8428581713', '', 'aadhithiyan425@gmail.com', '2001-04-03', 21, '2', '2', 'Sureshkumar', 'Shopkeeper', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2207220001', '1', '1', 'upload_files/candidate_tracker/34718761410_Aadhithiyan.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Knowledge In PHP SKills Currently learning Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 10:03:57', 1, '2022-07-22 10:07:37', 0, NULL, 1),
(9514, 'SALMANKHAN', '5', '7395930800', '8056138132', 'Salmankhan.cherrokay@gmail.com', '1993-11-09', 28, '1', '1', 'Lathifa', 'Clerk', 50000.00, 1, 6.50, 6.50, 'Chennai', 'Chennai', '2207220002', '', '2', 'upload_files/candidate_tracker/2727520669_Salmankhan-Operations09PP (1).pdf', NULL, '1', '2022-07-22', 0, 'P1242', '3', '59', '2022-07-29', 360000.00, '', '7', '1970-01-01', '1', 'Selected for Santhosh Team with PF/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-22 10:35:52', 60, '2022-07-27 05:36:45', 0, NULL, 1),
(9515, 'Farheen Sulthana S', '13', '9003208001', '9940169807', 'farheensulthana.s3@gmail.com', '2001-10-30', 20, '2', '2', 'S. MubeenTara', 'Housewife', 4000.00, 1, 0.00, 240000.00, 'Chennai', 'Chennai', '2207220003', '1', '1', 'upload_files/candidate_tracker/9920538334_Farheen Sulthana.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-22 10:40:49', 92, '2022-07-22 11:15:42', 0, NULL, 1),
(9516, 'V. Praveen kumar', '13', '9840360312', '', 'Praveenvelu1995@gmail.com', '1995-04-13', 27, '2', '2', 'Velu', 'Electricain', 13000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2207220004', '1', '1', 'upload_files/candidate_tracker/58892887824_praveen kumar resume.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic Knowledge In PHP SKills Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-22 10:41:44', 60, '2022-07-22 04:55:53', 0, NULL, 1),
(9517, 'J. Maria cathrin', '13', '7550197170', '9710971545', 'mariacathrin1@gmail.com', '2002-03-31', 20, '2', '2', 'L. John', 'Printing & binding', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2207220005', '1', '1', 'upload_files/candidate_tracker/76830156104_resume maria.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-22 10:46:31', 92, '2022-07-22 11:15:28', 0, NULL, 1),
(9518, 'Rabisanth', '31', '9344008010', '8015820675', 'shankarrabi17@gmail.com', '1998-03-17', 24, '2', '2', 'Sumathi', 'Housewife', 50000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2207220006', '1', '1', 'upload_files/candidate_tracker/54433110045_Rabisanth (1).pdf', NULL, '1', '2022-07-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills knowledge not suitable\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 10:52:30', 1, '2022-07-22 11:01:29', 0, NULL, 1),
(9519, 'Ayyanar G', '2', '8124500276', '', 'ganesanayyanar11@gmail.com', '2000-08-02', 21, '2', '2', 'P. Ganesan', 'Electrician', 15000.00, 1, 0.00, 12000.00, 'Kovilpatti', 'Kovilpatti', '2207220007', '1', '1', 'upload_files/candidate_tracker/70393988683_CV Ayyanar rsm.pdf', NULL, '1', '2022-07-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills knowledge ,not suitable will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 11:28:40', 1, '2022-07-22 11:33:20', 0, NULL, 1),
(9520, 'Kotteswari', '6', '7871699603', '', 'Kottewaripalani80@gmail.con', '2001-12-20', 20, '1', '2', 'Valli', 'Tailor', 9000.00, 1, 0.00, 16000.00, 'Kattupakkam', 'Kattupakkam', '2207220008', '', '1', 'upload_files/candidate_tracker/86211451368_Document.pdf', NULL, '1', '2022-07-22', 0, 'P1191', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,Seems not comfort with Target Sustainability doubts Internal Team reference kindly check and let me know your inouts', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-22 11:31:44', 60, '2022-07-22 04:57:36', 0, NULL, 1),
(9521, 'SELVAMANI.P', '23', '6380098585', '9585122683', 'maniselva.pt@gmail.com', '1995-04-03', 27, '2', '2', 'Thamizhselvi', 'Formar', 12000.00, 5, 0.00, 9000.00, '7/4,west street,ka.puththur, cuddalore', 'Kasi estate, jaffarkhanpet', '2207220009', '1', '1', 'upload_files/candidate_tracker/15845993241_Resume.pdf', NULL, '3', '2022-07-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Last week attended and rejected,again appeared today will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 11:33:35', 1, '2022-07-22 11:39:51', 0, NULL, 1),
(9522, 'M.kavin', '6', '6382075157', '7558115157', 'kavinpeterson317@gmail.com', '2001-10-26', 20, '1', '2', 'Mookkaiyan.P', 'Coolie', 16000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2207220010', '', '1', 'upload_files/candidate_tracker/88593283753_Kavin resume.pdf', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'not Interested in sales', '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:28:27', 1, '2022-07-22 12:45:21', 0, NULL, 1),
(9523, 'Om Velan R', '6', '8531847015', '7010309819', 'Ronaldovelan@gmail.com', '2002-03-09', 20, '1', '2', 'M. Rajendran', 'Coolie', 16000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2207220011', '', '1', 'upload_files/candidate_tracker/35870173958_Velan Resume (1).pdf', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Not interested in sales', '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:28:55', 1, '2022-07-22 12:43:34', 0, NULL, 1),
(9524, 'Boopalan R', '6', '8124928251', '9080158381', 'boopalanking901@gmail.com', '2002-05-30', 20, '1', '2', 'M. Ravi', 'Coolie', 16000.00, 2, 0.00, 15000.00, 'Erode', 'Erode', '2207220012', '', '1', 'upload_files/candidate_tracker/97754465144_CV_2022072121575967.pdf', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Not interested in sales', '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:29:09', 1, '2022-07-22 12:45:29', 0, NULL, 1),
(9525, 'S.Vignesh', '6', '6381706973', '', 'vigneshvicky35334@gmail.com', '2001-12-18', 20, '1', '2', 'R.Selvaraj', 'Coolie', 15000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2207220013', '', '1', 'upload_files/candidate_tracker/36765228147_clg vicky resume.docx', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Not Interested in sales', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:30:09', 1, '2022-07-22 12:55:23', 0, NULL, 1),
(9526, 'Jawahar k', '6', '8682965686', '', 'jawahark2580@gmail.com', '2002-05-03', 20, '1', '2', 'Karthikeyan G', 'Coolie', 15000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2207220014', '', '1', 'upload_files/candidate_tracker/24506206521_JAWAHAR RESUME-1.pdf', NULL, '1', '2022-07-22', 0, 'P1303', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Not interested in sales', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 12:32:06', 1, '2022-07-22 12:55:38', 0, NULL, 1),
(9527, 'SURYA E', '4', '7904572389', '', 'suryae464@gmail.com', '2001-06-24', 21, '1', '2', 'Valli E', 'Tailor', 13000.00, 0, 0.00, 18000.00, 'No,61oragadam road Ambattur OT Bustand', 'Ambattur OT Bustand', '2207220015', '', '1', 'upload_files/candidate_tracker/93020066884_RESUME OF SURYA 2.0.pdf', NULL, '3', '2022-07-22', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 01:02:46', 1, '2022-07-22 01:29:46', 0, NULL, 1),
(9528, 'pradeep raj', '31', '9578521386', '', 'pradeepsuresh@gmail.com', '1999-05-06', 23, '2', '2', 'suresh', 'farmer', 12000.00, 1, 0.00, 15000.00, 'Thiruvarur', 'Thiruvarur', '2207220016', '1', '1', 'upload_files/candidate_tracker/34335706259_PRADEEPRAJ S (1).pdf', NULL, '2', '2022-07-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-22 02:42:48', 92, '2022-07-22 05:07:44', 0, NULL, 1),
(9529, 'Sandhiya', '13', '8248419526', '', 'sandyviji0208@gmail.com', '1999-08-02', 22, '2', '2', 'Pugzhalendhi. L', 'Superintendent', 60000.00, 0, 0.00, 16000.00, 'Thanjavur', 'Chennai', '2207220017', '1', '1', 'upload_files/candidate_tracker/29322486761_sandhiya.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Knowledge In PHP SKills 6 months Exp in PHP Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-22 02:47:16', 1, '2022-07-22 02:52:34', 0, NULL, 1),
(9530, 'charles', '31', '9940873898', '', 'charlesramasamy1999@gmail.com', '1999-04-19', 23, '2', '2', 'ramasamy', 'farmer', 10000.00, 1, 1.50, 200000.00, 'erode', 'Chennai', '2207220018', '1', '2', 'upload_files/candidate_tracker/64604091494_updated resume (4).pdf', NULL, '1', '2022-07-22', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-22 02:55:54', 92, '2022-07-23 09:51:52', 0, NULL, 1),
(9531, 'Santhosh S', '2', '8072041912', '', 'santhosh29801@gmail.com', '2001-08-29', 20, '2', '2', 'Sivasankar', 'Medical billing', 30000.00, 1, 0.00, 30000.00, 'Tiruvannamalai', 'Chennai', '2207220019', '1', '1', 'upload_files/candidate_tracker/88856761725_Santhosh .pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need time to learn and think on TxxampC,if he come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-22 03:28:19', 85, '2022-07-25 10:03:59', 0, NULL, 1),
(9532, 'Chandraprabha', '13', '6379453211', '', 'chandraprabharavi98@gmail.com', '1998-02-07', 24, '2', '2', 'S.Ravi', 'Weaver', 10000.00, 1, 0.00, 20000.00, 'Salem', 'Chennai', '2207220020', '1', '1', 'upload_files/candidate_tracker/21594308888_chandraprabharesum1.pdf', NULL, '1', '2022-07-22', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Knowledge In PHP SKills Fresher Open For TxxampC,Kindly Check And Let Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-22 03:52:13', 92, '2022-07-22 04:01:52', 0, NULL, 1),
(9533, 'Karthickraju', '2', '8668070636', '7358178832', 'karthickraju687@gmail.com', '1999-01-26', 23, '3', '2', 'No', 'Fresher', 1.00, 3, 0.00, 3.50, 'Chennai', 'Chennai', '2207220021', '', '1', 'upload_files/candidate_tracker/43077308943_Resume karthick1999.docx', NULL, '2', '2022-07-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-22 06:19:56', 1, '2022-07-22 06:23:42', 0, NULL, 1),
(9534, 'Vinoth T', '4', '9688648396', '7010535816', 'vinoththangaveln@gmail.com', '1995-01-13', 27, '3', '2', 'V N Thangavel', 'Nambiyur', 200000.00, 1, 0.00, 13000.00, 'Nambiyur', 'Nambiyur', '2207230001', '', '1', 'upload_files/candidate_tracker/22564647239_Vinoth Resume.docx', NULL, '1', '2022-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not responding the calls continuous RNR', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-23 09:54:12', 60, '2022-07-23 04:08:08', 0, NULL, 1),
(9535, 'Jegadeesan B', '31', '9941126798', '8124210913', 'Jegadeesan1402@gmail.com', '2007-07-23', 0, '2', '2', 'Saraswathi b', 'Maid', 100000.00, 1, 0.00, 14000.00, 'Chennai', 'Valasaravakkam,chennai', '2207230002', '1', '1', 'upload_files/candidate_tracker/98430355532_JEGADEESAN_B_RESUME_v2.docx', NULL, '1', '2022-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Much Good in Skills not answering will not sustain thinking a lot with TxxampC\n', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-23 10:18:03', 1, '2022-07-23 10:23:12', 0, NULL, 1),
(9536, 'Hariharan', '31', '9150433691', '', 'hariharanmech1212@gmail.com', '1999-08-02', 22, '2', '2', 'Kanappan', 'Former', 15000.00, 1, 0.00, 350000.00, 'Pudukkottai', 'Chennai', '2207230003', '1', '1', 'upload_files/candidate_tracker/23022775710_Hariharan k.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Nt much good in skills No sustainability in his previous exp will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-23 10:21:20', 1, '2022-07-23 10:31:54', 0, NULL, 1),
(9537, '', '0', '9659681524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-23 10:25:01', 0, NULL, 0, NULL, 1),
(9538, 'BHARATHIMOHAN R', '2', '8778156865', '8973665412', 'bharathiguru2000d@gmail.com', '2000-08-05', 21, '2', '2', 'RAVICHANDRAN S', 'Farmer', 10000.00, 1, 0.00, 23000.00, 'Thiruvarur', 'Thiruvarur', '2207230005', '1', '1', 'upload_files/candidate_tracker/1731493445_BHARATHI MOHAN R (1).pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not open for Internship Fresher no basic ideas in Javascript,not answering the questions not suitable', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 10:36:30', 85, '2022-07-23 10:49:16', 0, NULL, 1),
(9539, 'Sriram M', '13', '9962620227', '', 'sriraam10460@gmail.com', '2001-06-15', 21, '2', '2', 'Muthu Krishnan J', 'MTC driver', 35000.00, 2, 0.00, 18000.00, '17/20 TPS nagar Kaladipet, Chennai-19', '17/20 TPS Nagar Kaladipet, Chennai-19', '2207230006', '1', '1', 'upload_files/candidate_tracker/12654493890_sriram resume.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'up and down 40 kms,not open with TxxampC hold for 2nd level but later he mentioned that was not comfortable with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-23 11:08:50', 1, '2022-07-23 11:14:08', 0, NULL, 1),
(9540, 'Akilan.m', '6', '7010789987', '9095686798', 'akilanmurugan264@gmail.com', '1998-01-30', 24, '2', '2', 'Murugan.m', 'Milka wondercake ( manager)', 25000.00, 2, 18000.00, 18000.00, 'Erode', 'Erode', '2207230007', '1', '2', 'upload_files/candidate_tracker/13907395495_Akilan New Resume.pdf', NULL, '1', '2022-07-23', 1, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate not yet relieved from the company will take another 20 days time', '5', '1', '', '4', '7', '', '2', '2022-08-16', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 11:11:57', 60, '2022-07-23 01:27:24', 0, NULL, 1),
(9541, 'Logeswaran V', '31', '9791198492', '', 'logeswaran1710@gmail.com', '1997-10-17', 24, '2', '2', 'Vijaybhaskaran', 'Shop keeper', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2207230008', '1', '1', 'upload_files/candidate_tracker/46204466113_my resume.pdf', NULL, '1', '2022-07-23', 0, '', '3', '59', '2022-07-25', 120000.00, '', '5', '1970-01-01', '1', 'Selected for Mern - Internship Employment', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-23 11:20:24', 60, '2022-09-26 09:47:31', 0, NULL, 1),
(9542, 'S.Kaushik Sankar', '22', '9962006677', '9884712712', 'kaushikshankar3017@gmail.com', '1999-03-15', 23, '2', '2', 'S.Selvan', 'Business', 40000.00, 1, 0.00, 13000.00, 'Chetpet', 'Chetpet', '2207230009', '1', '1', 'upload_files/candidate_tracker/65367278095_Content Writer Job Resume.pdf', NULL, '1', '2022-07-23', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate wont suit our team', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 12:27:22', 85, '2022-07-23 12:36:33', 0, NULL, 1),
(9543, 'NAVACHANDRAN K', '13', '6381092203', '9043376561', 'navakchandran@gmail.com', '2000-06-14', 22, '2', '2', 'Kanthan', 'Conductor', 250000.00, 2, 0.00, 25000.00, 'TIRUNELVELI', 'Chennai', '2207230010', '1', '1', 'upload_files/candidate_tracker/69205017439_resume.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not answering much,Have a plan to go again with Police Exams,Looking for more stipend in Intern Fresher 2yrs GAP Thinking a lot with TxxampC Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-23 01:33:31', 1, '2022-07-23 01:36:55', 0, NULL, 1),
(9544, 'Muthuraja', '31', '9943624318', '', 'gmuthuraja1994@gmail.com', '1994-04-24', 28, '2', '2', 'Gurusamy', 'Agriculture', 15000.00, 2, 0.00, 9000.00, 'Madurai', 'Madurai', '2207230011', '1', '1', 'upload_files/candidate_tracker/69174773199_muthucv.pdf', NULL, '1', '2022-07-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Age 28 yrs career gap 2015 passed out will not handle our pressure and fast learning doubts not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-23 03:11:34', 92, '2022-07-23 03:23:02', 0, NULL, 1),
(9545, 'Akash kumar t', '6', '7395920711', '', 'akashkrish200144@gmail.com', '2001-11-20', 20, '2', '2', 'Thulasi', 'Store executive', 45000.00, 1, 0.00, 12000.00, 'Vandalur', 'Vandalur', '2207230012', '1', '1', 'upload_files/candidate_tracker/87186279467_AKASH RESUME current.pdf', NULL, '1', '2022-07-26', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile need to open a lot kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 03:42:23', 60, '2022-07-26 07:27:24', 0, NULL, 1),
(9546, '', '0', '7397488995', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207230013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-23 03:56:25', 0, NULL, 0, NULL, 1),
(9547, 'n.malini', '13', '9150547914', '9150350238', 'sakthimalini0712@gmail.com', '2001-12-07', 20, '2', '2', 'a.p.nagaraj', 'gerocery shop', 25000.00, 3, 0.00, 15000.00, 'madurai', 'madurai', '2207230014', '1', '1', 'upload_files/candidate_tracker/33169948634_Malini N.pdf', NULL, '2', '2022-07-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-23 04:51:54', 92, '2022-07-25 10:13:32', 0, NULL, 1),
(9548, 'Jothishree Srinivasan', '13', '8248396694', '9176055035', 'jothishreesrinivasan295@gmail.com', '2000-10-08', 21, '2', '2', 'V. Srinivasan', 'Gold smith', 7200.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2207230015', '1', '1', 'upload_files/candidate_tracker/18034740318_JS-Resume.pdf', NULL, '3', '2022-07-25', 0, '', '3', '59', '2022-07-28', 120000.00, '', '', '1970-01-01', '2', 'Selected for Mern if she join lets see', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 04:52:05', 85, '2022-07-25 10:03:21', 0, NULL, 1),
(9549, 'PRAVEENKUMAR', '4', '9790076052', '8940024013', 'praveensamy71@gmail.com', '2001-06-03', 21, '2', '2', 'CHINNASAMY', 'Farmer', 10000.00, 2, 0.00, 12000.00, 'Chennai', 'Kallakurichi', '2207230016', '1', '1', 'upload_files/candidate_tracker/85461436617_PRAVEENKUMAR C RESUME (1) (1).pdf', NULL, '1', '2022-07-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 05:31:39', 85, '2022-07-23 05:59:32', 0, NULL, 1),
(9550, 'Deenathayalan.R', '4', '9655893943', '9159364844', 'deenathayalan543@gmail', '2002-04-09', 20, '2', '2', 'Ramachandran', 'Farmer', 15000.00, 2, 0.00, 15000.00, '1/71a , Puzhuthikulam, Ramanathapuram 623706', 'bharathipuram chrompet Chennai -600044', '2207230017', '1', '1', 'upload_files/candidate_tracker/24977782813_DEENATHAYALAN.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable need to open a lot,will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-23 05:46:22', 85, '2022-07-23 06:31:27', 0, NULL, 1),
(9551, 'Suvedha K', '23', '7358083188', '8939007428', 'suve7299@gmail.com', '1999-02-07', 23, '2', '2', 'Karupannan M', 'Driver', 30000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2207250001', '1', '1', 'upload_files/candidate_tracker/81054062314_suvedha.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas in JS,Not answering the basic requirement not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 09:47:53', 85, '2022-07-25 10:04:19', 0, NULL, 1),
(9552, 'Ponmathi P', '13', '9361620268', '', 'ponmathittl@gmail.com', '1999-07-03', 23, '2', '2', 'Ponraj S', 'Business', 80000.00, 1, 38000.00, 35000.00, 'Sivakasi', 'Sivakasi', '2207250002', '1', '2', 'upload_files/candidate_tracker/34452954772_Ponmathi.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for testing profile only ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-25 10:23:08', 85, '2022-07-25 10:56:04', 0, NULL, 1),
(9553, 'SYED GOUSE S', '13', '7339159597', '', 'syedgouse438@gmail.com', '2001-07-07', 21, '2', '2', 'S', 'Business', 5000.00, 1, 0.00, 20000.00, 'VILUPPURAM', 'VILUPPURAM', '2207250003', '1', '1', 'upload_files/candidate_tracker/94229007413_resume1 (1).pdf', NULL, '2', '2022-07-25', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-25 10:42:41', 92, '2022-07-25 10:49:41', 0, NULL, 1),
(9554, 'Nithya J', '13', '9884996101', '', 'nithyasri2198@gmail.com', '2000-04-21', 22, '2', '2', 'Manjula', 'Labour', 4000.00, 1, 0.00, 15000.00, 'No. 374 D, Senthil nagar, grant lyon,redhills', 'No. 374 D, Senthil nagar, grant lyon,Redhills', '2207250004', '1', '1', 'upload_files/candidate_tracker/38017619036_Nithya Resume MSc.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much with TxxampC Need time to confirm,Need to learn a lot will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 10:52:50', 1, '2022-07-25 10:58:11', 0, NULL, 1),
(9555, 'S. Sri Prasath', '6', '9790876766', '7338714561', 'sriprasathd19af056@gmail.com', '2002-06-03', 20, '3', '2', 'K. Shankar', 'Auto driver', 200000.00, 1, 0.00, 12000.00, '21/23, elango st, G. S. Nagar, R. A. Puram', 'Chennai -600028', '2207250005', '', '1', 'upload_files/candidate_tracker/3295555089_RESUME.docx', NULL, '1', '2022-07-25', 0, '', '3', '59', '2022-07-27', 180000.00, '', '7', '2022-08-01', '1', 'Selected for Babu Team with PF', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-25 12:01:34', 60, '2022-07-26 07:07:08', 0, NULL, 1),
(9556, 'Immanuvel B', '31', '6382924427', '', 'Rvimman@gmail.com', '2004-04-12', 18, '2', '2', 'Beagel Rajan I', 'Driver', 15000.00, 1, 0.00, 10000.00, 'Tenkasi', 'Tambaram', '2207250006', '1', '1', 'upload_files/candidate_tracker/72711654065_Resume-1.pdf', NULL, '1', '2022-07-25', 0, '', '3', '59', '2022-07-26', 96000.00, '', '0', NULL, '2', 'Selected for React JS developer Profile', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 12:08:04', 1, '2022-07-25 12:13:30', 0, NULL, 1),
(9557, 'Sathishkumar', '6', '9677559091', '', 'SathishVijay2310@gmail.com', '1999-07-23', 23, '2', '2', 'Chinraj', 'Painter', 90000.00, 2, 15500.00, 18000.00, 'Pallipalayam', 'Pallipalayam', '2207250007', '1', '2', 'upload_files/candidate_tracker/79540000030_sathish resume.pdf', NULL, '1', '2022-07-25', 10, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is experience in account jobs so he will not work here confidently and he is also told discuss with family', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 12:20:15', 85, '2022-07-25 01:13:41', 0, NULL, 1),
(9558, 'Narean', '6', '8883364170', '9944840757', 'narean06@gmail.com', '1998-06-08', 24, '2', '2', 'R.srinivasan', 'Lic agent', 80000.00, 1, 16500.00, 18000.00, 'Erode', 'Erode', '2207250008', '1', '2', 'upload_files/candidate_tracker/85811096981_1632495239697Resume_Narean.pdf', NULL, '1', '2022-07-25', 30, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Father doing star health and Lic agent so we dont required ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 12:20:20', 85, '2022-07-25 01:13:27', 0, NULL, 1),
(9559, 'PRABU D', '2', '9042152223', '', 'prabud352@gmail.com', '2000-05-03', 22, '2', '2', 'DHANDABANI M', 'Farmer', 6000.00, 1, 0.00, 25000.00, 'Tiruvannamalai', 'Chennai', '2207250009', '1', '1', 'upload_files/candidate_tracker/38333286530_olympia tech park resume.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long run doubts will not sustain in our environment His sister already working in infosys he may swift ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 12:22:50', 85, '2022-07-25 12:28:21', 0, NULL, 1),
(9560, 'n.lokesh', '14', '9080284387', '6369954501', 'lokeshragul236@gmail.com', '1999-10-25', 22, '2', '2', 'laksmi.n', 'farming', 5000.00, 1, 0.00, 25000.00, 'thiruttani', 'velachery', '2207250010', '1', '1', 'upload_files/candidate_tracker/64449369171_lokesh Resume.pdf', NULL, '3', '2022-07-28', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 12:37:03', 85, '2022-07-27 03:15:10', 0, NULL, 1),
(9561, 'Swetha', '5', '9363065264', '8124583762', 'swethashekarshekar@gmail.com', '2000-06-28', 22, '1', '2', 'Gunashekar,kannagi', 'Others', 50000.00, 2, 12000.00, 14000.00, 'Alandhur', 'Alandhur', '2207250011', '', '2', 'upload_files/candidate_tracker/7149372994_swetha_resume.doc', NULL, '1', '2022-07-25', 0, 'USR00386', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-25 12:48:24', 1, '2022-07-25 01:02:46', 0, NULL, 1),
(9562, 'Swathi.P', '31', '6385863576', '8825618914', 'swathipandian16@gmail.com', '2001-04-09', 21, '2', '2', 'Pandian', 'Farmer', 4000.00, 1, 0.00, 500000.00, 'Cuddalore', 'Kanchipuram', '2207250012', '1', '1', 'upload_files/candidate_tracker/17005797934_Resume_Swathi.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Currently Working In Avasoft With 4 LPA,6 Months In React Internship And The Min Exp Is 25K(3LPA)', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 12:54:17', 1, '2022-07-25 01:01:19', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9563, 'Vasundhara G', '31', '7397556102', '8870942218', 'vasundharaperalam@gmail.com', '2001-07-18', 21, '2', '2', 'Gnanasekaran', 'Farmer', 5000.00, 2, 0.00, 500000.00, '369,Perumal Kovil Street, Thirumeeyachur', 'Chennai', '2207250013', '1', '1', 'upload_files/candidate_tracker/91510822708_Resume (1).pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Currently working in Avasoft with 4 LPA,6 months in React Internship and the min Exp is 25K(3LPA)', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 12:54:46', 1, '2022-07-25 01:07:25', 0, NULL, 1),
(9564, 'Venda s', '31', '9345575991', '9384290079', 'Vendas19072001@gmail.com', '2001-07-19', 21, '2', '2', 'Sankar', 'FARMER', 5000.00, 5, 0.00, 500000.00, 'Thiruvannamalai', 'Chennai', '2207250014', '1', '1', 'upload_files/candidate_tracker/95480241084_VENDA_AIHT_CSE_310118104071.docx', NULL, '1', '2022-07-25', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-25 12:55:00', 1, '2022-07-25 01:01:22', 0, NULL, 1),
(9565, 'S.Priya dharshini', '5', '6380150493', '', 'priyaspriya31@gmail.com', '2002-04-04', 20, '1', '2', 'Padma', 'Housekeeping', 20000.00, 1, 13000.00, 15000.00, 'Red hills', 'Mkb nagar', '2207250015', '', '2', 'upload_files/candidate_tracker/17995668811_Resume_Priya.pdf', NULL, '1', '2022-07-25', 0, 'P1146', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped Her parents are not allowing for the T.Nagar Location not joining', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-25 01:04:21', 1, '2022-07-25 01:09:43', 0, NULL, 1),
(9566, 'Yuvasree', '5', '9092603479', '', 'Yuvasreesree50@gmail.com', '2002-03-06', 20, '1', '2', 'Vijaykumar', 'Cooli', 20000.00, 1, 0.00, 15000.00, 'Kavangarai', 'Kavangarai', '2207250016', '', '1', 'upload_files/candidate_tracker/32966099498_Yuvasree resume.pdf', NULL, '1', '2022-07-25', 0, 'P1146', '4', '16', NULL, 0.00, '', '0', NULL, '2', '5050 Profile Internal Team Reference,Kindly Check And Let Me Know Your Inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-25 01:06:23', 1, '2022-07-25 01:43:46', 0, NULL, 1),
(9567, 'Priyanka', '6', '9344698057', '', 'Priyankaselvi1105@gmail.com', '2001-05-11', 21, '1', '2', 'M.dhashana moorthy', 'Cooli', 15000.00, 2, 0.00, 15000.00, 'Gandhinagar', 'Gandhinagar', '2207250017', '', '1', 'upload_files/candidate_tracker/88071763126_D.priyanka .pdf', NULL, '1', '2022-07-25', 0, 'P1146', '5', '16', NULL, 0.00, '', '0', NULL, '2', '50 50 no idea', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-25 01:06:23', 1, '2022-07-25 01:37:24', 0, NULL, 1),
(9568, 'dilip', '31', '8939471663', '', 'dilipmani15@gmail.com', '1998-05-15', 24, '2', '2', 'masilamani', 'software developer', 20000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2207250018', '1', '1', 'upload_files/candidate_tracker/78540385831_Dilip Dev Resum.pdf', NULL, '1', '2022-07-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Up and down 60kms,min stipend exp is 8-10K,currently working in core field,sustainability doubts', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-25 01:28:05', 1, '2022-07-25 02:31:02', 0, NULL, 1),
(9569, 'D.DESHWARAN', '6', '9150240914', '9884150425', 'appudeshwaran@gmail.com', '2002-02-12', 20, '1', '2', 'T.DEIVA KANNAN', 'Printing press', 15000.00, 2, 0.00, 15000.00, 'Kilpauk', 'Sasthri nagar kilpauk Chennai 84', '2207250019', '', '1', 'upload_files/candidate_tracker/70273038902_RESUMEde.pdf', NULL, '1', '2022-07-25', 0, '2207250019', '3', '59', '2022-07-27', 180000.00, '', NULL, '2023-11-25', '1', 'Selected fr Syed Team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-25 02:42:37', 60, '2022-07-26 06:01:29', 0, NULL, 1),
(9570, 'Farhana begum. A', '4', '9940493066', '9790607198', 'Farhanafaru56@gmail.com', '2000-05-06', 22, '2', '2', 'Anwarbasha', 'Catering', 20000.00, 1, 0.00, 10000.00, 'Mount road', 'Mount road', '2207250020', '1', '1', 'upload_files/candidate_tracker/97299258726_RESUME FAR.pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50-50 profile have 1yr gap not much Knowledge in sales ... have laptop letxquots wait and confirm...', '1', '1', '', '1', '1', '', '2', '2022-08-10', '2', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 04:42:38', 85, '2022-08-20 12:17:27', 0, NULL, 1),
(9571, '', '0', '9840422849', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207250021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-25 05:48:08', 0, NULL, 0, NULL, 1),
(9572, 'Malini', '2', '7358784360', '', 'bharathbharath080575@gmail.com', '2001-11-09', 20, '2', '2', 'Bharath, Indira', 'Machanic', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Thirumullaivoyal', '2207250022', '1', '1', 'upload_files/candidate_tracker/65235180252_Malini resume.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate thinking on the Distance around 40Km sup and down will not sustain', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-25 06:18:03', 85, '2022-07-26 02:37:41', 0, NULL, 1),
(9573, 'Sakthivel B', '13', '9095091742', '', 'sakthivelb2911@gmail.com', '1999-11-29', 22, '2', '2', 'S. Balakrishnan', 'Daily worker', 8000.00, 1, 0.00, 20000.00, 'Madurai', 'Madurai', '2207250023', '1', '1', 'upload_files/candidate_tracker/16503538016_Sakthivel B-Resume.pdf', NULL, '2', '2022-07-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-25 06:32:03', 1, '2022-07-25 06:36:45', 0, NULL, 1),
(9574, 'Mathupathy B', '13', '7305697346', '', 'mathubaskaran509@gmail.com', '2007-07-26', 0, '2', '2', 'Baskaran', 'Teacher', 300000.00, 2, 0.00, 360000.00, 'Aranthangi', 'Chennai', '2207260001', '1', '1', 'upload_files/candidate_tracker/58869339667_MY_RESUME.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'thinking on TxxampC Long run doubts on this profile not much strong with the skills\n', '2', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 09:57:18', 1, '2022-07-26 10:06:02', 0, NULL, 1),
(9575, 'BHARATH.S', '11', '7010954451', '', 'bharathselvaraj99@gmail.com', '1999-04-27', 23, '2', '2', 'SELVARAJ', 'Icf', 40000.00, 1, 0.00, 20000.00, 'Chennai', 'Madhavaram milk colony', '2207260002', '1', '1', 'upload_files/candidate_tracker/32431170684_Bharath_CV (2).pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not clear with the basics of Recruitment,Freaher Exp is some what more being a freaher will not sustin in a long run', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-26 09:59:56', 1, '2022-07-26 10:06:20', 0, NULL, 1),
(9576, 'Abdul zaheer', '11', '7299767019', '9080504016', 'Abdulzaheer7700@gmail.com', '1999-05-21', 23, '2', '1', 'Sarvath begum', 'Home maker', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2207260003', '1', '1', 'upload_files/candidate_tracker/33305476677_zaheer resum 2.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-26 10:00:58', 1, '2022-07-26 10:10:36', 0, NULL, 1),
(9577, 'Sayed Mushtaq Mohammed JM', '13', '7397427576', '9444985292', 'syedmushtaq2k@gmail.com', '2000-05-29', 22, '2', '2', 'Jamal Moideen MH', 'Private company', 20000.00, 1, 0.00, 22000.00, 'chennai', 'Chennai', '2207260004', '1', '1', 'upload_files/candidate_tracker/73722390916_Web Developer resume.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open with TxxampC,Min Exp is 18K bring a fresher if he comes back with his confirmation let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 10:30:03', 85, '2022-07-26 10:46:39', 0, NULL, 1),
(9578, 'Sowmiya S', '16', '7358494471', '8190926973', 'SOWMICINDRELLA2109@GMAIL.COM', '2000-09-21', 21, '2', '2', 'Sekar', 'Electrician', 30000.00, 1, 15000.00, 20000.00, 'Virugabakkam', 'Virugabakkam', '2207260005', '1', '2', 'upload_files/candidate_tracker/46279608519_Sowmiya.resume.pdf', NULL, '1', '2022-07-26', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to work in multiple roles not ready to take targets focusing only in the earnings,will not sustain', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-26 10:32:49', 85, '2022-07-26 11:17:00', 0, NULL, 1),
(9579, 'Vignesh R', '14', '8270558544', '6379748203', 'Vigneshraja1408@gmail.com', '2000-06-07', 23, '6', '2', 'Raja', 'Business', 40000.00, 2, 0.00, 20000.00, 'Vellore', 'Chennai', '2207260006', '', '2', 'upload_files/candidate_tracker/69229578538_res_ume.pdf', NULL, '1', '2023-12-13', 0, '', '3', '59', '2023-12-16', 120000.00, '', '5', '1970-01-01', '2', 'Flutter / 3months 10K Trainee Developer if cleared then 15K and further increments overall 2.7 yrs', '2', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-26 10:48:06', 60, '2023-12-16 06:26:31', 0, NULL, 1),
(9580, 'Arone silver star', '4', '9840401937', '9962814915', 'aronesilverstar@gmail.com', '1996-09-12', 25, '2', '2', 'A.fathima mary', 'Non staff', 30000.00, 2, 15000.00, 15000.00, 'Vi', 'Virugambaakkam Chennai', '2207260007', '1', '2', 'upload_files/candidate_tracker/80304195432_Aaron current cv pdf.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Left without attending the final round with gaurav sir,Have Exp in telecalling but no sustainability in the prevous Exp ,Eventhough tried but left without attending', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 11:21:21', 85, '2022-08-01 09:56:27', 0, NULL, 1),
(9581, 'Yugeshwaran M', '13', '9025371249', '', 'yugeshyuge520@gmail.com', '1999-08-21', 22, '2', '2', 'Moorthy k', 'Fashion designer', 40000.00, 1, 0.00, 20000.00, 'Chennai, Tamil Nadu, India', 'Chennai, Tamil Nadu, India', '2207260008', '1', '1', 'upload_files/candidate_tracker/78355094317_myugeshwaranpdf.pdf', NULL, '1', '2022-07-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need time to give his confirmation on the TxxampC if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-07-28', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 11:22:20', 1, '2022-07-26 11:29:04', 0, NULL, 1),
(9582, 'FAGATH FAIZAL k', '13', '7904317068', '', 'Fagathfaizal3@gmail.com', '1999-10-26', 22, '2', '2', 'Kalil rahman', 'Business', 45000.00, 3, 0.00, 20000.00, '163/69 pv koil street royapuram Chennai 13', '163/69 pv koil street Royapuram Chennai 13', '2207260009', '1', '1', 'upload_files/candidate_tracker/60592015815_FAGATH FAIZAL Resume.pdf', NULL, '1', '2022-07-26', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'have basic skills knowledge sustainability doubts as he may travel abroad Kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 11:22:33', 1, '2022-07-26 11:30:31', 0, NULL, 1),
(9583, 'Jezreel. A', '13', '8610255629', '7871084179', 'samjezreel1999@gmail.com', '1999-11-08', 22, '2', '2', 'Ajit. M', 'Driver', 50000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2207260010', '1', '1', 'upload_files/candidate_tracker/15273207742_Jezreel A.pdf', NULL, '1', '2022-07-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Skills knowledge Parents are in Mumbai Need time to give his confirmation on TxxampC', '2', '1', '0', '1', '1', '0', '2', '2022-07-28', '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 11:24:49', 1, '2022-07-26 11:28:36', 0, NULL, 1),
(9584, 'Vani m', '13', '9346019933', '', 'vanimurugan598@gmail.com', '2001-07-17', 21, '2', '2', 'Murugan k', 'Agricalture', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Mangadu', '2207260011', '1', '1', 'upload_files/candidate_tracker/64417850691_CV_VANI M.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much good in skills not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-26 11:26:27', 60, '2022-07-26 07:22:32', 0, NULL, 1),
(9585, 'Vinith .R', '31', '9865597859', '8110012024', 'srvinith6@gmail.com', '1998-05-08', 24, '2', '2', 'S.Rajangam', 'Farmer', 18000.00, 1, 0.00, 20000.00, 'Bodinauakaur, theni Dt', 'Manavalanagar,Thiruvalluvar', '2207260012', '1', '1', 'upload_files/candidate_tracker/64718774324_Mon Jul 25 16_51_41 GMT+05_30 2022.pdf', NULL, '1', '2022-07-26', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Ready to relocate,Seems to be ok Candidate need time to give his confirmation on TxxampC if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-07-28', '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-26 11:44:20', 1, '2022-07-26 11:57:08', 0, NULL, 1),
(9586, 'VEERAPPAN', '2', '8870216872', '9361708520', 'veerappanveeras87@gmail.com', '1998-01-06', 24, '2', '2', 'Selvakumar', 'Daily wages', 15000.00, 3, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2207260013', '1', '1', 'upload_files/candidate_tracker/18207499322_VEERAPPAN SELVAKUMAR.docx', NULL, '1', '2022-07-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much good in skills need time to confirm on TxxampC ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 01:01:04', 85, '2022-07-26 03:02:02', 0, NULL, 1),
(9587, 'LAVANYA', '4', '7904408764', '9514453727', 'lavanyasubramaniyam1995@gmail.com', '1995-06-22', 27, '2', '2', 'Subramani', 'Farmer', 10000.00, 1, 0.00, 12000.00, 'Vandallur', 'Vandallur', '2207260014', '1', '1', 'upload_files/candidate_tracker/75092461144_LAVANYA.pdf', NULL, '1', '2022-07-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average too long distance not suitable will not sustain in a long run fresher ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 01:13:58', 85, '2022-07-26 01:20:11', 0, NULL, 1),
(9588, '', '0', '8825949270', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207260015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-26 01:35:05', 0, NULL, 0, NULL, 1),
(9589, 'mohamed fareedh', '13', '9585257952', '9443645286', 'mohamedfareedhu192209@gmail.com', '2001-06-02', 21, '2', '2', 'mohamed farook', 'bussiness', 10000.00, 0, 0.00, 15000.00, 'mayiladuthurai', 'koranad', '2207260016', '1', '1', 'upload_files/candidate_tracker/91693570730_Mohamed Fareedh-Resume-Format-1.pdf', NULL, '1', '2022-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the interview\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-26 06:45:38', 85, '2022-10-10 11:58:27', 0, NULL, 1),
(9590, 'Gayathri', '13', '9952206709', '', 'gayathrispandi@gmail.com', '1999-03-19', 23, '2', '2', 'Sendur pandi', 'Farmer', 80000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2207260017', '1', '1', 'upload_files/candidate_tracker/49929424244_Resume (3).pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much good wiht the Skills not suitable ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-26 10:07:49', 85, '2022-07-27 10:06:15', 0, NULL, 1),
(9591, '', '0', '9361708520', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-27 08:36:06', 0, NULL, 0, NULL, 1),
(9592, 'DILLIBABU E P', '31', '8438523888', '', 'dillibabu11052000@gmail.com', '2001-06-27', 21, '2', '2', 'K S Panneer selvam', 'Wearing', 8000.00, 2, 0.00, 4.00, 'Podatur pet', 'Podatur pet', '2207270002', '1', '1', 'upload_files/candidate_tracker/14412743121_E P Dillibabu.pdf', NULL, '1', '2022-07-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher need to learn a lot 2nd round reject by Manikandan', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-27 10:04:54', 92, '2022-07-27 10:20:33', 0, NULL, 1),
(9593, '', '0', '9595257952', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207270003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-27 10:34:47', 0, NULL, 0, NULL, 1),
(9594, 'Balaji R', '23', '7708633828', '9789497131', 'rbalaji111299@gmail.com', '1999-12-11', 22, '2', '2', 'Rajanbabu', 'Ramaburam, Chennai', 15000.00, 1, 0.00, 300000.00, 'Kallakurichi', 'Ramaburam', '2207270004', '1', '1', 'upload_files/candidate_tracker/41334891551_Balaji-resume (2).pdf', NULL, '1', '2022-07-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Being fresher Exp is high,already he received a offer for 10K but didnt join as he is expecting more', '2', '1', '', '4', '6', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 10:41:19', 85, '2022-07-27 10:50:40', 0, NULL, 1),
(9595, 'Vijayaprasanth', '4', '6379862019', '', 'gvprasanthg720@gmail.com', '2000-07-25', 22, '4', '2', 'Govindaraj', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Anthiyur, Erode', 'Anthiyur, Erode', '2207270005', '', '1', 'upload_files/candidate_tracker/36051481108_VIJAYAPRASANTH RESUME.pdf', NULL, '1', '2022-07-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-27 11:10:52', 1, '2022-07-27 11:15:47', 0, NULL, 1),
(9596, 'A. M. Alan', '2', '9003472686', '7639041369', 'alanlloydz11@gmail.com', '1997-06-24', 25, '2', '2', 'A.v. Mani', 'Retired Igcar Employee', 40000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2207270006', '1', '1', 'upload_files/candidate_tracker/28462812287_CV_2022072412214563.pdf', NULL, '1', '2022-07-27', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'have basic skills in Node JS,Sustainability doubts if he come back with TxxampC will check into it .Settled family long run doubts a lot', '2', '1', '0', '1', '1', '0', '2', '2022-07-29', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-27 11:32:27', 1, '2022-07-27 11:36:08', 0, NULL, 1),
(9597, 'Suresh', '13', '9629755642', '', 'Jtsuresh1007@gmail.com', '2001-07-10', 21, '2', '2', 'Jayapal k', 'Farmer', 60000.00, 1, 0.00, 16000.00, 'Kanchipuram', 'Velachery', '2207270007', '1', '1', 'upload_files/candidate_tracker/67295618460_Suresh j .pdf', NULL, '1', '2022-07-27', 0, '', '3', '59', '2022-08-01', 120000.00, '', '', '1970-01-01', '1', 'Selected for Node Js Profile final round interviewed by Gokul', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 11:34:01', 85, '2022-07-27 11:57:11', 0, NULL, 1),
(9598, 'Jefrin shelson', '31', '9360440635', '', 'jefrinshelson18@gmail.com', '2001-02-22', 21, '2', '2', 'Eptha pattu rajan', 'Business', 40000.00, 1, 0.00, 15000.00, 'No:21, ponni Nagar 1st street, pammal, pallavaram', 'No:21, Ponni Nagar 1st Street, Pammal, Pallavaram', '2207270008', '1', '1', 'upload_files/candidate_tracker/83532039538_pdf_20220725_140144_0000.pdf', NULL, '1', '2022-07-27', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher need to be trained from the start kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-27 11:46:18', 60, '2022-07-27 01:30:13', 0, NULL, 1),
(9599, 'Asarudeen', '2', '9345231921', '7402446985', 'asar.deen0004@gmail.com', '1998-10-04', 23, '2', '2', 'Sahul idirees', 'Worker', 80000.00, 1, 0.00, 12000.00, 'RAMANATHAPURAM', 'CHENNAI', '2207270009', '1', '1', 'upload_files/candidate_tracker/79083868198_ASARUDEEN(resume).pdf', NULL, '1', '2022-07-27', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic skills knowledge can be trained kindly check and let me know your interest', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 12:03:49', 85, '2022-07-27 12:17:02', 0, NULL, 1),
(9600, 'Santhosh', '13', '9790160930', '8610965768', 'santhoshp761997@gmail.com', '1997-06-07', 25, '2', '2', 'PACHIYAPPAN', 'Worker', 12000.00, 2, 0.00, 15000.00, 'Thiruvannamalai', 'Kunrathur', '2207270010', '1', '1', 'upload_files/candidate_tracker/70392116556_santhosh resume1_compressed.pdf', NULL, '1', '2022-07-27', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Skills Knowledge Can Be Trained Kindly Check And Let Me Know Your Interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 12:03:53', 85, '2022-07-27 12:16:46', 0, NULL, 1),
(9601, 'Aman Faheem', '5', '8722630969', '', 'fahimmhmd22@gmail.com', '2002-04-10', 20, '1', '2', 'UK Mohammad', 'Working in a restaurant', 18000.00, 1, 0.00, 15000.00, 'Bangalore', 'Bangalore', '2207270011', '', '1', 'upload_files/candidate_tracker/35696336594_Faheem resume.pdf', NULL, '1', '2022-07-27', 0, 'P1328', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Being a fresher we offered him 16K 1.92 LPA he is not comfortable with that,Checked with Sathish Area Manager and dropped the profile', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-27 12:05:13', 60, '2022-07-30 12:29:06', 0, NULL, 1),
(9602, 'Monisha', '5', '9014947347', '', 'monishakalavala@gmail.com', '2002-01-04', 20, '1', '2', 'Vasumathi', 'Business', 100000.00, 1, 0.00, 20000.00, 'Bangalore', 'Chittoor', '2207270012', '', '1', 'upload_files/candidate_tracker/24400477536_Monishak_BBA_Fresher_Resume-converted.pdf', NULL, '2', '2022-07-27', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-27 02:58:25', 1, '2022-07-27 03:13:32', 0, NULL, 1),
(9603, '', '0', '6369337066', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207270013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-27 03:03:06', 0, NULL, 0, NULL, 1),
(9604, 'hamsalatha .s', '2', '9786169544', '6382950842', 'hamsalatha99@gmail.com', '1999-02-26', 23, '2', '2', 'suppaian .p', 'labour', 10000.00, 1, 0.00, 15000.00, 'thanjavur', 'kundrathur', '2207270014', '1', '1', 'upload_files/candidate_tracker/70208936036_HAMSALATHA RESUME.pdf', NULL, '1', '2022-07-28', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic skills seems can be trained kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 03:51:37', 85, '2022-07-27 05:57:16', 0, NULL, 1),
(9605, 'Hemamalini', '2', '8754628874', '', 'Hemamalini88075@gmail.com', '2000-06-22', 22, '2', '2', 'Saravanan', 'Farmers', 8000.00, 2, 0.00, 17000.00, 'Tiruvannamalai', 'Chennai', '2207270015', '1', '1', 'upload_files/candidate_tracker/87520018719_HEMAMALINI_RESUME.pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final round reject by Gokul Will not pick up', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-27 03:52:43', 85, '2022-07-27 05:57:37', 0, NULL, 1),
(9606, 'g sarankumar', '13', '8883599515', '9698960073', 'sarankumar909562@gmail.com', '2000-06-09', 22, '1', '2', 't govindan', 'farmer', 10000.00, 1, 0.00, 15000.00, 'valnaickanpalayam kandampalyam p velur namakkal', 'sridhaaram apartment t nagar', '2207270016', '', '1', 'upload_files/candidate_tracker/87473250038_SARANKUMAR RESUME.pdf', NULL, '1', '2022-07-28', 0, '66667', '1', '27', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-27 06:46:16', 1, '2022-07-28 03:02:37', 0, NULL, 1),
(9607, 'M.Asha', '6', '9003481148', '8220351148', 'asha132000@gmail.com', '2000-08-13', 21, '1', '2', 'D.munusami/M.kumari', 'Labour', 20000.00, 2, 0.00, 15000.00, 'Villanallur', 'Kanchipuram', '2207280001', '', '2', 'upload_files/candidate_tracker/38079699975_ASHA M.pdf', NULL, '1', '2022-07-28', 0, 'P1191', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'candidate is ok , kindly confirm the joining date ', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-28 10:58:05', 60, '2022-07-28 06:32:49', 88, '2022-09-13 05:50:48', 0),
(9608, 'Karthikeyan', '23', '9087685991', '', 'karthiknotiee03@gmail.com', '2001-11-18', 20, '2', '2', 'Parent\'s : Manickavel', 'Fabricator', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2207280002', '1', '1', 'upload_files/candidate_tracker/79751181201_CV_2022071112401592.pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance not much strong in basic skills will not run in a long ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-28 10:58:16', 1, '2022-07-28 11:05:58', 0, NULL, 1),
(9609, 'R S Kamalesh', '4', '9344992718', '', 'rskamalesh1004@gmail.com', '2002-03-10', 20, '2', '2', 'R shankar', 'Government P.W.D', 20000.00, 1, 0.00, 16000.00, 'chennai', 'chennai', '2207280003', '1', '1', 'upload_files/candidate_tracker/93927032762_resum2.pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Telesales not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-28 10:58:59', 1, '2022-07-28 11:09:52', 0, NULL, 1),
(9610, 'Rajesh M', '2', '9952042463', '8754840204', 'rajumohan1998@gmail.com', '1998-07-23', 24, '2', '2', 'p. mohan', 'Tailor', 30000.00, 2, 0.00, 400000.00, 'No:17, Mukkiamman Kovil Street Chintadripet', 'Chennai', '2207280004', '1', '1', 'upload_files/candidate_tracker/79290855926_Rajesh _resume (2).pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Thinking a lot on TxxampC requested time to give his confirmation,if he comes back need to have a technical round and check', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-28 11:01:08', 92, '2022-07-28 11:12:58', 0, NULL, 1),
(9611, 'V.DINESH KUMAR', '13', '9159205620', '', 'dineshdr1999@gmail.com', '1999-06-18', 23, '2', '2', 'K.VELUCHAMY', 'Farmer', 200000.00, 2, 0.00, 15000.00, 'Dindigul', 'Koyambedu,chennai', '2207280005', '1', '1', 'upload_files/candidate_tracker/62101632090_RESUME_DINESH (1).pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have internship Exp but no basic skills need to come back with his confirmation,if he comes back need to analyse and confirm again', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-28 11:01:31', 92, '2022-07-28 11:13:14', 0, NULL, 1),
(9612, '', '0', '7401029259', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 11:28:00', 0, NULL, 0, NULL, 1),
(9613, '', '0', '6374447866', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 11:28:26', 0, NULL, 0, NULL, 1),
(9614, '', '0', '7200951503', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 11:28:51', 0, NULL, 0, NULL, 1),
(9615, 'M ANBAZHAGAN', '13', '9489439020', '9159041421', 'anbazhagan1100@gmail.com', '1998-12-24', 23, '2', '2', 'Mohan C', '-', 50000.00, 1, 0.00, 10000.00, 'Pudukkottai', 'Triplicane', '2207280009', '1', '1', 'upload_files/candidate_tracker/89720494746_Anbazhagan Resume (1) (2).pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much comfort with TxxampC no family need is there ,will not sustain ina long run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-28 11:41:14', 92, '2022-07-28 11:54:41', 0, NULL, 1),
(9616, 'Ragavan.R', '2', '7010247927', '9385390161', 'ragavanravi7699@gmail.com', '1999-06-07', 23, '2', '2', 'Ravichandran', 'Farmer', 72000.00, 1, 17.00, 20.00, 'Thanjavur', 'Thoraipakkam', '2207280010', '1', '2', 'upload_files/candidate_tracker/25777164179_Resume_Ragavaravi-1.pdf', NULL, '1', '2022-08-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-28 01:11:33', 85, '2022-08-02 04:07:43', 0, NULL, 1),
(9617, 'Devaraj. T', '6', '7871467001', '9344526465', 'Deva0078raj@gmail.com', '2001-12-12', 20, '1', '2', 'Thangaraj. S', 'Own business', 70000.00, 1, 0.00, 15000.00, 'Erode-638009', 'Erode-638009', '2207280011', '', '1', 'upload_files/candidate_tracker/49772790615_Resume_Devaraj resume_Format1.pdf', NULL, '1', '2022-07-28', 0, 'P1311', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-28 02:48:23', 1, '2022-07-28 03:06:53', 0, NULL, 1),
(9618, 'S. DINESH', '6', '6383931188', '7871472701', 'dsp25052002@gmail.com', '2002-05-25', 20, '1', '2', 'M. SENTHIL', 'Own business', 50000.00, 1, 0.00, 15000.00, 'Erode -638009', 'Erode-6388009', '2207280012', '', '1', 'upload_files/candidate_tracker/77052941917_jesti.pdf', NULL, '1', '2022-07-28', 0, 'P1311', '3', '59', '2022-07-29', 180000.00, '', '4', '2022-11-01', '1', 'Selected for Suthagar Team in PF/ESI/PT,Fresher Need to be trained,Check and approve in 7 days', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-28 02:51:54', 60, '2022-07-28 05:46:13', 0, NULL, 1),
(9619, 'Devaraj. T', '6', '7871467001', '9344526465', 'Deva0078raj@gmail.com', '2001-12-12', 20, '1', '2', 'Thangaraj. S', 'Own business', 70000.00, 1, 0.00, 15000.00, 'Erode-638009', 'Erode-638009', '2207280013', '', '1', 'upload_files/candidate_tracker/68278277852_Resume_Devaraj resume_Format1.pdf', NULL, '1', '2022-07-28', 0, 'P1311', '3', '59', '2022-07-29', 180000.00, '', '6', '2023-02-26', '1', 'Selected for RE Suthagar Team with PF/ESI/PT Fresher Need to analyse in 7 Days Training', '5', '2', '1', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-28 02:59:41', 60, '2022-07-28 06:17:26', 0, NULL, 1),
(9620, 'G.balaji', '5', '8825993707', '9940010052', 'Balajiharinath08@gmail.com', '2001-08-27', 20, '3', '2', 'G.penchalaiah', 'Bed shop', 30000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2207280014', '', '1', 'upload_files/candidate_tracker/17241477456_Balajiresume.pdf', NULL, '1', '2022-07-28', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'not sustained in any job more than a year', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-28 03:09:37', 1, '2022-07-28 03:28:55', 0, NULL, 1),
(9621, 'B. Sridharan', '23', '7904800489', '', 'sridharan2k@gmail.com', '2000-06-10', 22, '2', '2', 'Balaraman', 'farmer', 8000.00, 1, 0.00, 12000.00, 'villupuram', 'kundrathur, chennai', '2207280015', '1', '1', 'upload_files/candidate_tracker/72883408016_SRIDHAR B-compressed (1) (1)-1.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Ideas With The Skills, Not answering Need To Open A Lot Will Not Sustain And Not Suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-28 03:15:57', 85, '2022-07-29 11:57:49', 0, NULL, 1),
(9622, 'u.gayathri', '13', '6369480160', '', 'ugayathri13121999@gmail.com', '1999-12-13', 22, '2', '2', 'ulaganathan', 'watchman', 8000.00, 0, 0.00, 10000.00, 'chennai', 'Chennai', '2207280016', '1', '1', 'upload_files/candidate_tracker/48522559952_1655371054760_1653483322417_Gayathri Resume.pdf', NULL, '1', '2022-07-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very Worst Candidate no basic ideas not showing interest on the profile keep on using mobile in the interview', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-28 03:35:10', 1, '2022-07-28 04:04:00', 0, NULL, 1),
(9623, 'P.Nandha Kumar', '23', '9491090406', '', 'pommidhinandha@gmail.com', '2000-03-21', 22, '2', '2', 'Basavaiah', 'Farmer', 18000.00, 2, 0.00, 15.00, 'Nagari -Aandhra pradhesh', 'Thuraipakkam,Chennai', '2207280017', '1', '1', 'upload_files/candidate_tracker/36911715716_NANDHA KUMAR RESUME.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No ideas in the JS not clear with his studies not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-28 04:07:16', 85, '2022-07-28 06:21:00', 0, NULL, 1),
(9624, '', '0', '9840468565', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 05:24:01', 0, NULL, 0, NULL, 1),
(9625, '', '0', '7550235379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 06:08:35', 0, NULL, 0, NULL, 1),
(9626, 'Vignesh k', '13', '7358648649', '', 'vigneshkasi861@gmail.com', '2000-06-13', 22, '2', '2', 'Kasi p', 'Farmer', 8000.00, 1, 0.00, 14000.00, 'Tiruvannamalai', 'Kundrathur', '2207280020', '1', '1', 'upload_files/candidate_tracker/19921126341_VK.resume_compressed.pdf', NULL, '1', '2022-07-29', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have some basic knowledge Can give a try kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-28 06:38:55', 85, '2022-07-29 12:03:03', 0, NULL, 1),
(9627, '', '0', '9384015362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207280021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-28 07:33:15', 0, NULL, 0, NULL, 1),
(9628, 'NIVEDITHA.S', '6', '8939957788', '9445300909', 'ssnive2001@gmail', '2001-11-01', 20, '1', '2', 'SENTHIL KUMAR. R', 'Driver', 10000.00, 1, 0.00, 15000.00, 'No. 59,Karikalan street,G.s.Nagar, R.A.Puram,Ch-28', '59, Karikalan street, G. S. Nagar, R.A.Puram,Ch 28', '2207290001', '', '1', 'upload_files/candidate_tracker/19392470521_NIVE RESUME.docx', NULL, '1', '2022-07-29', 0, 'CA130', '4', '89', NULL, 0.00, '', '0', NULL, '2', 'Have Parttime Calling Exp can be trained kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-29 10:41:57', 1, '2022-07-29 11:01:21', 0, NULL, 1),
(9629, 'SARANKUMAR M', '6', '8667291116', '', 'sarankumar1116@gmail.com', '2001-02-24', 21, '2', '2', 'MANOGARAN', 'Carpenter', 100000.00, 1, 0.00, 15000.00, 'Pallikaranai', 'Pallikaranai', '2207290002', '1', '1', 'upload_files/candidate_tracker/28375047465_Resume_29_07_2022_11_09_59_am.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Accounts profile,he is very clear with the job change if he get any accounts postion', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-29 11:03:53', 92, '2022-07-29 11:33:48', 0, NULL, 1),
(9630, 'Hariharan', '23', '9176120037', '', 'haridevapmgr@gmail.com', '1999-05-26', 23, '2', '2', 'S/o,s.Govindarajan', 'Poultry& farmer', 20.00, 1, 0.00, 20000.00, 'Thanjavur', 'Mogappair east,Chennai', '2207290003', '1', '1', 'upload_files/candidate_tracker/9974164091_CV_2022072818371315.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not open with TxxampC Earlier he received 4 offers and didnt join due to SA only will not joinus and Sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-07-29 11:24:42', 92, '2022-07-29 11:38:28', 0, NULL, 1),
(9631, 'LINGARAJ M', '2', '9080166311', '', 'lingaimus143@gmail.com', '1998-04-02', 24, '2', '2', 'Bagyalakshmi', 'House wife', 10000.00, 2, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2207290004', '1', '1', 'upload_files/candidate_tracker/45319700892_LINGA-RAJ.pdf', NULL, '2', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ideas with the skills,need to open a lot will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-29 11:39:47', 85, '2022-07-29 11:56:46', 0, NULL, 1),
(9632, 'Nirmalraj.k', '23', '9360628431', '', 'nirmalrajdevil@gmail.com', '2002-02-20', 20, '2', '2', 'Karuthan.k', 'Farmar', 12000.00, 2, 0.00, 15000.00, 'Valayamadevi,attur,salem,636121', 'Madha collage,Kundrathur,chennai', '2207290005', '1', '1', 'upload_files/candidate_tracker/65305616699_nirmalraj resume (1).docx', NULL, '1', '2022-07-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come for the Task 2nd level', '2', '2', '', '1', '1', '', '2', '2022-08-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-29 11:41:14', 85, '2022-07-29 11:57:21', 0, NULL, 1),
(9633, 'ARAVINDARJ M', '13', '7200246981', '7538855737', 'aravindrajskpm@gmail.com', '1996-11-03', 25, '2', '2', 'Murugan M', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Vilupuram', 'Chennai', '2207290006', '1', '1', 'upload_files/candidate_tracker/11777420423_aravind resume.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to leasrn a lot Career Gap sustinability doubts in long run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-07-29 11:41:53', 85, '2022-07-29 11:57:06', 0, NULL, 1),
(9634, 'Moorthy', '17', '9710012952', '8072378865', 'moorthyeee2013@gmail.com', '1990-12-10', 31, '3', '1', 'Sekar', 'Private', 40000.00, 1, 24000.00, 30000.00, 'Avadi', 'Avadi', '2207290007', '', '2', 'upload_files/candidate_tracker/78405117579_MOORTHY RESUME.pdf', NULL, '1', '2022-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-29 11:45:04', 1, '2022-07-29 11:52:53', 0, NULL, 1),
(9635, 'Mani bharathi a c', '13', '8838512972', '', 'manibharathi78911@gmail.com', '2000-08-21', 21, '2', '2', 'Chinnakkannu', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2207290008', '1', '1', 'upload_files/candidate_tracker/77477802095_Resume_13_04_2022_08_57_42_AM (1) (1).pdf', NULL, '1', '2022-07-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have basic Skills Can be trained asked candidate to wait for final round but left without attending if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-08-01', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-29 12:14:35', 1, '2022-07-29 12:17:26', 0, NULL, 1),
(9636, 'Shobana Micheal', '13', '6374412307', '', 'michealshobana3@gmail.com', '2001-03-14', 21, '2', '2', 'Micheal.J', 'Driver', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2207290009', '1', '1', 'upload_files/candidate_tracker/19690440817_SHOBANA RESUME.docx', NULL, '1', '2022-07-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-29 12:14:42', 1, '2022-07-29 12:17:44', 0, NULL, 1),
(9637, 'Sudhakar R', '5', '8190807889', '', 'Sudhakarvijay616@gmail.com', '1997-04-23', 25, '1', '2', 'Ravi k', 'Plumbuer', 120000.00, 2, 3.00, 25000.00, '67 pillayar kovil Jafferkhanpet chennai 600083', '31vasudevan nagar jafferkhanpet Chennai-600083', '2207290010', '', '2', 'upload_files/candidate_tracker/66280760369_resume 2022 2 16-Jul-2022 17-30-45.pdf', NULL, '1', '2022-07-29', 15, '55565', '5', '18', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '2', '', '1', '3', '', '2', '1970-01-01', '2', '1', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-29 12:22:57', 60, '2022-07-29 05:00:21', 0, NULL, 1),
(9638, 'Barathi Raja.k', '6', '9790826769', '9176452087', 'baraathiraaja@gmail.com', '2002-02-08', 20, '2', '2', 'Sakthi.k', '12th', 40000.00, 1, 0.00, 20000.00, 'Tambaram ,chennai', 'Tambaram, chennai', '2207290011', '1', '1', 'upload_files/candidate_tracker/7141594162_Resume.pdf', NULL, '1', '2022-07-29', 0, '', '3', '59', '2022-08-03', 182000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-07-29 02:08:50', 60, '2022-08-03 11:05:54', 0, NULL, 1),
(9639, 'P.gokulraj', '4', '7339097704', '9965617915', 'P.gokulrajgokulraj@gmail.com', '2002-05-17', 20, '4', '2', 'Yasothadevi', 'Coolie', 7000.00, 1, 0.00, 13000.00, '35,ndar street, rayapalayam, Nasiyanur', '35, nadar street, rayapalayam, Nasiyanur', '2207290012', '', '1', 'upload_files/candidate_tracker/49751722863_RESUME.docx', NULL, '1', '2022-07-29', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-29 03:57:38', 1, '2022-07-29 04:15:06', 0, NULL, 1),
(9640, 'Hema. R', '6', '9361480688', '9095146291', 'Hemaramesh200211@gmail.com', '2002-07-11', 20, '1', '2', 'Ramesh', 'Farmer', 48000.00, 2, 0.00, 15000.00, 'Ariyalur', 'Chennai saithapettai', '2207300001', '', '1', 'upload_files/candidate_tracker/50206819116_DocScanner 30-Jul-2022 9-28 am.pdf', NULL, '2', '2022-07-30', 0, 'P1331', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Internal Reference Fresher Communication Sounds,5050 profiles, sustainability doubts ina long run Kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-07-30 09:18:12', 60, '2022-07-30 05:39:20', 88, '2022-09-13 05:50:48', 0),
(9641, 'R Praval raaj', '23', '9790913502', '', 'pravalraaj@gmail.com', '2000-05-20', 22, '2', '2', 'G Raju gajaraj', 'Standard chartered team leader', 70.00, 1, 0.00, 18.00, 'Chennai', 'Chennai', '2207300002', '1', '1', 'upload_files/candidate_tracker/83884798027_praval cv1.pdf', NULL, '1', '2022-07-30', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Fresher have completed course in Designing, have basic skills in Designing can be trained ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-30 09:41:47', 1, '2022-07-30 09:47:57', 0, NULL, 1),
(9642, 'Santhiya s', '13', '9003442702', '9047862261', 'sandysivasj@gmail.com', '1999-05-17', 23, '2', '2', 'Mother - siyamala', 'Pudukkottai', 17000.00, 1, 0.00, 8000.00, 'Illuppur', 'Illuppur', '2207300003', '1', '1', 'upload_files/candidate_tracker/51035709827_santhiya cv.pdf', NULL, '2', '2022-07-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-07-30 10:19:59', 1, '2022-07-30 10:27:43', 0, NULL, 1),
(9643, 'Jino x', '2', '9487716549', '', 'jinoxavier0803@gmail.com', '1999-03-08', 23, '2', '2', 'Xavier', 'Mesan', 20000.00, 1, 0.00, 20000.00, 'Kanyakumari', 'Arumbakkam, chennai', '2207300004', '1', '1', 'upload_files/candidate_tracker/9867272929_Jino_Resume.pdf', NULL, '1', '2022-07-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open with the TxxampC, No basic ideas in the Skills', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-07-30 10:28:24', 1, '2022-07-30 10:33:42', 0, NULL, 1),
(9644, 'C m sai chand', '5', '7799334405', '6301450943', 'cmsaichand1994@gmail.com', '1994-06-02', 28, '1', '2', 'C v murali', 'GST AEO', 60000.00, 1, 22000.00, 25000.00, 'Bangalore', 'Bangalore', '2207300005', '', '2', 'upload_files/candidate_tracker/80799240453_sai chand Resume.pdf', NULL, '1', '2022-07-30', 0, 'P1328', '1', '56', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-30 11:16:32', 1, '2022-07-30 11:25:18', 0, NULL, 1),
(9645, 'Madhavan', '5', '6380191741', '8939099990', 'mithunmaddy188@gmail.com', '2001-10-14', 20, '3', '2', 'Jayakumar', 'Senior Executive', 40000.00, 0, 0.00, 25000.00, 'Nungambakam', 'Nungambakam', '2207300006', '', '1', 'upload_files/candidate_tracker/65546406950_PDFCREATED_1452022849.pdf', NULL, '1', '2022-07-30', 0, '', '3', '59', '2022-08-08', 252100.00, '', '5', '1970-01-01', '2', 'Selected for Staff Role - Manikandan Team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-07-30 11:31:06', 60, '2022-08-01 07:31:20', 0, NULL, 1),
(9646, 'Ramesh V', '4', '9025338046', '9095188573', 'rame82830@gmail.com', '2001-04-15', 21, '1', '2', 'Veeran V', 'Seizing mill', 400000.00, 3, 0.00, 15000.00, '41/valliyammai nagar,kizh thindal,Erode', '41/Valliyammai Nagar,Kizh Thindal,Erode', '2207300007', '', '1', 'upload_files/candidate_tracker/83914280621_Ramesh resume.pdf', NULL, '1', '2022-07-30', 0, 'P1311', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-30 12:13:10', 1, '2022-07-30 12:27:21', 0, NULL, 1),
(9647, 'Sagaya Selva Vasanth. A', '13', '9176209282', '', 'vasanthd020@gmail.com', '2001-03-15', 21, '4', '2', 'Kuzhandhai Therasa', 'House Keeping work', 18000.00, 2, 0.00, 16000.00, 'Madipakkam, Chennai', 'Madipakkam, Chennai', '2207300008', '', '1', 'upload_files/candidate_tracker/46361669865_Vasanth.Resume.pdf', NULL, '1', '2022-07-30', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Need to be trained, need time to confirm on the TxxampC', '2', '1', '0', '1', '1', '0', '2', '2022-08-01', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-07-30 02:02:12', 1, '2022-07-30 02:12:55', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9648, '', '0', '8838538137', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-30 04:48:05', 0, NULL, 0, NULL, 1),
(9649, '', '0', '8940185685', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2207300010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-07-30 07:31:26', 0, NULL, 0, NULL, 1),
(9650, 'Gajendiran C P', '13', '8148735341', '', 'gajacp511@gmail.com', '2000-11-05', 21, '2', '2', 'Ponnambalam C N', 'Public welfare officer', 72000.00, 2, 0.00, 20000.00, 'Ammaiyarkuppam, Thiruvallur District, TN - 631301', 'T Nagar, Chennai', '2208010001', '1', '1', 'upload_files/candidate_tracker/921389816_Gajendiran C P_CSE_2022 Passed Out Fresher_Resume.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up no ideas in the basic skills not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-01 09:48:29', 1, '2022-08-01 09:56:40', 0, NULL, 1),
(9651, 'DESIC ALWAR K', '13', '8825562937', '', 'desicalwar998@gmail.com', '1998-07-29', 24, '2', '2', 'KUMAR', 'Medical rep', 20000.00, 1, 0.00, 180000.00, 'KANCHEEPURAM', 'KANCHEEPURAM', '2208010002', '1', '1', 'upload_files/candidate_tracker/85792401918_Desic_Alwar_resume[1].docx', NULL, '1', '2022-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills Focusing much in Dot net not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-01 09:49:59', 1, '2022-08-01 09:55:46', 0, NULL, 1),
(9652, 'Asish Kumar mishra', '5', '9078245963', '', 'mishraasish25@gmail.com', '1995-02-11', 27, '1', '2', 'Bhalabhadra mishra', '+3continue', 5000.00, 4, 14000.00, 16000.00, 'Odisha', 'Hsr lay out', '2208010003', '', '2', 'upload_files/candidate_tracker/41120210407_Adobe Scan Jul 19, 2022 (1).pdf', NULL, '1', '2022-08-01', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-01 10:16:10', 1, '2022-08-01 10:26:42', 0, NULL, 1),
(9653, 'J.kowsika', '4', '8098707425', '7868974268', 'kowsikowsika33@gmail.com', '2001-03-03', 21, '3', '2', 'P.jaisangar', 'Farmer', 6000.00, 1, 0.00, 8000.00, 'Kalimedu', 'Kalimedu', '2208010004', '', '1', 'upload_files/candidate_tracker/71131648680_kowsika resume.pdf', NULL, '1', '2022-08-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-01 10:43:15', 1, '2022-08-01 11:05:26', 0, NULL, 1),
(9654, 'E.priya', '4', '6383384332', '8056399216', 'Priyapriya52111@gmail.com', '2000-10-31', 21, '3', '2', 'T.Elangovan', 'Cooli', 6000.00, 1, 0.00, 8000.00, 'Seetha Nagar, memballam', 'Seetha Nagar, memballam', '2208010005', '', '1', 'upload_files/candidate_tracker/15083251944_E.Priya.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped not interested much with telecalling and not interested in Target ', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-01 10:43:27', 1, '2022-08-01 11:34:11', 0, NULL, 1),
(9655, 'D.kannaki', '4', '9361029588', '7502699804', 'kannakidharshi@gmail.com', '2000-04-02', 22, '3', '2', 'Durai.v', 'Farmer', 6000.00, 1, 0.00, 7000.00, 'KARUKKA KOTTAI', 'KARUKKA KOTTAI', '2208010006', '', '1', 'upload_files/candidate_tracker/77621038868_kannaki resume.pdf', NULL, '1', '2022-08-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-01 10:44:01', 1, '2022-08-01 11:05:27', 0, NULL, 1),
(9656, 'Thanikaivel', '3', '6380549379', '8838275684', 'thanikaics17@gmail.com', '1999-03-17', 23, '2', '2', 'Arumugam B', 'Medical shop', 30000.00, 0, 0.00, 20000.00, 'Kallakurichi', 'Kallakurichi', '2208010007', '1', '1', 'upload_files/candidate_tracker/53109772656_Thanikaivel_CV.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No ideas in Javascript,Long Run doubts 2nd round reject by Tamilmani', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-01 11:14:18', 85, '2022-08-01 11:27:36', 0, NULL, 1),
(9657, 'S. Prakash', '2', '8056442513', '', 'Prakashprakash77260@gmail.com', '2002-01-07', 20, '2', '2', 'P. Settu', 'Farmer', 20000.00, 2, 0.00, 15000.00, 'Thiruvannamalai', 'Madhuravoyal', '2208010008', '1', '1', 'upload_files/candidate_tracker/69333834213_prakash.docx', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Worst Profile, no basic skills knowledge not open for the timings', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-01 11:44:39', 85, '2022-08-01 12:01:58', 0, NULL, 1),
(9658, 'Devipriya G', '13', '8825908788', '8925017468', 'gdevipriya2000@gmail.com', '2000-05-18', 22, '2', '2', 'Ganesh kumar k', 'Cooli', 96000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2208010009', '1', '1', 'upload_files/candidate_tracker/92633497898_ resume (18).pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too Long Distance ,Not Ready To Relocate Looking For CAB Facilities', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-01 11:59:00', 85, '2022-08-01 12:10:56', 0, NULL, 1),
(9659, 'MANISHA R', '13', '8668007450', '7305741686', 'Jerocelin@gmail.com', '2000-05-19', 22, '2', '2', 'RAMA CHANDRAN A', 'HVF', 200000.00, 2, 0.00, 18000.00, 'Chennai(avadi)', 'Chennai(avadi)', '2208010010', '1', '1', 'upload_files/candidate_tracker/87079655651_Manisha Resume.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too Long Distance ,not ready to relocate looking for CAB facilities', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-01 11:59:07', 85, '2022-08-01 12:21:56', 0, NULL, 1),
(9660, 'Mouleeswaran', '2', '9942860155', '6369535428', 'mouleesjilla235@gmail.com', '2000-09-26', 21, '2', '2', 'Senniyappan', 'Farmer', 12000.00, 0, 0.00, 20000.00, 'Gobichettipalayam, Erode.', 'Gobichettipalayam, Erode.', '2208010011', '1', '1', 'upload_files/candidate_tracker/63624395807_MOULEES RESUME (4).pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No ideas in Javascript,just started learning Notice 30-40 days if he come back let us try for our Roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-01 12:05:06', 85, '2022-08-01 12:10:37', 0, NULL, 1),
(9661, 'R.Divya', '30', '9176470756', '', 'divyapavi2006@gmail.com', '2000-06-19', 22, '2', '2', 'Ramamoorthy', '20000', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208010012', '1', '1', 'upload_files/candidate_tracker/63279162082_Divya-6.pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up no basic ideas on the skills not suitable', '9', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-01 12:18:49', 1, '2022-08-01 12:33:55', 0, NULL, 1),
(9662, 'Stella.P', '29', '7358615342', '7299410172', 'agine245@gmail.com', '1997-02-06', 25, '2', '2', 'K.Ponnayan', 'Clerk', 120000.00, 2, 12500.00, 14000.00, 'Pallavaram', 'Pallavaram', '2208010013', '1', '2', 'upload_files/candidate_tracker/74812551813_Stella (2).pdf', NULL, '1', '2022-08-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Writing skills poor not suitable for our role', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-01 12:29:01', 85, '2022-08-01 12:56:02', 0, NULL, 1),
(9663, '', '0', '8608693248', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208010014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-01 03:14:38', 0, NULL, 0, NULL, 1),
(9664, '', '0', '8778127662', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208010015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-01 04:37:04', 0, NULL, 0, NULL, 1),
(9665, 'K.Tamilarasi', '4', '7449216207', '', 'tamilar621@gmail.com', '2000-07-17', 22, '2', '2', 'K.Neela', 'House maid', 8000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai(Sowcarpet)', '2208010016', '1', '1', 'upload_files/candidate_tracker/30734615634_Resume.pdf', NULL, '1', '2022-08-04', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-01 04:45:17', 85, '2022-08-02 04:07:25', 0, NULL, 1),
(9666, 'Naresh kumar', '4', '6382862275', '7871797041', 'nareshkumarmohan2000@Gmail.com', '2000-09-04', 21, '2', '2', 'Mohan', 'Self', 30000.00, 3, 0.00, 14000.00, 'Thanjavur', 'Thanjavur', '2208010017', '1', '1', 'upload_files/candidate_tracker/39939009164_M NARESHKUMAR.docx', NULL, '1', '2022-08-02', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-01 06:11:52', 85, '2022-08-02 11:10:51', 0, NULL, 1),
(9667, 'Piritha R', '4', '9003687083', '', 'pritharamamoorthy865@gmail.com', '2000-08-10', 21, '2', '2', 'Ramamoorthy', 'Farmer', 120000.00, 2, 0.00, 15000.00, 'Karaikudi', 'Velachery chennai', '2208020001', '1', '1', 'upload_files/candidate_tracker/96536951450_Piritha R CV.pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 132000.00, '', '3', '2022-12-01', '2', 'Selected for Arumbakkam - Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 09:22:04', 60, '2022-08-03 11:04:00', 0, NULL, 1),
(9668, 'Thavamani', '6', '6379418891', '7339618836', 'nivimani4199@gmail.comcom', '1999-01-04', 23, '2', '2', 'Sivaraman', 'Tiles work', 11000.00, 1, 0.00, 15000.00, 'Karaikudi', 'Chennai', '2208020002', '1', '1', 'upload_files/candidate_tracker/93891638628_Thavamani.pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 09:22:18', 60, '2022-08-03 06:58:37', 0, NULL, 1),
(9669, 'Tamil mullai .S', '4', '7868099014', '', 'Tamilmullairaj812000@gmail.com', '2000-01-08', 22, '2', '2', 'Selvaraj .MR', 'Cooking master', 150000.00, 2, 0.00, 15000.00, 'Karaikudi', 'Velachery', '2208020003', '1', '1', 'upload_files/candidate_tracker/30146661593_Tamil mullai .pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 132000.00, '', '3', '2022-12-01', '2', 'Selected for Arumbakkam - Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 09:29:00', 60, '2022-08-03 11:02:00', 0, NULL, 1),
(9670, 'Suhasini v', '4', '7397405707', '', 'suhavivek290518@gmail.com', '1996-08-27', 25, '2', '1', 'Vivek', 'Hair dresser', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2208020004', '2', '1', 'upload_files/candidate_tracker/72856436719_SuhasiniResume.docx', NULL, '1', '2022-08-02', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Tamil only she preferred,Can be trained need to come back with her confirmation on the TxxampC, kindly check and update', '1', '2', '0', '1', '1', '0', '2', '2022-08-04', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-02 09:42:48', 1, '2022-08-02 09:45:39', 0, NULL, 1),
(9671, 'iyyappan g', '13', '8056384649', '', 'iyyappan9813@gmail.com', '1998-04-13', 24, '2', '2', 'gnanasekaran k', 'business', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208020005', '2', '1', 'upload_files/candidate_tracker/8779217315_iyyappan resume 2.pdf', NULL, '1', '2022-08-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance no basic ideas in PHP Skills will not sustain for a long not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-02 09:48:55', 1, '2022-08-02 09:50:42', 0, NULL, 1),
(9672, 'akmal parvez a', '4', '9884224699', '', 'aakmalparvez@gmail.com', '2001-05-22', 21, '2', '2', 'gulzar ahmed', 'labour', 7000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208020006', '2', '1', 'upload_files/candidate_tracker/91571211151_Resume (1).pdf', NULL, '1', '2022-08-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-02 09:53:09', 1, '2022-08-02 01:11:54', 0, NULL, 1),
(9673, 'abiramy s', '4', '9361467562', '7558134960', 'abiramysekar@gmail.com', '1999-08-05', 22, '2', '2', 'p. sekar', 'farmer', 9000.00, 2, 0.00, 10000.00, 'ammapettai', 'ammapettai', '2208020007', '1', '1', 'upload_files/candidate_tracker/47446292696_ABIRAMY -- RESUME.docx', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 126312.00, '', '3', '2022-08-26', '2', 'Selected for Thanjavur- Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 10:24:23', 60, '2022-08-03 02:42:16', 0, NULL, 1),
(9674, 'Kamalakannan', '4', '9092432250', '9865042250', 'jkamalkannanj@gmail.com', '2001-10-26', 20, '3', '2', 'Loganathan', 'Labour', 30000.00, 1, 0.00, 10000.00, 'Surampatti, erode', 'Surampatti, erode', '2208020008', '', '1', 'upload_files/candidate_tracker/23046253873_kamalannan.docx', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 126312.00, '', '4', '2022-12-01', '2', 'Selected for erode - Muthu Team - Consultant Role', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-02 10:27:21', 60, '2022-08-03 04:21:40', 0, NULL, 1),
(9675, 'Sabari Duraikannu', '5', '7418681007', '7010302458', 'sabarivasan14@gmail.com', '2007-08-02', 0, '3', '2', 'Duraikannu', 'Driver', 60000.00, 2, 26000.00, 32000.00, 'Chennai', 'Chennai', '2208020009', '', '2', 'upload_files/candidate_tracker/48911650609_Sabari_resume_New.docx', NULL, '1', '2022-08-02', 0, '', '1', '44', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-02 10:36:56', 1, '2022-08-02 10:47:01', 0, NULL, 1),
(9676, 'vinotha', '4', '6384917079', '9361467562', 'vinothavinotha282@gmail.com', '1999-05-23', 23, '2', '2', 'a. veeramani', 'tneb', 15000.00, 3, 0.00, 10000.00, 'panayakottai', 'panayakottai', '2208020010', '1', '1', 'upload_files/candidate_tracker/38522979215_VINOTHA RESUME.pdf', NULL, '1', '2022-08-02', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 10:44:07', 85, '2022-08-02 10:51:33', 0, NULL, 1),
(9677, 'M. Vijayakumar', '4', '7305307921', '9444009704', 'Vijayakumar19052000@gmail.com', '2000-05-19', 22, '2', '2', 'M. Mahadevan', 'Labour in Asian paint company', 200000.00, 1, 0.00, 13000.00, 'No. 7,8th street k. S nagar ipuzhal chennai- 66', 'No. 7,8th street k. S nagar kavangarai puzhal', '2208020011', '1', '1', 'upload_files/candidate_tracker/58379821212_RESUME.docx', NULL, '1', '2022-08-02', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Continuous RNR', '1', '1', '', '1', '3', '', '2', '2022-08-09', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-02 10:51:18', 85, '2022-08-02 11:49:04', 0, NULL, 1),
(9678, 'abinaya r', '4', '9566832280', '9750415683', 'rabinayarabinaya14@gmail.com', '1999-07-16', 23, '3', '2', 'ravichandran v', 'labour', 10000.00, 2, 0.00, 10000.00, 'kandithampattu', 'kandithampattu', '2208020012', '', '1', 'upload_files/candidate_tracker/44276112044_abinaya resume.pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 126312.00, '', '4', '2022-11-01', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-02 10:58:13', 60, '2022-08-03 04:33:43', 0, NULL, 1),
(9679, 'Kamarudeen.B', '13', '7339502007', '9080477272', 'babukamarudeen@gmail.com', '2000-11-07', 21, '2', '2', 'Babu.A', 'Former', 1.50, 2, 0.00, 2.00, 'Chennai.', 'Chennai', '2208020013', '1', '1', 'upload_files/candidate_tracker/31664056577_Kamarudeen-CV.pdf', NULL, '1', '2022-08-02', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Have interest to learn can be trained kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-02 11:15:39', 85, '2022-08-02 11:28:42', 0, NULL, 1),
(9680, 'M.Marikumar', '4', '6383735088', '9750266185', 'mrmarikumar02@gmail.com', '2002-10-23', 19, '2', '2', 'G.Moorthy', 'Own Business', 25000.00, 1, 0.00, 15000.00, 'Perundurai,Erode', 'Perundurai,Erode', '2208020014', '1', '1', 'upload_files/candidate_tracker/54055008502_M.Marikumar resume.pdf', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-08-08', 126312.00, '', '3', '2022-08-10', '1', 'Selected for Erode - Muthu Team - Consultant Role', '1', '2', '1', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 11:30:45', 60, '2022-08-02 06:15:01', 0, NULL, 1),
(9681, 'Vignesh S', '13', '9344374298', '', 'vickyprema1998@gmail.com', '1998-08-16', 23, '2', '2', 'Sundaraj', 'BUSINESS', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208020015', '1', '1', 'upload_files/candidate_tracker/26907527032_VIGNESH-converted.docx', NULL, '1', '2022-08-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not strong with the basic skills too long distance will not sustain in a along run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-02 11:45:57', 85, '2022-08-02 12:05:59', 0, NULL, 1),
(9682, 'Ajith Kumar V', '13', '8608412648', '', 'ajithvij682@gmail.com', '1998-05-10', 24, '2', '2', 'Vinayagam', 'Business', 20000.00, 1, 180000.00, 200000.00, 'Chennai', 'Kundrathur', '2208020016', '1', '2', 'upload_files/candidate_tracker/73033281523_AJITH RESUME.pdf', NULL, '1', '2022-08-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Strong With The Basic Skills Too Long Distance Will Not Sustain In A Along Run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-02 11:46:12', 85, '2022-08-02 12:14:57', 0, NULL, 1),
(9683, 'Sriram', '4', '9344501907', '9487059520', 'srir53274@gmail.com', '1999-03-18', 23, '2', '2', 'Sundararajan', 'Land', 40000.00, 0, 0.00, 15.00, 'Chengam mullai nagar', 'Ambattur kallikuppam', '2208020017', '1', '1', 'upload_files/candidate_tracker/37728084229_Sriram.S.doc', NULL, '1', '2022-08-02', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-08-02 12:24:15', 1, '2022-08-02 03:36:22', 0, NULL, 1),
(9684, '', '0', '9176769116', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208020018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-02 12:30:37', 0, NULL, 0, NULL, 1),
(9685, 'Abdul rahman p', '5', '9884022055', '', 'fayazfyz23@gmail.com', '1997-06-23', 25, '4', '1', 'Peer mohammed m', 'Cycle mechanic', 32000.00, 0, 0.00, 600000.00, 'Chennai', 'Chennai', '2208020019', '', '2', 'upload_files/candidate_tracker/59180567242_My resume.doc', NULL, '1', '2022-08-02', 0, '', '3', '59', '2022-09-12', 410000.00, '', NULL, '2023-11-25', '1', 'Selected for Santhosh Team, - Team will give a task and based on completion may get the increment', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-02 02:29:12', 60, '2022-08-03 12:59:01', 0, NULL, 1),
(9686, 'MOHAMMED ANSARI SALIM', '4', '8610912829', '', 'appuansar3@gmail.com', '2000-09-23', 21, '2', '2', 'SALIM', 'Worker', 34000.00, 0, 12500.00, 20000.00, 'Tiruppur', 'Tiruppur', '2208020020', '1', '2', 'upload_files/candidate_tracker/62003621285_IMG_20220720_094517 (2).pdf', NULL, '3', '2022-08-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 03:38:11', 85, '2022-08-02 03:48:21', 0, NULL, 1),
(9687, '', '0', '9171277037', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208020021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-02 04:04:56', 0, NULL, 0, NULL, 1),
(9688, 'S.Fathima Sifara', '6', '8056673439', '8807436385', 'smfsifara@gmail.com', '1999-07-15', 23, '2', '1', 'Sirajudeen', 'Telecaller', 15000.00, 0, 15000.00, 12500.00, 'Erode', 'Erode', '2208020022', '1', '2', 'upload_files/candidate_tracker/35820980316_RESUME OF SIFARA 3.pdf', NULL, '1', '2022-08-03', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she no need for target related job. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 04:22:40', 85, '2022-08-03 12:43:24', 0, NULL, 1),
(9689, '', '0', '7092236019', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208020023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-02 04:39:06', 0, NULL, 0, NULL, 1),
(9690, 'Shamini t', '5', '6381232486', '9940150908', 'shaminithavamani@gmail.com', '2001-10-19', 22, '1', '2', 'Thavamani', 'Mason', 30000.00, 1, 24000.00, 30000.00, 'Thirupathur', 'Annanur', '2208020024', '', '2', 'upload_files/candidate_tracker/28645005930_DOC20240902WA0006..pdf', NULL, '1', '2024-09-12', 0, '55807', '2', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Next Round, \nDue to PC manpower hold \nwe can hold for some time ', '5', '1', '', '1', '8', '', '2', '2024-11-06', '3', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2022-08-02 06:01:24', 104, '2024-09-12 05:07:46', 0, NULL, 1),
(9691, 'Sathesh. K', '5', '6374426801', '9597106214', 'Satheshk1817@gmail.com', '2000-08-27', 21, '1', '2', 'Saraswathi. K', 'Cooly', 17000.00, 1, 12000.00, 15000.00, 'Srivillliputtur', 'Srivilliputtur', '2208020025', '', '2', 'upload_files/candidate_tracker/89439370372_sathesh resume.pdf', NULL, '3', '2022-08-03', 0, '55565', '3', '59', '2022-08-17', 240000.00, '', '4', '2022-11-04', '2', 'Selected for Manikandan team - Staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-02 06:26:28', 60, '2022-08-16 04:19:42', 0, NULL, 1),
(9692, 'V. Bharathi Shankari', '11', '7358597526', '7550157494', 'bharathivinayagam20@gmail.com', '1998-08-20', 23, '2', '2', 'Vinaayaga moorthy', 'Watchman', 15.00, 1, 0.00, 12.00, 'Chennai', 'Chennai', '2208020026', '1', '1', 'upload_files/candidate_tracker/76317465312_Bharathi', NULL, '1', '2022-08-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average, No basic ideas in the recruitment ,will not sustain in a long run', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-02 06:43:12', 85, '2022-08-03 09:39:46', 0, NULL, 1),
(9693, 'Prithika.k', '6', '9176122000', '', 'Prithika2605@GMAIL.COM', '2003-05-26', 19, '2', '2', 'Kumar', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Jayankondam', 'Mylappur', '2208030001', '1', '1', 'upload_files/candidate_tracker/43458411740_PRITHIKA.K.pdf', NULL, '1', '2022-08-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Fresher Came Along With Friend Can Be Trained Kindly Check And Let Me Know Your Inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-03 08:51:20', 60, '2022-08-03 06:09:58', 0, NULL, 1),
(9694, 'Srigayathri Baskaran', '6', '9361530652', '9865228011', 'srigayathrivignesh@gamil.com', '2001-08-18', 20, '2', '2', 'Baskaran', 'Driver', 15000.00, 1, 0.00, 15000.00, 'Jayankondam', 'Mylappur', '2208030002', '1', '1', 'upload_files/candidate_tracker/52879726288_Srigayathri . Pdf.pdf', NULL, '1', '2022-08-03', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Fresher Came along with friend can be trained kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-03 09:26:16', 60, '2022-08-03 06:09:43', 0, NULL, 1),
(9695, 'giri', '2', '9025128843', '', 'giriksiru@gmail.com', '2001-03-23', 21, '2', '2', 'gopi', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208030003', '2', '1', 'upload_files/candidate_tracker/29242758330_CV_2022071220381811.pdf', NULL, '1', '2022-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very Slow No basic Skills knowledge Not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-03 10:39:44', 1, '2022-08-03 10:41:46', 0, NULL, 1),
(9696, 'Dhananjezhian j', '31', '8072449033', '9514297858', 'Djvicky141@gmail.com', '2001-04-21', 21, '2', '2', 'Janarthanan p', 'Driver', 20000.00, 1, 0.00, 28000.00, 'Chennai', 'Chennai', '2208030004', '1', '1', 'upload_files/candidate_tracker/86198748009_Document 4.pdf', NULL, '1', '2022-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much good with the Skills fresher already attended and waiting for the final update from some other company,Sustainability doubts a lot ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-03 11:03:00', 1, '2022-08-03 11:46:11', 0, NULL, 1),
(9697, 'pradeep raj', '13', '7385931173', '', 'pradeepna2000@gmail.com', '2000-05-13', 22, '2', '2', 'palane samy', 'news paper distributor', 8000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208030005', '2', '1', 'upload_files/candidate_tracker/94931262996_PradeepResume.pdf', NULL, '1', '2022-08-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Career Gap not shown interest towards the career inn between not much strong with the skills not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-03 11:06:00', 1, '2022-08-03 11:07:50', 0, NULL, 1),
(9698, '', '0', '9094224111', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208030006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-03 11:26:10', 0, NULL, 0, NULL, 1),
(9699, 'Abiraj', '23', '8754754860', '9488732052', 'abirajabi1999@gmail.com', '1999-12-04', 22, '3', '2', 'Subburaj', 'Accountant', 20000.00, 1, 0.00, 15000.00, 'Viruthunagar', 'Chennai', '2208030007', '', '1', 'upload_files/candidate_tracker/66451496975_Abiraj\'s Resume.pdf', NULL, '1', '2022-08-03', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Have basic knowledge can be trained kindly check and let me know your interest', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-03 12:06:34', 1, '2022-08-03 12:11:03', 0, NULL, 1),
(9700, 'R.Seethala Devi', '4', '9629638467', '6369384263', 'seethalaraju15@gmail.com', '1997-06-21', 25, '2', '1', 'S.Raja', 'Senior sales executive', 80000.00, 2, 12000.00, 15000.00, 'Thanjavurr', 'Thanjavur', '2208030008', '1', '2', 'upload_files/candidate_tracker/32671450093_seethala resume new-1.pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-10', 151584.00, '', '6', '2022-09-05', '1', 'Selected for Consultant Role - Thanjavur Locaiton', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-03 02:44:43', 60, '2022-08-08 08:06:33', 0, NULL, 1),
(9701, 'Umapathy', '5', '9884367733', '9025528059', 'umapathydeepam222@gmail.com', '1991-07-08', 31, '1', '1', 'Kavitha', 'Housewife', 40000.00, 1, 23000.00, 28000.00, 'Chennai', 'Chennai', '2208030009', '', '2', 'upload_files/candidate_tracker/95653214863_1659523035044_resume .pdf', NULL, '1', '2022-08-03', 15, 'P1315', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate was not showing interest didnt share the required documents and not responding the calls\n', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-03 04:39:10', 60, '2022-08-11 03:50:41', 0, NULL, 1),
(9702, 'Natarajan S', '13', '9894809467', '9025934070', 'sn309022@gmail.com', '2000-05-16', 22, '2', '2', 'Srinivasan J', 'Business man', 35000.00, 1, 0.00, 25000.00, 'Chidambaram', 'Chidambaram', '2208040001', '1', '1', 'upload_files/candidate_tracker/91393827729_nataraj.docx', NULL, '1', '2022-08-04', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to be trained Sustainability Doubt in a long run Need to come back with his confirmation if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-08-06', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-04 10:31:14', 1, '2022-08-04 10:36:51', 0, NULL, 1),
(9703, 'VIGNESH U', '16', '6374552047', '8939140085', 'vikiudaya309@gmail.com', '1999-09-30', 22, '2', '2', 'R UDAYAKUMAR', 'Chennai Corporation Driver', 50000.00, 0, 11000.00, 20000.00, 'Chennai', 'Chennai', '2208040002', '1', '2', 'upload_files/candidate_tracker/26333782668_Vignesh Resume .docx', NULL, '1', '2022-08-04', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok can be trained but not open with Docu Submission,need to confirm with his father', '3', '1', '', '1', '1', '', '2', '2022-08-05', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-04 10:40:23', 85, '2022-08-04 11:43:41', 0, NULL, 1),
(9704, 'Sakthivel v', '6', '6381420830', '7397415356', 'sakthivaradhan2001@gmail.com', '2002-12-23', 19, '1', '2', 'Sumithra', 'Tailoring company', 20000.00, 1, 15000.00, 17000.00, 'Kundrathur', 'Kundrathur', '2208040003', '', '2', 'upload_files/candidate_tracker/1125007359_Untitled document.docx', NULL, '1', '2022-08-04', 0, 'P1302', '3', '59', '2022-08-08', 198000.00, '', '4', '2022-09-24', '1', 'Selected for Staff Role - Syed Team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-04 12:00:37', 60, '2022-08-08 12:10:06', 0, NULL, 1),
(9705, 'Karthik.M', '5', '7010996464', '', 'karthikram2369@gmail.com', '1991-12-13', 30, '4', '1', 'Keerthana', 'Home maker', 30000.00, 1, 400000.00, 4.50, 'Chennai', 'Chennai', '2208040004', '', '2', 'upload_files/candidate_tracker/38759606084_0_Karthik.M RESUME.pdf', NULL, '1', '2022-08-04', 0, '', '3', '59', '2022-09-05', 400000.00, '', '7', '1970-01-01', '1', 'Selected for Manikandan - Staff Role Document has been verified based on that we offered him 14%', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-04 12:42:32', 60, '2022-08-08 06:00:43', 0, NULL, 1),
(9706, 'gayathri v', '4', '8248122869', '', 'gayathrigaysbca@gmail.com', '2001-10-21', 20, '2', '2', 'venkatesh', 'business', 15000.00, 1, 0.00, 11000.00, 'chennai', 'chennai', '2208040005', '2', '1', 'upload_files/candidate_tracker/29719889471_gayumaresume.pdf', NULL, '1', '2022-08-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate was not interested dropped ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-04 02:03:19', 1, '2022-08-04 02:05:27', 0, NULL, 1),
(9707, 'gayathri v', '4', '6374636958', '', 'gayusundaram2001@gmail.com', '2001-09-13', 20, '2', '2', 'vinayaga sundaram', 'sales manager', 15000.00, 1, 0.00, 11000.00, 'chennai', 'chennai', '2208040006', '2', '1', 'upload_files/candidate_tracker/67201976699_gayures-1.pdf', NULL, '1', '2022-08-04', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', 'Fresher can be trained kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-04 02:07:22', 1, '2022-08-04 02:08:47', 0, NULL, 1),
(9708, 'Hariharan', '4', '9944498413', '8072005127', 'dusterkinghari@gmail.com', '1997-08-04', 25, '3', '2', 'Balakrishnan', 'Govt(Rtd)', 20000.00, 0, 7000.00, 15000.00, 'Kavindapadi', 'KAVINDAPADI', '2208040007', '', '2', 'upload_files/candidate_tracker/81361132620_hari resume.docx', NULL, '1', '2022-08-04', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Salary Exp is high being a fresher ave his own family business Sustainability Doubts min Exp is 12K\n', '1', '1', '0', '4', '7', '0', '2', '2022-08-11', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-04 04:31:16', 1, '2022-08-04 04:36:08', 0, NULL, 1),
(9709, 'Abdul Samathu', '6', '9443044002', '', 'arasamath@gmail.com', '1985-07-30', 37, '2', '2', 'Abdul', 'Rtd', 10000.00, 1, 0.00, 12000.00, '12000', 'Chennai', '2208050001', '2', '1', 'upload_files/candidate_tracker/180087241_Resume.pdf', NULL, '1', '2022-08-05', 0, '', '1', '85', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-05 10:54:42', 1, '2022-08-05 10:57:35', 0, NULL, 1),
(9710, 'Ganesh', '4', '9994238481', '', 'ganeshprabhu500@gmail.com', '1997-11-06', 24, '2', '2', 'Balaganesan', 'Farmer', 10000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2208050002', '2', '2', 'upload_files/candidate_tracker/57046695618_GANESH RESUME PDF.123.pdf', NULL, '1', '2022-08-05', 0, '', '1', '85', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-05 11:00:50', 1, '2022-08-05 11:04:19', 0, NULL, 1),
(9711, 'Sukhel M', '4', '7708498974', '', 'Sukhelsuki@gmail.com', '2002-05-26', 20, '2', '2', 'Mohammed shathik basha', 'Painter', 14000.00, 1, 0.00, 15000.00, 'Kalliyampudur road,Perundurai', 'Kalliyampudur Road,Perundurai', '2208060001', '1', '1', 'upload_files/candidate_tracker/47743125805_SUKHEL M resume 1.pdf', NULL, '1', '2022-08-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-06 03:04:05', 85, '2022-08-06 06:00:11', 0, NULL, 1),
(9712, 'Vaishnavi M K', '16', '9444784919', '9940953957', 'Vaishukrishnan0110@gmail.com', '2001-09-10', 20, '2', '2', 'Murali krishnan', 'Farmer', 50000.00, 2, 0.00, 15000.00, 'Uthukottai', 'Ambattur, chennai', '2208060002', '1', '1', 'upload_files/candidate_tracker/9487620305_VAISHNAVI RESUME(2).pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long distance will not sustain and not much suitable for this Role\n', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-06 07:13:20', 85, '2022-08-08 05:02:02', 0, NULL, 1),
(9713, 'Revathi.H', '16', '7358751934', '9094870751', 'harirevathi44@gmail.com', '2002-02-16', 20, '2', '2', 'Haridoss.G', 'pettyshop keeper', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Ambattur,Chennai', '2208060003', '1', '1', 'upload_files/candidate_tracker/9357842479_Document from Revathi.pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Managable but long distance sustainability doubts a lot not suitable', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-06 08:24:02', 85, '2022-08-08 05:01:47', 0, NULL, 1),
(9714, 'Ramyasri S', '2', '9361360522', '9003229890', 'ramyasrishivakumar@gmail.com', '2002-07-17', 20, '3', '2', 'Sivakumar', 'Turner', 18000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2208060004', '', '1', 'upload_files/candidate_tracker/79343096275_RAMYASRI RESUME.PDF.pdf', NULL, '1', '2022-08-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-06 09:56:43', 1, '2022-08-06 10:02:21', 0, NULL, 1),
(9715, '', '0', '9715561368', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208060005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-06 10:07:31', 0, NULL, 0, NULL, 1),
(9716, 'Sharmila S', '16', '9361380620', '', 'sharmiclamantin@gmail.com', '2001-10-09', 20, '2', '2', 'Selvaraj S', 'Carpenter', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208070001', '1', '1', 'upload_files/candidate_tracker/74261457_Sharmila B. com.pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Distancenot open with telecalling looking for MIS but not much clear with the skills and will not sustian', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-07 09:30:19', 85, '2022-08-08 05:01:31', 0, NULL, 1),
(9717, 'Kanniammal M', '16', '9791066925', '9677262937', 'rajikutty1017@gmail.com', '2001-10-17', 20, '4', '2', 'Munusami E', 'Cooli work', 10000.00, 1, 0.00, 15000.00, 'No:3 \'P\' Block, Ramakamathupuram, T, Nagar, Ch17.', 'No:3 \'P\' Block, Ramakamathupuram, T, Nagar, Ch 17.', '2208070002', '', '1', 'upload_files/candidate_tracker/95641290206_Kanniammal M (Resume).pdf', NULL, '1', '2022-08-08', 0, '', '1', '85', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-07 09:02:41', 1, '2022-08-07 09:10:24', 0, NULL, 1),
(9718, 'S. Prakash', '16', '8939462151', '9092611012', 'Prakashthanish01@gmail.com', '2001-06-11', 21, '2', '2', 'Saravanan. K', 'driver', 12000.00, 1, 0.00, 13500.00, 'Chennai', 'Chennai', '2208080001', '1', '1', 'upload_files/candidate_tracker/52019591533_prakash resume.pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'poor communication ....no understanding... Donxquott have any idea about mIS xxamp Lookups...', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 09:53:14', 85, '2022-08-08 07:04:34', 0, NULL, 1),
(9719, 'Raguram.S', '4', '9176906470', '', 'raguram13800@gmail.com', '2001-09-19', 20, '2', '2', 'Selvaraj', 'Sales executive manager', 5000.00, 0, 0.00, 12000.00, 'Ayanavaram', 'Chennai', '2208080002', '1', '1', 'upload_files/candidate_tracker/48735650649_Raguram CV 1.pdf', NULL, '1', '2022-08-08', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50-50 profile job need... has Interest in sales ...average in convincing skills ..let you check and give your inputs...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 10:14:27', 85, '2022-08-08 07:11:42', 0, NULL, 1),
(9720, 'Nikitha.A', '25', '6382545557', '7338921314', 'nikidalsweety@gmail.com', '2000-07-18', 22, '2', '2', 'Anbazhagan', 'Railway contract', 200000.00, 1, 18000.00, 25000.00, 'No.61 Chengalvarayan Street Perambur Chennai 52', 'No.114 kamachi amman nagar vadakarai redhills', '2208080003', '1', '2', 'upload_files/candidate_tracker/52749361462_Intelligent CV Document (2).pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher to sales ... good communication ... average convicing skills... sal expt too high ..not suit for our process', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-08 10:24:06', 85, '2022-10-08 10:26:36', 0, NULL, 1),
(9721, 'Ravivarma. B', '4', '8883826218', '8778717125', 'ravivarmab2@gmail.com', '1992-05-18', 30, '2', '2', 'A. Balakrishnan', 'Cooli', 12.00, 1, 15.00, 18.00, 'erode', 'erode', '2208080004', '1', '2', 'upload_files/candidate_tracker/11595832504_RAVIVARMA(1.pdf', NULL, '1', '2022-08-08', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for tele sales', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 10:28:00', 92, '2022-08-08 10:54:45', 0, NULL, 1),
(9722, 'Rosebeena.S', '6', '9150974507', '', 'beenus292002@gmail.com', '2002-09-02', 19, '2', '2', 'A.Samsan', 'Driver', 13000.00, 1, 0.00, 12000.00, '84/kongu Nagar, Ellapalayam main Road, Erode', '84/Kongu Nagar, Ellapalayam Main Road, Erode', '2208080005', '1', '1', 'upload_files/candidate_tracker/37857102815_Rosebeena resume.docx.pdf', NULL, '1', '2022-08-08', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate okay but she told discuss with family for this job.. so we want to rejected', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-08 10:28:54', 92, '2022-08-08 03:18:07', 0, NULL, 1),
(9723, '', '0', '9894159895', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208080006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-08 10:31:00', 0, NULL, 0, NULL, 1),
(9724, 'Bairavi', '23', '6385702331', '', 'bairavivelit22@gmail.com', '2000-08-22', 21, '2', '2', 'velmurugan', 'farmer', 50000.00, 2, 0.00, 20000.00, 'Pattukottai', 'Chennai', '2208080007', '1', '1', 'upload_files/candidate_tracker/51458689860_BAIRAVIRESUME1.pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic Knowledge Of hTML xxamp CSS ... want to learn more...', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 10:34:45', 85, '2022-08-08 07:17:54', 0, NULL, 1),
(9725, 'Kumaraguru k', '5', '7904348262', '9994717549', 'kkumaraguru143@gmail.com', '2002-04-05', 20, '1', '2', 'Kumar R', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Saidhapet', 'Saidhapet', '2208080008', '', '1', 'upload_files/candidate_tracker/26112441465_kumaraguru RESUME (1) (1).pdf', NULL, '1', '2022-08-08', 0, 'P1279', '3', '59', '2022-08-10', 264000.00, '', '3', '2022-10-05', '2', 'Shanmugam team', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-08 10:54:14', 60, '2022-08-10 10:13:48', 0, NULL, 1),
(9726, 'M.yazhini', '4', '9345026023', '9600860697', 'Manisekaran98@gmail.com', '1998-02-08', 24, '3', '2', 'Manisekaran', 'Farmer', 5000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur Nedar', '2208080009', '', '1', 'upload_files/candidate_tracker/99833831091_yazhini.pdf', NULL, '1', '2022-08-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:07:27', 1, '2022-08-08 11:25:22', 0, NULL, 1),
(9727, 'Usha .s', '4', '6379180391', '9940790295', 'Sankarusha375@gmail.com', '2002-11-10', 19, '3', '2', 'S.s.sankar', 'Weaving', 8000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2208080010', '', '1', 'upload_files/candidate_tracker/69516024027_usha.pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-10', 126312.00, '', '3', '2022-11-09', '2', 'Selected for Thanjavur Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-08 11:09:20', 60, '2022-08-08 08:20:15', 0, NULL, 1),
(9728, 'M.karthika', '4', '8531048362', '9751010483', 'mkarthika421@gmail.com', '2002-01-21', 20, '3', '2', 'A.Murugesan', 'Work in Aavin', 8000.00, 1, 0.00, 8000.00, 'Thanjavur', 'Thanjavur', '2208080011', '', '1', 'upload_files/candidate_tracker/16006111138_KARTHIKA.docx', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not going to join she is relocating back to native', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:11:12', 1, '2022-08-08 11:39:23', 0, NULL, 1),
(9729, 'R.subha', '4', '6374033573', '6384669761', 'subharaj0905@gmail.com', '2002-05-09', 20, '3', '2', 'G.raja', 'Farmer', 7000.00, 2, 0.00, 10000.00, '1/174 South Street vilar thanjavur', '1/174 South Street vilar thanjavur', '2208080012', '', '1', 'upload_files/candidate_tracker/65827093078_subha.pdf', NULL, '1', '2022-08-08', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:12:11', 1, '2022-08-08 11:43:44', 0, NULL, 1),
(9730, 'S.Eswari', '13', '7395999625', '7358574511', 'eswariblogmca@gmail.com', '1997-09-23', 24, '2', '2', 'Singaravelu', 'Retried bank Employee', 8000.00, 1, 0.00, 20000.00, 'Thirumagalam', 'Thirumagalam', '2208080013', '1', '1', 'upload_files/candidate_tracker/45947001589_ESW _RES.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much comfort with TxxampC Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-08 11:27:18', 1, '2022-08-08 11:38:02', 0, NULL, 1),
(9731, 'Deepa priya p', '13', '7358192676', '', 'deepapriya23061998@gmail.com', '1998-06-23', 24, '2', '2', 'Pandiyan p g', 'Tenant business', 20000.00, 1, 0.00, 20000.00, 'Ambattur', 'Ambattur', '2208080014', '1', '1', 'upload_files/candidate_tracker/83012641632_priya.resume.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain for a long may get marry next year,also not comfort much with the TxxampC Salary', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-08 11:27:26', 1, '2022-08-08 11:38:17', 0, NULL, 1),
(9732, 'B. makesh kumar', '31', '9003218320', '', 'mukeshkrishnan2603@gmail.com', '2002-03-26', 20, '2', '2', 'B.Hema kumari', 'Employee', 30000.00, 1, 0.00, 15000.00, 'Collector nagar', 'Koyambedu', '2208080015', '1', '1', 'upload_files/candidate_tracker/97009598243_CV_2022071610593443.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Wil not sustain for a long not open much with TxxampC not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-08 11:28:25', 1, '2022-08-08 11:33:35', 0, NULL, 1),
(9733, 'Kanimozhi.v', '4', '9786307875', '9994313662', 'Jenivincent22@gmail.com', '1998-03-22', 24, '3', '2', 'K.vincent', 'Farmer', 7000.00, 2, 0.00, 10000.00, 'Thanjavur', '1/174 South Street vilar thanjavur', '2208080016', '', '1', 'upload_files/candidate_tracker/71596069696_Adobe Scan Aug 05, 2022.pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-10', 126312.00, '', '3', '2022-08-25', '2', 'Consultant role Thanjavur Loca', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-08 11:37:18', 60, '2022-08-09 08:51:37', 0, NULL, 1),
(9734, '', '0', '8681813231', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208080017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-08 11:42:35', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9735, 'Asha.R', '4', '9751764908', '9360353585', '2000asharavikumar@gmail.com', '2000-06-10', 22, '3', '2', 'Ravikumar.k', 'Daily wages', 5000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2208080018', '', '1', 'upload_files/candidate_tracker/55804374857_2022_08_01 9_03 pm Office Lens.pdf', NULL, '1', '2022-08-08', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:43:15', 1, '2022-08-08 11:57:57', 0, NULL, 1),
(9736, 'Ramajayam k', '31', '8778405446', '9382875101', 'ramr65007@gmail.com', '2002-02-11', 20, '3', '2', 'Kasi', 'Mechanic', 80000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208080019', '', '1', 'upload_files/candidate_tracker/24576827976_Ramajayam Resume.pdf', NULL, '1', '2022-08-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 11:52:06', 1, '2022-08-08 12:03:42', 0, NULL, 1),
(9737, 'vasudevan', '4', '9344900572', '', 'vasu05593@gmail.com', '2001-12-01', 20, '2', '2', 'e.chakkaravathi', 'welder', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2208080020', '1', '1', 'upload_files/candidate_tracker/33157889263_CV_2022070415144373.pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-11', 126312.00, '', '5', '1970-01-01', '1', 'Selected for Consultant Role - Arumbakkam', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 11:56:06', 60, '2022-08-09 03:57:38', 0, NULL, 1),
(9738, 'paul marshal', '4', '8015104865', '', 'fpaulmarshal5@gmail.com', '2001-12-16', 20, '2', '2', 'francis', 'real estate', 12000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2208080021', '1', '1', 'upload_files/candidate_tracker/92435443292_CV_2022072919243238 (1).pdf', NULL, '1', '2022-08-08', 0, '', '3', '59', '2022-08-11', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Arumbakkam - Consultant Role', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-08 11:56:14', 60, '2022-08-11 12:16:04', 0, NULL, 1),
(9739, 'R.Balaji', '13', '9566456992', '', 'balajiravi0510@gmail.com', '1997-04-10', 25, '2', '2', 'S.Ravi', 'Bus Condractor', 20000.00, 1, 0.00, 18000.00, 'Arakkonam', 'Arakkonam', '2208080022', '1', '1', 'upload_files/candidate_tracker/38369801821_Resume - BALAJI.R.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to Relocate Fresher no basic skills family need is there if he come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-08 12:30:03', 92, '2022-08-08 02:36:35', 0, NULL, 1),
(9740, 'Surya N', '4', '7339510792', '7448952840', 'vinisurya8531@gmail.com', '2001-02-02', 21, '2', '2', 'Narayanasamy', 'Farmer', 10000.00, 2, 0.00, 14000.00, 'Meliruppu', 'kK.nagar', '2208080023', '1', '1', 'upload_files/candidate_tracker/66724556803_Surya_cse_software.pdf', NULL, '1', '2022-08-08', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up. not suit for telecalling', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-08 12:47:27', 85, '2022-08-08 01:33:48', 0, NULL, 1),
(9741, 'Boopathi R', '4', '9976087755', '9659193856', 'boopathiraja731@gmail.com', '1992-05-24', 30, '1', '2', 'Raman', 'Labour', 10000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2208080024', '', '1', 'upload_files/candidate_tracker/44627571742_Boopathi .pdf', NULL, '1', '2022-08-08', 0, 'CI139', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 01:04:54', 1, '2022-08-08 01:11:41', 0, NULL, 1),
(9742, 'S RANJITH KUMAR', '5', '8489342468', '9443103060', 'ranjithpeter12@gmail.com', '2000-06-12', 22, '1', '2', 'R SANKAR', 'Sales man', 12000.00, 1, 0.00, 15000.00, 'Bangalore', 'Bangalorr', '2208080025', '', '1', 'upload_files/candidate_tracker/1577406877_ranjithkumar.docx', NULL, '1', '2022-08-08', 0, 'P1322', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 02:15:40', 1, '2022-08-08 02:31:56', 0, NULL, 1),
(9743, 'fahath', '14', '9884383159', '', 'fahathifa@gmail.com', '1993-04-30', 29, '3', '1', 'yasmin', 'homemaker', 15000.00, 1, 0.00, 15000.00, 'chennai', 'old washermenpet', '2208080026', '', '1', 'upload_files/candidate_tracker/43985457163_Fahath Resume - Flutter Developer.pdf', NULL, '1', '2022-08-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Will not sustain in our domain fresher he was into core for 5 yrs not suitable ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-08 03:25:20', 1, '2022-08-08 03:35:40', 0, NULL, 1),
(9744, 'NITHYANANTHAM. D', '4', '7092415513', '9962755138', 'massnithyanandam@gmail.com', '2000-08-09', 21, '2', '2', 'Dhana gopi. D', 'Driver', 30000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2208080027', '1', '2', 'upload_files/candidate_tracker/22776688931_NITHYANANDAM resume(1)-1.pdf', NULL, '1', '2022-08-09', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'average in convincing skills... salary expt high...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-08 05:44:44', 85, '2022-08-09 04:52:29', 0, NULL, 1),
(9745, '', '0', '8939645989', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208080028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-08 06:32:18', 0, NULL, 0, NULL, 1),
(9746, 'Kalvath T', '16', '9600020891', '', 'kalvath18@gmail.com', '1990-09-12', 31, '2', '1', 'Thameem Ansari K', 'NA', 10000.00, 1, 19500.00, 20000.00, 'Chennai', 'Chennai', '2208090001', '1', '2', 'upload_files/candidate_tracker/71510879847_Kalvath_CV.pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much focussed on Accounts position,will not handle our pressure', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-09 06:10:26', 85, '2022-08-09 09:28:10', 0, NULL, 1),
(9747, 'Deepak.R', '2', '7092665480', '9566178348', 'iamdeepakdd04@gmail.com', '2000-12-04', 21, '2', '2', 'K.Ramalingam', 'Business', 35000.00, 1, 0.00, 25000.00, 'No.73/1, 1st Mettu Street, Ernavoor, Chennai-57', 'No.73/1, 1st Mettu Street, Ernavoor, Chennai-57', '2208090002', '1', '1', 'upload_files/candidate_tracker/18869669950_deepakresume (2).pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance will not sustain in our roles', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-09 09:58:00', 1, '2022-08-09 10:03:58', 0, NULL, 1),
(9748, 'Ragul.R', '2', '7338998660', '', 'ragulrragulr15@gmail', '2002-03-30', 20, '2', '2', 'Ramesh.C', 'Supervisor', 30000.00, 1, 0.00, 15000.00, '3/241, marikolundhu street, mannivakkam', 'Mannivakkam', '2208090003', '1', '1', 'upload_files/candidate_tracker/27829064845_ragul.docx', NULL, '1', '2022-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance almost 54kms up and down will not run in a long show', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-09 09:58:59', 1, '2022-08-09 10:07:57', 0, NULL, 1),
(9749, 'Gopinath K', '2', '6374846404', '9626172667', 'gosopinath@gmail.com', '1999-02-16', 23, '2', '2', 'Kandhasamy V', 'Former', 4000.00, 1, 8000.00, 20000.00, 'Salem', 'Anna nagar', '2208090004', '1', '2', 'upload_files/candidate_tracker/47119260925_gopinathk.pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Exp is high not much stable with his previous exp not much comfort with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-09 10:19:11', 1, '2022-08-09 10:43:35', 0, NULL, 1),
(9750, 'M.nithiya', '20', '8667574691', '9360864820', 'mnithya517@gmail.com', '1990-06-22', 32, '3', '1', 'Mahendran', 'Telecaller', 14000.00, 2, 13000.00, 15000.00, 'Thenampettai', 'Thenampet', '2208090005', '', '2', 'upload_files/candidate_tracker/69957003270_TapScanner 08-09-2022-10?45 (1).pdf', NULL, '1', '2022-08-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Career Gap Fresher to this domain age around 32 wil not run in a long show', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-09 10:35:59', 1, '2022-08-09 10:58:20', 0, NULL, 1),
(9751, 'Usharani.J', '4', '8939635689', '8248301614', 'Ushasunthari29@gmail.com', '2001-03-29', 21, '2', '2', 'Parent', 'Peller', 15000.00, 1, 0.00, 17000.00, 'Poonthamalli', 'Poonthamalli', '2208090006', '1', '1', 'upload_files/candidate_tracker/2299054650_resume.docx', NULL, '1', '2022-08-09', 0, '', '2', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Expecting high salary and asking one month time to join need to try this month last week', '1', '1', '', '1', '3', '', '2', '2022-08-29', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-09 10:45:06', 85, '2022-08-09 01:36:51', 0, NULL, 1),
(9752, 'Karthick raja R', '23', '8098801454', '9994226521', 'karthickraja5598@gmail.com', '2007-08-09', 0, '2', '2', 'Ramesh m', 'Cooli', 22000.00, 1, 0.00, 20000.00, 'ARUPPUKOTTAI', 'ARUPPUKOTTAI', '2208090007', '1', '2', 'upload_files/candidate_tracker/29421547503_Karthick Raja_Resume.pdf', NULL, '1', '2022-08-09', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher kindly check and let me know your inputs', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-09 10:45:08', 1, '2022-08-09 10:53:29', 0, NULL, 1),
(9753, 'BALAKRISHNAN V', '4', '6374279757', '9003604825', 'balakrishtnj422@gmail.com', '2000-10-24', 21, '2', '2', 'Viji', 'Housewife', 20000.00, 1, 0.00, 15000.00, '11A MATHAVARAO NAGAR 1ST TREET N.K ROAD THANJAVUR', 'Thanjavur', '2208090008', '1', '1', 'upload_files/candidate_tracker/55265086360_BALA RESUME.pdf', NULL, '1', '2022-08-09', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 11:09:38', 92, '2022-08-09 12:12:06', 0, NULL, 1),
(9754, 'Kuralan', '4', '6385882862', '9080977522', 'kussikural23@gmail.com', '2000-03-23', 22, '2', '2', 'A.Ravichandran', 'Tea shop', 15000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2208090009', '1', '1', 'upload_files/candidate_tracker/5011379344_My resume _ CV - Jofibo.pdf', NULL, '1', '2022-08-09', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 11:09:57', 92, '2022-08-09 11:24:02', 0, NULL, 1),
(9755, 'nelson', '4', '9360883500', '', 'nk3579600@gamil.com', '2000-10-23', 21, '2', '2', 'rajakumar', 'railway', 200000.00, 2, 0.00, 12000.00, 'thajavur', 'thajavur', '2208090010', '1', '1', 'upload_files/candidate_tracker/64335737837_nelson.pdf', NULL, '1', '2022-08-09', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 11:24:18', 92, '2022-08-09 12:12:39', 0, NULL, 1),
(9756, 'Manimaran', '4', '7092610929', '', 'pjstylezz1997@gmail.cim', '1997-08-07', 25, '2', '2', 'Elumalai', 'Farmer', 1500.00, 2, 0.00, 13000.00, 'Chrompet', 'Chrompet', '2208090011', '1', '1', 'upload_files/candidate_tracker/56018613998_Resume for mani.doc', NULL, '1', '2022-08-09', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suit for sales... no convincing skill', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 12:19:53', 85, '2022-08-09 05:47:28', 0, NULL, 1),
(9757, 'Suruthi', '4', '9500745974', '9789668327', 'shruthiezhumalai2002@gmail.com', '2002-07-22', 20, '2', '2', 'Elumalai', 'Rice mill', 15000.00, 1, 0.00, 13000.00, 'Maduranthagam', 'Maduranthagam', '2208090012', '1', '1', 'upload_files/candidate_tracker/90236716781_suruthi.pdf', NULL, '1', '2022-08-09', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 12:20:09', 85, '2022-08-09 05:45:21', 0, NULL, 1),
(9758, 'vanaja', '4', '9884162486', '', 'vanajaelango2@gmail.com', '2002-03-20', 20, '2', '2', 'elango', 'tea shop', 15000.00, 1, 0.00, 13000.00, 'Chennai', 'Chennai', '2208090013', '1', '1', 'upload_files/candidate_tracker/34550664573_WhatsApp Image 2022-08-09 at 2.35.52 PM.pdf', NULL, '1', '2022-08-09', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Understanding...not suit for our process', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-09 12:20:10', 85, '2022-08-09 05:42:55', 0, NULL, 1),
(9759, 'Sundar Chandrasekaran', '4', '9087643430', '', 'sundarc0102@gmail.com', '1998-12-01', 23, '3', '2', 'Chandrasekaran', 'Carpenter', 200000.00, 0, 0.00, 14000.00, 'Chennai', 'Chennai', '2208090014', '', '1', 'upload_files/candidate_tracker/45213356215_SUNDAR CV .pdf', NULL, '1', '2022-08-09', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-09 12:35:50', 1, '2022-08-09 12:39:57', 0, NULL, 1),
(9760, 'Dhivya Bharathi.R', '25', '8248639805', '8608278244', 'dhivyabharathi4508@gmail.com', '2001-11-15', 20, '2', '2', 'Sujatha R', 'Housekeeping', 8000.00, 2, 0.00, 15000.00, 'Korukkupet', 'Vysarpadi', '2208100001', '1', '1', 'upload_files/candidate_tracker/32813515220_Dhivya Bharathi.pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no idea about telesales... no Convincing skill.. not suit for sales', '8', '2', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-10 09:45:48', 85, '2022-08-10 03:31:51', 0, NULL, 1),
(9761, 'D. Sangeetha', '20', '9150703338', '9003217569', 'sangeetha.adm12@gmail.com', '1995-07-18', 27, '2', '1', 'S.Sathyaraj', 'Salried', 30000.00, 0, 20000.00, 25000.00, 'Chennai', 'West mambalam', '2208100002', '1', '2', 'upload_files/candidate_tracker/17105871031_CURRICULAM VITAE 1.pdf', NULL, '3', '2022-11-22', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok have exp in backend but can give a try for B2B,only thing she is not much ok with Spencer kindly check and let us know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-10 09:53:30', 85, '2022-11-22 04:14:08', 0, NULL, 1),
(9762, 'N C SWARAPOORNIMA', '4', '6382139244', '7603824617', 'swarapoornima201@gmail.com', '2001-11-16', 20, '2', '2', 'N C BABU', 'Shutter machine', 9000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208100003', '1', '1', 'upload_files/candidate_tracker/97942350527_N C SWARAPOORNIMA.docxg.pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'average in convincing skill..voice too low .... will not handle pressure', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-10 10:19:46', 85, '2022-08-10 03:24:15', 0, NULL, 1),
(9763, 'Karthika', '6', '9384705383', '7305423174', 'karthuma21@gmail.com', '2002-03-21', 20, '1', '2', 'K.babu', 'Auto driver', 15000.00, 1, 0.00, 12000.00, 'Royapettah', 'Royapettah', '2208100004', '', '1', 'upload_files/candidate_tracker/42884693327_Resume_Karthika_Format7.pdf 1.pdf', NULL, '1', '2022-08-10', 0, 'P1287', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NO', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 10:20:09', 85, '2022-08-10 11:53:56', 0, NULL, 1),
(9764, 'D. Sangeetha', '25', '9003727916', '', 'sangeetha.adm12@gmail.com', '1995-07-07', 27, '2', '1', 'Sathyaraj. S', 'Central government', 30000.00, 1, 19000.00, 12000.00, 'T. Nagar', 'T. Nagar', '2208100005', '1', '2', 'upload_files/candidate_tracker/29491738131_pdfconverter202208101457.pdf', NULL, '1', '2022-08-10', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication .... Ok with sales xxamp Convincing Skills.. need to check sustainability...kindly check and confirm', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-10 10:29:16', 85, '2022-08-10 12:14:44', 0, NULL, 1),
(9765, 'Yeshwanth', '4', '8072941091', '', 'ryeshwanth999@gmail.com', '1999-07-25', 23, '1', '2', 'M.Ramachandran', 'Eletrition', 15000.00, 1, 12000.00, 15000.00, 'Chennai,chetpet', 'chennai', '2208100006', '', '2', 'upload_files/candidate_tracker/45789890908_Document 4.pdf', NULL, '1', '2022-08-10', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-10 10:45:46', 1, '2022-08-10 12:31:58', 0, NULL, 1),
(9766, 'Abdul jaffar.m', '4', '9025321266', '8760129838', 'thahir78612@gmail.com', '2002-06-04', 20, '3', '2', 'Mohammed hussain', 'Tailor', 10000.00, 1, 0.00, 10000.00, '100/298, kollupettai street, kellavasal,thanjavur', '100/298, kollupettai street, kellavasal,thanjavur', '2208100007', '', '1', 'upload_files/candidate_tracker/53896896088_jaf res.pdf', NULL, '1', '2022-08-10', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-10 11:17:39', 1, '2022-08-10 11:29:43', 0, NULL, 1),
(9767, 'Ramadoss.A', '2', '9843754033', '7904136897', 'ramadoss9843@gmail.com', '1999-04-02', 23, '2', '2', 'Adhinarayanan', 'Former', 8000.00, 2, 0.00, 30000.00, 'Tindivanam', 'Chengalpattu', '2208100008', '1', '1', 'upload_files/candidate_tracker/90916574271_Ramadoss.A.doc', NULL, '2', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no understanding ... have Knowledge in html xxamp CSS ...presently Studying in besant technology... need to learn more ..no idea about react', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-10 12:02:15', 85, '2022-08-10 04:04:56', 0, NULL, 1),
(9768, 'Pavithra', '4', '8220789951', '9842592517', 'pavithra123merlin@gmail.com', '1999-06-07', 23, '1', '2', 'James muthu', 'Former', 8000.00, 2, 0.00, 10000.00, 'Thiruvallur', 'Thiruvallur', '2208100009', '', '1', 'upload_files/candidate_tracker/3130628631_IMG20220810123429.pdf', NULL, '1', '2022-08-10', 0, 'Jobs', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not selected', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 12:06:49', 85, '2022-08-10 03:15:07', 0, NULL, 1),
(9769, 'Devadharshini. G', '5', '9884960952', '9962933395', 'Devadharshini1001@gmail.com', '2001-06-04', 21, '2', '2', 'J. Ganapathy', 'electrician', 13000.00, 1, 15000.00, 20000.00, 'injambakkam', 'Injambakkam', '2208100010', '1', '2', 'upload_files/candidate_tracker/10800400939_Devadharshini.pdf', NULL, '1', '2022-08-10', 8, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'average in sales .... not much good in Convincing ...sal expt high ..will not suit for our telesales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-10 12:12:23', 85, '2022-08-10 03:14:14', 0, NULL, 1),
(9770, 'S gnana sekar', '6', '8946087929', '7305855320', 'sekarsathish1024@gmail.com', '1997-02-10', 25, '1', '2', 'Selvam k', 'Painter', 18000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai - moolakadai', '2208100011', '', '2', 'upload_files/candidate_tracker/53014409333_Sekar resume.docx.pdf', NULL, '1', '2022-08-10', 0, 'Jobs', '3', '59', '2022-08-12', 252000.00, '', '4', '2023-06-29', '2', 'Selected for Syed Team', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 12:42:20', 60, '2022-08-11 03:50:04', 0, NULL, 1),
(9771, 'Akash s', '13', '9159903152', '', 'Akakvc@gmail.com', '1998-05-21', 24, '4', '2', 'Senthil kumar c', 'Teacher', 20000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Velapanchavadi, ponammalle, chennai', '2208100012', '', '1', 'upload_files/candidate_tracker/87623975537_Akash web developer.pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Idea about PHP ...will not sustain', '2', '1', '', '4', '5', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 01:06:55', 85, '2022-08-10 01:33:00', 0, NULL, 1),
(9772, 'Gayathri.K', '4', '7358626177', '', 'gayathri8398@gmail.com', '1998-03-08', 24, '2', '2', 'K.Kumar', 'Stationary Business', 15000.00, 1, 180000.00, 200000.00, 'Chennai', 'Chennai', '2208100013', '1', '2', 'upload_files/candidate_tracker/52106836172_Resume (1).pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'good communication ...ok with sales ... average in convincing skills.. sal expt too high ..will not sustain ...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-10 01:27:03', 85, '2022-08-10 03:10:43', 0, NULL, 1),
(9773, 'Abdul Basith', '4', '8220609139', '7448623757', 'abdulbashik48@gmail.com', '1998-05-07', 24, '3', '2', 'Sri laky', 'Work', 40000.00, 1, 0.00, 15.00, 'Solinganallur', 'Medavakkam', '2208100014', '', '1', 'upload_files/candidate_tracker/83112094008__Template_1659165121656.pdf', NULL, '1', '2022-08-10', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not open up...will not suit for our process...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-10 01:53:51', 85, '2022-08-10 03:09:01', 0, NULL, 1),
(9774, 'S . Shyam', '23', '8778230852', '', 'shyamsivakumar2@gmail.com', '2000-12-19', 21, '2', '2', 'B . SIVAKUMAR', 'Student', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2208110001', '1', '1', 'upload_files/candidate_tracker/40779582465_CV.pdf', NULL, '1', '2022-08-11', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no understanding... need to learn lot...', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 09:49:34', 85, '2022-08-16 09:58:43', 0, NULL, 1),
(9775, 'PRAVEEN P', '4', '9025985136', '7448377687', 'palanipraveen10@gmail.com', '1991-05-25', 31, '2', '2', 'pappa P', 'OA @DISTRICT POLICE OFFICE TIRUVARUR', 25000.00, 1, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2208110002', '1', '2', 'upload_files/candidate_tracker/6542887295_RESUME 2022.docx', NULL, '1', '2022-08-11', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 10:52:53', 92, '2022-08-11 11:06:29', 0, NULL, 1),
(9776, 'Aarthi', '4', '8248045930', '9047717644', 'aarthibaskar109@gmail.com', '2002-01-22', 20, '2', '2', 'Baskaran', 'Farmer', 10000.00, 2, 5000.00, 15000.00, '50/1nariyanpalayam', 'Pattukkottai', '2208110003', '1', '2', 'upload_files/candidate_tracker/84356002692_aarthi2022.docx', NULL, '1', '2022-08-11', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-11 11:03:35', 85, '2022-08-11 11:51:49', 0, NULL, 1),
(9777, 'vallal peruman v', '4', '9842149426', '', 'v.vallal1997@gmail.com', '1997-06-10', 25, '2', '2', 'vadivel', 'farmer', 12000.00, 2, 0.00, 13000.00, 'chennai', 'chennai', '2208110004', '2', '1', 'upload_files/candidate_tracker/14058946049_vallal resume2.0.pdf', NULL, '1', '2022-08-11', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Understanding... not suit for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-11 11:15:47', 85, '2022-08-11 05:54:24', 0, NULL, 1),
(9778, 'Praveen kumar p', '4', '9626397998', '', 'praveenkumar1162000@gmail.com', '2002-04-03', 20, '3', '2', 'Parthiban.A', 'Farmer', 10000.00, 0, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2208110005', '', '1', 'upload_files/candidate_tracker/76510503030_praveen 2.pdf', NULL, '1', '2022-08-11', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-11 11:47:39', 1, '2022-08-11 12:10:38', 0, NULL, 1),
(9779, '', '0', '8220540422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208110006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-11 11:54:19', 0, NULL, 0, NULL, 1),
(9780, 'U. Elavarasan', '4', '9360227488', '9944581293', 'elavarasanuk05@gmail.com', '2001-07-21', 21, '2', '2', 'R. Udhayakumar', 'Security', 9000.00, 1, 0.00, 13000.00, 'Thiruvannamalai, Vandavasi', 'Villivakkam, Chennai', '2208110007', '1', '1', 'upload_files/candidate_tracker/57926557336_Elavarasan Resume .docx', NULL, '1', '2022-08-11', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he will not suit for telesales...', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 12:24:57', 85, '2022-08-11 06:22:29', 0, NULL, 1),
(9781, 'K. pradeepkumar', '4', '9345138402', '9884105456', 'pradeepkumar.kdhanasekar.v@gmail.com', '1998-04-07', 24, '2', '2', 'K.kannan K.meena', 'Plumber', 30000.00, 1, 0.00, 10000.00, 'Villivakkam chennai', 'Villivakkam chennai', '2208110008', '1', '1', 'upload_files/candidate_tracker/46902512961_CV_2022070420060097.pdf', NULL, '1', '2022-08-11', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'He Will Not Suit For Telesales...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 12:25:12', 85, '2022-08-11 06:22:51', 0, NULL, 1),
(9782, 'Jayasurya K', '6', '8248236070', '', 'jsuryakk@gmail.com', '2000-07-19', 22, '2', '2', 'Kannan K', 'Technician', 20000.00, 1, 0.00, 275000.00, 'Mayiladuthurai', 'Tambaram sanatorium', '2208110009', '1', '1', 'upload_files/candidate_tracker/17733759664_jayasurya resume figma .pdf', NULL, '1', '2022-08-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate didnt turn back with his confirmation not responding the calls\n', '5', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-11 04:41:37', 85, '2022-08-11 05:40:32', 0, NULL, 1),
(9783, 'Kelwin', '4', '8939982427', '', 'anukelwin@gmail.com', '2002-05-17', 20, '3', '2', 'Balajoji', 'Telecally', 100000.00, 1, 18000.00, 18000.00, 'Korukkupet', 'Korukkupet', '2208120001', '', '2', 'upload_files/candidate_tracker/64302357325_kelwin.pdf', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suit For Telesales...long distance too', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-12 10:37:01', 85, '2022-08-13 12:19:02', 0, NULL, 1),
(9784, 'Abhishek P', '23', '9092240206', '7401153273', 'abhishekpunithan@gmail.com', '1998-08-05', 24, '3', '2', 'Punithan', 'State govt employee', 300000.00, 1, 0.00, 250000.00, 'Chennai', 'Chembarambakkam', '2208120002', '', '1', 'upload_files/candidate_tracker/28966605847_AbhiCV.pdf', NULL, '1', '2022-08-12', 0, '', '5', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'high salary expectation\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-12 10:44:02', 85, '2022-08-13 01:40:50', 0, NULL, 1),
(9785, 'ranjithkumar', '4', '9659104172', '', 'ranjithrs365@gmail.com', '1997-10-03', 24, '4', '2', 'thangavel', 'bussiness', 30000.00, 0, 0.00, 15000.00, 'tirupur', 'choolaimedu', '2208120003', '', '1', 'upload_files/candidate_tracker/2391813989_Ranjith Kumar Resume.docx', NULL, '3', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Interested in voice process and not suit for our process', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-12 10:56:57', 85, '2022-08-13 01:00:34', 0, NULL, 1),
(9786, 'Anija', '4', '8939982426', '', 'anijaanija899@gamil.com', '2001-04-04', 21, '3', '2', 'Abraham', '100000', 3.00, 3, 18000.00, 18000.00, 'Korukkupet', 'Korukkupet', '2208120004', '', '2', 'upload_files/candidate_tracker/72571789399_anija resume.pdf', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for telesales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-12 11:05:36', 85, '2022-08-13 12:18:31', 0, NULL, 1),
(9787, 'Karthikeyan', '4', '7871311373', '8754518499', 'karthisubramaniyan33709@gmail.com', '2002-03-08', 20, '2', '2', 'Karpagam', 'NIL', 10.00, 0, 0.00, 12000.00, '10/55 Raju St , West Mambalam', '10/55 Raju St, West Mambalam', '2208120005', '1', '1', 'upload_files/candidate_tracker/30017800340_Karthikeyan resume.docx', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for telesales..', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-12 11:32:33', 85, '2022-08-16 12:20:30', 0, NULL, 1),
(9788, 'Tamilselvan N', '13', '7094018645', '9843949673', 'tamilselvanant5@gmail.com', '1997-11-11', 24, '2', '2', 'Nithiyanantham', 'Job searching', 7000.00, 2, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2208120006', '1', '1', 'upload_files/candidate_tracker/5050005291_N. Tamilselvan Resume - Fresher.pdf', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need To learn lot... Sustainability Doubt ....', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-12 11:36:37', 85, '2022-08-13 01:39:10', 0, NULL, 1),
(9789, 'celocious alltrin', '2', '8939401189', '', 'celouciousalltrinmf@gmail.com', '1999-12-15', 22, '2', '2', 'fraklin', 'teacher', 30000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2208120007', '1', '1', 'upload_files/candidate_tracker/31405109225_Celocious Alltrin MF.pdf', NULL, '1', '2022-08-12', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good at skills... seems like no job Needs...not okay With our TxxampC .. will not sustain ..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-12 11:52:58', 85, '2022-08-13 12:14:54', 0, NULL, 1),
(9790, 'P.reddi prasad', '5', '7671040410', '', 'reddiprasad4612@gmail.com', '1997-01-03', 25, '1', '2', 'P Reddappa', 'Farmer', 15000.00, 1, 15000.00, 20000.00, 'Madanapalli', 'Bangalore', '2208120008', '', '2', 'upload_files/candidate_tracker/55655233389_Resume reddy.pdf', NULL, '1', '2022-08-12', 0, 'P1328', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-12 11:58:51', 1, '2022-08-12 12:13:19', 0, NULL, 1),
(9791, 'Prasanna', '4', '6383689762', '', 'prasannajeeva21@gmail.com', '1997-07-09', 25, '2', '2', 'Ragunathan', 'Farmers', 300000.00, 1, 12500.00, 13000.00, 'Thanjavur', 'Thanjavur', '2208120009', '1', '2', 'upload_files/candidate_tracker/38845210313_PRASANNA RESUME-converted (1).docx', NULL, '1', '2022-08-13', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-12 07:05:44', 85, '2022-08-13 10:58:38', 0, NULL, 1),
(9792, 'Premkumar', '31', '9345572923', '', 'premkumar93455@gmail.com', '2002-05-04', 20, '2', '2', 'RAMADASS G', 'Coolie', 35000.00, 1, 0.00, 15000.00, 'Perumbakkam', 'Perumbakkam', '2208130001', '1', '1', 'upload_files/candidate_tracker/46718986872_RESUME-1.pdf', NULL, '1', '2022-08-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'currently doing his1m intern in react.. ... but he is not much good in react ..has more Interest in DevOps...need to learn lot.... long distance too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-13 09:44:18', 85, '2022-08-13 01:22:59', 0, NULL, 1),
(9793, 'MOHAMED IBRAHIM M', '31', '9500920916', '', 'mdibrahim3057@gmail.com', '1998-11-22', 23, '2', '2', 'NASARATH BEGAM M', 'HOME MAKER', 25000.00, 2, 0.00, 15000.00, '691/1 PUDHUMANAI STREET, POONTHOTTAM,THIRUVARUR', '1/32A BHARATHIDASAN ST,PSR NAGAR,PALAVAKKAM', '2208130002', '1', '1', 'upload_files/candidate_tracker/50456959427_Mohamed new frontend cv 10.3.22-1.pdf', NULL, '1', '2022-08-13', 0, '', '3', '59', '2022-08-23', 96000.00, '', '', '2022-10-12', '1', 'Selected for React Internship cum employment', '2', '1', '', '1', '1', '', '2', '2022-08-16', '1', '2', '2nd Kaviya Technical Round\n3rd round Gokul - Confirmed', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-13 10:21:37', 60, '2022-08-23 09:52:52', 0, NULL, 1),
(9794, 'MOHAMED SATHIK ALI S', '6', '7904593883', '', 'msasms3786@gmail.com', '1997-06-01', 25, '2', '2', 'FATHIMA', 'Administration', 90000.00, 2, 18000.00, 20000.00, 'ERODE', 'ERODE', '2208130003', '1', '2', 'upload_files/candidate_tracker/14630458142_SMS. A (CV) ....pdf', NULL, '1', '2022-08-13', 1, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-13 10:39:24', 85, '2022-08-13 10:59:03', 0, NULL, 1),
(9795, 'Gunaseelan E', '23', '8056207676', '7397490204', 'egunaseelan210@gmail.com', '1997-04-02', 25, '2', '2', 'Elumalai V', 'Business', 40000.00, 2, 15000.00, 20000.00, 'West Tambaram, Chennai', 'West Tambaram, Chennai', '2208130004', '1', '2', 'upload_files/candidate_tracker/20785093353_GunaResume - Frontend Developer.pdf', NULL, '1', '2022-08-13', 1, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Average communication ... but Has skills in uI developer. has 10m exp in uI developer ...reason for changing job learning xxamp sal hike... will not sustain A long ... sal expt also high...', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-13 10:57:04', 92, '2022-08-13 03:17:49', 0, NULL, 1),
(9796, 'Sabtha Rishi', '2', '8072197822', '8637429427', 'sabtharishi01@gmail.com', '2001-07-19', 21, '2', '2', 'Kanmani a', 'Nil', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2208130005', '1', '1', 'upload_files/candidate_tracker/22457335027_Resume_Sabtha_Rishi (3).pdf', NULL, '1', '2022-08-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good communication...not that much good in js ...seems like no job need .....will not sustain', '2', '1', '', '4', '6', '', '2', '2022-08-16', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-13 11:26:02', 85, '2022-08-18 11:07:29', 0, NULL, 1),
(9797, 'Akash B M', '6', '8608602529', '', 'Akashbm14@gmail.com', '1998-12-14', 23, '3', '2', 'Amudhavalli', 'House wife', 10000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2208130006', '', '2', 'upload_files/candidate_tracker/48078702905_Akash Resume.pdf', NULL, '1', '2022-08-13', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Will not suit for sales.... voice too low', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-13 12:19:39', 85, '2022-08-13 01:35:35', 0, NULL, 1),
(9798, 'SURIYA M', '4', '6379261590', '9994723739', 'suriyachem27@gmail.com', '2000-03-27', 22, '2', '2', 'MARIMUTHU C', 'FARMERS', 10000.00, 1, 0.00, 12000.00, 'THANJAVUR', 'THANJAVUR', '2208130007', '1', '1', 'upload_files/candidate_tracker/84403528450_SURIYA M.pdf', NULL, '1', '2022-08-16', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-13 04:35:02', 85, '2022-08-16 10:03:36', 0, NULL, 1),
(9799, 'SRIRAM', '4', '9976646876', '7402437764', 'sriramrajn@gmail.cpm', '1994-10-25', 27, '4', '2', 'Nagaraj', 'Accountant', 40000.00, 1, 13500.00, 15000.00, '69, senkottayan nagar,vairapalay,erode', '69, senkottayan nagar, vairapalay,erode', '2208130008', '', '2', 'upload_files/candidate_tracker/95434069637_resume-1.pdf', NULL, '1', '2022-08-13', 1, '', '5', '13', NULL, 0.00, '', '0', NULL, '1', 'not suitable for tele sales', '1', '2', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-13 05:06:44', 1, '2022-08-13 05:18:23', 0, NULL, 1),
(9800, '', '0', '8940749654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-14 06:56:24', 0, NULL, 0, NULL, 1),
(9801, '', '0', '9486092405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208150001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-15 11:49:15', 0, NULL, 0, NULL, 1),
(9802, '', '0', '8838780180', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208150002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-15 09:52:19', 0, NULL, 0, NULL, 1),
(9803, 'Manikandan M', '23', '8056107482', '', 'manikandanvalli098@gmail.com', '1998-06-01', 24, '2', '2', 'Muthusamy', 'carpenter', 30000.00, 1, 0.00, 20000.00, '41 Karpagam Nagar ponniammanmedu chennai 600110', '41 Karpagam Nagar Ponniammanmedu Chennai 600110', '2208160001', '1', '1', 'upload_files/candidate_tracker/56475383875_Manikandan Resume.pdf', NULL, '1', '2022-08-16', 0, '', '5', '85', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is not clear... has Knowledge in front end developer... Sustainability doubts', '2', '1', '', '1', '1', '', '2', '2022-08-18', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-16 10:04:08', 85, '2022-08-18 09:48:42', 0, NULL, 1),
(9804, 'Krishna Priya k', '4', '9361968719', '', 'Priyakumar2171@gmail.com', '2000-01-28', 22, '2', '2', 'K.saroja', 'No', 10000.00, 4, 0.00, 13000.00, 'Thanjavur', 'Thanjavur', '2208160002', '1', '1', 'upload_files/candidate_tracker/2677808727_krishna .pdf', NULL, '1', '2022-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - Parents are not ok with the profile', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 10:26:58', 85, '2022-08-16 11:28:59', 0, NULL, 1),
(9805, 'Karthika s', '4', '9361551346', '', 'Karthikakarthik182000@gmail.com', '2000-03-18', 22, '2', '2', 'S. Selvaraj', 'No', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2208160003', '1', '1', 'upload_files/candidate_tracker/62989159387_karthikaresume.pdf', NULL, '1', '2022-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped - Plan to go in the core domain', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 10:27:14', 85, '2022-08-16 11:29:17', 0, NULL, 1),
(9806, 'Nathiya R', '5', '9940658434', '7397278238', 'smartnathiyar@gmail.com', '1999-12-08', 22, '2', '2', 'Ravichandran P', 'MTC Bus machanic', 100000.00, 1, 10719.00, 25000.00, 'CHENNAI', 'CHENNAI', '2208160004', '1', '2', 'upload_files/candidate_tracker/47714432307_Nathiya new resume.pdf', NULL, '1', '2022-08-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average,have exp in non voice Much Focus on the salary Will not run in a long show', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 10:53:32', 85, '2022-08-16 11:09:10', 0, NULL, 1),
(9807, 'Dineshkumar D', '6', '9715047498', '', 'dineshcse1218@gmail.com', '1995-04-14', 27, '2', '2', 'Dhirumalai', 'Building worker', 5000.00, 1, 13000.00, 18000.00, 'Periyamanali', 'Periyamanali', '2208160005', '1', '2', 'upload_files/candidate_tracker/20542394791_DINESHKUMAR RESUME-Exp.pdf', NULL, '1', '2022-08-16', 10, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expecting high sal', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 10:55:52', 85, '2022-08-16 12:56:45', 0, NULL, 1),
(9808, 'C.siva shankari', '4', '8778139715', '9994728137', 'mahashiva2052002@gamil.com', '2002-05-20', 20, '2', '2', 'MurgaSelvi', 'Cooperative', 10000.00, 0, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2208160006', '1', '1', 'upload_files/candidate_tracker/51017759808_CV.pdf', NULL, '1', '2022-08-17', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 11:36:31', 85, '2022-08-16 06:46:26', 0, NULL, 1),
(9809, 'Sneha.H', '25', '8867135579', '8088092288', 'Snehaharish1999@gmail.com', '1999-01-14', 23, '1', '1', 'Naveen kumar', 'Driver', 20000.00, 0, 18000.00, 20000.00, 'Bangalore', 'Bangalore', '2208160007', '', '2', 'upload_files/candidate_tracker/20388363477_PDF 20220721_200748.pdf', NULL, '1', '2022-08-16', 0, 'P1328', '4', '30', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Shortlisted communication is good already worked in bpo real estate sales and receptionist in hotel \nPrevious salary 18k \nAsking for the same we can negotiate with her i told hr will call you regarding same', '8', '1', '', '2', '2', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-16 12:32:27', 60, '2022-08-16 05:26:33', 0, NULL, 1),
(9810, 'Savitha G', '6', '8072460575', '9600104203', 'savitha080502@gmail.com', '2002-05-08', 20, '1', '2', 'Gananpraksam T', 'Provision store', 50000.00, 1, 0.00, 12.00, 'Pudupet', 'Pudupet', '2208160008', '', '1', 'upload_files/candidate_tracker/51488503399_1660546068083_SAVITHA RESUM.docx', NULL, '1', '2022-08-16', 0, 'P1302', '3', '59', '2022-08-18', 156000.00, '', NULL, '2023-11-25', '2', 'Have 3 Months Exp 5050 Can Be Trained Kindly Check And Let Me Know Your Inputs', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-16 12:53:47', 60, '2022-08-17 05:07:10', 0, NULL, 1),
(9811, 'Shakthivel', '23', '8825656952', '8939757549', 'Shakthi7608@gmail.com', '1999-10-24', 22, '2', '2', 'R.Kolangiappan', 'Police', 50000.00, 1, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2208160009', '1', '1', 'upload_files/candidate_tracker/64788763509_shakthivel resume.pdf', NULL, '1', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 3m intern exp ... no job need... Sustainability doubts..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 04:02:18', 85, '2022-08-17 12:15:57', 0, NULL, 1),
(9812, 'Krishnaveni. P', '4', '6381497583', '', 'Krishkrish476476@gmail.com', '2000-04-16', 22, '3', '2', 'N. Palaniyappan', 'Farmer', 20000.00, 2, 14000.00, 15000.00, 'Pallipalaiyam', 'Sillankadu', '2208160010', '', '2', 'upload_files/candidate_tracker/79578153944_krishnaveni.docx', NULL, '1', '2022-08-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-16 04:12:57', 1, '2022-08-16 04:18:24', 0, NULL, 1),
(9813, 'Sri Dhanush', '2', '9940996155', '9840287214', 'sdreddy1920@gmail.com', '2000-08-19', 21, '2', '2', 'Chandrasekaran V', 'Agriculture', 80000.00, 1, 0.00, 30000.00, 'chennai', 'chennai', '2208160011', '1', '1', 'upload_files/candidate_tracker/64221644061_SRI DHANUSH_Resume.pdf', NULL, '1', '2022-08-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a plan to go with full time masters just for an exp he is looking for job will not sustainxquot', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 04:24:08', 85, '2022-08-17 12:16:13', 0, NULL, 1),
(9814, '', '0', '6381487583', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-16 04:37:31', 0, NULL, 0, NULL, 1),
(9815, 'Vinothini', '13', '7824981107', '', 'vinothinikply@gmail.com', '2001-12-19', 20, '2', '2', 'Maheshwari', 'Tailor', 40000.00, 1, 0.00, 300000.00, 'Salem', 'Salem', '2208160013', '1', '1', 'upload_files/candidate_tracker/41882499983_VinothiniS_Resume.docx', NULL, '3', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not ok with our terms', '2', '2', '', '1', '1', '', '2', '2022-08-18', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 05:39:30', 85, '2022-08-16 06:46:09', 0, NULL, 1),
(9816, 'Gunasekaran', '23', '9751143913', '8248973068', 'gunapalani19@outlook.com', '2002-01-06', 20, '2', '2', 'Palani', 'Farmar', 50000.00, 0, 0.00, 10000.00, 'Thiruvannamalai', 'Chennai', '2208160014', '1', '1', 'upload_files/candidate_tracker/37383731138_Guna c#.pdf', NULL, '1', '2022-08-17', 0, '', '3', '59', '2022-08-22', 96000.00, '', '', '1970-01-01', '1', 'Internship + Employment', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-16 07:56:24', 85, '2022-08-17 12:30:53', 0, NULL, 1),
(9817, 'Gokulnath S', '2', '9789697257', '', 'gn98169@gmail.com', '1999-10-30', 22, '2', '2', 'Saravanan', 'Self employed', 20000.00, 1, 0.00, 2.60, 'Vellore', 'Chennai, Velachery', '2208170001', '1', '1', 'upload_files/candidate_tracker/95705447988_GOKULNATH_2021_B.E_MECHANICAL_FRONTEND.pdf', NULL, '1', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'From besant technologies ...not much good in skills.. need to learn ...', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-17 09:50:46', 97, '2022-08-17 06:51:22', 0, NULL, 1),
(9818, 'Saranraj M', '2', '9585916471', '', 'saranred565@gmail.com', '1998-05-17', 24, '2', '2', 'Murugesan A', 'Cooli', 10000.00, 2, 0.00, 2.60, 'Gandhi Nagar,padur,Ullunthur pet,Kallakurichi', 'Velachery,chennai', '2208170002', '1', '1', 'upload_files/candidate_tracker/86776508941_Saranraj Resume.docx', NULL, '1', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has some Theoretical knowledge in reactjs... so sNR but not much good technical round so rejected by kaviya..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-17 09:51:07', 85, '2022-08-17 10:21:55', 0, NULL, 1),
(9819, '', '0', '7418666102', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208170003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-17 09:57:44', 0, NULL, 0, NULL, 1),
(9820, 'Mohnish kumar', '13', '7418667102', '', 'mohnish101998@gmail.com', '1998-12-10', 23, '2', '1', 'Srinivasan', 'Tailor', 20000.00, 1, 0.00, 15000.00, '26 sadayappan lane, saidapet', '26, sadayappan lane, saidapet', '2208170004', '1', '1', 'upload_files/candidate_tracker/81320433875_mohnish resume 1.pdf', NULL, '1', '2022-08-17', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher can be trained 2nd round interviewed by Latha kindly check and let me know your inputs\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 09:58:47', 85, '2022-08-17 10:36:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9821, 'M.kurinjipavai', '4', '8667317067', '9952164293', 'kurinjipavai1998@gmail.com', '1998-06-13', 24, '4', '2', 'Murugan', 'Mechanic man', 30000.00, 1, 8000.00, 10000.00, '25, kancreat street,Pasur(po),pasur erode .', 'Erode', '2208170005', '', '2', 'upload_files/candidate_tracker/91560382705_kurinji RESUME.docx', NULL, '1', '2022-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Manager rejected - Wrongly updated\n', '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-17 10:09:57', 1, '2022-08-17 10:19:54', 0, NULL, 1),
(9822, 'Sankari', '23', '9094435959', '', 'sankarimanoeee@gmail.com', '1998-07-15', 24, '2', '2', 'Manoharan', 'Electrician', 30000.00, 1, 0.00, 35000.00, 'Erukkancherry', 'Erukkancherry', '2208170006', '1', '1', 'upload_files/candidate_tracker/85233697180_Sankari1.pdf', NULL, '1', '2022-08-17', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average communication..... fresher to ui/ux designer but sal expt high ... long distance too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-17 10:12:09', 92, '2022-08-18 05:49:31', 0, NULL, 1),
(9823, 'MERLIN. F', '25', '7338776069', '7358549615', 'merlinedwina2000@gmail.com', '2000-08-29', 21, '1', '2', 'Francis', 'CNC machine operator', 20000.00, 1, 15000.00, 17000.00, 'Chennai', '10th street valluvar nagar sithalapakkam', '2208170007', '', '2', 'upload_files/candidate_tracker/39896978213_MERLIN doc.docx', NULL, '1', '2022-08-17', 0, 'CI112', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has 1yr exp in telecalling .. long distance .... have to check sustainability...', '8', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 10:13:32', 97, '2022-08-17 06:48:58', 0, NULL, 1),
(9824, 'R. Umamaheswari', '5', '6379667171', '8608348531', 'Umamahi2299@gmail.com', '2001-04-25', 21, '1', '2', 'Ramesh', 'Electrician', 18000.00, 1, 15000.00, 17000.00, 'Mandaveli', 'Mandaveli', '2208170008', '', '2', 'upload_files/candidate_tracker/89400750702_resume..pdf', NULL, '1', '2022-08-17', 0, 'CI112', '3', '59', '2022-09-01', 204000.00, '', '3', '2022-10-03', '2', 'Selected for ESales Karthika Team Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 10:13:34', 60, '2022-08-25 04:26:28', 0, NULL, 1),
(9825, 'Kishore', '31', '9790872524', '', 'kishoreranganathan60@gmail.com', '2000-09-11', 21, '2', '2', 'L.Ranganathan', 'Business', 50000.00, 1, 0.00, 30000.00, '7/1 lalbahadur shastra Street Kanagam ch-113', '7/1 lalbahadur shastra Street kanagam ch-113', '2208170009', '1', '1', 'upload_files/candidate_tracker/28793316292_Kishore_cv.pdf', NULL, '1', '2022-08-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much comfort with TxxampC need time to confirm if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-17 10:26:49', 1, '2022-08-17 10:31:42', 0, NULL, 1),
(9826, 'Leelavathi', '2', '9566245323', '6369367015', 'leelavathi0121@gmail.com', '2001-05-21', 21, '2', '2', 'Ravi', 'Pharmacist', 30000.00, 1, 0.00, 10000.00, 'Teynampet', 'Teynampet', '2208170010', '1', '1', 'upload_files/candidate_tracker/5098009169_Leelavathi', NULL, '1', '2022-08-17', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Candidate need to get trained 2nd round interviewed by Kaviya,if candidate comes back let us try', '2', '2', '', '1', '1', '', '2', '2022-08-24', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 10:33:30', 85, '2022-08-17 12:16:43', 0, NULL, 1),
(9827, 'SHARATH KUMAR', '4', '8220864687', '9080252756', 'snssharath304@gmail.com', '2000-04-03', 22, '4', '2', 'Dhanasekaran', 'Electrician', 200000.00, 0, 13000.00, 14000.00, 'Chennai', 'Chennai', '2208170011', '', '2', 'upload_files/candidate_tracker/86126915586_Sharath', NULL, '1', '2022-08-17', 0, '', '3', '59', '2022-08-18', 138948.00, '', '3', '2022-10-17', '2', 'Selected for Arumbakkam - Consultant Role', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 11:05:10', 60, '2022-08-17 05:05:12', 0, NULL, 1),
(9828, 'L. Jeevika', '11', '8939565913', '8682058140', 'jeevi063@gmail.com', '2001-06-09', 21, '3', '2', 'Lachiyavathi', 'Civil', 10000.00, 1, 0.00, 10000.00, 'No:100, pachaiappan street, Jafferkhanpett.', 'Chennai', '2208170012', '', '1', 'upload_files/candidate_tracker/6909573006_Jeevika resume.pdf', NULL, '1', '2022-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-17 11:34:37', 1, '2022-08-17 12:02:24', 0, NULL, 1),
(9829, 'R.RAJSRI', '11', '9150856194', '7448301515', 'rajsri04038@gmail.com', '2001-04-04', 21, '3', '2', 'S.RAJ', 'Kribhco', 20000.00, 2, 0.00, 10000.00, 'Madipakkam', 'Madipakkam', '2208170013', '', '1', 'upload_files/candidate_tracker/64417074014_rajsri resume-1.pdf', NULL, '1', '2022-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-17 11:34:50', 1, '2022-08-17 11:50:50', 0, NULL, 1),
(9830, '', '0', '6379173034', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208170014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-17 11:35:36', 0, NULL, 0, NULL, 1),
(9831, 'Thiyagu', '23', '8248973068', '9751143913', 'thiyagubaskaran359@gmail.com', '2002-06-15', 20, '2', '2', 'Baskaran', 'Farmar', 50000.00, 1, 0.00, 10000.00, 'Tiruvannamalai', 'Chennai', '2208170015', '1', '1', 'upload_files/candidate_tracker/6909604024_thiyagu Res.pdf', NULL, '1', '2022-08-17', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Final round interviewed by gokul profile on Hold candidate not seems to be much active', '2', '1', '', '1', '1', '', '2', '2022-08-25', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 11:37:27', 85, '2022-08-17 12:17:30', 0, NULL, 1),
(9832, 'Ajith', '4', '9842250806', '', 'Ajithfrank2002@gmail.com', '1996-02-17', 26, '2', '2', 'Jayabalan', 'Bussiness', 10000.00, 1, 0.00, 160000.00, 'Thanjavur', 'Thanjavur', '2208170016', '1', '1', 'upload_files/candidate_tracker/25120775841_AJITH RESUME.docx', NULL, '1', '2022-08-17', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team and not suite for telesales high attitude', '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-08-17 11:39:47', 1, '2022-08-17 01:31:43', 0, NULL, 1),
(9833, 'Komathi G', '11', '6360191697', '9360191697', 'sriramkomathi13@gmail.com', '2001-09-13', 20, '1', '2', 'Ganesh-Saraswathi', 'Tailer', 13500.00, 1, 0.00, 10000.00, 'No:1, Bharathi nagar main road ,Nesapakkam.', 'Chennai', '2208170017', '', '1', 'upload_files/candidate_tracker/18077373589_Resume_Komathi_Format1.pdf', NULL, '1', '2022-08-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-17 11:43:34', 1, '2022-08-17 11:46:20', 0, NULL, 1),
(9834, 'CAJETAN RAHUL', '31', '9791523186', '7448877165', 'cajetanrahul55555@gmail.com', '1999-10-30', 22, '2', '2', 'SIBI', 'Fisherman', 20000.00, 2, 0.00, 20000.00, 'Poothurai, Kanyakumari', 'Perungudi,Chennai', '2208170018', '1', '1', 'upload_files/candidate_tracker/98679926674_Resume_16_08_2022_12_26_57_pm.pdf', NULL, '1', '2022-08-17', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Have Interested in python ... no stability mind.. ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-17 11:47:43', 1, '2022-08-17 11:52:10', 0, NULL, 1),
(9835, 'Manokaran.M', '4', '9600238202', '9600238203', 'kumarsurya8133@gmail.com', '2001-09-20', 20, '3', '2', 'Manickadurai', 'Farmer', 12000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2208170019', '', '1', 'upload_files/candidate_tracker/39314260986_CV_2022071915201065.pdf', NULL, '1', '2022-08-17', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to give his confirmation', '1', '2', '', '1', '1', '', '2', '2022-08-22', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 12:17:30', 85, '2022-08-17 12:25:35', 0, NULL, 1),
(9836, 'Gokul', '6', '6381247561', '7448449454', 'krishg492@gmail.com', '1999-09-25', 22, '2', '2', 'Kumar.m', 'Driver', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2208170020', '25', '1', 'upload_files/candidate_tracker/9187198260_GOKUL RESUME.docx', NULL, '1', '2022-08-17', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 01:00:28', 60, '2022-08-17 07:16:24', 0, NULL, 1),
(9837, 'S. Kulothungan', '4', '8925204107', '8925205232', 'harihari66052@gamil.com', '2002-03-23', 20, '2', '2', 'T. Subramaniyan', 'Farmer', 18000.00, 2, 0.00, 11000.00, 'Thanjavur', 'Thanjavur', '2208170021', '1', '1', 'upload_files/candidate_tracker/25972908898_kuloth resume.pdf', NULL, '1', '2022-08-18', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 03:05:31', 85, '2022-08-18 11:37:14', 0, NULL, 1),
(9838, 'Justine', '16', '6382722234', '', 'jjustine74970@gmail.com', '2000-05-23', 22, '2', '2', 'Jebamani', 'Home maker', 15000.00, 1, 15000.00, 17000.00, 'Chennai', 'Kottur', '2208170022', '1', '2', 'upload_files/candidate_tracker/69866979057_jjustine_resume exp_PG (1).pdf', NULL, '1', '2022-08-18', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 03:49:48', 85, '2022-08-18 09:31:05', 0, NULL, 1),
(9839, 'Divya sri T', '4', '9790262344', '7845052644', 'Navinkumarnavindivya@gmail.com', '2000-06-06', 22, '4', '1', 'Navin kumar M', 'Employee', 10000.00, 2, 8500.00, 10000.00, 'Erode', 'Erode', '2208170023', '', '2', 'upload_files/candidate_tracker/13518302267_PDFGallery_20220817_160900.pdf', NULL, '1', '2022-08-17', 0, '', '3', '59', '2022-08-19', 126312.00, '', '3', '2022-08-22', '2', 'Selected for Erode - Consultant Role', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-17 04:00:36', 60, '2022-08-17 07:39:13', 0, NULL, 1),
(9840, 'deepak s', '16', '7448950410', '9551201471', 'deepaksachu1998@gmail.com', '1998-06-09', 24, '2', '2', 'sachuthanantham v', 'tailor', 20000.00, 1, 18000.00, 18000.00, 'oragadam', 'mugalivakkam', '2208170024', '1', '2', 'upload_files/candidate_tracker/38491835741_Deepak Resume New (1).pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication no,poor writing skills will not sustain and not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 04:23:08', 85, '2022-08-18 09:31:21', 0, NULL, 1),
(9841, 'N.Pavithra', '6', '9363288688', '9715928501', 'pavikuttypk7@gmail.com', '1999-05-07', 23, '2', '2', 'K.natarajan', 'Marriage Broker', 15000.00, 1, 13000.00, 18000.00, 'Erode', 'Erode', '2208170025', '1', '2', 'upload_files/candidate_tracker/16187633547_Resume_01_08_2022_01_27_25_PM-1.pdf', NULL, '1', '2022-08-18', 3, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for telecalling sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-17 07:57:28', 85, '2022-08-18 01:16:41', 0, NULL, 1),
(9842, 'RAJASEKAR S R', '31', '8778454342', '', 'rajasekarsr2001@gmail.com', '2001-07-29', 21, '2', '2', 'Sivakumar.R', 'Field worker', 20000.00, 1, 0.00, 3.00, 'Tiruvannamalai , vandavasi', 'Tiruvannamalai, vandavasi', '2208180001', '1', '1', 'upload_files/candidate_tracker/43096159579_RAJASEKER IT RESUME.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic knowledge in skills,Need to get trained a lot ongoing with the class need time to get learn with technnologies if he comes back let us try', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 09:57:22', 1, '2022-08-18 10:03:46', 0, NULL, 1),
(9843, 'VIJAYARAJ S', '2', '6385873946', '', 'vijayarajselladurai@gmail.com', '2001-04-26', 21, '2', '2', 'SELLADURAI R', 'Farmer', 15000.00, 2, 0.00, 4.00, 'Melapanchanallur, Cuddalore, Tamilnadu 608 301', 'MelapazhanchanallurCuddalore , Tamilnadu 608301', '2208180002', '1', '1', 'upload_files/candidate_tracker/35089196590_VIJAYARAJ IT RESUME.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Knowledge In Skills,Need To Get Trained A Lot Ongoing With The Class Need Time To Get Learn With Technnologies If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 09:57:51', 1, '2022-08-18 10:05:57', 0, NULL, 1),
(9844, 'R. Aravindhan', '2', '6385873437', '', 'aravindhan0811@gmail.com', '2002-01-24', 20, '2', '2', 'Rajendran . S', 'Farmer', 14000.00, 2, 0.00, 3.50, 'palanchanallur, kattumannarkoil, cuddalore-608301', 'palanchanallur, kattumannarkoil,cuddalore_608301', '2208180003', '1', '1', 'upload_files/candidate_tracker/92778436426_ARAVINDHAN IT RESUME.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic Knowledge In Skills,Need To Get Trained A Lot Ongoing With The Class Need Time To Get Learn With Technnologies If He Comes Back Let Us Try', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 09:57:51', 1, '2022-08-18 10:08:29', 0, NULL, 1),
(9845, '', '0', '9551201471', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208180004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-18 09:59:36', 0, NULL, 0, NULL, 1),
(9846, 'harbet stephenson', '31', '9994891095', '', 'stephenson86@gmail.com', '1986-03-25', 36, '2', '1', 'kiruba joy', 'it', 100000.00, 3, 0.00, 100000.00, 'chennai', 'chennai', '2208180005', '1', '1', 'upload_files/candidate_tracker/4927738893_Harbet Fullstack Resume.docx', NULL, '2', '2022-08-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-18 10:06:57', 92, '2022-08-19 09:54:37', 0, NULL, 1),
(9847, 'Arunkumar S', '31', '9790474529', '9080168396', 'arunkumaa6@gmail.com', '1999-10-26', 22, '2', '2', 'Muthumari S', 'farmer', 6000.00, 2, 0.00, 2.50, 'Sattur, Virudhunagar (dist)', 'Chennai, thoraipakkam', '2208180006', '1', '1', 'upload_files/candidate_tracker/74330662677_Arunkumar S_resume.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'not open up much Family need is there need time to check with his brother and confirm, if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 10:07:44', 1, '2022-08-18 10:26:25', 0, NULL, 1),
(9848, 'V.Dhamodharan', '5', '9176517125', '', 'vdhamodharanv@gmail.com', '2002-09-21', 19, '2', '2', 'D.venkatesan', 'Plumber', 27000.00, 2, 0.00, 17000.00, 'Pallavan salai', 'mylapore', '2208180007', '1', '1', 'upload_files/candidate_tracker/76009727251_Dhamodharan V Resume.pdf', NULL, '3', '2022-08-18', 0, '', '3', '59', '2022-08-22', 185000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team - staff Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 10:22:18', 60, '2022-08-20 05:52:06', 0, NULL, 1),
(9849, 'M.Gayathri', '4', '9943269744', '8610156391', 'sweetygayu03@gmail.com', '2001-10-30', 20, '2', '2', 'r.mathiyazhagan', 'farmer', 7000.00, 1, 0.00, 12000.00, 'New street nadukkavery,thiruvaiyaru(t.k),', 'new street nadukkavery,thiruvaiyaru(t.k)', '2208180008', '1', '1', 'upload_files/candidate_tracker/31876915948_Gayathri.docx', NULL, '1', '2022-08-18', 0, '', '3', '59', '2022-08-22', 126312.00, '', '4', '2022-11-01', '2', 'Selected for Thanjavur - Consultant Role - 1 hr travel need to check her sustainability', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-18 10:39:38', 60, '2022-08-20 10:29:33', 0, NULL, 1),
(9850, 'D.THEEPTHI', '4', '7010307385', '9786663084', 'theepthidcsc@gmail.com', '2001-08-08', 21, '2', '2', 'S.DHANABAL', 'Farmer', 5000.00, 1, 0.00, 12000.00, 'VADUVUR THENPATHI', 'VADUVUR THENPATHI', '2208180009', '1', '1', 'upload_files/candidate_tracker/65314698058_Theepthi-2.docx', NULL, '1', '2022-08-18', 0, '', '3', '59', '2022-08-22', 126312.00, '', '3', '2022-10-03', '2', 'Selected for thanjavur Location - Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-18 10:41:38', 60, '2022-08-20 10:13:20', 0, NULL, 1),
(9851, 'Jeeva', '6', '9385374403', '', 'lovelyjeevaj@gmail.com', '2001-04-15', 21, '1', '2', 'Mathiyalagan', 'Home business', 70000.00, 1, 0.00, 15000.00, 'Chithode', 'Chithode', '2208180010', '', '1', 'upload_files/candidate_tracker/93923896915_Jeeva-WPS Office.docx', NULL, '1', '2022-08-18', 0, 'P1352', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'not suitable for sales', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-18 11:18:03', 1, '2022-08-18 11:23:12', 0, NULL, 1),
(9852, 'Sathish D', '31', '7418557265', '', 'sathish19981127@outlook.com', '1998-11-27', 23, '2', '2', 'Devakumar.K', 'Business', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2208180011', '1', '1', 'upload_files/candidate_tracker/44732052797_SathishResume.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not showing much interest on the jobs due to family pressure on the job he is looking for a job not much active', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-18 11:23:33', 92, '2022-08-18 11:38:48', 0, NULL, 1),
(9853, 'Poovizhi', '4', '9566952587', '7358852587', 'Poovizhiajith@gmail.com', '2000-06-24', 22, '3', '2', 'Vengatesh', 'Daily wager', 20000.00, 2, 9000.00, 10000.00, 'Bhavani', 'Bhavani', '2208180012', '', '2', 'upload_files/candidate_tracker/49872888562_poovizhi RResume.doc', NULL, '1', '2022-08-18', 0, '', '3', '59', '2022-08-22', 126312.00, '', '3', '2022-08-22', '2', 'Selected for Elite - Erode Location', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-18 11:49:39', 60, '2022-08-18 07:02:20', 0, NULL, 1),
(9854, 'M.vichithra', '4', '9345379892', '9159452684', 'vichithraviji526@gmail.com', '2001-11-01', 20, '3', '2', 'M.uma', 'Agriculture', 60000.00, 1, 0.00, 10000.00, '41,perumal kovil street Ambathumelnagaram', '41 perumal kovil street ambathumelnagaram', '2208180013', '', '1', 'upload_files/candidate_tracker/29300740411_CV_2022070214521433.pdf', NULL, '1', '2022-08-18', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-18 11:49:54', 1, '2022-08-18 12:02:13', 0, NULL, 1),
(9855, 'G.dhivya', '4', '8825431899', '9787655357', 'Divigajendran5357@gmail.com', '2002-01-12', 20, '3', '2', 'S.gajendran', 'Agriculture', 60000.00, 2, 0.00, 10000.00, 'South Street allur(613101)', 'South Street allur(610101)', '2208180014', '', '1', 'upload_files/candidate_tracker/3083093527_G.dhivya.pdf', NULL, '3', '2022-08-18', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'unfit', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-18 11:50:44', 1, '2022-08-18 12:15:37', 0, NULL, 1),
(9856, 'Bharath', '2', '7339518948', '', 'Barathakash733@gmail.com', '2001-03-18', 21, '2', '2', 'Ganaprakash', 'Electrician', 180000.00, 1, 0.00, 3000000.00, 'Chennai', 'Chennai', '2208180015', '1', '1', 'upload_files/candidate_tracker/43338481089_Barath CV.pdf', NULL, '1', '2022-08-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot not open with TxxampC Salary Exp is high not suitable for our roles', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-18 12:54:02', 1, '2022-08-18 01:04:20', 0, NULL, 1),
(9857, 'k. hari Prakash', '4', '9524883834', '', 'harisathish2001@gmail.com', '2001-05-07', 21, '2', '2', 'D. saravanan', 'Ro purified', 15000.00, 0, 0.00, 15000.00, 'Mannargudi', 'Mannargudi', '2208180016', '1', '1', 'upload_files/candidate_tracker/19495577091_RESUME 3333.pdf', NULL, '1', '2022-08-18', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'unfit', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 02:37:56', 85, '2022-08-18 02:47:55', 0, NULL, 1),
(9858, '', '0', '9442566592', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208180017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-18 04:03:37', 0, NULL, 0, NULL, 1),
(9859, '', '0', '9585477916', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208180018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-18 04:09:31', 0, NULL, 0, NULL, 1),
(9860, 'Archanamurugan', '16', '9159019370', '7708990887', 'archanacivil00@gmail.com', '2000-06-03', 22, '2', '2', 'M. Pappu', 'Farmer', 2.00, 1, 0.00, 12.00, 'Vellore', 'Chennai', '2208180019', '1', '1', 'upload_files/candidate_tracker/53421648371_Archana Murugan Resume.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communicaiton not open for Sales not suits for MIS roles will not sustain and handle our pressure\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 04:59:06', 85, '2022-08-19 10:37:43', 0, NULL, 1),
(9861, 'N.priyadharshini', '4', '9342037743', '', 'Priyanagendran2001@gmail.com', '2000-05-12', 22, '2', '2', 'G.Nagendran', 'Telecalling', 45000.00, 3, 9000.00, 11000.00, 'Papanasam', 'Papanasam', '2208180020', '1', '2', 'upload_files/candidate_tracker/25103671551_Priya Resume.pdf', NULL, '1', '2022-08-19', 0, '', '3', '59', '2022-09-01', 138000.00, '', '', '2022-09-05', '2', 'Selected for Thanjavur Location - Consultant Role,thinking a lot on the target', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 05:08:35', 60, '2022-08-20 03:59:36', 0, NULL, 1),
(9862, '', '0', '6381231766', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208180021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-18 06:33:50', 0, NULL, 0, NULL, 1),
(9863, 'Prasanna Kumar K', '16', '9344255155', '', 'veerabhathranprasanna9876@gmail.com', '1998-10-07', 23, '2', '2', 'Kandhasamy', 'Data maintenance', 65000.00, 1, 12000.00, 18000.00, 'Trichy', 'Chennai', '2208180022', '1', '2', 'upload_files/candidate_tracker/51341247831_Prasannakumar_IT_resume.pdf', NULL, '2', '2022-08-19', 60, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-18 09:49:10', 85, '2022-08-19 10:04:57', 0, NULL, 1),
(9864, 'Nivedha.s', '4', '8870408654', '', 'nivedhasiva94@gmail.com', '1998-02-10', 24, '2', '2', 'Visagaselvi.s', 'Tellecaller', 45000.00, 3, 9000.00, 11000.00, 'Papanasam', 'Papanasam', '2208190001', '1', '2', 'upload_files/candidate_tracker/89533604664_MY RESUME NIVEDHA PDF.pdf', NULL, '1', '2022-08-19', 0, '', '3', '59', '2022-09-01', 138000.00, '', '', '2022-09-19', '2', 'Selected for Thanjavur Elite - Consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 09:44:11', 60, '2022-08-26 03:24:33', 0, NULL, 1),
(9865, 'M Nanthakumar', '22', '6384122598', '6382912006', 'msnkumar1503@gmail.com', '2001-03-15', 21, '1', '2', 'murugesan', 'father', 10000.00, 1, 0.00, 15000.00, 'north street North ayvoipulipatti tenkasi', 'saidapet', '2208190002', '', '1', 'upload_files/candidate_tracker/96854704551_0_nanthu res10-converted (1).pdf', NULL, '1', '2022-08-19', 0, 'p1321', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication no basic ideas in Digital not suitable \n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-19 10:02:29', 1, '2022-08-19 10:11:59', 0, NULL, 1),
(9866, 'SULTHAN SEYED IBRAHIM KABEER S A', '11', '9381070421', '', 'kabeersulthan50@gmail.com', '2000-06-29', 22, '2', '2', 'SHAJAHAN ALI S A', 'BUSINESS', 50000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2208190003', '1', '1', 'upload_files/candidate_tracker/24585666487_414b0ae1-92bf-4812-95bf-621efdeff409.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much strong with thbasics in hiring,will not run in a long show Family need is not much Sustainability doubts', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-19 10:13:34', 92, '2022-08-19 10:31:50', 0, NULL, 1),
(9867, 'Viswanathan', '4', '9789403303', '6369282355', 'govindvichu04@gmail.com', '2001-10-04', 20, '3', '2', 'Govindan', 'No', 40000.00, 2, 0.00, 15000.00, 'Pudur', 'Pudur', '2208190004', '', '1', 'upload_files/candidate_tracker/79268041542_vichu resume.docx', NULL, '1', '2022-08-19', 0, '', '3', '59', '2022-08-22', 132000.00, '', '5', '1970-01-01', '2', 'Selected for Arumbakkam - Consultant Role', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-19 10:21:17', 60, '2022-08-19 03:24:04', 0, NULL, 1),
(9868, 'Deepak S', '4', '8825849371', '8248221962', 'deepaksri8825@gmail.com', '2002-05-25', 20, '2', '2', 'Malathi S', 'Housekeeping', 17000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2208190005', '1', '1', 'upload_files/candidate_tracker/94728459165_Deepak S (3).pdf', NULL, '1', '2022-08-19', 0, '', '5', '13', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for telesales', '1', '1', '', '4', '7', '', '2', '1970-01-01', '1', '9', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-19 10:27:34', 92, '2022-08-19 11:12:00', 0, NULL, 1),
(9869, 'Mohideen Abdul rishwan', '2', '8610760684', '', 'Mohideenbca21@gmail.com', '2000-08-22', 21, '2', '2', 'Rahamathulla', 'Security', 25000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2208190006', '1', '1', 'upload_files/candidate_tracker/4580046174_mohideen fresh.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'up and down 34kms need time to confirm if he comes back let us try for React', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-19 11:23:31', 1, '2022-08-19 11:52:08', 0, NULL, 1),
(9870, 'Afrose banu', '4', '8610819818', '', 'afrose0809@gmail.com', '2000-02-09', 22, '2', '2', 'Plureakhan', 'Farmer', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2208190007', '2', '1', 'upload_files/candidate_tracker/94494708014_afrose banu RS.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much open up even though asked her to wait for 2nd round but she left', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-19 11:27:15', 1, '2022-08-19 11:29:13', 0, NULL, 1),
(9871, 'Amar jothi j', '2', '8939293716', '', 'jamarjothi1@gmail.com', '2000-04-02', 22, '2', '2', 'Jesudoss s', 'Driver', 12000.00, 2, 0.00, 10000.00, 'Pallikaranai,chennai.', 'Pallikaranai,Chennai.', '2208190008', '1', '1', 'upload_files/candidate_tracker/3405229154_Amar jothi.pdf', NULL, '1', '2022-08-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Final Round reject by Gokul Will not sustain not much active', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-19 11:50:40', 1, '2022-08-19 11:58:14', 0, NULL, 1),
(9872, 'Nandha kumar. L', '6', '9976039910', '7092078989', 'Nandhakumarnk1510@gmail.com', '1999-10-15', 22, '2', '2', 'Radha. L', 'Agriculture', 10000.00, 1, 0.00, 15000.00, 'Sankagiri', 'Sankagiri', '2208190009', '1', '1', 'upload_files/candidate_tracker/86464721469_nandhakumar resume.pdf', NULL, '1', '2022-08-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in sales.. discuss with family', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 11:53:52', 85, '2022-08-19 12:32:17', 0, NULL, 1),
(9873, 'Akash V', '6', '7010416265', '9788765155', 'akashkingg@gmail.com', '1999-11-17', 22, '2', '2', 'Velmurugan', 'Agriculture', 10000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2208190010', '1', '1', 'upload_files/candidate_tracker/72895636038_Akash Resume .docx', NULL, '1', '2022-08-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not interested in sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 11:54:37', 85, '2022-08-19 12:05:18', 0, NULL, 1),
(9874, 'THIYAGARAJAN k', '5', '8122456299', '', 'thiyagarajanr1992@gmail.com', '1992-10-10', 29, '4', '1', 'Sankareswari', 'House wife', 43000.00, 1, 41000.00, 60000.00, 'Chennai', 'Mogappair', '2208190011', '', '2', 'upload_files/candidate_tracker/58104042365_Resume - thiyagarajan.pdf', NULL, '1', '2022-08-19', 15, '', '3', '59', '2022-09-01', 580000.00, '', '7', '1970-01-01', '1', 'Gaurav sir got appproval for the candidate from Suresh sir with the condition of giving 20K hike round of 6 LPA if he achieve the target of 3.5L within Sept 2022', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-19 12:03:44', 60, '2022-08-27 03:02:46', 0, NULL, 1),
(9875, 'salman khan', '5', '8124577667', '8939445647', 'salmansallu875@gmail.com', '1999-12-22', 22, '2', '2', 'mohamed alikhan', 'exu', 10000.00, 0, 12000.00, 15000.00, 'moolakadai', 'Moolakadai', '2208190012', '1', '2', 'upload_files/candidate_tracker/49432767100_Biodata - Salman Khan.pdf', NULL, '1', '2022-08-19', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ok', '5', '1', '', '1', '1', '', '2', '2022-08-20', '2', '1', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-19 12:06:45', 60, '2022-08-20 07:01:59', 0, NULL, 1),
(9876, 'noor mohamed', '5', '9176278771', '7010728693', 'noornm7864321@gmail.com', '1998-11-13', 23, '2', '2', 'mohamed yunus', 'auto driver', 15000.00, 1, 0.00, 15000.00, 'moolakadai', 'moolakadai', '2208190013', '1', '1', 'upload_files/candidate_tracker/51262967610_Resume of Noor Mohamed.pdf', NULL, '1', '2022-08-19', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no', '5', '1', '', '1', '1', '', '2', '2022-08-20', '2', '1', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-19 12:06:46', 60, '2022-08-20 07:02:23', 0, NULL, 1),
(9877, 'Vasanthasena', '4', '9025357739', '6381830912', 'vasanthasenavasanthasena497@gmail.com', '2001-01-07', 21, '1', '2', 'Subramaniyam', 'Gun man', 15000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2208190014', '', '1', 'upload_files/candidate_tracker/14555777915_VASANTHA SENA.S-B.TECH-IT.pdf', NULL, '1', '2022-08-19', 0, 'CI135', '3', '59', '2022-08-22', 126312.00, '', '4', '2022-12-01', '2', 'Selected for Erode - Muthu Team Consultant. Seems not much active need to check with her sustainability', '1', '2', '1', '4', '7', '1', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-19 12:17:21', 60, '2022-08-20 03:44:51', 0, NULL, 1),
(9878, '', '0', '9940384320', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208190015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-19 01:07:56', 0, NULL, 0, NULL, 1),
(9879, 'G.viveka', '16', '9176591138', '', 'vivegndk@gmail.com', '2000-11-13', 21, '2', '2', 'G.Ganesh Kumar', 'Airport authority of India retirement', 20000.00, 2, 0.00, 15000.00, 'No:3/25d Ponniamman Koil Street.', 'Pallavaram, Chennai -600043', '2208190016', '1', '1', 'upload_files/candidate_tracker/73531336996_Viveka resume 1 (1).pdf', NULL, '1', '2022-08-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No understanding capacity will not handle our pressure not openfor taking calls', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 03:04:04', 85, '2022-08-19 04:46:00', 0, NULL, 1),
(9880, '', '0', '8848521153', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208190017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-19 04:08:54', 0, NULL, 0, NULL, 1),
(9881, 'Pradeeshkumar.A', '16', '6383027892', '7358599424', 'pradeeshkumarggg@gmail.com', '1994-12-23', 27, '2', '1', 'Priyanka', 'Teacher', 30000.00, 1, 18500.00, 20000.00, 'Chennai', 'Chennai', '2208190018', '1', '2', 'upload_files/candidate_tracker/18710500508_A.PRADEESH KUMAR-2.docx', NULL, '1', '2022-08-20', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'checked his knowledge in MIS.\n50% ok with his communication .', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-19 05:17:27', 85, '2022-08-20 10:22:52', 0, NULL, 1),
(9882, 'Gayathri subaschandrabose', '11', '9944069651', '', '16106030.ece@gmail.com', '1998-10-30', 23, '2', '2', 'subaschandrabose', 'recruiter', 80000.00, 1, 20000.00, 30000.00, 'theni', 'chennai', '2208190019', '1', '2', 'upload_files/candidate_tracker/62986692430_Gayathri updatedresume (1) (1).pdf', NULL, '2', '2022-08-20', 20, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-19 10:43:30', 1, '2022-08-20 09:56:45', 0, NULL, 1),
(9883, 'Vimal', '31', '9600408017', '', 'vimalselvam3@gmail.com', '1997-11-06', 24, '2', '2', 'Selvaraj', 'Labour', 30000.00, 1, 2.40, 4.50, 'Kumbakonam', 'Kumbakonam', '2208200001', '1', '2', 'upload_files/candidate_tracker/4100381711_vimal resume (1).pdf', NULL, '1', '2022-08-20', 60, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-20 09:47:40', 1, '2022-08-20 09:50:28', 0, NULL, 1),
(9884, 'Sivabala Moorthy T', '16', '7299109910', '9841438490', 'tsbmsiva35@gmail.com', '1998-09-28', 23, '2', '2', 'Thanga Kumar D', 'Daily wages', 20000.00, 1, 15000.00, 18000.00, 'Pattabiram', 'Pattabiram', '2208200002', '1', '2', 'upload_files/candidate_tracker/75874760440_Sivabala Moorthy.pdf', NULL, '1', '2022-08-20', 0, '', '5', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'very poor communication . has knowledge in Excel !', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-20 10:19:00', 92, '2022-08-20 10:35:22', 0, NULL, 1),
(9885, 'Tendilkar E', '23', '7358304066', '', 'etendilkar2111@gmail.com', '1997-11-21', 24, '2', '2', 'Elumalai', 'Working as supervisor', 30000.00, 2, 20000.00, 30000.00, 'Chennai', 'Chennai', '2208200003', '1', '2', 'upload_files/candidate_tracker/99138697201_Tendilkar E.pdf', NULL, '1', '2022-08-20', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1 yr exp in uiux and his current salary is 20KTH,Distance need to focus he is from Tambaram not open with TxxampC Will not sustain in a long run', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-20 10:24:14', 92, '2022-08-20 10:38:21', 0, NULL, 1),
(9886, 'Balaji', '16', '9003227426', '', '20balajis@gmail.com', '2001-12-15', 20, '2', '2', 'Selvamani', 'Private company', 15000.00, 1, 0.00, 15000.00, 'Madhavaram', 'Madhavaram', '2208200004', '1', '1', 'upload_files/candidate_tracker/91972916282_balaji resume-2.docx', NULL, '1', '2022-08-20', 0, '', '4', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher - Interested to learn, good self confident ,', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-20 10:51:28', 98, '2022-08-20 06:52:37', 0, NULL, 1),
(9887, 'Subin', '5', '8220475893', '', 'subin2000152@gmail.com', '2000-02-15', 22, '2', '2', 'Vinitha', 'HouseWife', 20000.00, 2, 0.00, 15000.00, 'Kanyakumari', 'Chennai', '2208200005', '1', '1', 'upload_files/candidate_tracker/65454637752_SUBIN', NULL, '1', '2022-08-20', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'ok', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-20 10:57:20', 60, '2022-08-20 06:43:02', 0, NULL, 1),
(9888, 'Santhanakrishnan', '26', '9514198528', '', 'kichaminism@gmail.com', '2000-05-29', 22, '2', '2', 'Sampath.j', 'Tailor', 8000.00, 0, 15000.00, 18000.00, 'Saidapet', 'Saidapet', '2208200006', '1', '2', 'upload_files/candidate_tracker/91656378171_Santhanakrishnan resume.pdf', NULL, '1', '2022-08-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication,have exp in Justdial Sales but not interested to go again,checked for other roles in operations but not open with TxxampC,will not handle the work pressure', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-20 11:26:40', 92, '2022-08-20 11:50:58', 0, NULL, 1),
(9889, 'kiranprasath', '4', '8870322206', '6380782606', 'kiranprasath222@gmail.com', '2000-06-22', 22, '1', '1', 'kumrasen', 'Government bus conductor', 30000.00, 1, 0.00, 15000.00, 'bhavani', 'bhavani', '2208200007', '', '2', 'upload_files/candidate_tracker/59494284965_Resume.doc', NULL, '1', '2022-08-20', 0, '', '3', '59', '2022-08-24', 151584.00, '', '', '2022-09-05', '1', 'Selected for Erode- Muthu Team Consultant Role Focus on the salary much family need is there', '1', '1', '1', '4', '7', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-20 11:29:59', 60, '2022-08-20 05:15:58', 0, NULL, 1),
(9890, 'S.Parthipan', '6', '6369922610', '9585186331', 'Civilparthi697@gmail.com', '1995-09-19', 26, '1', '2', 'Subramaniyan', 'Civil engineer', 20000.00, 1, 15.00, 20.00, 'Perambalur', 'Mgr Nagar Chennai', '2208200008', '', '2', 'upload_files/candidate_tracker/3013143150_parthipan resume1.pdf', NULL, '1', '2022-08-20', 0, 'CA130', '3', '59', '2022-09-01', 219600.00, '', '4', '2023-01-19', '2', 'Have Exp But No Sustainability In His Previous Exp,Bit Attitude Issue Internal Team Reference Salary Exp Is High Kindly Check And Let Me Know Your Inputs , Candidate submitted the fake document ,also he accepted the same.Need to analyse his performance and decide the candidate in 7 days training', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-20 11:40:58', 60, '2022-08-29 05:06:33', 0, NULL, 1),
(9891, '', '0', '9514298528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-20 11:44:37', 0, NULL, 0, NULL, 1),
(9892, 'Saravanan. C', '11', '9790847738', '7092526805', 'mrthanos668@gmail.com', '1999-12-02', 22, '2', '2', 'Jothilakshmi. C', 'Cooking', 25000.00, 2, 0.00, 2.50, 'No', 'No. 28/18 kandhaswamy kovil street purasaiwakkam', '2208200010', '1', '1', 'upload_files/candidate_tracker/90484465062_SARAVANAN', NULL, '1', '2022-08-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok Salary expectation is high being a fresher,holding 2 offers with Ramsol and six sigma,will not join and sustain with us focus much on the salary\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-20 11:55:46', 85, '2022-08-20 12:06:02', 0, NULL, 1),
(9893, '', '0', '9360999297', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208200011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-20 06:15:37', 0, NULL, 0, NULL, 1),
(9894, 'Ezhumalai', '23', '8754305360', '9003817675', 'ezhumalaip107@gmail.com', '2002-09-11', 19, '3', '2', 'Perumal', '.', 100000.00, 0, 0.00, 17000.00, 'KALLAKURUCHI DT', 'KALLAKURUCHI DT', '2208220001', '', '1', 'upload_files/candidate_tracker/66913219075_elumalai(1).pdf', NULL, '1', '2022-08-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot not much good in skills theoritically says only practical but not seems to be ok.Given him time to learn if he comes back let us try', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-22 10:03:48', 1, '2022-08-22 10:49:06', 0, NULL, 1),
(9895, 'VijayKanth', '5', '8125870680', '9677140200', 'herovijay88@gmail.com', '1988-01-19', 34, '1', '1', 'Rubi', 'House wife', 10000.00, 1, 540000.00, 7.00, 'Chennai', 'Chennai', '2208220002', '', '2', 'upload_files/candidate_tracker/4885546597_vijaykanth,july 13th sep updated.doc', NULL, '1', '2022-08-22', 0, '55585', '5', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Shortlisted, but he Didnxquott respond to any calls and sms, Donxquott hire him in future also ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-22 11:09:43', 60, '2022-08-22 06:49:37', 0, NULL, 1),
(9896, 'R. Vijaya kumar', '16', '9042762678', '9566209599', 'Vijayakumsr2071998@gmail.com', '1998-07-20', 24, '2', '2', 'L. Rajendran', 'Taxi driver', 60000.00, 1, 24000.00, 24000.00, 'Chennai', 'Chennai', '2208220003', '1', '2', 'upload_files/candidate_tracker/71269697011_R.vijayakumar.pdf', NULL, '1', '2022-08-22', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no Communication not comfort with TxxampC Pushed him for sales but not much comfort will not sustain and handle our sales pressure', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-22 11:10:25', 85, '2022-08-22 12:29:08', 0, NULL, 1),
(9897, 'Sudarmani V', '31', '6383531430', '', 'sudarmanivv@gmail.com', '2001-02-01', 21, '2', '2', 'Venkatachalam R', 'Farmer', 12000.00, 1, 0.00, 20000.00, 'Tiruvannamalai', 'Perungalathur', '2208220004', '1', '1', 'upload_files/candidate_tracker/85690272244_Sudarmani_resume.pdf', NULL, '1', '2022-08-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much active need time to confirm on txxampC Will not sustain in a long run', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-22 11:40:16', 85, '2022-08-23 11:26:17', 0, NULL, 1),
(9898, 'JAWAHAR.k', '17', '7358074410', '9087039077', 'jawahark406@gmail.com', '1997-02-06', 25, '2', '2', 'Kamaraj .p', 'DEPUTY MANAGER', 40000.00, 1, 400000.00, 650000.00, 'Chennai', 'Chennai', '2208220005', '1', '2', 'upload_files/candidate_tracker/54386068808_Jawahar Resume 2022 Updated.docx', NULL, '1', '2022-08-22', 90, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking only for Team lead profile 90 days notice', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-22 11:44:49', 85, '2022-08-23 11:25:55', 0, NULL, 1),
(9899, 'Umar Abdullah', '11', '9840127372', '7010363481', 'uaia98@gmail.com', '2001-09-14', 20, '2', '2', 'T. A. Hassan Quddus', 'N/A', 120000.00, 1, 0.00, 1.00, '13/2 27 Surappa Street Triplicane Chennai -5', '13/2 27 Surappa Street Triplicane Chennai -5', '2208220006', '1', '1', 'upload_files/candidate_tracker/20238104750_Original resume-1.pdf', NULL, '1', '2022-08-22', 0, '', '3', '59', '2022-08-29', 146052.00, '', '0', NULL, '2', 'Selected for Mutual fund Coordinator final round interviewed by Gokul', '6', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-22 12:01:05', 1, '2022-08-22 12:04:39', 0, NULL, 1),
(9900, '', '0', '7010363481', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208220007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-22 12:50:13', 0, NULL, 0, NULL, 1),
(9901, 'Rajeswari', '4', '8925414067', '', 'Rajidhanushas@gmail.com', '2001-11-19', 20, '2', '2', 'Sreenevasan', 'Late', 15000.00, 1, 11000.00, 15000.00, 'Tambaram', 'Tambaram', '2208220008', '1', '2', 'upload_files/candidate_tracker/52044165399_rajeswari .pdf.pdf', NULL, '1', '2022-08-22', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long distance ... Sustainability doubts', '1', '2', '', '1', '1', '', '2', '1970-01-01', '3', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-22 01:53:03', 97, '2022-08-23 03:18:28', 0, NULL, 1),
(9902, 'Vijayaraj', '23', '6380707680', '', 'vijayaraj638070tvm@gmail.com', '2002-05-10', 20, '2', '2', 'Ganesan', 'Farmer', 12000.00, 0, 0.00, 17000.00, 'MMDA colony,koyambedu', 'Chennai', '2208220009', '1', '1', 'upload_files/candidate_tracker/81243222975_vijay-wb- casp (Repaired).pdf', NULL, '1', '2022-08-23', 0, '', '4', '63', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher can be trained kindly check and let me knwo your inputs', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-22 06:04:38', 85, '2022-08-23 10:52:07', 0, NULL, 1),
(9903, '', '0', '8754711973', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-22 07:37:11', 0, NULL, 0, NULL, 1),
(9904, 'M.Hariharan', '16', '8610636536', '8428158436', 'hari8610636536@gmail.com', '2001-07-02', 21, '2', '2', 'J.Munusamy', 'Daily wages', 108000.00, 1, 18000.00, 16000.00, 'Chennai', 'Chennai', '2208220011', '1', '2', 'upload_files/candidate_tracker/55672972803_Resume..1[1].docx.pdf', NULL, '1', '2022-08-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not suitable for MIS not open for Sales', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-22 09:15:15', 85, '2022-08-23 10:52:24', 0, NULL, 1),
(9905, 'Mohammed Qasim .S', '16', '9384690262', '', 'mohammedqasim0523@gmail.com', '2000-06-05', 22, '2', '2', 'Mohammed Shahid', 'Carpenter', 15000.00, 3, 0.00, 18000.00, 'Chennai, Triplicane', 'Chennai', '2208230001', '1', '1', 'upload_files/candidate_tracker/13614407618_Qasim Resume-1.pdf', NULL, '1', '2022-08-23', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good Fresher can be trained final round interviewed by gokul if he comes back let us confirm with his joinig', '3', '1', '0', '1', '1', '0', '2', '2022-08-24', '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-23 11:20:37', 1, '2022-08-23 11:30:45', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9906, 'Kather Sulthan Moideen B', '4', '9791710820', '6385092008', 'katharbe007@gmail.com', '1999-06-20', 23, '4', '2', 'B.Barath Begum', 'Home Maker', 15000.00, 4, 0.00, 16000.00, 'Virugampakkam', 'Virugampakkam', '2208230002', '', '1', 'upload_files/candidate_tracker/55837242912_Kather Sulthan Moideen .pdf', NULL, '1', '2022-08-23', 0, '', '3', '59', '2022-08-29', 126312.00, '', '2', '1970-01-01', '2', 'Selected for Arumbakkam - consultant role', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-23 12:25:06', 60, '2022-08-24 03:45:39', 0, NULL, 1),
(9907, 'Faizus shareef', '4', '9360931061', '9360908303', 'fshareef05@gmail.com', '1994-05-05', 28, '2', '2', 'Rajeya Begum', 'Homemaker', 15000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2208230003', '1', '1', 'upload_files/candidate_tracker/67856905387_FAIZUS SHAREEF E.pdf', NULL, '1', '2022-08-26', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-23 04:06:18', 85, '2022-08-25 11:46:27', 0, NULL, 1),
(9908, 'Nandha.B', '26', '9360807418', '6382046446', 'nandha19102001@gmail.com', '2001-10-19', 20, '2', '2', 'Babu.S', 'Business (Late)', 8500.00, 1, 0.00, 250000.00, 'string:Chennai', 'string:Chennai', '2208230004', '1', '1', 'upload_files/candidate_tracker/83898006893_Nandha.B-Curriculum-Vitae.pdf', NULL, '1', '2022-08-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-23 04:43:02', 85, '2022-08-24 11:20:14', 0, NULL, 1),
(9909, 'logesh p', '23', '7358548176', '8056171369', 'logeshkumar18320@gmail.com', '2002-03-18', 20, '2', '2', 'palani kumar', 'driver', 20000.00, 1, 0.00, 15000.00, 'ambattur', 'ambattur', '2208230005', '1', '1', 'upload_files/candidate_tracker/79363738880_My Resume (1).pdf', NULL, '1', '2022-08-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to be trained almost 1 hr travel 5050 on TxxampC If he comes back let us try', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-23 06:24:41', 85, '2022-08-25 09:57:46', 0, NULL, 1),
(9910, 'G.Akshaya', '5', '6374915861', '', 'akshayaganesh475@gmail.com', '2001-12-27', 22, '2', '2', 'Ganesh V', 'Labour', 12000.00, 1, 18800.00, 23000.00, 'Chennai', 'Chennai', '2208230006', '1', '2', 'upload_files/candidate_tracker/5859796407_My 2024 resume.pdf', NULL, '1', '2024-01-30', 1, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for Santhosh Team. Nice Candidate. Can give the salary which she asked and need notoce period to Join', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1019', '', NULL, NULL, NULL, 1, '2022-08-23 08:33:52', 108, '2024-01-30 11:53:50', 0, NULL, 1),
(9911, 'Vaitheeswari', '13', '9344460205', '8870219748', 'vaithiniki1199@gmail.com', '1999-04-11', 23, '3', '2', 'Dhanarasu', 'Business', 35000.00, 1, 0.00, 18000.00, 'Pondicherry', 'Chennai', '2208230007', '', '1', 'upload_files/candidate_tracker/77322533633_vaithi resume.docx (2).pdf', NULL, '1', '2022-08-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-23 08:34:17', 1, '2022-08-23 08:40:35', 0, NULL, 1),
(9912, 'Kavichelvy. k', '13', '7339440532', '8220262845', 'kavichelvy127@gmail.com', '1999-07-12', 23, '2', '2', 'Kathavarayan', 'Farmer', 10000.00, 1, 0.00, 18000.00, 'Puducherry', 'Chennai', '2208230008', '1', '1', 'upload_files/candidate_tracker/20637414232_KAVICHELVY.K.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas need to open a lot will not sustain in our Roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-23 09:27:09', 85, '2022-08-24 10:57:09', 0, NULL, 1),
(9913, 'Vishal e', '4', '9003632811', '', 'Vishalyoung03@gmail.com', '2001-02-03', 21, '2', '2', 'Elayaraja', 'Engineer', 15000.00, 2, 0.00, 12000.00, 'Chennai', 'Chennai', '2208240001', '2', '1', 'upload_files/candidate_tracker/38331919341_Resume Vishal.pdf', NULL, '1', '2022-08-24', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'From trichy ...no job need and he will not sustain..', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 10:03:04', 1, '2022-08-24 10:04:48', 0, NULL, 1),
(9914, 'Ajay varalal', '4', '9003769654', '', 'Thangamaganvijay6@gmail.com', '2001-05-17', 21, '2', '2', 'Arul raj', 'Watchman', 8000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2208240002', '2', '1', 'upload_files/candidate_tracker/85862788765_Ajay resume .pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking much for the inbound calls,Focus towards the media roles will not run in a long no bike and no laptop', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 10:05:54', 1, '2022-08-24 10:07:47', 0, NULL, 1),
(9915, 'Riyaskhan', '4', '9865572247', '', 'Manavairiyas2002@gmail.com', '2002-07-17', 20, '2', '2', 'Sathick batcha', 'Cooli', 5000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2208240003', '2', '1', 'upload_files/candidate_tracker/35056840132_Resume .pdf', NULL, '1', '2022-08-24', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'From trichy....will not suit for our process... sal expt also high...', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 10:09:26', 1, '2022-08-24 10:10:57', 0, NULL, 1),
(9916, 'Ramprasath', '4', '9788016092', '', 'Prasathram255@gmail.com', '1993-09-22', 28, '2', '2', 'Arumugam', 'Gov', 30000.00, 1, 15000.00, 17000.00, 'Chennai', 'Chennai', '2208240004', '2', '2', 'upload_files/candidate_tracker/15670215799_ram2022_updated_resume_.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Seems not much to be active Pronunciation no seems to experienced pressure in his previous ,sustainability doubts ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 10:12:46', 1, '2022-08-24 10:14:18', 0, NULL, 1),
(9917, 'Vishnu m', '5', '9629003203', '', 'vishnuvp261405@gmail.com', '1997-08-26', 24, '2', '2', 'Murugandham p', 'Entrepreneur', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208240005', '2', '2', 'upload_files/candidate_tracker/73474524133_Vishnu Resume.pdf', NULL, '1', '2022-08-24', 0, '', '3', '59', '2022-09-05', 250000.00, '', '6', '2022-11-09', '1', 'Selected for Manikandan Team - PF/ESI/PT', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-24 10:18:08', 60, '2022-08-30 05:54:08', 0, NULL, 1),
(9918, '', '0', '6385759830', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-24 10:23:37', 0, NULL, 0, NULL, 1),
(9919, 'ABDUR RAHMAN', '31', '7395998312', '', 'abdurrahman100800@gmail.com', '2000-08-10', 22, '2', '2', 'SHAHUL HAMEED', 'Business', 10000.00, 2, 0.00, 400000.00, 'Chennai', 'Chennai', '2208240007', '1', '1', 'upload_files/candidate_tracker/55680175090_abdur_NewResume.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Need to be trained but sustainability doubts he may get some reference and move out Long run doubts on this profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 10:26:19', 85, '2022-08-24 05:59:57', 0, NULL, 1),
(9920, 'T S PRAKASH BABU', '13', '9884323353', '8124868683', 'tsprakashbabu1@gmail.com', '1999-09-18', 22, '2', '2', 'Srinivasan', 'Student', 30000.00, 2, 0.00, 25000.00, 'Kodungaiyur', 'M k b nagar', '2208240008', '1', '1', 'upload_files/candidate_tracker/69736551758_prakash resume(2).pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Distance to be focused Need time to confirm on TxxampC Thinking a lot on TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 10:26:46', 85, '2022-08-24 05:59:34', 0, NULL, 1),
(9921, 'Lakshmi shree', '16', '7975904943', '', 'Lakshmisrit99@gmail.com', '1999-04-30', 23, '2', '2', 'Yanadaiah', 'Business', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208240009', '1', '1', 'upload_files/candidate_tracker/66035876859_Resume_document_converted.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 profile processed for 2nd round but left without attending the interview ', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-24 10:40:13', 1, '2022-08-24 10:57:45', 0, NULL, 1),
(9922, 'H. naveen kumar', '13', '7358763529', '', 'Kumarnav070@gmail.com', '2000-08-08', 22, '2', '2', 'N. Hemanth kumar', 'Chat shop', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2208240010', '1', '1', 'upload_files/candidate_tracker/28170056502_Naveen Kumar resume.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher no basic ideas in the skills too long distance no JS/PHP Skills not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 11:01:43', 85, '2022-08-24 05:59:03', 0, NULL, 1),
(9923, 'M. Gopi', '31', '8122714003', '', 'majagopi143@gmail.com', '2001-12-12', 20, '2', '2', 'V. Moorthy', 'Construction work', 20000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2208240011', '1', '1', 'upload_files/candidate_tracker/71763016675_gopi final resume.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher No Basic Ideas In The Skills No JS/PHP Skills Not Suitable Not Open For TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 11:02:57', 85, '2022-08-24 05:57:50', 0, NULL, 1),
(9924, 'Gurubharani.p', '13', '9345825369', '', 'gurubharani45@gmail.com', '2001-06-11', 21, '2', '2', 'Palanivel.s', 'Security', 13000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2208240012', '1', '1', 'upload_files/candidate_tracker/86743443368_guru 3.pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basic Ideas In The Skills No JS/PHP Skills Not Suitable not open for TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 11:06:17', 85, '2022-08-24 05:58:14', 0, NULL, 1),
(9925, 'Vaitheeswari', '13', '9994479826', '9514770713', 'vaithiniki1199@gmail.com', '1999-04-11', 23, '2', '1', 'Dhanarasu', 'Business', 60000.00, 1, 0.00, 18000.00, 'Pondicherry', 'Chennai', '2208240013', '1', '1', 'upload_files/candidate_tracker/16519973236_vaithi resume.docx (2).pdf', NULL, '1', '2022-08-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no basic ideas in the skills she is clear that will focus on high pay positions ,EB in Amazon and looking for references too will not run in a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-24 11:09:46', 85, '2022-08-24 11:18:04', 0, NULL, 1),
(9926, 'R. Esther Rani', '13', '9884713148', '', 'estherrani110201@gmail.com', '2001-02-11', 21, '2', '2', 'T. Raju', 'Welder', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2208240014', '1', '1', 'upload_files/candidate_tracker/42337384715_esther resume.pdf', NULL, '1', '2022-08-24', 0, '', '4', '63', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher 5050 profile sustainability doubts,kindly check and let me know your interest', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-24 11:18:56', 85, '2022-08-24 05:58:42', 0, NULL, 1),
(9927, 'Gayathri', '6', '8122576814', '', 'GAYATHRIKOUSHIK10@GMAIL.COM', '1994-03-21', 28, '2', '1', 'Vignesh G', 'Working in transport', 200000.00, 0, 18000.00, 20000.00, 'Chennai', 'Chennai', '2208240015', '1', '2', 'upload_files/candidate_tracker/33104611771_Gayathri final.pdf', NULL, '1', '2022-08-24', 0, '', '3', '59', '2022-08-29', 218496.00, '', '', '2022-09-14', '2', 'Selected for Renewals - Health Insurance 5 yrs Exp', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-24 01:54:48', 60, '2022-08-27 05:55:08', 0, NULL, 1),
(9928, 'Parthiban.s', '4', '6381830192', '9361017073', 'sparthi146@gamil.con', '1999-03-04', 23, '4', '2', 'PARTHIBAN', 'Supervisor', 20000.00, 1, 0.00, 10000.00, 'Veerappan Chathiram', 'Veerappan Chathiram', '2208240016', '', '1', 'upload_files/candidate_tracker/22497010461_PARTHIBAN RESUME-converted.pdf', NULL, '1', '2022-08-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-24 03:11:51', 1, '2022-08-24 03:19:15', 0, NULL, 1),
(9929, 'sandhya p', '16', '6300108037', '9492531995', 'sandhyapalla96@gmail.com', '1995-07-27', 27, '2', '2', 'dasaiah', 'farmer', 10000.00, 2, 215000.00, 280000.00, 'nellore andra pradesh', 'chennai tamilnadu', '2208240017', '1', '2', 'upload_files/candidate_tracker/944345544_CURRICULUM VITAE.Sandhya P.pdf', NULL, '1', '2022-08-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No understanding ,Pronunciation not good No local Language Writing skills also not upto the mark as we expected not suitable will not handle our pressure\n', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-24 03:44:00', 85, '2022-08-25 09:58:01', 0, NULL, 1),
(9930, '', '0', '8870086426', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208240018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-24 04:44:46', 0, NULL, 0, NULL, 1),
(9931, 'Punitha', '16', '9884784167', '', 'punithpuni0408@gmail.com', '2000-08-04', 22, '2', '2', 'Sivakumar', 'Tailor', 6000.00, 1, 15300.00, 16000.00, 'East Tambaram', 'East Tambaram', '2208240019', '1', '2', 'upload_files/candidate_tracker/22681874446_updated resume-punitha.pdf', NULL, '1', '2022-08-25', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No stability in her previous Exp, Currently working and looking for opportunities just for salary growth will not sustain in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-24 06:45:43', 85, '2022-08-25 12:09:51', 0, NULL, 1),
(9932, 'Harshini', '6', '9788908888', '9698709900', 'hari27551@gmail.com', '1999-06-16', 23, '2', '1', 'Jagadeesh', 'Office admin', 20.00, 2, 0.00, 15.00, 'Senguttaipalayam', 'Senguttaipalayam', '2208250001', '1', '1', 'upload_files/candidate_tracker/58108559537_Harshini Resume.docx', NULL, '1', '2022-08-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for Profile ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-25 09:59:18', 85, '2022-08-25 11:08:28', 0, NULL, 1),
(9933, 'Thejaswin', '4', '9840247227', '9894990123', 'thejas16496@gmail.com', '1996-04-16', 26, '2', '2', 'Ganesh C S', 'Retired', 30000.00, 1, 35000.00, 43000.00, 'Chennai', 'Chennai', '2208250002', '1', '2', 'upload_files/candidate_tracker/60256935593_Thejaswin RESUME Updated.pdf', NULL, '1', '2022-08-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication is Good,Checked for MF but the salary exp is very high his last drawn MCTC 35K,Not open for Sales Calls not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-25 10:15:28', 1, '2022-08-25 10:20:18', 0, NULL, 1),
(9934, 'murali dharan k', '4', '7904416765', '', 'diomurali8818@gmail.com', '1998-11-12', 23, '2', '2', 'krishna murthy', 'hotel supervisor', 20000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2208250003', '2', '2', 'upload_files/candidate_tracker/61395024497_RESUME (1).pdf', NULL, '1', '2022-08-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '30 days notice 1.10 months 2 companies and looking for 3rd one .Focusing only on the salary much,Will not sustain in a long run,also felt pressure with the previous Exp not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-25 10:28:19', 1, '2022-08-25 10:35:44', 0, NULL, 1),
(9935, 'kanimozhi rajendran', '4', '9486073780', '', 'kasthurikani21@gmail.com', '1996-11-21', 25, '2', '2', 'rajendran', 'farmer', 8000.00, 2, 0.00, 14000.00, 'chennai', 'chennai', '2208250004', '2', '1', 'upload_files/candidate_tracker/76895387625_KANI.RESUME.pdf', NULL, '1', '2022-08-25', 0, '', '4', '14', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile no communication for recruitment,for Telecaller little doubtful on sustainability kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-25 10:40:05', 60, '2022-08-25 06:51:00', 0, NULL, 1),
(9936, 'dinesh kumar m', '6', '9003308129', '', 'dineshkumar.m1228@gmail.com', '1999-10-12', 22, '2', '2', 'murugan', 'business man', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2208250005', '2', '1', 'upload_files/candidate_tracker/25745801484_Dinesh resume.pdf', NULL, '1', '2022-08-25', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile need to be trained kindly check and let me know your interest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-25 10:44:17', 60, '2022-08-25 06:59:29', 0, NULL, 1),
(9937, 'ajay a', '6', '7338703127', '', 'ajaysmartajay55@gmail.com', '2000-02-18', 22, '2', '2', 'annappan', 'nil', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208250006', '2', '1', 'upload_files/candidate_tracker/45807800783_Ajay.docx', NULL, '1', '2022-08-25', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to be trained no bike Laptop Yes 5050 Profile kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-25 10:48:25', 60, '2022-08-25 06:35:48', 0, NULL, 1),
(9938, 'Janavisha N', '16', '9840358469', '', 'janavisha77@gmail.com', '2000-01-07', 22, '2', '2', 'Natarajan', 'Chasier', 11000.00, 1, 0.00, 16000.00, 'Valasaravakkam', 'Valasaravakkam', '2208250007', '1', '1', 'upload_files/candidate_tracker/38518465849_wp.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok fresher not open for TxxampC not even for an year will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-25 03:27:14', 85, '2022-08-26 10:08:10', 0, NULL, 1),
(9939, 'muthu manikandan', '4', '9626617616', '', 'manirockz616@gmail.com', '1996-07-25', 26, '2', '2', 'subburaman', 'own business', 16000.00, 1, 13000.00, 14000.00, 'chennai', 'chennai', '2208250008', '2', '2', 'upload_files/candidate_tracker/5722597337_My Resume1.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-25 06:25:16', 1, '2022-08-25 06:28:25', 0, NULL, 1),
(9940, 'hariharan r', '4', '6374814755', '', 'haran9457@gmail.com', '1995-01-15', 27, '2', '2', 'radhakrishnan n', 'farmer', 20000.00, 1, 12000.00, 14000.00, 'chennai', 'chennai', '2208250009', '2', '2', 'upload_files/candidate_tracker/78712269651_Resume 1_1658784027774_Hari Haran.R-2.pdf', NULL, '2', '2022-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-25 06:32:06', 1, '2022-08-25 06:37:51', 0, NULL, 1),
(9941, 'Vijay', '2', '9566126814', '8883781813', 'vijay19g133@gmail.com', '2001-10-10', 20, '2', '2', 'Sudha. A', 'Care Taker', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2208250010', '1', '1', 'upload_files/candidate_tracker/34704400370_Vijay.Resume.docx', NULL, '1', '2022-08-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to come back with his confirmation,5050 if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-08-29', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-25 06:39:55', 85, '2022-08-26 10:08:27', 0, NULL, 1),
(9942, 'subha', '4', '7397279781', '', 'subha20001@gmail.com', '2001-05-05', 21, '2', '2', 'anandhan', 'nil', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2208250011', '2', '1', 'upload_files/candidate_tracker/51169344911_vnd.openxmlformats-officedocument.wordprocessingml.pdf', NULL, '1', '2022-08-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-25 06:40:57', 1, '2022-08-26 08:40:38', 0, NULL, 1),
(9943, 'bebadic a', '4', '7603880541', '', 'benadictmessi2231@gmail.com', '2000-10-22', 21, '2', '2', 'arulappa', 'nil', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2208260001', '2', '1', 'upload_files/candidate_tracker/61485451676_Resume_1661186148093.pdf', NULL, '1', '2022-08-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 08:41:58', 1, '2022-08-26 08:44:07', 0, NULL, 1),
(9944, 'sundaram g', '4', '7339064496', '', 'sundarssa76@gmail.com', '2000-05-12', 22, '2', '2', 'guruvaiya', 'cooli', 6000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2208260002', '2', '1', 'upload_files/candidate_tracker/67247947545_sundar new-con-converted (1)-compressed.pdf', NULL, '1', '2022-08-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'will not suit for our process not open up..', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 08:45:14', 1, '2022-08-26 08:47:19', 0, NULL, 1),
(9945, 'prabhakaran', '4', '7538858821', '', 'prabakarancool04@gmail.com', '2000-04-04', 22, '2', '2', 'palani', 'nil', 14000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2208260003', '2', '1', 'upload_files/candidate_tracker/10500218981_Resume .pdf', NULL, '1', '2022-08-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'NO Sustainabilites in previous companies.. he will not suit for telesales also.. ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 08:51:57', 1, '2022-08-26 08:55:09', 0, NULL, 1),
(9946, 'gowtham', '6', '6382629454', '', 'abgcomputers22@gmail.com', '2002-01-29', 20, '2', '2', 'sivathanu d', 'driver', 10000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2208260004', '2', '2', 'upload_files/candidate_tracker/99185709008_gowtham sivathanu.pdf', NULL, '1', '2022-08-26', 0, '', '3', '59', '2022-08-30', 193000.00, '', '5', '1970-01-01', '1', 'Selected for Syed Team - RE - Stsff role no previous Exp Documents, should check in 7 days', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-26 10:12:11', 60, '2022-08-30 09:51:44', 0, NULL, 1),
(9947, 'M.prakash', '31', '9342446250', '', 'prakashmeiyanathan@gmail.com', '1999-06-03', 23, '2', '2', 'Meiyanathan', 'Developer', 10000.00, 2, 0.00, 150000.00, 'Pudukkottai', 'Chennai', '2208260005', '1', '1', 'upload_files/candidate_tracker/90326822107_prakash.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'not open for TxxampC,Fresher,Not much strong in the Skills', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-08-26 10:20:47', 1, '2022-08-26 10:49:15', 0, NULL, 1),
(9948, 'Pradeep N', '31', '8667556829', '9489561100', 'pradeep.osr28@gmail.com', '1995-10-28', 26, '2', '2', 'Nesamani', 'Show producer in Bs value OTT', 50.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2208260006', '1', '1', 'upload_files/candidate_tracker/91271769770_Pradeep_N_Resume_V0.1.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java Openings he was into media earlier not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-26 10:33:59', 1, '2022-08-26 10:40:29', 0, NULL, 1),
(9949, 'Jaya aswin', '4', '9384755947', '6385907975', 'jayaashwin01@gmail.com', '2001-02-01', 21, '2', '2', 'Senthil Kumar', 'Fire department', 50000.00, 1, 0.00, 20000.00, '5 moovendar street anna mgr nagar pallikaranai', '5 moovendar street anna mgr nagar pallikaranai', '2208260007', '1', '1', 'upload_files/candidate_tracker/33093502100_Aswin Resume.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for outbound calls need to get in the networking profile not suitable will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-26 10:44:51', 92, '2022-08-26 10:51:21', 0, NULL, 1),
(9950, '', '0', '9751764362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208260008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-26 10:46:09', 0, NULL, 0, NULL, 1),
(9951, 'Selvaraja K', '4', '8668166893', '9751764362', 'kselvaraja999@gmail.com', '1997-09-04', 24, '2', '2', 'Karungappan', 'Agriculture', 50000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Pallikarnai', '2208260009', '1', '1', 'upload_files/candidate_tracker/29050695873_KSelvaraja-2(1).pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Convincing Not showing interest towards the job,Focus only for collections will not sustain ina long run', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-26 10:54:02', 92, '2022-08-26 11:08:04', 0, NULL, 1),
(9952, 'Bharath R', '2', '9080534491', '8939690027', 'bharath7brad@gmail.com', '2002-05-30', 20, '2', '2', 'R Rajeev', 'Business', 15000.00, 1, 0.00, 260000.00, '12/9, Mangalapuram 6th st , Chetpet, Chennai-31', '12/9, Mangalapuram 6th St , Chetpet, Chennai-31', '2208260010', '1', '1', 'upload_files/candidate_tracker/63153301071_Bharath.pdf', NULL, '1', '2022-08-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not open for Internship and SA,Focus only on the salary will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-26 11:24:42', 85, '2022-08-26 11:48:37', 0, NULL, 1),
(9953, 'SURYA S', '4', '9025687593', '9786383330', 'arishkhaneee@gmail.com', '2000-07-16', 22, '4', '2', 'SIVANANDHAM', 'Student', 36000.00, 1, 0.00, 200000.00, 'Thiruvarur', 'T nager', '2208260011', '', '1', 'upload_files/candidate_tracker/77841920485_SURYA RESUME-converted-signed (1).pdf', NULL, '1', '2022-08-26', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher need to open a lot 5050 kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 11:26:52', 1, '2022-08-26 11:41:52', 0, NULL, 1),
(9954, 'Y.mukesh raj', '4', '7603981453', '9840167715', 'mukeshrajyuvaraj.211903179@gamil.com', '2002-01-30', 20, '1', '2', 'Yuvaraj', 'Transport', 15000.00, 1, 0.00, 18000.00, 'Chennai', 'Kolathur', '2208260012', '', '1', 'upload_files/candidate_tracker/45107317565_Adobe Scan Aug 23, 2022.pdf', NULL, '1', '2022-08-26', 0, 'P1275', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-26 12:04:49', 1, '2022-08-26 12:10:52', 0, NULL, 1),
(9955, 'Thirumalai e', '23', '9944174932', '9786287809', 'thiruaalvin123@gmail.com', '2000-06-03', 22, '2', '2', 'egambaram', 'farmer', 15.00, 2, 0.00, 22000.00, 'villupuram', 'tambaram', '2208260013', '1', '1', 'upload_files/candidate_tracker/83590661302_Resume.pdf', NULL, '1', '2022-08-26', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in the UI UX skills can be trained kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-26 03:15:22', 60, '2024-03-25 12:01:32', 0, NULL, 1),
(9956, 'Arunkumar', '23', '9360822570', '', 'mkarunpeace@gmail.com', '2007-08-27', 0, '2', '2', 'Kannan', 'Handloom', 15000.00, 1, 0.00, 220000.00, 'Paramakudi, Ramanathapuram', 'Avadi, chennai', '2208270001', '1', '1', 'upload_files/candidate_tracker/60537114731_ARUN KUMAR (2).pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance ready to relocate but not much comfort in TxxampC Will not sustain and handle our work pressure', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 09:14:23', 85, '2022-08-27 09:52:27', 0, NULL, 1),
(9957, 'siva sakthi kumaran', '4', '9865273041', '', 'sivasakthikumara@gmail.com', '1991-03-11', 31, '2', '2', 'santharam', 'crack workers', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2208270002', '2', '1', 'upload_files/candidate_tracker/12293810403_sivasakthi (1)-1.docx', NULL, '1', '2022-08-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 09:37:56', 1, '2022-08-27 09:40:54', 0, NULL, 1),
(9958, 'akash s', '11', '6382109166', '', 'akashsankar.r@gmail.com', '2000-08-22', 22, '2', '2', 'sankar', 'salesman', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208270003', '2', '1', 'upload_files/candidate_tracker/51161168940_Akash S (7).pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Preparing for UPSCxxamp police jobs will not sustain not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 09:41:58', 1, '2022-08-27 09:44:18', 0, NULL, 1),
(9959, 'NANDHINI', '23', '8056259377', '9840397158', 'nandhinisy2k@gmail.com', '2000-05-19', 22, '2', '2', 'Subramani. A', 'System analyst', 30000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2208270004', '1', '1', 'upload_files/candidate_tracker/56356652601_NANDHINI.S RESUME.pdf', NULL, '1', '2022-08-27', 0, '', '5', '69', NULL, 0.00, '', '0', NULL, '2', 'Task output is terrible', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 09:50:30', 1, '2022-08-27 09:58:31', 0, NULL, 1),
(9960, 'KALAIMATHI SEKAR', '23', '9500443627', '9486258260', 'kalaimathisekar6@gmail.com', '1999-06-09', 23, '2', '2', 'Sekar', 'Police', 200000.00, 2, 0.00, 1.50, 'Namakkal', 'Sollinganallur', '2208270005', '1', '1', 'upload_files/candidate_tracker/85485764515_Front end developer kalaimathi Resume .pdf', NULL, '1', '2022-08-27', 0, '', '3', '59', '2022-08-29', 96000.00, '', '', '2022-09-13', '2', '15 Days Free Intern then 5K for 5 month 8-12 for Employment', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 09:57:52', 1, '2022-08-27 10:05:11', 0, NULL, 1),
(9961, 'Mageshwari', '2', '8637465734', '', 'mageshwariviji6@gmail.com', '1999-06-06', 23, '2', '2', 'Ravichandran', 'Labor', 12000.00, 1, 0.00, 25000.00, 'Avadi', 'Avadi', '2208270006', '1', '1', 'upload_files/candidate_tracker/49310522408_R. Mageswari_cv.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java Profile and not open for TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 10:19:36', 1, '2022-08-27 10:32:02', 0, NULL, 1),
(9962, 'Pechi Thangam S', '20', '6381761867', '', 'pechithangamsbca@gmail.com', '2001-09-10', 20, '2', '2', 'Sivaperumal', 'Monthly wager', 95000.00, 2, 0.00, 15000.00, '16, Rajiv Gandhi 2 Cross Street, Mgr Nagar, Ch 78', '16, Rajiv Gandhi 2 cross street, mgr nagar, ch 78', '2208270007', '1', '1', 'upload_files/candidate_tracker/13006991818_Resume PDF.pdf', NULL, '1', '2022-08-27', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 discussed for noth Arumbakam xxamp Tnagar do check and let me know your interest', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 10:27:05', 1, '2022-08-27 10:35:32', 0, NULL, 1),
(9963, 'P.s kathar masthan ali', '23', '9367636945', '9790307799', 'katharmasthan1437@gmail.com', '1999-05-27', 23, '2', '2', 'P.m syed Mohideen', 'Auto driver', 27000.00, 2, 0.00, 18000.00, 'Tirunelveli', 'Guindi', '2208270008', '1', '1', 'upload_files/candidate_tracker/97760811533_kathar resume.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills and need time to give his confirmation if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 10:43:32', 85, '2022-08-27 11:43:34', 0, NULL, 1),
(9964, 'Viswanathan.j', '23', '9787473358', '9943789510', 'vishvanathan.jsp@gmail.com', '1997-10-20', 24, '2', '2', 'Jothilingam', 'Farmer', 25000.00, 1, 0.00, 15000.00, 'Melmaruvathur', 'Guindi', '2208270009', '1', '1', 'upload_files/candidate_tracker/72629462719_Sample Resume-converted-2.docx', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking only for the Salary growth no basic ideas he is from Core filed', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 10:43:53', 85, '2022-08-27 11:44:05', 0, NULL, 1),
(9965, 'Mohamed tharul kutha', '31', '9600952673', '', 'Tharulkutha98@gmail.com', '1998-09-14', 23, '2', '2', 'S.p.Abdul Raheem', 'Business', 25000.00, 2, 0.00, 20000.00, 'Ramanathapuram', 'Tambaram', '2208270010', '1', '1', 'upload_files/candidate_tracker/57002247944_Recent1.docx', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No Basic Ideas In The Skills Not Much Comfort In TxxampC Will Not Sustain need time to confirm', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 10:50:11', 85, '2022-08-27 11:43:53', 0, NULL, 1),
(9966, 'NISHANTHINI M', '6', '9626649778', '8940888120', 'nishanthinimmarappan@gmail.com', '2001-11-16', 20, '2', '2', 'MARAPPAN K', 'Agriculture', 20000.00, 2, 0.00, 10000.00, 'Gobichettipalayam', 'Gobichettipalayam', '2208270011', '1', '1', 'upload_files/candidate_tracker/45306255725_nisha resume.pdf', NULL, '1', '2022-08-27', 0, '', '3', '59', '1970-01-01', 156000.00, '', '2', '1970-01-01', '2', 'Selected for Erode - Suthagar - Staff Role', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-27 10:54:36', 60, '2022-08-27 05:02:57', 0, NULL, 1),
(9967, 'Balaji', '2', '9940168928', '', 'balajivedas25@gmail.com', '2001-09-25', 20, '2', '2', 'Vedhachalam', 'Business', 30000.00, 1, 0.00, 18000.00, 'Madambakam', 'Madambakam', '2208270012', '1', '1', 'upload_files/candidate_tracker/38261810637_Balaji Resume.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher his EB in IT Pune he is looking for positions through reference too long distance will not sustina', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 11:01:06', 1, '2022-08-27 11:26:33', 0, NULL, 1),
(9968, 'Vishva D', '31', '9092009680', '8056561289', 'vishvabai320@gmail.com', '2000-05-17', 22, '2', '2', 'Dhayalan', 'Driver', 20000.00, 1, 0.00, 20000.00, 'Gingee , Villupuram', 'Indira street,Indira nagar, sithalapakkam,chennai', '2208270013', '1', '1', 'upload_files/candidate_tracker/22217912606_Vishva D resume.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance will not run in a long 2nd reject by manikandan', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-08-27 11:01:38', 1, '2022-08-27 11:07:01', 0, NULL, 1),
(9969, 'Vijayakumar Seenivasan', '31', '6374062307', '', 'vijay.kumarjs02@gmail.com', '2002-07-06', 20, '2', '2', 'Seenivasan', 'Printer', 15000.00, 1, 0.00, 20000.00, 'Perumbakkam, chennai', 'Perumbakkam, chennai', '2208270014', '1', '1', 'upload_files/candidate_tracker/91867288532_Resume-1.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basic ideas in the skills not much comfort in TxxampC Will not sustain', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 11:53:30', 85, '2022-08-27 12:22:10', 0, NULL, 1),
(9970, 'sriram', '31', '9361118016', '7401494330', 'sriramtj1201@gmail.com', '2000-01-12', 22, '2', '2', 'surendran', 'driver', 15000.00, 1, 0.00, 200000.00, 'chennai', 'chennai', '2208270015', '1', '1', 'upload_files/candidate_tracker/2542660371_SRIRAM_S_Full_Stack_Developer _Resume (1).pdf', NULL, '1', '2022-09-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-27 12:54:02', 85, '2022-09-03 09:47:01', 0, NULL, 1),
(9971, 'Hariharan V', '14', '8220065580', '8300224025', 'Harishkamsan778@gmail.com', '2000-06-05', 22, '4', '2', 'Vengatesan T', 'GoldSmith', 10000.00, 1, 0.00, 16000.00, 'Cuddalore', 'Ambathur', '2208270016', '', '1', 'upload_files/candidate_tracker/68025348962_Hariharan.v (2)-1-3.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills in Flutter not much importance on job will not run in a long show', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 12:55:02', 1, '2022-08-27 12:59:57', 0, NULL, 1),
(9972, 'Govardhanan', '14', '6380571978', '9362368824', 'GovardhananGovardhanan740@gmail.com', '2000-01-11', 22, '4', '2', 'G.Gopinathan', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Kadambathur', 'Perambur', '2208270017', '', '1', 'upload_files/candidate_tracker/67856749304_GovardhananGopinathan.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No ideas in the Mobile App Skills nust came along with his friend', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 12:55:24', 1, '2022-08-27 01:00:11', 0, NULL, 1),
(9973, 'Logeshwari.s', '15', '9025056175', '9445317220', 'logisaravanan20@gmail.com', '2000-12-09', 21, '2', '2', 'Saravanan.M', 'Carpenter', 80000.00, 1, 0.00, 16000.00, 'Ernavoor', 'Ernavoor', '2208270018', '1', '1', 'upload_files/candidate_tracker/96496504839_COPY OF RESUME.pdf', NULL, '1', '2022-08-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance not open with TxxampC Looking for Time being preparing UPSC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-27 12:56:11', 85, '2022-08-27 01:09:43', 0, NULL, 1),
(9974, 'Jone kingsley', '13', '9003179249', '7598010053', 'Kingstechit2018@gmail.com', '2000-03-16', 22, '4', '2', 'Benny. J', 'Accountant', 25000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Chrompet', '2208270019', '', '1', 'upload_files/candidate_tracker/36469698576_JK CV.pdf', NULL, '1', '2022-08-27', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050Profile Open for TxxampC already attended lot of interviews and finally come down for TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-27 02:03:32', 1, '2022-08-27 02:08:34', 0, NULL, 1),
(9975, '', '0', '9176241334', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208270020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-27 03:50:09', 0, NULL, 0, NULL, 1),
(9976, '', '0', '9962692793', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208270021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-27 06:08:07', 0, NULL, 0, NULL, 1),
(9977, 'fathima afrin', '22', '9677141254', '', 'afrinsyed30@gmail.com', '2000-11-08', 21, '2', '2', 'basheer', 'business', 35000.00, 3, 0.00, 24000.00, 'mannady', 'mannady', '2208280001', '1', '1', 'upload_files/candidate_tracker/6889343584_afrin resume.pdf', NULL, '1', '2022-08-30', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher, Salary Exp is high,Communication is Good,Family need is not there kindly check and give your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-28 03:19:46', 85, '2022-08-30 09:47:18', 0, NULL, 1),
(9978, 'john merito at', '4', '8778110510', '', 'hayatalnajah07@gmail.com', '1998-06-07', 24, '2', '2', 'arul rajan s', 'wimming pool engineer', 20000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2208290001', '2', '1', 'upload_files/candidate_tracker/69742022813_PRIMI (2).docx', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher need to be trained a lot left without attending the 2nd round 5050 ', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 09:35:37', 1, '2022-08-29 09:37:44', 0, NULL, 1),
(9979, 'chandru s', '11', '9600692412', '', 'suryachandru99@gmail.com', '1998-01-16', 24, '2', '2', 'sundramurthy c', 'cashier', 12000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2208290002', '2', '1', 'upload_files/candidate_tracker/11736975759_chandru(mba).pdf', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication average,No basic Ideas in the recruitment,will not run in a long,sustainability doubts', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 09:39:05', 1, '2022-08-29 09:41:01', 0, NULL, 1),
(9980, 'anusuya m', '11', '9790029827', '', 'anusuyaanuu1998@gmail.com', '1998-09-08', 23, '2', '2', 'munisamy', 'army', 30000.00, 2, 0.00, 10000.00, 'chennai', 'chennai', '2208290003', '2', '1', 'upload_files/candidate_tracker/59211999058_Document (2).docx', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '6 months Exp but not much good in Skills wil not sustain for a long not much suitable for our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 09:47:59', 1, '2022-08-29 09:50:13', 0, NULL, 1),
(9981, 'Malini', '6', '9791166373', '9150480373', 'mmalini220@gmail.com', '2001-10-13', 20, '1', '2', 'Sameema', 'Nil', 20000.00, 2, 0.00, 17000.00, 'Saidapet', 'Saidapet', '2208290004', '', '1', 'upload_files/candidate_tracker/37603252506_malini.docx', NULL, '3', '2022-08-29', 0, 'P1070', '3', '59', '2022-09-02', 164208.00, '', '4', '2022-12-03', '1', 'Selected for Babu Team - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-29 10:46:45', 60, '2022-09-02 10:03:36', 0, NULL, 1),
(9982, 'Ajay Kumar R', '23', '9600903123', '', 'ajay14rs@gmail.com', '2007-08-29', 0, '2', '2', 'RANGANATHAN R', 'Village bank appraiser', 12000.00, 2, 0.00, 250000.00, 'Ranipet District', 'Ranipet District', '2208290005', '1', '1', 'upload_files/candidate_tracker/57292628294_AJAY KUMAR R new1.pdf', NULL, '1', '2022-08-29', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for UIUX Can be trained have skills knowledge kindly check and let me know your inputs', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-29 10:55:40', 92, '2022-08-29 04:52:24', 0, NULL, 1),
(9983, 'vallarasu', '16', '9597831454', '9597831455', 'vallarasug642000@gmail.com', '2000-04-06', 22, '2', '2', 'Govinthan', 'farmar', 10000.00, 4, 0.00, 15000.00, 'thirukovilur', 'pallikkaranai', '2208290006', '1', '1', 'upload_files/candidate_tracker/96003052894_valter.pdf', NULL, '1', '2022-08-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication not suitable for our roles', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-29 11:12:56', 92, '2022-08-29 12:04:51', 0, NULL, 1),
(9984, 'Celsheya', '22', '9941573525', '', 'celsheyarema@gmail.com', '2001-10-01', 20, '2', '2', 'R. Prabhukumar', 'Tailor', 20000.00, 1, 0.00, 300000.00, 'Urapakkam', 'Urapakkam', '2208290007', '1', '1', 'upload_files/candidate_tracker/48940509805_9941573525 (1)(1).pdf', NULL, '1', '2022-08-29', 0, '', '4', '54', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'candidate Didnxquott turn up', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-29 11:16:47', 60, '2022-08-29 07:33:37', 0, NULL, 1),
(9985, 'balaji', '5', '8148434134', '7871022673', 'balaragu72@gmail.com', '1991-10-05', 30, '2', '2', 'ragu', 'indian oil', 30000.00, 1, 360000.00, 400000.00, 'chennai', 'chennai', '2208290008', '1', '2', 'upload_files/candidate_tracker/25417630144_Balaji- 2022.pdf', NULL, '1', '2022-08-29', 15, '', '3', '59', '2022-09-14', 380000.00, '', '4', '2023-03-08', '1', 'Selected for Manikandan Team in Staff Role', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-29 11:34:09', 60, '2022-09-07 07:08:59', 0, NULL, 1),
(9986, 'Surajkiran.j', '16', '7338947699', '9092624414', 'surajkiranmech1602@gmail.com', '1997-02-16', 25, '2', '2', 'P.D Jayakumar', 'Buisness', 25.00, 0, 0.00, 15.00, 'Chennai', 'Chennai', '2208290009', '1', '1', 'upload_files/candidate_tracker/2635215481_Suraj resume-25.07 (1).pdf', NULL, '1', '2022-08-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Can be trained but long run doubts professional Cricket player if he comes back let us try', '3', '1', '', '1', '1', '', '2', '2022-08-31', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-29 11:34:58', 92, '2022-08-29 12:04:14', 0, NULL, 1),
(9987, 'Priyanka', '11', '7550031363', '', 'PRIYANKAPRIYANKA76419@gmail.com', '1999-09-27', 22, '2', '2', 'Mayavan', 'Farmer', 100000.00, 1, 16000.00, 18000.00, 'Kilpauk', 'Kilpauk', '2208290010', '1', '2', 'upload_files/candidate_tracker/28974369301_e74ad282-b892-43a4-803f-73ecf6dc35bc (1) (1).pdf', NULL, '1', '2022-08-29', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average Left without completing the task not suitable Drop', '6', '1', '', '1', '3', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-29 12:01:05', 60, '2022-08-29 07:22:07', 0, NULL, 1),
(9988, 'Abdur Raheem', '31', '9384875431', '', 'raheemabdur1712@gmail.com', '2002-12-17', 19, '3', '2', 'Muhammad Ayub', 'Student - Final year', 40000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2208290011', '', '1', 'upload_files/candidate_tracker/88961962611_AbdurRaheemResume.pdf', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '9 months to complete the graduation looking for Internship', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 01:45:15', 1, '2022-08-29 01:49:08', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(9989, 'Naseeb Ali N', '31', '7550125988', '', 'alinaseeb1233@gmail.com', '2002-04-04', 20, '3', '2', 'Nasir Ali', 'Painter', 18000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2208290012', '', '1', 'upload_files/candidate_tracker/8416201141_NaseebAliResume.pdf', NULL, '1', '2022-08-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '9 Months To Complete The Graduation Looking For Internship', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-29 01:45:18', 1, '2022-08-29 01:50:31', 0, NULL, 1),
(9990, 'Manjula Manju', '4', '9962869201', '9551527511', 'ammumanju48@gmail.com', '1994-01-03', 28, '2', '2', 'Om prakash', 'Electrion', 150000.00, 2, 13000.00, 16000.00, 'Chennai', 'Chennai', '2208290013', '1', '2', 'upload_files/candidate_tracker/56216027735_1661085170689_1655186803283_Resume (manju).docx', NULL, '1', '2022-08-29', 0, '', '3', '59', '2022-09-01', 180000.00, '', '7', '1970-01-01', '2', 'Selected for Banu Team - B2B role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-29 02:19:50', 60, '2022-08-30 04:27:07', 0, NULL, 1),
(9991, 'Dhanushkarna', '16', '9677093113', '', 'dhanushkarna2015@gmail.com', '1998-10-27', 23, '2', '2', 'Srinivasan', 'Daily wages', 120000.00, 1, 17.00, 25.00, 'Chennai', 'Chennai', '2208290014', '1', '2', 'upload_files/candidate_tracker/20426178382_DHANUSH-2022.pdf', NULL, '2', '2022-09-03', 30, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-08-29 05:10:20', 85, '2022-09-03 09:47:15', 0, NULL, 1),
(9992, 'madhumathi', '16', '9025000731', '', 'cmmadhumathi@gmail.com', '2000-03-17', 22, '2', '2', 'mariyappan', 'vendor', 30000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2208300001', '1', '1', 'upload_files/candidate_tracker/96864306282_madhumathi resume.doc', NULL, '1', '2022-08-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Preparing for CMA, Focus much on CMA positions only in next 3 months exams Will not handle our Pressure not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-08-30 09:36:13', 1, '2022-08-30 10:09:13', 0, NULL, 1),
(9993, 'Ashwin R', '16', '7338788717', '8939061692', 'ashwinraja1717@gmail.com', '2002-08-17', 20, '2', '2', 'Raja k', 'Sarry designer', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai, kolathur', '2208300002', '1', '1', 'upload_files/candidate_tracker/78506753215_ashwin resume pdf.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no basic ideas in MIS, will not handle our pressure not suitable ', '3', '2', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 09:54:08', 92, '2022-08-30 10:11:22', 0, NULL, 1),
(9994, 'manishbalajee m', '11', '8939101795', '', 'manish.balajee.ds@gmail.com', '1997-12-19', 24, '2', '2', 'mohan kumar', 'photographer', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2208300003', '2', '1', 'upload_files/candidate_tracker/25013201729_resume (2).pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresh for Recruiter role,Have Exp in Collections/Retentions tried for Renewals Calling but candidate is not interested, need time to give his confirmation on TxxampC', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 09:56:17', 1, '2022-08-30 09:58:37', 0, NULL, 1),
(9995, 'mohammed sharukh', '11', '8939110405', '', 'mohammedaakam111@gmail.com', '1998-05-11', 24, '2', '2', 'kamal basha', 'not working', 1000.00, 4, 0.00, 12000.00, 'chennai', 'chennai', '2208300004', '2', '1', 'upload_files/candidate_tracker/5906334115_MOHAMMED SHARUKH 1.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has Non-Voice exp ..no idea about Recruiting...long distance too...no communication', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 10:00:59', 1, '2022-08-30 10:02:44', 0, NULL, 1),
(9996, 'Aishwarya M', '23', '7449119580', '9710873758', 'aishwaryaofcl@gmail.com', '2000-09-22', 21, '2', '2', 'Mahendran M', 'Self Employee - Metal Moulding', 100000.00, 1, 0.00, 250000.00, 'Porur, Chennai', 'Chennai', '2208300005', '1', '1', 'upload_files/candidate_tracker/52302585600_M Aishwarya.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Stipend Exp is more, Just started learning JS,Preferred to work in Java Profile Will not sustain she may get reference ,sustainability doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 10:05:06', 85, '2022-08-30 10:13:11', 0, NULL, 1),
(9997, 'Mathubalan a', '23', '9087569167', '', 'mathubalanayyasamy@gmail.com', '2000-09-15', 21, '2', '2', 'Ayyasamy T', 'Former', 8000.00, 2, 0.00, 15000.00, 'Velluer Siruvarai, Manamelkudi TK, Pudukkottai DT', 'Paranoor, Mahendra Nova,C1 Block,Flat no 203', '2208300006', '1', '1', 'upload_files/candidate_tracker/19914186253_MATHU RESUME.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'from chengalpattu....not ready to relocate.. no basic skills in ui/ux', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-08-30 10:28:34', 1, '2022-08-30 10:49:58', 0, NULL, 1),
(9998, 'Vishwa.c', '6', '9094868973', '9962588011', 'vishwac2405@gmail.com', '2001-05-24', 21, '2', '2', 'Chandran.s', 'driver', 12000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2208300007', '1', '1', 'upload_files/candidate_tracker/63082965345_vishwa.c resume-converted.pdf', NULL, '1', '2022-08-30', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher can be trained no bike no laptop Sustainability doubts Need to check later', '5', '1', '', '1', '1', '', '2', '2022-09-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 10:28:44', 60, '2022-08-30 07:07:52', 0, NULL, 1),
(9999, 'Vishwa s', '6', '9080931062', '9176946755', 'vishea2442@gmail.com', '2002-04-24', 20, '2', '2', 'Saminathan k', 'Colie', 120000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2208300008', '1', '1', 'upload_files/candidate_tracker/32577592390_RESUME.pdf', NULL, '1', '2022-08-30', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher ,5050 profile have 1 month exp in Data Entry, Kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 10:28:45', 60, '2022-08-30 07:08:04', 0, NULL, 1),
(10000, 'Agnel kennadi.A', '26', '9994505141', '', 'Kennadi1998@gmail.com', '1998-05-21', 24, '2', '2', 'Anthony samy', 'Businessman', 30000.00, 1, 0.00, 18000.00, '108,voc street nagar,tirukovilur.', '1st cross street,bhuvaneshwari nagar,velachery', '2208300009', '1', '1', 'upload_files/candidate_tracker/45945460251_Kennady-IT-26.06.2022.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no communication ..prefer to talk in tamil.. no idea about mIS .. will not suit for our process', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 10:43:00', 85, '2022-08-30 10:50:03', 0, NULL, 1),
(10001, 'SABEEK AHAMED N', '23', '9788883209', '', 'sabeekahamed21@gmail.com', '2000-11-17', 21, '2', '2', 'M.NANNAPPA', 'Abroad', 250000.00, 0, 0.00, 14000.00, 'Pattukottai', 'Mannadi,Chennai -600001', '2208300010', '1', '1', 'upload_files/candidate_tracker/63575498471_SABEEK AHAMED2000.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '3m of intern exp .. not much good in ui/ux.... will not sustain ..', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 11:10:51', 92, '2022-08-30 12:52:21', 0, NULL, 1),
(10002, 'Vallarasu', '4', '8344892728', '9597263580', 'pollardvallarasu3@gmail.com', '1999-11-12', 22, '3', '2', 'Vasanthi', 'No', 1000.00, 2, 0.00, 13000.00, '111,ponnumsamy Street,karungal Palayam, erode.3', '111,Ponnumsamy Street,Karungal Palayam, Erode.3', '2208300011', '', '1', 'upload_files/candidate_tracker/54853349668_0_VALLARASU .pdf', NULL, '1', '2022-08-30', 0, '', '5', '13', NULL, 0.00, '', '0', NULL, '2', 'not suitable for telesales', '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 11:12:10', 1, '2022-08-30 11:20:38', 0, NULL, 1),
(10003, 'Arulmani.B', '6', '7604975234', '9655182379', 'arulmanibala40@gmail.com', '2001-06-21', 21, '1', '2', 'Balachandran.p', 'Telecaller', 7000.00, 1, 13500.00, 15500.00, 'West kk nagar', 'West kk nagar', '2208300012', '', '2', 'upload_files/candidate_tracker/92966465543_amcv.pdf', NULL, '1', '2022-08-30', 15, 'P3157', '3', '59', '2022-09-05', 192000.00, '', NULL, '2023-11-25', '2', 'Selected for Syed Team - Staff Role', '5', '2', '1', '1', '1', '1', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-30 11:14:36', 60, '2022-09-03 03:49:05', 0, NULL, 1),
(10004, 'gavaskar', '23', '8668084720', '', 'gavashabish953@gmail.com', '1997-06-18', 25, '2', '2', 'ragupathi', 'farmer', 10000.00, 1, 0.00, 250000.00, 'thiruvarur', 'chennai', '2208300013', '1', '1', 'upload_files/candidate_tracker/33011976409_gavash.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has some Knowledge in html, and CSS. moved to sNR. but he left middle of the interview.', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-08-30 11:36:02', 1, '2022-08-30 12:00:12', 0, NULL, 1),
(10005, '', '0', '8344892738', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2208300014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-08-30 11:39:05', 0, NULL, 0, NULL, 1),
(10006, 'Manikandan A', '23', '9003993474', '', 'amanikandan141@gmail.com', '1999-05-12', 23, '3', '2', 'Annadurai M', 'Former', 10000.00, 1, 0.00, 17000.00, '1/81A, veppur, Selliyampalaiyam, Cuddalore 606304', 'Chennai', '2208300015', '', '1', 'upload_files/candidate_tracker/90422855380_Resume .pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no idea about ui/ux ... will not suit for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 11:39:53', 1, '2022-08-30 11:47:50', 0, NULL, 1),
(10007, 'Aarthi.R', '4', '8438305269', '', 'aarthiravikumar1999@gmail.com', '1999-10-22', 22, '3', '2', 'Ravikumar. K', 'Farmer', 10000.00, 2, 10700.00, 10000.00, 'Thanjavur', 'Thanjavur', '2208300016', '', '2', 'upload_files/candidate_tracker/90138969495_Old resume.pdf', NULL, '1', '2022-08-30', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'unfit', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 11:46:15', 1, '2022-08-30 12:04:10', 0, NULL, 1),
(10008, 'Vijayakumar', '23', '7010290487', '', 'vijayakumar26121999@gmail.com', '1999-12-26', 22, '2', '2', 'Thiruvengadam', 'Former', 20000.00, 1, 0.00, 15000.00, 'Thiruvannamalai', 'Chennai', '2208300017', '1', '1', 'upload_files/candidate_tracker/55283105808_vijayakumar-resume (2) (2).pdf', NULL, '1', '2022-08-30', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher have basic skills knowledge in backend also but prefer to work in Front End Can give a try kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '2022-09-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 12:08:41', 92, '2022-08-30 12:28:02', 0, NULL, 1),
(10009, 'Ajithkumar', '23', '7845274520', '', 'Ahithudhaya9650@gmail.com', '2000-06-02', 22, '2', '2', 'Udhayakumar', 'Former', 15000.00, 1, 0.00, 15000.00, 'Kovilpuraiyur', 'Ambattur', '2208300018', '1', '1', 'upload_files/candidate_tracker/2890402006_ajith18.docx', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Distance Need to see,No basic ideas in the skills not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 12:11:35', 92, '2022-08-30 12:27:40', 0, NULL, 1),
(10010, 'Chandru D', '23', '9150175181', '', 'chandru44443@gmail.com', '2001-05-16', 21, '2', '2', 'Dhamodaran', 'Former', 15000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2208300019', '1', '1', 'upload_files/candidate_tracker/55194299589_Chandru_D.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,have basic exp in Skills need to be trained a lot,2nd round reject by Kavya', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 12:11:38', 92, '2022-08-30 12:27:05', 0, NULL, 1),
(10011, 'Magna Yadlapalli', '16', '9952905762', '', 'magnamaggi9626@gmail.com', '1999-07-13', 23, '2', '1', 'Niranjan G', 'Data Entry Operator', 15000.00, 1, 0.00, 30000.00, 'No 5/73, Nethaji Nagar, 4 th street, Thirumul', 'No 5/73, Nethaji Nagar, 4 Th Street, Thirumul', '2208300020', '1', '1', 'upload_files/candidate_tracker/25924410428_ResumeMagna.pdf', NULL, '1', '2022-08-30', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'fresher sal expt too high long distance too..', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 12:37:06', 92, '2022-08-30 12:52:46', 0, NULL, 1),
(10012, 'Ankit Panwar', '23', '6397046528', '', 'ankitpanwar0707@gmail.com', '1998-07-07', 24, '2', '2', 'Mrs. Kavita panwar', 'No', 50000.00, 2, 200000.00, 350000.00, 'Chennai', 'Chennai', '2208300021', '1', '2', 'upload_files/candidate_tracker/85758257905_ankit-resume-07.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Open with TxxampC,No local language will not suits in our work environment Salary exp is high,not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 01:10:29', 92, '2022-08-30 01:29:37', 0, NULL, 1),
(10013, 'Murugesh Raj M S', '23', '9500025609', '', 'murugeshrajms@gmail.com', '2000-03-27', 22, '2', '2', 'Jayalakshmi', 'Teacher', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2208300022', '1', '1', 'upload_files/candidate_tracker/64626045822_M1 Resume.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Seems not much active,no basic JS skills,will not run in long not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 02:55:22', 92, '2022-08-30 03:17:50', 0, NULL, 1),
(10014, 'Sharmila', '23', '9884954247', '', 'Sharmila12kavi@gmail.com', '2002-10-27', 19, '2', '2', 'ARUMUGAM G', 'Building contractor', 12000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2208300023', '1', '1', 'upload_files/candidate_tracker/74229175992_CV_2022081910285687.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'yet to complete her graduation not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 02:57:12', 92, '2022-08-30 03:17:33', 0, NULL, 1),
(10015, 'keerthana arul', '22', '7418181442', '', 'keerthanaarul1807@gmail.com', '2000-07-18', 22, '2', '2', 'mala', 'tailor', 250000.00, 2, 0.00, 15000.00, 'kachipuram', 'Chennai', '2208300024', '1', '1', 'upload_files/candidate_tracker/31703646996_KEERTHANA_ ARUL.pdf', NULL, '1', '2022-08-30', 0, '', '4', '69', NULL, 0.00, '', '0', NULL, '2', 'Fresher have Designing Skills Can be trained kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1012', '0', NULL, NULL, NULL, 1, '2022-08-30 02:59:22', 1, '2022-08-30 03:03:45', 0, NULL, 1),
(10016, 'VISHNU PRIYA R', '23', '8122522481', '9962359246', 'rvishnupriyar99@gmail.com', '1999-06-12', 23, '2', '2', 'V RAVI', 'ENGINEER', 50000.00, 1, 0.00, 30000.00, 'MaraimalaiNagar', 'MaraimalaiNagar', '2208300025', '1', '1', 'upload_files/candidate_tracker/21931773499_VISH-resume.pdf', NULL, '1', '2022-08-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance(Maraimalainagar) No basic ideas in Javascript looking for Bank openings Not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1012', '', NULL, NULL, NULL, 1, '2022-08-30 03:09:56', 92, '2022-08-30 03:18:39', 0, NULL, 1),
(10017, 'Gowtham', '14', '9500604801', '9043494473', 'gowtham950060@gmail.com', '2000-03-16', 22, '3', '2', 'Mayil', 'Flutter', 10000.00, 2, 0.00, 10000.00, 'Tirupattur', 'Tirupur', '2208300026', '', '1', 'upload_files/candidate_tracker/56138492768_GOWTHAM-V.doc', NULL, '3', '2022-08-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-08-30 03:31:56', 1, '2022-08-30 03:49:57', 0, NULL, 1),
(10018, 'bala', '6', '8939467959', '', 'subramaniyanbala176@gmail.com', '1998-05-25', 24, '2', '2', 'chandrasekar', 'sequence', 15000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2208310001', '2', '2', 'upload_files/candidate_tracker/31005272018_bala resume.pdf', NULL, '1', '2022-09-01', 0, '', '3', '59', '2022-09-06', 199000.00, '', '2', '1970-01-01', '2', 'Selected for Babu Team - Staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-08-31 10:07:28', 60, '2022-09-02 04:48:06', 0, NULL, 1),
(10019, 'Suresh', '31', '7358631600', '7299625740', 'sureshravi369369@gmail.com', '1999-06-03', 23, '2', '2', 'Suresh', 'Kuli', 200000.00, 2, 0.00, 15000.00, 'Medavakkam', 'Medavakkam', '2209010001', '1', '1', 'upload_files/candidate_tracker/54232472239_front-End developer suresh.pdf', NULL, '1', '2022-09-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher 36kms up and down not open for TxxampC not much good in skills not suitable salary exp is high', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-01 09:48:06', 85, '2022-09-01 10:09:43', 0, NULL, 1),
(10020, 'uvarani k', '4', '9600713755', '', 'yuvaranikannan64@gmail.com', '1999-05-31', 23, '2', '2', 'kannan k', 'nil', 15000.00, 1, 0.00, 10000.00, 'thirukovilur', 'thirukovilur', '2209010002', '2', '1', 'upload_files/candidate_tracker/57262710126_CV_2022082417363872.pdf', NULL, '2', '2022-09-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'From villupuram .no idea about telecalling, not ok with sales..', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 10:49:48', 1, '2022-09-01 10:53:40', 0, NULL, 1),
(10021, 'pavithra v', '4', '8807639273', '', 'pavithra27061999@gmail.com', '1999-06-27', 23, '2', '2', 'veeramani b', 'driver', 13000.00, 1, 0.00, 10000.00, 'mugaiyur', 'mugaiyur', '2209010003', '2', '1', 'upload_files/candidate_tracker/70005842877_PAVITHRA RESUME.pdf', NULL, '1', '2022-09-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'from villupuram .. average in Convincing skills... will not sustain in our process', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 10:55:16', 1, '2022-09-01 12:42:28', 0, NULL, 1),
(10022, 'Sneha.S', '11', '8825847260', '7339504827', 'iamsneha1812@gmail.com', '2000-12-18', 21, '2', '2', 'Selva Kumar.R', 'Business Man', 20000.00, 2, 15000.00, 15000.00, 'No.3,Vallal Pari Nagar 9th St,Pallikaranai, Ch-100', 'No.3, Vallal Pari Nagar 9th St,Pallikaranai,Ch-100', '2209010004', '1', '2', 'upload_files/candidate_tracker/47021495521_Sneha Updated Resume.pdf', NULL, '1', '2022-09-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have 3 months exp in Recruitment,no proper reasons for relieving,not open with TxxampC will not sustain not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-01 11:17:20', 85, '2022-09-01 11:39:30', 0, NULL, 1),
(10023, 'Gowtham kannan .R', '2', '8344334848', '', 'gauthamk12111995@gmail.com', '1995-11-12', 26, '2', '2', 'Ravi.S', 'Farmer', 25000.00, 1, 0.00, 18000.00, 'Theni', 'Porur', '2209010005', '1', '1', 'upload_files/candidate_tracker/24164278621_Gowtham1_Resume.pdf', NULL, '1', '2022-09-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT,Career Gap Not much good in skills,not open with TxxampC Will not sustain for a long', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-01 11:36:51', 1, '2022-09-01 11:42:25', 0, NULL, 1),
(10024, 'Jaswanth', '31', '7397498525', '', 'Jaswanthtrg537@gmail.com', '2002-04-05', 20, '2', '2', 'Giri TR', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Ponneri', 'Thiruvallur', '2209010006', '1', '1', 'upload_files/candidate_tracker/21633194588_RESUMENEW.pdf', NULL, '1', '2022-09-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'From ponneri 2hrs travel not ready to shifting.. not much good in html xxampcss', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-01 12:31:47', 1, '2022-09-01 01:08:28', 0, NULL, 1),
(10025, 'Keerthana', '31', '6381411101', '', 'Keerthi180923@gmail.com', '2007-09-01', 15, '2', '2', 'Ragupathy', 'Fruit shop', 15000.00, 2, 0.00, 25000.00, 'Poonthanmalee', 'Poonthanmalee', '2209010007', '1', '1', 'upload_files/candidate_tracker/22758877021_keerthanaresume.pdf', NULL, '1', '2022-09-01', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1hr travel ...will not sustain in our role ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-01 12:32:09', 85, '2022-09-01 01:07:13', 0, NULL, 1),
(10026, 'Mir mohamed moin Abbas', '11', '7010033836', '7299179021', 'Mm7928@srmist.edu.in', '1999-07-05', 23, '2', '2', 'Mir Ali', 'Hr', 50000.00, 1, 0.00, 17000.00, 'Royapettah', 'Royapettah', '2209010008', '1', '1', 'upload_files/candidate_tracker/1644749020_ABBAS RESUME.pdf', NULL, '1', '2022-09-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good, have a plan to travel abroad for the studies,willnot sustain more than 7 months', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-01 12:32:25', 85, '2022-09-01 03:37:11', 0, NULL, 1),
(10027, 'Tamilarasi v', '4', '9360554452', '', 'Tamilvengadesan9360@gmail.com', '2000-07-15', 22, '2', '2', 'Vengadesan', 'Shop keeper', 15000.00, 1, 0.00, 10000.00, 'Thirukovilur', 'Chennai', '2209010009', '2', '1', 'upload_files/candidate_tracker/759755356_CV_2022082417363872.pdf', NULL, '1', '2022-09-01', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not suit for telecalling ... no convincing skill...', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 12:36:34', 1, '2022-09-01 12:41:07', 0, NULL, 1),
(10028, 'Prakash Raja S', '22', '7338952826', '9150939498', 'prakashrajasegaran082@gmail.com', '1998-04-09', 24, '1', '2', 'D. shantha Kumari', 'House wife', 30000.00, 2, 25000.00, 30000.00, 'Chennai', 'Chennai', '2209010010', '', '2', 'upload_files/candidate_tracker/38971859257_Prakash Raja Segaran - Resume - Copy.docx.pdf', NULL, '1', '2022-09-01', 0, 'JOBS', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Will come for a final round - Product Support,Can be trained ', '2', '1', '0', '1', '1', '0', '2', '2022-09-02', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 12:45:26', 1, '2022-09-01 12:52:22', 0, NULL, 1),
(10029, 'Azra Nausheen Khanam', '16', '9940611372', '', 'azrakhanam26@gmail.com', '1998-03-26', 24, '2', '2', 'Khaleel Ahmed Baig', 'Working', 40000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2209010011', '1', '2', 'upload_files/candidate_tracker/30728459730_1_Azra Resume(2).pdf', NULL, '1', '2022-09-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-01 12:45:31', 85, '2022-09-02 09:40:44', 0, NULL, 1),
(10030, '', '0', '9840366452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209010012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-01 01:30:15', 0, NULL, 0, NULL, 1),
(10031, 'RUPAN', '16', '9566084754', '', 'rupanm21111997@gmail.com', '1997-11-27', 24, '2', '1', 'Heera', 'House wife', 15000.00, 2, 11000.00, 18000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2209010013', '1', '2', 'upload_files/candidate_tracker/73899426033_Rupan M (CV) .pdf', NULL, '1', '2022-09-02', 1, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-01 04:19:43', 85, '2022-09-02 09:41:03', 0, NULL, 1),
(10032, 'THIRUMALAI S', '16', '9962692693', '', 'thirumalaithiru06@gmail.com', '1999-06-13', 23, '3', '2', 'Sivalingam s', 'Farmer', 100000.00, 2, 9000.00, 12000.00, 'Medavakkam', 'Chennai', '2209010014', '', '2', 'upload_files/candidate_tracker/7782013705_t cv.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Database Management No Communication not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-01 08:19:47', 1, '2022-09-07 12:18:06', 0, NULL, 1),
(10033, 'Sanjay Kumar', '6', '9361065707', '', 'Sureshsanjaykumar296@gmail.com', '2001-01-03', 21, '1', '2', 'Suresh.V', 'Tea shop', 20000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2209020001', '', '1', 'upload_files/candidate_tracker/52728080283_sanjay.pdf', NULL, '1', '2022-09-02', 0, 'P1351', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'rejected not fit for us', '5', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-02 09:35:52', 1, '2022-09-02 10:06:45', 0, NULL, 1),
(10034, 'Balaji k', '6', '9944013383', '9791219509', 'hardikbala3344@gmail.com', '1996-07-30', 26, '1', '2', 'Kaliyappan', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Paruvachi', 'Paruvachi', '2209020002', '', '1', 'upload_files/candidate_tracker/67465560058_BALAJI (1).docx', NULL, '1', '2022-09-02', 0, 'P1352', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'not suitable..', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-02 11:21:35', 1, '2022-09-02 11:26:49', 0, NULL, 1),
(10035, 'Nithish K', '4', '9344115194', '9566103028', 'nithishkanthan25032000@gmail.com', '2000-03-25', 22, '3', '2', 'Kanthan D', 'Driver', 25000.00, 1, 0.00, 12000.00, 'No.60/1,New street, Sirukarumbur, ranipet', 'G9 new police line(TNPHC),Pudupet', '2209020003', '', '1', 'upload_files/candidate_tracker/28393338669_NITHISH K .pdf', NULL, '1', '2022-09-02', 0, '', '3', '59', '2022-09-05', 126312.00, '', '3', '2022-10-17', '2', 'Selected for Elite - Arumbakkam - Consultant role Need to analyse in 7 days of training', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-02 02:52:00', 60, '2022-09-03 10:20:01', 0, NULL, 1),
(10036, 'Anitha Arokiamary I', '16', '8056131469', '9840382975', 'anithairudhayaraj2000@gmail', '2000-05-10', 22, '2', '2', 'Irudhayaraj M', 'Carpenter', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209020004', '1', '1', 'upload_files/candidate_tracker/50037707095_Anitha Resume2022.pdf', NULL, '1', '2022-09-03', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok,5050 on sustainability can be trained in the Renewals/MIS kindly check and let me know your inputs', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-02 03:13:10', 85, '2022-09-03 10:12:39', 0, NULL, 1),
(10037, 'SIVAPRASANTH. C', '6', '9578507914', '', 'Sivaprasanth5566@gmail.com', '2002-03-25', 20, '2', '2', 'Chandran L', 'Farmar', 10000.00, 0, 0.00, 15000.00, 'Sathiyamangalam', 'Sathiyamangalam', '2209020005', '1', '1', 'upload_files/candidate_tracker/31242479975_siva resume (1).docx', NULL, '1', '2022-09-03', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected for sustainibilty doubt', '5', '1', '', '4', '7', '', '2', '2022-09-07', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-02 03:29:24', 85, '2022-09-03 09:48:48', 0, NULL, 1),
(10038, 'Riyaz Ahamed', '22', '9080253629', '', 'riyazahamed_g@hotmail.com', '1982-10-19', 39, '2', '1', 'Ashrafunnisa Begum', 'Bpo', 30000.00, 1, 26000.00, 15000.00, '11, 1St st., Anjaneya nagar, Zamin Pallavaram', 'Chennai', '2209020006', '1', '2', 'upload_files/candidate_tracker/34993555889_Resume_Riyaz.docx', NULL, '1', '2022-09-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-02 03:32:29', 85, '2022-09-03 09:49:07', 0, NULL, 1),
(10039, 'K Tamilselvan', '6', '8248452216', '', 'limattamil2k@gmail.com', '2007-09-03', 0, '1', '2', 'P.krishnan', 'Retired printing press', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2209030001', '', '1', 'upload_files/candidate_tracker/75053727948_k.tamilselvan resume.docx', NULL, '1', '2022-09-03', 0, 'P1333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for us..', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-03 10:16:45', 60, '2022-09-03 01:43:17', 0, NULL, 1),
(10040, 'Pradeep m', '16', '9108273928', '', 'Pradeepmiskcon@gmail.com', '1991-06-29', 31, '2', '2', 'Mohan', 'Auto body builder', 10000.00, 1, 16000.00, 18000.00, 'Chennai', 'Chennai', '2209030002', '2', '2', 'upload_files/candidate_tracker/31610764870_Pradeep_resumee_15 (4).docx', NULL, '1', '2022-09-03', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for our domain can be trained should come for final round this Monday(03/Sep/2022)', '3', '2', '0', '1', '1', '0', '2', '2022-09-05', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-03 10:25:31', 1, '2022-09-03 10:27:36', 0, NULL, 1),
(10041, 'Sukumar R', '16', '7358409959', '7358664748', 'sugumaran2025@gmail.com', '1999-05-06', 23, '2', '2', 'Ramu S', 'Daily Labour', 18000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2209030003', '1', '2', 'upload_files/candidate_tracker/71824317855_Sukumar Resume.pdf.pdf', NULL, '1', '2022-09-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-03 10:33:23', 1, '2022-09-03 10:36:21', 0, NULL, 1),
(10042, 'Ajithkumar', '31', '8870585766', '9095528501', 'Ajithjr173@gmail.com', '1996-01-05', 26, '2', '2', 'Pandurangan', 'Father', 30000.00, 1, 0.00, 20000.00, 'Krishnagiri', 'Krishnagiri', '2209030004', '1', '1', 'upload_files/candidate_tracker/21835105641_pdf_converter_202209034325.pdf', NULL, '1', '2022-09-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'no basic skills not suitable long career gap will not sustain\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-03 10:35:38', 1, '2022-09-03 10:44:14', 0, NULL, 1),
(10043, 'Venkatesh P', '31', '7401682809', '', 'Venkyparamasivam18@gmail.com', '1999-06-21', 23, '2', '2', 'Paramasivam A', 'Salesman', 15000.00, 0, 0.00, 300000.00, 'Chennai', 'Chennai', '2209030005', '1', '1', 'upload_files/candidate_tracker/21163167403_Venkatesh.pdf', NULL, '1', '2022-09-03', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Good at html, CSS xxamp JS. Sustainability doubts.\nso.. SNR To kavya then 3rd round by tamilmani .. finally rejected by gokul.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-03 11:21:38', 85, '2022-09-09 03:08:34', 0, NULL, 1),
(10044, 'Babu', '16', '6304282588', '', 'jvbabu1998@gmail.com', '1998-04-18', 24, '2', '2', 'Vinayagam', 'Bussiness', 10000.00, 0, 0.00, 16000.00, 'Chithoor', 'Villivakkam', '2209030006', '1', '1', 'upload_files/candidate_tracker/9882509476_Babu. Pdf.pdf', NULL, '1', '2022-09-03', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not suit for our process .. no idea about mIS .. not open up', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-03 11:51:14', 1, '2022-09-03 12:47:33', 0, NULL, 1),
(10045, 'Rajagopal', '16', '9032537223', '', 'Skrajagopal2000@gmail.com', '2000-07-09', 22, '2', '2', 'Kumar', 'Cotton fabric', 20000.00, 3, 0.00, 15000.00, 'Chithoor', 'Villivakkam', '2209030007', '1', '1', 'upload_files/candidate_tracker/78833091496_rajagopal SK.doc', NULL, '1', '2022-09-03', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no communication, not open up. Career gap too', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-03 11:52:31', 1, '2022-09-03 12:37:34', 0, NULL, 1),
(10046, '', '0', '8344862728', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209030008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-03 01:07:14', 0, NULL, 0, NULL, 1),
(10047, 'JEEVA V', '4', '7373277021', '8838792282', 'v.jeeva.jana@gmail.com', '1999-11-30', 22, '3', '2', 'Venakatesh TR', 'DRIVER', 12000.00, 2, 0.00, 15000.00, 'Arakkonam', 'Ambattur', '2209030009', '', '1', 'upload_files/candidate_tracker/3672745710_RESUME NEW.pdf', NULL, '1', '2022-09-03', 0, '', '3', '59', '2022-09-12', 132000.00, '', '7', '1970-01-01', '2', 'selected for Arumbakkam - Consultant Role', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-03 02:25:57', 60, '2022-09-03 04:40:08', 0, NULL, 1),
(10048, 'Sheeja M', '22', '8854531976', '9176190046', 'Sheejasri65@gmail.com', '2000-11-22', 21, '2', '2', '-', '-', 150000.00, 2, 0.00, 15000.00, 'thiruvottiyur, Chennai', 'Thiruvottiyur, Chennai', '2209050001', '1', '1', 'upload_files/candidate_tracker/35161386034_Sheeja_Color Format – 03.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC also not comfort in timings not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 09:53:49', 85, '2022-09-05 10:14:24', 0, NULL, 1),
(10049, 'Jayaharini.P', '16', '8925756708', '8072190191', 'p.harinipanju2k@gmail.com', '2000-07-18', 22, '3', '2', 'Packrisamy.P', 'Chellammal\'s college(junior.asst)', 200000.00, 0, 0.00, 15000.00, 'Thiruninravur', 'Thiruninravur', '2209050002', '', '1', 'upload_files/candidate_tracker/96714078404_JayaHarini @ RESUME.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too Long Distance Fresher Will not sustain in our Roles', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-05 09:55:03', 1, '2022-09-05 10:16:13', 0, NULL, 1),
(10050, 'Praveen.s', '23', '6380137909', '9380044233', 'Pravin0899@gmail.com', '1999-08-22', 23, '2', '2', 'Shankar s', 'Bike machnic', 12000.00, 1, 0.00, 13000.00, 'Chennai-5', 'No 18 Krishnappa Street,triplicane,chennai-5', '2209050003', '1', '1', 'upload_files/candidate_tracker/35990471043_Praveen_s Resume.pdf', NULL, '1', '2022-09-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Can be trained need some time to give his confirmation', '2', '1', '', '1', '1', '', '2', '2022-09-07', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 09:56:32', 85, '2022-09-05 10:14:16', 0, NULL, 1),
(10051, 'A. Abdul Razzaq', '4', '8220728868', '6379951053', 'Abdulrazzaq98404@gmail.com', '2003-04-10', 19, '2', '2', 'A. Faritha bee', 'House wife', 11000.00, 1, 15000.00, 16000.00, '5b/17 sagar apartment, Anna street, Gandhinagar', '5b/17 Sagar Apartment, Anna Street, Gandhinagar', '2209050004', '1', '2', 'upload_files/candidate_tracker/87313084457_Abdul Razaq.pdf', NULL, '1', '2022-09-05', 0, '', '3', '59', '2022-09-09', 138948.00, '', '4', '2023-02-04', '2', 'Selected for Arumbakkam - Consultant Role', '1', '2', '1', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-05 10:06:39', 60, '2022-09-08 04:00:30', 0, NULL, 1),
(10052, 'hariharan pandian', '22', '8056079752', '', 'harimdc@outlook.com', '1991-01-03', 31, '2', '2', 'm.pandian', 'retd navy', 2.00, 1, 20000.00, 30000.00, 'chrompet', 'chrompet', '2209050005', '1', '2', 'upload_files/candidate_tracker/49634159292_Hariharan Pandian CV(Content Writing).pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Aged Had his higher studies in Abroad,also his salary Exp is high', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-05 10:23:34', 85, '2022-09-05 10:50:20', 0, NULL, 1),
(10053, 'Shankaran', '23', '6369213300', '', 'Shankaran1912@gmail.com', '2000-12-19', 21, '2', '2', 'Selvam', 'Carpenter', 10000.00, 1, 0.00, 25000.00, 'Chrompet', 'Chrompet', '2209050006', '1', '1', 'upload_files/candidate_tracker/85402579944_Shankaran Resume .pdf', NULL, '1', '2022-09-05', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Seems not much ok with TxxampC if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-09-08', '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 10:32:22', 1, '2022-09-05 10:54:23', 0, NULL, 1),
(10054, 'Ravikumaran Elango', '23', '9489574373', '', 'Kuttyravikumaran@gmail.com', '1996-05-20', 26, '2', '2', 'Elango', 'Driver', 20000.00, 1, 0.00, 20000.00, '3/17, konur(po),namakkal.637207', 'Plot No.929 TNHB colony, Velachery 2', '2209050007', '1', '1', 'upload_files/candidate_tracker/69415093205_ravikumaran elango.pdf', NULL, '1', '2022-09-05', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for UIUX Can be trained kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 10:33:18', 85, '2022-09-05 10:50:43', 0, NULL, 1),
(10055, 'M.Marieswari', '31', '6379709902', '9791735808', 'mariesrittu1123@gmail.com', '2001-12-11', 20, '2', '2', 'A Muniyasamy', 'Driver', 15000.00, 3, 0.00, 13000.00, 'Kovilpatti', 'Chengalpattu', '2209050008', '1', '1', 'upload_files/candidate_tracker/1997523739_Marieswari .pdf', NULL, '1', '2022-09-05', 0, '', '3', '59', '2022-09-12', 96000.00, '', '0', NULL, '2', 'Fresher Can be Trained have basic skills Final round interviewed by Gokul and selected', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 11:00:29', 1, '2022-09-05 11:25:52', 0, NULL, 1),
(10056, 'THULASI.P', '16', '9840627286', '9710813737', 'MAILATTHULASI@GMAIL.COM', '1999-10-23', 22, '2', '2', 'PERUMAL.G', 'Auto driver', 12000.00, 1, 13000.00, 16000.00, 'Ashok nagar', 'Ashok nagar', '2209050009', '1', '2', 'upload_files/candidate_tracker/30828245970_RESUME-.pdf 1.pdf', NULL, '1', '2022-09-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-05 11:15:47', 85, '2022-09-05 12:16:14', 0, NULL, 1),
(10057, 'Sriram.S', '21', '8056066126', '', 'Sriramsrinivasan1990@gmail.com', '1990-07-24', 32, '2', '1', 'Nithya.S', 'Housewife', 2.00, 1, 18.00, 25000.00, 'No 10 andal nagar 4th cross streets Adambakkam', 'Chenn', '2209050010', '1', '2', 'upload_files/candidate_tracker/49975645957_S.SRIRAM RESUME Admin.PDF', NULL, '1', '2022-09-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-09-05 11:17:58', 1, '2022-09-05 11:45:17', 0, NULL, 1),
(10058, 'Shalin G', '4', '8610199740', '9176117252', 'shalinshynath79@gmail.com', '1995-01-10', 27, '2', '2', 'Gunasekaran', 'Retired Chennai Port Trust', 25000.00, 2, 470000.00, 650000.00, '128/76/3C village street, sathuma nagar, ch -19', '128/76/3C Village Street, Sathuma Nagar, Ch -19', '2209050011', '1', '2', 'upload_files/candidate_tracker/4874910167_1660239821534_Resume.docx', NULL, '1', '2022-09-05', 35, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Working in Byjuxquots Salary Ex p is 6 LPA Not suitable for our Roles Will not sustain\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 11:18:16', 85, '2022-09-05 11:35:26', 0, NULL, 1),
(10059, 'S. Suganthan', '4', '9360721655', '9965419905', 'Suganthrashmika996691@gmail.com', '2002-05-10', 20, '4', '2', 'P. Senthil', 'Conductor', 13000.00, 1, 0.00, 12000.00, 'Anthiyur', 'Anthiyur', '2209050012', '', '1', 'upload_files/candidate_tracker/66883471566_pdf_converter_202209053136.pdf', NULL, '1', '2022-09-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-05 11:22:11', 1, '2022-09-05 12:14:19', 0, NULL, 1),
(10060, 'P.Kavitha', '6', '9384143626', '9445238921', 'kavithasathya2001@gmail.com', '2001-06-22', 21, '4', '2', 'T.Prakash Sathya', 'Daily Wager', 15000.00, 1, 0.00, 12000.00, '457, Vasantha nagar ,kaveri rs Road, Pallipalayum', '457, Vasantha Nagar ,Kaveri Rs Road, Pallipalayum', '2209050013', '', '1', 'upload_files/candidate_tracker/59274268855_Kavitha resume-compressed.pdf', NULL, '1', '2022-09-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-05 11:22:34', 85, '2022-09-06 02:50:24', 0, NULL, 1),
(10061, 'A.Bharani', '6', '7639340792', '9865181722', 'bharanianbarasu383@gmail.com', '2002-04-03', 20, '4', '2', 'N.Anbarasu', 'Daily Wager', 12000.00, 1, 0.00, 12000.00, '44/53,M.G.R.Nagar ,Veerappan Chatram (PO),Erode-04', '44/53,M.G.R.Nagar ,Veerappan Chatram (PO),Erode-04', '2209050014', '', '1', 'upload_files/candidate_tracker/37564758141_A.Bharani Resume.pdf', NULL, '1', '2022-09-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-05 11:22:54', 85, '2022-09-06 02:45:15', 0, NULL, 1),
(10062, 'Ashokraj S', '23', '9360351732', '9585406074', 'sashokraj4824157007@gmail.com', '2007-09-05', 0, '2', '2', 'Shanmugam', 'Farmer', 72000.00, 3, 15000.00, 16000.00, 'Ariyalur', 'Ariyalur', '2209050015', '1', '2', 'upload_files/candidate_tracker/5918950230_Ashokraj.s.pdf', NULL, '1', '2022-09-05', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas not suitable will not work it out for our Roles', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 11:32:02', 85, '2022-09-05 11:45:14', 0, NULL, 1),
(10063, 'balaji.R', '16', '9344545372', '7548823596', 'balajiuma2712@gmail.com', '2000-12-27', 21, '2', '2', 'Ramesh', 'Two wheeler mechanical', 10000.00, 1, 0.00, 20000.00, '28 Selva vinayagar koil St, Kilvenpakkam ranipet', '28 Selva vinayagar koil St kilvenpakkam ranipet', '2209050016', '1', '1', 'upload_files/candidate_tracker/11986398340_RESUMEbalaji.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills not suitable for our roles will not sustain\n', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-05 11:40:20', 85, '2022-09-05 12:16:44', 0, NULL, 1),
(10064, 'p Ashok', '6', '9698311530', '6380228991', 'anashok31@gmail.com', '1999-10-26', 22, '1', '2', 'V Periyasami', 'formar', 60000.00, 0, 13.50, 18000.00, '1/131 Kallur,west street,Cuddalore dt -606108', 'Nandanam,chamiers road -35', '2209050017', '', '2', 'upload_files/candidate_tracker/66651912545_My Resume..docx', NULL, '1', '2022-09-05', 0, 'CA 156', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has one yr of exp in hathway bB sales... okay with process check and update your feedback', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-05 11:42:48', 97, '2022-09-05 05:32:03', 0, NULL, 1),
(10065, 'Roshan Kumar P', '23', '9087277628', '', 'rkpraveen1276@gmail.com', '2000-05-17', 22, '2', '2', 'Prem Kumar P', 'General manager', 700000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2209050018', '1', '1', 'upload_files/candidate_tracker/50078322902_Resume.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher in UIUX Salary exp is Very high also not much comfort in TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 12:15:48', 1, '2022-09-05 12:22:22', 0, NULL, 1),
(10066, 'R.Divya', '20', '9360249506', '9710793416', 'Jannuelis1209@gmail.com', '2002-03-25', 20, '2', '2', 'R.Kokila', 'Tailer', 13000.00, 0, 0.00, 13000.00, 'Thiruvottiyur', 'Thiruvottiyur', '2209050019', '1', '1', 'upload_files/candidate_tracker/17693514859_DIVYA RESUME FINAL PDF.pdf', NULL, '1', '2022-09-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 12:42:16', 1, '2022-09-05 01:01:41', 0, NULL, 1),
(10067, 'r.elizabeth', '20', '8939503286', '9360249506', 'jannuelis1209@gmail.com', '2002-01-08', 20, '2', '2', 'S.Raj kumar', 'Coolie', 20000.00, 2, 0.00, 16000.00, 'Tondiarpet', 'Tondiarpet', '2209050020', '1', '1', 'upload_files/candidate_tracker/96564228695_Elis resume 2.pdf', NULL, '1', '2022-09-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 12:45:37', 1, '2022-09-05 12:59:57', 0, NULL, 1),
(10068, 'Swetha aldrine', '5', '8428553222', '9940465587', 'swethaaldrine97@gmail.com', '1997-12-18', 24, '2', '2', 'Aldrine David', 'Purchase Manager', 40000.00, 1, 17500.00, 22000.00, 'Chennai', 'Chennai', '2209050021', '1', '2', 'upload_files/candidate_tracker/12846633110_updatedresume.pdf', NULL, '1', '2022-09-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok Fresh to our domain,5050 profilebut she was not interested much in the profile', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-05 01:02:17', 1, '2022-09-05 01:06:42', 0, NULL, 1),
(10069, 'S.Ruby', '6', '9944059967', '8754863229', 'rubinaruby6156@gmail.com', '2000-06-15', 22, '2', '1', 'A.sagayappan', 'Telecalling', 12000.00, 1, 10.00, 15000.00, 'Nadarmedu,jothi hospital back side', 'Pasur, kilambadi', '2209050022', '2', '2', 'upload_files/candidate_tracker/32852991505_IMG_20220116_123801_946.pdf', NULL, '1', '2022-09-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-05 03:57:45', 85, '2022-09-06 02:52:37', 0, NULL, 1),
(10070, '', '0', '8939200701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209050023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-05 04:57:55', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10071, 'RAJESWARI', '6', '8015139832', '', 'rajekulasekaran999@gmail.com', '1999-10-10', 22, '2', '1', 'W/o v. HARIKRISHNAN', 'Graphic designer', 40000.00, 1, 15000.00, 18000.00, 'Ramapuram Chennai', 'Ramapuram Chennai', '2209050024', '1', '2', 'upload_files/candidate_tracker/96260986557_Raji', NULL, '1', '2022-09-07', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile have 10 months Exp in Telecalling Salary Exp is somewhat high kindly check and let me know your interest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-05 05:10:56', 85, '2022-09-07 01:07:40', 0, NULL, 1),
(10072, 'r saran', '31', '8248629031', '', 'ramusaran99999@gmail.com', '1998-10-30', 23, '2', '2', 'm ramu', 'nil', 65000.00, 1, 0.00, 4.00, 'Chennai', 'Chennai', '2209060001', '1', '1', 'upload_files/candidate_tracker/17385807304_saran cv..pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Sal Exp is high Nt much comfort in TxxampC Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-06 10:04:47', 1, '2022-09-06 10:10:00', 0, NULL, 1),
(10073, 'iyyapan', '4', '8124582364', '', 'iyyappant205685@gmail.com', '1995-05-01', 27, '2', '2', 'vembuli', 'farmer', 10000.00, 5, 14000.00, 15000.00, 'chennai', 'chennai', '2209060002', '2', '2', 'upload_files/candidate_tracker/16684708645_CV_2022082417363872.pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Sales Calls and the customer Visit For CRM Role age and the Exp not getting mapped', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 10:09:57', 1, '2022-09-06 10:14:43', 0, NULL, 1),
(10074, 'Jothi Esakiammal', '23', '6383341173', '9489163437', 'jothij1998@gmail.com', '1998-06-27', 24, '2', '2', 'Jeya Durai', 'Daily wages', 20000.00, 3, 250000.00, 300000.00, 'Thenkasi', 'Chennai', '2209060003', '1', '2', 'upload_files/candidate_tracker/51281035540_JOTHI RESUME (1) (1).pdf', NULL, '1', '2022-09-06', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp for 10 months with 18K only HTML CSS non knowledge in JS Not suitable Salary exp is high\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-06 10:25:35', 1, '2022-09-06 10:59:15', 0, NULL, 1),
(10075, 'Nivetha', '2', '9677524954', '', 'Nivethasumathi1999@gmail.com', '1999-11-10', 22, '2', '2', 'Anbalagan', 'Farmer', 25000.00, 1, 0.00, 25000.00, 'Namakkal', 'Perumbakkam', '2209060004', '1', '1', 'upload_files/candidate_tracker/71767430112_A.Nivetha_Resume.pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills knowledge seems to be very slow not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-06 10:26:28', 1, '2022-09-06 11:23:42', 0, NULL, 1),
(10076, 'naresh kumar s', '4', '9345794173', '', 'nareshvasan579@gmail.com', '2001-11-21', 20, '2', '2', 'srinivasan', 'business', 20000.00, 1, 0.00, 10000.00, 'chennai', 'chennai', '2209060005', '2', '1', 'upload_files/candidate_tracker/56678560323_Praveen resume.pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 10:30:44', 1, '2022-09-06 10:33:06', 0, NULL, 1),
(10077, '', '0', '9566022277', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209060006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-06 10:35:16', 0, NULL, 0, NULL, 1),
(10078, 'R saravanan Rajendheran', '2', '6380707901', '9363190029', 'saravanan807901@gmail.com', '1999-05-30', 23, '3', '2', 'Rajendheran', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Cheyyar', 'Chennai', '2209060007', '', '1', 'upload_files/candidate_tracker/68204370394_SARAVANAN_RESUME_001__1_ (1).pdf', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for JAva Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:30:29', 1, '2022-09-06 11:38:23', 0, NULL, 1),
(10079, 'Divya. N', '16', '8122181335', '9940453976', 'divyaraj2899@gmail.com', '1999-07-28', 23, '2', '2', 'Nagaraj. V', 'Labour', 15000.00, 2, 14.50, 17000.00, 'Chennai', 'Chennai', '2209060008', '1', '2', 'upload_files/candidate_tracker/78343779645_Divya (1).docx', NULL, '1', '2022-09-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need time to give her confirmation,Have Exp in Renewal Calls but no English communication if she comes back let us try', '3', '1', '', '1', '1', '', '2', '2022-09-08', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-06 11:33:57', 85, '2022-09-06 12:17:58', 0, NULL, 1),
(10080, 'Sakthivel S', '13', '6374058281', '', 'sakthinaveen8489@gmail.com', '2001-02-23', 21, '3', '2', 'S. Latha', 'Former', 10000.00, 1, 0.00, 200000.00, 'Perambalur', 'Perambalur', '2209060009', '', '1', 'upload_files/candidate_tracker/90476727440_sakthi (1).docx', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:35:45', 1, '2022-09-06 11:50:14', 0, NULL, 1),
(10081, 'M.Ganesh kumar', '13', '9363291098', '9600556118', 'Ganeshkumarengg18@gmail.com', '2000-08-02', 22, '3', '2', 'Murugesan.G', 'Formar', 60000.00, 4, 0.00, 20000.00, 'Kumbakonam', 'Chennai', '2209060010', '', '1', 'upload_files/candidate_tracker/58542613440_Ganesh kumar1.docx', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:51:46', 1, '2022-09-06 12:12:27', 0, NULL, 1),
(10082, 'Lisy sophia. A', '4', '8637450608', '8637440608', 'Lisysophia.a@gamil.com', '1999-07-06', 23, '4', '2', 'Arockia Mary. A', 'Cooking', 15000.00, 1, 15000.00, 15000.00, '29,19,th street anna nager thanjavur', '29,19th street anna nager thanhavur', '2209060011', '', '2', 'upload_files/candidate_tracker/47219402790_resume for lisy-1.docx', NULL, '1', '2022-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:52:18', 1, '2022-09-06 11:59:25', 0, NULL, 1),
(10083, 'Janani.L', '4', '9342048807', '8098903483', 'Vasuki17janani@gmail.com', '2000-07-17', 22, '4', '2', 'Loganathan.A', 'building contract', 15000.00, 2, 15000.00, 20000.00, 'Thanjavur', 'thanjavur', '2209060012', '', '2', 'upload_files/candidate_tracker/75643749153_Janani-Resume.pdf', NULL, '1', '2022-09-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 11:52:40', 1, '2022-09-06 11:59:31', 0, NULL, 1),
(10084, 'R.suganya', '6', '9698205351', '', 'rachelpricilla123@gmail.com', '1987-11-23', 34, '1', '2', 'Rajendran', 'Ret.conducter', 15000.00, 2, 10000.00, 11000.00, 'Erode', 'Erode', '2209060013', '', '2', 'upload_files/candidate_tracker/12096447063_1662446613552_1662446600748_1662446590316_1662446569492_suganya msc resume..docx', NULL, '1', '2022-09-06', 0, 'P1333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for us', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 11:59:23', 85, '2022-09-06 02:43:28', 0, NULL, 1),
(10085, 'S .mugunthan', '4', '7558179688', '9962891401', 'mugunthanmac98@gmail.com', '1998-08-22', 24, '2', '2', 'A.Sivalingam', 'Experience in 1and half year customer supportive', 20000.00, 1, 15500.00, 20000.00, 'Chennaii Nungambakkam Tamilnadu', 'Chennai tamilnadu', '2209060014', '1', '2', 'upload_files/candidate_tracker/23830358641_mugunth.docx', NULL, '1', '2022-09-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic Skills,not suits for our Sales Got terminated in the last company not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-06 12:14:49', 85, '2022-09-06 12:35:54', 0, NULL, 1),
(10086, 'R. Mahalakshmi', '6', '6380793551', '', 'mahalakshmikabilesh@gmail.com', '1986-08-16', 0, '1', '1', 'Kalimuthu', 'Computer work', 25000.00, 2, 0.00, 12000.00, 'Erode', 'Erode', '2209060015', '', '1', 'upload_files/candidate_tracker/59313385702_1662447769656_1662447767717_1662447765582_maha resume.docx', NULL, '1', '2022-09-06', 0, 'P1333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 12:25:26', 85, '2022-09-06 02:37:59', 0, NULL, 1),
(10087, 'M. Vanitha', '6', '9688229471', '9750459237', 'vanirajikavi@gmail.com', '1989-06-08', 33, '1', '1', 'Nandha kumar. N', 'Quality controller', 20000.00, 2, 0.00, 12000.00, 'Erode', 'Erode', '2209060016', '', '1', 'upload_files/candidate_tracker/52418422423_1662446925912_1662446921707_vani[1].m(1) (1).doc', NULL, '1', '2022-09-06', 0, 'P333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 12:25:52', 85, '2022-09-06 02:33:54', 0, NULL, 1),
(10088, 'C.kirubasankari', '6', '9600986669', '9944207372', 'kirubasankari92it@gmail.com', '1992-07-17', 30, '1', '1', 'Panneerselvam', 'Farmer', 25000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2209060017', '', '1', 'upload_files/candidate_tracker/8012109197_resume1.docx', NULL, '1', '2022-09-06', 0, 'P333', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 12:26:21', 85, '2022-09-06 02:42:16', 0, NULL, 1),
(10089, 'Kishore', '31', '9344993287', '7395998119', 'kishoreyeager@gmail.com', '1999-11-16', 22, '2', '2', 'selvaraj', 'business', 30000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2209060018', '1', '1', 'upload_files/candidate_tracker/65885889055_Resume_Kishore_Format6.pdf', NULL, '1', '2022-09-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Profile Distance need to check sustainability doubts if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-09-08', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-06 12:31:05', 1, '2022-09-06 12:35:20', 0, NULL, 1),
(10090, 'Salman khan', '31', '9176781013', '9940175824', 'salmanaakhan19@gmail.com', '2000-12-19', 21, '3', '2', 'Shiri begum', 'Housewife', 20000.00, 1, 0.00, 20000.00, '33 laskar street alandur chennai', 'Chennai', '2209060019', '', '1', 'upload_files/candidate_tracker/56412385367_salman khan resume-4.docx', NULL, '1', '2022-09-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java Openings', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 12:42:05', 1, '2022-09-06 12:48:32', 0, NULL, 1),
(10091, 'Harisundar S', '5', '7667610063', '', 'harisundar218@gmail.com', '2000-05-14', 22, '3', '2', 'Saravanan s', 'Weavee', 15000.00, 1, 23050.00, 25000.00, 'W.pudupatti', 'Chennai', '2209060020', '', '2', 'upload_files/candidate_tracker/55799474212_237.PDF', NULL, '1', '2022-09-06', 0, '', '3', '59', '2023-02-01', 330000.00, '', '3', '2023-09-05', '1', 'Selected for Manikandan Team in Staff Role', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 12:47:39', 1, '2023-01-30 02:40:40', 0, NULL, 1),
(10092, 'Rethu', '23', '7338718119', '7401551599', 'rethu018@gmail.com', '2000-11-18', 21, '1', '2', 'Ravi kannan sudha', 'Fresher', 20000.00, 1, 0.00, 15000.00, 'West mambalam', 'West mambalam', '2209060021', '', '1', 'upload_files/candidate_tracker/94120368983_cv.2022.docx', NULL, '1', '2022-09-06', 0, 'M', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Will not sustain have skills knowledge in designningleft her previous due to salary Exp ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 02:20:45', 1, '2022-09-06 02:33:28', 0, NULL, 1),
(10093, 'Hari Haran M K', '14', '9345258156', '8220065580', 'itsmegarudan06@gmail.com', '1998-12-06', 23, '3', '2', 'Kubenduran', 'Textaill sales man', 10000.00, 1, 0.00, 15000.00, 'Madurai', 'West Saidapet', '2209060022', '', '1', 'upload_files/candidate_tracker/33952997883_Resume.pdf', NULL, '1', '2022-09-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to come back woht his confirmation Gokul Interviewed in the final Round', '2', '1', '0', '1', '1', '0', '2', '2022-09-07', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-06 02:21:02', 1, '2022-09-06 02:24:47', 0, NULL, 1),
(10094, 'ABDUL RAWOOF', '5', '9384656616', '', 'rawoof.abdul@rocketmail.com', '1988-04-20', 34, '1', '2', 'ABDUL HAKIM', 'Retd property tax collector', 30000.00, 4, 16000.00, 25000.00, '6/20 PENSIONERS LANE OLDWASHEARMANPET CHENNAI', 'CHENNAI', '2209060023', '', '2', 'upload_files/candidate_tracker/94856708511_Abdul resume.pdf', NULL, '1', '2022-09-06', 0, 'Vinoth', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not fit for our industry', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-06 02:52:39', 60, '2022-09-06 07:42:57', 0, NULL, 1),
(10095, '', '0', '7338952052', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209060024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-06 05:32:13', 0, NULL, 0, NULL, 1),
(10096, 'Vaideeswari.T', '23', '8939790542', '', 'vaideeyd2000@gmail.com', '2000-08-21', 22, '2', '2', 'K. Thirumalai', 'Courier service', 10000.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2209070001', '1', '1', 'upload_files/candidate_tracker/66862334915_VAIDEE-RESUME.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for UI UX Not much open with TxxampC,Waiting for the Inteview results with other 4 companies will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-07 10:35:54', 85, '2022-09-07 01:08:45', 0, NULL, 1),
(10097, 'Babu P', '5', '7358309592', '', 'israelmano011@gmail.com', '1993-02-11', 29, '3', '2', 'PENCILLAIH', 'cooli', 30000.00, 2, 26500.00, 32000.00, 'Chennai', 'Chennai', '2209070002', '', '2', 'upload_files/candidate_tracker/52864356305_pdf_20220907_090645_0000.pdf', NULL, '1', '2022-09-07', 20, '', '3', '59', '2022-09-26', 399000.00, '', '', '2022-10-05', '1', 'Selected for Manikandan Team - Staff Role Commitment will be give by the manager on the day of joining', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-07 10:46:00', 60, '2022-09-08 06:05:20', 0, NULL, 1),
(10098, 'Mahalakshmi', '31', '7904068846', '', 'Kmahalakshmi1713@gmail.com', '2002-07-13', 20, '3', '2', 'Krishna moorthy', 'Auto driver', 15000.00, 1, 0.00, 16000.00, 'T.Nagar, chennai', 'T.Nagar, chennai', '2209070003', '', '1', 'upload_files/candidate_tracker/22890297679_Mahalakshmi.pdf', NULL, '1', '2022-09-07', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 Can give a try for React Need time to confirm', '2', '2', '0', '1', '1', '0', '2', '2022-09-09', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 10:47:59', 1, '2022-09-07 11:24:24', 0, NULL, 1),
(10099, 'Sanjay S', '4', '8220432183', '9994541179', 'sanjaysasikumars@outlook.com', '2002-07-29', 20, '1', '2', 'Julie S', 'Tailor', 12000.00, 1, 0.00, 14000.00, 'Perundurai', 'Thoppupalayam', '2209070004', '', '1', 'upload_files/candidate_tracker/42868126359_sanjay.pdf', NULL, '1', '2022-09-07', 0, 'P1333', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 10:55:23', 1, '2022-09-07 11:01:05', 0, NULL, 1),
(10100, 'ANTONY SAMY', '13', '9384598217', '', 'antonysamy26387@gamil.com', '1997-04-16', 25, '3', '2', 'SAVARIMUTHU', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2209070005', '', '1', 'upload_files/candidate_tracker/70878117957_Antony AAA.pdf', NULL, '1', '2022-09-07', 0, '', '4', '63', NULL, 0.00, '', '0', NULL, '2', 'Fresher have a career Gap 5050 profile kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 11:03:52', 1, '2022-09-07 11:19:11', 0, NULL, 1),
(10101, 'NANISHAK', '31', '9949872701', '9032809265', 'Nanisha.doc@GMAIL.COM', '1998-03-28', 24, '3', '2', 'Govindharajulu', 'Agriculture work', 6000.00, 2, 0.00, 20000.00, 'Pannur village', 'Pannur church', '2209070006', '', '1', 'upload_files/candidate_tracker/22813301755_88878159300_1662532253309_1662532245373_Narmadha_Resume.docx', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Came Along with her sister Self Learning thinking a lot on TxxampC Need Time to check with her brother if she comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 11:46:36', 1, '2022-09-07 12:09:20', 0, NULL, 1),
(10102, 'Kabilan', '31', '7010588439', '9751212926', 'Kabilan25feb@gmail.com', '1999-02-25', 23, '3', '2', 'Pitchaimuthu', 'Business man', 30000.00, 1, 0.00, 40000.00, '151/A South Street, Uppidamangalam,karur', '151/A South Street, uppidamangalam, karur.', '2209070007', '', '1', 'upload_files/candidate_tracker/7143257376_Kabilan Pichaimuthu - CV.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills in JS Not suitable will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 11:49:49', 1, '2022-09-07 11:59:06', 0, NULL, 1),
(10103, 'V sethu pathy', '31', '6374948418', '', 'Sethupathy425@gmail.com', '1999-08-30', 23, '3', '2', 'M.venkatesan', 'Contractor', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2209070008', '', '1', 'upload_files/candidate_tracker/98873767321_RESUME-1.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills not open for a long term not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:00:05', 1, '2022-09-07 12:22:42', 0, NULL, 1),
(10104, 'Surya K', '31', '6382735583', '', 'Suryakamaraj20p1@gmail.com', '2001-07-07', 21, '3', '2', 'Kamaraj.P', 'Farmer', 20000.00, 1, 0.00, 25000.00, 'Salem', 'Chennai', '2209070009', '', '1', 'upload_files/candidate_tracker/6763511927_Resume_06_09_2022_05_31_42_pm.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Skills in JS only HTML CSS Will not sustain for a long in our roles', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:01:18', 1, '2022-09-07 12:09:48', 0, NULL, 1),
(10105, 'Selvin Prabhakaran.F', '31', '8110076863', '', 'selvinprabhakaran2@gmail.com', '2001-04-09', 21, '3', '2', 'Felixrajakumar.v', 'Conductor', 35000.00, 1, 0.00, 25000.00, 'Sivagangai', 'Chennai', '2209070010', '', '1', 'upload_files/candidate_tracker/86383706673_Resume_06_09_2022_06_16_51_PM.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher looking for Exp only will have some reference in the future will not run with us for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:04:14', 1, '2022-09-07 12:17:24', 0, NULL, 1),
(10106, 'nARMADHAG', '31', '9962890345', '9032809265', 'Gnarmadha1908@gmail.com', '2001-08-19', 21, '3', '2', 'Govindharajulu', 'Agriculture work', 6000.00, 2, 0.00, 15000.00, 'Pannur village', 'Chennai', '2209070011', '', '1', 'upload_files/candidate_tracker/54349107168_1662532253309_1662532245373_Narmadha_Resume.docx', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Came Along With Her Sister Self Learning Thinking A Lot On TxxampC Need Time To Check With Her Brother If She Comes Back Let Us Try', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:16:18', 1, '2022-09-07 12:19:32', 0, NULL, 1),
(10107, 'Ragul.D', '31', '7305290528', '7338708061', 'raguld1999@gmail.com', '1999-04-29', 23, '3', '2', 'Renugadevi D', 'Medical sales', 10000.00, 2, 0.00, 15000.00, 'Trichy', 'Chennai', '2209070012', '', '1', 'upload_files/candidate_tracker/6849415053_CV Ragul-2022.pdf.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'too long Distance friends are working in React to get exp looking for Job he has reference too will not run in a long not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 12:21:47', 1, '2022-09-07 12:26:37', 0, NULL, 1),
(10108, 'Sindhiya ellofar.D', '16', '9360392319', '9094467547', 'ellofarsindhiya@gmail.com', '2001-10-01', 20, '3', '2', 'Daniel than raj.S', 'Tailor', 20000.00, 1, 0.00, 13000.00, 'Ayanavaram', 'Ayanavaram', '2209070013', '', '1', 'upload_files/candidate_tracker/20893142918_SINDHIYAELLOFAR.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication for our MIS Role not interested in Sales', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 01:30:49', 1, '2022-09-07 01:42:39', 0, NULL, 1),
(10109, 'S.SANTHOSH KUMAR', '16', '9360578439', '8428840048', 'santhoshsk0511@gmail.com', '2001-11-05', 20, '3', '2', 'SRINIVASAN', 'PRINTER', 30000.00, 1, 0.00, 15000.00, 'Vyasarpady', 'Redhills', '2209070014', '', '1', 'upload_files/candidate_tracker/32865340618_SANTHOSH RESUME.pdf', NULL, '1', '2022-09-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication Average,Checked his writing skills not upto the mark,Will not sustain in our roles came along with his friend', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-07 01:31:49', 1, '2022-09-07 01:37:29', 0, NULL, 1),
(10110, 's.punitha nithi', '6', '8148262389', '9840108360', 'nithipunitha995@gmail.com', '2001-04-11', 21, '2', '2', 'A .salamon', 'Driver', 15000.00, 1, 0.00, 13000.00, 'Vysarpadi', 'Nanganallur', '2209070015', '1', '1', 'upload_files/candidate_tracker/87107952900_JayaHarini @ RESUME.pdf', NULL, '1', '2022-09-08', 0, '', '3', '59', '2022-09-12', 164208.00, '', '5', '1970-01-01', '2', 'Selected for Babu Team - consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-07 03:18:38', 60, '2022-09-09 11:14:44', 0, NULL, 1),
(10111, 'Antony Vijaya Adshai J', '13', '8056541991', '', 'vijayantony294@gmail.com', '2001-05-03', 21, '2', '2', 'Ani Seetan', 'Cashier', 25000.00, 0, 0.00, 200000.00, 'Kanyakumari', 'Chennai', '2209080001', '1', '1', 'upload_files/candidate_tracker/61318266011_Resume (1).pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not open for TxxampC ok with 1 yrs not more than ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 12:10:27', 85, '2022-09-08 12:42:55', 0, NULL, 1),
(10112, 'Dixson G', '13', '6382733692', '', 'dixsondixson42@gmail.com', '2001-01-29', 21, '2', '2', 'Kala p', 'Nil', 12000.00, 0, 0.00, 200000.00, 'Kanyakumari', 'Chennai', '2209080002', '1', '1', 'upload_files/candidate_tracker/63313540038_Resume_08_09_2022_10_01_55_am.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not open for TxxampC,No basic skills too will not sustain in our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 12:12:33', 85, '2022-09-08 12:42:25', 0, NULL, 1),
(10113, 'Ajay Prakash P', '11', '8939054018', '', 'ajayprakash532@gmail.com', '1999-08-09', 23, '2', '2', 'V Jaya Prakash', 'Accountant', 50000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2209080003', '1', '1', 'upload_files/candidate_tracker/15321366916_Ajay Prakash Resume (005).pdf', NULL, '1', '2022-09-08', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 07:39:09', 85, '2022-09-08 12:19:55', 0, NULL, 1),
(10114, 'S. Santhosh', '4', '7418445556', '9962416091', 'Ssanthosh4464@gmail.com', '1999-04-21', 23, '2', '2', 'Ruby. S', 'Home maker', 30000.00, 1, 19000.00, 23000.00, 'No 32, Devaki nagar 2st street, Ch - 600110', 'No 32, Devaki Nagar 2st Street, Ch - 600110', '2209080004', '1', '2', 'upload_files/candidate_tracker/88883242388_SANTHOSH RESUME.pdf', NULL, '2', '2022-09-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 07:51:21', 85, '2022-09-08 11:05:31', 0, NULL, 1),
(10115, 'Lawrancekirubakaran R', '17', '9080695035', '', 'lawrbl311@gmail.com', '1996-06-19', 27, '2', '2', 'Rethinasamy S', 'Agriculture', 15000.00, 2, 20000.00, 35000.00, 'Pudukottai', 'Saidapet', '2209080005', '1', '2', 'upload_files/candidate_tracker/36515528830_RESUME_1712673093301_LAWRANCE KIRUBAKARAN.pdf', NULL, '1', '2024-04-10', 15, '', '1', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2022-09-08 09:59:16', 112, '2024-04-10 05:08:52', 0, NULL, 1),
(10116, 'Lawrancekirubakaran R', '6', '9080605035', '', 'lawrbl311@gmail.com', '1996-06-19', 26, '1', '2', 'Rethinasamy', 'Former', 15000.00, 2, 15000.00, 18000.00, 'Puddukottai', 'Saidapet, chennai', '2209080006', '', '2', 'upload_files/candidate_tracker/30270899433_new resume.pdf', NULL, '1', '2022-09-08', 1, 'P1330', '3', '59', '2022-09-12', 230000.00, '', '5', '1970-01-01', '1', 'Selected for Babu Team inStaff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-08 10:24:29', 60, '2022-09-09 05:24:19', 0, NULL, 1),
(10117, 'S. Santhosh', '5', '7418445556', '9962416081', 'ssanthosh4464@gmail.com', '1999-04-21', 23, '2', '2', 'Saravana S', 'Auto driver', 32000.00, 1, 19000.00, 23000.00, 'No 32, Devaki nagar 2st street, Ch - 600110', 'No 32, Devaki Nagar 2st Street, Ch - 600110', '2209080007', '1', '2', 'upload_files/candidate_tracker/57518189373_SANTHOSH RESUME.pdf', NULL, '2', '2022-09-08', 0, '', '3', '59', '2022-09-14', 288000.00, '', '4', '2022-12-01', '1', 'Selected for Santhosh Team - Staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 10:29:36', 60, '2022-09-12 05:47:08', 0, NULL, 1),
(10118, 'Ananthakumar V', '7', '9786054921', '', '11ananth23@gmail.com', '2000-12-23', 21, '3', '2', 'Manikanda Ayyanar', 'Information Technology', 25000.00, 2, 10000.00, 16000.00, 'SIVAKASI', 'SAIDAPET', '2209080008', '', '2', 'upload_files/candidate_tracker/65707379199_ANANTHAKUMAR V.pdf', NULL, '1', '2022-09-08', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in CAMS,No Communication not suitable for our roles ', '7', '1', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 10:31:20', 1, '2022-09-08 10:49:55', 0, NULL, 1),
(10119, 'Abisha P', '16', '7558110691', '8270979233', 'abishacse147@gmail.com', '1998-07-10', 24, '2', '2', 'Paramasivam', 'Farmer', 7000.00, 1, 0.00, 17000.00, 'Thanjavur', 'Vadapalani', '2209080009', '1', '1', 'upload_files/candidate_tracker/89459739901_Abisha p.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication no basic knowledge in the skills not suitable for our roles', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-08 10:32:09', 1, '2022-09-08 11:02:44', 0, NULL, 1),
(10120, 'Samuel kushal N', '31', '8807692966', '9841147591', 'Samuelkushaln@gmai', '2002-04-19', 20, '3', '2', 'R Premalatha', 'Store Manager', 20000.00, 0, 0.00, 20000.00, 'No 16, Jayaraman Street, Chennai-600044', 'No 16,Jayaraman Street, Chennai-600044', '2209080010', '', '1', 'upload_files/candidate_tracker/31882805672_samuel kushal\'s - resume.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have Offers with Wipro Mindtree,since joining date is not yet confirmed looking for opportunities will not join and sustain with us\n', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 10:35:34', 1, '2022-09-08 10:51:21', 0, NULL, 1),
(10121, 'M. Thasleem Rahman', '31', '9500786917', '9629012786', 'Thasleem738@gmail.com', '1999-07-08', 23, '3', '2', 'Mohammad sadhik', 'Former', 12000.00, 2, 0.00, 30000.00, 'Nagapattinam', 'Chennai, velachery', '2209080011', '', '1', 'upload_files/candidate_tracker/98639905390_thasleem new resume.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Comfortable to work inJava Need time to confirm will not join and run in our roles for a long', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 10:35:37', 1, '2022-09-08 10:43:20', 0, NULL, 1),
(10122, 'A.Ramkalyan', '31', '9344348316', '', 'akularam606@gmail.com', '2000-05-26', 22, '3', '2', 'A.Rathinaiah', 'Coolie', 36000.00, 2, 0.00, 2.50, '27A, seevaram 3rd Street perungudi Chennai-96', 'Chennai', '2209080012', '', '1', 'upload_files/candidate_tracker/72268149953_ramKalyanResume_compressed (1).pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher just started learning JS EB in infosys need time to confirm on the TxxampC if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 10:44:09', 1, '2022-09-08 10:47:49', 0, NULL, 1),
(10123, 'Vijaya kumar k', '31', '6374103483', '', 'vijayakumar29be@gmail.com', '2001-04-29', 21, '2', '2', 'Kumaravelan t', 'Unoccupied', 10000.00, 1, 0.00, 22000.00, 'Thiruninravur', 'Thiruninravur', '2209080013', '', '1', 'upload_files/candidate_tracker/76638551624_Ganesh kumar1.docx', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance 64kms up and down also not much strong in the basic skills Feels 3yrs too long and comfort to sign max 1.5 yrs not suitable\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 11:21:27', 1, '2022-09-08 11:46:24', 0, NULL, 1),
(10124, 'Karthik s', '5', '8428271219', '9941562493', 'tinkosri@gmail.com', '1992-12-03', 29, '1', '2', 'Premavathi', 'Banking', 25000.00, 2, 0.00, 26000.00, 'Triplicane', 'Pallavaram', '2209080014', '', '2', 'upload_files/candidate_tracker/94328199508_KARTHI.RESUME.docx', NULL, '1', '2022-09-08', 0, 'P1258', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-08 11:29:06', 60, '2022-09-08 03:28:51', 0, NULL, 1),
(10125, 'Ajay sai', '23', '7550142217', '', 'theajaysai@gmail.com', '1999-09-22', 22, '3', '2', 'Amauthavalli', 'Pune', 17000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209080015', '', '1', 'upload_files/candidate_tracker/46917166741_Blue Lines Simple Resume-9.pdf', NULL, '1', '2022-09-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Given him the Task for UIUX Fresher can be trained once done with task will confirm ', '2', '1', '', '1', '1', '', '2', '2022-09-12', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-08 01:25:08', 60, '2022-09-08 02:58:35', 0, NULL, 1),
(10126, 'Dhivahar', '2', '8778261740', '', 'baskarandhivahar@gmailcom', '1996-01-15', 26, '4', '2', 'Baskaran', 'Auditor', 400000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Thanjavur', '2209080016', '', '1', 'upload_files/candidate_tracker/63548922346_CV 123_1661961304390_B.dhivahar.pdf', NULL, '1', '2022-09-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic skills very long careerGap Will not sustain and handle our pressure not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 02:39:21', 1, '2022-09-08 02:42:59', 0, NULL, 1),
(10127, 'Dhivahar', '2', '8778261640', '', 'baskarandhivahar@gmail.com', '1996-01-15', 26, '4', '2', 'Baskaran', 'Auditor', 400000.00, 1, 0.00, 300000.00, 'Thanjavur', 'Thanjavur', '2209080017', '', '1', 'upload_files/candidate_tracker/77914828335_CV 123_1661961304390_B.dhivahar.pdf', NULL, '1', '2022-09-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 02:44:44', 1, '2022-09-08 02:47:30', 0, NULL, 1),
(10128, '', '0', '6382532679', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209080018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-08 03:43:30', 0, NULL, 0, NULL, 1),
(10129, 'Akash', '31', '9363312176', '9944711288', 'Rosegold060402@gmail.com', '2002-09-14', 19, '2', '2', 'Senthil', 'Self employed', 10000.00, 2, 0.00, 10000.00, 'Pennadam, Cuddalore dt', 'Guindy,Chennai', '2209080019', '1', '1', 'upload_files/candidate_tracker/60440585352_1661260140421_Akash CV-1.pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Can be trained but her sister in react for 3 yrs Doubtful on the sustainability ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 04:17:59', 85, '2022-09-09 12:21:08', 0, NULL, 1),
(10130, 'U.C.SANDOSHKUMAAR', '11', '6382598558', '9940116635', 'sandoshkumaa@gmail.com', '2000-02-09', 22, '2', '2', 'Chandrakala', 'leather garments', 13000.00, 1, 0.00, 20000.00, 'Palanai andavar koil street ayanavaram chennai 23', 'No.35 kanaga durga nagar thiruverkadu', '2209080020', '1', '1', 'upload_files/candidate_tracker/28465497368_SANDOSH_CV.pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Sal Exp is high need to be trained having Dog Kennel and focusing much on the same will not sustain in our roles\n', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-08 06:26:43', 85, '2022-09-09 09:44:51', 0, NULL, 1),
(10131, 'Kiruthika', '16', '6381527017', '9342115401', 'Kiruvani05@gmail.com', '2000-04-27', 22, '3', '2', 'Padmanaban', 'TNEB', 300000.00, 1, 25000.00, 27000.00, 'Chennai', 'Chennai', '2209080021', '', '2', 'upload_files/candidate_tracker/53617699339_RESUME-Kiruthika.docx', NULL, '1', '2022-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-08 06:36:04', 1, '2022-09-08 06:57:55', 0, NULL, 1),
(10132, '', '0', '9791184966', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-09 09:29:29', 0, NULL, 0, NULL, 1),
(10133, 'Suryapraba R', '6', '8940410896', '', 'suryaravikumar309@gmail.com', '1998-05-09', 24, '1', '2', 'Ravikumar R', 'Passed away', 10000.00, 1, 13000.00, 17000.00, 'Sivagangai', 'Chennai', '2209090002', '', '2', 'upload_files/candidate_tracker/86049557995_SURYA PRABA RESUME (1) (1).docx', NULL, '1', '2022-09-09', 0, 'P1070', '3', '59', '2022-09-14', 174000.00, '', '3', '2022-10-03', '2', 'selected for Babu Team Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-09 11:09:25', 60, '2022-09-13 12:43:58', 0, NULL, 1),
(10134, 'S.Karthiyayini', '6', '8270578438', '', 'karthiyayinis80@gmail.com', '1999-11-22', 22, '1', '2', 'Senthil kumar', 'Driver', 15000.00, 1, 0.00, 13500.00, 'Sivagangai', 'Chennai', '2209090003', '', '1', 'upload_files/candidate_tracker/11153220930_karthiyayini resume.pdf', NULL, '1', '2022-09-09', 0, 'P1070', '3', '59', '2022-09-14', 156000.00, '', '4', '2022-09-26', '2', 'Selected for Kannan Team - consultant Role Need to analyse in the 7 days training', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-09 11:10:43', 60, '2022-09-13 06:41:45', 0, NULL, 1),
(10135, 'Logeshwari. J', '4', '9361461517', '7810029269', 'logeshwari1803@gmail.com', '2002-03-18', 20, '3', '2', 'R. Joseph', 'Milk man', 72000.00, 1, 0.00, 17000.00, 'Sevvapet', 'Sevvapet', '2209090004', '', '1', 'upload_files/candidate_tracker/66753625041_Logeshwari .pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Internal Reference GK Sir,Too Long Distance Fresher 5050 sustainability left without attending the 2nd round', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-09 11:28:50', 1, '2022-09-09 11:47:31', 0, NULL, 1),
(10136, 'Vigneshwaran T', '31', '7200657909', '8072628909', 'vigneshviky23700@gmail.com', '2000-07-23', 22, '2', '2', 'Thiyagarajan.N', 'RMC Ready mix Pvt Ltd (pump operator)', 26000.00, 1, 0.00, 300000.00, 'chromepet chennai', 'Chromepet Chennai', '2209090005', '1', '1', 'upload_files/candidate_tracker/41542136290_Vigneshwaran.T (Amtex).pdf', NULL, '1', '2022-09-09', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher 5050 Need to check his sustainability need time to check with his father Family need is there if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-09-12', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-09 12:04:57', 1, '2022-09-09 12:11:55', 0, NULL, 1),
(10137, 'logeswaran', '31', '9500351513', '', 'logeshwaranvadivel@gmail.com', '2000-09-09', 22, '2', '2', 'vadivelu', 'bussiness', 13000.00, 1, 0.00, 20000.00, 'vilupuram', 'mount', '2209090006', '1', '1', 'upload_files/candidate_tracker/82710392453_Logeshwaran-BE-2021.pdf', NULL, '1', '2022-09-09', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher 5050 Need Time to check with his family if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-09-12', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-09 12:05:17', 1, '2022-09-09 02:57:52', 0, NULL, 1),
(10138, 'gokul saran', '31', '7092220372', '', 'gokulsaran095@gmail.com', '2000-05-09', 22, '2', '2', 'vijayakumar', 'web developer', 30000.00, 2, 0.00, 300000.00, 'Pattabiram', 'pattabiram', '2209090007', '1', '1', 'upload_files/candidate_tracker/60989094542_NEW RESUME .pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic Skills Sustainability Doubts too long distance up and down 60kms will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-09 12:08:45', 85, '2022-09-09 12:22:01', 0, NULL, 1),
(10139, 'Thamarai chelvan S', '13', '8838617837', '', 'thamaraichelvan1996@gmail.com', '1996-06-29', 26, '2', '2', 'Selvaraj B', 'Building Contractor', 16000.00, 1, 21000.00, 30000.00, 'Namakkal', 'Namakkal', '2209090008', '1', '2', 'upload_files/candidate_tracker/34840506367_Thamarai..pdf', NULL, '1', '2022-09-09', 4, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'working in Java for 7 months good PAckage and looking for change only for Salary growth not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-09 12:47:07', 1, '2022-09-09 12:54:19', 0, NULL, 1),
(10140, 'Santhiya.K', '4', '6369752842', '', 'santhiyacsesanthiya0208@gmail.com', '2001-08-02', 21, '2', '2', 'Ponselvi', 'School nutrition assistant', 72000.00, 2, 0.00, 13000.00, 'Tirunelveli', 'Saithapet', '2209090009', '1', '1', 'upload_files/candidate_tracker/13197014834_Santhiya.K .pdf', NULL, '1', '2022-09-09', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', '5050 Profile Family need is there Can give a try kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-09-09 01:02:23', 1, '2022-09-09 01:07:17', 0, NULL, 1),
(10141, 'S.Bhuvaneswari', '4', '9150425778', '9751787037', 'bhuvanabhuvi2507@gmail.com', '2001-07-25', 21, '2', '2', 'S.Indhumathi', 'Labour', 8000.00, 2, 0.00, 13000.00, 'Tirunelveli', 'Saidapet', '2209090010', '1', '1', 'upload_files/candidate_tracker/82791093654_bhuvi.pdf', NULL, '1', '2022-09-09', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 Can be trained Family need is there kindly check and let me know your inputs', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-09-09 01:11:55', 1, '2022-09-09 01:15:43', 0, NULL, 1),
(10142, 'Rekha', '6', '9500932318', '', 'rekha03699@gmail.com', '1999-06-03', 23, '1', '2', 'Pichai', 'Non employee', 12000.00, 2, 13000.00, 15000.00, 'Kodabakkam', 'Kodabakkam', '2209090011', '', '2', 'upload_files/candidate_tracker/28907243117_resume-3.pdf', NULL, '1', '2022-09-09', 0, 'p1357', '3', '59', '2022-09-12', 174000.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-09 01:22:27', 60, '2022-09-09 05:42:35', 0, NULL, 1),
(10143, 'Rajeswari.B', '31', '7358360201', '9840795614', 'reshmasubramanian3783@gmail.com', '1998-11-16', 23, '3', '2', 'M.Balasubramanian', 'Administrative in NIIT', 100000.00, 2, 0.00, 25000.00, 'urappakkam Chennai', 'Urappakkam Chennai', '2209090012', '', '1', 'upload_files/candidate_tracker/6563714624_Resume_Rajeswari.pdf', NULL, '1', '2022-09-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much strong in the skills 30 days Notice Currently in Sutherland too long distance Not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-09 01:25:34', 1, '2022-09-09 01:52:25', 0, NULL, 1),
(10144, 'Yuvashree T', '31', '7358795230', '7397434790', 'Uvi.167casendra@gmail.com', '2000-06-16', 22, '1', '2', 'Thambuswamy v k', 'Fresher', 80000.00, 0, 0.00, 25000.00, 'Ayanavaram, Chennai', 'Ayanavaram, Chennai', '2209090013', '', '1', 'upload_files/candidate_tracker/95020524412_Yuvashree T Resume.pdf', NULL, '1', '2022-09-09', 0, 'Direct walk in', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Much Strong In The Skills 30 Days Notice Currently In Sutherland Salary Exp min 16 K being Fresher will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-09 01:26:52', 1, '2022-09-09 01:52:30', 0, NULL, 1),
(10145, 'sunil kumar', '4', '8072681164', '', 'mssunil217mk@gmail.com', '1997-07-21', 25, '2', '2', 'munusamy', 'farmer', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2209100001', '2', '1', 'upload_files/candidate_tracker/7608180743_resume-1.pdf', NULL, '1', '2022-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 09:46:26', 1, '2022-09-10 09:48:40', 0, NULL, 1),
(10146, 'amarnath', '4', '6382965275', '', 'amarnathmajim27@gmail.com', '1996-06-27', 26, '2', '2', 'manikandan', 'farmer', 15000.00, 2, 0.00, 10000.00, 'tenkasi', 'tenkasi', '2209100002', '2', '1', 'upload_files/candidate_tracker/70767486000_amarnath_eng_resume -2.pdf', NULL, '2', '2022-09-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 09:55:40', 1, '2022-09-10 09:57:20', 0, NULL, 1),
(10147, 'Priyadharshini', '23', '9566100325', '7010686302', 'priyadharshini64285@gmail.com', '2002-04-11', 20, '2', '2', 'Sankara muthu', 'LED Designer', 30000.00, 1, 0.00, 14000.00, 'Kanchipuram', 'Kodambakkam', '2209100003', '1', '1', 'upload_files/candidate_tracker/35929782626_Priyadharshini Resume 2022.pdf', NULL, '1', '2022-09-10', 0, '', '4', '69', NULL, 0.00, '', '0', NULL, '2', 'has more intersted in uiux .. average communication.. some knowledge in web designs.. check and update your feedback', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-10 10:24:49', 1, '2022-09-10 10:35:15', 0, NULL, 1),
(10148, '', '0', '9566108325', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-10 10:36:31', 0, NULL, 0, NULL, 1),
(10149, 'Mohammed ibunu', '23', '9360104073', '9551559624', 'sibunumohammed@gmail.com', '2001-04-10', 21, '3', '2', 'Sirajudeen', 'Diploma in computer science engineering', 40000.00, 2, 0.00, 20000.00, 'Mangadu', 'Mangadu', '2209100005', '', '1', 'upload_files/candidate_tracker/74426153401_Mohammed_ibunu_July_22 (2).pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has one yr of exp in react as a trainee because of sal changing his job sal expt too high .. sustainbility doubts..', '2', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 10:47:27', 1, '2022-09-10 10:58:51', 0, NULL, 1),
(10150, 'om Jain', '5', '9346199710', '', 'komaljaind2000@gmail.com', '2000-09-22', 21, '2', '2', 'dileep Kumar gadiya jain', 'business', 350000.00, 2, 0.00, 20000.00, 'chennai', 'chennai', '2209100006', '1', '1', 'upload_files/candidate_tracker/17144703790_Komal Jain Resume.pdf', NULL, '1', '2022-09-10', 0, '', '1', '97', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-10 10:48:03', 1, '2022-09-10 11:03:42', 0, NULL, 1),
(10151, 'Edwin Jerald', '31', '8248452504', '', 'edwinjeraldp@gmail.com', '1998-12-13', 23, '3', '2', 'S.Paulraj/ P.Dorathy Paul', 'Veggers/Clark', 50000.00, 1, 0.00, 20000.00, 'Avadi, indria nagar RTO', 'avadi, Indria Nagar RTO', '2209100007', '', '1', 'upload_files/candidate_tracker/54999845158_Edvin.pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no understanding.. sal expt too high .long distance too', '2', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 10:48:52', 1, '2022-09-10 11:04:20', 0, NULL, 1),
(10152, 'Surendhar.. B', '31', '9566172353', '', 'Surendharb72@gmail.com', '2001-11-28', 20, '3', '2', 'K. BABU', 'Ashok leyland', 25000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2209100008', '', '1', 'upload_files/candidate_tracker/21481180123_surendhar.B RESUME (1).docx', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has 1m of intern exp because of his training performance they rejected..', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:16:24', 1, '2022-09-10 11:21:11', 0, NULL, 1),
(10153, 'Arun', '23', '9087265815', '', 'aroon2k29@gmail.com', '2000-06-29', 22, '2', '2', 'Sellaiah', 'Unemployed', 20000.00, 1, 0.00, 16000.00, 'Velachery', 'Velachery', '2209100009', '1', '1', 'upload_files/candidate_tracker/45221679190_0_RESUME ARUN.pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'recently joined one org as ui/ux ..coz of sal releving ,, has freelancer exp in graphic des.. no idea about ui/ux.. not suit for our role', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-10 11:17:11', 1, '2022-09-10 11:50:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10154, 'Joice.A', '31', '9345989832', '9487942282', 'Joice221906464@gmail.com', '2002-07-16', 20, '3', '2', 'Amal Raj.A', 'Coolie', 15000.00, 2, 0.00, 15000.00, 'No.10,kattapomman street,maduravayil', 'No.10,Kattapomman Street,Maduravayil', '2209100010', '', '1', 'upload_files/candidate_tracker/72821514790_CV_2022-08-31-102907.pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'fresher .. has knowledege in html xxamp css .. recently got offer .. coz of sal .. not joined', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:18:17', 1, '2022-09-10 11:24:11', 0, NULL, 1),
(10155, 'Ajith v s', '31', '8778683246', '', 'ajithvs0072002@gmail.com', '2002-07-15', 20, '3', '2', 'Shanmuganathan V', 'Receptionist', 15000.00, 0, 0.00, 250000.00, 'Dindigul', 'Chennai', '2209100011', '', '1', 'upload_files/candidate_tracker/37949192376_Ajith resume-1.docx', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'beginer level in technical skills no idea about framewroks have to learn more..', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:27:29', 1, '2022-09-10 11:49:43', 0, NULL, 1),
(10156, 'Vignesh.D', '31', '9150103325', '', 'vigneshe19ca022@gmail.com', '2001-05-29', 21, '3', '2', 'Abinesh.D', 'Private company', 200000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2209100012', '', '1', 'upload_files/candidate_tracker/82907766539_newresume.docx', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no understanding ..beginer level in technical skills..will not suit for process ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:27:44', 1, '2022-09-10 11:34:46', 0, NULL, 1),
(10157, 'R.S. Vignesh', '11', '9551294290', '9710964414', 'vigneshvicky1807@gmail.com', '1996-07-18', 26, '3', '2', 'I Ravi', 'Sales executive', 60000.00, 1, 25000.00, 25000.00, 'Villivakkam', 'Villivakkam', '2209100013', '', '2', 'upload_files/candidate_tracker/25290620488_R.S Vignesh.pdf', NULL, '1', '2022-09-10', 1, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has 6m exp in us it recruiter..because of health xxamp commitments looking for job change ..sal expt high will not sustain with us long run', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 11:44:10', 1, '2022-09-10 11:48:24', 0, NULL, 1),
(10158, 'Ravi Kumar Yadav', '31', '7352746905', '', 'Ravi943117@gmail.com', '1999-02-05', 23, '3', '2', 'Rameshwar yadav', 'Small business man', 20000.00, 3, 0.00, 300000.00, 'Jharkhand', 'Chennai', '2209100014', '', '1', 'upload_files/candidate_tracker/82192917934_Ravi_Kumar_yadav.pdf', NULL, '1', '2022-09-10', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'long distance. his brother working 6yrs in react.. so he has some knowledege.. no understanding .. only know hindi average in tamil.. xxamp looking job in core role also', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-10 01:19:16', 1, '2022-09-10 01:23:01', 0, NULL, 1),
(10159, 'D.Pushpalatha', '8', '8682044402', '', 's.pushpalatha0407@gmail.com', '2000-07-04', 22, '2', '2', 'D.Srinivasulu', 'Private employee', 15000.00, 2, 13000.00, 18000.00, 'Royapuram', 'Royapuram', '2209100015', '1', '2', 'upload_files/candidate_tracker/57311837628_PUSHPALATHA RESUME.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication. Not ready to taking Calls Looking for MF,NISM certified but no basics knowledge about SIP/AMCxquots Backend roles only she preferred,Not ready totake renewal calls again', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-10 07:31:07', 85, '2022-09-12 10:19:02', 0, NULL, 1),
(10160, 'SHANMUGAPRIYA MURUGESAN', '22', '7550131030', '', 'shanmuggapriyamurugesan2001@gmail.com', '2001-11-15', 20, '2', '2', 'MURUGESAN', 'Provisional shop', 450000.00, 2, 0.00, 250000.00, 'Pallavaram', 'Pallavaram', '2209110001', '1', '1', 'upload_files/candidate_tracker/48922794179_RESUME.pdf', NULL, '1', '2022-09-12', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good, Open for Content Writing Need to analyse the contient writing skills kindly check and let me know your interest ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-11 10:47:36', 85, '2022-09-12 01:27:58', 0, NULL, 1),
(10161, 'praveen kumar k', '4', '6383459658', '', 'praveenvishal5222@gmail.com', '2002-02-05', 20, '2', '2', 'kuppan g', 'farmer', 8000.00, 1, 0.00, 12000.00, 'tindivanam', 'kodambakkam', '2209120001', '2', '1', 'upload_files/candidate_tracker/32120390416_praveenkumar k resume.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Pressure Free Profile, Fresher Sustainability Doubts a lot', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 07:20:23', 1, '2022-09-12 07:24:26', 0, NULL, 1),
(10162, 'naveen kumar k', '4', '9944722476', '', 'naveenyamuna555@gmail.com', '2002-01-16', 20, '2', '2', 'karuppasamy', 'farmer', 8000.00, 3, 0.00, 12000.00, 'chennai', 'guindy', '2209120002', '2', '1', 'upload_files/candidate_tracker/85435043602_naveenkumar.pdf', NULL, '1', '2022-09-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 07:26:21', 1, '2022-09-12 07:28:22', 0, NULL, 1),
(10163, 'saran m', '4', '9003984526', '', 'saran262002@gmail.com', '2002-06-02', 20, '2', '2', 'marimuthu', 'farmer', 8000.00, 5, 0.00, 12000.00, 'chennai', 'kodambakkam', '2209120003', '2', '1', 'upload_files/candidate_tracker/42370701089_saran resume.docx', NULL, '1', '2022-09-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped Candidate didnt respond the call got an update from Thinkfinity that the candidate was not interested in the profile\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-12 07:29:54', 60, '2022-09-14 06:37:27', 0, NULL, 1),
(10164, 'janakiraman s', '4', '9677314174', '', 'sjanakiraman613@gmail.com', '2002-02-10', 20, '2', '2', 'selvam', 'famer', 10000.00, 1, 0.00, 12000.00, 'thindivanam', 'porur', '2209120004', '2', '1', 'upload_files/candidate_tracker/81615489794_JANAKIRAMAN.pdf', NULL, '1', '2022-09-12', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Need to be trained a lot ,Much Focus in Accounts Profiles Need time to confirm on this profile', '1', '1', '0', '1', '1', '0', '2', '2022-09-14', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 07:32:38', 1, '2022-09-12 07:34:24', 0, NULL, 1),
(10165, 'vijayasarathy a', '5', '8760812875', '', 'analsarathy@gmail.com', '2000-05-11', 22, '2', '2', 'arumugam', 'farmer', 8000.00, 1, 0.00, 10000.00, 'chennai', 'mount road', '2209120005', '2', '1', 'upload_files/candidate_tracker/64234205653_SARATHY RESUME.docx', NULL, '1', '2022-09-12', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-12 07:35:32', 60, '2022-09-12 12:25:49', 0, NULL, 1),
(10166, 'devayani s', '4', '6382033179', '', 'devayanisiva1403@gmail.com', '2002-03-14', 20, '2', '2', 'sivaprakasam v', 'farmer', 10000.00, 2, 0.00, 10000.00, 'thindivanam', 'nallavur', '2209120006', '2', '1', 'upload_files/candidate_tracker/64449223483_S DEVAYANI RESUME.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable Need to open a lot ,will not handle our sales Pressure Very clear that if ssiter refer any IT openings will move for that', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 07:38:57', 1, '2022-09-12 07:40:45', 0, NULL, 1),
(10167, 'Hariharasudhan l', '6', '8754062472', '9487166247', 'hanithcharan@gmail.com', '1997-06-25', 25, '3', '1', 'Indhumathi', 'House wife', 10000.00, 1, 18000.00, 15000.00, 'Konganapuram', 'Konganapuram', '2209120007', '', '2', 'upload_files/candidate_tracker/70557783460_HARI CV 21.pdf', NULL, '1', '2022-09-12', 1, '', '3', '59', '2022-09-14', 199500.00, '', '3', '2022-11-30', '1', 'Selected for Suthagar Team Staff Role', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-12 10:55:45', 60, '2022-09-13 06:14:21', 0, NULL, 1),
(10168, 'thilagavathi', '4', '7695967662', '9600021953', 'thilaga812@gmail.com', '1996-12-08', 25, '2', '1', 'solaimuthu', 'flower decorator', 30000.00, 1, 0.00, 17000.00, 'chennai', 'chennai', '2209120008', '1', '2', 'upload_files/candidate_tracker/51301173618_Thilagavathi -updated resume.pdf', NULL, '1', '2022-09-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-12 10:56:16', 85, '2022-09-14 09:56:06', 0, NULL, 1),
(10169, 'Ponraja k', '13', '8695452701', '7904730419', 'prcode2903@gmail.com', '1996-03-29', 26, '3', '1', 'Arafath roja', 'Web developer', 50000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Chennai vadapalani', '2209120009', '', '1', 'upload_files/candidate_tracker/43300131608_new RESUME PON RAJA.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT Have Exp in Sales Not open for Sales again Looking for IT only Wife working in IT Need time to confirm on the TxxampC with 3yrs SA, if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 12:06:35', 1, '2022-09-12 12:10:17', 0, NULL, 1),
(10170, 'Ajith kumar G', '5', '9884669220', '9360715462', 'ak2517715@gmail.com', '1998-10-05', 23, '2', '2', 'Selvi', 'Homemakar', 15000.00, 3, 19000.00, 21000.00, '43 David puram kilpauk chennai 600010', '64/64 kuttiyappan street kilpauk chennai 10', '2209120010', '1', '2', 'upload_files/candidate_tracker/89013240377_AJITH RESUME.pdf', NULL, '2', '2022-09-12', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-12 12:07:50', 60, '2022-09-12 02:48:30', 0, NULL, 1),
(10171, 'Arthi', '28', '8668199597', '9751852454', 'Arthibas0@gmail.com', '1991-06-02', 31, '1', '1', 'Baskar', 'Production employee', 40000.00, 1, 15000.00, 20000.00, 'Flat No.69 ford union city nenmeli Chengalpattu', 'Chengalpattu', '2209120011', '', '2', 'upload_files/candidate_tracker/9315940944_Arthi _Resume JULY\'22.docx', NULL, '1', '2022-09-12', 0, '0000', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'From Chengalpet married looking for Admin Role Non Voice have exp in CSE,but not open for Sales Calls and not ready to handle the pressure', '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 01:20:37', 1, '2022-09-12 01:38:32', 0, NULL, 1),
(10172, 'PRAVEEN G', '4', '8098894234', '6385415435', 'praveenpraveen62950@gmail.com', '1998-12-21', 23, '2', '2', 'KAMALA', 'Home maker', 5000.00, 1, 0.00, 15000.00, 'Mayiladuthurai', 'Virugambbakam', '2209120012', '1', '1', 'upload_files/candidate_tracker/41320196000_Praveen G resume.pdf', NULL, '1', '2022-09-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot not speaking will not sustain in our roles', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-12 01:35:49', 85, '2022-09-12 01:51:43', 0, NULL, 1),
(10173, 'Salman Khan', '22', '9787973420', '', 'Salmananvar21@gmail.com', '1997-02-21', 25, '2', '2', 'malik basha', 'work', 100000.00, 3, 0.00, 2.20, 'Kallakurichi', 'chennai', '2209120013', '1', '1', 'upload_files/candidate_tracker/42569685401_Salmankhan Resume.pdf', NULL, '1', '2022-09-12', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Digital Marketing,have a career gap Seems 5050 for the profile Sustainability Doubts in the profile kindly check and let me know your interest', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-12 02:20:43', 85, '2022-09-12 02:35:19', 0, NULL, 1),
(10174, 'Pradeep', '4', '8124566780', '8220889495', 'Pk6835433@email.com', '2001-12-10', 20, '3', '2', 'Marimuthu', 'Auto driver', 80000.00, 1, 12500.00, 15000.00, 'Redhills', 'Vyasarpadi', '2209120014', '', '2', 'upload_files/candidate_tracker/40280866503_M.Pradeep CV.pdf', NULL, '1', '2022-09-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-12 10:29:44', 1, '2022-09-12 10:34:21', 0, NULL, 1),
(10175, 'Indira Devi', '4', '8189809887', '9840295085', 'yamini14122001@gmail.com', '2001-12-14', 20, '2', '2', 'Elumalai', 'Photographer', 150000.00, 1, 0.00, 15000.00, 'No 61/50 nehru street voc nagar anna nagar east', 'Anna nagar', '2209130001', '1', '1', 'upload_files/candidate_tracker/67500700400_Indira Resume.pdf', NULL, '1', '2022-09-13', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Fresher Communication is good Can be trained Kindly check and let me kbow your inputs for B2B', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-13 09:50:30', 1, '2022-09-13 10:01:05', 0, NULL, 1),
(10176, 'K. Suruthy', '5', '8754719563', '7373219138', 'suruthy496@gmail.com', '2000-04-08', 22, '2', '2', 'Kannadasan. A', 'Farmer', 400000.00, 2, 0.00, 150000.00, 'Mannagudi', 'Chormpet', '2209130002', '1', '1', 'upload_files/candidate_tracker/9258270572_SURUTHY.docx', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Target based profiles,her brother wont allow to work in Target based jobs also her brothers are there in singapore and looking for opportunities in their company she is very clear that will travel to singapore once every process is done will not sustain for a long', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-13 09:59:08', 85, '2022-09-13 10:04:23', 0, NULL, 1),
(10177, 'Deepika S', '11', '7397497630', '', 'Deepiswami1608@gmail.com', '2000-08-16', 22, '3', '2', 'Swaminathan', 'Machine operator', 30000.00, 1, 16000.00, 25000.00, 'Chennai', 'Chennai', '2209130003', '', '2', 'upload_files/candidate_tracker/54325154032_Deepika latest.pdf', NULL, '1', '2022-09-13', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 8 months Exp in IT recruitment,Current Salary is 2.6LPA and her exp is min 18K - 20K TH Will not sustain in our roles ', '6', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-13 10:46:08', 1, '2022-09-13 11:03:07', 0, NULL, 1),
(10178, 'Benita J', '11', '9176234986', '', 'benita2394@gmail.com', '1994-06-23', 28, '3', '1', 'Novell', 'Team Lead', 50000.00, 2, 29000.00, 35000.00, 'Chennai', 'Chennai', '2209130004', '', '2', 'upload_files/candidate_tracker/61656557049_Benita J.pdf', NULL, '1', '2022-09-13', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good Have 1yrs 2 months Exp in recruitment and her salary exp is very high,current is 31K and Exp is 35K', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-13 10:46:38', 1, '2022-09-13 10:50:07', 0, NULL, 1),
(10179, 'S. Shakith Khan', '5', '8838120625', '9677051684', 'shakithsk99@gmail.com', '1999-06-27', 23, '3', '2', 'parent', 'no', 20000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209130005', '', '1', 'upload_files/candidate_tracker/28043051458_SK RESUME 1.docx', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,Freshernot much comfort to go for the appointments and beyond the official timings too,Need time to confirm with his parents Will not sustain and distance around 34 kms up and down', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-13 10:47:29', 60, '2022-09-13 11:23:45', 0, NULL, 1),
(10180, 'Rajeshkumar D', '5', '9600024961', '8884154243', 'madhan.madhan11@gmail.com', '1982-03-21', 40, '2', '1', 'Pushpa R', 'Writer', 30000.00, 1, 30000.00, 40000.00, 'Thiruninravur', 'Thiruninravur', '2209130006', '1', '2', 'upload_files/candidate_tracker/53803902183_MADAN.pdf', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Age around 40 yrs toally into media field worked earlier in Sales during 2000-2006 Looking for Film Industry as a director will not sustain and handle our Roles', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-13 11:08:56', 60, '2022-09-13 12:23:42', 0, NULL, 1),
(10181, 'Mohammed Hassan M', '22', '9952084715', '', 'mdhassan2206@gmail.com', '1993-06-22', 29, '2', '2', 'Mohideen A', 'Driver', 25000.00, 1, 21000.00, 23000.00, 'Ranipet', 'Chennai, porur', '2209130007', '1', '2', 'upload_files/candidate_tracker/50626889232_MH-Resume.pdf', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication have exp in non voice process No ideas in the Digital marketing will not sustain and not open for SAles profiles too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-13 11:09:12', 85, '2022-09-13 11:22:30', 0, NULL, 1),
(10182, 'Edward Ebin', '5', '9500730061', '', 'Edwardedward327@gmail.com', '2001-03-16', 21, '2', '2', 'Ebin', 'Electrician', 23000.00, 2, 24890.00, 16000.00, 'Palavaram', 'Palavaram', '2209130008', '1', '2', 'upload_files/candidate_tracker/561403875_Resume.pdf', NULL, '1', '2022-09-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '10th Completed no proper sustainability in the positons,fresher to our roles will not handle our sales long run doubts 5050 if he comes back let us try', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-13 11:25:22', 60, '2022-09-13 12:48:15', 0, NULL, 1),
(10183, 'S.Mohaideen abdul kadhar', '6', '9600193736', '9444642544', 'Kadharhero5@gmail.com', '1998-08-03', 24, '4', '2', 'S ,SYED AHAMED KABEER', 'Self employed', 20000.00, 1, 0.00, 15000.00, 'Chrompet', 'Chrompet', '2209130009', '', '1', 'upload_files/candidate_tracker/54506774343_kadhar_resume-1.pdf', NULL, '1', '2022-09-13', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-13 11:35:37', 60, '2022-09-13 01:33:36', 0, NULL, 1),
(10184, 'Jayaraj.c', '5', '6369773776', '9444642544', 'Jayarajcharles20@gmail.vom', '1997-07-20', 25, '4', '2', 'Charles', 'Self employed', 50000.00, 3, 0.00, 15000.00, 'Chennai', 'Chrompet', '2209130010', '', '1', 'upload_files/candidate_tracker/85679117810_Jaya Raj.pdf', NULL, '1', '2022-09-13', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-13 11:37:49', 60, '2022-09-13 01:33:54', 0, NULL, 1),
(10185, 'Abubakker siddique', '5', '9790972458', '', 'abubakkersiddiqu@gmail.com', '1994-10-15', 27, '1', '1', 'Fathima shifana', 'Sales and service customer care executive', 40000.00, 1, 0.00, 4.50, 'Pudupet', 'Pudupet', '2209130011', '', '2', 'upload_files/candidate_tracker/9738363010_Abubakker Siddique.resume.pdf', NULL, '1', '2022-09-13', 30, 'Vinothkumar', '3', '59', '2022-10-10', 360000.00, '', '2', '1970-01-01', '1', 'selected for GK Sir Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-13 12:40:50', 60, '2022-09-19 06:33:18', 0, NULL, 1),
(10186, 'tamizhan.c', '6', '9884344021', '9094339340', 'mrtamizhan97@gmail.com', '2001-11-19', 20, '1', '2', 'chandran.s', 'auto diver', 12000.00, 1, 0.00, 18000.00, 'puliyathope', 'Puliyathope', '2209130012', '', '1', 'upload_files/candidate_tracker/44371195802_Tamizhan.pdf', NULL, '1', '2022-09-13', 0, 'p1066', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sales Sustainability Doubts', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-13 01:27:01', 1, '2022-09-13 02:01:50', 0, NULL, 1),
(10187, 'Arshad Azmath', '16', '9445431548', '', 'arshadazmath30@gmail.com', '1994-12-03', 27, '2', '2', 'Md Azmathullah', 'Retired', 30000.00, 2, 18000.00, 22000.00, 'Annanagar', 'Annanagar', '2209130013', '1', '2', 'upload_files/candidate_tracker/28902814170_31-8-2022 Arshad Azmath Resume.pdf', NULL, '1', '2022-09-14', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Good Have Exp in Sales Telecall biut not interested to go in the same,Discussed for MIS/Technical Support Kindly check and let me know your inputs', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-13 03:39:19', 85, '2022-09-14 09:56:34', 0, NULL, 1),
(10188, '', '0', '8248643713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209130014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-13 05:19:29', 0, NULL, 0, NULL, 1),
(10189, 'Karankumar s', '5', '9025471749', '', 'karankumartushar@gmail.com', '2001-06-18', 21, '2', '2', 'Kavitha', 'Tailor', 25000.00, 1, 21000.00, 25000.00, 'Peravurani', 'St Thomas mount', '2209130015', '1', '2', 'upload_files/candidate_tracker/70704466941_Karankumar S updated resume ....pdf', NULL, '1', '2022-09-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-13 11:14:42', 85, '2022-09-19 10:04:30', 0, NULL, 1),
(10190, 'arunachalam s', '4', '9087405531', '', 'sekar.arun80@gmail.com', '1997-05-16', 25, '2', '2', 'sekar', 'farmer', 8000.00, 1, 0.00, 12000.00, 'thiruvannamalai', 'thiruvannamalai', '2209140001', '2', '1', 'upload_files/candidate_tracker/42370747799_arun resume.docx', NULL, '2', '2022-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-14 09:15:32', 1, '2022-09-14 09:17:36', 0, NULL, 1),
(10191, 'yakala prasanth', '4', '9361542835', '', 'prasanthyakala1999@gmail.com', '1999-06-01', 23, '2', '2', 'ramaiah', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'perambur', '2209140002', '2', '1', 'upload_files/candidate_tracker/18318041085_YAKALA PRASANTH 1Resume.pdf', NULL, '1', '2022-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-14 09:19:37', 1, '2022-09-14 09:23:19', 0, NULL, 1),
(10192, 'sheikoli m', '4', '8940321241', '', 'm.shekoli14072@gmail.com', '1997-06-03', 25, '2', '2', 'mohamed raja', 'nil', 10000.00, 1, 0.00, 10000.00, 'virudhunagar', 'tambaram', '2209140003', '2', '1', 'upload_files/candidate_tracker/91587394536_updated resume.docx', NULL, '3', '2022-09-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-14 09:25:08', 1, '2022-09-14 09:29:31', 0, NULL, 1),
(10193, 'Balaji', '6', '8903139203', '', 'balaji10perumal@gmail.com', '1998-01-05', 24, '2', '2', 'Perumal', 'Hari cutting', 40000.00, 1, 0.00, 15.00, 'Chennai', 'Chennai', '2209140004', '1', '1', 'upload_files/candidate_tracker/44153313936_BALAJI RESUME-1.docx', NULL, '1', '2022-09-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected and offered him 192000 LPA being a fresher but the candidate is not comfortable with the pay and expects more long distance too', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-14 10:45:02', 60, '2022-09-14 11:54:04', 0, NULL, 1),
(10194, 'Santhosh Kumar.S', '5', '6374697119', '6385853448', 'santhoshab8813@gmail.com', '2000-09-08', 22, '2', '2', 'Saravanan. K', 'Business man', 17000.00, 1, 23000.00, 20.00, 'Chennai', 'Chennai', '2209140005', '1', '2', 'upload_files/candidate_tracker/51664503486_Santhosh kumar updated resume.docx', NULL, '1', '2022-09-14', 0, '', '3', '59', '2022-09-19', 276000.00, '', '5', '1970-01-01', '1', 'Selected for Shanmugam Team in Staff Role need to analyze in 7 days of training', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-14 11:22:02', 60, '2022-09-14 05:48:19', 0, NULL, 1),
(10195, 'S Anitha', '5', '8939754153', '', 'aammu6438@gmail.com', '2000-10-18', 21, '2', '2', 'Parent', 'Cooli', 80000.00, 0, 0.00, 15000.00, 'Pattalam', 'Pattalam', '2209140006', '1', '1', 'upload_files/candidate_tracker/65933819124_anitha.docx', NULL, '1', '2022-09-14', 0, '', '3', '59', '2022-09-15', 156000.00, '', '5', '1970-01-01', '2', 'Selected for ESales - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-14 12:06:27', 60, '2022-09-14 05:59:40', 0, NULL, 1),
(10196, 'Deepika. O', '5', '8838951219', '7418105611', 'deepikanarayanan1409@gmail.com', '2001-09-14', 21, '2', '2', 'Father: kanna narayanan. O, Mother: Manjula devi. O', 'Electrician', 15000.00, 1, 0.00, 15000.00, 'Near Mr nagar', 'No . 5/555, 126th street, Muthamizh Nagar.', '2209140007', '1', '1', 'upload_files/candidate_tracker/381379419_Resume_Deepika-1.pdf', NULL, '1', '2022-09-14', 0, '', '3', '59', '2022-09-15', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '6', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-14 12:07:26', 60, '2022-09-14 05:59:56', 0, NULL, 1),
(10197, 'Vetrivel', '5', '6380940215', '', 'vvel842.cc@gmail.com', '2001-07-22', 21, '2', '2', 'Selvam V', 'Labour', 72000.00, 1, 0.00, 15000.00, 'No 11 othavadai street Mamallapuram', 'Vadapalani', '2209140008', '1', '1', 'upload_files/candidate_tracker/26847736847_CV_2022090917500584.pdf', NULL, '1', '2022-09-14', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 5050 Can be trained in our roles open for Field Kindly check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-14 12:36:08', 60, '2022-09-14 01:23:22', 0, NULL, 1),
(10198, 'Mohana Krishnan T', '5', '7904596305', '9884169723', 'mohanthirumoorthy28@yahoo.com', '2002-02-28', 20, '2', '2', 'Kanaga T', 'Housewife', 72000.00, 0, 0.00, 15000.00, 'No :108/98 TKM road Mamallapuram', 'Kk nagar', '2209140009', '1', '1', 'upload_files/candidate_tracker/63494528459_Mohan resume1-1.pdf', NULL, '1', '2022-09-14', 0, '', '4', '57', NULL, 0.00, '', '0', NULL, '1', 'Fresher 5050 Can Be Trained In Our Roles Open For Field Kindly Check And Let Me Know Your Inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-14 12:36:10', 1, '2022-09-14 12:40:08', 0, NULL, 1),
(10199, 'RajaRajeswari A', '4', '9840110577', '7092461122', 'rajarajeswari1013@gmail.com', '2001-12-10', 20, '2', '2', 'Anandan', 'Driver', 20000.00, 2, 0.00, 20000.00, 'Villivakkam', 'Villivakkam', '2209140010', '1', '1', 'upload_files/candidate_tracker/65416938609_CV_2021-10-02-103505.pdf', NULL, '1', '2022-09-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', '5050 profile much focus for Java openings For time being looking for other openings need to clear 2 arrear papers if she comes back let us try', '1', '1', '0', '1', '1', '0', '2', '2022-09-16', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-14 12:57:13', 1, '2022-09-14 01:01:51', 0, NULL, 1),
(10200, '', '0', '7010060397', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209140011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-14 04:06:36', 0, NULL, 0, NULL, 1),
(10201, 'Veshleena', '20', '6385137189', '', 'sheebashasha@gmail.com', '1999-04-21', 23, '2', '2', 'Karpagam', 'House wife', 50000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2209140012', '1', '2', 'upload_files/candidate_tracker/56983675796_0_VESHLEENA RESUME_1662535934497_Veshleena.pdf', NULL, '1', '2022-09-16', 1, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication have exp in retail medical Sales bit worried with the Telesales Candidate need time to confirm on the position, if she \ncomes back let us try', '5', '1', '', '1', '1', '', '2', '2022-09-19', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-14 04:47:21', 85, '2022-09-16 11:09:46', 0, NULL, 1),
(10202, 'Harini', '4', '9361785078', '', 'Harinigayu9710@gmail.com', '1999-06-16', 23, '2', '2', 'Kothandan', 'Steelworker', 20000.00, 1, 13500.00, 18000.00, 'Ponniamedu', 'Ponniamedu', '2209140013', '1', '2', 'upload_files/candidate_tracker/99804030969_DOC-20210826-WA0002.pdf', NULL, '1', '2022-09-15', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Much Focused to work in non voice nit stability in the previous Exp,will hold this profile need time to confirm', '1', '1', '', '1', '1', '', '2', '2022-09-19', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-14 05:09:21', 85, '2022-09-15 01:07:52', 0, NULL, 1),
(10203, 'Dhakshayini r', '5', '7395942767', '7904089232', 'Naidudhakshu@gmail.com', '1999-08-09', 23, '2', '2', 'Suguna', 'Supervisor', 15000.00, 1, 13500.00, 15000.00, 'Ennore', 'Ennore', '2209140014', '1', '2', 'upload_files/candidate_tracker/53026346495_Dhak Resume.docx', NULL, '1', '2022-09-15', 1, '', '3', '59', '2022-09-19', 164208.00, '', '', '2022-09-20', '2', 'Selected for esales karthika team Consultant role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-14 05:14:19', 60, '2022-09-18 07:37:52', 0, NULL, 1),
(10204, 'Reju', '11', '8524052556', '', 'rejusai143@gmail.com', '1997-12-26', 24, '4', '2', 'Vanaja', 'Government employees', 50000.00, 1, 28000.00, 30000.00, 'CHENNAI', 'CHENNAI', '2209150001', '', '2', 'upload_files/candidate_tracker/65495502664_IMG_20220915_104430.pdf', NULL, '1', '2022-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much prefer to work in non voice process but no communication have 6 yrs in NGO based Govt project not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-15 10:19:26', 1, '2022-09-15 10:47:33', 0, NULL, 1),
(10205, 'Naresh.G', '6', '6379161095', '', 'naresh9392official@gmail.com', '2001-12-13', 20, '1', '2', 'Gothandaram.R', 'Vessel polished', 45000.00, 3, 0.00, 180000.00, 'Tondiarpet', 'Tondiarpet', '2209150002', '', '1', 'upload_files/candidate_tracker/58155742543_NARESH.pdf', NULL, '1', '2022-09-15', 0, 'P1253', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Not Fit For Sale', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-15 10:19:42', 1, '2022-09-15 10:31:18', 0, NULL, 1),
(10206, 'premibalakrishnan', '4', '7603937225', '', 'saipremi1706@gmail.com', '1999-06-17', 23, '2', '2', 'balakrishnan', 'farmer', 7000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2209150003', '2', '1', 'upload_files/candidate_tracker/26002504139_PREMI B RESUME.docx', NULL, '1', '2022-09-15', 0, '', '3', '59', '2022-09-20', 138948.00, '', '', '2022-09-21', '2', 'Selected for Arumbakkam Location in consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-15 10:47:55', 60, '2022-09-17 06:15:00', 0, NULL, 1),
(10207, 'Aloshiya f', '4', '7397049617', '7395942767', 'aloshiyamothwani@gmail.com', '1999-11-26', 22, '2', '2', 'Anthony priya', 'House keeping', 15000.00, 1, 13500.00, 15000.00, 'Vyasarpadi', 'Vyasarpadi', '2209150004', '1', '2', 'upload_files/candidate_tracker/2971106677_Document.docx', NULL, '1', '2022-09-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'final Round reject by gaurav sir she came along with her friend only 1 selected and her friend joined us on 19Sep Dhakshayinin\n\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-15 11:02:56', 60, '2022-09-16 06:52:56', 0, NULL, 1),
(10208, 'Abinesh', '5', '9943267326', '', 'Abineshsanthakumar10@gmail.com', '2000-05-26', 22, '2', '2', 'Sankar', 'Farmer', 25000.00, 1, 0.00, 25000.00, 'Arakkonam', 'Arakkonam', '2209150005', '1', '1', 'upload_files/candidate_tracker/84645898348_Abinesh santhakumar.s resume PDF.pdf', NULL, '1', '2022-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher 1 month he need to travel from Arakonnam only,Having Health issue plus vison sight problem sustainability in our role doubts not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-15 11:08:33', 1, '2022-09-15 11:49:35', 0, NULL, 1),
(10209, 'Manimegalai', '23', '8056293529', '', 'manimegalai.uxui@gmail.com', '1994-04-01', 28, '2', '1', 'Prasanna kumar', 'Visual designer', 70000.00, 0, 0.00, 300000.00, 'Royapettah', 'Royapettah', '2209150006', '1', '1', 'upload_files/candidate_tracker/18934058427_updated resume_compressed.pdf', NULL, '1', '2022-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for UI UX Have Exp in Ar Caller for 7 yrs Salary Exp is high Need time to confirm this profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-15 11:09:26', 1, '2022-09-15 11:16:39', 0, NULL, 1),
(10210, 'JEEVITHA', '4', '8939513946', '7358553040', 'Jeejeevima@gmail.com', '2001-04-15', 21, '2', '2', 'Gardian(grandfather)', 'Plumber', 15000.00, 0, 0.00, 20000.00, 'Vanagaram', 'Vanagaram', '2209150007', '1', '1', 'upload_files/candidate_tracker/52359049005_jeevitha resume.docx', NULL, '1', '2022-09-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate dropped Being a fresher Saalry Exp is very high and not ready to come down got another offer too', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-15 11:40:09', 1, '2022-09-15 11:59:54', 0, NULL, 1),
(10211, 'Mageshwaran', '6', '9444674595', '9841411173', 'mageshkd2314@gmail.com', '1996-09-08', 26, '1', '2', 'Karuppusamy', 'Mtc conductor', 50000.00, 2, 16000.00, 17000.00, 'Chennai', 'Chennai', '2209150008', '', '2', 'upload_files/candidate_tracker/96612248416_MageshwaranRESUME.docx', NULL, '1', '2022-09-15', 0, '55574', '3', '59', '2022-09-19', 199000.00, '', '', '2022-09-20', '1', 'Selected for Thiyagu team with PF/eSI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-15 12:22:06', 60, '2022-09-16 06:40:44', 0, NULL, 1),
(10212, 'T.Santhoshkumar', '6', '9344640479', '', 'santhosh3214kumar@gmail.com', '1998-12-30', 23, '4', '2', 'S.Thiruvavukarsu', 'Carbondaer', 75000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209150009', '', '1', 'upload_files/candidate_tracker/53967590501_TapScanner 09-06-2022-15?06.pdf', NULL, '1', '2022-09-15', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Fit For Sale', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-15 12:53:22', 60, '2022-09-15 01:42:45', 0, NULL, 1),
(10213, 'GOKUL K', '6', '7200322745', '9489938288', 'goksssmk77@gmail.com', '2000-09-12', 22, '1', '2', 'Kathirvel', 'Textile', 15000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2209150010', '', '1', 'upload_files/candidate_tracker/29613836897_Gokul Resume.pdf', NULL, '1', '2022-09-15', 0, 'P1333', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-15 01:15:16', 1, '2022-09-15 01:19:46', 0, NULL, 1),
(10214, 'S.Monika', '5', '8637675812', '', 'monikasivabalan@gmail.com', '2001-11-10', 20, '2', '2', 'Sivabalan', 'Firshermen', 30000.00, 1, 250000.00, 35000.00, 'Puducherry', 'Kodambakkam', '2209150011', '1', '2', 'upload_files/candidate_tracker/36530685763_Naukri_MonikaSivabalan[3y_8m].docx', NULL, '1', '2022-09-15', 0, '', '3', '59', '2022-10-10', 300000.00, '', NULL, '2023-05-06', '2', 'Selected for Santhosh Team with PF/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-15 03:32:46', 60, '2022-10-01 10:14:31', 0, NULL, 1),
(10215, 'Siva sankaran', '4', '9345664474', '6382071946', 'Sivalf410@gmail.com', '2000-07-29', 22, '2', '2', 'Manikandan', 'Graphic design', 50000.00, 0, 0.00, 12000.00, '12a/14 Appolo study centre nandhi loop strt west', 'chennai', '2209160001', '1', '1', 'upload_files/candidate_tracker/17878279211_SIVA SANKARAN S.pdf', NULL, '1', '2022-09-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication Poor understanding not suitable for out Telecaller roles also very clear he will move out if he get a suitable opportunity in his design interest.We also checked for our UX design,Portfolio design not upto the mark as we expected will not sustain in our IT tole not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-16 10:23:14', 85, '2022-09-16 11:13:41', 0, NULL, 1),
(10216, 'Madhumitha', '5', '9047026609', '7639549769', 'mithamadhu943@gmail.com', '1999-11-17', 22, '1', '2', 'M.vijaya', 'Farming', 9000.00, 0, 0.00, 20000.00, 'Vellore', 'Bangalore', '2209160002', '', '1', 'upload_files/candidate_tracker/25160355046_Mathumitha.pdf', NULL, '1', '2022-09-16', 0, '555555', '3', '59', '2022-09-21', 168000.00, '', '3', '2022-11-05', '2', 'Selected for ESales Mohanraj Team in Consultant Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-16 10:38:10', 60, '2022-09-20 04:04:12', 0, NULL, 1),
(10217, 'Hema dharshini S', '5', '6382199794', '9965702497', 'hemahema8654@gmail.com', '2001-10-11', 20, '3', '2', 'Shanmugam(late)', 'Late', 1000.00, 1, 0.00, 20000.00, 'Rasipuram', 'Rasipuram', '2209160003', '', '1', 'upload_files/candidate_tracker/93118986974_Hema.pdf', NULL, '1', '2022-09-16', 0, '', '3', '59', '2022-09-21', 168000.00, '', '4', '2022-11-01', '2', 'Selected for ESales Mohanraj Team in Consultant Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '1', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-16 10:38:27', 60, '2022-09-20 03:47:30', 0, NULL, 1),
(10218, 'YUVARAJ R', '5', '9789003498', '8778102477', 'yuvarajyuvaraj0702@gmail.com', '2002-02-07', 20, '2', '2', 'Rajendran R', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'OTTERI Chennai', 'Chennai tamilnadu', '2209160004', '1', '1', 'upload_files/candidate_tracker/4626252518_yuvaraj resume.pdf', NULL, '1', '2022-09-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher not open for Sales No Communication Need time to think and confirm Looking for flexibility in timings and the salary', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-16 11:53:01', 1, '2022-09-16 12:03:21', 0, NULL, 1),
(10219, 'Heena Farien M', '25', '9003297755', '9003262602', 'heenafarien2020@gmail.com', '1997-07-30', 25, '2', '1', 'V Syed Ibrahim', 'Personal Gym Trainer', 20.00, 1, 22000.00, 25000.00, 'Chennai', 'Chennai', '2209160005', '1', '2', 'upload_files/candidate_tracker/38933046008_heena_generated_resume (1).pdf', NULL, '1', '2022-09-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our roles have exp as AR caller Married and have a 1yr kid not open for Voice process looking for Non voice and pressure free will not sustain in our roles', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-16 12:13:10', 85, '2022-09-16 12:31:07', 0, NULL, 1),
(10220, 'ARSHAD PARVES K S', '5', '8428298853', '', 'arshadparves@gmail.com', '1998-03-13', 24, '2', '2', 'KAREEM S', 'Tutor', 200000.00, 1, 0.00, 18000.00, 'Kalpakkam', 'Chennai', '2209160006', '1', '1', 'upload_files/candidate_tracker/47127563567_ARSHAD', NULL, '1', '2022-09-16', 0, '', '3', '59', '2022-09-26', 182496.00, '', '', '1970-01-01', '1', 'Selected for Technical Support - 15K TH post 3 months based onperformance 18K Need to check for the SA', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', 'Final Round interviewed by Gokul and Shortlisted for Technical Support Role', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-16 12:28:03', 60, '2022-09-16 03:19:51', 0, NULL, 1),
(10221, 'Anusuya', '4', '9566630291', '9080374304', 'anukuttyavks@gmail.com', '2000-02-22', 22, '2', '2', 'Menaka', 'Bussiness', 291000.00, 1, 0.00, 18000.00, 'Viduthalai nagar s kolathur', 'Viduthalai Nagar 6 th Street s kolathur', '2209160007', '23', '2', 'upload_files/candidate_tracker/79780171319_anu.pdf.pdf', NULL, '1', '2022-09-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average not much comfort to work in Pressure Too long Distance and not ready to relocate,not suitable Need to open a lot', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-16 12:34:13', 60, '2022-09-16 01:19:05', 0, NULL, 1),
(10222, 'arunadevi', '4', '8754029272', '', 'arunadevig04@gmail.com', '2001-04-25', 21, '2', '2', 'ganesan', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2209160008', '2', '1', 'upload_files/candidate_tracker/64566077950_arunadevi.docx', NULL, '1', '2022-09-16', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', '5050 Profile Communication Average,Sustainability Doubt Came along with Friend Kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-16 01:19:53', 1, '2022-09-16 01:21:22', 0, NULL, 1),
(10223, 'abarna a', '4', '7010151452', '', 'abarna.arivu@gmail.com', '2002-02-23', 20, '2', '2', 'arivazhagan', 'business', 15000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2209160009', '2', '1', 'upload_files/candidate_tracker/54594183611_ABARNA.pdf', NULL, '1', '2022-09-16', 0, '', '4', '14', NULL, 0.00, '', '0', NULL, '2', 'Communication ok Fresher Can be trained in our role kindly check and let me know your interest\n', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-16 01:23:22', 1, '2022-09-16 01:25:02', 0, NULL, 1),
(10224, '', '0', '9600015805', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209160010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-16 02:26:19', 0, NULL, 0, NULL, 1),
(10225, 'Dhivya', '31', '8608497502', '9988066753', 'mvdivya683@gmail.com', '2000-06-20', 22, '2', '2', 'Murugesan', 'Nothing', 15000.00, 2, 0.00, 15000.00, 'Ariyalur DT', 'Chennai', '2209160011', '1', '1', 'upload_files/candidate_tracker/37105011030_DHIVYA BCA.pdf', NULL, '1', '2022-09-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong in the basics skills also not comfort with the TxxampC Need time to check with her family if she comes back let us try\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-16 06:15:37', 85, '2022-09-17 10:06:06', 0, NULL, 1),
(10226, 'Murugesa Pandi K', '16', '9087528711', '8056488904', 'pandi21pandi06@gmail.com', '1999-06-21', 23, '2', '2', 'M Kadarkarai Thangam', 'Business', 30000.00, 2, 16500.00, 25000.00, 'Chennai', 'Chennai', '2209160012', '1', '2', 'upload_files/candidate_tracker/28280435641_pandi resume .pdf', NULL, '1', '2022-09-17', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication No Have exp as DA,Focusing on the salary growth,not much confident to speak in english,hold and let us try later', '3', '1', '', '1', '1', '', '2', '2022-09-19', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-16 08:01:22', 85, '2022-09-17 10:06:32', 0, NULL, 1),
(10227, 'Swathy', '16', '9384685994', '', 'Swathyjmj28@gmail.com', '1998-08-28', 24, '2', '2', 'Gokulan', 'Plumber', 30000.00, 1, 130000.00, 16000.00, 'Chennai', 'Chennai', '2209170001', '1', '2', 'upload_files/candidate_tracker/16634111766_Swathy Resume.pdf', NULL, '1', '2022-09-17', 20, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Good have exp in insurance sales not open for sales again comfort in renewals can be trained kindly check and let me know your interest', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-17 09:41:13', 85, '2022-09-17 10:06:19', 0, NULL, 1),
(10228, 'Dharshika M', '6', '8344053457', '6383140227', 'm.dharshika2000@gmail.com', '2000-03-01', 22, '2', '2', 'Muthukumar C', 'Agriculture', 10000.00, 1, 0.00, 10000.00, 'Erode', 'Modakkurichi', '2209170002', '1', '1', 'upload_files/candidate_tracker/85819038093_DHARSHIKA.M RESUME.pdf', NULL, '1', '2022-09-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'distance 22km... so not suitable for our timing.. so rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-17 10:26:55', 85, '2022-09-17 10:43:21', 0, NULL, 1),
(10229, 'Fayaz Ahmed Khan', '5', '9094329025', '8668183657', 'fayaz6561@gmail.com', '2007-09-17', 0, '2', '2', 'Habibunisha begum', 'Housewife', 50.00, 1, 0.00, 38.00, 'Madhavaram', 'Chennai', '2209170003', '1', '2', 'upload_files/candidate_tracker/26939284797_fayaz resume CV-1.pdf', NULL, '1', '2022-09-17', 15, '', '3', '59', '2023-02-01', 400000.00, '', '', '2023-02-07', '1', 'Selected for Shanmugam sir Team with PF/PT', '5', '2', '4', '1', '1', '', '2', '2022-09-19', '2', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-17 11:46:49', 60, '2023-01-31 05:07:40', 0, NULL, 1),
(10230, 'S.Ajay', '5', '6382225188', '', 'ajaykumarajaykumar92401@gmail.com', '2007-09-17', 0, '2', '2', 'K.sankar', 'Driver', 12000.00, 703, 17500.00, 20000.00, 'Chennai', 'Chennai', '2209170004', '1', '2', 'upload_files/candidate_tracker/49698601526_RESUME_S.AJAY.pdf', NULL, '1', '2022-09-17', 1, '', '3', '59', '2022-09-20', 252000.00, '', '', '2022-09-21', '1', 'Selected for GK Sir Team Staff Role', '5', '2', '1', '1', '3', '1', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-17 12:08:34', 60, '2022-09-19 05:24:47', 0, NULL, 1),
(10231, 'VIVEDHA P', '11', '8825872642', '', 'vivedha26@gmail.com', '2000-01-26', 22, '2', '2', 'Prem Kumar M', 'Highway department', 30000.00, 1, 20000.00, 20000.00, 'PUDUKKOTTAI', 'Chennai , Ekkattuthangal', '2209170005', '1', '2', 'upload_files/candidate_tracker/81212941193_Vivedha Resume.pdf', NULL, '1', '2022-09-17', 0, '', '3', '59', '2022-09-26', 90000.00, '', '', '2022-09-27', '2', '5 months Intern 7.5K then 2yrs SA 12-14K need to finalise', '6', '1', '', '1', '1', '', '2', '2022-09-19', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-17 03:06:41', 60, '2022-09-26 10:50:28', 0, NULL, 1),
(10232, '', '0', '8098806672', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209170006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-17 04:45:27', 0, NULL, 0, NULL, 1),
(10233, 'Lakshmanan', '4', '9578497295', '6374079099', 'lakshmanan22141@gmail.com', '1994-10-06', 27, '3', '2', 'R . jayalakshmi', 'House wife', 130000.00, 3, 14000.00, 18000.00, 'Namakkal', 'Chennai', '2209170007', '', '2', 'upload_files/candidate_tracker/83491782750_LAKSHMANAN (1).docx', NULL, '1', '2022-09-19', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-17 05:20:19', 1, '2022-09-18 05:42:22', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10234, 'Silambarasan T', '23', '6382269783', '9751782017', 'silambukural13@gmail.com', '2000-06-15', 22, '2', '2', 'Tamilarasan', 'Farmer', 10000.00, 3, 0.00, 350000.00, '10A East Street, Srinivasapuram, Ariyalur-621705', '19/2 Devi Karumariamman nagar , Velachery 60042', '2209170008', '1', '1', 'upload_files/candidate_tracker/20104799990_Silambarasan-Resume.pdf', NULL, '1', '2022-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills Need to learn a lot not comfortable with the pay need time to check and confirm', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-17 05:26:12', 85, '2022-09-19 10:04:03', 0, NULL, 1),
(10235, 'David Raghul', '16', '8220095162', '', 'Davidraghul2003@gmail.com', '1999-06-25', 23, '2', '2', 'A.Antony christy', 'Two wheeler mechanic', 18000.00, 1, 0.00, 19000.00, 'Uthukottai', 'Uthukottai', '2209170009', '1', '1', 'upload_files/candidate_tracker/65143611428_david .pdf', NULL, '1', '2022-09-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication no not open up to speak in english no ideas in the profession to go sustainability doubts in our role,declined several offers based onthe salary,High Exp on Salary', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-17 05:38:44', 85, '2022-09-19 12:16:39', 0, NULL, 1),
(10236, 'B.Akilandeswari', '4', '6374700178', '8870353260', 'akilaakil812@gmail.com', '1997-10-08', 24, '3', '2', 'T. Balaiyan', 'VAO Assistant( RTD )', 15000.00, 4, 5000.00, 10000.00, 'Ammapet', 'Ammapet', '2209190001', '', '2', 'upload_files/candidate_tracker/94724285124_Document-WPS Office.pdf', NULL, '1', '2022-09-19', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-19 10:41:26', 1, '2022-09-19 11:08:27', 0, NULL, 1),
(10237, 'Eswari', '4', '9790458609', '9787848266', 'eswariselladurai2000@gmail.com', '2000-06-02', 22, '3', '2', 'Selladurai', 'Farmer', 20000.00, 1, 5000.00, 10000.00, 'Ammapet', 'Ammapet', '2209190002', '', '2', 'upload_files/candidate_tracker/40322469798_Eswari (1).pdf', NULL, '1', '2022-09-19', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-19 10:41:39', 1, '2022-09-19 11:02:11', 0, NULL, 1),
(10238, 'Roopa Lakshmi S', '11', '9962351767', '', 'mailtoroopa758@gmail.com', '1999-04-30', 23, '2', '2', 'Sathappan', 'Business', 25000.00, 1, 15000.00, 20000.00, 'Nungambakkam', 'Nungambakkam', '2209190003', '1', '2', 'upload_files/candidate_tracker/83156520114_Roopa', NULL, '1', '2022-09-19', 0, '', '3', '59', '2022-09-21', 182496.00, '', '', '1970-01-01', '1', 'Selected for Recruiter Role Have 8 months Exp in IT,Can give a try,Final round interviewed by Gokul and got selected 15K TH 2yrs SA No document Submission', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-19 11:05:24', 60, '2022-09-19 01:10:00', 0, NULL, 1),
(10239, '', '0', '9962959095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-19 12:46:44', 0, NULL, 0, NULL, 1),
(10240, 'Kannan', '16', '9176268134', '', 'gkannan997@gmail.com', '1997-05-09', 25, '2', '2', 'Ganesan yasothai', 'Labour house wife', 120000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2209200001', '1', '1', 'upload_files/candidate_tracker/2598703850_KANNAN-converted.pdf', NULL, '1', '2022-09-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills communication Average will not sustain in our roles not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-20 10:33:05', 60, '2022-09-20 01:25:31', 0, NULL, 1),
(10241, 'sunil kumar', '4', '9677064303', '', 'sunilkumareakambaram@gmail.com', '1990-08-03', 32, '2', '2', 'eakamabaram', 'nil', 13000.00, 4, 0.00, 12000.00, 'chennai', 'chennai', '2209200002', '2', '1', 'upload_files/candidate_tracker/31932848972_pdf Sunil Kumar 1.pdf', NULL, '1', '2022-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance up and down 70kms not ready to relocate Long Career Gap No sustainability in the previous exp will not sustain and not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-20 10:45:46', 1, '2022-09-20 10:48:40', 0, NULL, 1),
(10242, 'T.J.BEENA RUBY', '6', '7395928257', '9840300177', 'tjpeter0305@gmail.com', '1996-09-03', 26, '1', '2', 'J.bagyalakshmi', 'House wife', 30000.00, 2, 14000.00, 16000.00, 'CHENNAI', 'CHENNAI', '2209200003', '', '2', 'upload_files/candidate_tracker/67781311932_Beena Ruby Resume-1.pdf', NULL, '1', '2022-09-20', 10, 'P1357', '3', '59', '2022-09-26', 202104.00, '', '5', '1970-01-01', '2', 'Selected for Syed Team - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-20 11:12:54', 60, '2022-09-23 06:05:41', 0, NULL, 1),
(10243, 'SathishKumar S', '5', '9500611084', '9092463049', 's.n.sarathsathish@gmail.com', '1996-06-14', 26, '2', '2', 'Navaneetham S', 'Farmer', 2.50, 3, 0.00, 150000.00, 'Mayiladuthurai', 'Saidapet', '2209200004', '1', '1', 'upload_files/candidate_tracker/21640984275_Sathish1996.docx', NULL, '1', '2022-09-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher cAreer Gap Need to train a lot Candidate need to speak focusing much with the non voice process', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-20 11:13:58', 60, '2022-09-20 01:27:43', 0, NULL, 1),
(10244, 'Shalini', '6', '8667896522', '9444330145', 'Gshalinishalu15@mail.com', '1998-04-15', 24, '1', '2', 'Santhi', 'House wife', 30.00, 1, 0.00, 18.00, 'Avadi', 'Avadi', '2209200005', '', '2', 'upload_files/candidate_tracker/19821811512_DocScanner 20-Sep-2022 11-23 am.pdf', NULL, '1', '2022-09-20', 1, 'Jobs', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have xp but no sustainability in the previous exp Can give a try Too long Distance Up and down 50kms kindly check and let me know your interest', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-20 11:15:41', 60, '2022-09-20 12:01:38', 88, '2022-11-15 06:22:42', 0),
(10245, 'Roshan R', '5', '9342647535', '9789930408', 'roshanappu93@gmail.com', '2003-03-09', 19, '2', '2', 'Ravindran', 'Hotel manager', 20000.00, 1, 0.00, 22000.00, '38/20 Cross Road, New Washermenpet', '38/20 Cross Road, New Washermenpet', '2209200006', '1', '2', 'upload_files/candidate_tracker/44155856085_Roshan Resume1.pdf', NULL, '1', '2022-09-20', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '19 yrs no Graduation 12 passed 1.2yrs 3 companies this is the 4th one looking only for the salary growth Have 3 months exp in telecaller wiht 15K salary looking for a change just for the salary hike', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-20 11:17:46', 60, '2022-09-20 01:26:03', 0, NULL, 1),
(10246, 'Shalinithiyagarajan', '25', '6382889856', '8124814441', 'thiyagarajanshalini877@gmail.com', '2001-04-05', 21, '1', '2', 'Thiyagarajan', 'Painter', 15000.00, 0, 0.00, 15000.00, '27/15 TN Nagar palnipet Arakkonam vellore', 'Madiwala Bangalore', '2209200007', '', '1', 'upload_files/candidate_tracker/76337779496_resume from sis lap Image to PDF 20220408 13.15.19.pdf', NULL, '1', '2022-09-20', 0, '5326', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-20 11:59:48', 1, '2022-09-20 12:32:23', 0, NULL, 1),
(10247, 'RAGHUL', '6', '7708741044', '', 'raghulthangaraj95@gmail.com', '1995-10-23', 26, '4', '1', 'NIRMALADEVI', 'NILL', 12000.00, 1, 16000.00, 18000.00, 'Erode', 'Erode', '2209200008', '', '2', 'upload_files/candidate_tracker/11840472828_raghul resume 2019-converted-1.pdf', NULL, '3', '2022-09-20', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '1', 'Not fit for sales..', '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-20 12:25:42', 1, '2022-09-20 12:32:48', 0, NULL, 1),
(10248, 'Pavithra M', '13', '9361811348', '', 'Pavithravj01042001@gmail.com', '2001-04-01', 21, '2', '2', 'S .munivel', 'Tailor', 15000.00, 2, 0.00, 18000.00, 'chennai', 'Chennai', '2209200009', '1', '1', 'upload_files/candidate_tracker/21046577339_Pavithra M.pdf', NULL, '1', '2022-09-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-20 01:01:48', 1, '2022-09-20 01:07:00', 0, NULL, 1),
(10249, 'Lenin.v', '4', '8248767396', '8110922362', 'lenineee531@gmail.com', '1996-05-03', 26, '2', '2', 'Veerapandiyan', 'Former', 12000.00, 5, 15000.00, 16000.00, 'Chidambaram', 'Tharamani', '2209210001', '1', '2', 'upload_files/candidate_tracker/92991316939_LENIN RESUME-1.pdf', NULL, '1', '2022-09-21', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to speak a lot have exp in core Electrical for 3yrs fresher for Telecaller handling pressure doubt will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-21 09:57:03', 85, '2022-09-21 10:22:15', 0, NULL, 1),
(10250, 'karthikeyan d', '4', '8838338770', '', 'in.karthi1234@gmail.com', '1999-07-28', 23, '2', '2', 'dhanasekar a', 'welder', 10000.00, 1, 0.00, 12000.00, 'chennai', 'tenampet', '2209210002', '2', '1', 'upload_files/candidate_tracker/47157690693_Karthik resume.docx', NULL, '1', '2022-09-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking much for inbound calls ave exp in non voice process Frequent Job Changes will not sustain and handle our pressure\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-21 10:03:55', 1, '2022-09-21 10:05:38', 0, NULL, 1),
(10251, 'durga ganesh s', '4', '9361589948', '', 'smartganesh0108@gmail.com', '2000-05-01', 22, '2', '2', 'srinivasan rao', 'tailor', 13000.00, 1, 0.00, 12000.00, 'chennai', 'west mambalam', '2209210003', '2', '1', 'upload_files/candidate_tracker/33821279446_Durga Ganesh S - 1663137232.pdf', NULL, '1', '2022-09-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much in outbound calls have exp in non voice process not ok much with sales calls will not sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-21 10:07:00', 1, '2022-09-21 10:11:13', 0, NULL, 1),
(10252, 'dhilip kumar b', '4', '8610008669', '', 'dhiliprohith7399@gmail.com', '1999-03-07', 23, '2', '2', 'balaguru', 'farmer', 20000.00, 1, 0.00, 12000.00, 'chennai', 'perungulathur', '2209210004', '2', '1', 'upload_files/candidate_tracker/31196104018_Dhilip kumar(CV) (1)-2.pdf', NULL, '1', '2022-09-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-21 10:12:27', 1, '2022-09-21 10:13:51', 0, NULL, 1),
(10253, 'Swetha', '6', '7092993728', '', 'Govidhansangavi@gmail.com', '1992-05-13', 30, '1', '1', 'Father', 'Teacher', 300000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209210005', '', '1', 'upload_files/candidate_tracker/59064689486_N Srividhya.PDF', NULL, '1', '2022-09-21', 0, 'Jobs', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 12th discontinued Need to open a lot internal team referene do check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-21 10:29:31', 60, '2022-09-21 11:31:48', 88, '2022-11-15 06:22:42', 0),
(10254, 'Pavithra', '6', '9941562773', '', 'Riyanpavi2022@gmail.com', '2002-04-04', 20, '1', '1', '1', '20000', 300000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2209210006', '', '1', 'upload_files/candidate_tracker/78020580796_N Srividhya.PDF', NULL, '1', '2022-09-21', 0, 'Jobs', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher 12th Discontinued Need To Open A Lot Internal Team Referene Do Check And Let Me Know Your Inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-21 10:33:45', 60, '2022-09-21 11:32:02', 88, '2022-11-15 06:22:42', 0),
(10255, 'Nandhini', '11', '9840396223', '9719295221', 'nandhiniraj27121997@gmail.com', '1997-12-27', 24, '1', '2', 'Ananda raj', 'Painter', 19000.00, 1, 19000.00, 24000.00, 'Aminjaikarai chennai', 'Aminjaikarai chennai', '2209210007', '', '2', 'upload_files/candidate_tracker/21877872741_NANDHINI RESUME 18.7.2021 (1).docx', NULL, '1', '2022-09-21', 30, 'P1121', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Having Exp in PF/ESI/PT compliance only 4.2 yrs Exp in same company Mandatory 30 days notice Salary Exp is min 23-24K TH\n', '6', '2', '0', '1', '1', '0', '2', '2022-09-24', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-21 11:22:27', 1, '2022-09-21 11:27:01', 0, NULL, 1),
(10256, 'C.soundharam', '4', '8667847041', '8270889756', 'soundharam28@gmail.com', '1994-01-28', 28, '4', '1', 'Chidambaram', 'Customer service Associate', 45000.00, 1, 0.00, 20000.00, 'Chennai', 'Velechery', '2209210008', '', '1', 'upload_files/candidate_tracker/95087777128_ PGCMS.pdf', NULL, '1', '2022-09-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very Slow open for non voice only will not handle and sustain our pressure lot of personal issue will not sustain for a long not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-21 11:47:05', 60, '2022-09-21 12:54:19', 0, NULL, 1),
(10257, 'Amanullah S', '11', '9345722037', '', 'amann032000@gmail.com', '2000-01-03', 22, '2', '2', 'Safeeyullah Baig K', 'Private company', 40000.00, 1, 0.00, 18000.00, 'No:22 6/6 B old well street ts gopal Nagar TVT', 'Chennai', '2209210009', '1', '1', 'upload_files/candidate_tracker/40645967795_A resume 1.pdf', NULL, '1', '2022-09-21', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Have 4 months Exp in Networking,Looking for HR Recruitment Pursuing MBA Correspondance Not much ok wiht TxxampC candidate\nNeed time to confirm', '6', '1', '', '1', '1', '', '2', '2022-09-23', '2', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-21 11:50:26', 60, '2022-09-21 01:01:09', 0, NULL, 1),
(10258, '', '0', '6381146515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209210010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-21 09:32:40', 0, NULL, 0, NULL, 1),
(10259, 'Nagaraj G', '31', '7826956973', '9659327977', 'mithunaga14@gmail.com', '2001-02-14', 21, '2', '2', 'Gurusamy S', 'Mill manager', 30000.00, 1, 0.00, 2.50, 'Kovilpatti', 'Kovilpatti', '2209220001', '1', '1', 'upload_files/candidate_tracker/46336685126_G.Nagaraj-Resume (2022).pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Counds Good Have basic skills knowledge candidate ok with TxxampC but his parents are not ok,If he comes back can give a try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-22 10:03:11', 85, '2022-09-22 10:11:46', 0, NULL, 1),
(10260, 'R. Keerthana', '28', '7358447532', '', 'Keerthanaragunathan207@gmail.com', '2000-12-03', 21, '3', '2', 'Ragunathan', 'Mechanic', 40000.00, 1, 18000.00, 24000.00, 'Chennai', 'chennai', '2209220002', '', '2', 'upload_files/candidate_tracker/98877912270_R. keerthana resume updated.docx', NULL, '1', '2022-09-22', 2, '', '4', '98', NULL, 0.00, '', '0', NULL, '2', 'Communication Good Fresher for our Roles can give a try 6-0 days notice, waiting for accenture interview sustainability Doubts kindly check and let me know your interest', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 10:27:35', 1, '2022-09-22 10:59:15', 0, NULL, 1),
(10261, '', '0', '7904369456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209220003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-22 11:00:47', 0, NULL, 0, NULL, 1),
(10262, 'A . Arun francis', '23', '7397663407', '9080761967', 'arunancis1112@gmail.com', '1998-06-11', 24, '2', '2', 'I jancy rani', 'Home maker', 6000.00, 1, 0.00, 15000.00, 'Kumbakonam', 'Maraimalai nagar', '2209220004', '1', '1', 'upload_files/candidate_tracker/13917152408_Arun BE(MCT).pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT, No basics skills in JS understanding is poor will not sustain in our roles and long run doubts .focus to work in Angular openings much', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-22 11:32:10', 60, '2022-09-22 12:07:13', 0, NULL, 1),
(10263, 'Mohan.m', '23', '8778977197', '', 'Mohangwthm@gmail.com', '1997-09-02', 25, '3', '2', 'Vijayanirmala', 'Home maker', 7000.00, 1, 0.00, 17000.00, 'Thiruvarur', 'Thooraipakkam', '2209220005', '', '1', 'upload_files/candidate_tracker/47829463885_MOHAN BE(MCT).pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Testing Profile no ideas in development fresher for IT Sounding very low will not sustain and handle our pressure', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 11:33:20', 1, '2022-09-22 11:40:44', 0, NULL, 1),
(10264, 'Pooja B', '17', '6374536611', '', 'poojabaskar22699@gmail.com', '1999-06-22', 23, '2', '2', 'Baskar', 'Businessman', 60000.00, 1, 20000.00, 25000.00, 'Arni', 'Chennai', '2209220006', '1', '2', 'upload_files/candidate_tracker/63275100378_POOJA- pdf.docx', NULL, '1', '2022-09-22', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good Can give a try for POS,Have Exp in BDE in recruitment firm will schedule with Bharathi Axa Gajendra 2nd round interviewed by Gokul and move forwarded', '5', '1', '', '1', '1', '', '2', '2022-09-23', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-22 11:47:51', 85, '2022-09-22 12:05:20', 0, NULL, 1),
(10265, 'Ashok s', '23', '9047746929', '', 'ashokrathinam@outlook.com', '1995-01-13', 27, '2', '2', 'SELVARATHINAM M', 'Teacher', 60000.00, 3, 0.00, 240000.00, 'Vedaranyam Tamilnadu', 'Bangalore', '2209220007', '1', '1', 'upload_files/candidate_tracker/57478436397_Ashok.s-Resume.pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude issue Holding several offers and looking for more most preferred location to work is bangalore not ready to learn additional Skills on UI Development and not ready to stay more than an year', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-22 01:01:42', 1, '2022-09-22 01:06:02', 0, NULL, 1),
(10266, 'J. Aishwariya', '5', '8072618318', '9884147420', 'aishwariyaaice13122001@gmail.com', '2001-12-13', 20, '3', '2', 'Jayashankar', 'Business', 30000.00, 1, 0.00, 15000.00, 'Pallavaram', 'Pallavaram', '2209220008', '', '1', 'upload_files/candidate_tracker/36412090988_ais.pdf', NULL, '1', '2022-09-22', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Telecaller Sales 5050 Profile Came along with friend Sustainability Doubts Need to analyse in 7 days training will confirm once again the interest of the candidate and schedule her for the telephonic', '5', '1', '0', '1', '1', '0', '2', '2022-09-23', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 01:25:02', 1, '2022-09-22 01:33:09', 0, NULL, 1),
(10267, 'Anish kumar', '14', '9344482493', '9626064549', 'anishkumar200204@gmail.com', '2002-12-04', 19, '3', '2', 'T.Ganesan', 'Bussiness', 25000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2209220009', '', '1', 'upload_files/candidate_tracker/34796239219_ANISH RESUME PYTHON (1).docx', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic knowledge in Javascript Scheduled them for 2nd level but left without attending ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 01:26:09', 1, '2022-09-22 01:33:54', 0, NULL, 1),
(10268, 'Sakthi pragadeesh', '14', '9360514137', '9344482493', 'Mr.sakthipragadeesh@gmail.com', '2002-01-13', 20, '3', '2', 'A.selvaganapathy', 'Business man', 50000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2209220010', '', '1', 'upload_files/candidate_tracker/24364352254_SAKTHI RESUME PYTHON (1).docx', NULL, '1', '2022-09-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Knowledge In Javascript Scheduled Them For 2nd Level But Left Without Attending ', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 01:26:11', 1, '2022-09-22 01:34:20', 0, NULL, 1),
(10269, 'Praveen Kumar', '31', '9176045519', '8072154183', 'pravinaustin619@gmail.com', '1998-09-13', 24, '2', '2', 'Venkatesan E', 'Driver', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2209220011', '1', '1', 'upload_files/candidate_tracker/25030441029_PRAVEEN.pdf', NULL, '1', '2022-09-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT, Not much strong in basic JS Skills,Looking for Direct Employment not much comfort in Internship Role,Need time to check with family on the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-22 01:53:16', 60, '2022-09-22 03:31:45', 0, NULL, 1),
(10270, 'Lokeshkumar', '16', '8778111388', '8678974541', 'lokeshavi.1904@gmail.com', '1996-04-19', 26, '3', '2', 'Kamalakannan', 'Labour', 400000.00, 1, 370000.00, 425000.00, 'Chennai', 'Chennai', '2209220012', '', '2', 'upload_files/candidate_tracker/82188513228_Lokesh resume 2022- 2023.pdf', NULL, '2', '2022-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 04:04:36', 1, '2022-09-22 05:54:26', 0, NULL, 1),
(10271, 'Shravan ponnappa', '5', '7619591637', '9481140299', 'shravanponnappa451@gmail.com', '1997-04-30', 25, '2', '2', 'Thirthakumar DA', 'Agriculture', 100000.00, 2, 0.00, 25000.00, 'Kodagu', 'Bangalore', '2209220013', '1', '1', 'upload_files/candidate_tracker/48871655724_SHRAVAN PONNAPPA Resume1.pdf', NULL, '1', '2022-09-22', 0, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-22 04:53:32', 85, '2022-09-22 05:23:45', 0, NULL, 1),
(10272, 'k kumar', '16', '7708990912', '8248331344', 'kumaransanthosh554@gmail.com', '1994-05-25', 28, '3', '2', 'ragava kuppan', 'construction', 25000.00, 2, 25000.00, 30000.00, 'gerukkambakkam uthukottai tiruvallur', 'villivakkam chennai', '2209220014', '', '2', 'upload_files/candidate_tracker/62186806458_resume.docx', NULL, '3', '2022-09-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-22 05:12:13', 1, '2022-09-22 05:34:48', 0, NULL, 1),
(10273, '', '0', '6383904474', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209220015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-22 06:11:31', 0, NULL, 0, NULL, 1),
(10274, 'Jenifer', '4', '8148493161', '7010471521', 'jj2709905@gmail.com', '2000-04-02', 22, '2', '2', 'Ramalingam (parent)', 'Driver', 35000.00, 2, 16000.00, 18000.00, 'Chennai', 'Chennai', '2209220016', '1', '2', 'upload_files/candidate_tracker/3721712828_Adobe Scan Sep 17, 2022.pdf', NULL, '1', '2022-09-24', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-22 08:11:38', 85, '2022-09-24 10:23:59', 0, NULL, 1),
(10275, '', '0', '9150615620', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 08:12:26', 0, NULL, 0, NULL, 1),
(10276, '', '0', '6381659585', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 08:32:15', 0, NULL, 0, NULL, 1),
(10277, 'Shilpa Muthusamy', '31', '7305291049', '9943629668', 'shilpamuthusamy07@gmail.com', '2000-03-07', 22, '2', '2', 'Muthusamy', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2209230003', '1', '1', 'upload_files/candidate_tracker/71823055987_Shilpa_Muthusamy_Resume_.docx', NULL, '1', '2022-09-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need time to confirm with the parents if she comes back let us try can be trained', '2', '1', '', '1', '1', '', '2', '2022-09-26', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 10:12:42', 96, '2022-09-23 03:37:03', 0, NULL, 1),
(10278, 'Resun Richard J', '13', '7358441419', '9791018596', 'resunrichard007@gmail.com', '1998-12-14', 23, '2', '2', 'John Kumar R', 'Auto driver', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209230004', '1', '1', 'upload_files/candidate_tracker/67780881909_Resun Richard J. Resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance around 40 kms up and down Looking much on the salary growth He was into civil earlier will not sustain in our roles', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-23 10:27:17', 1, '2022-09-23 10:33:20', 0, NULL, 1),
(10279, 'Yogapriya', '31', '9080942012', '9885664534', 'yogapriyamoorthi121199@gmail.com', '2007-09-23', 0, '2', '2', 'Parent', 'Farmer', 200000.00, 1, 0.00, 15000.00, 'Salem', 'Pallavaram, chennai', '2209230005', '1', '1', 'upload_files/candidate_tracker/36506317234_Yogapriya.doc', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Dot Net Profile,Have reference in multiple companies and looking for some more', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 10:50:15', 96, '2022-09-23 03:38:20', 0, NULL, 1),
(10280, 'Christine Poulose', '16', '9941260680', '', 'christinepoulose152@gmail.com', '2002-03-15', 20, '2', '2', 'T. P. Poulose', 'Petrol station (supervisor)', 400000.00, 1, 0.00, 18000.00, 'Thekinedath house, Aluva, kerala', 'No. 4 , Divya homes, Ambattur, Chennai 53.', '2209230006', '1', '1', 'upload_files/candidate_tracker/35932521726_pdf_20220909_125503_0000.pdf', NULL, '1', '2022-09-24', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to be trained a lot thinking a lot on TxxampC May travel to native,5050 Profile do check and let me know your interest', '3', '2', '', '1', '3', '', '2', '1970-01-01', '1', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:01:03', 60, '2022-09-24 01:31:28', 0, NULL, 1),
(10281, 'manobala', '4', '8220426031', '', 'dmanosiva5@gmail.com', '1999-01-24', 23, '3', '2', 'dhanabal', 'farmer', 10000.00, 1, 0.00, 10000.00, 'orathanadu', 'orathanadu', '2209230007', '', '1', 'upload_files/candidate_tracker/70036931310_manobala.pdf', NULL, '1', '2022-09-23', 0, '', '3', '59', '2022-09-28', 126312.00, '', '4', '2022-10-10', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:14:16', 60, '2022-09-27 07:10:14', 0, NULL, 1),
(10282, 'mukilarasi', '4', '7339320189', '', 'mugilarasi1906@gmail.com', '1999-06-19', 23, '3', '2', 'elamaran', 'farmer', 12000.00, 3, 0.00, 10000.00, 'orathanadu', 'orathanadu', '2209230008', '', '1', 'upload_files/candidate_tracker/43539895689_M.MUGILARASI .docx', NULL, '1', '2022-09-23', 0, '', '3', '59', '2022-09-28', 126312.00, '', '4', '2022-10-10', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:16:09', 60, '2022-09-27 06:49:10', 0, NULL, 1),
(10283, 'Kumaresan.M', '31', '9384721596', '', 'kumaresanmpi@gmail.com', '1997-11-08', 24, '2', '2', 'Mariappan', 'Coolie', 10000.00, 3, 0.00, 300000.00, 'Tirunelveli', 'Chennai', '2209230009', '1', '1', 'upload_files/candidate_tracker/61105295574_kumaresan2.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Have Project Exp in HTML CSS No Javascript in depth Need to be trained a lot ,they need time to confirm on the TxxampC if they come back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:19:44', 60, '2022-09-23 02:53:33', 0, NULL, 1),
(10284, 'Barathraj K', '23', '9025092281', '9944914045', 'barathbeiem@gmail.com', '1999-05-18', 23, '2', '2', 'Seethalakshmi', 'House wife', 20000.00, 1, 0.00, 300000.00, '3/109,North st, sivanadanoor apnadanoor post', 'Athanancherry', '2209230010', '1', '1', 'upload_files/candidate_tracker/70009230077_barathraj.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Have Project Exp In HTML CSS No Javascript In Depth Theoritically ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:22:23', 96, '2022-09-23 03:39:10', 0, NULL, 1),
(10285, 'SATHIS KUMAR', '23', '8870586620', '9150871910', 'sathishvivis6620@gmail.com', '1998-06-02', 24, '2', '1', 'Srinivasan', 'Work', 20000.00, 2, 0.00, 25000.00, 'Thoraipakkam', 'Thoraipakkam', '2209230011', '1', '1', 'upload_files/candidate_tracker/80243351674_SATHISHKUMAR S RESUME.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', '2', '1', '', '1', '1', '', '2', '2022-09-26', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:23:56', 96, '2022-09-23 03:39:43', 0, NULL, 1),
(10286, 'Raghul Raj B', '23', '7708043136', '', 'Raghulnov13@gmail.com', '1993-11-13', 28, '2', '2', 'Balasubramanian', 'no work', 10000.00, 1, 0.00, 25000.00, 'Thoraipakam', 'thoraipakam', '2209230012', '1', '1', 'upload_files/candidate_tracker/94610626942_Resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:26:48', 96, '2022-09-23 03:40:40', 0, NULL, 1),
(10287, 'Vignesh.C', '23', '7385830782', '9578979211', 'vickykasthu@gmail.com', '1997-12-29', 24, '2', '2', 'Chella Pandian.S', 'Daily worker', 18000.00, 1, 0.00, 250000.00, 'Tenkasi', 'Chennai', '2209230013', '1', '1', 'upload_files/candidate_tracker/60257126832_VigneshUpdatedResume (1).pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Have Project Exp In HTML CSS No Javascript In Depth Theoritically Ok Need To Be Trained A Lot ,They Need Time To Confirm On The TxxampC If They Come Back Let Us Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 11:27:03', 96, '2022-09-23 03:41:24', 0, NULL, 1),
(10288, 'kristiya', '4', '7826985904', '9843564882', 'kristiya0905@gmail.com', '2000-05-09', 22, '3', '2', 'arulsamy', 'farmer', 20000.00, 2, 0.00, 10000.00, 'pudukkottai', 'thanjavur', '2209230014', '', '1', 'upload_files/candidate_tracker/44053347274_krish.docx', NULL, '1', '2022-09-23', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team and not that much professional', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:30:29', 1, '2022-09-23 11:59:11', 0, NULL, 1),
(10289, 'Syed Aarif', '6', '9944503062', '', 'aarifhasan073@gmail.com', '1999-09-29', 22, '1', '2', 'Bakkiral Begam', 'House wife', 15000.00, 3, 0.00, 15000.00, 'Tenkasi', 'Chrompet', '2209230015', '', '2', 'upload_files/candidate_tracker/30903956826_Aarif resume(1)(1).pdf', NULL, '1', '2022-09-23', 0, 'P1330', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:37:07', 60, '2022-09-23 12:39:36', 0, NULL, 1),
(10290, 'Srinath senthilkumar', '14', '8940113720', '', 'sribros0307@gmail.com', '2000-07-13', 22, '3', '2', 'Senthilkumar V', 'Business', 30000.00, 2, 0.00, 3.25, 'Aranthangi', 'Aranthangi', '2209230016', '', '1', 'upload_files/candidate_tracker/3760883101_srinath resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Left without attending', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:40:11', 1, '2022-09-23 11:58:12', 0, NULL, 1),
(10291, 'Muganth k', '14', '8056756958', '8754717457', 'muganthkvs@gmail.com', '2000-05-11', 22, '4', '2', 'Kanagaraj', 'Business', 30000.00, 1, 0.00, 3.50, 'Karaikudi', 'Thoraipakkam', '2209230017', '', '1', 'upload_files/candidate_tracker/3367370740_Muganth K Resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Andriod /Java positions no ideas in the Flutter also need time to confirm on the positions he id interested', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:40:17', 1, '2022-09-23 11:46:34', 0, NULL, 1),
(10292, 'R.karthick', '6', '9176482897', '9092186477', 'Karthickrajendren08012001@gmail.com', '2001-01-08', 21, '1', '2', 'Kasthuri', 'House wife', 10000.00, 1, 10000.00, 15000.00, 'Villivakkam', 'Villivakkam', '2209230018', '', '2', 'upload_files/candidate_tracker/45521856671_karthikrajendiran resume-1.pdf', NULL, '1', '2022-09-23', 0, 'P1330', '1', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:51:55', 60, '2022-09-23 12:39:05', 0, NULL, 1),
(10293, 'j. verginiya', '4', '9585170261', '', 'verginiyakuttyma@gmail.com', '2000-04-09', 22, '3', '2', 'g. jesuraj', 'farmer', 20000.00, 1, 0.00, 12000.00, 'pudukottai', 'thanjavur', '2209230019', '', '1', 'upload_files/candidate_tracker/82358231764_Verginiya Resume.pdf', NULL, '1', '2022-09-23', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'no voice clarity and high expectation', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:55:13', 1, '2022-09-23 12:08:32', 0, NULL, 1),
(10294, 'MOSES JESURAJ', '4', '9176833779', '', 'gmvahan1961@gmail.com', '1994-12-03', 27, '1', '2', 'Mayilvahan', 'Business', 30000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2209230020', '', '2', 'upload_files/candidate_tracker/28304352656_Moses M.pdf', NULL, '2', '2022-09-23', 0, '55577', '3', '59', '2022-09-26', 189468.00, '', '', '2022-10-03', '2', 'Selected for B2b in consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'Banu commited incerment based on performance in 6 months', '', '', '', NULL, NULL, NULL, 1, '2022-09-23 11:56:28', 85, '2022-09-23 06:06:19', 0, NULL, 1),
(10295, 'Vignesh', '13', '8344424233', '9865976574', 'Vignesh200297@gmail.com', '1997-02-20', 25, '2', '2', 'Subramanian', 'Farmar', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209230021', '1', '1', 'upload_files/candidate_tracker/99441910255_vignesh cv.pdf', NULL, '1', '2022-09-23', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 12:52:49', 96, '2022-09-23 03:43:21', 0, NULL, 1),
(10296, '', '0', '9176700964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 05:21:53', 0, NULL, 0, NULL, 1),
(10297, 'Lekha', '28', '9940315953', '', 'sujatharajasekar1997@gmail.com', '1997-11-14', 24, '3', '2', 'Rangaraj', 'Late', 1.00, 0, 0.00, 25000.00, 'Chennai', 'Chennai', '2209230023', '', '2', 'upload_files/candidate_tracker/2545651397_LEKHA R RESUME 02.pdf', NULL, '3', '2022-09-24', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 05:33:41', 1, '2022-09-23 05:40:03', 0, NULL, 1),
(10298, 'Rajesh B', '5', '9677121901', '', 'Rajesh.balakrish.9598@gmail.com', '1998-05-09', 24, '2', '2', 'Balakrishnan', 'Self employed', 40000.00, 1, 351000.00, 550000.00, 'Tambaram East', 'Ambattur', '2209230024', '1', '2', 'upload_files/candidate_tracker/76869070480_Resume.pdf', NULL, '1', '2022-09-24', 15, '', '3', '59', '2022-10-06', 450000.00, '', '', '2022-10-12', '1', 'Communication Is Good Not Sure On Making The Calls Currently As Asst Manager 5050 Profile Ctc Ok Can Give A Try Kindly Check And Let Me Know Your Inputs - - - -Selected for BDM Role - Sriram Sir Reporting', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-23 05:45:56', 60, '2022-10-07 05:23:08', 0, NULL, 1),
(10299, '', '0', '7358754405', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:01:41', 0, NULL, 0, NULL, 1),
(10300, '', '0', '8870224095', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:07:55', 0, NULL, 0, NULL, 1),
(10301, '', '0', '6364712801', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:09:30', 0, NULL, 0, NULL, 1),
(10302, '', '0', '6382350994', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:13:34', 0, NULL, 0, NULL, 1),
(10303, '', '0', '9384615001', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 06:48:18', 0, NULL, 0, NULL, 1),
(10304, 'K.Anitha', '5', '8428519984', '7448445858', 'anithakalai2017@gmail.com', '1998-11-19', 23, '2', '2', 'p.kalaimani', 'Daily wages', 20000.00, 1, 2.00, 20000.00, 'Jeeva Nagar 4th Street New Washermenpet Chennai-81', 'Jeeva nagar 4th Street new washermenpet chennai-81', '2209230030', '1', '2', 'upload_files/candidate_tracker/14176227803_Document (2) (3)-1.pdf', NULL, '1', '2022-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-09-23 07:04:07', 1, '2022-09-23 07:06:45', 0, NULL, 1),
(10305, '', '0', '6379833724', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 07:38:11', 0, NULL, 0, NULL, 1),
(10306, '', '0', '8838922408', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 07:56:19', 0, NULL, 0, NULL, 1),
(10307, '', '0', '8686506186', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 07:57:20', 0, NULL, 0, NULL, 1),
(10308, '', '0', '7550260136', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 07:58:08', 0, NULL, 0, NULL, 1),
(10309, 'K. Raheema Begum', '22', '7448838964', '9751166927', 'raheemabegumk@gmail.com', '2001-02-18', 21, '2', '2', 'A. Kamal Basha', 'Imam', 15000.00, 1, 0.00, 25000.00, 'Erode', 'Erode', '2209230035', '1', '1', 'upload_files/candidate_tracker/77643232673_CV_2022080219423075.pdf', NULL, '3', '2022-09-24', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-23 08:20:20', 85, '2022-09-24 09:53:09', 0, NULL, 1),
(10310, 'C Jaya Chara', '25', '9666511802', '', 'jayachandrajaychu007@gmail.com', '1998-09-09', 24, '2', '2', 'C Sunkanna', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Bengaluru', 'Bengaluru', '2209230036', '1', '1', 'upload_files/candidate_tracker/15637476473_Jaya Chandra Resume-converted (2).pdf', NULL, '1', '2022-09-24', 0, '', '1', '93', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '8', '1', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 08:40:55', 85, '2022-09-24 05:13:16', 0, NULL, 1),
(10311, 'Yaswanth Kumar', '5', '9515256053', '', 'yaswanthk42@gmail.com', '1993-03-12', 29, '2', '2', 'B S Jayantha Lakshmi', 'Retd. Teacher', 10000.00, 1, 30000.00, 45000.00, 'Peapully', 'Bengaluru', '2209230037', '1', '2', 'upload_files/candidate_tracker/98892146311_Resume CSA.docx', NULL, '1', '2022-09-24', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he doesnxquott have same field experience but expecting 5lac ctc', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-23 08:46:31', 85, '2022-09-24 05:14:09', 0, NULL, 1),
(10312, '', '0', '6385527224', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 09:04:04', 0, NULL, 0, NULL, 1),
(10313, '', '0', '9100637479', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230039', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 09:45:02', 0, NULL, 0, NULL, 1),
(10314, '', '0', '8870873996', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230040', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 10:28:37', 0, NULL, 0, NULL, 1),
(10315, '', '0', '8534872063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230041', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 11:24:50', 0, NULL, 0, NULL, 1),
(10316, '', '0', '7010945339', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209230042', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-23 11:37:24', 0, NULL, 0, NULL, 1),
(10317, 'Surekha', '4', '9789956576', '9791149670', 'surekhah1997@gmail.com', '1997-08-30', 25, '3', '2', 'Hussain', 'Driver', 54000.00, 1, 18000.00, 25000.00, 'Chennai', 'Villivakkam', '2209230043', '', '2', 'upload_files/candidate_tracker/45507748417_Surekha Resume (6).pdf', NULL, '3', '2022-09-26', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-23 11:42:23', 1, '2022-09-23 11:48:21', 0, NULL, 1),
(10318, '', '0', '8870873995', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 08:22:14', 0, NULL, 0, NULL, 1),
(10319, 'Nurul Hassan', '5', '9113896831', '8723093937', 'Nurulhassanlaskar132@gmail.com', '1994-12-14', 27, '3', '2', 'Abdul Mannaf Laskar', 'Farmer', 10000.00, 1, 26000.00, 35000.00, 'Hailakandi', 'Murheshpalya', '2209240002', '', '2', 'upload_files/candidate_tracker/33456609406_mostRecent.pdf', NULL, '1', '2022-09-24', 0, '', '5', '56', NULL, 0.00, '', '0', NULL, '1', 'Looking for inside sales job', '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-24 08:32:03', 1, '2022-09-24 11:15:18', 0, NULL, 1),
(10320, 'Monika PM', '13', '9000903616', '', 'monika.pm566@gmail.com', '1998-02-13', 24, '3', '2', 'PP mahadevan', 'Weaver', 50000.00, 1, 20000.00, 25000.00, 'Nagari, Andhra Pradesh', 'Bengaluru', '2209240003', '', '2', 'upload_files/candidate_tracker/80108090374_P M MONIKA (1).pdf', NULL, '3', '2022-09-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-24 09:34:00', 1, '2022-09-24 09:42:22', 0, NULL, 1),
(10321, 'Hari Prasath M', '23', '8270542724', '', 'hariprasath2724@gmail.com', '2007-09-24', 0, '2', '2', 'Malaiyalam P', 'Carpenter', 1.50, 1, 0.00, 3.00, 'Karur', 'Karur', '2209240004', '1', '1', 'upload_files/candidate_tracker/6107254523_pdf_20220902_121354_0000.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Distance Neeed to see stating along with his brother should check with brother on TxxampC,Basics in React.He need time to confirm his interest on the profile ,also looking for some more stipend ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 09:44:06', 85, '2022-09-24 09:53:25', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10322, 'BALAN.E', '13', '8270113271', '6379925301', 'balan98in@gmail.com', '1998-05-20', 24, '4', '2', 'Elumalai', 'Farmer', 7000.00, 0, 0.00, 25000.00, 'TIRUVANNAMALAI', 'Chennai', '2209240005', '', '1', 'upload_files/candidate_tracker/97532910242_CV1.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills in PHP,have only Java Python Will not handle our pressure and sustain Given time to learn', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-24 11:16:06', 1, '2022-09-24 11:20:13', 0, NULL, 1),
(10323, 'SALMAAN KHAN A', '5', '7418835331', '', 'dwaynesalman@gmail.com', '1997-04-23', 25, '2', '2', 'Na', 'Na', 30000.00, 3, 35000.00, 45000.00, 'CHENNAI', 'CHENNAI', '2209240006', '1', '2', 'upload_files/candidate_tracker/68495143685_SALMAAN KHAN.docx', NULL, '1', '2022-09-24', 45, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication is Good Fresher for our domain have exp in calling activity can be trained candudate need time to think on his expectations 4.5 LPA Current due to night shift we suggested 3.5 LPA', '5', '1', '', '1', '1', '', '2', '2022-09-26', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 11:16:58', 85, '2022-09-24 12:41:29', 0, NULL, 1),
(10324, 'Vijayalaskhmi', '6', '6383180259', '', 'Vijiguna2610@gmail.com', '2001-10-26', 20, '1', '2', 'Gunasekaran', 'Painter', 20000.00, 1, 15000.00, 17000.00, 'Anna nagar west', 'Anna nagar west', '2209240007', '', '2', 'upload_files/candidate_tracker/15958271549_pdf_20220913_231951_0000.pdf', NULL, '1', '2022-09-24', 30, 'P1325', '3', '59', '2022-09-29', 198000.00, '', '3', '2022-12-01', '2', 'Selected for Kannan Team - Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-24 11:55:44', 60, '2022-09-27 06:35:52', 0, NULL, 1),
(10325, 'ISSAC RAJA SINGH S', '5', '8778086071', '9445231620', 'issacrajasinghsalamanv@gmail.com', '2000-11-09', 21, '2', '2', 'SALAMAN V', 'Deiver', 96000.00, 2, 0.00, 20000.00, 'New washermenpet', 'New washermenpet', '2209240008', '1', '1', 'upload_files/candidate_tracker/99528179314_curriculum vitae new1..pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to speak out looking for Non Voice Process will not handle the sales pressure', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 12:16:01', 85, '2022-09-24 12:41:54', 0, NULL, 1),
(10326, 'ROHITH', '4', '9962165847', '', 'ROHITHSATHYAN31@GMAIL.COM', '2007-09-24', 15, '2', '2', 'Parents', 'Carpenter', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2209240009', '1', '1', 'upload_files/candidate_tracker/12329113377_Image to PDF 20220918 09.51.57.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 12:20:28', 85, '2022-09-24 12:50:17', 0, NULL, 1),
(10327, 'S. Tajun Nisha', '11', '7010548037', '9940487525', 'tajunnisha19@gmail.com', '2001-04-19', 21, '3', '2', 'Father', 'Carpenter', 20000.00, 1, 0.00, 12000.00, 'No.110 A Union Carbide Colony kodungaiyur', 'No.110A union carbide colony kodungaiyur', '2209240010', '', '1', 'upload_files/candidate_tracker/89979836769_Tajun Nisha S Resume-1.docx', NULL, '1', '2022-09-24', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need to be trained not open for 2 yrs convicnced on 1 yrs but need to check with her family on TxxampC if she comes back let us try', '6', '1', '', '1', '1', '', '2', '2022-09-27', '2', '8', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-24 12:21:55', 1, '2022-09-24 12:49:46', 0, NULL, 1),
(10328, 'ohqmmed sajjad basha', '4', '7358622487', '7010926596', 'bashasajjad4@gmail.com', '2001-11-16', 20, '2', '2', 'azeez basha', 'real estate', 30000.00, 0, 0.00, 15000.00, 'mount road', 'mount road', '2209240011', '1', '1', 'upload_files/candidate_tracker/59868708637_mohammed sajjad basha (1).pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Comfort to work in non voice not ready to handle the pressure communication Average', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 12:28:16', 85, '2022-09-24 12:53:47', 0, NULL, 1),
(10329, '', '0', '7010548036', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 12:48:49', 0, NULL, 0, NULL, 1),
(10330, 'Nivedha', '4', '7603808367', '', 'Nivedhanithya12344@gmail.com', '2002-09-24', 20, '2', '2', 'Suresh kumar', 'Late', 16000.00, 1, 16000.00, 18000.00, 'Thondairyarpet', 'Thondairyarpet', '2209240013', '1', '2', 'upload_files/candidate_tracker/92801452155_nivedha.pdf.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For Our Sales,Have Real Estate Exp,But No Proof And No Clarity From The Candidate On Her Employment. she is performing part time beautician Focusing Only On The Salary And Not Ready To Negotiate ,Family Need Is There But Need To Open A Lot ,Will Not Handle Our Pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-24 02:25:40', 1, '2022-09-24 03:02:36', 0, NULL, 1),
(10331, 'Aathi lakshmi', '4', '8015088916', '', 'Adhilakshmia674@gmail.com', '1999-08-06', 23, '2', '2', 'Antony', 'Late', 16000.00, 0, 16000.00, 18000.00, 'Thondairpet', 'Thodaiyarpet', '2209240014', '1', '2', 'upload_files/candidate_tracker/52238529795_aathi lakshmi .pdf.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our Sales,Have Real Estate Exp,but no proof and no clarity from the candidate on her employment.Focusing only on the salary and not ready to negotiate ,Family need is there but need to open a lot ,will not handle our pressue', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-24 02:26:05', 1, '2022-09-24 03:10:31', 0, NULL, 1),
(10332, 'Katika Ganesh', '5', '9182941650', '9515195854', 'ganeshkatika89@gmail.com', '1999-06-14', 23, '2', '2', 'Katika vengamuni', 'farmer', 350000.00, 1, 21000.00, 27000.00, 'Kadiri', 'Bangalore', '2209240015', '1', '2', 'upload_files/candidate_tracker/80296032371_0_Ganesh.Cv...pdf', NULL, '1', '2022-09-24', 15, '', '3', '59', '2022-09-29', 336000.00, '', '5', '1970-01-01', '1', 'Selected for Manivel Team - Madiwaala Location', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 02:36:29', 60, '2022-09-28 05:48:52', 0, NULL, 1),
(10333, 'susmith sirivella', '5', '9133704584', '', 'www.susmithbhai786@gmail.com', '2000-08-28', 22, '2', '2', 'ravi shekar sirivella', 'mechanical engineer', 25000.00, 1, 23000.00, 28000.00, 'Cuddapah', 'kudlugate', '2209240016', '1', '2', 'upload_files/candidate_tracker/47716747373_Sushmith_CV (2).pdf', NULL, '1', '2022-09-24', 0, '', '3', '59', '2022-09-29', 345696.00, '', '', '2022-09-30', '1', 'Selected for Muppudathy Mani - Staff Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 02:36:37', 60, '2022-09-27 06:59:26', 0, NULL, 1),
(10334, 'Sri Ram', '11', '7550190616', '9344346307', '054sriram@gmail.com', '1997-04-30', 25, '2', '2', 'M Swaminathan', 'Bank employee', 350000.00, 0, 17000.00, 18000.00, 'Chennai', 'Chennai', '2209240017', '1', '2', 'upload_files/candidate_tracker/37926835417_Sriram Resume.pdf', NULL, '1', '2022-09-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-24 02:54:16', 96, '2022-09-27 04:13:26', 0, NULL, 1),
(10335, 'Varsha', '5', '9360291976', '9566005141', 'varshasanthoshkumar08@gmail.com', '2000-04-08', 23, '2', '1', 'Narayan', 'Bussines', 12000.00, 2, 14999.00, 17000.00, 'Kodungaiyur', 'Kodungaiyur', '2209240018', '1', '2', 'upload_files/candidate_tracker/18437890902_VARSHA RESUME.docx', NULL, '1', '2023-06-22', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile have exp in calling kindly check and let meknow your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1015', '', NULL, NULL, NULL, 1, '2022-09-24 03:17:56', 101, '2023-06-21 04:46:08', 0, NULL, 1),
(10336, '', '0', '7708190064', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 04:29:40', 0, NULL, 0, NULL, 1),
(10337, 'Santhosh bharathi S', '4', '9344107985', '', 'Santhoshh4053@gmail.com', '2000-10-25', 21, '2', '2', 'Sathiyamoorthy C', 'Manager', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209240020', '1', '1', 'upload_files/candidate_tracker/97004639886_SANTHOSH BHARATHI SATHIYAMOORTHY.docx', NULL, '1', '2022-09-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-24 06:12:45', 85, '2022-09-26 10:06:47', 0, NULL, 1),
(10338, '', '0', '7358287166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 06:17:03', 0, NULL, 0, NULL, 1),
(10339, '', '0', '9962444112', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209240022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-24 06:45:25', 0, NULL, 0, NULL, 1),
(10340, 'Vignesh', '5', '9840207097', '', 'Vbavani79@gmail.com', '1995-08-19', 27, '2', '2', 'Uma', 'Homemaker', 1000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209240023', '1', '2', 'upload_files/candidate_tracker/39001158993_vignesh-cv.pdf', NULL, '1', '2022-09-27', 10, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'p', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-24 06:58:43', 60, '2022-09-27 12:32:57', 0, NULL, 1),
(10341, 'Dillybabu S', '5', '8610658807', '9176211556', 'Pandian0193@gmail.com', '1994-07-11', 28, '2', '2', 'Selvaraj A', 'Loadman', 30000.00, 1, 34000.00, 37000.00, 'Ennore', 'Ennore', '2209240024', '1', '2', 'upload_files/candidate_tracker/68271255428_RESUME.pdf', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-28', 345696.00, '', '', '2022-10-06', '1', 'Have Exp In Sales,Can Be Trained Ready To Negotaite On The Salary Only Thing Is Distance Need To See Do Check And Let Me Know Your Interest - -Selected for Shanmugam Team ,final round interviewed by gaurav and got selected', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-24 10:39:00', 60, '2022-09-26 07:49:58', 0, NULL, 1),
(10342, 'Thamemul Ansari M M I', '16', '9087741163', '', 'MMIANsari05@gmail.com', '1997-10-05', 24, '2', '2', 'Mohamed Iqbal', 'Driver', 23000.00, 0, 300000.00, 400000.00, 'Chennai', 'Chrnnai', '2209240025', '1', '2', 'upload_files/candidate_tracker/31057231187_ThamemulAnsari.pdf', NULL, '1', '2022-09-27', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 1yr Exp and his current CTC 3LPA Exp 3.5-4 LPA and much looking for IT Domain need to learn additional skills will not sustain in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-24 10:57:06', 85, '2022-09-27 10:12:26', 0, NULL, 1),
(10343, '', '0', '9150100856', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-25 10:33:30', 0, NULL, 0, NULL, 1),
(10344, 'Akash NB', '26', '9841659959', '', 'akash28901@gmail.com', '2001-09-28', 20, '3', '2', 'Balaji', 'Business', 40000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2209260001', '', '1', 'upload_files/candidate_tracker/56936071881_AKASH .pdf', NULL, '2', '2022-09-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 01:22:48', 1, '2022-09-26 04:26:52', 0, NULL, 1),
(10345, 'Sathish Kumar. P', '23', '9342101760', '9787182758', 'sathishsrisri978@gmail.com', '1998-07-17', 24, '3', '2', 'Ponnusamy. M', 'Trichy', 10000.00, 2, 0.00, 15000.00, 'Trichy', 'Thambaram', '2209260002', '', '1', 'upload_files/candidate_tracker/80455073514_SATHISH RESUME.pdf', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-29', 120000.00, '', '0', NULL, '2', 'Selected For Internship Cum Employment - 5months 5K Then 8-12K Salary Based On Performance 3yr Employment SA', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 11:29:14', 1, '2022-09-26 11:42:45', 0, NULL, 1),
(10346, 'Sandhiya', '6', '9150642890', '', 'kssandy97@gmail.com', '2000-08-14', 22, '1', '2', 'Karthikeyan', 'Labour', 15000.00, 2, 0.00, 15000.00, 'Villupuram', 'Chennai', '2209260003', '', '1', 'upload_files/candidate_tracker/4695301828_sandy newwwww.pdf', NULL, '1', '2022-09-26', 0, 'Ca146', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'low voice , We suggested for arumbakkam branch but she s willing to join tnagar oly', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 11:40:53', 1, '2022-09-26 11:45:18', 0, NULL, 1),
(10347, 'gayathri mariappan', '4', '8778218274', '', 'gayathrimariappan00@gmail.com', '2000-05-23', 22, '2', '2', 'mariappan', 'coli', 9000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2209260004', '2', '1', 'upload_files/candidate_tracker/7771560517_Gayatri.pdf', NULL, '1', '2022-09-26', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'having 1yr experience but she doesnt suit for telecalling. exp 15k', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 11:43:39', 1, '2022-09-26 11:45:44', 0, NULL, 1),
(10348, 'durga k', '4', '9384613499', '', 'durgadivya53@gmail.com', '2000-03-24', 22, '2', '2', 'krishnan', 'no', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2209260005', '2', '1', 'upload_files/candidate_tracker/21160129942_Share', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-28', 138948.00, '', '5', '1970-01-01', '2', '5050 Have Exp In Collection Too Long Distance Can Check For Arumbakkam Sustainanbility Doubts Kindly Check And Let Me Know Your Inputs - - Selected for arumbakkam consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-26 11:46:56', 60, '2022-09-26 07:12:16', 0, NULL, 1),
(10349, 'Akash', '6', '9361054952', '', 'arunakash93610@gmail.com', '2002-05-19', 20, '1', '2', 'Suresh Kumar V', 'Dham tea', 20000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2209260006', '', '1', 'upload_files/candidate_tracker/76646460749_Akash resume.pdf', NULL, '1', '2022-09-26', 0, 'P1311', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 12:02:28', 1, '2022-09-26 12:07:25', 0, NULL, 1),
(10350, 'V.Suganya', '11', '8072461819', '7358471871', 'karthicksuganya977@gmail.com', '2001-03-01', 21, '2', '2', 'G.venkatesan', 'Auto driver', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209260007', '1', '1', 'upload_files/candidate_tracker/61599154623_suganya.pdf', NULL, '1', '2022-09-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication need to open a lot will not handle our Pressure and not clear with the opportunities she want to get in', '6', '1', '', '1', '3', '', '2', '1970-01-01', '2', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-26 12:03:29', 60, '2022-09-26 12:29:32', 0, NULL, 1),
(10351, 'S.Pooja', '11', '7358390325', '7338806898', 'poojasivakumar029@gmail.com', '2000-11-29', 21, '2', '2', 'S . Dhanalakshmi', 'Park gaudier', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209260008', '1', '1', 'upload_files/candidate_tracker/59314585603_Resume pooja_POOJA. S.pdf', NULL, '1', '2022-09-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average Can be trained fresher for recruitment 5050 Can give a try if she comes back let us try', '6', '1', '', '1', '3', '', '2', '2022-09-27', '2', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-26 12:06:52', 60, '2022-09-26 12:39:13', 0, NULL, 1),
(10352, 'Thulasiram R', '4', '6369749541', '8056937007', 'Thulasiram.R07@gmail.com', '2007-09-26', 0, '2', '2', 'Ravichandran G', 'Business', 80000.00, 1, 400000.00, 600000.00, 'KARUR', 'Chennai', '2209260009', '1', '2', 'upload_files/candidate_tracker/42810698965_THULASIRAM-RESUME.docx', NULL, '1', '2022-09-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Dropped - Have Exp in B2B Sales and not looking for high Salary focusing only on the salary, processed him for Bharathi Axa but didnt turn for interview not interested to get into sales', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-26 12:37:18', 85, '2022-09-26 12:56:28', 0, NULL, 1),
(10353, 'Jenifer', '4', '7010471521', '8148493161', 'jj2709905@gmail.com', '2000-04-02', 22, '2', '2', 'Ramalingam (parent)', 'Driver', 35000.00, 2, 15000.00, 17000.00, 'Chennai', 'Chennai', '2209260010', '1', '2', 'upload_files/candidate_tracker/13959572964_Adobe Scan Sep 17, 2022.pdf', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-27', 189468.00, '', '', '2022-10-03', '2', 'Selected for B2B consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-26 01:03:37', 60, '2022-09-26 06:55:45', 0, NULL, 1),
(10354, 'Bhagath', '5', '9600147547', '9444242948', 'bhagath.sr@gmail.com', '2007-09-26', 0, '2', '2', 'Santhanam', 'Sales', 350000.00, 0, 0.00, 30000.00, 'Chennai', 'Chennai', '2209260011', '1', '2', 'upload_files/candidate_tracker/87855594096_Bhagath Resume.pdf', NULL, '1', '2022-09-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our Sales Have Exp in B2B Medical Equipment Sales 33 yrs Too long Distance up and down 60kms sustainability doubts if he comes back let us try', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-26 01:20:17', 85, '2022-09-26 01:38:05', 0, NULL, 1),
(10355, 'Bala Devi M', '11', '8072189529', '7448483656', 'balaammu2016@gmail.com', '1999-05-13', 23, '2', '2', 'Murugan', 'Business', 10000.00, 1, 0.00, 1.75, 'Chennai', 'Chennai', '2209260012', '1', '1', 'upload_files/candidate_tracker/18118167868_BALA DEVI (resume).pdf', NULL, '1', '2022-09-26', 0, '', '3', '59', '2022-09-29', 144000.00, '', '', '1970-01-01', '2', 'Selected for Internship cum Employment - 3months 7.5 K then 12-14K salary based on Performance 1yr employment SA', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-26 01:45:44', 60, '2022-09-26 04:02:58', 0, NULL, 1),
(10356, 'Savithasomu', '11', '9150265364', '', 'Savithasomu94@gmail.com', '1994-06-15', 28, '2', '2', 'Somu', 'Former', 12.00, 2, 18.00, 22.00, 'Thiruvarur', 'Vadapalani', '2209260013', '1', '2', 'upload_files/candidate_tracker/83677282798_RESUME NEW.pdf', NULL, '1', '2022-09-26', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the interview', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-26 01:51:13', 85, '2022-09-26 03:46:25', 0, NULL, 1),
(10357, 'Sandhiya', '17', '6380666267', '', 'Sandy156999@gmail.com', '1999-06-15', 23, '2', '2', 'Murugan k', 'Business', 35000.00, 1, 24000.00, 30000.00, 'Muthapudatet', 'Muthapudapet', '2209260014', '1', '2', 'upload_files/candidate_tracker/8373597422_Resume - Sandhiya(new).pdf', NULL, '1', '2022-09-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance not ready to relocate around 68kms up and down Fresher will not sustain due to distance', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-26 01:57:22', 1, '2022-09-27 11:57:07', 0, NULL, 1),
(10358, 'Udayakumar', '5', '9677007857', '', 'jacobpat004@gmail.com', '1997-04-16', 25, '2', '2', 'Mani', 'Tailor', 25.00, 2, 15000.00, 220000.00, 'Putlur', 'Pattabiram', '2209260015', '1', '2', 'upload_files/candidate_tracker/57468341085_Udaya experience resume new.docx', NULL, '1', '2022-09-28', 10, '', '3', '59', '2022-10-03', 261696.00, '', '', '2022-10-17', '2', 'Selected for Sarath Team - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-26 02:18:17', 60, '2022-09-30 06:18:51', 0, NULL, 1),
(10359, '', '0', '9159775152', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209260016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-26 02:34:44', 0, NULL, 0, NULL, 1),
(10360, 'T.SREENIVASULU', '22', '8499004766', '7981504101', 'tsreenivasulu77@gmail.com', '1996-05-29', 26, '3', '2', 'Venkatesh achari', 'Farmer', 85000.00, 0, 17000.00, 25000.00, 'Chittoor', 'Chittoor', '2209260017', '', '2', 'upload_files/candidate_tracker/11775435144_Sreenivasulu Resume 8499004766.docx', NULL, '3', '2022-10-15', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 05:02:11', 1, '2022-09-26 05:20:10', 0, NULL, 1),
(10361, '', '0', '9345634052', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209260018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-26 05:49:15', 0, NULL, 0, NULL, 1),
(10362, 'Vetamoorthy', '31', '6380081425', '', 'moorthydcse@gmail.com', '1996-10-26', 25, '2', '2', 'Gomathisundari V', 'Teacher', 600000.00, 1, 0.00, 250000.00, 'Tirunelveli', 'Chennai', '2209260019', '1', '1', 'upload_files/candidate_tracker/23158203912_CVupdated.pdf', NULL, '1', '2022-10-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic knowledge and 6 months internship Exp but need to be trained a lot,2nd round interviewed by gokul and given time to confirm his interest if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-10-10', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-26 06:51:47', 85, '2022-10-03 11:40:31', 0, NULL, 1),
(10363, 'Nancy', '4', '6379617285', '8148207785', 'nancylivingzton@gmail.com', '2000-08-21', 22, '3', '2', 'John', 'Quality analyst', 200000.00, 1, 13000.00, 20000.00, 'Tamabaram', 'Tamabaram', '2209260020', '', '2', 'upload_files/candidate_tracker/50921601826_Nancy Resume.docx', NULL, '3', '2022-09-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-26 07:46:07', 1, '2022-09-26 07:53:05', 0, NULL, 1),
(10364, '', '0', '7305763508', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209260021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-26 08:09:22', 0, NULL, 0, NULL, 1),
(10365, 'Karthik', '4', '8220230149', '8220102171', 'vkarthik859@gmail.com', '2001-08-13', 21, '4', '2', 'Vaithiyanathan', 'Daily Wager', 84000.00, 1, 20000.00, 18000.00, 'Mayiladuthurai', 'Chennai', '2209270001', '', '2', 'upload_files/candidate_tracker/19388820642_Resume WE - 1663954609.pdf', NULL, '3', '2022-10-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-27 12:36:36', 1, '2022-10-03 05:22:47', 0, NULL, 1),
(10366, 'Arun Ananth', '4', '8925211670', '', 'arunananth7009@gmail.com', '1996-05-10', 26, '2', '2', 'Murugasamy', 'Coolie', 15000.00, 1, 0.00, 20000.00, 'thoothukudi', 'Chennai', '2209270002', '1', '2', 'upload_files/candidate_tracker/99468443871_Arun resume.pdf', NULL, '1', '2022-09-27', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Non Voice No Communicaiton Will not sustain and handle our pressure not suitable', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-27 07:20:08', 85, '2022-09-27 09:34:37', 0, NULL, 1),
(10367, '', '0', '7871030180', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 08:32:10', 0, NULL, 0, NULL, 1),
(10368, 'Sowndhariya A', '6', '9843476113', '7395986113', 'sowndhariyaarjunan@gmail.com', '1999-07-09', 23, '2', '2', 'Arjunan V', 'Business', 350000.00, 1, 0.00, 15000.00, 'Erode', 'Erode', '2209270004', '1', '1', 'upload_files/candidate_tracker/24441577490_sowndhariya A.pdf', NULL, '1', '2022-09-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested to join She Dragged a lot for giving her confirmation to our roles', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-27 10:26:43', 85, '2022-09-27 10:51:59', 0, NULL, 1),
(10369, 'Vignesh.r', '5', '8807506180', '8807506189', 'vv288966@gmail.com', '2001-04-24', 21, '2', '2', 'Nithya nathan', 'Moter mechanic', 21000.00, 1, 0.00, 20000.00, 'K block hll nagar tondiar pet chennai-81', 'Tondiar pet chennai-81', '2209270005', '25', '1', 'upload_files/candidate_tracker/45833727755_vignesh RES.pdf', NULL, '1', '2022-09-27', 0, '', '5', '86', NULL, 0.00, '', '0', NULL, '2', 'Not Satisfied. ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-27 10:30:03', 1, '2022-09-27 10:40:43', 0, NULL, 1),
(10370, 'R.Arunagiri', '6', '6380655547', '9698730411', 'arunagiri07112001@gmail.com', '2001-11-07', 20, '2', '2', 'K.Ramasamy', 'Office Assistant', 50000.00, 0, 10000.00, 19000.00, 'Erode', 'Erode', '2209270006', '1', '2', 'upload_files/candidate_tracker/8853650374_Arunagiri.Resume.pdf', NULL, '1', '2022-09-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Voice not suitable for our profile', '5', '2', '', '4', '7', '', '1', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-27 11:18:58', 85, '2022-09-27 12:50:05', 0, NULL, 1),
(10371, 'Suresh V', '13', '9566433593', '', 'sureshpostbox003@gmail.com', '1999-06-25', 23, '2', '2', 'Velu', 'Nil', 10000.00, 2, 0.00, 17000.00, 'Chennai', 'Chennai', '2209270007', '1', '1', 'upload_files/candidate_tracker/92661254085_MY_RESUME_1.pdf', NULL, '1', '2022-09-27', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher only basic knowledge 5050 can give a try kindly check and let me know your interest\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-27 11:40:25', 60, '2022-09-27 03:46:11', 0, NULL, 1),
(10372, 'S.Esther', '4', '9360757250', '7401641364', 'esthersolomon146@gmail.com', '2001-10-06', 20, '2', '2', 'G.Solomon', 'Painter', 13000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2209270008', '1', '1', 'upload_files/candidate_tracker/18084378069_resume.docx', NULL, '1', '2022-09-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Ok with the caller profile,but need to confirm with the family on the position if she comes back let us try', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-27 11:45:29', 1, '2022-09-27 12:05:27', 0, NULL, 1),
(10373, 'maayavan', '5', '7373610943', '', 'mayavanvikraman1989@gmail.com', '1989-05-17', 33, '2', '1', 'vikraman', 'no', 14000.00, 4, 20000.00, 24000.00, 'salem', 'salem', '2209270009', '2', '2', 'upload_files/candidate_tracker/43304783583_MAYAVAN.docx', NULL, '3', '2022-09-29', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average fresher for our Domain,5050 kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-27 11:48:59', 60, '2022-09-29 10:33:43', 0, NULL, 1),
(10374, 'RAJAPANDIYAN J', '5', '8838605336', '', 'rajapandiyan597@gmail.com', '1997-05-20', 27, '2', '1', 'Jakkaiyan', 'Nil', 25000.00, 1, 25000.00, 30000.00, 'Aranmanaipudhur Theni 625531', 'Ennore - Chennai 600057', '2209270010', '1', '2', 'upload_files/candidate_tracker/73773357067_RAJAPANDIYANUPDATE.docx', NULL, '1', '2024-08-19', 30, '', '5', '138', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he candidate struggled to effectively convey their thoughts and ideas during the interview and candidatexquots technical knowledge fell short of the requirements for the position so i decided final status is rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1017', '', '55634', '55557', '1970-01-01', 1, '2022-09-27 11:49:03', 104, '2024-08-19 03:52:56', 0, NULL, 1),
(10375, 'Dilipkumar G', '5', '9962093003', '7338950544', 'ajaykumar955136@gmail.com', '2000-10-23', 21, '3', '2', 'Vennila G', 'Sales', 20000.00, 1, 18000.00, 25000.00, '240 kandhasami nagar 6th Street maduravoyal', '240 kandhasami nagar 6th Street maduravoyal', '2209270011', '', '2', 'upload_files/candidate_tracker/2981345651_ajay-2.pdf', NULL, '1', '2022-09-27', 15, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ol', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-27 11:50:04', 60, '2022-09-27 01:23:00', 0, NULL, 1),
(10376, 'Birundha', '11', '9080718824', '', 'Biundhabass21@gmail.com', '2001-10-21', 20, '2', '2', 'Baskaran', 'Driver', 22000.00, 2, 0.00, 18000.00, 'Guindy', 'Guindy', '2209270012', '1', '1', 'upload_files/candidate_tracker/48393037367_Birundha resume 2022-1.pdf', NULL, '1', '2022-09-27', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Looking for Accounts Profile,Need to train a lot have knowledge in tally,will check and confirm ', '6', '1', '', '1', '1', '', '2', '2022-09-30', '2', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-27 12:11:17', 60, '2022-09-27 01:03:43', 0, NULL, 1),
(10377, '', '0', '9360366044', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 12:17:06', 0, NULL, 0, NULL, 1),
(10378, '', '0', '9344159629', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 01:29:49', 0, NULL, 0, NULL, 1),
(10379, 'sandeep bachu', '5', '9390858468', '9494342038', 'bachusandeep89@gmail.com', '1991-02-23', 31, '2', '2', 'bachu vijay kumar', 'rice shop', 30000.00, 0, 40000.00, 40000.00, 'hyderabad', 'bangalore', '2209270015', '1', '2', 'upload_files/candidate_tracker/365612425_BachuSandeepKumarResume.pdf', NULL, '1', '2022-09-27', 0, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '2', '1970-01-01', '3', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-27 01:31:54', 60, '2022-09-27 06:54:27', 0, NULL, 1),
(10380, 'Burru suresh kumar', '5', '8106393182', '8247495009', 'Maheshburra430@gmial.com', '1994-06-10', 28, '2', '2', 'B. Anjineyulu', 'Farmer', 30000.00, 2, 23000.00, 30000.00, 'Anantapur', 'Bangalore', '2209270016', '1', '2', 'upload_files/candidate_tracker/67848460755_Suresh Burra_Updated_Resume.pdf', NULL, '1', '2022-09-27', 0, '', '1', '56', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-27 01:32:31', 1, '2022-09-27 01:46:14', 0, NULL, 1),
(10381, 'Girija R', '17', '7550151503', '7550151504', 'girijasureshkumar2602@gmail.com', '1991-06-04', 31, '2', '1', 'V Suresh Kumar', 'Officer in Engineering department in DP World CCTL', 40000.00, 2, 15000.00, 20000.00, 'No.1, 6th street Asirvadhapuram Pulianthope Ch-12', 'No.1, 6th Street Asirvadhapuram Pulianthope Ch-12', '2209270017', '1', '2', 'upload_files/candidate_tracker/39593798792_Girija R - Resume - 22-Sep-2022.pdf', NULL, '1', '2022-09-27', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication ok can give a try for POS caller profile,need to check with gajendra ,once done will let the candidate know the status\n', '5', '1', '0', '1', '1', '0', '2', '2022-09-28', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-27 03:03:48', 1, '2022-09-27 03:26:08', 0, NULL, 1),
(10382, 'SENTHIL KUMAR V', '5', '9789136236', '8124271820', 'senthilkumarkamala97@gmail.com', '1997-04-10', 25, '2', '2', 'KAMALA V', 'Gardeniar', 19000.00, 1, 10000.00, 18000.00, 'Vilathikulam', 'Vandalur', '2209270018', '1', '2', 'upload_files/candidate_tracker/78848026854_Resume.pdf', NULL, '1', '2022-09-28', 13, '', '3', '59', '2022-10-12', 192000.00, '', '7', '1970-01-01', '1', 'Selected for Manikandan Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-27 03:55:20', 60, '2022-10-05 01:13:33', 0, NULL, 1),
(10383, '', '0', '8660155437', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 06:42:57', 0, NULL, 0, NULL, 1),
(10384, 'Asmath fathima', '4', '9962031934', '8667651169', 'asmathrz204@gmail.com', '2000-10-20', 21, '2', '1', 'Mohammed Yasin', 'Business', 25000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2209270020', '1', '1', 'upload_files/candidate_tracker/73372804102_Resume.docx', NULL, '1', '2022-09-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Dropped Candidate is not interested with the profile', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-27 06:45:56', 85, '2022-09-28 10:07:21', 0, NULL, 1),
(10385, 'divya e', '4', '7299042143', '8124417612', 'divyamariappan97@gmail.com', '1997-12-07', 24, '3', '1', 'mariappan k', 'hp sales and service', 50000.00, 1, 15500.00, 23000.00, 'chennai', 'chennai', '2209270021', '', '2', 'upload_files/candidate_tracker/99522146129_Divya resume updated copy.pdf', NULL, '1', '2022-10-01', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-27 06:50:43', 1, '2022-09-27 06:56:02', 0, NULL, 1),
(10386, '', '0', '1234456789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 08:36:18', 0, NULL, 0, NULL, 1),
(10387, '', '0', '8681057070', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209270023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-27 08:41:03', 0, NULL, 0, NULL, 1),
(10388, 'S.Bose', '5', '9962413816', '8825805170', 'boseuixdesigner@gmail.com', '2001-09-26', 21, '1', '2', 'B.Sasikumar', 'Driver', 14000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2209270024', '', '1', 'upload_files/candidate_tracker/31724859187_Bose_Resume.pdf', NULL, '1', '2022-09-30', 0, '12345', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher Pressure handling no have knowledge in UIUX but want to get into Sales,too long distance up and down 78 kms sustainability doubts', '5', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-27 10:46:22', 1, '2022-09-27 10:57:00', 0, NULL, 1),
(10389, '', '0', '7683905641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-28 12:19:08', 0, NULL, 0, NULL, 1),
(10390, 'Magesh E', '4', '8056109159', '9380413201', 'mageshwill1999@gmail.com', '1999-03-02', 23, '2', '2', 'Elumalai P', 'House broker', 12000.00, 1, 11000.00, 15000.00, 'Chennai', 'Chennai', '2209280002', '2', '2', 'upload_files/candidate_tracker/55190250040_MAGESH2RESUMEE.pdf', NULL, '1', '2022-09-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Insurance domain not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 09:57:28', 1, '2022-09-28 10:26:11', 0, NULL, 1),
(10391, 'HEERA LOGANATHAN', '11', '9790611506', '9498303629', 'heera4101999@gmail.com', '1999-10-04', 22, '2', '2', 'Loganathan S', 'Lining Works', 10000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2209280003', '1', '1', 'upload_files/candidate_tracker/22440967405_HEERA L.pdf', NULL, '1', '2022-09-28', 0, '', '3', '59', '2022-09-30', 90000.00, '', '', '2023-01-19', '2', 'Communication sounds good can be trained fresher 2nd round interviewed by gokul and shortlisted for the recruiter role - Internship cum employment 2yrs SA 3 months Intern', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 10:36:58', 60, '2022-09-30 07:15:04', 0, NULL, 1),
(10392, 'mythyli', '4', '8148790704', '', 'mythilimalu1997@gmail.com', '1997-06-10', 25, '2', '1', 'dharani', 'driver', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2209280004', '2', '1', 'upload_files/candidate_tracker/46379171685_Mythili new resume 15.docx', NULL, '1', '2022-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Dropped Not responding the calls and got an update from consultancy that she is not interested', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 10:38:05', 1, '2022-09-29 09:40:02', 0, NULL, 1),
(10393, 'Nishanth G', '11', '8939443481', '8939104074', 'nishanth8gopi@gmail.com', '1999-06-09', 23, '2', '2', 'Gopinathan E', 'Auuto driver', 20000.00, 1, 0.00, 13000.00, 'No.3/100 Bajanai Koil Street,Madipakkam,chennai', 'No.3/100 Bajanai Koil Street,Madipakkam,Chennai', '2209280005', '1', '1', 'upload_files/candidate_tracker/73550397377_Nishanth resume.pdf', NULL, '1', '2022-09-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Non Voice Process Will not sustain in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 11:00:32', 60, '2022-09-28 05:46:32', 0, NULL, 1),
(10394, 'vijay', '5', '7092500297', '8754443494', 'vijayjoe0500@gmail.com', '1997-07-21', 25, '1', '2', 'subburaj', 'own business', 18000.00, 2, 0.00, 22000.00, 'chennai', 'chennai', '2209280006', '', '1', 'upload_files/candidate_tracker/4638606618_cphxj-50k9b.pdf', NULL, '1', '2022-09-28', 0, '55585', '3', '59', '2022-10-03', 240000.00, '', '5', '1970-01-01', '1', 'Selected for GK Sir Team with the commitment - Commitment - 1L Target in Oct,completes then 20K Net from Nov', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-28 11:02:02', 60, '2022-09-30 06:17:01', 0, NULL, 1),
(10395, 'deepa lakshmi', '5', '7550011346', '9677224762', 'nattobokki@gmail.com', '1995-11-30', 26, '3', '2', 'thirunavakkarasu', 'media', 30000.00, 1, 45000.00, 50000.00, 'perambur', 'perambur', '2209280007', '', '2', 'upload_files/candidate_tracker/4477057820_DEEPA LAKSHMI.docx', NULL, '1', '2022-09-28', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good Have frequent Job Changes Sustainability Doubts on this profile Need to check with Bharati Axa', '5', '2', '0', '1', '1', '0', '2', '2022-09-30', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-09-28 11:43:48', 1, '2022-09-28 11:58:37', 0, NULL, 1),
(10396, 'Ananda prabu', '5', '8344491636', '', 'Anandprabu060@gmail.com', '1997-01-31', 25, '1', '2', 'Kannimuthu', 'Supervisor', 260000.00, 1, 220000.00, 25000.00, 'Tamabaram', 'Tambaram', '2209280008', '', '2', 'upload_files/candidate_tracker/1992890277_Anandprabu.pdf', NULL, '1', '2022-09-28', 30, 'P1329', '5', '71', NULL, 0.00, '', '0', NULL, '1', 'Not satisfied', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 11:52:54', 1, '2022-09-28 02:20:59', 0, NULL, 1),
(10397, 'Rajesh', '5', '7502194235', '', 'rajesekar210@gmail.com', '1997-10-02', 24, '2', '2', 'Sekar', 'Farmer', 12000.00, 2, 24000.00, 28000.00, 'Porur', 'Porur', '2209280009', '1', '2', 'upload_files/candidate_tracker/57314418498_mcg5g-wj9zy.pdf', NULL, '1', '2022-09-28', 30, '', '3', '59', '2022-11-09', 340000.00, '', '7', '1970-01-01', '1', 'Selected for Shanmugam Team - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-28 11:53:53', 60, '2022-09-30 06:19:34', 0, NULL, 1),
(10398, 'Revathi', '16', '7305587284', '8939655989', 'revathi24071989@gmail.com', '1989-07-24', 33, '2', '1', 'Ranjan', 'B.com', 10000.00, 1, 22000.00, 22000.00, 'Chennai', 'Chennai', '2209280010', '1', '2', 'upload_files/candidate_tracker/15266228867_Revathi -resume new.docx', NULL, '1', '2022-09-28', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average Have 7 yrs of Exp in Financial Pre/Post Dispersal can be trained kindly check and let me know your interest', '3', '2', '', '4', '6', '', '2', '1970-01-01', '2', '5', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 12:01:52', 60, '2022-09-28 06:24:08', 0, NULL, 1),
(10399, 'Periyasamy', '5', '9688012657', '', 'periyasamys16@gmail.com', '1995-08-16', 27, '2', '2', 'Saravanan', 'Investors', 12000.00, 1, 0.00, 25000.00, 'Kalackurichi', 'Chennai', '2209280011', '1', '2', 'upload_files/candidate_tracker/90372272346_Resume (2) (1) (1).pdf', NULL, '1', '2022-09-28', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not interested in insurance selling', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-28 01:00:55', 96, '2022-09-28 01:14:14', 0, NULL, 1),
(10400, 'BALAKUMAR ANANDAN', '5', '8883335125', '', 'balakumaranandan@gmail.com', '1994-12-06', 27, '2', '2', 'K ANANDAN', 'Trader', 30000.00, 1, 0.00, 18000.00, 'Udumalaipettai', 'Ekkatuthangal', '2209280012', '1', '1', 'upload_files/candidate_tracker/26489438942_Balakumar resume hd.pdf', NULL, '1', '2022-09-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No confidence to speak and much preferred to be in nonvoice and pressure Free Career Gap Will not sustain', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-28 01:01:07', 96, '2022-09-28 01:13:20', 0, NULL, 1),
(10401, 'Ghaanesh Prakash', '11', '7010404339', '', 'ghaaneshp@gmail.com', '1996-08-27', 26, '2', '2', 'Prakash T', 'Daily wage', 12000.00, 0, 250000.00, 280000.00, 'Kolathur', 'Kolathur', '2209280013', '1', '2', 'upload_files/candidate_tracker/306417491_Ghaanesh Prakash HR.pdf', NULL, '1', '2022-09-28', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication sound s good but have an attitude issue will not sustain in our roles and long run doubts 2nd Round Rejected', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 01:48:27', 60, '2022-09-28 03:39:42', 0, NULL, 1),
(10402, 'Siddhi', '11', '8925305403', '', 'Sriddhi124@gmail.com', '2001-04-24', 21, '2', '2', 'Yaswant singh', 'Business', 16000.00, 2, 0.00, 200000.00, 'Vyasarpadi, Chennai', 'Vyasarpadi,chennai', '2209280014', '1', '1', 'upload_files/candidate_tracker/56408957347_Siddhi__.pdf', NULL, '1', '2022-09-28', 0, '', '3', '59', '2022-09-29', 90000.00, '', '0', NULL, '2', 'Communication Sounds Good Can Be Trained Fresher 2nd Round Interviewed By Gokul And Shortlisted For The Recruiter Role - Internship Cum Employment 2yrs Sa 3 Months Intern', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-09-28 02:34:28', 1, '2022-09-28 02:38:20', 0, NULL, 1),
(10403, 'Riddhi', '11', '9941603335', '', 'Rsiddhi124@gmail.com', '2001-04-24', 21, '2', '2', 'Yaswant singh', 'Business', 16000.00, 2, 0.00, 200000.00, 'Vyasarpadi, Chennai', 'Vyasarpadi,chennai', '2209280015', '1', '1', 'upload_files/candidate_tracker/21522175747_Riddhi__.pdf', NULL, '1', '2022-09-28', 0, '', '3', '59', '2022-09-29', 90000.00, '', '0', NULL, '2', 'Communication Sounds Good Can Be Trained Fresher 2nd Round Interviewed By Gokul And Shortlisted For The Recruiter Role - Internship Cum Employment 2yrs Sa 3 Months Intern', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-09-28 02:37:59', 1, '2022-09-28 02:43:14', 0, NULL, 1),
(10404, '', '0', '9789987694', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209280016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-28 04:06:24', 0, NULL, 0, NULL, 1),
(10405, '', '0', '9789820733', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209280017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-28 04:14:48', 0, NULL, 0, NULL, 1),
(10406, 'Britto raja', '11', '8778102372', '9941342841', 'brittoraja1999@gmail.com', '1999-11-15', 22, '2', '2', 'Joseph Mangalraj', 'Dms', 40000.00, 1, 0.00, 20000.00, 'No:16/95 LDG Road Little mount Saidapet Chennai15', 'No:16/95 LDG Road Little Mount Saidapet Chennai15', '2209280018', '1', '1', 'upload_files/candidate_tracker/73314994315_R.N_BRITTO_Raja_(1).pdf', NULL, '1', '2022-09-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Being Frehser Salary Exp is very high will not sustain in our roles not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-09-28 04:24:27', 60, '2022-09-28 05:06:54', 0, NULL, 1),
(10407, '', '0', '9940301808', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209280019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-28 06:24:12', 0, NULL, 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10408, 'Dharshana', '6', '8072121741', '9865568235', 'dharshanakul52@gmail.com', '2000-10-05', 21, '2', '2', 'Kulansaisamy', 'textile', 25000.00, 1, 0.00, 15000.00, 'erode', 'erode', '2209280020', '1', '1', 'upload_files/candidate_tracker/31173813762_Dharshana', NULL, '1', '2022-09-29', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'shexquots take own time for interview so sustainability doubt', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-28 06:24:46', 85, '2022-09-28 07:23:13', 0, NULL, 1),
(10409, 'Praveenkumar.v', '5', '9361270207', '6380484887', 'PRAVEENKUMARPAPU007@GMAIL.COM', '2001-07-07', 21, '2', '2', 'Venkatesan. P', 'Store employee', 12000.00, 0, 23000.00, 25000.00, 'No.54 c.s nagar pb road pattalam chennai.12', 'No.144/a n.m.k 1st lane ayanavaram chennai 23', '2209280021', '1', '2', 'upload_files/candidate_tracker/95943677349_1623856768621Resume_Praveen.pdf', NULL, '1', '2023-01-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our Domain looking for Recruiter role and not much comfort in sales and Salary Exp is very high already holds an offer for 40K', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-28 06:24:50', 85, '2023-01-24 05:39:42', 0, NULL, 1),
(10410, 'Jothimani C', '13', '9994138014', '', 'jothimani2347@gmail.com', '1999-02-04', 23, '3', '2', 'D. Chithiraivel, C. Vijayalakshmi', 'School Attender, House wife', 36800.00, 4, 14800.00, 25000.00, 'Thoothukudi', 'Chennai', '2209280022', '', '2', 'upload_files/candidate_tracker/34597197112_C Jothimani Resume (2).pdf', NULL, '3', '2022-10-11', 45, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 10:40:43', 1, '2022-09-28 10:51:50', 0, NULL, 1),
(10411, 'G Rajasekaran', '6', '8248774553', '9943349887', 'grajasekaranvg@gmail.com', '1997-05-20', 25, '3', '2', 'Na', '.', 15.00, 2, 18.00, 4.00, 'Vellore', 'Bangalore', '2209280023', '', '2', 'upload_files/candidate_tracker/82443826593_RAJASEKARAN RESUME.pdf', NULL, '3', '2022-09-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-28 11:44:06', 1, '2022-09-28 11:48:04', 0, NULL, 1),
(10412, 'Subasree', '28', '8925312127', '', 'subasree2871@gmail.com', '1997-02-08', 25, '4', '2', 'PARTHASARATHY', 'Nil', 1000.00, 2, 23000.00, 35000.00, 'Chennai', 'Chennai', '2209290001', '', '2', 'upload_files/candidate_tracker/62831932717_Subasree Resume - mail.pdf', NULL, '3', '2022-10-02', 11, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 02:24:39', 1, '2022-09-29 02:31:25', 0, NULL, 1),
(10413, 'vishal', '6', '8825975254', '', 'vishalkanchana5@gmail.com', '1995-03-24', 27, '2', '1', 'venugopal', 'security', 14000.00, 0, 12000.00, 13000.00, 'chennai', 'chennai', '2209290002', '2', '2', 'upload_files/candidate_tracker/43249568048_Sundar-1.docx', NULL, '1', '2022-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Stability and no Sales Exp frequent job changes not suitable and will not sustain', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 09:41:55', 1, '2022-09-29 09:44:46', 0, NULL, 1),
(10414, 'Subash s', '13', '8883412899', '9345045217', 'subash03061999@gmail.com', '1999-06-03', 23, '2', '2', 'Soundharrajan', 'Farmer', 60000.00, 2, 0.00, 12000.00, 'Kallakurichi', 'Villivakkam', '2209290003', '1', '1', 'upload_files/candidate_tracker/203104069_Subash.pdf', NULL, '1', '2022-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very fresh candidate need to train a lot not open for TxxampC No basic skills knowledge', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-09-29 09:50:19', 85, '2022-09-29 10:07:51', 0, NULL, 1),
(10415, 'manimozhi d', '4', '7604968744', '', 'mozhi.mani14@gmail.com', '1993-09-14', 29, '2', '2', 'devaraj', 'farmer', 16000.00, 1, 14000.00, 15000.00, 'chennai', 'chennai', '2209290004', '2', '2', 'upload_files/candidate_tracker/8447668132_Mani resume.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no idea about telecalling, will not suit for our process', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:07:48', 1, '2022-09-29 10:10:12', 0, NULL, 1),
(10416, '', '0', '9566789536', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209290005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-29 10:11:15', 0, NULL, 0, NULL, 1),
(10417, 'B JANAKIRAMAN', '13', '9962404206', '9789847069', 'janakiraman171201@gmail.com', '2001-12-17', 20, '3', '2', 'D BASKAR', 'Carpenter', 60000.00, 0, 0.00, 15000.00, 'pallavaram', 'pallavaram', '2209290006', '', '1', 'upload_files/candidate_tracker/13578463433_JANAKIRAMAN RESUME (1).docx', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has some Knowledge in php. not Open up... Sustainability doubts. not ok with txxampc too', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:19:46', 1, '2022-09-29 10:23:11', 0, NULL, 1),
(10418, 'Sundari Rajendran', '2', '6379375803', '9578063561', 'sundari12012019@gmail.com', '2000-01-24', 22, '3', '2', 'Rajendran', 'Working in grocery shop', 14000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Chennai', '2209290007', '', '1', 'upload_files/candidate_tracker/4641594486_SUNDARI R_Formal Resume.pdf', NULL, '1', '2022-09-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:21:23', 1, '2022-09-29 10:40:38', 0, NULL, 1),
(10419, 'K.Selsiya', '2', '7094307310', '', 'selsiyakoilpitchai@gmail.com', '2000-09-28', 22, '3', '2', 'P.Koilpitchai', 'Weaver', 15000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Chennai', '2209290008', '', '1', 'upload_files/candidate_tracker/12112119781_selsiya.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:22:32', 1, '2022-09-29 10:33:45', 0, NULL, 1),
(10420, 'Suriyaprakash k', '11', '7395836673', '9360151457', 'Suriya1604003@gmail.com', '1999-04-16', 23, '3', '2', 'Kannan', 'Farmer', 200000.00, 2, 0.00, 23000.00, '31 PERUMALAGARAM salai koradachery 613703', '113, Yadava St, Adambakkam, Chennai, 600088', '2209290009', '', '1', 'upload_files/candidate_tracker/47598594773_Suriyaprakash.pdf', NULL, '1', '2022-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication no basic ideas in the skills will not sustain in our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:43:48', 1, '2022-09-29 11:28:55', 0, NULL, 1),
(10421, 'Vishalini', '13', '6374389950', '9566852815', 'vishalinibe2000@gmail.com', '2007-09-29', 0, '3', '2', 'Manikkavasagam', 'Farmer', 20000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Chennai', '2209290010', '', '1', 'upload_files/candidate_tracker/52131542766_VISHALINI RESUME.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'good at skills but no stability ... her brother already working in IT., fresher sal expt high xxamp not ok with terms too. ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:47:15', 1, '2022-09-29 10:50:12', 0, NULL, 1),
(10422, 'Pushparaj. V', '13', '9080549731', '6374994324', 'pushparaj16092@gmail.com', '1999-12-02', 22, '3', '2', 'Vemban. R', 'Plastic Worker', 18000.00, 1, 0.00, 25000.00, 'PUDUCHERRY', 'Velachery', '2209290011', '', '1', 'upload_files/candidate_tracker/22829779044_Pushparaj Resume .pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Left Without Attending The Interview', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 10:54:11', 1, '2022-09-29 11:05:11', 0, NULL, 1),
(10423, 'Mugilan', '13', '8870325677', '', 'mugilanar666@gmail.com', '1997-07-21', 25, '2', '2', 'NA', 'Unemployee', 10000.00, 1, 0.00, 20000.00, 'Dharmapuri', 'Tamabaram,chennai', '2209290012', '1', '1', 'upload_files/candidate_tracker/73119964470_ResumeD22.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Hv Basic Skills, no stability mind .. focusing on sal. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-29 11:12:31', 85, '2022-09-29 11:29:55', 0, NULL, 1),
(10424, 'Pagalavan P', '13', '9894159831', '9444987260', 'pagalavanweb@gmail.com', '2002-10-07', 19, '3', '2', 'Periyasami Raja.G', 'Driver', 300000.00, 1, 0.00, 200000.00, 'Sevelimedu, kanchipuram.', 'K.K.Nagar, Chennai.', '2209290013', '', '1', 'upload_files/candidate_tracker/33851660052_Pagalavanweb(1).pdf', NULL, '1', '2022-09-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher SCheduled him for 2nd round basic skills have knowledge not open with TxxampC and left without attending the 2nd round', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:18:18', 1, '2022-09-29 11:27:26', 0, NULL, 1),
(10425, '', '0', '9003627977', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209290014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-29 11:20:57', 0, NULL, 0, NULL, 1),
(10426, 'T. Gokulakrishnan', '13', '6380322171', '9943213704', 'gg527839@gmail.com', '2002-09-16', 20, '3', '2', 'M. Tamilmani', 'Former', 22000.00, 1, 0.00, 200000.00, 'Mannargudi, vattar, kezhaputhu(st), 614717.', 'Chennai, Tambaram', '2209290015', '', '1', 'upload_files/candidate_tracker/25190776268_Org. Gokul.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'doing course. one week more but already got offer for 15k. focusing on salary. will not suit for our company', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:21:32', 1, '2022-09-29 11:29:03', 0, NULL, 1),
(10427, 'Umavathi.k', '13', '8825971278', '9626598180', 'umakathiresanmca@gmail.com', '1997-03-14', 25, '3', '2', 'Kathiresan .s', 'Former', 40000.00, 3, 13000.00, 16000.00, 'Trichy', 'Chennai', '2209290016', '', '2', 'upload_files/candidate_tracker/58052518488_UMAVATHI.K.docx', NULL, '1', '2022-09-29', 3, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our roles no basic skills will not sustain and not suitable ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:22:58', 1, '2022-09-29 11:32:11', 0, NULL, 1),
(10428, 'Kavitha Subramani', '13', '9655229953', '9487718892', 'kavithasmv14@gmail.com', '1998-06-14', 24, '3', '2', 'Saraswathi', 'House wife', 2000.00, 2, 15000.00, 20000.00, 'Virudhunagar', 'Chennai', '2209290017', '', '2', 'upload_files/candidate_tracker/37295831650_Kavitha Subramani.pdf', NULL, '1', '2022-09-29', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher SCheduled Him For 2nd Round Basic Skills Have Knowledge high CTC Exp 2nd round reject by gokul', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:52:32', 1, '2022-09-29 12:00:10', 0, NULL, 1),
(10429, 'SUDHA BHARATHI KESAVAN', '13', '9385322371', '', 'sudhabharathikesavan@gmail.com', '2000-02-23', 22, '3', '2', 'KESAVAN', 'FARMER', 7000.00, 2, 0.00, 20000.00, 'Chennai', 'Thoothukudi', '2209290018', '', '1', 'upload_files/candidate_tracker/78029010450_CV- Sudha Bharathi K.pdf', NULL, '2', '2022-09-30', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 11:55:28', 1, '2022-09-29 12:10:28', 0, NULL, 1),
(10430, 'Muthukumar', '15', '6379375976', '9600417687', 'Muthukumarkrish1999@gmail.com', '2007-09-29', 0, '3', '2', 'Krishnamooorthi', 'Farming', 7.00, 2, 2.30, 3.00, 'Kumbakonam', 'Adayar', '2209290019', '', '2', 'upload_files/candidate_tracker/79341720198_Muthukumar Resume.pdf', NULL, '1', '2022-09-29', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no understanding, has 8m exp as a graphic designer ..sal exp high .. Sustainability doubts..', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 12:25:20', 1, '2022-09-29 12:48:16', 0, NULL, 1),
(10431, 'M SURIYAPRAKASH', '5', '7358674939', '9962702424', 'suryaprakash23296@gmail.com', '1996-02-23', 26, '1', '2', 'M Madhavan', 'Daily wages', 40000.00, 0, 24000.00, 25000.00, 'Mugalivakkam', 'Mugalivakkam', '2209290020', '', '2', 'upload_files/candidate_tracker/4407482361_Suriya resume.pdf', NULL, '1', '2022-09-29', 0, 'P1377', '3', '59', '2022-10-10', 300000.00, '', '4', '2023-02-01', '1', 'Selected for RM Role,SAnthosh Team - STAFF ROLE - Have Exp In Sales But Not A Relevant One Can Be Trained', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-29 03:13:29', 60, '2022-10-07 06:09:22', 0, NULL, 1),
(10432, '', '0', '6383483234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209290021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-29 06:35:11', 0, NULL, 0, NULL, 1),
(10433, 'Deepthi R', '13', '8524823419', '8489658015', 'deepyoon16@gmail.com', '2000-06-01', 22, '3', '2', 'Roland', 'Store supervisor', 15000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2209290022', '', '1', 'upload_files/candidate_tracker/39353839944_deepresume-1-5.pdf', NULL, '2', '2022-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 08:59:04', 1, '2022-09-29 09:01:54', 0, NULL, 1),
(10434, 'Nikhil s', '13', '8489658015', '8524823419', 'nikhilnithin1970@gmail.com', '1999-09-29', 23, '3', '2', 'Sundar', 'Gold Smith', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2209290023', '', '1', 'upload_files/candidate_tracker/58910466331_nikhilresume-1.pdf', NULL, '2', '2022-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-29 09:03:04', 1, '2022-09-29 09:06:57', 0, NULL, 1),
(10435, 'Niranjani.K', '13', '9176719552', '8778105754', 'niranjani.k2015@gmail.com', '1997-01-06', 25, '3', '2', 'M.Karthikeyan', 'Branch Post Master', 65000.00, 1, 0.00, 20000.00, 'No.80 Karumar street,Pasumathur,Gudiyattam,RS', '82A Villivakkam rd,kalpalayam,Vinayakapuram,Chenna', '2209300001', '', '1', 'upload_files/candidate_tracker/8302026344_Niranjanik_resume.pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '5050 Profile,seems to be slow have basic skills knowledge,long rund doubts 2nd round interviewed by kaviiya,Candidate need time to learn if she comes back after 2 months can be considered based on her learnings', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 09:49:33', 1, '2022-09-30 10:03:24', 0, NULL, 1),
(10436, 'Priyadarshini', '31', '9843699633', '9843216950', 'Priyankakviya10@gmail.com', '2000-09-14', 22, '3', '2', 'Ramesh.A', 'Father', 25.00, 2, 0.00, 18000.00, 'Thiruvannamalai', 'Vadapazani', '2209300002', '', '1', 'upload_files/candidate_tracker/93267551494_ Resume-Resume (1).pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not strong with the skills she learnt, need to speak out, not much comfort with TxxampC Will not sustain in our roles', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-09-30 11:08:43', 60, '2022-09-30 11:58:44', 0, NULL, 1),
(10437, 'S Ajithkumar', '13', '9597173123', '', 'Ajithcse2001@gmail.c', '2001-04-27', 21, '3', '2', 'Subramanium', 'Fisherman', 15000.00, 2, 0.00, 17000.00, 'Tirunelveli', 'Chennai', '2209300003', '', '1', 'upload_files/candidate_tracker/38682015477_ajith.resume (1).pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic Skllls,not much open with TxxampC,Need time to confirm also need to learn a lot', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 12:32:54', 1, '2022-09-30 12:39:17', 0, NULL, 1),
(10438, 'Kalaivani N', '14', '7094898826', '9159769940', 'Kalai712007@gmail.com', '2002-12-09', 19, '4', '2', 'Natarajan', 'Farmer', 5000.00, 1, 0.00, 20000.00, 'Thiruvannamalai', 'Porur', '2209300004', '', '1', 'upload_files/candidate_tracker/42161338759_kalai kom.pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic skills will not sustain and handle our Roles not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 01:33:52', 1, '2022-09-30 01:47:51', 0, NULL, 1),
(10439, 'Komathi', '14', '9047541044', '9585666432', 'komathipriya1507@gmail.com', '2002-06-07', 20, '4', '1', 'Ulaganathan', 'Former', 7000.00, 3, 0.00, 20000.00, 'Thiruvannamalai', 'Porur', '2209300005', '', '1', 'upload_files/candidate_tracker/70428460107_kom.pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher No Basic Skills Will Not Sustain And Handle Our Roles Not Suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 01:36:22', 1, '2022-09-30 01:48:10', 0, NULL, 1),
(10440, 'Yuvan Shankar Balaji A', '13', '8825837598', '', 'yuvan141999@gmail.com', '1999-10-14', 22, '3', '2', 'Anna Pugazhendhi A', 'Field officer', 15000.00, 1, 205000.00, 350000.00, 'Chennai', 'Chennai', '2209300006', '', '2', 'upload_files/candidate_tracker/36175293938_Professional resume 2.pdf', NULL, '1', '2022-09-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT Roles have Exp in Non voice Looking only for the salary growth will not sustain ', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 02:48:00', 1, '2022-09-30 02:52:09', 0, NULL, 1),
(10441, 'prasanth I', '13', '9626991361', '9042556018', 'prasanth080896@gmail.com', '1996-08-08', 26, '2', '2', 'iyappan', 'farmer', 20000.00, 2, 0.00, 15000.00, 'kumbakonam', 'chennai', '2209300007', '1', '1', 'upload_files/candidate_tracker/2712692427_Prasanth.pdf', NULL, '1', '2022-09-30', 0, '', '3', '59', '2022-10-03', 120000.00, '', '', '1970-01-01', '2', 'selected for PHP 3-5 months 10K Salary then 13K based on performance 2yrs SA', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-09-30 03:01:14', 85, '2022-09-30 03:11:00', 0, NULL, 1),
(10442, 'Radhalakshmi', '13', '9159431874', '9677233915', 'radhakannan31595@gmail.com', '1995-05-31', 27, '4', '1', 'Hemachandran', 'B. E', 50000.00, 1, 0.00, 15000.00, 'Perumbakkam, Chennai', 'Perumbakkam, Chennai', '2209300008', '', '1', 'upload_files/candidate_tracker/43793576289_Radhalakshmi_updatedresume.pdf', NULL, '2', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 07:23:15', 1, '2022-09-30 07:37:01', 0, NULL, 1),
(10443, '', '0', '7760670542', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2209300009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-09-30 08:38:57', 0, NULL, 0, NULL, 1),
(10444, 'Navya P R', '13', '8870156294', '', 'navyapr081998@gmail.com', '1998-08-08', 24, '3', '2', 'Raajasaker . A. K', 'Farmer', 100000.00, 1, 0.00, 250000.00, 'Thalaivasal', 'Chennai', '2209300010', '', '1', 'upload_files/candidate_tracker/27368298181_Navya P.R Resume.docx', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-09-30 08:57:54', 1, '2022-10-07 10:05:11', 0, NULL, 1),
(10445, 'ALBERT MICHAEL KIRUBAGARAN', '31', '6369565088', '', 'albert11.srk@gmail.com', '2001-04-11', 21, '2', '2', 'Solomon Raj Kumaresan', 'Nil', 100000.00, 1, 0.00, 200000.00, 'Lalgudi tiruchirapalli', 'Chengalpattu chennai', '2202210011', '1', '1', 'upload_files/candidate_tracker/71487171956_ALBERT.pdf', NULL, '1', '2022-10-01', 0, '', '3', '59', '2022-10-03', 120000.00, '', '2', '1970-01-01', '2', '3-5 months 5K then 2.7 yrs Emp 10-12K Salary after intern - Fresher have basic skills and interested to learn final round by Gokul', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-01 09:51:34', 60, '2022-10-14 12:56:29', 0, NULL, 1),
(10446, 'NIVASS S V', '13', '7739683293', '', 'nivass2all@gmail.com', '2000-05-19', 22, '3', '2', 'S VELMURUGAN', 'FORMER', 100000.00, 1, 0.00, 15000.00, 'MUDUKULATHUR', 'MUDUKULATHUR', '2202210012', '', '1', 'upload_files/candidate_tracker/2405555075_NIVASS.pdf', NULL, '1', '2022-10-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not much strong in basic skills not open for TxxampC will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 10:37:24', 1, '2022-10-01 11:05:14', 0, NULL, 1),
(10447, 'UDHISH.PP', '13', '9747200243', '', 'Udhishpp2000@gmail.com', '2000-11-01', 21, '3', '2', 'Unnikrishnan.PP', 'Tailor', 100000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2202210013', '', '1', 'upload_files/candidate_tracker/29992637990_UDHISH_PP_1664163130562.pdf', NULL, '1', '2022-10-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic ideas in PHP looking for Java C++', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 10:38:11', 1, '2022-10-01 10:44:52', 0, NULL, 1),
(10448, 'S v Issac Joshua', '5', '9941825100', '8680817544', 'issacjoshua96@gmail.com', '1996-04-23', 26, '2', '2', 'S p venkatesan', 'Paniting contractor', 25000.00, 1, 30000.00, 30000.00, 'Chennai', 'Chennai', '2202210014', '1', '2', 'upload_files/candidate_tracker/2351951398_ISSAC Vital.docx', NULL, '1', '2022-10-01', 5, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-01 11:18:24', 60, '2022-10-01 12:12:15', 0, NULL, 1),
(10449, 'K. Azhagulakshmi', '13', '9789687273', '', 'azhagulakshmi2000@gmail.com', '2000-05-14', 22, '3', '2', 'R. Karuppaiya', 'Auto driver', 25000.00, 2, 0.00, 300000.00, 'Virudhunagar', 'Chennai', '2202210015', '', '1', 'upload_files/candidate_tracker/80100681337_Azhagu update resume.pdf', NULL, '1', '2022-10-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for PHP no basic skills need to train a lot but salary exp is high and not open for T7C', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 12:33:19', 1, '2022-10-01 12:40:16', 0, NULL, 1),
(10450, 'oswald singh', '13', '8962189387', '', 'jebasio@yahoo.com', '1983-09-11', 39, '3', '2', 'ambrose nallathambi', 'intern', 10000.00, 0, 0.00, 10000.00, 'chennai', 'chennai', '2202210016', '', '1', 'upload_files/candidate_tracker/97259501727_Resume.pdf', NULL, '1', '2022-10-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 02:29:09', 1, '2022-10-01 02:46:54', 0, NULL, 1),
(10451, 'Bardhul Nisha J', '16', '9025204693', '7200425426', 'bardhulnj@gmail.com', '1998-07-26', 24, '3', '2', 'Jaheer Hussain M', 'Business', 20000.00, 2, 17000.00, 22000.00, 'Avadi', 'Avadi', '2202210017', '', '2', 'upload_files/candidate_tracker/68511016031_Bardhul Nisha J Resume new.docx', NULL, '1', '2022-10-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance communication average and writing skills not upto the mark as we expected', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-01 03:00:40', 1, '2022-10-01 03:09:11', 0, NULL, 1),
(10452, 'Bhuvana.J', '13', '7598838740', '9786468749', 'bhuvana.jk261@gmail.com', '2002-01-26', 20, '2', '2', 'N.Jayakumar', 'Company staff', 25000.00, 1, 0.00, 100000.00, 'Chennai', 'Chrompet', '2202210018', '1', '1', 'upload_files/candidate_tracker/8708517274_Bhuvana.j Resume.pdf', NULL, '1', '2022-10-10', 0, '', '3', '59', '2022-10-11', 96000.00, '', '3', '2022-10-12', '2', '8K Stipend,based on performance will get revised 3yrs SA,Need to analyse the candidate in 7 Days,Final round interviewed by Gokul and Selected', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-01 07:07:38', 60, '2022-10-14 12:58:17', 0, NULL, 1),
(10453, '', '0', '8709661462', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-02 12:30:05', 0, NULL, 0, NULL, 1),
(10454, '', '0', '8760726289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2012210030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-02 08:43:04', 0, NULL, 0, NULL, 1),
(10455, 'Shiek Dawood', '13', '9514336251', '', 'shiekdawoodofficial@gmail.com', '2001-12-18', 20, '2', '2', 'Meer Dawood Ali', 'Shop keeper', 15000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2012210032', '1', '1', 'upload_files/candidate_tracker/81896857824_Sheik dawood PDF.pdf', NULL, '1', '2022-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Handling work pressure doubtful will not sustain in long run not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-03 10:06:33', 96, '2022-10-03 11:23:14', 0, NULL, 1),
(10456, 'Ajay venkatesh', '31', '6383315976', '9488061871', 'ajay19990115@gmail.com', '1999-01-15', 23, '2', '2', 'Annadurai', 'Business', 100000.00, 2, 0.00, 2.50, 'Pudukkottai', 'Chennai', '2012210033', '1', '1', 'upload_files/candidate_tracker/93346124549_AJAY%20Resume%203.docx', NULL, '1', '2022-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance ,not much comfort in TxxampC Need time to give his confirmation ,sustainability doubts a lot ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-03 10:15:34', 96, '2022-10-03 11:23:39', 0, NULL, 1),
(10457, 'Kavin T', '31', '8056274866', '9789950444', 'Kavin08011998@gmail.com', '1998-01-08', 24, '2', '2', 'Thirunama Selvan', 'Business', 100000.00, 1, 0.00, 300000.00, 'No 1 pmd nagar sakthi nagar, chennai, 600063', 'No 1 Pmd Nagar Sakthi Nagar, Chennai, 600063', '2012210034', '1', '1', 'upload_files/candidate_tracker/1582676712_Resume (6).pdf', NULL, '1', '2022-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too Long Distance ,Not Much Comfort In TxxampC Need Time To Give His Confirmation ,Sustainability Doubts A Lot If He Comes Back Can Give A Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-03 10:18:35', 96, '2022-10-03 11:24:05', 0, NULL, 1),
(10458, 'Sathish Kumar', '13', '8778473179', '9087601140', 'psathishkumar179@gmail.com', '2001-09-17', 21, '2', '2', 'Rajathi', 'Coolie', 15000.00, 1, 0.00, 12000.00, 'Sivaganga', 'Chennai', '2012210035', '1', '1', 'upload_files/candidate_tracker/46055401811_Sathish Resume.pdf', NULL, '1', '2022-10-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic knowledge in Skills need time to confirm his position in TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-10-06', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-03 10:37:46', 85, '2022-10-08 01:28:14', 0, NULL, 1),
(10459, 'ASHOK.A', '13', '9080412585', '9894316736', 'aa5500067ashok@gmail.com', '2007-10-03', 0, '3', '2', 'ANANDHAN.R', 'Farmer', 15000.00, 1, 0.00, 25000.00, 'Mannargudi', 'Velachery', '2012210036', '', '1', 'upload_files/candidate_tracker/95979126839_Ashok.pdf', NULL, '1', '2022-10-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills not comfort in TxxampC need to learn a lot will not sustain for a long', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-03 01:26:56', 85, '2022-10-03 03:07:03', 0, NULL, 1),
(10460, 'S.ARAVINTHAN', '4', '9361191681', '8220230149', 'saravinthan775@gmail.com', '2002-02-03', 20, '4', '2', 'SAMIDHURAI.T', 'Former', 10000.00, 2, 0.00, 18000.00, 'Adambakkam', 'Adambakkam', '2012210037', '', '1', 'upload_files/candidate_tracker/71871015181_Aravindhan Resume - 1658067152.pdf', NULL, '3', '2022-10-03', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-03 05:29:16', 1, '2022-10-03 05:39:44', 0, NULL, 1),
(10461, 'Thenmozhi', '16', '9345857489', '', 'thenupriyacivil@gmail.com', '1997-06-18', 25, '2', '2', 'Muruganandham', 'Mason', 35000.00, 2, 25000.00, 25000.00, 'Tindivanam', 'Chrompet', '2210040001', '1', '2', 'upload_files/candidate_tracker/3177072374_Thenmozhi resume updated (1).pdf', NULL, '1', '2022-10-06', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, Writing skills not up to the mark as we expected fresher for our roles personal family issue are there will not sustain in long run', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-04 01:12:41', 85, '2022-10-06 03:54:03', 0, NULL, 1),
(10462, 'deepika', '11', '6384390341', '9841772231', 'deepikanchanathanika@gmail.com', '2002-03-05', 20, '3', '2', 'sivanathan', 'car driver', 9000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2210040002', '', '1', 'upload_files/candidate_tracker/93808197410_Deepika Resume .docx', NULL, '3', '2022-10-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-04 03:46:03', 1, '2022-10-04 04:36:53', 0, NULL, 1),
(10463, 'Vengateswaran k', '13', '9597338434', '', 'vengatestamilsevi@gmail.com', '2002-06-14', 20, '2', '2', 'KARUPPAIYA r', 'Former', 10000.00, 2, 0.00, 10.00, 'Pudukkottai', 'Pudukkottai', '2210050001', '1', '1', 'upload_files/candidate_tracker/18972580683_vengat1new (2).pdf', NULL, '1', '2022-10-05', 0, '', '3', '60', '2022-10-10', 0.00, '', '', '2022-11-18', '1', 'Selected as a trainee with 8k salary per month and 3 years service agreement.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '8K Salary based on performance may get inerement in 6 months 3yrs SA', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-05 09:19:05', 60, '2022-10-19 10:16:05', 0, NULL, 1),
(10464, 'B HARIHARAN', '13', '8072137754', '', 'sonjohn52685@gmail.com', '2001-05-27', 21, '2', '2', 'R Baskar', 'Auto driver', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2210050002', '1', '1', 'upload_files/candidate_tracker/83022746456_CV_2022-10-04-074917.pdf', NULL, '1', '2022-10-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills too long distance will not sustain in our roles for a long', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-05 09:37:05', 85, '2022-10-05 09:48:41', 0, NULL, 1),
(10465, 'Kowshikraj', '13', '9150152632', '', 'kowshiksaravanan925@gmail.com', '2002-04-21', 20, '2', '2', 'Saravanan', 'dirver', 15000.00, 1, 0.00, 15000.00, 'Panruti', 'Panruti', '2210050003', '1', '1', 'upload_files/candidate_tracker/15089763461_resume (1).pdf', NULL, '1', '2022-10-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic skills knowledge Fresher SAlary exp is high and not open with TxxampC also not comfort with 8-10K Salary', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-05 11:22:02', 85, '2022-10-08 01:27:48', 0, NULL, 1),
(10466, 'Sneha', '13', '8667034619', '', 'snehamunusamii@gmail.com', '2001-09-14', 21, '3', '2', 'Munusamy R', 'Driver', 75000.00, 2, 0.00, 15000.00, 'Karaikal', 'Chennai', '2210050004', '', '1', 'upload_files/candidate_tracker/42669434707_sneha resume.pdf', NULL, '1', '2022-10-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Java openings', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-05 11:29:37', 1, '2022-10-05 11:33:47', 0, NULL, 1),
(10467, 'Lakshmi kanthan', '4', '8939395271', '', 'viruchagakanthan@gmail.com', '1994-06-07', 28, '2', '2', 'Arunchala sundram', 'Late', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2210050005', '2', '1', 'upload_files/candidate_tracker/43560407050_Resume - Lakshmi Kanthan.pdf', NULL, '1', '2022-10-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No sustainability in his previous Exp much focused with non voice Career Gap need to open a lot for our sales and Salary Exp is high', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-05 02:02:39', 1, '2022-10-05 02:05:19', 0, NULL, 1),
(10468, 'suriya.b', '31', '7358744376', '', 'bbsuriya649@gmail.com', '1998-03-31', 24, '2', '2', 'parent name- santhi.p', 'sweeper', 15000.00, 3, 0.00, 13000.00, 'madhavaram', 'madhavaram', '2210050006', '1', '1', 'upload_files/candidate_tracker/58757008899_SuriyaResume.pdf', NULL, '2', '2022-10-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not much strong in the basic skills,Not answering much checked for technical round with Manikandan and got rejected ', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-05 05:31:05', 60, '2022-10-08 01:17:06', 0, NULL, 1),
(10469, 'Hesmapriya', '4', '7358012318', '9176333903', 'priyapsk23@gmail.com', '1999-04-23', 23, '2', '2', 'Karpagam', 'No', 200000.00, 2, 13000.00, 18000.00, 'Chennai', 'Chennai', '2210050007', '1', '2', 'upload_files/candidate_tracker/48505906718_CV_2022-09-30-114603.pdf', NULL, '1', '2022-10-06', 0, '', '3', '59', '1970-01-01', 176844.00, '', '2', '1970-01-01', '1', 'Selected for B2B - Consultant Role\nCommunication Ok Have Exp In Calling But Not A Relevant One Can Give A Try', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-05 06:22:18', 60, '2022-10-06 04:39:43', 0, NULL, 1),
(10470, 'Afrin Fathima Abdul Samadu', '13', '9080519020', '9159575716', 'afrin11099@gmail.com', '1999-10-01', 23, '2', '1', 'H.Mohammed Minnathullah', 'Business', 25000.00, 2, 1.50, 3.00, 'Chennai', 'Chennai', '2210060001', '1', '2', 'upload_files/candidate_tracker/9037071601_CV_2022092909140491.pdf', NULL, '1', '2022-10-06', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have a months exp in PHP,can be trained open for TxxampC need to be trained can give a try kindly check and let me know your inpts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-06 09:27:56', 85, '2022-10-08 01:27:13', 0, NULL, 1),
(10471, 'Vineeth K', '13', '8072601621', '9514563219', 'vineethvini004@gmail.com', '1999-04-22', 23, '2', '2', 'Kannan S', 'Farmer', 200000.00, 0, 0.00, 200000.00, 'Surulipatti', 'Triplicane', '2210060002', '1', '1', 'upload_files/candidate_tracker/51705824098_resumeX-2022.08.25.17.01.12.pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for ASP.Net profile', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 09:46:28', 96, '2022-10-06 04:07:36', 0, NULL, 1),
(10472, 'Ramkumar R', '13', '8667398661', '', 'ajiram1999@gmail.com', '1999-06-24', 23, '2', '2', 'Ravi M', 'Daily wager', 10000.00, 1, 0.00, 3.00, 'Pudukkottai', 'Ekkathuthangal', '2210060003', '1', '1', 'upload_files/candidate_tracker/33793702340_Ramkumar', NULL, '1', '2022-10-06', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile Can give a try for PHP kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 10:35:32', 96, '2022-10-06 04:07:07', 0, NULL, 1),
(10473, 'KALIDOSS', '13', '6381484142', '', 'kalidoss4142@gmail.com', '2000-06-05', 22, '2', '2', 'SUBBAIAH', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Porur', '2210060004', '1', '1', 'upload_files/candidate_tracker/59323138407_KALIDOSS S .pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have basic knowledge in JS ,5050 not much comfort with TxxampC 2nd round reject by manikandan', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-06 10:59:00', 85, '2022-10-08 01:27:23', 0, NULL, 1),
(10474, 'Jeevanandham S G', '31', '8056475275', '9965059423', 'Jeevasg0311@gmail.com', '2000-11-03', 21, '2', '2', 'S gopi', 'Tractor mechanic', 20000.00, 1, 0.00, 25000.00, 'Ponneri', 'Ponneri', '2210060005', '1', '1', 'upload_files/candidate_tracker/41546002105_jeeva 1 resume.docx', NULL, '1', '2022-10-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much active too long Distance ,he says that can relocate but not sure on that,will not handle our work pressure and sustainability doubts,5050 if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-10-10', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 11:28:52', 96, '2022-10-06 04:06:16', 0, NULL, 1),
(10475, 'Karthikeyan', '13', '6385897474', '9659764711', 'karthickrishna006@gmail.com', '2002-01-19', 20, '2', '2', 'Krishnan', 'Farmer', 68000.00, 1, 0.00, 12000.00, 'Sivaganga', 'Chennai', '2210060006', '1', '1', 'upload_files/candidate_tracker/66594406557_karthikeyan (resume) .pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher 5050 not much ok with the Skills Can give a try Discussed with Gokul on the same and dropped the profile,if he comes back after few more interviews let us decide this profile', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-06 11:41:19', 96, '2022-10-07 05:04:29', 0, NULL, 1),
(10476, 'Nivedha ov', '7', '6382146491', '7845737398', 'waralunivedha78@gmail.com', '2000-07-30', 22, '2', '2', 'Saradha', 'House wife', 50000.00, 3, 19500.00, 25000.00, 'At Thomas mount', 'St Thomas mount Chennai', '2210060007', '1', '2', 'upload_files/candidate_tracker/28321239132_RESUME-O-V-NIVETHA(edited)(2).pdf', NULL, '1', '2022-10-06', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Average but sounding good have Exp in policy bazaar for 9 months looking for MF roles only not open for Sales 5050 Can give a try,writing skills Average need to check with gokul and confirm', '5', '2', '', '1', '1', '', '2', '2022-10-08', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-06 11:47:10', 60, '2022-10-06 04:08:56', 0, NULL, 1),
(10477, 'Gayathri', '13', '9629892684', '', 'gayathrik14899@gmail.com', '1999-08-14', 23, '2', '1', 'Aswin', 'DME', 25000.00, 2, 0.00, 18000.00, 'Thanjavur', 'Kodampakkam', '2210060008', '1', '1', 'upload_files/candidate_tracker/23683562937_gayathri resume.pdf', NULL, '1', '2022-10-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic skills in PHP have Exp for Few months Recently married and husband in singapore,need to check and confirm us for the TxxampC is she comes back let us try\n', '2', '2', '0', '1', '1', '0', '2', '2022-10-08', '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-06 12:45:03', 1, '2022-10-06 12:49:08', 0, NULL, 1),
(10478, 'Jeevanandam d', '13', '7845786028', '7708789500', 'Jeevadeva10@gmail.com', '2000-09-10', 22, '2', '2', 'Devarajan', 'Weaver', 7000.00, 2, 0.00, 250000.00, 'Kanchipuram', 'Kanchipuram', '2210060009', '1', '1', 'upload_files/candidate_tracker/24089610443_Jeevanandam D Resume.pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for JAVA openings only\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 01:08:26', 96, '2022-10-06 04:05:13', 0, NULL, 1),
(10479, '', '0', '8838282780', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210060010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-06 01:16:42', 0, NULL, 0, NULL, 1),
(10480, 'Venkadesan tl', '31', '8695184222', '', 'Venkateshtl7871@gmail.com', '2002-10-10', 19, '2', '2', 'Letchumanan tl', 'Weaver', 20000.00, 1, 0.00, 1.80, 'Paramakudi', 'Paramakudi', '2210060011', '1', '1', 'upload_files/candidate_tracker/59200860183_resume (4) - 2022-09-30T080851.159.pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much active,will not handle our work pressure will not sustain not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 01:16:48', 96, '2022-10-06 04:04:38', 0, NULL, 1),
(10481, 'Revathi A', '13', '8300836584', '6383336586', 'Revacse007@gmail.com', '1997-07-31', 25, '2', '2', 'Andiyappan K', 'Formar', 5000.00, 2, 7000.00, 12000.00, 'Karaikudi', 'Thiruvanmiyur', '2210060012', '1', '2', 'upload_files/candidate_tracker/24247700356_Resume.pdf', NULL, '1', '2022-10-06', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in PHP,5050 for us can give a try kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 01:36:23', 96, '2022-10-06 04:04:01', 0, NULL, 1),
(10482, 'Karthick C', '11', '7358761107', '', 'ckarthick0192@gmail.com', '2001-04-25', 21, '2', '2', 'A.Chinna pandian', 'Chief chef', 100000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2210060013', '1', '1', 'upload_files/candidate_tracker/1457766290_karthick CV.pdf', NULL, '1', '2022-10-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher,5050 profile can give a try sustainability doubts have basic knowledge in recruitment,father is chief chef in china', '6', '1', '', '1', '1', '', '2', '2022-10-08', '3', '8', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-10-06 01:40:04', 60, '2022-10-06 04:04:56', 0, NULL, 1),
(10483, 'Hariram.P', '13', '9025669652', '9150480181', 'hariramhdmp@gmail.com', '2001-04-03', 21, '3', '2', 'Padmanaban.B', 'Trader', 120000.00, 1, 0.00, 400000.00, 'No.61,4th street,js nagar, Walajahbad, kanchipuram', 'Walajahbad', '2210060014', '', '1', 'upload_files/candidate_tracker/89590738001_hrm Resume.pdf', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-06 02:32:30', 1, '2022-10-06 02:37:51', 0, NULL, 1),
(10484, 'Hariram.P', '13', '9025669662', '9150480181', 'hariramhdmp@gmail.com', '2001-04-03', 21, '2', '2', 'Padmanaban.B', 'Trader', 120000.00, 1, 0.00, 370000.00, 'Walajahbad', 'Walajahbad', '2210060015', '1', '1', 'upload_files/candidate_tracker/27318427590_hrm Resume.pdf', NULL, '1', '2022-10-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basic skills knowledge relocation not sure he is from kanchipuram sustainability doubts in this profile need to learn a lot', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-06 02:40:27', 96, '2022-10-06 04:03:15', 0, NULL, 1),
(10485, 'B.h.shri akshaya', '4', '9789931825', '', 'akshayashri95@gmail.com', '1999-03-29', 23, '2', '2', 'B.himachalam', 'Business', 120000.00, 1, 0.00, 16000.00, 'Mandavali', 'Mandavali', '2210060016', '1', '1', 'upload_files/candidate_tracker/5309420131_Shri.pdf', NULL, '1', '2022-10-07', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok fresher, can be trained kindly check and let me know your interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '6', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-06 06:19:35', 96, '2022-10-07 05:04:50', 0, NULL, 1),
(10486, 'A.vinnarasi', '13', '6369544157', '', 'vinnarasijeni01@gmail.com', '2001-03-30', 21, '2', '2', 'Z .Amalraj', 'Assistant Chef', 25000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2210060017', '1', '1', 'upload_files/candidate_tracker/47518008493_Vinnarasi .pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have learnt skills from ingenuine,need to travel from tambaram,not much comfort with the TxxampC Need time to check with her family and confirm if she comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-06 07:31:26', 1, '2022-10-07 11:44:29', 0, NULL, 1),
(10487, 'Dhibishna .v', '2', '8637690361', '', 'dhibishna17@gmail.com', '2007-10-07', 0, '3', '2', 'Vijayan.N,chitra Devi.v', 'Formar', 15000.00, 1, 0.00, 20000.00, 'Naranamangalam', 'Chennai', '2210070001', '', '1', 'upload_files/candidate_tracker/89395394971_0_Dhibishna-1 (1).pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic knowledge in skills from perambur need to train a lot no ideas in PHP/CRUD Will not sustain ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 09:31:22', 1, '2022-10-07 09:48:08', 0, NULL, 1),
(10488, 'SINDHUJA V', '6', '9791785483', '9487253030', 'Sindhuvasudevan24@gmail.com', '1999-10-24', 22, '2', '2', 'VASUDEVAN', 'BUSINESS', 30000.00, 1, 0.00, 12000.00, 'Siruvalur', 'Siruvalur', '2210070002', '1', '1', 'upload_files/candidate_tracker/63031940884_sindhu_resume_Sindhuja.pdf', NULL, '1', '2022-10-07', 0, '', '3', '59', '2022-10-13', 156000.00, '', '3', '2022-12-08', '2', 'Selected for Suthagar Team - Staff Role', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-07 09:39:42', 60, '2022-10-12 03:57:59', 0, NULL, 1),
(10489, 'jothi', '4', '6380247729', '', 'sjothi.vnb@gmail.com', '2000-10-23', 21, '2', '2', 'samu', 'farmer', 5000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2210070003', '2', '1', 'upload_files/candidate_tracker/41323606189_JOTHI CV.pdf', NULL, '1', '2022-10-07', 0, '', '3', '59', '2022-10-10', 151584.00, '', '3', '2022-11-08', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-07 09:40:15', 60, '2022-10-07 04:19:18', 0, NULL, 1),
(10490, 'surya n', '4', '7550157065', '', 'leosuryaleosurya@gmail.com', '2003-07-20', 19, '2', '2', 'nagappan', 'cooli', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210070004', '2', '1', 'upload_files/candidate_tracker/50286524742_Surya_Resume.docx', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 09:45:17', 1, '2022-10-07 09:46:44', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10491, 'aarthi m', '4', '9710520973', '', 'baluswamymanikandanbmanikandan@gmail.com', '2001-12-27', 20, '2', '2', 'manikandan', 'cooli', 11000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210070005', '2', '1', 'upload_files/candidate_tracker/19874965993_Aarthi - Resume.pdf', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 09:48:04', 1, '2022-10-07 09:49:27', 0, NULL, 1),
(10492, 'karthika k', '4', '7299888187', '', 'karthikakanniyappan1815@gmail.com', '2000-12-15', 21, '2', '2', 'kanniyappan k', 'corp', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210070006', '2', '1', 'upload_files/candidate_tracker/72493874639_karthika.pdf', NULL, '1', '2022-10-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 09:50:39', 1, '2022-10-07 09:54:21', 0, NULL, 1),
(10493, 'Anu devadas', '11', '7907404225', '9789656068', 'anudevadas2@gmail.com', '1998-02-22', 24, '2', '2', 'Devadas', 'Business', 30000.00, 1, 28000.00, 25000.00, 'Palakkad, kerala', 'Chennai', '2210070007', '1', '2', 'upload_files/candidate_tracker/79763934994_anudevresume.pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok fresher for recruitment Salary Exp is very high not open for TxxampC will not sustain', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-07 10:28:01', 85, '2022-10-08 01:26:43', 0, NULL, 1),
(10494, 'Poorivizhi', '13', '7708025791', '', 'Poovizhi.alex@gmail.com', '1997-12-14', 24, '2', '2', 'Alexander', 'Tailor', 15000.00, 1, 0.00, 15000.00, 'Porur', 'Pourur', '2210070008', '1', '1', 'upload_files/candidate_tracker/95006288164_Poovizhi_MCA_Resume.pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance 1.30 min travel,no basic ideas in the skills not open for TxxampC not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-07 10:55:34', 1, '2022-10-07 11:23:19', 0, NULL, 1),
(10495, 'Vijay', '13', '8056147634', '8681008319', 'vijay18884@gmail.com', '2001-11-04', 20, '3', '2', 'Sanjeevi', 'Lathe operator', 25000.00, 1, 0.00, 20000.00, '21/19, kothaval street, alandur, chennai', '21/19, kothaval street, Alandur, Chennai', '2210070009', '', '1', 'upload_files/candidate_tracker/56743398446_VJ resume.pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to open Seems to be slow in learning No basic Skills knowledge have Internship Exp in Ingenuine but not answering not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 10:58:14', 1, '2022-10-07 11:08:25', 0, NULL, 1),
(10496, 'M. Selvam', '13', '9025954763', '8939288734', 'Vijayvicky11m@gmail.com', '2002-05-11', 20, '3', '2', 'M. Mugurtha valli', 'House wife', 20000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2210070010', '', '1', 'upload_files/candidate_tracker/15628618288_Selvam resume .pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic ideas in skills,will not sustain in our roles and not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 10:59:09', 1, '2022-10-07 11:07:52', 0, NULL, 1),
(10497, 'Nandhakumar R', '4', '6382402733', '', 'nandhakumar4897@gmail.com', '1997-08-04', 25, '3', '2', 'Makeshwari', 'Farmer', 20000.00, 0, 0.00, 13000.00, 'Namakkal', 'Mogapair Chennai', '2210070011', '', '1', 'upload_files/candidate_tracker/17099226826_NK.pdf', NULL, '1', '2022-10-07', 0, '', '3', '59', '2022-10-10', 126312.00, '', '', '2022-10-11', '2', 'Selected for Arumbakkam,Fresher Can give a try Consultant Role', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-07 11:25:51', 60, '2022-10-07 04:36:53', 0, NULL, 1),
(10498, 'R.Ramya', '13', '7338782653', '7338782654', 'angleramya291@gmail.com', '2000-07-11', 22, '3', '2', 'T.Robert', 'Painter', 25000.00, 3, 0.00, 25000.00, 'Chennai', 'Chennai', '2210070012', '', '1', 'upload_files/candidate_tracker/62239695097_RAMYA (2).pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very fresher just learn basics in ingenuine,not much comfort with the fresher salary need time to check and confirm with her parents if she comes back let us try\n', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:34:40', 1, '2022-10-07 11:40:48', 0, NULL, 1),
(10499, 'ABDUL RASHEED S', '4', '9176482119', '7305740295', 'www.alrasheed017@gmail.com', '2002-11-19', 19, '3', '2', 'Father', '10000', 10000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2210070013', '', '1', 'upload_files/candidate_tracker/12902432930_Abdul Rasheed Resume.docx', NULL, '1', '2022-10-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice No Communication', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:54:25', 1, '2022-10-07 12:11:37', 0, NULL, 1),
(10500, 'A.Arjun', '4', '9600122198', '', 'lionelarjun@gmail.com', '1994-12-18', 27, '1', '1', 'B.Arutselvam', 'Rice merchant', 50000.00, 1, 30000.00, 40000.00, 'Ayanavaram', 'Ayanavaram', '2210070014', '', '2', 'upload_files/candidate_tracker/40656134194_Resume (1).pdf', NULL, '1', '2022-10-07', 0, '55579', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Sales Calling and looking for support roles checked for Technical support but left without attending the 2nd level Current Salary is 30K\n', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:57:06', 1, '2022-10-07 12:07:49', 0, NULL, 1),
(10501, 'Ramyasree V', '6', '7806871839', '', 'ramyarajan2022@gmail.com', '1997-08-09', 25, '2', '1', 'Varadharaj G', 'Finance', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Bhavani', '2210070015', '1', '1', 'upload_files/candidate_tracker/59179888972_Ramya Resume.docx', NULL, '1', '2022-10-08', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'She is scared for Target so rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-07 12:29:37', 85, '2022-10-08 12:11:27', 0, NULL, 1),
(10502, 'Sivabalan G', '23', '9080285071', '7338714210', 'sivabalang1999@gmail.com', '1999-05-20', 23, '2', '2', 'Ganesan A', 'Watchman', 20000.00, 1, 0.00, 25000.00, '55, Eden Street, Balaji Nagar, Ambattur, Chennai', '55, Eden Street, Balaji Nagar, Ambattur, Chennai', '2210070016', '1', '1', 'upload_files/candidate_tracker/54750131609_SIVABALAN G Resume (1).pdf', NULL, '1', '2022-10-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Stipend fresher for React,have internship in Sales force min Exp being a fresher is 15K not ready to come down Will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-07 12:44:42', 85, '2022-10-08 01:26:56', 0, NULL, 1),
(10503, 'Nirmal kumar', '4', '7092818926', '9043783757', 'Nirmalkumarvel06@gmail.com', '1999-09-15', 23, '3', '2', 'N. Selvam', 'Driver', 25000.00, 1, 0.00, 15000.00, 'C-105,cheran street, mmda colony, arumbakkam', 'C-105,cheran street, mmda colony, arumbakkam', '2210070017', '', '1', 'upload_files/candidate_tracker/53963288593_Resume_29_09_2022_12_44_11_PM.pdf', NULL, '1', '2022-10-07', 0, '', '3', '59', '2022-10-13', 126312.00, '', '', '2022-10-14', '1', 'Selected for Arumbakkam - Consultant role', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-07 01:28:36', 60, '2022-10-12 06:50:05', 0, NULL, 1),
(10504, 'Tamilselvan', '6', '9043784474', '', 'tamilselvan2456@gmail.com', '2002-02-04', 20, '1', '2', 'Ponmudi', 'Sales man', 20000.00, 1, 25000.00, 20000.00, 'Egmore', 'Pudupet', '2210070018', '', '2', 'upload_files/candidate_tracker/78583770931_Tamilselvan resume.doc', NULL, '1', '2022-10-07', 0, 'P1370', '4', '57', NULL, 0.00, '', '0', NULL, '2', 'Have 3 months Agent Exp in Insurance, no fixed pay only commission based,Holds an IRDA Code,Need to inactive the same,kindly check and let me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 01:31:14', 1, '2022-10-07 01:35:33', 0, NULL, 1),
(10505, '', '0', '9597813638', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 02:18:51', 0, NULL, 0, NULL, 1),
(10506, '', '0', '8508227181', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 03:53:24', 0, NULL, 0, NULL, 1),
(10507, '', '0', '7207299366', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 07:32:56', 0, NULL, 0, NULL, 1),
(10508, 'Sana Mehreen', '4', '8296299909', '', 'misba3679@gmail.com', '2002-02-20', 20, '3', '2', 'Rabiya Basri', 'House wife', 40000.00, 1, 23000.00, 30000.00, 'Shivajinagar', 'Shivajinagar', '2210070022', '', '2', 'upload_files/candidate_tracker/73356833280_Resume..pdf', NULL, '1', '2022-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 07:34:43', 1, '2022-10-07 07:58:32', 0, NULL, 1),
(10509, 'Sinchana s', '25', '8088964565', '9606545613', 'sinchanask2002@gmail.com', '2002-02-08', 20, '4', '2', 'Satish B Kotian', 'Graduate', 40000.00, 1, 0.00, 250000.00, 'Sringeri', 'Sringeri', '2210070023', '', '1', 'upload_files/candidate_tracker/21797232849_CV_202210031109014.pdf', NULL, '2', '2022-10-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 07:45:21', 1, '2022-10-07 07:53:57', 0, NULL, 1),
(10510, '', '0', '7349183004', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 07:54:48', 0, NULL, 0, NULL, 1),
(10511, 'Sadiya Banu', '4', '9632092240', '', 'sadiya050801@gmail.com', '2001-08-05', 21, '2', '2', 'Fayaz', 'Tinker', 30000.00, 4, 23000.00, 28000.00, 'Tasker town shivaji nagar bangalore', 'Tasker town shivaji nagar bangalore', '2210070025', '1', '2', 'upload_files/candidate_tracker/97599002430_sadiyaa.pdf', NULL, '1', '2022-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-07 07:55:23', 85, '2022-10-17 10:00:50', 0, NULL, 1),
(10512, '', '0', '9952392530', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 07:57:49', 0, NULL, 0, NULL, 1),
(10513, '', '0', '9014009648', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 08:07:41', 0, NULL, 0, NULL, 1),
(10514, '', '0', '9113258889', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 08:33:28', 0, NULL, 0, NULL, 1),
(10515, '', '0', '8076281783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 08:38:26', 0, NULL, 0, NULL, 1),
(10516, '', '0', '8682061193', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 08:56:47', 0, NULL, 0, NULL, 1),
(10517, '', '0', '9700919911', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070031', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 10:48:04', 0, NULL, 0, NULL, 1),
(10518, 'neha parveen', '4', '9693983915', '8884454400', 'nehaparveen201@gmail.com', '1994-01-20', 28, '3', '1', 'nausad alam', 'banking', 80000.00, 4, 23000.00, 35000.00, 'Srivatsam, 1347, , Begur, Bangalore, 560076.', 'Srivatsam, 1347, bangalore', '2210070032', '', '2', 'upload_files/candidate_tracker/49384297915_Document (1).pdf', NULL, '2', '2022-10-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:00:25', 1, '2022-10-07 11:14:57', 0, NULL, 1),
(10519, 'Eshan Ulla khan', '4', '8123006176', '', 'eshanuk12@gmail.com', '2001-08-24', 21, '3', '2', 'Yaseen ulla', 'Business', 300000.00, 2, 17000.00, 20000.00, 'Shanthi Nagar, Shimoga', '14, Galaxy homes, VP road, Madivala, Bengaluru', '2210070033', '', '2', 'upload_files/candidate_tracker/596862684_eshan_resume.docx.pdf', NULL, '1', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-07 11:08:58', 1, '2022-10-07 11:14:14', 0, NULL, 1),
(10520, '', '0', '9492841303', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210070034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-07 11:19:47', 0, NULL, 0, NULL, 1),
(10521, 'Lokesh', '23', '6382876294', '8072399982', 'lokesh1892k@gmail.com', '2000-09-18', 22, '2', '2', 'Dhanalakshmi', 'Housewife', 45000.00, 1, 0.00, 20000.00, 'Chidambaram', 'Chidambaram', '2210080001', '1', '1', 'upload_files/candidate_tracker/57023525353_resume.pdf', NULL, '1', '2022-10-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Only basic knowledge in the Designing skills need to train in Development, Given task if he completes and get back let us try,Long run with txxampC doubts a lot ', '2', '1', '', '1', '1', '', '2', '2022-10-10', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-08 09:10:56', 85, '2022-10-08 01:11:47', 0, NULL, 1),
(10522, '', '0', '8550835571', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 09:22:37', 0, NULL, 0, NULL, 1),
(10523, 'Thirugnanasambandam M', '13', '9787139854', '9884482465', 'thirugnanasambandammurugaiyan@gmail.com', '1999-02-05', 23, '2', '2', 'Murugaiyan S', 'Farmer', 15000.00, 1, 0.00, 3.50, 'Chennai', 'Villivakkam', '2210080003', '1', '1', 'upload_files/candidate_tracker/58334928694_DOC-20220805-WA0013..docx', NULL, '1', '2022-10-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preferred to go in Java Openings since getting delay in getting ready to go for PHP,not much open with TxxampC,long run doubts he has plan to go with own business too,will not sustain and not suitable', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-08 09:59:12', 85, '2022-10-08 01:11:15', 0, NULL, 1),
(10524, 'Subash', '31', '9952672749', '', 'subashsv03@gmail.com', '1996-12-06', 25, '2', '2', 'Ayyanar', 'Kapildev', 200000.00, 1, 0.00, 20000.00, 'Villupuram', 'Chennai', '2210080004', '1', '1', 'upload_files/candidate_tracker/13578708497_subashsv.pdf', NULL, '1', '2022-10-08', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-08 10:32:32', 85, '2022-10-08 01:12:16', 0, NULL, 1),
(10525, 'Abubakkar A', '5', '8825921866', '9940856866', 'abu836@yahoo.in', '1994-06-23', 28, '3', '1', 'Sumaiya', 'Home Maker', 25000.00, 2, 25000.00, 25000.00, 'Krishnagiri, Tamilnadu', 'Bangalore, Karnataka', '2210080005', '', '2', 'upload_files/candidate_tracker/86498012148_cv abu.pdf', NULL, '1', '2022-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 10:39:06', 1, '2022-10-08 10:49:00', 0, NULL, 1),
(10526, 'Kavinilavan', '31', '6383252563', '8248287517', 'nkavinilavan22@gmail.com', '2001-01-22', 21, '2', '2', 'Nadimuthu', 'Farmer', 5000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Thanjavur', '2210080006', '1', '1', 'upload_files/candidate_tracker/13746515020_Kavinilavan - Resume - Fresher.pdf', NULL, '1', '2022-10-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have internship Exp in Java,his sister is also in Frontend earning around 45K in 1.5 yrs He need time to check with his family and confirm, but sustainability doubts a lot', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-08 10:41:16', 85, '2022-10-08 01:12:26', 0, NULL, 1),
(10527, 'Karan.A', '31', '9176142373', '8072445870', 'akaran3007@gmail.com', '1999-07-30', 23, '3', '2', 'Anandan.V', 'Press', 500000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2210080007', '', '1', 'upload_files/candidate_tracker/37387449360_KARAN RESUME 06-10-2022 (1).pdf', NULL, '1', '2022-10-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher did some projects in React,Had a course from GUVI spent around 60K and the salary Exp is min 20-25K not much comfort with TxxampC based on the salary if he comes back can give a try with our TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 10:42:39', 1, '2022-10-08 10:45:29', 0, NULL, 1),
(10528, '', '0', '8608159534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 11:00:40', 0, NULL, 0, NULL, 1),
(10529, '', '0', '9014038522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 11:11:48', 0, NULL, 0, NULL, 1),
(10530, '', '0', '8618489279', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 11:13:29', 0, NULL, 0, NULL, 1),
(10531, 'arivazhagan p', '4', '7092397334', '', 'arivumech50@gmail.com', '1996-06-08', 26, '2', '2', 'pichapillai', 'farmer', 8000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2210080011', '2', '1', 'upload_files/candidate_tracker/74958544275_P.ArivuResume1 pdf.pdf', NULL, '1', '2022-10-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Sales Calls just looking for inbound and non voice Process,will not sustain and handle our pressure not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 11:45:21', 1, '2022-10-08 11:48:34', 0, NULL, 1),
(10532, 'Bhuvaneswari K', '6', '9840975940', '7094323864', 'bhuvaneswarikalidass@gmail.com', '1995-05-03', 27, '3', '1', 'Magesh S', 'Plumber', 25000.00, 1, 25000.00, 35000.00, '21 Annai Sathya Nagar 2 nd street Arumbakkam', '4A/7 Loganathan Nagar 1 St street Choolaimedu', '2210080012', '', '2', 'upload_files/candidate_tracker/97599818117_BHUVANESWARI.pdf', NULL, '1', '2022-10-08', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 11:58:32', 1, '2022-10-08 12:13:29', 0, NULL, 1),
(10533, 'V Bharathraj', '5', '8248428781', '', 'bharathrajv26@gmail.com', '2000-12-26', 21, '1', '2', 'N Viswanathan', 'Embroidery', 14000.00, 1, 0.00, 14000.00, 'Solaiamman Kovil street thiruvallur nagar', 'Solaiamman Kovil Street Thiruvallur Nagar', '2210080013', '', '1', 'upload_files/candidate_tracker/49175899894_bharath resume pdf 222 (1)-1.pdf', NULL, '1', '2022-10-08', 0, 'Job', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice Process no Communication', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 11:59:31', 1, '2022-10-08 12:15:56', 0, NULL, 1),
(10534, 'J. Naga Rupa', '11', '6304144809', '9019904462', 'jnrupa9@gmail.com', '1999-05-31', 23, '3', '2', 'Rama Kumar . J', 'Business', 40000.00, 1, 2.60, 2.80, 'Bazzar Street, Punganur', 'Sri Manjunatha pg, Kudlu Gate , Bangalore', '2210080014', '', '2', 'upload_files/candidate_tracker/38963658425_Naga Rupa . J.docx', NULL, '1', '2022-10-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 12:01:24', 1, '2022-10-08 12:08:43', 0, NULL, 1),
(10535, 'Gopinath settu', '4', '9080552212', '9043814711', 'gopinathsgs1996@gmail.com', '1996-02-03', 26, '4', '2', 'Settu', 'Driver', 22000.00, 1, 22000.00, 28000.00, 'No:420,23rd St, NSK nagar,ArumbakkamChennai-600106', 'No:420,23rd St, NSK Nagar,ArumbakkamChennai-600106', '2210080015', '', '2', 'upload_files/candidate_tracker/73968806052_RESUME Gopinath Settu.docx', NULL, '1', '2022-10-08', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-08 12:02:11', 1, '2022-10-08 12:15:15', 0, NULL, 1),
(10536, 'Suresh kumar bp', '6', '7338778587', '9150858587', 'Hiphopsuresh2429@gmail.com', '1999-10-24', 22, '1', '2', 'Prem', 'Business', 30000.00, 0, 12000.00, 17000.00, '12/15 school road pearmbur Chennai 600011', 'Pearmbur', '2210080016', '', '2', 'upload_files/candidate_tracker/13307447753_BALAJI (1) (1).docx', NULL, '3', '2022-10-08', 0, 'No', '3', '59', '2022-10-17', 216000.00, '', '5', '1970-01-01', '1', 'Have Calling Exp In Sales Need To Check His Previous Exp Documents,5050 Profile Sustainability Doubts On This Profile,Need To Groom Them A Lot Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-08 12:06:42', 60, '2022-10-13 05:57:03', 0, NULL, 1),
(10537, 'K.vimal', '6', '7200295505', '6380193380', 'Darkweb7401@gmail.com', '1999-12-27', 22, '1', '2', 'Ammulu', 'House wife', 20000.00, 1, 12000.00, 17000.00, 'Chennai', 'Chennai', '2210080017', '', '2', 'upload_files/candidate_tracker/48735093791_vimal3.pdf', NULL, '1', '2022-10-08', 0, '2210080017', '3', '59', '2022-10-17', 198000.00, '', '5', '1970-01-01', '2', 'selected for Thiyagu,internal reference,lond back candidate attended here and hot rejected by banu,we have processed again need to analyse and confirm in 7 days training alos the re was no proper documents of his previous Exp holds an IRDA certificate need to provide NOC or should close the certificate', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-08 12:08:03', 60, '2022-10-13 05:55:18', 0, NULL, 1),
(10538, '', '0', '9841189149', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 01:28:41', 0, NULL, 0, NULL, 1),
(10539, 'PRAVEEN G', '6', '9789939697', '8111026311', 'g.praveensi123@gmail.com', '1999-08-22', 23, '1', '2', 'GAJENDRAN', 'IMRB', 12000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2210080019', '', '1', 'upload_files/candidate_tracker/24275319107_1655104607002_Praveen resume (1).pdf', NULL, '1', '2022-10-08', 0, '2210080019', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-08 01:37:27', 60, '2022-10-08 02:59:28', 0, NULL, 1),
(10540, 'Ancilla A', '5', '9611720206', '', 'ancillaa99@gmail.com', '1999-04-06', 23, '2', '2', '-', '-', 1.00, 1, 0.00, 1.00, 'mysore', 'Mysore', '2210080020', '1', '1', 'upload_files/candidate_tracker/25477638939_Ancilla .pdf', NULL, '3', '2022-10-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '4', '7', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-08 02:16:58', 1, '2022-10-08 02:24:45', 0, NULL, 1),
(10541, '', '0', '6369041060', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 02:26:36', 0, NULL, 0, NULL, 1),
(10542, '', '0', '9840612458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 02:33:31', 0, NULL, 0, NULL, 1),
(10543, '', '0', '8825890244', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 05:30:43', 0, NULL, 0, NULL, 1),
(10544, '', '0', '7395952872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210080024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-08 09:04:46', 0, NULL, 0, NULL, 1),
(10545, 'Shiburaj V', '16', '9840826045', '', 'Shiburajnsb@gmail.com', '1995-07-19', 27, '2', '2', 'Janaki v', 'House wife', 25000.00, 2, 18000.00, 25000.00, 'Triplicane', 'Triplicane', '2210080025', '1', '2', 'upload_files/candidate_tracker/51675223590_Shiburaj CV.pdf', NULL, '1', '2022-10-12', 90, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication, Notice Period is 90 days,no sustainability in his previous exp looking for change only for the salary growth will not sustain and not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-08 10:18:30', 85, '2022-10-12 10:20:17', 0, NULL, 1),
(10546, 'Mohamed Mujahid', '5', '6383093514', '', 'mujahidbiker@gmail.com', '1999-08-06', 23, '4', '2', 'Sathick Batcha', 'Business', 25000.00, 2, 21000.00, 30000.00, 'Kumbakonam', 'Chennai', '2210090001', '', '2', 'upload_files/candidate_tracker/80277736082_MOHAMED MUJAHID.pdf', NULL, '1', '2022-10-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-09 05:52:02', 1, '2022-10-09 06:00:21', 0, NULL, 1),
(10547, 'Balaji.M', '16', '7010046906', '', 'balaji12394@gmail.com', '1994-03-12', 0, '6', '2', 'Mani.R', 'Private Sector', 30000.00, 1, 25000.00, 28000.00, '9/5 Erusappan street Mint', 'Chennai', '2210100001', '', '2', 'upload_files/candidate_tracker/63113238951_Resume(1).pdf', NULL, '1', '2023-11-28', 10, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for our roles holding several offers and looking for more', '3', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 07:09:27', 1, '2023-11-28 08:10:50', 0, NULL, 1),
(10548, 'Yaddala Arun Kumar Reddy', '4', '8050307603', '8884980764', 'arunreddy143sunny@gmail.com', '2000-05-16', 22, '3', '2', 'Y Ramachandra reddy', 'Farming', 10000.00, 1, 0.00, 17000.00, 'Kadiri', 'Marathalli', '2210100002', '', '1', 'upload_files/candidate_tracker/92551542525_ARUN.docx', NULL, '3', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 09:38:30', 1, '2022-10-10 09:41:53', 0, NULL, 1),
(10549, 'Alphy Joseph', '5', '7510689858', '', 'alphyjoseph737@gmail.com', '1998-04-10', 24, '2', '2', 'Joseph KM', 'Agriculture', 25000.00, 2, 25000.00, 30000.00, 'Bengaluru', 'Bengaluru', '2210100003', '1', '2', 'upload_files/candidate_tracker/52208533899_My resume _updated .pdf', NULL, '1', '2022-10-11', 0, '', '5', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He is looking inside sales job salary expectaion 30k in hand he looking cab specility also', '5', '1', '', '2', '2', '', '2', '1970-01-01', '3', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-10 09:41:02', 96, '2022-10-12 10:01:30', 0, NULL, 1),
(10550, 'Sujitha', '31', '9345289718', '', 'sujisujitha135@gmail.com', '1998-08-10', 24, '2', '2', 'George', 'Fisherman', 15000.00, 1, 0.00, 15000.00, 'Kanyakumari', 'Chennai,saitapet', '2210100004', '1', '1', 'upload_files/candidate_tracker/16495482742_suji.pdf', NULL, '1', '2022-10-10', 0, '', '3', '59', '2022-10-11', 120000.00, '', '3', '2022-10-12', '2', '5K Stipend,3yrs SA,10-12K post internship,2nd round interviewed by Gokul, Need to be finalised for React or Node', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-10 10:46:41', 60, '2022-10-14 12:58:04', 0, NULL, 1),
(10551, 'Ramkumar', '31', '9092464431', '', 'civiler.kumar19@gmail.com', '1996-08-20', 26, '2', '2', 'Mahalakshmi', 'Engineer', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2210100005', '1', '1', 'upload_files/candidate_tracker/64609017113_RamkumarR_CV (2).pdf', NULL, '1', '2022-10-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-10 11:21:48', 96, '2022-10-10 01:27:26', 0, NULL, 1),
(10552, 'ramalingam', '5', '9789370619', '', 'riovicky67089@gmail.com', '2000-02-24', 22, '2', '2', 'ravi', 'sales executive', 40000.00, 1, 19000.00, 20000.00, 'villupuram', 'nungambakkam', '2210100006', '1', '2', 'upload_files/candidate_tracker/33174476183_resume 2022 pdf.pdf', NULL, '1', '2022-10-10', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'worked 7 months with Justdial', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-10 11:22:41', 60, '2022-10-10 12:56:41', 0, NULL, 1),
(10553, 'Aswini', '4', '7904601399', '9789370619', 'Aswiniramesh02@gmail.com', '2001-02-20', 21, '2', '2', 'Ramesh', 'Farmer', 40000.00, 2, 25000.00, 25000.00, 'Tindivanama', 'Nungambakkam', '2210100007', '1', '2', 'upload_files/candidate_tracker/21743553151_Aswini Resume [final].pdf', NULL, '1', '2022-10-10', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Telecalling Worked in Justdial for 7 months,reasons for relieving was not clear,can give a try 5050 kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-10 11:23:30', 96, '2022-10-10 12:47:09', 0, NULL, 1),
(10554, 'Prasanth M', '4', '8300202415', '', 'prasanthm29gym@gmail.com', '2000-03-29', 22, '4', '2', 'Murali', 'Photographer', 20000.00, 2, 22.00, 22.00, '6/47A Nathamedu melalathur post Gudiyatham.', 'Kodambakam', '2210100008', '', '2', 'upload_files/candidate_tracker/87278724004_M.PRASANTH.pdf', NULL, '1', '2022-10-10', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 11:35:02', 1, '2022-10-10 11:42:20', 0, NULL, 1),
(10555, 'R. Hariharan', '4', '9342541552', '', 'harilonely66@gmail.com', '2001-07-24', 21, '4', '2', 'R. Devi', 'R. Devi', 10000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai', '2210100009', '', '1', 'upload_files/candidate_tracker/74963993900_HARI RESUME.pdf', NULL, '1', '2022-10-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 11:38:46', 1, '2022-10-10 11:52:22', 0, NULL, 1),
(10556, '', '0', '7598838746', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 11:41:01', 0, NULL, 0, NULL, 1),
(10557, 'RAMKUMAR.R', '13', '8111087792', '7708218103', 'ramkumarraja753@gmail.com', '1998-10-31', 23, '2', '2', 'RAJA.M', 'Fisherman', 15000.00, 3, 0.00, 15.00, 'Sirkali, Mayiladuthurai', 'Sirkali, Mayiladuthurai', '2210100011', '1', '1', 'upload_files/candidate_tracker/82841109996_RAMKUMAR_2021_BTECH(IT).pdf.pdf', NULL, '1', '2022-10-10', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have 3 months Exp in PHP,Need to be trained a lot Need time to confirm his opportunity in our PHP,will check with Sathish and confirm his employment later', '2', '1', '', '1', '1', '', '2', '2022-10-14', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-10 12:05:19', 96, '2022-10-10 01:27:51', 0, NULL, 1),
(10558, 'Rajesh G', '4', '9003031825', '6383677583', 'rajeshrajeshg2@gmail.com', '2001-06-25', 21, '3', '2', 'Jayanthi', 'Student', 300000.00, 0, 0.00, 18000.00, 'Tiruvallur', 'Anna nagar', '2210100012', '', '1', 'upload_files/candidate_tracker/88221970422_Resume job .pdf', NULL, '1', '2022-10-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed with the candidate not ok with salary also not open for Field calls but salary Exp is high and pressure handling doubts', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-10 12:07:20', 60, '2022-10-10 02:52:42', 0, NULL, 1),
(10559, 'Satheesh s', '31', '9080861057', '', 'satheeshpsr41@gmail.com', '1999-05-28', 23, '3', '2', 'Sunder Raj', 'Construction site working', 40000.00, 1, 25000.00, 40000.00, '15/50c, colachel, kanyakumari district', 'Ram nagar, madipakkam, Chennai', '2210100013', '', '2', 'upload_files/candidate_tracker/60907542600_Satheesh\'s Resume (1).pdf', NULL, '1', '2022-10-10', 35, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have exp as process Associate in HP his current salary is 25K Need time to give his confirmation on the TxxampC and the stipend if he comes back let us try.', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 12:57:04', 1, '2022-10-10 02:25:55', 0, NULL, 1),
(10560, 'Dionysius Ivan Odell I', '4', '8939234218', '', 'ivandanny887@gmail.com', '1999-07-28', 23, '1', '2', 'Isaac Arulkumar .Y', 'DISTRICT HEALTH EDUCATOR', 50000.00, 2, 0.00, 14000.00, 'Chennai', 'Chennai', '2210100014', '', '1', 'upload_files/candidate_tracker/18562908977_Resume.docx', NULL, '1', '2022-10-10', 0, 'P1002', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-10 03:21:19', 1, '2022-10-10 03:28:45', 0, NULL, 1),
(10561, '', '0', '9514171357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 04:45:11', 0, NULL, 0, NULL, 1),
(10562, '', '0', '9789908493', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 05:48:06', 0, NULL, 0, NULL, 1),
(10563, '', '0', '7448792633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 05:48:18', 0, NULL, 0, NULL, 1),
(10564, '', '0', '9344937715', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210100018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-10 06:51:17', 0, NULL, 0, NULL, 1),
(10565, '', '0', '9688172524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210110001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-11 09:21:41', 0, NULL, 0, NULL, 1),
(10566, 'vignesh', '31', '9384609073', '', 'Vigneesh.vic05@gmail.com', '2001-05-18', 21, '2', '2', 'elvizhi', 'house keeping', 9000.00, 1, 0.00, 23000.00, 'semmenjeri', 'kumara nagur', '2210110002', '1', '1', 'upload_files/candidate_tracker/70690772423_RESUME Vignesh .pdf', NULL, '1', '2022-10-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp as PC Builder,not much comfort in TxxampC need to learn a lot in basics of JS,if he comes back we can give a try ', '2', '1', '', '1', '1', '', '2', '2022-10-14', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 09:22:00', 85, '2022-10-11 03:49:24', 0, NULL, 1),
(10567, 'Lawnce Harrington', '14', '9787934735', '9486244690', 'harringtonlawnce@gmail.com', '2000-07-24', 22, '2', '2', 'Christdoss premkumar M', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Trichy', 'Trichy', '2210110003', '1', '1', 'upload_files/candidate_tracker/35405018076_Share_LAWENCE_RESUME_FINAL__1_.pdf', NULL, '1', '2022-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher ,Looking for High Salary and tier level companies have a plan to go abroad,got opportunity with high salary but not joined as he felt that as a less pay will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 09:22:14', 85, '2022-10-11 03:46:32', 0, NULL, 1),
(10568, 'SHATHISH V', '31', '9360996923', '8056236970', 'shathish3099@gmail.com', '1999-12-30', 22, '2', '2', 'VETRIVEL D', 'Retried', 15000.00, 1, 0.00, 10000.00, 'No.2, Thirumoorthy Nagar, Ernavoor,chennai-57', 'No.2, Thirumoorthy Nagar, Ernavoor , Chennai -57', '2210110004', '1', '1', 'upload_files/candidate_tracker/20277597855_Shathish - Resume.pdf', NULL, '1', '2022-10-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 09:22:17', 85, '2022-10-11 03:49:48', 0, NULL, 1),
(10569, '', '0', '7010453961', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210110005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-11 09:23:15', 0, NULL, 0, NULL, 1),
(10570, 'KEERTHIKANNAN D', '23', '9500962057', '', 'keerthikanan03@gmail.com', '2001-04-27', 21, '2', '2', 'Devendran', 'Sales Man', 120000.00, 0, 0.00, 15000.00, 'Pattukkottai', 'Chennai', '2210110006', '1', '1', 'upload_files/candidate_tracker/99606283259_keerthi resume.pdf', NULL, '1', '2022-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic Skills not open for txxampC will not sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 09:32:09', 85, '2022-10-11 03:46:57', 0, NULL, 1),
(10571, 'Rahul Srinivasan', '31', '7338822084', '', 'rahulsrinivasan30@gmail.com', '2000-11-30', 21, '3', '2', 'A Srinivasan', 'Front End Developer', 30000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2210110007', '', '2', 'upload_files/candidate_tracker/2486208730_S-Rahul-Resume.pdf', NULL, '1', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-11 09:56:40', 1, '2022-10-11 09:59:31', 0, NULL, 1),
(10572, 'Arun P', '23', '9843292727', '', 'arunmessi54@gmail.com', '1998-04-05', 24, '2', '2', 'A.Pandi', 'Farmer', 125000.00, 2, 0.00, 15000.00, 'Manamadurai', 'Velachery', '2210110008', '1', '1', 'upload_files/candidate_tracker/71184571251_Arunpandi.pdf', NULL, '1', '2022-10-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have exp in Credit Card Sales now looking for opportunites in IT Need to be trained if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-10-14', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 10:12:40', 85, '2022-10-11 03:47:49', 0, NULL, 1),
(10573, 'Parkavan', '31', '9080450116', '', 'ipark.avan@gmail.com', '1997-08-22', 25, '2', '2', 'Suriya Prakasam', 'React Developer', 25000.00, 1, 19500.00, 40000.00, 'Pallikaranai', 'Pallikaranai', '2210110009', '1', '2', 'upload_files/candidate_tracker/74491571912_Parkavan Resume (2).pdf', NULL, '1', '2022-10-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 1 yrs Exp in React Exp Min 25K Not open to work on Saturday have other commitments Will not sustain in our roles not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 10:18:01', 85, '2022-10-11 03:45:54', 0, NULL, 1),
(10574, 'Arun R', '5', '8870707733', '', 'arunravichand19@gmail.com', '1998-07-19', 24, '2', '2', 'V Ravichandran', 'Working', 20000.00, 0, 20000.00, 40000.00, 'Chennai', 'Chennai', '2210110010', '1', '2', 'upload_files/candidate_tracker/97434794392_resume Arun R-converted.pdf', NULL, '1', '2022-10-11', 0, '', '3', '59', '1970-01-01', 297696.00, '', '2', '1970-01-01', '1', 'Have Exp In B2b Sales Communication Is Ok Fresh For Our Sales Can Be Trained Kindly Check And Let Me Know Your Inputs Sir - Selected for GK sir Team - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-11 10:27:04', 60, '2022-10-12 03:48:21', 0, NULL, 1),
(10575, 'Stephin', '13', '9597030522', '', 'stephinsr1998@gmail.com', '1998-11-18', 23, '2', '2', 'Stellus', 'Fisher mam', 20000.00, 1, 15000.00, 20000.00, 'Kanyakumari', 'Velachery', '2210110011', '1', '2', 'upload_files/candidate_tracker/58198913232_stephinresume.pdf', NULL, '1', '2022-10-11', 0, '', '5', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Using the existing code to do the task.', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-11 11:14:43', 85, '2022-10-11 03:45:17', 0, NULL, 1),
(10576, 'Mahalakshmi', '5', '9677093022', '9710326964', 'maha19091995@gmail.com', '1995-09-19', 27, '2', '1', 'Husband', 'Bussiness', 30000.00, 2, 190000.00, 22000.00, 'Saidapet', 'Saidapet', '2210110012', '1', '2', 'upload_files/candidate_tracker/1375241151_B MAHALAKSHMI2022.docx', NULL, '3', '2022-10-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Telecalling Asked them to wait for 2nd round with banu but left without attending ', '5', '1', '', '1', '1', '', '2', '2022-10-14', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-11 11:37:39', 85, '2022-10-11 11:58:32', 0, NULL, 1),
(10577, 'Lavanya. T', '4', '8428391510', '6382544914', 'Lavanyathirupal@gmail.com', '1996-06-04', 26, '2', '1', 'Harish. S', 'Bilding Contracter', 20000.00, 0, 18000.00, 20000.00, 'Saidapet', 'Saidapet', '2210110013', '1', '2', 'upload_files/candidate_tracker/15087610310_Lavanya Resume. (NEW) doc(1).doc', NULL, '1', '2022-10-11', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp In Telecalling Asked Them To Wait For 2nd Round With Banu But Left Without Attending ', '1', '1', '', '1', '1', '', '2', '2022-10-14', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-11 11:37:48', 85, '2022-10-11 11:58:14', 0, NULL, 1),
(10578, 'prajeesh a', '6', '8072814977', '8608302018', 'prajua21@gmail.com', '2000-09-21', 22, '2', '2', 'appunni as', 'father', 10000.00, 1, 13750.00, 16000.00, 'velachery', 'velachery', '2210110014', '1', '2', 'upload_files/candidate_tracker/52621045983_Prajeesh', NULL, '1', '2022-10-11', 0, '', '3', '59', '2022-10-17', 199000.00, '', '5', '1970-01-01', '1', 'Have Exp In Calling Fresher For Our Domain,Can Give A Try Kindly Check And Let Me Know Your Inputs - selected for Syed Team in Staff ROle', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-11 11:53:59', 60, '2022-10-12 04:10:09', 0, NULL, 1),
(10579, 'B.Prashant Kumar', '5', '9345188372', '7603951284', 'rockprashant99@gmail.com', '1999-10-06', 23, '2', '2', 'Raju', 'Sub-inspector (ex)', 400000.00, 2, 17500.00, 20000.00, 'Avadi', 'Avadi', '2210110015', '1', '2', 'upload_files/candidate_tracker/29658342465_20960_prashant_resume.pdf', NULL, '1', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-11 01:23:16', 1, '2022-10-11 01:41:10', 0, NULL, 1),
(10580, 'Kokila K', '5', '7603951284', '9345188372', 'kokilakumar2010@gmail.com', '2001-12-06', 20, '2', '2', 'M.Kumaraguru', 'Own business', 40000.00, 0, 16000.00, 20000.00, 'Chennai', 'Chennai', '2210110016', '1', '2', 'upload_files/candidate_tracker/85636049078_KOKILA RESUME.pdf', NULL, '1', '2022-10-11', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'have Exp in Calling Can be trained ,open for B2B kindly check and let me know your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-11 01:24:08', 1, '2022-10-11 01:35:16', 0, NULL, 1),
(10581, 'Chokkam varun Teja', '5', '9346634311', '8519931233', 'varunroyal547@gmail.com', '2000-06-15', 22, '1', '2', 'Harsha', 'Employe', 32000.00, 1, 17800.00, 25000.00, 'Mydukur kadapa dist andhra pradesh', 'Banglore Btm laylout', '2210110017', '', '2', 'upload_files/candidate_tracker/18955026060_VARUN 11-1.docx', NULL, '1', '2022-10-11', 0, 'P1322', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-11 04:08:41', 1, '2022-10-11 04:15:12', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10582, 'Sriram R', '4', '7397347946', '9789088154', 'sriram73973@gmail.com', '2001-06-18', 21, '2', '2', 'Hemalatha R', 'Home Maket', 17000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2210110018', '1', '1', 'upload_files/candidate_tracker/20397721957_1913141096056- R.Sriram-Resume (1) (1).docx', NULL, '1', '2022-10-12', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-11 05:53:33', 85, '2022-10-12 10:19:54', 0, NULL, 1),
(10583, 'Sathish.S', '25', '8270125262', '', 'manisathish4921@gmail.com', '1999-04-02', 23, '3', '2', 'Sivasankar.V', 'Customer relationship manager', 20000.00, 2, 15000.00, 20000.00, 'Kizhkuppam,Tiruvannamalai.606705', 'Thirumazhisai,Chennai.600124', '2210110019', '', '2', 'upload_files/candidate_tracker/69163861703_Sathishresume.pdf', NULL, '1', '2022-10-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-10-11 06:34:46', 1, '2022-10-11 07:08:52', 0, NULL, 1),
(10584, 'Jothika.G', '28', '6381521118', '', 'jothikag4@gmail.com', '2000-12-04', 21, '3', '2', 'Sujatha', 'House wife', 100000.00, 1, 11000.00, 18000.00, 'Chennai', 'Vanagaram, chennai', '2210110020', '', '2', 'upload_files/candidate_tracker/21847844170_JOTHIKA.G RESUME.docx', NULL, '3', '2022-10-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-11 07:56:45', 1, '2022-10-11 08:58:37', 0, NULL, 1),
(10585, 'Raghavendra', '23', '6374179478', '', 'raghavrjkr@gmail.com', '2001-11-11', 20, '2', '2', 'Parents:Ravi chandran, Prema jothi laksmi', 'Buisness', 40000.00, 1, 0.00, 20000.00, 'Rajapalayam', 'Chennai', '2210120001', '1', '1', 'upload_files/candidate_tracker/67463810855_Resume pdf.pdf', NULL, '1', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher ,Need to train a lot only basic knowledge in Figma,XD.Not much comfort in TxxampC need to travel for along not able to relocate', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 09:34:38', 85, '2022-10-12 02:34:48', 0, NULL, 1),
(10586, 'Faisal Ali Khan', '31', '9443491625', '7010480348', 'ahamedali9842060423@gmail.com', '2000-05-02', 22, '2', '2', 'Ahamed Ali', 'Farmer', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2210120002', '1', '1', 'upload_files/candidate_tracker/99650543566_KhanCv.pdf', NULL, '1', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills in Javascript,Looking much for Java openings not open for TxxampC will not sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 09:35:25', 85, '2022-10-12 02:35:40', 0, NULL, 1),
(10587, 'Sabari Anand.S', '4', '9080927629', '9865689922', 'sabarianand2782@gmail.com', '2000-01-13', 22, '1', '2', 'Siva.k', 'Two wheeler machnical', 20000.00, 1, 0.00, 12.00, 'Erode', 'Erode', '2210120003', '', '1', 'upload_files/candidate_tracker/89583693471_sabari anand.s Resume (2).pdf', NULL, '1', '2022-10-12', 0, 'CA131', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-12 09:42:11', 1, '2022-10-12 09:49:05', 0, NULL, 1),
(10588, 'Selva Ganesh .v', '16', '7358475473', '9380949471', 'selvad22@gmail.com', '1997-06-29', 25, '2', '2', 'Vadivel murugan', 'Department store', 50000.00, 1, 15000.00, 22000.00, '19/17 South boag road .t.nagar ch.17', '19/17 South Boag Road .T.Nagar Ch.17', '2210120004', '1', '2', 'upload_files/candidate_tracker/56979355817_Selva Resume.docx', NULL, '1', '2022-10-12', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No communication ,Average only,Focus only on the salary growth,will not sustain in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-12 10:09:08', 85, '2022-10-12 10:52:21', 0, NULL, 1),
(10589, '', '0', '7550155274', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-12 11:13:28', 0, NULL, 0, NULL, 1),
(10590, 'Muthu', '27', '7708813728', '9751614890', 'muthuram1501010@gmail.com', '1996-07-29', 26, '2', '2', 'Velmurugan', 'Farmer', 20000.00, 2, 0.00, 2.50, 'Ulundurpet', 'Chennai', '2210120006', '1', '1', 'upload_files/candidate_tracker/81721906567_Muthu Resume.pdf', NULL, '1', '2022-10-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT have Exp in Sales,have a basic knowledge in JS,Need to train a lot if available can have a final round on saturday with gokul and check', '2', '1', '', '1', '1', '', '2', '2022-10-15', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 11:50:05', 85, '2022-10-12 02:34:37', 0, NULL, 1),
(10591, 'Manivannan', '31', '6374371082', '8870221104', 'Manivannanparimel@gmail.com', '1997-06-05', 25, '2', '2', 'Parimelazhagan', 'Former', 100000.00, 2, 0.00, 10.00, 'Ariyalur', 'Velachery', '2210120007', '1', '1', 'upload_files/candidate_tracker/45744939622_mani_vannanan_resume.docx', NULL, '1', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in react support Exp 6 months left due to overtime work not open for SA, Not open for our Salary too,got another opportunity but didnt join due to SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 12:09:42', 85, '2022-10-12 02:36:04', 0, NULL, 1),
(10592, 'Johnson', '31', '9489587024', '8870221104', 'johnsontherasa24@gmail.com', '1999-06-15', 23, '2', '2', 'Stalin s', 'Labour', 10000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Vellachery', '2210120008', '1', '1', 'upload_files/candidate_tracker/76557561819_JOHNSON RESUME (AutoRecovered) (1)-converted.pdf', NULL, '2', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp In React Support Exp 6 Months Left Due To Overtime Work Not Open For SA, Not Open For Our Salary Too', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 12:11:00', 85, '2022-10-12 02:35:02', 0, NULL, 1),
(10593, '', '0', '7603944649', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210120009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-12 12:20:13', 0, NULL, 0, NULL, 1),
(10594, 'Surya Narayana Rao', '13', '7550154998', '8056216181', 'suryashinde2510@gmail.com', '1999-10-25', 22, '2', '2', 'S. Ravichandran', 'Private sector', 300000.00, 0, 0.00, 350000.00, 'Tiruvallur', 'Tiruvallur', '2210120010', '1', '1', 'upload_files/candidate_tracker/47308222100_Surya Narayana Rao resume.pdf', NULL, '1', '2022-10-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'up and down 40 kms,,Fresher have only Internship but in different skills not open for SA,Not suitable will not sustain in our role for a long', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-12 12:30:43', 85, '2022-10-12 02:35:16', 0, NULL, 1),
(10595, '', '0', '8508833227', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-12 12:39:18', 0, NULL, 0, NULL, 1),
(10596, '', '0', '6385666209', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210120012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-12 12:39:38', 0, NULL, 0, NULL, 1),
(10597, 'Deepak.A', '20', '8072708887', '6382145656', 'arun@cafsindia.com', '1993-02-24', 29, '3', '1', 'Gayathri', 'Accounted', 13000.00, 2, 17500.00, 21000.00, 'No40 thandavan street pursaiwalkam Chennai600007', 'No40 Thandavan Street PursaiwalkamChennai- 600007', '2210120013', '', '2', 'upload_files/candidate_tracker/38273980113_Resume_February 2022.pdf', NULL, '1', '2022-10-12', 0, '', '3', '59', '2022-10-26', 228000.00, '', '3', '2022-11-14', '1', 'Selected for B2B Consultant Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', 'deepak.arulmani007@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-12 01:04:22', 60, '2022-10-22 10:48:23', 0, NULL, 1),
(10598, 'S. Pavithra', '4', '8073207694', '7200751719', 'pavishasekar7@gmail.com', '1999-09-11', 23, '2', '2', 'P.Sekaran', 'Auto Driver', 18000.00, 1, 15.00, 18.00, 'Saidapet', 'Saidapet', '2210120014', '1', '2', 'upload_files/candidate_tracker/42649925901_S PAVITHRA - Resume-1.pdf', NULL, '1', '2022-10-13', 0, '', '3', '59', '2022-10-17', 204000.00, '', NULL, '2024-06-25', '2', 'Selected for B2B staff Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-12 03:48:59', 60, '2022-10-13 05:20:07', 0, NULL, 1),
(10599, 'Morrison Fernando', '4', '9941914017', '', 'mjfernando0194@gmail.com', '1994-05-11', 28, '4', '1', 'Vaishali', 'House wife', 23125.00, 1, 23125.00, 30000.00, 'Chennai', 'Chennai', '2210120015', '', '2', 'upload_files/candidate_tracker/22787836225_Morrison resume new.pdf', NULL, '1', '2022-10-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-12 04:13:24', 1, '2022-10-12 04:21:45', 0, NULL, 1),
(10600, '', '0', '9789250855', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210130001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-13 08:58:40', 0, NULL, 0, NULL, 1),
(10601, 'illakiya s', '4', '9176415744', '', 'ilakiyaselvam22@gmail.com', '2001-06-19', 21, '2', '2', 'selvam', 'auto driver', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210130002', '2', '1', 'upload_files/candidate_tracker/97122907529_Share', NULL, '1', '2022-10-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to speak need to open a lot will not sustain and handle the work pressure not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-13 09:46:34', 60, '2022-10-15 01:11:02', 0, NULL, 1),
(10602, 'Kamaleshkan', '4', '9384657807', '9384657808', 'KAMALESHKAN025@GMAIL.COM', '1998-02-25', 24, '2', '2', 'R.Kannan', 'Land broker', 30000.00, 2, 0.00, 20000.00, 'Maddampakkam', 'Maddampakkam', '2210130003', '1', '2', 'upload_files/candidate_tracker/35711537864_CV_202210081629277.pdf', NULL, '1', '2022-10-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our Sales,Salary exp is very high and the distance is too long will not sustain in our roles not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-13 11:39:41', 85, '2022-10-13 11:53:15', 0, NULL, 1),
(10603, 'G. Malini', '5', '7397249363', '9884738825', 'malinidevi2297@gmail.com', '1997-11-22', 24, '2', '2', 'G. Devi', 'House wife', 12000.00, 2, 15000.00, 18000.00, 'Chennai', 'Chennai', '2210130004', '1', '2', 'upload_files/candidate_tracker/19892858417_Malini resume.pdf', NULL, '1', '2022-10-13', 0, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication is Good Have Exp in Telecalling But too long Distance open to travel kindly check for ESalea and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-13 11:56:13', 60, '2022-10-13 01:12:25', 0, NULL, 1),
(10604, 'EBENEZER .Y', '4', '9363225628', '9025370570', 'abenezy13@gmail.com', '1998-07-13', 24, '3', '2', 'YESU DASS', 'Auto driver', 20000.00, 2, 16000.00, 18000.00, 'Mugappair west', 'Mugappair west', '2210130005', '', '2', 'upload_files/candidate_tracker/91067801430_CV_202210100158437.pdf', NULL, '3', '2022-10-13', 0, '', '1', '14', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-13 03:02:13', 1, '2022-10-13 03:07:41', 0, NULL, 1),
(10605, 'thamil arasan', '23', '6381210426', '', 'thamiladhanush@gmail.com', '2003-05-19', 19, '2', '2', 'sundharam', 'tiles contract', 25000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2210140001', '1', '1', 'upload_files/candidate_tracker/90736948174_DocScanner 14-Oct-2022 11-18 am.pdf', NULL, '1', '2022-10-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills too long distance not much active will not sustain not suitable', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-10-14 10:58:28', 1, '2022-10-14 11:26:33', 0, NULL, 1),
(10606, 'Sathis Kumar', '4', '8072984886', '', 'sathiskumarsk1998@gmail.com', '1998-01-05', 24, '3', '2', 'Dharanisekaran', 'Shopkeeper', 30000.00, 1, 110000.00, 110000.00, 'Thanjavur', 'Thanjavur', '2210140002', '', '2', 'upload_files/candidate_tracker/42403215075_Resume.pdf', NULL, '1', '2022-10-14', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-14 11:04:47', 1, '2022-10-14 11:12:09', 0, NULL, 1),
(10607, 'Deepika Saravanan', '4', '7708640183', '9343363520', 'deepibee@gmail.com', '1994-07-27', 28, '2', '1', 'Ramajayam K', 'Relationship manager', 25.00, 1, 20000.00, 23000.00, 'Denkanikottai, krishnagiri', 'Kelambakkm, chennai', '2210140003', '1', '2', 'upload_files/candidate_tracker/18243820054_Resume (1).pdf', NULL, '1', '2022-10-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot Career Gap too long and need to relocate husband in HDB financial,will not handle the pressure not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-14 11:40:26', 60, '2022-10-14 12:32:13', 0, NULL, 1),
(10608, 'R santhosh', '5', '9360502448', '9094571162', 'Santhoshadhi1305@gmail.com', '1999-05-13', 23, '2', '2', 'A Joyssagayarani', '10th', 20000.00, 3, 18500.00, 20000.00, 'Tiruvallur', 'Tiruvallur', '2210140004', '1', '2', 'upload_files/candidate_tracker/2235002335_santhosh-1.pdf', NULL, '1', '2022-10-14', 0, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Satisfied', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-14 01:05:00', 60, '2022-10-14 04:25:11', 0, NULL, 1),
(10609, 'mamtha', '5', '8925483214', '', 'mamthajoshe@gmail.com', '1999-07-18', 23, '2', '2', 'joseph', 'sales', 30000.00, 1, 13500.00, 15000.00, 'chennai', 'chennai', '2210140005', '1', '2', 'upload_files/candidate_tracker/12788863579_DOC-20220903-WA0003. (2).docx', NULL, '1', '2022-10-14', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in HDB Recovery, Need to see the distance but she worked somewhere near our location ready to travel 5050 sustainability kindly check and let me know your interest', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-14 01:31:03', 1, '2022-10-14 01:34:12', 0, NULL, 1),
(10610, 'karthika', '5', '6380369664', '', 'karthigakarthiga313@gmail.com', '1999-11-22', 22, '2', '2', 'gangatharan', 'welder', 20000.00, 1, 10500.00, 15000.00, 'chennai', 'chennai', '2210140006', '1', '2', 'upload_files/candidate_tracker/79644233214_KARTHIGA RESUME.pdf', NULL, '1', '2022-10-14', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Have Exp In HDB Recovery, Need To See The Distance But She Worked Somewhere Near Our Location Ready To Travel 5050 Sustainability Kindly Check And Let Me Know Your Interest', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1013', '0', NULL, NULL, NULL, 1, '2022-10-14 01:37:01', 1, '2022-10-14 01:39:38', 0, NULL, 1),
(10611, 'Thilagavathy', '5', '6380670412', '7358448001', 'thilagavathysara1804@gmail.com', '2000-09-04', 22, '2', '1', 'Saravanan', 'Sales executive', 40000.00, 1, 15000.00, 20000.00, 'Ambattur', 'Ambattur', '2210140007', '1', '2', 'upload_files/candidate_tracker/50284310047_thilagavathy resume 2022.docx', NULL, '1', '2022-10-15', 15, '', '3', '59', '2022-11-01', 246000.00, '', '5', '1970-01-01', '2', 'Selected for Karthika Team - Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-14 04:04:25', 60, '2022-10-19 01:30:39', 0, NULL, 1),
(10612, '', '0', '9789839641', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-14 07:26:21', 0, NULL, 0, NULL, 1),
(10613, 'Kuraloviya A', '23', '7358370699', '9952730339', 'Kuraloviya07@gmail.com', '1999-07-12', 23, '2', '2', 'Deivayanai', 'Scenario associate in wipro', 15000.00, 3, 0.00, 2.00, 'Rampuram chennai', 'Ramapuram chennai', '2210150001', '1', '1', 'upload_files/candidate_tracker/10727763293_Resume 3.pdf', NULL, '1', '2022-10-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT ,no strong in the skills not much comfort in TxxampC will not sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-15 09:56:55', 85, '2022-10-15 10:35:52', 0, NULL, 1),
(10614, 'Kavipriya. D', '13', '9176856122', '9150615620', 'kavipriya68187@gmail.com', '2000-09-03', 22, '2', '2', 'Dhasarathan. N', 'Farmer', 300000.00, 1, 15000.00, 20000.00, 'No. 12,Main Road, sevalapurai village, Gingee', 'No. 2/666, mogappair west, chennai-35', '2210150002', '1', '2', 'upload_files/candidate_tracker/83516687068_Resume- Kavi.pdf', NULL, '1', '2022-10-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in PHP,only into support and earning 15K Now ,looking for more salary and not open for TxxampC will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-15 10:34:59', 85, '2022-10-15 11:33:16', 0, NULL, 1),
(10615, 'M Ramcharan', '26', '9840786764', '', 'm.ramcharanashok@gmail.com', '1994-09-28', 28, '2', '2', 'M Ashok', 'Self employed', 70000.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2210150003', '1', '2', 'upload_files/candidate_tracker/50496422922_RamcharanM.pdf', NULL, '1', '2022-10-15', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Earlier attended and not joined due to salary,now again looking for the salary hike in an year not much comfort in TxxampC not suitable', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-15 10:35:30', 85, '2022-10-15 11:32:52', 0, NULL, 1),
(10616, 'Magalakshmi', '31', '7010035701', '9894863417', 'maganeelakandan7@gmail.com', '1999-06-18', 23, '2', '1', 'Arun Ganesh', 'Warehouse', 35.00, 2, 0.00, 3.50, 'Chennai', 'Chennai', '2210150004', '1', '1', 'upload_files/candidate_tracker/60504939021_MAGALAKSHMI NEELAKANDAN-Resume-2.pdf', NULL, '1', '2022-10-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in React for 6 months Intern Stipend is 15K she may get the offer in the same company for 3.5 LPA,Just Looking fr a change,no much strong in skills married will not sustain and not open for TxxampC', '2', '1', '', '4', '6', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-15 11:05:59', 85, '2022-10-15 11:33:05', 0, NULL, 1),
(10617, 'Ramesh T', '5', '9500022651', '6374408583', 'rishramesh007@gmail.com', '1998-12-21', 23, '2', '2', 'Sagayarani', 'Homemaker', 25000.00, 0, 25000.00, 29000.00, 'No.9/45, West Aarasamaram Street,Aminjikari,Ch-29', 'No. 9/45, west aarasamaram Street,aminjikari,Ch-29', '2210150005', '1', '2', 'upload_files/candidate_tracker/47515689598_CamScanner 09-08-2021 18.47.pdf', NULL, '1', '2022-10-15', 15, '', '4', '29', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'ok', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-15 11:08:19', 85, '2022-10-15 11:32:37', 0, NULL, 1),
(10618, 'Balaguru', '4', '9952184506', '9092684506', 'gurubalaguru1997@gmail.com', '1997-09-21', 25, '2', '2', 'MARIAPPAN', 'Farmer', 15000.00, 2, 0.00, 10000.00, 'Chennai', 'Chennai', '2210150006', '1', '1', 'upload_files/candidate_tracker/73819974882_BALAGURU', NULL, '1', '2022-10-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-15 02:55:36', 85, '2022-10-18 10:11:07', 0, NULL, 1),
(10619, '', '0', '7397496103', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210150007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-15 07:26:59', 0, NULL, 0, NULL, 1),
(10620, 'Hari Babu P', '4', '8367714980', '', 'hariroyal836@gmail.com', '2007-10-17', 0, '2', '2', 'Jayapal P', 'Farmer', 25000.00, 0, 0.00, 19000.00, 'Chittoor', 'Banglore', '2210170001', '1', '1', 'upload_files/candidate_tracker/19595937420_Hari_Resume_PDF.pdf', NULL, '1', '2022-10-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-17 09:20:30', 85, '2022-10-17 10:01:00', 0, NULL, 1),
(10621, 'Arun kasi', '5', '9176283803', '', 'Arun.Miracal@Gmail.Com', '1993-02-01', 29, '1', '2', 'Kasi L', 'Plumber', 360000.00, 2, 3600000.00, 4500000.00, 'Chennai', 'Chennai', '2210170002', '', '2', 'upload_files/candidate_tracker/52061226678_Arun Kasi Resume (2).pdf', NULL, '1', '2022-10-17', 30, 'P1377', '3', '59', '2022-11-07', 400000.00, '', '4', '2023-02-04', '1', 'Selected for Sarath Team - Staff Role', '5', '1', '4', '1', '1', '1', '2', '1970-01-01', '2', '1', 'arun.miracal@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-17 11:39:27', 60, '2022-11-01 10:22:22', 0, NULL, 1),
(10622, 'Satish Aravindan. A', '16', '8939630443', '7010060397', 'satishchakko001@gmail.com', '1997-12-04', 24, '2', '2', 'Aravind', 'Retried', 15000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2210170003', '1', '1', 'upload_files/candidate_tracker/45948065224_SATHISH.pdf', NULL, '1', '2022-10-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication too long distance not open for Sales profile no ideas in MIS not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-17 12:14:24', 85, '2022-10-17 06:04:36', 0, NULL, 1),
(10623, 'arifa banu', '31', '9342982945', '7708443084', 'arifabanu72@gmail.com', '1999-04-28', 23, '2', '2', 'noor mohammed a g', 'business', 100000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2210170004', '1', '1', 'upload_files/candidate_tracker/90422623225_Arifa Banu Resume.pdf', NULL, '1', '2022-10-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having basic skills not much ok with Stipend pay exp some thing more 2nd Interviewed by manikandan xxamp 3rd round by Kavya,given time to her if she is ok with the TxxampC will come for final round on Saturday', '2', '1', '', '1', '1', '', '2', '2022-10-22', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-17 12:28:06', 85, '2022-10-18 10:11:24', 0, NULL, 1),
(10624, 'T janani', '16', '9841562728', '', 'Jananikaviya2499@gmail.com', '1999-08-24', 23, '2', '2', 'Thiruvalluvan', 'Auto driver', 10000.00, 4, 0.00, 15000.00, 'Chennai', 'Chennai', '2210170005', '1', '1', 'upload_files/candidate_tracker/82046268824_1663242572857_RESUME JANU.docx', NULL, '1', '2022-10-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication no sustainability in the previous exp not open for TxxampC Not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-17 01:02:03', 85, '2022-10-17 06:04:58', 0, NULL, 1),
(10625, 'Vishwanathan', '16', '7358403422', '', 'vishwaa810@gmail.com', '2001-10-08', 21, '2', '2', 'S D SANKAR', 'Shop owner', 30000.00, 0, 25000.00, 25000.00, '3/5, Chella pillayar koil 1st , Royapettah, Ch- 14', 'Same as permanent address', '2210170006', '1', '2', 'upload_files/candidate_tracker/5748822451_Resume.pdf', NULL, '1', '2022-10-17', 0, '', '4', '98', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton is Good Fresher for MIS,Sustainability doubts in our role kindly check and let me know your interest,i have spoken for both MIS xxamp Technical Support', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1013', '', NULL, NULL, NULL, 1, '2022-10-17 01:24:22', 85, '2022-10-17 02:26:31', 0, NULL, 1),
(10626, '', '0', '8110024655', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210170007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-17 03:08:20', 0, NULL, 0, NULL, 1),
(10627, 'kingsle Richard R', '31', '8825997385', '8508786856', 'iam.kingsleyrichard@gmail.com', '1997-08-01', 25, '2', '2', 'R. Rajan babu', 'teacher', 27000.00, 0, 10000.00, 20000.00, 'chennai', 'thiruvanmiyur', '2210180001', '1', '2', 'upload_files/candidate_tracker/15990496610_Kingsley-Richard-CV-React-1.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-18 09:37:38', 85, '2022-10-18 11:33:59', 0, NULL, 1),
(10628, 'dhanasekar', '4', '7539981204', '', 'dhanasekar012723@gmail.com', '2002-07-01', 20, '2', '2', 'janaikiraman', 'sales person', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210180002', '2', '1', 'upload_files/candidate_tracker/34160838635_new resume (1).pdf', NULL, '1', '2022-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 10:00:59', 1, '2022-10-18 10:03:52', 0, NULL, 1),
(10629, 'dinakaran g', '4', '9087062763', '', 'dkdkroman2424@gmail.com', '2000-10-11', 22, '2', '2', 'gopinath d', 'business', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210180003', '2', '1', 'upload_files/candidate_tracker/80853760339_a2ef6782-3bbd-4466-a09f-8f194290dd53.pdf', NULL, '1', '2022-10-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 10:04:57', 1, '2022-10-18 10:06:42', 0, NULL, 1),
(10630, 'naveen k', '5', '9944332353', '', 'nvnrjofficial@gmail.com', '1997-06-30', 25, '2', '2', 'kailasam', 'tneb', 20000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2210180004', '2', '1', 'upload_files/candidate_tracker/12339975307_Resume 0000.docx', NULL, '1', '2022-10-18', 0, '', '3', '59', '2022-11-14', 231000.00, '', '2', '2022-11-15', '1', 'Selected for MAnikandan team with PF/PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-18 10:07:32', 60, '2022-11-10 01:22:43', 0, NULL, 1),
(10631, 'riyajudeen k', '6', '7402073663', '', 'Riyajudeenecejks05@Gmail.Com', '1998-05-20', 24, '2', '2', 'kaja hussain', 'cooli', 12000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2210180005', '2', '1', 'upload_files/candidate_tracker/1327773895_RIYAJUDEEN resume .pdf', NULL, '1', '2022-10-18', 0, '', '3', '59', '2022-10-27', 185000.00, '', '4', '2023-02-09', '2', 'Selected for Syed Team in staff Role', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'riyajudeenecejks05@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-18 10:11:43', 60, '2022-10-27 12:27:58', 0, NULL, 1),
(10632, 'DM prakash', '11', '7569233766', '', 'dmprakash1993@gmail.com', '1993-05-15', 29, '2', '1', 'Bhargavi', 'Volntree', 13000.00, 3, 0.00, 16000.00, 'Nagari', 'Thirumulavoil', '2210180006', '1', '1', 'upload_files/candidate_tracker/52429063210_prakash resume 17-08-2022.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication Working in HDB Sales but not interested towards the same, not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-18 10:36:24', 60, '2022-10-18 11:34:18', 0, NULL, 1),
(10633, 'Anand.k', '4', '9600172881', '', 'anandkarunanidhi2906@gmail.xom', '2000-06-29', 22, '2', '2', 'R.Karunanidhi', 'Driver', 17000.00, 4, 15000.00, 20000.00, 'Saidapet', 'Saidapet', '2210180007', '1', '2', 'upload_files/candidate_tracker/30926749839_Anand resume.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not interested in Sales and Recovery process too already he has exp in receovery but not open to go in the same will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-18 10:51:25', 85, '2022-10-18 11:20:05', 0, NULL, 1),
(10634, 'Gokul Doss', '4', '8095135842', '', 'gokuldoss.777@gmail.com', '1989-02-28', 33, '4', '1', 'Sudha K', 'Salaried', 45000.00, 1, 35000.00, 40000.00, 'Chennai', 'Bangalore', '2210180008', '', '2', 'upload_files/candidate_tracker/63863145382_Gokul-Resume(1).pdf', NULL, '1', '2022-10-18', 10, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'have 11 yrs exp in ERP Sales new to our domain,need to check with gokul and decide the profile', '1', '2', '0', '1', '3', '0', '2', '2022-10-22', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 11:01:18', 1, '2022-10-18 11:05:32', 0, NULL, 1),
(10635, 'Yoganandhan.A', '4', '6380871916', '', 'ayogaanandhan@gmail.com', '2007-10-18', 0, '3', '2', 'Anandhan.A', 'Carpenter', 11500.00, 1, 0.00, 18000.00, 'Perambur,chennai', 'Chennai', '2210180009', '', '1', 'upload_files/candidate_tracker/80444439475_Yoganandhan.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate didnt come back with his confirmation', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 12:08:52', 1, '2022-10-18 12:13:25', 0, NULL, 1),
(10636, 'Mohamad tharic', '4', '6384259506', '', 'mohamadtharic5@gmail.com', '2000-10-14', 22, '3', '2', 'Rahamathullah', 'Chef', 30000.00, 3, 0.00, 18000.00, 'Arakandanallur', 'Madhuravoyal', '2210180010', '', '1', 'upload_files/candidate_tracker/30537606717_mdtharic...Cv Doc.pdf', NULL, '1', '2022-10-18', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 03:57:04', 1, '2022-10-18 04:06:28', 0, NULL, 1),
(10637, 'S ABARNA', '5', '7639216474', '', 'abarna2628@gmail.com', '1999-02-27', 23, '2', '2', 'Saravanan', 'Farmers', 10000.00, 2, 16000.00, 20000.00, 'Villupuram', 'Saidapet', '2210180011', '1', '2', 'upload_files/candidate_tracker/35330518104_ABRANA.pdf', NULL, '1', '2022-10-19', 10, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Telecalling and retail sales in GRT 5050 profile Salary exp was high, kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-18 07:10:54', 85, '2022-10-19 10:37:24', 0, NULL, 1),
(10638, '', '0', '9578911352', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210180012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-18 07:11:13', 0, NULL, 0, NULL, 1),
(10639, 'Vijayan', '23', '6383907565', '', 'mvm6383@gmail.com', '2001-03-13', 21, '4', '2', 'Murugaiyan', 'Farmer', 10000.00, 0, 0.00, 15000.00, '1-15 mela Sethi street ,seruvamani ,610205', 'Tripilicane chennai', '2210180013', '', '1', 'upload_files/candidate_tracker/87331259046_resume new .pdf', NULL, '3', '2022-11-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-18 08:08:30', 1, '2022-10-18 11:21:49', 0, NULL, 1),
(10640, 'Tharanitha S', '3', '6380968028', '9361156628', 'tharanisengodan2002@gmail.com', '2002-08-25', 20, '1', '2', 'Sengodan. C', 'Driver', 10000.00, 1, 0.00, 12000.00, 'Namakkal', 'Namakkal', '2210190001', '', '1', 'upload_files/candidate_tracker/17167107420_tharaniResume.pdf', NULL, '2', '2022-10-19', 0, 'No', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-19 11:43:57', 1, '2022-10-19 11:49:59', 0, NULL, 1),
(10641, 'Varadhammal', '4', '7338988229', '9176980941', 'varadhammalr6044@gmail.com', '1999-03-02', 23, '2', '2', 'Parent', 'Senior telecaller', 70000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2210190002', '1', '2', 'upload_files/candidate_tracker/48704843481_CV_2022090212043157.pdf', NULL, '1', '2022-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'too long Distance 74kms up and down will not sustain and not suitable ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 11:53:02', 85, '2022-10-19 12:27:40', 0, NULL, 1),
(10642, 'E.Easwari', '4', '8608872737', '9790830771', 'easu296@gmail.com', '2000-06-29', 22, '2', '2', 'E.janaki', 'Koli', 15000.00, 2, 12000.00, 15000.00, 'Chrompet', 'Chennai', '2210190003', '1', '2', 'upload_files/candidate_tracker/66469174187_Adobe Scan Sep 02, 2022.pdf', NULL, '1', '2022-10-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not comfort to get back into sales calls,looking much for non voice for time being looking for Voice will not sustian and she is very clear that she will move to non voice if she get any', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 11:54:05', 85, '2022-10-19 12:27:50', 0, NULL, 1),
(10643, 'Swetha', '4', '9884722273', '', 'Swetharaja021@gmail.com', '1994-05-13', 28, '3', '1', 'Raja', 'Driver', 13000.00, 1, 0.00, 15000.00, 'Teynapet', 'Teynapet', '2210190004', '', '1', 'upload_files/candidate_tracker/32106001796_swetha.pdf.pdf', NULL, '1', '2022-10-19', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '12th Dropout long career gap last month attended and got rejected,she got opportunity in Mount road and left due to timing and distance not suitable will not sustain', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-19 12:07:24', 1, '2022-10-19 12:23:46', 0, NULL, 1),
(10644, 'Vignesh Kumar', '20', '9629828135', '8678975614', 'vkvijay511424@gmail.com', '2001-07-17', 21, '2', '2', 'Subramani', '56', 20000.00, 1, 0.00, 15000.00, 'Salem', 'Salem', '2210190005', '1', '1', 'upload_files/candidate_tracker/97436059720_Vigneshkumar_Resume.docx', NULL, '1', '2022-10-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 12:52:13', 85, '2022-10-19 02:42:49', 0, NULL, 1),
(10645, '', '0', '9894830379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-19 12:52:27', 0, NULL, 0, NULL, 1),
(10646, 'Sasikumar', '6', '6374954568', '8870992503', 'gsasikumar331@gmail.com', '2001-06-19', 21, '2', '2', 'Govintharaj', 'Drawing', 15000.00, 2, 0.00, 15000.00, '5/46gajalnaikkenpatty, poimankaradu salem', 'Poimankaradu', '2210190007', '1', '1', 'upload_files/candidate_tracker/917263958_SASIKUMAR G RESUME.docx', NULL, '1', '2022-10-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 12:52:49', 85, '2022-10-19 02:43:01', 0, NULL, 1),
(10647, '', '0', '9345500785', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210190008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-19 01:13:08', 0, NULL, 0, NULL, 1),
(10648, 'Rajesh', '16', '9047974188', '9655394278', 'rajesh0699@yahoo.com', '1999-06-03', 23, '2', '2', 'Raju', 'Agriculture', 30000.00, 1, 0.00, 150000.00, 'Nilgiris', 'Chennai', '2210190009', '1', '1', 'upload_files/candidate_tracker/40017916410_Rajesh-Resume.pdf', NULL, '1', '2022-10-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for mIS', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-19 01:59:26', 85, '2022-10-20 06:16:24', 0, NULL, 1),
(10649, '', '0', '9047874188', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210190010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-19 02:16:48', 0, NULL, 0, NULL, 1),
(10650, 'Deepankumar', '4', '9840879627', '', 'Deepankumarr@g', '2000-02-25', 22, '3', '2', 'Rajendran.s', 'Bc', 10000.00, 8, 15000.00, 20000.00, 'Chennai', 'Chintadripet', '2210190011', '', '2', 'upload_files/candidate_tracker/66927732417_RES-converted.pdf', NULL, '3', '2022-10-19', 8, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-19 05:39:01', 1, '2022-10-19 05:48:24', 0, NULL, 1),
(10651, 'gobinath r', '11', '8610336042', '', 'gobishaju777@gmail.com', '1999-07-13', 23, '2', '2', 'ravi s', 'labor work', 14000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2210200001', '2', '1', 'upload_files/candidate_tracker/23993671132_DOC-20220924-WA0007..pdf', NULL, '1', '2022-10-20', 0, '', '2', '97', NULL, 0.00, '', '0', NULL, '2', 'good communication.. have 3m of intern exp in sales non it.. txxampc want to confirm with his parents if he come back let us try ...', '6', '1', '0', '1', '1', '0', '2', '2022-10-21', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 10:26:03', 1, '2022-10-20 10:27:34', 0, NULL, 1),
(10652, 'S.madhavan', '4', '7810030441', '8110841660', 'S.madhavan5112001@gmail.com', '2001-11-05', 20, '3', '2', 'K.subramaniyan', 'Former', 15000.00, 1, 0.00, 15000.00, 'Kalancheri', 'Kalancheri', '2210200002', '', '1', 'upload_files/candidate_tracker/81625373027_MADDY RESUME,45.pdf', NULL, '1', '2022-10-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not profiled and not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 11:34:46', 1, '2022-10-20 11:59:34', 0, NULL, 1),
(10653, 'S.SANTHOSH SIVASAMY', '4', '8825927887', '9244393132', 'santhossivasamy076@gmail.com', '1996-02-23', 26, '3', '2', 'S.SRIDHAR AYYASAMY', 'Office work', 16000.00, 1, 0.00, 12000.00, 'THANJAVUR', 'THANJAVUR', '2210200003', '', '1', 'upload_files/candidate_tracker/31367983966_S.Santhosh Sivasamy Resume.pdf', NULL, '1', '2022-10-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'sustainability issue and 10years not working out of the field not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 11:34:58', 1, '2022-10-20 11:50:27', 0, NULL, 1),
(10654, 'J.jagadeesan', '4', '8110941632', '9047525202', 'arun@cafsindia.com', '2002-07-21', 20, '3', '2', 'N.jaisankar', 'Former', 15000.00, 1, 0.00, 15000.00, 'Manganoor', 'Manganoor', '2210200004', '', '1', 'upload_files/candidate_tracker/98930438554_jagadeesan resume 01.pdf', NULL, '1', '2022-10-20', 0, '', '3', '59', '2022-10-31', 126312.00, '', '3', '2022-12-03', '1', 'Selected for Thanjavur - Consultant Role', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '2', '9', 'jagadees655@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-20 11:35:01', 60, '2022-10-29 06:09:30', 0, NULL, 1),
(10655, 'R.Suresh', '4', '7010332623', '9789372720', 'sureshkrishna661@gmail.com', '1991-04-13', 31, '3', '2', 'T.R.Ramanujam', 'Red. Office assistant', 15000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2210200005', '', '1', 'upload_files/candidate_tracker/12684012263_R.SURESH Resume.pdf', NULL, '1', '2022-10-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'candidate have some speaking issue voice not that much flow and not fit', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 11:35:06', 1, '2022-10-20 11:51:04', 0, NULL, 1),
(10656, 'T Santhosh Kumar', '4', '6385700720', '7305198846', 'santhoshkumarthangarasu1999@gmail.com', '1999-03-10', 23, '3', '2', 'Thangarasu V', 'Former', 15000.00, 2, 0.00, 15000.00, 'Kurungulam (East)', 'Kurungulam (East)', '2210200006', '', '1', 'upload_files/candidate_tracker/69334492351_T Santhosh Kumar.pdf', NULL, '1', '2022-10-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'candidate not fit for tele sales and not profiled', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 11:35:26', 1, '2022-10-20 11:49:32', 0, NULL, 1),
(10657, 'Bharathi', '4', '9940820109', '9092650313', 'bharathiaki007@gmail.com', '1997-04-20', 25, '4', '2', 'JAGANATHAN', 'Painter', 22000.00, 1, 15000.00, 20000.00, '1/57, West Street Ukkaram sathyamangalam', 'Ukkaram', '2210200007', '', '2', 'upload_files/candidate_tracker/27959650657_Share J.Bharathi paayal 2021.pdf', NULL, '3', '2022-10-21', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-20 12:35:07', 1, '2022-10-20 12:40:47', 0, NULL, 1),
(10658, '', '0', '9566225557', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-21 07:55:56', 0, NULL, 0, NULL, 1),
(10659, 'Yokesh', '2', '9965255929', '', 'yokesh2102@gmail.com', '1998-02-21', 24, '2', '2', 'Ramalingam', 'Retired government staff', 30000.00, 1, 0.00, 20000.00, 'Om Shakthi Nagar, Kondur Post', 'Velachery', '2210210002', '1', '1', 'upload_files/candidate_tracker/7803622515_Yokesh_Resume.pdf', NULL, '1', '2022-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a basic skills knowledge holding an offer for 15K,Fresher not much comfort in TxxampC Will not sustain ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-21 10:53:18', 85, '2022-10-21 11:11:35', 0, NULL, 1),
(10660, 'Ahamed Kabeer', '23', '7448751101', '7305882475', 'kabeerahd875@gmail.com', '2000-03-20', 22, '2', '2', 'Abdul rahman', 'Business', 50000.00, 1, 0.00, 15000.00, 'No.14, Govindaraj Nagar, Moulivakkam, Chennai', 'Chennai', '2210210003', '1', '1', 'upload_files/candidate_tracker/32480115_kabeer-RESUME 04-docs.pdf', NULL, '1', '2022-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 months intern Exp distance too long and he is not much comfort in this distance and his min exp is 15K already holds an offer for 10K', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-21 10:59:51', 85, '2022-10-21 11:11:45', 0, NULL, 1),
(10661, 'Navin raj s', '6', '8015479134', '9840686956', 'arun@cafsindia.com', '1998-07-07', 24, '1', '2', 'Soundar', 'Farmer', 40000.00, 3, 19000.00, 25000.00, 'No:3, school road,everady colony,Kodungaiyur', 'No:3, School Road,Everady Colony,Kodungaiyur', '2210210004', '', '2', 'upload_files/candidate_tracker/21614968602_DocScanner 21-Oct-2022 11-15 am.pdf', NULL, '1', '2022-10-21', 0, 'p1251', '3', '59', '2022-10-27', 260000.00, '', '6', '2023-04-01', '1', 'Selected for Syed Team in staff Role,based on the managers Suggestions we proceed with the high salary', '5', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '3', 'navinraj7798@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-21 11:02:57', 60, '2022-10-27 12:26:16', 0, NULL, 1),
(10662, 'S. Nithyasri', '4', '6374775272', '8526106611', 'nithyasri1102@gmail.com', '2007-10-21', 0, '3', '2', 'S. Nithyasri', 'Farmer', 1000.00, 2, 0.00, 10000.00, '77, keezha street, nagachi.', '77,keezha street, nagachi', '2210210005', '', '1', 'upload_files/candidate_tracker/45685623393_nithyasri.resume.pdf', NULL, '1', '2022-10-21', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'rejected not fit for telesales voice not clear', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-21 11:55:15', 1, '2022-10-21 12:20:40', 0, NULL, 1),
(10663, 'A. Sivasakthi', '4', '7094994266', '9976091066', 'sivasakthiashok126@gmail.com', '2007-10-21', 15, '3', '2', 'K. Ashokkumar', 'Own business', 15000.00, 2, 0.00, 12000.00, '36 east street nagachi poondi (po)thirukattupalli', '36 East street nagachi poondi(po) thirukattupalli', '2210210006', '', '1', 'upload_files/candidate_tracker/19406236908_SIVA RESUME.pdf', NULL, '1', '2022-10-21', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team and telesales ', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-21 11:55:59', 1, '2022-10-21 12:08:20', 0, NULL, 1),
(10664, 'R.vinisha', '4', '6381263427', '9047548472', 'arun@cafsindia.com', '2002-03-03', 20, '3', '2', 'Ramesh.k', 'Farmer', 100.00, 2, 0.00, 12000.00, 'K.Ramesh 1/206 North Street thanjavur', 'Same as permanent address', '2210210007', '', '1', 'upload_files/candidate_tracker/11104200662_VINISHA.R RESUME.docx', NULL, '1', '2022-10-21', 0, '', '3', '59', '2022-10-28', 126312.00, '', '', '2022-11-10', '2', 'Selected for Thanjavur - Consultant Role', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '2', '9', 'vinisharamesh02@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-21 11:55:59', 60, '2022-10-27 02:36:57', 0, NULL, 1),
(10665, 'M.pavithra', '4', '9342759956', '', 'pavimuniyaiya@gmail.com', '2002-06-28', 20, '3', '2', 'M.muniyaiyan', 'Farmer', 15000.00, 3, 0.00, 10000.00, 'Kela mariyamman kovil Street panaveli Thanjavur', 'Kela mariyamman kovil Street panaveli Thanjavur', '2210210008', '', '1', 'upload_files/candidate_tracker/67732349411_pavithra resume.pdf', NULL, '1', '2022-10-21', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not profiled and not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-21 11:57:03', 1, '2022-10-21 12:16:52', 0, NULL, 1),
(10666, 'Hemalatha', '16', '7904000516', '', 'hemamohan2712@gmail.com', '1996-12-27', 25, '2', '2', 'Mohan', 'Tailor', 35000.00, 1, 15000.00, 17000.00, 'Kk Nagar', 'Kk Nagar', '2210210009', '1', '2', 'upload_files/candidate_tracker/68342511410_CV-Hema.pdf', NULL, '1', '2022-10-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication have exp in collections,age around 26 yrs and sustainability doubts as she will get marry in 1yr,not much convincing will not sustain and handle our pressure', '3', '2', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-21 12:18:28', 85, '2022-10-21 12:25:20', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10667, 'Naresh Kumar R', '5', '9710625147', '9710117372', 'naresh13296@gmail.com', '1996-02-13', 26, '2', '2', 'Nagalakshmi', 'House wife', 500000.00, 1, 0.00, 450000.00, 'Chennai', 'Chennai', '2210210010', '1', '2', 'upload_files/candidate_tracker/4276267612_NARESH KUMAR updated.docx', NULL, '1', '2022-10-21', 20, '', '5', '86', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Willing to Out side source.', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-21 12:19:47', 97, '2022-10-21 06:36:01', 0, NULL, 1),
(10668, '', '0', '8110951632', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210210011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-21 01:03:14', 0, NULL, 0, NULL, 1),
(10669, 'S.Roja', '4', '7200062343', '8189990133', 'rojarose2515@gmail.com', '1994-03-25', 28, '2', '1', 'Vimal raja', 'corporate employee', 23000.00, 1, 20000.00, 20000.00, 'MGR Nagar', 'K.K nagar', '2210210012', '1', '2', 'upload_files/candidate_tracker/93105599985_Roja CV-1 (1).pdf', NULL, '1', '2022-10-21', 1, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'married ..sal expt high .. average in convincing.. not suit for our role', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-21 01:14:50', 85, '2022-10-21 03:33:05', 0, NULL, 1),
(10670, 'ANANDHAN E', '6', '8525043155', '9025078224', 'anandhsane@gmail.com', '1998-02-02', 24, '2', '2', 'ESWARAN V', 'Former', 40000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2210220001', '1', '1', 'upload_files/candidate_tracker/28480325578_ANANDHAN_RESUME.pdf', NULL, '1', '2022-10-22', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for us', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-22 10:15:41', 85, '2022-10-22 10:41:11', 0, NULL, 1),
(10671, 'saravanan b', '14', '9789996444', '9840487025', 'saravananakash1996@gmail.com', '1996-08-30', 26, '3', '2', 'Baskaran B', 'Retired', 15000.00, 0, 280000.00, 320000.00, 'chennai-600075', 'chennai-600075', '2210220002', '', '2', 'upload_files/candidate_tracker/85312016371_RESUME IT-1.pdf', NULL, '1', '2022-10-22', 30, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-22 11:24:08', 1, '2022-10-22 11:29:33', 0, NULL, 1),
(10672, '', '0', '8197096182', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210240001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-24 02:42:49', 0, NULL, 0, NULL, 1),
(10673, 'Santhanakrishnan A', '2', '9489623700', '', 'inovsandy@gmail.com', '1998-12-05', 23, '2', '2', 'Anantha Sayanam', 'Farmer', 20000.00, 2, 0.00, 500000.00, 'Panruti', 'Chennai', '2210240002', '1', '1', 'upload_files/candidate_tracker/8009089615_Santhanakrishnan - Resume-1_1665641548517_Santhanakrishnan A.pdf', NULL, '1', '2022-10-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basic skills but not much strong,Saalry Exp is very high holding several offers will not sustain ,explained him about the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-24 06:42:56', 85, '2022-10-25 09:45:49', 0, NULL, 1),
(10674, 'MAHALAKSHMI Ayyappan', '13', '9363217623', '8610303731', 'maha02ayyappan@gmail.com', '1999-11-02', 24, '3', '2', 'Parent', 'Pothys security', 15000.00, 1, 0.00, 10000.00, 'Chennai', 'Chennai Tnagar', '2210250001', '', '1', 'upload_files/candidate_tracker/88645794415_Mahalakshmi ayyappan as of 1.4.24.pdf', NULL, '1', '2024-05-13', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-25 09:22:36', 112, '2024-05-13 11:23:32', 0, NULL, 1),
(10675, 'Thajunisha j', '4', '7200087702', '7871657902', 'thajunisha5665@gmail.com', '2001-03-09', 21, '1', '1', 'Vicky', 'Khazana jewellery office admin', 25000.00, 1, 22000.00, 28000.00, 'T.nagar', 'T.nagar', '2210250002', '', '2', 'upload_files/candidate_tracker/42719499210_resume update thajunisha.pdf', NULL, '1', '2022-10-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Telesales,have 3 months showroom sales Salary Exp is min 25K not ready to negotiate will not sustain', '1', '2', '0', '4', '6', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-25 10:50:27', 1, '2022-10-25 11:11:42', 0, NULL, 1),
(10676, 'Navin R', '16', '8608714843', '7395929651', 'Navinrosario01@gmail.com', '1996-11-12', 25, '2', '2', 'Ravichandran R', 'Buliding contractor', 25000.00, 1, 23000.00, 24000.00, 'Chennai', 'Chennai', '2210250003', '1', '2', 'upload_files/candidate_tracker/37592119329_DOC-20221016-WA0011..pdf', NULL, '1', '2022-10-26', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude, Left his previous job due to work pressure,2yrs in Muthoot finance, No Communication,will not sustain not suitable ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-25 02:23:15', 85, '2022-10-26 09:42:09', 0, NULL, 1),
(10677, 'Fizal shariff', '4', '9360163057', '7358362417', 'fizalshariff@gmail.com', '2000-07-28', 22, '2', '2', 'Meharunnusa', 'House wife', 30000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2210260001', '1', '2', 'upload_files/candidate_tracker/22125121412_Fizal Resume 1.docx', NULL, '1', '2022-10-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Can give a try for MIS/Renewals Sustainability Doubts as he has plan to move IT after an year,2nd round interviewed by gokul and on hold candidate need to give his confirmation if he comes back let us try,15K TH plus TDS', '1', '1', '', '1', '1', '', '2', '2022-10-28', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-26 10:55:08', 85, '2022-10-26 11:05:21', 0, NULL, 1),
(10678, 'Vignesh', '4', '6382122206', '8489879348', 'vv583120@gmail.com', '2001-04-27', 21, '1', '2', 'Bhavani', 'Telecalling', 12000.00, 1, 0.00, 13000.00, 'Villupuram', 'Chentharipet', '2210260002', '', '1', 'upload_files/candidate_tracker/20691708337_RESUME.doc', NULL, '1', '2022-10-26', 0, 'P1122', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 11:02:50', 1, '2022-10-26 11:08:33', 0, NULL, 1),
(10679, 'Yeswanth Kumar T V', '4', '8925093554', '7305516579', 'yeshmack19jack@gmail.com', '1992-09-05', 30, '2', '2', 'T v Bhagya Lakshmi', 'Home maker', 15000.00, 1, 15000.00, 22000.00, 'Villivakkam', 'Villivakkam', '2210260003', '1', '2', 'upload_files/candidate_tracker/80747835293_TVY Resume 2022.doc', NULL, '1', '2022-10-26', 5, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average Have Exp but no sustaianability 2nd interviewed by gokul and shortlisted for 13K TH plus TDS Candidate need time to give his confirmation on the joining\n', '1', '1', '', '1', '1', '', '2', '2022-10-28', '1', '5', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-10-26 11:22:40', 60, '2022-10-26 03:01:53', 0, NULL, 1),
(10680, 'Jeyanthi.J', '4', '7094618858', '', 'arun@cafsindia.com', '2001-07-06', 21, '3', '2', 'Jaishankar.N', 'Farmer', 18000.00, 1, 0.00, 12000.00, 'Gandharvakkottai', 'Gandharvakkottai', '2210260004', '', '1', 'upload_files/candidate_tracker/37805797361_J.JEYANTHI RESUME.docx', NULL, '1', '2022-10-26', 0, '', '3', '59', '2022-10-28', 126312.00, '', '3', '2022-12-03', '2', 'Selected for Consultant - Thanjavur', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '2', '9', 'jeyanthij905@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-26 11:44:02', 60, '2022-10-27 08:02:13', 0, NULL, 1),
(10681, 'M.RAMYA', '4', '8524950283', '', 'mramya8110047656@gmail.com', '1999-12-03', 22, '3', '2', 'a.mathiyazhagan', 'Farmer', 15000.00, 2, 10000.00, 13000.00, 'Needamangalam', 'Needamangalam', '2210260005', '', '2', 'upload_files/candidate_tracker/68072969180_Resume-1.pdf', NULL, '1', '2022-10-26', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate not interested in the profile', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 11:44:05', 1, '2022-10-26 11:50:15', 0, NULL, 1),
(10682, 'R.Thamarai', '4', '9789838915', '', 'arun@cafsindia.com', '2000-07-10', 22, '3', '2', 'P.Ravichandran', 'Formar', 15000.00, 2, 0.00, 15000.00, 'Kovilvenni', 'Kovilvenni', '2210260006', '', '1', 'upload_files/candidate_tracker/49086888993_LOTUS RESUME.docx', NULL, '1', '2022-10-26', 0, '', '3', '59', '2022-10-28', 126312.00, '', '3', '2023-03-31', '2', 'Selected for Consultant Thanjavur', '1', '1', '1', '4', '6', '', '2', '1970-01-01', '2', '9', 'vennithamarai@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-26 11:44:08', 60, '2022-10-27 06:49:16', 0, NULL, 1),
(10683, 'P.Santhiya', '4', '9791524116', '9629548295', 'Sarathyparthan331@gmail.com', '2000-04-04', 22, '3', '2', 'N.Parthasarathy', 'Painter', 10000.00, 0, 0.00, 10000.00, 'Kovilvenni', 'Kovilvenni', '2210260007', '', '1', 'upload_files/candidate_tracker/30643799752_LOTUS RESUMEEE.docx', NULL, '1', '2022-10-26', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'voice not that much clear andnot fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 11:55:13', 1, '2022-10-26 11:59:07', 0, NULL, 1),
(10684, 'P. sivaparanika', '4', '6380538601', '9159212638', 'Baranikapalanisami@gmail.com', '2002-06-15', 20, '3', '2', 'Palanisami.o', 'Farmer', 15000.00, 2, 0.00, 13000.00, 'Thattamanaipatti', 'Thattamanaipatti', '2210260008', '', '1', 'upload_files/candidate_tracker/23602190105_BARANIKA RESUME.pdf', NULL, '1', '2022-10-26', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'voice clarity is not good and not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 11:55:29', 1, '2022-10-26 12:00:07', 0, NULL, 1),
(10685, 'Vignesh M', '4', '7603874047', '9941083037', 'vigneshmm531@gmail.com', '2000-10-24', 22, '1', '2', 'Muniyasamy', 'Former', 20000.00, 1, 15000.00, 17000.00, 'Ramanathapuram', 'Chennai', '2210260009', '', '2', 'upload_files/candidate_tracker/10569835194_NEW RESUME (2) 19-10-2022.pdf', NULL, '1', '2022-10-26', 0, '55577', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 Profile have exp in backend can give a try he is open much for appointment fixing seems not much ok with Sales kindly check and let me know your inputs', '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-26 01:50:14', 1, '2022-10-26 03:13:41', 0, NULL, 1),
(10686, 'Chakradhar Rao P', '16', '8667597223', '', 'crao96@gmail.com', '1996-11-23', 25, '2', '2', 'Sudhakara Rao P', 'Quality analyst', 30000.00, 0, 18000.00, 25000.00, '45/68, Azghar perumal kovil St., Vadapalani,ch-26.', '45/68, Azghar perumal kovil st., Vadapalani,ch-26.', '2210260010', '1', '2', 'upload_files/candidate_tracker/39599868808_DOC-20220919-WA0000..pdf', NULL, '1', '2022-10-27', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'good communication .. no sustainbility.. attitude issue.. not suit for our role.. sal expt high..', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-26 06:10:20', 85, '2022-10-27 11:12:09', 0, NULL, 1),
(10687, '', '0', '8681906586', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210260011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-26 11:42:28', 0, NULL, 0, NULL, 1),
(10688, 'Swetha Azhagesan', '4', '9342638959', '', 'swetha90255@gmail.com', '2000-11-25', 21, '2', '2', 'Azhagesan M R', 'Agriculture', 200000.00, 1, 10000.00, 150000.00, 'Kodaikanal', 'Chennai', '2210270001', '1', '2', 'upload_files/candidate_tracker/14823081735_SWETHA A - CV (2).pdf', NULL, '1', '2022-10-27', 30, '', '3', '59', '2022-11-28', 156000.00, '', '5', '1970-01-01', '1', 'Selected for Renewals/MIS Role 2nd round interviewed by Gokul have exp in Renewal for 1 yr in Vizza Insurance Can give a try 2yrs SA', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-27 10:23:21', 60, '2022-11-03 07:07:29', 0, NULL, 1),
(10689, 'Hyder Ali Khan', '20', '7975781579', '7975781570', 'hyderalikhan7975@gmail.com', '2001-07-06', 21, '2', '2', 'Nasir khan', 'Driver', 120000.00, 2, 32000.00, 35000.00, 'Nagvara', 'Nagvara', '2210270002', '1', '2', 'upload_files/candidate_tracker/60960263177_Resume _hyder.docx', NULL, '1', '2022-10-27', 0, '', '1', '56', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-27 10:58:15', 85, '2022-10-27 11:10:45', 0, NULL, 1),
(10690, 'Kousar N', '25', '7829067180', '9740380194', 'kousarsiddika@gmail.com', '1997-05-11', 25, '2', '2', 'Noor Ahmed', 'Tailor', 15000.00, 2, 34000.00, 36000.00, 'Madivala', 'Bommanahalli', '2210270003', '1', '2', 'upload_files/candidate_tracker/29585963538_inbound1686627333896516039.pdf', NULL, '1', '2022-10-27', 15, '', '1', '93', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-27 11:24:39', 85, '2022-10-27 06:58:24', 0, NULL, 1),
(10691, 'ABINESH.A', '4', '9159367638', '6385745766', 'abinesha71@gmail.com', '2001-07-24', 21, '3', '2', 'ANBALAGAN.S', 'Former', 25000.00, 3, 0.00, 11000.00, 'Ammapetai', 'Ammapetai', '2210270004', '', '1', 'upload_files/candidate_tracker/89657495511_RESUME...Abinesh...pdf', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'unfit', '1', '1', '0', '4', '5', '0', '2', '2022-11-07', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:30:35', 1, '2022-10-27 11:36:41', 0, NULL, 1),
(10692, 'VIGNESH M', '4', '9150141697', '', 'arunderose@gmail.com', '2002-04-14', 20, '3', '2', 'Murugesan PR', 'Own business', 25000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2210270005', '', '1', 'upload_files/candidate_tracker/66252604901_MY RESUME (2).pdf', NULL, '1', '2022-10-27', 0, '', '3', '59', '2022-10-31', 126312.00, '', '3', '2022-12-03', '1', 'Selected for Thanjavur Consultant Role', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '2', '9', 'vigneshmkgp22@gmail.com', '', '', '', NULL, NULL, NULL, 1, '2022-10-27 11:30:45', 60, '2022-10-29 06:19:39', 0, NULL, 1),
(10693, 'A. Punitha', '4', '7868827764', '', 'punithaammu15700@gmail.com', '2000-07-15', 22, '3', '2', 'Anbazhagan', 'Farmer', 10000.00, 1, 0.00, 10000.00, '397,west Street adhanur, needamangalam Tk.', '397,west Street, adhanur, needamangalam tk.', '2210270006', '', '1', 'upload_files/candidate_tracker/79959057680_punitha resume pdf.pdf', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'voice is not clear and not fit for team', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:30:58', 1, '2022-10-27 11:56:24', 0, NULL, 1),
(10694, 'S.VIGNESH KUMAR', '4', '8270531660', '', 'vickyVignesh1660@gmail.com', '1999-01-11', 23, '3', '2', 'G.Selvam raj', 'Business', 20000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2210270007', '', '1', 'upload_files/candidate_tracker/93895273960_vigneshkumar.pdf', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '1', 'not fit for team and no exposure no voice fluency', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:31:03', 1, '2022-10-27 11:46:52', 0, NULL, 1),
(10695, 'PRAVEEN K', '4', '7402179830', '', 'pravensince@gmail.com', '2002-01-29', 20, '3', '2', 'N.Kannadhasan', 'Trailer', 13000.00, 1, 0.00, 15000.00, 'Ammapet', 'Ammapet', '2210270008', '', '1', 'upload_files/candidate_tracker/12135460103_PRAVIN MY RESUME.pdf', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'over attitude and expected high and not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:31:05', 1, '2022-10-27 11:43:20', 0, NULL, 1),
(10696, 'K. Ganga devi', '4', '8489696042', '8526893858', 'Gangadevi1411@gmail.com', '1999-11-14', 22, '3', '2', 'G. Kumar', 'Farmer', 20000.00, 1, 0.00, 12000.00, '649/adi diravidar street. Senthalai', '649/adi diravidar street. Senthalai', '2210270009', '', '1', 'upload_files/candidate_tracker/63358988444_resume.final.docx', NULL, '1', '2022-10-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team and telesales also', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 11:35:02', 1, '2022-10-27 11:45:46', 0, NULL, 1),
(10697, 'V prasanth balaji', '23', '8939183415', '9080135535', 'Prasanthbalajiv@gmail.com', '1998-03-21', 24, '2', '2', 'B.vadivelu', 'Petrol bunk manger', 200000.00, 0, 0.00, 25000.00, 'No.1 c.g.colony 1st street royapuram', 'Chennai-13', '2210270010', '1', '1', 'upload_files/candidate_tracker/8145841018_resume-6.pdf', NULL, '1', '2022-10-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills he was into core for 3 yrs and looking much on the salary explained on the TxxampC he needs time to give his confirmation', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-27 12:05:22', 85, '2022-10-27 12:26:24', 0, NULL, 1),
(10698, '', '0', '8974090526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 04:43:03', 0, NULL, 0, NULL, 1),
(10699, '', '0', '6300060373', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 04:44:06', 0, NULL, 0, NULL, 1),
(10700, '', '0', '8500133321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 05:12:29', 0, NULL, 0, NULL, 1),
(10701, 'Uday kumar. N', '24', '8296046378', '8296378369', 'udy9152000@gmail.com', '2000-09-15', 22, '4', '2', 'Uday kumar. N', 'Labour', 17000.00, 1, 0.00, 17000.00, 'Hassan', 'Mysore', '2210270014', '', '1', 'upload_files/candidate_tracker/18675397752_Resume 1.pdf', NULL, '3', '2022-11-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '8', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 05:20:38', 1, '2022-10-27 05:50:28', 0, NULL, 1),
(10702, 'Selvakumar M', '16', '9514149662', '7299721548', 'msselvakathir@gmail.com', '1999-06-25', 23, '3', '2', 'Murugesan', 'coolie', 150000.00, 4, 0.00, 216000.00, 'Kundrathur', 'Kundrathur', '2210270015', '', '1', 'upload_files/candidate_tracker/64030748265_selvakumar curriculum vitae.pdf', NULL, '3', '2022-10-31', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 06:03:46', 1, '2022-10-27 06:14:56', 0, NULL, 1),
(10703, 'Sri lakshmi maalai k', '16', '9677917155', '', 'k.srilakshmi95@gmail.com', '1995-10-24', 27, '2', '1', 'Mariappan', 'IT employee', 40000.00, 2, 0.00, 300000.00, 'Chennai', 'Chennai', '2210270016', '1', '2', 'upload_files/candidate_tracker/45873460501_sri_resume-1.pdf', NULL, '2', '2022-10-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for our MIS roles,Career Gap have exp as a quality analyst,married and 2yrs kid,Travelling is bit difficult will not sustain not suitable', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-10-27 06:05:08', 1, '2022-10-27 06:11:41', 0, NULL, 1),
(10704, '', '0', '9159755075', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 06:05:24', 0, NULL, 0, NULL, 1),
(10705, 'Madasamy Kumaran', '4', '8056187744', '', 'smakkumar@gmail.com', '1996-05-20', 26, '3', '2', 'Indira S', 'House Wife', 30000.00, 0, 400000.00, 500000.00, 'Tirunelveli', 'Chennai', '2210270018', '', '2', 'upload_files/candidate_tracker/23101660727_Madasamy Kumaran - Resume.pdf', NULL, '1', '2022-10-30', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-27 06:06:55', 1, '2022-10-27 06:11:57', 0, NULL, 1),
(10706, 'L.viswanathan', '4', '9003055206', '', 'guruguha94@gmail.com', '1994-09-10', 28, '2', '2', 'V.Laksgminarayanan', 'IT', 100000.00, 1, 17000.00, 30000.00, 'Chennai', 'Chennai', '2210270019', '1', '2', 'upload_files/candidate_tracker/10552893141_Resume 1.pdf', NULL, '1', '2022-10-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Retail sales exp but no sustainability,Clarity on communication is poor will not sustain also not comfort to go into insurance domain', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-10-27 06:17:16', 1, '2022-10-28 11:31:27', 0, NULL, 1),
(10707, '', '0', '9600214654', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 06:17:23', 0, NULL, 0, NULL, 1),
(10708, '', '0', '8248681204', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 06:41:02', 0, NULL, 0, NULL, 1),
(10709, '', '0', '8466990242', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 07:56:44', 0, NULL, 0, NULL, 1),
(10710, '', '0', '9159755076', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210270023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-27 09:25:42', 0, NULL, 0, NULL, 1),
(10711, '', '0', '8939677528', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210280001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-28 12:08:49', 0, NULL, 0, NULL, 1),
(10712, '', '0', '7708171033', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210280002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-28 08:54:23', 0, NULL, 0, NULL, 1),
(10713, '', '0', '9676199190', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210280003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-28 11:01:27', 0, NULL, 0, NULL, 1),
(10714, 'SARATHKUMAR.P', '13', '8056527244', '7092027244', 'sarath.be2@gmail.com', '1991-07-20', 31, '2', '1', 'Rajalakshmi', 'House wife', 200000.00, 1, 17000.00, 20000.00, 'Krishnagiri', 'Chemmencherry', '2210280004', '1', '2', 'upload_files/candidate_tracker/20972580072_SARATHKUMAR aws Resume (1).pdf', NULL, '1', '2022-10-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic skills age around 29 have 6 months exp in front end, need to learn a lot will not sustain for a long married sustainability doubts in a long run', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-28 11:59:00', 85, '2022-10-28 12:22:53', 0, NULL, 1),
(10715, 'ANANDHKUMAR R', '4', '9176544645', '', 'anandkumarmadurai@gmail.com', '1993-05-04', 29, '1', '2', 'Rameshbabu R', 'postoffice security', 20000.00, 0, 18000.00, 15000.00, 'Perambur Loco works', 'Chennai', '2210280005', '', '2', 'upload_files/candidate_tracker/31142696175_Anandh Resume. (5).docx', NULL, '3', '2022-10-28', 0, 'p1275', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in telecalling ,understandin poor will not sustain and handle our pressure not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-28 12:22:30', 1, '2022-10-28 12:31:54', 0, NULL, 1),
(10716, 'nithosh arokia raj', '32', '7395950204', '8861782142', 'nithoshraj@gmail.com', '1992-07-10', 30, '1', '1', 'joyce iitisha', 'housewife', 30000.00, 1, 28000.00, 35000.00, 'chennai', 'chennai', '2210280006', '', '2', 'upload_files/candidate_tracker/43678949746_updated CV NITHOSH .docx', NULL, '1', '2022-10-28', 0, '55567', '3', '59', '2022-11-02', 420000.00, '', '3', '2022-11-05', '1', 'Selected for Santhosh Team with PF/ESI/PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-28 12:46:55', 60, '2022-11-02 09:41:34', 0, NULL, 1),
(10717, 'Jasmin', '4', '9597570611', '', 'Jasleethi19@gmail.com', '2001-02-19', 21, '3', '2', 'Aramainayagam', 'Late', 10000.00, 1, 0.00, 12000.00, 'Vellachery', 'Vellachery', '2210280007', '', '1', 'upload_files/candidate_tracker/88451923856_jasmine leethi resume.pdf', NULL, '1', '2022-10-28', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Communication ok sounding low in voice,Family need is there can be trained kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-28 12:47:29', 1, '2022-10-28 01:00:39', 0, NULL, 1),
(10718, 'Ashraf', '32', '7200493932', '7200746177', 'rehaanashraf12@gmail.com', '1990-12-12', 31, '3', '1', 'Arifa', 'House wife', 65000.00, 1, 90000.00, 45000.00, 'Chennai', 'Chennai', '2210280008', '', '2', 'upload_files/candidate_tracker/34155874462_Ashraf\'s Resume (5).pdf', NULL, '1', '2022-10-28', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'high salary expectation', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-28 12:55:25', 1, '2022-10-28 12:59:46', 0, NULL, 1),
(10719, 'Selvasurya S', '23', '9751157495', '8248909928', 'selvasuryasabapathi@gmail.com', '2000-07-11', 22, '2', '2', 'Sabapathi', 'Farmer', 100000.00, 0, 0.00, 200000.00, 'Dharapuram', 'Guindy, Chennai', '2210280009', '1', '1', 'upload_files/candidate_tracker/45389191851_Resume(New).pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'very Basic Skills Not Much Comfort With The TxxampC Will Not Sustain ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-28 05:11:09', 85, '2022-10-31 03:06:58', 0, NULL, 1),
(10720, 'Joice.A', '2', '9487942282', '9345989832', 'Joice221906464@gmail.com', '2002-07-16', 20, '2', '2', 'A.amalraj', 'Coolie', 20000.00, 2, 0.00, 10000.00, '10,kovarathana nagar,kattapoman st,Maduravayoul', '10,Kovarathana Nagar,Kattapoman St,Maduravayoul', '2210280010', '1', '1', 'upload_files/candidate_tracker/49247040552_CV_2022102817142632.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Basic Skills Sustainability Doubts Need time to confirm with her parents if she comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-28 06:57:51', 85, '2022-10-31 03:07:10', 0, NULL, 1),
(10721, 'THARANI KUMAR M', '23', '8754781381', '7373094563', 'tharanikumarns@Gmail.com', '2001-10-28', 21, '3', '2', 'Mangalanathan p', 'Teacher', 25000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'Velacherry,chennai', '2210290001', '', '1', 'upload_files/candidate_tracker/99301066775_MYRESUME4 (1).pdf', NULL, '1', '2022-10-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fita Academy Profile interviewed by Gokul Kaviya Need to finalise the Profile ', '2', '1', '0', '1', '1', '0', '2', '2022-11-04', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 09:36:25', 1, '2022-10-29 10:06:57', 0, NULL, 1),
(10722, 'Vivek G', '23', '8678996429', '8220524230', 'vivek10841230@gmail.com', '2001-02-03', 21, '3', '2', 'R.Gunasekaran', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Theni', 'Velacherry', '2210290002', '', '1', 'upload_files/candidate_tracker/88876857870_VIivekresume (2).pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fita Profile Seems to be very SLow Group Interview done by Gokul ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 09:36:28', 1, '2022-10-29 09:54:19', 0, NULL, 1),
(10723, 'S.sivasurya', '23', '8220524230', '8678996429', 'sivasurya2330@gmail.com', '2002-09-23', 20, '3', '2', 'M.sethupathy', 'Revenue inspector', 25000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2210290003', '', '1', 'upload_files/candidate_tracker/73991496928_resume5.pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fita Profile Group Interview done by Gokul Not much strong with the skills ', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 09:37:25', 1, '2022-10-29 09:53:55', 0, NULL, 1),
(10724, 'K.santhosh kumar', '23', '7373094563', '8754781381', 'Santhosmvp333@gmail.com', '2001-04-21', 21, '3', '2', 'K.karuppiah', 'Fisher man', 20000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Chennai', '2210290004', '', '1', 'upload_files/candidate_tracker/2189286723_RESUME5 (1) (1).pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'FITA Profile Seems to be slow Group interviewed by Gokul ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 09:37:30', 1, '2022-10-29 09:54:31', 0, NULL, 1),
(10725, 'Sharmila', '7', '9941246241', '', 'Sharmilaramesh305@gmail.com', '2001-04-07', 21, '2', '2', 'Mani', 'Can supply', 15000.00, 1, 11000.00, 15000.00, 'Old washerpet', 'Old washerpet', '2210290005', '1', '2', 'upload_files/candidate_tracker/62904216000_sharmi.pdf', NULL, '1', '2022-10-29', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication no understanding Very Poor in the Skills not suitable will not sustain', '7', '2', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-29 09:47:30', 85, '2022-10-29 11:58:17', 0, NULL, 1),
(10726, 'Syed Rahamathullah', '23', '8667717864', '9025490586', 'syedraha41@gmail.com', '2001-01-21', 21, '3', '2', 'Syed Faheem', 'Auto Driver', 40000.00, 2, 174000.00, 360000.00, 'No 21 1st floor West saidapet chennai 600015', 'Chennai', '2210290006', '', '2', 'upload_files/candidate_tracker/42028804918_Syed Rahamathullah 8667717864.pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Basic Skills Holding an offer for 25K have 1 yr exp in UX Focus on the salary much,Asked him to wait for the task but he left without attending', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 10:11:17', 1, '2022-10-29 10:15:55', 0, NULL, 1),
(10727, 'Maheshwaran M', '23', '9677730953', '', 'maheswaranvms25@gmail.com', '2000-09-25', 22, '3', '2', 'Muthukrishnan', 'Driver', 15000.00, 2, 0.00, 13000.00, 'Thoothukudi District', 'Perambur, Chennai', '2210290007', '', '1', 'upload_files/candidate_tracker/1457972654_Resume_Maheswaran M.pdf', NULL, '1', '2022-10-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Interviewed by Viswa Candidate is having 1 month course pending asked him to come back after the completion of course', '2', '2', '0', '1', '1', '0', '2', '2022-11-30', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 11:15:59', 1, '2022-10-29 11:18:40', 0, NULL, 1),
(10728, 'Dinesh kumar m', '26', '9176213296', '', 'dineshkumarm2462000@gmail.com', '2000-06-24', 22, '2', '2', 'Murugesan', 'PHE DESIGNER', 20000.00, 1, 0.00, 30000.00, '4/589, panaiyur,thruvanmalai -632 518', '2/18, Kannigapuram, kattupakkam,Chennai', '2210290008', '1', '1', 'upload_files/candidate_tracker/8252262560_DINESHKUMAR_M-1.pdf', NULL, '1', '2022-10-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no Communication travel distance is high will not handle our work pressure not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-29 11:25:48', 85, '2022-10-29 11:36:39', 0, NULL, 1),
(10729, '', '0', '7358591605', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210290009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-29 12:34:23', 0, NULL, 0, NULL, 1),
(10730, 'S.KAVIYA', '13', '6374977027', '8778305449', 'kaviyakk161@gmail.com', '1998-11-27', 23, '3', '2', 'SUBRAMANIAN', 'Carpenter', 30.00, 2, 0.00, 18.00, 'Chennai', 'Iyyappanthangal', '2210290010', '', '1', 'upload_files/candidate_tracker/54875838256_1667008535891_1666925089478_0_Updated_Kaviya_Resume1 oct (1)(1)(1).pdf', NULL, '1', '2022-10-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fita Profile have basic skills,need to give her confirmation on the txxampC if she comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-10-31', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 12:47:18', 1, '2022-10-29 12:51:27', 0, NULL, 1),
(10731, 'Durgadevi S', '4', '8610961914', '', 'durgarani712@gmail.com', '1999-08-30', 23, '3', '2', 'Selvarani', 'Housemaid Woman', 10000.00, 1, 0.00, 12000.00, 'EB Colony, Nanjikottai Road, Thanjavur', 'EB Colony, Nanjikottai Road, Thanjavur', '2210290011', '', '1', 'upload_files/candidate_tracker/38371648828_S.DURGA CV.pdf', NULL, '1', '2022-10-29', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-29 12:53:16', 85, '2022-10-29 01:16:34', 0, NULL, 1),
(10732, 'Lisy sophia. A', '4', '8637440608', '', 'Lisysophia.a@gamil.com', '1999-09-06', 23, '3', '2', 'Arockia Mary. A', 'Cooking', 15000.00, 1, 0.00, 15000.00, '29,19,th street anna nager thanjavur', '29,19th street anna nager thanhavur', '2210290012', '', '2', 'upload_files/candidate_tracker/68409237911_resume for lisy-1-1.docx', NULL, '1', '2022-10-29', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 12:53:42', 1, '2022-10-29 12:56:24', 0, NULL, 1),
(10733, 's j sivaraman', '5', '8124817513', '9677415409', 'Ram.Sri1082@Gmail.Com', '1996-07-15', 26, '2', '2', 'jothilingam s', 'clerk', 15.00, 2, 25000.00, 22000.00, 'chennai', 'chennai', '2210290013', '1', '2', 'upload_files/candidate_tracker/58311096373_Sriram Resume.pdf', NULL, '1', '2022-10-31', 0, '', '3', '59', '2022-11-07', 288000.00, '', '4', '2024-07-16', '1', 'Selected for Sarath Team with PF/PT', '5', '1', '4', '1', '1', '1', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-29 03:56:09', 60, '2022-11-04 04:07:23', 0, NULL, 1),
(10734, 'Aravind B', '22', '7200867616', '', 'Aravindbalaji2k1@gmail.com', '2001-02-01', 21, '2', '2', 'Balaji L', 'Photographer', 350000.00, 1, 15000.00, 23000.00, 'Gowrivakkam, East tambaram', 'Gowrivakkam, East Tambaram', '2210290014', '1', '2', 'upload_files/candidate_tracker/9861927521_Updated resume.pdf', NULL, '1', '2022-11-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-29 04:03:04', 85, '2022-11-01 09:51:58', 0, NULL, 1),
(10735, 'Vijay', '5', '9677441776', '', 'vijaysekar678@gmail.com', '1997-11-16', 24, '4', '2', 'Rajasekar', 'Driver', 22000.00, 1, 180000.00, 325000.00, 'Aruppukottai', 'Aruppukottai', '2210290015', '', '2', 'upload_files/candidate_tracker/8763971478_R.vijay B.E 2019.pdf', NULL, '2', '2022-10-29', 0, '', '7', '60', NULL, 0.00, '', '0', NULL, '1', 'candidate okay. sent for salary negotiation and verify his prevous payslip', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-29 04:42:30', 1, '2022-10-29 05:04:50', 0, NULL, 1),
(10736, 'Deepak Ashokan', '5', '8825765173', '', 'dpkhot07@gmail.com', '1999-08-28', 23, '1', '2', 'Ashokan K', 'Business', 180000.00, 1, 0.00, 24000.00, 'Karur', 'Karur', '2210290016', '', '1', 'upload_files/candidate_tracker/37165489880_Deepak Ashokan (1).pdf', NULL, '2', '2022-10-29', 0, '55565', '3', '59', '2022-11-15', 330000.00, '', '4', '2023-06-26', '1', 'Selected for Manikandan Team with Pf/PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-29 05:51:57', 60, '2022-11-03 07:53:14', 0, NULL, 1),
(10737, '', '0', '7609073466', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210290017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-29 09:39:00', 0, NULL, 0, NULL, 1),
(10738, '', '0', '7200030816', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210290018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-29 10:34:20', 0, NULL, 0, NULL, 1),
(10739, 'Deepa M', '22', '7200784354', '9941524354', 'deepam31596@gmail.com', '1996-05-31', 26, '2', '1', 'Magesh Kumar J', 'IT', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2210300001', '1', '1', 'upload_files/candidate_tracker/30524699077_Deepa resume document writer.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average Not much Good in the Skills Will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-30 01:09:58', 85, '2022-10-31 10:55:47', 0, NULL, 1),
(10740, '', '0', '9840161506', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-30 12:13:44', 0, NULL, 0, NULL, 1),
(10741, 'Ragunath', '13', '8610491568', '9585624955', 'ragunath616@gmail.com', '1996-06-05', 26, '2', '2', 'Elanchezhiyan', 'Farmer', 1.50, 2, 0.00, 2.00, 'Mayiladuthurai', 'Chennai', '2210310001', '1', '1', 'upload_files/candidate_tracker/48048351728_ragunathcv.pdf', NULL, '1', '2022-10-31', 0, '', '4', '27', '1970-01-01', 0.00, '', '4', '2023-11-27', '2', 'Basic Skills Need to learn a lot not much ok with TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', 'Selected for 7 Days Analysis then 6K Stipend continuous with employment', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 10:29:42', 60, '2022-11-03 08:01:46', 0, NULL, 1),
(10742, 'karthikeyan s', '5', '9962625558', '8220182158', 'karthisaravanan259@gmail.com', '1993-09-28', 29, '2', '2', 'saravanan', 'buisness', 30000.00, 1, 20000.00, 22000.00, 'chennai', 'chennai', '2210310002', '1', '2', 'upload_files/candidate_tracker/40033975255_Karthi Resume.docx', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Taking Sales alls', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 10:31:12', 85, '2022-10-31 10:56:55', 0, NULL, 1),
(10743, 'rajadurai ramajeyam m', '23', '8344723405', '', 'rajadurai619@gmail.com', '1998-12-03', 23, '2', '2', 'muthukumar d', 'business', 25000.00, 1, 0.00, 3.00, 'tuticorin', 'chennai', '2210310003', '1', '1', 'upload_files/candidate_tracker/20244260888_Rajadurai Ramajeyam Resume.docx', NULL, '3', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Suitable For Our Role Need To Open A Lot Will Not Sustain Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 10:33:03', 85, '2022-10-31 11:06:13', 0, NULL, 1),
(10744, 'Saraneya R', '6', '7708922249', '', 'saraneyarajasekar.18@gmail.com', '1991-11-18', 30, '1', '1', 'Nithyakumar G', 'Trainer in Reliance', 25000.00, 1, 12000.00, 15000.00, 'Kanchipuram', 'Chennai', '2210310004', '', '2', 'upload_files/candidate_tracker/92079875140_Saraneya New Resume-1.docx', NULL, '1', '2022-10-31', 0, 'Sangeetha p1074', '3', '59', '2022-11-10', 180000.00, '', NULL, '2023-11-25', '1', 'Selected for Renewals With PF/ESI/PT', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-31 10:36:59', 60, '2022-11-03 08:03:47', 0, NULL, 1),
(10745, 'S.DHEEPAK', '31', '8428515013', '8122815541', 'dheepsgdc@gmail.com', '1998-01-22', 24, '2', '2', 'V.SHANMUGAM', 'Rtd Lab asst', 25000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2210310005', '1', '1', 'upload_files/candidate_tracker/96191552168_DHEEPAK RESUME.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Basic Skills Sustainability Doubts Need Time To Confirm With Her Parents If She Comes Back Let Us Try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 10:54:44', 85, '2022-10-31 11:06:47', 0, NULL, 1),
(10746, 'Surya', '2', '7639038052', '8667459044', 'suryaravi9743@gmail.com', '1997-06-02', 25, '2', '2', 'Ravichandran', 'Driver', 30000.00, 1, 0.00, 200000.00, 'Trichy', 'Sholinganallur', '2210310006', '1', '1', 'upload_files/candidate_tracker/43061608015_SURYA R.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking For Java Openings', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 11:15:50', 85, '2022-10-31 03:07:44', 0, NULL, 1),
(10747, 'selvaganapathy B', '2', '9952082789', '', 'selvaganapathysarjune@gmail.com', '1998-12-28', 23, '2', '2', 'Baskaran', 'Business', 20000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2210310007', '1', '1', 'upload_files/candidate_tracker/62398448737_Selva', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Java Openings', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 11:16:04', 85, '2022-10-31 03:07:54', 0, NULL, 1),
(10748, 'Rathinakavin B', '23', '9597139398', '8526431002', 'rathinakavinbalakrishnan@gmail.com', '1999-05-20', 23, '2', '2', 'Balakrishnan', 'Farmer', 100000.00, 0, 0.00, 250000.00, 'Coimbatore', 'Guindy, Chennai', '2210310008', '1', '1', 'upload_files/candidate_tracker/24444707476_Rathinakavin Update.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Only Basic Skills Not Much Comfort With The TxxampC Will Not Sustain ,If he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 11:17:31', 85, '2022-10-31 03:08:08', 0, NULL, 1),
(10749, 'Kalaiarasan R', '23', '9087989547', '6369733882', 'kalaimech1999@gmail.com', '1999-08-26', 23, '2', '2', 'Rajendran C', 'Milk Supplyer', 200000.00, 1, 0.00, 400000.00, 'Salem', 'Chennai', '2210310009', '1', '1', 'upload_files/candidate_tracker/289453008_KALAIARASAN R.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Basic Skills not much comfort with the TxxampC Will not sustain ', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 11:18:43', 85, '2022-10-31 03:09:12', 0, NULL, 1),
(10750, '', '0', '8248909928', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 11:40:06', 0, NULL, 0, NULL, 1),
(10751, 'Muthu Lakshmi', '31', '7904571627', '8754830018', 'muthusml2001@gmail.com', '2001-11-05', 20, '3', '2', 'A.Selvaraj', 'Driver', 120000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2210310011', '', '1', 'upload_files/candidate_tracker/7448115472_SML.pdf', NULL, '1', '2022-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking much for Java openings Poor Understanding will not sustain and not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 12:32:36', 1, '2022-10-31 12:55:41', 0, NULL, 1),
(10752, 'EMILJEBARAJ G', '4', '6380463312', '8838076472', 'emilprakash004@gmail.com', '1996-11-08', 25, '2', '2', 'Gnanaprakasam s', 'Former', 46000.00, 1, 0.00, 23000.00, 'Chittivarai estate o. C. Division yellapatty (P.o)', 'Ambattur', '2210310012', '1', '2', 'upload_files/candidate_tracker/45354985103_EMIL RESUME.NEW.pdf', NULL, '1', '2022-11-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp but Many job changes not open for Field but Exp min 23K', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 12:39:38', 99, '2022-11-17 05:37:52', 0, NULL, 1),
(10753, 'Rathi Shanthi M', '22', '9361004620', '', 'mrathishanthi@gmail.com', '1998-03-15', 24, '3', '2', 'Mala M', 'Null', 30000.00, 1, 0.00, 3.00, 'Chennai', 'Chennai', '2210310013', '', '1', 'upload_files/candidate_tracker/94055474575_Resume - Associate Technical engineer( Rathi shanthi).docx', NULL, '3', '2022-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 01:12:13', 1, '2022-10-31 01:18:11', 0, NULL, 1),
(10754, 'Saravanan Jayaraman', '5', '9003155676', '', 'mastersarava@gmail.com', '2007-10-31', 0, '3', '1', 'Divya', 'Housewife', 50000.00, 2, 25000.00, 35000.00, 'Chennai', 'Chennai', '2210310014', '', '2', 'upload_files/candidate_tracker/42900752540_Saravanan_Jayaraman_Resume (1) (1).PDF', NULL, '1', '2022-10-31', 7, '', '3', '59', '2022-11-21', 320000.00, '', '5', '1970-01-01', '1', 'Selected for Sarath Team with PF/PT', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-10-31 01:38:06', 60, '2022-11-03 07:55:24', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10755, 'Suhail Ahmed', '4', '8122341476', '', 'Suhail.amd23@yahoo.com', '1991-10-23', 31, '1', '1', 'Jasmeen', 'Housewife', 30000.00, 0, 25000.00, 30000.00, 'Perambur', 'perambur', '2210310015', '', '2', 'upload_files/candidate_tracker/5526752946_Suhail new CV 2022 deal.pdf', NULL, '3', '2022-10-31', 0, 'P1122', '3', '59', '2022-11-01', 182496.00, '', '0', NULL, '1', 'Selected for Technical Support with Insurance SAles Communication is Good Can be trained Final round interviewed by Gokul', '1', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 02:44:00', 1, '2022-10-31 02:48:37', 0, NULL, 1),
(10756, 'Wilson P', '21', '8754556116', '7299124217', 'christowilson111@gmail.com', '1997-11-16', 24, '1', '2', 'L peter', 'office boy', 20000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2210310016', '', '2', 'upload_files/candidate_tracker/76683022631_dtp cer.PDF', NULL, '1', '2022-10-31', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very High CTC Expectation Will not sustain for a long', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 02:44:52', 1, '2022-10-31 03:23:28', 0, NULL, 1),
(10757, 'Santhoshmuthuraj.R', '5', '8825584472', '9600168886', 'santhoshgracy2514@gmail.com', '2000-08-25', 22, '1', '2', 'Raja', 'Driver', 15000.00, 1, 0.00, 22000.00, 'Perambur', 'Perambur', '2210310017', '', '1', 'upload_files/candidate_tracker/94767704295_SANTHOSH MUTHURAJ .R.pdf', NULL, '1', '2022-10-31', 0, 'P1299', '4', '88', NULL, 0.00, '', '0', NULL, '1', 'Syed Team Reference,No Communication Need to open a lot not suitable much being internal reference kindly check and let me know your interest', '5', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 02:55:19', 1, '2022-10-31 03:01:24', 88, '2022-11-15 06:22:42', 0),
(10758, '', '0', '9943749329', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 03:57:32', 0, NULL, 0, NULL, 1),
(10759, '', '0', '8825943629', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 04:16:48', 0, NULL, 0, NULL, 1),
(10760, 'Nagarajan k', '31', '7338923601', '9884825754', 'nagarajan10102000@gmail.com', '2000-10-10', 22, '2', '2', 'Karunanidhi', 'Building contractor', 50000.00, 2, 0.00, 3.00, 'No:17, karikalan street, mgr nagar, chennai-78', 'Chennai', '2210310020', '1', '1', 'upload_files/candidate_tracker/29763896394_Nagarajan resume.pdf', NULL, '1', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing for Govt Exams full focus into exams and for time being looking for opportunities, he is very clear that he will sustain in a long in IT', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 05:08:22', 99, '2022-12-19 11:46:03', 0, NULL, 1),
(10761, 'S.Bhuvaneshwari', '29', '7200210326', '', 'charuhari79@gmail.com', '1992-03-27', 30, '2', '1', 'husband name Srihariharan', 'IT', 50000.00, 0, 0.00, 20000.00, 'Perungalathur', 'Perungalathur', '2210310021', '1', '1', 'upload_files/candidate_tracker/67543057014_Bhuvaneswari_S.pdf', NULL, '1', '2022-11-01', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suit for our roles.. long distance too', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 05:11:16', 85, '2022-11-01 10:11:57', 0, NULL, 1),
(10762, 'R.haji yaseena fathima', '22', '9944629252', '9840235624', 'yaseenafathima@gmail.com', '1999-10-20', 23, '2', '2', 'Parents', 'Business', 10000.00, 1, 0.00, 12000.00, '10,muthunaikan, Broadway,chennai 01', 'Chennai', '2210310022', '1', '1', 'upload_files/candidate_tracker/64749433214_haji yaseena fathima.R....pdf', NULL, '1', '2022-11-02', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok Have internship Exp in DM,given her task to analyse the writing skills need to give her feedback,should go for Internship cum employment', '2', '1', '', '1', '1', '', '2', '2022-11-04', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 05:14:47', 85, '2022-11-02 09:48:19', 0, NULL, 1),
(10763, 'Siva prasadh', '6', '9655011762', '9677017780', 'rajendhransiva@gmail.com', '1997-09-07', 25, '2', '2', 'Nagalakshmi', 'Amma canteen', 40000.00, 1, 17000.00, 20000.00, 'Bhavani', 'Bhavani', '2210310023', '1', '2', 'upload_files/candidate_tracker/30543472753_SIVA PRASADH 2022 FINAL (1).pdf', NULL, '1', '2022-11-01', 10, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sal expect high 20k and field work not interested', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-10-31 05:15:02', 85, '2022-11-01 12:11:25', 0, NULL, 1),
(10764, 'Priyanka', '4', '8300769688', '9442036068', 'rpr1410@gmail.com', '2001-10-14', 21, '4', '2', 'Raja', 'Photographer', 10000.00, 1, 12000.00, 20000.00, 'Tindivanam', 'Tindivanam', '2210310024', '', '2', 'upload_files/candidate_tracker/24139962972_Priyanka resume.pdf', NULL, '1', '2022-11-04', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 05:15:10', 1, '2022-11-13 08:33:34', 0, NULL, 1),
(10765, 'Naveen kumar V B', '31', '9884295853', '', 'naveensends@gmail.com', '1999-10-13', 23, '2', '2', 'Balakrishnan V', 'Special educator', 40000.00, 1, 0.00, 0.00, 'Chennai', 'Chennai', '2210310025', '1', '1', 'upload_files/candidate_tracker/16467242419_NAVEEN KUMAR V B-RESUME.pdf', NULL, '1', '2022-11-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 05:47:51', 85, '2022-11-03 06:50:14', 0, NULL, 1),
(10766, '', '0', '6381190255', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 06:37:32', 0, NULL, 0, NULL, 1),
(10767, 'SURYA P', '14', '9080306740', '', 'suryaparthipan38@gmail.com', '2000-07-02', 22, '3', '2', 'Parthiban R', 'Formar', 6000.00, 1, 0.00, 20000.00, 'Thirupathur', 'Chennai', '2210310027', '', '1', 'upload_files/candidate_tracker/71212916149_Surya chf.pdf', NULL, '1', '2022-11-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 06:40:48', 1, '2022-10-31 06:44:48', 0, NULL, 1),
(10768, '', '0', '8867784016', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2210310028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-10-31 08:01:55', 0, NULL, 0, NULL, 1),
(10769, 'Naveen Kumar', '4', '8610522873', '9087761108', 'naveen7550264381@gmail.com', '2002-06-17', 20, '4', '2', 'M suresh', 'Car driver', 20000.00, 1, 20000.00, 20000.00, 'No;36 corporation colony Kodambakkam ch 24', 'Kodambakkam', '2210310029', '', '2', 'upload_files/candidate_tracker/16418119295_S. Naveen Kumar.pdf', NULL, '1', '2022-11-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 09:02:39', 1, '2022-10-31 09:07:17', 0, NULL, 1),
(10770, 'indu mathi', '4', '9361016960', '9597386276', 'indumate3@gmail.com', '2007-10-31', 0, '2', '2', 'mohan', 'teacher', 4500.00, 0, 0.00, 250000.00, 'pudhucherrymedu', 'pudhucherrymedu', '2210310030', '1', '1', 'upload_files/candidate_tracker/44578419522_Indu Mathi (1).pdf', NULL, '2', '2022-11-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-10-31 09:22:37', 85, '2022-11-01 09:55:51', 0, NULL, 1),
(10771, 'Vanipriya J', '4', '9361332157', '8248223805', 'vanipriya2308@gmail.com', '2000-08-23', 22, '3', '1', 'Mahesh kumar', 'PPMS (Field marketing supervisor)', 20000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2210310031', '', '2', 'upload_files/candidate_tracker/38662453672_vani resume.-converted.pdf', NULL, '1', '2022-11-15', 60, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in CAMS Communication ok just 10 months in cAMS looking for Salary growth also she is in checkup recently married will not sustain for a long she is clear with that', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-10-31 09:51:03', 1, '2022-11-12 06:41:58', 0, NULL, 1),
(10772, 'vivek p', '16', '9600177995', '9600154483', 'vivekvinai7@gmail.com', '1994-01-21', 28, '2', '2', 'paramasivam', 'isherman', 50000.00, 1, 530000.00, 590000.00, 'palani amman kovil south', 'chennai', '2211010001', '1', '2', 'upload_files/candidate_tracker/47142097043_Vivek Resume.doc', NULL, '1', '2022-11-01', 30, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 7m of exp in MIS .. Sal expt High...', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-01 10:19:34', 85, '2022-11-01 12:07:42', 0, NULL, 1),
(10773, 'Merlin Christopher', '31', '6385870842', '7904452457', 'merlinchristopher196@gmail.com', '2000-10-19', 22, '3', '2', 'Arul Xavier', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Ramanathapuram', 'T.nagar', '2211010002', '', '1', 'upload_files/candidate_tracker/65909854474_DOC-20221028-WA0042..pdf', NULL, '1', '2022-11-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', ' Will Not Sustain Not Much Comfort With TxxampC if she comes back let us try', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-01 10:49:15', 1, '2022-11-01 10:59:20', 0, NULL, 1),
(10774, 'K.jothi', '20', '6383014526', '8682041483', 'jothik1412@gmail.com', '1996-12-14', 25, '2', '1', 'Dinesh Kumar', 'Metro water filling point', 35000.00, 1, 15000.00, 20000.00, 'No 234 1st street B kalyanapuram Vyasarpadi Ch-39', 'No 234 1st Street B Kalyanapuram Ch-39', '2211010003', '1', '2', 'upload_files/candidate_tracker/17297101031_Jothi.pdf', NULL, '1', '2022-11-01', 15, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Has 3mexp in sales ... simultaneously changing job ..sustainbility doubts.. newly married .. sal exp high', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-01 02:32:29', 85, '2022-11-01 02:49:14', 0, NULL, 1),
(10775, '', '0', '9025137005', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211010004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-01 05:44:53', 0, NULL, 0, NULL, 1),
(10776, '', '0', '8122109024', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211010005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-01 06:04:19', 0, NULL, 0, NULL, 1),
(10777, 'CHARUMATHI', '5', '7904037181', '', 'charuelamathi78@gmail.com', '1999-12-18', 22, '2', '1', 'MURUGAN', 'BUILDING PAINTING CONTRACTOR', 215000.00, 1, 11000.00, 17000.00, 'nO56BRINDAVANNAGAR2NDCROSSSTREETVALASARAVAKKAM', 'CHENNAI', '2211010006', '1', '2', 'upload_files/candidate_tracker/39529335019_CHARUMATHI RESUME .2022.pdf', NULL, '1', '2022-11-02', 20, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-01 08:03:21', 85, '2022-11-02 09:48:00', 0, NULL, 1),
(10778, 'Pavithra S', '16', '9940324622', '9841499201', 'Pavithrasasikumar2607@gmail.com', '1998-07-26', 24, '2', '2', 'Sasikumar', 'Builder', 30000.00, 1, 18000.00, 23000.00, 'Triplicane', 'Triplicane', '2211010007', '1', '2', 'upload_files/candidate_tracker/69870918480_Pavithra_resume- 20226.docx', NULL, '1', '2022-11-03', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Collections can be trained but her salary Exp is high long run doubts if she come back for same salary we can', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-01 10:24:40', 85, '2022-11-03 11:07:48', 0, NULL, 1),
(10779, 'Shakthi J', '20', '8608499832', '9087054006', 'jshakthi25@gmail.com', '2000-04-17', 22, '2', '2', 'Jayakumar M', 'Sample tailor', 30000.00, 1, 16600.00, 18000.00, 'Chennai', 'Chennai', '2211020001', '1', '2', 'upload_files/candidate_tracker/97041453527_shakthi resume.pdf', NULL, '1', '2022-11-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-11-02 10:02:18', 1, '2022-11-02 10:08:57', 0, NULL, 1),
(10780, 'ashok kumar', '4', '8838935208', '', 'ashaasj@gmail.com', '1998-06-02', 24, '2', '2', 'alli muthu', 'kooli', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2211020002', '2', '1', 'upload_files/candidate_tracker/21343326523_ashok kumar.pdf', NULL, '1', '2022-11-02', 0, '', '3', '59', '2022-11-03', 151584.00, '', '4', '2022-11-30', '1', 'Selected for Elite Arumbakkam,Should analyse in 7 days,Communication Ok ,Fresher For Telecaller Not A Graduate Have 6 Yrs Exp In Mobile Showroom Sales Can Be Trained', '1', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-02 10:32:27', 60, '2022-11-02 05:19:48', 0, NULL, 1),
(10781, 'divya dharshini', '4', '7305924203', '', 'divyamoshikpraveen@gmail.com', '1997-08-30', 25, '2', '1', 'praveen kumar', 'cargo agent', 15000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2211020003', '2', '1', 'upload_files/candidate_tracker/17834179800_001 - 2022-10-21T171610.982.pdf', NULL, '1', '2022-11-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 10:35:50', 1, '2022-11-02 10:38:34', 0, NULL, 1),
(10782, 'J.Motchaka Maria Alwin', '16', '8939601765', '9025137005', 'mmalwinjo@gmail.com', '2001-11-10', 20, '2', '2', 'Joseph Arokiya Dass', 'Nil', 18000.00, 1, 0.00, 15000.00, 'No:50,N.S.K STREET,MOONGILIRI,PAMMAL, CHENNAI -75', 'No:50,N.S.K STREET,MOONGILIRI,PAMMAL, CHENNAI -75', '2211020004', '1', '1', 'upload_files/candidate_tracker/86493179761_CV_Alwin.pdf', NULL, '1', '2022-11-02', 0, '', '3', '59', '2022-11-03', 180000.00, '', '', '1970-01-01', '2', '3 months intern with 7.5K Need to train from basic ,after intern 1.8 LPA if he join let us proceed', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-02 10:43:58', 85, '2022-11-02 10:53:53', 0, NULL, 1),
(10783, 'Gokulnath', '31', '9361137271', '8270977059', 'mgokulnathmuruganshanthi@gmail.com', '2000-03-06', 22, '2', '2', 'K. Murugan', 'Farmer', 1000.00, 1, 0.00, 200000.00, 'Chennai chrompet', 'Chennai chrompet', '2211020005', '1', '1', 'upload_files/candidate_tracker/79125066511_M.GOKULNATH RESUME (1) (1).docx', NULL, '1', '2022-11-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills no ideas in JS, Not suitable will not sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 10:46:09', 85, '2022-11-02 11:17:09', 0, NULL, 1),
(10784, '', '0', '8124482115', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 10:49:48', 0, NULL, 0, NULL, 1),
(10785, 'Vengadesan Murugesan', '4', '9962046264', '', 'romanvenkat57@gmail.com', '2000-07-30', 22, '3', '2', 'Vengadesan Murugesan', 'Weekly incom', 30000.00, 0, 0.00, 25000.00, 'No 900/70 S A Colony 10 th Street Sharma Nagar', 'No 900/70 S A Colony 10 th Street Sharma nagar', '2211020007', '', '1', 'upload_files/candidate_tracker/94001503897_VengadesanMurugesan (1).pdf', NULL, '1', '2022-11-02', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 10:57:06', 1, '2022-11-02 11:04:26', 0, NULL, 1),
(10786, 'Rohith', '16', '8428775443', '', 'sivarohith2412@gmail.com', '1998-11-17', 23, '2', '2', 'Paramasivam', 'Business', 120000.00, 1, 18500.00, 20000.00, 'Chennai', 'Chennai', '2211020008', '1', '2', 'upload_files/candidate_tracker/51363193583_Resume 3.1 (1).pdf', NULL, '1', '2022-11-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, will not handle our work pressure no ideas in Excel not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 11:16:43', 85, '2022-11-03 12:08:59', 0, NULL, 1),
(10787, 'PRIYANKA', '16', '7397273441', '', 'priyankakrishnan1512@gmail.com', '1995-12-15', 26, '2', '1', 'PRAKASH', 'Collection Executive', 25000.00, 1, 264000.00, 350000.00, 'CHENNAI', 'CHENNAI', '2211020009', '1', '2', 'upload_files/candidate_tracker/47509076276_Priyanka Resume Oct.pdf', NULL, '1', '2022-11-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average, have Exp in MIS for 4+ yrs ,Recently married and sustainability Doubts a lot Exp min 20K TH,Handling Work Pressure and Sustainability Doubts', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-02 11:58:27', 85, '2022-11-02 12:53:10', 0, NULL, 1),
(10788, 'B.mangaiyarkarasi', '4', '8754661844', '', 'Mangaiboomi@gmail.com', '1992-10-16', 30, '2', '2', 'T.boominathan', 'Farmer', 20000.00, 3, 15000.00, 16000.00, 'Madurai', 'Ambathur', '2211020010', '1', '2', 'upload_files/candidate_tracker/52066364525_RESUME.docx', NULL, '3', '2022-11-02', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication Ok Need to open up in sales a lot also she is very clear that will not join if her friend who came along for the interview isrejected', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 12:30:35', 85, '2022-11-02 01:13:39', 0, NULL, 1),
(10789, 'Shanmuganathi. S', '4', '9585040063', '', 'Shanmuganathis75@gmail.com', '1999-05-29', 23, '2', '2', 'Fathee', 'Father', 300000.00, 0, 0.00, 13000.00, 'Chennai', 'Chennai', '2211020011', '1', '1', 'upload_files/candidate_tracker/97611097838_my (1).pdf', NULL, '3', '2022-11-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No Need To Open Up In Sales A Lot Also She Is Very Clear That Will Not Join If Her Friend Who Came Along For The Interview Is rejected will not sustain and handle our sales pressure', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 12:31:46', 85, '2022-11-02 01:13:27', 0, NULL, 1),
(10790, 'Gajula Bhagya Lakshmi', '20', '9640142451', '', 'gajula2122@gmail.com', '2000-10-22', 22, '3', '2', 'Gajula Siva Prasad', 'Tailor', 10000.00, 1, 20000.00, 30000.00, 'Bangalore', 'Bangalore', '2211020012', '', '2', 'upload_files/candidate_tracker/53730888052_G.Bhagya Lakshmi.pdf', NULL, '2', '2022-11-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 03:48:51', 1, '2022-11-02 03:58:01', 0, NULL, 1),
(10791, 'Sweety R', '11', '9790378449', '', 'tikkusharon@gmail.com', '1997-05-24', 25, '3', '2', 'Ranjan dass', 'Chef', 20000.00, 1, 25000.00, 29000.00, 'Vellore', 'Chennai, Kodambakkam', '2211020013', '', '2', 'upload_files/candidate_tracker/49908609634_Sweetyy_cv.pdf', NULL, '3', '2022-11-03', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 03:52:35', 1, '2022-11-02 04:00:04', 0, NULL, 1),
(10792, '', '0', '9790378448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 04:16:32', 0, NULL, 0, NULL, 1),
(10793, 'priya', '14', '6382272072', '8428400335', 'priyaesther2419@gmail.com', '1999-04-22', 23, '4', '2', 'ravi k', 'labour', 15000.00, 2, 0.00, 200000.00, 'sriperumbudur', 'sriperumbudur', '2211020015', '', '1', 'upload_files/candidate_tracker/12256028517_Priya.22.pdf', NULL, '3', '2022-11-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 04:48:33', 1, '2022-11-05 07:07:18', 0, NULL, 1),
(10794, 'Karoline', '31', '7358160547', '', 'fernandourmitha2@gmail.com', '2001-04-25', 21, '4', '2', 'Latha', 'Business manager', 20000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211020016', '', '1', 'upload_files/candidate_tracker/44559757748_Karoline Urmitha Resume.pdf', NULL, '2', '2022-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 04:48:47', 1, '2022-11-02 04:52:01', 0, NULL, 1),
(10795, 'Karthikeyan.R', '23', '6380908932', '', 'karthik.r0135@gmail.com', '2002-05-03', 20, '2', '2', 'Ravi', 'Ternor', 15000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2211020017', '1', '1', 'upload_files/candidate_tracker/40535203196_Karthikeyan R - Resume - 29-Aug-2022.pdf', NULL, '1', '2022-11-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need to be trained a lot he need time to confirm with his family on the Terms and conditons if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-11-08', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 04:49:33', 85, '2022-11-07 01:26:16', 0, NULL, 1),
(10796, 'Gedi Jayakumar', '27', '7330807712', '', 'gedijayakumar14@gmail.com', '1999-11-14', 22, '2', '2', 'G. Muni shekar', 'Farmer', 10000.00, 1, 0.00, 300000.00, 'Siddapuram, sathyavedu, chittoor district', 'Urappakkam, chennai', '2211020018', '1', '1', 'upload_files/candidate_tracker/64341669899_jhon RESUME (3).pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills much open for Java only', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 04:54:43', 85, '2022-11-04 03:26:48', 0, NULL, 1),
(10797, '', '0', '9894168960', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:04:04', 0, NULL, 0, NULL, 1),
(10798, 'Rangarajan A', '13', '8124050100', '', 'rangarajanstar100@gmail.com', '2001-03-25', 21, '3', '2', 'Ashokan', 'Business', 20000.00, 1, 0.00, 400000.00, 'Villupuram', 'Chennai', '2211020020', '', '1', 'upload_files/candidate_tracker/76172627504_Rangarajan_Resume.pdf', NULL, '2', '2022-11-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 05:04:39', 1, '2022-11-02 05:09:31', 0, NULL, 1),
(10799, 'Abisha S', '4', '9025746127', '', 'abishasasi27@gmail.com', '2000-01-02', 22, '3', '2', 'G.Sasi', 'Self employed', 20000.00, 1, 0.00, 18000.00, 'Kanyakumari', 'Anna nagar', '2211020021', '', '1', 'upload_files/candidate_tracker/24685749140_ABISHA RESUME-2.pdf', NULL, '1', '2022-11-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 05:06:20', 1, '2022-11-02 05:10:40', 0, NULL, 1),
(10800, 'Nagalakshmi', '5', '7338886741', '9578318392', 'lakshmimaha26508@gmail.com', '1997-08-26', 25, '3', '1', 'Sakthikumar', 'Medical transcriptionst', 15000.00, 1, 15000.00, 15000.00, 'Erode', 'Erode', '2211020022', '', '2', 'upload_files/candidate_tracker/87226371626_Nagalakshmi resume ????????????.docx', NULL, '1', '2022-11-03', 15, '', '3', '59', '2022-11-10', 176844.00, '', '3', '2022-11-14', '2', 'Selected for Erode Location,Consultant Role,Husband looking for opportunities if he get any in chennai may relocate sustainability need to check and analyse in 7 days training have a 9 month old baby', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-02 05:09:07', 60, '2022-11-05 03:41:56', 0, NULL, 1),
(10801, '', '0', '7550371652', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:19:51', 0, NULL, 0, NULL, 1),
(10802, '', '0', '7395909727', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:22:55', 0, NULL, 0, NULL, 1),
(10803, 'kshetrimayum anand singh', '14', '6380348519', '', 'kshanand1999@gmail.com', '1999-06-20', 23, '3', '2', 'kshetrimayum itocha singh', 'farmers', 10000.00, 2, 0.00, 150000.00, 'thoubal', 'chennai', '2211020025', '', '1', 'upload_files/candidate_tracker/58305690815_Ksh.Anand Singh.Resume.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 05:28:13', 1, '2022-11-02 05:37:53', 0, NULL, 1),
(10804, 'Guru Moorthy. S', '23', '6379065296', '7708705107', 'gurumoorthy.sakthivel@gmail.com', '2001-06-10', 21, '2', '2', 'Sakthivel. P', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Cuddalore', 'Chennai', '2211020026', '1', '1', 'upload_files/candidate_tracker/34201819486_Gurumoorty resume.pdf', NULL, '1', '2022-11-03', 0, '', '3', '59', '2022-11-04', 120000.00, '', '3', '2023-07-19', '2', 'Selected for Front End Fresher need to be trained ,final round interviewed by Gokul an dgot selected Internship for 5 months 5K then 10-12K 3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 05:33:01', 60, '2022-12-26 03:29:28', 0, NULL, 1),
(10805, '', '0', '6374601408', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:48:18', 0, NULL, 0, NULL, 1),
(10806, '', '0', '9487721545', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020028', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 05:49:41', 0, NULL, 0, NULL, 1),
(10807, 'Manojkumar M', '23', '8015713954', '', 'mk391982@gmail.com', '1998-05-04', 24, '4', '2', 'Meyyapparaj R', 'Self employed', 30000.00, 1, 0.00, 18000.00, 'Gummidipoondi', 'Gummidipoondi', '2211020029', '', '1', 'upload_files/candidate_tracker/52419710370_Resume_oct_22 (2).pdf', NULL, '1', '2022-11-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 06:10:40', 1, '2022-11-02 06:37:09', 0, NULL, 1),
(10808, '', '0', '7397278486', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 06:43:34', 0, NULL, 0, NULL, 1),
(10809, 'M. Alagar samy', '13', '8610828420', '', 'alagar3773@gmail.com', '2000-09-11', 22, '2', '2', 'Murugan', 'Farmer', 20000.00, 1, 0.00, 15000.00, 'Pudukkottai', 'Chennai', '2211020031', '1', '1', 'upload_files/candidate_tracker/25662746421_Alagar resume.pdf', NULL, '1', '2022-11-03', 0, '', '3', '59', '2022-11-07', 120000.00, '', '', '1970-01-01', '2', 'Selected for PHP, need to be trained a lot final round interviewed by gokul 7 days analysis then 5 months intern 5K,then 10-12K 3yrs SA', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-02 07:26:17', 85, '2022-11-03 02:31:30', 0, NULL, 1),
(10810, 'R. SURYA', '29', '7094528454', '', 'suryaudr02@gmail.com', '2001-05-25', 21, '4', '2', 'Raman', 'Farmer', 72000.00, 3, 0.00, 20000.00, 'Thoothukudi', 'Chennai', '2211020032', '', '1', 'upload_files/candidate_tracker/65064361789_SURYA R.docx', NULL, '3', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 08:19:11', 1, '2022-11-02 08:30:22', 0, NULL, 1),
(10811, '', '0', '7449002292', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 08:28:49', 0, NULL, 0, NULL, 1),
(10812, '', '0', '9597723986', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 09:10:21', 0, NULL, 0, NULL, 1),
(10813, '', '0', '6369740005', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 09:22:31', 0, NULL, 0, NULL, 1),
(10814, 'Vinitha B', '3', '9445627070', '', 'vinidama14@gmail.com', '1997-03-15', 25, '4', '2', 'M.Balasubramaniam', 'Retired', 300000.00, 1, 0.00, 300000.00, 'CHENNAI TAMIL NADU', 'CHENNAI TAMIL NADU', '2211020036', '', '1', 'upload_files/candidate_tracker/11030766504_Bvinitharesume (3).pdf', NULL, '2', '2022-11-07', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-02 09:53:40', 1, '2022-11-02 10:02:55', 0, NULL, 1),
(10815, '', '0', '9384479652', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 10:15:41', 0, NULL, 0, NULL, 1),
(10816, '', '0', '6379050335', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211020038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-02 10:32:29', 0, NULL, 0, NULL, 1),
(10817, 'Jamuna', '23', '8525916628', '9361637938', 'Jamunadevajamunadeva162@gmail.com', '1999-06-30', 23, '3', '2', 'Rajan', 'Farmer', 7000.00, 3, 0.00, 300000.00, 'Kallakurichi', 'Kallakurichi', '2211030001', '', '1', 'upload_files/candidate_tracker/81787393907_R.Jamuna - resume.pdf', NULL, '2', '2022-11-05', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 08:14:23', 1, '2022-11-03 08:18:31', 0, NULL, 1),
(10818, '', '0', '9360739588', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 08:57:39', 0, NULL, 0, NULL, 1),
(10819, '', '0', '9952066084', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 09:04:22', 0, NULL, 0, NULL, 1),
(10820, 'abul faizal s', '4', '8056354505', '', 'abulfaizal2001@gmail.com', '2001-02-19', 21, '2', '2', 'sheik mujibar rahman', 'driver', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2211030004', '2', '1', 'upload_files/candidate_tracker/39397507431_AF resume-1-2.pdf', NULL, '1', '2022-11-03', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Communication Ok Can be trained fresher need to open up can give a try he is from vadapalani,kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 09:21:30', 1, '2022-11-03 09:23:15', 0, NULL, 1),
(10821, '', '0', '7358510578', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 09:26:08', 0, NULL, 0, NULL, 1),
(10822, 'Lokeshraj.R', '6', '8825963569', '', 'lraj9824@gmail.com', '2002-01-22', 20, '1', '2', 'Rajendran.N', 'Mechanic', 10000.00, 1, 0.00, 18000.00, '14/48, nagoji street,triplicane,chennai-5', 'Triplicane', '2211030006', '', '1', 'upload_files/candidate_tracker/82783191621_Lokeshraj- RESUME.pdf', NULL, '3', '2022-11-03', 0, 'P1066', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sales Sustainability Doubts', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 09:50:08', 1, '2022-11-03 09:56:11', 0, NULL, 1),
(10823, 'K Nirmal Kumar', '14', '9502108841', '', 'nirmalnaikar233@gmail.com', '2001-12-14', 20, '3', '2', 'Karthikeyan', 'Buisness', 700000.00, 1, 0.00, 40000.00, 'Chittoor', 'Chennai', '2211030007', '', '1', 'upload_files/candidate_tracker/64368412828_Nirmal Resume (1).pdf', NULL, '1', '2022-11-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 10:33:30', 1, '2022-11-03 10:38:15', 0, NULL, 1),
(10824, 'Thendral. R. T', '4', '9751178587', '9843022156', 'thendralthiravidan@gmail.com', '2002-04-23', 20, '3', '2', 'Meenakshi', 'Health Department', 10000.00, 2, 0.00, 12000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2211030008', '', '1', 'upload_files/candidate_tracker/51121990432_THENDRAL R.T.doc', NULL, '1', '2022-11-03', 0, '', '3', '59', '2022-11-10', 126312.00, '', '4', '2023-01-05', '2', 'Selected for Sithy - Thanjavur Team - consultant Role', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-03 10:34:38', 60, '2022-11-08 06:07:20', 0, NULL, 1),
(10825, 'Archana', '14', '9080916767', '', 'archanaammucs@gmail.com', '2001-12-27', 20, '3', '2', 'Sekar', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Kallakurichi', 'Bangalore', '2211030009', '', '1', 'upload_files/candidate_tracker/49075442586_Archana_Web Developer.pdf', NULL, '3', '2022-11-10', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 10:35:24', 1, '2022-11-03 10:40:08', 0, NULL, 1),
(10826, 'Priyadharshini. S', '4', '9003475245', '9047724634', 'Priyadharshinisethuraman2001@gmail.com', '2001-12-15', 20, '3', '2', 'Jayanthi. S', 'Hotel cook', 8000.00, 1, 0.00, 10000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2211030010', '', '1', 'upload_files/candidate_tracker/93868793247_priya resume 0.1.pdf', NULL, '1', '2022-11-03', 0, '', '3', '59', '2022-11-10', 126312.00, '', '3', '2022-12-03', '2', 'Selected for Consultant Role - Thanjavur', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-03 10:35:31', 60, '2022-11-08 04:19:44', 0, NULL, 1),
(10827, 'RAJESHKANNAN', '5', '7305869698', '', 'rajeshmba909@gmail.com', '1987-03-20', 35, '2', '1', 'Sowmya', 'Housewives', 15000.00, 1, 27000.00, 30000.00, 'Chennai', 'Chennai', '2211030011', '25', '2', 'upload_files/candidate_tracker/53714038031_NRAJ resume-1 (1).docx', NULL, '1', '2022-11-03', 0, '', '3', '59', '1970-01-01', 345696.00, '', '8', '1970-01-01', '1', 'Selected for GK sir Team with PF/ESI', '5', '2', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '3,4', NULL, NULL, NULL, 1, '2022-11-03 10:53:16', 60, '2022-11-05 02:32:08', 0, NULL, 1),
(10828, 'Roahit Vijay', '23', '9487721544', '', 'roahitvijay@gmail.com', '2000-01-24', 22, '4', '2', 'Gouthaman', 'Business', 60000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Chennai', '2211030012', '', '1', 'upload_files/candidate_tracker/79939567346_Resumeupdated_compressed.pdf', NULL, '2', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 11:08:51', 1, '2022-11-03 11:13:39', 0, NULL, 1),
(10829, 'Ranjith', '31', '8778831611', '', 'bowbotox@gmail.com', '1995-06-09', 27, '4', '2', 'Meenakshi', 'Coolie', 10000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2211030013', '', '1', 'upload_files/candidate_tracker/19431406080_CV_2022103119070548.pdf', NULL, '1', '2022-11-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 11:21:38', 1, '2022-11-03 11:25:03', 0, NULL, 1),
(10830, '', '0', '7305324783', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 12:03:00', 0, NULL, 0, NULL, 1),
(10831, 'Saranbabu', '6', '8610367952', '', 'Ashwini377@gmail.com', '2002-02-20', 20, '3', '2', 'Sarathbabu', 'Manager', 12000.00, 1, 18000.00, 18000.00, 'Ashoknagar', 'Ashoknagar', '2211030015', '', '2', 'upload_files/candidate_tracker/49950022152_Saran.pdf', NULL, '1', '2022-11-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Sales Calling not interested\n', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 12:17:07', 1, '2022-11-03 01:34:33', 0, NULL, 1),
(10832, 'Karthik.c', '6', '9790276850', '8903045045', 'karthik612001@gmail.com', '2001-01-05', 21, '1', '2', 'Chelladurai.k', 'Conductor', 1.00, 1, 0.00, 15.00, '2nd pilliyar Kovil street Ashok Nagar Chennai', '2nd Pilliyar Kovil Street Ashok Nagar Chennai', '2211030016', '', '1', 'upload_files/candidate_tracker/7537837821_Karthik resume.pdf', NULL, '1', '2022-11-03', 0, 'P1066', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Sales and looking for IT but inJava', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 12:18:54', 1, '2022-11-03 12:25:41', 0, NULL, 1),
(10833, '', '0', '8680964239', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 12:41:46', 0, NULL, 0, NULL, 1),
(10834, 'Gokulakrishnan. V', '23', '8940028967', '', 'gokulakrishnan.v10@gmail.com', '1996-07-10', 26, '2', '2', 'Valu', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Dharampuri', 'Kundrathur', '2211030018', '1', '1', 'upload_files/candidate_tracker/61781401290_Gokulakrishnana v.doc', NULL, '1', '2022-11-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills need to learn a lot not much enthu will not sustain ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-03 12:44:17', 85, '2022-11-03 01:10:07', 0, NULL, 1),
(10835, 'Keerthana V', '13', '6380444214', '', 'keerthanapbt@gmail.com', '2007-11-03', 0, '3', '2', 'VINAYAGAM S', 'Cooley', 20000.00, 3, 0.00, 15000.00, 'Vellore', 'Vellore', '2211030019', '', '1', 'upload_files/candidate_tracker/56707511757_V KEERTHANA- Resume.pdf', NULL, '2', '2022-11-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 03:31:12', 1, '2022-11-03 03:34:44', 0, NULL, 1),
(10836, '', '0', '9840297689', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 04:04:45', 0, NULL, 0, NULL, 1),
(10837, 'Enaiyathulla M', '31', '6382040679', '9943845505', 'Enaiyamj@gmail.com', '1995-07-19', 27, '2', '2', 'Fathima', 'Farmar', 5000.00, 1, 0.00, 17.00, 'Pudukkottai', 'Thambaram', '2211030021', '1', '1', 'upload_files/candidate_tracker/42668960778_Enaiyathulla Resume-1.pdf', NULL, '1', '2022-11-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills Career Gap Will not sustain in our roles not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-03 05:22:25', 99, '2022-11-05 02:35:46', 0, NULL, 1),
(10838, 'Arumugam S', '14', '7397267078', '7358466219', 'arusudalai2000@gmail.com', '2000-09-15', 22, '4', '2', 'Sudalai Muthu A', 'Contractor', 40000.00, 1, 0.00, 25.00, 'Chennai', 'Chennai', '2211030022', '', '1', 'upload_files/candidate_tracker/74776272308_ARUMUGAM\'s Resume.pdf', NULL, '1', '2022-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-03 05:23:27', 1, '2022-11-03 06:34:38', 0, NULL, 1),
(10839, 'Ranjith', '31', '9176883663', '8778831611', 'bowbotox@gmail.com', '1995-06-09', 27, '2', '2', 'Deenadhayalan', 'Coolie', 25000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2211030023', '1', '1', 'upload_files/candidate_tracker/18863846958_CV_2022103119070548.pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Salary Exp is high Will not sustain for a long not much strong in basics', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-03 05:29:59', 85, '2022-11-04 10:20:19', 0, NULL, 1),
(10840, '', '0', '9384479752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211030024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-03 11:26:45', 0, NULL, 0, NULL, 1),
(10841, 'Jeyasri K', '4', '9597188379', '8056564028', 'Sri887152@gmail.c', '1994-07-22', 28, '3', '1', 'Karthikeyan', 'Hr manager', 16000.00, 0, 16000.00, 16000.00, 'Erode', 'Erode', '2211040001', '', '2', 'upload_files/candidate_tracker/92809836123_K.JAYASHREE Resume-1-1.doc', NULL, '1', '2022-11-04', 10, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 10:34:59', 1, '2022-11-04 10:46:47', 0, NULL, 1),
(10842, 'PRIYATHARISINI E', '2', '9361736879', '', 'priyaeka1213@gmail.com', '1999-06-12', 23, '3', '2', 'K Ekambaram', 'Retired District Education Officer', 100000.00, 2, 0.00, 300000.00, 'Tindivanam', 'Chennai', '2211040002', '', '1', 'upload_files/candidate_tracker/78738710965_CV_2022110211091697.pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Very High CTC exp Crampete Student Not open for Term Will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 10:51:54', 1, '2022-11-04 11:01:39', 0, NULL, 1),
(10843, 'Shri Janani', '2', '8667256092', '', 'jananisambath11@gmail.com', '1999-07-11', 23, '3', '2', 'Sampath Rajan', 'Retired', 40000.00, 1, 0.00, 300000.00, 'Madurai', 'Chennai', '2211040003', '', '1', 'upload_files/candidate_tracker/26676662074_Shri Janani S.pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC Crampete Student Exp around 20-25 not ready to come down', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 10:52:34', 1, '2022-11-04 11:04:41', 0, NULL, 1),
(10844, 'Jeghadish', '2', '9345470683', '', 'Jeghsiva10@gmail.com', '1998-07-10', 24, '3', '2', 'Kavitha', 'Teacher', 50000.00, 1, 0.00, 25000.00, 'Madurai near thiruppuvanam', 'Velachery, Baby Nagar', '2211040004', '', '1', 'upload_files/candidate_tracker/58855727192_Jeghadish_Resume_Sep_202.pdf', NULL, '1', '2022-11-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Crampete No basic Skills not suitable will not sustain interviewed by Bharath', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 11:02:57', 1, '2022-11-04 11:13:40', 0, NULL, 1),
(10845, '', '0', '9551266616', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211040005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-04 11:12:30', 0, NULL, 0, NULL, 1),
(10846, 'Shankar n', '21', '7826940436', '9551266616', 'Shankarhrd1978@gmail.com', '1978-02-10', 44, '3', '1', 'Vijayalakshmi', 'Home maker', 35000.00, 1, 35000.00, 35000.00, 'Thiruvalangadu', 'Thiruvallur', '2211040006', '', '2', 'upload_files/candidate_tracker/71954435711_a09ecd45-0039-427b-83ef-ae513854aa57.pdf', NULL, '1', '2022-11-04', 15, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Experienced HR profile,Interviewed by Gokul and on hold', '3', '2', '0', '1', '1', '0', '2', '2022-11-11', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 11:37:10', 1, '2022-11-04 12:01:15', 0, NULL, 1),
(10847, 'Vishva D', '31', '6385625133', '9092009680', 'vishvabai320@gmail.com', '2000-05-17', 22, '4', '2', 'Dhayalan', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211040007', '', '1', 'upload_files/candidate_tracker/12162524926_CV vishva.pdf', NULL, '3', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 05:16:27', 1, '2022-11-04 05:20:09', 0, NULL, 1),
(10848, 'Priyadharshini', '6', '9944524334', '9360534814', 'priyadharshini7862000@gmail.com', '1999-02-22', 23, '2', '2', 'Balasubramaniyam', 'Powerloom', 30000.00, 2, 12000.00, 16000.00, 'Komarapalayam', 'Komarapalayam', '2211040008', '1', '2', 'upload_files/candidate_tracker/79742309157_PRIYADHARSHINI (1).pdf', NULL, '1', '2022-11-05', 5, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'next round selected, but ramesh sir told low confident so we hold this profile.', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-04 05:32:52', 60, '2022-11-07 02:35:06', 88, '2022-11-15 06:22:42', 0);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10849, 'karthicksurya.r', '6', '6369402759', '9750054727', 'karthicksurya126@gmail.com', '2001-10-06', 21, '2', '2', 'rajasekar.a', 'accountant', 18000.00, 1, 0.00, 15000.00, 'erode', 'erode', '2211040009', '1', '1', 'upload_files/candidate_tracker/10142646336_resume.pdf', NULL, '1', '2022-11-05', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sales not interested', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-04 05:34:06', 60, '2022-11-07 02:35:44', 0, NULL, 1),
(10850, 'R.dhivya', '6', '9360534814', '9944524334', 'dhivy1411@gmail.com', '2002-11-14', 19, '2', '2', 'Ramasamy', 'Powerloom', 28000.00, 2, 11500.00, 15000.00, 'Komarapalayam', 'Komarapalayam', '2211040010', '1', '2', 'upload_files/candidate_tracker/68896838571_DHIVI_RESUME2_(1)_1666076416252_DHIVYA_R.pdf', NULL, '1', '2022-11-05', 5, '', '3', '59', '2022-11-08', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team with TDS 5%', '5', '2', '1', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-04 05:44:49', 60, '2022-11-07 06:29:25', 0, NULL, 1),
(10851, 'Karthikeyan', '2', '9840917544', '7358325214', 'karthi242000@gmail.com', '2000-04-02', 22, '3', '2', 'Shanmugaraj', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211040011', '', '1', 'upload_files/candidate_tracker/3025625559_Karthikeyan-2.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-04 05:53:29', 1, '2022-11-04 05:56:49', 0, NULL, 1),
(10852, 'Ramkumar M', '6', '9789892369', '8682095180', 'vijay.ram340@gmail.com', '1990-05-25', 32, '1', '1', 'Manjula', 'Hw', 12000.00, 1, 15000.00, 150000.00, 'Chennai', 'Chennai', '2211050001', '', '2', 'upload_files/candidate_tracker/19687938751_RESUME 2.docx', NULL, '1', '2022-11-05', 0, 'P1066', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sales Sustainability Doubts', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-05 11:03:49', 1, '2022-11-05 11:10:33', 0, NULL, 1),
(10853, 'Mohamed Shakeel', '23', '9384469652', '9840337899', 'shakeelmohamed1999@gmail.com', '1999-09-28', 23, '2', '2', 'Badusha', 'Driving', 19000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2211050002', '1', '1', 'upload_files/candidate_tracker/36364057941_DOC-20221021-WA0010..pdf', NULL, '1', '2022-11-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basic Skills Not open for TxxampC Will Not Sustain In Our Roles Not Suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-05 11:28:36', 99, '2022-11-05 02:42:23', 0, NULL, 1),
(10854, '', '0', '8056820871', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211050003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-05 12:13:39', 0, NULL, 0, NULL, 1),
(10855, 'Balamurugan b', '32', '9788809796', '8939774611', 'Bala.bvprofessional@gmail.com', '1989-05-10', 33, '1', '1', 'Savithri', 'House wife', 10000.00, 5, 520000.00, 600000.00, 'Chennai', 'Chennai', '2211050004', '', '2', 'upload_files/candidate_tracker/59471150640_BALA RESUME 2021_compressed.pdf', NULL, '2', '2022-11-05', 15, '55634', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Very High CTC Min Exp is 5.4 LPA Jagadeesh REference\n', '5', '1', '0', '1', '1', '0', '2', '2022-11-08', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-05 01:19:37', 1, '2022-11-05 02:37:41', 0, NULL, 1),
(10856, 'kalaiselvi', '5', '9884589973', '', 'kannamma752@gmail.com', '1999-08-27', 23, '2', '2', 'saravanna k', 'thinker', 12000.00, 1, 15000.00, 15000.00, 'chennai', 'chennai', '2211050005', '1', '2', 'upload_files/candidate_tracker/8864275884_Kalaiselvidocuments.pdf', NULL, '1', '2022-11-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Have Exp in NOn Voice Data Entry not much comfort in Target Internal Reference Kindly check and let me know your inputs', '5', '2', '', '', '', '', '2', '1970-01-01', '3', '3', '', '', 'H1002', '', NULL, NULL, NULL, 1, '2022-11-05 04:25:55', 60, '2022-11-05 06:36:30', 0, NULL, 1),
(10857, 'Stella M', '13', '9597053359', '9865078136', 'stellastella29669@gmail.com', '1999-08-30', 23, '3', '2', 'Muthu kutti P', 'Farmer cooli', 75.00, 2, 0.00, 15.00, 'Tirunelveli', 'Chennai', '2211050006', '', '1', 'upload_files/candidate_tracker/4887945632_STELLA RESUME (1)_31-Aug-22_16.26.38.docx', NULL, '1', '2022-11-07', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-05 05:54:13', 85, '2022-11-07 10:08:04', 0, NULL, 1),
(10858, 'R.THAMARAI SELVAN', '6', '9597105296', '7010768756', 'thamaraiselvanvlr@gmail.com', '1995-07-31', 27, '3', '2', 'RAMESH', 'Self working', 45000.00, 2, 15000.00, 17000.00, 'Vellore', 'Tnagar', '2211050007', '', '2', 'upload_files/candidate_tracker/61363281951_RTS RESUME 2022..doc', NULL, '1', '2022-11-07', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile need to open a lot Have Exp in Telecalling sustainability and handle our pressure is doubt,kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-05 06:14:36', 60, '2022-11-07 04:43:54', 0, NULL, 1),
(10859, 'Vengadajalapathi J', '4', '7339378331', '7904103821', 'vengadajalapathivijay9894@gmail.com', '1995-10-04', 27, '3', '2', 'Jayaraman s s', 'Business', 30000.00, 0, 225000.00, 300000.00, 'Cuddalore', 'Chennai', '2211050008', '', '2', 'upload_files/candidate_tracker/90741995007_Vijay9894 Resume.docx', NULL, '1', '2022-11-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much active Few months as telecaller nght shift will not sustain and handle our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-05 06:15:54', 1, '2022-11-07 01:42:09', 0, NULL, 1),
(10860, 'Madhumitha.D', '26', '9840585224', '', 'madhumitha30111999@gmail.com', '1999-11-30', 22, '3', '2', 'M.Devarajana', 'Senior officer', 41000.00, 0, 16500.00, 35000.00, 'Chennai', 'Chennai', '2211050009', '', '2', 'upload_files/candidate_tracker/52688871589_Madhumitha D Resume.pdf', NULL, '1', '2022-11-10', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-05 06:26:24', 1, '2022-11-05 06:30:26', 0, NULL, 1),
(10861, '', '0', '8637679165', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211050010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-05 07:07:58', 0, NULL, 0, NULL, 1),
(10862, 'Surya', '6', '9344616641', '9244898039', 'Suryahandsome15@gmail.com', '2001-04-23', 21, '2', '2', 'Velumani', 'Farmer', 20000.00, 1, 11000.00, 120000.00, 'Sankagiri', 'Sankagiri', '2211050011', '1', '2', 'upload_files/candidate_tracker/49261108895_SURYA V.docx', NULL, '1', '2022-11-07', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable for this role', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-05 08:47:52', 85, '2022-11-07 03:56:27', 0, NULL, 1),
(10863, '', '0', '7339146264', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211060001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-06 11:26:29', 0, NULL, 0, NULL, 1),
(10864, 'Venkadesh', '31', '9789528043', '9994119223', 'venkat.tv.raja@gmail.com', '1999-08-25', 23, '2', '2', 'Thirugnanam', 'Farmer', 50000.00, 3, 0.00, 300000.00, 'Thanjavur', 'Chennai', '2211060002', '1', '1', 'upload_files/candidate_tracker/59778471796_VenkatResume-2.pdf', NULL, '1', '2022-11-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher basic skills all 3 sisters are in IT and have a lot of reference not much open with TxxampC will not sustain in a long run not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-06 06:15:57', 85, '2022-11-07 10:03:14', 0, NULL, 1),
(10865, '', '0', '7708770089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211060003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-06 07:40:46', 0, NULL, 0, NULL, 1),
(10866, '', '0', '1312321321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211060004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-06 09:04:03', 0, NULL, 0, NULL, 1),
(10867, 'sathish kumar p', '14', '8940878796', '', 'sathishraje18@gmail.com', '2001-06-12', 21, '2', '2', 'parthasarathi', 'kooli', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2211070001', '2', '1', 'upload_files/candidate_tracker/68799405213_sathish.doc', NULL, '1', '2022-11-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java openings not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 09:33:29', 1, '2022-11-07 09:36:34', 0, NULL, 1),
(10868, 'Soundharya A', '4', '7871282100', '', 'soundharyamenaka@gmail.com', '1998-10-07', 24, '3', '2', 'Arumugam p', 'Conductor', 30000.00, 2, 0.00, 12000.00, 'Erode', 'Erode', '2211070002', '', '1', 'upload_files/candidate_tracker/46716204649_CV.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 10:36:34', 1, '2022-11-07 10:42:13', 0, NULL, 1),
(10869, 'R.Yuvapriya', '4', '9442451400', '', 'yuvapriyait2111@gmail.com', '1998-11-21', 23, '3', '2', 'G. Rangasamy', 'Own Business', 20000.00, 2, 0.00, 10000.00, 'Erode', 'Erode', '2211070003', '', '1', 'upload_files/candidate_tracker/35407687790_yuva resume.pdf.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 10:36:37', 1, '2022-11-07 10:42:49', 0, NULL, 1),
(10870, 'Vikram T', '6', '8940442098', '', 'vikrampandi1971@gmail.com', '2002-02-13', 20, '3', '2', 'Thangapandi A', 'Security', 15000.00, 1, 0.00, 20000.00, 'Chengalpattu.', 'Mount, Adambakkam', '2211070004', '', '1', 'upload_files/candidate_tracker/56999019726_Curiculam vitae 10.pdf', NULL, '1', '2022-11-07', 0, '', '7', '60', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Selected for next round', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-07 10:48:46', 60, '2022-11-07 04:47:04', 0, NULL, 1),
(10871, 'Rajadurai.d', '4', '7094327422', '', 'rajadurai9024@gmail.com', '1989-06-07', 33, '3', '2', 'Seenivasan.r', 'Sales', 15000.00, 1, 0.00, 12000.00, 'Kumbakonam', 'Kumbakonam', '2211070005', '', '2', 'upload_files/candidate_tracker/67425413830_resum.pdf', NULL, '1', '2022-11-07', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 11:31:06', 1, '2022-11-07 11:41:56', 0, NULL, 1),
(10872, 'Rajadurai', '6', '7094327421', '', 'rajadurai9024@gmail.com', '2007-11-14', 15, '2', '2', 'Gather', 'Father', 20000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2211070006', '25', '1', 'upload_files/candidate_tracker/13974064905_RAJADURAI RESUME.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication for Sales is not ok Attitude, Not suitable for our insurance Sales ', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-07 11:45:46', 60, '2022-11-15 03:22:09', 0, NULL, 1),
(10873, 'A. Mohamed', '4', '6385826563', '9025872372', 'Mohamedasik775@gmail.com', '2002-05-26', 20, '3', '2', 'P. Abdul kadhar', 'Driver', 20000.00, 2, 0.00, 12000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2211070007', '', '1', 'upload_files/candidate_tracker/22529156375_mohamed.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 11:47:51', 1, '2022-11-07 11:54:54', 0, NULL, 1),
(10874, 'T. Siva shangari', '4', '9361438792', '9585776052', 'sshangari61@gmail.com', '2000-02-10', 22, '3', '2', 'Thirugnanam. R', 'Kooli', 85000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211070008', '', '1', 'upload_files/candidate_tracker/57635330265_T.SIVA SHANGARI.docx', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 11:48:20', 1, '2022-11-07 12:00:18', 0, NULL, 1),
(10875, 'Keerthi', '4', '6374401592', '', 'keerthikeerthi53675@gmail.com', '1999-05-15', 23, '3', '2', 'Chinnayan', 'Kuli', 60000.00, 1, 0.00, 10000.00, 'Nattarasankottai', 'Nattarasankottai', '2211070009', '', '1', 'upload_files/candidate_tracker/15911055382_keerthi my resume.pdf', NULL, '1', '2022-11-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 11:48:24', 1, '2022-11-07 12:24:14', 0, NULL, 1),
(10876, '', '0', '8977600904', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 03:13:11', 0, NULL, 0, NULL, 1),
(10877, 'nivedha.v', '3', '6383298540', '', 'nivedhavengadesh3001@gmail.com', '2000-01-30', 22, '2', '2', 'vengadesh.g', 'engineer', 30000.00, 1, 0.00, 30000.00, 'karaikal', 'chennai', '2211070011', '1', '1', 'upload_files/candidate_tracker/82448798541_Nivedha.V_Resume.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for multiple profile ... seems like no job need .. not suit for our roles..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 03:21:46', 99, '2022-11-21 06:28:18', 0, NULL, 1),
(10878, '', '0', '6380677381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 03:28:51', 0, NULL, 0, NULL, 1),
(10879, 'Aravindhan M', '23', '6382630189', '7868926217', 'aravindhandm29@gmail.com', '2001-03-29', 21, '3', '2', 'Datchayaini', 'Daily worker', 10000.00, 1, 0.00, 250000.00, 'Arani', 'Chennai', '2211070013', '', '1', 'upload_files/candidate_tracker/90279559632_aravindhan_resume.pdf', NULL, '3', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 03:39:45', 1, '2022-11-07 03:45:37', 0, NULL, 1),
(10880, 'Sathiyapriya', '21', '8825555086', '', 'g.sathiyapriya399@gmail.com', '1999-01-03', 23, '4', '2', 'Gopal.M', 'Welder', 12000.00, 2, 18000.00, 22000.00, 'Chennai', 'Chennai', '2211070014', '', '2', 'upload_files/candidate_tracker/32357113511_Sathiya Priya resume.docx', NULL, '3', '2022-11-15', 45, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 03:55:05', 1, '2022-11-07 03:58:28', 0, NULL, 1),
(10881, 'Sachin', '23', '8939296608', '7358611348', 'sachin2272000@gmail.com', '2000-07-22', 22, '4', '2', 'Mallika', 'Daily wasage', 7500.00, 1, 0.00, 300000.00, 'Mamallapuram', 'Mamallapuram', '2211070015', '', '1', 'upload_files/candidate_tracker/6650005905_SachinResume (2).pdf', NULL, '3', '2022-11-09', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 03:58:56', 1, '2022-11-07 04:06:37', 0, NULL, 1),
(10882, 'gokul', '23', '8778083398', '', 'gokulsuresh0603@gmail.com', '2000-03-06', 22, '4', '2', 'sureshbabu', 'business', 50000.00, 1, 0.00, 250000.00, 'chennai', 'chennai', '2211070016', '', '1', 'upload_files/candidate_tracker/40061187646_Gokul_Resume.pdf', NULL, '1', '2022-11-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for Java openings not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 05:45:34', 1, '2022-11-07 05:48:38', 0, NULL, 1),
(10883, 'Suriya prakash', '11', '9094686164', '', 'suriyaprakash6164@gmail.com', '2001-03-22', 21, '3', '2', 'Srinivasan', 'Self employed', 200000.00, 1, 0.00, 15000.00, 'Nungambakkam chennai', 'Nungambakkam Chennai', '2211070017', '', '1', 'upload_files/candidate_tracker/35047149924_Suriya_Prakash_(1)-859de538fd72a99a436162a3d46d8fd7-1.pdf', NULL, '1', '2022-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 05:50:27', 1, '2022-11-07 06:14:17', 0, NULL, 1),
(10884, '', '0', '7305846872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 05:55:20', 0, NULL, 0, NULL, 1),
(10885, 'Syed rasool bukhari', '28', '8680835869', '8667528400', 'suhailbukhari229@gmail.com', '2001-08-11', 21, '3', '2', 'Syed adil basha', 'B. Com c/s', 7000.00, 7, 0.00, 20000.00, 'Chennai triplicane', 'Triplicane chennai', '2211070019', '', '1', 'upload_files/candidate_tracker/41519417697_bukhari20fresh20resume201 (1).pdf', NULL, '1', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 05:59:47', 1, '2022-11-07 06:04:53', 0, NULL, 1),
(10886, 'K R NIRMAL KUMAR RAO', '17', '9360655013', '', 'nirmal192001@gmail.com', '2001-01-19', 21, '2', '2', 'K S RAMESH RAO', 'Retired Government Employee', 17000.00, 1, 0.00, 180000.00, 'No. 1/10 5th street P G AVENUE KATTUPAKKAM', 'No. 1/10 5th Street P G AVENUE KATTUPAKKAM', '2211070020', '1', '1', 'upload_files/candidate_tracker/87886661036_resume nirmal (1).pdf', NULL, '1', '2022-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable he is focusing on CMA preparing for that.Time being he is looking for Accounts will not sustain for a long', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 06:01:40', 85, '2022-11-08 11:32:34', 0, NULL, 1),
(10887, '', '0', '9963039080', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070021', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:08:42', 0, NULL, 0, NULL, 1),
(10888, '', '0', '9360164791', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:10:36', 0, NULL, 0, NULL, 1),
(10889, '', '0', '7401073600', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:11:57', 0, NULL, 0, NULL, 1),
(10890, '', '0', '9962633624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:13:51', 0, NULL, 0, NULL, 1),
(10891, 'divya s', '16', '9080567169', '9551472547', 'divyabeula@gmail.com', '1993-10-02', 29, '2', '1', 'saravanan k', 'gym trainer', 30000.00, 1, 38000.00, 30000.00, 'jafferkhapet', 'jafferkhanpet', '2211070025', '1', '2', 'upload_files/candidate_tracker/85745986176_Divya CV.doc', NULL, '1', '2022-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication No,Have 8+ yrs Exp Writting Skills not upto the mark not suitable will not sustain Have 7 month old baby', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-07 06:24:58', 99, '2022-11-08 02:37:02', 0, NULL, 1),
(10892, 'Balaji R', '17', '9500645558', '', 'balajiravi250@gmail.com', '1999-05-04', 23, '3', '2', 'Ravi and shenbagam', 'Business', 25000.00, 2, 0.00, 27000.00, 'Dharmapuri', 'Chennai', '2211070026', '', '1', 'upload_files/candidate_tracker/10248017227_Balaji R.pdf', NULL, '1', '2022-12-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-07 06:28:27', 1, '2022-11-07 08:59:05', 0, NULL, 1),
(10893, '', '0', '6379712761', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:31:44', 0, NULL, 0, NULL, 1),
(10894, 'Sarath G', '5', '7358612288', '8807673288', 'sarathhrithikj@gmail.com', '2001-03-29', 21, '2', '2', 'Komathi G', 'House wife', 240000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211070028', '1', '1', 'upload_files/candidate_tracker/39142286128_Sarath resume.pdf', NULL, '1', '2022-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication not suitable for our Sales /operation Roles', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-07 06:32:40', 99, '2022-11-08 02:39:29', 0, NULL, 1),
(10895, '', '0', '9538461713', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 06:41:14', 0, NULL, 0, NULL, 1),
(10896, 'N.alagappan', '5', '7092343885', '9710039441', 'alagappan0713@gmail.com', '2001-07-13', 21, '2', '2', 'N.narayanan', 'Marketing', 20000.00, 4, 0.00, 15000.00, 'Arumbakkam', 'Chennai', '2211070030', '1', '1', 'upload_files/candidate_tracker/75211076571_N ALAGAPPAN RESUME-converted.pdf', NULL, '1', '2022-11-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable no communication no basic ideas in the accounts will not sustain', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 06:46:12', 85, '2022-11-08 11:32:59', 0, NULL, 1),
(10897, 'Yugabharathi S', '5', '9159458996', '', 'sobaugabharathi2000@gmail.com', '2000-11-11', 21, '2', '2', 'Sonaipandi', 'Artist', 6000.00, 1, 0.00, 15000.00, 'Manamadurai', 'Choolaimedu , Chennai', '2211070031', '1', '1', 'upload_files/candidate_tracker/32872810495_my resume.pdf', NULL, '1', '2022-11-08', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-07 06:47:57', 60, '2022-11-08 07:21:06', 0, NULL, 1),
(10898, 'Divya darshini S.D', '16', '8056093008', '8248399551', 'divyadarshini15112001@gmail.com', '2001-11-15', 20, '2', '2', 'G. Shankar', 'ICF', 50000.00, 1, 0.00, 15000.00, '56/138 Nageshwara guru swamy Street , Ayanavaram', '56/138 Nageshwara Guru Swamy Street, Ayanavaram', '2211070032', '1', '1', 'upload_files/candidate_tracker/56239647028_Divya darshini.SDresume.pdf', NULL, '1', '2022-11-08', 0, '', '3', '59', '2022-11-10', 156000.00, '', '5', '1970-01-01', '2', 'Selected for MIS Role,Communication ok can be trained Gokul interviewed the final round', '3', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 07:03:58', 60, '2022-11-08 07:37:45', 0, NULL, 1),
(10899, '', '0', '9176457598', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070033', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 07:16:36', 0, NULL, 0, NULL, 1),
(10900, '', '0', '7010505573', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 07:54:43', 0, NULL, 0, NULL, 1),
(10901, '', '0', '6381112703', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070035', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 08:01:00', 0, NULL, 0, NULL, 1),
(10902, 'Hemamalini S', '4', '8428139922', '', 'hemamalini2799@gmail.com', '1999-03-27', 23, '2', '2', 'Shri sai sivakumaran', 'Business', 40000.00, 1, 14000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2211070036', '1', '2', 'upload_files/candidate_tracker/40625414763_Hemamalini S Resume.pdf', NULL, '1', '2022-11-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Calling Communication Ok ,but sustainability doubts 2.5 yrs 4 companies changed and even gap is there initiated SA need to check with her family and confirm', '1', '1', '', '1', '1', '', '2', '2022-11-10', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-07 09:26:41', 85, '2022-11-09 11:21:44', 0, NULL, 1),
(10903, '', '0', '7299381234', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070037', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 11:17:10', 0, NULL, 0, NULL, 1),
(10904, '', '0', '9363510270', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211070038', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-07 11:32:45', 0, NULL, 0, NULL, 1),
(10905, '', '0', '7200447543', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 12:03:50', 0, NULL, 0, NULL, 1),
(10906, '', '0', '9840723228', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 08:42:57', 0, NULL, 0, NULL, 1),
(10907, 'Dharani Poosala', '16', '8074159436', '9490255266', 'pdharani2@gmail.com', '1992-06-07', 30, '2', '1', 'K. Lokanadhan', 'Accountent', 2.50, 4, 250000.00, 300000.00, 'Andhara pradesh', 'Chennai', '2211080003', '1', '2', 'upload_files/candidate_tracker/25628110287_DHARANIP-RESUME.pdf', NULL, '1', '2022-11-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok Have Exp in MIS ,can be trained 2nd round interviewed by Gokul need to go with the same pay if she is ok for 19K includes PF/ESI/PT we can proceed', '3', '1', '', '1', '1', '', '2', '2022-11-09', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-08 09:58:57', 99, '2022-11-08 02:42:47', 0, NULL, 1),
(10908, 'janani g', '22', '7200930630', '', 'jananigglow19@gmail.com', '1998-04-19', 24, '3', '2', 'govind', 'mechanical technician', 60000.00, 2, 0.00, 250000.00, 'chennai', 'chennai', '2211080004', '', '1', 'upload_files/candidate_tracker/23275092229_J resume - Copy.pdf', NULL, '2', '2022-11-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 10:06:18', 1, '2022-11-08 10:09:25', 0, NULL, 1),
(10909, 'Kaviya.s', '4', '7395818461', '9578481236', 'Kjkowsalya1621@gmail.com', '1997-10-21', 25, '1', '2', 'Selvam.k', 'Driver', 18000.00, 1, 15000.00, 18000.00, 'Cuddalore', 'Chennai', '2211080005', '', '2', 'upload_files/candidate_tracker/9546257405_Adobe Scan 08 Nov 2022.pdf', NULL, '1', '2022-11-08', 0, 'Jobs', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 10:23:53', 1, '2022-11-08 10:42:06', 0, NULL, 1),
(10910, '', '0', '7092691798', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 10:43:49', 0, NULL, 0, NULL, 1),
(10911, '', '0', '9363034936', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 10:57:38', 0, NULL, 0, NULL, 1),
(10912, '', '0', '9043012762', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 10:59:58', 0, NULL, 0, NULL, 1),
(10913, 'Ayyappan k', '4', '8072419066', '9698185389', 'goodfellaschn@gmail.com', '1993-07-09', 29, '2', '2', 'Devi k', 'Agriculture', 200000.00, 0, 18000.00, 21000.00, 'Chennai', 'Chennai', '2211080009', '1', '2', 'upload_files/candidate_tracker/38221848103_RESUME_AYYAPPAN[.pdf', NULL, '1', '2022-11-08', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok Have Exp 2nd round interiewed by GK sir as Shanmugam is not available in office will come for final round tomorrow', '1', '1', '', '1', '1', '', '2', '2022-11-09', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 11:08:40', 85, '2022-11-08 11:31:52', 0, NULL, 1),
(10914, 'VIGNESHKUMAR KANNAN', '7', '6379712791', '', 'kvicky2706@gmail.com', '1995-06-27', 27, '2', '2', 'Kannan', 'HOTEL', 25000.00, 2, 18000.00, 25000.00, 'Madurai', 'Chennai', '2211080010', '1', '2', 'upload_files/candidate_tracker/19553275893_Updated Resume.doc', NULL, '1', '2022-11-08', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication not open for Sales', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 12:13:15', 85, '2022-11-08 12:39:08', 0, NULL, 1),
(10915, 'S balaji', '6', '7358385808', '8608921696', 'balajibj85973@gmail.com', '1998-07-09', 24, '2', '2', 'Parent', 'Business', 30000.00, 3, 18000.00, 23000.00, 'Perungundi railways road', 'Perungundi railways road', '2211080011', '1', '2', 'upload_files/candidate_tracker/6912678656_Resume_Balaji resume_Format1.pdf', NULL, '1', '2022-11-08', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Telecalling 5050 Profile Can give a try Will come for 2nd round tomorrow', '5', '1', '', '1', '1', '', '2', '2022-11-09', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 12:13:17', 85, '2022-11-08 12:39:20', 0, NULL, 1),
(10916, 'Balaji.s', '33', '7338972321', '', 'Balajisrini2108@gmail.com', '2001-08-21', 21, '2', '2', 'K.srinivasan', 'Quality checker in mepz', 12000.00, 1, 0.00, 180000.00, 'Chennai', 'Maraimalai nagar', '2211080012', '1', '1', 'upload_files/candidate_tracker/77361861945_resume.1.pdf', NULL, '1', '2022-11-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance Fresher need to train a lot,ready to relocate need time to confirm the TxxampC if he comes back let us try', '4', '1', '', '1', '1', '', '2', '2022-11-18', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 12:16:19', 85, '2022-11-16 10:44:26', 0, NULL, 1),
(10917, 'Vasanth', '4', '7418082794', '', 'vasanthvasanth0460@gmail.com', '2003-11-24', 18, '3', '2', 'Vanitha', 'Sales', 15000.00, 4, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211080013', '', '1', 'upload_files/candidate_tracker/33349411465_20221105_160922_0000.pdf', NULL, '1', '2022-11-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 12:18:47', 1, '2022-11-08 12:26:48', 0, NULL, 1),
(10918, '', '0', '9600175221', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 02:53:08', 0, NULL, 0, NULL, 1),
(10919, 'Angel', '11', '9360776354', '9841177948', 'angelnivi02@gmail.com', '2001-07-02', 21, '3', '2', 'Parent', 'Employer in company', 12.00, 2, 0.00, 15.60, 'Chennai', 'Chennai', '2211080015', '', '1', 'upload_files/candidate_tracker/96774635322_angelgp.pdf', NULL, '1', '2022-11-24', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 03:06:23', 1, '2022-11-08 03:11:12', 0, NULL, 1),
(10920, 'Mathesh k', '33', '9962502166', '', 'Km75009@gmail.com', '2000-11-19', 21, '2', '2', 'Karthikeyan', 'Business', 25000.00, 1, 0.00, 15000.00, '32/18 kasipuram b block royapuram ch 13', '89/2butchammal Street New washernmenpet ch-81', '2211080016', '1', '1', 'upload_files/candidate_tracker/72102522661_I am sharing', NULL, '1', '2022-11-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is in internship till Nov end can give a try if he comes back let us try', '4', '1', '', '1', '1', '', '2', '2022-11-30', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 03:40:57', 85, '2022-11-09 11:58:02', 0, NULL, 1),
(10921, '', '0', '9092129339', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211080017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-08 04:37:21', 0, NULL, 0, NULL, 1),
(10922, 'Vineeth C', '5', '9360492936', '8270918649', 'vineethvava40@gmail.com', '1999-11-13', 22, '2', '1', 'Varsha', 'B.ed holder', 17000.00, 1, 17000.00, 22000.00, '19/12 pazhayapadi, Cherambadi the NILGIRIS 643205', 'Chennai', '2211080018', '1', '2', 'upload_files/candidate_tracker/95586115717_VINEETH.C ... RESUME.pdf', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-21', 246000.00, '', '', '2022-11-22', '1', 'Seleted for Manikandan Team with Pf/ESI/PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-08 04:45:25', 60, '2022-11-17 06:10:09', 0, NULL, 1),
(10923, 'Nithishkumar', '6', '8760569812', '', 'nithishkumarnithi02@gmail.com', '2000-07-23', 22, '2', '2', 'Ravi R', 'Bulding Work', 40000.00, 1, 18000.00, 18000.00, 'Erode', 'Erode', '2211080019', '1', '2', 'upload_files/candidate_tracker/92651094995_1661606975369_Nithish CV-1 (2).pdf', NULL, '1', '2022-11-09', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for this profile', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-08 04:46:52', 85, '2022-11-09 12:43:08', 0, NULL, 1),
(10924, 'Vivekha', '33', '8248531150', '', 'vivekha1999@gmail.com', '1999-08-06', 23, '2', '2', 'V. Kamala kannan', 'TV technician', 15000.00, 1, 0.00, 12000.00, 'Ambattur', 'Ambattur', '2211080020', '1', '1', 'upload_files/candidate_tracker/86366133248_Resume_Vivekha resume_Format7.pdf', NULL, '1', '2022-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok need to travel from ambattur ,have a trainee exp,checked for other profiles but not open for those', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-08 04:47:44', 85, '2022-11-09 03:36:05', 0, NULL, 1),
(10925, 'Sanjay', '33', '6374632088', '', 'Sanjaysanjay@gmail.com', '2001-07-16', 21, '3', '2', 'Panjamoorthi', 'Former', 30000.00, 1, 0.00, 18000.00, 'Kumbakonam', 'Thuraipakkam', '2211080021', '', '1', 'upload_files/candidate_tracker/6351523765_SANJAY-1 (1).docx', NULL, '1', '2022-11-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 04:54:15', 1, '2022-11-09 10:59:05', 0, NULL, 1),
(10926, 'Mohamed Afsar s', '33', '9585188956', '', 'afsardn04@gmail.com', '2002-01-04', 20, '2', '2', 'Shahul hameed D', 'Left', 10000.00, 0, 0.00, 13000.00, 'Thiruvarur', 'Triplicane chennai', '2211080022', '1', '1', 'upload_files/candidate_tracker/47955701229_VICAPRI RES_1667392937841_Mohamed afsar.pdf', NULL, '1', '2022-11-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles, Will Not Sustain ', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-08 05:04:46', 85, '2022-11-10 11:15:10', 0, NULL, 1),
(10927, 'Dhivya Bharathi.B', '4', '8754270603', '', 'dhivyabharathi0802@gmail.com', '2001-02-08', 21, '3', '2', 'Shantha gowri.B', 'ICDS worker', 10000.00, 0, 0.00, 20000.00, 'Vellore', 'Chennai', '2211080023', '', '1', 'upload_files/candidate_tracker/55069542694_Document (2).docx', NULL, '1', '2022-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 06:15:06', 1, '2022-11-10 10:53:53', 0, NULL, 1),
(10928, 'Pavithra M', '21', '9150838135', '', 'pavi.m562002@gmail.com', '2002-06-05', 0, '3', '2', 'murugan', 'vegtable business', 30000.00, 2, 0.00, 15000.00, 'choolaimedu', 'choolaimedu', '2211080024', '', '1', 'upload_files/candidate_tracker/49598976316_Pavithra\'s Resume.docx', NULL, '1', '2022-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-08 07:59:05', 1, '2022-11-08 08:07:08', 0, NULL, 1),
(10929, 'GANESAN S', '4', '7904555641', '9710585747', 'ganganesh10@gmail.com', '1992-08-31', 30, '2', '2', 'SUBRAMANI M', 'Book Binder', 20000.00, 1, 0.00, 17000.00, 'Avadi', 'Avadi', '2211090001', '1', '1', 'upload_files/candidate_tracker/29090017129_GAnesan resume .pdf', NULL, '3', '2022-11-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'NO ideas in Accounts too long distance will not sustain not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 07:58:09', 60, '2022-11-09 08:05:48', 0, NULL, 1),
(10930, '', '0', '7812878996', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211090002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-09 08:41:24', 0, NULL, 0, NULL, 1),
(10931, 'Pooventhan E', '6', '9629056285', '8489382309', 'pooventhan80@gmail.com', '1994-02-09', 28, '2', '2', 'A.Elayappan', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Namakkal', 'Namakkal', '2211090003', '1', '1', 'upload_files/candidate_tracker/33087462613_Pooventhiran resume.pdf', NULL, '1', '2022-11-09', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for our job', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 09:49:25', 85, '2022-11-09 03:38:48', 0, NULL, 1),
(10932, 'Udaya Kumar', '33', '6383546330', '7904419881', 'udaya7414@gmail.com', '1997-08-30', 25, '2', '2', 'Kothandaraman', 'Farmer', 20000.00, 1, 14000.00, 22000.00, 'Chengalpattu', 'Chengalpattu', '2211090004', '1', '2', 'upload_files/candidate_tracker/5601164501_Udaya Kumar K UPDATED RESUME (2).pdf', NULL, '1', '2022-11-09', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas in Account Skills too long distance will not sustain not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '3', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 09:56:03', 85, '2022-11-09 03:34:57', 0, NULL, 1),
(10933, 'P.punithamozhi', '6', '9677020954', '', 'Pmozhi.sp@gmail.com', '1990-05-21', 32, '3', '1', 'S.nagendran', 'Cad cam engineer', 30000.00, 3, 13000.00, 15000.00, 'Chennai', 'Chennai', '2211090005', '', '2', 'upload_files/candidate_tracker/56472732507_PUNITHA RESUME.docx', NULL, '1', '2022-11-09', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our Sales not much open for Sales calls your own direct reference do check and let me know your inputs', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 10:07:59', 60, '2022-11-09 07:57:06', 88, '2022-11-15 06:22:42', 0),
(10934, '', '0', '9698469913', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-09 10:26:59', 0, NULL, 0, NULL, 1),
(10935, 'Yogeswari. S', '4', '9080327436', '', 'yogeswari192002@gmail.com', '2002-05-19', 20, '3', '2', 'Somasundaram. J', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211090007', '', '1', 'upload_files/candidate_tracker/39048167784_shalu resume.pdf', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-21', 126312.00, '', '3', '2022-11-24', '2', 'selected for Thanjavur Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 11:46:29', 60, '2022-11-17 06:17:13', 0, NULL, 1),
(10936, 'S. Vidhya', '4', '9597339528', '', 'Svidhiyav813@gmail.com', '2001-12-02', 20, '3', '2', 'Sathiya moorthi', 'Former', 30000.00, 0, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211090008', '', '1', 'upload_files/candidate_tracker/82105135384_vidhya resume.pdf', NULL, '1', '2022-11-09', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'she not fit for telesales and voice is not clear and not much profile', '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-09 11:46:32', 1, '2022-11-09 12:04:34', 0, NULL, 1),
(10937, 'R. Suriya', '4', '7305838635', '', 'suriyaramalingam112@gmail.com', '1998-02-12', 24, '3', '2', 'A. Ramalingam', 'Driver', 12000.00, 1, 0.00, 12000.00, 'Old kumbagonam road. Palliaharagaram Thanjavur', 'Thanjavur', '2211090009', '', '1', 'upload_files/candidate_tracker/79605706716_Suriya Ramalingam (1).pdf', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-21', 126312.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur Consultant Role', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 11:46:38', 60, '2022-11-17 06:21:34', 0, NULL, 1),
(10938, 'X. Aarthi', '4', '8428589568', '', 'xavieraarthi1907@gmail.com', '2002-07-19', 20, '3', '2', 'D. S. Xavier', 'Former', 30000.00, 3, 0.00, 9000.00, 'Thanjavur', 'Thanjavur', '2211090010', '', '1', 'upload_files/candidate_tracker/37280950005_AARTHI.RESUME.pdf', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-12', 126312.00, '', '', '2022-11-15', '2', 'Selected for Thanjavur - 5050 Communication Need to open a lot', '1', '2', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 11:46:51', 60, '2022-11-12 10:46:46', 0, NULL, 1),
(10939, 'K.shalini', '4', '7418911716', '', 'Shalinivaralakshmi@gmail.com', '2002-04-19', 20, '3', '2', 'A.kumaran', 'Painter', 110000.00, 2, 0.00, 10000.00, '1200,Jabamalai puram kalimedu Post Thanjavur', 'Thanjavur', '2211090011', '', '1', 'upload_files/candidate_tracker/56531335564_shalu resume.docx', NULL, '1', '2022-11-09', 0, '', '3', '59', '2022-11-21', 126312.00, '', '3', '2022-11-24', '2', 'selected for consultant role thanjavur', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-09 11:47:52', 60, '2022-11-16 06:56:37', 0, NULL, 1),
(10940, 'KISHORE sundar', '5', '9080280910', '6379905465', 'kishoresundar70@gmail.com', '1999-03-15', 23, '2', '2', 'T.s.thangaraj', 'Bsnl', 30000.00, 1, 23500.00, 26000.00, 'Royapuram', 'Royapuram', '2211090012', '1', '2', 'upload_files/candidate_tracker/9055402503_Kishore Sundar updated resume.pdf', NULL, '3', '2022-11-09', 0, '', '3', '59', '2022-11-14', 288000.00, '', '2', '2022-11-15', '1', 'Selected for Manikandan Team with PF/ESI', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 01:11:38', 60, '2022-11-14 10:13:36', 0, NULL, 1),
(10941, '', '0', '9994643173', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211090013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-09 01:42:28', 0, NULL, 0, NULL, 1),
(10942, 'Sathishkumar', '21', '6382201544', '9843779650', 'Sathishkumar17ucm36@gmail.com', '2000-05-07', 22, '3', '2', 'Arjunan', 'Labour', 12000.00, 1, 0.00, 13000.00, 'Kallakurichi', 'Aminjikarai', '2211090014', '', '1', 'upload_files/candidate_tracker/1936629318_SK Resume with image.docx', NULL, '1', '2022-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-09 05:53:46', 1, '2022-11-09 06:51:31', 0, NULL, 1),
(10943, 'gopala krishnan', '23', '9345047842', '', 'gopalakrishnan86317@gmail.com', '2001-05-14', 21, '3', '2', 'kumaran', 'bronze business', 30000.00, 1, 0.00, 20000.00, 'kumbakonam', 'shollinganalore', '2211090015', '', '2', 'upload_files/candidate_tracker/68185785291_Gopala Krishnan k-1.pdf', NULL, '1', '2022-11-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-09 06:41:34', 1, '2022-11-09 06:50:40', 0, NULL, 1),
(10944, 'Yash Nichani M', '33', '7550252394', '9840246620', 'yashnichani9999@gmail.com', '1999-11-10', 22, '2', '2', 'Mukesh Nichani', 'Real estate broker and vastu consultant', 25000.00, 0, 0.00, 15000.00, 'Tnagar Chennai', 'Tnagar Chennai', '2211090016', '1', '1', 'upload_files/candidate_tracker/82803371003_Yash Nichani Resume.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude issue,will not sustain and handle our roles not suitable', '4', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-09 06:54:15', 99, '2022-11-16 02:41:07', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(10945, 'Yokeshwaran J', '6', '8754178320', '9344766807', 'yokeshdcruze@gmail.com', '2000-11-27', 21, '3', '2', 'Jayakumar', 'Sales executive', 50000.00, 0, 20000.00, 25000.00, 'Kallakurichi', 'Chennai', '2211090017', '', '2', 'upload_files/candidate_tracker/56224486839_DOC-20221031-WA0000..pdf', NULL, '3', '2022-11-10', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-09 07:13:19', 1, '2022-11-10 10:20:41', 0, NULL, 1),
(10946, '', '0', '8838848407', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 07:48:28', 0, NULL, 0, NULL, 1),
(10947, '', '0', '9177000886', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 08:43:19', 0, NULL, 0, NULL, 1),
(10948, 'SADHASIVAM M', '4', '9715777126', '6380194080', 'sadhasivam.erd33@gmail.com', '2001-02-15', 21, '3', '2', 'MAGUDAPATHI', 'Electric contractor', 20.00, 1, 0.00, 20000.00, 'Erode', 'Vadapalani (Chennai)', '2211100003', '', '1', 'upload_files/candidate_tracker/99239910985_SADHASIVAM_CV.pdf', NULL, '1', '2022-11-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 10:51:38', 1, '2022-11-10 10:56:19', 0, NULL, 1),
(10949, 'mohamed afthaf', '33', '8870911835', '', 'mohamedafthaf2001@gmail.com', '2001-10-25', 21, '2', '2', 'nina mohamed', 'water purification', 400000.00, 2, 0.00, 12000.00, 'thiruvarur', 'chennai', '2211100004', '1', '1', 'upload_files/candidate_tracker/65694502481_afthaf res 55.pdf', NULL, '1', '2022-11-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles, Will Not Sustain ', '4', '2', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-10 10:53:31', 85, '2022-11-10 11:30:13', 0, NULL, 1),
(10950, 'Jayalakshmi g', '4', '9677712739', '', 'jayalakshmi642429@gmail.com', '2001-03-06', 21, '3', '2', 'Govindharaj', 'auto driver', 10000.00, 1, 0.00, 9000.00, 'M chavady', 'M chavdy', '2211100005', '', '1', 'upload_files/candidate_tracker/13044407815_jayalakshmi (1).pdf', NULL, '1', '2022-11-10', 0, '', '3', '59', '2022-11-28', 126312.00, '', '3', '2023-01-09', '2', 'Selected for Thanjavur Consultant Role 5050 Profile sustainability doubts', '1', '2', '1', '4', '5', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-10 11:00:08', 60, '2022-11-24 06:26:09', 0, NULL, 1),
(10951, 'Shinthiyasharan s', '4', '8248107641', '', 'shinthiyasharan@gmail.com', '2002-11-10', 20, '3', '2', 'Samuel inbakumar', 'Labour', 7000.00, 1, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211100006', '', '1', 'upload_files/candidate_tracker/94257716734_Priyanka Resume-1.pdf', NULL, '1', '2022-11-10', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for telesales and voice not clear and not fit for telesales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 11:00:11', 1, '2022-11-10 11:26:07', 0, NULL, 1),
(10952, 'Ranjani r', '4', '9042996684', '', 'ranjani15042002@gmail.com', '2002-04-15', 20, '3', '2', 'Ravi', 'Labour', 3500.00, 1, 0.00, 8000.00, 'Soorakkottai', 'Soorakottai', '2211100007', '', '1', 'upload_files/candidate_tracker/20404458241_ranjani.pdf', NULL, '1', '2022-11-10', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'very poor and less knownedlege not fit for team and tele sales', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 11:01:10', 1, '2022-11-10 11:16:38', 0, NULL, 1),
(10953, 'Pradeepa', '4', '8122373374', '', 'tkpradeepa28@gmail.com', '2002-03-28', 20, '3', '2', 'Thiyagarajan', 'Labour', 6000.00, 1, 0.00, 10000.00, 'Sivajinagar', 'Sivajinagar', '2211100008', '', '1', 'upload_files/candidate_tracker/69910091128_IMG_20221110_112916 (1).pdf', NULL, '1', '2022-11-10', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'no exposure and dont have clear voice clarity for telesales not suite for team', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 11:05:49', 1, '2022-11-10 11:36:33', 0, NULL, 1),
(10954, 'akashjohn', '4', '9791337285', '', 'akashjohnak7@gmail.com', '1997-09-27', 25, '2', '2', 'john', 'fisherman', 20000.00, 4, 0.00, 16000.00, 'rc street thalakulam kanayakumari', 't.nagar chennai.', '2211100009', '2', '1', 'upload_files/candidate_tracker/95011029567_akash bio data.doc', NULL, '1', '2022-11-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Suitable For Our Roles, Will Not Sustain ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-10 02:19:13', 85, '2022-11-10 02:44:48', 0, NULL, 1),
(10955, 'gokul sundar', '23', '7358734571', '', 'gokulsundar2108@gmail.com', '1998-08-21', 24, '2', '2', 'venkatesan', 'senior dgm marketing', 100000.00, 1, 0.00, 400000.00, 'chennai', 'chennai', '2211100010', '1', '1', 'upload_files/candidate_tracker/86189727505_Gokul_Sundar_CV.pdf', NULL, '1', '2022-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-10 06:42:42', 1, '2022-11-10 06:57:13', 0, NULL, 1),
(10956, 'Hariharan J', '23', '6383830850', '', 'hariharan03102001@gmail.com', '2001-03-10', 21, '4', '2', 'G Jothi', 'Driver', 20000.00, 1, 0.00, 20000.00, 'THANJAVUR', 'THANJAVUR', '2211100011', '', '1', 'upload_files/candidate_tracker/96981083376_hariharan resume.pdf', NULL, '1', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 07:18:59', 1, '2022-11-10 07:22:42', 0, NULL, 1),
(10957, '', '0', '8870530448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 07:28:08', 0, NULL, 0, NULL, 1),
(10958, 'Praveen kumar', '4', '8940382806', '6374290887', 'praveenspl096@gmail.com', '1996-02-15', 26, '2', '2', 'Anandhi', 'Housewife', 30000.00, 1, 18000.00, 20000.00, 'Avadi', 'Avadi', '2211100013', '1', '2', 'upload_files/candidate_tracker/95964443889_Praveen Resume NEW.docx', NULL, '1', '2022-11-12', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-10 09:14:13', 99, '2022-11-13 09:19:59', 0, NULL, 1),
(10959, '', '0', '9176230633', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 10:10:04', 0, NULL, 0, NULL, 1),
(10960, '', '0', '7358296204', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211100015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-10 10:54:43', 0, NULL, 0, NULL, 1),
(10961, 'Hemanthkumar R', '31', '7092254942', '9943291776', 'hemanthkumar28111999@gmail.com', '1999-11-28', 22, '3', '2', 'Rajapandi R', 'No', 48000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2211100016', '', '1', 'upload_files/candidate_tracker/4524453954_Hemanthkumar Resume.pdf', NULL, '1', '2022-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-10 11:42:32', 1, '2022-11-10 11:51:06', 0, NULL, 1),
(10962, 'Irappa B Chougala', '11', '7892135145', '9964213683', 'Irappachougala24@gmail.com', '1995-10-15', 27, '3', '1', 'Irappa chougala', 'E&c Engineering', 21000.00, 2, 300000.00, 400000.00, 'At post kotabagi tq: hukeri Dis: belagum 591310', 'Madiwal', '2211110001', '', '2', 'upload_files/candidate_tracker/82503560840_irappa chougala 2.docx', NULL, '3', '2022-11-11', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-11 10:20:46', 1, '2022-11-11 10:40:17', 0, NULL, 1),
(10963, 'N.sunil', '22', '8903547057', '6383797314', 'sunildas7a@gmail.com', '1996-04-11', 26, '3', '2', 'K.nethas', 'Manager', 35000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2211110002', '', '2', 'upload_files/candidate_tracker/31664563256_CV_2022081221005651.pdf', NULL, '1', '2022-11-16', 7, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-11 07:26:33', 1, '2022-11-11 07:34:29', 0, NULL, 1),
(10964, '', '0', '7094705424', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211110003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-11 10:42:03', 0, NULL, 0, NULL, 1),
(10965, 'Mansoor Musthafa', '23', '6385126545', '', 'msmansoor523@gmail.com', '2000-11-14', 21, '2', '2', 'Musthafa', 'Fresher', 15000.00, 2, 0.00, 25000.00, 'No 272/183 Narayanapuram Nandhivaram Guduvancheri', '7/204A Omsakthi Nagar Mainroad kovilambakkam', '2211120001', '1', '1', 'upload_files/candidate_tracker/20637731642_Mansoor_2021_OMR.pdf', NULL, '1', '2022-11-12', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-12 09:33:54', 99, '2022-11-13 09:19:41', 0, NULL, 1),
(10966, '', '0', '9710116776', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 10:18:39', 0, NULL, 0, NULL, 1),
(10967, 'Keerthana M', '14', '9486480196', '', 'keerthanamohan09@gmail.com', '2001-07-09', 21, '1', '2', 'Mohan', 'Business', 15000.00, 1, 0.00, 20000.00, 'Thanjavur', 'Velachery', '2211120003', '', '1', 'upload_files/candidate_tracker/28984036676_CV_2022110811430516.pdf', NULL, '1', '2022-11-14', 0, 'NA', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-12 10:19:50', 1, '2022-11-14 12:52:18', 0, NULL, 1),
(10968, 'Sachin Yadav', '5', '9686035294', '', 'sachinyadavgn@gmail.com', '1994-11-04', 28, '2', '2', 'Anusha (sister)', 'Talent Acquisition Executive', 10000.00, 2, 245000.00, 350000.00, 'Bangalore', 'Vijayanagara', '2211120004', '1', '2', 'upload_files/candidate_tracker/80717655026_Sachin Yadav_CV-2.docx', NULL, '2', '2022-11-14', 5, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Tried couple of times RNR,but got an update for Recruiter that he will join only if his salary is around 20K TH', '5', '2', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-12 10:30:02', 60, '2022-11-26 07:23:24', 0, NULL, 1),
(10969, '', '0', '8675452323', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 10:35:25', 0, NULL, 0, NULL, 1),
(10970, 'Ganesan k', '23', '9150581644', '9941788196', 'ganesank4444@gmail.com', '2000-11-04', 22, '2', '2', 'Alamelu K', 'Housewife', 7000.00, 0, 0.00, 28000.00, 'Chennai', 'Chennai', '2211120006', '', '1', 'upload_files/candidate_tracker/99840633353_CV_2022111213251441.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 round Question task completed and technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-12 10:51:40', 1, '2022-11-12 01:26:14', 0, NULL, 1),
(10971, '', '0', '7868880192', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 11:00:32', 0, NULL, 0, NULL, 1),
(10972, 'DHANANJAYA MOOLAMUDU', '2', '8686661692', '6302259502', 'dhananjayad0302@gmail.com', '2000-02-03', 22, '3', '2', 'Narashimhulu', 'Painter', 18000.00, 2, 0.00, 350000.00, 'TIRUPATI', 'Chennai', '2211120008', '', '1', 'upload_files/candidate_tracker/64725352981_DHANANJAYA _M.pdf', NULL, '1', '2022-11-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-12 12:05:21', 1, '2022-11-12 03:47:22', 0, NULL, 1),
(10973, 'V.sarumathi', '6', '6382099914', '9841803155', 'saru37011@gmail.com', '1999-10-24', 23, '3', '2', 'V manjula', 'House keeping', 13000.00, 1, 13000.00, 13000.00, '13 cross streets Indira Nagar Adyar Chennai 20', '13 Cross Streets Indira Nagar Adyar Chennai 20', '2211120009', '', '2', 'upload_files/candidate_tracker/62846788007_CV_2022111212260780.pdf', NULL, '1', '2022-11-12', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-12 01:31:18', 85, '2022-11-12 02:56:34', 0, NULL, 1),
(10974, '', '0', '9444038780', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 04:13:09', 0, NULL, 0, NULL, 1),
(10975, '', '0', '6383924754', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211120011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-12 06:36:46', 0, NULL, 0, NULL, 1),
(10976, 'Bavani. B', '23', '6382147894', '9787723315', 'bbavanichandra@gmail.com', '2002-05-18', 20, '3', '2', 'Chandraleka. B', 'Farmer', 14000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211120012', '', '1', 'upload_files/candidate_tracker/57319459701_Bavani.B.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 20 Days', '2', '2', '0', '1', '1', '0', '2', '2022-12-05', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-12 06:50:44', 1, '2022-11-13 08:20:33', 0, NULL, 1),
(10977, 'Jagan. E', '23', '9789170367', '', 'Jaganjag556@gmail.com', '2002-01-08', 20, '2', '2', 'Latha', 'Home maker', 15000.00, 1, 0.00, 4.50, 'Arumbakkam. kallakurichi dist', 'Kovur', '2211130001', '1', '1', 'upload_files/candidate_tracker/16179719454_Resume_02_11_2022_09_12_07_pm.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-13 08:11:06', 1, '2022-11-14 12:11:20', 0, NULL, 1),
(10978, 'Kishore Kumar', '6', '9080297458', '', 'kishorekumar131999@gmail.com', '1999-12-13', 22, '2', '2', 'Yuvarajan', 'Tailor', 13000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2211130002', '1', '1', 'upload_files/candidate_tracker/92989645911_Resume Kis.pdf', NULL, '1', '2022-11-14', 0, '', '3', '59', '2022-11-15', 204000.00, '', '5', '1970-01-01', '2', 'Selected for Thiyagu Team with PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-13 12:10:38', 60, '2022-11-15 07:55:13', 0, NULL, 1),
(10979, 'THAMEEMANSARI M', '33', '8939708602', '9840586981', 'thameem8452@gmail.com', '2000-05-29', 22, '3', '2', 'MUTHU PEER MOHAMED S', 'Student', 20000.00, 2, 0.00, 15000.00, 'Ambattur estate', 'Ambattur estate', '2211130003', '', '1', 'upload_files/candidate_tracker/35029620304_Thameem-|Resume|.pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 02:17:46', 1, '2022-11-13 02:24:44', 0, NULL, 1),
(10980, 'Prabhakar R', '23', '7708823321', '', 'prabhakar958504@gmail.com', '2000-03-17', 22, '2', '1', 'Ezhilarasi R', 'Homeworker', 30000.00, 2, 0.00, 400000.00, 'nagapattinam', 'Porur ,Chennai', '2211130004', '1', '1', 'upload_files/candidate_tracker/25620434548_prabhakar-resume.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-13 05:40:05', 1, '2022-11-13 06:00:20', 0, NULL, 1),
(10981, 'manipriyan', '31', '6383050062', '', 'manipriyangopalan@gmail.com', '1998-07-07', 24, '4', '2', 'gopalan', 'conductor', 25000.00, 1, 2.00, 5.00, 'chennai', 'chennai', '2211130005', '', '2', 'upload_files/candidate_tracker/94833940831_RESUME-CC.pdf', NULL, '1', '2022-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 05:41:30', 1, '2022-11-13 05:43:37', 0, NULL, 1),
(10982, 'Manoj Kumar.U', '3', '6369108003', '8220143967', 'manoharsh598@gmail.com', '2001-04-13', 21, '1', '2', 'Udhayakumar.M', 'Taylor', 45000.00, 1, 0.00, 30000.00, 'Kallakurichii', 'Chennai', '2211130006', '', '1', 'upload_files/candidate_tracker/33535769416_Manoj Kumar_Copy(1).pdf', NULL, '1', '2022-11-14', 0, '1', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-13 05:42:16', 60, '2022-11-14 07:10:48', 0, NULL, 1),
(10983, 'gunaseelan m', '23', '7871291815', '7010187003', 'gunaseelanengineer@gmail.com', '1998-09-14', 24, '3', '1', 'mathavan', 'wholesale medical shop worker', 14000.00, 1, 0.00, 2.50, 'thanjavur', 'chennai', '2211130007', '', '1', 'upload_files/candidate_tracker/47689089852_Gunaseelan-2020- Fullstack.docx', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 05:48:18', 1, '2022-11-13 05:50:16', 0, NULL, 1),
(10984, '', '0', '8072261676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 06:00:04', 0, NULL, 0, NULL, 1),
(10985, 'sethuraman', '23', '7530017790', '', 'sethuraman2321@gmail.com', '2001-03-02', 21, '3', '2', 'sathiyabama', 'taylor', 15000.00, 1, 0.00, 20000.00, 'puthur', 'velachery', '2211130009', '', '1', 'upload_files/candidate_tracker/80012109423_Sethuraman.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 2 days', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 06:11:03', 1, '2022-11-13 06:46:33', 0, NULL, 1),
(10986, '', '0', '8428516806', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 06:21:36', 0, NULL, 0, NULL, 1),
(10987, 'Monisha infanta B. S', '23', '9092094014', '9566195819', 'Monisha.infanta@gmail.com', '1998-07-30', 24, '2', '2', 'B. j. Siluvappa', 'Business', 30000.00, 0, 0.00, 16000.00, 'St. Anthony church,Mapakkam, Chennai-600125', 'St. Antony Church,Manapakkam, Chennai-600125', '2211130011', '1', '1', 'upload_files/candidate_tracker/85028199097_MONISHA INFANTA.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-13 06:34:54', 99, '2022-11-14 10:23:43', 0, NULL, 1),
(10988, 'Leka. B', '4', '9500937020', '', 'leka71195@gmail.com', '1995-11-07', 27, '3', '2', 'P. Balasubramani', 'Skilled officer, Rajagopal polytechnic college', 1500000.00, 1, 26000.00, 35000.00, '190-D, V. O. C street, Vinayagapuram, Gudiyattam', '4th cross street,Judge colony,Tambaram sanatorium', '2211130012', '', '2', 'upload_files/candidate_tracker/15344008672_Resume_Leka_Logistics Executive.pdf', NULL, '3', '2022-11-19', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 06:40:26', 1, '2022-11-13 06:53:27', 0, NULL, 1),
(10989, 'arthi s', '33', '7548888637', '9884179096', 'arthi.soka@gmail.com', '1995-07-26', 27, '3', '2', 'k sudersan babu', 'customer relations executive', 384000.00, 0, 34000.00, 40000.00, 'chennai', 'chennai', '2211130013', '', '2', 'upload_files/candidate_tracker/98058362945_ARTHI SUDERSAN UPDATED RESUME.pdf', NULL, '1', '2022-11-19', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 06:48:59', 1, '2023-05-06 03:46:39', 0, NULL, 1),
(10990, 'THENNARASAN G', '23', '8940769855', '9786561442', 'thennarasug297@gmail.com', '2001-07-29', 21, '3', '2', 'GANESAN', 'TAILOR', 50000.00, 1, 0.00, 300000.00, 'VIRUVEEDU', 'CHENNAI', '2211130014', '', '1', 'upload_files/candidate_tracker/61383840421_Thennarasan resume.pdf', NULL, '1', '2022-11-15', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher need to train a lot candidate need time to give his conformation on TxxampC if he comes back let us try\n', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 06:52:53', 1, '2022-11-13 06:57:02', 0, NULL, 1),
(10991, '', '0', '9791123813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 06:54:01', 0, NULL, 0, NULL, 1),
(10992, '', '0', '8270901514', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 06:58:56', 0, NULL, 0, NULL, 1),
(10993, '', '0', '7989330921', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:02:14', 0, NULL, 0, NULL, 1),
(10994, 'Mestika J', '33', '9087420678', '', 'mestikamary@gmail.com', '1999-10-10', 23, '3', '1', 'A Easu babu', 'IT', 25000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2211130018', '', '1', 'upload_files/candidate_tracker/88198463024_1665115050055_1664447029866_Mestika Resume.docx', NULL, '2', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:03:29', 1, '2022-11-13 08:07:20', 0, NULL, 1),
(10995, '', '0', '9789041116', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:10:48', 0, NULL, 0, NULL, 1),
(10996, 'Priyanka D Majithia', '33', '9119111682', '', 'priyankadm11@gmail.com', '2000-06-11', 22, '3', '2', 'Deepak R Majithia', 'Manager', 30000.00, 1, 0.00, 18000.00, 'Kozhikode', 'Bangalore', '2211130020', '', '1', 'upload_files/candidate_tracker/74328200831_priyanka resume.pdf', NULL, '3', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:14:52', 1, '2022-11-13 07:21:22', 0, NULL, 1),
(10997, 'muthulakshmi d', '21', '6385920728', '', 'harshinibsc20@gmail.com', '2000-10-20', 22, '3', '2', 'danaradje s', 'no', 0.00, 1, 0.00, 300000.00, 'KARAIKAL', 'KARAIKAL', '2211130021', '', '1', 'upload_files/candidate_tracker/946052775_Resume.pdf', NULL, '3', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:21:20', 1, '2022-11-14 02:08:35', 0, NULL, 1),
(10998, '', '0', '6382360197', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130022', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:22:39', 0, NULL, 0, NULL, 1),
(10999, '', '0', '7871694795', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:22:49', 0, NULL, 0, NULL, 1),
(11000, 'Gunasekar', '33', '7550275301', '', 'yuvaguna2000@gmail.com', '2000-09-01', 22, '3', '2', 'ANANDAN C', 'Farmer', 8000.00, 1, 14500.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2211130024', '', '2', 'upload_files/candidate_tracker/61730234744_Gunasekar resume.pdf', NULL, '2', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:25:34', 1, '2022-11-13 07:30:48', 0, NULL, 1),
(11001, '', '0', '9789870526', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:26:10', 0, NULL, 0, NULL, 1),
(11002, '', '0', '7358166512', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130026', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:31:00', 0, NULL, 0, NULL, 1),
(11003, '', '0', '7993152076', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:35:44', 0, NULL, 0, NULL, 1),
(11004, 'Hemaa U R', '33', '9677165728', '', 'hemaranve24@gmail.com', '1999-07-24', 23, '4', '2', 'Ravi p a', 'Entrepreneur', 50000.00, 0, 0.00, 12000.00, 'Chennai', 'Chennai', '2211130028', '', '1', 'upload_files/candidate_tracker/80693720174_Hemaa_Resume.pdf', NULL, '1', '2022-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 07:51:40', 1, '2022-11-13 07:56:12', 0, NULL, 1),
(11005, '', '0', '6385452051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130029', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:55:12', 0, NULL, 0, NULL, 1),
(11006, '', '0', '8056063282', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 07:59:02', 0, NULL, 0, NULL, 1),
(11007, 'Melwin Abishva', '23', '8610406798', '8870419720', 'Melwinabishva@gmail.com', '1999-09-25', 23, '3', '2', 'Bastin', 'Monthly wages employee', 15000.00, 0, 0.00, 3.50, 'Dindigul', 'Dindigul', '2211130031', '', '1', 'upload_files/candidate_tracker/95024270569_MELWIN RESUME (1) (1).pdf', NULL, '1', '2022-11-15', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Candidate need to come back with his confirmation on TxxampC Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:00:02', 1, '2022-11-13 08:45:54', 0, NULL, 1),
(11008, '', '0', '8903193390', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130032', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 08:02:07', 0, NULL, 0, NULL, 1),
(11009, 'Deepika', '23', '6381060882', '6374302168', 'deepiselvamselvam@gmail.com', '2002-06-22', 20, '3', '2', 'Selvam M', 'Business', 12000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211130033', '', '1', 'upload_files/candidate_tracker/22453854893_Deepika selvam Resume.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Based On The Task Interviewed By Gokul, Candidate Need To Come Back With The Confirmation after 20 days', '2', '2', '0', '1', '1', '0', '2', '2022-12-05', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:02:29', 1, '2022-11-13 08:14:50', 0, NULL, 1),
(11010, '', '0', '7550207908', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211130034', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-13 08:02:43', 0, NULL, 0, NULL, 1),
(11011, 'Vinoth', '23', '9113632816', '', 'vinothwebdesigner10@gmail.com', '2001-04-12', 21, '3', '2', 'Raman', 'Driver', 15000.00, 1, 0.00, 20000.00, 'Tharamangalam,Salem', 'Chennai', '2211130035', '', '1', 'upload_files/candidate_tracker/63404182618_VEL_VINOTH R_2021_B.A.ECONOMICS..pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Based on the task interviewed by Gokul,Candidate need to come back with the confirmation', '2', '1', '0', '1', '1', '0', '2', '2022-11-17', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:31:57', 1, '2022-11-13 08:36:44', 0, NULL, 1),
(11012, 'VISHESH. A', '33', '9483244985', '9481172985', 'vishugpet985@gmail.com', '1998-10-11', 24, '4', '2', 'ARASANAYAKA C', 'KOOLI', 5000.00, 0, 0.00, 350000.00, 'GUNDLUPET', 'MYSORE', '2211130036', '', '1', 'upload_files/candidate_tracker/24803294724_VI (CV).pdf', NULL, '2', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:34:12', 1, '2022-11-13 08:36:57', 0, NULL, 1),
(11013, 'abdul fahath j', '33', '9952835620', '', 'abdulfahathj@gmail.com', '2000-05-24', 22, '3', '2', 'parent', 'm.com', 120000.00, 1, 0.00, 15000.00, 'kattumannar kovil', 'mayiladuthurai', '2211130037', '', '1', 'upload_files/candidate_tracker/39035293502_Abdul Fahath CV_Accountant.docx', NULL, '3', '2022-11-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 08:49:11', 1, '2022-11-13 09:02:11', 0, NULL, 1),
(11014, 'g Aparna', '11', '9123575681', '', 'aparnakrish00@gmail.com', '1999-05-16', 23, '4', '2', 'v gokulakrishnan', 'business', 30000.00, 1, 0.00, 300000.00, 'chennai', 'chenn', '2211130038', '', '1', 'upload_files/candidate_tracker/81759953369_40410020_G.APARNA_MBA - Google Docs.pdf', NULL, '2', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 09:29:44', 1, '2022-11-13 10:31:03', 0, NULL, 1),
(11015, 'Sarumathi M A', '33', '9361642899', '7826081514', 'sarumathimanivannan@gmail.com', '1999-08-25', 23, '3', '2', 'Manivannan', 'Accountant', 15000.00, 1, 0.00, 20000.00, 'Trichy', 'Trichy', '2211130039', '', '1', 'upload_files/candidate_tracker/15506875955_SARUMATHI M A. -1.pdf', NULL, '2', '2022-11-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 09:55:18', 1, '2022-11-13 10:02:29', 0, NULL, 1),
(11016, 'M mUTHUPRIYA', '28', '6382873026', '', 'priyamurugan2920@gmail.com', '2000-09-29', 22, '3', '2', 'P. Murugan', 'Cooli', 15000.00, 2, 0.00, 17000.00, 'Madurai', 'Madurai', '2211130040', '', '1', 'upload_files/candidate_tracker/91741463999_Resume Priya.pdf', NULL, '3', '2022-11-19', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-13 10:35:02', 1, '2022-11-13 10:40:32', 0, NULL, 1),
(11017, '', '0', '9514871449', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 12:56:47', 0, NULL, 0, NULL, 1),
(11018, 'Ibrahim', '31', '6369055373', '', 'ibrahimibu303@gmail.com', '2000-05-30', 23, '6', '2', 'ismail', 'bussiness', 15000.00, 0, 0.00, 300000.00, 'arumbakkam,chennai-600106', 'chennai', '2211140002', '', '1', 'upload_files/candidate_tracker/63785410208_ibrahim-res.pdf', NULL, '1', '2023-09-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Comfort In TxxampC Fresher Need To Train A Lot If He Comes Back Let Us Try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-14 02:16:40', 104, '2023-09-29 04:52:58', 0, NULL, 1),
(11019, 'DINAKARAN R', '23', '8825956563', '', 'dinakaran2216@gmail.com', '2000-06-01', 22, '3', '2', 'Rajendran', 'Civil work', 400000.00, 1, 300000.00, 500000.00, '5/82A,4th st,wimco nagar,ch-600057', '5/82A,4th St,Wimco Nagar,Ch-600057', '2211140003', '', '2', 'upload_files/candidate_tracker/72995687037_Dinakaran R.pdf', NULL, '1', '2022-11-14', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 02:52:22', 1, '2022-11-14 11:36:12', 0, NULL, 1),
(11020, 'Vimalraj m', '33', '7530093166', '', 'vimalrajbcomca2288@gmail.com', '2000-12-22', 21, '3', '2', 'Muthusamy', 'Former', 25000.00, 1, 0.00, 18000.00, 'Tittakudi, Cuddalore (Dt)', 'Tittakudi', '2211140004', '', '1', 'upload_files/candidate_tracker/2566725937_Vimal.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 07:22:22', 1, '2022-11-14 07:30:39', 0, NULL, 1),
(11021, '', '0', '9566810133', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:34:49', 0, NULL, 0, NULL, 1),
(11022, '', '0', '6383117524', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:50:35', 0, NULL, 0, NULL, 1),
(11023, '', '0', '9441804261', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 08:43:06', 0, NULL, 0, NULL, 1),
(11024, '', '0', '7871331604', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 09:21:57', 0, NULL, 0, NULL, 1),
(11025, 'chaitali ramesh shelke', '33', '9405339343', '8805339343', 'chaitalishelke3033@gmail.com', '2000-04-18', 22, '3', '2', 'ramesh shelke', 'farmer', 30000.00, 1, 0.00, 30000.00, 'nanded', 'nanded', '2211140009', '', '1', 'upload_files/candidate_tracker/36874852385_Chaitali Shelke.pdf', NULL, '3', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 09:38:29', 1, '2022-11-14 11:40:58', 0, NULL, 1),
(11026, 'DINESH.S', '23', '9360689892', '', 'dineshragul15@gmail.com', '1999-05-01', 23, '3', '2', 'BharathaSelvi', 'Mother', 10000.00, 0, 0.00, 300000.00, 'KRISHNAGIRI', 'CHENNAI', '2211140010', '', '1', 'upload_files/candidate_tracker/78885887339_DINESH KUMAR RESUME .pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 09:59:34', 1, '2022-11-14 10:14:17', 0, NULL, 1),
(11027, '', '0', '9390816867', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 10:06:54', 0, NULL, 0, NULL, 1),
(11028, 'Manivannan', '23', '6380261153', '', 'Manivvannan43@gmail.com', '2000-12-22', 21, '3', '2', 'Balu', 'Musician', 20.00, 2, 0.00, 280000.00, 'Mayiladuthurai', 'Chennai', '2211140012', '', '1', 'upload_files/candidate_tracker/75044628311_CV_2022111409531644.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject - Written Task - Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 10:09:40', 1, '2022-11-14 10:14:56', 0, NULL, 1),
(11029, 'Prakash gaddigoudar', '33', '9632573862', '', 'gaddigoudarprakash@gmail.com', '1993-07-31', 29, '4', '2', 'Ningangouda', 'Retired principal', 30.00, 1, 0.00, 16.00, 'Banglore', 'Banglore', '2211140013', '', '1', 'upload_files/candidate_tracker/61635503957_prakash (1)-converted (1)-1.pdf', NULL, '2', '2022-11-17', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:02:53', 1, '2022-11-14 11:07:35', 0, NULL, 1),
(11030, 'P. V. Naveen', '23', '9597489390', '9952833323', 'Pvnaveen21@gmail.com', '2000-04-21', 22, '2', '2', 'Vasu.p', 'Car workshop', 20000.00, 2, 0.00, 20000.00, 'Erode', 'Chennai', '2211140014', '1', '1', 'upload_files/candidate_tracker/24812108719_cv.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-14 11:08:37', 1, '2022-11-14 11:13:55', 0, NULL, 1),
(11031, 'MOHAN S', '23', '6374057479', '', 'mohans26601@gmail.com', '2007-11-14', 15, '3', '2', 'Saravanan', 'Farmers', 10000.00, 1, 0.00, 18000.00, 'Thiruvannamalai', 'Velachery', '2211140015', '', '1', 'upload_files/candidate_tracker/65859191621_final mohan resume.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation', '2', '1', '0', '1', '1', '0', '2', '2022-11-17', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:08:54', 1, '2022-11-14 11:14:12', 0, NULL, 1),
(11032, 'Kanniyappan', '23', '8754692807', '', 'inboxtokani14@gmail.com', '2000-05-11', 22, '3', '2', 'Kumar', 'Farmer', 10000.00, 1, 0.00, 3.00, 'Arani', 'Kandachavadi', '2211140016', '', '1', 'upload_files/candidate_tracker/13451905823_PYTHON_FULLSTACK_KANNIYAPPAN_MCA_2022..pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:33:37', 1, '2022-11-14 11:37:41', 0, NULL, 1),
(11033, 'S.SARAN', '31', '9003268774', '9345286410', 'saranlawrence35@gmail.com', '2000-10-12', 22, '2', '2', 'KR.subbiah', 'Business', 30000.00, 2, 0.00, 3.50, 'Chennai ,medavakk', 'Medavakkam', '2211140017', '1', '1', 'upload_files/candidate_tracker/80179008571_sresume word (2).pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-14 11:40:45', 1, '2022-11-14 11:48:09', 0, NULL, 1),
(11034, 'Lokesh B', '31', '7904953529', '9791157230', 'lokeshbaskaran001@gmail.com', '2001-05-22', 21, '3', '2', 'Baskaran S', 'Own business', 30000.00, 2, 0.00, 3.50, 'Chennai', 'Chennai', '2211140018', '', '1', 'upload_files/candidate_tracker/44705505840_Lokesh Resume.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:40:57', 1, '2022-11-14 11:50:20', 0, NULL, 1),
(11035, 'Velmurugan K', '23', '9524537983', '', 'velmurugankvel0@gmail.com', '2002-12-08', 19, '2', '2', 'Chithra', 'Farmer', 15000.00, 1, 0.00, 3.00, 'Kallakurichi', 'Chennai', '2211140019', '1', '1', 'upload_files/candidate_tracker/95572004985_Velmurugan,,,Resume.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-14 11:43:10', 1, '2022-11-14 11:52:56', 0, NULL, 1),
(11036, 'IYYANAR V', '23', '8925047144', '', 'iyyanarv3@gmail.com', '2002-03-14', 20, '3', '2', 'VEERAN R', 'Farmer', 21.00, 1, 0.00, 18.00, 'Kallakurichi', 'Chennai', '2211140020', '', '1', 'upload_files/candidate_tracker/48876058178_Resume. IYYANAR.V.fit for the job.pdf', NULL, '1', '2022-11-14', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Based On The Task Interviewed By Gokul,Candidate Need To Come Back With The Confirmation after 2 days', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 11:43:29', 1, '2022-11-14 11:51:27', 0, NULL, 1),
(11037, 'BOYA RAMESWARI', '33', '9550534515', '8790543054', 'boyarameswari99@gmail.com', '1999-08-18', 23, '4', '2', 'B.Lingamaiah', 'Former', 10000.00, 4, 0.00, 25000.00, '9/419 soganur ,road Yemmiganur, kurnool district', 'Hyderabad', '2211140021', '', '1', 'upload_files/candidate_tracker/25171736967_Rameswari Updated Resume.B.pdf', NULL, '2', '2022-11-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:00:18', 1, '2022-11-14 12:08:45', 0, NULL, 1),
(11038, 'Nithish', '2', '6383748487', '', 'nithishvarun54321@gmail.com', '2001-05-14', 21, '1', '2', 'SURESH.R', 'ELECTRICIAN', 10000.00, 1, 0.00, 30000.00, 'Kallakurichi', 'Kallakurichi', '2211140022', '', '1', 'upload_files/candidate_tracker/81624365749_CV_2022-11-13-033723.pdf', NULL, '2', '2022-11-14', 0, '2630', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:12:13', 1, '2022-11-14 01:38:08', 0, NULL, 1),
(11039, 'Reema jayamani', '14', '7448471559', '', 'Jayareema2001@gmail.com', '2001-04-08', 21, '1', '2', 'Jayamani .P', 'Fisherman', 15000.00, 2, 0.00, 20000.00, 'Vedaranyam', 'Velachery', '2211140023', '', '1', 'upload_files/candidate_tracker/85025831255_reema resume.pdf', NULL, '1', '2022-11-14', 0, 'NA', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:30:49', 1, '2022-11-14 01:04:05', 0, NULL, 1),
(11040, 'Shanu S', '14', '7358914883', '', 'ss8939659@gmail.com', '2001-09-09', 21, '1', '2', 'Subramaniyan k', 'Bussiness', 15000.00, 1, 0.00, 20000.00, 'Salem', 'Velachery', '2211140024', '', '1', 'upload_files/candidate_tracker/27468961252_shanu resume.1.pdf', NULL, '1', '2022-11-14', 0, 'NA', '5', '59', NULL, 0.00, '', '0', NULL, '2', '1 Round Question Task Completed And Technical Reject - Besant Technology Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:32:05', 1, '2022-11-14 12:42:06', 0, NULL, 1),
(11041, 'Naveen', '5', '9791091261', '', 'naveenchordia091@gmail.com', '1991-12-31', 30, '3', '1', 'Navratan mal', 'Salaried', 15000.00, 2, 324540.00, 600000.00, 'Chennai', 'Chennai', '2211140025', '', '2', 'upload_files/candidate_tracker/71501692863_NAVEEN (3) (1).pdf', NULL, '2', '2022-11-20', 60, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:40:13', 1, '2022-11-14 12:50:05', 0, NULL, 1),
(11042, 'Rohithd', '22', '8667001657', '8428950245', 'rohithd300900@gmail.com', '2000-09-30', 22, '3', '2', 'K delhibatcha', 'Retired staff', 30000.00, 1, 22000.00, 20000.00, 'Chromepet', 'Chromepet', '2211140026', '', '2', 'upload_files/candidate_tracker/22222379091_Rohith resume 2022.pdf', NULL, '1', '2022-11-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Will Not Sustain Not Much Comfort With TxxampC Not open for freelance for full time salary Exp is high', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:41:50', 1, '2022-11-14 12:46:55', 0, NULL, 1),
(11043, 'Godvinvijay', '23', '9500819252', '9791072759', 'godvinvijay2225@gmail.com', '2002-12-25', 19, '3', '2', 'Lawrence k', 'Business', 25000.00, 1, 0.00, 250000.00, 'Kanyakumari', 'Chennai', '2211140027', '', '1', 'upload_files/candidate_tracker/15196561464_godvinvijay-1.pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 12:46:44', 1, '2022-11-14 12:53:18', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11044, 'Balaji kumar', '23', '7871913243', '8072656676', 'balajikumart07@gmail.com', '2000-03-20', 22, '3', '2', 'Thirupati', 'Trade man', 40000.00, 1, 0.00, 25000.00, 'Tirunelveli', 'Chennai', '2211140028', '', '1', 'upload_files/candidate_tracker/87147652282_BALA RESUME (1).pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 01:13:06', 1, '2022-11-14 01:25:18', 0, NULL, 1),
(11045, 'Sowmya DK', '33', '9035514633', '', 'sowmyadkdk@gmail.com', '1999-07-31', 23, '3', '2', 'Krishnamraju DE', 'Weaver', 40000.00, 0, 230000.00, 280000.00, 'Bangalore rural', 'Bangalore rural', '2211140029', '', '2', 'upload_files/candidate_tracker/7897886188_Sowmya CV-3.pdf', NULL, '3', '2022-11-19', 2, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '2', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 01:44:09', 1, '2022-11-14 01:47:36', 0, NULL, 1),
(11046, '', '0', '9606375759', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140030', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 02:38:45', 0, NULL, 0, NULL, 1),
(11047, 'Purushothaman', '31', '6383458529', '9884292306', 'Purushothamanmanimaran@gmail.com', '2000-09-01', 22, '4', '2', 'Manimaran', 'Clerk', 40000.00, 1, 245000.00, 30000.00, 'Chennai', 'Chennai', '2211140031', '', '2', 'upload_files/candidate_tracker/80395393268_M.purushothaman-1_new.pdf', NULL, '1', '2022-11-16', 10, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 04:18:56', 1, '2022-11-14 04:22:32', 0, NULL, 1),
(11048, 'Ananda Babu P', '6', '9843647032', '', 'babuanand142000@gmail.com', '1988-06-15', 34, '3', '1', 'Palchamy', 'Delivery executive', 45000.00, 2, 40000.00, 40000.00, 'rajapalayam', 'Chennai', '2211140032', '', '2', 'upload_files/candidate_tracker/54256398329_Anand latest resume.docx', NULL, '1', '2022-11-14', 0, '', '4', '29', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Sales but a long career Gap Due to family situation he is into Zomato,Internal Team GK Sir reference,kindly check andlet me know your inputs', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 04:39:44', 1, '2022-11-14 04:43:45', 0, NULL, 1),
(11049, 'Divya', '4', '8637431076', '7200405319', 'divyaramesh0312@gmail.com', '1993-12-03', 28, '3', '1', 'John Bosco', 'Jio supervisor', 30000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211140033', '', '2', 'upload_files/candidate_tracker/40413996510_0_Divya CV new.docx', NULL, '3', '2022-11-17', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 04:42:29', 1, '2022-11-14 04:46:39', 0, NULL, 1),
(11050, 'G.karunakaran', '31', '6383702512', '8754399608', 'kk1136361@gmail.com', '2000-08-15', 22, '3', '2', 'S.Ganesan', 'Farmer', 13000.00, 2, 0.00, 15000.00, 'Thoothukudi', 'Chennai', '2211140034', '', '1', 'upload_files/candidate_tracker/82077883187_Resume_Karunakaran_Format3-1.docx', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', '2022-11-19', '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-11-14 06:05:23', 1, '2022-11-14 06:54:49', 0, NULL, 1),
(11051, 'Swathi s', '14', '7305181284', '9442558643', 'gchilly99@gmail.com', '2000-12-21', 21, '2', '2', 'Shanmugavelumurugan S', 'Headmaster (retired)', 100000.00, 2, 0.00, 360000.00, 'Karaikudi', 'Karaikudi', '2211140035', '1', '1', 'upload_files/candidate_tracker/65085047155_swathi s .Resume.pdf', NULL, '2', '2022-12-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-14 06:08:19', 99, '2022-12-10 12:20:36', 0, NULL, 1),
(11052, 'venkatprasanna', '31', '6380465556', '', 'prasannavenkat222@gmail.com', '1998-03-10', 24, '3', '2', 'prabhvathi', 'housewife', 20000.00, 1, 0.00, 30000.00, 'madurai', 'chennai', '2211140036', '', '1', 'upload_files/candidate_tracker/10075568036_Venkatprasanna N.pdf', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', '2022-11-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:09:07', 1, '2022-11-14 06:42:32', 0, NULL, 1),
(11053, 'Rajeev', '31', '7358606291', '', 'steverajeev2001@gmail', '2002-03-22', 20, '3', '2', 'Rajagopal', 'Business', 20000.00, 2, 0.00, 20000.00, 'No 1, Gangai amman Nagar,5th Street Hasthinapuram', 'Chrompet', '2211140037', '', '1', 'upload_files/candidate_tracker/9121612621_Rajeev R.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has basic knowledege in html,xxampcss.. sustainbility doubts.. and trying govt job..sal expt high', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:11:04', 1, '2022-11-14 06:21:47', 0, NULL, 1),
(11054, 'Sridharan.s', '23', '8610960549', '', 'iamsridharansivasamy@gmail.com', '1999-12-10', 22, '3', '2', 'Sivasamy.p', 'Business', 500000.00, 1, 0.00, 400000.00, 'Velachary', 'Salem', '2211140038', '', '1', 'upload_files/candidate_tracker/14668585325_Velachery_Sridharan_2021_Python.pdf', NULL, '1', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject(Written Test) - Besant Not ok with TxxampC', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:12:49', 1, '2022-11-15 10:45:43', 0, NULL, 1),
(11055, 'shahul hameed', '2', '9384264660', '', 'ameenhameed143@gmail.com', '2000-06-22', 22, '3', '2', 'mohamed', 'driver', 40000.00, 2, 0.00, 300000.00, 'kadayanallur', 'velachery', '2211140039', '', '1', 'upload_files/candidate_tracker/89124967517_Ameen\'s Resume.pdf', NULL, '1', '2022-11-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:20:56', 1, '2022-11-14 10:16:30', 0, NULL, 1),
(11056, 'santhoshkumar b', '31', '9500430022', '9514140022', 'santhoshkumar040701@gmail.com', '2001-07-04', 21, '3', '2', 'balakrishnan', 'Agriculture', 30000.00, 2, 0.00, 20000.00, 'manthali kalayarkoil sivaganga', 'chennai', '2211140040', '', '1', 'upload_files/candidate_tracker/43333797462_Santhosh Resume.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject - Besant Technologies', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:21:32', 1, '2022-11-16 11:41:40', 0, NULL, 1),
(11057, 'srinath.p.p', '31', '9159060068', '9360272420', 'srenath0501@gmail.com', '2001-07-05', 21, '3', '2', 'pattabiraman', 'lic-aao', 500000.00, 1, 0.00, 300000.00, 'THIRUVANNAMALAI', 'chennai', '2211140041', '', '1', 'upload_files/candidate_tracker/71203887812_SRINATH\'s Resume FE.pdf', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:23:56', 1, '2022-11-14 06:34:08', 0, NULL, 1),
(11058, 'J.Rajkumar', '2', '7708442854', '9629762005', 'arpjrajjayakumar@gmail.com', '2002-04-11', 20, '3', '2', 'P.Jayakumar', 'silverSmith', 15000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Kanchipuram', '2211140042', '', '1', 'upload_files/candidate_tracker/76781067391_resume .docx', NULL, '1', '2022-11-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:30:16', 1, '2022-11-14 06:52:14', 0, NULL, 1),
(11059, 'achappan k', '31', '8072604600', '9486505737', 'achappan_k@yahoo.com', '1997-12-06', 24, '3', '2', 'kannan', 'police', 45000.00, 1, 0.00, 30000.00, 'thoothukudi', 'chennai', '2211140043', '', '1', 'upload_files/candidate_tracker/2285672560_achappan_k_2022_omr.pdf', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', '2022-11-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 06:39:10', 1, '2022-11-14 06:47:53', 0, NULL, 1),
(11060, '', '0', '9344596213', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140044', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 06:40:39', 0, NULL, 0, NULL, 1),
(11061, 'Sathish Kumar S', '33', '9025089620', '', 'sathishsaravanan259@gmail.com', '1999-09-25', 23, '3', '2', 'Saravanan G', 'Rice merchant', 15000.00, 1, 0.00, 15000.00, 'Thiruvallur', 'Thiruvallur', '2211140045', '', '1', 'upload_files/candidate_tracker/24490198456_RESUME sathish.pdf', NULL, '1', '2022-11-17', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 07:00:04', 1, '2022-11-14 07:07:38', 0, NULL, 1),
(11062, '', '0', '6381574302', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140046', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:00:22', 0, NULL, 0, NULL, 1),
(11063, '', '0', '7092124758', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140047', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:50:26', 0, NULL, 0, NULL, 1),
(11064, '', '0', '9384567789', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140048', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:51:42', 0, NULL, 0, NULL, 1),
(11065, '', '0', '9787076267', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211140049', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-14 07:53:30', 0, NULL, 0, NULL, 1),
(11066, 'B. Venkat ramana', '3', '9962918348', '', 'Kvramanaelumalai@gmail.com', '2003-03-03', 19, '3', '2', 'E. Balachander', 'Student', 250000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211140050', '', '1', 'upload_files/candidate_tracker/30668312708_venkatram-1.pdf', NULL, '1', '2022-11-17', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-14 08:19:31', 99, '2022-11-17 09:41:58', 0, NULL, 1),
(11067, 'Suganthan k', '33', '9629385829', '', 'Suganthansugan16@gmail.com', '1999-06-16', 23, '3', '2', 'Karunanithi p', 'Interior decorator', 30.00, 1, 0.00, 300000.00, 'Karaikal pondicherry', 'Chennai', '2211140051', '', '1', 'upload_files/candidate_tracker/82738260845_suganthan k resume.docx', NULL, '2', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 08:58:36', 1, '2022-11-14 10:56:33', 0, NULL, 1),
(11068, 'Sathya seelan', '23', '6380650929', '', 'sathyaseelan5676@gmail.com', '1998-12-18', 23, '3', '2', 'Umapathi', 'Ex checking inspection', 300000.00, 2, 0.00, 3500000.00, 'Dindigul', 'Tambaram', '2211140052', '', '1', 'upload_files/candidate_tracker/23291120502_sathya seelan resume.pdf', NULL, '1', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject(Written Test) - Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-14 10:28:27', 1, '2022-11-14 10:33:42', 0, NULL, 1),
(11069, 'Durga', '11', '9444513830', '9092235318', 'Durgadevi29111998@gmail.com', '1998-11-29', 23, '2', '2', 'Sivakami', 'Home maker', 700000.00, 1, 24000.00, 20000.00, 'Chennai', 'Chennaj', '2211150001', '1', '2', 'upload_files/candidate_tracker/52046348382_Durga Devi resume.pdf', NULL, '1', '2022-11-15', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Good,Sustainability Doubts frequent job changes and giving lot of reasons Exp around 20K if she comes back let us try\n', '6', '1', '', '1', '1', '', '2', '2022-11-18', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-15 12:09:08', 85, '2022-11-15 06:03:25', 0, NULL, 1),
(11070, 'RAJASWETHA', '7', '9444127064', '9840410548', 'rajaswethaganesan@gmail.com', '1999-01-11', 23, '3', '1', 'ramachandiran p', 'HDFC sales manager', 35000.00, 1, 0.00, 18000.00, 'CHENNAI', 'CHENNAI', '2211150002', '', '1', 'upload_files/candidate_tracker/50735282487_rajaswetha resume.pdf', NULL, '2', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 09:30:16', 1, '2022-11-15 09:35:11', 0, NULL, 1),
(11071, 'Abishek', '4', '7397018138', '7904819779', 'Abisathya65@gmail.com', '2002-03-19', 20, '1', '2', 'MadeswaranA', 'Driver', 20000.00, 1, 0.00, 12000.00, 'Tiruchengode', 'Tiruchengode', '2211150003', '', '1', 'upload_files/candidate_tracker/83936812170_CV_2022070817324660.pdf', NULL, '1', '2022-11-15', 0, 'No', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 10:01:56', 1, '2022-11-15 10:11:08', 0, NULL, 1),
(11072, 'KASEELAN A', '23', '9003112908', '9551645737', 'kaseelankavi@gmail.com', '2000-04-24', 22, '3', '2', 'Arumugam M', 'Daily vacanger', 10000.00, 3, 12000.00, 20000.00, 'Villupuram', 'Chennai', '2211150004', '', '2', 'upload_files/candidate_tracker/84564188410_Kaseelan Resume.pdf', NULL, '1', '2022-11-15', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject(written Test)', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 10:33:22', 1, '2022-11-15 10:36:16', 0, NULL, 1),
(11073, '', '0', '8610588422', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 10:59:11', 0, NULL, 0, NULL, 1),
(11074, 'Shajahan V.S', '6', '9150627874', '9597979927', 'Shajqhan1999@gmail.com', '2000-03-26', 22, '2', '2', 'SYED MAGDHOOM', 'Driver', 20000.00, 3, 0.00, 15000.00, 'Tenkasi district', 'Sent Thomas mount', '2211150006', '1', '1', 'upload_files/candidate_tracker/50807727646_RESUME (2).pdf', NULL, '3', '2022-11-15', 0, '', '3', '59', '2022-11-16', 185000.00, '', '5', '1970-01-01', '2', 'Selected for Thiyagu Team with PF/ESI/PT, Communication Ok Fresher Need To Train A Lot Can Give A Try Kindly Check And Let Me Know Your Inputs Have 3 Months Tecalling Exp With 9k Th', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-15 11:05:15', 60, '2022-11-15 07:53:49', 0, NULL, 1),
(11075, 'N.mohamed yasin', '14', '8637431026', '9659369237', 'mohamednyasin@gmail.com', '1999-09-04', 24, '3', '2', 'Father', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Chennai', '2211150007', '', '1', 'upload_files/candidate_tracker/75917977472_Mohamed .pdf', NULL, '1', '2024-03-23', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-15 11:24:16', 112, '2024-03-23 06:11:37', 0, NULL, 1),
(11076, 'T.Atchaya', '4', '9342652731', '7550192398', 'atchayathanapal15@gmail.com', '2002-03-24', 20, '3', '2', 'Thanapal', 'Catering', 30000.00, 2, 0.00, 15000.00, 'Mannargudi', 'Mannargudi', '2211150008', '', '1', 'upload_files/candidate_tracker/52104015015_resume_1658303251674-1.pdf', NULL, '1', '2022-11-15', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 11:24:26', 1, '2022-11-15 11:34:10', 0, NULL, 1),
(11077, '', '0', '9786093241', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 11:24:26', 0, NULL, 0, NULL, 1),
(11078, 'X.AROCKIA EDISON', '23', '7010398838', '9786134387', 'arockiaedison00@gmail.com', '1999-09-08', 23, '3', '2', 'Xavier lourdhu raj', 'Army DSC diffence', 40000.00, 1, 0.00, 250000.00, 'Thiruvarangam ,Ramanathapuram', 'Thiruvanmaiyur', '2211150010', '', '1', 'upload_files/candidate_tracker/61277727666_RESUME .docx', NULL, '1', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject(Written Test) - Besant ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 11:24:38', 1, '2022-11-15 11:32:51', 0, NULL, 1),
(11079, 'Syed Akram', '23', '9384993292', '6369282037', 'syedakramitsme@gmail.com', '2002-04-22', 20, '3', '2', 'S.Abuthair', 'Fisherman', 25000.00, 1, 0.00, 15000.00, 'Ramanathapuram', 'Guindy', '2211150011', '', '1', 'upload_files/candidate_tracker/44338589068_Vel_Syed Akram.A_2022_BCA_Full stack.pdf', NULL, '1', '2022-11-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject(written Test) - Besant ', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 11:27:41', 1, '2022-11-15 11:35:38', 0, NULL, 1),
(11080, 'Sathish Kumar', '1', '9677259704', '', 'spidyboy9677@gmail.com', '1998-09-10', 24, '3', '2', 'Sekar M', 'Construction work', 30000.00, 1, 235000.00, 350000.00, 'Chennai', 'Chennai', '2211150012', '', '2', 'upload_files/candidate_tracker/37403317050_sathish resume.docx', NULL, '1', '2022-11-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 11:47:43', 1, '2022-11-15 11:53:28', 0, NULL, 1),
(11081, 'Dinesh Kumar', '11', '9345742948', '7094205823', 'dinureshu2122@gmail.com', '1996-06-22', 26, '1', '1', 'Sivakumar', 'Silk sarees', 50000.00, 1, 0.00, 20000.00, 'Kanchipuram', 'Ambattur', '2211150013', '', '1', 'upload_files/candidate_tracker/87938619632_Resume DINESHKUMAR.pdf', NULL, '1', '2022-11-15', 0, 'P1372', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average no basic knowledge in Recruitment Not suitable for our roles', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 12:40:09', 1, '2022-11-15 12:47:29', 0, NULL, 1),
(11082, 'gopi Shankar', '11', '7010970704', '', 'gopishankar309@gmail.com', '1996-11-18', 25, '1', '2', 'vijaya lakshmi', 'home maker', 50000.00, 1, 500000.00, 600000.00, 'chennai', 'chennai', '2211150014', '', '2', 'upload_files/candidate_tracker/41344402644_Gopi Shankar.B-HR.pdf', NULL, '1', '2022-11-15', 0, 'p137', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication is Good High CTC Exp Min 5 LPA,4 yrs of Exp in Recruitment will not sustain ', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 12:42:32', 1, '2022-11-15 12:48:57', 0, NULL, 1),
(11083, '', '0', '9361323978', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 12:58:04', 0, NULL, 0, NULL, 1),
(11084, '', '0', '8522837409', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 01:44:52', 0, NULL, 0, NULL, 1),
(11085, 'Manikandan', '31', '6369978260', '9629019751', 'Manikandanravi631@gmail.com', '2000-06-15', 22, '3', '2', 'Ravi', 'Farmer', 5000.00, 2, 0.00, 15000.00, 'Thiruvannamalai district', 'Velacherry', '2211150017', '', '1', 'upload_files/candidate_tracker/97984355520_mani resume 2.docx', NULL, '1', '2022-11-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 05:06:26', 1, '2022-11-15 05:11:58', 0, NULL, 1),
(11086, 'S.Kalairanjan', '31', '9080519090', '7010757055', 'kalairanjan2001@gmail.com', '2001-11-23', 20, '3', '2', 'Sakthi.G', 'Radiograper', 15000.00, 1, 0.00, 20000.00, 'No.33,8th Street,Anna Nagar, Pattabiram, Ch-72', 'No.33,8th Street,Anna Nagar, Pattabiram, Ch-72', '2211150018', '', '1', 'upload_files/candidate_tracker/93720543091_kalairanjan.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject - Besant Profile', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 06:01:35', 1, '2022-11-15 07:34:40', 0, NULL, 1),
(11087, '', '0', '9043383970', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150019', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 06:30:50', 0, NULL, 0, NULL, 1),
(11088, '', '0', '9940683087', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211150020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-15 06:56:06', 0, NULL, 0, NULL, 1),
(11089, 's.sanjay kumar', '31', '8870011480', '9751454748', 'sanjaytevez@gmail.com', '2001-07-10', 21, '3', '1', 'b.srinivasan', 'farmer', 6600.00, 1, 0.00, 17000.00, 'TIRUVALLUR', 'TIRUVALLUR', '2211150021', '', '1', 'upload_files/candidate_tracker/2964009447_sanjay_kumar_resume.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Technical Round Reject - Written Task - Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 08:38:33', 1, '2022-11-15 08:50:38', 0, NULL, 1),
(11090, 'T Greeshma', '33', '7340028568', '9515715445', 'tgreeshma2000@gmail.com', '2000-09-12', 22, '3', '2', 'V Thirumala reddy', 'Labour', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Nagari Chittoor district', '2211150022', '', '1', 'upload_files/candidate_tracker/44950650430_greeshma resume.docx', NULL, '3', '2022-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 09:19:41', 1, '2022-11-15 09:24:39', 0, NULL, 1),
(11091, 'T Greeshma', '33', '7330028568', '9515715445', 'tgreeshma2000@gmail.com', '2000-09-12', 22, '4', '2', 'V Thirumala reddy', 'Labour', 50000.00, 1, 0.00, 20000.00, 'Nagari Chittoor district', 'Nagari Chittoor district', '2211150023', '', '1', 'upload_files/candidate_tracker/20578825647_greeshma resume.docx', NULL, '3', '2022-11-19', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 09:25:47', 1, '2022-11-15 09:28:24', 0, NULL, 1),
(11092, 'Bharath Raj', '4', '9597354774', '6362136272', 'bharathraj56565@gmail.com', '2000-10-06', 22, '3', '2', 'Murugesan. M. K', 'Business', 30000.00, 1, 20000.00, 25000.00, 'Karur', 'Karur', '2211150024', '', '2', 'upload_files/candidate_tracker/20314630527_BharathRajCV.pdf', NULL, '1', '2022-11-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 09:32:42', 1, '2022-11-15 09:38:44', 0, NULL, 1),
(11093, 'Prakasam v', '6', '8144529820', '8939182272', 'vprakasam1993@gmail.com', '1993-07-25', 29, '3', '2', 'Varatharajan', 'Former', 10000.00, 1, 15000.00, 18000.00, 'Namakkal', 'Namakkal', '2211150025', '', '2', 'upload_files/candidate_tracker/40615446901_sri prakash2022.pdf', NULL, '1', '2022-11-16', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '29yrs old.. not speaking well.. ', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-15 09:37:29', 85, '2022-11-16 06:20:24', 0, NULL, 1),
(11094, 'Manisankar k', '31', '6383524552', '', 'manisankark2007@gmail.com', '2000-09-30', 22, '3', '2', 'Krishnan k', 'Cooli', 10000.00, 1, 0.00, 25000.00, '36/3, Vengakkalpatti, Thanthonimalai, Karur-7', 'Chennai', '2211150026', '', '1', 'upload_files/candidate_tracker/63895756073_My Resume.pdf', NULL, '1', '2022-11-16', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical task cleared,Candiddate need to give his confirmation for the TxxampC,if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2022-11-18', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-15 10:26:45', 1, '2022-11-16 11:07:49', 0, NULL, 1),
(11095, 'PRABHAKAR P', '33', '8072073157', '8179299215', 'prabhakar.pajarla134@gmail.com', '1998-05-10', 24, '2', '2', 'Srihari', 'Daily wage worker', 400000.00, 1, 0.00, 15000.00, 'Kavali', 'Kavali', '2211160001', '1', '1', 'upload_files/candidate_tracker/22559643814_Resume - Prabhakar_11-Nov-22_13.08.58.pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for Accounts Preparing for CA inter,time being he is looking for job will not sustain in a long', '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-11-16 10:28:36', 1, '2022-11-16 10:33:33', 0, NULL, 1),
(11096, 'Naveenkumar M', '31', '9344166358', '', 'naveenmurugan185@gmail.com', '2000-05-18', 22, '3', '2', 'Murugan A', 'Cooli', 10000.00, 1, 0.00, 25000.00, '2/22,gokule street,Narayanapuram,madurai-14', 'Chennai', '2211160002', '', '1', 'upload_files/candidate_tracker/67637172576_Resume (1).pdf', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject - Written Task - Besant ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-16 10:42:50', 1, '2022-11-16 10:59:03', 0, NULL, 1),
(11097, '', '0', '8248417731', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211160003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-16 11:28:46', 0, NULL, 0, NULL, 1),
(11098, 'veeraraghvan g', '6', '8754478636', '', 'ragavwax@gmail.com', '1992-04-06', 30, '2', '2', 'g', 'business', 15000.00, 1, 16000.00, 18000.00, 'chennai', 'chennai', '2211160004', '2', '2', 'upload_files/candidate_tracker/36129664906_Kiran.resume.doc', NULL, '1', '2022-11-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for our Sales Long Career Have some Psychological Problems he was into treatment earlier he will not be able to handle the pressure not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-16 12:12:41', 1, '2022-11-16 12:14:33', 0, NULL, 1),
(11099, '', '0', '9514191875', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211160005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-16 12:36:36', 0, NULL, 0, NULL, 1),
(11100, 'ajith v', '5', '9940115321', '', 'ajithnaidu98@gmail.com', '1998-10-13', 24, '2', '2', 'hajarathiah', 'business painter', 15000.00, 2, 15000.00, 18000.00, 'chennai', 'chennai', '2211160006', '2', '2', 'upload_files/candidate_tracker/44785211755_AJITH.V. RESUME.docx', NULL, '1', '2022-11-16', 0, '', '3', '59', '1970-01-01', 262000.00, '', '2', '1970-01-01', '1', 'Selected for GK Sir with PF/ESI/PT', '5', '1', '4', '1', '3', '1', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-16 12:40:17', 60, '2023-02-09 05:16:03', 0, NULL, 1),
(11101, 'MALLIKARJUNA BAGILI', '33', '8867141672', '8184857701', 'bmalli299@gmail.com', '1999-05-15', 23, '3', '2', 'B Umesh', 'Employee contact', 25000.00, 0, 20000.00, 25000.00, 'Adoni', 'Bengaloru', '2211160007', '', '2', 'upload_files/candidate_tracker/37819599140_mv123.docx', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-16 01:00:10', 1, '2022-11-16 01:05:45', 0, NULL, 1),
(11102, 'R.SUNDAR', '17', '9962069281', '', 'rajagopalsundar141@gmail.com', '1985-09-17', 37, '4', '2', 'Mrs.R.JANAKI', 'HOUSE WIFE', 5000.00, 0, 19000.00, 20000.00, 'CHENNAI', 'CHENNAI', '2211160008', '', '2', 'upload_files/candidate_tracker/74615620586_Resume (1).pdf', NULL, '1', '2022-11-16', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-16 02:28:12', 85, '2022-11-16 03:42:16', 0, NULL, 1),
(11103, 'Sandhiya Devi.K', '14', '6382389747', '', 'devisandhiya602@gmail.com', '2000-10-12', 22, '2', '2', 'Jayanthi Kannan', 'Tailor', 15000.00, 1, 0.00, 364000.00, '108c, Indra nagar, perumbakam road, Tiruvannamalai', '108c, Indra Nagar, Perumbakam Road, Tiruvannamalai', '2211160009', '1', '1', 'upload_files/candidate_tracker/72829331585_sandhiya.pdf', NULL, '2', '2022-12-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-16 05:25:30', 99, '2022-12-10 12:21:01', 0, NULL, 1),
(11104, '', '0', '8110074381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211160010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-16 06:06:37', 0, NULL, 0, NULL, 1),
(11105, 'Punitha M', '6', '8508452782', '8610317619', 'punitha16051998@gmail.com', '1998-05-16', 24, '3', '2', 'Shanthi', 'Worker', 80000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2211160011', '', '1', 'upload_files/candidate_tracker/39461721807_Punitha Resume.pdf', NULL, '1', '2022-11-17', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '4', '7', '', '2', '2022-11-28', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-16 07:33:51', 85, '2022-11-17 05:29:47', 0, NULL, 1),
(11106, '', '0', '6381982062', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-16 09:56:53', 0, NULL, 0, NULL, 1),
(11107, 'VIVEK S N', '5', '9113802341', '7795718554', 'vivekshet1234@gmail.com', '1999-04-28', 23, '2', '2', 'L. NAGABHUSHAN', 'Retired person', 5000.00, 2, 2.20, 3.30, 'Bengaluru', 'Bengaluru', '2211160013', '1', '2', 'upload_files/candidate_tracker/78605235975_VIVEK S N RESUME 22092022.pdf', NULL, '1', '2022-11-17', 0, '', '3', '59', '2022-12-07', 250000.00, '', '3', '2023-03-16', '1', 'Selected for Sutharsan Bangalore with the confirmation on the revised CTC 2.5 LPA Candidate Prefer to go in Non Voice but interested to go in the same voice process need to analyse the candidate in 7 days', '5', '1', '4', '2', '2', '1', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-16 10:39:11', 60, '2022-11-24 06:32:11', 0, NULL, 1),
(11108, 'Dhivan Rajab S', '23', '6374068001', '8072426881', 'dhivanrajab0910@gmail.com', '2000-10-09', 22, '2', '2', 'Shahul hameed', 'Driver', 20000.00, 4, 15000.00, 20000.00, 'Tenkasi', 'Chennai', '2211160014', '1', '2', 'upload_files/candidate_tracker/48911601537_Full Stack Developer.pdf', NULL, '1', '2022-11-21', 15, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected in aptitude round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-16 11:08:42', 99, '2022-11-21 06:29:59', 0, NULL, 1),
(11109, 'Vignesh sb', '11', '7092947174', '7395963164', 'Vksb24@gmail.com', '1994-07-24', 28, '2', '2', 'Suresh s', 'Team lead', 30000.00, 1, 15000.00, 17000.00, 'Thousand lights', 'Valasaravakkam', '2211170001', '2', '2', 'upload_files/candidate_tracker/43755385471_cv_vignesh sb - Copy.pdf', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Good in Communication have Exp in Recruitment,looking for Same but we tried for Tech Support Mutual fund he needs to come back with his confirmation', '6', '1', '0', '1', '1', '0', '2', '2022-11-19', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 10:24:11', 1, '2022-11-17 10:28:37', 0, NULL, 1),
(11110, 'Nivethitha. V', '2', '7708895896', '8754954352', 'nivishthitha1425@gmail.com', '1999-07-25', 23, '3', '2', 'No', 'None', 15000.00, 3, 0.00, 20000.00, 'Chidambaram', 'Velachery, Chennai', '2211170002', '', '1', 'upload_files/candidate_tracker/15159680101_1664302992703Resume_Nivethitha.pdf', NULL, '1', '2022-11-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Technical Round Reject', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 10:36:53', 1, '2022-11-17 10:46:40', 0, NULL, 1),
(11111, 'Buvanesh B', '5', '8148165817', '6382498568', 'bubaraina@gmail.com', '1996-01-19', 26, '1', '2', 'Balasaraswathy', 'Building contractors', 20000.00, 1, 0.00, 20000.00, 'Buttroad', 'Buttroad', '2211170003', '', '1', 'upload_files/candidate_tracker/23402942144_BUVANESH RESUME.docx', NULL, '1', '2022-11-17', 0, 'Jobs', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile Fresher For Sales Can Train And Give A Try For Our Role Kindly Check And Let Me Know Your Inputs - Dropped Candidate Salary Expectation is very high being fresher also he is in need of Leave on Saturday sunday will not sustain and not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-17 11:15:58', 60, '2022-11-23 05:18:01', 0, NULL, 1),
(11112, 'Ebinesar', '6', '9840288926', '', 'macnesar302@gmail.com', '1997-12-02', 24, '1', '2', 'Sagayamary fathima', 'Substaff', 11000.00, 0, 16000.00, 22000.00, 'Santhome,chennai', 'Thoraipakkam,chennai', '2211170004', '', '2', 'upload_files/candidate_tracker/42974922151_ Ebinesar new resume.pdf', NULL, '1', '2022-11-17', 0, '5557', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 11:19:21', 1, '2022-11-17 11:27:03', 0, NULL, 1),
(11113, 'J.Nandhini Priya', '6', '8148492552', '9840021142', 'nandhinibala1318@gmail.com', '1998-03-18', 24, '1', '2', 'J.Balakesavalu/J.Anuradha', 'Pensioner', 20000.00, 2, 15000.00, 17000.00, 'No.112/10 Gandhi Street Cornation Nagar', 'No.112/10 Gandhi Street Cornation Nagar', '2211170005', '', '2', 'upload_files/candidate_tracker/98525428789_Nandhini Priya Resum.docx', NULL, '1', '2022-11-17', 0, '5557', '3', '59', '2022-11-18', 204000.00, '', NULL, '2023-05-31', '2', 'Selected for thiyagarajan Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-17 11:19:45', 60, '2022-11-17 08:28:31', 0, NULL, 1),
(11114, 'Kamala bharathy', '6', '8015319612', '8015910869', 'sarobharathy4@gmail.com', '1997-09-23', 25, '1', '2', 'Latha', 'House wife', 10000.00, 1, 18000.00, 22000.00, 'Ramalingaeshwar Kovil street,eldams road', 'Ramalingaeshwar Kovil street, eldams road', '2211170006', '', '2', 'upload_files/candidate_tracker/62657937470_KAMALABHARATHY.B resume .doc', NULL, '1', '2022-11-17', 0, '5557', '3', '59', '2022-11-18', 240000.00, '', NULL, '2023-11-25', '2', 'Selected for Thiyagu Team Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-17 11:20:03', 60, '2022-11-17 08:29:47', 0, NULL, 1),
(11115, 'Arivazhagan.R', '21', '9787837674', '8940165174', 'ariarish0@gmail.com', '2000-06-25', 22, '3', '2', 'Ramar.V', 'Former', 15000.00, 3, 0.00, 18000.00, 'Kallakurichi', 'Chennai', '2211170007', '', '1', 'upload_files/candidate_tracker/86833779578_Arivazhagan__Resume.pdf', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Skills Exp Need to come back with his confirmation on TxxampC if he comes back let us try', '3', '1', '0', '1', '1', '0', '2', '2022-11-19', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 11:32:18', 1, '2022-11-17 11:45:25', 0, NULL, 1),
(11116, 'Muthukrishnan E', '31', '6381448204', '', 'muthue6381@gmail.com', '2000-04-11', 22, '3', '2', 'Elumalai', 'Farmer', 18000.00, 1, 0.00, 18000.00, 'Kallakurichi', 'Chennai,Thoraipakkam', '2211170008', '', '1', 'upload_files/candidate_tracker/899500794_Muthukrishnan E Profile.docx', NULL, '1', '2022-11-17', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Skills Exp Need To Come Back With His Confirmation On TxxampC If He Comes Back Let Us Try', '2', '1', '0', '1', '1', '0', '2', '2022-11-19', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 11:33:29', 1, '2022-11-17 11:43:47', 0, NULL, 1),
(11117, 'A. Dhivyalakshmi', '6', '9940347207', '8681903472', 'adhivya392@gmail.com', '2002-07-21', 20, '1', '2', 'Ayyadurai', 'Pwd', 25000.00, 2, 0.00, 15000.00, 'Perungudi', 'Perungudi', '2211170009', '', '1', 'upload_files/candidate_tracker/70179140997_Resume_A.Dhivyalaksmi_Format7.pdf', NULL, '1', '2022-11-17', 0, 'P1066', '3', '59', '2022-11-18', 162000.00, '', '3', '2023-02-04', '2', 'Selected for Thiyagu Team - Staff role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-17 11:45:50', 60, '2022-11-17 08:30:11', 0, NULL, 1),
(11118, 'Aardev', '4', '9715705382', '8015407091', 'aardev1706@gmail.com', '2007-11-17', 0, '2', '2', 'Arumugam', 'Worker', 15000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2211170010', '1', '1', 'upload_files/candidate_tracker/63380199788_CV_2022092712224824.pdf', NULL, '1', '2022-11-18', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-17 03:46:05', 85, '2022-11-18 02:59:15', 0, NULL, 1),
(11119, 'vignesh.k', '13', '9943960298', '', 'k.vignesh6665@gmail.com', '1998-08-09', 24, '3', '2', 'k.santhi', 'shop keeper', 20000.00, 0, 0.00, 15000.00, 'avadi', 'avadi', '2211170011', '', '1', 'upload_files/candidate_tracker/12046618012_VIGNESH.K.pdf', NULL, '1', '2022-11-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has basic knowledege in php... sustainbility doubts .. sal exp too high..', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 05:26:22', 1, '2022-11-17 05:30:34', 0, NULL, 1),
(11120, 'dhanalakshmi', '31', '7305462964', '', 'dhanalp019@gmail.com', '2001-05-19', 21, '3', '2', 'palani', 'business', 70000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2211170012', '', '1', 'upload_files/candidate_tracker/47704351336_Dhanalakshmi.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 05:56:22', 1, '2022-11-17 06:16:54', 0, NULL, 1),
(11121, 'John Prijin', '4', '7094758527', '6369060726', 'johnprijin@gmail.com', '1999-03-08', 23, '2', '2', 'John', 'Fisherman', 200000.00, 3, 0.00, 17000.00, 'Bangalore', 'Bangalore', '2211170013', '1', '1', 'upload_files/candidate_tracker/29872045397_Edited johnprijin CV.pdf', NULL, '1', '2022-11-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-17 06:41:47', 99, '2022-11-18 12:12:55', 0, NULL, 1),
(11122, '', '0', '8098987485', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211170014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-17 06:54:17', 0, NULL, 0, NULL, 1),
(11123, 'Bhuvaneshwaran', '22', '9094116616', '8668152460', 'bhuvaneshsureshbabu@gmail.com', '1998-11-15', 24, '2', '2', 'Sureshbabu', 'Personal driver', 240000.00, 0, 0.00, 400000.00, 'Chennai', 'Chennai', '2211170015', '1', '1', 'upload_files/candidate_tracker/3880996870_bhuvanesh updated resume2.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'no idea about digital marketing .. communication ok.. but dont have idea about content ,sEOxxamp SEM.. SAL Ext high expt min.. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-17 06:56:48', 99, '2022-11-21 06:32:12', 0, NULL, 1),
(11124, 'Bhuvaneshwaran', '22', '9094116615', '8668152460', 'bhuvaneshsureshbabu@gmail.com', '1998-11-15', 24, '4', '2', 'Sureshbabu', 'Personal driver', 240000.00, 0, 0.00, 400000.00, 'Chennai', 'Chennai', '2211170016', '', '1', 'upload_files/candidate_tracker/88158549328_bhuvanesh updated resume2.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 07:02:57', 1, '2022-11-17 07:50:40', 0, NULL, 1),
(11125, 'K.rajamanickam', '11', '8825854843', '', 'rmanickam324@gmail.com', '2000-02-04', 22, '3', '2', 'Karthikeyan m', 'Steel company labour', 20000.00, 1, 0.00, 17009.00, 'Salem', 'Salem', '2211170017', '', '1', 'upload_files/candidate_tracker/45715934181_RAJAMANICKAM_JEEVA (1).pdf', NULL, '3', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 07:13:09', 1, '2022-11-17 07:16:07', 0, NULL, 1),
(11126, 'Abdul Mukthalif Subair', '23', '9025039885', '7708291590', 'subairsr04705@gmail.com', '2000-03-27', 22, '2', '2', 'Mohamed iqbal', 'Labour', 20000.00, 2, 0.00, 18000.00, 'Tenkasi', 'Chennai', '2211170018', '1', '1', 'upload_files/candidate_tracker/39848741521_Subair Resume - 28 - 1668315179.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-17 07:52:20', 99, '2022-11-21 06:34:55', 0, NULL, 1),
(11127, 'Janarthanan S', '31', '9629927725', '', 'janarthanans741@gmail.com', '1999-10-19', 23, '3', '2', 'Sureah', 'React JS Developer', 25000.00, 3, 0.00, 350000.00, 'KRISHNAGIRI', 'KRISHNAGIRI', '2211170019', '', '1', 'upload_files/candidate_tracker/97166354241_JANARTHANAN_S_Resume.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-17 08:04:22', 1, '2022-11-17 08:09:03', 0, NULL, 1),
(11128, '', '0', '9080743962', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211170020', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-17 09:38:38', 0, NULL, 0, NULL, 1),
(11129, 'Atchaya', '7', '7358693080', '9789076447', 'atchayasaravanan1113@gmail.com', '1999-01-13', 23, '3', '2', 'Saravanan', 'Carpenter', 40000.00, 1, 12000.00, 20000.00, 'No:6, Thiruvalluvar street, mathialagan nagar.', 'No:6, Thiruvalluvar Street, Mathialagan Nagar', '2211180001', '', '2', 'upload_files/candidate_tracker/22496054370_ATCHAYA.pdf', NULL, '1', '2022-11-18', 1, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in CAMS need to train a lot Communication Average,she will come for final round', '7', '1', '0', '1', '1', '0', '2', '2022-11-23', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 10:59:26', 1, '2022-11-18 11:04:16', 0, NULL, 1),
(11130, 'T.Dharshini', '16', '7397416496', '8825901472', 'dharshinithangarasa@gmail.com', '2000-09-30', 22, '2', '2', 'Amaravathi', 'Oc', 10000.00, 2, 0.00, 18000.00, 'Kelambakkam', 'Kelambakkam', '2211180002', '1', '2', 'upload_files/candidate_tracker/65670886534_PDFGallery_20221113_183838.pdf', NULL, '1', '2022-11-21', 2, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'long distance.. dont have idea about excel .. no communication... not suit our process', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-18 11:24:45', 99, '2022-11-21 06:37:00', 0, NULL, 1),
(11131, 'Abinaya k', '4', '6385246074', '', 'abikutty3501@gmail.com', '2002-01-29', 20, '3', '2', 'Kaliyamoorthy', 'Driver', 8000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211180003', '', '1', 'upload_files/candidate_tracker/24019637228_Resume_RESUME_Format2.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:45:35', 1, '2022-11-18 11:59:51', 0, NULL, 1),
(11132, 'RAJARAJESHWARI.N', '4', '9486263490', '', 'rajiraji78934@gmail.com', '2002-03-07', 20, '3', '2', 'NATARAJAN.N', 'FORMAR', 10000.00, 1, 0.00, 10000.00, 'REDDIPALAYAM', 'REDDIPALAYAM', '2211180004', '', '1', 'upload_files/candidate_tracker/15360894966_Resume_RESUME_Format2.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:45:50', 1, '2022-11-18 11:55:26', 0, NULL, 1),
(11133, '9944688517', '4', '9944688517', '', 'knirubha3@gmail.com', '2002-10-19', 20, '3', '2', 'R. Karumel nather', 'Farmer', 40000.00, 3, 0.00, 10000.00, 'Anna Nager Avalivanallur', 'Anna Nager Avalivanallur', '2211180005', '', '1', 'upload_files/candidate_tracker/57356725998_niru resum.pdf', NULL, '1', '2022-11-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:46:00', 1, '2022-11-18 12:09:33', 0, NULL, 1),
(11134, 'Mythili.B', '4', '9443262034', '', 'mythilibaskar114@gmail.com', '1984-04-11', 38, '3', '1', 'Baskar.S', 'Head Clarck', 80000.00, 2, 0.00, 10000.00, 'Tiruvarur', 'Thanjavur', '2211180006', '', '1', 'upload_files/candidate_tracker/78211547413_DocScanner 18-Nov-2022 12-14 pm.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:46:05', 1, '2022-11-18 12:27:08', 0, NULL, 1),
(11135, 'G Jaya ranjini', '4', '8778708061', '9500494147', 'ranjinisvylouidc@gmail.com', '1987-12-26', 34, '3', '1', 'Louis Alexander', 'Own business', 8000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2211180007', '', '1', 'upload_files/candidate_tracker/44920084220_ranjini.pdf', NULL, '1', '2022-11-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-18 11:46:58', 1, '2022-11-18 12:17:24', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11136, '', '0', '6383612068', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211180008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-18 11:54:30', 0, NULL, 0, NULL, 1),
(11137, 'sneha s', '4', '9789956305', '', 'sneha0450278@gmail.com', '2002-03-29', 20, '2', '2', 'senguttuvan', 'tailor', 10000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2211180009', '2', '1', 'upload_files/candidate_tracker/22831463926_Sneha Resume 2.pdf', NULL, '1', '2022-11-18', 0, '', '3', '59', '2022-11-21', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B - T.Nagar Staff Role however will confirm again the role', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-18 11:57:26', 60, '2022-11-19 11:13:27', 0, NULL, 1),
(11138, 'Ravivarma. B', '6', '8778717125', '8883826218', 'ravivarmab2@gmail.com', '1992-05-18', 30, '2', '2', 'A. Balakrishnan', 'Cooli', 12.00, 1, 0.00, 18.00, 'erode', 'erode', '2211180010', '1', '1', 'upload_files/candidate_tracker/92622218036_RAVIVARMA(1.pdf', NULL, '1', '2022-11-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-18 12:26:18', 85, '2022-11-19 09:57:10', 0, NULL, 1),
(11139, 's.ramya', '6', '8220417948', '', 'ramyaselvam5151@gmail.com', '1999-06-23', 23, '2', '2', 'selvam', 'business', 20000.00, 0, 0.00, 15000.00, 'arachalur', 'arachalur', '2211180011', '1', '1', 'upload_files/candidate_tracker/78237738706_S.RAMYA RESUME.pdf', NULL, '1', '2022-11-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'logout time not comfortable so rejectedd', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-18 01:32:07', 99, '2022-11-19 06:44:06', 0, NULL, 1),
(11140, 'Boobalan', '31', '7695018927', '', 'r.boobalan111@gmail.com', '1998-04-22', 24, '2', '2', 'S.T.Ravi', 'Business', 25000.00, 1, 0.00, 15000.00, '12/22, Muthurengan Street Thirumangalam Madurai', 'Chennai', '2211180012', '1', '1', 'upload_files/candidate_tracker/17845247414_boobalan_Resume.pdf', NULL, '1', '2022-11-19', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic knowledge ..sustainbility doubts.. he want to check his family..if he come back.. let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-18 06:22:00', 99, '2022-11-19 11:10:10', 0, NULL, 1),
(11141, 'Mohammed Yahya', '31', '6382388315', '9025361630', 'yahya209812@gmail.com', '1998-07-20', 24, '2', '2', 'Perumal Samy', 'Labour', 20000.00, 2, 0.00, 25000.00, 'Kovilpatti', 'Triplicane', '2211190001', '1', '1', 'upload_files/candidate_tracker/81258451301_Mohammed Yahya Resume.pdf', NULL, '1', '2022-11-19', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainbility doubts.... not ok with txxampc ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 09:28:14', 99, '2022-11-19 06:39:22', 0, NULL, 1),
(11142, 'Madhumitha', '6', '8056508421', '', 'madhumithaarc@gmail.com', '2001-05-01', 21, '2', '2', 'Rajendran', 'Teavels', 300000.00, 1, 0.00, 12000.00, 'Erode', 'Erode', '2211190002', '1', '1', 'upload_files/candidate_tracker/30463335250_MADHUMITHA R (1).pdf', NULL, '1', '2022-11-19', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected - logout time not comfortable', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 10:16:05', 99, '2022-11-19 06:40:58', 0, NULL, 1),
(11143, 'Reshma h', '4', '9361667044', '7845973593', 'Saisreebl2018@gmail.com', '1999-07-22', 23, '2', '1', 'Manesh Kumar S', 'Working as supervisor in hundai company', 30.00, 2, 13.00, 15.00, 'Ambattur', 'Ambattur', '2211190003', '2', '2', 'upload_files/candidate_tracker/70417072110_Resh Resume22.pdf', NULL, '1', '2022-11-19', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-19 10:20:37', 85, '2022-11-19 11:11:28', 0, NULL, 1),
(11144, '', '0', '8056508429', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-19 10:58:57', 0, NULL, 0, NULL, 1),
(11145, 'rajkumar', '5', '6382690567', '', 'rajuu.kumar.rk@gmail.com', '1994-03-14', 28, '2', '2', 'rangasamy', 'late', 10000.00, 0, 0.00, 20000.00, 'chennai', 'chennai', '2211190005', '2', '1', 'upload_files/candidate_tracker/82710794593_DOC-20221119-WA0000..pdf', NULL, '1', '2022-11-19', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has 6yrs of sales exp .. sal exp high .. not much good in convincing..', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-19 11:00:37', 1, '2022-11-19 11:04:20', 0, NULL, 1),
(11146, 'duraimurugan', '4', '8122319953', '', 'duraik357@gmail.com', '1994-04-07', 28, '2', '2', 'kajendran', 'farmer', 10000.00, 0, 0.00, 12000.00, 'chennai', 'chennai', '2211190006', '2', '1', 'upload_files/candidate_tracker/48535512636_DURAIMURUGAN RESUME.PDF', NULL, '1', '2022-11-19', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'from electrical background.. fresher to our domain.. no convincing skill.. ', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-19 11:06:42', 1, '2022-11-19 11:08:32', 0, NULL, 1),
(11147, 'Lokesh', '4', '9363243227', '', 'Lokesh93440@gmail.com', '2000-07-16', 22, '1', '2', 'Venkateshan', 'Corporate employee', 25000.00, 2, 0.00, 15000.00, 'Pernambut', 'Saidapet', '2211190007', '', '1', 'upload_files/candidate_tracker/15953012187_DocScanner Nov 2, 2022 12-43.pdf', NULL, '1', '2022-11-19', 0, 'P1321', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-19 11:32:15', 1, '2022-11-19 12:51:47', 0, NULL, 1),
(11148, 'Gokulkumar S', '23', '8825469382', '', 'gokulgs8825@gmail.com', '2000-10-07', 22, '2', '2', 'Selavaraj', 'Rice business', 20000.00, 1, 0.00, 15000.00, 'Melmaruvathur', 'Chengalpet', '2211190008', '1', '1', 'upload_files/candidate_tracker/99281595210_Resume2.pdf', NULL, '1', '2022-11-21', 0, '', '2', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'From chengalpatu ready to relocate near by..has idea about ui/ux designer.... sustainbility doubts.. if he come back let us try ', '2', '1', '', '1', '1', '', '2', '2022-11-23', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 05:39:28', 99, '2022-11-22 11:09:50', 0, NULL, 1),
(11149, 'Ajith', '23', '8489638136', '', 'cmajithkumar742@gmail.com', '2000-04-07', 22, '2', '2', 'chitra', 'school cleaner', 10.00, 3, 0.00, 18.00, 'ramanathapuram', 'avadi', '2211190009', '1', '1', 'upload_files/candidate_tracker/84378624959_ajith.resumefinal92 (1).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'from avadi not ready to relocate... no idea about ui/ux .. sal expt high', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 05:45:52', 99, '2022-11-21 06:39:06', 0, NULL, 1),
(11150, 'Raghul Ram S', '7', '7358403279', '', 'VINODHINISRINI27@GMAIL.COM', '1999-05-26', 23, '2', '2', 'Kalyani', 'Home Maker', 10000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2211190010', '1', '2', 'upload_files/candidate_tracker/70209501441_Raghul Ram-Resume (1) (1).pdf', NULL, '1', '2022-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas inMF No communication not open for Sales positions too not suitable', '7', '1', '', '1', '3', '', '2', '1970-01-01', '2', '4', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-19 08:13:51', 99, '2022-11-22 02:35:08', 0, NULL, 1),
(11151, 'Arun Kumar', '31', '9677470849', '', 'pgarunperumal1999@gmail.com', '1999-12-19', 22, '2', '2', 'Perumal', 'Farmer', 10000.00, 2, 0.00, 3.50, 'VILLUPURAM', 'Chrompet', '2211200001', '1', '1', 'upload_files/candidate_tracker/4509088585_Upd Resume Arun.pdf', NULL, '1', '2022-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic Skills Not much comfort in TxxampC Need to train a lot if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-20 12:40:22', 99, '2022-11-24 11:47:32', 0, NULL, 1),
(11152, 'Arun Ramasamy', '23', '6381873526', '', 'arunramasamy46@gmail.com', '2001-11-17', 21, '2', '2', 'Ramasamy', 'Chennai', 200000.00, 1, 0.00, 300000.00, 'Aruppukottai', 'Chennai', '2211200002', '1', '1', 'upload_files/candidate_tracker/58721547617_Arun.R-RESUME.-1 (1) (1) (1) (1) (1).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected In Aptitude Round', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-20 07:23:35', 99, '2022-11-24 03:49:48', 0, NULL, 1),
(11153, 'Ashif Ali', '31', '8870723721', '8610446375', 'ashifali112@gmail.com', '1998-01-10', 24, '2', '2', 'Nisar Ali', '12th', 20000.00, 2, 0.00, 20000.00, 'Ramnathapuram', 'Chennai', '2211210001', '1', '1', 'upload_files/candidate_tracker/25044282369_Ashif-Resume (1).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long distance.. need to learn lot... ongoing classes..and thinking about txxampc too ..once he complete the course will check again..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 09:42:05', 99, '2022-11-21 06:44:57', 0, NULL, 1),
(11154, 'Shahul Hameed', '4', '7418306712', '', 'sh5784698@gmail.com', '2000-06-07', 22, '2', '2', 'Mohamed Sulthan', 'Hazrath', 12000.00, 1, 0.00, 12000.00, 'JMS nagar , Railady , Ayyampet', 'JMS nagar , Railady , Ayyampet', '2211210002', '1', '1', 'upload_files/candidate_tracker/76212978867_shahul MG_20221121_100637.pdf', NULL, '1', '2022-11-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-21 10:00:32', 85, '2022-11-21 10:16:48', 0, NULL, 1),
(11155, 'Jagan m', '4', '7810010229', '', 'Jaganjpdskkn6381@gmail.com', '2001-10-23', 21, '3', '2', 'Murugesan', 'Company work', 10000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2211210003', '', '1', 'upload_files/candidate_tracker/95728149653_Adobe Scan 21 Nov 2022 (1).pdf', NULL, '3', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '7', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 10:20:50', 1, '2022-11-21 10:36:22', 0, NULL, 1),
(11156, 'Kalaiyarasan A', '31', '9095022301', '8122300652', 'kalaiofficial12@gmail.com', '1997-06-12', 25, '2', '2', 'Allimuthu', 'Daily wages', 18000.00, 1, 0.00, 25000.00, 'Vellore', 'Chennai', '2211210004', '1', '1', 'upload_files/candidate_tracker/94240648700_kalaiyarasan.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 10:27:45', 99, '2022-11-21 06:46:30', 0, NULL, 1),
(11157, 'manojkumar m', '23', '8838022898', '', 'mk391982@gmail.com', '1998-05-04', 24, '3', '2', 'poornima m', 'unemployed', 30000.00, 1, 0.00, 250000.00, 'gummidipoondi', 'Gummidipoondi', '2211210005', '', '1', 'upload_files/candidate_tracker/40128677946_Software_developer_R.pdf', NULL, '2', '2022-11-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 10:28:32', 1, '2022-11-21 10:52:50', 0, NULL, 1),
(11158, 'Y. AROCKIA ABISHEK', '31', '6381245194', '9842991433', 'arofrank2001@gmail.com', '2001-07-22', 15, '2', '2', 'C.YESU DAS', 'Business', 20000.00, 2, 0.00, 170000.00, '528 Merry street, Sengadu, Villupuram', 'Sai aatchara hostel , perungalathur ,chennai', '2211210006', '1', '1', 'upload_files/candidate_tracker/84331300586_Abishek.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'attitude issue .. sal expt too high.. long distance too..', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 10:47:56', 99, '2022-11-21 06:48:02', 0, NULL, 1),
(11159, 'Kannan', '4', '7708119740', '', '19coc144kannan.s@gmail.com', '2001-10-20', 21, '3', '2', 'Srinivasan k', 'Unemployed', 6000.00, 1, 0.00, 10000.00, 'Keelavasal', 'Keelavasal', '2211210007', '', '1', 'upload_files/candidate_tracker/94433676956_pdf&rendition=1-1.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:32:39', 1, '2022-11-21 11:55:21', 0, NULL, 1),
(11160, 'Priyanka', '4', '6382760137', '', 'msharmipriya1996@gmail.com', '2002-10-12', 20, '3', '2', 'Malaisamy', 'farmer', 7500.00, 2, 0.00, 8000.00, 'Ammanpettai', 'Ammanpettai', '2211210008', '', '1', 'upload_files/candidate_tracker/18068774824_priyanka pff.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:32:54', 1, '2022-11-21 12:09:31', 0, NULL, 1),
(11161, 'Shalini', '4', '8270658672', '', 'B.shaliniraja@gmail.com', '2002-04-24', 20, '3', '2', 'Benjamin raj', 'Farmer', 5000.00, 1, 0.00, 8000.00, 'Thirukattupalli', 'Thirukattupalli', '2211210009', '', '1', 'upload_files/candidate_tracker/39483072824_SHALINI RESUME-1.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:33:09', 1, '2022-11-21 12:05:02', 0, NULL, 1),
(11162, 'Sowmiya', '4', '6381902997', '', 'mirugansowmi637@gmail.com', '2000-03-15', 22, '3', '2', 'Murugan', 'farmer', 10000.00, 2, 0.00, 10000.00, 'THANJAVUR', 'THANJAVUR', '2211210010', '', '1', 'upload_files/candidate_tracker/92210064791_pdf&rendition=1.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:37:24', 1, '2022-11-21 11:40:19', 0, NULL, 1),
(11163, 'Vignesh. S', '33', '7449210534', '6379763077', 'Vigneshvinoth744921@gmail.com', '1999-06-11', 23, '2', '2', 'Srinivasan', 'Auto driver', 3.60, 1, 220000.00, 3.00, 'West mambalam', 'West mambalam', '2211210011', '1', '2', 'upload_files/candidate_tracker/64095843833_Resume_Vignesh_1668854890413_vignesh s.pdf', NULL, '1', '2022-11-21', 2, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '2yrs of exp as a acc ass..but not relavant to our role... sal exp high ', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 11:42:38', 99, '2022-11-21 06:49:55', 0, NULL, 1),
(11164, 'Sneha', '4', '9361446440', '9965341411', 'Snehasneha8534@gmail.com', '2001-10-01', 21, '3', '2', 'Rajkumar', 'Farmer', 10000.00, 1, 0.00, 10000.00, 'Thirukattupalli near puthuchathiram', 'Thirukaatupalli', '2211210012', '', '1', 'upload_files/candidate_tracker/50611606264_SNEHA RESUME-2.pdf', NULL, '1', '2022-11-21', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 11:46:24', 1, '2022-11-21 12:02:08', 0, NULL, 1),
(11165, 'Radha.k', '4', '8825794025', '8760270480', 'radharagul558@gmail.com', '2000-06-08', 22, '2', '2', 'KALYANARAMAN .K', 'Farmer', 15000.00, 0, 0.00, 15000.00, 'Kumbakonam', 'Kumbakonam', '2211210013', '1', '1', 'upload_files/candidate_tracker/47009918769_Resume_Radha_Format2.pdf', NULL, '1', '2022-11-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-21 11:55:13', 85, '2022-11-21 06:33:30', 0, NULL, 1),
(11166, 'Mufid', '3', '9943766365', '7708928804', 'mufidmass04@gmail.com', '2000-03-07', 22, '2', '2', 'Musthafa', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Tenkasi', 'Chennai', '2211210014', '1', '1', 'upload_files/candidate_tracker/99723618547_Mufid_resume.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 11:57:57', 99, '2022-11-21 06:51:38', 0, NULL, 1),
(11167, 'Jamaludeen A', '3', '9361572947', '7708928804', '172jamal@gmail.com', '2001-02-17', 21, '2', '2', 'Abdul samsudeen J', 'driver', 15000.00, 2, 0.00, 17.00, 'Tirunelveli', 'chennai', '2211210015', '1', '1', 'upload_files/candidate_tracker/15436785892_JAMAL_resume.pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected In Aptitude Round', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 12:08:24', 99, '2022-11-21 06:53:14', 0, NULL, 1),
(11168, 'MNiyas Mohammed', '33', '6374143724', '6374170913', 'niyasmohammed26082000@gmail.com', '2000-06-26', 22, '3', '2', 'Mohammed isamil', 'Tea shop', 15000.00, 0, 0.00, 15000.00, 'Old washermenpet', 'Old washermenpet', '2211210016', '', '1', 'upload_files/candidate_tracker/27310713103_niyas (Resume).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'not much active.. has exp in acc from cAMS.. Not much good in acc ...', '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 12:30:33', 1, '2022-11-21 12:38:29', 0, NULL, 1),
(11169, 'Thenmozhi', '11', '9025810711', '', 'thenmozihbose35@gmail.com', '1999-06-15', 23, '3', '2', 'Brother\'Vinoth', '2,0000', 12000.00, 6, 0.00, 16000.00, 'Nungambakkam', 'Nungambakkam', '2211210017', '', '1', 'upload_files/candidate_tracker/8975334836_THENMOZHI RESUME (UPDATED).pdf', NULL, '1', '2022-11-21', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'no communication .. prefer to talk in tamil.. no idea about recruitment', '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-21 02:19:10', 1, '2022-11-21 02:27:53', 0, NULL, 1),
(11170, '', '0', '8754752397', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211210018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-21 06:18:13', 0, NULL, 0, NULL, 1),
(11171, 'Ashwin Kumar S R', '23', '9789983474', '', 'srashwin99@gmail.com', '1999-08-05', 23, '2', '2', 'Renuka', 'Service', 100000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2211210019', '1', '1', 'upload_files/candidate_tracker/56543878014_Ashwin kumar.pdf', NULL, '1', '2022-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Bit Attitude,not much open for TxxampC Long run doubts have some references too not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-21 07:44:36', 99, '2022-11-22 02:38:05', 0, NULL, 1),
(11172, '', '0', '8056373321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211220001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-22 07:15:12', 0, NULL, 0, NULL, 1),
(11173, 'VINOTHKUMAR. S', '2', '7502007010', '6382838043', 'kumarvinoth6448@gmail.com', '2000-12-10', 21, '2', '2', 'PUNITHA', 'Former', 20000.00, 1, 0.00, 10000.00, 'Tiruppur', 'chennai', '2211220002', '1', '1', 'upload_files/candidate_tracker/88970243930__Template_1668325574387.pdf', NULL, '1', '2022-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have basic knowledge long run doubts candidate need time to give his confirmation', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-22 10:28:11', 99, '2022-11-22 02:43:23', 0, NULL, 1),
(11174, 'akash', '23', '8508035087', '9842176615', 'akashravichandran1999@gmail.com', '1999-04-17', 23, '2', '2', 'ravichandran', 'advocate', 900000.00, 1, 0.00, 200000.00, 'madurai', 'urapakkam', '2211220003', '1', '1', 'upload_files/candidate_tracker/98781914814_Akash__Resume.pdf', NULL, '1', '2022-11-22', 0, '', '3', '59', '2022-11-24', 120000.00, '', '', '2023-04-10', '1', '5 month intern with 5K stipend then 10-12K 3 yrs SA Initially Dropped due to TxxampC as he confirmed we processed', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '5 Month Intern With 5K Stipend Then 10-12K 3 Yrs SA Initially Dropped Due To TxxampC As He Confirmed We Processed', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-22 10:28:35', 60, '2022-11-25 07:19:59', 0, NULL, 1),
(11175, 'Saravanan', '4', '9940517582', '8778409574', 'saravanavelu121@gmail.com', '1998-08-18', 24, '2', '2', 'Parents', 'Labour', 100000.00, 0, 0.00, 14000.00, 'Thiruvallur', 'Veppampattu', '2211220004', '1', '1', 'upload_files/candidate_tracker/52874521100_saravana resume.pdf', NULL, '1', '2022-11-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance Looking much for non voice no communication no suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-22 01:09:22', 99, '2022-11-22 02:51:13', 0, NULL, 1),
(11176, 'akash j', '16', '9445020219', '9443762219', 'jtakash03@gamil.com', '1999-05-03', 23, '2', '2', 'john s', 'daily wages', 70000.00, 3, 0.00, 2.40, 'tiruvannamalai', 'chennai', '2211220005', '1', '1', 'upload_files/candidate_tracker/87790601170_Akash (CV).pdf', NULL, '1', '2022-11-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication Understanding is Poor Will not sustain and not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-22 06:14:56', 99, '2022-11-24 11:48:19', 0, NULL, 1),
(11177, 'Dhivagar', '4', '8438925232', '9443451405', 'Dhivagarsekar96@gmail.com', '1996-10-23', 26, '2', '2', 'Sekar', 'Farmer', 15000.00, 1, 0.00, 15000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2211220006', '1', '1', 'upload_files/candidate_tracker/53767008955_DHIVAGAR.docx', NULL, '1', '2022-11-23', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-22 06:33:10', 85, '2022-11-23 10:20:17', 0, NULL, 1),
(11178, '', '0', '7538892399', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211220007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-22 09:12:20', 0, NULL, 0, NULL, 1),
(11179, 'pirahadeesh', '14', '8754154503', '7904391461', 'pirahadeesh@gmail.com', '2000-12-21', 21, '1', '2', 'Ashok', 'Rice shop ( business)', 25000.00, 1, 0.00, 35000.00, 'Thanjavur', 'Thanjavur', '2211220008', '', '1', 'upload_files/candidate_tracker/46110701040_PirahadeeshCvResume.pdf', NULL, '2', '2022-11-22', 0, '2222', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-22 09:54:48', 1, '2022-11-22 11:06:59', 0, NULL, 1),
(11180, 'mohamed amjathkhan', '33', '9789819748', '', 'akamjath791@gmail.com', '1993-06-02', 29, '3', '1', 'abdul kadhar', 'employee', 60000.00, 2, 27000.00, 35000.00, 'chennai', 'chennai', '2211230001', '', '2', 'upload_files/candidate_tracker/84931469139_Amjath CV.pdf', NULL, '1', '2022-11-23', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-23 10:20:35', 1, '2022-11-23 10:29:46', 0, NULL, 1),
(11181, 'Radha krishnan j', '13', '7871981223', '', 'Radhakrishnanj12@gmail.com', '2000-06-12', 22, '2', '2', 'Jayabalan A', 'Plumber', 25000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2211230002', '1', '1', 'upload_files/candidate_tracker/54295632875_RADHA KRISHNAN J_RESUME 15-11-2022 .pdf', NULL, '1', '2022-11-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Candidate need to learn a lot if he comes back let us try after 10-15 days', '2', '1', '', '1', '1', '', '2', '2022-12-05', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-23 10:52:05', 99, '2022-11-24 11:46:38', 0, NULL, 1),
(11182, 'sudhandira devi p', '4', '8939009700', '', 'dsudhanra@gmail.com', '1998-08-15', 24, '2', '2', 'periyasami', 'real easte', 30000.00, 2, 20000.00, 25000.00, 'gerugambakkam', 'virugambakkam', '2211230003', '1', '2', 'upload_files/candidate_tracker/36508465282_Devi resume new.docx', NULL, '1', '2022-11-23', 7, '', '3', '59', '2022-12-10', 227364.00, '', '4', '2023-01-30', '2', 'Selected for Banu team in Consultant Role', '1', '1', '1', '1', '1', '1', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-23 12:23:36', 60, '2022-11-28 07:16:42', 0, NULL, 1),
(11183, '', '0', '9629012786', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211230004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-23 01:36:51', 0, NULL, 0, NULL, 1),
(11184, 'Surendran A', '13', '6382698887', '', 'asurendhar49@gmail.com', '2000-10-22', 22, '3', '2', 'Pappa', 'House wife', 10000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2211230005', '', '1', 'upload_files/candidate_tracker/55465727562_A.Surendran (1).pdf', NULL, '1', '2022-11-23', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Appeared for IT but too long distance he is open for sales but need time to give his confirmation if he comes back for sales we can give a try', '2', '1', '0', '1', '1', '0', '2', '2022-11-24', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-23 01:49:06', 1, '2022-11-23 01:51:04', 0, NULL, 1),
(11185, '', '0', '6379936432', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211230006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-23 06:05:41', 0, NULL, 0, NULL, 1),
(11186, 'Pradeep Sangamreddy', '31', '9347902928', '', 'pradeepmobile09@gmail.com', '1999-06-10', 23, '3', '2', 'Ramana', 'Agriculture', 8000.00, 1, 4.00, 6.00, 'Vootapalli,Merakamudidam AP,535102', 'Thoraipakam,chennai', '2211230007', '', '2', 'upload_files/candidate_tracker/27095045565_pradeeplr.pdf', NULL, '2', '2022-11-26', 7, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '3', '4', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-23 06:13:20', 1, '2022-11-23 06:22:04', 0, NULL, 1),
(11187, 'Kavihasa', '5', '6363128462', '', 'Mkavihasa01@gmail.com', '1996-11-26', 25, '2', '2', 'Muniswamy', 'Unemploye', 200000.00, 0, 0.00, 15000.00, 'Bangalore', 'Bangalore', '2211240001', '1', '1', 'upload_files/candidate_tracker/85076402160_123kavi.pdf', NULL, '1', '2022-11-24', 0, '', '1', '42', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '2', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-11-24 09:41:10', 1, '2022-11-24 06:55:41', 0, NULL, 1),
(11188, 'praveen kumar', '4', '6382496628', '', 'praveennsit18@gmail.com', '2000-03-18', 22, '2', '2', 'natarajan', 'farmer', 8000.00, 2, 0.00, 12000.00, 'salem', 'salem', '2211240002', '2', '1', 'upload_files/candidate_tracker/70220468384_Praveen.docx', NULL, '2', '2022-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:03:19', 1, '2022-11-24 10:05:38', 0, NULL, 1),
(11189, 'akash p', '2', '8220553838', '', 'akashpoovan983@gmail.com', '2000-03-24', 22, '2', '2', 'poovan', 'sales man', 15000.00, 1, 0.00, 13000.00, 'kallakurchi', 'kallakuchi', '2211240003', '2', '1', 'upload_files/candidate_tracker/30828620620_Akash Resumè.pdf', NULL, '2', '2022-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:06:52', 1, '2022-11-24 10:08:49', 0, NULL, 1),
(11190, 'Maharajan K', '16', '6380087229', '', 'tmlraja7@gmail.com', '1992-08-10', 30, '2', '1', 'Nishanthi M', 'Assistant Process officer', 30.00, 2, 23785.00, 30000.00, 'Korukkupet', 'Korukkupet', '2211240004', '3', '2', 'upload_files/candidate_tracker/65277917031_Maharaja Resume updated-New.doc', NULL, '1', '2022-11-24', 45, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication Frequent Job Changes Not much strong with the skills not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:08:19', 1, '2022-11-24 10:16:28', 0, NULL, 1),
(11191, 'balaji m', '4', '7667846557', '', 'balajimaari9@gmail.com', '1998-11-14', 24, '2', '2', 'markabandhu', 'own business', 20000.00, 1, 0.00, 12000.00, 'chennai', 'kolapakkam', '2211240005', '2', '1', 'upload_files/candidate_tracker/98453772801_1667807346162_Work Resume-1.docx', NULL, '1', '2022-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:09:59', 1, '2022-11-24 10:11:51', 0, NULL, 1),
(11192, 'gopinath s', '4', '9677534167', '', 'gopinathsoundararajan@yahoo.com', '1995-10-16', 27, '2', '2', 'soundarajan', 'business', 20000.00, 1, 0.00, 15000.00, 'cuddalore', 'cuddalore', '2211240006', '2', '2', 'upload_files/candidate_tracker/39367316948_GOPINATH fINAL RESUME 2022.pdf', NULL, '1', '2022-12-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Ok have exp in core Mechanical domain fresher for our roles 5050 kindly check andlet me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-24 10:12:52', 99, '2022-12-05 09:43:23', 0, NULL, 1),
(11193, 'rajeev e', '13', '9488065438', '', 'rajeevdpt92@gmail.com', '1997-01-02', 25, '2', '2', 'elumalai', 'late', 15000.00, 1, 0.00, 12000.00, 'thiruvannamalai', 'chennai', '2211240007', '2', '1', 'upload_files/candidate_tracker/11131332910_Rajresume.pdf', NULL, '1', '2022-11-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Given task for UI UX need to analyse and based on the output will check\n', '2', '2', '0', '1', '1', '0', '2', '2022-11-26', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:43:18', 1, '2022-11-24 10:45:12', 0, NULL, 1),
(11194, 'kaviya', '2', '8973317122', '', 'kaviyaradha2000@gmail.com', '2000-06-03', 22, '2', '2', 'radhakrishnan', 'loco', 20000.00, 1, 0.00, 12000.00, 'thiruvallur', 'thiruvallur', '2211240008', '2', '1', 'upload_files/candidate_tracker/64944535278_kavya.pdf', NULL, '2', '2022-11-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:47:09', 1, '2022-11-24 10:49:58', 0, NULL, 1),
(11195, 'Subash Paramasivam', '16', '9962670212', '9514776229', 'subisubash04@gmail.com', '1998-01-26', 24, '2', '2', 'Paramasivam', 'Electrition', 20000.00, 597, 13.00, 15.00, 'Perungudi Chennai', 'Perungudi Chennai', '2211240009', '3', '2', 'upload_files/candidate_tracker/48835204856_Resume.pdf', NULL, '1', '2022-11-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Have Exp in Sales but not open for that,Need to open up a lot will not sustain in our roles not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 10:54:54', 1, '2022-11-24 11:09:16', 0, NULL, 1),
(11196, 'Mathew D', '11', '7092213157', '9094427672', 'mathewdennis2505@gmail.com', '1998-07-25', 24, '2', '2', 'S. Dennis chelladurai', 'Cnc computer operator', 50000.00, 1, 15000.00, 17000.00, 'chennai', 'chennai', '2211240010', '1', '2', 'upload_files/candidate_tracker/75381103912_Mathew Updated Cv-.docx', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,Having plan to travel abroad and plan to do safety engineer Course will not sustain in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 11:01:01', 99, '2022-11-24 05:16:18', 0, NULL, 1),
(11197, 'K.Thamaraikannan', '23', '9787867982', '9344520352', 'thamaraikannank2000@gmail.com', '2000-09-14', 22, '2', '2', 'Karuppasamy', 'Farmer', 20000.00, 3, 0.00, 20000.00, 'Thoothukudi', 'Guindy', '2211240011', '1', '1', 'upload_files/candidate_tracker/40404574725_TRHAMARAIKANNAN RESUME.docx', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills knowledge worked and left the company in 3 months due to less pay of 5K not much comfort in TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 11:09:56', 99, '2022-11-25 09:14:26', 0, NULL, 1),
(11198, 'devadarshini d', '11', '9445140423', '', 'devadharshini989@gmail.com', '1998-08-12', 24, '3', '2', 'devendran p', 'business', 200000.00, 0, 250000.00, 250000.00, 'tirupur', 'chennai', '2211240012', '', '2', 'upload_files/candidate_tracker/16267790251_Resume - Devadarshini.pdf', NULL, '1', '2022-11-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Selected For Tech Support Need To Be Trained Final Round With Gokul Selected For 132000 With PT Deduction', '6', '1', '0', '1', '1', '0', '2', '2022-11-28', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 11:22:42', 1, '2022-11-24 11:26:32', 0, NULL, 1),
(11199, 'Indhuja p k', '11', '7094433525', '', 'indhujabalki@gmail.com', '1998-08-14', 24, '3', '2', 'A.Balakrishnan', 'Business', 300000.00, 1, 0.00, 15000.00, 'Tirupur', 'Chennai', '2211240013', '', '1', 'upload_files/candidate_tracker/88399744516_indhuja resume new.pdf', NULL, '1', '2022-11-24', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Selected for Tech Support Need to be trained Final round with Gokul selected for 132000 with PT deduction', '6', '1', '0', '1', '1', '0', '2', '2022-11-28', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 11:23:03', 1, '2022-11-24 11:28:00', 0, NULL, 1),
(11200, '', '0', '6372390130', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211240014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-24 11:26:15', 0, NULL, 0, NULL, 1),
(11201, 'Ajai', '11', '7397412932', '', 'ajaitv06@gmail.com', '2001-03-07', 21, '2', '2', 'Thangadurai', 'Tea shop', 160000.00, 1, 13000.00, 16000.00, 'Pallavaram', 'Pallavaram', '2211240015', '1', '2', 'upload_files/candidate_tracker/94386755318_AJAI RESUME.docx', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average have few months exp in recruitment will not sustain in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 11:28:05', 99, '2022-11-24 05:17:12', 0, NULL, 1),
(11202, 'Sharmila. J', '16', '7358095977', '7397445576', 'Sharmilajaishankar11032001@gmail.com', '2001-03-11', 21, '2', '2', 'Suganthi. J', 'House wife', 100000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2211240016', '1', '1', 'upload_files/candidate_tracker/49620731434_resume for sir (1).pdf', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication,not open for Telesales too,not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 11:32:00', 99, '2022-11-24 05:17:44', 0, NULL, 1),
(11203, 'Keerthika V', '16', '7397360148', '7200689637', 'kv4keerthi@gmail.com', '2001-02-04', 21, '2', '2', 'Venkatavarathan', 'Cooli', 80000.00, 1, 13000.00, 15000.00, 'No 9 kabilar st madama nagar chennai 11', 'ChennaiNo 9 Kabilar St Madama Nagar Chennai 11', '2211240017', '3', '2', 'upload_files/candidate_tracker/55512757906_Keerthika - Resume .pdf', NULL, '1', '2022-11-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication have Exp in Accounts and much prefer for the same, Long back attended and got rejected for the same.Not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-24 02:05:00', 60, '2022-11-24 08:08:49', 0, NULL, 1),
(11204, 'SK JAMEER', '33', '9951207490', '8072073157', 'jameershaik2018@gmail.com', '1997-07-01', 25, '2', '2', 'Rahamthulla', 'Daily wage worker', 600000.00, 2, 0.00, 15000.00, 'Andhrapradesh, nellore', 'Ayanavaram', '2211240018', '1', '1', 'upload_files/candidate_tracker/92397559610_Jameer Shaik Resume.pdf', NULL, '1', '2022-11-25', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-11-24 05:12:00', 1, '2022-11-24 05:15:40', 0, NULL, 1),
(11205, 'Chinnadurai P', '6', '6383353791', '', 'Yamahachinna123@gmail.com', '2000-03-03', 22, '2', '2', 'Palani S', 'Farmer', 13000.00, 1, 0.00, 15000.00, 'Avalpoondurai', 'Avalpoondurai', '2211240019', '1', '1', 'upload_files/candidate_tracker/34269225121_My Resume.pdf', NULL, '1', '2022-11-30', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for telecalling sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-24 05:13:13', 99, '2022-12-01 11:17:37', 0, NULL, 1),
(11206, 'revathy', '4', '9566036251', '', 'revathyveeravel@gmail.com', '2000-09-30', 22, '3', '2', 'veeravel', 'kooli', 1000.00, 1, 0.00, 15000.00, 'pattalam', 'pattalam', '2211240020', '', '1', 'upload_files/candidate_tracker/13974743735_revathy.pdf', NULL, '1', '2022-11-25', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'low confidence..not fit for our process', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-24 09:33:15', 1, '2022-11-25 12:38:14', 0, NULL, 1),
(11207, '', '0', '8610832337', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-25 10:45:14', 0, NULL, 0, NULL, 1),
(11208, 'vignesh waran', '6', '7358020565', '8610832336', 'anishmaha7602@gmail.com', '1999-10-26', 23, '2', '2', 'manjula', 'system management', 15000.00, 1, 15000.00, 14000.00, 'thiruchengode', 'thiruchengode', '2211250002', '1', '2', 'upload_files/candidate_tracker/67705156287_Aneesh Resume.pdf', NULL, '1', '2022-11-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-25 10:48:01', 85, '2022-11-25 06:11:57', 0, NULL, 1),
(11209, 'Vanitha', '4', '7358326312', '', 'vaithakumaravel24@gmail.com', '2001-06-24', 21, '3', '2', 'Vasantha k', 'Home maker', 17000.00, 1, 17000.00, 20000.00, 'Chennai iyyanavaram', 'Chennai', '2211250003', '', '2', 'upload_files/candidate_tracker/2799513331_DOC-20221108-WA0001..pdf', NULL, '1', '2022-11-25', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'from aynavaram but from candiadate side not ok with our location.. in 1yr worked 2compaines.. focusing on sal .. ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 11:05:39', 1, '2022-11-25 11:55:39', 0, NULL, 1),
(11210, 'NIRUBAN CHAKRAVARTHY M', '2', '8610440679', '', 'Niruban746@gmail.com', '1994-10-24', 28, '3', '2', 'Muniyandi', 'Buisness', 20000.00, 2, 0.00, 3.00, 'Madurai', 'Chennai', '2211250004', '', '1', 'upload_files/candidate_tracker/87438445887_Niruban.docx (1).pdf', NULL, '1', '2022-11-25', 0, '', '2', '97', NULL, 0.00, '', '0', NULL, '2', 'from guvi ins.. has basic knowledege in front end.. he need to check TxxampC with his family .. If he come back will check again', '2', '1', '0', '1', '1', '0', '2', '2022-11-28', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 11:08:55', 1, '2022-11-25 11:11:53', 0, NULL, 1),
(11211, 'Vinod kumar Patrick', '16', '9840801888', '9003127355', 'vinodkumat.t287@gmail.com', '1987-04-24', 35, '3', '1', 'Sagaya mary', 'House wife', 40000.00, 1, 35000.00, 35000.00, 'Perambur', 'Perambur', '2211250005', '', '2', 'upload_files/candidate_tracker/18239113421_C U R R I C U L U M V I T A E - Vinod Kumar. T.doc', NULL, '1', '2022-11-25', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 11:58:23', 1, '2022-11-25 02:38:12', 0, NULL, 1),
(11212, 'Thowfeek Rahman', '33', '8056329238', '8667347545', 'Thowfeek7@gmail.com', '2000-04-15', 22, '2', '2', 'Fowziya', 'None', 7000.00, 1, 0.00, 14000.00, 'purasaiwalkam', 'purasaiwalkam', '2211250006', '1', '1', 'upload_files/candidate_tracker/25829630610_Resume_Thowfeek Rahman_Format7(1).pdf', NULL, '1', '2022-11-25', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'zero understanding.. not suit for our roles..', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-25 11:59:45', 85, '2022-11-25 06:08:32', 0, NULL, 1),
(11213, 'CELSI ALOYSIUS A', '4', '9025893674', '', 'jensijensi1515@gmail.com', '2000-08-21', 22, '3', '2', 'Amalanathan J', 'Tailor', 20000.00, 0, 16000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2211250007', '', '2', 'upload_files/candidate_tracker/78200278106_CELSI ALOYSIUS A (Resume).pdf', NULL, '1', '2022-11-25', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 12:18:40', 1, '2022-11-25 12:23:32', 0, NULL, 1),
(11214, 'Archana', '4', '9360753142', '', 'Archanavenkat2001@gmail.com', '2001-08-13', 21, '2', '2', 'Venkatesan', 'Cooli', 11000.00, 1, 12000.00, 15000.00, 'Chrompet', 'Chrompet', '2211250008', '3', '2', 'upload_files/candidate_tracker/9361464877_Archana. V resume.pdf', NULL, '1', '2022-11-25', 0, '', '3', '59', '2022-11-28', 151584.00, '', '5', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-25 02:13:45', 60, '2022-11-25 07:22:45', 0, NULL, 1),
(11215, 'Ranjitha', '5', '7806840763', '', 'ranjib126200@gmail.com', '2000-06-12', 22, '2', '2', 'Babu', 'Farmer', 80000.00, 1, 12000.00, 14000.00, 'Thiruvanamalai', 'Chennai', '2211250009', '3', '2', 'upload_files/candidate_tracker/77195033153_Ranjitha B.pdf', NULL, '1', '2022-11-25', 0, '', '3', '59', '2022-11-28', 151584.00, '', '5', '1970-01-01', '2', 'Selected for B2B Consultant Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-25 02:14:12', 60, '2022-11-25 07:23:15', 0, NULL, 1),
(11216, 'K E Priya', '33', '7075833749', '', 'Priyaekambaram2000@gmail.com', '2000-02-23', 22, '3', '2', 'K V Ekambaram', 'Labour', 200000.00, 2, 0.00, 15000.00, 'Andhrapradesh', 'Andhrapradesh', '2211250010', '', '1', 'upload_files/candidate_tracker/37091328294_1_Share K E PRIYA_1659359610346_Priya_1664633231086_Priya.doc', NULL, '3', '2022-11-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-25 05:06:03', 1, '2022-11-25 05:13:31', 0, NULL, 1),
(11217, 'J.vimal devi', '16', '7550238461', '8148998428', 'vimaldevijanakiraman@gmail.com', '2002-08-03', 20, '2', '2', 'Amul.J', 'Gaudern', 10000.00, 1, 0.00, 15000.00, 'Singaperumal kovil', 'Singaperumal kovil', '2211260001', '3', '1', 'upload_files/candidate_tracker/85303052623_Vimal Devi.J_Resume_1667653228309_J.Vimal Devi_1667654025854_J.Vimal Devi.pdf', NULL, '1', '2022-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-26 10:29:16', 1, '2022-11-30 09:57:12', 0, NULL, 1),
(11218, '', '0', '8925429529', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211260002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-26 02:01:13', 0, NULL, 0, NULL, 1),
(11219, '', '0', '9962944517', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211260003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-26 05:48:58', 0, NULL, 0, NULL, 1),
(11220, '', '0', '7338844974', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211260004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-26 05:50:40', 0, NULL, 0, NULL, 1),
(11221, '', '0', '6369675262', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211260005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-26 11:30:47', 0, NULL, 0, NULL, 1),
(11222, 'Vennila.R', '4', '9626542215', '', 'vennilamalar1998@gmail.com', '1998-04-01', 24, '2', '2', 'N.Rajendran', 'Farmer', 35000.00, 3, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2211280001', '1', '1', 'upload_files/candidate_tracker/36588395816_venila resume.pdf', NULL, '3', '2022-11-28', 0, '', '3', '59', '2022-12-09', 138948.00, '', '3', '2022-11-24', '2', 'Selected for Sithyvinayagam team in Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 09:38:10', 60, '2022-12-06 06:33:54', 0, NULL, 1),
(11223, 'sathish Kumar.S', '2', '9444579525', '', 'sathishsk25501@gmail.com', '2001-05-25', 21, '2', '2', 'c.sekar', 'worker', 20000.00, 1, 0.00, 180000.00, 'sholinghur', 'kodambakkam', '2211280002', '1', '1', 'upload_files/candidate_tracker/14788963721_Sathish-kumar resume.pdf', NULL, '1', '2022-11-28', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Internship Exp Certificate is on hold with Agaram infotech,He need time to confirm the TxxampC if he comes back with his confirmation let us try', '2', '1', '', '1', '1', '', '2', '2022-11-30', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 09:43:02', 99, '2022-11-29 09:20:36', 0, NULL, 1),
(11224, 'Deepika', '16', '8939767761', '', 'Deepikaguna1107@gmail.com', '2000-07-11', 22, '3', '2', 'Gunasekaran', 'Hinduja foundries', 360000.00, 1, 13000.00, 15000.00, 'Chennai', 'Chennai', '2211280003', '', '2', 'upload_files/candidate_tracker/13805597198_Deepika.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication no Checked for Sales Not open for that too', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 09:56:39', 1, '2022-11-28 10:55:50', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11225, 'A.S.PRASSHANTH', '6', '9445455694', '7904865184', 'asprasshanth@yahoo.com', '1997-05-26', 25, '3', '2', 'R.G.SIVAKKUMAR', 'SUPERVISOR', 25000.00, 1, 0.00, 12000.00, 'MADHAVARAM MILK COLONY', 'MADHAVARAM MILK COLONY, CHENNAI', '2211280004', '', '1', 'upload_files/candidate_tracker/54597155108_PDF Scanner 28-11-22 10.34.52.pdf', NULL, '1', '2022-11-28', 0, '', '3', '59', '2022-12-08', 186000.00, '', '', '2022-12-23', '1', 'Selected for Thiyagu Team in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-28 10:15:40', 60, '2022-12-05 03:55:13', 0, NULL, 1),
(11226, 'Arunkumar S', '31', '8072624834', '9790474529', 'arunkumaa6@gmail.com', '1999-10-26', 23, '2', '2', 'Muthumari S', 'farmer', 6000.00, 2, 0.00, 200000.00, 'Sattur, Virudhunagar (dist)', 'Perungudi, Chennai.', '2211280005', '1', '1', 'upload_files/candidate_tracker/59096367798_Arunkumar S_resume.pdf', NULL, '1', '2022-11-28', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge can be trained need time to check with parents and confirm the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-11-30', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 10:20:24', 99, '2022-11-29 09:21:14', 0, NULL, 1),
(11227, 'Jothika. G', '16', '7449253950', '9176881127', 'jothikagopi27@gmail.com', '2001-09-27', 21, '2', '2', 'Gopi k', 'Carpenter', 10000.00, 1, 0.00, 15000.00, 'Nil', 'Purasaiwalkam', '2211280006', '3', '1', 'upload_files/candidate_tracker/64703792167_CV. jo.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication not suitable for MIS and not open for telecaller ', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 10:52:48', 1, '2022-11-28 10:58:10', 0, NULL, 1),
(11228, 'Vinotha k', '4', '9150951994', '', 'vinovinotha64@gmail.com', '2001-06-06', 21, '3', '2', 'Karunanithi', 'Labour', 30000.00, 2, 0.00, 10000.00, 'Kalaingar nagar', 'Kalaingar nagar', '2211280007', '', '1', 'upload_files/candidate_tracker/31978719301_vinotha.k Resume.pdf', NULL, '1', '2022-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 10:53:30', 1, '2022-11-28 11:05:10', 0, NULL, 1),
(11229, 'Akash. V', '4', '8056107718', '9042603598', 'vgakash9042@gmail', '2001-02-03', 21, '2', '2', 'Venkatesan', 'Coolie', 140000.00, 1, 0.00, 14000.00, 'No.10/19,sathani pet 2nd st,Guindy, ch-32', 'Chennai', '2211280008', '3', '1', 'upload_files/candidate_tracker/65283728270_DOC-20221107-WA0002..pdf', NULL, '1', '2022-11-28', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Communication ok Have 6 months Exp but seems to be slow kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 10:56:41', 1, '2022-11-28 11:21:53', 0, NULL, 1),
(11230, 'r subi', '4', '7094221713', '9159256177', 'subirengaraj226@gmail.com', '2001-04-22', 21, '3', '2', 'rengaraj l', 'cooli', 20000.00, 2, 0.00, 10000.00, 'vallam', 'vallam', '2211280009', '', '1', 'upload_files/candidate_tracker/46999765199_SUBI Resume .pdf', NULL, '1', '2022-11-28', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 11:05:57', 1, '2022-11-28 11:32:21', 0, NULL, 1),
(11231, 'Harini', '4', '9952245601', '9025198702', 'harinirenga79@gmail.com', '2000-09-07', 22, '2', '2', 'Parent', 'Working', 15000.00, 0, 15000.00, 20000.00, 'Srivilliputhur', 'Kodambakkam chennai', '2211280010', '1', '2', 'upload_files/candidate_tracker/22696773522_1669614179854_1669614175991_Harini Resume-1.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok very high exp will take several leaves and will not sustain in a long on our roles not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 11:10:08', 99, '2022-11-29 09:21:57', 0, NULL, 1),
(11232, 'Bhuvaneswari M', '4', '8754132211', '9952245601', 'bhuvaneswarimurugan25@gmail.com', '2000-11-22', 22, '2', '2', 'Murugan S', 'highersecondary education', 20000.00, 1, 0.00, 12000.00, 'Virudhunagar', 'Kodambakkam', '2211280011', '1', '1', 'upload_files/candidate_tracker/62157686334_Resume Bhuvaneswari.docx', NULL, '1', '2022-11-28', 0, '', '3', '59', '2022-12-01', 138948.00, '', '3', '2023-03-13', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 11:10:33', 60, '2022-11-29 10:32:34', 0, NULL, 1),
(11233, 'Madhusri Malaisamy', '4', '9025198702', '9952245601', 'malaimadhusri@gmail.com', '2001-02-04', 21, '2', '2', 'E.Malaisamy', 'Driver', 20000.00, 2, 0.00, 14000.00, 'Virudhunagar', 'Kodampakkam', '2211280012', '1', '1', 'upload_files/candidate_tracker/32933663975_resume.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice no communication', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 11:11:07', 99, '2022-11-29 09:22:25', 0, NULL, 1),
(11234, 'Sakthipriya S', '6', '9688475817', '', 'sakthipriyap812@gmail.com', '2002-12-20', 19, '2', '2', 'Subramaniam S', 'Labour', 17000.00, 1, 0.00, 10000.00, 'Erode', 'Erode', '2211280013', '1', '1', 'upload_files/candidate_tracker/80452975296_Document.docx', NULL, '1', '2022-11-29', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'sustainability doubt and also she is not hold the pressure', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-28 11:20:48', 85, '2022-11-29 11:58:18', 0, NULL, 1),
(11235, 'Thaiamma', '4', '9884984187', '', 'mahimahiaravind40866@gmail.com', '2001-10-06', 21, '2', '2', 'Mohammad noushath', 'Real estate', 20000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2211280014', '1', '2', 'upload_files/candidate_tracker/98218840328_kutty swe.pdf', NULL, '3', '2022-11-28', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2022-11-28 11:22:26', 1, '2022-11-28 11:30:35', 0, NULL, 1),
(11236, 'Bakkiyaraj', '7', '9751612154', '6382595530', 'hellobakkiyaraj@gmail.com', '1988-07-18', 34, '2', '1', 'Elumalai', 'T', 75000.00, 0, 20000.00, 5.00, 'Chennai', 'Thiruvanmiyur', '2211280015', '1', '2', 'upload_files/candidate_tracker/67032982277_BAKKIYARAJ E.docx', NULL, '1', '2022-11-28', 5, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-11-28 11:26:27', 1, '2022-11-28 11:43:37', 0, NULL, 1),
(11237, 'Y.Ruby', '4', '7695802004', '7871238518', 'yruby2223@gmail.com', '1999-11-08', 23, '1', '1', 'P. Rajamani', 'CRM in vidal health insurance', 18000.00, 1, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2211280016', '', '1', 'upload_files/candidate_tracker/2998285859_DocScanner 22-Nov-2022 7-12 am-1.pdf', NULL, '1', '2022-11-28', 0, 'Environment', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Non Voice no communication not suitable for our roles', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 11:43:55', 1, '2022-11-28 12:02:14', 0, NULL, 1),
(11238, 'Bakkiyaraj.e', '7', '6382595530', '9751612154', 'hellobakkiyaraj@gmail.com', '1988-07-18', 34, '2', '1', 'Elumalai', 'Kuli', 100000.00, 3, 20000.00, 5.00, 'Chennai', 'Thiruvanmiyur', '2211280017', '1', '2', 'upload_files/candidate_tracker/20575424075_BAKKIYARAJ E.docx', NULL, '1', '2022-11-28', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Not suitable for our MF Roles not open for telesales', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1001', '0', NULL, NULL, NULL, 1, '2022-11-28 11:50:11', 1, '2022-11-28 11:55:22', 0, NULL, 1),
(11239, 'Chinnaraj', '4', '7338889278', '9940208301', 'chinnaraj632@gmail.com', '2001-03-02', 21, '3', '2', 'Durai', 'Toys', 14000.00, 1, 0.00, 15000.00, 'Chennai', 'Nanganallur', '2211280018', '', '1', 'upload_files/candidate_tracker/13583639994_Chinnaraj Resume.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not suitable for Voice Process will not handle pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 12:17:02', 1, '2022-11-28 12:35:40', 0, NULL, 1),
(11240, 'ARIVENTHAN', '4', '9344096320', '', 'aarivu550@gmail.com', '2002-02-06', 20, '3', '2', 'K. VEERAPPAN', 'Agriculture', 8000.00, 1, 0.00, 15000.00, 'Kubakonam', 'Gunidy', '2211280019', '', '1', 'upload_files/candidate_tracker/20344259908_ARIVENTHAN (1).docx', NULL, '1', '2022-11-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Flow of Communication Much comfort in non voice he is not much open with target not suitable', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 12:18:43', 1, '2022-11-28 12:48:14', 0, NULL, 1),
(11241, 'Vishwapriya', '16', '7200185542', '', 'priyakp690@gmail.com', '1999-05-16', 23, '2', '1', 'Kumar', 'Business', 30000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2211280020', '1', '2', 'upload_files/candidate_tracker/56561696073_Viswapriya.pdf', NULL, '1', '2022-11-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suit for MIS checked for Telecaller and asked her to come for 2nd round but she didnt appear', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-28 12:38:08', 99, '2022-11-28 01:24:32', 0, NULL, 1),
(11242, 'VINITHA P', '16', '7338786813', '', 'vinithaece2013@gmail.com', '1996-08-13', 26, '1', '2', 'Parent', 'Farmer', 40000.00, 3, 22500.00, 35000.00, 'Kallakkurichi', 'Sholinganallur', '2211280021', '', '2', 'upload_files/candidate_tracker/43807190636_MY RESUME Oct22.pdf', NULL, '1', '2022-11-28', 15, 'P1269', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication Average and not much comfort in written communication Exp is min 25-20K Will not sustain in our roles', '3', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 12:58:35', 1, '2022-11-28 01:04:57', 0, NULL, 1),
(11243, 'Neha Gupta', '11', '8145338884', '', 'nehagrullzz@gmail.com', '1992-05-31', 30, '3', '2', 'Self', 'Freelancer in private tutoring Since 7+ yrs', 80000.00, 0, 0.00, 30000.00, 'Siliguri, West Bengal', 'Chepauk, chennai', '2211280022', '', '1', 'upload_files/candidate_tracker/77282731987_neha\'s resume.docx', NULL, '1', '2022-11-28', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for Product No Local Communication 2nd round with Gokul need to confirm the candidate later', '6', '2', '0', '1', '1', '0', '2', '2022-11-30', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 02:36:32', 1, '2022-11-28 02:47:18', 0, NULL, 1),
(11244, 'Farisha A', '33', '9597209756', '', 'Farishaa_com@spiher.ac.in', '1999-09-06', 23, '3', '2', 'Parent', 'Nil', 30000.00, 1, 0.00, 15000.00, '15c karukuzhai street periyakuppam thiruvallur', 'Thiruvallur', '2211280023', '', '1', 'upload_files/candidate_tracker/15757552661_FARISHA-1 resume.docx', NULL, '1', '2022-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '4', '1', '0', '1', '3', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 05:17:30', 1, '2022-11-28 05:21:39', 0, NULL, 1),
(11245, 'Gowtham a', '6', '9677361998', '9626332833', 'gowtham14197@gmail.com', '1997-05-30', 25, '2', '1', 'M.ARIVALAGAZAN', 'Jobless', 50000.00, 1, 23000.00, 20000.00, 'Erode', 'Erode', '2211280024', '1', '2', 'upload_files/candidate_tracker/46087611824_Gowtham Resume.docx', NULL, '1', '2022-11-29', 15, '', '3', '59', '2022-12-14', 202104.00, '', '6', '2023-02-17', '1', 'Selected for Suthagar Team in Consultant Role', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-28 06:29:51', 60, '2022-12-09 06:07:43', 0, NULL, 1),
(11246, 'Vignesh sampath', '20', '9087554972', '8682913728', 'mancomputer88@gmail.com', '1998-02-19', 24, '2', '2', 'Parent', 'Saree seller', 100000.00, 1, 2.00, 27000.00, 'Kanchipuram', 'Kanchipuram', '2211280025', '1', '2', 'upload_files/candidate_tracker/51367841756_Vignesh Sampath Resume .pdf', NULL, '2', '2023-09-29', 30, '', '4', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile have exp in sales but sustainability doubts in our profile kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2022-11-28 07:15:01', 104, '2023-09-29 04:53:23', 0, NULL, 1),
(11247, 'Dineshkumar G', '6', '6369633289', '6374619269', 'dinukutty03@gmail.com', '2002-01-03', 20, '2', '2', 'Gopal A', 'Tailor', 16000.00, 2, 0.00, 12000.00, 'Bhavani', 'Bhavani', '2211280026', '1', '1', 'upload_files/candidate_tracker/42652155254_dineshkumar.GJ.pdf', NULL, '1', '2022-11-29', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected with ramesh sir, he told not suitable for sales', '5', '2', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-28 07:50:29', 85, '2022-11-29 12:11:29', 0, NULL, 1),
(11248, 'Muniyaraj', '13', '9750588413', '', 'smuniyaraja98@gmail.com', '1998-04-18', 24, '3', '2', 'Saravanan', 'IT', 20000.00, 3, 12000.00, 25000.00, 'Rajapalayam', 'Choolaimedu', '2211280027', '', '2', 'upload_files/candidate_tracker/81782861766_updated-resume-1.pdf', NULL, '1', '2022-12-03', 2, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-28 09:14:24', 1, '2022-11-28 09:19:24', 0, NULL, 1),
(11249, '', '0', '9363537752', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211290001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-29 09:51:44', 0, NULL, 0, NULL, 1),
(11250, 'lavanesh', '4', '8825744276', '', 'lavaneshsank@gmail.com', '1996-05-30', 26, '2', '2', 'sankar', 'police', 40000.00, 1, 18000.00, 20000.00, 'tambaram', 'tambaram', '2211290002', '1', '2', 'upload_files/candidate_tracker/54480127633_LAVANESH S-3.pdf', NULL, '1', '2022-11-30', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 10:37:43', 85, '2022-11-30 10:22:45', 0, NULL, 1),
(11251, 'Mohamed anas', '31', '7094209939', '', 'mdanas1899@gmail.com', '1999-08-18', 23, '2', '2', 'Zahir hussain', 'Abroad', 20000.00, 1, 0.00, 13000.00, '3/158bismi street, sankaranpandal', 'Madras mansion, triplicane', '2211290003', '1', '1', 'upload_files/candidate_tracker/13123551907_Anas (2).pdf', NULL, '1', '2022-11-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very fresher no basic knowledge in skills need time to confirm his interest,long run need to check if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-29 10:39:26', 99, '2022-11-29 04:13:30', 0, NULL, 1),
(11252, 'Jagan narayanan k', '4', '6383275016', '', 'jagannarayanan6@gmail.com', '2000-08-13', 22, '2', '2', 'Kathavarayan', 'Sewing machine centre', 200000.00, 1, 14500.00, 20000.00, 'Choolaimedu', 'Choolaimedu', '2211290004', '3', '2', 'upload_files/candidate_tracker/47748256992_WorkIndia Resume - Jagan narayanan.pdf', NULL, '1', '2022-11-29', 10, '', '3', '59', '2022-12-01', 183156.00, '', '0', NULL, '2', 'Selected for Banu Team need to confirm the Role', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 10:40:05', 1, '2022-11-29 10:52:48', 0, NULL, 1),
(11253, 'A Karthick priyan', '4', '9345133938', '6369661412', 'priyankarthick923@gmail.com', '2000-06-04', 22, '2', '2', 'Anguraj', 'Daily income', 18000.00, 1, 0.00, 14000.00, 'Chennai', 'Chennai', '2211290005', '1', '1', 'upload_files/candidate_tracker/96664251333_karthik.pdf', NULL, '1', '2022-11-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable need to open a lot will not sustain in our roles', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 11:03:18', 85, '2022-11-29 11:56:45', 0, NULL, 1),
(11254, 'B.annamqlai', '6', '9884073211', '', 'Annamalaianna1994@gmail.com', '2007-11-29', 0, '2', '1', 'N.jayanthi', 'House wife', 14000.00, 0, 14000.00, 18000.00, 'Aminjikarai', 'Aminjikaram', '2211290006', '3', '2', 'upload_files/candidate_tracker/63425680153_Doc3.docx', NULL, '1', '2022-11-29', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot Communication not upto the mark for Telecaller will not sustain and handle our Pressure', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 11:17:21', 1, '2022-11-29 11:24:50', 0, NULL, 1),
(11255, 'arshad husham', '20', '7092830470', '', 'arshadhushamhussainibrahim297@gmail.com', '1998-11-23', 24, '2', '2', 'hussain basha', 'pumbler', 17000.00, 0, 0.00, 14000.00, 'chennai', 'chennai', '2211290007', '1', '1', 'upload_files/candidate_tracker/99789835161_Arshad_Resume.pdf', NULL, '1', '2022-11-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills need to learn a lot let him learn and come', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-29 11:17:59', 99, '2022-11-30 09:43:13', 0, NULL, 1),
(11256, 'Rajashree', '4', '6382588421', '', 'rjsri02@gmail.com', '2002-03-30', 20, '2', '2', 'Thirunavukkarasu', 'Daily wages', 60000.00, 2, 0.00, 13000.00, 'Kumbakonam', 'Poonamallee', '2211290008', '1', '1', 'upload_files/candidate_tracker/53195464933_CV_2022112219334141.pdf', NULL, '1', '2022-11-29', 0, '', '3', '59', '2022-12-01', 138948.00, '', '4', '2023-02-01', '2', 'Selected for Consultant Role B2B', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 12:22:06', 60, '2022-11-29 05:58:38', 0, NULL, 1),
(11257, 'Panjalai', '11', '7358187821', '', 'susivelnu38@gmail.com', '1999-08-03', 23, '2', '2', 'Palanivel', 'Security @', 200000.00, 3, 240000.00, 280000.00, '3/14, Vellaiyur, Ulundurpet , Kallakurich', '1st Cross street, Sathya Nagar, Ramapuram, Mumbai', '2211290009', '1', '2', 'upload_files/candidate_tracker/40521255688_Panjalai.pdf', NULL, '1', '2022-11-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication ok have exp in recruitment but no sustainability need to check ', '6', '1', '', '1', '1', '', '2', '2022-12-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-29 12:23:32', 99, '2022-11-29 04:14:10', 0, NULL, 1),
(11258, 'Deepa', '16', '9940079319', '9003131105', 'deepavaradhan686@gmail.com', '1994-07-18', 28, '4', '1', 'Naga Dhana sekhar', 'Software', 30000.00, 1, 15000.00, 23000.00, 'Chrompet', 'Chrompet', '2211290010', '', '2', 'upload_files/candidate_tracker/19919653657_Deepa resume updates-MIS-converted.pdf', NULL, '1', '2022-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communicaiton Average no written skills not open for telecaller profile too', '3', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 12:26:58', 1, '2022-11-29 12:33:12', 0, NULL, 1),
(11259, 'Durgadevi', '4', '6374265524', '', 'durgakrishnan1910@gmail.com', '2001-10-19', 21, '2', '2', 'Gopalakrishnan', 'Daily wages', 60000.00, 1, 0.00, 13000.00, 'Mayilaadudurai', 'Poonamallee', '2211290011', '1', '1', 'upload_files/candidate_tracker/61146342766_CV_2022112215445695.pdf', NULL, '1', '2022-11-29', 0, '', '3', '59', '2022-12-01', 138948.00, '', '4', '2023-02-01', '2', 'Selected for Consultant Role B2B', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 12:35:28', 60, '2022-11-29 05:56:30', 0, NULL, 1),
(11260, 'Mohamed eliyas', '16', '8072172350', '', 'Liyasag25@gmail.com', '1998-06-25', 24, '2', '2', 'Abitha (mother)', 'House wife', 12500.00, 1, 14500.00, 25000.00, 'Kodungaiyur', 'Kodungaiyur', '2211290012', '1', '2', 'upload_files/candidate_tracker/49715962828_Mohamed.pdf', NULL, '1', '2023-02-16', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication Have Non voice Exp Will not handle our work pressure and sustainability doubts not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 12:49:16', 85, '2023-02-16 10:52:16', 0, NULL, 1),
(11261, 'Mahaprabu M', '14', '7904653247', '', 'mahaprabu9008@gmail.com', '2007-11-29', 0, '3', '2', 'Mayilsamy', 'Farmer', 15000.00, 1, 0.00, 350000.00, 'Salem', 'Salem', '2211290013', '', '1', 'upload_files/candidate_tracker/74033792113_Resume updated.pdf', NULL, '1', '2022-11-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Came forJob Fair no basic ideas in Javascript,need to learn only SQL knowledge if he comes back let us try', '2', '2', '0', '2', '2', '0', '2', '2022-12-02', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 03:31:09', 1, '2022-11-29 03:34:28', 0, NULL, 1),
(11262, 'Kavin J', '31', '7530092574', '6383604044', 'kavinj8969@gmail.com', '1999-04-11', 23, '3', '2', 'JAYAMANI T', 'Power Loom', 10000.00, 1, 0.00, 25000.00, 'Salem', 'Chennai', '2211290014', '', '1', 'upload_files/candidate_tracker/49739123117_KAVIN. J_RESUME.pdf', NULL, '1', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Very fresher no basic skills need time to learn later after a month if he come let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 03:48:25', 1, '2022-11-29 03:54:13', 0, NULL, 1),
(11263, 'Karthi', '4', '9361399021', '9150709869', 'rkarthi7321@gmail.com', '2001-07-03', 21, '2', '2', 'Ravichandran', 'Farmer', 50000.00, 2, 0.00, 20000.00, '158 Che Naachipattu chengam 606709Tiruvannamalai', 'No 5 thangam colony Anna Nagar Chennai 600040', '2211290015', '1', '1', 'upload_files/candidate_tracker/14233030349_Karthi R CV.docx', NULL, '1', '2022-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice not suitable', '1', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-29 06:31:07', 85, '2022-11-30 12:53:33', 0, NULL, 1),
(11264, 'Shobana', '22', '9841272365', '', 'shobanaparamasivan07@gmail.com', '2000-07-10', 22, '3', '2', 'Paramasivan', 'Electrician', 15000.00, 0, 0.00, 15000.00, 'Taramani chennai', 'Taramani chennai', '2211290016', '', '1', 'upload_files/candidate_tracker/30194372496_CV_2022112313475585.pdf', NULL, '1', '2022-12-01', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 06:47:58', 1, '2022-11-29 06:52:55', 0, NULL, 1),
(11265, '', '0', '7358505450', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211290017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-29 08:03:28', 0, NULL, 0, NULL, 1),
(11266, 'Rajasekar', '4', '7092863033', '', 'rajasekar19011998@gmail.com', '1998-01-19', 24, '3', '2', 'Ramesh kumar', 'Agriculture', 20000.00, 2, 0.00, 15000.00, 'Vandhavasi, thellar', 'Tambaram', '2211290018', '', '1', 'upload_files/candidate_tracker/90699817329_my resume.docx', NULL, '1', '2022-11-29', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-29 09:06:11', 1, '2022-11-29 09:16:14', 0, NULL, 1),
(11267, '', '0', '9743323456', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2211300001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-11-30 08:49:54', 0, NULL, 0, NULL, 1),
(11268, 'B.krithiga', '16', '9751061778', '9444068431', 'krithiga261@gmail.com', '2002-01-26', 20, '2', '2', 'Balasundram', 'Farmer', 17000.00, 2, 0.00, 15000.00, 'Chengalpattu', 'Chengalpattu', '2211300002', '3', '1', 'upload_files/candidate_tracker/38580401831_B.KRITHIGA (RESUME ).docx', NULL, '1', '2022-11-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 09:36:34', 1, '2022-11-30 09:51:33', 0, NULL, 1),
(11269, 'N.Muthumari', '26', '7358892958', '9940351248', 'muthumariece42@gmail.com', '1994-06-07', 28, '2', '1', 'm.ramesh', 'working in pvt company', 30000.00, 2, 14000.00, 18000.00, 'ramapuram', 'ramapuram', '2211300003', '3', '2', 'upload_files/candidate_tracker/87142276646_muthumari.pdf', NULL, '1', '2022-11-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication not suitable for MIS not open for telecaller profile too', '7', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 10:17:32', 1, '2022-11-30 10:34:48', 0, NULL, 1),
(11270, 'S. Umadevi', '4', '9944388890', '', 'umadevi12051999@gmail.com', '1999-05-12', 23, '2', '2', 'U. Sokkar', 'Daily wages', 17000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2211300004', '1', '1', 'upload_files/candidate_tracker/60294095414_5_6068637919931795160.pdf', NULL, '1', '2022-11-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'looking for non voice process only', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-30 10:22:28', 85, '2022-11-30 10:56:19', 0, NULL, 1),
(11271, 'Victrin bella sony', '11', '8939636370', '', 'victrinsony@gmail.com', '1986-08-04', 36, '2', '1', 'Raja paul', 'Soft Engineer', 70000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2211300005', '1', '1', 'upload_files/candidate_tracker/64311623180_Victrin_HR.docx', NULL, '1', '2022-11-30', 0, '', '3', '59', '2022-12-06', 144000.00, '', '4', '2023-03-27', '1', 'Selected for MF 3 months intern 8K Stipend then 12-14K 1.5-2yrs SA', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '4', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2022-11-30 10:55:48', 60, '2022-12-07 05:05:37', 0, NULL, 1),
(11272, 'NAVEENDRAN. C', '24', '9841186542', '7010363700', 'Naveendran2244@gmail.com', '1999-02-10', 23, '2', '2', 'Chinnaswamy.m', 'Office admin', 38000.00, 1, 0.00, 15000.00, 'Padi', 'Padi', '2211300006', '3', '1', 'upload_files/candidate_tracker/21911847566_NAVEENDRAN RESUME.pdf', NULL, '1', '2022-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Calling Will not sustain and not suitable', '8', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-30 11:11:50', 60, '2022-11-30 08:36:17', 0, NULL, 1),
(11273, 'Poornima', '4', '8148546571', '', 'P80592606@gmail.com', '1994-07-10', 28, '2', '1', 'Kanchana', 'BSC clinical nutrition and dietician', 60.00, 3, 0.00, 20.00, '37/64 vanniyampathi Street RA puram chennai-28', '37/64 vanniyampathi Street RA puram chennai-28', '2211300007', '1', '1', 'upload_files/candidate_tracker/59276028062_Poornima.N-1.pdf', NULL, '1', '2022-11-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open up a lot not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-30 11:43:32', 99, '2022-12-01 11:17:03', 0, NULL, 1),
(11274, 'Swapna b c', '5', '8792114960', '8861545735', 'Swapnachandra203@gmail.com', '2000-04-04', 22, '1', '2', 'Chandrakanth', 'Diplom', 100000.00, 1, 15000.00, 18000.00, 'Hassan', 'Rajajinagar', '2211300008', '', '2', 'upload_files/candidate_tracker/12723814489_Swapna Resume.doc', NULL, '1', '2022-11-30', 30, 'CA168', '3', '59', '2022-12-08', 216000.00, '', '4', '2023-04-19', '2', 'Selected for ESales Mohanraj Team in Consultant Role', '5', '1', '1', '2', '2', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-30 11:47:00', 60, '2022-12-05 03:33:26', 0, NULL, 1),
(11275, 'VALLARASU V', '4', '9597588497', '9500479664', 'dineshvallaa77@gmail.com', '2000-10-10', 22, '2', '2', 'VIJENDIRAN', 'FARMER', 60000.00, 2, 0.00, 15000.00, 'Vaiyacheri,purakkudi', 'Vaiyacheri,purakkudi', '2211300009', '1', '1', 'upload_files/candidate_tracker/62799709764_Resume_MY RESUME_Format2 (1).pdf', NULL, '1', '2022-11-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not intrested in job sustainablity issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-30 12:15:22', 85, '2022-11-30 12:33:53', 0, NULL, 1),
(11276, 'RANJITH.L', '4', '7418616169', '8525968814', 'rranjith6884@gmail.com', '2001-07-17', 21, '2', '2', 'Loganathan', 'Farmer', 60000.00, 2, 0.00, 15000.00, 'Annapanpettai', 'Annapanpettai', '2211300010', '1', '1', 'upload_files/candidate_tracker/79775327762_imgtopdf_3011221237020.pdf', NULL, '1', '2022-11-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not talkactive and not fit for team also ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-30 12:15:55', 85, '2022-11-30 02:37:10', 0, NULL, 1),
(11277, 'Pavithra', '4', '7871395513', '8015577745', 'Pavithamana11@gmail.com', '1999-03-11', 23, '2', '1', 'Mohanraj', 'Electrical supervisor', 30000.00, 1, 14500.00, 19000.00, 'Tirupattur district', 'Palavaram', '2211300011', '3', '2', 'upload_files/candidate_tracker/54465167678_pavithra Resumae.pdf', NULL, '1', '2022-11-30', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in calling but not much comfort in distance Sustainability doubts check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 12:16:03', 1, '2022-11-30 12:34:18', 0, NULL, 1),
(11278, 'Sathish Kumar. S', '6', '8973630482', '', 'Sathishranjith8@gmail.com', '2000-07-09', 22, '2', '2', 'Sanmugam', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Avalpoondhurai', 'Avalpoondhurai', '2211300012', '1', '1', 'upload_files/candidate_tracker/45619282203_sv.pdf', NULL, '1', '2022-11-30', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable for telecalling', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-30 12:24:51', 99, '2022-12-01 11:18:03', 0, NULL, 1),
(11279, 'Nandhini J', '4', '6382609107', '9597816495', 'nandhinijayaraman98@gmail.com', '1998-11-03', 24, '2', '2', 'Jayaraman', 'Farmer', 25000.00, 2, 0.00, 11000.00, 'Karur', 'Thanjavur', '2211300013', '1', '1', 'upload_files/candidate_tracker/94113966867__NANDHINI.J resume PDF.pdf', NULL, '1', '2022-11-30', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'due to low confidence in job ready to move any time native karur', '1', '1', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-11-30 02:23:26', 85, '2022-11-30 02:37:26', 0, NULL, 1),
(11280, 'Prasad. A', '6', '8428863732', '', 'Prasadsai3646@gmail.com', '2002-01-06', 20, '3', '2', 'Annamalai', 'Car driver', 25000.00, 2, 14000.00, 15000.00, 'Chennai', 'Aminjakari', '2211300014', '', '2', 'upload_files/candidate_tracker/6018953983_prasad.pdf', NULL, '1', '2022-11-30', 0, '', '5', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '9', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-30 02:36:20', 60, '2022-11-30 08:33:25', 0, NULL, 1),
(11281, 'Gengamirdham. J', '4', '9514324267', '', 'gengamirdham@gmail.com', '1999-08-28', 23, '1', '2', 'B. Jayakumar', 'Business', 30000.00, 1, 15000.00, 20000.00, 'Old washermenpet', 'Old washermenpet', '2211300015', '', '2', 'upload_files/candidate_tracker/88119604163_CV_2022110907482571.pdf', NULL, '1', '2022-11-30', 0, 'Direct walk in', '3', '59', '2022-12-07', 240000.00, '', '5', '1970-01-01', '2', 'Selected for Banu in Staff Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-11-30 02:52:31', 60, '2022-12-03 04:09:12', 0, NULL, 1),
(11282, 'Pavithra', '4', '7395843309', '', 'Annamalaikumar8084@gmail.com', '2001-08-01', 21, '2', '2', 'Annamalai', 'Daily wages', 10000.00, 2, 18000.00, 20000.00, 'Polur(Thiruvannamalai)', 'Ekkattuthangal', '2211300016', '3', '2', 'upload_files/candidate_tracker/85398160145_Pavithra.docx', NULL, '1', '2022-11-30', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 Profile have Exp in calling but much preferred for Non Voice Kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 03:10:26', 1, '2022-11-30 03:26:40', 0, NULL, 1),
(11283, 'KISHORE KUMAR R', '4', '9360690878', '9087262828', 'erohsik105@gmail.com', '2002-05-01', 20, '2', '2', 'RAJA V', 'BUISNESS', 16000.00, 1, 0.00, 15000.00, 'VADAPALANI', 'VADAPALANI', '2211300017', '1', '1', 'upload_files/candidate_tracker/7492174235_kishore resume 2.docx', NULL, '1', '2022-12-01', 0, '', '3', '59', '2022-12-07', 138948.00, '', '5', '1970-01-01', '2', 'Seleceyd for Banu in Consultant Role', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-30 07:02:25', 60, '2022-12-03 04:10:06', 0, NULL, 1),
(11284, 'Lalitha s', '11', '7305500136', '8122555864', 'Lalithasambasivam3@gmail.com', '2001-05-22', 21, '4', '2', 'Sambasivam', 'Coolie', 30000.00, 1, 14000.00, 25000.00, 'Chennai', 'Chennai', '2211300018', '', '2', 'upload_files/candidate_tracker/2727072326_Lalitha S Resume.docx', NULL, '1', '2022-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-11-30 07:20:04', 1, '2022-11-30 07:32:32', 0, NULL, 1),
(11285, 'abdul fasith', '31', '7373833534', '7010236003', 's.abdulfasith@gmail.com', '2001-07-16', 21, '2', '2', 'sheik abdullah', 'business', 40000.00, 0, 0.00, 300000.00, 'chennai', 'chennai', '2211300019', '1', '1', 'upload_files/candidate_tracker/41224264484_Resume.pdf', NULL, '1', '2022-12-01', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-11-30 08:28:03', 99, '2022-12-01 03:07:00', 0, NULL, 1),
(11286, 'Lingeshwaran M', '10', '6369273221', '9176508621', 'havocnaveen1806@gmail.com', '2001-06-18', 21, '2', '2', 'MANI A', '96000', 25000.00, 0, 0.00, 18000.00, 'Vyasarpadi Chennai 39', 'Vyasarpadi Chennai 39', '2212010001', '1', '1', 'upload_files/candidate_tracker/61420405077_lingesh resum.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for nonvoice no communication not suitable', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 04:21:22', 99, '2022-12-02 04:48:39', 0, NULL, 1),
(11287, 'pransthini', '4', '8925109642', '', 'prashtmk@gmail.com', '1997-10-23', 25, '2', '2', 'annamalai', 'farmer', 10000.00, 2, 0.00, 12000.00, 'thanjavur', 'chennai', '2212010002', '2', '1', 'upload_files/candidate_tracker/35010327355_DOC-20220530-WA0001..pdf', NULL, '1', '2022-12-01', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 09:32:11', 1, '2022-12-01 09:33:50', 0, NULL, 1),
(11288, 'PRADHAP J', '4', '6381235091', '8940107875', 'prathapj483@gamil.com', '2000-01-22', 22, '2', '2', 'JAYAVEL. M', 'EB', 25000.00, 1, 0.00, 16000.00, 'Marakkanam', 'Vadapalani', '2212010003', '1', '1', 'upload_files/candidate_tracker/274841702_Pradhap new Resume-1.pdf', NULL, '3', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Much focused in nonvoice will not sustain and not suitable for telecaller', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-01 09:55:06', 1, '2022-12-01 10:18:30', 0, NULL, 1),
(11289, 'Sandeep M', '27', '9500654277', '', 'sandeepabi1999@gmail.com', '2000-04-25', 22, '3', '2', 'Radha m', 'Labour', 60000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2212010004', '', '1', 'upload_files/candidate_tracker/96613964182_Sandeep resume1(3).pdf', NULL, '1', '2022-12-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 10:23:16', 1, '2022-12-01 10:27:11', 0, NULL, 1),
(11290, 'S. Gunaseelan', '16', '9087339145', '8056082870', 'Sgunaseelan1992@gmail.com', '1992-01-18', 30, '4', '2', 'T. Sukumar', 'Retrd govt employee', 10000.00, 1, 180000.00, 240000.00, 'Vanagaram', 'Vanagram', '2212010005', '', '2', 'upload_files/candidate_tracker/78415988625_S. Gunaseelan resume pdf.pdf', NULL, '1', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communicaiton not suitable', '3', '2', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 10:23:33', 1, '2022-12-01 10:36:24', 0, NULL, 1),
(11291, 'diviya', '4', '7358306684', '', 'dhivikutty7358@gmail.com', '2001-04-10', 21, '3', '2', 'manikanan', 'fruit seller', 10000.00, 1, 16000.00, 17000.00, 'chennai', 'chennai', '2212010006', '', '2', 'upload_files/candidate_tracker/51240609437_Divi_Resume.PDF', NULL, '1', '2022-12-01', 0, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'looking non voice, she cant handle pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 10:25:27', 1, '2022-12-01 11:03:46', 0, NULL, 1),
(11292, 'Atchaya.N', '5', '9080157824', '', 'atchuvani123@gmail.com', '2001-10-10', 21, '3', '2', 'Natarajan.R', 'Hotel', 10000.00, 2, 0.00, 12000.00, 'Mayiladuthurai', 'Poonnamallee', '2212010007', '', '1', 'upload_files/candidate_tracker/1798993279_CV_202211222014082.pdf', NULL, '1', '2022-12-01', 0, '', '3', '59', '2022-12-08', 138948.00, '', '4', '2023-02-01', '2', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-01 10:36:21', 60, '2022-12-03 04:11:18', 0, NULL, 1),
(11293, '', '0', '9894774362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212010008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-01 10:54:43', 0, NULL, 0, NULL, 1),
(11294, 'Sangeetha n', '4', '9952955069', '8056173751', 'sanghi1608n@gmail.com', '2000-08-16', 22, '2', '2', 'Santha.n', 'Chennai', 10000.00, 1, 0.00, 15000.00, 'Thomas mount Chennai 16', 'Thomas mount', '2212010009', '1', '1', 'upload_files/candidate_tracker/6246566374_SANGEETHA RESUME.docx', NULL, '1', '2022-12-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot will not handle our work pressure not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-01 11:10:53', 85, '2022-12-01 11:45:11', 0, NULL, 1),
(11295, 'k yeswanth', '20', '9398714146', '', 'sunnyyeswanth313@gmail.com', '1999-10-15', 23, '2', '2', 'k venkataramanachari', 'granite business', 400000.00, 1, 0.00, 18000.00, 'chittoor', 'chittoor', '2212010010', '3', '1', 'upload_files/candidate_tracker/72555572151_YESWANTH RESUME.pdf', NULL, '1', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'He is looking for finance and also very clear that he will not sustain in Telecaller for a long not suitable', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 11:17:04', 1, '2022-12-01 11:25:26', 0, NULL, 1),
(11296, 'Srirangaram.A', '2', '8667555096', '8675621904', 'Sriranga6198@gmail.com', '1998-01-06', 24, '2', '2', 'Ayachammy', 'Cooley', 10000.00, 2, 0.00, 13000.00, 'Chennai', 'Velachery', '2212010011', '1', '1', 'upload_files/candidate_tracker/16245266471_Srirangaram _Professional Resume – 02.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic Skills 2nd round interviewed by manikandan and rejected', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 12:40:10', 99, '2022-12-02 03:54:33', 0, NULL, 1),
(11297, 'Fajul Rahuman S', '4', '9944979571', '7010653920', 'fajulrahuman95@gmail.com', '1995-06-09', 27, '2', '2', 'Shahul hameed A', 'Farmer\'s', 25000.00, 1, 17000.00, 25000.00, 'Salem', 'Salem', '2212010012', '3', '2', 'upload_files/candidate_tracker/63745493506_Resume Fajul (1) (2).docx', NULL, '1', '2022-12-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Career Gap have exp in Post office no sustainability in the previous roles no telecalling Exp will not sustain', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 12:59:49', 1, '2022-12-01 01:03:27', 0, NULL, 1),
(11298, 'Thiyagarajan', '33', '9940340284', '', 'thiyagu2595@gmail.com', '1995-10-25', 27, '3', '1', 'Balamoorthy', 'Corporation', 12000.00, 0, 20000.00, 38000.00, 'Guduvancheri', 'Guduvancheri', '2212010013', '', '2', 'upload_files/candidate_tracker/54326272337_Resume-Thiyagarajan B.pdf', NULL, '1', '2022-12-01', 1, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'From guduvanchery...\nprefer to talk in tamil.. not suit for our MF .. Not Ok with sales process.. ', '4', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 01:20:31', 1, '2022-12-01 01:26:56', 0, NULL, 1),
(11299, '', '0', '9790832452', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212010014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-01 01:40:35', 0, NULL, 0, NULL, 1),
(11300, 'Muthukumar v', '2', '9360089918', '', 'kumarvpnr12@gmail.com', '1997-05-30', 25, '2', '2', 'Veeman', 'Farmer', 30000.00, 4, 0.00, 20000.00, 'Tenkasi', 'Ekkattuthagal', '2212010015', '1', '1', 'upload_files/candidate_tracker/57435593912_MUTHU V RESUME .pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have teaching exp and much focus for Java Django Career Gap will not sustain and not open for TxxampC', '2', '1', '', '1', '3', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 03:49:50', 99, '2022-12-02 03:54:58', 0, NULL, 1),
(11301, 'Akshaya.S', '22', '8778700745', '9445057092', 'akshayasai1924@gmail.com', '1998-07-19', 24, '2', '2', 'Poongothai.S', 'Self-employed', 150000.00, 1, 25000.00, 28000.00, 'Chennai', 'Chennai Shenoy nagar', '2212010016', '1', '2', 'upload_files/candidate_tracker/66443726797_Ak resume(1)-converted (1).pdf', NULL, '1', '2022-12-03', 15, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok,Have Exp in Content Writing But sustainability doubt in our role kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-01 04:15:55', 85, '2022-12-03 09:51:25', 0, NULL, 1),
(11302, 'jeeva t', '13', '9894417462', '', 'jeevathangaraj19@gmail.com', '2000-06-19', 22, '2', '1', 'thomson', 'business', 20000.00, 0, 0.00, 15000.00, 'chennnai', 'chennai', '2212010017', '2', '1', 'upload_files/candidate_tracker/7402571464_Cv-jeeva-M.Sc(Cs)-1.docx', NULL, '1', '2022-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 06:27:04', 1, '2022-12-01 06:31:33', 0, NULL, 1),
(11303, 'ashok kumar s', '5', '8667884235', '', 'hardyjaanu@gmail.com', '1994-06-02', 28, '2', '2', 'sekar', 'business', 13000.00, 2, 18000.00, 21000.00, 'chennai', 'chennai', '2212010018', '2', '2', 'upload_files/candidate_tracker/12467801808_ASHOK RESUME 2022 PDF.pdf', NULL, '1', '2022-12-02', 0, '', '3', '59', '2022-12-05', 298000.00, '', NULL, '2024-01-18', '1', 'Selected for GK sir Team', '5', '1', '4', '1', '1', '1', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-01 06:33:25', 99, '2022-12-19 09:54:51', 0, NULL, 1),
(11304, 'aravindha kumar a', '5', '9444452885', '', 'aravinthakumar@gmail.com', '1995-03-01', 27, '2', '2', 'ashok kumar', 'farme', 17000.00, 2, 16000.00, 18000.00, 'chennai', 'chennai', '2212010019', '2', '2', 'upload_files/candidate_tracker/38843471297_Aravinth November Resume 22.pdf', NULL, '1', '2022-12-02', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 06:40:06', 1, '2022-12-01 06:43:15', 0, NULL, 1),
(11305, 'M. Mahalakshmi', '4', '8838635276', '7200149421', 'mahalaksh0111@gmail.com', '1999-09-10', 23, '2', '2', 'Murugan', 'Telecaller', 150000.00, 1, 0.00, 18000.00, 'Kottivakkam', 'Kottivakkam', '2212010020', '1', '1', 'upload_files/candidate_tracker/7233984545_2 pages resumes new (2).pdf', NULL, '1', '2022-12-05', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 06:43:23', 99, '2022-12-05 10:27:40', 0, NULL, 1),
(11306, 'vijayaraghavan p', '13', '9360981227', '', 'vijayaragavan2781999@gmail.com', '1999-08-27', 23, '2', '2', 'padmanaban c', 'business', 25000.00, 1, 0.00, 12000.00, 'madurai', 'madurai', '2212010021', '2', '1', 'upload_files/candidate_tracker/61582789651_vijaya ragavan.pdf.pdf', NULL, '2', '2022-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 06:45:34', 1, '2022-12-01 06:49:00', 0, NULL, 1),
(11307, 'Joshua', '31', '7639035386', '', 'yoshva2018@gmail.com', '2001-12-23', 20, '2', '2', 'Marirathanam', 'Farmer', 20000.00, 4, 0.00, 12000.00, 'Chennai', 'Chennai', '2212010022', '1', '1', 'upload_files/candidate_tracker/69303968152_joshua-resume.docx', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Technical Round reject by Manikandan not much comfort in TxxampC will not sustain, need to learn a lot', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 10:29:13', 99, '2022-12-06 01:08:15', 0, NULL, 1),
(11308, 'THENDRAL BHARATHI', '11', '9080343507', '', 'thendral180901@gmail.com', '2001-09-18', 21, '2', '2', 'Palanisamy', 'Inspector of police', 80000.00, 1, 0.00, 20000.00, 'Porur', 'Porur', '2212010023', '1', '1', 'upload_files/candidate_tracker/42926876137_Thendral Resume-4.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good,Pressure Handling Doubt,Fresher Looking for CTC growth Will not run in a long', '6', '2', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-01 10:29:20', 99, '2022-12-02 03:55:27', 0, NULL, 1),
(11309, 'P.N Niranjann', '11', '9677010753', '', 'niranjann.padala@gmail.com', '2001-07-03', 21, '3', '2', 'DATTATHREYA p', 'Manager', 300000.00, 0, 0.00, 20000.00, 'Kk nagar', 'Kk nagar', '2212010024', '', '1', 'upload_files/candidate_tracker/27895682878_P.N. Niranjann.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Yet to complete his graduation Average Communication Will not sustain for a long not suitable', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-01 10:35:39', 1, '2022-12-02 11:21:25', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11310, 'A S NAGARAJAN', '13', '9440352610', '9533372944', 'asnagararajanbtech@gmail.com', '1992-03-15', 30, '3', '2', 'A N sampath', 'Weaver\'s', 15000.00, 0, 0.00, 18000.00, 'Ekambarakuppam', 'Chennai villivakkam', '2212020001', '', '1', 'upload_files/candidate_tracker/61724396234_Nagarajan AS.docx', NULL, '1', '2022-12-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-02 09:34:56', 1, '2022-12-02 09:37:54', 0, NULL, 1),
(11311, '', '0', '8056103340', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-02 10:27:06', 0, NULL, 0, NULL, 1),
(11312, 'T VIJAYARAGAVAN', '16', '7092804678', '', 'ragavanvels@gmail.com', '2007-12-02', 0, '2', '2', 'B Thangavelu', 'Business', 25000.00, 3, 160000.00, 250000.00, 'Chennai', 'Chennai', '2212020003', '3', '2', 'upload_files/candidate_tracker/51800906729_CV - WE.pdf', NULL, '1', '2022-12-02', 45, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Communication just Managable No written Skills will not sustain notice 45 days not suitable', '3', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-02 10:50:53', 1, '2022-12-02 10:57:29', 0, NULL, 1),
(11313, 'ishwarya', '33', '9941833124', '', 'ishwarya100798@gmail.com', '1998-07-10', 24, '2', '2', 'ammachi', 'homemaker', 30000.00, 4, 14200.00, 20000.00, 'chennai', 'chennai', '2212020004', '1', '2', 'upload_files/candidate_tracker/71905120254_ISHWARYA RESUME.docx.pdf', NULL, '1', '2022-12-02', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Looking only for Salary increase Fresher for Telecaller will not sustain not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-02 11:17:28', 99, '2022-12-02 03:56:02', 0, NULL, 1),
(11314, 'Vijay i', '17', '7558854812', '6380623775', 'ananyavijoy@gmail.com', '1991-03-15', 31, '3', '1', 'Jasmin', 'Sales', 25000.00, 0, 25000.00, 25000.00, 'Nilgiri', 'Ashoknagar', '2212020005', '', '2', 'upload_files/candidate_tracker/72995129290_1667465692926_vijoy CV.pdf', NULL, '1', '2022-12-02', 0, '', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'Not suitable candidate', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-02 11:20:55', 1, '2022-12-02 12:03:11', 0, NULL, 1),
(11315, '', '0', '7558854813', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212020006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-02 11:50:35', 0, NULL, 0, NULL, 1),
(11316, 'vallarasu', '16', '9600284565', '', 'vallarasug642000@gmail.com', '2000-04-06', 22, '3', '2', 'Govinthan', 'cashier', 17000.00, 4, 15000.00, 17000.00, 'thirukoilur', 'pallikaranai', '2212020007', '', '2', 'upload_files/candidate_tracker/28624488884_valter.pdf', NULL, '1', '2022-12-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication not suitable will not sustain in our roles', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-02 11:55:47', 1, '2022-12-02 12:09:45', 0, NULL, 1),
(11317, 'prasanth', '16', '9176626214', '', 'itsmeprashanph07@gmail.com', '1996-11-07', 26, '2', '2', 'unnikrishanan', 'electrician', 200000.00, 0, 16500.00, 30000.00, 'chennai', 'chennai', '2212020008', '1', '2', 'upload_files/candidate_tracker/45763268881_prashanth.docx Main resume.pdf', NULL, '1', '2022-12-02', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No sustainability Looking only for salary increase will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-02 12:14:38', 99, '2022-12-02 03:56:33', 0, NULL, 1),
(11318, 'Rama moorthy', '5', '9361421175', '9025347240', 'sakthimubi27@gmail.com', '2001-08-27', 21, '2', '2', 'Murugan', 'Farmar', 30000.00, 0, 25000.00, 25000.00, 'kalamarudur ulundhurpet kallakurichi', 'Thooraipaakam, chennai', '2212020009', '1', '2', 'upload_files/candidate_tracker/48051905505_RAMAMOORTHY M (1) (1).docx', NULL, '1', '2022-12-02', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not suitable candidate', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-02 12:37:53', 60, '2022-12-02 07:37:26', 0, NULL, 1),
(11319, 'Viji S', '33', '9176232091', '7358741373', 'svijayviji2001@gmail.com', '2001-05-24', 21, '2', '2', 'Sundaram', 'Auto driver', 15000.00, 1, 0.00, 15000.00, 'Medavakam, Chennai', 'Medavakam, Chennai', '2212020010', '1', '1', 'upload_files/candidate_tracker/33733878742_1643793784481_Resume.VIJI.pdf', NULL, '1', '2022-12-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,have 6 month internship exp in backend no basics in Accounts too long distance will not sustain and handle our pressure not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-02 04:06:01', 85, '2022-12-03 12:35:11', 0, NULL, 1),
(11320, 'Muffin Rashith', '11', '7010468149', '9842584000', 'muffinrashith22@gmail.com', '1997-07-30', 25, '2', '2', 'sathique', 'Former', 300000.00, 1, 0.00, 13000.00, 'sirkali', 'Thomas Mount', '2212020011', '1', '1', 'upload_files/candidate_tracker/11914361899_Muffin rashith resume .pdf', NULL, '1', '2022-12-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,will travel to singapore in 1 yr will not sustain in a long lot of personal issues going on will take lot of leaves not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-02 08:35:16', 99, '2022-12-03 11:25:13', 0, NULL, 1),
(11321, 'D Praveen', '16', '9884872846', '7550207154', 'praveendaya1994@gmail.com', '1995-07-11', 27, '2', '2', 'C Dayalan', 'Business', 14000.00, 1, 15000.00, 18000.00, 'Chennai', 'Chennai', '2212030001', '1', '2', 'upload_files/candidate_tracker/31640088290_Praveen (1) (2).doc', NULL, '1', '2022-12-03', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 10:34:44', 99, '2022-12-03 11:25:41', 0, NULL, 1),
(11322, 'Siva', '4', '6382563588', '', 'sivaramesh.dpche@gmail.com', '2000-06-04', 22, '2', '2', 'Ramesh', 'Bank', 30000.00, 1, 15000.00, 15000.00, 'Ayyampettai', 'Ayyampettai', '2212030002', '1', '2', 'upload_files/candidate_tracker/71073254318_siva resume word.docx', NULL, '1', '2022-12-05', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not intrested in sales field and telecalling', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-03 10:49:01', 85, '2022-12-05 03:19:01', 0, NULL, 1),
(11323, 'Harrison Gabriel Alexander', '4', '9176129345', '9962789052', 'harry071298@gmail.com', '1998-12-07', 23, '2', '2', 'Maxwell Alexander', 'Retaired', 25000.00, 1, 18000.00, 19000.00, 'VN lane pudupet Chennai', 'Pudupet Chennai', '2212030003', '3', '2', 'upload_files/candidate_tracker/47749305783_Harry Resume (1).docx', NULL, '1', '2022-12-03', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Communication ok Have Telecalling Exp but in different domain can give a try for our sales kindly check and confirm', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-03 11:01:33', 1, '2022-12-03 11:06:10', 0, NULL, 1),
(11324, 'Surya', '6', '9790929204', '', 'Suryausaa@gmail.com', '2001-12-26', 20, '1', '2', 'Ulaganathan', 'Late', 25000.00, 0, 18000.00, 18000.00, 'Royapuram', 'Royapuram', '2212030004', '', '2', 'upload_files/candidate_tracker/64594850627_surya pdf.pdf', NULL, '1', '2022-12-03', 0, 'P1258', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable for Sales Calls will not sustain', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-03 12:03:07', 1, '2022-12-03 12:17:56', 0, NULL, 1),
(11325, 'SujithSampath', '4', '6381275934', '9514376095', 'Sujithgeorge1999@gmail.com', '1999-11-30', 23, '2', '2', 'Sambanth', 'Ex army', 10000.00, 1, 20000.00, 25000.00, 'Vandalur', 'Vandalur', '2212030005', '1', '2', 'upload_files/candidate_tracker/88765602553_Resume. .pdf', NULL, '1', '2022-12-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 8 months Exp in Just Dial Calling Too long distance ,of Career Gap Wil not sustain he is into bike racing will not run in a long', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-03 12:13:39', 85, '2022-12-03 12:35:34', 0, NULL, 1),
(11326, 'Ravi Kumar Yadav', '31', '6203974317', '', 'ravi943117@gmail.com', '1999-02-05', 23, '2', '2', 'Rameshwar yadav', 'Small business', 20000.00, 3, 10000.00, 15000.00, 'Hazaribagh, Jharkhand', 'Urrapakam, Chennai', '2212030006', '1', '2', 'upload_files/candidate_tracker/72875486204_Ravi Kumar resume@.pdf', NULL, '1', '2022-12-03', 0, '', '3', '59', '2022-12-05', 120000.00, '', '', '1970-01-01', '1', 'Have basic knowledge in JS and React Can be trained no local Language only english and hindi 3-5 months Intern with Stipend 5K then Employment overall 3yrs SA salary start 10-12K', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 01:29:14', 99, '2022-12-03 02:31:00', 0, NULL, 1),
(11327, '', '0', '6203974327', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212030007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-03 01:41:51', 0, NULL, 0, NULL, 1),
(11328, 'Abishek v', '23', '9092592598', '6369610368', 'abishekvenkat22@yahoo.com', '1995-01-21', 27, '2', '2', 'Venkatachalam', 'Powerloom', 6000.00, 0, 0.00, 1.50, 'Erode', 'Chennai', '2212030008', '1', '1', 'upload_files/candidate_tracker/93077277990_web design.pdf', NULL, '1', '2022-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very Slow,Long Career Gap not much strong in basics of JS will not adapt to our working conditions not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 03:15:54', 99, '2022-12-15 09:31:04', 0, NULL, 1),
(11329, 'Karthikeshwar K A', '31', '8807379177', '', 'keshwarkarthi914@gmail.com', '1998-09-04', 24, '2', '2', 'P.Arumugam', 'Shop keeper', 300000.00, 2, 13500.00, 22000.00, 'Kanchipuram', 'Chennai', '2212030009', '1', '2', 'upload_files/candidate_tracker/38964713622_Karthik_Resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 months in React have a huge expectation with the salary will not sustain in a long Final round reject by Gokul', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 03:25:55', 99, '2022-12-10 12:18:36', 0, NULL, 1),
(11330, 'rohit', '6', '9841886814', '', 'vrohith984188@gmail.com', '2001-12-11', 20, '2', '2', 'venkatraman', 'auto driver', 8000.00, 1, 0.00, 18000.00, 'chennai', 'cheenai', '2212030010', '1', '1', 'upload_files/candidate_tracker/52677420097_Emailing Rohith.pdf', NULL, '1', '2022-12-07', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-03 05:35:50', 60, '2022-12-07 03:48:44', 0, NULL, 1),
(11331, 'nowfal riswan', '23', '9843071997', '8667747146', 'nowfalriswan1976@gmail.com', '1997-07-19', 25, '4', '2', 'mohamed haja', 'office helper', 20000.00, 1, 0.00, 15000.00, 'mayiladuthurai', 'mayiladuthurai', '2212030011', '', '1', 'upload_files/candidate_tracker/3445371464_Nowfal Resume-2.pdf', NULL, '2', '2022-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-03 07:33:26', 1, '2022-12-05 12:33:00', 0, NULL, 1),
(11332, '', '0', '9944397148', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212040001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-04 04:33:44', 0, NULL, 0, NULL, 1),
(11333, 'Abishek', '23', '6369610368', '9092592598', 'abishekvenkat21@outlook.com', '1995-01-21', 27, '3', '1', 'Venkatachalam j', 'Powerloom', 6000.00, 0, 0.00, 1.50, 'Erode sivagiri', 'Chennai', '2212040002', '', '1', 'upload_files/candidate_tracker/30299083654_web design.pdf', NULL, '1', '2022-12-09', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-04 07:03:06', 1, '2022-12-04 07:06:33', 0, NULL, 1),
(11334, 'Sumathy', '4', '8148484112', '', 'sumathysree1409@gmail.com', '1994-04-30', 28, '2', '2', 'Santhana Pandi T', 'Driver', 55000.00, 2, 0.00, 14000.00, 'Chennai', 'Chennai', '2212040003', '1', '1', 'upload_files/candidate_tracker/16336114163_SUMATHY S.docx', NULL, '1', '2022-12-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Career Gap No highest Graduation fresher for Telecalling need to train a lot kindly check andlet me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-04 09:58:28', 85, '2022-12-05 03:15:30', 0, NULL, 1),
(11335, 'L. Guganeshwaran', '2', '8681872352', '', 'guganeshwarangugan@gmail.com', '2000-09-12', 22, '2', '2', 'S. Lingesan', 'Office assistant', 12000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2212050001', '1', '1', 'upload_files/candidate_tracker/30675228822_Screenshot_20221127_214438.pdf', NULL, '1', '2022-12-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT domain,Currently working as Document specialist 45 days notice not much strong in basics given him time to learn sustainabilty doubts', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-05 10:09:25', 99, '2022-12-05 10:28:03', 0, NULL, 1),
(11336, '', '0', '8681872353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212050002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-05 10:13:32', 0, NULL, 0, NULL, 1),
(11337, 'Mohan.M', '4', '6369853425', '9382826111', 'mnike850@gmail.com', '2001-06-27', 21, '2', '2', 'Muthu.N', 'Mechanic', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2212050003', '1', '1', 'upload_files/candidate_tracker/95694312560_photo pc1.pdf', NULL, '1', '2022-12-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Career Gap Seems much preferred with non voice process not suitable for calling will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-05 10:59:34', 85, '2022-12-05 03:16:15', 0, NULL, 1),
(11338, 'K. Harudamathi', '4', '9940626705', '', 'Harudamathy.2906@gmail.com', '1999-06-29', 23, '2', '2', 'Kasirajan', 'Sales', 50000.00, 2, 0.00, 15000.00, 'Palavaram', 'Palavaram', '2212050004', '1', '1', 'upload_files/candidate_tracker/64847688569_628c0d1c-1739-4c26-88c9-c50f446355d2_1670064854128_K. Harudamathi .pdf', NULL, '1', '2022-12-05', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Too long Distance Fresher for roles Have interest to work in voice process kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-05 10:59:53', 99, '2022-12-07 09:19:52', 0, NULL, 1),
(11339, 'Rajesh .N', '4', '8939446462', '', 'RAJESHN020920@GMAIL.COM', '2000-09-02', 22, '2', '2', 'J.Nagaraj', 'Office Attender', 18000.00, 1, 0.00, 15000.00, 'No 44 Pudupet Garden Street Royapettah Chennai 14', 'No 44 Pudupet Garden Street Royapettah Chennai 14', '2212050005', '1', '1', 'upload_files/candidate_tracker/57825063276_Resume_26_10_2022_08_41_44_pm.pdf', NULL, '1', '2022-12-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Clear Communication not suitable for our customer communication will not sustain and not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-05 11:00:04', 85, '2022-12-05 03:17:05', 0, NULL, 1),
(11340, 'sudha', '4', '8608199504', '', 'sudhasridevi97@gmail.com', '1997-05-28', 25, '3', '2', 'samynathan', 'security', 30000.00, 3, 0.00, 16000.00, 'chennai', 'chennai', '2212050006', '', '2', 'upload_files/candidate_tracker/64846757313_sudha.pdf', NULL, '1', '2022-12-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication not open for Target based positions not suitable for our roles', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-05 11:08:49', 1, '2022-12-05 11:43:04', 0, NULL, 1),
(11341, 'Arun. S', '11', '6369760591', '', 'ramarun1510@gmail.com', '2000-10-15', 22, '2', '2', 'Sundharam', 'Daily wages', 5000.00, 0, 166000.00, 300000.00, 'Thanjavur', 'Gundy', '2212050007', '3', '2', 'upload_files/candidate_tracker/31001836037_ARUN S1.doc', NULL, '1', '2022-12-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication no written skills not suitable for MIS roles will not sustain', '6', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-05 11:09:59', 1, '2022-12-05 11:19:51', 0, NULL, 1),
(11342, 'Rajesh. R', '2', '8778254927', '8825851481', 'samuravi2@gmail.com', '1998-03-15', 24, '3', '2', 'Ravi.R', 'House keeping', 13000.00, 1, 0.00, 13000.00, 'Tiruvallur', 'Tiruvallur', '2212050008', '', '1', 'upload_files/candidate_tracker/3856579154_Rajesh 24-20221030-WA0001.pdf', NULL, '1', '2022-12-05', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no basic knowledge in IT Skills Given a month time to learn if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', '2023-01-07', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-05 11:32:51', 1, '2022-12-05 11:37:17', 0, NULL, 1),
(11343, 'Sriram', '4', '9500442258', '9688922184', 'sriram66928@gamil.com', '1998-08-12', 24, '2', '2', 'Sivakumar J', 'Shop keeper', 30000.00, 2, 10000.00, 12000.00, 'Thanjavur', 'Thanjavur', '2212050009', '1', '2', 'upload_files/candidate_tracker/19996198332_SRIRAM S-2.pdf', NULL, '1', '2022-12-05', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Asked for a time to join due to exams but not responding the calls later\n', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-05 12:29:09', 85, '2022-12-05 03:18:42', 0, NULL, 1),
(11344, 'Keerthana.M', '4', '6374610571', '9940282903', 'keerthanamuthu29@gmail.com', '1999-08-05', 23, '2', '2', 'Muthu', 'Business', 30000.00, 1, 11000.00, 15000.00, 'Valasaravakkam', 'Valasaravakkam', '2212050010', '1', '2', 'upload_files/candidate_tracker/2988192291_keerthi.pdf', NULL, '1', '2022-12-05', 0, '', '3', '59', '2022-12-15', 168000.00, '', '4', '2023-01-05', '1', 'Selected for B2B in staff Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-05 12:34:49', 60, '2022-12-10 01:23:44', 0, NULL, 1),
(11345, 'Santhoshkumar G', '14', '8754096745', '', 'gsanthoshkumar406@gmail.com', '2000-07-06', 22, '3', '2', 'Gopal', '5', 2000.00, 1, 0.00, 10000.00, 'THANJAVUR', 'THANJAVUR', '2212050011', '', '1', 'upload_files/candidate_tracker/80398938268_RESUME(santhosh1)-5.pdf', NULL, '1', '2023-01-18', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-05 03:47:30', 1, '2023-01-05 06:13:13', 0, NULL, 1),
(11346, '', '0', '9940584071', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212050012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-05 04:31:44', 0, NULL, 0, NULL, 1),
(11347, '', '0', '9514620199', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212050013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-05 04:49:59', 0, NULL, 0, NULL, 1),
(11348, '', '0', '7010985201', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212050014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-05 06:51:12', 0, NULL, 0, NULL, 1),
(11349, 'M. Mahalakshmi', '4', '9092247280', '7200149421', 'mahalaksh0111@gmail.com', '1999-09-10', 23, '2', '2', 'Murugan', 'Telecaller', 150000.00, 1, 0.00, 18000.00, 'Kottivakkam', 'Kottivakkam', '2212060001', '1', '1', 'upload_files/candidate_tracker/50718132347_2 pages resumes new (2).pdf', NULL, '1', '2022-12-06', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 09:07:13', 99, '2022-12-06 01:08:38', 0, NULL, 1),
(11350, 'Mohammed Azeezur Rahman', '4', '9514620499', '8682820717', 'smartajis12292@gmail', '1997-08-02', 25, '2', '2', 'Abdul Rasheed', 'Tailor', 35000.00, 2, 0.00, 20000.00, 'No 17/A teeds garden 2st perumbur Venus', 'No 17/A Teeds Garden 2st Perumbur Venus', '2212060002', '1', '2', 'upload_files/candidate_tracker/52780347587_AJIS RESUM (1) (1).docx', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Need to open a lot will not handle our Sales calls not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 10:01:55', 99, '2022-12-06 01:09:01', 0, NULL, 1),
(11351, 'Arifunissa', '11', '8148856365', '7448304740', 'zeenathunissa2013@gmail.com', '1997-12-30', 24, '2', '2', 'Gulam mohammed', 'Own business', 50000.00, 3, 17000.00, 27000.00, '5/454 phase 1 dwaraka nagar, manali new town', '5/454 Phase 1 Dwaraka Nagar, Manali New Town', '2212060003', '1', '2', 'upload_files/candidate_tracker/24799010895_arifa resume (1).pdf', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Recruitment but not much strong with that lot of job changes also did some certification in bridal make up her focus is towards that sustainability doubts in our profile', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 10:48:30', 99, '2022-12-06 06:38:56', 0, NULL, 1),
(11352, 'Venkadesh', '4', '6383239383', '', 'Venkatmass264@gmail.com', '1999-04-26', 23, '2', '2', 'Murugaiyan', 'Conductor', 50000.00, 1, 10500.00, 13000.00, 'Thirukkanurpatti', 'Thirukanurpatti', '2212060004', '1', '2', 'upload_files/candidate_tracker/61986933566__venkat264vks (1).pdf', NULL, '1', '2022-12-06', 30, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is not ok with the profile and have sustainability issue', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-06 11:09:57', 85, '2022-12-06 11:34:32', 0, NULL, 1),
(11353, 'Sravani', '11', '9551713845', '', 'sravanistuffy4@gmail.com', '1998-08-04', 24, '3', '2', 'Parent', 'Business', 15000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2212060005', '', '1', 'upload_files/candidate_tracker/9983865586_Sravani_Resume2020.pdf', NULL, '1', '2022-12-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-06 11:40:52', 1, '2022-12-06 11:43:26', 0, NULL, 1),
(11354, 'Mani muthu', '11', '7358057814', '', 'manimuthunagarajan@gmail.com', '1999-06-30', 23, '3', '2', 'NAGARAJAN.M', 'Kulli', 25000.00, 1, 0.00, 13000.00, 'Poonamallee', 'Poonamallee', '2212060006', '', '1', 'upload_files/candidate_tracker/67136831934_ManiMuthu_CV.docx', NULL, '1', '2022-12-07', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-06 12:13:47', 1, '2022-12-06 12:21:40', 0, NULL, 1),
(11355, 'Immanuel Joshua .A', '23', '8526626245', '', 'viratjosh4@gmail.com', '2002-02-20', 20, '2', '2', 'A.Arish', 'Farmer', 20.00, 2, 0.00, 13000.00, 'Chennai', 'Chennai', '2212060007', '1', '1', 'upload_files/candidate_tracker/6039622705_Joshua Resume new.pdf', NULL, '1', '2022-12-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in Node, Seems to be playful technical round with Viswa Should schedule the next round with Gokul based on his availability', '2', '1', '', '1', '1', '', '2', '2022-12-10', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 12:15:32', 99, '2022-12-07 09:20:40', 0, NULL, 1),
(11356, 'Thangamanikandan', '27', '8525800836', '9865237365', 'manikandanparamaa@gmail.com', '1999-07-30', 23, '2', '2', 'Thiruselvi', 'House wife', 10000.00, 0, 0.00, 15000.00, 'Chennai', 'Chennai', '2212060008', '1', '1', 'upload_files/candidate_tracker/69078295131_NEW RESUME.docx', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'His preferred skill is dotnet Give him time for Learning if he comes back after a month can check', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 01:07:23', 99, '2022-12-06 02:51:49', 0, NULL, 1),
(11357, 'S Venkatachalam', '13', '9791243615', '', 'developervenkat16@gmail.com', '1998-12-06', 24, '2', '2', 'S anantha mathangi', 'Teacher', 15000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2212060009', '1', '1', 'upload_files/candidate_tracker/50713147150_CV_cafs_resume.pdf', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much active will not sustain and handle our pressure Not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 02:17:47', 99, '2022-12-06 02:52:10', 0, NULL, 1),
(11358, 'A.ABDUL RAHMAN', '5', '7358527822', '9597587129', 'abdulrahman1751992@gmail.com', '1992-05-17', 30, '3', '2', 'Yashme', 'Driver', 20000.00, 2, 20000.00, 23000.00, 'Chennai', 'Chennai', '2212060010', '', '2', 'upload_files/candidate_tracker/97228123397_RESUME..pdf', NULL, '1', '2022-12-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too long distance up and down 54kms not open for relocation will not sustain', '5', '2', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-06 02:42:26', 60, '2022-12-06 05:27:16', 0, NULL, 1),
(11359, 'Naveen Raj', '4', '9791090964', '9500141875', 'naveenrajn9@gmail.com', '1996-04-17', 26, '2', '2', 'indra', 'self employed', 35000.00, 1, 22000.00, 26000.00, 'chennai', 'chennai', '2212060011', '1', '2', 'upload_files/candidate_tracker/62711296201_Copy of NAVEEN RAJ updated.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our sales no sustainability in his previous exp,Pressure handling doubt,asked him to wait for the 2nd round but left without attending', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-06 04:26:16', 99, '2022-12-07 02:24:55', 0, NULL, 1),
(11360, 'xavier s', '11', '9003837287', '', 'xaviersagayam03@gmail.com', '1999-11-15', 23, '2', '2', 'arockiam s', '-', 15000.00, 2, 18.60, 21.00, 'chennai', 'chennai', '2212060012', '1', '2', 'upload_files/candidate_tracker/43036591389_Xavier S updated cv.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Just 7 months exp in recruitment with the high Pay and looking for more and the same, location need to check,Long run doubts in our roles', '6', '1', '', '1', '1', '', '2', '1970-01-01', '3', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-06 04:45:15', 99, '2022-12-07 02:29:50', 0, NULL, 1),
(11361, 'Vigneshwaran', '4', '9566642234', '', 'vigneshwaran18p@gmail.com', '1996-03-24', 26, '2', '2', 'Palanisamy', 'Shop', 14000.00, 1, 10000.00, 12000.00, 'Reddipalayam', 'Reddipalayam', '2212060013', '1', '2', 'upload_files/candidate_tracker/7269405528_Resume-Vigneshwaran.pdf', NULL, '1', '2022-12-07', 20, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he not fit for telesales tounge slip problem ', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-06 05:26:51', 99, '2022-12-07 02:26:08', 0, NULL, 1),
(11362, 'raheem', '20', '8939473023', '', 'syed.abdul.raheem28@gmail.com', '1996-10-28', 26, '3', '2', 'syed mohammed s', 'daily wages', 25000.00, 1, 15000.00, 20000.00, 'pattur mangadu', 'pattur mangadu', '2212070001', '', '2', 'upload_files/candidate_tracker/56247927190_Raheem CV.pdf', NULL, '1', '2022-12-07', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have a solid exp in backend but no communication not much suitable for sales will not sustain in our Sales ', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-07 10:31:57', 1, '2022-12-07 10:45:57', 0, NULL, 1),
(11363, 'Arun.d', '5', '9600300977', '8124817513', 'aruntorres3@gmail.com', '1996-12-05', 26, '1', '2', 'Dominic rajan', 'Non', 30000.00, 1, 20000.00, 25000.00, 'Vyasarpadi', 'Vyasarpadi', '2212070002', '', '2', 'upload_files/candidate_tracker/53575836927_D Arun - Resume Updated 2022.pdf', NULL, '1', '2022-12-07', 0, 'CAFSUSR00483', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Internal team Reference,Long Career Gap he is into sports No sustainability in the previous exp checked with sales Manager sarath and rejecetd the profile', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-07 10:41:27', 1, '2022-12-07 10:46:26', 0, NULL, 1),
(11364, '', '0', '8667356753', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212070003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-07 10:50:52', 0, NULL, 0, NULL, 1),
(11365, 'Gowtham', '4', '8778563012', '', 'Gowthambelieve@gmail.com', '1997-10-23', 25, '2', '2', 'Malliga', 'Garments', 40000.00, 0, 15000.00, 17000.00, 'Chennai', 'Chennai', '2212070004', '1', '2', 'upload_files/candidate_tracker/2528347739_Gowtham resume.pdf', NULL, '2', '2022-12-07', 0, '', '3', '59', '2022-12-08', 189468.00, '', '3', '2022-12-29', '2', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 10:59:59', 60, '2022-12-07 04:55:58', 0, NULL, 1),
(11366, 'Abinaya', '4', '6379384346', '', 'abinayaabu971@gmail.com', '2007-12-07', 0, '2', '2', 'Kammalakannan', 'Business man', 24000.00, 1, 0.00, 12000.00, 'Kanyakumari', 'Chennai', '2212070005', '1', '1', 'upload_files/candidate_tracker/34806919231_Resume_15_11_2022_10_17_38_AM.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Sales,', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-07 11:23:47', 99, '2022-12-07 02:41:43', 0, NULL, 1),
(11367, 'bharathidasan r', '4', '7708177690', '', 'bharathidasan998@gmail.com', '1998-09-14', 24, '2', '2', 'raju t', 'farmer', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2212070006', '2', '1', 'upload_files/candidate_tracker/13116322472_das cv 2.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Final Round reject, Only 3 months exp in Byjuxquots No Sales Exp rejected in the final round', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-07 11:46:02', 1, '2022-12-07 11:48:49', 0, NULL, 1),
(11368, 'GOPI R', '23', '9600691072', '9952602466', 'gopi33449@gmail.com', '1999-12-31', 22, '2', '2', 'Ramesh P', 'Farmer', 10000.00, 1, 0.00, 16000.00, 'Chennai', 'Chennai', '2212070007', '1', '1', 'upload_files/candidate_tracker/78489597865_Gopi Resume0.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Technical Round reject by Manikandan,Fresher for Javascript have exp in dotnet Sustainability doubts as he was around 8K earlier and looking for more', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 12:05:29', 99, '2022-12-07 02:43:49', 0, NULL, 1),
(11369, 'satheesh p', '23', '9095666728', '', 'satheesharun0822@gmail.com', '1998-08-11', 24, '2', '2', 'paneerselvan', 'bakery shop', 16000.00, 0, 0.00, 18000.00, 'chennai', 'cheenai', '2212070008', '1', '1', 'upload_files/candidate_tracker/8925689602_Satheesh resume.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT ,Have 1,5 yrs desktop Support exp not much strong with the basic skills need to train a lot he need time to confirm the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 12:06:52', 99, '2022-12-07 02:44:11', 0, NULL, 1),
(11370, 'Grace jenifer', '11', '9884655736', '9840186642', 'gracejenifer0118@gmail.com', '2000-07-18', 22, '2', '2', 'Lucas', 'Plumber', 30000.00, 1, 18000.00, 21000.00, 'Sarma nagar', 'Sarma nagar', '2212070009', '1', '2', 'upload_files/candidate_tracker/98619857665_Grace Jenifer L-2.pdf', NULL, '1', '2022-12-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in IT Recruitment and 7 months exp with 2.6 LPA Communicaiton Average Handling our sales hiring pressure doubts not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 12:20:48', 99, '2022-12-07 02:41:54', 0, NULL, 1),
(11371, 'G. Praven kumar', '33', '9566260395', '', 'kumarpraving8@gmail.com', '1999-01-15', 23, '2', '2', 'Indhira. G', 'Housewife', 400000.00, 1, 18000.00, 22000.00, 'Kanchipuram', 'Kanchipuram', '2212070010', '1', '2', 'upload_files/candidate_tracker/34719233939_Praven kumar resume (1).pdf', NULL, '1', '2022-12-07', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-07 02:07:34', 1, '2022-12-07 02:12:16', 0, NULL, 1),
(11372, '', '0', '9710177330', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212070011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-07 02:23:59', 0, NULL, 0, NULL, 1),
(11373, '', '0', '9092910632', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212070012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-07 04:46:41', 0, NULL, 0, NULL, 1),
(11374, 'Akash E', '13', '9176090107', '6369532134', 'e.akash07042000@gmail.com', '2000-04-07', 22, '2', '2', 'Ekambaram T', 'carbandar', 15000.00, 2, 15000.00, 20000.00, 'Selaiyur', 'Selaiyur', '2212070013', '1', '2', 'upload_files/candidate_tracker/31750826368_Akash resume.pdf', NULL, '1', '2022-12-08', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance around 54kms up and down not much comfort in taking 150 Calls will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 06:43:43', 99, '2022-12-08 03:52:38', 0, NULL, 1),
(11375, 'Hariharan k', '33', '7395944432', '6381166341', 'hariharan12102000@gmail.com', '2001-12-10', 20, '2', '2', 'D kuppan', 'House keeping', 25000.00, 2, 12000.00, 18000.00, 'Thuraipakkam', 'Thuraipakkam', '2212070014', '1', '2', 'upload_files/candidate_tracker/29574975543_HARIHARAN Resume (1).pdf', NULL, '1', '2022-12-08', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics in accounts No Communication will not sustain', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 06:55:22', 99, '2022-12-08 03:53:11', 0, NULL, 1),
(11376, 'Yogesh A', '31', '6369769953', '9791132715', 'yogeshyog488@gmail.com', '2000-08-11', 22, '2', '2', 'V.Arjunan', 'Mechanic', 15000.00, 1, 0.00, 2.60, 'Chennai', 'Chennai', '2212070015', '1', '1', 'upload_files/candidate_tracker/43721297294_A.yogesh-resume.pdf', NULL, '1', '2022-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basics in JS,Need time to confirm on the TxxampC Sustainability doubts with us if he comes back let us try for technical', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 07:22:25', 99, '2022-12-08 03:53:46', 0, NULL, 1),
(11377, 'Jegatheeswari. N', '4', '7695889171', '', 'nithyajega04@gmail.com', '1997-06-10', 25, '2', '2', 'Naganathan', 'Farmer', 8000.00, 1, 0.00, 16000.00, 'Sivagangai', 'Chennai', '2212070016', '1', '1', 'upload_files/candidate_tracker/21127679625_Jegatheeswari resume.pdf', NULL, '1', '2022-12-08', 0, '', '3', '59', '2022-12-15', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-07 10:17:29', 60, '2022-12-08 06:14:20', 0, NULL, 1),
(11378, 'mahalakshimi', '31', '9884389597', '', 'magalakeshmi@gmail.com', '1997-06-08', 25, '2', '2', 'gandhi', 'driver', 20000.00, 1, 12000.00, 20000.00, 'chennai', 'chennai', '2212080001', '1', '2', 'upload_files/candidate_tracker/52838403080_Magalakshmi\'s Resume (1).pdf', NULL, '1', '2022-12-08', 15, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Appeared for IT but no skills in Javascript Have Exp in Mutual funds backend for 2.5 yrs,open for MF role but communication Average can give a try for MF Coordinator need to check with Gokul and confirm', '2', '1', '0', '1', '1', '0', '2', '2022-12-10', '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-08 11:26:39', 1, '2022-12-08 11:58:10', 0, NULL, 1),
(11379, 'Jeevitha.k', '4', '9087548278', '9841330101', 'Jeevithabsc33@gmail.com', '1999-09-20', 23, '2', '1', 'Raja.p', 'Driving', 30000.00, 1, 0.00, 12000.00, 'Pallikaranai', 'Pallikaranai', '2212080002', '1', '1', 'upload_files/candidate_tracker/65427616072_Jeevitha. K_Resume.pdf', NULL, '1', '2022-12-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for non voice not suitable no communication', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-08 11:58:24', 99, '2022-12-08 03:56:31', 0, NULL, 1),
(11380, 'Jeeva.R', '4', '9944089201', '9994449201', 'Jeevainmail176@gmail.com', '2001-06-10', 21, '2', '1', 'Sivaraj.k', 'AR caller', 20000.00, 1, 0.00, 12000.00, 'Tharamani', 'Tharamani', '2212080003', '1', '1', 'upload_files/candidate_tracker/41565584437_R.Jeeva.docx', NULL, '1', '2022-12-08', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 profile have 4 months exp in collection calling ,sounds to be low kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-08 12:09:05', 99, '2022-12-08 03:57:53', 0, NULL, 1),
(11381, 'Mohammed Ashar Shahir', '5', '7358718221', '9150050133', 'mohammedasharshahir@gmail.com', '2001-05-01', 21, '2', '2', 'Rahamatulla', 'Sales man', 30000.00, 1, 24000.00, 29000.00, 'chennai', 'chennai', '2212080004', '1', '2', 'upload_files/candidate_tracker/2605401956_Mohammed Ashars resume', NULL, '1', '2022-12-09', 15, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'communication Ok Have exp in B2B,not open for Sales again he is looking for Recruitment but will not sustain much in that will schedule him for MIS Need to check and final with Gokul', '5', '1', '', '1', '1', '', '2', '2022-12-10', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-08 12:51:55', 85, '2022-12-09 10:58:13', 0, NULL, 1),
(11382, 'Jagathgururaju', '20', '8122266335', '', 'M.jagathgururaju987@gmail.com', '1998-05-17', 24, '2', '1', 'Mohan', 'Business', 20000.00, 2, 15000.00, 25000.00, 'Tiruvannamalai', 'Chennai', '2212080005', '1', '2', 'upload_files/candidate_tracker/27289742603_JAGATH GURU RAJU M.pdf', NULL, '1', '2022-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-08 04:51:31', 1, '2022-12-08 04:55:36', 0, NULL, 1),
(11383, 'Arjunan', '2', '8072270813', '6380021058', 'arjunrex1@gmail.com', '2000-09-17', 22, '2', '2', 'Mariappan D', 'Cooli', 7000.00, 2, 0.00, 250000.00, 'Puliyangudi', 'Chennai', '2212080006', '1', '1', 'upload_files/candidate_tracker/51690438170_Resume_Arjunan_Format3 (5)-1.pdf', NULL, '1', '2022-12-09', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-08 05:14:11', 85, '2022-12-09 10:57:37', 0, NULL, 1),
(11384, 'SUDHAHAR', '31', '9342797229', '', 'suthaharanrajandran@gmail.com', '2000-05-17', 22, '2', '2', 'Rajandran', 'Laborer', 15000.00, 4, 0.00, 15000.00, 'Kumbakonam', 'Velachery', '2212080007', '1', '1', 'upload_files/candidate_tracker/8940939865_pdf_20221127_091823_0000.pdf', NULL, '1', '2022-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Java openings no basic knowledge in Javascript', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-08 05:27:25', 99, '2022-12-30 04:25:20', 0, NULL, 1),
(11385, 'tamil selvan', '31', '9551406767', '8667741224', 'Tamizh.n006@gmail.com', '1997-12-30', 24, '2', '2', 'nagrajan', 'worker', 4.00, 2, 0.00, 30000.00, 'Kundrathur Chennai', 'Kundrathur Chennai', '2212080008', '1', '1', 'upload_files/candidate_tracker/68275675231_Resume_2022-10-11_1263702 (1) (1).pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in other domain and looking for Javascript Salary Exp is high too long distance will not sustain in our roles not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-08 11:50:50', 99, '2022-12-13 12:11:49', 0, NULL, 1),
(11386, '', '0', '6385911509', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212090001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-09 07:59:45', 0, NULL, 0, NULL, 1),
(11387, 'Prakash', '4', '8870644880', '', 'gprakash0135@gmail.com', '1999-03-10', 23, '2', '2', 'Govindaraj', 'Farmar', 10000.00, 1, 0.00, 12000.00, 'Thanjavur', 'Thanjavur', '2212090002', '1', '1', 'upload_files/candidate_tracker/54812534259_Resume.docx', NULL, '1', '2022-12-09', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'profile not fit for sales have no exposure and knowledge for telesales', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-09 11:09:26', 85, '2022-12-09 11:28:44', 0, NULL, 1),
(11388, 'N.jeyaseeli', '4', '7358690792', '', 'Jeyaseeli1998@gmail.com', '1998-07-11', 24, '2', '2', 'Nagasone', 'Paster', 10000.00, 1, 0.00, 200000.00, 'Manali', 'Manali', '2212090003', '3', '1', 'upload_files/candidate_tracker/96907146923_Seeli.pdf', NULL, '1', '2022-12-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long distance looking for non voice\n', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-09 11:43:50', 1, '2022-12-09 12:05:04', 0, NULL, 1),
(11389, '', '0', '9150767533', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212090004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-09 11:49:53', 0, NULL, 0, NULL, 1),
(11390, 'Guhan', '5', '8681064292', '', 'guhanlee6155@gmail.com', '2001-04-01', 21, '2', '2', 'Pramila', 'Company', 100000.00, 0, 0.00, 12000.00, 'Porur', 'Porur', '2212090005', '1', '1', 'upload_files/candidate_tracker/50336924217_guhan resume .pdf', NULL, '1', '2022-12-09', 0, '', '3', '59', '2022-12-12', 185000.00, '', '', '2022-12-16', '1', 'Selected for Babu Team for staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-09 12:28:57', 60, '2022-12-10 07:31:52', 0, NULL, 1),
(11391, '', '0', '7708903268', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-09 03:31:43', 0, NULL, 0, NULL, 1),
(11392, '', '0', '6379136778', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212090007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-09 04:12:27', 0, NULL, 0, NULL, 1),
(11393, 'S sahaya Gijiro', '6', '9025193805', '9597947729', 'gijiros@gmail.con', '1998-02-24', 24, '2', '2', 'Suresh', 'Teacher', 200000.00, 1, 0.00, 18000.00, 'Anna nagar', 'Anna nagar', '2212100001', '1', '1', 'upload_files/candidate_tracker/14766740115_SG Resume without pic .docx', NULL, '1', '2022-12-10', 0, '', '5', '16', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Sales Sustainability Doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-10 08:23:15', 60, '2022-12-10 03:09:28', 0, NULL, 1),
(11394, 'Hari TR', '4', '8248722587', '8903282136', 'haritr289127@gmail.com', '1996-11-15', 26, '2', '2', 'Rajendran TR', 'retried', 300000.00, 1, 0.00, 15000.00, 'shollinganalur', 'shollinganalur', '2212100002', '3', '1', 'upload_files/candidate_tracker/31524474609_hari-1.docx', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance no Graduation Long Career Gap Not much suitable for Sales Calls will not sustain ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-10 10:44:15', 60, '2022-12-10 02:57:35', 0, NULL, 1),
(11395, 'Abirami k', '4', '9344404785', '9894858520', 'abikrishna1308@gmail.com', '2001-08-13', 21, '2', '2', 'Velammal', 'Housewife', 15000.00, 2, 0.00, 15000.00, 'Tirunelveli', 'Saidapet', '2212100003', '1', '1', 'upload_files/candidate_tracker/39460077631_K.Abirami Resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Comfort to work in non voice process,not open for targets will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-10 11:30:21', 85, '2022-12-10 12:34:17', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11396, 'Prabhu Ravi', '5', '8754314260', '', 'prabhuravi1113@gmail.com', '1995-05-23', 27, '2', '2', 'Ravi T', 'Printer', 20000.00, 1, 180000.00, 300000.00, 'Erode', 'Erode', '2212100004', '1', '2', 'upload_files/candidate_tracker/63555275561_Prabhu BPO Resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'he is looking non voice', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-10 11:31:46', 99, '2022-12-10 03:00:52', 0, NULL, 1),
(11397, 'S.Bhuvaneswari', '4', '8754988365', '', 'Bhuvanabhuvi2507@gmail.com', '2001-07-25', 21, '2', '2', 'Sasikumar', 'Late', 15000.00, 2, 0.00, 15000.00, 'Saidapet', 'Saidapet', '2212100005', '1', '1', 'upload_files/candidate_tracker/527750878_Bhuvaneswari resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for non voice not suitable no Communication', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-10 11:39:36', 85, '2022-12-10 12:34:30', 0, NULL, 1),
(11398, 'V. Theivalakshmi', '13', '9363481996', '', 'Theivalakshmi1998@gmail.com', '1998-08-15', 24, '2', '2', 'S. Valavanthan', 'Cooly', 72000.00, 2, 0.00, 20000.00, 'Aruppukottai', 'Velachery', '2212100006', '1', '2', 'upload_files/candidate_tracker/26058674330_NewResume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainability Career Gap not showing self interest on the job,Not much open with TxxampC too not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-10 11:51:38', 85, '2022-12-10 12:34:04', 0, NULL, 1),
(11399, 'nandhini', '4', '9952094616', '', 'nandhinivcms98@gmail.com', '1998-08-02', 24, '2', '2', 'veeramuthu', 'security', 8000.00, 0, 12000.00, 18000.00, 'chennai', 'chennai', '2212100007', '1', '2', 'upload_files/candidate_tracker/88691739529_NANDHINI RESUME (1).pdf', NULL, '1', '2022-12-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Telecalling but not open for Telecalling agaiin and for MIS No Communication not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-10 04:16:27', 1, '2022-12-10 04:31:38', 0, NULL, 1),
(11400, 'Sanjai Kumar K', '31', '6380377589', '8870577917', 'sanjaikumaresan2002@gmail.com', '2002-01-20', 20, '2', '2', 'Kumaresan A', 'Police', 700000.00, 2, 0.00, 400000.00, 'Gingee', 'Chennai', '2212100008', '1', '1', 'upload_files/candidate_tracker/79845258658_Sanjaikumar_resume.PDF-1 (2).pdf', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for Testing Profile', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-10 04:42:53', 99, '2022-12-12 12:08:01', 0, NULL, 1),
(11401, 'Vikkash V A', '6', '7550233760', '', 'vavikkash@gmail.com', '2001-06-20', 21, '2', '2', 'Arun D S', 'Carpenter', 20000.00, 1, 0.00, 13000.00, 'Chennai', 'Ambattur', '2212100009', '1', '1', 'upload_files/candidate_tracker/60629324771_Vikkash Resume.pdf', NULL, '1', '2022-12-10', 0, '', '5', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-10 05:19:05', 60, '2022-12-12 06:37:05', 0, NULL, 1),
(11402, 'Abishek Perumal', '22', '8248923326', '', 'akifs2001@hotmail.com', '2001-08-19', 21, '2', '2', 'Annachi', 'UCS Cargo Solution', 20000.00, 1, 0.00, 20000.00, 'Pozhichalur, Pallavaram, Chennai', 'Pozhichalur, Pallavaram, Chennai', '2212100010', '1', '1', 'upload_files/candidate_tracker/78851863054_Resume - Abishek Perumal-1.pdf', NULL, '1', '2022-12-12', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Good both orally and written,Distane need to see 40kms up and down he need time to confirm ', '2', '1', '', '1', '1', '', '2', '2022-12-14', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-10 06:40:18', 85, '2022-12-12 10:44:09', 0, NULL, 1),
(11403, 'syed rizwan', '31', '9036897807', '', 'rizwansyednasroddin@gamil.com', '1998-06-15', 24, '3', '2', 'imambee', 'work', 50000.00, 6, 0.00, 25000.00, 'anantapur andhra pradesh', 'anantapur', '2212100011', '', '1', 'upload_files/candidate_tracker/50985072037_RIZWAN.pdf', NULL, '3', '2022-12-11', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-10 07:30:24', 1, '2022-12-10 07:35:34', 0, NULL, 1),
(11404, 'Thirumalai. S', '33', '9710892458', '8148910711', 'Thirumalai.s0711@gmail.com', '1991-11-07', 31, '4', '2', 'Loganayaki', 'Housewife', 10000.00, 0, 0.00, 600000.00, 'Chennau', 'Madipakkam', '2212100012', '', '2', 'upload_files/candidate_tracker/952589419_S.Thirumalai CV.pdf', NULL, '3', '2022-12-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-10 07:56:41', 1, '2022-12-10 07:58:58', 0, NULL, 1),
(11405, 'Monika', '27', '9360476347', '', 'monima1730@gmail.com', '1999-07-17', 23, '3', '2', 'Narayan', 'Coolie', 15000.00, 4, 13000.00, 15000.00, 'Thodaiyarpet', 'Thodaiyarpet', '2212110001', '', '2', 'upload_files/candidate_tracker/12141567336_monica resume.pdf', NULL, '1', '2022-12-13', 15, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-11 12:27:57', 1, '2022-12-13 12:06:28', 0, NULL, 1),
(11406, 'magesh', '14', '9080133299', '8124008834', 'magesh21899@gmail.com', '1999-08-21', 23, '2', '2', 'balaiya', 'coolie', 200000.00, 1, 0.00, 350000.00, 'chennai', 'chennai', '2212110002', '1', '1', 'upload_files/candidate_tracker/25946320665_Magesh_CV.pdf', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills in JS Have lookin for testing and Java profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-11 12:33:18', 99, '2022-12-12 11:13:38', 0, NULL, 1),
(11407, 'sabash joseph walls d', '23', '9600197317', '', 'sabashwall@gmail.com', '2000-03-07', 22, '2', '2', 'eugen d', 'house wife', 184000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2212110003', '1', '1', 'upload_files/candidate_tracker/54516022932_test 2.pdf', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Basic Skills In JS Have Looking For Testing And Java Profile.If he is coming back after learning will give a try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-11 12:42:17', 99, '2022-12-12 11:14:02', 0, NULL, 1),
(11408, 'V.lakshmi prabha', '4', '9025685521', '', 'prabhavenkat97@gmail.com', '1997-10-17', 25, '2', '2', 'Venkatesan', 'Manager BOB', 30.00, 1, 0.00, 15.00, 'Anna nagar east', 'Anna nagar east', '2212110004', '1', '1', 'upload_files/candidate_tracker/76123908314__prabha (3).docx', NULL, '1', '2022-12-14', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Long career Gap seems to be over confident need to train a lot kindly check and let me know your inputs\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-11 03:00:14', 85, '2022-12-14 02:30:20', 0, NULL, 1),
(11409, 'Lohesh J', '31', '8248746939', '9095503045', 'Loheshjayabal@gmail.com', '1998-03-03', 24, '2', '2', 'Jayabal ganapathy', 'TV service', 15000.00, 1, 0.00, 25000.00, 'Salem', 'chennai', '2212120001', '1', '1', 'upload_files/candidate_tracker/49099198886_Lohesh J MT.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Looking for Testing or Java openings', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-12 09:39:21', 99, '2022-12-14 09:16:13', 0, NULL, 1),
(11410, 'Sriaravind V', '4', '8637486686', '7358968091', 'sriaravind907@gmail.com', '2002-04-11', 20, '2', '2', 'V.Mahaswari', 'Employee in textile company', 100000.00, 1, 0.00, 16000.00, 'Dindigul', 'Dindigul', '2212120002', '3', '1', 'upload_files/candidate_tracker/90970680407_sriaravind V .pdf', NULL, '1', '2022-12-12', 0, '', '3', '59', '2022-12-22', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B - Banu Team in Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-12 09:52:10', 60, '2022-12-13 03:18:15', 0, NULL, 1),
(11411, 'Salamon Moses', '6', '9566222461', '', 'salamonmoses24@gmail.com', '1998-06-24', 24, '1', '2', 'D.thomas', 'Fisherman', 18000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2212120003', '', '1', 'upload_files/candidate_tracker/22610002440_WhatsApp Image 2022-12-12 at 11.02.32 AM.pdf', NULL, '1', '2022-12-12', 0, 'P1066', '5', '16', NULL, 0.00, '', '0', NULL, '1', 'Sales Sustainability Doubts', '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-12 11:04:11', 1, '2022-12-12 11:09:28', 0, NULL, 1),
(11412, 'Vigneshraja', '16', '8098387662', '9994391838', 'vraj321123@gmail.com', '1996-07-02', 26, '2', '2', 'Solaimuthu', 'Gold Smith', 40000.00, 1, 12000.00, 14000.00, 'Pudukkottai dt, Rayavaram', 'Puzhuthivakkam', '2212120004', '3', '2', 'upload_files/candidate_tracker/69175470224_Resume.docx', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication for MIS not open for sales Calls too not suitable', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-12 11:07:21', 99, '2022-12-12 01:00:20', 0, NULL, 1),
(11413, 'Balamurugan', '4', '9080443132', '8148394308', 'muruganbala7471@gmail.com', '1999-03-31', 23, '1', '1', 'Prema', 'Home maker', 20000.00, 1, 21000.00, 20000.00, '23/11b kulasekaren street Gandhi nagar nagelkeni', 'Chennai', '2212120005', '', '2', 'upload_files/candidate_tracker/8988122812_BALAMURUGAN RAJENDRAN(GE10896).pdf', NULL, '2', '2022-12-12', 0, 'Nil', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Have few months exp in Star Health Career Gap is there he is focusing much on the distance to be travelled', '1', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-12 11:37:52', 1, '2022-12-12 11:42:31', 0, NULL, 1),
(11414, 'ARUNPANDI', '4', '8072240682', '9655692075', 'arunpandi1744@gmail.com', '1999-12-26', 22, '2', '1', 'Karuppaiah', 'Farmar', 18000.00, 1, 0.00, 18000.00, 'Kariapatti', 'Ekkattudhangal', '2212120006', '1', '1', 'upload_files/candidate_tracker/93524595088_P.K.ARUNPANDI2 (1).docx', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile,fresher career gap need to be trained a lot kindly check and let meknow your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-12 11:53:49', 85, '2022-12-13 11:06:59', 0, NULL, 1),
(11415, 'Syed Hussain', '4', '9361449801', '6380489201', 'Syedhussainn0708@gmail.com', '2001-08-07', 21, '2', '2', 'Syed Abdul Majid', 'Painter', 19000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2212120007', '1', '1', 'upload_files/candidate_tracker/19162115940_SYED', NULL, '1', '2022-12-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance Will not sustain in our roles fresher not ssuitale', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-12 12:52:48', 99, '2022-12-12 01:13:31', 0, NULL, 1),
(11416, '', '0', '7424061213', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212120008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-12 03:09:42', 0, NULL, 0, NULL, 1),
(11417, '', '0', '9686041912', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212120009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-12 03:46:42', 0, NULL, 0, NULL, 1),
(11418, '', '0', '8925417027', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212120010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-12 05:03:25', 0, NULL, 0, NULL, 1),
(11419, 'Saranraj V', '4', '8489475503', '9345374031', 'saranrajv2000@gmail.com', '2000-09-17', 22, '2', '2', 'K veluchamy', 'Pattern master', 20000.00, 1, 0.00, 18000.00, 'Theni', 'St Thomas mount', '2212120011', '1', '1', 'upload_files/candidate_tracker/85374394768_saranraj.v resume.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Target based roles will not sustain in other roles too not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-12 06:43:50', 85, '2022-12-13 11:07:16', 0, NULL, 1),
(11420, 'SIVAKUMAR S', '26', '7358617564', '9840781067', 'sivakuma1731999@gmail.com', '1999-03-17', 23, '2', '2', 'Parents', 'Mother maths tutor and father retired', 20000.00, 1, 0.00, 20000.00, 'Chennai-602024', 'Thiruninravur', '2212120012', '1', '1', 'upload_files/candidate_tracker/93145510734_siva__NewRESUME.pdf', NULL, '1', '2022-12-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance ,no communication,not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-12 06:43:57', 99, '2022-12-15 10:39:15', 0, NULL, 1),
(11421, 'Deblina saha', '4', '9903639625', '7424061213', 'Sandipbabu1990@gmail.com', '1994-03-29', 28, '3', '1', 'Sandip Kumar Singhababu', 'Service', 15000.00, 2, 25000.00, 30000.00, 'West Bengal', 'Minjur', '2212120013', '', '2', 'upload_files/candidate_tracker/11792947080_DEBLINA SAHA.pdf', NULL, '1', '2022-12-13', 1, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-12 07:07:31', 1, '2022-12-12 07:15:03', 0, NULL, 1),
(11422, '', '0', '8838840494', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212130001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-13 10:03:53', 0, NULL, 0, NULL, 1),
(11423, 'Periyasamy kumar', '26', '9344883161', '', 'periyasamy8840@gmail.com', '2007-12-13', 0, '2', '2', 'No', 'No', 15000.00, 0, 10500.00, 13000.00, 'Pallikaranai', 'Chennai', '2212130002', '3', '2', 'upload_files/candidate_tracker/24259567553_Periyasamy Resume.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication too long distance too not suitable', '7', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 10:45:27', 1, '2022-12-13 10:51:03', 0, NULL, 1),
(11424, 'riyajutheen', '16', '7401022830', '', 'mohamedriyaj22@gmail.com', '1997-11-11', 25, '2', '2', 'alayutheen', 'gerogery shop', 20000.00, 1, 0.00, 400000.00, 'chennai', 'cheenai', '2212130003', '1', '1', 'upload_files/candidate_tracker/94934624274_riyaz.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for core Data scientist profile,will not sustain in our roles', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-13 10:46:10', 1, '2022-12-13 11:18:39', 0, NULL, 1),
(11425, 'Barkavi.M', '28', '8939260076', '', 'barkavi7510@gmail.com', '1999-06-01', 23, '2', '2', 'Moorthy.s', 'Auto driver', 25000.00, 2, 14000.00, 21000.00, 'No.1 Anna street tv nagar, ayanavaram, chennai-23', 'Chennai', '2212130004', '3', '2', 'upload_files/candidate_tracker/38863739301_RESUME.pdf', NULL, '1', '2022-12-13', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Looking For Salary Growth Only Have Exp In MIS Long Run Doubts', '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 10:50:15', 1, '2022-12-13 11:02:49', 0, NULL, 1),
(11426, 'M.Monisha', '28', '7401091999', '7358795258', 'monishamani1909@gmail.com', '1998-09-19', 24, '2', '2', 'Jayanthi', 'Housewife', 25000.00, 2, 14000.00, 21000.00, '40/99 baracka road Nammalwarpet', 'Chennai', '2212130005', '3', '2', 'upload_files/candidate_tracker/71274840839_Monisha.pdf', NULL, '1', '2022-12-13', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication looking for Salary growth only have exp in MIS long run doubts', '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 10:50:53', 1, '2022-12-13 10:58:19', 0, NULL, 1),
(11427, '', '0', '7010122830', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212130006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-13 11:07:32', 0, NULL, 0, NULL, 1),
(11428, 'Rajeshwari', '4', '8124674730', '', 'rajeshwari8694@gmail.com', '1995-06-06', 27, '2', '2', 'Nagaraj', 'Business', 25000.00, 1, 26000.00, 28000.00, 'Chennai', 'Chennai', '2212130007', '1', '2', 'upload_files/candidate_tracker/55160236104_Resume13compressed.pdf', NULL, '1', '2022-12-13', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Insurance Domain but focusing much in Renewals Collections,Have exp in sales calling too Salary is high than our budget Multi Language Kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-13 11:30:50', 99, '2022-12-13 11:45:14', 0, NULL, 1),
(11429, 'A.Nirmal anand', '11', '8838830494', '9840746298', 'nirmalanand.a99@gmail.com', '1999-09-29', 23, '2', '1', 'R.Ashok rajagopalan', 'Artist,writer', 80000.00, 1, 0.00, 15000.00, 'Korattur', 'Korattur', '2212130008', '1', '1', 'upload_files/candidate_tracker/5506049838_resume nirmalanand-1.pdf', NULL, '1', '2022-12-13', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Communication Seems to be very slow not active will not sustain in our roles and handle our pressure', '6', '1', '', '1', '1', '', '2', '1970-01-01', '2', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-13 11:39:53', 99, '2022-12-13 12:08:49', 0, NULL, 1),
(11430, 'V shalini', '4', '7305534050', '8190857330', 'shalinivenkatesan0109@gmail.com', '2000-09-01', 22, '3', '2', 'T.venkatesan', 'The Hindu press', 40000.00, 1, 13000.00, 15000.00, 'Kandhanjavadi', 'Kandhanjavadi', '2212130009', '', '2', 'upload_files/candidate_tracker/27161091549_V.Shalini resume (1).pdf', NULL, '1', '2022-12-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 12:10:10', 1, '2022-12-13 12:15:31', 0, NULL, 1),
(11431, '', '0', '8925622051', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212130010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-13 12:30:41', 0, NULL, 0, NULL, 1),
(11432, 'Sanjay C', '11', '7305316399', '', 'sanjayc260501@gmail.com', '2001-05-26', 21, '2', '2', 'Chandrasekaran V', 'Auto Driver', 15000.00, 1, 260000.00, 320000.00, 'Chennai', 'Chennai', '2212130011', '1', '2', 'upload_files/candidate_tracker/35373598645_Sanjay C Resume (1) (1).pdf', NULL, '1', '2022-12-14', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication is Good Have 8 months Exp in Recruitment but only IT exp Need to train a lot in non IT,long run doubts will confirm the profile later', '6', '1', '', '1', '1', '', '2', '2022-12-21', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-13 06:25:12', 99, '2022-12-14 10:14:57', 0, NULL, 1),
(11433, 'Flora Lazar', '11', '8248339114', '', 'floralazar98@gmail.com', '1998-01-10', 24, '3', '2', 'lazar Joseph', 'daily wages', 12000.00, 1, 12000.00, 15000.00, 'chennai', 'chennai', '2212130012', '', '2', 'upload_files/candidate_tracker/86264139797_Flora Lazar CV.docx', NULL, '1', '2022-12-17', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-13 06:31:23', 1, '2022-12-13 06:38:56', 0, NULL, 1),
(11434, 'Loga priya', '4', '8072830680', '9688368937', 'Logapriyaramanathan12@gmail.com', '2000-02-12', 22, '2', '2', 'Ramanathan', 'Account manager', 25000.00, 1, 21000.00, 22000.00, 'Thanjavur', 'Thanjavur', '2212130013', '1', '2', 'upload_files/candidate_tracker/21215704217_Priya Resume 1.pdf', NULL, '3', '2022-12-14', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-13 06:35:34', 99, '2022-12-14 10:15:24', 0, NULL, 1),
(11435, 'Om vignesh. U', '4', '9171325927', '9080000503', 'vickydme1998@gmail.com', '1998-03-04', 24, '2', '2', 'Udaya kumar', 'Agriculture business', 10000.00, 1, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2212140001', '3', '1', 'upload_files/candidate_tracker/96517462225_RESUME.pdf', NULL, '1', '2022-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for telecaller Sales profile looking much for non voice and inbound callings\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 09:39:18', 1, '2022-12-14 09:50:09', 0, NULL, 1),
(11436, 'Arun Ramasamy', '31', '8220199911', '', 'arunramasamy46@gmail.com', '2001-11-17', 21, '2', '2', 'Ramasamy', 'Chennai', 200000.00, 1, 0.00, 200000.00, 'Aruppukottai', 'Madurai road', '2212140002', '1', '1', 'upload_files/candidate_tracker/38125956589_Arun.R-RESUME.-1 (2).pdf', NULL, '1', '2022-12-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Already attended and got rejected in Technical written task,Not open for TxxampC Need time to confirm need to train a lot if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-14 09:52:36', 99, '2022-12-14 10:15:50', 0, NULL, 1),
(11437, 'Muthulakshmi. S', '11', '8939575004', '9840696038', 'muthulakshmianton12@gmail.com', '2000-06-14', 22, '2', '2', 'Sankar. C', 'Painter', 20000.00, 1, 0.00, 15000.00, 'ECR Kottivakkam, chennai', 'ECR Kottivakkam, chennai', '2212140003', '3', '1', 'upload_files/candidate_tracker/17989304824_NEW MUTHU RESUME.docx', NULL, '1', '2022-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location constraint Processed for CRM but she is looking for Sales ,scheduled her for 2nd round but left without attending the next round and later understood that she is not ok with Target', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 10:37:51', 1, '2022-12-14 10:46:44', 0, NULL, 1),
(11438, 'Bhuvaneswari.V', '11', '9940511028', '9790826031', 'bhuvanavelubhuvana@gmail.com', '2001-08-29', 21, '2', '2', 'G.Velu', 'Auto driver', 20000.00, 1, 0.00, 15000.00, 'Kottivakkam,ECR', 'Chennai', '2212140004', '3', '1', 'upload_files/candidate_tracker/10017379133_NEW RESUME BH.docx', NULL, '1', '2022-12-14', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Location Constraint Processed For CRM But She Is Looking For Sales ,Scheduled Her For 2nd Round But Left Without Attending The Next Round And Later Understood That She Is Not Ok With Target', '6', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 10:38:37', 1, '2022-12-14 10:45:48', 0, NULL, 1),
(11439, '', '0', '8969575004', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 10:49:42', 0, NULL, 0, NULL, 1),
(11440, 'M. Hemalatha', '4', '9363348195', '', 'hemalatha18051@Gmail.com', '2002-05-18', 20, '3', '2', 'Devaki', 'Farmer', 75000.00, 1, 0.00, 10000.00, 'Vadakal', 'Vadakal', '2212140006', '', '1', 'upload_files/candidate_tracker/8551778679_Hemalatha RESUME (5).docx', NULL, '1', '2022-12-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 11:49:05', 1, '2022-12-14 11:57:40', 0, NULL, 1),
(11441, 'K.Abirami', '4', '8072325598', '', 'chithuammu12@gmail.com', '1998-04-12', 24, '3', '2', 'K.Tamilarasi', 'House Wife', 30000.00, 1, 12000.00, 12000.00, 'Nemam', 'Thanjavur', '2212140007', '', '2', 'upload_files/candidate_tracker/64592988347_Abirami.k-1.pdf', NULL, '1', '2022-12-14', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 11:49:50', 1, '2022-12-14 11:57:01', 0, NULL, 1),
(11442, '', '0', '8248219041', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 11:50:04', 0, NULL, 0, NULL, 1),
(11443, 'P. Suhail', '25', '9966859504', '', 'suhail.pslv225@gmail.com', '1999-02-24', 23, '2', '2', 'P. Reddy Mahaboob', 'Farmer', 20000.00, 3, 24000.00, 30000.00, 'Mulakalacheruvu, Andhar Pradesh -517390', 'Mahadevapura, Bangalore', '2212140009', '1', '2', 'upload_files/candidate_tracker/37401980715_Suhail Resume_1.docx', NULL, '1', '2022-12-15', 7, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '8', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-14 11:53:28', 85, '2022-12-14 05:12:44', 0, NULL, 1),
(11444, '', '0', '8610604944', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 02:28:19', 0, NULL, 0, NULL, 1),
(11445, 'damodharan p s', '13', '9344766424', '6379361056', 'damodharan287@gmail.com', '2000-07-28', 22, '3', '2', 'srinivasan', 'fresher', 100.00, 0, 0.00, 4.00, 'chennai', 'kumbakonam', '2212140011', '', '1', 'upload_files/candidate_tracker/67289541342_DamodharanResume.pdf', NULL, '1', '2022-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-14 04:28:28', 1, '2022-12-14 04:54:04', 0, NULL, 1),
(11446, 'Venkatesh', '4', '9791039577', '9677023983', 'Venkateshvenkatesh97148@gmail.com', '1999-07-09', 23, '2', '2', 'Narayanan', 'Sales man', 25000.00, 2, 15000.00, 20000.00, 'R a puram', 'Chennai', '2212140012', '1', '2', 'upload_files/candidate_tracker/26315448552_vengu+resume.pdf', NULL, '1', '2022-12-15', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-14 04:42:53', 99, '2022-12-15 10:16:17', 0, NULL, 1),
(11447, 'mukesh', '4', '9677269452', '', 'mukesh18jun@gmail.com', '1999-06-18', 23, '2', '2', 'p.k.murali', 'sales engineer', 200000.00, 1, 28785.00, 28785.00, 'chennai', 'chennai', '2212140013', '1', '2', 'upload_files/candidate_tracker/36221057195_mukesh-MURALI-Resume (2).pdf', NULL, '3', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'too long Distance up and down 46kms also holding an offer for 20K in Testing Role will not join us not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-14 04:49:19', 99, '2022-12-19 01:22:12', 0, NULL, 1),
(11448, '', '0', '6382921910', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 05:21:54', 0, NULL, 0, NULL, 1),
(11449, '', '0', '9790955359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 06:11:14', 0, NULL, 0, NULL, 1),
(11450, 'Sowmiya', '4', '8220930824', '8675165421', 'ksowmiya33@gmail.com', '1999-08-21', 23, '2', '2', 'Kumar', 'Conductor', 30000.00, 1, 0.00, 17000.00, 'Ulundurpet', 'Tambaram', '2212140016', '1', '1', 'upload_files/candidate_tracker/34720952281_CV_2022071115541568.pdf', NULL, '3', '2022-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-14 06:18:17', 1, '2022-12-14 06:24:35', 0, NULL, 1),
(11451, '', '0', '7639985089', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212140017', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-14 06:26:23', 0, NULL, 0, NULL, 1),
(11452, 'rajarajeshwari', '31', '7639985087', '', 'rajarajeshwari.mng@gmail.com', '2001-02-02', 21, '2', '2', 'nagarajan', 'famer', 15000.00, 2, 0.00, 2.50, 'chennai', 'chennai', '2212140018', '1', '1', 'upload_files/candidate_tracker/5068947966_rajeshwari (1).pdf', NULL, '1', '2022-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Looking for Java as a prior position,not much comfort with Stipend her expectation is minimum 2.5LPA will not sustain in a long run', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-14 06:52:15', 1, '2022-12-15 02:50:03', 0, NULL, 1),
(11453, 'PARTHIBAN U', '31', '9150940944', '', 'parthiuk482@gmail.com', '2007-12-15', 0, '2', '2', 'Uthira kumaran G', 'Business', 20000.00, 1, 0.00, 18000.00, 'CHENNAI MADURAVOYAL', 'CHENNAI MADURAVOYAL', '2212150001', '1', '1', 'upload_files/candidate_tracker/75998676926_Parthiban1 (1).pdf', NULL, '1', '2022-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics in Javascript Ned to train a lot asked the candidate to wait for 2nd level to check with Gokul but he left without informing', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-15 12:50:11', 99, '2022-12-16 11:02:54', 0, NULL, 1),
(11454, 'g deepak', '4', '9003878277', '', 'deepak017hp@gmail.com', '1999-08-29', 23, '2', '2', 'gandhi', 'cooli', 15000.00, 1, 0.00, 20000.00, 'theni', 'taramani', '2212150002', '1', '1', 'upload_files/candidate_tracker/33492522972_deepak resume-converted-converted (1).docx', NULL, '1', '2023-01-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up no communication will not handle our sales calls', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-15 09:48:30', 99, '2023-01-09 04:38:56', 0, NULL, 1),
(11455, 'T.Surya', '4', '6382395698', '6382752385', 'suryasan4929@gmail.com', '2001-02-11', 21, '1', '2', 'V.Thangaraj', 'Farmer', 20000.00, 1, 0.00, 15000.00, '27, palanigoundan palayam, pasur,erode-638154', '27, palanigoundan palayam, pasur,erode-638154', '2212150003', '', '1', 'upload_files/candidate_tracker/43313620082_surya resume 1.docx', NULL, '1', '2022-12-15', 0, '-', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 11:05:56', 1, '2022-12-15 11:20:22', 0, NULL, 1),
(11456, 'Priyanka', '6', '9884243558', '', 'sravapriya@gmail.com', '2002-12-15', 20, '1', '2', 'Devi', 'Export', 30000.00, 0, 13000.00, 15000.00, 'Tiruvottiyur', 'Tiruvottiyur', '2212150004', '', '2', 'upload_files/candidate_tracker/75447163253_priyanka srinivasan.pdf', NULL, '1', '2022-12-15', 0, 'P1269', '4', '53', NULL, 0.00, '', '0', NULL, '2', '5050 Profile Sustainability Doubts family need is there,No highest graduation only 10th have 8 months exp in telecalling kindly check and let me jknow your inputs', '5', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 11:51:29', 1, '2022-12-15 12:15:40', 0, NULL, 1),
(11457, 'V.Rakesh', '4', '9361436585', '', 'rr5512474@gmail.com', '2001-11-13', 21, '2', '2', 'V.Leelarani', 'Tailor', 10000.00, 1, 0.00, 12000.00, 'No:244/8 south west boag road,t.nagar, Chennai -11', 'Nandanama', '2212150005', '3', '1', 'upload_files/candidate_tracker/90286358140_Rakesh-resume 2.pdf', NULL, '1', '2022-12-15', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher communication Ok Need to train a lot can give a try kindly check and let me know your interest.', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-15 11:55:26', 85, '2022-12-15 12:31:53', 0, NULL, 1),
(11458, 'Mohamed Thoufeek', '33', '9524050866', '9875488915', 'mohamedthoufeek80@gmail.com', '2000-06-22', 22, '2', '2', 'MOHAMED IQBAL BATCHA T.M', 'MBA', 75000.00, 0, 0.00, 15000.00, '1/122 East Street vadakkumagudi Thanjavur 614303', 'Valachey, pallikaranai', '2212150006', '1', '1', 'upload_files/candidate_tracker/79686969502_tk.pdf', NULL, '1', '2022-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication no basics in the acounts not suitable for our roles', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-15 11:56:03', 85, '2022-12-16 11:33:44', 0, NULL, 1),
(11459, 'radha k', '4', '9940640613', '', 'radhayuvi@gmail.com', '1987-07-22', 35, '2', '1', 'sathish', 'railway', 30000.00, 3, 0.00, 12000.00, 'chennai', 'chennai', '2212150007', '2', '1', 'upload_files/candidate_tracker/51264441059_S.Radha1 Resume.doc', NULL, '1', '2022-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for non voice process, have a long career gap not open for Sales Calls will not run in a long\n', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 12:01:49', 1, '2022-12-15 12:04:48', 0, NULL, 1),
(11460, 'Saranya', '4', '9345789466', '', 'Saranyasaranyq9522@gmail.com', '2002-05-27', 20, '2', '2', 'Saravanan', 'Farmer', 45000.00, 1, 0.00, 18000.00, 'Trichy', 'Tnagar', '2212150008', '3', '1', 'upload_files/candidate_tracker/52217153639_Saranya.pdf', NULL, '1', '2022-12-15', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open up not suitable for telesales will not handle our Sales pressure', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 12:55:43', 1, '2022-12-15 01:07:48', 0, NULL, 1),
(11461, 'Varsha', '11', '9342059675', '9176389270', 'varsham261999@gmail.com', '1999-09-26', 23, '2', '2', 'Suresh', 'Export worker', 40.00, 2, 15000.00, 18000.00, 'Tambaram', 'Tambaram', '2212150009', '1', '2', 'upload_files/candidate_tracker/72480097174_varsha new resume .pdf', NULL, '1', '2022-12-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication, but speaking sounds good,too long distance up and down 50 kms,No Wrtten Skills have exp in telecalling but not open for the same again and looking for recruiter role.Will not sustain in our Roles not suitable', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-15 01:51:49', 99, '2022-12-20 09:36:08', 0, NULL, 1),
(11462, '', '0', '8072120248', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212150010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-15 07:58:31', 0, NULL, 0, NULL, 1),
(11463, 'Bharath V', '20', '6379483879', '', 'bharathveera11@gmail.com', '1997-07-15', 25, '2', '2', 'S.M. Veerapathiran', 'Weaver', 18000.00, 1, 14500.00, 18000.00, 'Vediyangadu, Thiruvallur', 'Madurvoyal chennai', '2212150011', '1', '2', 'upload_files/candidate_tracker/99596860949_Bharath RESUME .docx', NULL, '1', '2022-12-16', 0, '', '4', '89', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile fresher for Telesales have Exp in backend kindly check and let me know your inputs', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-15 09:46:47', 99, '2022-12-16 11:34:59', 0, NULL, 1),
(11464, 'Abdul Hameed', '14', '9841459993', '7358240460', 'abdulhameedj6@gmail.com', '2001-06-06', 21, '3', '2', 'Jaleel ahamed', 'Business', 20000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2212150012', '', '1', 'upload_files/candidate_tracker/11002734878_inbound6229277872592527224.pdf', NULL, '2', '2022-12-15', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-15 10:32:16', 1, '2022-12-15 10:46:03', 0, NULL, 1),
(11465, 'Balamurali M', '31', '7708594323', '', 'balamurali00721@gmail.com', '1999-07-18', 23, '2', '2', 'murugesan g', 'cable operator', 40000.00, 1, 0.00, 20000.00, 'sirkali', 'sirkali', '2212160001', '1', '1', 'upload_files/candidate_tracker/56197957401_Resume.pdf', NULL, '2', '2022-12-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 1 yr gap 3 months exp in IT with 16K had some certification course in Front end have basics in javascript open for internship and employment but need some time to confirm his next schedule will check once and confirm ', '2', '1', '', '1', '1', '', '2', '2022-12-19', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 10:52:04', 99, '2022-12-16 11:03:16', 0, NULL, 1),
(11466, 'K.priyanka', '4', '9025368054', '9787096693', 'Pp1277402@gmail.com', '1998-12-02', 24, '2', '2', 'Kalidoss Gowri', 'Teaching', 10000.00, 1, 0.00, 15000.00, 'Thindivana', 'V Nallalam , Thindivana TK, Villupuram DT .', '2212160002', '1', '1', 'upload_files/candidate_tracker/18398008914_Priyanka4.pdf', NULL, '3', '2022-12-16', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Had a telephonic discussion with the candidate fresher can be trained Ready to relocate chennai can give a try kindly have a virtual round and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 10:55:17', 99, '2022-12-16 06:09:09', 0, NULL, 1),
(11467, 'Rohith', '31', '7639028819', '6393131997', 'rohith1452002@gmail.com', '1999-11-07', 23, '2', '2', 'Senthil Kumar', 'Driver', 120000.00, 1, 0.00, 4.00, 'Vaniyambadi', 'Vaniyambadi', '2212160003', '1', '1', 'upload_files/candidate_tracker/97345050015_Rohith_finalized..pdf', NULL, '2', '2022-12-16', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'He was outside should call later\n', '2', '1', '', '1', '1', '', '2', '2022-12-17', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 10:57:09', 99, '2022-12-16 11:23:30', 0, NULL, 1),
(11468, 'Sivakailash', '4', '6374089846', '', 'Sivasiva16012001@gmail.com', '2001-01-16', 21, '2', '2', 'Siva', 'Frencher', 20000.00, 15000, 0.00, 1.00, 'Karaikal', 'Chennai', '2212160004', '1', '1', 'upload_files/candidate_tracker/11543522305_SIVAKAILASH RESUME NEW.pdf', NULL, '1', '2022-12-16', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Can give a try for B2B Calling need to be trained kindly check and let me know your interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-16 11:46:02', 85, '2022-12-16 11:53:35', 0, NULL, 1),
(11469, 'Srikiran.E', '4', '7379274073', '6379274073', 'Kiransri07102000@gmail.com', '2000-10-07', 22, '2', '2', 'Mythili', 'Accountants', 50000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2212160005', '1', '1', 'upload_files/candidate_tracker/34642415585_RESUME FILE KIRAN (1).pdf', NULL, '1', '2022-12-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'His Focus is into Non voice process and not much ideas into voice process Long distance and asked him to wait for 2nd level but left without attending the round', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 12:22:01', 99, '2022-12-16 12:30:15', 0, NULL, 1),
(11470, 'Srikiran.E', '4', '6379274073', '9500369957', 'Kiransri07102000@gmail.com', '2000-10-07', 22, '3', '2', 'Mythili m', 'Accountants', 50000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2212160006', '', '1', 'upload_files/candidate_tracker/52292100089_RESUME FILE KIRAN.docx', NULL, '1', '2022-12-16', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-16 12:28:36', 1, '2022-12-16 12:30:27', 0, NULL, 1),
(11471, '', '0', '7603886709', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212160007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-16 03:18:21', 0, NULL, 0, NULL, 1),
(11472, 'S.Balashanmugam', '31', '9962178671', '7010981151', 'shanmugambala906@gmail.com', '2000-06-17', 22, '2', '2', 'A.Sarathy', 'Mechanic', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2212160008', '1', '1', 'upload_files/candidate_tracker/61191013744_S.Balashanmugam Resume.pdf', NULL, '1', '2022-12-17', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 04:47:40', 130, '2024-06-03 03:38:46', 0, NULL, 1),
(11473, 'gomathi', '16', '9444386935', '', 'gomug97@gmail.com', '1997-12-07', 25, '2', '1', 'sathish', 'assistant manager', 50000.00, 1, 20000.00, 20000.00, 'chennai', 'kavarapettai', '2212160009', '1', '2', 'upload_files/candidate_tracker/57213437682_GomathiResnew.pdf', NULL, '1', '2022-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication orally managable no relevant Exp have exp in sales but not interested towards that.she is into medical treatment will not sustain in a long ', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-16 04:49:30', 99, '2022-12-17 11:55:31', 0, NULL, 1),
(11474, 'Rafiha R. K', '14', '9952275622', '', 'Rafiharajan@gmail.com', '2000-12-10', 22, '4', '2', 'M. Rajan', 'Driver', 40000.00, 1, 0.00, 25000.00, 'Chennai', 'Guindy', '2212160010', '', '1', 'upload_files/candidate_tracker/97627860123_Rafiha resume.pdf', NULL, '3', '2023-01-03', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-16 04:50:55', 1, '2022-12-16 05:18:50', 0, NULL, 1),
(11475, 'chiranjeevi', '5', '9025209661', '', 'chiranjeevi902520@gmail.com', '1999-12-14', 23, '1', '2', 'suburamani', 'landury', 25000.00, 1, 20000.00, 20000.00, 'chennai', 'chennai', '2212160011', '', '2', 'upload_files/candidate_tracker/59837284085_Document from Cj 01.pdf', NULL, '1', '2022-12-16', 0, 'p1377', '3', '59', '2022-12-26', 234000.00, '', '5', '1970-01-01', '1', 'Selected for Mani Team Staff Role \n Communication Ok Have Exp As Medical Rep For An Year,Need To Be Trained In Our Domain Kindly Check And Let Me Know Your Inputs', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-16 04:51:23', 60, '2022-12-23 04:48:12', 0, NULL, 1),
(11476, '', '0', '8220573232', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212160012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-16 04:52:19', 0, NULL, 0, NULL, 1),
(11477, '', '0', '8056018536', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212170001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-17 08:52:54', 0, NULL, 0, NULL, 1),
(11478, 'S.Balashanmugam', '31', '7010981151', '9962178671', 'shanmugambala906@gmail.com', '2000-06-17', 22, '2', '2', 'A.Sarathy', 'Mechanic', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2212170002', '1', '1', 'upload_files/candidate_tracker/80513711230_S.Balashanmugam Resume.pdf', NULL, '1', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much strong in Basic Skills can be trained a lot not much open with TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-12-26', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-17 09:16:03', 130, '2024-06-03 03:39:02', 0, NULL, 1),
(11479, 'T.Prabakaran', '23', '8056018535', '', 'Prabakar.tamizh23@gmail.com', '1996-08-23', 26, '2', '2', 'D.Tamizhaelvan', 'Laundry man', 20000.00, 1, 0.00, 15000.00, 'Urapakam', 'Urapakam', '2212170003', '1', '1', 'upload_files/candidate_tracker/41759307043_Praba resume IT.2022-1.pdf', NULL, '1', '2022-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no basics in Javascript too long distance but can relocate and stay in aunt home near by need to learn a lot let him come back after learning', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-17 10:43:20', 99, '2022-12-17 11:53:06', 0, NULL, 1),
(11480, 'nikhil narayan s', '4', '9884168204', '', 'nikhilchippala@gmail.com', '1997-09-09', 25, '2', '2', 'sasikumar', 'bank manager', 45000.00, 0, 0.00, 15000.00, 'chennai', 'chennai', '2212170004', '3', '1', 'upload_files/candidate_tracker/63142827714_DOC-20221025-WA0030..docx', NULL, '1', '2022-12-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having medical issue a lot will not suit in telecalling voice not clear not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-17 11:14:32', 99, '2022-12-17 11:53:59', 0, NULL, 1),
(11481, 'Visuvalingam', '4', '9080601067', '', 'Bad14god@gmail.com', '1998-12-17', 24, '2', '2', 'Balakrishnan', 'Farmer', 15000.00, 4, 0.00, 18000.00, 'Bhuvanagiri', 'Ambattur', '2212170005', '3', '1', 'upload_files/candidate_tracker/65025733592_IMG_20221217_114218.pdf', NULL, '1', '2022-12-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot will not sustain and handle the sales pressure not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-17 11:32:29', 1, '2022-12-17 11:48:36', 0, NULL, 1),
(11482, 'hemam manoranjan singh', '4', '9600219856', '', 'manoranjanhemam@gmail.com', '1991-12-31', 30, '2', '1', 'akoijam rebika devi', 'house wife', 40000.00, 1, 484000.00, 550000.00, 'moirang manipur', 'kovur chennai', '2212170006', '1', '2', 'upload_files/candidate_tracker/53246156835_Manoranjan Singh_Hemam Logistics_RS.docx', NULL, '1', '2022-12-19', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a long Exp in Customer Support mostly inbound Fresh to insurance Domain Local Language Just Manageable Current Salary is very high 4.84 LPA,Will not sustain and handle our Sales not suitable', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-17 12:17:22', 99, '2022-12-19 09:47:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11483, 'Logesh prabhu B', '16', '9677282925', '9962652570', 'Logeshprabhu23@gmail.com', '1993-04-23', 29, '2', '1', 'Devika s', 'House wife', 20000.00, 0, 300000.00, 400000.00, 'Chennai', 'Chennai', '2212170007', '1', '2', 'upload_files/candidate_tracker/92112105853_DOC-20221217-WA0000.docx', NULL, '1', '2022-12-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance up and down 60 kms a month back he joined a company and looking for change with the salary hike', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-17 04:02:06', 99, '2022-12-19 09:57:59', 0, NULL, 1),
(11484, 'Thilakavathi M', '31', '9148227581', '', 'thilakaggts14@gmail.com', '2000-06-14', 22, '2', '1', 'ARUNACHALAM A', 'Accounts executive', 25000.00, 1, 0.00, 17000.00, '#32/98 old mambalam road saidapet chennai 600015', '#32/98 old mambalam road saidapet chennai 600015', '2212180001', '1', '1', 'upload_files/candidate_tracker/759592604_Thilaka Resume-Final.docx', NULL, '1', '2022-12-24', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'married xxamp have 1yr kid not much strong in html xxamp CSS.', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-18 08:48:58', 99, '2022-12-24 10:16:49', 0, NULL, 1),
(11485, '', '0', '8300958112', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212180002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-18 11:15:08', 0, NULL, 0, NULL, 1),
(11486, 'C.thennavan', '4', '9361269748', '9944702024', 'thennuthennavan@gmail.com', '2004-04-01', 18, '2', '2', 'V.chandrasekar', 'Driver', 35000.00, 1, 12000.00, 15.00, '259 tps nager mc road thanjavur', '72/4 lic colony West extension mc road thanjavur', '2212190001', '1', '2', 'upload_files/candidate_tracker/77231773262_thennvan resume .pdf', NULL, '1', '2022-12-19', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 09:12:28', 99, '2022-12-19 10:57:15', 0, NULL, 1),
(11487, 'Prasenjeet mandal', '11', '9019823632', '8861744385', 'prasenjitmndl9@gmail.com', '1997-07-01', 25, '3', '2', 'Govinda mandal', 'Farmer', 25000.00, 0, 420000.00, 450000.00, 'RAICHUR', 'Bengaluru', '2212190002', '', '2', 'upload_files/candidate_tracker/83367290296_Prasanjit Mandal.pdf', NULL, '2', '2022-12-26', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '2', '2', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-19 10:12:33', 1, '2022-12-19 10:21:16', 0, NULL, 1),
(11488, '', '0', '7530044759', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 10:19:39', 0, NULL, 0, NULL, 1),
(11489, '', '0', '8197075788', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 10:20:56', 0, NULL, 0, NULL, 1),
(11490, '', '0', '8015676534', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 10:23:02', 0, NULL, 0, NULL, 1),
(11491, 'Kalaivani', '11', '9600168249', '7401090377', 'kalaivanigowri1203@gmail.com', '1996-03-27', 26, '2', '1', 'Sumathi', 'IT FIELD', 60000.00, 1, 10850.00, 20000.00, 'No:56/24 Bajani Koil Street ,t.nagar, Chennai', 'Chennai', '2212190006', '1', '2', 'upload_files/candidate_tracker/36547229693_kalai_Resume.pdf', NULL, '1', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Just 3 months Exp in IT recrutiment(2018) 2 yrs in Bank Clerical Profile 2 yrs gap due to marriage now looking for recruitment very high Salary Exp not ready to come down.Communication Average no basics in the recruitment Need to train from Scratch Will not handle our work pressure', '6', '1', '', '1', '1', '', '2', '1970-01-01', '1', '8', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 10:39:36', 99, '2022-12-19 10:58:46', 0, NULL, 1),
(11492, '', '0', '9360668331', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 11:02:07', 0, NULL, 0, NULL, 1),
(11493, 'kumaresan', '33', '7305334086', '', 'gokulkumaresan22@gmail.com', '2000-10-19', 22, '2', '2', 'dhamodharan', 'soletrader', 30000.00, 1, 12000.00, 15000.00, 'chennai', 'chennai', '2212190008', '1', '2', 'upload_files/candidate_tracker/37755646793_kumaresan .pdf', NULL, '1', '2022-12-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas in the accounts average communicaiton no Bike Looking only for salary hike in 6 months looking for opportunity only for salary not suitable', '4', '1', '', '1', '1', '', '2', '1970-01-01', '1', '7', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 11:16:14', 99, '2022-12-19 11:47:55', 0, NULL, 1),
(11494, '', '0', '8939408182', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 11:32:55', 0, NULL, 0, NULL, 1),
(11495, 'Nirmala Saravanan', '4', '7823959144', '9789181398', 'nithyasri2398@gmail.com', '1998-01-23', 24, '2', '2', 'M.saravanan', 'Carbendar', 15000.00, 1, 15000.00, 16000.00, 'Chrompet', 'Chrompet', '2212190010', '1', '2', 'upload_files/candidate_tracker/52016691224_1571303541176Resume_Nirmala.docx', NULL, '1', '2022-12-22', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Calling Exp with several companies can be trained in our roles,Distance need to focus,kindly check and let me know you interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-19 11:44:57', 85, '2022-12-22 11:25:36', 0, NULL, 1),
(11496, 'Vishwavinoth', '21', '8754945221', '', 'vishwavinothbca@gmail.com', '1998-05-20', 24, '4', '2', 'Vedhanayagi J', 'BCA', 300000.00, 1, 0.00, 15000.00, 'Nagapattinam', 'Chennai', '2212190011', '', '1', 'upload_files/candidate_tracker/74559078196_viswa vin Resume (1).pdf', NULL, '3', '2022-12-22', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-19 12:22:25', 1, '2022-12-19 12:26:53', 0, NULL, 1),
(11497, 'jinu baby', '33', '8289951075', '', 'jinukoyickan@gmail.com', '1994-07-04', 28, '1', '1', 'mathai k a', 'junior sales officer', 75000.00, 2, 0.00, 35000.00, 'kerala', 'bangalore', '2212190012', '', '2', 'upload_files/candidate_tracker/787229094_JINU BABY RESUME.docx', NULL, '2', '2022-12-21', 0, 'km0079', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '4', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-19 12:56:49', 1, '2022-12-19 01:05:25', 0, NULL, 1),
(11498, 'Vimal raj', '6', '9659634759', '6384175129', 'vimalvimmu965963@gmail.com', '1997-12-09', 25, '2', '2', 'Prabhakaran', 'Driver', 25000.00, 0, 0.00, 15000.00, 'Erode', 'Erode', '2212190013', '1', '1', 'upload_files/candidate_tracker/12555657067_Vimalraj resume.pdf', NULL, '1', '2022-12-20', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable for sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-19 01:55:09', 85, '2022-12-20 02:54:54', 0, NULL, 1),
(11499, '', '0', '9884745316', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 02:20:48', 0, NULL, 0, NULL, 1),
(11500, 'Divya .K', '4', '9159299112', '9585920602', 'divyasambath2319@gmail.com', '1998-05-19', 24, '3', '2', 'Kamalakannan', 'Labour', 7000.00, 0, 0.00, 15000.00, 'Tindivanam', 'Tindivanam', '2212190015', '', '1', 'upload_files/candidate_tracker/98092314993_K.DIVYA - 1-1.pdf', NULL, '3', '2022-12-26', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-19 03:25:38', 1, '2022-12-19 03:49:33', 0, NULL, 1),
(11501, 'Prithviraj', '23', '9176550425', '9840781573', 'prithviak57@gmail.com', '2000-11-28', 22, '2', '2', 'babu m', 'customs clearance', 50000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2212190016', '1', '1', 'upload_files/candidate_tracker/76656650992_PRITHVI RAJ RESUME NEW.docx', NULL, '1', '2022-12-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for IT Need time to confirm the TxxampC no basics Family settled willl not sustain in our roles not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 04:50:49', 99, '2022-12-20 11:11:34', 0, NULL, 1),
(11502, 'Gowtham P', '23', '8056129724', '', 'gowtham1582000@gmail.com', '2000-08-15', 22, '2', '2', 'R.Prem Kumar', 'Data base administrator.', 400000.00, 1, 0.00, 400000.00, 'Chennai', 'Chennai', '2212190017', '1', '1', 'upload_files/candidate_tracker/35587975468_Gowtham Resume (5).pdf', NULL, '1', '2022-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain holding 3 offers in hand with min 2.2 LPA to 4.5 LPA Looking for CMMI Level companies will not join and sustain', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 04:55:10', 99, '2022-12-21 10:42:02', 0, NULL, 1),
(11503, 'Ponkumar P', '2', '8248735741', '', 'ponkumar321@gmail.com', '2007-12-19', 0, '2', '2', 'Ponraj G', 'Business', 30000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2212190018', '1', '1', 'upload_files/candidate_tracker/92721842046_CV_2022112611133865-1.pdf', NULL, '1', '2022-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher No basics in JS,Stammering a lot will not sustain and handle our work not suitable not much comfort in TxxampC', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 05:02:19', 99, '2022-12-21 10:43:45', 0, NULL, 1),
(11504, 'raghavendhra', '2', '9566247684', '', 'raghulramesh843@gmail.com', '2000-05-15', 22, '2', '2', 'ramesh', 'welder', 20000.00, 2, 0.00, 400000.00, 'chennai', 'chennai', '2212190019', '1', '1', 'upload_files/candidate_tracker/53793495514_Raghavendhra MCA resume.pdf', NULL, '1', '2022-12-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Have basic skills in JS,Need to check for his sustainability his sister is in Accenture Need time to confirm on the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2022-12-22', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 05:08:11', 99, '2022-12-20 09:29:13', 0, NULL, 1),
(11505, 'Sivaperumal', '20', '8524910708', '8778081584', 'ferruperumal@gmail.com', '1995-02-03', 27, '2', '2', 'Sadaiyandi', 'Tea maker', 20000.00, 1, 24000.00, 30000.00, '2/80 Nadu st , Authoor,Mallaiyapuram ,Dindigul', '2/80 Nadu St, authoor, Mallaiyapuram, Dindigul,', '2212190020', '1', '2', 'upload_files/candidate_tracker/8492981616_new edited cv dec20.pdf', NULL, '3', '2022-12-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Sales but not a longer one.Worked in 3 companies 3 different domain and have a health issue he is into treatment for Rheumatoid arthritis. He left bajaj due to work pressure. Kindly hold this profile, will confirm the status. Salary Exp is more than his expeirence', '5', '2', '', '1', '3', '', '2', '2022-12-27', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 05:24:58', 99, '2022-12-20 09:30:44', 0, NULL, 1),
(11506, 'Sugadev', '16', '8754332195', '', 'sugadevbalasubramanian637@gmail.com', '1999-10-29', 23, '2', '2', 'Balasubramanian', 'Farmer', 5000.00, 1, 0.00, 400000.00, 'Manamadurai', 'Velachery,chennai', '2212190021', '1', '1', 'upload_files/candidate_tracker/7897406247_sugadsnow.pdf', NULL, '1', '2022-12-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 05:39:04', 99, '2022-12-20 09:31:24', 0, NULL, 1),
(11507, 'aslam', '4', '7306170150', '', 'aslambasha2225@gmail.com', '1994-05-09', 28, '2', '1', 'Shahid Basha', 'business', 28000.00, 1, 3.60, 28000.00, 'bangalore', 'bangalore', '2212190022', '1', '2', 'upload_files/candidate_tracker/65375870816_Aslam Resume (1).pdf', NULL, '1', '2022-12-20', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '2', '2', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 06:09:47', 99, '2022-12-20 01:12:12', 0, NULL, 1),
(11508, '', '0', '9751661446', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190023', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 06:11:01', 0, NULL, 0, NULL, 1),
(11509, '', '0', '8428987497', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190024', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 06:51:11', 0, NULL, 0, NULL, 1),
(11510, '', '0', '8870464349', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190025', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 08:04:00', 0, NULL, 0, NULL, 1),
(11511, 'R RANJITH KUMAR', '31', '8122739465', '', 'rajaranjithkumar17@gmail.com', '1998-05-20', 24, '2', '2', 'Raja K', 'Farmer', 5000.00, 1, 0.00, 15000.00, 'dharmapuri', 'Thoraipakkam', '2212190026', '1', '1', 'upload_files/candidate_tracker/27938931646_R Ranjith Kumar .pdf', NULL, '1', '2022-12-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher have a knowledge in React Can be trained 2nd round interviewed by manikandan,he was ok with TxxampC but need to confirm once, Need to schedule him for final round with Gokul', '2', '1', '', '1', '1', '', '2', '2022-12-22', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-19 10:15:28', 99, '2022-12-20 12:05:30', 0, NULL, 1),
(11512, '', '0', '6382026819', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212190027', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-19 11:24:19', 0, NULL, 0, NULL, 1),
(11513, 'Malavan', '31', '9788539254', '7708751573', 'malavan235@gmail.com', '2001-04-22', 21, '4', '2', 'Madhiyazhagan', 'Farmer', 8000.00, 1, 0.00, 12000.00, '269, South Street, Sri Aadhivaraganallur post,', 'Chennai', '2212200001', '', '1', 'upload_files/candidate_tracker/34842215063__M Malavan new Resume.pdf', NULL, '1', '2022-12-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to open a lot no basics in skills will not handle our work pressure and not suitable for our position', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-20 09:05:10', 99, '2022-12-21 01:04:34', 0, NULL, 1),
(11514, 'Manikandan K', '23', '6369982019', '', 'manidhiyamech07167@gmail.com', '1998-05-15', 24, '2', '2', 'Kandasamy', 'Former', 6000.00, 1, 0.00, 15000.00, 'Salem', 'Chennai', '2212200002', '1', '1', 'upload_files/candidate_tracker/99347747510_manikandan.pdf', NULL, '1', '2022-12-20', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic Skills in React Can be trained but he need time to confirm on the TxxampC if he comes back let us try\n', '2', '1', '', '1', '3', '', '2', '2022-12-22', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-20 09:07:54', 99, '2022-12-20 12:05:52', 0, NULL, 1),
(11515, 'Bharath Gouthaman J', '16', '8056156227', '8015189938', 'Gouthamwolverine3@gmail.com', '1997-10-08', 25, '2', '2', 'Jayaraj', 'Turnner', 45000.00, 1, 23000.00, 28000.00, 'Chennai', 'Chennai', '2212200003', '1', '2', 'upload_files/candidate_tracker/98559623524_Final Updated Goutham .pdf', NULL, '1', '2022-12-20', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance up and down 50kms Have Exp in Sales but not open for same and looking for MIS Average Communication will not sustain', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-20 10:21:35', 99, '2022-12-20 10:31:50', 0, NULL, 1),
(11516, 'jaya durga p', '4', '8939425832', '', 'jayadurga2629@gmail.com', '2001-09-26', 21, '2', '2', 'pushaparaj', 'chef', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2212200004', '2', '1', 'upload_files/candidate_tracker/22009673058_WhatsApp Image 2022-12-19 at 11.18.32 AM.pdf', NULL, '1', '2022-12-20', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Have 6 months Exp in Telecalling Collection Can be trained for our role,Can give a try kindly check and let me know your inputs', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 10:38:14', 1, '2022-12-20 10:40:31', 0, NULL, 1),
(11517, 'N.ASHWIN BARATH', '6', '7904027379', '', 'ashwinbarath096@gmail.com', '1996-10-23', 26, '2', '2', 'S.G NANTHAKUMAR', 'Own', 25.00, 1, 15000.00, 20000.00, 'Erode', 'Erode', '2212200005', '1', '2', 'upload_files/candidate_tracker/57257524719_ashwin barath.docx', NULL, '3', '2022-12-20', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '1st round selected but 2nd round abscond , number RNR', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-20 10:38:30', 85, '2022-12-20 02:53:19', 0, NULL, 1),
(11518, 'nirendran g', '6', '6382220547', '', 'dannymarley8@gmail.com', '1997-11-30', 25, '2', '2', 'gnanavel', 'business', 15000.00, 2, 14000.00, 17000.00, 'chennai', 'chennai', '2212200006', '2', '2', 'upload_files/candidate_tracker/24774398209_Nirendran G Resume 1.pdf', NULL, '1', '2022-12-20', 0, '', '3', '59', '2022-12-26', 230000.00, '', '4', '2023-04-27', '1', 'Selected for Syed Team in Staff Role \n Have Exp In Insurance Sales Can Be Trained For Our Profile Kindly Check And Let Me Know Your Inputs', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-20 10:42:01', 60, '2022-12-22 03:49:15', 0, NULL, 1),
(11519, 'bhuvaneshwari l', '4', '8667743972', '', 'kbsan202011@gmail.com', '1998-07-02', 24, '2', '2', 'loganthan g', 'driver', 20000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2212200007', '2', '1', 'upload_files/candidate_tracker/43198609315_WhatsApp Image 2022-12-19 at 11.18.32 AM.pdf', NULL, '1', '2022-12-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 10:47:56', 1, '2022-12-20 10:49:55', 0, NULL, 1),
(11520, 'vaishnavi m', '4', '9841523074', '', 'mvaishnavi589@gmail.com', '2002-05-08', 20, '2', '2', 'mohan', 'painter', 13000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2212200008', '2', '1', 'upload_files/candidate_tracker/24000624745_WhatsApp Image 2022-12-19 at 11.18.32 AM.pdf', NULL, '1', '2022-12-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 6 months Exp in Collection Calls but not much flow with the communication will not sustain and handle our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 10:52:10', 1, '2022-12-20 10:54:32', 0, NULL, 1),
(11521, '', '0', '8327224011', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 10:58:53', 0, NULL, 0, NULL, 1),
(11522, 'priyadharshini', '4', '7358518513', '', 'priyadharshiniarumugam1420@gmail.com', '2002-02-14', 20, '1', '2', 'arumugam', 'painter', 10000.00, 0, 0.00, 13000.00, 'chennai', 'chennai', '2212200010', '', '1', 'upload_files/candidate_tracker/23534209266_Priya resume.pdf', NULL, '1', '2022-12-20', 0, 'p1269', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance not much comfortable with the distance will not sustain ', '1', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 11:02:01', 1, '2022-12-20 11:58:19', 0, NULL, 1),
(11523, 'B.varsha', '4', '8220329285', '', 'varshabala15@gmail.com', '1998-03-16', 24, '2', '2', 'D.balasubramaniyan', 'Driver', 15000.00, 1, 0.00, 10000.00, 'Karaimeendar kottai', 'Karaimeendar kottai', '2212200011', '1', '1', 'upload_files/candidate_tracker/16775501245_CV_2022111311592873.pdf', NULL, '1', '2022-12-20', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She is not ok with the profile and not fit for team', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-20 11:13:01', 85, '2022-12-20 11:44:43', 0, NULL, 1),
(11524, '', '0', '7363639499', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 11:14:29', 0, NULL, 0, NULL, 1),
(11525, 'Angel Jalwin', '4', '9659823097', '8072365397', 'angeljalwin11193@gmail.com', '1993-11-01', 29, '1', '2', 'Sahayaraj', 'Hotel supervisor', 15000.00, 1, 18600.00, 25000.00, '12/115 kanmalai Illam old post office mukuperi', '2c/112 bazaar road saidapet chennai', '2212200013', '', '2', 'upload_files/candidate_tracker/23335184775_angel resum.docx', NULL, '1', '2022-12-20', 0, 'Jobs', '5', '59', NULL, 0.00, '', '0', NULL, '2', '6 months back we offered and she didnt respond the calls later now she appeared for the role and asking for huge salary hike earlier we offered 2.04 LPA', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 11:31:57', 1, '2022-12-20 11:37:10', 0, NULL, 1),
(11526, '', '0', '9900896379', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200014', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 03:20:16', 0, NULL, 0, NULL, 1),
(11527, '', '0', '9952937289', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200015', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 04:30:12', 0, NULL, 0, NULL, 1),
(11528, 'Ajith kumar.E', '4', '8838336339', '', 'antoajith833@gmail.com', '1997-10-15', 25, '2', '2', 'Escakkiappan', 'Self employeee', 1.00, 1, 25000.00, 30000.00, 'Tirunelveli', 'Velacherry chennai', '2212200016', '1', '2', 'upload_files/candidate_tracker/15657869323_Ajith Resume.pdf', NULL, '1', '2022-12-22', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for Sales Calling,holding 2 offers in hand no sustainability in the previous Exp Salary Exp is high than his experience', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-20 04:43:40', 99, '2022-12-22 10:24:56', 0, NULL, 1),
(11529, 'Princy maria deepa', '22', '8428996225', '', 'princy.anto96@gmail.com', '1996-06-09', 26, '3', '2', 'Antony samy', 'Farmer', 25000.00, 2, 0.00, 30000.00, 'Tiruvannamalai', 'Chennai', '2212200017', '', '1', 'upload_files/candidate_tracker/45411416974_Princy A.docx', NULL, '2', '2022-12-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-20 05:00:12', 1, '2022-12-20 05:02:54', 0, NULL, 1),
(11530, '', '0', '8056129725', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212200018', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-20 10:33:46', 0, NULL, 0, NULL, 1),
(11531, '', '0', '7299371583', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 08:31:16', 0, NULL, 0, NULL, 1),
(11532, 'nithiyashree k', '4', '7806870393', '', 'nithiyashree940@gmail.com', '2002-01-11', 20, '2', '2', 'karuna karan', 'driver', 20000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2212210002', '2', '1', 'upload_files/candidate_tracker/47797333931_CV_2022121510550878.pdf', NULL, '1', '2022-12-21', 0, '', '3', '59', '2022-12-29', 138948.00, '', '5', '1970-01-01', '2', 'Selected for B2B Consultant Role', '1', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-21 10:21:06', 60, '2022-12-23 05:02:52', 0, NULL, 1),
(11533, '', '0', '8489162975', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 01:06:43', 0, NULL, 0, NULL, 1),
(11534, 'Sathish kumar. K', '23', '7373260032', '9360109074', 'Sathishkumar24032000@gmail.com', '2000-03-24', 22, '2', '2', 'Kumarasamy. R', 'Police', 40000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2212210004', '1', '1', 'upload_files/candidate_tracker/9316817794_Sathishkumar-Resume.pdf', NULL, '1', '2022-12-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-21 02:39:07', 99, '2022-12-23 12:58:36', 0, NULL, 1),
(11535, 'Selvamani R', '13', '8675879527', '9940642661', 'selvamani1045@gmail.com', '2000-03-27', 22, '2', '2', 'Ramalingam M', 'Farmers', 13000.00, 1, 0.00, 20000.00, 'Cuddalore', 'Cuddalore', '2212210005', '1', '1', 'upload_files/candidate_tracker/88333590732_Selvamani_Resume (1).pdf', NULL, '1', '2022-12-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-21 02:39:10', 99, '2022-12-23 12:59:09', 0, NULL, 1),
(11536, '', '0', '9952639353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 03:26:49', 0, NULL, 0, NULL, 1),
(11537, '', '0', '8925659187', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 04:51:27', 0, NULL, 0, NULL, 1),
(11538, 'Johnson', '31', '8870221104', '9489587024', 'johnsontherasa24@gmail.com', '1999-06-15', 23, '2', '2', 'Stalin s', 'Labour', 10000.00, 1, 0.00, 18000.00, 'Tirunelveli', 'Vellachery', '2212210008', '1', '1', 'upload_files/candidate_tracker/61755614793_Johnson S.pdf', NULL, '1', '2022-12-22', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he already Attends interview 2m back. has exp in react js. Sustainability doubts. ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-21 05:51:41', 99, '2022-12-22 11:46:14', 0, NULL, 1),
(11539, '', '0', '6374081868', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 06:29:04', 0, NULL, 0, NULL, 1),
(11540, '', '0', '7306927768', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 07:33:28', 0, NULL, 0, NULL, 1),
(11541, 'Shek Mohammed Fazil', '14', '9790334986', '', 'mmohammedfazil3@gmail.com', '2000-11-19', 22, '1', '2', 'Mohammed Iqbal', 'Business', 25000.00, 1, 0.00, 20000.00, 'Hosur', 'Hosur', '2212210011', '', '1', 'upload_files/candidate_tracker/28164798223_mmohammed fazil CV.pdf', NULL, '1', '2022-12-22', 0, 'Fresher', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-21 09:08:32', 1, '2022-12-21 09:14:20', 0, NULL, 1),
(11542, '', '0', '9962183159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212210012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-21 10:15:05', 0, NULL, 0, NULL, 1),
(11543, 'Yukesh', '17', '8838246319', '', 'yukesh2018srm@gmail.com', '2000-10-04', 22, '2', '2', 'Palani', 'Technician', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2212220001', '1', '1', 'upload_files/candidate_tracker/43842399198_resume Yukesh .pdf', NULL, '2', '2022-12-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Preferably looking for non voice Process no communication as per the expectation for the sales not suitable', '5', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-12-22 07:43:50', 1, '2022-12-22 07:52:15', 0, NULL, 1),
(11544, 'Mohamed Rilwan', '13', '9788678945', '7358562761', 'rilwan.207@gmail.com', '1994-01-18', 28, '2', '2', 'Mohamed aboobacker', 'Civil engineer', 40000.00, 2, 0.00, 15000.00, 'Kadayanallur', 'Chennai', '2212220002', '1', '1', 'upload_files/candidate_tracker/38317576112_Resume.docx', NULL, '1', '2022-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not clear with th skills he want to work, not much active no focus Long career Gap he got terminated during the training period due to poor performance not suitable for us will not sustain ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 10:25:00', 99, '2022-12-22 10:46:53', 0, NULL, 1),
(11545, 'Vijay Prakash M', '23', '9025273414', '9042077189', 'munnavijayprakash@gmail.com', '2000-10-22', 22, '2', '2', 'Hazaratha Reddy M', 'Rice Business', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2212220003', '1', '1', 'upload_files/candidate_tracker/99930712304_my resume (2).pdf', NULL, '1', '2022-12-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic knowledge,having a plan to go for higher studies full time and looking for opportunities in time being not open for TxxampC ,his siblings both in CTS amazon will not run in a long not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 10:31:10', 99, '2022-12-22 11:32:34', 0, NULL, 1),
(11546, '', '0', '6382944168', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212220004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-22 11:03:35', 0, NULL, 0, NULL, 1),
(11547, 'Renukadevi arokkiam', '4', '7550162089', '6382333590', 'renumoshitha07@gmail.com', '1999-02-07', 23, '2', '2', 'Kala', 'House wife', 20000.00, 1, 17000.00, 18000.00, 'Chennai', 'Chennai', '2212220005', '1', '2', 'upload_files/candidate_tracker/98677318074_Renuka-1.docx', NULL, '1', '2022-12-22', 15, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Calling Exp With Several Companies Can Be Trained In Our Roles,Distance Need To Focus,Kindly Check And Let Me Know You Interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-22 11:23:51', 85, '2022-12-22 11:47:52', 0, NULL, 1),
(11548, 'Ravi Chandra', '4', '9620324550', '', 'chandraravi18@gmail.com', '1990-07-29', 32, '2', '2', 'Srinivas', 'Farmer', 60000.00, 2, 27000.00, 35000.00, 'Bangalore', 'Chennai', '2212220006', '1', '2', 'upload_files/candidate_tracker/36470649373_Ravi resume updated new.docx', NULL, '1', '2022-12-22', 30, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Gppd Communication having multi language skills Have exp in Collections Renewals Calling and open for Sales Calling too but his current salary is too high for Renewals 25K and Exp is min 4.2 LPA 30 days notice period Left without attending the 2nd level due to emergency if he comes back let us try in our roles', '1', '2', '', '1', '1', '', '2', '2022-12-26', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-22 11:24:09', 85, '2022-12-22 11:48:08', 0, NULL, 1),
(11549, 'Swathi', '28', '7550186306', '9789867657', 'swathiswa808@gmail.com', '1999-02-08', 23, '3', '2', 'Sivasankaran', 'Cooly', 10000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2212220007', '', '2', 'upload_files/candidate_tracker/82920365267_Swathi Resume.docx', NULL, '1', '2022-12-22', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '1', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-22 12:25:49', 1, '2022-12-22 12:29:35', 0, NULL, 1),
(11550, 'Divakar', '5', '6369757123', '8148808081', 'divakarboopathy@yahoo.com', '1995-12-14', 27, '2', '2', 'Boopathy A', 'Cooking', 20.00, 1, 28000.00, 35000.00, 'TIRUTTANI', 'Chennai', '2212220008', '1', '2', 'upload_files/candidate_tracker/77025056808_Divakar-Resume (1).pdf', NULL, '1', '2022-12-22', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Continuously change his job yearly once. no Sustainability. has some career gap...', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 01:20:33', 85, '2022-12-22 03:37:24', 0, NULL, 1),
(11551, 'Dharshan', '23', '8428416404', '', 'dharshanwilsonraj@gmail.com', '2001-05-19', 21, '2', '2', 'Raj', 'X-army', 25000.00, 2, 0.00, 30000.00, 'Chennai', 'Chennai', '2212220009', '1', '1', 'upload_files/candidate_tracker/17491801264_R.Dharshan.pdf', NULL, '1', '2022-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not much strong with basics,Need to learn have some basics is Figma Need time to confirm the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 06:17:00', 99, '2022-12-27 10:17:03', 0, NULL, 1),
(11552, '', '0', '9500182576', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212220010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-22 06:21:22', 0, NULL, 0, NULL, 1),
(11553, 'Thangamariyappan', '16', '8248915672', '', 'thangamarimd@gmail.com', '1999-03-26', 23, '2', '2', 'Nagaraj', 'Sale news paper', 20000.00, 2, 0.00, 20.00, 'Arumbakkam, chennai', 'Arumbakkam, chennai', '2212220011', '1', '1', 'upload_files/candidate_tracker/27340546958_Resume.pdf', NULL, '1', '2022-12-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '3', '1', '', '1', '1', '', '2', '1970-01-01', '3', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-22 06:27:27', 99, '2022-12-23 12:59:35', 0, NULL, 1),
(11554, '', '0', '9003630312', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212220012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-22 06:57:17', 0, NULL, 0, NULL, 1),
(11555, 'Kowsalya S', '4', '9092846783', '9597111327', 'kowsi172001@gmail.com', '2001-07-18', 21, '4', '2', 'Radha S', 'Handloom weaving', 42000.00, 1, 16000.00, 15000.00, 'Erode', 'Erode', '2212220013', '', '2', 'upload_files/candidate_tracker/9274601901_kowsalya s.docx', NULL, '3', '2022-12-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-22 09:05:28', 1, '2022-12-22 09:11:44', 0, NULL, 1),
(11556, 'Sathish Rajendran', '5', '9003083465', '8610262649', 'Sathishrajendran181995@gmail.com', '1995-10-18', 27, '2', '1', 'rajendran', 'eb', 40.00, 1, 25.00, 25.00, 'ennore', 'ennore', '2212230001', '1', '2', 'upload_files/candidate_tracker/33392994775_Commercial (1) copy.pdf', NULL, '1', '2022-12-23', 0, '', '3', '59', '2023-01-06', 252500.00, '', '', '2023-01-13', '1', 'Selected for Sarath Team in staff Role', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 08:36:43', 60, '2023-01-05 01:36:10', 0, NULL, 1),
(11557, 'Akash V', '23', '7094030554', '', 'akashdivi.444@gmail.com', '2001-02-19', 21, '2', '2', 'Viswanthan', 'Cable operator', 30000.00, 1, 0.00, 30000.00, 'kovilpatti', 'kovilpatti', '2212230002', '1', '1', 'upload_files/candidate_tracker/96560252856_Akash.v Resume.pdf', NULL, '2', '2022-12-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '6', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 11:08:21', 99, '2022-12-27 10:17:51', 0, NULL, 1),
(11558, 'Rubinath D', '23', '8523938818', '', 'rubinath.d@gmail.com', '2000-05-17', 22, '2', '2', 'Dhachanna moorthi k', 'Driver', 10000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2212230003', '1', '1', 'upload_files/candidate_tracker/12701382278_Rubinath D.pdf', NULL, '1', '2022-12-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics in JS,Need to open a lot not much comfort in TxxampC Need to train him from scratch if he comes back let us try\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 11:08:49', 99, '2022-12-27 02:50:59', 0, NULL, 1),
(11559, 'Sandiya', '31', '9361643085', '', 'sandiya.p@yahoo.com', '2002-05-09', 20, '2', '2', 'Prabhu', '-', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2212230004', '1', '1', 'upload_files/candidate_tracker/52487234301_sandiya-1.pdf', NULL, '1', '2022-12-23', 0, '', '3', '59', '2023-01-02', 120000.00, '', '', '1970-01-01', '2', 'Selecetd for Node in internship for 5 months with 5K with 3yrs SA 10-12K', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 11:26:08', 99, '2022-12-23 12:25:28', 0, NULL, 1),
(11560, 'S.Lavanya', '31', '8056100362', '', 'lencylava16@gmail.com', '2002-01-16', 20, '2', '2', 'S.sumathi', 'Tailor', 8000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2212230005', '1', '1', 'upload_files/candidate_tracker/23375054404_S.Lavanya.pdf', NULL, '1', '2022-12-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic skills in JS not much active will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 11:32:23', 99, '2022-12-23 02:37:24', 0, NULL, 1),
(11561, 'Sheik Ismail', '23', '7010674988', '', 'sheikismail431@gmail.com', '2001-03-11', 21, '2', '2', 'Kalimulla', 'Tea Shop', 20000.00, 2, 0.00, 35000.00, 'Vellore', 'Chennai', '2212230006', '1', '1', 'upload_files/candidate_tracker/82555676144_Fullstack.pdf', NULL, '1', '2023-01-02', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-23 01:31:54', 99, '2023-01-02 09:48:47', 0, NULL, 1),
(11562, '', '0', '9025557872', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212230007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-23 06:24:04', 0, NULL, 0, NULL, 1),
(11563, '', '0', '7904247687', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212230008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-23 06:33:24', 0, NULL, 0, NULL, 1),
(11564, 'bindu shree m', '5', '9108529746', '', 'bindushree289@gmail.com', '1991-05-04', 31, '3', '1', 'darryl maskell', 'user research', 3000000.00, 0, 1800000.00, 1800000.00, 'bangalore', 'Bangalore', '2212240001', '', '1', 'upload_files/candidate_tracker/16963591231_Bindu - Resume.pdf', NULL, '2', '2022-12-28', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '2', '2', '', '1', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-24 10:01:39', 99, '2022-12-26 11:14:33', 0, NULL, 1),
(11565, 'P.Sankar', '6', '9360382185', '', 'sankarponnusamy49@gmail.com', '2001-10-30', 21, '2', '2', 'Palaniammal', 'Fresher', 15000.00, 1, 0.00, 12000.00, 'Tiruchengode', 'Tiruchengode', '2212240002', '1', '1', 'upload_files/candidate_tracker/38498608399_P.Sankar (4).pdf', NULL, '3', '2022-12-26', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'he is not interested in sales', '5', '1', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-24 10:42:38', 85, '2022-12-26 12:06:50', 0, NULL, 1),
(11566, '', '0', '9514056972', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212240003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-24 10:50:41', 0, NULL, 0, NULL, 1),
(11567, '', '0', '9933711381', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212240004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-24 11:03:13', 0, NULL, 0, NULL, 1),
(11568, '', '0', '9092227858', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212240005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-24 11:04:17', 0, NULL, 0, NULL, 1),
(11569, 'nisha.g', '31', '8072420898', '9941415118', 'nishagopal1226@gmail', '2001-04-12', 21, '2', '2', 'gopal.g', 'daily wages', 13000.00, 1, 0.00, 15000.00, 'chennai', 'chennai old washermenpet', '2212240006', '1', '1', 'upload_files/candidate_tracker/97348792009_Nisha.G CV.pdf', NULL, '1', '2022-12-26', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-24 06:20:03', 99, '2022-12-26 10:18:30', 0, NULL, 1),
(11570, 'Kalaivani', '16', '7010218150', '', 'vanirk98@gmail.com', '1998-06-15', 24, '2', '2', 'Malarvizhi', 'Tailor', 180000.00, 0, 285000.00, 500000.00, 'Korattur', 'Korattur', '2212240007', '1', '2', 'upload_files/candidate_tracker/23699583914_KALAIVANI R resume 2022.pdf', NULL, '1', '2022-12-27', 45, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Will not sustain have exp in MIS in TCS current Pay is 2.8 LPA looking for change due to the need in salary hike Service notice 14 Feb 2023 is LWD will not sustain and not suitable in our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-24 06:30:33', 99, '2022-12-27 10:16:35', 0, NULL, 1),
(11571, 'Ajithkumar S', '31', '9962059203', '', 'ajithkumars1521@gmail.com', '2001-05-01', 21, '2', '2', 'Sugumar s', 'Mechanic', 10000.00, 2, 0.00, 25000.00, 'Chennai', 'Chennai', '2212240008', '1', '1', 'upload_files/candidate_tracker/75721841502_AJITHKUMARSugumar_RESUME.pdf', NULL, '1', '2022-12-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Self learn in MERN can give a try for NodeJs Candidate need to come back with his confirmation on TxxampC if he comes let us try', '2', '1', '', '1', '1', '', '2', '2022-12-28', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-24 06:32:13', 99, '2022-12-26 10:17:36', 0, NULL, 1),
(11572, 'sivaprakash murugan', '31', '7708064488', '9486207953', 'sivaprakash2923@gmail.com', '1999-11-26', 23, '2', '2', 'nagaeshwari', 'dairy framing', 45000.00, 1, 0.00, 25000.00, 'Aruppukopttai', 'Aruppukopttai', '2212240009', '1', '1', 'upload_files/candidate_tracker/32027444873_SIVAPRAKASH', NULL, '2', '2022-12-26', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have basics skills in JS know basics in PHP Python too have 8 months internship Exp Min exp is 10K in the beginning can give a try for our roles need to schedule him for the virtual based on Gokulxquots Availability', '2', '1', '', '1', '3', '', '2', '2023-01-02', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-24 06:49:57', 99, '2022-12-26 10:18:05', 0, NULL, 1),
(11573, 'Karthikeyan R', '13', '9940682910', '7299220420', 'karthikeyan29101999@gmail.com', '1999-10-29', 24, '3', '2', 'Chitra R', 'Housewife', 25000.00, 1, 0.00, 3.50, 'Chennai', 'Avadi,chennai', '2212240010', '', '1', 'upload_files/candidate_tracker/17607217449_new resume 2023.pdf', NULL, '1', '2024-02-09', 0, '', '5', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '2', '2', '', '2', '1970-01-01', '1', '2', 'rejected in aptitude round', '', '', '', NULL, NULL, NULL, 1, '2022-12-24 09:27:30', 110, '2024-02-09 06:27:21', 0, NULL, 1),
(11574, '', '0', '8884794273', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-25 01:14:39', 0, NULL, 0, NULL, 1),
(11575, 'Prem Raj G', '4', '8110093833', '7092434614', 'premji1612@gmail.com', '1992-12-16', 30, '2', '2', 'Govindaraj.P', 'Working', 35000.00, 2, 13000.00, 17000.00, 'Gummidipoondi', 'Gummidipoondi', '2212250002', '1', '2', 'upload_files/candidate_tracker/4719168394_Prem 2022 exp (1).pdf', NULL, '1', '2022-12-28', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Very Average Too long distance just a month back joined a company and looking for Salary Growthif he relocate and open for the same CTC we can try', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-25 09:03:21', 99, '2022-12-28 12:38:17', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11576, 'Vasudeva.p', '4', '9553557967', '8317584684', 'vdeva3523@gmail.com', '2000-06-13', 22, '4', '2', 'BPO', 'B.com', 50000.00, 0, 0.00, 15000.00, 'Bangalore', 'Chittoor Andhra Pradesh', '2212260001', '', '1', 'upload_files/candidate_tracker/50759456346_VASU doc.docx', NULL, '3', '2023-06-12', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '2', '2', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-26 12:38:58', 1, '2023-06-12 05:10:39', 0, NULL, 1),
(11577, 'Monisha', '4', '7550135180', '', 'monisuresh2698@gmail.com', '1998-06-02', 24, '3', '2', 'Suresh', 'Chennai', 75000.00, 1, 18000.00, 19000.00, 'Chennai', 'Chennai', '2212260002', '', '2', 'upload_files/candidate_tracker/13234454520_Monisha.pdf', NULL, '1', '2022-12-26', 15, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok Bit Attitude No relevant Exp in Sales 5050 Can give a try kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '6', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-26 01:14:00', 60, '2022-12-26 06:40:30', 0, NULL, 1),
(11578, '', '0', '9597812266', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212260003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-26 02:34:15', 0, NULL, 0, NULL, 1),
(11579, '', '0', '9952988353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212260004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-26 06:00:02', 0, NULL, 0, NULL, 1),
(11580, 'Prashanth', '27', '9791025475', '', 'rgprashanth97@gmail.com', '1997-06-09', 25, '2', '2', 'Ravi', 'Tailor', 120000.00, 1, 0.00, 300000.00, 'No.2 murugesan street', 'Jafferkhanpet', '2212260005', '1', '1', 'upload_files/candidate_tracker/78284761856_1671704305393_Prasanth MCA.pdf', NULL, '1', '2022-12-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basics in Javascript holding an offer for 12.5K but not yet released looking for some more and open for learning if he comes back later will check his profile for next level', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-26 06:28:28', 1, '2022-12-26 06:36:46', 0, NULL, 1),
(11581, 'Bhuvanesh S', '31', '7539916781', '8925034230', 'bhuvanesh0600@gmail.com', '2000-06-18', 22, '2', '2', 'Senthil Kumar', 'Former', 20000.00, 1, 0.00, 20000.00, '4/92-b, kovilpathu, vedharanyam, nagapattinam', 'Aditi Mens Hostel, Thoraipakkam, chennai', '2212260006', '1', '1', 'upload_files/candidate_tracker/80292216133_BHUVANESH RESUME-1.pdf', NULL, '1', '2023-01-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in the skills can be trained need to give his confirmation on the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2023-01-05', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-26 06:30:28', 99, '2023-01-03 09:18:45', 0, NULL, 1),
(11582, '', '0', '9600288463', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212260007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-26 06:32:04', 0, NULL, 0, NULL, 1),
(11583, '', '0', '9629218853', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212260008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-26 06:33:33', 0, NULL, 0, NULL, 1),
(11584, 'jennifer joseph', '2', '9551900802', '9080773259', 'Jenniferjoseph1198@gmail.com', '1998-12-11', 24, '2', '2', 'joseph', 'driver', 20000.00, 2, 0.00, 650000.00, 'chennai', 'chennai', '2212260009', '1', '1', 'upload_files/candidate_tracker/86663666846_Jennifer_V4.pdf', NULL, '1', '2022-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in React their expectations are very high they have commitment of 3L payment to the institute post joining the job will not sustain and not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-26 06:39:59', 99, '2022-12-30 09:38:13', 0, NULL, 1),
(11585, 'Varshapandian', '8', '8056127096', '9952937514', 'varshapandian12@gmail.com', '1999-02-12', 23, '2', '2', 'Pandian', 'Fisherman', 18000.00, 2, 260000.00, 400000.00, 'Chennai', 'Chennai', '2212260010', '1', '2', 'upload_files/candidate_tracker/39640679185_Varshapandian2022 -Resume 1.pdf', NULL, '1', '2022-12-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '7', '1', '', '1', '1', '', '2', '1970-01-01', '1', '4', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-26 08:32:46', 99, '2022-12-29 09:46:06', 0, NULL, 1),
(11586, 'han', '5', '7358453393', '7904987895', 'dhanushyajohnson6@gmail.com', '1998-05-02', 24, '2', '2', 'umathi', 'eacher', 14000.00, 0, 700000.00, 800000.00, 'hennai', 'Chennai', '2212260011', '1', '2', 'upload_files/candidate_tracker/43270136386_Dhanushya J.docx', NULL, '1', '2022-12-27', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1000', '0', NULL, NULL, NULL, 1, '2022-12-26 09:05:18', 1, '2022-12-26 09:09:58', 0, NULL, 1),
(11587, 'Adhithyan.S', '6', '8072875726', '8681907255', 'get.aadhisk@gmail.com', '1999-08-02', 23, '1', '2', 'C.Sekar', 'Farming', 16000.00, 1, 0.00, 15000.00, 'Piranmalai- sivagangai', 'Mogapair', '2212270001', '', '1', 'upload_files/candidate_tracker/57181619647_Aadhi Resume.pdf', NULL, '1', '2022-12-27', 0, '5174', '3', '59', '2023-01-03', 216000.00, '', NULL, '2025-10-30', '1', 'Selected for Thiyagarajan Team in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2022-12-27 10:34:02', 60, '2023-01-02 07:18:00', 0, NULL, 1),
(11588, '', '0', '9952446743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212270002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-27 11:20:34', 0, NULL, 0, NULL, 1),
(11589, 'N.Srinidhi', '6', '9566280003', '', 'srinidhinathan2001@gmail.com', '2007-12-27', 0, '1', '2', 'S nathan', 'Catring', 25000.00, 1, 0.00, 17000.00, 'Chennai', 'Chennai', '2212270003', '', '1', 'upload_files/candidate_tracker/92939114872_Srinidhi resume-1.docx', NULL, '2', '2022-12-27', 0, 'P1066', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Average Communication not open for sales calls checked her for Operations written skills not upto the mark she has some interest in Tailoring and doing a part time work too will not sustain and not suitable in our roles', '5', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-27 11:22:20', 1, '2022-12-27 11:28:18', 0, NULL, 1),
(11590, 'Naveenkumar', '5', '8695958643', '', 'naveen4699@gmail.com', '1993-02-10', 29, '2', '1', 'Vijayakumar', 'Manager in Consst', 50000.00, 1, 0.00, 25000.00, 'Erode', 'Erode', '2212270004', '1', '1', 'upload_files/candidate_tracker/67577522447_DOC-20221227-WA0016..pdf', NULL, '1', '2022-12-27', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'expext salary high 25k, so rejecte with ramesh sir', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-27 11:45:01', 99, '2022-12-27 12:07:22', 0, NULL, 1),
(11591, '', '0', '7395930357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212270005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-27 02:36:24', 0, NULL, 0, NULL, 1),
(11592, 'naga ashwin', '31', '8838439985', '', 'nagaashwin1996@gmail.com', '2001-06-09', 21, '2', '2', 'nagarajan', 'b.com', 20000.00, 1, 0.00, 200000.00, 'chennai', 'chennai porur', '2212270006', '1', '1', 'upload_files/candidate_tracker/26040671188_Naga Ashwin RESUME.pdf', NULL, '1', '2022-12-28', 0, '', '3', '59', '2023-01-09', 120000.00, '', '3', '2023-01-10', '1', '5M Intern 5 K then overall 3 yr SA 10 12K', '2', '1', '', '1', '1', '', '2', '2023-01-03', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-27 06:28:36', 60, '2023-01-11 11:02:26', 0, NULL, 1),
(11593, 'dineshkumar', '6', '6382936748', '9790660072', 'dineshkumar860867@gmail.com', '2001-04-20', 21, '2', '2', 'ramesh', 'Business', 25000.00, 1, 0.00, 15000.00, 'erode', 'erode', '2212270007', '1', '1', 'upload_files/candidate_tracker/35778432710_Dinesh.pdf', NULL, '1', '2023-01-07', 0, '', '3', '59', '2023-01-12', 180000.00, '', '5', '1970-01-01', '2', 'Selected for Suthagar Team in Staff Role', '5', '2', '1', '4', '7', '1', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-27 06:51:55', 60, '2023-01-16 01:09:38', 0, NULL, 1),
(11594, '', '0', '7348942042', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212270008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-27 10:03:46', 0, NULL, 0, NULL, 1),
(11595, '', '0', '9972790269', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212270009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-27 10:10:00', 0, NULL, 0, NULL, 1),
(11596, 'Mano P', '31', '8220720985', '', 'manopandian2606@gmail.com', '1997-06-26', 25, '2', '2', 'Paul pandian S', 'Teacher', 58000.00, 1, 0.00, 300000.00, 'Udumalpet', 'Chennai', '2212280001', '1', '1', 'upload_files/candidate_tracker/87844497875_[Mano] - [Python Developer] - [Resume].pdf', NULL, '1', '2022-12-29', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '4', '7', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 09:22:32', 99, '2022-12-29 09:46:31', 0, NULL, 1),
(11597, 'S.DHEEPAK', '31', '9500369022', '8428515013', 'dheepsgdc@gmail.com', '1998-01-22', 24, '2', '2', 'V.SHANMUGAM', 'Rtd Lab asst', 25000.00, 1, 0.00, 250000.00, 'Villupuram', 'Villupuram', '2212280002', '1', '1', 'upload_files/candidate_tracker/88905225228_DHEEPAK RESUME 1..pdf', NULL, '1', '2022-12-28', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'already attended a month back 5050 gave him a joining but he didnxquott not he is looking again and seems doubtful Lets hold and try need to check with Gokul', '2', '1', '', '1', '1', '', '2', '2023-01-03', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 10:17:01', 99, '2022-12-28 10:21:06', 0, NULL, 1),
(11598, 'Sruthi.M', '4', '9655808020', '8525820195', 'sruthi259303@gmail.com', '2001-12-13', 21, '1', '2', 'Manivannan', 'Garden Management In Abroad', 30000.00, 1, 0.00, 15000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2212280003', '', '1', 'upload_files/candidate_tracker/44406063665_sruthi .M resume.pdf', NULL, '1', '2022-12-28', 0, 'CAFSUSR00481', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Area Manager Round Reject', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-28 11:19:58', 1, '2022-12-28 11:37:54', 0, NULL, 1),
(11599, '', '0', '9779289522', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-28 11:38:08', 0, NULL, 0, NULL, 1),
(11600, 'Gokulapriyan Dhandabani', '5', '9976945101', '9003013959', 'gokulapriyand97@gmail.com', '1997-12-16', 25, '2', '2', 'dhandapani d', 'farmer', 300000.00, 1, 250000.00, 350000.00, 'dharmapuri', 'chennai', '2212280005', '1', '2', 'upload_files/candidate_tracker/11138224743_GOKULAPRIYAN._D_Resume_3.pdf', NULL, '1', '2023-01-05', 0, '', '3', '59', '2023-01-18', 285696.00, '', '3', '2023-07-26', '1', 'Selected for Manikandan team in Staff Role', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-28 03:55:54', 60, '2023-01-07 03:32:58', 0, NULL, 1),
(11601, '', '0', '9629870680', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212280006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-28 06:50:40', 0, NULL, 0, NULL, 1),
(11602, '', '0', '7358612117', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212280007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-28 07:00:06', 0, NULL, 0, NULL, 1),
(11603, '', '0', '9778598515', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212280008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-28 07:01:06', 0, NULL, 0, NULL, 1),
(11604, 'Aravindan', '31', '9841663379', '9840380580', 'aravind25mani@gmail.com', '1997-08-25', 25, '2', '2', 'S. Subbulakshmi', 'Teacher', 26000.00, 1, 0.00, 35000.00, 'Chennai', 'Chennai', '2212280009', '1', '1', 'upload_files/candidate_tracker/78726450379_Aravindan Resume (1).pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for IT Domain and his last drawn MCTC was 38K He is not ok with the pay like internship and Employment Salary also he will not sustain and will not join', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 07:06:19', 99, '2023-01-02 11:16:37', 0, NULL, 1),
(11605, 'Hamsavathi.k', '4', '8939211701', '', 'khamsavathi14@gmail.com', '1998-03-14', 24, '2', '2', 'Parent', 'Retired', 10000.00, 0, 0.00, 15000.00, 'Chetpet', 'Chetpet', '2212280010', '1', '1', 'upload_files/candidate_tracker/52718175213_RESUME-1.pdf', NULL, '1', '2022-12-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Career Gap Having Medical Issue Spinal Problem preparing for bank exams will not sustain in a long for Sales Even she got some offer in telecalling and not joined due to health scenario', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 07:07:19', 99, '2022-12-29 09:47:18', 0, NULL, 1),
(11606, 'Jayanth', '31', '9884140064', '', 'jayanthjackson1312@gmail.com', '2000-10-12', 22, '2', '2', 'Jesuadimai', 'Security', 20000.00, 1, 0.00, 250000.00, 'Chennai', 'Chennai', '2212280011', '1', '1', 'upload_files/candidate_tracker/95959903594_Jayanth (1).pdf', NULL, '1', '2023-01-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher have 6 months internship Exp Having basic knowledge can give a try for our React open for TxxampC Based on Gokulxquots availability need to schedule him for the interview', '2', '1', '', '1', '1', '', '2', '2023-01-09', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-28 07:36:22', 99, '2023-01-06 12:31:51', 0, NULL, 1),
(11607, 'Surendhar V', '16', '9176029454', '', 'surendharkrs1606@gmail.com', '2001-06-16', 21, '2', '2', 'k.velayutham', 'electrition', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2212280012', '1', '1', 'upload_files/candidate_tracker/90013026903_surendhar resume.pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing for Polica exams and time being looking for a job will not sustain and not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-28 09:01:53', 85, '2023-02-01 02:52:35', 0, NULL, 1),
(11608, 'Arun Kumar', '31', '6374323635', '', 'arunanbu10012001@gmail.com', '2001-01-10', 21, '2', '2', 'Anbalagan', 'Former', 150000.00, 1, 0.00, 2.50, 'Kottaivilayur, Tenkasi', 'Pallavaram, Chennai', '2212290001', '1', '1', 'upload_files/candidate_tracker/68101259900_arunn kumar.pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having basis knowledge in JS Can be trained candidate need time to give his confirmation on the TxxampC if he comes back let us try ', '2', '2', '', '1', '1', '', '2', '2023-01-03', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 10:33:18', 99, '2022-12-29 10:41:38', 0, NULL, 1),
(11609, 'vignesh b', '2', '9080773259', '7904515572', 'vickybharath410@gmail.com', '1998-07-12', 24, '2', '2', 'baskar', 'daily wages', 150000.00, 1, 270000.00, 600000.00, 'chennai', 'chennai', '2212290002', '1', '2', 'upload_files/candidate_tracker/50604809161_Vignesh', NULL, '1', '2022-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic Knowledge In React Their Expectations Are Very High They Have Commitment Of 3L Payment To The Institute Post Joining The Job Will Not Sustain And Not Suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 12:22:19', 99, '2022-12-30 09:38:44', 0, NULL, 1),
(11610, 'Dinesh s', '8', '9791171702', '8939204816', 'sivad0702@gmail.com', '1999-07-22', 23, '1', '2', 'Saraswathi', 'Home Maker', 2.50, 1, 0.00, 20000.00, 'Thiruvottiyur', '23/31a,bkn colony,kaladipet,tvt', '2212290003', '', '1', 'upload_files/candidate_tracker/77809762155_DOC-20220407-WA0004.pdf', NULL, '1', '2022-12-29', 0, 'P1279', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Communication only back end Exp will not sustain and not suitable', '7', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 12:37:52', 1, '2022-12-29 12:50:58', 0, NULL, 1),
(11611, 'Arun Vignesh M', '14', '9884723892', '', 'arunvignesh.m18@gmail.com', '2001-01-18', 21, '3', '2', 'Marimuthu P', 'Business', 15000.00, 1, 0.00, 2.50, 'Chennai', 'Chennai', '2212290004', '', '1', 'upload_files/candidate_tracker/53251251328_Arun VigneshM_Resume.pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for internship cum Employment or Project in Java Python They are in final semester yet to complete the graduation Need to confirm the profile', '2', '1', '0', '1', '1', '0', '2', '2023-01-03', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 12:48:33', 1, '2022-12-29 12:53:04', 0, NULL, 1),
(11612, 'Roja', '14', '9092353868', '', 'rojakubendiran890@gmail.com', '2001-05-06', 21, '3', '2', 'Kubendiran', 'Labour', 15000.00, 1, 0.00, 2.50, 'Guindy', 'Guindy', '2212290005', '', '1', 'upload_files/candidate_tracker/26363870326_Resume_ROJA - (nov).pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Internship Cum Employment Or Project In Java Python They Are In Final Semester Yet To Complete The Graduation Need To Confirm The Profile', '2', '1', '0', '1', '1', '0', '2', '2023-01-03', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 12:48:56', 1, '2022-12-29 12:52:58', 0, NULL, 1),
(11613, 'Mohaideen Abdul Khadar M', '13', '9941010167', '', 'mohaideenabdulkhadar006@gmail.com', '2000-10-27', 22, '2', '2', 'Noorjahan M', 'House Wife', 12000.00, 1, 5000.00, 12000.00, 'Chennai', 'Chennai', '2212290006', '1', '2', 'upload_files/candidate_tracker/54079479573_Resume.pdf', NULL, '1', '2023-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT, Family need is there but not much comfortable in TxxampC sustainability Doubts on this Profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 03:20:50', 99, '2023-01-04 09:35:34', 0, NULL, 1),
(11614, 'Kamaleshwaran M', '2', '9361869836', '', 'Kamaleshwaran0304@gmail.com', '2001-04-03', 21, '3', '2', 'Moorthy', 'Private occupation', 30000.00, 1, 0.00, 30000.00, 'Chennai', 'Chennai', '2212290007', '', '1', 'upload_files/candidate_tracker/44793428650_kamalesh.pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking For Internship Cum Employment Or Project In MERN They Are In Final Semester Yet To Complete The Graduation Need To Confirm The Profile', '2', '1', '0', '1', '1', '0', '2', '2023-01-03', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 03:43:40', 1, '2022-12-29 03:55:49', 0, NULL, 1),
(11615, 'Deviyani', '2', '6379004947', '', 'deviyani492@gmail.com', '2000-09-04', 22, '3', '2', 'Parthiban', 'Ex-army', 30000.00, 1, 0.00, 30000.00, 'Tirupattur', 'Tirupattur', '2212290008', '', '1', 'upload_files/candidate_tracker/94218994480_Devi-2.pdf', NULL, '1', '2022-12-29', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking For Internship Cum Employment Or Project In Node They Are In Final Semester Yet To Complete The Graduation Need To Confirm The Profile', '2', '1', '0', '1', '1', '0', '2', '2023-01-03', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-29 03:44:14', 1, '2022-12-29 03:48:36', 0, NULL, 1),
(11616, 'Sneha', '16', '8056052462', '9791217095', 'snehajofficial@gmail.com', '2000-01-17', 22, '2', '1', 'Anthony Suresh', 'Working in IT', 32000.00, 1, 0.00, 15.00, 'Ramapuram', 'Ramapuram', '2212290009', '1', '1', 'upload_files/candidate_tracker/70212627584_CV_SNEHA.pdf', NULL, '2', '2023-01-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2022-12-29 04:38:54', 85, '2023-01-03 07:16:54', 0, NULL, 1),
(11617, 'Suriya Prakash', '31', '9943085749', '7094591358', 'suriyathennarasu@gmail.com', '2000-12-21', 22, '2', '2', 'Thennarasu', 'Farmer', 25000.00, 2, 0.00, 250000.00, 'Madurai', 'Chennai', '2212290010', '1', '1', 'upload_files/candidate_tracker/42302936893_Suriya prakash thennarasu Resume.pdf', NULL, '1', '2022-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not open for TxxampC Sustainabilty Doubts on the profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 05:06:52', 99, '2022-12-30 09:39:10', 0, NULL, 1),
(11618, 'Selvakumar N', '3', '6369504498', '', 'kumar20032001@gmail.com', '2001-03-20', 21, '2', '2', 'C.Nagarajan', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Peraiyur, Madurai', 'Tambaram, Chennai', '2212290011', '1', '1', 'upload_files/candidate_tracker/95593894071_Selvakumar N.pdf', NULL, '1', '2022-12-30', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher just started learning python and the distance is too long need time to confirm on the TxxampC if he comes back let us check', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 06:27:44', 99, '2022-12-30 11:14:37', 0, NULL, 1),
(11619, 'EZHILARASAN S', '23', '8124550549', '9884883618', 'ezhilarasans1305@gmail.com', '2002-05-13', 20, '2', '1', 'r SUKUMAR', 'MRF (worker)', 40000.00, 1, 0.00, 3.30, 'Chennai', 'Chennai', '2212290012', '1', '1', 'upload_files/candidate_tracker/83706731954_Ezhilarasan.pdf', NULL, '1', '2022-12-30', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Having basic skills knowledge need to train a lot 36kms up and down need time to confirm with his parents if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2023-01-03', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 09:42:02', 99, '2022-12-30 10:46:05', 0, NULL, 1),
(11620, 'Habeeb Rilwan', '2', '8056204972', '', 'rhrrilwan619@gmail.com', '2000-05-29', 22, '2', '2', 'Riyasudeen', 'Business', 30000.00, 2, 180000.00, 300000.00, 'Chennai', 'Chennai', '2212290013', '1', '2', 'upload_files/candidate_tracker/3242329898_Habeeb_resume.pdf', NULL, '3', '2022-12-31', 14, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'has yr of exp in mern. not much good xxamp sal expt too high... Sustainability doubts..', '2', '1', '', '2', '2', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-29 10:29:04', 99, '2022-12-31 09:19:42', 0, NULL, 1),
(11621, '', '0', '7395981853', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 08:57:38', 0, NULL, 0, NULL, 1),
(11622, '', '0', '9113433701', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 10:54:09', 0, NULL, 0, NULL, 1),
(11623, 'Chetan jadar', '5', '9113074287', '6360197808', 'Cajadar@gmail.com', '1998-11-23', 24, '2', '2', 'Ashok jadar', 'Former', 80000.00, 1, 24000.00, 30000.00, 'Kaliwal tq - Savanur, Dist- haveri', 'Hosa road, electronic city banglore', '2212300003', '1', '2', 'upload_files/candidate_tracker/44538057915_Resume.CHETAN_JADAR 2022.docx', NULL, '1', '2022-12-31', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '2', '2', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-30 11:02:41', 99, '2022-12-31 09:19:59', 0, NULL, 1),
(11624, '', '0', '7842774281', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 12:04:47', 0, NULL, 0, NULL, 1),
(11625, '', '0', '9059270626', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 12:28:59', 0, NULL, 0, NULL, 1),
(11626, 'Mohammed Jafar', '4', '6379087202', '8939371441', 'mjaf89394@gmail.com', '1999-01-23', 23, '2', '2', 'Yes', 'Sales associate manager', 200000.00, 2, 17000.00, 21000.00, '2/195 adam Nagar kovur', 'Porur', '2212300006', '1', '2', 'upload_files/candidate_tracker/59102705174_CV_2022112418301424.pdf', NULL, '1', '2022-12-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Has exp in direct sales .. no calling exp .. no understanding skills. and 1hr travel to our place', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-30 12:31:01', 1, '2022-12-31 10:30:50', 0, NULL, 1),
(11627, 'Reshma', '4', '7868920805', '9361151705', 'reshmamanimaran31@gmail.com', '1998-03-31', 24, '2', '2', 'Manimaran', 'Farmer', 200000.00, 1, 500000.00, 600000.00, 'Chennai', 'Chennai', '2212300007', '1', '2', 'upload_files/candidate_tracker/78531603462_RESUME - RESHMA.pdf', NULL, '3', '2023-01-05', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Very high Salary Package with 50K and not open to come down', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-30 02:09:25', 99, '2023-01-05 10:26:05', 0, NULL, 1),
(11628, '', '0', '8546858063', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 02:43:52', 0, NULL, 0, NULL, 1),
(11629, 'Chintala Saikiran', '4', '6301541748', '', 'chintalasaikiran978@gmail.com', '2001-12-28', 21, '2', '2', 'Ramesh', 'Self employed', 25000.00, 1, 20000.00, 30000.00, 'Khammam', 'Chennai', '2212300009', '1', '2', 'upload_files/candidate_tracker/7784902998_SAIKIRAN CV.doc', NULL, '2', '2023-01-02', 15, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2022-12-30 07:02:32', 1, '2022-12-30 07:06:19', 0, NULL, 1),
(11630, '', '0', '6369740417', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2212300010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2022-12-30 10:41:53', 0, NULL, 0, NULL, 1),
(11631, 'Shaik Asif Basha', '4', '9490400986', '', 'shaikasifbasha04@gmail.com', '1995-06-07', 27, '3', '1', 'S Jabeen', 'Teacher', 18000.00, 0, 18000.00, 25000.00, 'Banaganapalle', 'Banaganapalle', '2212310001', '', '2', 'upload_files/candidate_tracker/40506273776_resume986.docx', NULL, '2', '2023-01-02', 4, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '3', '4', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2022-12-31 07:07:24', 1, '2022-12-31 07:11:19', 0, NULL, 1),
(11632, 'Vignesh B', '5', '6383197563', '9962888637', 'vickybruce3518@gmail.com', '1998-05-04', 24, '2', '2', 'Rameena', 'House keeper', 12.00, 1, 0.00, 22000.00, 'St.thomas mount', 'St Thomas mount', '2212310002', '1', '2', 'upload_files/candidate_tracker/69865677963_Vicky6383.pdf', NULL, '1', '2023-01-02', 0, '', '3', '59', '2023-01-05', 252100.00, '', NULL, '2025-01-27', '1', 'Selected for Sarath Team in Staff Role', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-31 10:41:14', 60, '2023-01-04 10:22:09', 0, NULL, 1),
(11633, 'yalini', '16', '6381939277', '', '1412yalini@gmail.com', '2001-12-14', 21, '2', '2', 'shanmugam', 'cable operator', 30000.00, 1, 0.00, 13000.00, 'chennai', 'chennai', '2212310003', '1', '1', 'upload_files/candidate_tracker/45587756901_S.YALINI RESUME (1).pdf', NULL, '1', '2022-12-31', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'long distance 1hr travel .... no communication not suit for MIS ', '3', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2022-12-31 12:01:56', 1, '2022-12-31 12:21:29', 0, NULL, 1),
(11634, 'Sankavi S V', '22', '8778092101', '', 'sankavisupa@gmail.com', '1996-01-31', 26, '2', '2', 'Sampath P', 'Co-operative secretary', 50000.00, 1, 0.00, 12000.00, 'villupuram', 'villupuram', '2212310004', '1', '1', 'upload_files/candidate_tracker/25015663509_CV Resume Photo (24)-3 (1)-1 (1).pdf', NULL, '2', '2023-01-02', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-31 03:28:28', 99, '2023-01-02 10:52:12', 0, NULL, 1),
(11635, 'Dhivan Rajab S', '3', '8072426881', '6374068001', 'dhivanrajab0910@gmail.com', '2000-10-09', 22, '2', '2', 'Shahull hameed', 'Farmer', 10000.00, 4, 0.00, 20000.00, 'Tenkasi', 'Chennai', '2212310005', '1', '1', 'upload_files/candidate_tracker/753404028_FullStackDeveloperResume.pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong with basics too long distance and ready to relocate but his exp is high and will not sustain in our roles.long run doubts ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-31 04:50:46', 99, '2023-01-02 09:43:26', 0, NULL, 1),
(11636, 'Anbarasan K', '13', '8838124480', '', 'anbarasank5050@gmail.com', '2000-07-15', 22, '2', '2', 'Kanagaraj', 'Agriculture', 6000.00, 1, 0.00, 30000.00, 'Dharmapuri', 'Kilpauk, chennai', '2212310006', '1', '1', 'upload_files/candidate_tracker/67333656446_Anbarasan_resume.pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher MSc graduate and his min Exp is 25K and not ready to come down will not sustain in our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2022-12-31 05:47:58', 99, '2023-01-02 09:44:59', 0, NULL, 1),
(11637, 'Thamizhselvan pandiyan', '5', '9361715300', '9205559491', 'thamizh400@gmail.com', '1999-06-24', 23, '2', '2', 'Pandiyan s', 'Sales executive', 30000.00, 1, 24000.00, 28000.00, 'Sholingur', 'Adhambakkam', '2301010001', '1', '2', 'upload_files/candidate_tracker/6477683106_Thamizh resume.docx', NULL, '1', '2023-01-02', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'NOt fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-01 04:00:26', 60, '2023-01-02 07:28:00', 0, NULL, 1),
(11638, 'Raman', '6', '7401422957', '', 'ramanraman2037@gmail.com', '1999-08-02', 23, '2', '2', 'Parent', 'Two wheeler mechanic', 10000.00, 2, 10000.00, 18000.00, 'No.32, CHETTY THOTTAM, SAIDAPET, CHENNA-600015', 'No.32, CHETTY THOTTAM, SAIDAPET CHENNAI-600015', '2301010002', '50', '2', 'upload_files/candidate_tracker/21023030805_pdf&rendition=1-2.pdf', NULL, '1', '2025-02-10', 30, '', '5', '19', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not worth of his asking salary', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', '55651', '5151', '1970-01-01', 1, '2023-01-01 08:11:24', 153, '2025-02-10 12:27:31', 0, NULL, 1),
(11639, 'Hariharan N', '14', '9003257591', '', 'harih47@gmail.com', '1997-12-17', 25, '2', '2', 'P Narayanan', 'Buisness', 20000.00, 1, 0.00, 300000.00, '1 St Cross Street, Anadha Nagar, Santhosapuram', '1 St Cross Street, Anadha Nagar, Santhosapuram,', '2301020001', '1', '1', 'upload_files/candidate_tracker/37054754792_Hari_Haran_Resume_01-11-2022-14-46-39.pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for MIS Fresher Too long Distance Attitude issues salary exp is min 3.5 LPA not suitable ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 10:21:11', 99, '2023-01-02 11:12:58', 0, NULL, 1),
(11640, '', '0', '6382634657', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-02 10:28:08', 0, NULL, 0, NULL, 1),
(11641, '', '0', '8015923449', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301020003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-02 12:29:47', 0, NULL, 0, NULL, 1),
(11642, 'F.Abdul Hameed', '23', '9566120634', '', 'abdulhameedqudsi98@gmail.com', '1998-12-25', 24, '2', '2', 'Kamar nisha', 'Admin executive', 18000.00, 2, 0.00, 200000.00, 'Chrompet chennai', 'chrompet chennai', '2301020004', '1', '1', 'upload_files/candidate_tracker/26610057647_ResumeDec 2022.pdf', NULL, '1', '2023-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for IT Long Career Gap had his own business for 1.5 yrs not much strong with the basics Salary Exp is very high not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 12:32:48', 99, '2023-01-04 09:34:31', 0, NULL, 1),
(11643, 'Selciya M', '4', '9600632787', '', 'selciyaselci143@gmail.com', '2000-03-14', 22, '2', '2', 'Maharaja', 'Driver', 1.00, 2, 2.00, 3.00, 'Rameswaram', 'Coimbatore', '2301020005', '1', '2', 'upload_files/candidate_tracker/85220137510_Selciyadec1.pdf', NULL, '1', '2023-01-04', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 12:55:29', 99, '2023-01-04 09:35:12', 0, NULL, 1),
(11644, 'Sheik baridh', '23', '9092883517', '', 'sheikbaridh30@gmail.com', '2000-02-20', 22, '3', '2', 'Abbas Ali', 'Farmar', 10000.00, 1, 0.00, 20000.00, 'Theni', 'Theni', '2301020006', '', '1', 'upload_files/candidate_tracker/65875723432_Sheikbaridhà.pdf', NULL, '1', '2023-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-02 01:20:51', 1, '2023-01-02 01:26:43', 0, NULL, 1),
(11645, 'P . Kanimozhi', '14', '8220611397', '', 'kanimozhipriya.p771999@gmail.com', '1999-07-07', 23, '3', '2', 'Palanivel', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Vadalur', 'Tnagar Chennai', '2301020007', '', '1', 'upload_files/candidate_tracker/5945478781_Kani (1)-1.pdf', NULL, '1', '2023-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-02 02:11:36', 1, '2023-01-02 02:18:49', 0, NULL, 1),
(11646, 'lingam b', '3', '9360647922', '', 'shivalingam261201@gmail.com', '2001-12-26', 21, '2', '2', 'basker', 'van driver', 40000.00, 0, 0.00, 25000.00, 'chennai', 'chennai', '2301020008', '1', '1', 'upload_files/candidate_tracker/88007609711_permanent resume (1).pdf', NULL, '1', '2023-01-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much strong with Basics Sustainability doubts in this profile not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 03:05:55', 85, '2023-11-11 10:25:06', 0, NULL, 1),
(11647, 'Fathima jensila.D', '16', '6379369039', '7448938225', 'fathimajensila.mumtaj@gmail.com', '2000-08-16', 22, '2', '2', 'Nil', 'Nil', 30000.00, 0, 0.00, 13000.00, 'Chennai redhills', 'Chennai redhills', '2301020009', '1', '1', 'upload_files/candidate_tracker/45074047749_unnati jensila resume.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basic ideas in Skills too long Distance not suitable for our roles', '3', '1', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-02 06:00:26', 85, '2023-01-03 09:39:44', 0, NULL, 1),
(11648, 'Baskar', '31', '9003610890', '8220799718', 'Baskarvsni74@gmail.com', '2000-04-19', 22, '2', '2', 'Vasudevan', 'Hindhu', 2.00, 0, 0.00, 20000.00, 'Kallakurichi', 'Velachery', '2301020010', '1', '1', 'upload_files/candidate_tracker/85357568959_Baskar.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in the skills will not sustain and handle our work not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-02 06:23:42', 85, '2023-01-03 11:04:29', 0, NULL, 1),
(11649, '', '0', '6379940664', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301020011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-02 07:37:57', 0, NULL, 0, NULL, 1),
(11650, 'Kumaravadivel K', '16', '8939709194', '9940208037', 'kumaravadivel1303@gmail.com', '1999-03-13', 0, '2', '2', 'P. Kumaresan', 'Business', 20000.00, 2, 17000.00, 20000.00, 'Chennai', 'Chennai', '2301020012', '1', '2', 'upload_files/candidate_tracker/69897752294_Kumaravadivel resume as on 10-11-2022.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No communication need to open a lot no basic ideas in MIS and not suitable for other openings too ', '3', '2', '', '1', '1', '', '2', '1970-01-01', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-02 11:05:49', 99, '2023-01-03 09:19:37', 0, NULL, 1),
(11651, 'Manikandan K', '32', '9176468729', '', 'manilak20@gmail.com', '2000-05-10', 22, '2', '2', 'Krishnan A', 'Farmer & catering', 20000.00, 2, 0.00, 17000.00, '16/145 B, Nethaji street, Nedungal, Chengalpatt DT', 'No: 10 , Gurusamy nagar, 5th Street, Pulianthope', '2301030001', '1', '2', 'upload_files/candidate_tracker/64693984775_Manikandan 1ENG.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not open for telesales too appeared for MF but no basic ideas will not sustain and not suitable', '7', '1', '', '1', '1', '', '2', '1970-01-01', '2', '4', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-03 09:41:41', 99, '2023-01-03 10:52:56', 0, NULL, 1),
(11652, 'MAFFAZ ALI', '14', '9597146439', '6382741687', 'alimaffaz55@gmail.com', '2000-09-16', 22, '2', '2', 'M.jafar Ali', 'Business Man', 15000.00, 3, 0.00, 2.00, 'Lalpet, Cuddalore', 'Pallavaram,Chennai', '2301030002', '1', '1', 'upload_files/candidate_tracker/635705681_MAFFAZ ALI.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong with the basics in python Came along with the Friends sustainability doubts on the profile Not much comfort with TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-03 11:56:52', 60, '2023-01-03 02:40:34', 0, NULL, 1),
(11653, 'Mohamed Niyas', '14', '7825058540', '8610140512', 'niyasmohamed66251@gmail.com', '2001-06-18', 21, '2', '2', 'Mohed iliyas', 'Former', 15000.00, 1, 0.00, 2.00, 'Lalpet', 'Pallavaram', '2301030003', '1', '1', 'upload_files/candidate_tracker/22829286425_resume niyas.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Strong With The Basics In Python Came Along With The Friends Sustainability Doubts On The Profile Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-03 11:57:19', 60, '2023-01-03 02:40:51', 0, NULL, 1),
(11654, 'Halith Ahamed', '13', '8428958679', '8778494449', 'halithahamed340@gmail.com', '2001-12-07', 21, '2', '2', 'Habeeb rahman', 'Former', 12000.00, 0, 0.00, 10000.00, 'Kumbakonam', 'Pallavaram', '2301030004', '1', '1', 'upload_files/candidate_tracker/59960208770_Halith Resume.pdf', NULL, '1', '2023-01-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Much Strong With The Basics In Python Came Along With The Friends Sustainability Doubts On The Profile Not Much Comfort With TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-03 11:57:44', 60, '2023-01-03 02:41:07', 0, NULL, 1),
(11655, '', '0', '6382700458', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301030005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-03 12:02:52', 0, NULL, 0, NULL, 1),
(11656, 'V ramesh', '6', '6381557992', '', 'Rame82830@gmail.com', '2001-04-15', 21, '1', '2', 'Veeran v', 'Seizing mill', 40000.00, 3, 0.00, 15000.00, '41,valliammai nagar,palayapalayam,erode', 'Palayapalayam erode', '2301030006', '', '1', 'upload_files/candidate_tracker/88222210209_Ramesh resume.pdf', NULL, '1', '2023-01-03', 0, 'P1352', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-03 01:07:40', 1, '2023-01-03 01:17:36', 0, NULL, 1),
(11657, 'Subhasri D', '4', '9600915413', '9600915412', 'subashankar23@gmail.com', '1998-11-23', 24, '4', '2', 'Dhiravia Shankar', 'CNC operator', 250000.00, 1, 450000.00, 480000.00, 'Coimbatore', 'Chennai', '2301030007', '', '2', 'upload_files/candidate_tracker/5567762892_Resume_SubhasriD.pdf', NULL, '1', '2023-01-04', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-03 03:12:04', 1, '2023-01-03 03:17:28', 0, NULL, 1),
(11658, 'Subhasri D', '4', '9600915412', '9952705273', 'subashankar23@gmail.com', '1998-11-23', 24, '2', '2', 'Dhiravia Shankar', 'CNC operator', 250000.00, 1, 450000.00, 450000.00, 'Coimbatore', 'Chennai', '2301030008', '1', '2', 'upload_files/candidate_tracker/50108093522_Resume_SubhasriD.pdf', NULL, '1', '2023-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Very high Salary Exp Fresher for our Sales Calls will not sustain in our roles and handle our pressure Communication is Good checked for operations too but Salary Exp is very high', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-03 03:22:19', 99, '2023-01-04 09:36:25', 0, NULL, 1),
(11659, '', '0', '8681849103', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301030009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-03 04:12:38', 0, NULL, 0, NULL, 1),
(11660, 'Jaseen J', '23', '7502985224', '9865067086', 'jjaseen2812@gmail.com', '2001-12-28', 21, '2', '2', 'Jakir Hussain', 'Farmer', 6000.00, 3, 0.00, 500000.00, 'Villupuram', 'Vanagaram', '2301030010', '1', '1', 'upload_files/candidate_tracker/15642764840_jaseen.docx', NULL, '1', '2023-01-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open up No basic Skills also will not handle our work pressure not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-03 07:21:58', 85, '2023-01-04 09:40:11', 0, NULL, 1),
(11661, 'Thanga karuppasamy t', '13', '8056805580', '', 'tkaruppasamy35@gmail.com', '1989-04-08', 33, '3', '2', 'Thanga mani', 'Cooli', 15000.00, 3, 22000.00, 35000.00, 'Chennai', 'Chennai', '2301040001', '', '2', 'upload_files/candidate_tracker/82460538704_thangam (1).docx', NULL, '1', '2023-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Handicapped and Frequent Job Changes Handling our work and long run will not be. not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-04 09:46:57', 1, '2023-01-04 09:51:24', 0, NULL, 1),
(11662, 'ramesh kumar', '4', '6381450392', '', 'rameshashwin77r@gmail.com', '1994-05-27', 28, '2', '1', 'ramalingam', 'farmer', 10000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2301040002', '2', '1', 'upload_files/candidate_tracker/4463606327_Resume ramesh New 2022 2.docx', NULL, '1', '2023-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no relevant Exp he was into QC Have a lot of personal Family issue will not have a focus into work will not sustain in long not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-04 11:02:49', 1, '2023-01-04 11:04:59', 0, NULL, 1),
(11663, 'kalaiselvan k', '4', '7339220967', '', 'kalai30selvan@gmail.com', '1993-01-25', 29, '2', '2', 'pavanambal k', 'house wife', 10000.00, 2, 0.00, 15000.00, 'chennai', 'chennai', '2301040003', '2', '1', 'upload_files/candidate_tracker/52046917497_kalai It CV.doc', NULL, '1', '2023-01-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Long Career Gap No Relevant Exp Will not sustain and handle Calls not suitable for our roles', '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-04 11:06:15', 1, '2023-01-04 11:08:15', 0, NULL, 1),
(11664, 'Mukesh Kumar M', '13', '8667817783', '9025009281', 'mukeshmano1698@gmail.com', '1998-01-16', 24, '3', '2', 'Manoharan S', 'Salesman in Market', 40000.00, 1, 15000.00, 20000.00, 'Dinamani Nagar', 'Kolathur', '2301040004', '', '2', 'upload_files/candidate_tracker/58246713538_Mukesh Kumar - Resume.pdf', NULL, '1', '2023-01-04', 0, '', '5', '27', NULL, 0.00, '', '0', NULL, '2', 'Not Complete the task', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-04 12:30:36', 1, '2023-01-04 12:39:20', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11665, 'Nihal Ahmed P', '4', '7418229413', '', 'Nihaalahmed15@gmail.com', '1994-05-10', 28, '2', '1', 'Afrah Suman', 'Senior Customer Support Executive', 20000.00, 1, 17000.00, 25000.00, 'Vaniyambadi', 'Chennai', '2301040005', '1', '2', 'upload_files/candidate_tracker/83232112827_Nihal Curriculum Vitae.docx', NULL, '1', '2023-01-05', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Operations Calling Bit of Attitude final round reject by gokul.Doubtful Profile', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2023-01-04 12:36:25', 1, '2023-01-04 12:41:46', 0, NULL, 1),
(11666, 'Jayasree', '4', '9952038271', '', 'kjeya21251@gmail.com', '2001-11-21', 21, '1', '2', 'Dhanalakshmi', 'House wife', 7000.00, 1, 16000.00, 14000.00, 'Chennai', 'Chennai', '2301040006', '', '2', 'upload_files/candidate_tracker/24742504630_jeya resume.pdf', NULL, '1', '2023-01-04', 0, 'P1275', '3', '59', '2023-01-06', 170532.00, '', '5', '1970-01-01', '2', 'Selected for Bhavani Team - Consultant Role', '1', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-04 12:46:24', 60, '2023-01-05 05:52:26', 0, NULL, 1),
(11667, '', '0', '8940911702', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301040007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-04 01:35:17', 0, NULL, 0, NULL, 1),
(11668, 'Elakkiya', '4', '8248577508', '', 'elakkiyacivi11@gmail.com', '1996-06-11', 26, '2', '2', 'Muneeswaran', 'Farmer', 20000.00, 1, 10000.00, 13000.00, 'Thanjavur', 'Thanjavur', '2301040008', '1', '2', 'upload_files/candidate_tracker/86603996495_ELAKKIYA RESUME (1).pdf', NULL, '1', '2023-01-05', 0, '', '3', '59', '2023-01-09', 151584.00, '', '', '2023-01-10', '1', 'Selected for Thanjavur - Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-04 02:57:05', 60, '2023-01-05 05:52:44', 0, NULL, 1),
(11669, 'Bharathiraja D', '13', '7904936679', '9345992872', 'bharathiteejay@gmail.com', '2001-11-25', 21, '2', '2', 'Kamalavalli D', 'Tailor', 10000.00, 1, 0.00, 25000.00, 'Neyveli', 'Chennai', '2301040009', '1', '1', 'upload_files/candidate_tracker/62612153437_bharathiraja resume update (1).docx.pdf', NULL, '2', '2023-01-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-04 05:41:50', 99, '2023-01-10 09:26:50', 0, NULL, 1),
(11670, 'Vignesh Karthick', '3', '7448644272', '7810083740', 'sudhakarvigneshkarthick@gmail.com', '2001-01-05', 22, '2', '2', 'S.muthu lakshmi', 'Tailor', 10000.00, 1, 0.00, 15000.00, 'Madurai', 'Chennai', '2301050001', '1', '1', 'upload_files/candidate_tracker/90545333381_MY RESUME (2).pdf', NULL, '1', '2023-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not much strong in basics need to be trained a lot not much comfort in TxxampC Need time to confirm from his side if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 12:11:43', 99, '2023-01-05 09:48:29', 0, NULL, 1),
(11671, 'deepalakshmi b', '4', '9500742779', '', 'deepanandhini16@gmail.com', '1988-07-16', 34, '2', '1', 'baskar', 'busniess', 30000.00, 1, 15000.00, 16000.00, 'chennai', 'chennai', '2301050002', '2', '2', 'upload_files/candidate_tracker/74946048861_DEEPALAKSHMI\'s Resume.pdf', NULL, '1', '2023-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 10:55:07', 1, '2023-01-05 10:57:27', 0, NULL, 1),
(11672, 'lohithraj prasad', '4', '8248686386', '', 'p.lohithraj7311@gmail.com', '1998-11-04', 24, '2', '2', 'prakash', 'working', 20000.00, 1, 0.00, 15000.00, 'chennai', 'chennai', '2301050003', '2', '1', 'upload_files/candidate_tracker/44352449456_Lohithraj Prasad P.pdf', NULL, '1', '2023-01-05', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 11:02:11', 1, '2023-01-05 11:15:01', 0, NULL, 1),
(11673, '', '0', '7338777351', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 11:16:53', 0, NULL, 0, NULL, 1),
(11674, 'Gokul sarachandran', '4', '9940265226', '8248900745', 'gokulkrish410@gmail.com', '1995-12-10', 27, '2', '2', 'Sarachandran', 'Private car driver', 15.00, 1, 22700.00, 25.00, 'No : 9 cannal st Triplicane, ch-05', 'No : 16/72 karikalan St, R.A Pura ch-28', '2301050005', '1', '2', 'upload_files/candidate_tracker/80019084146_Gokul Sarachandran.pdf', NULL, '1', '2023-01-05', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for our sales not suitable for B2B can give a try in PC need to be trained salart exp is high candidate need time to give his confirmation on the profile if he comes back let us try', '1', '1', '', '1', '1', '', '2', '2023-01-09', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 11:21:54', 99, '2023-01-05 11:44:04', 0, NULL, 1),
(11675, 'subilesh s', '5', '9562741857', '', 'subhileshsubhi44@gmail.com', '1996-09-08', 26, '2', '2', 'surendran', 'clerk', 15000.00, 2, 18000.00, 20000.00, 'chennai', 'chennai', '2301050006', '2', '2', 'upload_files/candidate_tracker/35237278115_subhilesh_cv.pdf', NULL, '1', '2023-01-05', 0, '', '3', '59', '2023-01-11', 345696.00, '', '3', '2023-07-08', '1', 'Selected for Sarath Team - PF PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-05 11:44:02', 60, '2023-01-09 06:21:16', 0, NULL, 1),
(11676, 'Sathishkumar. D', '31', '9384467367', '9942890426', 'Sathish.Drs07@gmail.com', '1996-01-07', 26, '2', '2', 'Durairaj', 'Contract painting', 16000.00, 1, 0.00, 15000.00, 'Kallakurichi', 'Chennai', '2301050007', '1', '1', 'upload_files/candidate_tracker/3352433261_Resume_05_01_2023_12_21_01_pm.pdf', NULL, '1', '2023-01-05', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basics will not sustain in our roles for a long not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 12:11:40', 99, '2023-01-05 12:28:29', 0, NULL, 1),
(11677, 'Steepen Raj D', '14', '8608693210', '', 'steepenraj15@gmail.com', '2000-10-15', 22, '2', '2', 'David', 'Driver', 14000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2301050008', '1', '1', 'upload_files/candidate_tracker/66384172483_Steepen', NULL, '1', '2023-01-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have a basic Python skills can be trained open for TxxampC need to schedule for final round with Gokul based on his availability', '2', '1', '', '1', '1', '', '2', '2023-01-09', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 01:34:43', 99, '2023-01-06 09:24:24', 0, NULL, 1),
(11678, 'athi sivaram', '31', '6382834963', '9787841530', 'sivaramathi2001@gmail.com', '2001-07-22', 21, '2', '2', 'shanmuganathan', 'farmer', 15000.00, 1, 0.00, 3.50, 'uthankulam', 'chennai', '2301050009', '1', '1', 'upload_files/candidate_tracker/44963576684_AthiSivaramSResume.pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have a knowledge in Oracle and focusing much in that for time being he is looking in react and no basic skills will not sustain and not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 04:36:11', 99, '2023-01-06 09:32:20', 0, NULL, 1),
(11679, '', '0', '9840311448', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 04:43:47', 0, NULL, 0, NULL, 1),
(11680, '', '0', '8940050241', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 04:45:15', 0, NULL, 0, NULL, 1),
(11681, 'Gopinath', '23', '8754221148', '8925078311', 'gmgopinath918@gmail.com', '1998-04-22', 25, '3', '2', 'Arjunan', 'UI Developer', 200000.00, 1, 220000.00, 300000.00, 'Vellore', 'Tambaram', '2301050012', '', '2', 'upload_files/candidate_tracker/20961448439_Gopinath_new_resume-1.pdf', NULL, '1', '2024-01-05', 15, '', '1', '27', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 05:02:12', 1, '2024-01-05 06:53:02', 0, NULL, 1),
(11682, '', '0', '9003058785', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 05:19:37', 0, NULL, 0, NULL, 1),
(11683, 'GOKULAKRISHNAN R', '31', '8270474806', '', 'rgokulamd@gmail.com', '2001-12-04', 21, '2', '2', 'RENGANATHAN G', 'FARMER', 100000.00, 1, 0.00, 200000.00, 'Vadapalani', 'vadapalani', '2301050014', '1', '1', 'upload_files/candidate_tracker/77098860325_Gokulakrishnan', NULL, '1', '2023-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not answering any thing no basics skills too not suitable will not handle our work pressure', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 05:32:22', 99, '2023-01-07 09:23:55', 0, NULL, 1),
(11684, 'Umarjaffarhussian S', '14', '7010043371', '7871485567', 'umarjaffer56@gmail.com', '2000-04-25', 22, '2', '2', 'Samsul Arif A', 'working for shoes shop', 20000.00, 1, 0.00, 17000.00, 'Virudhunagar', 'Chennai', '2301050015', '1', '1', 'upload_files/candidate_tracker/49148741333_Umar jaffar Resume.docx.pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not Active Seems to be slow in the pace have basic knowledge in python but suitability doubts on the profile', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 06:32:47', 99, '2023-01-09 09:44:28', 0, NULL, 1),
(11685, '', '0', '8778819166', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301050016', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-05 06:53:40', 0, NULL, 0, NULL, 1),
(11686, 'Priyadarsini J', '23', '9746756500', '6282465313', 'darsinijp26@gmail.com', '2000-10-26', 22, '3', '1', 'A Jayakumar', 'Business', 65000.00, 1, 0.00, 40000.00, 'Thiruvananthapuram', '19-B maruthi nagar parvathi Nagar chennai-68', '2301050017', '', '1', 'upload_files/candidate_tracker/22773560057_Priyadarsini\'s Resume (3)(1).pdf', NULL, '2', '2023-01-08', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 07:09:31', 1, '2023-01-05 07:15:30', 0, NULL, 1),
(11687, 'Sivasakthivel S', '31', '8524015985', '', 'sakthisekar2001@gmail.com', '2001-06-21', 21, '2', '2', 'Sekar N', 'Daily wages', 30000.00, 4, 0.00, 300000.00, 'Ariyalur', 'Ariyalur', '2301050018', '1', '1', 'upload_files/candidate_tracker/87026778017_Reusme_Sivasakthivel S.pdf', NULL, '2', '2023-01-06', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 08:00:27', 99, '2023-01-06 09:35:01', 0, NULL, 1),
(11688, 'P. Keerthana', '20', '8680954103', '9962815510', 'Keerthanakeerthana291@gmail.com', '2000-07-26', 22, '2', '2', 'Paramasivam. V', 'Printer', 15000.00, 1, 16000.00, 16000.00, 'Chennai', 'Chennai', '2301050019', '1', '2', 'upload_files/candidate_tracker/65313637558_KEERTHANA RESUME.docx', NULL, '1', '2023-01-06', 0, '', '3', '59', '2023-01-09', 230500.00, '', '', '2023-01-12', '2', 'Selected for Babu Team in PF/ESI/PT', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-05 08:15:58', 60, '2023-01-09 10:10:46', 0, NULL, 1),
(11689, 'vignesh n', '31', '8428330485', '', 'vigneshnarayanan2962001@gmail.com', '2001-06-29', 21, '3', '2', 'narayanasamy v', 'farmar', 60000.00, 1, 0.00, 3.50, 'Perambalur', 'Porur', '2301050020', '', '1', 'upload_files/candidate_tracker/16424886725_Resume_Vignesh N.pdf', NULL, '1', '2023-01-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-05 08:20:33', 1, '2023-01-05 08:26:05', 0, NULL, 1),
(11690, 'GOPINATH S', '2', '6381247746', '9585915076', 'gopinathseeniappan19@gmail.com', '1999-05-19', 23, '3', '2', 'S SEENIAPPAN', 'rtd VAO', 500000.00, 2, 0.00, 300000.00, 'Madurai', 'Chennai', '2301050021', '', '1', 'upload_files/candidate_tracker/32275947295_Gopinath S.pdf', NULL, '2', '2023-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basics in the skills will not get adapt with our work and not suitable', '2', '1', '', '4', '5', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-05 10:01:49', 85, '2023-01-06 11:45:56', 0, NULL, 1),
(11691, 'KARUNANIDHI C', '31', '8124061984', '9952717599', 'sureshkarunan22@gmail.com', '1998-06-14', 24, '2', '2', 'Chandra Sekaran P & Jayanthi C', 'Bus conductor', 13000.00, 2, 0.00, 20000.00, 'Tiruvannamalai', 'Medavakkam,Chennai', '2301050022', '1', '1', 'upload_files/candidate_tracker/1424561298_Resume 2022.doc', NULL, '3', '2023-01-06', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'appeared for React have exp in sales checked with 2nd round in IT manikandan but not suitable pushed him for sales too.he needs to come back with his confirmation', '2', '1', '', '1', '1', '', '2', '2023-01-09', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-05 10:30:12', 99, '2023-01-06 09:36:03', 0, NULL, 1),
(11692, 'venkadesh', '4', '7094815161', '', 'mkvenkat1999@gmail.com', '1999-05-08', 23, '2', '2', 'lekkan', 'farmer', 10000.00, 3, 0.00, 12000.00, 'karur', 'chennai', '2301060001', '2', '1', 'upload_files/candidate_tracker/96926757550_AS pro 40988.pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not much open for Telecaller Sales looking for inbound calls will not handle the work pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 10:03:23', 1, '2023-01-06 10:05:36', 0, NULL, 1),
(11693, 'Tamilarasu R', '2', '8344493562', '', 'rtatamilarasu123@gmail.com', '2000-11-23', 22, '3', '2', 'Raja', 'Employee in textile industry', 15000.00, 1, 0.00, 4.00, 'Tiruchengode, Namakkal', 'Paranur', '2301060002', '', '1', 'upload_files/candidate_tracker/43651841583_Resume.pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher ,Preferred Java and salary Exp is very high not ready to come down not open for TxxampC not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 10:52:41', 1, '2023-01-06 10:56:30', 0, NULL, 1),
(11694, 'Sangeetha M', '13', '9094816712', '', 'sangeethait1997@gmail.com', '1997-02-04', 25, '4', '2', 'Murugesan,Saroja', 'Merchant', 20000.00, 2, 0.00, 18000.00, 'Chennai', 'Chennai', '2301060003', '', '1', 'upload_files/candidate_tracker/56477230560_Resume_1670675006549_M._Sangeetha.doc', NULL, '1', '2023-01-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not much strong with the basics getting married in a year 2 EB are working in IT sustainability doubts in this profile not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 11:02:07', 1, '2023-01-06 11:16:40', 0, NULL, 1),
(11695, 'S.Premkumar', '31', '8940058241', '', 'dharshan1620@gmail.com', '1999-07-16', 23, '2', '2', 'M.sekar', 'Former', 7000.00, 2, 0.00, 12000.00, 'Thiruvotriyut', 'Thiruvotriyur', '2301060004', '1', '1', 'upload_files/candidate_tracker/9208704913_PREM KUMAR S.pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much good with the basics will not run in a long not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-06 11:14:51', 99, '2023-01-06 11:29:04', 0, NULL, 1),
(11696, 'Rabinson A', '4', '8124529591', '9344929655', '550rabinson@gmail.com', '1994-06-03', 28, '2', '1', 'Sharmila', 'Working', 25000.00, 1, 15000.00, 20000.00, 'Ramanathapuram', 'Vettuvankeni, chennai', '2301060005', '1', '2', 'upload_files/candidate_tracker/64897111373_rabin 03.06.1994.docx', NULL, '1', '2023-01-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not suitable not open up will not sustain in our roles ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-06 11:21:12', 99, '2023-01-06 11:30:21', 0, NULL, 1),
(11697, 'yuvarani', '16', '6374249456', '', 'yuvarani77998@gmail.com', '1998-05-04', 24, '2', '1', 'magesh', 'own business', 25000.00, 3, 0.00, 15000.00, 'chennai', 'perambur', '2301060006', '1', '1', 'upload_files/candidate_tracker/95274242717_Yuvarani+Resume (1) (1).pdf', NULL, '1', '2023-01-06', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Career Gap not open up will not sustain and not suitable', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2023-01-06 11:25:46', 1, '2023-01-06 11:48:53', 0, NULL, 1),
(11698, 'Narmadha devi', '28', '8682099372', '8939171546', 'Narmadhasivakumar15@gmail.com', '2000-06-15', 22, '2', '2', 'Siva Kumar', 'Plumber', 20000.00, 1, 16500.00, 18000.00, 'Chennai', 'Chennai', '2301060007', '1', '2', 'upload_files/candidate_tracker/24452999015_Narmadha resume.docx', NULL, '1', '2023-01-06', 7, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no communication .. for renewals .. she ok with sales again has exp too.. average convincing skills.. not suit for roles..', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-06 12:28:37', 99, '2023-01-06 12:47:21', 0, NULL, 1),
(11699, '', '0', '7358408634', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301060008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-06 12:36:03', 0, NULL, 0, NULL, 1),
(11700, 'Narmadha devi', '5', '8682099382', '9962200801', 'narmadhasivakumar15@gmail.com', '2000-06-15', 24, '2', '2', 'Siva Kumar', 'Plumber', 30000.00, 1, 18000.00, 23000.00, 'Chennai old washermenpet', 'Chennai old washermenpet', '2301060009', '50', '2', 'upload_files/candidate_tracker/74084728762_NARMADHARESUME.pdf', NULL, '1', '2024-09-05', 0, '', '5', '139', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not interested work in sales ', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', '55656', '55557', '1970-01-01', 1, '2023-01-06 12:40:52', 104, '2024-09-05 03:35:53', 0, NULL, 1),
(11701, 'Prakash', '13', '9047686523', '', 'prakashramasamy2201@gmail.com', '2001-01-22', 21, '4', '2', 'Ramasamy', 'Shop keeper', 15000.00, 1, 0.00, 18000.00, 'Dindigul', 'Dindigul', '2301060010', '', '1', 'upload_files/candidate_tracker/55058110762_prakash_resume.pdf', NULL, '1', '2023-01-06', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'have a 3months internship know basics can analyse the candidate in Task kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 01:19:03', 1, '2023-01-06 01:30:58', 0, NULL, 1),
(11702, '', '0', '8939092563', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301060011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-06 02:30:58', 0, NULL, 0, NULL, 1),
(11703, '', '0', '9790256890', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301060012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-06 02:38:25', 0, NULL, 0, NULL, 1),
(11704, 'Santhosh K', '31', '9629473782', '', 'Santhoshk1925@gmail.com', '1999-05-25', 23, '3', '2', 'Karaimelazhagan', 'Masan', 15000.00, 2, 0.00, 2.50, 'Medavakkam, Chennai', 'Medavakkam, Chennai', '2301060013', '', '1', 'upload_files/candidate_tracker/43810120092_santhosh.pdf', NULL, '1', '2023-01-06', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have basic skills in React having freelance exp open for TxxampC need to check with Gokul based on his availability', '2', '1', '0', '1', '1', '0', '2', '2023-01-09', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 02:51:39', 1, '2023-01-06 02:57:39', 0, NULL, 1),
(11705, 'Syed', '31', '6384900162', '9382092360', 'syedmass7868@gmail.com', '2002-08-14', 20, '2', '2', 'Bhadhusha', 'Coolie', 25000.00, 2, 0.00, 20000.00, 'Thiruvannamalai, Dt, venniyanthal village', 'Chennai, urappagam', '2301060014', '1', '1', 'upload_files/candidate_tracker/25774707645_New doc2023.pdf', NULL, '1', '2023-01-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher need to train alot too long distance ready to relocate but not much comfort in TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '2023-01-10', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-06 03:07:12', 99, '2023-01-07 09:24:17', 0, NULL, 1),
(11706, 'Shalini G', '22', '6381666420', '', 'simplishalu@gmail.com', '1997-07-12', 25, '2', '2', 'P S Ganesan', 'SEO Analyst/Content writer', 50000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2301060015', '1', '1', 'upload_files/candidate_tracker/89158247997_shaliniresume (3).pdf', NULL, '1', '2023-01-07', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-06 03:13:48', 85, '2023-01-07 09:49:59', 0, NULL, 1),
(11707, 'Kishore v', '13', '8807279847', '', 'kishore1999kumar@gmail.com', '1999-12-13', 24, '3', '2', 'Vijayakumar', 'Weaver', 20000.00, 1, 0.00, 450000.00, 'Kanchipuram', 'Kanchipuram', '2301060016', '', '1', 'upload_files/candidate_tracker/80671218765_KISHORE-V.pdf', NULL, '1', '2023-12-15', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '2', '2', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-06 06:10:32', 1, '2023-12-15 07:33:06', 0, NULL, 1),
(11708, 'Ajay Joseph Rayen', '31', '8610687317', '', 'ajayjoseph455@gmail.com', '2000-07-29', 22, '2', '2', 'cyril rayen', 'visa travel agent', 50000.00, 1, 0.00, 3.00, 'chennai', 'chennai', '2301070001', '1', '1', 'upload_files/candidate_tracker/72935921083_AJAY JOSEPH RAYEN UPDATED.pdf', NULL, '1', '2023-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Need to train a lot he was interested in several domain earlier worked in Cine Field Sustainability doubts Need time to confirm his profile,Bit Attitude not ready to accept seems to have a head weight', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-07 09:20:32', 99, '2023-01-07 09:33:19', 0, NULL, 1),
(11709, 'Subramani V', '31', '7871733243', '', 'subramaniv0110@gmail.com', '2000-10-01', 22, '2', '2', 'Vasamuthu S', 'Sales', 250000.00, 1, 0.00, 2.40, 'Chennai', 'Chennai', '2301070002', '1', '1', 'upload_files/candidate_tracker/96943665572_SubramaniV-resume (1).pdf', NULL, '1', '2023-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not strong with the basics, not much comfort with the TxxampC Long run doubts if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-07 09:39:16', 99, '2023-01-07 09:49:42', 0, NULL, 1),
(11710, 'G.vivek', '31', '8760478873', '8678996429', 'vivek10841230@gmail.com', '2001-02-03', 21, '2', '2', 'R.Gunasekaran', 'Farmer', 6500.00, 1, 0.00, 200000.00, 'Theni', 'Velachery Chennai', '2301070003', '1', '1', 'upload_files/candidate_tracker/51163781429_VIivekresume (2).pdf', NULL, '1', '2023-01-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC No basic skills nothing learnt in the lst 2 months gap not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-07 10:03:38', 85, '2023-01-07 10:48:31', 0, NULL, 1),
(11711, 'Kishor', '2', '9655415661', '', 'Kishorkaruna20@gmail.com', '2000-11-04', 22, '3', '2', 'Karuna', 'Mechanic', 20.00, 0, 0.00, 2.00, 'Namakkal', 'Chennai', '2301070004', '', '1', 'upload_files/candidate_tracker/74024052717_ kishor.pdf', NULL, '1', '2023-01-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher have a basic knowledge in Java only,Tried for training but technical round reject by Gokul', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-07 12:19:19', 1, '2023-01-07 12:32:17', 0, NULL, 1),
(11712, 'Rohit', '6', '9677159673', '9514965835', 'rohitmuralidharan11@gmail.com', '2000-03-11', 22, '1', '2', 'Muralitharan', 'Tiles wroker', 30000.00, 4, 17000.00, 20000.00, '52/77 sudalai Muthu street new washermenpet', '52/77 Sudalai Muthu Street New Washermenpet', '2301070005', '', '2', 'upload_files/candidate_tracker/50444035272_RESUME MODIFY.pdf', NULL, '1', '2023-01-07', 15, 'P1417', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed and suggested the salary breakup and they were not ready alos looking for high salary', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-07 12:22:02', 60, '2023-01-07 04:04:43', 0, NULL, 1),
(11713, 'Tamil Selvam', '6', '7550202278', '8754593978', 'mersaltamil046@gamil.com', '2000-07-22', 22, '1', '2', 'Kalavathi', 'House wife', 10000.00, 3, 0.00, 15000.00, '04/38 pillaiyar Kovil street tollgate', '04/38 Pillaiyar Kovil Street Tollgate', '2301070006', '', '1', 'upload_files/candidate_tracker/49237086664_1.pdf', NULL, '1', '2023-01-07', 0, 'P1417', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher language and skills problem', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-07 12:22:27', 60, '2023-01-07 04:03:57', 0, NULL, 1),
(11714, 'Sarathkumar', '6', '9150298892', '', 'arun@cafsindia.com', '2000-10-27', 22, '1', '2', 'Sennivaaan', 'Tailor', 10000.00, 0, 17000.00, 20000.00, '79/149 AA garden 5tstreet Newwashermenpet', '79/149 A. A Garden 5th Street Newwashermenpet', '2301070007', '', '2', 'upload_files/candidate_tracker/13532357331_DOC-20221128-WA0006..pdf', NULL, '1', '2023-01-07', 15, 'P1417', '3', '59', '2023-02-10', 230000.00, '', '7', '1970-01-01', '1', 'HRMS Issue Testing', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-07 12:24:04', 60, '2023-02-09 09:58:54', 0, NULL, 1),
(11715, 'SUDHAKAR V', '5', '8667325768', '9092936193', 'dinesh55577@Gmail.com', '1995-10-10', 27, '1', '2', 'Sarala v', 'Housewife', 360000.00, 2, 295000.00, 400000.00, 'Chromepet', 'Chromepet', '2301070008', '', '2', 'upload_files/candidate_tracker/44827075093_0_0_Sudhakar CV.docx', NULL, '1', '2023-01-07', 15, 'P1279', '3', '59', '2023-01-17', 340000.00, '', '5', '1970-01-01', '1', 'Selected for Shanmugam Team in PF PT', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-07 01:23:34', 60, '2023-01-09 06:23:09', 0, NULL, 1),
(11716, 'Dhivya', '20', '6381744896', '8056754591', 'diyadhivi600@gmail.com', '2008-01-07', 0, '2', '2', 'Dhivi dina brothers', 'Painter and shef', 15000.00, 2, 19.50, 30000.00, 'Pondicherry', 'Chennai', '2301070009', '1', '2', 'upload_files/candidate_tracker/18813910583_dhivya resume ????.pdf', NULL, '1', '2023-01-11', 1, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp in Telecalling Can give a try for our sales but candidate need a time to confirm family need is there', '5', '2', '', '2', '2', '', '2', '2023-01-13', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-07 03:46:48', 85, '2023-01-11 02:28:57', 0, NULL, 1),
(11717, 'Udhayalakshmi', '22', '8148518083', '', 'udhayalakshmi004@gmail.com', '1997-02-05', 25, '2', '2', 'Mahalingam', 'Coconut selling', 80000.00, 3, 0.00, 12000.00, 'Chennai', 'Chennai', '2301070010', '1', '1', 'upload_files/candidate_tracker/70021018335_DOC-20230105-WA000..pdf', NULL, '3', '2023-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Long Career Gap not suitable for Digital Marketing Checked for Telecalling but not open for that', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-07 04:36:10', 85, '2023-01-18 12:58:46', 0, NULL, 1),
(11718, 'mahalakshmi', '16', '7305698708', '', 'mahalakshmiguhan01@gmail.com', '2001-08-19', 21, '2', '2', 'guhan c', 'retired', 40000.00, 2, 15000.00, 25000.00, 'chennai', 'chennai', '2301080001', '1', '2', 'upload_files/candidate_tracker/57174415312_Mahalakshmi G .pdf', NULL, '1', '2023-01-09', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Final Round Completed with Gokul Have Exp but not a relevant one Salary Exp is very high we have commited her 17K if she comes back let us try', '3', '1', '', '1', '1', '', '2', '2023-01-11', '1', '5', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-08 11:40:08', 99, '2023-01-09 10:40:36', 0, NULL, 1),
(11719, 'Mohammed Azees', '2', '7904104626', '9677730508', 'mohammedazees3@gmail.com', '1997-06-20', 25, '2', '2', 'YOUSUF', 'Hvac technician', 60000.00, 2, 0.00, 300000.00, 'Coimbatore', 'Chennai', '2301090001', '1', '1', 'upload_files/candidate_tracker/22299377958_ResumE_Azees..pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for IT not much strong with the basics in Python salary exp is high and not open for TxxampC', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-09 10:44:03', 99, '2023-01-09 11:11:06', 0, NULL, 1),
(11720, 'niyamaththullah beg', '4', '7824042788', '', 'niyamaththulla20@gmail.com', '2001-11-20', 21, '2', '2', 'musthafa beek', 'late', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2301090002', '2', '1', 'upload_files/candidate_tracker/26256961886_RESUME NIYATHTHULLAH .pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Attitude Not suitable for sales Telesales will not sustain and handle our pressure', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 10:46:10', 1, '2023-01-09 11:25:34', 0, NULL, 1),
(11721, '', '0', '8754187436', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301090003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-09 10:49:02', 0, NULL, 0, NULL, 1),
(11722, 'Swetha', '4', '8925241221', '', 'Swethachandran1701@gmail.com', '2001-11-17', 21, '3', '2', 'M.chandraan', 'Catering', 10000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2301090004', '', '1', 'upload_files/candidate_tracker/3378418194_RESUME - SWETHA.C.docx.pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher need to open a lot will not handle our work pressure not suitable', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 11:07:18', 1, '2023-01-09 11:29:39', 0, NULL, 1),
(11723, 'J.priyadharsini', '31', '9445217784', '9444851317', 'priyadharsinij.10@gmail.com', '1990-06-10', 32, '3', '1', 'S.sureshkumar', 'Swiggy', 30000.00, 1, 0.00, 1.50, 'Chennai', 'Chennai', '2301090005', '', '1', 'upload_files/candidate_tracker/14654529826_priyaresum.pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance looking for Core Java she is from Manali Married will not sustain', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 11:17:11', 1, '2023-01-09 11:24:03', 0, NULL, 1),
(11724, 'Meena Mohandhas', '31', '6379199220', '', 'meenamohandhas600@gmail.com', '1999-04-07', 23, '3', '2', 'M.Sundari', 'Farmer', 10000.00, 1, 0.00, 15000.00, 'Aranthangi', '7/20, Annapoorna hostel , Kodambakkam, Chennai', '2301090006', '', '1', 'upload_files/candidate_tracker/51338288715_meena+Bio+Data(2).docx', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'looking for Java and no basics in Javascript will not sustain not much comfort in TxxampC Family well settled Govt staff vAO', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 11:17:21', 1, '2023-01-09 11:25:20', 0, NULL, 1),
(11725, 'sameyulla', '4', '7358594805', '', 'sameyulla61@gmail.com', '2001-09-21', 21, '2', '2', 'yusuf', 'tailor', 10000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2301090007', '2', '1', 'upload_files/candidate_tracker/79671799792_Samiyullah Resume .pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Left without attending the interview\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-09 11:26:23', 1, '2023-01-09 11:27:43', 0, NULL, 1),
(11726, 'Benedict Jude', '5', '8220758785', '8056930661', 'benedictaashiq@gmail.com', '1996-05-02', 26, '2', '2', 'Krishanthini', 'House wife', 20000.00, 1, 0.00, 4.50, 'Chennai', 'Chennai', '2301090008', '1', '1', 'upload_files/candidate_tracker/46383958116_Benedict_Resume-1.pdf', NULL, '1', '2023-01-09', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Telecalling Exp but in different domain and his current pay is 4 LPA for just 4 months exp not ready to come down will not join us', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-09 11:34:27', 85, '2023-01-09 11:43:09', 0, NULL, 1),
(11727, '', '0', '9791924504', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301090009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-09 02:50:54', 0, NULL, 0, NULL, 1),
(11728, 'Sathish S', '31', '6383361261', '', 'sathish3rs385@gmail.com', '2000-05-21', 22, '2', '2', 'SANKAR', 'Farmer', 25000.00, 2, 0.00, 15000.00, 'Nerkunram', 'Nerkunram', '2301090010', '1', '1', 'upload_files/candidate_tracker/14755418316_SATHISH RESUME.pdf', NULL, '1', '2023-01-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Much comfort in TxxampC,sustaianability doubts not much strong with the basics too', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-09 06:10:48', 99, '2023-01-10 09:27:50', 0, NULL, 1),
(11729, '', '0', '9840708931', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301090011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-09 08:51:51', 0, NULL, 0, NULL, 1),
(11730, 'Murugesan', '13', '8428535391', '8438915391', 'Vijaynivi5268@gmail.com', '1999-05-10', 23, '2', '2', 'Amsavalli', 'Teacher', 15000.00, 0, 0.00, 10000.00, 'Chennai', 'Chennai', '2301100001', '1', '1', 'upload_files/candidate_tracker/95817792490_k MURUGESAN K-1.pdf', NULL, '1', '2023-01-10', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not strong with PHP but have a 3 months internship earlier Ready to learn kindly check and let me know your inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-10 07:51:04', 99, '2023-01-10 01:05:08', 0, NULL, 1),
(11731, 'vaishakh dinesh', '5', '8531857160', '', 'vaishakhdinesh0@gmail.com', '1998-03-21', 24, '2', '2', 'Dineshan', 'Central government staff', 20000.00, 1, 17000.00, 23000.00, 'Chennai', 'Chennai', '2301100002', '1', '2', 'upload_files/candidate_tracker/48456968814_DINESH RESUME.pdf', NULL, '1', '2023-01-10', 0, '', '5', '31', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suitable candidate', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-10 09:01:57', 60, '2023-01-10 03:53:37', 0, NULL, 1),
(11732, 'rakesh a', '31', '7401305766', '9962755899', 'rakesharun95@gmail.com', '1995-06-02', 27, '4', '2', 'arunachalam', 'retiered', 50000.00, 1, 0.00, 300000.00, 'chennai', 'chennai', '2301100003', '', '1', 'upload_files/candidate_tracker/17727510423_Rakesh Resume.pdf', NULL, '1', '2023-01-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have Solid Exp in sales but no open again looking for IT React JS ,sustainability doubts and his last drawn also high. Technical Round reject by Kaviya', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-10 10:06:37', 1, '2023-01-10 10:10:09', 0, NULL, 1),
(11733, '', '0', '8248739023', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301100004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-10 10:07:50', 0, NULL, 0, NULL, 1),
(11734, 'Mohan balan', '6', '9994036984', '9715215915', 'mohankannu561997@gmail', '1997-06-05', 25, '1', '2', 'S.k.balan', 'Farmer', 15000.00, 1, 0.00, 18000.00, 'Erode', 'Erode', '2301100005', '', '1', 'upload_files/candidate_tracker/84056816763_Mohan resume New 2.pdf', NULL, '1', '2023-01-10', 0, 'P1311', '3', '59', '2023-01-18', 198000.00, '', '5', '1970-01-01', '1', 'Selected fir Staff Role - Erode', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-10 10:18:19', 60, '2023-01-11 05:45:05', 0, NULL, 1),
(11735, 'Hemanathan k', '4', '8072711560', '7092827927', 'hemanathcharlie27@gmail.com', '1998-09-27', 24, '2', '2', 'Parent', 'Driver', 150000.00, 1, 0.00, 150000.00, 'Thiruttani', 'Ambattur', '2301100006', '1', '1', 'upload_files/candidate_tracker/94783787872_K.Hemanathan (1).pdf', NULL, '1', '2023-01-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have exp xxamp interest in non voice process,will not sustain in Telecaller roles', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-10 10:18:23', 99, '2023-01-10 10:29:29', 0, NULL, 1),
(11736, 'Subuhan deen', '5', '8148605665', '8248739023', 'Subu199230@gmail.com', '1992-12-02', 30, '2', '1', 'Mahaboob Ali', 'Business', 30000.00, 0, 16000.00, 18000.00, 'Chennai', 'Chennai', '2301100007', '1', '2', 'upload_files/candidate_tracker/24990922224_SUBUHAN DEEN RESUME 2022.doc', NULL, '1', '2023-01-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Sustainability in the previous Exp, not open up will not sustain and handle our work pressure', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-10 10:27:29', 99, '2023-01-10 10:37:24', 0, NULL, 1),
(11737, 'Karthikraj .G', '2', '9092490289', '', 'Karthikrajkarthikraj19@gmail.com', '2000-07-19', 22, '4', '2', 'GNANASUNDARAM', 'Workshop attender', 40000.00, 1, 0.00, 30000.00, 'GUINDY', 'GUINDY', '2301100008', '', '1', 'upload_files/candidate_tracker/47202406971_CV_2022110714011868.pdf', NULL, '1', '2023-01-10', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Candidate no basic skills knowledge but interested to learn can give a try Need time to confirm on the TxxampC if he comes bacnk let is try', '2', '1', '0', '1', '1', '0', '2', '2023-01-12', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-10 11:12:18', 1, '2023-01-10 11:18:43', 0, NULL, 1),
(11738, 'Vishnu c', '4', '9080623731', '9176496333', 'Vishnuskfc45@gmail.com', '1998-03-21', 24, '3', '2', 'C.latha rani', 'Medicine shop ayuvedic', 40000.00, 2, 0.00, 15000.00, 'tharamani chennai', 'Tharamani Chennai', '2301100009', '', '1', 'upload_files/candidate_tracker/37010464645_VISHNU RESUME.docx', NULL, '1', '2023-01-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have Exp in Telesales but in different Domain and also looking much for Non voice Process, Not suitablle for other openings\n', '1', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-10 02:29:11', 1, '2023-01-10 02:39:26', 0, NULL, 1),
(11739, 'Gokul', '6', '8838712918', '', 'gokulsujith264@gmail.com', '2000-06-28', 22, '2', '2', 'K. Jayaraj', 'Non- employed', 20000.00, 1, 14000.00, 15000.00, 'Erode', 'Erode', '2301100010', '1', '2', 'upload_files/candidate_tracker/99854100662_GOKUL SUJITH.pdf', NULL, '1', '2023-01-11', 0, '', '3', '59', '2023-01-18', 192000.00, '', '6', '2023-02-26', '2', 'Selected for Staff RoleErode Laocation RE', '5', '1', '1', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-10 03:35:34', 60, '2023-01-11 01:14:29', 0, NULL, 1),
(11740, '', '0', '8190805434', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301100011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-10 04:13:41', 0, NULL, 0, NULL, 1),
(11741, 'K JAYAMEENA', '6', '9003573696', '', 'jayakalai2706@gmail.com', '1999-09-27', 23, '2', '2', 'Kalaivani', 'Accountant', 100000.00, 1, 0.00, 10000.00, 'Erode(Dt)', 'Erode(Dt)', '2301100012', '1', '1', 'upload_files/candidate_tracker/64264677099_Resume.pdf', NULL, '1', '2023-01-11', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not fit for our role', '5', '1', '', '4', '7', '', '2', '2023-01-12', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-10 06:30:45', 85, '2023-01-11 12:59:11', 0, NULL, 1),
(11742, 'Hari Prakash', '5', '9600712798', '8825553449', 'haritony21@gmail.com', '1996-11-01', 26, '2', '2', 'Marimuthu', 'Farmer', 22000.00, 1, 350000.00, 400000.00, 'Chennai', 'Thiruvarur', '2301110001', '1', '2', 'upload_files/candidate_tracker/57281064316_HariResume1.pdf', NULL, '2', '2023-01-11', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-11 10:37:15', 99, '2023-01-11 11:35:21', 0, NULL, 1),
(11743, 'Saravanan', '14', '6383048161', '', 'ssakthisaravanan25072001@gmail.com', '2001-07-25', 21, '3', '2', 'Subramanian', 'Cooli', 20000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Perungalathur, Chennai', '2301110002', '', '1', 'upload_files/candidate_tracker/1779197537_Saravanan Resume.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For IT No Basic Skills Knowledge Not Much Comfort In TxxampC Will Not Sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 10:58:36', 1, '2023-01-11 11:06:35', 0, NULL, 1),
(11744, 'Karuppusamy P', '14', '9080587041', '', 'karuppu141997@gmail.com', '1997-02-14', 25, '4', '2', 'Pandiyan P', 'Farmer', 10000.00, 2, 0.00, 25000.00, 'Ariyalur', 'Tambram', '2301110003', '', '1', 'upload_files/candidate_tracker/46616204483_Karuppusamy Resume.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT have Exp in Production no basic skills knowledge not much comfort in TxxampC will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 10:59:01', 1, '2023-01-11 11:18:44', 0, NULL, 1),
(11745, 'N.santhosh', '14', '9962724021', '', 'Santhosh1509n@gmail.com', '2000-09-15', 22, '3', '2', 'Dharani', 'Cooli', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2301110004', '', '1', 'upload_files/candidate_tracker/44498554011_Santhosh.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher For IT having Basic Skills Knowledge Not Much Comfort In TxxampC Will Not Sustain Too Long Distance ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 10:59:18', 1, '2023-01-11 11:32:24', 0, NULL, 1),
(11746, 'Yuva Akash R', '14', '8870287783', '9444705479', 'yuvaakash.ya@gmail.com', '2000-03-26', 22, '3', '2', 'Raja C', 'Mechanic', 12000.00, 0, 0.00, 20000.00, 'Chennai', 'Chennai', '2301110005', '', '1', 'upload_files/candidate_tracker/1333608267_YuvaAkash CV.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher For IT No Basic Skills Knowledge Not Much Comfort In TxxampC Will Not Sustain too long Distance ', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 11:23:34', 1, '2023-01-11 11:27:09', 0, NULL, 1),
(11747, 'Suganya G', '13', '8189928192', '', 'suganprakash907@gmail.com', '1995-04-27', 27, '3', '1', 'Ganapapthy', 'Farmer', 50000.00, 4, 0.00, 20000.00, 'Chennai', 'Chennai', '2301110006', '', '1', 'upload_files/candidate_tracker/68039564725_Resume SUGANYA G.pdf', NULL, '1', '2023-01-11', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long distance huge career Gap Married and family commitments will not sustain in our roles not suitable', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-11 01:11:22', 1, '2023-01-11 01:17:11', 0, NULL, 1),
(11748, 'Blessing', '4', '9384996261', '', 'blsyrjohn967@gmail.com', '1996-09-07', 26, '2', '2', 'Johnson', 'Unemployer', 100000.00, 1, 13500.00, 15000.00, 'Marthandam', 'Tnagar', '2301110007', '1', '2', 'upload_files/candidate_tracker/41595721332_BlessyCv.pdf.pdf', NULL, '1', '2023-01-11', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have telecalling Exp but will not sustain more than a year Engaged,Can give a try for your roles kindly check and let me know your inputs', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-11 01:29:25', 85, '2023-01-11 05:48:37', 0, NULL, 1),
(11749, 'ARUL JUDSON', '23', '6385600579', '9994321859', 'aruljudson160@gmail.com', '2000-07-13', 22, '2', '2', 'PETER A', 'Fishermen', 10000.00, 3, 0.00, 25000.00, '5/3025,thangachimadam, ramanathapuram (Dis)', 'Choolaimedu, Bajanakovil 5th-street', '2301110008', '1', '1', 'upload_files/candidate_tracker/64995082702_Judson Resume.pdf', NULL, '1', '2023-01-12', 0, '', '3', '59', '2023-02-06', 0.00, '', '', '2023-02-10', '1', 'Fresher need to train a lot not open for TxxampC will not sustain and not open for our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '7 days analysis then 5 month 5K and 3yrs 10-12K SA', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-11 03:05:30', 60, '2023-02-06 12:08:05', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11750, 'jeyaseelan', '31', '9094106468', '9344238502', 'jeyaseelan.2399@gmail.com', '1999-03-20', 23, '2', '2', 'mani', 'driver', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2301110009', '1', '1', 'upload_files/candidate_tracker/72612878287_JEYASEELAN_RESUME.pdf', NULL, '1', '2023-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have basic knowledge in skills but the salary exp is very high need time to check with his family and confirm the terms if he comes back let us try', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2023-01-11 03:50:18', 1, '2023-01-11 03:57:19', 0, NULL, 1),
(11751, 'Sriyanka s', '31', '9080875450', '9943114005', 'sriyankas96@gmail.com', '1999-11-18', 23, '2', '2', 'Srinivasan s', 'Farmer', 25000.00, 1, 0.00, 20000.00, 'Chengalpat', 'Chengalpat', '2301110010', '1', '1', 'upload_files/candidate_tracker/56924758157_Sriyanka Resume-1.pdf', NULL, '1', '2023-01-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher no basics however we tried by giving for 2nd round on analysing the training required but got rejected in 2nd round with kavya', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-11 05:36:59', 85, '2023-01-12 12:05:11', 0, NULL, 1),
(11752, '', '0', '9597601211', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301110011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-11 05:56:45', 0, NULL, 0, NULL, 1),
(11753, '', '0', '9363220322', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301110012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-11 05:58:57', 0, NULL, 0, NULL, 1),
(11754, 'THIRUMALAI KRISHNA KUMAR C V', '14', '9677013545', '', 'krishnathiru378@gmail.com', '2000-04-12', 22, '2', '2', 'Jayanthi', 'Nil', 18000.00, 0, 0.00, 18000.00, 'Chennai', 'Chennai', '2301120001', '1', '1', 'upload_files/candidate_tracker/15047081747_THIRUMALAI KRISHNA.pdf', NULL, '1', '2023-01-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Family need is there he is currently earning 18K in home tution career Gap not much strong with the basics he will not able to join on our TxxampC ', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-12 08:56:52', 99, '2023-01-12 11:46:37', 0, NULL, 1),
(11755, 'aravind kumar', '31', '9677216386', '', 'aravindkumars1202@gmail.com', '2000-02-12', 22, '2', '2', 'selvakumar', 'driver', 25000.00, 2, 0.00, 25000.00, 'chennai', 'chennai', '2301120002', '1', '1', 'upload_files/candidate_tracker/4330578854_Aravind\'s Resume.pdf', NULL, '1', '2023-01-12', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Have 6 months Exp in React But not much strong based on the 2nd round interview his focus is only on the salary and he is looking for change only for the salary growth will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1014', '0', NULL, NULL, NULL, 1, '2023-01-12 09:01:40', 1, '2023-01-12 11:56:47', 0, NULL, 1),
(11756, 'MANIKANDAN', '4', '9566266479', '9444203638', 'kannanmanikandan605@gmail.com', '2001-12-12', 21, '2', '2', 'Kannan', 'Police', 20000.00, 1, 0.00, 15000.00, 'Egmore Chennai', 'Egmore Chennai', '2301120003', '1', '1', 'upload_files/candidate_tracker/54488274785_mani resume (1).docx', NULL, '1', '2023-01-12', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Voice Process looking for non voice Process not suitable and no communication for non voice ', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-12 11:04:59', 85, '2023-01-12 11:15:50', 0, NULL, 1),
(11757, '', '0', '9677013544', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301120004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-12 11:11:11', 0, NULL, 0, NULL, 1),
(11758, 'Prabha', '33', '8925275729', '', 'prabhaperumal2001@gmail.com', '2001-04-24', 21, '2', '2', 'A.perumal', 'Tree cutter', 45000.00, 2, 15000.00, 20000.00, 'Chennai', 'Chennai', '2301120005', '1', '2', 'upload_files/candidate_tracker/6970191420_Prabha Resume.pdf', NULL, '1', '2023-01-12', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Need time to give her confirmation for the voice process if she comes should give a try', '4', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-12 12:00:29', 60, '2023-01-12 04:47:52', 0, NULL, 1),
(11759, 'Mohit V T', '13', '8056215005', '9444872037', 'mohitcandy2728@gmail.com', '1999-12-28', 23, '4', '2', 'Thilagavathi V', 'Housewife', 10000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2301120006', '', '1', 'upload_files/candidate_tracker/82684756261_New Resume1.docx', NULL, '1', '2023-01-12', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Having basic knowledge in PHP skills Sustainability need to check open for TxxampC but seems to be doubtful with his futuristic plans', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '7', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-12 12:30:45', 60, '2023-01-12 04:47:33', 0, NULL, 1),
(11760, 'Alyan Raza O H', '4', '9488646975', '', 'alyanoosiraza@gmail.com', '2000-09-17', 22, '2', '2', 'Hifzur Rahman Oosi', 'Business', 50000.00, 3, 12000.00, 18000.00, 'Vaniyambadi', 'Chennai', '2301120007', '1', '2', 'upload_files/candidate_tracker/91588823236_Alyan Raza Resume.docx', NULL, '1', '2023-01-13', 30, '', '2', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '50-50 profile Has 3m of calling exp ..fresher to our role... communication ok.. have to give some training.. ', '1', '1', '', '1', '1', '', '2', '2023-01-16', '3', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-12 01:14:32', 99, '2023-01-13 09:39:30', 0, NULL, 1),
(11761, 'pranav', '2', '8248694224', '', 'pranavf16@gmail.com', '1999-05-05', 23, '3', '2', 'n.dhanabagyam', 'teacher', 20000.00, 0, 0.00, 200000.00, 'chennai', 'chennai', '2301120008', '', '1', 'upload_files/candidate_tracker/16401808753_cv.pdf', NULL, '1', '2023-01-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-12 04:56:40', 1, '2023-01-12 05:12:43', 0, NULL, 1),
(11762, '', '0', '8238694224', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301120009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-12 05:13:47', 0, NULL, 0, NULL, 1),
(11763, 'Sasikesan', '16', '6379077683', '9952089852', 'Sasikesan2403@gmail.com', '2002-03-24', 20, '4', '2', 'Viswanathan', 'Labour ( steel company)', 10000.00, 2, 0.00, 13000.00, '51/81 thiruppalli street, sowcarpet, Chennai -1', '51/81 Thiruppalli Street, Sowcarpet, Chennai -1', '2301130001', '', '1', 'upload_files/candidate_tracker/24063558849_Sasikesan%20resume.docx', NULL, '1', '2023-01-13', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'No Communicaton... not suit for our role', '3', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-13 10:40:40', 1, '2023-01-13 10:50:04', 0, NULL, 1),
(11764, 'arun pandiyan', '4', '8825804414', '9789928915', 'Aruntomm.30@gmail.com', '1998-05-30', 24, '2', '2', 'samy', 'retired', 20000.00, 1, 21000.00, 25000.00, 'chennai', 'chennai', '2301130002', '1', '2', 'upload_files/candidate_tracker/40216466964_resume.pdf.Arun (002).pdf', NULL, '1', '2023-01-13', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'fresher to our role .. too much attitude.. sal exp high .. not suitable for our profile...', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-13 10:58:56', 85, '2023-01-14 02:59:53', 0, NULL, 1),
(11765, 'Praveen kumar M', '14', '9952956573', '', 'praveensundaram98@gmail.com', '1998-01-08', 25, '2', '2', 'Meenakshi sundaram S', 'Pharmacist', 80000.00, 0, 0.00, 25000.00, 'Ayanavaram,chennai', 'Ayanavaram,chennai', '2301130003', '1', '1', 'upload_files/candidate_tracker/98755947957_Resume Praveen kumar-1.pdf', NULL, '1', '2023-01-14', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the next level and i have given him a task to check his writing skills but left without any information\n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-13 11:51:12', 99, '2023-01-14 10:07:53', 0, NULL, 1),
(11766, 'mohamed fazil', '31', '8838198998', '', 'fazilrommie@gmail.com', '1997-09-21', 25, '3', '2', 'shafaath nissa', 'desktop support', 30000.00, 1, 15000.00, 18000.00, 'chennai', 'chennai', '2301130004', '', '2', 'upload_files/candidate_tracker/90988120208_MOHAMED\'s Resume.pdf', NULL, '1', '2023-01-14', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-13 06:15:44', 1, '2023-01-13 08:09:28', 0, NULL, 1),
(11767, 'Antony Jerome D', '14', '9080816760', '', 'antony07061999@gmail.com', '1999-06-07', 23, '2', '2', 'David Emmanuel A', 'security', 500000.00, 1, 0.00, 15000.00, 'Kalugumalai', 'Chennai', '2301140001', '1', '1', 'upload_files/candidate_tracker/34046505714_resume1.pdf', NULL, '1', '2023-01-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Having internship Exp but not much strong with the basics not open for TxxampC will not sustain not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-14 04:47:10', 85, '2023-01-16 11:34:25', 0, NULL, 1),
(11768, 'Jegan Kumar W', '31', '9360266196', '', 'jeganjorden33@gmail.com', '2000-03-29', 22, '2', '2', 'William Doss M', 'Supervisor', 120000.00, 2, 0.00, 15000.00, 'Trichy', 'Vellacherry, Chennai', '2301140002', '1', '1', 'upload_files/candidate_tracker/82270289319_jegan_kumar_resume.pdf', NULL, '1', '2023-02-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not much strong with the basics need time to give his confirmation on the TxxampC if he comes back let us try', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-14 05:31:31', 85, '2023-02-15 10:40:32', 0, NULL, 1),
(11769, 'abrar mohamed a', '14', '9789943164', '9500174077', 'abrarcastro74@gmail.com', '1993-12-07', 29, '2', '1', 'syed rabiyammal', 'housewife', 40000.00, 3, 0.00, 20000.00, 'parrys, chennai', 'parrys, chennai', '2301140003', '1', '1', 'upload_files/candidate_tracker/69281480866_Abrar_Cv.pdf', NULL, '1', '2023-01-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Almost7.8 yrs Exp in different domian totally fresher to the IT,Need to train a lot ,will not sustain due to lot of commitments Married and joining in the role of internship Employment for 3yrs will not sustain and not suitable', '2', '2', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-14 07:22:50', 85, '2023-01-16 09:43:58', 0, NULL, 1),
(11770, 'Prakash', '14', '9790800679', '7299501094', 'prakashmalar24@gmail.com', '2001-04-24', 21, '3', '2', 'malar', 'house wife', 20000.00, 1, 0.00, 20000.00, 'chennai', 'chennai', '2301150001', '', '1', 'upload_files/candidate_tracker/7473419570_Prakash Resume.pdf', NULL, '1', '2023-01-16', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-15 08:51:41', 1, '2023-01-15 08:58:05', 0, NULL, 1),
(11771, 'Arshiya Rizwana', '20', '8939785236', '9884842143', 'arshiyarizwana@yahoo.com', '1991-07-23', 31, '2', '1', 'Fahad hussain', 'Interiors', 40000.00, 1, 0.00, 25000.00, 'Royapettah', 'Royapettah', '2301160001', '1', '2', 'upload_files/candidate_tracker/28481467662_arshiya resume.docx', NULL, '1', '2023-01-18', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-16 12:53:13', 85, '2023-01-18 09:36:27', 0, NULL, 1),
(11772, '', '0', '9789644624', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301160002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-16 08:39:48', 0, NULL, 0, NULL, 1),
(11773, 'vignesh n', '13', '9176367987', '', 'vv917636@gmail.com', '1998-05-29', 24, '4', '2', 'Narayanan', 'rtd officer', 20000.00, 2, 25000.00, 35000.00, 'chennai', 'chennai', '2301170001', '', '2', 'upload_files/candidate_tracker/12464199495_RESUME_VIKI.pdf', NULL, '1', '2023-01-17', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too long Distance Fresher for Python have Exp in PHP but not open for the same,Attitude Salary exp is high 60 Days notice not suitable will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-17 10:30:36', 1, '2023-01-17 10:41:02', 0, NULL, 1),
(11774, 'Malarvizhi', '23', '9940648297', '9994024583', 'manikandanwon@gmail.com', '1990-03-07', 32, '3', '1', 'Manikandan', 'Software engineer', 50.00, 1, 0.00, 10.00, 'Shanthi Nagar, Ramapuram', 'Shanthi Nagar, Ramapuram', '2301170002', '', '1', 'upload_files/candidate_tracker/1639547981_MalarCV.pdf', NULL, '1', '2023-01-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT have Exp in teaching field long Career Gap due to marriage,no basics need to train from the beginning,Husband is into IT and high earnings will not sustain and not suitable\n', '2', '1', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-17 02:33:04', 1, '2023-01-17 02:41:17', 0, NULL, 1),
(11775, 'Balasubramani R', '14', '8610264248', '', 'balaaero4693@gmail.com', '1993-07-04', 29, '2', '2', 'Rajagopal', 'Retired police officer', 30000.00, 1, 0.00, 5000.00, 'Karur', 'Karur', '2301170003', '1', '1', 'upload_files/candidate_tracker/16953648854_Bala 1.pdf', NULL, '1', '2023-01-18', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for IT have Exp in core Not much open for TxxampC if he comes back let us try ', '2', '1', '', '1', '1', '', '2', '2023-01-20', '1', '2', '', '', 'H1014', '', NULL, NULL, NULL, 1, '2023-01-17 06:20:38', 85, '2023-01-18 09:36:42', 0, NULL, 1),
(11776, '', '0', '8147257154', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301180001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-18 10:10:38', 0, NULL, 0, NULL, 1),
(11777, 'Badhri Nath', '6', '8610324291', '9944417881', 'www.badhrinath04092000@gmail.com', '2000-09-04', 22, '1', '2', 'Koteeswaran', 'Cloth business', 120000.00, 1, 13000.00, 16000.00, 'Vellore', 'Vellore', '2301180002', '', '2', 'upload_files/candidate_tracker/29325587608_BADHRINATH-1.pdf', NULL, '1', '2023-01-18', 0, 'P1370', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '50-50 Profile ...internal ref.. has some exp in collection .. long distance.. can be trained.. have sustainability doubts.. let you check and update your inputs..', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-18 11:10:20', 85, '2023-01-18 05:08:06', 0, NULL, 1),
(11778, 'Hariharan A', '13', '6381117205', '', 'harimanachai77@gmail.com', '2002-05-16', 20, '3', '1', 'Sp.Ananthan', 'Farmer', 10000.00, 1, 0.00, 20000.00, 'Karaikudi', 'Karaikudi', '2301180003', '', '1', 'upload_files/candidate_tracker/95832222671_Hariharan_A_Resume_15-12-2022-07-36-50.pdf', NULL, '1', '2023-01-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-18 11:28:47', 1, '2023-01-18 11:36:22', 0, NULL, 1),
(11779, 'tharun raj y', '23', '8428897599', '', 'tharunyuvarajan28@gmail.com', '2001-07-28', 21, '3', '2', 'm g yuvaraj', 'supervisor', 350000.00, 1, 0.00, 350000.00, 'chennai', 'chennai', '2301180004', '', '1', 'upload_files/candidate_tracker/39658897898_Resumeac.pdf', NULL, '2', '2023-12-26', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-18 12:30:48', 104, '2023-12-26 01:06:27', 0, NULL, 1),
(11780, 'RajaRajeswari A', '4', '6380082818', '9840110577', 'rajarajeswari1013@gmail.com', '2001-12-10', 21, '2', '2', 'Anandan', 'Driver', 30000.00, 2, 15000.00, 20000.00, 'No.55,5th Street north Jaganathan Nagar Villivakam', 'No.55,5th Street north Jaganathan Nagar Villivakam', '2301180005', '1', '2', 'upload_files/candidate_tracker/14744801055_RajaRajeswari Anandan.pdf', NULL, '1', '2023-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Sustainability 4 months 2 companies travelled this is the 3rd one salary Exp is very high than her exp will not sustain and not suitable\n', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-18 12:37:25', 85, '2023-01-18 12:59:09', 0, NULL, 1),
(11781, 'Karthik S', '4', '9080887676', '', 'karthiksrinaga26@gmail.com', '1998-10-26', 24, '2', '2', 'Srinivasan R', 'Chef', 37000.00, 2, 0.00, 27000.00, 'Chennai', 'Vadapalani', '2301180006', '1', '1', 'upload_files/candidate_tracker/71815365087_CV_2023011717035764.pdf', NULL, '1', '2023-01-18', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our Domain have 6 months Exp as ground staff,looking for IT but no basic skill knowledge checked for Telecalling but not open for that Salary Exp is very high for all the profiles will not sustain', '1', '1', '', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-18 01:02:00', 85, '2023-01-18 01:14:26', 0, NULL, 1),
(11782, 'Vences Laus F', '5', '9150122154', '', 'ernestovences96@gmail.com', '1996-04-06', 26, '2', '2', 'Felix and Malar', 'Fishing', 15000.00, 2, 18000.00, 23000.00, 'Karankadu, Ramanathapuram', 'Choolaimedu, Chennai', '2301180007', '1', '2', 'upload_files/candidate_tracker/13674312330_vences resume updated.pdf', NULL, '1', '2023-01-19', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '3', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-18 01:22:04', 85, '2023-01-18 06:27:21', 0, NULL, 1),
(11783, 'Vishwajith K R', '2', '8300728274', '9080729039', 'vishwakr1998@gmail.com', '1998-01-08', 25, '2', '2', 'Krishnan C', 'Driver', 3000.00, 1, 0.00, 15000.00, 'Kanniyakumari', 'Chennai', '2301180008', '1', '1', 'upload_files/candidate_tracker/43897541672_vishwajith (1).pdf', NULL, '1', '2023-01-19', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC,Fresher for IT Min Salary Exp is very high as his freinds are into same React with pay around 20K will not sustain in our roles', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-18 03:29:00', 85, '2023-01-20 09:45:49', 0, NULL, 1),
(11784, 'Vijay Kumar r', '4', '8148115351', '', 'Vijaykumar041@gmail.com', '1998-11-06', 24, '2', '1', 'Chv Raghu', 'Business', 200000.00, 1, 15000.00, 20000.00, 'Chennai', 'Chennai', '2301190001', '1', '2', 'upload_files/candidate_tracker/31362747394_vijay Updated resume.pdf', NULL, '1', '2023-01-19', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average Have Exp in Calling for Loan Collections 5050 Can give a try for our sales but left without Attending the interview 2nd round', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-19 11:02:50', 85, '2023-01-20 09:46:07', 0, NULL, 1),
(11785, '', '0', '8148115353', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301190002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-19 11:09:42', 0, NULL, 0, NULL, 1),
(11786, 'Gopalakrishnan', '4', '6384988351', '', 'kgopal66@gmail.com', '1994-01-14', 29, '2', '2', 'Mangdran', 'Drive', 20000.00, 1, 0.00, 12000.00, 'Pattukkottai', 'Pattukkittai', '2301190003', '1', '1', 'upload_files/candidate_tracker/63883742926__Resume.pdf', NULL, '1', '2023-01-19', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not fit for team non profile domin also not suite mechanical field only expected field', '1', '2', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-19 11:46:42', 85, '2023-01-20 09:46:21', 0, NULL, 1),
(11787, 'Vijay v', '31', '6383364769', '', 'viratvijay2401@gmail.com', '2000-01-24', 22, '3', '2', 'Venkatesh', 'Farmer', 25000.00, 2, 0.00, 10000.00, 'Chennai', 'Velachery', '2301190004', '', '1', 'upload_files/candidate_tracker/59119273070_vijay.v 2 (2) (2).doc', NULL, '1', '2023-01-20', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-19 01:28:45', 1, '2023-01-19 01:32:56', 0, NULL, 1),
(11788, 'Mahalakshmi Murugesan', '31', '7338917520', '', 'mahalakshmimurugesan493@gmail.com', '2002-05-19', 20, '2', '2', 'N.Murugesan', 'Steel polished (daily wages)', 8000.00, 1, 0.00, 200000.00, 'Chennai', 'Chennai', '2301190005', '1', '1', 'upload_files/candidate_tracker/3190371140_Resume.pdf', NULL, '1', '2023-01-20', 0, '', '3', '59', '2023-01-25', 120000.00, '', '', '1970-01-01', '2', '7 days analysis then 5 month 5K and 3yrs 10-12K SA final round interviewed by Gokul', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-19 07:01:55', 85, '2023-01-20 09:48:52', 0, NULL, 1),
(11789, '', '0', '9150264357', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301190006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-19 11:05:59', 0, NULL, 0, NULL, 1),
(11790, '', '0', '8122107509', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301200001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-20 06:04:22', 0, NULL, 0, NULL, 1),
(11791, 'Karmugilan P', '13', '6385390781', '', 'karmugilanp611@gmail.com', '2001-05-10', 21, '3', '2', 'Palanivel', 'Daily wages', 10500.00, 2, 0.00, 18000.00, 'Cuddalore', 'Chennai', '2301200002', '', '1', 'upload_files/candidate_tracker/58626547462_Karmugilan P.docx', NULL, '1', '2023-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-20 06:06:23', 1, '2023-01-20 06:14:18', 0, NULL, 1),
(11792, 'Amjath Abdul Sadhar', '23', '7667911901', '8667515441', 'amjathabdul970@gmail.com', '1997-06-03', 25, '4', '2', 'Shahul Hameed', 'Cooking master', 20000.00, 2, 0.00, 20000.00, 'Tirunelveli', 'Tirunelveli', '2301200003', '', '1', 'upload_files/candidate_tracker/25165223581_AmjResume.pdf', NULL, '3', '2023-01-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-20 06:31:37', 1, '2023-01-20 06:37:10', 0, NULL, 1),
(11793, '', '0', '7871991111', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301200004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-20 06:33:10', 0, NULL, 0, NULL, 1),
(11794, 'dheepakraaj r', '13', '9360737038', '', 'rdheepakraaj123@gmail.com', '2001-07-28', 21, '2', '2', 'ramesh', 'civil supervisor', 25000.00, 0, 0.00, 30000.00, 'chennai', 'chennai', '2301200005', '21', '1', 'upload_files/candidate_tracker/67906531181_Dheepak\'s Resume.pdf', NULL, '1', '2023-01-23', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-20 06:45:03', 1, '2023-01-22 07:32:38', 0, NULL, 1),
(11795, '', '0', '6381903104', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301200006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-20 08:17:51', 0, NULL, 0, NULL, 1),
(11796, 'Durga shankar Mohanty', '13', '7970034740', '', 'dsmdurga00@gmail.com', '2000-04-14', 22, '3', '2', 'Saraswati Mohanty', 'House maker', 4500.00, 5, 0.00, 300000.00, 'Korba Chhattisgarh', 'Chennai', '2301210001', '', '1', 'upload_files/candidate_tracker/64601650436_Durga shankar Resume.pdf', NULL, '2', '2023-01-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-21 12:57:18', 1, '2023-01-21 01:01:57', 0, NULL, 1),
(11797, 'Hariprasath K', '23', '9750728039', '', 'Hariprasath2912@gmail.com', '1999-12-29', 23, '2', '2', 'M.Krishnasamy', 'Labour', 95000.00, 2, 0.00, 15000.00, 'Salem', 'Salem', '2301220001', '1', '1', 'upload_files/candidate_tracker/49514563496_hp resume.docx', NULL, '1', '2023-01-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have 6 months Exp in Angular not much comfort in TxxampC seems to be slow Sustainability doubts not suitable \n', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-22 08:54:55', 85, '2023-01-23 04:42:04', 0, NULL, 1),
(11798, 'R. KABILAN', '6', '9087799882', '', 'KabiPriya100@gmail.com', '2000-08-07', 22, '2', '2', 'V. RAVI', 'Former', 20000.00, 1, 18000.00, 23000.00, 'Kallakurichi', 'Thambaram, chennai', '2301230001', '1', '2', 'upload_files/candidate_tracker/29315079415_KABILAN RESUME 2 (1).pdf', NULL, '1', '2023-01-23', 20, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-23 11:24:12', 85, '2023-01-23 03:23:29', 0, NULL, 1),
(11799, 'anusha s', '14', '9360002174', '', 'anushasugumar2001@gmail.com', '2001-06-19', 21, '3', '2', 'sugumar t', 'provisional store', 12000.00, 1, 0.00, 350000.00, 'Chennai', 'Chennai', '2301230002', '', '1', 'upload_files/candidate_tracker/42385525829_Anusha_S_CV_.docx', NULL, '2', '2023-01-30', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-23 11:54:08', 1, '2023-01-23 12:08:41', 0, NULL, 1),
(11800, 'David s', '6', '8300843807', '7418013267', 'aerod85@gmail.com', '1996-11-07', 26, '2', '2', 'S chithra', 'House wife', 15000.00, 6, 0.00, 15000.00, '5/76, karaikalam, Poyyamani, kulithalai, karur(dt)', '40/9b,ranganathapuram, Tambaram', '2301230003', '2', '1', 'upload_files/candidate_tracker/86447890326_david resume new 2023.pdf', NULL, '1', '2023-01-23', 0, '', '1', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-23 12:02:32', 85, '2023-01-23 03:21:38', 0, NULL, 1),
(11801, 'creek marshall dhanapal', '11', '8667499623', '9940643999', 'marshyrx@gmail.com', '2000-08-23', 22, '1', '2', 'prabaakaran', 'ashok leyland', 50000.00, 1, 15000.00, 20000.00, 'perambur', 'perambur', '2301230004', '', '2', 'upload_files/candidate_tracker/50879967793_Maharaja Resume (4).docx', NULL, '1', '2023-01-23', 0, '2301230004', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '6', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-23 12:10:00', 1, '2023-01-23 12:33:51', 0, NULL, 1),
(11802, 'Balaji.s', '5', '9952410663', '6379793007', 'Balajibala2119@gmail.com', '1995-01-21', 28, '3', '2', 'R. Srinivasan', 'Register office', 35000.00, 1, 0.00, 18000.00, 'Trichy', 'Cromepet', '2301230005', '', '2', 'upload_files/candidate_tracker/64751753935_BALAJI RESUME 1.pdf', NULL, '1', '2023-01-23', 0, '', '5', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not fit for sales', '5', '1', '', '1', '1', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-23 02:30:30', 60, '2023-01-23 06:55:58', 0, NULL, 1),
(11803, 'Aswin E', '31', '9444378001', '9087386065', 'aswin9277@gmail.com', '1999-01-09', 24, '2', '2', 'S.E.Edwin Sam', 'Ex-servicemen', 25000.00, 1, 0.00, 30000.00, 'Nagercoil', 'Annanager, chennai', '2301230006', '1', '1', 'upload_files/candidate_tracker/39238699391_ASWIN RESUME 1.pdf', NULL, '1', '2023-01-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no basics looking only for the salary growth will not sustain in a long run not much comfort in TxxampC not suitable', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-23 04:16:37', 85, '2023-01-24 05:40:11', 0, NULL, 1),
(11804, 'BOMMU SURENDAR S', '31', '9952473793', '', 'surendarms1999@gmail.com', '1999-09-27', 23, '3', '2', 'SRINIVASAN', 'Weaver', 300000.00, 1, 0.00, 17000.00, 'Salem', 'Chennai', '2301230007', '', '1', 'upload_files/candidate_tracker/69803556489_White Simple Student Cv Resume (5).pdf', NULL, '1', '2023-01-24', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-23 09:35:23', 1, '2023-01-24 02:42:41', 0, NULL, 1),
(11805, 'Prasanth p', '4', '9840337132', '', 'prasanthrockca66@gmail.com', '2002-03-07', 20, '1', '2', 'Pushparaj k', 'Tinkerer', 20000.00, 1, 0.00, 16000.00, 'Mylapore Chennai', 'Mylapore', '2301240001', '', '1', 'upload_files/candidate_tracker/26200617725_50036_prasanthresume..docx', NULL, '1', '2023-01-24', 0, 'P1394', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No communication Sustainability and pressure handling doubts in our roles Not suitable\n', '1', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-24 10:00:46', 1, '2023-01-24 10:04:32', 0, NULL, 1),
(11806, 'Raghul V', '11', '8939215172', '9962830763', 'Raghulraghav2000@gmail.com', '2000-11-23', 22, '3', '2', 'Veera Ragavan', 'Part of big organization', 45000.00, 1, 15000.00, 15000.00, 'Tondiarpet, Chennai', 'Tondiarpet, Chennai', '2301240002', '', '2', 'upload_files/candidate_tracker/47840095636_Raghul New Resume (2).docx', NULL, '1', '2023-01-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No ideas in the recruitment but worked for 6 months in recruitment,not suitable will not sustain', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-24 11:07:06', 1, '2023-01-24 11:33:10', 0, NULL, 1),
(11807, '', '0', '9884883618', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301240003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-24 11:07:09', 0, NULL, 0, NULL, 1),
(11808, 'madhan kumar', '6', '9003732996', '', 'madhanpavithra@gmail.com', '2001-04-05', 21, '2', '2', 'ramar', 'business', 30000.00, 1, 20000.00, 15000.00, 'erode', 'erode', '2301240004', '1', '2', 'upload_files/candidate_tracker/97348456423_madhan kumar resume.pdf', NULL, '1', '2023-01-25', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-24 06:21:53', 85, '2023-01-25 03:24:53', 0, NULL, 1),
(11809, 'Asmath nisha', '6', '7339375396', '9585215402', 'Abdulasmah892@gmail.com', '2002-07-10', 20, '2', '2', 'Abdul azeez.M', 'Driver', 6000.00, 1, 0.00, 15000.00, 'Thanjavur', 'Thanjavur', '2301240005', '1', '1', 'upload_files/candidate_tracker/45372302899_asmathnisha3.docx', NULL, '1', '2023-01-25', 0, '', '3', '59', '2023-01-30', 138948.00, '', '4', '2023-03-23', '1', 'Selected for Thanjavur Consultant Role', '5', '2', '1', '4', '5', '1', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-24 06:46:12', 60, '2023-01-27 07:08:26', 0, NULL, 1),
(11810, '', '0', '8825977365', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301240006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-24 09:05:47', 0, NULL, 0, NULL, 1),
(11811, 'M. Hemavathi', '29', '9941837907', '', 'hemamvathi5@gmail.com', '2001-09-14', 21, '2', '2', 'G. Mohan', 'Rks', 25000.00, 0, 25000.00, 25000.00, 'Chennai', 'Chennai', '2301240007', '24', '2', 'upload_files/candidate_tracker/38249130044_HEMA RESUME (1).pdf', NULL, '1', '2023-01-27', 28, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '3', '1', '0', '1', '3', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-24 11:12:43', 1, '2023-01-25 07:48:35', 0, NULL, 1),
(11812, '', '0', '9080870774', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301250001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-25 09:38:25', 0, NULL, 0, NULL, 1),
(11813, 'Balaji D', '31', '7871552105', '9381883469', 'balajiofficial1437@gmail.com', '2000-10-05', 22, '2', '2', 'Parent', 'Daily wages', 25000.00, 1, 0.00, 15000.00, 'Choolaipallam,m.g.r nagar , chennai', 'Choolaipallam,m.g.r nagar , chennai', '2301250002', '1', '1', 'upload_files/candidate_tracker/99278992040_pdf_20230102_070344_0000.pdf', NULL, '1', '2023-01-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basic Skills Seems to be slow and will handle our work pressure not suitable will not sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-25 09:49:05', 85, '2023-01-25 10:30:25', 0, NULL, 1),
(11814, 'Renold A', '13', '7395836125', '8778800829', 'Renoldoantony143@gmail.com', '1997-04-28', 25, '4', '2', 'Antony', 'Fisherman', 15000.00, 4, 0.00, 15000.00, 'Kanniya kumari', 'Velachery', '2301250003', '', '1', 'upload_files/candidate_tracker/76320232974_renoldo cv.pdf', NULL, '1', '2023-01-25', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open for TxxampC No basics Focusing only on the salary not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-25 12:29:30', 1, '2023-01-25 12:34:26', 0, NULL, 1),
(11815, 'Aravind S', '16', '9087380976', '', 'aravind20@gmail.com', '1984-04-15', 38, '3', '2', 'Sethuraman', 'Retired', 50000.00, 1, 13000.00, 17000.00, 'Trichy', 'Chennai', '2301250004', '', '2', 'upload_files/candidate_tracker/77056663808_Resume.docx', NULL, '1', '2023-01-25', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication Frequent job changes aged not suitable for our roles will not sustain and handle our work roles', '3', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-25 01:36:07', 1, '2023-01-25 02:14:08', 0, NULL, 1),
(11816, '', '0', '9344910737', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301250005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-25 03:09:09', 0, NULL, 0, NULL, 1),
(11817, 'A. Hassan Mubarak', '6', '9500367342', '8870964355', 'hassanmubarak2002@gmail.com', '2002-12-09', 20, '2', '2', 'M. Abdul Rahman', 'Dubai', 30000.00, 1, 0.00, 20000.00, 'No1 Anna nager 10th street Vallam Thanjavur', 'Vallam', '2301250006', '1', '1', 'upload_files/candidate_tracker/46656788890_hassan mubarak resume.docx', NULL, '1', '2023-01-27', 0, '', '3', '59', '2023-02-03', 156000.00, '', '4', '2023-05-06', '1', 'Selected for Thanjavur Consultant role', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-25 06:07:51', 60, '2023-02-01 07:20:15', 0, NULL, 1),
(11818, 'Powlina', '20', '8838301226', '', 'Pwlnramya@gmail.com', '1997-06-10', 25, '2', '2', 'Muralikumar', 'Welder', 40000.00, 1, 17000.00, 23000.00, 'Chennai', 'Chennai', '2301270001', '1', '2', 'upload_files/candidate_tracker/47786283216_Resume Powlina M-2.pdf', NULL, '1', '2023-01-27', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in Customer Support Backend Can be trained for our roles,need to conduct the final round with Gokul ', '5', '1', '', '1', '8', '', '2', '2023-01-28', '1', '7', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-01-27 10:24:48', 60, '2023-01-27 10:38:01', 0, NULL, 1),
(11819, 'Akshay EK', '6', '7449088019', '', 'akshay18a145@gmail.com', '2001-05-17', 21, '1', '2', 'Hari E', 'Clerk', 11000.00, 0, 0.00, 16000.00, 'Chennai', 'Chennai', '2301270002', '', '1', 'upload_files/candidate_tracker/69873923947_AKSHAY .E.K ( Resume).docx', NULL, '1', '2023-01-27', 0, 'P1394', '5', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'FIELD NOT INTERESTED', '5', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-27 12:13:20', 85, '2023-01-27 04:49:01', 0, NULL, 1),
(11820, 'V M Deepak Kumar', '6', '9444356367', '', 'Kdeepak00974@gmail.com', '2001-02-24', 21, '1', '2', 'V. Manickam', 'Business', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2301270003', '', '1', 'upload_files/candidate_tracker/56159260066_V M Deepak Kumar _January13-035014PM.pdf', NULL, '1', '2023-01-27', 0, '', '5', '57', NULL, 0.00, '', '0', NULL, '1', 'already have offer another company , fresher exp 16k', '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-27 12:14:44', 1, '2023-01-27 12:30:44', 0, NULL, 1),
(11821, '', '0', '7358355362', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301270004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-27 05:54:10', 0, NULL, 0, NULL, 1),
(11822, 'kishore', '6', '9360879393', '', 'kishorerenu17@gmail.com', '2002-04-17', 20, '2', '2', 'renugopal', 'farmer', 12000.00, 1, 0.00, 12000.00, 'chennai', 'chennai', '2301280001', '2', '1', 'upload_files/candidate_tracker/67751107536_Kishore20new.docx', NULL, '1', '2023-01-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Discussed And Suggested The Salary Breakup And he Not Ready and Looking For High Salary', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-28 09:18:58', 60, '2023-01-30 03:05:27', 0, NULL, 1),
(11823, 'Swetha V', '4', '7010091216', '8072758617', 'swethavijayan98@gmail.com', '1998-11-10', 24, '2', '1', 'S.Johnson', 'Electrical & plumbing', 30000.00, 1, 15000.00, 15000.00, 'Thanjavur', 'Thanjavur', '2301280002', '1', '2', 'upload_files/candidate_tracker/98666129579_Resume_15_03_2022_02_17_05_PM (1).pdf', NULL, '1', '2023-01-28', 0, '', '4', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for our roles sustainability doubts in a long Communication ok 5050 Kindly check and let me know your ijnputs', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-28 10:26:15', 60, '2023-01-30 03:44:22', 0, NULL, 1),
(11824, 'Mohamed Wajid', '13', '7708750358', '9600430175', 'mmdwajid@gmail.com', '1995-04-02', 27, '3', '2', 'Mohamed Muneer', 'Rtd Govt officer', 10000.00, 3, 0.00, 20000.00, 'Chennai', 'Bengaluru', '2301280003', '', '1', 'upload_files/candidate_tracker/88380419205_MOHAMED WAJID .docx', NULL, '1', '2023-01-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT,Lot of Previous Exp in Calling but no sustainability,Looking out for bangalore will not sustain for a long in Chennai Not suitable', '2', '1', '0', '2', '2', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-28 11:06:07', 1, '2023-01-28 11:09:59', 0, NULL, 1),
(11825, '', '0', '8889990012', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2301280004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-01-28 03:40:57', 0, NULL, 0, NULL, 1),
(11826, 'Praveen Kumar', '5', '8122383938', '', 'praveenramesh33@gmail.com', '1999-12-01', 23, '2', '2', 'Latha', 'Export company', 30000.00, 0, 23000.00, 26000.00, 'Chennai', 'Chennai', '2301280005', '1', '2', 'upload_files/candidate_tracker/88246882498_praveen resume.docx', NULL, '1', '2023-01-30', 15, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-28 05:16:20', 85, '2023-01-31 02:45:59', 0, NULL, 1),
(11827, 'Swetha', '11', '9025662943', '8637640190', 'Swethashankar3012@email.com', '1998-12-30', 24, '2', '1', 'Shankar', 'Vekateshvara enterprises', 20000.00, 0, 15000.00, 25000.00, 'Chennai', 'Chennai', '2301290001', '1', '2', 'upload_files/candidate_tracker/42476150577_SWETHA S RESUME.pdf', NULL, '3', '2023-01-30', 10, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '6', '1', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-29 07:01:22', 85, '2023-01-31 02:46:12', 0, NULL, 1),
(11828, 'R.Bhavitha', '14', '9384148239', '9080745760', 'bhavithar165@gmail.com', '2001-03-17', 21, '3', '2', 'R.Ganga Prasad Reddy', 'Employee', 35000.00, 1, 0.00, 45000.00, 'Chennai', 'Chennai', '2301300001', '', '1', 'upload_files/candidate_tracker/30835513813_R.Bhavitha_Resume.pdf', NULL, '1', '2023-01-30', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to complete her graduation final semester Holding several offers with good pay will not sustain and not suitable for our positions', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-30 12:10:53', 1, '2023-01-30 12:19:26', 0, NULL, 1),
(11829, 'PAVITHRA.M', '4', '8778514655', '7358006435', 'PaviPavithra5793@gmail.com', '2008-01-30', 0, '2', '2', 'Velakanni .m', 'Cooli', 8000.00, 2, 13000.00, 14000.00, 'Vyasarpadi', 'Vyasarpadi', '2301300002', '1', '2', 'upload_files/candidate_tracker/5895091191_pavithra30thjan.pdf', NULL, '3', '2023-01-30', 0, '', '4', '53', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have a few months exp in calling sustainability doubts on the profile family need is there Can give a try kindly check and let me know your inputs', '1', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-30 12:53:20', 85, '2023-01-31 04:38:03', 0, NULL, 1),
(11830, 'Richard diwakar E', '5', '9092388124', '7358505838', 'Richarddiwakare@gmail.com', '1996-11-18', 26, '3', '2', 'ebenezer', 'security', 20000.00, 1, 25000.00, 28000.00, 'henna', 'chennai', '2301300003', '', '2', 'upload_files/candidate_tracker/73816980817_richard resume June 21.docx', NULL, '1', '2023-01-30', 0, '', '3', '59', '2023-02-06', 345696.00, '', '7', '1970-01-01', '1', 'Selected for Sarath Team with PF/PT', '5', '1', '4', '1', '1', '1', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-01-30 02:32:49', 60, '2023-02-01 07:18:02', 0, NULL, 1),
(11831, 'Sowmiya', '11', '7550271615', '8925291613', 'abisowmiya98@gmail.com', '1998-06-16', 24, '2', '2', 'Sekar', 'Self employee', 20000.00, 1, 0.00, 25000.00, 'Mogiappar East', 'Mogiappar East', '2301300004', '1', '2', 'upload_files/candidate_tracker/85941398060_sowmiya+resume+(2).pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 10 months Exp in IT Recruitment and looking for 23K CTC holding an offer for 20K,looking for a salary hike will not join and not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-30 02:41:45', 85, '2023-02-01 02:53:32', 0, NULL, 1),
(11832, 'Mohamed Ibrahim. A', '31', '7845422016', '9360174646', 'Mohamedibm2016@gmail', '2000-03-31', 22, '2', '2', 'Anwar khan', 'Driver', 8000.00, 2, 0.00, 30000.00, 'Thanjavur', 'Chennai', '2301300005', '1', '1', 'upload_files/candidate_tracker/2439369954_Mohamed Ibrahim.pdf', NULL, '1', '2023-01-31', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Technical Round Rejected by Kaviya Fresher seems to be slow not suitable\n', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-30 06:54:27', 85, '2023-01-31 10:08:04', 0, NULL, 1),
(11833, 'MOHAMMED HUSSAIN', '16', '9345043403', '9003143583', 'askarajju105@gmail.com', '1999-03-23', 23, '2', '2', 'Mohamed Habibullah ( father )', 'Waiter', 12000.00, 1, 13000.00, 16000.00, 'Old washermenpet chennai 21', 'Old washermenpet chennai 21', '2301310001', '1', '2', 'upload_files/candidate_tracker/52197178029_New Updated resume.docx', NULL, '1', '2023-01-31', 0, '', '3', '59', '2023-02-01', 200100.00, '', '', '1970-01-01', '2', 'Selected for MIS Role by Gokul final round have 8 months exp in customer support then career Gap Salary Exp is min 15-16K TH,candidate didnt give his confirmation for joining', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-31 09:51:39', 85, '2023-01-31 10:07:53', 0, NULL, 1),
(11834, 'geetha', '4', '9176403622', '', 'skgeethu19@gmail.com', '1992-11-01', 30, '2', '1', 'baskar', 'business', 25000.00, 3, 18000.00, 18000.00, 'chennai', 'chennai', '2301310002', '2', '2', 'upload_files/candidate_tracker/38861390198_Geetha Resume.pdf', NULL, '1', '2023-01-31', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have a long career Gap 5050 Interviewed by Banu in 2nd round Need to check for MF B2B too\n', '1', '2', '0', '1', '8', '0', '2', '2023-02-06', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-01-31 10:51:13', 1, '2023-01-31 11:01:00', 0, NULL, 1),
(11835, 'B Tamizharasu', '6', '9789556422', '9965626422', 'rbtamizh@gmail.com', '1997-07-31', 25, '2', '2', 'Balan', 'Driver', 30000.00, 1, 22000.00, 18000.00, 'Namakkal', 'Namakkal', '2301310003', '1', '2', 'upload_files/candidate_tracker/82081582724_tamizh 2023 res.pdf', NULL, '1', '2023-02-01', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Rejected', '5', '1', '', '4', '7', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-31 10:51:35', 85, '2023-02-01 02:54:31', 0, NULL, 1),
(11836, 'Israth yasmin.K', '4', '6385924076', '6385924071', '18co2256@gmail.com', '2001-04-03', 21, '2', '2', 'Khather khan.R', 'None', 10000.00, 1, 12000.00, 15000.00, '11A Akilangarai street Vallam, Thanjavur', 'Vallam ,Thanjavur', '2301310004', '1', '2', 'upload_files/candidate_tracker/22746176395_pdf.pdf', NULL, '1', '2023-02-01', 20, '', '3', '59', '2023-02-06', 156000.00, '', '5', '1970-01-01', '2', 'Selected for Thanjavur - Consultant Role', '1', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-31 11:58:29', 60, '2023-02-04 03:36:35', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11837, 'Harish', '4', '8124437021', '', 'harishjustin3@gmail.com', '2001-11-07', 21, '2', '2', 'S Tamil Selvan', 'Typewriting Services', 10000.00, 1, 0.00, 14000.00, 'Saidapet', 'Saidapet', '2301310005', '1', '1', 'upload_files/candidate_tracker/53028595960_Harish.pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Preparing For Polica Exams And Time Being Looking For A Job Will Not Sustain And Not Suitable', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-01-31 01:09:02', 85, '2023-02-01 02:56:35', 0, NULL, 1),
(11838, 'karan', '4', '9498020674', '', 'karanvenkatb1539@gmail.com', '2002-02-01', 21, '2', '2', 'baskar', 'sub inspector', 40000.00, 2, 0.00, 14000.00, 'saidapet', 'saidapet', '2301310006', '1', '1', 'upload_files/candidate_tracker/17049246471_B.V.KARAN VENKAT(1) (1).pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Preparing For Polica Exams And Time Being Looking For A Job Will Not Sustain And Not Suitable', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-01-31 01:19:32', 1, '2023-02-01 12:06:04', 0, NULL, 1),
(11839, 'varshini', '5', '7550015244', '', 'vpughaelendhi@g.mail.com', '2000-06-07', 22, '2', '2', 'pughalendhi', 'late', 20000.00, 1, 210000.00, 25000.00, 'chennai', 'chennai', '2301310007', '1', '2', 'upload_files/candidate_tracker/90493510300_varshini .pdf', NULL, '1', '2023-02-04', 30, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to schedule for a virtual round have exp in telecalling credit card Sales Need to check with Karthika for ESales 30 days notice', '5', '1', '0', '1', '8', '0', '2', '2023-02-06', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-01-31 03:30:20', 1, '2023-02-04 11:03:23', 0, NULL, 1),
(11840, 'Arif mohamed', '26', '9940027900', '', 'josepharif379@gmail.com', '2001-02-20', 21, '2', '2', 'Khader fizal', 'Working', 20000.00, 2, 25000.00, 27000.00, 'Chennai', 'Chennai', '2302010001', '1', '2', 'upload_files/candidate_tracker/38281668652_CV_2023013119300250.pdf', NULL, '1', '2023-02-01', 0, '', '3', '59', '2023-02-09', 240000.00, '', '', '2023-02-14', '1', 'Selected for MIS Life Renewal in Staff Role', '3', '1', '1', '1', '8', '', '2', '2023-02-03', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 07:45:15', 60, '2023-02-08 12:39:41', 0, NULL, 1),
(11841, 'G.Richards', '16', '7299231481', '', 'richardsgodson1998@gmail.com', '1998-05-29', 24, '2', '2', 'D.George', 'Driver', 20000.00, 1, 10000.00, 15000.00, 'Chennai,Mylapore', 'Chennai,Mylapore', '2302010002', '1', '2', 'upload_files/candidate_tracker/96887179215_Richards Resume New.docx', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Average Communication Lack of interest towards the work Long Career gap focus only on the salary will not sustain and not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '4', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 10:30:28', 85, '2023-02-01 02:58:40', 0, NULL, 1),
(11842, 'G. Iwin Franklin', '16', '9080345662', '', 'iwinfranklin@gmail.com', '1996-11-07', 26, '2', '2', 'D. George', 'Driver', 20000.00, 1, 13500.00, 20000.00, 'Chennai', 'Chennai', '2302010003', '1', '2', 'upload_files/candidate_tracker/5599597387_Iwin Franklin Resume_edited.pdf', NULL, '1', '2023-02-01', 10, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication was not clear Long Career Gap not much active will not sustain and handle our pressure not suitable', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 10:33:06', 85, '2023-02-01 02:59:43', 0, NULL, 1),
(11843, 'Ahalya', '13', '8300447131', '', 'ahalyakaran6@gmail.com', '2001-09-15', 21, '2', '2', 'Manoharan.v', 'Farmer', 100000.00, 2, 12000.00, 20000.00, '1/15,North Street, thirunattiyathangud ,thiruvarur', 'Chrompet chennai', '2302010004', '1', '2', 'upload_files/candidate_tracker/10006209061_AHALYA (7).pdf', NULL, '1', '2023-02-01', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 months Exp in PHP but not much comfort in TxxampC Asked for a time to confirm but left without informing will not sustain', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 11:17:17', 85, '2023-02-01 03:00:20', 0, NULL, 1),
(11844, 'Mahalakshmi Madhan', '4', '7845393362', '8667071362', 'Mahalakshmimadhan.2000@gmail.com', '2000-01-07', 23, '3', '2', 'Parent', 'Telecalling', 20.00, 1, 16.50, 19.00, 'Avadi', 'Avadi', '2302010005', '', '2', 'upload_files/candidate_tracker/43143845904_1664555858973_Maha Resume papa.docx', NULL, '1', '2023-02-01', 30, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Star Health but too long distance need to have a background verification Caniddate need to come back wiht her confirmation', '1', '1', '0', '1', '8', '0', '2', '2023-02-06', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-01 12:12:38', 1, '2023-02-01 12:31:09', 0, NULL, 1),
(11845, 'Deepika.N', '4', '9150448628', '9952929257', 'deeps@gmail.com', '2002-06-04', 20, '3', '2', 'Nagaraj.M', 'Driver', 35.00, 1, 16500.00, 18.00, 'Washermanpet', 'Washermanpet', '2302010006', '', '2', 'upload_files/candidate_tracker/50311727660_Deepika N.pdf', NULL, '1', '2023-02-01', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Calling Too long Distance need to check her previous exp Candidate need to come back with her confirmation', '1', '1', '0', '1', '8', '0', '2', '2023-02-06', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-01 12:15:54', 1, '2023-02-01 12:50:42', 0, NULL, 1),
(11846, 'Abinaya. K', '4', '7806922426', '', 'abinayakamaraj17@gmail', '1999-12-17', 23, '2', '2', 'Kamaraj. A', 'Farmer', 36000.00, 4, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2302010007', '1', '1', 'upload_files/candidate_tracker/83823222972_RESUME ABINAYA.K.pdf', NULL, '1', '2023-02-01', 0, '', '5', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'she is not ok with the profile not suit for team and sustainability issue also', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 01:23:28', 85, '2023-02-01 03:02:17', 0, NULL, 1),
(11847, 'mohan', '4', '7305559825', '', 'mohanchana795@gmail.com', '2002-10-04', 20, '2', '2', 'vasu', 'fruit shop', 30000.00, 1, 14000.00, 18000.00, 'Chennai', 'Chennai', '2302010008', '1', '2', 'upload_files/candidate_tracker/80205052361_MOHAN NEW RESUME DEC - 2023_pdf.pdf', NULL, '1', '2023-02-01', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Have telecalling Exp in Collection process Scheduled them for F2F in Tnagar but they didnt turn Need to check and confirm once.', '1', '1', '0', '1', '8', '0', '2', '2023-02-06', '3', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-01 02:05:20', 1, '2023-02-01 02:44:57', 0, NULL, 1),
(11848, 'Saravanan', '4', '9384673589', '', 'Saravanan18340@gmail.com', '1999-02-05', 23, '2', '2', 'No', 'Diploma in computer science', 20000.00, 1, 20000.00, 20000.00, 'Saidapet', 'Saidapet', '2302010009', '1', '2', 'upload_files/candidate_tracker/35116196523_Resume new.docx', NULL, '1', '2023-02-01', 10, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Telecalling Exp In Collection Process Scheduled Them For F2F In Tnagar But They Didnt Turn Need To Check And Confirm Once.', '1', '1', '', '1', '8', '', '2', '2023-02-06', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-01 02:05:47', 85, '2023-02-01 03:02:35', 0, NULL, 1),
(11849, '', '0', '8056139623', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302010010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-01 02:31:19', 0, NULL, 0, NULL, 1),
(11850, 'K.ASARAPNISHA', '4', '9715376037', '9688714747', 'kuthbudeensaliba@gmail.com', '2000-07-10', 22, '3', '2', 'KUTHBUDEEN M', 'DRIVER', 20000.00, 2, 0.00, 12000.00, 'ORATHANADU', 'ORATHANADU', '2302020001', '', '1', 'upload_files/candidate_tracker/9491390612_2022091213.pdf', NULL, '1', '2023-02-02', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-02 09:57:27', 1, '2023-02-02 10:07:44', 0, NULL, 1),
(11851, 'A. Sivaranjini', '4', '6374633722', '', 'sivaveera98@gmail.com', '1998-06-10', 24, '3', '2', 'R. Annadurai', 'Farmer', 25000.00, 2, 0.00, 10000.00, 'Cholapuram', 'Cholapuram', '2302020002', '', '1', 'upload_files/candidate_tracker/27899151612_sivaranjani annadurai.pdf', NULL, '1', '2023-02-02', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-02 09:57:46', 1, '2023-02-02 10:08:17', 0, NULL, 1),
(11852, 'S. Sakthivel', '4', '7708055924', '', 'Shansakthi1001@gmail.com', '1993-06-06', 29, '2', '2', 'M. Shanmugam', 'Farmer', 30000.00, 2, 0.00, 20000.00, 'Krishnagiri', 'Chennai', '2302020003', '1', '2', 'upload_files/candidate_tracker/26009498315_sakthi resume 17.12.2022.docx', NULL, '1', '2023-02-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have 1 yr exp in telecalling but nor open for Targets much thinking a lot on the same will not handle our work pressure not suitable', '1', '2', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-02 10:40:42', 85, '2023-02-02 02:54:11', 0, NULL, 1),
(11853, 'Mahalakshmi. J', '31', '9500542907', '', 'Brindhajeyaseelan21@gmail.com', '1997-12-21', 25, '2', '2', 'Jeyaseelan.k', 'Farmer', 20000.00, 0, 0.00, 15000.00, 'Kovilpatti', 'Chennai', '2302020004', '1', '1', 'upload_files/candidate_tracker/22156316279_Maha-Frontend-Resume.docx', NULL, '1', '2023-02-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have basic knowledge in skills bu not much open for TxxampC Career Gap his BIL is into IT sustainability doubts a lot', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-02 11:39:18', 85, '2023-02-03 10:04:13', 0, NULL, 1),
(11854, 'Vishnusankar', '31', '7092644210', '8667235443', 'vishnusankarv9596@gmail.com', '1995-09-01', 27, '2', '2', 'Perumalsamy', 'Shopkeeper', 15000.00, 1, 0.00, 15000.00, 'Sri rengapuram ,Theni', 'Mugalivakam, Porur, Chennai', '2302020005', '1', '1', 'upload_files/candidate_tracker/16462547434_vishnu.resume.pdf', NULL, '1', '2023-02-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Basic knowledge not much open with TxxampC Need time to give his confirmation if he comes back let us try', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-02 04:09:31', 85, '2023-02-03 10:43:35', 0, NULL, 1),
(11855, 'Dhanush K', '14', '7397273437', '8124410254', 'dhanushkarunanidhi@gmail.com', '2000-11-02', 22, '2', '2', 'Karunanidhi', 'Seller', 450000.00, 1, 0.00, 15000.00, 'CHENNAI', 'CHENNAI', '2302020006', '1', '1', 'upload_files/candidate_tracker/94257596031_Dhanush\'s Resume_1674480392178_Dhanush K.pdf', NULL, '1', '2023-02-03', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Distance he feels to be long not much strong with the skills will not sustain in a long ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-02 06:02:51', 1, '2023-02-02 07:03:45', 0, NULL, 1),
(11856, 'nagaraj m', '23', '9629613024', '', 'nagarajm1504@gmail.com', '1999-04-15', 23, '2', '2', 'mariappan', 'barber', 25000.00, 1, 0.00, 25000.00, 'kovilpatti', 'medavaakam', '2302020007', '1', '1', 'upload_files/candidate_tracker/7376799365_Nagaraj_M FD.pdf', NULL, '1', '2023-02-03', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '2023-02-27', '1', 'Need to check with gokul 2nd round interviewed by Manikandan not much strong in basics can be analysed in 7 days', '2', '1', '', '1', '8', '', '2', '2023-02-08', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-02 06:08:10', 85, '2023-02-03 10:03:59', 0, NULL, 1),
(11857, 'Nivashini B', '4', '9345869265', '', 'nivashininivashini@gmail.com', '2000-09-28', 22, '3', '2', 'Balasubramaniyan', 'Farmer', 5000.00, 1, 0.00, 8000.00, 'Talakkudi', 'Thalakkudi', '2302030001', '', '1', 'upload_files/candidate_tracker/37646474853_nivasini.pdf', NULL, '1', '2023-02-03', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-03 10:20:44', 1, '2023-02-03 10:58:58', 0, NULL, 1),
(11858, 'Priya selvam', '4', '7397530307', '9865664475', 'Selvamsadhana40@gmail.com', '1992-02-10', 30, '3', '1', 'Selvam', 'Rice mill manager', 15000.00, 1, 0.00, 8000.00, 'Kondavattamthital', 'Kondavattamthital', '2302030002', '', '1', 'upload_files/candidate_tracker/17632740825_Resume by s.priya (1)(5)_1.pdf', NULL, '1', '2023-02-03', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, 'H1005', '0', NULL, NULL, NULL, 1, '2023-02-03 10:21:03', 1, '2023-02-03 10:56:46', 0, NULL, 1),
(11859, 'Amega. K', '4', '8110080680', '9751948593', 'amegakumar38@gmail.com', '2001-05-20', 21, '3', '2', 'Kumar. M', 'Farmer', 36000.00, 2, 0.00, 12000.00, 'Aymbathumelnagarm', 'Aymbathumelnagaram', '2302030003', '', '1', 'upload_files/candidate_tracker/15178158115_amega resume 2001.pdf', NULL, '1', '2023-02-03', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-03 10:24:55', 1, '2023-02-03 10:36:08', 0, NULL, 1),
(11860, 'sudharasan', '6', '8754759353', '', 'amrsudharsan89@gmail.com', '2002-09-20', 20, '2', '2', 'ravichandran', 'grocery store', 30000.00, 2, 0.00, 12000.00, 'chennai', 'chennai', '2302030004', '2', '1', 'upload_files/candidate_tracker/26059654605_sudhrasan.pdf', NULL, '1', '2023-02-03', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher need to train a lot can give a try for our Roles 5050 kindly check and let me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-03 12:20:11', 60, '2023-02-03 07:30:46', 0, NULL, 1),
(11861, 'R.Shamli kutti', '6', '9677449323', '9790322034', 'shamlikarthi03@gmail.com', '1990-11-26', 32, '2', '1', 'M.Ram Venkat Karthi', 'Supervisor', 24000.00, 2, 9.50, 11000.00, 'Erode', 'Erode', '2302040001', '1', '2', 'upload_files/candidate_tracker/15264305550_Resume -shamli.pdf', NULL, '1', '2023-02-04', 1, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'She was too scared for the target', '5', '2', '', '4', '7', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-04 10:08:10', 85, '2023-02-04 11:07:24', 0, NULL, 1),
(11862, 'Sai Ganesh', '5', '9176337525', '', 'saiganesh39@gmail.com', '1987-09-02', 35, '2', '2', 'Shri Ram', 'Retired govt employee', 2.50, 0, 0.00, 5.00, 'Chennai', 'Chennai', '2302040002', '1', '2', 'upload_files/candidate_tracker/23811087245_Resumme.pdf', NULL, '1', '2023-02-04', 0, '', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-04 10:08:47', 60, '2023-02-04 07:07:12', 0, NULL, 1),
(11863, 'SANTHOSHKUMAR P', '6', '7449287150', '', 'santhoshkumar7sks@gmail.com', '2001-05-19', 21, '3', '2', 'Palani.K & Shanthi.P', 'cooli', 40000.00, 2, 12000.00, 15000.00, 'Chennai', 'Chennai', '2302040003', '', '2', 'upload_files/candidate_tracker/31198098138_Santhosh kumar.pdf', NULL, '1', '2023-02-04', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Discussed And Suggested The Salary Breakup And They Were Not Ready Alos Looking For High Salary', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-04 11:23:10', 60, '2023-02-04 07:01:50', 0, NULL, 1),
(11864, 'arun r', '13', '8870286664', '', 'rarun2999@gmail.com', '1999-06-29', 23, '3', '2', 'amutha r', 'house wife', 15000.00, 1, 0.00, 350000.00, 'srivilliputhur', 't nagar', '2302040004', '', '1', 'upload_files/candidate_tracker/1215331101_new resume.docx', NULL, '1', '2023-02-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have 1 yr in Digital Marketing but the role played was not exactly into that lookin for IT but not open for Terms Need time to confirm with Parents if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-04 03:32:48', 1, '2023-02-04 03:37:17', 0, NULL, 1),
(11865, 'Surya e', '6', '9176358114', '9884012602', 'iamsurya199819@gmail.com', '1998-01-19', 25, '1', '2', 'Elumalai', 'Carpenter', 25000.00, 1, 13000.00, 16000.00, 'Virugambakkam', 'Virugambakkam', '2302040005', '', '2', 'upload_files/candidate_tracker/8699808939_SURIYA CV.pdf', NULL, '1', '2023-02-04', 15, '55655', '3', '59', '2023-02-06', 216000.00, '', NULL, '2025-01-06', '1', 'Selected for Kannan Team in Staff Role', '5', '1', '1', '1', '1', '', '2', '1970-01-01', '2', '3', 'Have Exp in Vizza Insurance 1.2 yrs in Health Can give a try for Health', '', '', '', NULL, NULL, NULL, 1, '2023-02-04 04:41:39', 60, '2023-02-04 07:22:43', 0, NULL, 1),
(11866, 'Bharanitharan K', '16', '8825883314', '9962510720', 'bharanitharan2468@gmail.com', '1998-08-14', 24, '4', '2', 'Lalitha K', 'Customer Service Representative', 20000.00, 1, 250000.00, 300000.00, 'Chennai', 'Chennai', '2302040006', '', '2', 'upload_files/candidate_tracker/23757510746_bharani prf resume.pdf', NULL, '2', '2023-02-06', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '3', '1', '0', '1', '3', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-04 05:03:14', 1, '2023-02-05 11:05:21', 0, NULL, 1),
(11867, '', '0', '8825883214', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302040007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-04 08:32:09', 0, NULL, 0, NULL, 1),
(11868, 'Roshini M', '6', '8668008680', '', 'mroshini2705@gmail.com', '2000-05-27', 22, '1', '2', 'Muthu', 'Driver', 15000.00, 3, 15000.00, 18000.00, 'Kumbakonam', 'Chennai', '2302060001', '', '2', 'upload_files/candidate_tracker/73767396678_CV_202302051613377.doc', NULL, '1', '2023-02-06', 15, 'P1330', '3', '59', '2023-02-10', 216000.00, '', NULL, '2024-01-19', '2', 'Selected for Babu Team in Consultant Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-06 09:34:02', 60, '2023-02-09 11:56:05', 0, NULL, 1),
(11869, 'M. Tamil arasan', '4', '8248387746', '9840761552', 'Tamilarasantamil461@gmail', '1993-06-29', 29, '2', '2', 'V. Manoharan', 'Lorry sed', 30.00, 1, 15.00, 20.00, 'Mint, chennai', 'Mint', '2302060002', '1', '2', 'upload_files/candidate_tracker/15737872823_Tamilarasan.pdf', NULL, '1', '2023-02-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No understanding no communication not open at all will not handle our pressure', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-06 01:21:39', 85, '2023-02-07 07:04:25', 0, NULL, 1),
(11870, 'Nethaji venkatraman', '6', '6382989636', '', 'Venkatnethaji@gmail.com', '1997-06-10', 25, '2', '2', 'Venkatraman', 'Cooli', 25000.00, 1, 12000.00, 15000.00, 'Vepdai', 'Vepdai', '2302060003', '1', '2', 'upload_files/candidate_tracker/30332916046_Resume_NETHAJI VENKATRAMAN_Format1.pdf', NULL, '1', '2023-02-08', 0, '', '4', '88', NULL, 0.00, '', '0', NULL, '1', 'selected for next round expt salary 15k but not worth for 15k, 13k is okay for him and also need of analysis in 7 days', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-06 01:25:20', 1, '2023-02-08 11:27:30', 0, NULL, 1),
(11871, 'THANGARAJ', '6', '9360365405', '8838912653', 'Goldkingchandru@gmail.com', '2000-12-31', 22, '1', '2', 'Ganesan', 'Private employee', 20000.00, 2, 0.00, 15000.00, 'Athipatti', 'Saidapet', '2302070001', '', '1', 'upload_files/candidate_tracker/73252565855_Thangaraj Resume_07.02.docx', NULL, '1', '2023-02-07', 0, 'P1321', '1', '89', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-07 10:44:29', 1, '2023-02-07 10:48:19', 0, NULL, 1),
(11872, 'Swapnali ashok salaskar', '16', '7796773628', '9940570367', 'swapnalizoya@gmail.com', '1993-02-22', 29, '2', '2', 'Ashwini', 'House wife', 0.00, 4, 17000.00, 22000.00, 'Maharashtra', 'Sevvapet', '2302070002', '1', '2', 'upload_files/candidate_tracker/34833912621_DOC-20230207-WA0000. (1).pdf', NULL, '1', '2023-02-07', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Too long Distance have communication but no sustainability in her prebvious Exp will not sustain not able to relocate', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-07 11:37:13', 85, '2023-02-07 04:57:07', 0, NULL, 1),
(11873, 'Mohd Azim', '16', '8667719624', '7796773628', 'Mohdazim126913@gmail.com', '1997-02-15', 25, '2', '2', 'Ghulam Rahmani', 'Arabic tutor', 10000.00, 1, 16000.00, 21000.00, 'Chennai', 'Chennai', '2302070003', '1', '2', 'upload_files/candidate_tracker/9425086212_downloadfile.PDF', NULL, '1', '2023-02-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No sustainability Local Language Average Not open for Terms and conditions will not sustain in a long', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-07 11:38:34', 85, '2023-02-07 04:58:00', 0, NULL, 1),
(11874, 'balaji', '11', '9003227423', '', '20balajis@gmail.com', '2001-02-07', 22, '2', '2', 'selvamani', 'bussiness', 20000.00, 1, 12000.00, 15000.00, 'vadapeumbakkam', 'Vadapeumbakkam', '2302070004', '1', '2', 'upload_files/candidate_tracker/8350257811_null (2).docx', NULL, '1', '2023-02-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in recruitment, no understanding and not open for terms will not sustain in our roles already we offered and he declined the same', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-07 11:43:28', 85, '2023-08-01 03:36:15', 0, NULL, 1),
(11875, 'Rekha', '6', '9677277297', '', 'Rekhasmile793@gmail.com', '1994-01-10', 29, '1', '2', 'Kannan', 'Painter', 20000.00, 1, 12000.00, 15000.00, 'No-5/6 Subra Mani Garden Main Street Perambur', 'No-5/6 Subra Mani Garden Main Street Perambur', '2302070005', '', '2', 'upload_files/candidate_tracker/9868333382_REKHA(1).pdf', NULL, '1', '2023-02-07', 0, '55574', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-07 12:27:13', 1, '2023-02-07 12:47:56', 0, NULL, 1),
(11876, 'M.Tamil Selvi', '6', '7358724227', '9150799676', 'mtamilselvi1810@gmail.com', '1994-10-18', 28, '1', '1', 'Kanaga', 'House keeping', 35000.00, 1, 15000.00, 18000.00, 'NO:5,Shanthi Nagar1st street,perambur,chennai .', 'Perambur', '2302070006', '', '2', 'upload_files/candidate_tracker/77838031696_Resume Tamilselvi-1.docx', NULL, '1', '2023-02-07', 0, '55574', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '5', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-07 12:27:54', 1, '2023-02-07 12:51:04', 0, NULL, 1),
(11877, 'Mahalakshmi G', '11', '7904702369', '', 'mahagovindh252001@gmail.com', '2001-06-25', 21, '2', '2', 'Govindhan', 'Carpenter', 1800000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2302070007', '1', '1', 'upload_files/candidate_tracker/10868902648_RESUMEE.pdf', NULL, '1', '2023-03-15', 0, '', '3', '59', '2023-03-22', 151584.00, '', '', '2023-05-22', '2', '3 months 6K then 3 months 8K then 10-15K 3yrs SA', '6', '1', '1', '1', '1', '1', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-07 10:07:37', 60, '2023-05-04 07:08:45', 0, NULL, 1),
(11878, 'Ramachandra prabhu', '6', '7299524871', '9941107094', 'dastagirbaasha067@gmail.com', '1995-10-24', 27, '4', '2', 'A.mani', 'Painter', 40000.00, 1, 18000.00, 19000.00, 'No 8 Begum Shahid makish garden 3rd Street greams', 'No 18 Rangoon Street greams road thousands lights', '2302080001', '', '2', 'upload_files/candidate_tracker/31142442675_DOC-20221109-WA0003. (1).pdf', NULL, '1', '2023-02-08', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', '5050 Need to groom a lot not sure with his sustainability but can give a try If candidate come back let us try', '5', '1', '0', '1', '8', '0', '2', '2023-02-09', '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-08 10:55:44', 1, '2023-02-08 11:08:24', 0, NULL, 1),
(11879, 'KIRTHIKA M', '28', '6369137817', '8778087184', 'kirthika437@gmail.com', '2001-11-22', 21, '3', '2', 'MuthuKumar', 'AC Trainer', 30000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2302080002', '', '1', 'upload_files/candidate_tracker/33990341711_KIRTHIKA.M Resume.pdf', NULL, '1', '2023-02-08', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Focusing much on Data science will not sustain in a long in our roles will not handle our work pressure not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-08 11:31:19', 1, '2023-02-08 11:41:31', 0, NULL, 1),
(11880, '', '0', '8072216886', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302080003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-08 11:39:18', 0, NULL, 0, NULL, 1),
(11881, '', '0', '8344498155', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302080004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-08 01:29:10', 0, NULL, 0, NULL, 1),
(11882, '', '0', '9080384159', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302080005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-08 07:37:59', 0, NULL, 0, NULL, 1),
(11883, 'P.sasikala', '6', '9994363282', '9361586118', 'sasiammu322@gmail.com', '2002-07-03', 20, '2', '2', 'P.periyasamy', 'Former', 20000.00, 1, 10000.00, 12000.00, 'Sivagiri', 'Sivagiri', '2302090001', '1', '2', 'upload_files/candidate_tracker/96284915757_SasiResume.pdf', NULL, '1', '2023-02-09', 0, '', '5', '24', NULL, 0.00, '', '0', NULL, '2', 'Rejected ', '5', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-09 07:18:54', 1, '2023-02-09 11:28:38', 0, NULL, 1),
(11884, '', '0', '9360350017', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302090002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-09 07:48:54', 0, NULL, 0, NULL, 1),
(11885, 'SANDHIYA K', '4', '9698146933', '9176819628', 'Sandhyasandy25511@gmail.com', '1998-03-03', 24, '2', '1', 'KARTHIK S', 'Sales executive', 15000.00, 1, 15000.00, 20000.00, 'No 72 E Block DR. Thomas road T. nagar Chennai -17', 'T. Nagat', '2302090003', '1', '2', 'upload_files/candidate_tracker/71507034987_sandhiya resume-3 (1).docx', NULL, '1', '2023-02-09', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Exp in credit card sales 5050 for our roles can give a try kindly check and let me know your interest', '1', '1', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-09 11:51:47', 85, '2023-02-10 11:06:11', 0, NULL, 1),
(11886, 'AJITH V', '5', '6379554116', '9940115321', 'Ajithnaidu98@gmail.com', '1998-10-13', 24, '3', '2', 'Hajarathiah V', 'Business', 20000.00, 0, 18000.00, 20000.00, 'Chennai', 'Chennai', '2302090004', '', '2', 'upload_files/candidate_tracker/46822913030_AJITH.V. RESUME.pdf', NULL, '1', '2023-02-09', 0, '', '3', '59', '2023-02-10', 262000.00, '', '4', '2023-03-04', '1', 'We Offered Him In The Month Of November But Candidate Not Joined. Later In The Month Of Feb 2023 He Saw Our Job Post And Messaged Us .He Appeared Again And Got Selected For The Same Team - GK Sir', '5', '1', '4', '1', '1', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-09 12:25:31', 60, '2023-02-09 05:23:12', 0, NULL, 1),
(11887, 'Umar Riyaz F', '4', '6382786780', '', 'umarschovas@gmail.com', '2002-09-07', 20, '2', '2', 'Nasreen Fathima F', 'Homemaker', 12000.00, 1, 15000.00, 25000.00, 'Royapuram, Chennai', 'Royapuram, Chennai', '2302090005', '1', '2', 'upload_files/candidate_tracker/10970177606_Umar Updated resume.pdf', NULL, '1', '2023-02-10', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '2', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-09 02:27:21', 85, '2023-02-10 10:31:40', 0, NULL, 1),
(11888, '', '0', '8778349650', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302090006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-09 03:52:47', 0, NULL, 0, NULL, 1),
(11889, 'M.Ganesh Raghavendra', '11', '9962160953', '9962160423', 'ganeshraghavendhran@gmail.com', '1998-06-24', 24, '2', '1', 'R. Manivannan', 'Auto driver', 5000.00, 1, 0.00, 15000.00, 'Villivakkam', 'Villivakkam', '2302090007', '1', '1', 'upload_files/candidate_tracker/45565352630_Ganesh_CV.pdf', NULL, '1', '2023-02-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No basic ideas in recruitment no communication will not handle our work pressure not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-09 05:25:43', 85, '2023-02-10 10:31:27', 0, NULL, 1),
(11890, 'Balaji K', '6', '9361107818', '', 'k71076061@gmail.com', '2001-05-10', 21, '2', '2', 'Karuna karan', 'Auto driver', 25000.00, 1, 20000.00, 20000.00, 'Chenai', 'Chenai', '2302100001', '1', '2', 'upload_files/candidate_tracker/17441814441_RESUME-converted (2)-2.pdf', NULL, '1', '2023-02-10', 0, '', '4', '57', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 Profile Have basic calling exp seems to be doubtful kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-10 10:42:22', 60, '2023-02-10 06:20:12', 0, NULL, 1),
(11891, 'Thenmozhi P', '16', '7603919038', '', 'THENMOZHIP600@GMAIL.COM', '1999-12-06', 23, '2', '2', 'Saraswathi', 'House wife', 22000.00, 1, 16000.00, 16000.00, 'Korukkupet', 'Korukkupet', '2302100002', '1', '2', 'upload_files/candidate_tracker/66655635232_Thenmozhi Resume.pdf', NULL, '1', '2023-02-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication not open for Telecalling looking for non voice process only', '3', '1', '', '1', '1', '', '2', '1970-01-01', '2', '9', '', '', 'H1005', '', NULL, NULL, NULL, 1, '2023-02-10 11:02:56', 60, '2023-02-10 06:00:23', 0, NULL, 1),
(11892, '', '0', '6374773321', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 11:29:18', 0, NULL, 0, NULL, 1),
(11893, 'Jayaseelan', '11', '9543768028', '', 'jayaseelanrt01@gmail.com', '2000-10-01', 22, '2', '1', 'Parents', 'Labour', 30000.00, 3, 0.00, 15000.00, 'Namakkal', 'Tambaram', '2302100004', '1', '1', 'upload_files/candidate_tracker/49465628010_Jayaseelan resume (1) (1).pdf', NULL, '1', '2023-02-10', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication no basic ideas in recruitment not open for Terms will not handle and sustainability doubts', '6', '1', '', '1', '8', '', '2', '1970-01-01', '2', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-10 12:26:12', 85, '2023-02-10 03:49:38', 0, NULL, 1),
(11894, '', '0', '9566390753', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 12:27:28', 0, NULL, 0, NULL, 1),
(11895, '', '0', '8122629774', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 12:43:24', 0, NULL, 0, NULL, 1),
(11896, '', '0', '9566390743', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 12:45:38', 0, NULL, 0, NULL, 1),
(11897, 'tamil selvi', '4', '9884708130', '', 'ammutamilselvi2668@gmail.com', '1998-10-22', 24, '2', '2', 'govindan', 'cooli', 20000.00, 3, 0.00, 12000.00, 'korukpet', 'Korukpet', '2302100008', '1', '1', 'upload_files/candidate_tracker/70082512377_IMG20221107094240compressed.pdf', NULL, '1', '2023-02-10', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Need to check for telephonic again no graduation long career gap 7yrs sustainability doubts', '1', '1', '', '1', '8', '', '2', '2023-02-11', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-10 01:15:38', 85, '2023-02-11 09:53:13', 0, NULL, 1),
(11898, 'Sumiyabanu A', '23', '7200137886', '9994371458', 'sumi79797@gmail.com', '2000-03-07', 22, '2', '2', 'Ahmed Basha', 'Own business', 12.00, 1, 2.00, 3.00, 'Chennai', 'Chennai', '2302100009', '1', '2', 'upload_files/candidate_tracker/83020095988_SumiyaResume.pdf', NULL, '1', '2023-02-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills looking for salary growth Long Career Gap will not sustain in our roles', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-10 01:16:51', 1, '2023-02-10 01:19:29', 0, NULL, 1),
(11899, 'VIGNESH M', '5', '9750524937', '', 'pravinapravina130@gmail.com', '1995-08-12', 27, '3', '1', 'PRAVEENA v', 'Home maker', 25000.00, 1, 16000.00, 20000.00, '21/D INDIRA NAGAR RAMANATHAPURAM', 'SOORIYA HOSPITAL NEAR SALAI GRAMAM', '2302100010', '', '2', 'upload_files/candidate_tracker/61674094561_VIGNESH1 (1).pdf', NULL, '1', '2023-02-10', 0, '', '3', '59', '2023-02-13', 285696.00, '', '4', '2023-04-18', '2', 'Selected for Shanmugam Team with PF/PT', '5', '1', '4', '1', '8', '1', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-10 02:10:20', 60, '2023-02-11 03:33:44', 0, NULL, 1),
(11900, '', '0', '7338980164', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302100011', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-10 04:52:14', 0, NULL, 0, NULL, 1),
(11901, 'Janani', '4', '9840739277', '', 'jananikrithika@gmail.com', '1998-09-03', 24, '2', '2', 'Ganesan', 'Businesses', 15000.00, 1, 18000.00, 20000.00, 'Chennai', 'Chennai', '2302100012', '1', '2', 'upload_files/candidate_tracker/93415923859_Janani Resume.pdf', NULL, '1', '2023-02-13', 30, '', '3', '59', '2023-02-22', 228000.00, '', '', '2023-02-27', '2', 'Selected for Backend Health Renewal need to analyse in 7 days', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '5', 'In consultant Role', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-10 08:15:08', 60, '2023-02-21 03:45:32', 0, NULL, 1),
(11902, 'gowtham m', '4', '9025383778', '', 'gowthammohan812@gmail.com', '1994-07-10', 28, '2', '2', 'mohan', 'carpender', 20000.00, 3, 15000.00, 16000.00, 'chennai', 'chennai', '2302110001', '2', '2', 'upload_files/candidate_tracker/56113967844_CV_2022-11-06-081519.pdf', NULL, '1', '2023-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for Field Visit,have exp in KYC verification will not sustain and handle our sales pressure not suitabl', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-11 11:08:44', 60, '2023-02-22 12:47:33', 0, NULL, 1),
(11903, 'Manoj kumar', '4', '7448859500', '', 'manojkumarpride@gmail.com', '1995-11-14', 27, '3', '2', 'Muruganantham', 'Searching for job', 20000.00, 1, 17000.00, 20000.00, 'Erode', 'Erode', '2302110002', '', '2', 'upload_files/candidate_tracker/60384657425_Resume_12_02_2023_12_04_39_pm.pdf', NULL, '1', '2023-02-13', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '7', '0', '1', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-11 10:38:40', 1, '2023-02-12 12:22:52', 0, NULL, 1),
(11904, '', '0', '9988770022', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302150001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-15 10:22:04', 0, NULL, 0, NULL, 1),
(11905, 'Aravind raj', '5', '8124573734', '9962338669', 'Maverickraj76@gmail.com', '1997-09-21', 25, '3', '2', 'K. Raju', 'Farmer', 20000.00, 1, 31500.00, 35000.00, 'Thiruporur', 'Thiruporur', '2302150002', '', '2', 'upload_files/candidate_tracker/57585444219_Aravind Resume 1.pdf', NULL, '1', '2023-02-15', 0, '', '8', '18', NULL, 0.00, '', '0', NULL, '1', 'Saw his Resume and Rejected with arun', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-15 10:22:58', 1, '2023-02-15 10:31:59', 0, NULL, 1),
(11906, 'Emmanuvel Ramaraj', '5', '9042089420', '7639755184', 'remanujacob@gmail.com', '1995-11-21', 27, '2', '2', 'Ramaraj', 'Plumber', 300000.00, 2, 39000.00, 42000.00, 'Tiruvarur', 'Palavakkam Chennai', '2302150003', '1', '2', 'upload_files/candidate_tracker/16652042858_EMMAN New.docx', NULL, '1', '2023-02-15', 0, '', '3', '59', '2023-02-15', 500000.00, '', '7', '1970-01-01', '1', 'Communication Is Good Having Good Exp In Sales Souding Good For Our Profile But Fresher For Insurance Can Give A Try Looking For Lead Role Kindly Check And Let Me Know Your Interest Sir\n\nSelected for Manikandan Team with PF PT', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-15 10:24:08', 60, '2023-02-15 10:51:51', 0, NULL, 1),
(11907, 'GANESH T', '4', '8056263132', '9551577636', 'ganesh23051990@gmail.com', '1990-05-23', 32, '2', '2', 'THIRUNAVUKARASU P', 'Na', 17800.00, 2, 17800.00, 20000.00, 'CHENNAI', 'CHENNAI', '2302150004', '1', '2', 'upload_files/candidate_tracker/96676628080_Ganesh resume - Updated.pdf', NULL, '1', '2023-02-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Have Good Exp in Insurance but frequent job changes and now he is looking for loan or credit sales not much comfort to go again in insurance domain', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-15 10:55:13', 85, '2023-02-15 11:04:33', 0, NULL, 1),
(11908, '', '0', '6379044754', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302150005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-15 11:13:49', 0, NULL, 0, NULL, 1),
(11909, '', '0', '6383726513', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302150006', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-15 11:16:39', 0, NULL, 0, NULL, 1),
(11910, 'Preetha sree. S', '4', '6374291112', '9994360085', 'preethasree81@gmail.com', '1999-03-12', 23, '3', '2', 'Parent', 'Buisness', 50000.00, 2, 0.00, 12000.00, '632,kondi Raja palayam, Thanjavur', '2655/1 North main , Thanjavur', '2302150007', '', '1', 'upload_files/candidate_tracker/94883792654_preetha sree resume.docx', NULL, '1', '2023-02-15', 0, '', '3', '59', '2023-02-23', 138948.00, '', '4', '2023-03-18', '2', 'Selected fr Thanjavur Consultant Role', '1', '1', '1', '4', '5', '1', '2', '1970-01-01', '1', '9', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-15 11:25:18', 60, '2023-02-20 10:32:26', 0, NULL, 1),
(11911, 'mohan Raj', '13', '8056226131', '8838675377', 'fikmohan@gmail.com', '1999-02-03', 24, '2', '2', 'ramesh', 'accounted', 20000.00, 1, 0.00, 500000.00, 'Chennai', 'Chennai', '2302150008', '1', '1', 'upload_files/candidate_tracker/6117280837_resume (2).pdf', NULL, '1', '2023-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher for Python Not open for TxxampC Looking for Salary only already got offered with 18K 3yrs SA but not joined he is not open in Internship role also', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-15 03:37:04', 85, '2023-02-17 10:37:17', 0, NULL, 1),
(11912, 'Abirama Sundaram', '31', '9655720946', '', 'Abiramrajan19@gmail.com', '1999-08-09', 23, '2', '2', 'Sundar', 'Fish Farm', 40000.00, 1, 0.00, 20000.00, 'Kumbakonam', 'Chennai', '2302160001', '1', '1', 'upload_files/candidate_tracker/43688923545_Abiram Resume 1 (1).pdf', NULL, '1', '2023-02-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Basic Skills Family need is no Sustainability doubts not open for TxxampC Need time to check with family and confirm if he comes back let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-16 11:22:20', 85, '2023-02-16 11:31:47', 0, NULL, 1),
(11913, 'Hariharan L', '6', '7010954849', '', 'harishthegame97@gmail.com', '1996-05-22', 26, '1', '2', 'Manjula l', 'House wife', 20.00, 1, 25000.00, 30000.00, 'Chennai', 'Chennai', '2302160002', '', '2', 'upload_files/candidate_tracker/57706902936_Resume_Hariharan.pdf', NULL, '2', '2023-02-16', 0, '55659', '3', '59', '2023-02-20', 350000.00, '', NULL, '2023-11-30', '1', 'Selected for Santhosh Team with PF/PT', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-16 11:22:49', 60, '2023-02-20 10:44:56', 0, NULL, 1),
(11914, 'U. Abiram', '11', '9791186156', '', 'abiramguptha@gmail.com', '2002-01-01', 21, '3', '2', 'K. Unnirajan', 'Business', 20000.00, 1, 13000.00, 17000.00, '16/10 kandappan steet Ice house triplicane', '16/10 Kandappan Steet Ice House Triplicane', '2302160003', '', '2', 'upload_files/candidate_tracker/41224445588_Abiram Resume.docx (1).pdf', NULL, '1', '2023-02-16', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have 3 months Exp in recruitment and his salary exp is very high.Not much strong with the recruitment Skills SustainabilityDoubts and he need time to confirm on the txxampC if he comes back let us try', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-16 03:17:34', 1, '2023-02-16 03:49:20', 0, NULL, 1),
(11915, 'Deepika', '4', '7395942848', '', 'Vishnutgala2608@gmail.com', '1997-12-08', 25, '2', '1', 'Vishnu', 'Finance', 30000.00, 2, 16000.00, 20000.00, 'Puthupet', 'Puthupet', '2302160004', '1', '2', 'upload_files/candidate_tracker/91855385916_CV_2022-03-13-105257.pdf', NULL, '1', '2023-02-16', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not ready to join post selection for the profile ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-16 05:17:58', 85, '2023-02-24 02:53:54', 0, NULL, 1),
(11916, 'Vaishnavi s', '16', '7418585435', '', 'vaishu42002@gmail', '2002-01-04', 21, '2', '2', 'V senthil Kumar', 'Cab service', 300000.00, 1, 0.00, 300000.00, 'Chennai', 'Chennai', '2302160005', '1', '1', 'upload_files/candidate_tracker/54120154384_RESUME .pdf', NULL, '1', '2023-02-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication ok witten skills ok but not open for 2yrs SA and the timing also prefer 10 in the morning and 6 in the evening from porur Sustainability doubts if she come back let us try', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-16 11:30:44', 85, '2023-02-17 11:08:09', 0, NULL, 1),
(11917, 'Prasath', '13', '9962925623', '9094587226', 'Prasathprasath21263@gmail.com', '2001-06-27', 21, '2', '2', 'Murugan', 'Auto driver', 100000.00, 1, 15000.00, 16000.00, 'CHENNAI', 'CHENNAI', '2302170001', '1', '2', 'upload_files/candidate_tracker/19082187259_Prasath resume.pdf', NULL, '1', '2023-02-18', 0, '', '2', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Basic Knowledge In Html ,Css xxamp Js .. He Want To Discuss With His Parents about txxampc .. If He Come Let Us Try ', '2', '1', '', '1', '8', '', '2', '2023-02-22', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-17 01:02:46', 85, '2023-02-18 10:35:01', 0, NULL, 1),
(11918, 'THANGAVEL', '16', '9003507614', '8072486176', 'thangavelvaradharajan@gmail.com', '1997-05-21', 25, '2', '2', 'Varadharajan S', 'Operator', 16000.00, 1, 16000.00, 35000.00, 'Chennai', 'Chennai', '2302170002', '1', '2', 'upload_files/candidate_tracker/44701745084_Resume - Thangavel Varadarajan 97_1676741353306_Thangavel V.pdf', NULL, '1', '2023-02-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not Comfortable with the distance average Communication will not sustain and handle our work pressure', '3', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-17 04:40:59', 85, '2023-02-20 09:41:46', 0, NULL, 1),
(11919, 'Vedavalli V', '27', '7358656258', '9840092704', 'Vedavalli0313@gmail.com', '2000-03-13', 22, '2', '2', 'Vadivel', 'Plumber', 30000.00, 1, 0.00, 22000.00, 'Chennai', 'Chennai', '2302170003', '1', '2', 'upload_files/candidate_tracker/56804226498_Vedavalli .pdf', NULL, '1', '2023-02-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-17 05:02:40', 85, '2023-02-18 10:35:48', 0, NULL, 1),
(11920, '', '0', '8605214235', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302170004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-17 10:04:22', 0, NULL, 0, NULL, 1),
(11921, 'Gunasekar E', '6', '9025398253', '7358501554', 'gunasid01@gmail.com', '1998-05-01', 24, '2', '2', 'Ekambaram K', 'Load worker', 20.00, 2, 17500.00, 15500.00, 'No33 Kothandam nagar 2nd street chrompet', 'Chennai', '2302180001', '1', '2', 'upload_files/candidate_tracker/996228502_gunasekar resume.docx', NULL, '1', '2023-02-18', 1, '', '3', '59', '2023-02-24', 204000.00, '', '', '2023-02-25', '1', 'Selected for Suthagar Team Spencer in Consultant Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-18 10:39:42', 85, '2023-02-23 10:12:57', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(11922, 'Varshini.G', '11', '6383441706', '9884105980', 'varshinig07@gmail.com', '2000-06-07', 22, '2', '2', 'Gopinathan.A', 'MTC Bus driver', 300000.00, 1, 0.00, 15000.00, 'Erukkancherry, Chennai', 'Erukkancherry,Chennai', '2302180002', '1', '1', 'upload_files/candidate_tracker/81325345688_Varshini .pdf', NULL, '1', '2023-02-18', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'no commuication .. not suit for our role.', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-18 10:49:09', 85, '2023-02-18 12:47:58', 0, NULL, 1),
(11923, 'manirathanam', '4', '7358422814', '', 'manirathnamv1995@gmail.com', '1995-08-26', 27, '2', '2', 'veerangan', 'nil', 10000.00, 1, 0.00, 12000.00, 'kodungaiyur', 'chennai', '2302180003', '2', '1', 'upload_files/candidate_tracker/59622894532_Resume.pdf', NULL, '1', '2023-02-18', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Has Various Job Experience .. Not Suit For Our Process.', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-18 11:35:24', 1, '2023-02-18 12:41:01', 0, NULL, 1),
(11924, 'SONIA', '4', '7871242102', '9788488420', 'bhuvanasonia2123@gmail.com', '1997-11-21', 25, '4', '2', 'Bhuvana', 'Homemaker', 20000.00, 1, 15000.00, 25000.00, 'Chennai', 'Chennai', '2302180004', '', '2', 'upload_files/candidate_tracker/67283694478_SONI RESUME397-converted (1)-1 (2).pdf', NULL, '1', '2023-02-18', 15, '', '1', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '6', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-18 01:02:26', 85, '2023-02-18 02:34:12', 0, NULL, 1),
(11925, 'MANJU BASHINI.S', '6', '8754736680', '', 'manjusampath471@gmail.com', '2002-03-25', 20, '3', '2', 'S.AMUDHA', 'HOUSE RENT', 10000.00, 1, 0.00, 8000.00, 'THANJAVUR', 'THANJAVUR', '2302200001', '', '1', 'upload_files/candidate_tracker/22596203160_Manju_1676256456127.pdf', NULL, '1', '2023-02-20', 0, '', '3', '59', '2023-03-01', 132000.00, '', '', '1970-01-01', '1', 'Selected for Thanjavur Role - Consultant ', '5', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-20 11:13:27', 85, '2023-02-20 07:14:06', 0, NULL, 1),
(11926, 'K. Parkavi', '4', '9626012079', '', 'kparkavi150@gmail.com', '2002-11-17', 20, '3', '2', 'K. Chandra', 'Coolie', 20000.00, 1, 0.00, 8000.00, '32 pookkara muslim street thanjavur', '32 Pookkara Muslim Street Thanjavur', '2302200002', '', '1', 'upload_files/candidate_tracker/6786350320_K.PARKAVI resume.docx', NULL, '1', '2023-02-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'she is not fit for team and not suite for telecalling choosing only data entry like that job', '1', '2', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 11:13:33', 1, '2023-02-20 11:21:37', 0, NULL, 1),
(11927, 'V.janani', '4', '8531840164', '', 'jananivijayakumar655@gmail.com', '2001-06-09', 21, '3', '2', 't.k.vijayakumar', 'No', 3000.00, 1, 0.00, 9000.00, 'Thanjavur', 'Thanjavur', '2302200003', '', '1', 'upload_files/candidate_tracker/19467446240_janani resume.pdf', NULL, '1', '2023-02-20', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'she is not fit for team not active and ready to move any city any time so sustainability issue also', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 11:13:35', 1, '2023-02-20 11:28:41', 0, NULL, 1),
(11928, '', '0', '6478464885', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302200004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-20 11:14:17', 0, NULL, 0, NULL, 1),
(11929, 'vidhyalakshmi', '4', '8778742787', '', 'shanthividhya885@gmail.com', '1999-08-19', 23, '3', '2', 'ravichandran', 'lab ass', 30000.00, 0, 19500.00, 22000.00, 'kovilambakkam', 'Kovilambakkam', '2302200005', '', '2', 'upload_files/candidate_tracker/34166156030_VIDHYALAKSHMI R S_ (1).pdf', NULL, '1', '2023-02-20', 0, '', '3', '59', '2023-02-24', 252000.00, '', '5', '1970-01-01', '2', 'Selected for B2B Need to analyse in 7 days in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-20 11:42:09', 60, '2023-02-22 05:18:46', 0, NULL, 1),
(11930, 'Bharathi', '4', '7540030811', '', 'bharathi26032001@gmail.com', '2001-03-26', 21, '3', '2', 'Alamelu', 'Former', 15000.00, 2, 15000.00, 15000.00, 'Kallakurichi', 'Chennai', '2302200006', '', '2', 'upload_files/candidate_tracker/29369497531_Bharathi Resume new.doc', NULL, '1', '2023-02-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not showing interest in the job will not sustain and handle the pressure', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 01:02:06', 1, '2023-02-20 01:22:50', 0, NULL, 1),
(11931, 'FERINA MARIA MICHAEL', '11', '7358084855', '7845983003', 'ferimaria05@gmail.com', '1999-09-05', 23, '3', '2', 'Kevin michael', 'Civil engineer', 32000.00, 1, 0.00, 16000.00, 'perambur , Chennai', 'Perambur , chennai', '2302200007', '', '1', 'upload_files/candidate_tracker/63592435982_Ferina resume-1.docx', NULL, '1', '2023-02-20', 0, '', '3', '59', '2023-02-22', 120000.00, '', '0', NULL, '2', 'Selected for Recruiter role final round interviewed by gokul communication is good can be trained for Recruitment 3months intern 7.5K stipend then 13-15 overall 2yrs SA No certificate', '6', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 02:08:38', 1, '2023-02-20 02:15:23', 0, NULL, 1),
(11932, 'P B Madhu Sree', '11', '9502381974', '8778953545', 'madhukutty16204@gmail.com', '2000-09-20', 22, '3', '2', 'Saroja', 'None', 35000.00, 1, 0.00, 15000.00, 'Vysarpadi, Chennai', 'Vysarpadi, Chennai', '2302200008', '', '1', 'upload_files/candidate_tracker/64109180148_DOC-20220927-WA0001..pdf', NULL, '1', '2023-02-20', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Final round interviewed by gokul and the profile is on hold Pressure handling and not seems to be fast will check after a week her friend got seleceted ', '6', '1', '0', '1', '8', '0', '2', '2023-02-27', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-20 02:11:45', 1, '2023-02-20 02:19:57', 0, NULL, 1),
(11933, 'THIYOL FRANKLIN', '11', '9791647593', '', 'franklinthiyol@gmail.com', '1997-06-02', 25, '2', '2', 'Irudhaya raj', 'Driver', 20000.00, 1, 0.00, 15000.00, 'Vellore', 'Chennai', '2302200009', '1', '1', 'upload_files/candidate_tracker/55568355649_Thiyol Franklin-1.pdf', NULL, '1', '2023-02-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication no basics will not handle the pressure', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-20 04:53:13', 85, '2023-02-21 10:01:55', 0, NULL, 1),
(11934, 'Dinesh Kumar', '4', '7871646037', '', 'dineshthalaphathy1998@gmail.com', '1998-12-23', 24, '2', '2', 'Thirsha', 'Farmer', 10000.00, 0, 0.00, 17000.00, 'Gingee', 'Vadapalani', '2302200010', '1', '1', 'upload_files/candidate_tracker/2038425865_dinesh1613470433160.pdf', NULL, '1', '2023-02-22', 0, '', '10', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-20 05:38:05', 85, '2023-02-23 09:57:20', 0, NULL, 1),
(11935, 'R.gowthami', '6', '7358340434', '', 'gowthami199176@gmail.com', '1991-07-06', 31, '2', '2', 'E Ramamurthy', 'Business', 25000.00, 0, 0.00, 14000.00, 'Choolai high roads', 'Choolai high roads', '2302200011', '1', '1', 'upload_files/candidate_tracker/78837483608_gowthami.doc', NULL, '1', '2023-02-21', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Long Career Gap Team Apna Data reference sustainability and pressure handling doubts kindly check and let meknow your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-20 09:02:48', 85, '2023-02-21 06:45:11', 0, NULL, 1),
(11936, 'Dhanalakshmi.v', '6', '9150570903', '9551414409', 'dl913065@gmail.com', '2001-12-16', 21, '2', '2', 'Veerasami', 'Business', 60000.00, 2, 12000.00, 15000.00, 'Korukkupet', 'Korukkupet', '2302200012', '1', '2', 'upload_files/candidate_tracker/50317664080_Dhanalakshmi resume.docx', NULL, '1', '2023-02-21', 2, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No proper response discussed on the salary and she requested time to confirm with parents but didnt turn and not responding the calls too', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-20 09:10:40', 85, '2023-02-21 06:45:01', 0, NULL, 1),
(11937, 'Shalini. S', '4', '8754969466', '', 'shalusakthi7774@gmail.com', '2000-07-22', 22, '2', '2', 'Sakthivel. M', 'Farmer', 8000.00, 2, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2302210001', '1', '1', 'upload_files/candidate_tracker/22648185889_shalini resume....pdf', NULL, '1', '2023-02-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 11:19:18', 85, '2023-02-21 11:43:51', 0, NULL, 1),
(11938, 'Vinitha.s', '4', '7358933990', '', 'vincivil2016@gmail.com', '1999-03-10', 23, '2', '2', 'Sekar.r', 'Farmer', 10000.00, 2, 0.00, 10000.00, 'Thuraiundar kottai', 'Thuraiundar kottai', '2302210002', '1', '1', 'upload_files/candidate_tracker/42513764308_S.Vinitha resume....pdf', NULL, '1', '2023-02-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 11:19:31', 85, '2023-02-21 11:44:02', 0, NULL, 1),
(11939, 'Karthika. S', '4', '8610747703', '', 'karthikasuyampirakasam@gmail.com', '2000-12-02', 22, '2', '2', 'Suyamprakasam', 'Farmer', 6000.00, 2, 0.00, 10000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2302210003', '1', '1', 'upload_files/candidate_tracker/89771449125_Karthika resume...pdf', NULL, '1', '2023-02-21', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 11:19:32', 85, '2023-02-21 11:44:19', 0, NULL, 1),
(11940, 'Vishwa', '4', '9025834372', '9791526558', 'Vishva.mech99@gmail.com', '1999-05-06', 23, '2', '2', 'Sivakumar', 'Electrician', 15000.00, 1, 12000.00, 18000.00, 'Navalur', 'Madipakkam', '2302210004', '1', '2', 'upload_files/candidate_tracker/51203547165_Resume_19_10_2022_08_39_57_pm.pdf', NULL, '1', '2023-02-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not suitable will not travel will not handle the pressure ', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 11:32:42', 85, '2023-02-21 12:10:32', 0, NULL, 1),
(11941, '', '0', '9171113176', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302210005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-21 11:51:59', 0, NULL, 0, NULL, 1),
(11942, 'Abinaya', '4', '8939770682', '9790252290', 'sindhusumathik@gmail.com', '1997-09-08', 25, '3', '2', 'Karunanithi.k', 'He is no more', 50000.00, 2, 17000.00, 19000.00, 'Kandanchavadi', 'Thiruvanmaiyur', '2302210006', '', '2', 'upload_files/candidate_tracker/30456437075_1675849983380_Abinaya Resume new.pdf', NULL, '1', '2023-02-21', 30, '', '3', '59', '2023-02-27', 240000.00, '', '4', '2023-03-27', '2', 'Selected for B2B in Consultant Role Need to Analyse in 7 days training', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-21 02:17:20', 60, '2023-02-22 05:22:14', 0, NULL, 1),
(11943, 'KEERTHANA M', '4', '8056812253', '9751217138', 'Keerthanamohan930@gmail.com', '1999-06-11', 23, '3', '2', 'Saraswathi m', 'Home Maker', 10000.00, 1, 15000.00, 18000.00, 'Pudukkottai', 'Chennai', '2302210007', '', '2', 'upload_files/candidate_tracker/63595112907_pdf_20230123_152521_0000.pdf', NULL, '1', '2023-02-21', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'have exp in inbound for an year but no sure with outbound sustainability doubts kindly check and let me know your interest', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-21 02:19:49', 1, '2023-02-21 02:43:18', 0, NULL, 1),
(11944, 'Kiran Kumar m', '22', '8015197632', '9884413096', 'Kirankumar.muvvala@gmail.com', '1984-10-17', 38, '3', '1', 'Niharika', 'House wife', 5.90, 3, 5.90, 9.00, 'CHENNAI', 'CHENNAI', '2302210008', '', '2', 'upload_files/candidate_tracker/40444737745_Resume.doc', NULL, '1', '2023-02-21', 7, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'not open for our sales, 10yrs exp in other domain not suitable', '2', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-21 02:32:46', 1, '2023-02-21 02:35:52', 0, NULL, 1),
(11945, 'Praveen Kumar.B', '4', '8825924075', '9360377920', 'praveenkumarbabu117@gmail.com', '2002-05-17', 20, '2', '2', 'Babu .M', 'Coolie', 10000.00, 0, 0.00, 15000.00, 'Avadi', 'Avadi', '2302210009', '1', '1', 'upload_files/candidate_tracker/69005329220_B.PRAVEEN KUMAR - resume 1.doc', NULL, '1', '2023-02-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Left without attending the interview', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-21 10:49:32', 85, '2023-02-28 12:10:28', 0, NULL, 1),
(11946, 'SUDHARSAN', '6', '8870088347', '', 'bsudhar024@gmail.com', '2001-04-02', 21, '1', '2', 'BHARATHITHASAN', 'Former', 200000.00, 1, 13000.00, 17000.00, 'Thiruvarur', 'Saidapet', '2302220001', '', '2', 'upload_files/candidate_tracker/75288411528_new resem.pdf', NULL, '1', '2023-02-22', 0, 'P1330', '3', '59', '2023-03-03', 200400.00, '', NULL, '2024-01-31', '1', 'Selected for Babu Team in Staff Role', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-22 10:35:07', 60, '2023-03-02 05:11:19', 0, NULL, 1),
(11947, 'rajesh.', '4', '9962478922', '', 'Rajeshseven7777@gmail.com', '1995-03-19', 27, '4', '2', 'elumalai', 'auto driver', 200000.00, 1, 0.00, 18000.00, 'royapettah', 'royapettah', '2302220002', '', '1', 'upload_files/candidate_tracker/97051050899_H.pdf', NULL, '3', '2023-02-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Field Sales Telecalling will not sustain no sustainability in the previous exp Not suitable', '1', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-22 10:41:08', 1, '2023-02-22 10:59:23', 0, NULL, 1),
(11948, 'Aravind', '11', '6382653283', '9171113176', 'chinnaaravind175@gmail.com', '1996-05-21', 26, '2', '2', 'Jayakumar', 'HR recruitment', 25000.00, 2, 3.50, 4.50, 'Vellore', 'Vellore', '2302220003', '1', '2', 'upload_files/candidate_tracker/88491370240_Aravind CV-3.docx', NULL, '1', '2023-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Looking for IT recruitment only and the current Salary is 3.5 LPA not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-22 11:05:59', 85, '2023-02-23 09:56:04', 0, NULL, 1),
(11949, 'naveen kumar s', '16', '7397297497', '8122822558', 'naveenkumars0510@gmail.com', '1995-10-10', 27, '2', '2', 'maheshwari', 'salaried', 50000.00, 0, 18000.00, 25000.00, 'chennai', 'chennai', '2302220004', '1', '2', 'upload_files/candidate_tracker/34419675065_Naveen.docx', NULL, '1', '2023-02-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication Not open for Sales Calling Not suitable for our MIS operations roles', '3', '1', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-22 11:31:06', 85, '2023-02-23 09:56:25', 0, NULL, 1),
(11950, '', '0', '9701069271', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302220005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-22 01:59:17', 0, NULL, 0, NULL, 1),
(11951, 'Vimal raj k', '11', '7904007904', '8925083085', 'vimalraj13579@gmail.com', '2000-09-18', 22, '2', '2', 'Kumar G', 'TNEB', 50000.00, 2, 0.00, 15000.00, 'Chennai', 'Ponnamllee', '2302220006', '1', '1', 'upload_files/candidate_tracker/66726033519_Vimal CV_2021-12-09-053927.docx', NULL, '1', '2023-02-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Not much knowledge in Recruitment need to be trained a lot distance need to focus need confirmation from candidate on TxxampC 2nd round interviewed by gokul', '6', '1', '', '1', '8', '', '2', '2023-02-28', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-22 03:00:58', 85, '2023-02-23 10:40:05', 0, NULL, 1),
(11952, 'J Prashanth', '16', '9047950762', '8428100357', 'prashanthjothi04@gmail.com', '1999-02-04', 24, '2', '2', 'Jothi N', 'Farmer', 15000.00, 1, 17500.00, 25000.00, 'Cheyyar', 'Nandanam, Chennai', '2302220007', '1', '2', 'upload_files/candidate_tracker/66184959152_DOC-20211106-WA0014..pdf', NULL, '1', '2023-02-23', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Came for Voice Process suthagar reference but not open for sales voice have exp in non voice and much focus on that Salary need to think and bit attitude Gokul need to have the final round', '3', '1', '', '1', '8', '', '2', '2023-03-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-22 03:39:49', 85, '2023-02-23 03:26:07', 0, NULL, 1),
(11953, 'Sowmiya', '6', '8668136875', '', 'Sowmiyasowmi968@gmail.com', '2008-02-22', 0, '1', '2', 'Loganadhan', 'Business', 20000.00, 1, 26000.00, 22000.00, '3rd Street sriram nagar adyar Chennai', '4th street, sriram Nagar, tharamani,chennai.', '2302220008', '', '2', 'upload_files/candidate_tracker/37883124041_sowmiya.pdf', NULL, '1', '2023-02-22', 20, 'CA164', '3', '59', '2023-03-01', 240000.00, '', '4', '2024-10-07', '2', 'Selected for Syed Team in Consultant Role', '5', '2', '1', '1', '1', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-22 03:49:22', 60, '2023-02-28 05:01:53', 0, NULL, 1),
(11954, 'Prashanth Jothi', '6', '8428100357', '9047959762', 'prashanthjothi04@gmail.com', '1999-02-04', 24, '3', '2', 'Jothi Nadarajan', 'Welding', 15000.00, 1, 17500.00, 25000.00, 'Cheyyar', 'Cheyyar', '2302220009', '', '2', 'upload_files/candidate_tracker/18180837632_DOC-20211106-WA0014..pdf', NULL, '1', '2023-02-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '1', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-22 08:09:29', 1, '2023-02-22 08:14:18', 0, NULL, 1),
(11955, 'GEORGE DOMINIC M', '6', '7092381704', '7904051696', 'georgedominic3@gmail.com', '1992-08-24', 30, '3', '2', 'MICHAEL', 'NIL', 18000.00, 1, 20000.00, 25000.00, 'VILLIVAKKAM', 'VILLIVAKKAM', '2302230001', '', '2', 'upload_files/candidate_tracker/76857296870_0_0_George Resume 1.docx', NULL, '1', '2023-02-23', 1, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '8 yrs admin exp communication not clear having health issue will not sustain and not suitable', '5', '1', '', '1', '3', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-23 01:27:00', 85, '2023-02-23 03:50:30', 0, NULL, 1),
(11956, 'Sangeetha', '6', '9884102945', '9841701500', 'Sangeethas1710@gmail.com', '2000-01-10', 23, '2', '2', 'Sakthivel', 'BCA', 25000.00, 1, 15000.00, 17000.00, 'Mylapore', 'Mylapore', '2302230002', '1', '2', 'upload_files/candidate_tracker/12103181771_Sangeetha Resume.pdf', NULL, '3', '2023-02-23', 1, '', '3', '59', '2023-02-27', 204000.00, '', '2', '1970-01-01', '2', 'Selected for Suthagar Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-23 02:52:59', 60, '2023-02-28 05:00:21', 0, NULL, 1),
(11957, 'Rajasree', '4', '7338975013', '9344047963', 'rajasree1304@gmail.com', '2001-02-13', 22, '2', '2', 'Kumararaja', 'Driver', 50000.00, 1, 12500.00, 18000.00, 'Chennai', 'Chennai', '2302240001', '1', '2', 'upload_files/candidate_tracker/4381032312_28841934-7ba6-4997-88c1-255896eacba7.pdf', NULL, '1', '2023-02-24', 0, '', '3', '59', '2023-03-15', 180000.00, '', '5', '1970-01-01', '1', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-24 10:20:12', 60, '2023-02-27 07:36:49', 0, NULL, 1),
(11958, 'Kathiravan', '6', '9597517171', '7598978203', 'Mkmkathirkpk5@gmail.com', '2002-02-25', 20, '2', '2', 'Kannan', 'Farmer', 15000.00, 3, 0.00, 20000.00, 'Ariyalur', 'Mint street', '2302240002', '1', '1', 'upload_files/candidate_tracker/36385039802_kathiravan resume.pdf', NULL, '1', '2023-02-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Yet To Complete Their Graduation Still 4 Months To Go', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-24 10:35:03', 85, '2023-02-24 12:38:43', 0, NULL, 1),
(11959, 'LAYONAL JENISTON. J', '6', '7598978203', '9597517171', 'layonalmitha1423@gmail.com', '2002-03-14', 20, '2', '1', 'John', 'Farmer', 15000.00, 1, 0.00, 20000.00, 'Trichy', 'Ashok nagar', '2302240003', '1', '1', 'upload_files/candidate_tracker/85926397991_Layonal Jeniston.J - Resume.pdf', NULL, '1', '2023-02-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Yet To Complete Their Graduation Still 4 Months To Go', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-24 10:40:29', 85, '2023-02-24 12:38:52', 0, NULL, 1),
(11960, 'vimal kumar.k', '5', '9080844902', '', 'vimalkumar101998@gmail.com', '1998-01-10', 25, '2', '2', 'kamalakannan', 'driver', 15000.00, 0, 3.25, 4.00, 'chennai', 'chennai', '2302240004', '1', '2', 'upload_files/candidate_tracker/86747641829_Vimal Kumar Resume-11.pdf', NULL, '1', '2023-02-24', 0, '', '3', '59', '2023-03-01', 350000.00, '', '5', '1970-01-01', '1', 'Selected for GK sir Tem with Commtment 2L in 1 month', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-24 11:12:28', 60, '2023-02-27 07:38:59', 0, NULL, 1),
(11961, 'R.Bakiya', '31', '8754850128', '9940834936', 'nanthinirathinam3001@gmail.com', '2001-10-23', 21, '3', '2', 'Rathinam', 'Carpenter', 30000.00, 2, 0.00, 20000.00, 'No6, kuyavr street Thirukalukundram Chengalpattu', 'Chengalpattu', '2302240005', '', '1', 'upload_files/candidate_tracker/59079734354_Bakiya. R[Linux, AWS, Devops]-9.pdf', NULL, '1', '2023-02-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance no basic skills will not sustain', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-24 11:56:54', 1, '2023-02-24 12:31:23', 0, NULL, 1),
(11962, 'Sharath M', '32', '9071125212', '9742207515', 'sharathblaze5@gmail.com', '1999-05-05', 23, '1', '2', 'Bhagyalakshmi', 'Project Manager at marketing company', 60000.00, 1, 26500.00, 28000.00, 'Jp Nagar 6th phase', 'Jp Nagar 6th phase', '2302240006', '', '2', 'upload_files/candidate_tracker/87762015397_DOC-20230221-WA0002..docx', NULL, '1', '2023-02-24', 0, '2302240006', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'HR Round Reject Had a initial discussion but there is no response later ', '5', '1', '', '2', '2', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-24 01:39:29', 85, '2023-02-24 03:43:55', 0, NULL, 1),
(11963, 'Vishwaleo', '6', '9361956253', '7550386487', 'thalapathileo11@gmail.com', '2001-07-17', 21, '2', '2', 'Vidhya', 'Organiser', 140000.00, 1, 0.00, 12000.00, 'Regunathapuram', 'Thanjavur', '2302250001', '1', '1', 'upload_files/candidate_tracker/49957474840_0_vishawleo.pdf', NULL, '1', '2023-02-27', 0, '', '3', '59', '2023-03-01', 138948.00, '', '', '2023-03-08', '2', 'Selected for Thanjavur - Consultant', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-25 10:10:06', 60, '2023-02-28 04:49:30', 0, NULL, 1),
(11964, 'Bhuvaneswari E', '14', '8489440406', '', 'bhuvanabca36@gmail.com', '1993-10-06', 29, '4', '1', 'Manikandan', 'Site engineer', 17000.00, 1, 12000.00, 20000.00, 'Jayankondam', 'Chennai', '2302250002', '', '2', 'upload_files/candidate_tracker/35384261194_BHUVANA RESUME.docx', NULL, '1', '2023-02-25', 30, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long back 1 yr Exp career Gp in between looking for IT openings but will not sustain not more than a year', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-25 10:29:37', 85, '2023-02-25 10:40:44', 0, NULL, 1),
(11965, 'S prema', '4', '9791718495', '', 'pp2107261@gmail.com', '2002-11-07', 20, '3', '2', 'Sundharam', 'Server', 7500.00, 2, 0.00, 10000.00, 'Thiruvaiyaru', 'Thiruvaiyaru', '2302250003', '', '1', 'upload_files/candidate_tracker/65615174607_Prema Resume.pdf', NULL, '1', '2023-02-27', 0, '', '5', '74', NULL, 0.00, '', '0', NULL, '2', 'not fit for team voice not have the flow .....struggle to speak fluently...', '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-25 02:50:55', 1, '2023-02-27 11:27:29', 0, NULL, 1),
(11966, 'Mahesh kumar b', '5', '9789849039', '', 'maheshsep45@gmail.com', '1991-03-01', 31, '3', '2', 'Elamathi mother', 'CSE', 18.00, 0, 16.00, 22.00, 'Chennai', 'Chennai', '2302250004', '', '2', 'upload_files/candidate_tracker/16394410162_1557411489877_1557411468574_1_10106 (3) (1) (1) (3).pdf', NULL, '1', '2023-03-01', 0, '', '1', '52', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-02-25 03:03:38', 85, '2023-03-01 11:50:30', 0, NULL, 1),
(11967, 'Naveen Kumar', '6', '8825579045', '', 'bovasnaveen@gmail.com', '1993-09-11', 30, '2', '2', 'Joseph', 'Painter', 100000.00, 2, 2.41, 3.50, 'Chennai', 'Chennai', '2302250005', '1', '2', 'upload_files/candidate_tracker/24127390577_naveenkumar j(1)(2) (1) (1).docx', NULL, '1', '2024-02-22', 10, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', 'H1017', '', NULL, NULL, NULL, 1, '2023-02-25 03:52:32', 104, '2024-02-22 12:47:43', 0, NULL, 1),
(11968, 'Bharath. B', '5', '9500541862', '8838940426', 'bharathbaskar0619@gmail.com', '2000-06-19', 22, '2', '2', 'Parent', 'Spares incharge', 20000.00, 1, 0.00, 15000.00, 'No:225 bala murugan nagar TV puram PONNERI 601 204', 'No:225 Bala Murugan Nagar TV Puram PONNERI 601 204', '2302250006', '1', '2', 'upload_files/candidate_tracker/25189130798_BHARATH RESUME New 4.pdf', NULL, '1', '2023-02-27', 0, '', '4', '44', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communicaiton Ok have Exp in Tracttor Sales can give a try for our roles kindly check and let me know your interest', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-25 04:30:34', 60, '2023-02-27 07:07:20', 0, NULL, 1),
(11969, 'D.E.Manikandan', '5', '9566086606', '', 'vikemani@gmail.com', '1992-08-13', 30, '2', '2', 'D.Elangovan', 'Asst manager project', 45000.00, 1, 40000.00, 45000.00, 'Chennai', 'Chennai', '2302250007', '1', '2', 'upload_files/candidate_tracker/13534097308_Resume.docx', NULL, '1', '2023-02-27', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long Distance 11 yrs in manufacturing sales not suitable will not take calls', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-25 04:44:14', 85, '2023-02-27 10:37:00', 0, NULL, 1),
(11970, '', '0', '9751672699', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302270001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-27 01:10:36', 0, NULL, 0, NULL, 1),
(11971, 'Sivasubramani', '6', '7667192954', '7904889514', 'aaragsiva@gmail.com', '1999-08-27', 23, '2', '2', 'AYYANAN', 'Revenue Supervisor TNEB', 40000.00, 2, 21000.00, 25000.00, 'Madurai', 'Thoraipakkam chennai', '2302270002', '1', '2', 'upload_files/candidate_tracker/84310367179_RESUME Sivasubramani.docx', NULL, '1', '2023-03-23', 20, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'not suit for our process ... long run doubts', '5', '1', '', '1', '1', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 08:37:34', 85, '2023-03-23 05:05:25', 0, NULL, 1),
(11972, 'nitesh kumar', '6', '7780550124', '', 'niteshjelohari@gmail.com', '1996-07-04', 26, '2', '2', 'ariya raj', 'late', 20000.00, 1, 15000.00, 25000.00, 'avadi', 'Ramapuram', '2302270003', '1', '2', 'upload_files/candidate_tracker/18608870107_Nithesh Kumar CV (3).pdf', NULL, '1', '2023-02-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not open for Target not suitable', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-27 09:23:07', 1, '2023-02-27 12:37:01', 0, NULL, 1),
(11973, 'Syedu Waheed m', '5', '8608871964', '7639913354', 'masoodwaheed231@gmail.com', '2000-01-09', 23, '2', '2', 'Syed Masood ahmed', 'Assistant manager', 20000.00, 3, 0.00, 31000.00, '58/40 Khan sahib Street tirupattur 635601', 'Ambattur chennai', '2302270004', '1', '2', 'upload_files/candidate_tracker/1943141841_Waheed Masood.pdf', NULL, '1', '2023-02-27', 0, '', '5', '51', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'not ok with sales', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 10:12:50', 60, '2023-02-27 07:34:40', 0, NULL, 1),
(11974, 'Jayashree.J', '31', '7094908789', '8144210438', 'jjayashree15598@gmail.com', '1998-05-15', 24, '3', '2', 'Jayavel', 'Chennai Port trust (painter)', 100000.00, 1, 0.00, 15000.00, 'Chennai', 'Chengalpattu', '2302270005', '', '1', 'upload_files/candidate_tracker/42362711016_Fresher resume-1.pdf', NULL, '1', '2023-02-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too Long Distance No Basics In Web Development Not Suitable Looking For Testing Only', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-27 10:40:50', 1, '2023-02-27 10:46:25', 0, NULL, 1),
(11975, 'Umamageswari', '31', '8220502164', '', 'umamageswari161999@gmail.com', '1999-06-01', 23, '3', '2', 'Kumar', 'Farmer', 15000.00, 2, 0.00, 15000.00, 'Chennai', 'Chennai', '2302270006', '', '1', 'upload_files/candidate_tracker/39688834616_uma new.pdf', NULL, '1', '2023-02-27', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too long Distance no basics in Web development not suitable looking for Testing only', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-27 10:41:10', 1, '2023-02-27 10:45:46', 0, NULL, 1),
(11976, 'Preethi', '6', '9629679812', '6381802950', 'Cutepreethu591@gmail.com', '2001-04-10', 21, '2', '1', 'Priya', 'Worker', 20000.00, 1, 20000.00, 22000.00, 'Chennai', 'Chennai', '2302270007', '1', '2', 'upload_files/candidate_tracker/53732665987_Resume (1).docx', NULL, '1', '2023-02-27', 0, '', '3', '59', '2023-03-15', 240000.00, '', '3', '2023-05-02', '2', 'Selected for Suthagar Team in Consultant Role', '5', '1', '1', '1', '8', '1', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 10:49:20', 60, '2023-03-14 10:04:04', 0, NULL, 1),
(11977, 'kaviya', '13', '8754090972', '', 'kaviyaravi257@gmail.com', '2002-01-03', 21, '2', '2', 'ravichandran', 'farmer', 40000.00, 0, 12000.00, 15000.00, 'teynapet', 'Teynapet', '2302270008', '1', '2', 'upload_files/candidate_tracker/15837079671_CV_2022112314125543 (1).pdf', NULL, '1', '2023-02-27', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Need to come back with her confrmation 2nd round interviewed by sathish IT and was on hold candidate looking for Telesales Profile too', '2', '1', '0', '1', '8', '0', '2', '2023-03-01', '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-02-27 11:02:32', 1, '2023-02-27 11:55:26', 0, NULL, 1),
(11978, 'vembarasi c', '5', '6374630182', '8608871964', 'chandruvembarasi1234@gmail.com', '2000-03-27', 22, '2', '2', 'Chandru', 'Assistant manager', 15000.00, 3, 26000.00, 32000.00, 'Melbatchapet selvaganapathi street harur', 'Mogapapair west', '2302270009', '1', '2', 'upload_files/candidate_tracker/27725925102_vembarasi CV.docx', NULL, '1', '2023-02-27', 15, '', '3', '59', '2023-04-11', 380000.00, '', NULL, '2025-10-08', '2', 'Selected for Santhosh Team with PF/PT', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 11:19:30', 60, '2023-03-16 05:13:23', 0, NULL, 1),
(11979, 'Rajesh', '2', '7358721596', '', 'Rajeshsaravanan01@gmAil.com', '1999-10-10', 23, '3', '2', 'M.saravanan', 'Travel', 30000.00, 1, 14000.00, 20000.00, 'Chennai', 'Chennai', '2302270010', '', '2', 'upload_files/candidate_tracker/37938417378_rajesh resume (3) - Copy.pdf', NULL, '1', '2023-02-27', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Have basic knowledge in NodeJS need time to confirm the TxxampC if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', '2023-03-01', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-27 01:01:49', 1, '2023-02-27 02:53:34', 0, NULL, 1),
(11980, 'Karthikeyan G', '4', '9047749492', '', 'Karthimask1995@gmail.com', '1995-09-17', 27, '2', '1', 'Gunasekaran M', 'Bank employee', 12.00, 1, 20000.00, 15000.00, 'Thirumanur', 'Thirumanur', '2302270011', '1', '2', 'upload_files/candidate_tracker/42947145262_KARTHIKEYAN NEW RESUME(1).pdf', NULL, '1', '2023-02-27', 1, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '2', '', '4', '5', '', '2', '1970-01-01', '3', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-27 01:02:02', 85, '2023-02-27 01:17:04', 0, NULL, 1),
(11981, '', '0', '9360320716', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2302270012', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-02-27 04:35:58', 0, NULL, 0, NULL, 1),
(11982, 'Dharun p', '20', '9840664491', '9884754491', 'dharuncristino@gmail.com', '2002-10-10', 20, '4', '2', 'Gomathi', 'Self employed', 30000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2302270013', '', '2', 'upload_files/candidate_tracker/48638314810_Dharun resume.pdf', NULL, '3', '2023-03-04', 30, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '5', '1', '0', '1', '8', '0', '1', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-27 04:45:05', 1, '2023-03-13 03:23:19', 0, NULL, 1),
(11983, 'Arumuga Priya Thiyagarajan', '5', '6381507480', '7598523034', 'priyathiyagarajan0521@gmail.com', '1999-04-05', 23, '2', '2', 'Thiyagarajan (parent)', 'Supervisor At PMT', 20000.00, 2, 20000.00, 25000.00, 'Arumbakkam', 'Arumbakkam', '2302280001', '1', '2', 'upload_files/candidate_tracker/65956650911_Arumuga Priya Thiyag_Resume.docx', NULL, '1', '2023-02-28', 1, '', '3', '59', '2023-04-06', 277920.00, '', '', '2023-04-07', '1', 'Selected for ESales in Consultant ROle', '5', '1', '1', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 10:04:33', 60, '2023-03-11 04:38:43', 0, NULL, 1),
(11984, 'S. VIGNESH KUMAR', '14', '8124523794', '', 'svigneshkumar720@gmail.com', '2002-01-05', 21, '2', '2', 'Shanmugam k', 'Typist', 35000.00, 1, 0.00, 15000.00, 'Tiruvarur', 'Chennai', '2302280002', '1', '1', 'upload_files/candidate_tracker/58186881357_vignesh cv (2).pdf', NULL, '1', '2023-02-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Already attended and not open for TxxampC No basic knowledge too', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 10:44:59', 85, '2023-02-28 12:10:42', 0, NULL, 1),
(11985, 'Santhosh.A', '6', '9344670305', '8939349084', 'asanthoshaf@gmail.com', '2002-04-12', 20, '2', '2', 'Arul.K', 'Tellicaller outbound', 10.00, 1, 0.00, 18000.00, 'Pallikaranai', 'Pallikaranai', '2302280003', '1', '1', 'upload_files/candidate_tracker/81593514024_SANTHOSH', NULL, '1', '2023-02-28', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Rejected', '5', '2', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 11:03:38', 60, '2023-02-28 07:28:44', 0, NULL, 1),
(11986, 'Panditi Nageswara Rao', '4', '9360377920', '8825924075', 'nageswararao5426@gmail.com', '2002-07-12', 20, '2', '2', 'Thomas. A', 'Watch man', 8000.00, 2, 0.00, 15000.00, 'perambur', 'Perambur', '2302280004', '1', '1', 'upload_files/candidate_tracker/4313186980_PANDITI NAGESWARA RAO (1) (1).pdf', NULL, '1', '2023-02-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communicaiton Ok fresher for our roles left with out attending the 2nd level interview', '1', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 11:27:30', 85, '2023-02-28 12:11:12', 0, NULL, 1),
(11987, 'Venkatesan B', '5', '9944166426', '6382531033', 'venkatesanbaskar21@gmail.com', '1998-12-21', 24, '2', '2', 'Suseela', 'Self employed', 7000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2302280005', '1', '2', 'upload_files/candidate_tracker/78749011024_Venkatesan.B_Resume.docx', NULL, '1', '2023-02-28', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attitude will not sustain in our roles and handle not suitable', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 11:30:25', 85, '2023-02-28 11:51:25', 0, NULL, 1),
(11988, 'Kannapiran T', '13', '8668052997', '9500809734', 'kannapiran0007@gmail.com', '1999-07-11', 23, '3', '2', 'T mani', 'Software developer', 20.00, 1, 0.00, 18.00, 'Trichy', 'Adyar', '2302280006', '', '1', 'upload_files/candidate_tracker/95974624726_KannapiranResume 2.pdf', NULL, '1', '2023-02-28', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Fresher for IT, Need to be trained 5050 kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-28 11:42:54', 1, '2023-02-28 11:47:12', 0, NULL, 1),
(11989, 'Shabee', '5', '6382531033', '9944166426', 'Shabeestrixx6@gmail.com', '1999-05-20', 23, '2', '2', 'Barkath begum', 'House wife', 15000.00, 3, 20000.00, 25000.00, 'Chennai', 'Chennai', '2302280007', '1', '2', 'upload_files/candidate_tracker/69896255353_SHABEER. A.pdf', NULL, '1', '2023-02-28', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'rejected, not suitable for our role', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 11:50:31', 85, '2023-02-28 12:10:07', 0, NULL, 1),
(11990, 'Mohamed Arshath', '31', '7358654365', '', 'mdarsath620@gmail.com', '2001-06-05', 21, '4', '2', 'Sathik Ali', 'B.com', 25000.00, 0, 0.00, 350000.00, 'Chennai', 'Chennai', '2302280008', '', '1', 'upload_files/candidate_tracker/11380007240_Mohamed Arshad - Front end developer resume (Fresher) (1) (1).pdf', NULL, '1', '2023-02-28', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher having lot of reference outside will not run in a long self learned not much comfort with TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-28 12:47:35', 1, '2023-02-28 12:56:33', 0, NULL, 1),
(11991, 'Shahul Hameed', '10', '8124791375', '', 'shahulgeelax@gmail.com', '1996-12-16', 26, '3', '2', 'Parveen Nisha', 'House Wife', 1000.00, 2, 25000.00, 35000.00, 'Ulundurpet', 'chennai', '2302280009', '', '2', 'upload_files/candidate_tracker/17369102395_Shahul Hameed TL.pdf', NULL, '1', '2023-04-26', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'few months ago attend the interview in our company for sales.. now came for mis no communication xxamp not suit for our role', '5', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-28 02:13:34', 1, '2023-04-26 01:03:35', 0, NULL, 1),
(11992, 'Shahul Hameed', '4', '8124791775', '', 'shahulgeelax@gmail.com', '1996-12-16', 26, '3', '2', 'Ameer Jan', 'Not working', 10.00, 2, 19.00, 25.00, 'Villupuram', 'Villupuram', '2302280010', '', '2', 'upload_files/candidate_tracker/13733440865_Shahul Hameed.pdf', NULL, '1', '2023-02-28', 0, '', '4', '11', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Non voice Open for Telecalling sALES 5050 profile kindly check and let me know your inputs', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-02-28 02:14:46', 1, '2023-02-28 02:20:30', 0, NULL, 1),
(11993, 'Mohammed Faisal', '5', '7540025932', '7845810744', 'mfp199507@gmail.com', '1995-11-03', 27, '2', '2', 'Mohammed Suhail', 'Business man', 75000.00, 2, 35000.00, 36000.00, 'Vaniyambadi', 'Chennai', '2302280011', '1', '2', 'upload_files/candidate_tracker/17214651520_Mohammed Faisal_Resume.pdf', NULL, '1', '2023-03-01', 0, '', '3', '59', '2023-03-06', 321696.00, '', '7', '1970-01-01', '2', 'Selected for Sarath Team PF/PT with Commitment 2L in march then 2K increment in April 2023', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-02-28 04:56:51', 60, '2023-03-02 07:15:38', 0, NULL, 1),
(11994, '', '0', '7339411286', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303010001', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-01 05:15:52', 0, NULL, 0, NULL, 1),
(11995, 'Priyadarsini C', '6', '9791341679', '', 'cpriyadharsini23@gmail.com', '1998-04-23', 24, '2', '2', 'Chandramohan', 'Daily worker', 10000.00, 3, 0.00, 10000.00, 'Thanjavur', 'Thanjavur', '2303010002', '1', '2', 'upload_files/candidate_tracker/16365000778_priya .pdf', NULL, '1', '2023-03-01', 0, '', '3', '59', '2023-03-03', 138948.00, '', '4', '2023-04-25', '2', 'Selected for Thanjavur Consultant Role', '5', '1', '1', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-01 11:23:21', 60, '2023-03-02 05:44:53', 0, NULL, 1),
(11996, 'Naveen Nayagam', '33', '8681839497', '8681006402', 'agnasnaveenoffice@gmail.com', '2001-07-02', 21, '2', '2', 'Reeta J', 'House Keeping', 250000.00, 2, 10000.00, 15000.00, 'Thousand Lights', 'Thousand Lights', '2303010003', '1', '2', 'upload_files/candidate_tracker/44906446229_Naveen Nayagam Resume.pdf', NULL, '1', '2023-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No basics in Accounts looking only for the salary growth will not sustain and handle pressure if he comes back let us try later', '4', '1', '', '1', '8', '', '2', '1970-01-01', '1', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-01 12:38:04', 85, '2023-03-02 11:03:06', 0, NULL, 1),
(11997, 'mounika srinivasan', '13', '9715277883', '9629718047', 'mounikasrinivasan21@gmail.com', '2002-05-21', 20, '4', '2', 'r.srinivasan', 'business', 45000.00, 1, 0.00, 20000.00, 'kumbakonam', 'kumbakonam', '2303010004', '', '1', 'upload_files/candidate_tracker/73908677878_mounika.pdf', NULL, '1', '2023-03-01', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher Yet to complete her graduation have basic knowledge kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-01 01:33:36', 1, '2023-03-01 01:47:04', 0, NULL, 1),
(11998, 'Rishanth B', '11', '9176271928', '7200081932', 'Rishanthoff@gmail.com', '2000-08-23', 22, '2', '2', 'Balasubramanian', 'Marketing', 300000.00, 0, 0.00, 180000.00, 'Chennai', 'Chennai', '2303020001', '1', '1', 'upload_files/candidate_tracker/57105917853_RISHANTH.pdf', NULL, '1', '2023-03-02', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average,no basics in reruitment will not handle our profiles not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-02 10:46:06', 85, '2023-03-02 11:03:23', 0, NULL, 1),
(11999, '', '0', '7878787676', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303020002', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-02 11:29:59', 0, NULL, 0, NULL, 1),
(12000, 'MOHAMMED FAYAS', '31', '8778897963', '', 'Asmifayas12345@gmail.com', '1997-08-16', 25, '3', '2', 'MOHAMMED NIZAR', 'Business', 30000.00, 4, 0.00, 15000.00, 'Gingee', 'Chromepet', '2303020003', '', '1', 'upload_files/candidate_tracker/75804534297_CURRICULUM VITAE.docx', NULL, '1', '2023-03-02', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have other Exp interested to learn open for TxxampC can be trained kindly check and let me know your inputs', '2', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-02 11:38:00', 1, '2023-03-02 11:41:43', 0, NULL, 1),
(12001, 'Faritha Banu', '4', '9080949181', '', 'faritha1999banu@gmail.com', '1999-12-05', 23, '4', '2', 'Sabura beevi', 'Fresher', 15000.00, 2, 0.00, 15000.00, 'Thiruvottiyur Chennai', 'Chennai', '2303020004', '', '1', 'upload_files/candidate_tracker/15350624045_Faritha Banu - B.E (4).pdf', NULL, '1', '2023-03-02', 0, '', '3', '59', '2023-03-06', 144000.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-02 01:16:05', 60, '2023-03-04 06:05:59', 0, NULL, 1),
(12002, 'R.kalyani', '4', '8667272406', '9176238376', 'kalyanirk711@gmail.com', '2000-08-25', 22, '4', '2', 'RAVINDRAN', 'Plumber', 15000.00, 1, 15000.00, 16000.00, 'THIRUVOTTIYUR CHENNAI', 'THIRUVOTTIYUR CHENNAI', '2303020005', '', '2', 'upload_files/candidate_tracker/56184449062_KALYANI(1).pdf', NULL, '1', '2023-03-02', 0, '', '3', '59', '2023-03-06', 216000.00, '', '5', '1970-01-01', '2', 'Selected for Banu Team yet to confirm the role Staff or Consultant', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '3', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-02 01:16:09', 60, '2023-03-04 06:07:56', 0, NULL, 1),
(12003, 'Poomalai A', '13', '9698450678', '9943690678', 'poomalaianbu136@gmail.com', '2000-06-13', 22, '3', '2', 'Susila Anbalagan', 'Business', 40000.00, 1, 0.00, 20000.00, '123, Gandhi Nagar, Karikadu Pattukkottai - 614601', '123, Gandhi Nagar, Karikadu Pattukkottai - 614601', '2303020006', '', '1', 'upload_files/candidate_tracker/5921107042_Poomalai-IT.pdf', NULL, '1', '2023-03-02', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT Long career gap No basic skills knowledge her sister in IT not open for TxxampC will not sustain', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-02 02:23:20', 1, '2023-03-02 02:31:16', 0, NULL, 1),
(12004, 'Dhiyaneshwaran T', '13', '9500039964', '', 'dhiyanesh0509@gmail.com', '2001-09-05', 21, '2', '2', 'Thiruppathi Kumar L', 'Sales Representative', 14000.00, 2, 0.00, 350000.00, 'Chennai', 'Chennai', '2303030001', '1', '1', 'upload_files/candidate_tracker/21365173542_Resume__.pdf', NULL, '1', '2023-03-03', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Holding an offer for 4LPA with Mphasis,since its taking time to join looking for someother opportunities with 3-3.5 LPA Fresher candidate too', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-03 10:53:55', 85, '2023-03-03 11:15:49', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12005, 'Vaitheeshwarimohan', '13', '9361774406', '7540032623', 'vaitheeshwarimohan@gmail.com', '2001-11-02', 21, '3', '2', 'V. Mohan', 'Business', 20000.00, 1, 0.00, 15.00, 'Cuddalore', 'Chennai', '2303030002', '', '1', 'upload_files/candidate_tracker/57093162645_vaithee7-1.pdf', NULL, '1', '2023-03-04', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'fresher need to train a lot Not open for TxxampC already rejected other offer due to SA', '2', '2', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-03 01:48:12', 1, '2023-03-03 01:56:30', 0, NULL, 1),
(12006, '', '0', '9361756554', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303030003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-03 03:16:27', 0, NULL, 0, NULL, 1),
(12007, 'sathiya priya k', '13', '9361392257', '8248179676', 'sathiyapriyak211@gmail.com', '2002-01-21', 21, '2', '2', 'kalimuthu', 'student', 50000.00, 1, 0.00, 20000.00, 'dindigul', 'chennai vadapalani', '2303030004', '1', '1', 'upload_files/candidate_tracker/82548817761_Sathiya priya all resume.docx', NULL, '1', '2023-03-06', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher no basics in PHP need to train a lot not open for TxxampC not suitable', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-03 06:27:49', 85, '2023-03-06 11:52:06', 0, NULL, 1),
(12008, 'madhavan p', '4', '7708563522', '9894244699', 'madhavanp2000@gmail.com', '2000-07-20', 22, '3', '2', 'Pandurangan v', 'Viewer', 15000.00, 2, 13000.00, 20000.00, 'sholingur', 'sholingur', '2303030005', '', '2', 'upload_files/candidate_tracker/77052712253_Madhavan resume (1).pdf', NULL, '1', '2023-03-04', 15, '', '3', '59', '2023-03-08', 176844.00, '', '5', '1970-01-01', '1', 'Selected for Consultant Role in B2B', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-03 09:22:14', 60, '2023-03-06 03:47:17', 0, NULL, 1),
(12009, 'Ramesh', '4', '7904280905', '9840449893', 'Arrownetcafe03@gmail.com', '1994-03-28', 28, '3', '1', 'Abirami', 'Mba', 100000.00, 1, 0.00, 20000.00, 'Chennai', 'Chennai', '2303040001', '', '1', 'upload_files/candidate_tracker/54868573942_103120000000007917 (1).pdf', NULL, '1', '2023-03-04', 0, '', '4', '53', NULL, 0.00, '', '0', NULL, '1', 'Communication Average not seems to be suitable no sustainability in his previous exp own reference do check and let me know your inputs', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-04 11:12:45', 1, '2023-03-04 11:54:48', 0, NULL, 1),
(12010, 'Sneka Mary', '22', '8838533168', '', 'snekamary75@gmail.com', '2002-05-07', 20, '3', '2', 'Antony Michael Prabhakar', 'Sales Man', 15000.00, 1, 0.00, 15000.00, 'Tirunelveli', 'Vadapalani', '2303050001', '', '1', 'upload_files/candidate_tracker/23475488371_Sneka Mary A Resume.pdf', NULL, '1', '2023-03-13', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '1', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-05 09:04:36', 1, '2023-03-05 09:11:51', 0, NULL, 1),
(12011, 'Susil kumar ck', '11', '9600105386', '9791036620', 'susil99ck@gmail.com', '1999-07-25', 23, '2', '2', 'Kuppuswamy cs', 'Business', 500000.00, 2, 0.00, 25000.00, 'Chrompet - chennai', 'Chrompet- chennai', '2303060001', '1', '1', 'upload_files/candidate_tracker/1833581866_Updated CV.pdf', NULL, '1', '2023-03-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'have 6 months exp in recruitment already holds an offer with several companies min exp 20K will not sustain and not suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 10:17:03', 85, '2023-03-07 10:24:14', 0, NULL, 1),
(12012, 'Titus Praveen', '11', '6369864698', '', 'tituspraveen1201@gmail.com', '2001-02-12', 22, '2', '2', 'Maglin', 'House wife', 240000.00, 1, 20000.00, 25000.00, 'Chennai', 'Chennai', '2303060002', '1', '2', 'upload_files/candidate_tracker/44798795012_Titus Praveen updated resume.docx', NULL, '1', '2023-03-07', 15, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have 6 Months Exp In Recruitment Already Holds An Offer With Several Companies Min Exp 20K Will Not Sustain And Not Suitable', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 10:21:46', 85, '2023-03-07 10:24:27', 0, NULL, 1),
(12013, 'Arafath Nisha', '4', '6382115158', '9344005901', 'Arafathnisha1199@gmail.com', '1996-09-11', 26, '3', '2', 'kuthupdeen', 'tailor', 120000.00, 1, 15.00, 18.00, 'chennai', 'parrys', '2303060003', '', '2', 'upload_files/candidate_tracker/4551863261_Arafath Nisha resume 2023.docx', NULL, '1', '2023-03-06', 0, '', '3', '59', '2023-03-13', 216000.00, '', '5', '1970-01-01', '2', 'Selected for B2B in Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-06 12:12:49', 60, '2023-03-11 05:01:24', 0, NULL, 1),
(12014, 'HARI KRISHNAN.E', '4', '8940390336', '8925674336', 'harielango272@gmail.com', '2002-04-29', 20, '2', '2', 'ELANGOVAN.L', 'FARMER', 10000.00, 1, 0.00, 12000.00, 'Reddipalayam', 'Thanjavur', '2303060004', '1', '1', 'upload_files/candidate_tracker/14289562357_1676561437056Resume (1).pdf', NULL, '1', '2023-03-07', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 12:24:44', 85, '2023-03-07 10:24:01', 0, NULL, 1),
(12015, 'Madhumithra', '11', '9962744735', '', 'mithra.madhuu@gmail.com', '2001-11-09', 21, '2', '2', 'Maheshkumar', 'Bcom', 20000.00, 1, 0.00, 13000.00, 'Venkatachalam street old washernmenpet', 'Venkatachalam street old washernmenpet', '2303060005', '1', '1', 'upload_files/candidate_tracker/20955948213_Madhumithra RE.pdf', NULL, '1', '2023-03-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher for Recruitment need to train alot can give a try for recruitment if she comes back let us try', '6', '1', '', '1', '8', '', '2', '2023-03-09', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 05:07:01', 85, '2023-03-07 10:24:42', 0, NULL, 1),
(12016, 'Bharath.G', '11', '7305857502', '', 'bharathjii1507@gmail.com', '2002-07-15', 20, '2', '2', 'Gangatharan.C', 'Driver', 18000.00, 1, 0.00, 12000.00, '83B velmurugan nagar kolathur chennai-99', '83B Velmurugan Nagar Kolathur Chennai-99', '2303060006', '1', '1', 'upload_files/candidate_tracker/21090525706_BHARATH G resume...pdf', NULL, '1', '2023-03-07', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher not much strong with the basics need to train a lot if he come back with the confirmation for TxxampC let us try', '6', '1', '', '1', '8', '', '2', '2023-03-09', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-06 05:11:21', 85, '2023-03-07 10:21:58', 0, NULL, 1),
(12017, 'Shyam Akash P V', '11', '8778471703', '', 'aa0123akash@gmail.com', '2001-06-01', 0, '3', '2', 'Sasikala', 'Nurse', 16000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303070001', '', '1', 'upload_files/candidate_tracker/85880295171_Resume edited.pdf', NULL, '1', '2023-03-07', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher education yet to complete he is into final sem open for TxxampC but seems doubtful cam e along with friends sustaianability doubts if he comes back let us try', '6', '2', '0', '1', '8', '0', '2', '2023-03-10', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-07 10:31:37', 1, '2023-03-07 10:36:56', 0, NULL, 1),
(12018, 'Saravanan L', '4', '9361058596', '9342008933', 'saravanansrs212@gmail.com', '2000-05-02', 22, '3', '2', 'Linga pandi', 'Own business', 30000.00, 2, 0.00, 20000.00, 'Chennai', 'Chennai', '2303070002', '', '2', 'upload_files/candidate_tracker/73124794593_saravanan Resume 2 (1) (2).pdf', NULL, '1', '2023-03-07', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'have exp HDB looking for IT positions too not open for TxxampC Left without attending the 2nd level B2B interview', '1', '1', '0', '4', '7', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-07 11:31:48', 1, '2023-03-07 11:37:47', 0, NULL, 1),
(12019, 'Tabbrez', '4', '7299680388', '', 'mst31795@gmail.com', '1995-07-31', 27, '2', '2', 'Samadh', 'Leather Technician', 5000.00, 1, 0.00, 20000.00, 'Mylapore', 'Mylapore', '2303070003', '2', '2', 'upload_files/candidate_tracker/13796540980_Tabbrez Resume-1.pdf', NULL, '1', '2023-03-07', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Attitude No graduation have Content writing Exp checked with Reyaz 2nd round and got rejected will not sustain in our other roles', '1', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-07 11:45:47', 85, '2023-03-07 06:36:03', 0, NULL, 1),
(12020, 'Neelakandan Gunasekaran', '23', '6381691103', '', 'gneelakandan99@gmail.com', '1999-04-08', 23, '2', '2', 'Gunasekaran', 'Former', 300000.00, 3, 20000.00, 20000.00, 'Pattukkottai', 'Mathuranthagam', '2303070004', '1', '2', 'upload_files/candidate_tracker/79473476066_G.Neelakandan Resume .pdf', NULL, '1', '2023-03-08', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'No Basics skills just 3 months with 20K seems to be doubtful and will not sustain in our roles not suitable ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-07 12:06:43', 85, '2023-03-08 03:57:13', 0, NULL, 1),
(12021, 'yunanesh', '2', '8825918047', '', 'yuvanesh0075@gmail.com', '1998-10-07', 24, '2', '2', 'balakrishanan', 'police', 35000.00, 2, 0.00, 15000.00, 'chengalpattu', 'Chengalpattu', '2303080001', '1', '1', 'upload_files/candidate_tracker/45760998158_YUVANESH B.pdf', NULL, '1', '2023-03-08', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher No basic skills ideas Can be trained candidate need time to check with his family and confirm Father in Egmore Head Constable Family in Chengalpet need to confirm if he comes back let us try\n', '2', '1', '0', '1', '8', '0', '2', '2023-03-11', '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-03-08 11:51:58', 1, '2023-03-08 12:34:24', 0, NULL, 1),
(12022, 'Snekha k', '22', '6379450694', '9342009011', 'snekha84@gmail.com', '2000-11-09', 22, '2', '2', 'Kathirasen', 'Driver', 8000.00, 1, 22817.00, 25000.00, 'Chennai', 'Chennai', '2303080002', '1', '2', 'upload_files/candidate_tracker/70374392612_RESUME (U) .pdf', NULL, '1', '2023-03-09', 0, '', '4', '69', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Communication Ok fresher for Digital marketing Content Writing having exposure is customer support inside sales but not interested to get back into the same,Can give a try for our Content Writer Profile kindly check and let me know your inputs ', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-08 10:01:55', 85, '2023-03-09 10:12:37', 0, NULL, 1),
(12023, 'Deepalakshmi V', '16', '9384623220', '9361345695', 'deepa01081999@gmail.com', '1999-08-01', 23, '3', '2', 'Vilvamani', 'MTC', 30000.00, 1, 20000.00, 15000.00, 'Chennai', 'Chennai', '2303090001', '', '2', 'upload_files/candidate_tracker/26311344019_Resume.pdf', NULL, '1', '2023-03-09', 0, '', '4', '98', NULL, 0.00, '', '0', NULL, '1', 'Average Communication.. Fresher To Our Role Can Be Trained ..Let Us Try ..', '3', '1', '0', '1', '8', '0', '2', '2023-03-13', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-09 02:01:22', 1, '2023-03-09 02:13:39', 0, NULL, 1),
(12024, 'Dilliganesh P', '16', '9003185702', '', 'Dilliganesh223@gmail.com', '1998-10-15', 24, '3', '2', 'Pallvannan d', 'Eletrition', 40000.00, 1, 23000.00, 15000.00, 'Perambur Chennai', 'Perambur chennai', '2303090002', '', '2', 'upload_files/candidate_tracker/97310481569_Dilliganesh resume new.docx', NULL, '1', '2023-03-09', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'no clarity while talking ...not suit for our process..', '3', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-09 02:08:00', 1, '2023-03-09 02:13:54', 0, NULL, 1),
(12025, 'Nagasanthabai. M. G', '2', '9597271001', '9043692190', 'Nagumurali533@gmail.com', '1999-11-11', 23, '4', '1', 'Gopi. V', 'Customer executive', 25000.00, 0, 0.00, 18000.00, 'Arumbakkam', 'Arumbakkam', '2303090003', '', '1', 'upload_files/candidate_tracker/79190252264_M.G.Naga resume.pdf', NULL, '1', '2023-03-09', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'married xxamp not much comfortable with our txxampc.. ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-09 04:21:59', 1, '2023-03-09 04:32:50', 0, NULL, 1),
(12026, 'Madhavan. A', '31', '9080013969', '', 'madhumadhavan669@gmail.com', '2000-06-08', 22, '2', '2', 'Annamalai/saradha', '5', 15000.00, 0, 0.00, 200000.00, 'Chennai', 'Chennai', '2303090004', '1', '1', 'upload_files/candidate_tracker/92816593023_Madhavan-A-goodcv.com-050323.133050.pdf', NULL, '1', '2023-03-11', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher not much strong in basics he himself telling that he is good in practical knowledge 2nd round interviewed by Manikandan and was not comfortable in our profile will not sustain and not suitable', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-09 06:34:42', 85, '2023-03-13 10:48:08', 0, NULL, 1),
(12027, 'A SHAHITH', '23', '9943674873', '', 'shahithbca301@gmail.com', '1997-09-08', 25, '3', '2', 'Ariff jhan', 'Shop keeper', 10000.00, 1, 0.00, 25000.00, 'Chengam, thiruvannamalai district', 'Pallikaranai, chennai', '2303090005', '', '1', 'upload_files/candidate_tracker/75910896584_Shahith Resume01.pdf', NULL, '1', '2023-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have worked in Bahrain in different domain min exp in IT 10-15K and not much comfort in TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-09 07:18:41', 1, '2023-03-10 12:03:25', 0, NULL, 1),
(12028, 'Mohamed abbas', '4', '9123584162', '7092935198', 'mohamedabbas4162@gmail.com', '1998-01-10', 25, '3', '2', 'Sahul hameed', 'Father', 18000.00, 2, 15000.00, 17000.00, 'Puliyangudi tenkasi', 'Chennai thirumangalam', '2303100001', '', '2', 'upload_files/candidate_tracker/9122040174_mohamed abbas-1.pdf', NULL, '1', '2023-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not suitable and no communication ', '1', '1', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-10 10:38:23', 1, '2023-03-10 01:00:20', 0, NULL, 1),
(12029, 'Pavithran', '31', '9025730913', '8438970190', 'pavithranpavi747@gmail.com', '1997-03-04', 26, '3', '2', 'Venugopal', 'Mechanic', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2303100002', '', '1', 'upload_files/candidate_tracker/74104163320_NewResume3112023.docx', NULL, '1', '2023-03-10', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT have exposure in other domain not much comfirt in TxxampC if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-10 12:28:53', 1, '2023-03-10 12:34:59', 0, NULL, 1),
(12030, 'Ramji', '13', '9080799858', '4424332142', 'ramjirajendran1985@gmail.com', '1985-01-09', 38, '4', '1', 'R Malliga', 'Housewife', 15000.00, 0, 500000.00, 600000.00, 'Chennai', 'Chennai', '2303100003', '', '2', 'upload_files/candidate_tracker/42077352595_Resume%20%286%29.docx', NULL, '1', '2023-03-10', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have PHP skills 6 yrs exp kindly give a task and check', '2', '2', '', '1', '1', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-10 12:33:17', 85, '2023-03-10 07:05:50', 0, NULL, 1),
(12031, 'Sulaima fayaz', '11', '8667071846', '9159935619', 'Fayazsulaiman25@gmail.com', '1998-05-26', 24, '2', '2', 'Sadiq', 'Leather merchant', 50000.00, 0, 12000.00, 18000.00, 'Periyanna maistry street periamet chennai', 'Periyanna maistry street periamet chennai', '2303100004', '1', '2', 'upload_files/candidate_tracker/17050349673_Sulaiman Fayaz (2).docx', NULL, '1', '2023-03-10', 0, '', '3', '59', '2023-03-20', 168000.00, '', '', '2023-03-22', '2', 'Selected for Recruitment with PT only', '6', '1', '', '1', '8', '', '2', '2023-03-13', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-10 03:28:06', 85, '2023-03-18 03:18:50', 0, NULL, 1),
(12032, '', '0', '7904017266', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303100005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-10 04:13:37', 0, NULL, 0, NULL, 1),
(12033, 'Selvaganapathy N', '13', '7871397027', '9994482762', 'selvaganapathy683@gmail.com', '1999-04-15', 23, '3', '2', 'Natarajan N', 'Lab Technician', 50000.00, 1, 0.00, 300000.00, 'Chidambaram', 'Chennai', '2303110001', '', '1', 'upload_files/candidate_tracker/61012666963_selvaganapathy new resume (2).pdf', NULL, '1', '2023-03-11', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher have exp in his core domain have basic knowledge in SQL can give a try for PHP kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-11 11:21:02', 1, '2023-03-11 11:27:54', 0, NULL, 1),
(12034, 'Vignesh babu k', '13', '9843669433', '', 'vinmasvicky@gmail.com', '1998-03-12', 24, '3', '2', 'M. kalimuthu', 'Teacher', 40000.00, 1, 0.00, 3.50, 'PUDUKKOTTAI', 'Vadapalani', '2303110002', '', '1', 'upload_files/candidate_tracker/43970837434_VICKYRE.pdf', NULL, '1', '2023-03-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have exp in his core domain have a basic knowledge in Javascript an keen to learn both father and mum is govt teacher family need is not much sustainability in long run doubts manikandan interviewed and gave a positive feedback on the same', '2', '1', '0', '1', '8', '0', '2', '2023-03-13', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-11 11:21:33', 1, '2023-03-11 11:29:39', 0, NULL, 1),
(12035, 'Nishanth S', '13', '9629925457', '', 'ssnishanths001@gmail.com', '2008-03-11', 0, '3', '2', 'Settu', 'Famer', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303110003', '', '1', 'upload_files/candidate_tracker/1236005671_resume1.pdf', NULL, '1', '2023-03-11', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher have knowledge in SQl Java and open for PHP learning but need time to check and confirm the TxxampC if he comes back let us try', '2', '2', '0', '1', '8', '0', '2', '2023-03-13', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-11 11:22:25', 1, '2023-03-11 11:28:06', 0, NULL, 1),
(12036, 'Bowan Richard', '22', '7305879270', '9710495670', 'richardbbowan@gmail.com', '2001-06-02', 21, '3', '2', 'Boniface', 'Supervisor', 40000.00, 1, 0.00, 18000.00, 'Chennai, perambur', 'Chennai, Perambur', '2303130001', '', '1', 'upload_files/candidate_tracker/17934242121_Resume.pdf', NULL, '1', '2023-03-13', 0, '', '4', '69', NULL, 0.00, '', '0', NULL, '1', 'Communication ok fresher for Digital MArketing can be trained kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 10:15:01', 1, '2023-03-13 10:19:49', 0, NULL, 1),
(12037, 'Prakash M', '13', '7094625535', '9342446250', 'Prakashmeiyanathan@gmail.com', '1999-06-03', 23, '3', '2', 'Meiyanathan.A', 'Agriculture', 10000.00, 2, 0.00, 15000.00, 'Pudukkottai', 'chennai', '2303130002', '', '1', 'upload_files/candidate_tracker/31003934508_prakash new.pdf', NULL, '1', '2023-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC Not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 11:16:19', 1, '2023-03-13 11:22:07', 0, NULL, 1),
(12038, 'Priya', '16', '9789092374', '', 'Spriyamirdhulla1979@gmail.com', '1979-03-31', 43, '3', '1', 'Karthikeyan', 'Business', 30000.00, 0, 20000.00, 25000.00, 'Chennai', 'Chennai', '2303130003', '', '2', 'upload_files/candidate_tracker/28959589915_priya.pdf', NULL, '1', '2023-03-13', 1, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Selected for MIS Gokul final round age around 44 yrs but seems to good to handle the position Need to negotiate on the salary and to proceed with th final move', '3', '2', '0', '1', '8', '0', '2', '2023-03-15', '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 12:05:36', 1, '2023-03-13 12:24:06', 0, NULL, 1),
(12039, '', '0', '9787918774', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303130004', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-13 12:21:54', 0, NULL, 0, NULL, 1),
(12040, 'dhanush', '13', '9710670399', '9080330142', 'rgdhanush2015@gmail.com', '1999-09-26', 23, '3', '2', 'kumar', 'manager', 500000.00, 1, 150000.00, 300000.00, 'senthil nagar seevaram perungudi chennai', 'metha nagar kundrathur chennai', '2303130005', '', '2', 'upload_files/candidate_tracker/96059474030_Dhanush. k.pdf', NULL, '1', '2023-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance he is in final year college will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 12:22:11', 1, '2023-03-13 12:30:20', 0, NULL, 1),
(12041, 'Yugeshwaran', '28', '9500124609', '', 'yugeshwarang@gmail.com', '2000-07-14', 22, '3', '2', 'Gopal', 'Driver', 15000.00, 1, 0.00, 350000.00, '5/50 nethaji street okkiyam thuraipakkam Chennai', 'Chennai', '2303130006', '', '1', 'upload_files/candidate_tracker/712344989_Resume Yugesh.pdf', NULL, '1', '2023-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Too Long distance not interested to go in the Javascript not much comfort in TxxampC not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 12:22:39', 1, '2023-03-13 12:30:22', 0, NULL, 1),
(12042, 'Chittibabu', '4', '9884678470', '7092736042', 'chittibabujohn@gmail.com', '1995-08-15', 27, '2', '2', 'Rajamma', 'Sweeper', 144000.00, 2, 13000.00, 18000.00, 'Ap', 'Thiruvottiyur, chennai', '2303130007', '2', '2', 'upload_files/candidate_tracker/62016013387_Chitti Babu Resume-New.pdf', NULL, '1', '2023-03-13', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'long career Gap not showing much interest on the job long back attended and got rejected on the same will not sustain and handle our pressure', '1', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-13 02:42:49', 1, '2023-03-13 02:47:14', 0, NULL, 1),
(12043, 'S.Divya manohari', '5', '8940759027', '', 'divyaselvaraj77@gmail.com', '1997-07-07', 25, '4', '2', 'J. Selvaraj', 'Agriculture', 20000.00, 1, 18500.00, 28000.00, 'Kadapakkam', 'Chennai', '2303140001', '', '2', 'upload_files/candidate_tracker/10286499260_Divya resume.pdf', NULL, '1', '2023-03-14', 0, '', '3', '59', '2023-03-20', 297696.00, '', '', '2023-04-05', '2', 'Selected for GK Sir team in consultant Role', '5', '1', '4', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-14 10:26:50', 60, '2023-03-20 11:47:38', 0, NULL, 1),
(12044, 'Sarathkumar', '5', '9962469801', '8939451936', 'rohitsarath.cafs@gmail.com', '1996-09-17', 26, '3', '2', 'Annaduri', 'Business man', 30000.00, 1, 25000.00, 25000.00, 'Royapuram', 'Royapuram', '2303140002', '', '2', 'upload_files/candidate_tracker/71060262855_Rohit.pdf', NULL, '1', '2023-03-14', 30, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Asked him to submit the previous exp documents but nothing he has and also he is our exp employee Earlier feedback was not much good This is Banu reference', '5', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-14 10:39:22', 1, '2023-03-14 11:19:55', 0, NULL, 1),
(12045, 'Cyrus emmanuel', '4', '8122978276', '8778201359', 'cyrusemmanuel1289@gmail.com', '1999-07-01', 23, '3', '2', 'Mercy', 'Teacher', 20000.00, 1, 17000.00, 19000.00, 'Otteri', 'Chennai', '2303140003', '', '2', 'upload_files/candidate_tracker/51472897066_RESUME-G.CYRUS EMMANUEL.pdf', NULL, '1', '2023-03-14', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'We offered him the package but candidate didnt turn with his confirmation not responded the calls too Banu Reference through Ex employee who appeared again', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-14 10:41:22', 1, '2023-03-14 10:59:00', 0, NULL, 1),
(12046, 'SUKITHA J', '4', '8825837849', '7845896398', 'Sukithajawahar2000@gmail.com', '1999-10-22', 23, '3', '2', 'Jawahar l', 'Farmer', 20000.00, 1, 15000.00, 17000.00, 'Thoothukudi', 'St Thomas Mount', '2303140004', '', '2', 'upload_files/candidate_tracker/58024421998_Resume-Sukitha-2.pdf', NULL, '1', '2023-03-14', 15, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'HAving 6 months experience, pronounciation problem', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-14 10:42:24', 1, '2023-03-14 11:29:09', 0, NULL, 1),
(12047, 'M. Suganthi', '4', '9345008628', '8778201359', 'Suganthymoorthy2313@gamil.com', '1998-08-13', 24, '3', '2', 'T. Moorthy', 'Farmer', 20000.00, 1, 15000.00, 16000.00, 'No 2/115 voc street kanniyammanpet', 'No 2/115 voc street kanniyammanpet', '2303140005', '', '2', 'upload_files/candidate_tracker/17567509966_imgtopdf_1403231114041 (1).pdf', NULL, '1', '2023-03-14', 15, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'We Offered Him The Package But Candidate Didnt Turn With His Confirmation Not Responded The Calls Too Banu Reference Through Ex Employee Who Appeared Again', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-14 10:48:31', 1, '2023-03-14 11:18:39', 0, NULL, 1),
(12048, 'P.preethika Mary', '4', '8072263733', '8939682028', 'cutepapapreethi1001@gmail.com', '2002-09-01', 20, '2', '2', 'Mary Cristina.p', 'Housewife', 13000.00, 1, 14000.00, 14000.00, 'Chennai', 'Chennai', '2303140006', '1', '2', 'upload_files/candidate_tracker/48171004932_103120000000007917 (1).pdf', NULL, '1', '2023-03-14', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'has 5m of exp in sales average in convincing .. ', '1', '2', '', '1', '1', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-14 11:05:06', 85, '2023-03-14 05:20:25', 0, NULL, 1),
(12049, 'Shamitha Shri.S', '11', '9840950393', '9940590282', 'shamitha.222001@gmail.com', '2001-08-22', 21, '2', '2', 'K.Sivakumar', 'Cement marketing', 45000.00, 2, 0.00, 20000.00, 'Nungambakkam', 'Nungambakkam', '2303140007', '1', '1', 'upload_files/candidate_tracker/25509907961_Shamithacv1.pdf', NULL, '1', '2023-03-14', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher looking for recruitment can be trained in our roles Need time to give her confirmation on TxxampC if she comes back let us try', '6', '1', '', '1', '8', '', '2', '2023-03-15', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-14 11:06:57', 85, '2023-03-14 05:19:40', 0, NULL, 1),
(12050, '', '0', '9092584964', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303140008', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-14 11:33:19', 0, NULL, 0, NULL, 1),
(12051, 'Madhubala S', '5', '9884938782', '', 'madhubala1296@gmail.com', '1996-02-01', 27, '1', '2', 'Sankar p', 'Farmer', 30000.00, 2, 21000.00, 23000.00, 'Ramanathapuram', 'Chennai', '2303140009', '', '2', 'upload_files/candidate_tracker/71445438385_103120000000007917 (1).pdf', NULL, '1', '2023-03-14', 20, 'Jobs', '5', '71', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'rejected', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-14 11:51:58', 85, '2023-03-14 01:06:11', 0, NULL, 1),
(12052, 'Rishith', '11', '8939635360', '', 'cmrishith2001@gmail.com', '2001-03-12', 22, '2', '2', 'Madan kumar', 'Commission agent', 20000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2303140010', '1', '1', 'upload_files/candidate_tracker/48798245697_Curriculum vitae (CV).pdf', NULL, '1', '2023-03-15', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Long Career Gap Salary Exp is high looking much for banking exams will not sustain and handle our work pressure', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-14 04:45:35', 85, '2023-03-15 10:52:07', 0, NULL, 1),
(12053, 'Keerthana S', '2', '6369915157', '', 'skeerthana0072001@gmail.com', '2001-06-20', 21, '2', '2', 'Selvaraj T', 'Warger', 18000.00, 2, 0.00, 15000.00, '123, Mangapuram main road', 'Chennai', '2303150001', '1', '1', 'upload_files/candidate_tracker/55711825346_K.pdf', NULL, '1', '2023-03-15', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-15 10:49:45', 85, '2023-03-15 11:26:30', 0, NULL, 1),
(12054, 'Rajkumar J', '2', '6382572627', '', 'jrajkumar806@gmail.com', '2000-09-26', 22, '2', '2', 'Jeyakumar K', 'Wager', 75000.00, 1, 0.00, 15000.00, '41B/1, Keelapatti last street, srivilliputtur.', 'Chennai', '2303150002', '1', '1', 'upload_files/candidate_tracker/63862836174_18ME030 Rajkumar. J ME8694.pdf', NULL, '1', '2023-03-15', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-15 10:51:04', 85, '2023-03-15 11:26:46', 0, NULL, 1),
(12055, 'Parameswari V', '23', '9344019908', '7639490756', 'v.parameswari2001@gmail.com', '2001-06-17', 21, '2', '2', 'Velusamy', 'Painting Contractor', 30000.00, 2, 0.00, 20000.00, 'Cuddalore', 'Chennai', '2303150003', '1', '1', 'upload_files/candidate_tracker/37219051579_Parameswari resume . pdf.pdf', NULL, '1', '2023-03-15', 0, '', '4', '27', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', '2', '1', '', '1', '1', '', '2', '1970-01-01', '2', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-15 11:48:24', 85, '2023-03-15 05:19:42', 0, NULL, 1),
(12056, 'Keerthana M', '14', '7639490756', '9344740276', 'kubhu5500@gmail.com', '2001-12-27', 0, '3', '2', 'Sivagami', 'Farmer', 12000.00, 0, 15000.00, 20000.00, 'Chennai', 'Chennai', '2303150004', '', '1', 'upload_files/candidate_tracker/62245402356_KEERTHANA MURUGAN.pdf', NULL, '1', '2023-03-15', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher Need To Train In PHP Interested To Learn Can Give A Try For Our Role Kindly Check Andlet Me Know Your Inputs', '2', '2', '0', '1', '1', '0', '2', NULL, '2', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-03-15 11:54:43', 1, '2023-03-15 11:59:12', 0, NULL, 1),
(12057, 'Pavithra.s', '4', '7604997924', '9176435761', 'Pl1503865@gamil.com', '1996-07-27', 26, '4', '1', 'G.lakshminathan', 'Famer', 10000.00, 1, 10000.00, 20000.00, 'Pallikarani', 'Pallikarani', '2303150005', '', '2', 'upload_files/candidate_tracker/10617607642_Resume_Pavithra.l_Format1.pdf', NULL, '3', '2023-03-15', 2, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Communication seems not much active will not handle our work pressure not suitable', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, 'H1002', '0', NULL, NULL, NULL, 1, '2023-03-15 01:56:23', 1, '2023-03-15 02:05:09', 0, NULL, 1),
(12058, 'Aakash kumar.M', '17', '9884706164', '8608457858', 'miaaaku36@gmail.com', '2000-05-03', 22, '1', '1', 'Subhashini.A', 'House wife', 60000.00, 2, 30000.00, 35000.00, 'Chennai', 'Chennai', '2303150006', '', '2', 'upload_files/candidate_tracker/93090110942_DOC-20230308-WA0004..pdf', NULL, '1', '2023-03-15', 0, '55580', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Too Long Distance Fresher for Telesales only field exp will not sustain', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-15 03:05:52', 1, '2023-03-15 03:16:10', 0, NULL, 1),
(12059, 'DEVA G', '17', '7338954544', '9789859393', 'devaganapathy1@gmail.com', '1998-07-16', 24, '1', '2', 'HARI', 'IT', 50000.00, 2, 30000.00, 35000.00, 'Kattankulathur', 'Kattankulathur', '2303150007', '', '2', 'upload_files/candidate_tracker/7598239306_Deva Resume New.pdf', NULL, '1', '2023-03-15', 0, '55580', '5', '59', NULL, 0.00, '', '0', NULL, '1', ' Too Long Distance Fresher For Telesales Only Field Exp Will Not Sustain', '5', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-15 03:06:22', 1, '2023-03-15 03:19:50', 0, NULL, 1),
(12060, 'Cheran c', '17', '7708447327', '9080416208', 'cheran091@gmail.com', '1990-04-15', 32, '1', '1', 'Vidya', 'Teacher', 50000.00, 5, 48700.00, 52000.00, 'Sriperumbudur', 'Sriperumbudur', '2303150008', '', '2', 'upload_files/candidate_tracker/56398414658_DOC-20230302-WA0002..pdf', NULL, '1', '2023-03-15', 0, '55580', '5', '31', NULL, 0.00, '', '0', NULL, '1', 'okay candidate. But dont have relevant industry experience and also expecting higher package.', '5', '2', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-15 03:06:38', 1, '2023-03-15 03:17:27', 0, NULL, 1),
(12061, 'Sathya Priya V M', '14', '9677753077', '', 'sathyapriyamuthu18@gmail.com', '2001-06-14', 21, '1', '2', 'K. Veeraputhiran', 'Grocery shop', 500000.00, 1, 0.00, 15000.00, 'Rajapalayam, viruthunagar district', 'Chennai', '2303160001', '', '1', 'upload_files/candidate_tracker/88656355677_Sathya Priya Resume Fresher MCA .pdf', NULL, '1', '2023-03-16', 0, '2303160001', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Yet to complete her graduation no basics in PHP need to train if she come back with TxxampC will check India First Veeramani reference\n', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-16 10:49:45', 1, '2023-03-16 10:57:21', 0, NULL, 1),
(12062, 'Sathishkumar.v', '4', '8838337912', '7010364821', 'sathishkumar09654@gmail.com', '1999-05-18', 23, '3', '2', 'Vignesh.p', 'Cooli', 20000.00, 1, 14000.00, 15000.00, 'No 158 rajangam Street vysarpadi chen-39', 'Door No 17/7 Jagadambal street perambure Chen-11', '2303160002', '', '2', 'upload_files/candidate_tracker/90580542549_Resume_Sathish_Format1.pdf', NULL, '1', '2023-03-16', 1, '', '4', '53', NULL, 0.00, '', '0', NULL, '2', 'Have Exp in Calling CARE Health insurance but seems to be slow pressure handling doubts a lot kindly check and let me know your inputs', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-16 11:21:57', 1, '2023-03-16 11:35:13', 0, NULL, 1),
(12063, '', '0', '6369535428', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303160003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-16 06:12:10', 0, NULL, 0, NULL, 1),
(12064, 'Saravana kumar durai p', '14', '9003302039', '6382716672', 'Saravananpalani401@gmail.com', '1996-07-13', 26, '4', '2', 'Palani k', 'Retired', 40000.00, 2, 0.00, 16000.00, 'Salem', 'Velacherry, chennai.', '2303170001', '', '1', 'upload_files/candidate_tracker/71093334561_Saravanan Updated resume.pdf', NULL, '1', '2023-03-17', 0, '', '1', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '1', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-17 10:06:02', 85, '2023-03-17 11:32:26', 0, NULL, 1),
(12065, 'Manikandan Rajendran', '31', '8754334715', '8778729341', 'manikandanmech8754@gmail.com', '1999-08-07', 23, '3', '2', 'S.Rajendran', 'Vegetables shop', 25000.00, 2, 0.00, 200000.00, 'Devakottai', 'Chennai', '2303170002', '', '1', 'upload_files/candidate_tracker/58123276624_ManiResume.pdf', NULL, '1', '2023-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher no t much strong with the basics not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-17 12:14:15', 1, '2023-03-17 12:18:13', 0, NULL, 1),
(12066, 'Sankar ganesh R', '31', '9655961420', '9790067696', 'sankarganesh665@gmail.com', '1998-04-30', 24, '3', '2', 'Jayalakshmi R', 'Home maker', 8000.00, 0, 0.00, 15000.00, 'AVUDAIYARKOIL, Pudukkottai -614618', 'Mogappair West', '2303170003', '', '1', 'upload_files/candidate_tracker/82225885498_Resume_sankar.pdf', NULL, '1', '2023-03-17', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With The Basics Not Open For TxxampC Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-17 12:15:35', 1, '2023-03-17 12:20:39', 0, NULL, 1),
(12067, 'Kavibharathi', '4', '9363100532', '7397567454', 'kavibharathiond@gmail.com', '2000-12-10', 22, '2', '2', 'Elangovan', 'Tailoring', 25000.00, 2, 13000.00, 11000.00, 'orathanadu', 'orathanadu', '2303170004', '1', '2', 'upload_files/candidate_tracker/5971645173_Kavibharathi.pdf', NULL, '1', '2023-03-18', 20, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '2', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-17 12:22:20', 85, '2023-03-18 02:56:14', 0, NULL, 1),
(12068, 'Manjunathan', '16', '6369690144', '9790934273', 'Manjunathanm11191@gmail.com', '1991-01-11', 32, '2', '1', 'Mani G', 'House keeping work', 20000.00, 1, 16000.00, 16000.00, 'Tiruvannamalai', 'Chennai', '2303170005', '1', '2', 'upload_files/candidate_tracker/63093988602_1644495635214_1644495628687_new resume (1).pdf', NULL, '1', '2023-03-17', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'No Communication will not sustain and handle our work pressure not suitable ', '3', '2', '', '1', '8', '', '2', '1970-01-01', '2', '5', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-17 12:43:53', 85, '2023-03-17 03:48:05', 0, NULL, 1),
(12069, 'R. Keerthana', '4', '7708647352', '8300919787', 'rkkerthana64@gmail.com', '2000-01-30', 23, '2', '2', 'M. Ramesh', '-', 20.00, 0, 0.00, 8.00, 'Papanadu', 'Papanadu', '2303170006', '1', '1', 'upload_files/candidate_tracker/83894892059_KIRTHANA TTT.pdf.PDF', NULL, '1', '2023-03-18', 0, '', '1', '74', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '1', '1', '', '4', '5', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-17 12:53:47', 85, '2023-03-18 02:56:27', 0, NULL, 1),
(12070, '', '0', '7358323078', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303170007', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-17 01:27:12', 0, NULL, 0, NULL, 1),
(12071, 'hiba fathima', '11', '7760167712', '', 'mirzahibafathima@gmail.com', '1993-09-23', 29, '4', '1', 'Mir Hassan abbas', 'HR manager', 50000.00, 1, 22000.00, 28000.00, 'Chennai', 'Royapettah', '2303170008', '', '2', 'upload_files/candidate_tracker/79557120628_Hiba New updated CV.pdf', NULL, '1', '2023-03-17', 1, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Looking for Recruiter role no local language and the salary exp is very high will not sustain in our roles', '6', '2', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-17 02:55:50', 1, '2023-03-17 03:07:07', 0, NULL, 1),
(12072, 'Selva Kumar k', '13', '8508082926', '', 'selvesselva12165@gmail.com', '1999-12-06', 23, '4', '2', 'Kuppu Samy k', 'Software developer', 10000.00, 1, 0.00, 200000.00, 'Tiruppur', 'Velachery', '2303180001', '', '1', 'upload_files/candidate_tracker/25300760695_Selva Kumar.pdf', NULL, '1', '2023-03-18', 0, '', '3', '59', '2023-03-20', 120000.00, '', '3', '2024-04-29', '2', '3 months 6K then 3 months 8K then 10-15K 3yrs SA', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-18 10:11:44', 60, '2023-04-19 04:37:20', 0, NULL, 1),
(12073, 'Madhumitha.S', '13', '6374056310', '8148848858', 'Sakthimathu50@gmail.com', '2002-05-18', 20, '4', '2', 'Sakthivel', 'Driver', 10000.00, 1, 0.00, 15000.00, 'Kovilpatti', 'Chennai', '2303180002', '', '1', 'upload_files/candidate_tracker/28119187280_Madhu Resume-1.pdf', NULL, '1', '2023-03-18', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '2', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-18 11:03:47', 1, '2023-03-18 11:59:05', 0, NULL, 1),
(12074, 'Jaffar sadiq ali M', '11', '9791953945', '9940231506', 'Jaffaralikhan8633@gmail.com', '1995-12-17', 27, '4', '2', 'Madhina Begum M', 'House wife', 10000.00, 1, 0.00, 17000.00, 'Royapettah chennai', 'Royapettah chennai', '2303180003', '', '2', 'upload_files/candidate_tracker/78922074563_u8xmq-9b7wc.pdf', NULL, '1', '2023-03-18', 0, '', '3', '59', '2023-03-20', 120000.00, '', '', '2023-03-22', '1', 'Selected for Reruitment interviewed by Gokul with the commitment for 6 months 1.2 LPA then based on performance 1.8 to 2 LPA', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 11:07:33', 1, '2023-03-18 11:27:31', 0, NULL, 1),
(12075, 'M.raghul', '13', '7904758773', '', 'raghuljagadeesh23@gmail.com', '2000-11-23', 22, '3', '2', '13c/70 Gopal street perambur chennai 39', 'Labour work', 25000.00, 1, 0.00, 20000.00, 'Perambur', 'perambur', '2303180004', '', '1', 'upload_files/candidate_tracker/16879052898_raghul(resume).pdf', NULL, '1', '2023-03-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 11:51:17', 1, '2023-03-18 11:57:10', 0, NULL, 1),
(12076, 'GOBINATH', '13', '9344016255', '8940061078', 'ggopinath37745@gmail.com', '1999-10-20', 23, '3', '2', 'Dhandapani', 'Mason', 30000.00, 1, 0.00, 25000.00, 'Ambattur', 'Ambattur', '2303180005', '', '1', 'upload_files/candidate_tracker/19489166898_GOBINATH.D RESUME .pdf', NULL, '1', '2023-03-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 11:52:39', 1, '2023-03-18 12:24:26', 0, NULL, 1),
(12077, 'ANEESH KUMAR', '13', '6382103859', '9514524111', 'aneee020@gmail.com', '2001-02-02', 22, '3', '2', 'Ragavan', 'Civil', 15000.00, 0, 0.00, 20000.00, 'No.209 thirukkovil salai balaji nagar pattabiram', 'Pattabiram', '2303180006', '', '1', 'upload_files/candidate_tracker/41087960014_Aneesh Resume-1.docx', NULL, '1', '2023-03-18', 0, '', '10', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 11:53:31', 1, '2023-03-18 11:59:31', 0, NULL, 1),
(12078, 'R . Gomathy', '4', '9344089558', '', 'gomathyram2021@gmail.com', '2001-09-02', 21, '3', '2', 'Ramadoss', 'Driver', 30000.00, 2, 11000.00, 11000.00, ', naalukaal mandapam, Thanjavur, 613009', 'naalukaal mandapam, Thanjavur , 613009', '2303180007', '', '2', 'upload_files/candidate_tracker/53837400286_resume.docx', NULL, '1', '2023-03-18', 20, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 12:12:48', 1, '2023-03-18 12:45:04', 0, NULL, 1),
(12079, 'R. Kàmalí', '4', '9360279282', '', 'kamaliravi2021@gmail.com', '2000-11-05', 22, '3', '2', 'N. Ramasamy', 'Cloth bussiness', 10000.00, 1, 0.00, 12000.00, 'Melàvethí kàmachan ammañ Kovil Opposite thànjavur', 'Mélavethi kàmachan Amman Kovil opposite thanjavur', '2303180008', '', '2', 'upload_files/candidate_tracker/92624317967_KAMALÍ RESUME-compressed.pdf', NULL, '1', '2023-03-18', 1, '', '1', '74', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 12:12:55', 1, '2023-03-18 12:38:48', 0, NULL, 1),
(12080, '', '0', '9334089558', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303180009', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-18 12:31:08', 0, NULL, 0, NULL, 1),
(12081, 'Mohammed irfan T', '4', '8098079154', '9940669616', 'irfankalimiaamiri786@gmail.com', '2002-10-17', 20, '3', '2', 'Logaiyama', 'P. A of doctor', 20000.00, 2, 1.20, 15000.00, 'Triplicane', 'Chennai', '2303180010', '', '2', 'upload_files/candidate_tracker/35125035281_IMG_20230315_020909.pdf', NULL, '1', '2023-03-20', 3, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-18 05:08:52', 1, '2023-03-20 03:59:26', 0, NULL, 1),
(12082, 'Varalakshmi A', '11', '6369264367', '8248871127', 'varsha06081999@gmail.com', '1999-08-06', 23, '2', '2', 'Arumugasamy B', 'Labour', 20000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303200001', '1', '1', 'upload_files/candidate_tracker/2918148058_TRY Resume .pdf', NULL, '1', '2023-03-20', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average looking for recruitment but not much suits for the role will not handle our work pressure', '6', '1', '', '1', '8', '', '2', '1970-01-01', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-20 10:46:47', 85, '2023-03-20 10:55:25', 0, NULL, 1),
(12083, 'SNEHA.R', '6', '9962616395', '8939054482', '11bbb069sneha.r@gamil.com', '2001-12-15', 21, '3', '2', 'MALANI', 'Cooli', 8000.00, 1, 13000.00, 14000.00, 'No:19 1st line Neval haspital road periyamet Ch -3', 'No:19 1st Line Neval Haspital Road Periyamet Ch -3', '2303200002', '', '2', 'upload_files/candidate_tracker/41921791670_s 3.pdf', NULL, '1', '2023-03-20', 10, '', '3', '59', '2023-06-01', 164208.00, '', '', '1970-01-01', '2', 'Selected for Banu Team', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-20 10:57:44', 85, '2023-03-21 04:03:01', 0, NULL, 1),
(12084, 'DEEPA LAKSHMI', '4', '8925623546', '9360286515', 'babystardeepa115@gmail.com', '2001-11-14', 21, '3', '2', 'VELAGANNI.A', 'HOUSE WIFE', 15000.00, 1, 15000.00, 14000.00, 'NO:8/15 N.H.road 6th Street periyamet Chennai -3', 'NO:8/15 N.H.Road 6th Street Periyamet Chennai -3', '2303200003', '', '2', 'upload_files/candidate_tracker/53803165613_Resume_Deepa lakshmi.A_Format1.pdf', NULL, '1', '2023-03-20', 0, '', '3', '59', '2023-03-23', 164208.00, '', '', '2023-03-28', '2', 'Selected for B2B Consultant Role', '1', '1', '1', '1', '8', '', '2', '1970-01-01', '1', '1', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-20 10:57:53', 60, '2023-03-21 06:14:46', 0, NULL, 1),
(12085, 'Keerthana.s', '4', '9514338336', '8608899779', 'Keerthanasan26@gmail.com', '2002-06-02', 20, '3', '2', 'M.santha kumar', 'Cooli', 13000.00, 1, 14500.00, 15000.00, 'No.3\'A ponnan street 3td lane purasaiwalkam ch-7', 'No.3\'A Ponnan Street 3td Lane Purasaiwalkam Ch-7', '2303200004', '', '2', 'upload_files/candidate_tracker/18100251005_Resume_Keerthana s_Format1.pdf', NULL, '1', '2023-03-20', 0, '', '3', '59', '2023-03-23', 176844.00, '', '', '2023-03-28', '2', 'Selected for B2B Consultant Role ', '1', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '', NULL, NULL, NULL, 1, '2023-03-20 11:00:06', 1, '2023-03-20 11:17:14', 0, NULL, 1);
INSERT INTO `cw_candidate_tracker` (`prime_candidate_tracker_id`, `candidate_name`, `post_applied_for`, `mobile_number`, `alternate_number`, `email_id`, `date_of_birth`, `age`, `applied_by`, `marital_status`, `father_or_husband_name`, `occupation`, `income`, `no_of_siblings`, `current_salary`, `expected_salary`, `permanent_location`, `current_location`, `candidate_code`, `consultancy`, `employee_type`, `sts_resume`, `interview_date`, `interview_type`, `date_of_available`, `notice_period`, `employee_code`, `candidate_status`, `interviewer`, `date_of_joining`, `salary_commited`, `interview_time`, `selected_status`, `abs_or_ter_date`, `bike`, `interviewer_remarks`, `department`, `dob_exist`, `company`, `company_location`, `company_branch`, `resend_mail`, `inc`, `ncd`, `interview_slot`, `channel_name`, `hr_remark`, `recruiter_remark`, `recruiter`, `enroll_reason`, `level_1`, `level_2`, `exp_doj`, `trans_created_by`, `trans_created_date`, `trans_updated_by`, `trans_updated_date`, `trans_deleted_by`, `trans_deleted_date`, `trans_status`) VALUES
(12086, 'jerry champbell', '11', '9941896563', '', 'jerrychamp97@gmail.com', '1997-01-20', 26, '3', '2', 'johnson', 'self employef', 35000.00, 1, 16500.00, 19500.00, 'egmore', 'egmore', '2303200005', '', '2', 'upload_files/candidate_tracker/95186806642_JERRY CHAMPBELL LOBO J.pdf', NULL, '1', '2023-03-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'has 8m of exp in Recruitment..communication good.. sustainbility doubts.. holding one offer and sal expt high.', '6', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 11:35:13', 1, '2023-03-20 11:39:06', 0, NULL, 1),
(12087, 'ajay kumar l', '11', '8189910500', '', 'ajaygames99@gmail.com', '1999-11-30', 23, '3', '2', 'loganathan m', 'assistant in anna university', 35000.00, 1, 21500.00, 25000.00, 'chennai', 'chennai', '2303200006', '', '2', 'upload_files/candidate_tracker/80484081018_Ajay_CV.pdf', NULL, '1', '2023-03-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'has 1y3m of exp as a hR Executive . fresher to our role..sal expt high and he not ok with our txxampc... ', '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 11:48:23', 1, '2023-03-20 11:55:06', 0, NULL, 1),
(12088, 'keerthana s', '16', '9962012770', '8939073640', 'keerthisundar158@gmail.com', '2000-10-07', 22, '3', '1', 'rangasamy r', 'painter', 14000.00, 1, 0.00, 13000.00, 'sharma nagar', 'perambur', '2303200007', '', '1', 'upload_files/candidate_tracker/87802073151_KEERTHANA S resume.docx', NULL, '1', '2023-03-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Looking for backend but no communication will not sustain in our roles not suitable', '3', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 12:24:09', 1, '2023-03-20 12:32:47', 0, NULL, 1),
(12089, 'Kaviya', '4', '7358499633', '', 'Kaviya12sk@gmail.com', '2000-12-12', 22, '3', '2', 'Shankar', 'Fisherman', 15000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303200008', '', '1', 'upload_files/candidate_tracker/40121523883_Resume-Kaviya.pdf', NULL, '1', '2023-03-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for Calling not suitable will not sustain', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 12:54:01', 1, '2023-03-20 01:14:03', 0, NULL, 1),
(12090, 'Ashok', '14', '6383642455', '', 'Anbalaganashok2455@gmail.com', '2001-06-08', 21, '3', '2', 'Anbalagan', 'Farmer', 20000.00, 2, 0.00, 20000.00, 'Panruti', 'Chennai', '2303200009', '', '1', 'upload_files/candidate_tracker/12063520476_Ashok\'s Resume.pdf', NULL, '1', '2023-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 12:56:12', 1, '2023-03-20 01:01:16', 0, NULL, 1),
(12091, '', '0', '7708116003', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303200010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-20 12:56:13', 0, NULL, 0, NULL, 1),
(12092, 'Mohammed ajiwath N', '14', '7708471299', '', 'mohammedajiwath12@gmail.com', '1999-12-12', 23, '3', '2', 'Noor Mohammed', 'Business', 50000.00, 2, 0.00, 18000.00, 'Chennai', 'Tambaram', '2303200011', '', '1', 'upload_files/candidate_tracker/16408976593_mohammed ajiwath n (1).pdf', NULL, '1', '2023-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 12:57:17', 1, '2023-03-20 01:08:40', 0, NULL, 1),
(12093, 'Monishkumar', '4', '9092172740', '9884838194', 'monishkumar200117@gmail.com', '2001-12-08', 21, '4', '2', 'Ranganathan', 'Tailor', 18000.00, 1, 0.00, 13000.00, '6/7 narayanan Street ayanavaram Chennai 23', '6/7 narayanan Street ayanavaram Chennai 23', '2303200012', '', '1', 'upload_files/candidate_tracker/58456919944_MONISH KUMAR R CV Latest 2.pdf', NULL, '1', '2023-03-20', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Need to open a lot sounding low for the profile will not sustain and not suitable', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 01:14:18', 1, '2023-03-20 01:20:57', 0, NULL, 1),
(12094, 'Hemalatha.k', '4', '6381247670', '8680934641', 'hemakrishnamoorthy151@gmail.com', '2001-11-08', 21, '4', '2', 'Krishnamoorthy', 'Driver', 100000.00, 2, 0.00, 13000.00, 'Pudupet', 'Pudupet', '2303200013', '', '1', 'upload_files/candidate_tracker/59714246455_hema resume.docx', NULL, '1', '2023-03-20', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '1', '2', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 01:33:39', 1, '2023-03-20 01:40:33', 0, NULL, 1),
(12095, 'Hemalatha.k', '4', '6380314642', '8680934641', 'hemakrishnamoorthy151@gmail.com', '2001-11-08', 0, '4', '2', 'Krishnamoorthy', 'Driver', 100000.00, 2, 0.00, 13000.00, 'Pudupet', 'Pudupet', '2303200014', '', '1', 'upload_files/candidate_tracker/55340886526_chandrumaran.docx', NULL, '1', '2023-03-20', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'fresher to our role sal expt high', '1', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 01:43:22', 1, '2023-03-20 01:48:07', 0, NULL, 1),
(12096, 'VIKASH UDAYAVANAN', '6', '7092077014', '8939898422', 'vikashvanan07@gmail.com', '2002-03-12', 21, '1', '2', 'ANANDHI U', 'HOUSE WIFE', 15000.00, 1, 0.00, 17500.00, 'NEW WASHERMEN PET', 'TONDIARPET', '2303200015', '', '2', 'upload_files/candidate_tracker/62853858894_DOC-20230316-WA0007..pdf', NULL, '3', '2023-03-20', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '5050 profile sounding low for our roles internal reference kindly check and let me know your inputs', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-20 02:08:04', 85, '2023-03-21 04:27:40', 0, NULL, 1),
(12097, 'Sharon Vini', '6', '8056256518', '', 'Sharonvini133@gmail.com', '2001-11-19', 21, '3', '2', 'Selvam', 'Velder', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2303200016', '', '1', 'upload_files/candidate_tracker/65664562514_Document of Sharon vini resum.docx', NULL, '1', '2023-03-20', 0, '', '4', '88', NULL, 0.00, '', '0', NULL, '2', 'has 3m of exp in renewals.. good in convincing skills.. sustainbility doubts .. need to check .. kindly review and update your inputs.', '5', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-20 02:34:44', 1, '2023-03-20 02:43:14', 0, NULL, 1),
(12098, 'R.swetha', '6', '9176794597', '', 'Shwetha.charu2017@gmail.com', '2001-05-02', 21, '4', '2', 'S.Rajan', 'Printer', 100000.00, 2, 0.00, 13000.00, 'Aminjikarai, chennai', 'Aminjikarai', '2303200017', '', '1', 'upload_files/candidate_tracker/5181675043_Shwetha Resume, Aug, 2022.pdf', NULL, '1', '2023-03-20', 0, '', '4', '88', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '5050 Profile muh focused for non voice internal team reference open for Calling too kindly check and let me know your inputs', '5', '1', '', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-20 02:35:16', 85, '2023-03-21 04:06:36', 0, NULL, 1),
(12099, 'Joel Reubenraj. C', '4', '7305346290', '9444265628', 'jreubenraj@gmail.com', '2002-09-27', 20, '3', '2', 'Charles Kanakaraj', 'Chief Accountant', 40000.00, 1, 0.00, 25000.00, 'Aminjikarai', 'Aminjikarai', '2303210001', '', '1', 'upload_files/candidate_tracker/42063506352_DOC-20230316-WA0015. (1).pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Attended Job Fair and much focused with Teaching domain will not sustain more than a month just for office exposure he is looking but a good and neat candidate', '1', '2', '', '1', '3', '', '2', '1970-01-01', '1', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-21 10:00:10', 85, '2023-03-21 10:26:08', 0, NULL, 1),
(12100, 'Goutham R J', '13', '9080274341', '', 'gouthamchandran785@gmail.com', '1999-09-06', 23, '3', '2', 'Jayachandran', 'Business(retail)', 10000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303210002', '', '1', 'upload_files/candidate_tracker/21325533431_Resume1.pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Fresher Career Gap not much strong with the basics will not sustain and not open for Terms and conditions', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-21 10:02:57', 85, '2023-03-21 10:23:59', 0, NULL, 1),
(12101, 'Kaviyarasan k', '13', '6380803143', '9719752369', 'skkaviyarasan2001@gmail.com', '2001-09-28', 21, '2', '2', 'Nagarathinam k', 'Null', 10000.00, 3, 0.00, 15000.00, 'Chennai', 'Chennai', '2303210003', '1', '1', 'upload_files/candidate_tracker/48412506371_DOC-20230310-WA0010.pdf', NULL, '1', '2023-03-21', 0, '', '3', '59', '2023-03-22', 120000.00, '', '4', '2023-04-03', '1', '3 months 6K then 3 months 8K then 10-15K 3yrs SA', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-21 10:26:31', 60, '2023-04-19 04:39:14', 0, NULL, 1),
(12102, 'Keerthana.A', '13', '7305310166', '9710472552', 'keerthuebi2001@gmail.com', '2001-03-26', 21, '3', '2', 'Arasa Kumar', 'Cooli', 15000.00, 1, 0.00, 10.00, 'Chennai', 'Chennai', '2303210004', '', '1', 'upload_files/candidate_tracker/77978285453_keerthana res (1).pdf', NULL, '1', '2023-03-21', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '2', 'Fresher 5050 profile have basic knowledge can give a try kindly check and let me know your inputs', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:05:13', 1, '2023-03-21 11:11:27', 0, NULL, 1),
(12103, 'Magesh B', '13', '9941392334', '9500196179', 'magesh.b2210@gmail.com', '2000-10-22', 22, '3', '2', 'Balakrishnan', 'Manager in private consultant', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303210005', '', '1', 'upload_files/candidate_tracker/72991995847_Magesh\'s Resume.pdf', NULL, '1', '2023-03-21', 0, '', '4', '27', NULL, 0.00, '', '0', NULL, '1', 'Fresher have basic knowledge in MySQL 5050 profile for us kindly check and let me know your inputs on the same ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:05:35', 1, '2023-03-21 11:10:30', 0, NULL, 1),
(12104, 'Rengesh kannan', '14', '9659628668', '9159548173', 'rengeshkannanramar01@gmail.com', '1998-07-04', 24, '1', '2', 'Ramar', 'Farmer', 20000.00, 0, 0.00, 15000.00, 'Ramanathapuram', 'Tambaram,Chennai', '2303210006', '', '1', 'upload_files/candidate_tracker/66844895737_Rngesh kannan java3.pdf', NULL, '1', '2023-03-21', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher Not Much Strong With The Basics Not Open For TxxampC Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:07:09', 1, '2023-03-21 11:18:45', 0, NULL, 1),
(12105, 'Ajay', '16', '9952718075', '', 'ajayoyo47@gmail.com', '1999-07-22', 23, '1', '2', 'Iyalarasan M', 'Painter', 120000.00, 1, 250000.00, 350000.00, 'Chennai', 'Chennai T.nagar', '2303210007', '', '2', 'upload_files/candidate_tracker/68442959628_Ajay Resume New One (1)-1.pdf', NULL, '1', '2023-03-21', 30, '2303210007', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Communication very average not much good with MIS but the salary Pack and expectation is high will not sustain and not suitable ', '3', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:17:23', 1, '2023-03-21 11:26:02', 0, NULL, 1),
(12106, 'sujitha', '4', '9360665385', '', 'bsujji123@gmail.com', '1993-05-14', 29, '3', '2', 'bernadshaw', 'lawyer', 50000.00, 1, 23500.00, 25000.00, 'velachery', 'Velachery', '2303210008', '', '2', 'upload_files/candidate_tracker/65291128214_SUJITHA B 001.pdf', NULL, '1', '2023-03-21', 15, '', '5', '53', NULL, 0.00, '', '0', NULL, '2', 'not suit for telecalling', '1', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:17:33', 1, '2023-03-21 12:02:34', 0, NULL, 1),
(12107, 'Chitthirai selvi Palani', '13', '9597272122', '9600203513', 'chitthiraiselvi2023@gmail.com', '1996-05-03', 26, '3', '2', 'Palani S', 'Daily wages', 20000.00, 1, 0.00, 200000.00, 'Guindy', 'Guindy', '2303210009', '', '1', 'upload_files/candidate_tracker/62570789174_Chitthirai_selvi.pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher for IT Career Gap have a reference in Tier level companies will not sustain in a long family is looking for marriage proposals have intern exposure in Python for 8 months 8K stipend', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:34:46', 1, '2023-03-21 11:39:31', 0, NULL, 1),
(12108, 'riyaz mohamed', '4', '8072902234', '', 'riazee59@gmail.com', '2000-09-05', 22, '3', '2', 'fathima jan', 'house wife', 10000.00, 1, 0.00, 10000.00, 'thiruvaiyaru', 'thiruvaiyaru', '2303210010', '', '1', 'upload_files/candidate_tracker/55839026591_CV_2023032010281077.pdf', NULL, '1', '2023-03-21', 0, '', '1', '74', NULL, 0.00, '', '0', NULL, '1', NULL, '1', '1', '0', '4', '5', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 11:45:22', 1, '2023-03-21 11:50:00', 0, NULL, 1),
(12109, 'Manikandan', '31', '9080542319', '', 'maniakashkalai23@gmail.com', '2000-03-23', 22, '3', '2', 'Karthikeyan', 'OA', 20000.00, 1, 0.00, 10000.00, 'Aduthurai', 'Velachery', '2303210011', '', '1', 'upload_files/candidate_tracker/17578439566_Manikandan.resume.html.doc', NULL, '1', '2023-03-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Fresher not much strong with the basics not open for TxxampC will not sustain and not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 12:00:45', 1, '2023-03-21 12:13:54', 0, NULL, 1),
(12110, 'V Dhinakaran', '13', '8940844598', '', 'vdhinakaran300@gmail.com', '2001-03-13', 22, '3', '2', 'T Vadivel', 'Business', 25000.00, 1, 0.00, 300000.00, 'Tiruvannamalai', 'Chennai', '2303210012', '', '1', 'upload_files/candidate_tracker/80497042899_DHINAKARAN V-1.pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Have Basic Skills not much active seems to be slow will not handle our work pressure not suitable\n', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 12:25:54', 1, '2023-03-21 12:30:21', 0, NULL, 1),
(12111, 'Kalaiarasan R', '13', '6369733882', '9087989547', 'kalaimech1999@gmail.com', '1999-08-26', 23, '3', '2', 'Rajendran C', 'Milk Supplyer', 200000.00, 1, 0.00, 400000.00, 'Salem', 'Chennai', '2303210013', '', '1', 'upload_files/candidate_tracker/27081937114_Kalaiarasan R My Resume-2.pdf', NULL, '1', '2023-03-21', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not Strong with Basics already attended ang got rejected not open for TxxampC Not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 12:33:51', 1, '2023-03-21 12:39:37', 0, NULL, 1),
(12112, 'Dinesh Kumar V', '31', '8925181105', '9789677612', 'dineshark33@gmail.com', '1997-05-16', 25, '3', '2', 'Vazhivittan T', 'Daily wage', 15000.00, 3, 0.00, 20000.00, 'CHENNAI', 'CHENNAI', '2303210014', '', '1', 'upload_files/candidate_tracker/5558332715_Resume-Dineshkumar V (1).pdf', NULL, '1', '2023-03-21', 0, '', '3', '59', '2023-03-22', 120000.00, '', '0', NULL, '1', 'Selected for Mern need to confirm for React orNode after 7 days 2nd round with Kavya and final round with Gokul Min Stipend 8K ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 12:39:17', 1, '2023-03-21 12:42:33', 0, NULL, 1),
(12113, 'Hariharan M', '14', '9345499783', '9025520719', 'mhari4519@gmail.com', '2001-01-20', 22, '3', '2', 'Mariyappan', 'Farmer', 30000.00, 2, 0.00, 10000.00, 'Thoothukudi', 'Tambaram', '2303210015', '', '1', 'upload_files/candidate_tracker/33618526721_Hari haran_Resume 1.1 (1).pdf', NULL, '3', '2023-03-21', 0, '', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Interestedto learn Python open for TxxampC will check with gokul and confirm', '2', '1', '0', '1', '8', '0', '2', '2023-03-23', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-21 02:11:24', 1, '2023-03-21 02:20:07', 0, NULL, 1),
(12114, 'Shivani S', '13', '9962442750', '', 'fathi19498@gmail.com', '1998-04-19', 24, '2', '2', 'Siva Kumar p', 'Sub inspector of police', 60000.00, 2, 0.00, 18000.00, 'Pudupet', 'Pudupet', '2303210016', '1', '1', 'upload_files/candidate_tracker/4673164558_Shivani CV-1.pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Long Career Gap Father is Sub Inspector and not much comfort with TxxampC if she come back let us try and sustainability doubts', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-21 04:39:47', 85, '2023-03-22 10:48:35', 0, NULL, 1),
(12115, 'Mohamed sufair', '6', '6369888269', '', 'kadarhassan999@gmail.com', '2001-04-21', 21, '2', '2', 'Sathakathulla', 'Cook', 150000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303210017', '1', '1', 'upload_files/candidate_tracker/82416006681_Mohamed sufair resume.pdf', NULL, '1', '2023-03-23', 0, '', '5', '24', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'select for next round to Ramesh sir, but candidate absent for interview', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-21 05:10:24', 97, '2023-03-23 06:21:02', 0, NULL, 1),
(12116, 'Chandra Prakash', '13', '9360267204', '9025597490', 'schandra2002prakash@gmail.com', '2002-03-22', 21, '3', '2', 'Selvam', 'Farmer', 60.00, 2, 0.00, 1.70, 'dindigul', 'Chennai', '2303220001', '', '1', 'upload_files/candidate_tracker/20614543304_Chandru Resume 17-sep-2022 (1).pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Not open for TxxampC Fresher Not Much strong with the basics much comfort to work in Java', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-22 10:13:03', 1, '2023-03-22 10:43:33', 0, NULL, 1),
(12117, 'PRASANNA. R', '6', '8072423963', '8870088347', 'ramanprasanna4@gmail.com', '2000-12-22', 22, '1', '2', 'Raman.s', 'Farmer', 75000.00, 1, 15000.00, 20000.00, 'Villupuram', 'Saidapet', '2303220002', '', '2', 'upload_files/candidate_tracker/49554246402_R. Prasanna-2.pdf', NULL, '1', '2023-03-22', 15, 'P1426', '3', '59', '2023-03-30', 199800.00, '', '', '2023-04-13', '1', 'Selected for Suthagar Team 5050profile need to confirm Staff or consultant', '5', '1', '1', '1', '8', '', '2', '1970-01-01', '2', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-22 12:13:39', 60, '2023-03-25 07:05:36', 0, NULL, 1),
(12118, '', '0', '8082423963', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303220003', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-22 12:28:58', 0, NULL, 0, NULL, 1),
(12119, 'b.anitha pushpam', '31', '6383785099', '9344651347', 'anithapushpam13500@gmail.com', '2000-05-13', 22, '2', '2', 'a.balasubramanian', 'farmer', 7000.00, 2, 0.00, 15000.00, 'panjayathu office street keelapavoor', 'chennai', '2303220004', '1', '1', 'upload_files/candidate_tracker/14253806660_ANITHA RESUME.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need to train alot Not much strong in the basics Came as a group not open for TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 01:29:53', 85, '2023-03-23 05:06:33', 0, NULL, 1),
(12120, 'M. Shanmuga piriya', '31', '7904931581', '9943085905', 'priyamuthuraman2002@gmail.com', '2002-02-21', 21, '2', '2', 'S. Muthuraman M. Meena', 'Farmer', 5000.00, 0, 0.00, 15000.00, 'Tenkasi', 'Velachery', '2303220005', '1', '1', 'upload_files/candidate_tracker/11958721505_shanmuga piriya.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 01:29:59', 85, '2023-03-23 05:06:44', 0, NULL, 1),
(12121, 'B. Aruna Pushpam', '31', '8072864073', '9344651347', 'arunaani2000@gmail.com', '2000-05-13', 22, '2', '2', 'A. Balasubramanian, B.petchiammal', 'Farmer', 7000.00, 2, 0.00, 17000.00, '53 panchayathu office Street,Keelapavoor,Tenkasi', 'Chennai', '2303220006', '1', '1', 'upload_files/candidate_tracker/64252703927_aruna resume.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 01:34:37', 85, '2023-03-23 05:06:56', 0, NULL, 1),
(12122, 'Narasimhulu Dappili', '13', '8384352563', '8147975342', 'dappilinarasimha020@gmail.com', '1996-04-15', 26, '1', '2', 'Krishnaiah', 'BC-D', 15000.00, 2, 0.00, 10000.00, 'YSR DISTRICT', 'YSR DISTRICT', '2303220007', '', '1', 'upload_files/candidate_tracker/44464160190_Narassimha(MBA).pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No Skills Career Gap No local language difficult to understand will not sustain and not suitable', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-22 01:40:05', 1, '2023-03-22 02:32:14', 0, NULL, 1),
(12123, 'Burrepalli nagendra', '13', '9177581219', '7842351398', 'burrepallinagendra12@gmail.com', '1996-06-01', 26, '1', '2', 'B.seshaiah', 'Bc d', 20000.00, 2, 0.00, 10000.00, 'Badvel kadapa district AP', 'Badvel kadapa district AP pin number 516227', '2303220008', '', '1', 'upload_files/candidate_tracker/66161861639_DocScanner 11 Oct 2022 11-46 am.pdf', NULL, '1', '2023-03-22', 0, 'Smartronic Technical solution', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Skills Career Gap No Local Language Difficult To Understand Will Not Sustain And Not Suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-22 01:44:01', 1, '2023-03-22 02:31:17', 0, NULL, 1),
(12124, 'Durga.j', '31', '8870620696', '9543735273', 'durgajeyakrishnan@gmail.com', '2001-12-18', 21, '2', '2', 'K.jeyakrishnan', 'Shopkeeper', 18000.00, 1, 0.00, 20000.00, 'Thirunelveli', 'Chennai', '2303220009', '1', '1', 'upload_files/candidate_tracker/19097840605_durga.j (6) (2).pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Fresher Need To Train Alot Not Much Strong In The Basics Came As A Group Not Open For TxxampC', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 01:51:57', 85, '2023-03-23 05:07:11', 0, NULL, 1),
(12125, 'soorya m', '6', '9789875799', '8056995548', 'sooryamoses1042@gmail.com', '2002-04-10', 20, '3', '2', 'manivannan', 'mechanical foreman', 40000.00, 1, 17000.00, 18000.00, 'srinivasa perumal koil st periyathoppu manali', 'manali chennai', '2303220010', '', '2', 'upload_files/candidate_tracker/26609604448_Resume Soorya.pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Too long distance for sales sounding low wil not run in along pressure handling doubts', '5', '1', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-22 02:41:39', 85, '2023-03-22 04:00:57', 0, NULL, 1),
(12126, 'Monish', '6', '8682034140', '9710271059', 'shyammonish72@gmail.com', '2002-09-25', 20, '3', '2', 'Manjula', 'House wife', 40000.00, 1, 21000.00, 21000.00, 'Manali', 'Manali', '2303220011', '', '2', 'upload_files/candidate_tracker/43673055243_monish resum 2022.pdf', NULL, '1', '2023-03-22', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Have Exp but not a relevant Too long Distance will not handle our pressure left without attending the 2nd level inteview', '5', '2', '', '1', '8', '', '2', '1970-01-01', '3', '3', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-22 02:43:06', 85, '2023-03-22 04:00:48', 0, NULL, 1),
(12127, 'KARTHICK R', '5', '9123595313', '7871536427', 'karthiraj496@gmail.com', '1996-10-04', 26, '2', '2', 'RAJAMUTHU P', 'Agriculture', 100000.00, 1, 21000.00, 27000.00, 'SALEM', 'SALEM', '2303220012', '1', '2', 'upload_files/candidate_tracker/10506538658_CV_2023031119264559.pdf', NULL, '1', '2023-03-29', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'communication Average no basic knowledge in MIS Preferred to be in non voice not suitable in our roles', '5', '1', '', '1', '8', '', '2', '1970-01-01', '1', '3', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 04:45:59', 85, '2023-03-29 11:19:42', 0, NULL, 1),
(12128, '', '0', '9789997211', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303220013', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-22 05:21:54', 0, NULL, 0, NULL, 1),
(12129, 'Yogeshwar.b', '11', '6383923846', '', 'insyogeiii@gmail.com', '2000-04-24', 22, '3', '2', 'Balaraman.k', 'Electrician', 15000.00, 1, 0.00, 12000.00, 'Chennai', 'Chennai', '2303220014', '', '1', 'upload_files/candidate_tracker/77375059354_MY RESUME.PDF', NULL, '1', '2023-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '6', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-22 05:34:37', 1, '2023-03-22 05:37:33', 0, NULL, 1),
(12130, 'Tamilselvan P', '13', '8489056566', '', 'tamilselvan.p9894@gmail.com', '2001-02-10', 22, '2', '2', 'Palanivel', 'Weaving', 15000.00, 1, 0.00, 20000.00, 'Rajapalayam', 'Chennai-guindy.', '2303220015', '1', '1', 'upload_files/candidate_tracker/24211670458_Tamilselvan.pdf', NULL, '1', '2023-03-23', 0, '', '5', '97', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'have basic skills in prog.lau .. he want to discuss with his family .. if he come back.. let us try', '2', '1', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-22 09:42:21', 85, '2023-03-23 05:10:46', 0, NULL, 1),
(12131, 'Kabilan', '31', '7338711679', '7339019965', 'kabilanu192205@gmail.com', '2001-12-06', 21, '3', '2', 'Gokul', 'Associate', 25000.00, 1, 0.00, 120000.00, 'Puthur', 'Trivotriyour', '2303230001', '', '1', 'upload_files/candidate_tracker/46514329328_kabilan.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No basic skills knowledge will not sustain in our roles not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 10:28:24', 1, '2023-03-23 10:50:09', 0, NULL, 1),
(12132, 'arthick manikandan', '2', '8190918942', '', 'Karthiju012@gmail.com', '1999-04-09', 23, '3', '2', 'janakiraman', 'business', 40000.00, 2, 12000.00, 20000.00, 'madurai', 'madurai', '2303230002', '', '2', 'upload_files/candidate_tracker/3227410303_resume with wok.pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'Not Strong with the basic skills have exp in UI for 10 months not much comfort in TxxampC Will not sustain and handle work pressure no not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 10:39:54', 1, '2023-03-23 10:44:12', 0, NULL, 1),
(12133, 'Deepan S', '13', '9791260055', '8754176015', 'deepanuca007@gmail.com', '1998-10-30', 24, '4', '2', 'Senrayaperumal', 'Micro business', 30000.00, 1, 0.00, 15000.00, 'Madurai', 'Madurai', '2303230003', '', '1', 'upload_files/candidate_tracker/63096166038_Deepan_Resume.pdf', NULL, '1', '2023-03-23', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'he is intersted in buss. sustainbility doubts.', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 10:40:32', 1, '2023-03-23 10:44:48', 0, NULL, 1),
(12134, 'deivanai', '2', '9940195564', '', 'deivanailoganathan@gmail.com', '2000-01-14', 23, '3', '2', 'loganathan', 'auto driver', 20000.00, 1, 0.00, 150000.00, 'Chennai', 'Chennai', '2303230004', '', '1', 'upload_files/candidate_tracker/24514931836_SodaPDF-converted-RESUME+single+page+-+Copy+(1) (1).pdf', NULL, '1', '2023-03-23', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'intersted in Front- end dev .. but not ok with our txxampc ..focusing on sal..', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 10:42:18', 1, '2023-03-23 05:22:00', 0, NULL, 1),
(12135, '', '0', '9965990685', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303230005', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '2', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-23 11:15:10', 0, NULL, 0, NULL, 1),
(12136, 'Naveenkumar', '13', '8524841769', '6369088663', 'naveen.sekaran01@gmail.com', '2001-07-30', 21, '3', '2', 'Sekar', 'Labour', 20000.00, 1, 0.00, 12000.00, '286/b, Ambalakara Street, Naduvalur, Trichy', 'West Mambalam, Chennai', '2303230006', '', '1', 'upload_files/candidate_tracker/75953628093_Naveenkumar-BCA.pdf', NULL, '1', '2023-03-23', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '2', 'have basic skills html ,cssxxamp js..not ok with our txxampc.. ', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 11:21:14', 1, '2023-03-23 11:27:19', 0, NULL, 1),
(12137, 'Abishek', '13', '9940198729', '6382285758', 'abishekhari183@gmail.com', '2001-02-09', 22, '4', '2', 'Hari Krishnan M', 'Board desiner', 25000.00, 1, 0.00, 15000.00, 'Chennai', 'Chennai', '2303230007', '', '1', 'upload_files/candidate_tracker/98938536886_ABISHEK H Resume-1.pdf', NULL, '1', '2023-03-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '1', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-23 12:16:18', 85, '2023-03-24 05:51:15', 0, NULL, 1),
(12138, 'V.PRABAKARAN', '13', '6382285758', '9940198729', 'prabakarankc22@gmail.com', '2001-12-09', 21, '4', '2', 'Malliga', 'House wife', 20000.00, 2, 0.00, 240000.00, 'Keelkattalai', 'Keelkattalai', '2303230008', '', '1', 'upload_files/candidate_tracker/83756079701_Resume_Prabakaran1_Format4 (2).pdf', NULL, '1', '2023-03-23', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '8', '', '2', '1970-01-01', '3', '2', '', '', '', '', NULL, NULL, NULL, 1, '2023-03-23 12:17:31', 85, '2023-03-24 05:51:21', 0, NULL, 1),
(12139, 'Subash J', '13', '7010220622', '', 'subashvgm1717@gmail.com', '2001-02-20', 22, '3', '2', 'Jayachandiran', 'Farmer', 70000.00, 1, 0.00, 18000.00, 'Chennai', 'Chennai', '2303230009', '', '1', 'upload_files/candidate_tracker/43779175880_SUBASH JAYACHANDIRAN RESUME.pdf', NULL, '1', '2023-03-23', 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '2', NULL, '2', '1', '0', '1', '8', '0', '1', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 01:01:34', 1, '2023-03-23 04:50:53', 0, NULL, 1),
(12140, 'richard lenin', '2', '6384925940', '', 'mail.richardlenin@gmail.com', '2002-03-15', 21, '3', '2', 'David Anthony leo', 'Electrician', 60000.00, 2, 0.00, 30000.00, 'Thanjavur', 'periyar pathai, choolaimedu, Chennai', '2303230010', '', '1', 'upload_files/candidate_tracker/7313667533_Richard Lenin - Resume (2).pdf', NULL, '1', '2023-03-23', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Fresher not open for TxxampC Min Salary Exp is 25K have a reference in Zoho and continously looking for Zoho will not sustain', '2', '1', '0', '1', '3', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-23 01:32:12', 1, '2023-03-23 01:46:22', 0, NULL, 1),
(12141, 'Satheesh Thangaraj', '31', '9092558944', '', 'satheesht2110@gmail.com', '1996-10-21', 26, '1', '2', 'Thangaraj K', 'Building Contractor', 300000.00, 1, 0.00, 180000.00, 'Theni', 'Chennai', '2303240001', '', '1', 'upload_files/candidate_tracker/82566281527_Satheesh.pdf', NULL, '1', '2023-03-24', 0, 'Sathish', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'no Basic skills looking for Devops and not much comfort in TxxampC', '2', '2', '0', '1', '1', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 10:28:53', 1, '2023-03-24 10:58:37', 0, NULL, 1),
(12142, 'Manikandan', '31', '9025583807', '', 'amanikandan141@gmail.com', '1999-05-12', 23, '3', '2', 'Annadurai', 'Former', 20000.00, 1, 0.00, 300000.00, 'Cuddalore', 'Chennai', '2303240002', '', '1', 'upload_files/candidate_tracker/49713241653_Manikandan resume.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'Holding an offer for PHP with 15K after 3months intern just looking for some more opportunities will not join anf not suitable', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 11:22:59', 1, '2023-03-24 12:02:06', 0, NULL, 1),
(12143, 'Vetrivel', '13', '9342927182', '', 'svetrivel002@gmail.com', '2002-04-16', 20, '3', '2', 'Sasikumar', 'Farmar', 100000.00, 1, 0.00, 200000.00, 'Dindugal', 'Guindy Chennai', '2303240003', '', '1', 'upload_files/candidate_tracker/83055828570_Svetrivel..resume (4).pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '2nd round reject by manikandan no skills knowledge not suitable ', '2', '2', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 11:26:05', 1, '2023-03-24 11:29:18', 0, NULL, 1),
(12144, 'F. Lourthu prasanth', '23', '8220104117', '', 'lourthuprasanth20@gmail.com', '1997-12-05', 25, '3', '2', 'Francis Xavier', 'Pharmacy', 15000.00, 2, 0.00, 13000.00, 'Tirunelveli', 'Chennai', '2303240004', '', '1', 'upload_files/candidate_tracker/67182561322_Prasanth_ Profile (1)-1.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', 'No Basic skills but the salary exp is high and not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '2', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 11:46:01', 1, '2023-03-24 12:01:01', 0, NULL, 1),
(12145, 'maha lakshmi m', '23', '9994920320', '9940161666', 'mahalakshmim598@gmail.com', '2003-01-31', 20, '2', '2', 'm suresh kumar', 'transport manager', 30000.00, 1, 0.00, 20000.00, '28, Basin Road, Tiruvottiyur, Chennai', '28, Basin Road, Tiruvottiyur, Chennai', '2303240005', '1', '1', 'upload_files/candidate_tracker/92831584228_Resum Maha.pdf', NULL, '1', '2023-03-25', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '2', 'Not open for TxxampC no basic knowledge will not sustain and not suitable', '2', '2', '', '1', '8', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-24 11:48:11', 85, '2023-03-25 09:52:23', 0, NULL, 1),
(12146, 'Rajesh kannan', '13', '9380942056', '7358495178', 'rajeshkannan1999.rk@gmail.com', '1999-05-26', 23, '4', '2', 'Kumar', 'Business', 20000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303240006', '', '1', 'upload_files/candidate_tracker/65060444086_Rajeshkannank_14-03-23.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '2', '2nd time appearing for the interview remains the same no basic skills knowledge not open for TxxampC', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 11:48:18', 1, '2023-03-24 11:52:49', 0, NULL, 1),
(12147, 'V Nithish', '11', '9791059336', '9123568823', 'nithishtoro@gmail.com', '1999-11-09', 23, '2', '2', 'V abirami', 'Business', 20000.00, 1, 0.00, 20000.00, 'Nungambakkam, Chennai', 'Nungambakkam, Chennai', '2303240007', '1', '1', 'upload_files/candidate_tracker/86661565653_NITHISH UPDATED..docx', NULL, '1', '2023-03-27', 0, '', '2', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Selected for MIS Candidate yet to give his confirmation appeared fr HR then converted to MIS final round with Gokul', '6', '1', '', '1', '8', '', '2', '2023-03-29', '1', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-24 02:57:27', 85, '2023-03-27 10:07:37', 0, NULL, 1),
(12148, 'Gowtham', '31', '8056119397', '9677185961', 'gowthamfs7@gmail.com', '1996-03-29', 26, '3', '2', 'Parent', 'Tailor', 180000.00, 1, 0.00, 180000.00, 'No:4 nellaiyappar Street chrompet', 'No:4 nellaiyappar Street chrompet', '2303240008', '', '1', 'upload_files/candidate_tracker/93636000697_Resume.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', NULL, 0.00, '', '0', NULL, '1', 'No basic ideas in JS will not sustain with us and not suitable ', '2', '1', '0', '1', '8', '0', '2', NULL, '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 03:21:18', 1, '2023-03-24 03:24:20', 0, NULL, 1),
(12149, 'Bharathi kannan', '11', '6383067990', '', 'kannan2bharathikpm@gmail.com', '2000-08-28', 22, '2', '2', 'Panneer selvam K', 'Business man', 100000.00, 1, 0.00, 23000.00, 'Chennai', 'Chennai', '2303240009', '1', '1', 'upload_files/candidate_tracker/73329227258_Bharathi Resume Docx.pdf', NULL, '1', '2023-03-24', 0, '', '5', '59', '1970-01-01', 0.00, '', '', '1970-01-01', '1', 'Communication Average too long distance yet to complete his graduation not suitable\n', '6', '1', '', '1', '8', '', '2', '1970-01-01', '3', '8', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-24 03:33:50', 85, '2023-03-24 04:58:08', 0, NULL, 1),
(12150, '', '0', '9791559359', NULL, NULL, NULL, 0, '0', '0', '', '', 0.00, 0, 0.00, 0.00, '', '', '2303240010', '0', '0', NULL, NULL, '0', NULL, 0, '', '6', '0', NULL, 0.00, '', '0', NULL, '1', NULL, '0', '1', '0', '0', '0', '0', '1', NULL, '0', '0', NULL, NULL, '0', '0', NULL, NULL, NULL, 1, '2023-03-24 03:55:44', 0, NULL, 0, NULL, 1),
(12151, 'Raj kumar', '13', '9840240545', '9942936979', 'rishirich181818@gmail.com', '2000-09-02', 22, '1', '2', 'Arumugam', 'Auto Driver', 30000.00, 1, 0.00, 25000.00, 'Chennai', 'Chennai', '2303240011', '', '1', 'upload_files/candidate_tracker/43064806104_Raj kumar (Resume) (1).pdf', NULL, '1', '2023-03-24', 0, 'Jobs', '2', '59', NULL, 0.00, '', '0', NULL, '2', 'Eager to learn requested time to learn and come back in JS,if he comes back let us try', '2', '1', '0', '1', '8', '0', '2', '2023-03-31', '3', '0', NULL, NULL, '', '0', NULL, NULL, NULL, 1, '2023-03-24 04:23:01', 1, '2023-03-24 04:40:08', 0, NULL, 1),
(12152, 'emerson samuel', '13', '8946069921', '9940072548', 'emerson001samuel@gmail.com', '1998-04-01', 24, '2', '2', 'madhavan', 'business', 40000.00, 1, 0.00, 400000.00, 'mogappair', 'mogappair', '2303240012', '1', '1', 'upload_files/candidate_tracker/45447758557_Emerson Samuel .pdf', NULL, '1', '2023-03-27', 0, '', '5', '97', NULL, 0.00, '', '0', NULL, '1', 'Not much strong in prog.skills ok with txxampc .sNR Rejected by kaviya ', '2', '1', '0', '1', '8', '0', '2', NULL, '1', '0', NULL, NULL, 'H1010', '0', NULL, NULL, NULL, 1, '2023-03-24 04:58:10', 1, '2023-03-24 05:07:17', 0, NULL, 1),
(12153, 'SathishR', '13', '9710308547', '', '118csa33sathish@gmail.com', '2001-05-16', 21, '2', '2', 'ramesh', 'torner', 25000.00, 1, 0.00, 20000.00, 'chennai', 'chenna', '2303240013', '1', '1', 'upload_files/candidate_tracker/7828111052_SATHISHR RESUME (10).pdf', NULL, '1', '2023-03-27', 0, '', '6', '', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '', '2', '1', '', '1', '3', '', '2', '1970-01-01', '1', '2', '', '', 'H1010', '', NULL, NULL, NULL, 1, '2023-03-24 08:46:58', 85, '2023-03-27 10:11:51', 0, NULL, 1),
(12154, 'Soniya', '4', '7708832691', '', 'soniyaganabathi@gmail.com', '1985-05-31', 37, '3', '1', 'Ganabathi', 'Private ltd', 10000.00, 2, 15000.00, 16000.00, 'Teynapet', 'Teynapet', '2303250001', '', '2', 'upload_files/candidate_tracker/13639997186_1679479202622_SONIYA RESUME.pdf', NULL, '1', '2023-03-25', 0, '', '4', '11', '1970-01-01', 0.00, '', '', '1970-01-01', '2', '